diff --git a/.circleci/config.yml b/.circleci/config.yml
index ff8eb485986f0a9bba3b091eb1c6ca895b3e5249..5b61b74536910576356484af030fe056f17cf38f 100644
--- a/.circleci/config.yml
+++ b/.circleci/config.yml
@@ -3,7 +3,7 @@ version: 2
 aliases:
   - &defaults
     docker:
-      - image: circleci/ruby:2.6-stretch-node
+      - image: circleci/ruby:2.7-buster-node
         environment: &ruby_environment
           BUNDLE_APP_CONFIG: ./.bundle/
           DB_HOST: localhost
@@ -39,7 +39,6 @@ aliases:
     steps:
       - checkout
       - *attach_workspace
-
       - restore_cache:
           keys:
             - v1-node-dependencies-{{ checksum "yarn.lock" }}
@@ -49,7 +48,6 @@ aliases:
           key: v1-node-dependencies-{{ checksum "yarn.lock" }}
           paths:
             - ./node_modules/
-
       - *persist_to_workspace
 
   - &install_system_dependencies
@@ -58,13 +56,17 @@ aliases:
         command: |
           sudo apt-get update
           sudo apt-get install -y libicu-dev libidn11-dev libprotobuf-dev protobuf-compiler
+          
+          ## TODO: FIX THESE BUSTER DEPENDANCES
+          sudo wget http://ftp.au.debian.org/debian/pool/main/i/icu/libicu57_57.1-6+deb9u3_amd64.deb
+          sudo dpkg -i libicu57_57.1-6+deb9u3_amd64.deb
+          sudo wget http://ftp.au.debian.org/debian/pool/main/p/protobuf/libprotobuf10_3.0.0-9_amd64.deb
+          sudo dpkg -i libprotobuf10_3.0.0-9_amd64.deb
 
   - &install_ruby_dependencies
       steps:
         - *attach_workspace
-
         - *install_system_dependencies
-
         - run: ruby -e 'puts RUBY_VERSION' | tee /tmp/.ruby-version
         - *restore_ruby_dependencies
         - run: bundle install --clean --jobs 16 --path ./vendor/bundle/ --retry 3 --with pam_authentication --without development production && bundle clean
@@ -82,10 +84,8 @@ aliases:
   - &test_steps
       steps:
         - *attach_workspace
-
         - *install_system_dependencies
         - run: sudo apt-get install -y ffmpeg
-
         - run:
             name: Prepare Tests
             command: ./bin/rails parallel:create parallel:load_schema parallel:prepare
@@ -98,21 +98,21 @@ jobs:
     <<: *defaults
     <<: *install_steps
 
-  install-ruby2.6:
+  install-ruby2.7:
     <<: *defaults
     <<: *install_ruby_dependencies
 
-  install-ruby2.5:
+  install-ruby2.6:
     <<: *defaults
     docker:
-      - image: circleci/ruby:2.5-stretch-node
+      - image: circleci/ruby:2.6-buster-node
         environment: *ruby_environment
     <<: *install_ruby_dependencies
 
-  install-ruby2.4:
+  install-ruby2.5:
     <<: *defaults
     docker:
-      - image: circleci/ruby:2.4-stretch-node
+      - image: circleci/ruby:2.5-buster-node
         environment: *ruby_environment
     <<: *install_ruby_dependencies
 
@@ -128,10 +128,29 @@ jobs:
               - ./mastodon/public/assets
               - ./mastodon/public/packs-test/
 
-  test-ruby2.6:
+  test-migrations:
     <<: *defaults
     docker:
-      - image: circleci/ruby:2.6-stretch-node
+      - image: circleci/ruby:2.7-buster-node
+        environment: *ruby_environment
+      - image: circleci/postgres:10.6-alpine
+        environment:
+          POSTGRES_USER: root
+      - image: circleci/redis:5-alpine
+    steps:
+      - *attach_workspace
+      - *install_system_dependencies
+      - run:
+          name: Create database
+          command: ./bin/rails parallel:create
+      - run:
+          name: Run migrations
+          command: ./bin/rails parallel:migrate
+
+  test-ruby2.7:
+    <<: *defaults
+    docker:
+      - image: circleci/ruby:2.7-buster-node
         environment: *ruby_environment
       - image: circleci/postgres:10.6-alpine
         environment:
@@ -139,10 +158,10 @@ jobs:
       - image: circleci/redis:5-alpine
     <<: *test_steps
 
-  test-ruby2.5:
+  test-ruby2.6:
     <<: *defaults
     docker:
-      - image: circleci/ruby:2.5-stretch-node
+      - image: circleci/ruby:2.6-buster-node
         environment: *ruby_environment
       - image: circleci/postgres:10.6-alpine
         environment:
@@ -150,10 +169,10 @@ jobs:
       - image: circleci/redis:5-alpine
     <<: *test_steps
 
-  test-ruby2.4:
+  test-ruby2.5:
     <<: *defaults
     docker:
-      - image: circleci/ruby:2.4-stretch-node
+      - image: circleci/ruby:2.5-buster-node
         environment: *ruby_environment
       - image: circleci/postgres:10.6-alpine
         environment:
@@ -164,7 +183,7 @@ jobs:
   test-webui:
     <<: *defaults
     docker:
-      - image: circleci/node:12.9-stretch
+      - image: circleci/node:12-buster
     steps:
       - *attach_workspace
       - run: ./bin/retry yarn test:jest
@@ -184,20 +203,27 @@ workflows:
   build-and-test:
     jobs:
       - install
-      - install-ruby2.6:
+      - install-ruby2.7:
           requires:
             - install
-      - install-ruby2.5:
+      - install-ruby2.6:
           requires:
             - install
-            - install-ruby2.6
-      - install-ruby2.4:
+            - install-ruby2.7
+      - install-ruby2.5:
           requires:
             - install
-            - install-ruby2.6
+            - install-ruby2.7
       - build:
           requires:
-            - install-ruby2.6
+            - install-ruby2.7
+      - test-migrations:
+          requires:
+            - install-ruby2.7
+      - test-ruby2.7:
+          requires:
+            - install-ruby2.7
+            - build
       - test-ruby2.6:
           requires:
             - install-ruby2.6
@@ -206,13 +232,9 @@ workflows:
           requires:
             - install-ruby2.5
             - build
-      - test-ruby2.4:
-          requires:
-            - install-ruby2.4
-            - build
       - test-webui:
           requires:
             - install
       - check-i18n:
           requires:
-            - install-ruby2.6
+            - install-ruby2.7
diff --git a/.codeclimate.yml b/.codeclimate.yml
index 571507a542548e760209164d6dadaa6ad7a3aef3..9817d7f1c72bdb0c655183ee03b2a8cf8dd7dce8 100644
--- a/.codeclimate.yml
+++ b/.codeclimate.yml
@@ -27,10 +27,10 @@ plugins:
     enabled: true
   eslint:
     enabled: true
-    channel: eslint-5
+    channel: eslint-6
   rubocop:
     enabled: true
-    channel: rubocop-0-71
+    channel: rubocop-0-76
   sass-lint:
     enabled: true
 exclude_patterns:
diff --git a/.env.nanobox b/.env.nanobox
index cfbe487fba769387b622a860a177b07662045a82..5951777a2d5369f342d9852c4de9c5965693cd89 100644
--- a/.env.nanobox
+++ b/.env.nanobox
@@ -183,6 +183,11 @@ SMTP_FROM_ADDRESS=notifications@${APP_NAME}.nanoapp.io
 # LDAP_BIND_DN=
 # LDAP_PASSWORD=
 # LDAP_UID=cn
+# LDAP_MAIL=mail
+# LDAP_SEARCH_FILTER=(|(%{uid}=%{email})(%{mail}=%{email}))
+# LDAP_UID_CONVERSION_ENABLED=true
+# LDAP_UID_CONVERSION_SEARCH=., -
+# LDAP_UID_CONVERSION_REPLACE=_
 
 # PAM authentication (optional)
 # PAM authentication uses for the email generation the "email" pam variable
@@ -226,8 +231,8 @@ SMTP_FROM_ADDRESS=notifications@${APP_NAME}.nanoapp.io
 
 # Optional SAML authentication (cf. omniauth-saml)
 # SAML_ENABLED=true
-# SAML_ACS_URL=
-# SAML_ISSUER=http://localhost:3000/auth/auth/saml/callback
+# SAML_ACS_URL=http://localhost:3000/auth/auth/saml/callback
+# SAML_ISSUER=https://example.com
 # SAML_IDP_SSO_TARGET_URL=https://idp.testshib.org/idp/profile/SAML2/Redirect/SSO
 # SAML_IDP_CERT=
 # SAML_IDP_CERT_FINGERPRINT=
diff --git a/.env.production.sample b/.env.production.sample
index f9a8bb7c1b2ae5be0ed334e4d565395b9b7fb613..038000041670f32861b65e21536f308406bde866 100644
--- a/.env.production.sample
+++ b/.env.production.sample
@@ -178,7 +178,11 @@ STREAMING_CLUSTER_NUM=1
 # LDAP_BIND_DN=
 # LDAP_PASSWORD=
 # LDAP_UID=cn
-# LDAP_SEARCH_FILTER=%{uid}=%{email}
+# LDAP_MAIL=mail
+# LDAP_SEARCH_FILTER=(|(%{uid}=%{email})(%{mail}=%{email}))
+# LDAP_UID_CONVERSION_ENABLED=true
+# LDAP_UID_CONVERSION_SEARCH=., -
+# LDAP_UID_CONVERSION_REPLACE=_
 
 # PAM authentication (optional)
 # PAM authentication uses for the email generation the "email" pam variable
@@ -222,8 +226,8 @@ STREAMING_CLUSTER_NUM=1
 
 # Optional SAML authentication (cf. omniauth-saml)
 # SAML_ENABLED=true
-# SAML_ACS_URL=
-# SAML_ISSUER=http://localhost:3000/auth/auth/saml/callback
+# SAML_ACS_URL=http://localhost:3000/auth/auth/saml/callback
+# SAML_ISSUER=https://example.com
 # SAML_IDP_SSO_TARGET_URL=https://idp.testshib.org/idp/profile/SAML2/Redirect/SSO
 # SAML_IDP_CERT=
 # SAML_IDP_CERT_FINGERPRINT=
diff --git a/.env.test b/.env.test
index fa4e1d91fa81987eb63a841a2e130db0186666a7..761d0d9210690d3c1e970d2633748db16eaaa106 100644
--- a/.env.test
+++ b/.env.test
@@ -1,5 +1,5 @@
 # Node.js
-NODE_ENV=test
+NODE_ENV=tests
 # Federation
 LOCAL_DOMAIN=cb6e6126.ngrok.io
 LOCAL_HTTPS=true
diff --git a/.env.vagrant b/.env.vagrant
index f3b54f6e38646e2515fe7f964fef9055b8d3d834..c2d26fa45196b892186bf98d333d09f5a714431d 100644
--- a/.env.vagrant
+++ b/.env.vagrant
@@ -1,2 +1,3 @@
 VAGRANT=true
 LOCAL_DOMAIN=mastodon.local
+BIND=0.0.0.0
diff --git a/.github/ISSUE_TEMPLATE/config.yml b/.github/ISSUE_TEMPLATE/config.yml
new file mode 100644
index 0000000000000000000000000000000000000000..768868516e744265ec29e3f62667117a6bd603fb
--- /dev/null
+++ b/.github/ISSUE_TEMPLATE/config.yml
@@ -0,0 +1,5 @@
+blank_issues_enabled: false
+contact_links:
+  - name: Mastodon Meta Discussion Board
+    url: https://discourse.joinmastodon.org/
+    about: Please ask and answer questions here.
diff --git a/.github/stale.yml b/.github/stale.yml
new file mode 100644
index 0000000000000000000000000000000000000000..6601ef8c063b432b603f1765b21ac1b3327082be
--- /dev/null
+++ b/.github/stale.yml
@@ -0,0 +1,10 @@
+daysUntilStale: 120
+daysUntilClose: 7
+exemptLabels:
+  - security
+staleLabel: wontfix
+markComment: >
+  This issue has been automatically marked as stale because it has not had
+  recent activity. It will be closed if no further activity occurs. Thank you
+  for your contributions.
+only: pulls
diff --git a/.gitignore b/.gitignore
index 890e11958e576777d4d3038b33e334457bae0c6b..e63fba9f4513f2ba7f5740bcb976df66698670a1 100644
--- a/.gitignore
+++ b/.gitignore
@@ -13,6 +13,7 @@
 /db/*.sqlite3-journal
 
 # Ignore all logfiles and tempfiles.
+.eslintcache
 /log/*
 !/log/.keep
 /tmp
@@ -23,6 +24,7 @@ public/packs
 public/packs-test
 .env
 .env.production
+.env.development
 node_modules/
 build/
 *.log
@@ -56,6 +58,9 @@ npm-debug.log
 yarn-error.log
 yarn-debug.log
 
+# Ignore vagrant log files
+ubuntu-xenial-16.04-cloudimg-console.log
+
 # Ignore Docker option files
 docker-compose.override.yml
 
diff --git a/.nvmrc b/.nvmrc
index 45a4fb75db864000d01701c0f7a51864bd4daabf..48082f72f087ce7e6fa75b9c41d7387daecd447b 100644
--- a/.nvmrc
+++ b/.nvmrc
@@ -1 +1 @@
-8
+12
diff --git a/.rubocop.yml b/.rubocop.yml
index 8bd4c867f41c710243f0cb744ba538957b6320d8..9a68becbb63279e076ebe3272239f9a78376eaa6 100644
--- a/.rubocop.yml
+++ b/.rubocop.yml
@@ -71,6 +71,9 @@ Naming/MemoizedInstanceVariableName:
 Rails:
   Enabled: true
 
+Rails/EnumHash:
+  Enabled: false
+
 Rails/HasAndBelongsToMany:
   Enabled: false
 
@@ -102,6 +105,9 @@ Style/Documentation:
 Style/DoubleNegation:
   Enabled: true
 
+Style/FormatStringToken:
+  Enabled: false
+
 Style/FrozenStringLiteralComment:
   Enabled: true
 
diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md
index 76f5121984ca15c80dfa5363bb17c37b76f3f15e..f7b8f17ccf03f04ef72010a1bdabbd5750cb167d 100644
--- a/CONTRIBUTING.md
+++ b/CONTRIBUTING.md
@@ -14,13 +14,13 @@ If your contributions are accepted into Mastodon, you can request to be paid thr
 
 ## Bug reports
 
-Bug reports and feature suggestions can be submitted to [GitHub Issues](https://github.com/tootsuite/mastodon/issues). Please make sure that you are not submitting duplicates, and that a similar report or request has not already been resolved or rejected in the past using the search function. Please also use descriptive, concise titles.
+Bug reports and feature suggestions must use descriptive and concise titles and be submitted to [GitHub Issues](https://github.com/tootsuite/mastodon/issues). Please use the search function to make sure that you are not submitting duplicates, and that a similar report or request has not already been resolved or rejected.
 
 ## Translations
 
 You can submit translations via [Crowdin](https://crowdin.com/project/mastodon). They are periodically merged into the codebase.
 
-[![Crowdin](https://d322cqt584bo4o.cloudfront.net/mastodon/localized.svg)][crowdin]
+[![Crowdin](https://d322cqt584bo4o.cloudfront.net/mastodon/localized.svg)](https://crowdin.com/project/mastodon)
 
 ## Pull requests
 
diff --git a/Dockerfile b/Dockerfile
index e963674a55eda713d915e846401447e762edfacd..cc75bd6beeeee8a6fc529f8b52338da7d5973515 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -3,8 +3,8 @@ FROM ubuntu:18.04 as build-dep
 # Use bash for the shell
 SHELL ["bash", "-c"]
 
-# Install Node
-ENV NODE_VER="12.11.1"
+# Install Node v12 (LTS)
+ENV NODE_VER="12.14.0"  
 RUN	echo "Etc/UTC" > /etc/localtime && \
 	apt update && \
 	apt -y install wget python && \
@@ -123,3 +123,4 @@ RUN cd ~ && \
 # Set the work dir and the container entry point
 WORKDIR /opt/mastodon
 ENTRYPOINT ["/tini", "--"]
+EXPOSE 3000 4000
diff --git a/Gemfile b/Gemfile
index 6f1fcb6f104c78520cf9f7fc2117951f073eac77..40d6a2dabaa219a90bc3a6411abbec4a9bb5c4d8 100644
--- a/Gemfile
+++ b/Gemfile
@@ -1,21 +1,26 @@
 # frozen_string_literal: true
 
 source 'https://rubygems.org'
-ruby '>= 2.4.0', '< 2.7.0'
+ruby '>= 2.4.0', '< 3.0.0'
 
-gem 'pkg-config', '~> 1.3'
+gem 'pkg-config', '~> 1.4'
 
-gem 'puma', '~> 4.2'
-gem 'rails', '~> 5.2.3'
+gem 'puma', '~> 4.3'
+gem 'rails', '~> 5.2.4'
+gem 'sprockets', '~> 3.7.2'
 gem 'thor', '~> 0.20'
+gem 'rack', github: 'rack/rack'
+
+gem 'thwait', '~> 0.1.0'
+gem 'e2mmap', '~> 0.1.0'
 
 gem 'hamlit-rails', '~> 0.2'
-gem 'pg', '~> 1.1'
+gem 'pg', '~> 1.2'
 gem 'makara', '~> 0.4'
-gem 'pghero', '~> 2.3'
+gem 'pghero', '~> 2.4'
 gem 'dotenv-rails', '~> 2.7'
 
-gem 'aws-sdk-s3', '~> 1.48', require: false
+gem 'aws-sdk-s3', '~> 1.60', require: false
 gem 'fog-core', '<= 2.1.0'
 gem 'fog-openstack', '~> 0.3', require: false
 gem 'paperclip', '~> 6.0'
@@ -27,10 +32,10 @@ gem 'active_model_serializers', '~> 0.10'
 gem 'addressable', '~> 2.7'
 gem 'bootsnap', '~> 1.4', require: false
 gem 'browser'
-gem 'charlock_holmes', '~> 0.7.6'
+gem 'charlock_holmes', '~> 0.7.7'
 gem 'iso-639'
-gem 'chewy', '~> 5.1'
-gem 'cld3', '~> 3.2.4'
+gem 'chewy', git: 'https://github.com/noellabo/chewy.git', ref: 'bce53720beaab36d0cb8cfbd0bc98fb0e44ddaf0'
+gem 'cld3', '~> 3.2.6'
 gem 'devise', '~> 4.7'
 gem 'devise-two-factor', '~> 3.1'
 
@@ -38,7 +43,7 @@ group :pam_authentication, optional: true do
   gem 'devise_pam_authenticatable2', '~> 9.2'
 end
 
-gem 'net-ldap', '~> 0.10'
+gem 'net-ldap', '~> 0.16'
 gem 'omniauth-cas', '~> 1.1'
 gem 'omniauth-saml', '~> 1.10'
 gem 'omniauth', '~> 1.9'
@@ -49,64 +54,65 @@ gem 'fast_blank', '~> 1.0'
 gem 'fastimage'
 gem 'goldfinger', '~> 2.1'
 gem 'hiredis', '~> 0.6'
-gem 'redis-namespace', '~> 1.5'
+gem 'redis-namespace', '~> 1.7'
 gem 'health_check', git: 'https://github.com/ianheggie/health_check', ref: '0b799ead604f900ed50685e9b2d469cd2befba5b'
 gem 'htmlentities', '~> 4.3'
-gem 'http', '~> 3.3'
+gem 'http', '~> 4.3'
 gem 'http_accept_language', '~> 2.1'
 gem 'http_parser.rb', '~> 0.6', git: 'https://github.com/tmm1/http_parser.rb', ref: '54b17ba8c7d8d20a16dfc65d1775241833219cf2', submodules: true
-gem 'httplog', '~> 1.3'
+gem 'httplog', '~> 1.4'
 gem 'idn-ruby', require: 'idn'
 gem 'kaminari', '~> 1.1'
 gem 'link_header', '~> 0.0'
-gem 'mime-types', '~> 3.3', require: 'mime/types/columnar'
+gem 'mime-types', '~> 3.3.1', require: 'mime/types/columnar'
 gem 'nilsimsa', git: 'https://github.com/witgo/nilsimsa', ref: 'fd184883048b922b176939f851338d0a4971a532'
 gem 'nokogiri', '~> 1.10'
 gem 'nsa', '~> 0.2'
-gem 'oj', '~> 3.9'
-gem 'ostatus2', '~> 2.0'
-gem 'ox', '~> 2.11'
+gem 'oj', '~> 3.10'
+gem 'ox', '~> 2.12'
 gem 'parslet'
-gem 'parallel', '~> 1.17'
+gem 'parallel', '~> 1.19'
 gem 'posix-spawn', git: 'https://github.com/rtomayko/posix-spawn', ref: '58465d2e213991f8afb13b984854a49fcdcc980c'
 gem 'pundit', '~> 2.1'
 gem 'premailer-rails'
-gem 'rack-attack', '~> 6.1'
-gem 'rack-cors', '~> 1.0', require: 'rack/cors'
+gem 'rack-attack', '~> 6.2'
+gem 'rack-cors', '~> 1.1', require: 'rack/cors'
 gem 'rails-i18n', '~> 5.1'
 gem 'rails-settings-cached', '~> 0.6'
 gem 'redis', '~> 4.1', require: ['redis', 'redis/connection/hiredis']
 gem 'mario-redis-lock', '~> 1.2', require: 'redis_lock'
-gem 'rqrcode', '~> 0.10'
+gem 'rqrcode', '~> 1.1'
 gem 'ruby-progressbar', '~> 1.10'
 gem 'sanitize', '~> 5.1'
 gem 'sidekiq', '~> 5.2'
 gem 'sidekiq-scheduler', '~> 3.0'
 gem 'sidekiq-unique-jobs', '~> 6.0'
 gem 'sidekiq-bulk', '~>0.2.0'
+gem 'sidekiq-statistic', '~> 1.4'
 gem 'simple-navigation', '~> 4.1'
-gem 'simple_form', '~> 4.1'
+gem 'simple_form', '~> 5.0'
 gem 'sprockets-rails', '~> 3.2', require: 'sprockets/railtie'
-gem 'stoplight', '~> 2.1.3'
-gem 'strong_migrations', '~> 0.4'
+gem 'stoplight', '~> 2.2.0'
+gem 'stoplight-admin', '~> 0.3.5'
+gem 'strong_migrations', '~> 0.5'
 gem 'tty-command', '~> 0.9', require: false
-gem 'tty-prompt', '~> 0.19', require: false
+gem 'tty-prompt', '~> 0.20', require: false
 gem 'twitter-text', '~> 1.14'
 gem 'tzinfo-data', '~> 1.2019'
-gem 'webpacker', '~> 4.0'
+gem 'webpacker', '~> 4.2'
 gem 'webpush'
 
-gem 'json-ld', git: 'https://github.com/ruby-rdf/json-ld.git', ref: 'e742697a0906e74e8bb777ef98137bc3955d981d'
+gem 'json-ld'
 gem 'json-ld-preloaded', '~> 3.0'
-gem 'rdf-normalize', '~> 0.3'
+gem 'rdf-normalize', '~> 0.4'
 
 group :development, :test do
-  gem 'fabrication', '~> 2.20'
-  gem 'fuubar', '~> 2.4'
+  gem 'fabrication', '~> 2.21'
+  gem 'fuubar', '~> 2.5'
   gem 'i18n-tasks', '~> 0.9', require: false
   gem 'pry-byebug', '~> 3.7'
   gem 'pry-rails', '~> 0.3'
-  gem 'rspec-rails', '~> 3.8'
+  gem 'rspec-rails', '~> 3.9'
 end
 
 group :production, :test do
@@ -114,29 +120,29 @@ group :production, :test do
 end
 
 group :test do
-  gem 'capybara', '~> 3.29'
+  gem 'capybara', '~> 3.30'
   gem 'climate_control', '~> 0.2'
-  gem 'faker', '~> 2.5'
-  gem 'microformats', '~> 4.1'
+  gem 'faker', '~> 2.10'
+  gem 'microformats', '~> 4.2'
   gem 'rails-controller-testing', '~> 1.0'
   gem 'rspec-sidekiq', '~> 3.0'
   gem 'simplecov', '~> 0.17', require: false
-  gem 'webmock', '~> 3.7'
-  gem 'parallel_tests', '~> 2.29'
+  gem 'webmock', '~> 3.8'
+  gem 'parallel_tests', '~> 2.30'
 end
 
 group :development do
-  gem 'active_record_query_trace', '~> 1.6'
-  gem 'annotate', '~> 2.7'
+  gem 'active_record_query_trace', '~> 1.7'
+  gem 'annotate', '~> 3.0'
   gem 'better_errors', '~> 2.5'
   gem 'binding_of_caller', '~> 0.7'
-  gem 'bullet', '~> 6.0'
+  gem 'bullet', '~> 6.1'
   gem 'letter_opener', '~> 1.7'
   gem 'letter_opener_web', '~> 1.3'
   gem 'memory_profiler'
-  gem 'rubocop', '~> 0.74', require: false
-  gem 'rubocop-rails', '~> 2.3', require: false
-  gem 'brakeman', '~> 4.6', require: false
+  gem 'rubocop', '~> 0.79', require: false
+  gem 'rubocop-rails', '~> 2.4', require: false
+  gem 'brakeman', '~> 4.7', require: false
   gem 'bundler-audit', '~> 0.6', require: false
 
   gem 'capistrano', '~> 3.11'
@@ -144,7 +150,6 @@ group :development do
   gem 'capistrano-rbenv', '~> 2.1'
   gem 'capistrano-yarn', '~> 2.0'
 
-  gem 'derailed_benchmarks'
   gem 'stackprof'
 end
 
diff --git a/Gemfile.lock b/Gemfile.lock
index 3c52f378fab1e7dc7ab426457a81e7a2b690660c..c00609671b153d72f488f996b490e28ecb3c4b64 100644
--- a/Gemfile.lock
+++ b/Gemfile.lock
@@ -6,6 +6,23 @@ GIT
     health_check (4.0.0.pre)
       rails (>= 4.0)
 
+GIT
+  remote: https://github.com/noellabo/chewy.git
+  revision: bce53720beaab36d0cb8cfbd0bc98fb0e44ddaf0
+  ref: bce53720beaab36d0cb8cfbd0bc98fb0e44ddaf0
+  specs:
+    chewy (5.1.0)
+      activesupport (>= 4.0)
+      elasticsearch (>= 7.0.0)
+      elasticsearch-dsl
+      faraday (>= 0.17.0)
+
+GIT
+  remote: https://github.com/rack/rack.git
+  revision: 4ebd70b243d79cecda1ba55abce8e2ead78395d7
+  specs:
+    rack (2.2.0)
+
 GIT
   remote: https://github.com/rtomayko/posix-spawn
   revision: 58465d2e213991f8afb13b984854a49fcdcc980c
@@ -13,19 +30,6 @@ GIT
   specs:
     posix-spawn (0.3.13)
 
-GIT
-  remote: https://github.com/ruby-rdf/json-ld.git
-  revision: e742697a0906e74e8bb777ef98137bc3955d981d
-  ref: e742697a0906e74e8bb777ef98137bc3955d981d
-  specs:
-    json-ld (3.0.2)
-      htmlentities (~> 4.3)
-      json-canonicalization (~> 0.1)
-      link_header (~> 0.0, >= 0.0.8)
-      multi_json (~> 1.13)
-      rack (>= 1.6, < 3.0)
-      rdf (~> 3.0, >= 3.0.8)
-
 GIT
   remote: https://github.com/tmm1/http_parser.rb
   revision: 54b17ba8c7d8d20a16dfc65d1775241833219cf2
@@ -44,25 +48,25 @@ GIT
 GEM
   remote: https://rubygems.org/
   specs:
-    actioncable (5.2.3)
-      actionpack (= 5.2.3)
+    actioncable (5.2.4.1)
+      actionpack (= 5.2.4.1)
       nio4r (~> 2.0)
       websocket-driver (>= 0.6.1)
-    actionmailer (5.2.3)
-      actionpack (= 5.2.3)
-      actionview (= 5.2.3)
-      activejob (= 5.2.3)
+    actionmailer (5.2.4.1)
+      actionpack (= 5.2.4.1)
+      actionview (= 5.2.4.1)
+      activejob (= 5.2.4.1)
       mail (~> 2.5, >= 2.5.4)
       rails-dom-testing (~> 2.0)
-    actionpack (5.2.3)
-      actionview (= 5.2.3)
-      activesupport (= 5.2.3)
-      rack (~> 2.0)
+    actionpack (5.2.4.1)
+      actionview (= 5.2.4.1)
+      activesupport (= 5.2.4.1)
+      rack (~> 2.0, >= 2.0.8)
       rack-test (>= 0.6.3)
       rails-dom-testing (~> 2.0)
       rails-html-sanitizer (~> 1.0, >= 1.0.2)
-    actionview (5.2.3)
-      activesupport (= 5.2.3)
+    actionview (5.2.4.1)
+      activesupport (= 5.2.4.1)
       builder (~> 3.1)
       erubi (~> 1.4)
       rails-dom-testing (~> 2.0)
@@ -72,32 +76,32 @@ GEM
       activemodel (>= 4.1, < 6.1)
       case_transform (>= 0.2)
       jsonapi-renderer (>= 0.1.1.beta1, < 0.3)
-    active_record_query_trace (1.6.2)
-    activejob (5.2.3)
-      activesupport (= 5.2.3)
+    active_record_query_trace (1.7)
+    activejob (5.2.4.1)
+      activesupport (= 5.2.4.1)
       globalid (>= 0.3.6)
-    activemodel (5.2.3)
-      activesupport (= 5.2.3)
-    activerecord (5.2.3)
-      activemodel (= 5.2.3)
-      activesupport (= 5.2.3)
+    activemodel (5.2.4.1)
+      activesupport (= 5.2.4.1)
+    activerecord (5.2.4.1)
+      activemodel (= 5.2.4.1)
+      activesupport (= 5.2.4.1)
       arel (>= 9.0)
-    activestorage (5.2.3)
-      actionpack (= 5.2.3)
-      activerecord (= 5.2.3)
+    activestorage (5.2.4.1)
+      actionpack (= 5.2.4.1)
+      activerecord (= 5.2.4.1)
       marcel (~> 0.3.1)
-    activesupport (5.2.3)
+    activesupport (5.2.4.1)
       concurrent-ruby (~> 1.0, >= 1.0.2)
       i18n (>= 0.7, < 2)
       minitest (~> 5.1)
       tzinfo (~> 1.1)
     addressable (2.7.0)
       public_suffix (>= 2.0.2, < 5.0)
-    airbrussh (1.3.4)
+    airbrussh (1.4.0)
       sshkit (>= 1.6.1, != 1.7.0)
-    annotate (2.7.5)
+    annotate (3.0.3)
       activerecord (>= 3.2, < 7.0)
-      rake (>= 10.4, < 13.0)
+      rake (>= 10.4, < 14.0)
     arel (9.0.0)
     ast (2.4.0)
     attr_encrypted (3.1.0)
@@ -105,37 +109,37 @@ GEM
     av (0.9.0)
       cocaine (~> 0.5.3)
     aws-eventstream (1.0.3)
-    aws-partitions (1.207.0)
-    aws-sdk-core (3.65.1)
+    aws-partitions (1.261.0)
+    aws-sdk-core (3.86.0)
       aws-eventstream (~> 1.0, >= 1.0.2)
-      aws-partitions (~> 1.0)
+      aws-partitions (~> 1, >= 1.239.0)
       aws-sigv4 (~> 1.1)
       jmespath (~> 1.0)
-    aws-sdk-kms (1.24.0)
-      aws-sdk-core (~> 3, >= 3.61.1)
+    aws-sdk-kms (1.27.0)
+      aws-sdk-core (~> 3, >= 3.71.0)
       aws-sigv4 (~> 1.1)
-    aws-sdk-s3 (1.48.0)
-      aws-sdk-core (~> 3, >= 3.61.1)
+    aws-sdk-s3 (1.60.1)
+      aws-sdk-core (~> 3, >= 3.83.0)
       aws-sdk-kms (~> 1)
       aws-sigv4 (~> 1.1)
     aws-sigv4 (1.1.0)
       aws-eventstream (~> 1.0, >= 1.0.2)
+    backports (3.15.0)
     bcrypt (3.1.12)
-    benchmark-ips (2.7.2)
     better_errors (2.5.1)
       coderay (>= 1.0.0)
       erubi (>= 1.0.0)
       rack (>= 0.9.0)
     binding_of_caller (0.8.0)
       debug_inspector (>= 0.0.1)
-    blurhash (0.1.3)
+    blurhash (0.1.4)
       ffi (~> 1.10.0)
     bootsnap (1.4.5)
       msgpack (~> 1.0)
-    brakeman (4.6.1)
-    browser (2.6.1)
-    builder (3.2.3)
-    bullet (6.0.2)
+    brakeman (4.7.2)
+    browser (3.0.3)
+    builder (3.2.4)
+    bullet (6.1.0)
       activesupport (>= 3.0.0)
       uniform_notifier (~> 1.11)
     bundler-audit (0.6.1)
@@ -153,12 +157,12 @@ GEM
     capistrano-rails (1.4.0)
       capistrano (~> 3.1)
       capistrano-bundler (~> 1.1)
-    capistrano-rbenv (2.1.4)
+    capistrano-rbenv (2.1.6)
       capistrano (~> 3.1)
       sshkit (~> 1.3)
     capistrano-yarn (2.0.2)
       capistrano (~> 3.0)
-    capybara (3.29.0)
+    capybara (3.30.0)
       addressable
       mini_mime (>= 0.1.3)
       nokogiri (~> 1.8)
@@ -168,14 +172,10 @@ GEM
       xpath (~> 3.2)
     case_transform (0.2)
       activesupport
-    charlock_holmes (0.7.6)
-    chewy (5.1.0)
-      activesupport (>= 4.0)
-      elasticsearch (>= 2.0.0)
-      elasticsearch-dsl
-    chunky_png (1.3.10)
-    cld3 (3.2.4)
-      ffi (>= 1.1.0, < 1.11.0)
+    charlock_holmes (0.7.7)
+    chunky_png (1.3.11)
+    cld3 (3.2.6)
+      ffi (>= 1.1.0, < 1.12.0)
     climate_control (0.2.0)
     cocaine (0.5.8)
       climate_control (>= 0.0.3, < 1.0)
@@ -184,19 +184,10 @@ GEM
     connection_pool (2.2.2)
     crack (0.4.3)
       safe_yaml (~> 1.0.0)
-    crass (1.0.4)
-    css_parser (1.7.0)
+    crass (1.0.6)
+    css_parser (1.7.1)
       addressable
     debug_inspector (0.0.3)
-    derailed_benchmarks (1.4.0)
-      benchmark-ips (~> 2)
-      get_process_mem (~> 0)
-      heapy (~> 0)
-      memory_profiler (~> 0)
-      rack (>= 1)
-      rake (> 10, < 13)
-      ruby-statistics (>= 2.1)
-      thor (~> 0.19)
     devise (4.7.1)
       bcrypt (~> 3.0)
       orm_adapter (~> 0.1)
@@ -216,14 +207,15 @@ GEM
     discard (1.1.0)
       activerecord (>= 4.2, < 7)
     docile (1.3.2)
-    domain_name (0.5.20180417)
+    domain_name (0.5.20190701)
       unf (>= 0.0.5, < 1.0.0)
-    doorkeeper (5.2.1)
+    doorkeeper (5.2.3)
       railties (>= 5)
     dotenv (2.7.5)
     dotenv-rails (2.7.5)
       dotenv (= 2.7.5)
       railties (>= 3.2, < 6.1)
+    e2mmap (0.1.0)
     elasticsearch (7.3.0)
       elasticsearch-api (= 7.3.0)
       elasticsearch-transport (= 7.3.0)
@@ -235,18 +227,21 @@ GEM
       multi_json
     encryptor (3.0.0)
     equatable (0.6.1)
-    erubi (1.8.0)
+    erubi (1.9.0)
     et-orbi (1.1.6)
       tzinfo
-    excon (0.62.0)
-    fabrication (2.20.2)
-    faker (2.5.0)
-      i18n (~> 1.6.0)
-    faraday (0.15.4)
+    excon (0.71.0)
+    fabrication (2.21.0)
+    faker (2.10.1)
+      i18n (>= 1.6, < 2)
+    faraday (1.0.0)
       multipart-post (>= 1.2, < 3)
     fast_blank (1.0.0)
     fastimage (2.1.7)
     ffi (1.10.0)
+    ffi-compiler (1.0.1)
+      ffi (>= 1.0.0)
+      rake
     fog-core (2.1.0)
       builder
       excon (~> 0.58)
@@ -263,20 +258,21 @@ GEM
     fugit (1.1.6)
       et-orbi (~> 1.1, >= 1.1.6)
       raabro (~> 1.1)
-    fuubar (2.4.1)
+    fuubar (2.5.0)
       rspec-core (~> 3.0)
       ruby-progressbar (~> 1.4)
-    get_process_mem (0.2.4)
-      ffi (~> 1.0)
     globalid (0.4.2)
       activesupport (>= 4.2.0)
-    goldfinger (2.1.0)
+    goldfinger (2.1.1)
       addressable (~> 2.5)
-      http (~> 3.0)
+      http (~> 4.0)
       nokogiri (~> 1.8)
       oj (~> 3.0)
-    hamlit (2.9.3)
+    haml (5.0.4)
       temple (>= 0.8.0)
+      tilt
+    hamlit (2.11.0)
+      temple (>= 0.8.2)
       thor
       tilt
     hamlit-rails (0.2.3)
@@ -288,26 +284,27 @@ GEM
       concurrent-ruby (~> 1.0)
     hashdiff (1.0.0)
     hashie (3.6.0)
-    heapy (0.1.4)
-    highline (2.0.1)
+    highline (2.0.3)
     hiredis (0.6.3)
     hkdf (0.3.0)
     htmlentities (4.3.4)
-    http (3.3.0)
+    http (4.3.0)
       addressable (~> 2.3)
       http-cookie (~> 1.0)
-      http-form_data (~> 2.0)
-      http_parser.rb (~> 0.6.0)
+      http-form_data (~> 2.2)
+      http-parser (~> 1.2.0)
     http-cookie (1.0.3)
       domain_name (~> 0.5)
-    http-form_data (2.1.1)
+    http-form_data (2.2.0)
+    http-parser (1.2.1)
+      ffi-compiler (>= 1.0, < 2.0)
     http_accept_language (2.1.1)
-    httplog (1.3.2)
+    httplog (1.4.0)
       rack (>= 1.0)
       rainbow (>= 2.0.0)
-    i18n (1.6.0)
+    i18n (1.8.2)
       concurrent-ruby (~> 1.0)
-    i18n-tasks (0.9.29)
+    i18n-tasks (0.9.30)
       activesupport (>= 4.0.2)
       ast (>= 2.1.0)
       erubi
@@ -320,11 +317,18 @@ GEM
     idn-ruby (0.1.0)
     ipaddress (0.8.3)
     iso-639 (0.2.8)
-    jaro_winkler (1.5.3)
+    jaro_winkler (1.5.4)
     jmespath (1.4.0)
-    json (2.2.0)
-    json-canonicalization (0.1.0)
-    json-ld-preloaded (3.0.4)
+    json (2.3.0)
+    json-canonicalization (0.2.0)
+    json-ld (3.1.0)
+      htmlentities (~> 4.3)
+      json-canonicalization (~> 0.1)
+      link_header (~> 0.0, >= 0.0.8)
+      multi_json (~> 1.14)
+      rack (~> 2.0)
+      rdf (~> 3.1)
+    json-ld-preloaded (3.0.6)
       json-ld (~> 3.0)
       multi_json (~> 1.12)
       rdf (~> 3.0)
@@ -356,7 +360,7 @@ GEM
       activesupport (>= 4)
       railties (>= 4)
       request_store (~> 1.0)
-    loofah (2.2.3)
+    loofah (2.4.0)
       crass (~> 1.0.2)
       nokogiri (>= 1.5.9)
     mail (2.7.1)
@@ -369,26 +373,27 @@ GEM
       redis (>= 3.0.5)
     memory_profiler (0.9.14)
     method_source (0.9.2)
-    microformats (4.1.0)
-      json (~> 2.1)
-      nokogiri (~> 1.8, >= 1.8.3)
-    mime-types (3.3)
+    microformats (4.2.0)
+      json (~> 2.2)
+      nokogiri (~> 1.10)
+    mime-types (3.3.1)
       mime-types-data (~> 3.2015)
-    mime-types-data (3.2019.0904)
+    mime-types-data (3.2019.1009)
     mimemagic (0.3.3)
     mini_mime (1.0.2)
     mini_portile2 (2.4.0)
-    minitest (5.12.0)
+    minitest (5.14.0)
     msgpack (1.3.1)
-    multi_json (1.13.1)
+    multi_json (1.14.1)
     multipart-post (2.1.1)
-    necromancer (0.5.0)
-    net-ldap (0.16.1)
+    mustermann (1.0.3)
+    necromancer (0.5.1)
+    net-ldap (0.16.2)
     net-scp (2.0.0)
       net-ssh (>= 2.6.5, < 6.0.0)
     net-ssh (5.2.0)
-    nio4r (2.5.1)
-    nokogiri (1.10.4)
+    nio4r (2.5.2)
+    nokogiri (1.10.7)
       mini_portile2 (~> 2.4.0)
     nokogumbo (2.0.1)
       nokogiri (~> 1.8, >= 1.8.4)
@@ -397,7 +402,7 @@ GEM
       concurrent-ruby (~> 1.0, >= 1.0.2)
       sidekiq (>= 3.5)
       statsd-ruby (~> 1.4, >= 1.4.0)
-    oj (3.9.1)
+    oj (3.10.1)
     omniauth (1.9.0)
       hashie (>= 3.4.6, < 3.7.0)
       rack (>= 1.6.2, < 3)
@@ -409,11 +414,7 @@ GEM
       omniauth (~> 1.3, >= 1.3.2)
       ruby-saml (~> 1.7)
     orm_adapter (0.5.0)
-    ostatus2 (2.0.3)
-      addressable (~> 2.5)
-      http (~> 3.0)
-      nokogiri (~> 1.8)
-    ox (2.11.0)
+    ox (2.12.1)
     paperclip (6.0.0)
       activemodel (>= 4.2.0)
       activesupport (>= 4.2.0)
@@ -423,19 +424,19 @@ GEM
     paperclip-av-transcoder (0.6.4)
       av (~> 0.9.0)
       paperclip (>= 2.5.2)
-    parallel (1.17.0)
-    parallel_tests (2.29.2)
+    parallel (1.19.1)
+    parallel_tests (2.30.1)
       parallel
-    parser (2.6.4.0)
+    parser (2.7.0.2)
       ast (~> 2.4.0)
     parslet (1.8.2)
     pastel (0.7.3)
       equatable (~> 0.6)
       tty-color (~> 0.5)
-    pg (1.1.4)
-    pghero (2.3.0)
+    pg (1.2.2)
+    pghero (2.4.1)
       activerecord (>= 5)
-    pkg-config (1.3.9)
+    pkg-config (1.4.0)
     premailer (1.11.1)
       addressable
       css_parser (>= 1.6.0)
@@ -452,34 +453,34 @@ GEM
       pry (~> 0.10)
     pry-rails (0.3.9)
       pry (>= 0.10.4)
-    public_suffix (4.0.1)
-    puma (4.2.0)
+    public_suffix (4.0.3)
+    puma (4.3.1)
       nio4r (~> 2.0)
     pundit (2.1.0)
       activesupport (>= 3.0.0)
     raabro (1.1.6)
-    rack (2.0.7)
-    rack-attack (6.1.0)
+    rack-attack (6.2.2)
       rack (>= 1.0, < 3)
-    rack-cors (1.0.3)
-    rack-protection (2.0.5)
+    rack-cors (1.1.1)
+      rack (>= 2.0.0)
+    rack-protection (2.0.7)
       rack
     rack-proxy (0.6.5)
       rack
     rack-test (1.1.0)
       rack (>= 1.0, < 3)
-    rails (5.2.3)
-      actioncable (= 5.2.3)
-      actionmailer (= 5.2.3)
-      actionpack (= 5.2.3)
-      actionview (= 5.2.3)
-      activejob (= 5.2.3)
-      activemodel (= 5.2.3)
-      activerecord (= 5.2.3)
-      activestorage (= 5.2.3)
-      activesupport (= 5.2.3)
+    rails (5.2.4.1)
+      actioncable (= 5.2.4.1)
+      actionmailer (= 5.2.4.1)
+      actionpack (= 5.2.4.1)
+      actionview (= 5.2.4.1)
+      activejob (= 5.2.4.1)
+      activemodel (= 5.2.4.1)
+      activerecord (= 5.2.4.1)
+      activestorage (= 5.2.4.1)
+      activesupport (= 5.2.4.1)
       bundler (>= 1.3.0)
-      railties (= 5.2.3)
+      railties (= 5.2.4.1)
       sprockets-rails (>= 2.0.0)
     rails-controller-testing (1.0.4)
       actionpack (>= 5.0.1.x)
@@ -488,26 +489,26 @@ GEM
     rails-dom-testing (2.0.3)
       activesupport (>= 4.2.0)
       nokogiri (>= 1.6)
-    rails-html-sanitizer (1.2.0)
-      loofah (~> 2.2, >= 2.2.2)
+    rails-html-sanitizer (1.3.0)
+      loofah (~> 2.3)
     rails-i18n (5.1.3)
       i18n (>= 0.7, < 2)
       railties (>= 5.0, < 6)
     rails-settings-cached (0.6.6)
       rails (>= 4.2.0)
-    railties (5.2.3)
-      actionpack (= 5.2.3)
-      activesupport (= 5.2.3)
+    railties (5.2.4.1)
+      actionpack (= 5.2.4.1)
+      activesupport (= 5.2.4.1)
       method_source
       rake (>= 0.8.7)
       thor (>= 0.19.0, < 2.0)
     rainbow (3.0.0)
-    rake (12.3.3)
-    rdf (3.0.12)
+    rake (13.0.1)
+    rdf (3.1.1)
       hamster (~> 3.0)
       link_header (~> 0.0, >= 0.0.8)
-    rdf-normalize (0.3.3)
-      rdf (>= 2.2, < 4.0)
+    rdf-normalize (0.4.0)
+      rdf (~> 3.1)
     redis (4.1.3)
     redis-actionpack (5.0.2)
       actionpack (>= 4.0, < 6)
@@ -516,7 +517,7 @@ GEM
     redis-activesupport (5.0.4)
       activesupport (>= 3, < 6)
       redis-store (>= 1.3, < 2)
-    redis-namespace (1.6.0)
+    redis-namespace (1.7.0)
       redis (>= 3.0.4)
     redis-rack (2.0.4)
       rack (>= 1.5, < 3)
@@ -528,49 +529,50 @@ GEM
     redis-store (1.5.0)
       redis (>= 2.2, < 5)
     regexp_parser (1.6.0)
-    request_store (1.4.1)
+    request_store (1.5.0)
       rack (>= 1.4)
     responders (3.0.0)
       actionpack (>= 5.0)
       railties (>= 5.0)
     rotp (2.1.2)
     rpam2 (4.0.2)
-    rqrcode (0.10.1)
+    rqrcode (1.1.2)
       chunky_png (~> 1.0)
-    rspec-core (3.8.0)
-      rspec-support (~> 3.8.0)
-    rspec-expectations (3.8.2)
+      rqrcode_core (~> 0.1)
+    rqrcode_core (0.1.1)
+    rspec-core (3.9.0)
+      rspec-support (~> 3.9.0)
+    rspec-expectations (3.9.0)
       diff-lcs (>= 1.2.0, < 2.0)
-      rspec-support (~> 3.8.0)
-    rspec-mocks (3.8.0)
+      rspec-support (~> 3.9.0)
+    rspec-mocks (3.9.0)
       diff-lcs (>= 1.2.0, < 2.0)
-      rspec-support (~> 3.8.0)
-    rspec-rails (3.8.2)
+      rspec-support (~> 3.9.0)
+    rspec-rails (3.9.0)
       actionpack (>= 3.0)
       activesupport (>= 3.0)
       railties (>= 3.0)
-      rspec-core (~> 3.8.0)
-      rspec-expectations (~> 3.8.0)
-      rspec-mocks (~> 3.8.0)
-      rspec-support (~> 3.8.0)
+      rspec-core (~> 3.9.0)
+      rspec-expectations (~> 3.9.0)
+      rspec-mocks (~> 3.9.0)
+      rspec-support (~> 3.9.0)
     rspec-sidekiq (3.0.3)
       rspec-core (~> 3.0, >= 3.0.0)
       sidekiq (>= 2.4.0)
-    rspec-support (3.8.0)
-    rubocop (0.74.0)
+    rspec-support (3.9.0)
+    rubocop (0.79.0)
       jaro_winkler (~> 1.5.1)
       parallel (~> 1.10)
-      parser (>= 2.6)
+      parser (>= 2.7.0.1)
       rainbow (>= 2.2.2, < 4.0)
       ruby-progressbar (~> 1.7)
       unicode-display_width (>= 1.4.0, < 1.7)
-    rubocop-rails (2.3.2)
+    rubocop-rails (2.4.1)
       rack (>= 1.1)
       rubocop (>= 0.72.0)
     ruby-progressbar (1.10.1)
     ruby-saml (1.9.0)
       nokogiri (>= 1.5.10)
-    ruby-statistics (2.1.1)
     rufus-scheduler (3.5.2)
       fugit (~> 1.1, >= 1.1.5)
     safe_yaml (1.0.5)
@@ -590,13 +592,16 @@ GEM
       rufus-scheduler (~> 3.2)
       sidekiq (>= 3)
       tilt (>= 1.4.0)
-    sidekiq-unique-jobs (6.0.13)
+    sidekiq-statistic (1.4.0)
+      sidekiq (>= 5.0)
+      tilt (~> 2.0)
+    sidekiq-unique-jobs (6.0.18)
       concurrent-ruby (~> 1.0, >= 1.0.5)
       sidekiq (>= 4.0, < 7.0)
       thor (~> 0)
     simple-navigation (4.1.0)
       activesupport (>= 2.3.2)
-    simple_form (4.1.0)
+    simple_form (5.0.1)
       actionpack (>= 5.0)
       activemodel (>= 5.0)
     simplecov (0.17.1)
@@ -604,6 +609,18 @@ GEM
       json (>= 1.8, < 3)
       simplecov-html (~> 0.10.0)
     simplecov-html (0.10.2)
+    sinatra (2.0.7)
+      mustermann (~> 1.0)
+      rack (~> 2.0)
+      rack-protection (= 2.0.7)
+      tilt (~> 2.0)
+    sinatra-contrib (2.0.7)
+      backports (>= 2.8.2)
+      multi_json
+      mustermann (~> 1.0)
+      rack-protection (= 2.0.7)
+      sinatra (= 2.0.7)
+      tilt (~> 2.0)
     sprockets (3.7.2)
       concurrent-ruby (~> 1.0)
       rack (> 1, < 3)
@@ -614,62 +631,68 @@ GEM
     sshkit (1.20.0)
       net-scp (>= 1.1.2)
       net-ssh (>= 2.8.0)
-    stackprof (0.2.12)
+    stackprof (0.2.15)
     statsd-ruby (1.4.0)
-    stoplight (2.1.3)
+    stoplight (2.2.0)
+    stoplight-admin (0.3.5)
+      haml (~> 5.0.4)
+      redis (>= 3.2)
+      sinatra-contrib (~> 2.0.5)
+      stoplight (>= 1.4)
     streamio-ffmpeg (3.0.2)
       multi_json (~> 1.8)
-    strong_migrations (0.4.1)
+    strong_migrations (0.5.1)
       activerecord (>= 5)
-    temple (0.8.1)
+    temple (0.8.2)
     terminal-table (1.8.0)
       unicode-display_width (~> 1.1, >= 1.1.1)
     terrapin (0.6.0)
       climate_control (>= 0.0.3, < 1.0)
     thor (0.20.3)
     thread_safe (0.3.6)
-    tilt (2.0.9)
+    thwait (0.1.0)
+    tilt (2.0.10)
     tty-color (0.5.0)
     tty-command (0.9.0)
       pastel (~> 0.7.0)
     tty-cursor (0.7.0)
-    tty-prompt (0.19.0)
+    tty-prompt (0.20.0)
       necromancer (~> 0.5.0)
       pastel (~> 0.7.0)
-      tty-reader (~> 0.6.0)
-    tty-reader (0.6.0)
+      tty-reader (~> 0.7.0)
+    tty-reader (0.7.0)
       tty-cursor (~> 0.7)
       tty-screen (~> 0.7)
       wisper (~> 2.0.0)
     tty-screen (0.7.0)
     twitter-text (1.14.7)
       unf (~> 0.1.0)
-    tzinfo (1.2.5)
+    tzinfo (1.2.6)
       thread_safe (~> 0.1)
     tzinfo-data (1.2019.3)
       tzinfo (>= 1.0.0)
     unf (0.1.4)
       unf_ext
-    unf_ext (0.0.7.5)
-    unicode-display_width (1.6.0)
-    uniform_notifier (1.12.1)
+    unf_ext (0.0.7.6)
+    unicode-display_width (1.6.1)
+    uniform_notifier (1.13.0)
     warden (1.2.8)
       rack (>= 2.0.6)
-    webmock (3.7.6)
+    webmock (3.8.0)
       addressable (>= 2.3.6)
       crack (>= 0.3.2)
       hashdiff (>= 0.4.0, < 2.0.0)
-    webpacker (4.0.7)
+    webpacker (4.2.2)
       activesupport (>= 4.2)
       rack-proxy (>= 0.6.1)
       railties (>= 4.2)
     webpush (0.3.8)
       hkdf (~> 0.2)
       jwt (~> 2.0)
-    websocket-driver (0.7.0)
+    websocket-driver (0.7.1)
       websocket-extensions (>= 0.1.0)
-    websocket-extensions (0.1.3)
-    wisper (2.0.0)
+    websocket-extensions (0.1.4)
+    wisper (2.0.1)
     xpath (3.2.0)
       nokogiri (~> 1.8)
 
@@ -678,56 +701,56 @@ PLATFORMS
 
 DEPENDENCIES
   active_model_serializers (~> 0.10)
-  active_record_query_trace (~> 1.6)
+  active_record_query_trace (~> 1.7)
   addressable (~> 2.7)
-  annotate (~> 2.7)
-  aws-sdk-s3 (~> 1.48)
+  annotate (~> 3.0)
+  aws-sdk-s3 (~> 1.60)
   better_errors (~> 2.5)
   binding_of_caller (~> 0.7)
   blurhash (~> 0.1)
   bootsnap (~> 1.4)
-  brakeman (~> 4.6)
+  brakeman (~> 4.7)
   browser
-  bullet (~> 6.0)
+  bullet (~> 6.1)
   bundler-audit (~> 0.6)
   capistrano (~> 3.11)
   capistrano-rails (~> 1.4)
   capistrano-rbenv (~> 2.1)
   capistrano-yarn (~> 2.0)
-  capybara (~> 3.29)
-  charlock_holmes (~> 0.7.6)
-  chewy (~> 5.1)
-  cld3 (~> 3.2.4)
+  capybara (~> 3.30)
+  charlock_holmes (~> 0.7.7)
+  chewy!
+  cld3 (~> 3.2.6)
   climate_control (~> 0.2)
   concurrent-ruby
   connection_pool
-  derailed_benchmarks
   devise (~> 4.7)
   devise-two-factor (~> 3.1)
   devise_pam_authenticatable2 (~> 9.2)
   discard (~> 1.1)
   doorkeeper (~> 5.2)
   dotenv-rails (~> 2.7)
-  fabrication (~> 2.20)
-  faker (~> 2.5)
+  e2mmap (~> 0.1.0)
+  fabrication (~> 2.21)
+  faker (~> 2.10)
   fast_blank (~> 1.0)
   fastimage
   fog-core (<= 2.1.0)
   fog-openstack (~> 0.3)
-  fuubar (~> 2.4)
+  fuubar (~> 2.5)
   goldfinger (~> 2.1)
   hamlit-rails (~> 0.2)
   health_check!
   hiredis (~> 0.6)
   htmlentities (~> 4.3)
-  http (~> 3.3)
+  http (~> 4.3)
   http_accept_language (~> 2.1)
   http_parser.rb (~> 0.6)!
-  httplog (~> 1.3)
+  httplog (~> 1.4)
   i18n-tasks (~> 0.9)
   idn-ruby
   iso-639
-  json-ld!
+  json-ld
   json-ld-preloaded (~> 3.0)
   kaminari (~> 1.1)
   letter_opener (~> 1.7)
@@ -737,73 +760,71 @@ DEPENDENCIES
   makara (~> 0.4)
   mario-redis-lock (~> 1.2)
   memory_profiler
-  microformats (~> 4.1)
-  mime-types (~> 3.3)
-  net-ldap (~> 0.10)
+  microformats (~> 4.2)
+  mime-types (~> 3.3.1)
+  net-ldap (~> 0.16)
   nilsimsa!
   nokogiri (~> 1.10)
   nsa (~> 0.2)
-  oj (~> 3.9)
+  oj (~> 3.10)
   omniauth (~> 1.9)
   omniauth-cas (~> 1.1)
   omniauth-saml (~> 1.10)
-  ostatus2 (~> 2.0)
-  ox (~> 2.11)
+  ox (~> 2.12)
   paperclip (~> 6.0)
   paperclip-av-transcoder (~> 0.6)
-  parallel (~> 1.17)
-  parallel_tests (~> 2.29)
+  parallel (~> 1.19)
+  parallel_tests (~> 2.30)
   parslet
-  pg (~> 1.1)
-  pghero (~> 2.3)
-  pkg-config (~> 1.3)
+  pg (~> 1.2)
+  pghero (~> 2.4)
+  pkg-config (~> 1.4)
   posix-spawn!
   premailer-rails
   private_address_check (~> 0.5)
   pry-byebug (~> 3.7)
   pry-rails (~> 0.3)
-  puma (~> 4.2)
+  puma (~> 4.3)
   pundit (~> 2.1)
-  rack-attack (~> 6.1)
-  rack-cors (~> 1.0)
-  rails (~> 5.2.3)
+  rack!
+  rack-attack (~> 6.2)
+  rack-cors (~> 1.1)
+  rails (~> 5.2.4)
   rails-controller-testing (~> 1.0)
   rails-i18n (~> 5.1)
   rails-settings-cached (~> 0.6)
-  rdf-normalize (~> 0.3)
+  rdf-normalize (~> 0.4)
   redis (~> 4.1)
-  redis-namespace (~> 1.5)
+  redis-namespace (~> 1.7)
   redis-rails (~> 5.0)
-  rqrcode (~> 0.10)
-  rspec-rails (~> 3.8)
+  rqrcode (~> 1.1)
+  rspec-rails (~> 3.9)
   rspec-sidekiq (~> 3.0)
-  rubocop (~> 0.74)
-  rubocop-rails (~> 2.3)
+  rubocop (~> 0.79)
+  rubocop-rails (~> 2.4)
   ruby-progressbar (~> 1.10)
   sanitize (~> 5.1)
   sidekiq (~> 5.2)
   sidekiq-bulk (~> 0.2.0)
   sidekiq-scheduler (~> 3.0)
+  sidekiq-statistic (~> 1.4)
   sidekiq-unique-jobs (~> 6.0)
   simple-navigation (~> 4.1)
-  simple_form (~> 4.1)
+  simple_form (~> 5.0)
   simplecov (~> 0.17)
+  sprockets (~> 3.7.2)
   sprockets-rails (~> 3.2)
   stackprof
-  stoplight (~> 2.1.3)
+  stoplight (~> 2.2.0)
+  stoplight-admin (~> 0.3.5)
   streamio-ffmpeg (~> 3.0)
-  strong_migrations (~> 0.4)
+  strong_migrations (~> 0.5)
   thor (~> 0.20)
+  thwait (~> 0.1.0)
   tty-command (~> 0.9)
-  tty-prompt (~> 0.19)
+  tty-prompt (~> 0.20)
   twitter-text (~> 1.14)
   tzinfo-data (~> 1.2019)
-  webmock (~> 3.7)
-  webpacker (~> 4.0)
+  webmock (~> 3.8)
+  webpacker (~> 4.2)
   webpush
-
-RUBY VERSION
-   ruby 2.6.5p114
-
-BUNDLED WITH
-   1.17.3
diff --git a/README.md b/README.md
index d50c1b3bc0fd8db8e56d063f9c0cd85186d881ae..7db66abfa02c14a1ed6a69e38e69b5628873ac70 100644
--- a/README.md
+++ b/README.md
@@ -13,7 +13,7 @@
 [crowdin]: https://crowdin.com/project/mastodon
 [docker]: https://hub.docker.com/r/tootsuite/mastodon/
 
-Mastodon is a **free, open-source social network server** based on ActivityPub. Follow friends and discover new ones. Publish anything you want: links, pictures, text, video. All servers of Mastodon are interoperable as a federated network, i.e. users on one server can seamlessly communicate with users from another one. This includes non-Mastodon software that also implements ActivityPub!
+Mastodon is a **free, open-source social network server** based on ActivityPub where users can follow friends and discover new ones. On Mastodon, users can publish anything they want: links, pictures, text, video. All Mastodon servers are interoperable as a federated network (users on one server can seamlessly communicate with users from another one, including non-Mastodon software that implements ActivityPub)!
 
 Click below to **learn more** in a video:
 
@@ -70,15 +70,15 @@ Mastodon acts as an OAuth2 provider so 3rd party apps can use the REST and Strea
 - **PostgreSQL** 9.5+
 - **Redis**
 - **Ruby** 2.4+
-- **Node.js** 8+
+- **Node.js** 10.13+
 
-The repository includes deployment configurations for **Docker and docker-compose**, but also a few specific platforms like **Heroku**, **Scalingo**, and **Nanobox**. The [**stand-alone** installation guide](https://docs.joinmastodon.org/administration/installation/) is available in the documentation.
+The repository includes deployment configurations for **Docker and docker-compose**, but also a few specific platforms like **Heroku**, **Scalingo**, and **Nanobox**. The [**stand-alone** installation guide](https://docs.joinmastodon.org/admin/install/) is available in the documentation.
 
 A **Vagrant** configuration is included for development purposes.
 
 ## Contributing
 
-Mastodon is **free, open source software** licensed under **AGPLv3**.
+Mastodon is **free, open-source software** licensed under **AGPLv3**.
 
 You can open issues for bugs you've found or features you think are missing. You can also submit pull requests to this repository, or submit translations using Weblate. To get started, take a look at [CONTRIBUTING.md](CONTRIBUTING.md). If your contributions are accepted into Mastodon, you can request to be paid through [our OpenCollective](https://opencollective.com/mastodon).
 
@@ -86,7 +86,7 @@ You can open issues for bugs you've found or features you think are missing. You
 
 ## License
 
-Copyright (C) 2016-2019 Eugen Rochko & other Mastodon contributors (see [AUTHORS.md](AUTHORS.md))
+Copyright (C) 2016-2020 Eugen Rochko & other Mastodon contributors (see [AUTHORS.md](AUTHORS.md))
 
 This program is free software: you can redistribute it and/or modify it under the terms of the GNU Affero General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.
 
diff --git a/app/chewy/accounts_index.rb b/app/chewy/accounts_index.rb
index b814e009e5f7792e73d56852f84f8c8d79af57a9..4ef383c12c69ec4096f771ab465fb186b448faeb 100644
--- a/app/chewy/accounts_index.rb
+++ b/app/chewy/accounts_index.rb
@@ -37,6 +37,7 @@ class AccountsIndex < Chewy::Index
 
       field :following_count, type: 'long', value: ->(account) { account.following.local.count }
       field :followers_count, type: 'long', value: ->(account) { account.followers.local.count }
+      field :subscribing_count, type: 'long', value: ->(account) { account.subscribing.local.count }
       field :last_status_at, type: 'date', value: ->(account) { account.last_status_at || account.created_at }
     end
   end
diff --git a/app/chewy/statuses_index.rb b/app/chewy/statuses_index.rb
index f5735421c7c90bccc616cacbbd89b312eeb4629c..70865ac8774f2fc3fff8b6fe92377d6aa5c37d23 100644
--- a/app/chewy/statuses_index.rb
+++ b/app/chewy/statuses_index.rb
@@ -2,31 +2,26 @@
 
 class StatusesIndex < Chewy::Index
   settings index: { refresh_interval: '15m' }, analysis: {
-    filter: {
-      english_stop: {
-        type: 'stop',
-        stopwords: '_english_',
-      },
-      english_stemmer: {
-        type: 'stemmer',
-        language: 'english',
-      },
-      english_possessive_stemmer: {
-        type: 'stemmer',
-        language: 'possessive_english',
+    tokenizer: {
+      sudachi_tokenizer: {
+        type: 'sudachi_tokenizer',
+        mode: 'search',
+        discard_punctuation: true,
+        resources_path: '/etc/elasticsearch',
+        settings_path: '/etc/elasticsearch/sudachi.json',
       },
     },
     analyzer: {
       content: {
-        tokenizer: 'uax_url_email',
         filter: %w(
-          english_possessive_stemmer
           lowercase
-          asciifolding
           cjk_width
-          english_stop
-          english_stemmer
+          sudachi_part_of_speech
+          sudachi_ja_stop
+          sudachi_baseform
         ),
+        tokenizer: 'sudachi_tokenizer',
+        type: 'custom',
       },
     },
   }
@@ -47,11 +42,16 @@ class StatusesIndex < Chewy::Index
       data.each.with_object({}) { |(id, name), result| (result[id] ||= []).push(name) }
     end
 
+    crutch :bookmarks do |collection|
+      data = ::Bookmark.where(status_id: collection.map(&:id)).where(account: Account.local).pluck(:status_id, :account_id)
+      data.each.with_object({}) { |(id, name), result| (result[id] ||= []).push(name) }
+    end
+
     root date_detection: false do
       field :id, type: 'long'
       field :account_id, type: 'long'
 
-      field :text, type: 'text', value: ->(status) { [status.spoiler_text, Formatter.instance.plaintext(status)].concat(status.media_attachments.map(&:description)).concat(status.preloadable_poll ? status.preloadable_poll.options : []).join("\n\n") } do
+      field :text, type: 'text', value: ->(status) { status.index_text } do
         field :stemmed, type: 'text', analyzer: 'content'
       end
 
diff --git a/app/controllers/activitypub/inboxes_controller.rb b/app/controllers/activitypub/inboxes_controller.rb
index bcfc1e6d4234ed4646b3e25dab3f5e1b38303769..291eec19a8ce4c72642d0fb51ceb0e1709dfd274 100644
--- a/app/controllers/activitypub/inboxes_controller.rb
+++ b/app/controllers/activitypub/inboxes_controller.rb
@@ -7,6 +7,7 @@ class ActivityPub::InboxesController < ActivityPub::BaseController
 
   before_action :skip_unknown_actor_delete
   before_action :require_signature!
+  skip_before_action :authenticate_user!
 
   def create
     upgrade_account
diff --git a/app/controllers/admin/accounts_controller.rb b/app/controllers/admin/accounts_controller.rb
index 68b6352f886faa839ac8d796a03a759a22fcb960..7b17835429974bbb76958e1097ee86619d443b71 100644
--- a/app/controllers/admin/accounts_controller.rb
+++ b/app/controllers/admin/accounts_controller.rb
@@ -109,21 +109,7 @@ module Admin
     end
 
     def filter_params
-      params.permit(
-        :local,
-        :remote,
-        :by_domain,
-        :active,
-        :pending,
-        :disabled,
-        :silenced,
-        :suspended,
-        :username,
-        :display_name,
-        :email,
-        :ip,
-        :staff
-      )
+      params.slice(*AccountFilter::KEYS).permit(*AccountFilter::KEYS)
     end
   end
 end
diff --git a/app/controllers/admin/custom_emojis_controller.rb b/app/controllers/admin/custom_emojis_controller.rb
index 2af90f0513ce7b59a15f54210b22bcc6bb19a66d..efa8f29505d257dbfae587b5c05db60bb8f80341 100644
--- a/app/controllers/admin/custom_emojis_controller.rb
+++ b/app/controllers/admin/custom_emojis_controller.rb
@@ -2,10 +2,6 @@
 
 module Admin
   class CustomEmojisController < BaseController
-    include ObfuscateFilename
-
-    obfuscate_filename [:custom_emoji, :image]
-
     def index
       authorize :custom_emoji, :index?
 
@@ -52,7 +48,7 @@ module Admin
     end
 
     def filter_params
-      params.slice(:local, :remote, :by_domain, :shortcode, :page).permit(:local, :remote, :by_domain, :shortcode, :page)
+      params.slice(:page, *CustomEmojiFilter::KEYS).permit(:page, *CustomEmojiFilter::KEYS)
     end
 
     def action_from_button
diff --git a/app/controllers/admin/instances_controller.rb b/app/controllers/admin/instances_controller.rb
index b47b18f8eb81087769f2521b0298902d42e2259a..2fc04120757f19cae18bd4a8ba14fb4609fb803c 100644
--- a/app/controllers/admin/instances_controller.rb
+++ b/app/controllers/admin/instances_controller.rb
@@ -62,7 +62,7 @@ module Admin
     end
 
     def filter_params
-      params.permit(:limited, :by_domain)
+      params.slice(*InstanceFilter::KEYS).permit(*InstanceFilter::KEYS)
     end
   end
 end
diff --git a/app/controllers/admin/invites_controller.rb b/app/controllers/admin/invites_controller.rb
index 44a8eec77b2eea27baf239b82797c5e87a2ef225..dabfe97655f933ee6938cfa225d67dab5ae79bca 100644
--- a/app/controllers/admin/invites_controller.rb
+++ b/app/controllers/admin/invites_controller.rb
@@ -47,7 +47,7 @@ module Admin
     end
 
     def filter_params
-      params.permit(:available, :expired)
+      params.slice(*InviteFilter::KEYS).permit(*InviteFilter::KEYS)
     end
   end
 end
diff --git a/app/controllers/admin/reports_controller.rb b/app/controllers/admin/reports_controller.rb
index f138376b2f73611cea0ff4b6c102784a14714156..7c831b3d4c38304f98faf58377b2c772463f619c 100644
--- a/app/controllers/admin/reports_controller.rb
+++ b/app/controllers/admin/reports_controller.rb
@@ -52,11 +52,7 @@ module Admin
     end
 
     def filter_params
-      params.permit(
-        :account_id,
-        :resolved,
-        :target_account_id
-      )
+      params.slice(*ReportFilter::KEYS).permit(*ReportFilter::KEYS)
     end
 
     def set_report
diff --git a/app/controllers/admin/tags_controller.rb b/app/controllers/admin/tags_controller.rb
index 65341bbfbe74cc4259ce46cbc53145b41a667c14..59df4470e611b2baf754f49ce4fb129bc4c4b726 100644
--- a/app/controllers/admin/tags_controller.rb
+++ b/app/controllers/admin/tags_controller.rb
@@ -73,7 +73,7 @@ module Admin
     end
 
     def filter_params
-      params.slice(:directory, :reviewed, :unreviewed, :pending_review, :page, :popular, :active, :name).permit(:directory, :reviewed, :unreviewed, :pending_review, :page, :popular, :active, :name)
+      params.slice(:page, *TagFilter::KEYS).permit(:page, *TagFilter::KEYS)
     end
 
     def tag_params
diff --git a/app/controllers/api/base_controller.rb b/app/controllers/api/base_controller.rb
index 33df75b374b388b8f9bf8cf276cf7574ad5ebd50..144fdd6ac9de99fbb97c4fa23166e9131401f71b 100644
--- a/app/controllers/api/base_controller.rb
+++ b/app/controllers/api/base_controller.rb
@@ -20,6 +20,10 @@ class Api::BaseController < ApplicationController
     render json: { error: e.to_s }, status: 422
   end
 
+  rescue_from ActiveRecord::RecordNotUnique do
+    render json: { error: 'Duplicate record' }, status: 422
+  end
+
   rescue_from ActiveRecord::RecordNotFound do
     render json: { error: 'Record not found' }, status: 404
   end
diff --git a/app/controllers/api/oembed_controller.rb b/app/controllers/api/oembed_controller.rb
index 37a163cd333d32ae0e672efc37e2d8243057b856..c8c60b1cf664c9b6f1fd641c9b732dc331b6bb5a 100644
--- a/app/controllers/api/oembed_controller.rb
+++ b/app/controllers/api/oembed_controller.rb
@@ -3,6 +3,8 @@
 class Api::OEmbedController < Api::BaseController
   respond_to :json
 
+  skip_before_action :require_authenticated_user!
+
   def show
     @status = status_finder.status
     render json: @status, serializer: OEmbedSerializer, width: maxwidth_or_default, height: maxheight_or_default
diff --git a/app/controllers/api/proofs_controller.rb b/app/controllers/api/proofs_controller.rb
index a98599eee668009f4d1d911fd364535698dedfae..dd32cd577bfceaaba93f6387274f9d957be39818 100644
--- a/app/controllers/api/proofs_controller.rb
+++ b/app/controllers/api/proofs_controller.rb
@@ -3,6 +3,8 @@
 class Api::ProofsController < Api::BaseController
   include AccountOwnedConcern
 
+  skip_before_action :require_authenticated_user!
+
   before_action :set_provider
 
   def index
diff --git a/app/controllers/api/v1/accounts/credentials_controller.rb b/app/controllers/api/v1/accounts/credentials_controller.rb
index b2fa720b6bcdde4fbf9d67da81c49ea3edbab649..af4b6e68f9765225832ed27e858bdb73a3177dca 100644
--- a/app/controllers/api/v1/accounts/credentials_controller.rb
+++ b/app/controllers/api/v1/accounts/credentials_controller.rb
@@ -25,7 +25,7 @@ class Api::V1::Accounts::CredentialsController < Api::BaseController
   end
 
   def user_settings_params
-    return nil unless params.key?(:source)
+    return nil if params[:source].blank?
 
     source_params = params.require(:source)
 
diff --git a/app/controllers/api/v1/accounts/featured_tags_controller.rb b/app/controllers/api/v1/accounts/featured_tags_controller.rb
new file mode 100644
index 0000000000000000000000000000000000000000..d6277261d4503e35d90d99d688bf336bbe0e2ff2
--- /dev/null
+++ b/app/controllers/api/v1/accounts/featured_tags_controller.rb
@@ -0,0 +1,22 @@
+# frozen_string_literal: true
+
+class Api::V1::Accounts::FeaturedTagsController < Api::BaseController
+  before_action :set_account
+  before_action :set_featured_tags
+
+  respond_to :json
+
+  def index
+    render json: @featured_tags, each_serializer: REST::AccountFeaturedTagSerializer
+  end
+
+  private
+
+  def set_account
+    @account = Account.find(params[:account_id])
+  end
+
+  def set_featured_tags
+    @featured_tags = @account.featured_tags
+  end
+end
diff --git a/app/controllers/api/v1/accounts/follower_accounts_controller.rb b/app/controllers/api/v1/accounts/follower_accounts_controller.rb
index 2dabb8398c13165effa3cec8194ba138cfd2b50a..e360b8a9296b2cee97ce038a9db35dde753b1981 100644
--- a/app/controllers/api/v1/accounts/follower_accounts_controller.rb
+++ b/app/controllers/api/v1/accounts/follower_accounts_controller.rb
@@ -21,11 +21,13 @@ class Api::V1::Accounts::FollowerAccountsController < Api::BaseController
   def load_accounts
     return [] if hide_results?
 
-    default_accounts.merge(paginated_follows).to_a
+    scope = default_accounts
+    scope = scope.where.not(id: current_account.excluded_from_timeline_account_ids) unless current_account.nil?
+    scope.merge(paginated_follows).to_a
   end
 
   def hide_results?
-    (@account.user_hides_network? && current_account.id != @account.id) || (current_account && @account.blocking?(current_account))
+    (@account.user_hides_network? && current_account&.id != @account.id) || (current_account && @account.blocking?(current_account))
   end
 
   def default_accounts
diff --git a/app/controllers/api/v1/accounts/following_accounts_controller.rb b/app/controllers/api/v1/accounts/following_accounts_controller.rb
index 44e89804b377e40a470182cb3ba2038d1050362b..a405b365f2c24422f3ae40f957cdcc61d2658749 100644
--- a/app/controllers/api/v1/accounts/following_accounts_controller.rb
+++ b/app/controllers/api/v1/accounts/following_accounts_controller.rb
@@ -21,11 +21,13 @@ class Api::V1::Accounts::FollowingAccountsController < Api::BaseController
   def load_accounts
     return [] if hide_results?
 
-    default_accounts.merge(paginated_follows).to_a
+    scope = default_accounts
+    scope = scope.where.not(id: current_account.excluded_from_timeline_account_ids) unless current_account.nil?
+    scope.merge(paginated_follows).to_a
   end
 
   def hide_results?
-    (@account.user_hides_network? && current_account.id != @account.id) || (current_account && @account.blocking?(current_account))
+    (@account.user_hides_network? && current_account&.id != @account.id) || (current_account && @account.blocking?(current_account))
   end
 
   def default_accounts
diff --git a/app/controllers/api/v1/accounts/subscribing_accounts_controller.rb b/app/controllers/api/v1/accounts/subscribing_accounts_controller.rb
new file mode 100644
index 0000000000000000000000000000000000000000..3fbfcc70d57ffe7aa3f2f3522d9d8bd4dabc8230
--- /dev/null
+++ b/app/controllers/api/v1/accounts/subscribing_accounts_controller.rb
@@ -0,0 +1,64 @@
+# frozen_string_literal: true
+
+class Api::V1::Accounts::SubscribingAccountsController < Api::BaseController
+  before_action -> { doorkeeper_authorize! :read, :'read:accounts' }
+  before_action :require_user!
+  after_action :insert_pagination_headers
+
+  respond_to :json
+
+  def index
+    @accounts = load_accounts
+    render json: @accounts, each_serializer: REST::AccountSerializer
+  end
+
+  private
+
+  def load_accounts
+    default_accounts.merge(paginated_subscribings).to_a
+  end
+
+  def default_accounts
+    Account.includes(:passive_subscribes, :account_stat).references(:passive_subscribes)
+  end
+
+  def paginated_subscribings
+    AccountSubscribe.where(account_id: current_user.account_id).paginate_by_max_id(
+      limit_param(DEFAULT_ACCOUNTS_LIMIT),
+      params[:max_id],
+      params[:since_id]
+    )
+  end
+
+  def insert_pagination_headers
+    set_pagination_headers(next_path, prev_path)
+  end
+
+  def next_path
+    if records_continue?
+      api_v1_accounts_subscribing_index_url pagination_params(max_id: pagination_max_id)
+    end
+  end
+
+  def prev_path
+    unless @accounts.empty?
+      api_v1_accounts_subscribing_index_url pagination_params(since_id: pagination_since_id)
+    end
+  end
+
+  def pagination_max_id
+    @accounts.last.passive_subscribes.first.id
+  end
+
+  def pagination_since_id
+    @accounts.first.passive_subscribes.first.id
+  end
+
+  def records_continue?
+    @accounts.size == limit_param(DEFAULT_ACCOUNTS_LIMIT)
+  end
+
+  def pagination_params(core_params)
+    params.slice(:limit).permit(:limit).merge(core_params)
+  end
+end
diff --git a/app/controllers/api/v1/accounts_controller.rb b/app/controllers/api/v1/accounts_controller.rb
index d68d2715f71541ad619afdada6dad212f4a8fbfd..235deef34bd968725d13e78774c2ff2518e1c3b6 100644
--- a/app/controllers/api/v1/accounts_controller.rb
+++ b/app/controllers/api/v1/accounts_controller.rb
@@ -1,8 +1,8 @@
 # frozen_string_literal: true
 
 class Api::V1::AccountsController < Api::BaseController
-  before_action -> { authorize_if_got_token! :read, :'read:accounts' }, except: [:create, :follow, :unfollow, :block, :unblock, :mute, :unmute]
-  before_action -> { doorkeeper_authorize! :follow, :'write:follows' }, only: [:follow, :unfollow]
+  before_action -> { authorize_if_got_token! :read, :'read:accounts' }, except: [:create, :follow, :unfollow, :subscribe, :unsubscribe, :block, :unblock, :mute, :unmute]
+  before_action -> { doorkeeper_authorize! :follow, :'write:follows' }, only: [:follow, :unfollow, :subscribe, :unsubscribe]
   before_action -> { doorkeeper_authorize! :follow, :'write:mutes' }, only: [:mute, :unmute]
   before_action -> { doorkeeper_authorize! :follow, :'write:blocks' }, only: [:block, :unblock]
   before_action -> { doorkeeper_authorize! :write, :'write:accounts' }, only: [:create]
@@ -38,6 +38,11 @@ class Api::V1::AccountsController < Api::BaseController
     render json: @account, serializer: REST::RelationshipSerializer, relationships: relationships(options)
   end
 
+  def subscribe
+    AccountSubscribeService.new.call(current_user.account, @account)
+    render json: @account, serializer: REST::RelationshipSerializer, relationships: relationships
+  end
+
   def block
     BlockService.new.call(current_user.account, @account)
     render json: @account, serializer: REST::RelationshipSerializer, relationships: relationships
@@ -53,6 +58,11 @@ class Api::V1::AccountsController < Api::BaseController
     render json: @account, serializer: REST::RelationshipSerializer, relationships: relationships
   end
 
+  def unsubscribe
+    UnsubscribeAccountService.new.call(current_user.account, @account)
+    render json: @account, serializer: REST::RelationshipSerializer, relationships: relationships
+  end
+
   def unblock
     UnblockService.new.call(current_user.account, @account)
     render json: @account, serializer: REST::RelationshipSerializer, relationships: relationships
diff --git a/app/controllers/api/v1/bookmarks_controller.rb b/app/controllers/api/v1/bookmarks_controller.rb
new file mode 100644
index 0000000000000000000000000000000000000000..e1b244e76fea8d69982f0ba448158c637c7caa9d
--- /dev/null
+++ b/app/controllers/api/v1/bookmarks_controller.rb
@@ -0,0 +1,66 @@
+# frozen_string_literal: true
+
+class Api::V1::BookmarksController < Api::BaseController
+  before_action -> { doorkeeper_authorize! :read, :'read:bookmarks' }
+  before_action :require_user!
+  after_action :insert_pagination_headers
+
+  respond_to :json
+
+  def index
+    @statuses = load_statuses
+    render json: @statuses, each_serializer: REST::StatusSerializer, relationships: StatusRelationshipsPresenter.new(@statuses, current_user&.account_id)
+  end
+
+  private
+
+  def load_statuses
+    cached_bookmarks
+  end
+
+  def cached_bookmarks
+    cache_collection(
+      Status.reorder(nil).joins(:bookmarks).merge(results),
+      Status
+    )
+  end
+
+  def results
+    @_results ||= account_bookmarks.paginate_by_id(
+      limit_param(DEFAULT_STATUSES_LIMIT),
+      params_slice(:max_id, :since_id, :min_id)
+    )
+  end
+
+  def account_bookmarks
+    current_account.bookmarks
+  end
+
+  def insert_pagination_headers
+    set_pagination_headers(next_path, prev_path)
+  end
+
+  def next_path
+    api_v1_bookmarks_url pagination_params(max_id: pagination_max_id) if records_continue?
+  end
+
+  def prev_path
+    api_v1_bookmarks_url pagination_params(min_id: pagination_since_id) unless results.empty?
+  end
+
+  def pagination_max_id
+    results.last.id
+  end
+
+  def pagination_since_id
+    results.first.id
+  end
+
+  def records_continue?
+    results.size == limit_param(DEFAULT_STATUSES_LIMIT)
+  end
+
+  def pagination_params(core_params)
+    params.slice(:limit).permit(:limit).merge(core_params)
+  end
+end
diff --git a/app/controllers/api/v1/domain_subscribes_controller.rb b/app/controllers/api/v1/domain_subscribes_controller.rb
new file mode 100644
index 0000000000000000000000000000000000000000..40cf753330e0d687eb55439f72725b55fca5ef9c
--- /dev/null
+++ b/app/controllers/api/v1/domain_subscribes_controller.rb
@@ -0,0 +1,34 @@
+# frozen_string_literal: true
+
+class Api::V1::DomainSubscribesController < Api::BaseController
+  before_action -> { doorkeeper_authorize! :read, :'read:follows' }, only: :index
+  before_action -> { doorkeeper_authorize! :write, :'write:follows' }, except: :index
+
+  before_action :require_user!
+  before_action :set_domain_subscribe, except: [:index, :create]
+
+  def index
+    @domain_subscribes = DomainSubscribe.where(account: current_account).all
+    render json: @domain_subscribes, each_serializer: REST::DomainSubscribeSerializer
+  end
+
+  def create
+    @domain_subscribe = DomainSubscribe.create!(domain_subscribe_params.merge(account: current_account))
+    render json: @domain_subscribe, serializer: REST::DomainSubscribeSerializer
+  end
+
+  def destroy
+    @domain_subscribe.destroy!
+    render_empty
+  end
+
+  private
+
+  def set_domain_subscribe
+    @domain_subscribe = DomainSubscribe.where(account: current_account).find(params[:id])
+  end
+
+  def domain_subscribe_params
+    params.permit(:domain, :list_id, :exclude_reblog)
+  end
+end
diff --git a/app/controllers/api/v1/favourite_tags_controller.rb b/app/controllers/api/v1/favourite_tags_controller.rb
new file mode 100644
index 0000000000000000000000000000000000000000..6d87efc0600c937b4755cdbcd2d976bd2a210d8d
--- /dev/null
+++ b/app/controllers/api/v1/favourite_tags_controller.rb
@@ -0,0 +1,43 @@
+# frozen_string_literal: true
+
+class Api::V1::FavouriteTagsController < Api::BaseController
+  before_action -> { doorkeeper_authorize! :read, :'read:favourite_tags' }, only: [:index, :show]
+  before_action -> { doorkeeper_authorize! :write, :'write:favourite_tags' }, except: [:index, :show]
+
+  before_action :require_user!
+  before_action :set_favourite_tag, except: [:index, :create]
+
+  def index
+    @favourite_tags = FavouriteTag.where(account: current_account).all
+    render json: @favourite_tags, each_serializer: REST::FavouriteTagSerializer
+  end
+
+  def show
+    render json: @favourite_tag, serializer: REST::FavouriteTagSerializer
+  end
+
+  def create
+    @favourite_tag = FavouriteTag.create!(favourite_tag_params.merge(account: current_account))
+    render json: @favourite_tag, serializer: REST::FavouriteTagSerializer
+  end
+
+  def update
+    @favourite_tag.update!(favourite_tag_params)
+    render json: @favourite_tag, serializer: REST::FavouriteTagSerializer
+  end
+
+  def destroy
+    @favourite_tag.destroy!
+    render_empty
+  end
+
+  private
+
+  def set_favourite_tag
+    @favourite_tag = FavouriteTag.where(account: current_account).find(params[:id])
+  end
+
+  def favourite_tag_params
+    params.permit(:name)
+  end
+end
diff --git a/app/controllers/api/v1/follow_tags_controller.rb b/app/controllers/api/v1/follow_tags_controller.rb
new file mode 100644
index 0000000000000000000000000000000000000000..95682ec7d2286323cb803952968cab56c9d5f90c
--- /dev/null
+++ b/app/controllers/api/v1/follow_tags_controller.rb
@@ -0,0 +1,43 @@
+# frozen_string_literal: true
+
+class Api::V1::FollowTagsController < Api::BaseController
+  before_action -> { doorkeeper_authorize! :read, :'read:follows' }, only: [:index, :show]
+  before_action -> { doorkeeper_authorize! :write, :'write:follows' }, except: [:index, :show]
+
+  before_action :require_user!
+  before_action :set_follow_tag, except: [:index, :create]
+
+  def index
+    @follow_tags = FollowTag.where(account: current_account).all
+    render json: @follow_tags, each_serializer: REST::FollowTagSerializer
+  end
+
+  def show
+    render json: @follow_tag, serializer: REST::FollowTagSerializer
+  end
+
+  def create
+    @follow_tag = FollowTag.create!(follow_tag_params.merge(account: current_account))
+    render json: @follow_tag, serializer: REST::FollowTagSerializer
+  end
+
+  def update
+    @follow_tag.update!(follow_tag_params)
+    render json: @follow_tag, serializer: REST::FollowTagSerializer
+  end
+
+  def destroy
+    @follow_tag.destroy!
+    render_empty
+  end
+
+  private
+
+  def set_follow_tag
+    @follow_tag = FollowTag.where(account: current_account).find(params[:id])
+  end
+
+  def follow_tag_params
+    params.permit(:name)
+  end
+end
diff --git a/app/controllers/api/v1/keyword_subscribes_controller.rb b/app/controllers/api/v1/keyword_subscribes_controller.rb
new file mode 100644
index 0000000000000000000000000000000000000000..ec80143ce55483a1e69ab7b4c4fff757cd11ab1c
--- /dev/null
+++ b/app/controllers/api/v1/keyword_subscribes_controller.rb
@@ -0,0 +1,48 @@
+# frozen_string_literal: true
+
+class Api::V1::KeywordSubscribeController < Api::BaseController
+  before_action -> { doorkeeper_authorize! :read, :'read:follows' }, only: [:index, :show]
+  before_action -> { doorkeeper_authorize! :write, :'write:follows' }, except: [:index, :show]
+  before_action :require_user!
+  before_action :set_keyword_subscribes, only: :index
+  before_action :set_keyword_subscribe, only: [:show, :update, :destroy]
+
+  respond_to :json
+
+  def index
+    render json: @keyword_subscribes, each_serializer: REST::KeywordSubscribeSerializer
+  end
+
+  def create
+    @keyword_subscribe = current_account.keyword_subscribes.create!(resource_params)
+    render json: @keyword_subscribe, serializer: REST::KeywordSubscribeSerializer
+  end
+
+  def show
+    render json: @keyword_subscribe, serializer: REST::KeywordSubscribeSerializer
+  end
+
+  def update
+    @keyword_subscribe.update!(resource_params)
+    render json: @keyword_subscribe, serializer: REST::KeywordSubscribeSerializer
+  end
+
+  def destroy
+    @keyword_subscribe.destroy!
+    render_empty
+  end
+
+  private
+
+  def set_keyword_subscribes
+    @keyword_subscribes = current_account.keyword_subscribes
+  end
+
+  def set_keyword_subscribe
+    @keyword_subscribe = current_account.keyword_subscribes.find(params[:id])
+  end
+
+  def resource_params
+    params.permit(:name, :keyword, :exclude_keyword, :ignorecase, :regexp, :ignore_block, :disabled, :list_id)
+  end
+end
diff --git a/app/controllers/api/v1/media_controller.rb b/app/controllers/api/v1/media_controller.rb
index aaa93b61583cf5b073b576c1332d10ed33ee6054..81825db1552a1dac9ccc9cc832ff788409e9f869 100644
--- a/app/controllers/api/v1/media_controller.rb
+++ b/app/controllers/api/v1/media_controller.rb
@@ -4,9 +4,6 @@ class Api::V1::MediaController < Api::BaseController
   before_action -> { doorkeeper_authorize! :write, :'write:media' }
   before_action :require_user!
 
-  include ObfuscateFilename
-  obfuscate_filename :file
-
   respond_to :json
 
   def create
diff --git a/app/controllers/api/v1/push/subscriptions_controller.rb b/app/controllers/api/v1/push/subscriptions_controller.rb
index 1b658f87083d5f293986fc2f99b125dbc0a2661a..1cbc92b93d70dcbfd916b75dd7932d20d2829354 100644
--- a/app/controllers/api/v1/push/subscriptions_controller.rb
+++ b/app/controllers/api/v1/push/subscriptions_controller.rb
@@ -51,6 +51,6 @@ class Api::V1::Push::SubscriptionsController < Api::BaseController
 
   def data_params
     return {} if params[:data].blank?
-    params.require(:data).permit(alerts: [:follow, :favourite, :reblog, :mention, :poll])
+    params.require(:data).permit(alerts: [:follow, :follow_request, :favourite, :reblog, :mention, :poll])
   end
 end
diff --git a/app/controllers/api/v1/statuses/bookmarks_controller.rb b/app/controllers/api/v1/statuses/bookmarks_controller.rb
new file mode 100644
index 0000000000000000000000000000000000000000..bb9729cf50fc055a056760c26bfee9493ab36013
--- /dev/null
+++ b/app/controllers/api/v1/statuses/bookmarks_controller.rb
@@ -0,0 +1,39 @@
+# frozen_string_literal: true
+
+class Api::V1::Statuses::BookmarksController < Api::BaseController
+  include Authorization
+
+  before_action -> { doorkeeper_authorize! :write, :'write:bookmarks' }
+  before_action :require_user!
+
+  respond_to :json
+
+  def create
+    @status = bookmarked_status
+    render json: @status, serializer: REST::StatusSerializer
+  end
+
+  def destroy
+    @status = requested_status
+    @bookmarks_map = { @status.id => false }
+
+    bookmark = Bookmark.find_by!(account: current_user.account, status: @status)
+    bookmark.destroy!
+
+    render json: @status, serializer: REST::StatusSerializer, relationships: StatusRelationshipsPresenter.new([@status], current_user&.account_id, bookmarks_map: @bookmarks_map)
+  end
+
+  private
+
+  def bookmarked_status
+    authorize_with current_user.account, requested_status, :show?
+
+    bookmark = Bookmark.find_or_create_by!(account: current_user.account, status: requested_status)
+
+    bookmark.status.reload
+  end
+
+  def requested_status
+    Status.find(params[:status_id])
+  end
+end
diff --git a/app/controllers/api/v1/statuses/favourited_by_accounts_controller.rb b/app/controllers/api/v1/statuses/favourited_by_accounts_controller.rb
index 657e57831989dbbf56890f540632c4d25ff72bd9..99eff360ec8121c370fc33d7e722f71caf7938de 100644
--- a/app/controllers/api/v1/statuses/favourited_by_accounts_controller.rb
+++ b/app/controllers/api/v1/statuses/favourited_by_accounts_controller.rb
@@ -17,7 +17,9 @@ class Api::V1::Statuses::FavouritedByAccountsController < Api::BaseController
   private
 
   def load_accounts
-    default_accounts.merge(paginated_favourites).to_a
+    scope = default_accounts
+    scope = scope.where.not(id: current_account.excluded_from_timeline_account_ids) unless current_account.nil?
+    scope.merge(paginated_favourites).to_a
   end
 
   def default_accounts
diff --git a/app/controllers/api/v1/statuses/reblogged_by_accounts_controller.rb b/app/controllers/api/v1/statuses/reblogged_by_accounts_controller.rb
index 6851099f6612cd794c456291e2b788e71cb3cb4b..cc285ad23182ab1111ff6676447f3bc1b831047b 100644
--- a/app/controllers/api/v1/statuses/reblogged_by_accounts_controller.rb
+++ b/app/controllers/api/v1/statuses/reblogged_by_accounts_controller.rb
@@ -17,7 +17,9 @@ class Api::V1::Statuses::RebloggedByAccountsController < Api::BaseController
   private
 
   def load_accounts
-    default_accounts.merge(paginated_statuses).to_a
+    scope = default_accounts
+    scope = scope.where.not(id: current_account.excluded_from_timeline_account_ids) unless current_account.nil?
+    scope.merge(paginated_statuses).to_a
   end
 
   def default_accounts
diff --git a/app/controllers/api/v1/statuses_controller.rb b/app/controllers/api/v1/statuses_controller.rb
index cb454e286473707a8c779c058a534bbe4f6ab39f..3b894b3e232fac3278244f9367bdff0dc1f14c28 100644
--- a/app/controllers/api/v1/statuses_controller.rb
+++ b/app/controllers/api/v1/statuses_controller.rb
@@ -45,7 +45,8 @@ class Api::V1::StatusesController < Api::BaseController
                                          application: doorkeeper_token.application,
                                          poll: status_params[:poll],
                                          idempotency: request.headers['Idempotency-Key'],
-                                         local_only: status_params[:local_only])
+                                         local_only: status_params[:local_only],
+                                         quote_id: status_params[:quote_id].blank? ? nil : status_params[:quote_id])
 
     render json: @status, serializer: @status.is_a?(ScheduledStatus) ? REST::ScheduledStatusSerializer : REST::StatusSerializer
   end
@@ -78,6 +79,7 @@ class Api::V1::StatusesController < Api::BaseController
       :visibility,
       :scheduled_at,
       :local_only,
+      :quote_id,
       media_ids: [],
       poll: [
         :multiple,
diff --git a/app/controllers/api/v1/timelines/public_controller.rb b/app/controllers/api/v1/timelines/public_controller.rb
index ccc10f966ca64789600fa8397108568a6860d39e..a59d9ecb752bf241e86a50bcda32306bf614d3e7 100644
--- a/app/controllers/api/v1/timelines/public_controller.rb
+++ b/app/controllers/api/v1/timelines/public_controller.rb
@@ -41,7 +41,11 @@ class Api::V1::Timelines::PublicController < Api::BaseController
   end
 
   def public_timeline_statuses
-    Status.as_public_timeline(current_account, truthy_param?(:local))
+    if params[:domain].present?
+      Status.as_domain_timeline(current_account, params[:domain])
+    else
+      Status.as_public_timeline(current_account, truthy_param?(:local))
+    end
   end
 
   def insert_pagination_headers
@@ -49,7 +53,7 @@ class Api::V1::Timelines::PublicController < Api::BaseController
   end
 
   def pagination_params(core_params)
-    params.slice(:local, :limit, :only_media).permit(:local, :limit, :only_media).merge(core_params)
+    params.slice(:local, :domain, :limit, :only_media).permit(:local, :domain, :limit, :only_media).merge(core_params)
   end
 
   def next_path
diff --git a/app/controllers/api/web/push_subscriptions_controller.rb b/app/controllers/api/web/push_subscriptions_controller.rb
index d8153e082feafdf2e2608492cf227fa93bcbb9e4..f388b17e5de2c2c7434d17485ff274a254f1114f 100644
--- a/app/controllers/api/web/push_subscriptions_controller.rb
+++ b/app/controllers/api/web/push_subscriptions_controller.rb
@@ -19,6 +19,7 @@ class Api::Web::PushSubscriptionsController < Api::Web::BaseController
     data = {
       alerts: {
         follow: alerts_enabled,
+        follow_request: false,
         favourite: alerts_enabled,
         reblog: alerts_enabled,
         mention: alerts_enabled,
@@ -58,6 +59,6 @@ class Api::Web::PushSubscriptionsController < Api::Web::BaseController
   end
 
   def data_params
-    @data_params ||= params.require(:data).permit(alerts: [:follow, :favourite, :reblog, :mention, :poll])
+    @data_params ||= params.require(:data).permit(alerts: [:follow, :follow_request, :favourite, :reblog, :mention, :poll])
   end
 end
diff --git a/app/controllers/application_controller.rb b/app/controllers/application_controller.rb
index bd3d137743f89339f8d7629a634a093435094c8e..0cfa2b38606f2e58e0bed58f4f203298e90235a9 100644
--- a/app/controllers/application_controller.rb
+++ b/app/controllers/application_controller.rb
@@ -24,6 +24,7 @@ class ApplicationController < ActionController::Base
   rescue_from ActionController::InvalidAuthenticityToken, with: :unprocessable_entity
   rescue_from ActionController::UnknownFormat, with: :not_acceptable
   rescue_from ActionController::ParameterMissing, with: :bad_request
+  rescue_from Paperclip::AdapterRegistry::NoHandlerError, with: :bad_request
   rescue_from ActiveRecord::RecordNotFound, with: :not_found
   rescue_from Mastodon::NotPermittedError, with: :forbidden
   rescue_from HTTP::Error, OpenSSL::SSL::SSLError, with: :internal_server_error
@@ -137,8 +138,8 @@ class ApplicationController < ActionController::Base
 
   def respond_with_error(code)
     respond_to do |format|
-      format.any  { head code }
-      format.html { render "errors/#{code}", layout: 'error', status: code }
+      format.any  { render "errors/#{code}", layout: 'error', status: code, formats: [:html] }
+      format.json { render json: { error: Rack::Utils::HTTP_STATUS_CODES[code] }, status: code }
     end
   end
 end
diff --git a/app/controllers/auth/registrations_controller.rb b/app/controllers/auth/registrations_controller.rb
index 019caf9c1aac5fc329e4dec2c9654b0b1abd92e8..212519c8b8055f023d83fdccc43fb0fa83740528 100644
--- a/app/controllers/auth/registrations_controller.rb
+++ b/app/controllers/auth/registrations_controller.rb
@@ -10,6 +10,7 @@ class Auth::RegistrationsController < Devise::RegistrationsController
   before_action :set_instance_presenter, only: [:new, :create, :update]
   before_action :set_body_classes, only: [:new, :create, :edit, :update]
   before_action :require_not_suspended!, only: [:update]
+  before_action :set_cache_headers, only: [:edit, :update]
 
   skip_before_action :require_functional!, only: [:edit, :update]
 
@@ -109,4 +110,8 @@ class Auth::RegistrationsController < Devise::RegistrationsController
   def require_not_suspended!
     forbidden if current_account.suspended?
   end
+
+  def set_cache_headers
+    response.headers['Cache-Control'] = 'no-cache, no-store, max-age=0, must-revalidate'
+  end
 end
diff --git a/app/controllers/concerns/obfuscate_filename.rb b/app/controllers/concerns/obfuscate_filename.rb
deleted file mode 100644
index 22736ec3abf968bbb07c5cb19b1e346a51e44981..0000000000000000000000000000000000000000
--- a/app/controllers/concerns/obfuscate_filename.rb
+++ /dev/null
@@ -1,16 +0,0 @@
-# frozen_string_literal: true
-
-module ObfuscateFilename
-  extend ActiveSupport::Concern
-
-  class_methods do
-    def obfuscate_filename(path)
-      before_action do
-        file = params.dig(*path)
-        next if file.nil?
-
-        file.original_filename = SecureRandom.hex(8) + File.extname(file.original_filename)
-      end
-    end
-  end
-end
diff --git a/app/controllers/filters_controller.rb b/app/controllers/filters_controller.rb
index d2e0fb73907f243bbae10be4b3bd6e2ce20c74ec..63d9d9cd37244fe81d84db26b413f7040c4ec0ec 100644
--- a/app/controllers/filters_controller.rb
+++ b/app/controllers/filters_controller.rb
@@ -1,10 +1,9 @@
 # frozen_string_literal: true
 
 class FiltersController < ApplicationController
-  include Authorization
-
   layout 'admin'
 
+  before_action :authenticate_user!
   before_action :set_filters, only: :index
   before_action :set_filter, only: [:edit, :update, :destroy]
   before_action :set_body_classes
diff --git a/app/controllers/follower_accounts_controller.rb b/app/controllers/follower_accounts_controller.rb
index 705ff412269c6cf30d4ee2477d54b2ed33ffe348..7103749adecf3deb252fc4c4a51b6d3f747f74e9 100644
--- a/app/controllers/follower_accounts_controller.rb
+++ b/app/controllers/follower_accounts_controller.rb
@@ -18,7 +18,6 @@ class FollowerAccountsController < ApplicationController
         next if @account.user_hides_network?
 
         follows
-        @relationships = AccountRelationshipsPresenter.new(follows.map(&:account_id), current_user.account_id) if user_signed_in?
       end
 
       format.json do
@@ -37,7 +36,11 @@ class FollowerAccountsController < ApplicationController
   private
 
   def follows
-    @follows ||= Follow.where(target_account: @account).recent.page(params[:page]).per(FOLLOW_PER_PAGE).preload(:account)
+    return @follows if defined?(@follows)
+
+    scope = Follow.where(target_account: @account)
+    scope = scope.where.not(account_id: current_account.excluded_from_timeline_account_ids) if user_signed_in?
+    @follows = scope.recent.page(params[:page]).per(FOLLOW_PER_PAGE).preload(:account)
   end
 
   def page_requested?
diff --git a/app/controllers/following_accounts_controller.rb b/app/controllers/following_accounts_controller.rb
index 968de980d1393724b9cf315c481305b1586d6971..6c8fb84d86b47c15a308ec0e4337a108029c8aac 100644
--- a/app/controllers/following_accounts_controller.rb
+++ b/app/controllers/following_accounts_controller.rb
@@ -18,7 +18,6 @@ class FollowingAccountsController < ApplicationController
         next if @account.user_hides_network?
 
         follows
-        @relationships = AccountRelationshipsPresenter.new(follows.map(&:target_account_id), current_user.account_id) if user_signed_in?
       end
 
       format.json do
@@ -37,7 +36,11 @@ class FollowingAccountsController < ApplicationController
   private
 
   def follows
-    @follows ||= Follow.where(account: @account).recent.page(params[:page]).per(FOLLOW_PER_PAGE).preload(:target_account)
+    return @follows if defined?(@follows)
+
+    scope = Follow.where(account: @account)
+    scope = scope.where.not(target_account_id: current_account.excluded_from_timeline_account_ids) if user_signed_in?
+    @follows = scope.recent.page(params[:page]).per(FOLLOW_PER_PAGE).preload(:target_account)
   end
 
   def page_requested?
diff --git a/app/controllers/oauth/authorizations_controller.rb b/app/controllers/oauth/authorizations_controller.rb
index cebbdc4d08b02bb1f31dc4bf5568a1aa22882624..bb5d639ced6a9d0e046b72b8b62da071282aa4e4 100644
--- a/app/controllers/oauth/authorizations_controller.rb
+++ b/app/controllers/oauth/authorizations_controller.rb
@@ -5,6 +5,7 @@ class Oauth::AuthorizationsController < Doorkeeper::AuthorizationsController
 
   before_action :store_current_location
   before_action :authenticate_resource_owner!
+  before_action :set_cache_headers
 
   include Localized
 
@@ -27,4 +28,8 @@ class Oauth::AuthorizationsController < Doorkeeper::AuthorizationsController
   def truthy_param?(key)
     ActiveModel::Type::Boolean.new.cast(params[key])
   end
+
+  def set_cache_headers
+    response.headers['Cache-Control'] = 'no-cache, no-store, max-age=0, must-revalidate'
+  end
 end
diff --git a/app/controllers/relationships_controller.rb b/app/controllers/relationships_controller.rb
index e6705c3275584b105f0ce8b9f3a64bb777af528b..9d0be4a008333efb34841c10926d5144259b5c35 100644
--- a/app/controllers/relationships_controller.rb
+++ b/app/controllers/relationships_controller.rb
@@ -85,7 +85,7 @@ class RelationshipsController < ApplicationController
   end
 
   def current_params
-    params.slice(:page, :status, :relationship, :by_domain, :activity, :order).permit(:page, :status, :relationship, :by_domain, :activity, :order)
+    params.slice(:page, *RelationshipFilter::KEYS).permit(:page, *RelationshipFilter::KEYS)
   end
 
   def action_from_button
diff --git a/app/controllers/settings/account_subscribes_controller.rb b/app/controllers/settings/account_subscribes_controller.rb
new file mode 100644
index 0000000000000000000000000000000000000000..e21badd4ec0a9694ea4f028942c1744965562692
--- /dev/null
+++ b/app/controllers/settings/account_subscribes_controller.rb
@@ -0,0 +1,74 @@
+# frozen_string_literal: true
+class Settings::AccountSubscribesController < Settings::BaseController
+  layout 'admin'
+
+  before_action :authenticate_user!
+  before_action :set_lists, only: [:index, :new, :edit, :update]
+  before_action :set_account_subscribings, only: :index
+  before_action :set_account_subscribing, only: [:edit, :update, :destroy]
+
+  def index
+  end
+
+  def new
+    @form_account_subscribing = Form::AccountSubscribe.new
+  end
+
+  def create
+    @form_account_subscribing = Form::AccountSubscribe.new(account_subscribe_params)
+    target_account = AccountSubscribeService.new.call(current_account, @form_account_subscribing.acct, @form_account_subscribing.show_reblogs, @form_account_subscribing.list_id)
+
+    if target_account
+      redirect_to settings_account_subscribes_path
+    else
+      set_account_subscribings
+
+      render :index
+    end
+  end
+
+  def edit; end
+
+  def update
+    if @account_subscribing.update(account_subscribe_params.merge(account: current_account))
+      redirect_to settings_account_subscribes_path
+    else
+      render action: :edit
+    end
+  end
+
+  def destroy
+    UnsubscribeAccountService.new.call(current_account, @account_subscribing.target_account)
+    redirect_to settings_account_subscribes_path
+  end
+
+  private
+
+  def set_account_subscribing
+    @account_subscribing = current_account.active_subscribes.find(params[:id])
+    @form_account_subscribing = Form::AccountSubscribe.new(id: @account_subscribing.id, acct: @account_subscribing.target_account.acct, show_reblogs: @account_subscribing.show_reblogs, list_id: @account_subscribing.list_id)
+  end
+
+  def set_account_subscribings
+    @account_subscribings = current_account.active_subscribes.order('list_id NULLS FIRST', :updated_at).reject(&:new_record?)
+  end
+
+  def set_lists
+    @lists = List.where(account: current_account).all
+  end
+
+  def account_subscribe_params
+    new_params = resource_params.permit!.to_h
+
+    if resource_params[:list_id] == '-1'
+      list = List.find_or_create_by!({ account: current_account, title: new_params[:acct] })
+      new_params.merge!({list_id: list.id})
+    end
+
+    new_params
+  end
+
+  def resource_params
+    params.require(:form_account_subscribe).permit(:acct, :show_reblogs, :list_id)
+  end
+end
diff --git a/app/controllers/settings/base_controller.rb b/app/controllers/settings/base_controller.rb
index 9bb14afa2d65d6be17ed665c26c675ef8aa5f717..3c404cfff20b308de7c997e2efb8e3d782acdbe0 100644
--- a/app/controllers/settings/base_controller.rb
+++ b/app/controllers/settings/base_controller.rb
@@ -2,10 +2,15 @@
 
 class Settings::BaseController < ApplicationController
   before_action :set_body_classes
+  before_action :set_cache_headers
 
   private
 
   def set_body_classes
     @body_classes = 'admin'
   end
+
+  def set_cache_headers
+    response.headers['Cache-Control'] = 'no-cache, no-store, max-age=0, must-revalidate'
+  end
 end
diff --git a/app/controllers/settings/domain_subscribes_controller.rb b/app/controllers/settings/domain_subscribes_controller.rb
new file mode 100644
index 0000000000000000000000000000000000000000..42fcbc6e42f3964b7dbe4a016ccb71af1ddb26a5
--- /dev/null
+++ b/app/controllers/settings/domain_subscribes_controller.rb
@@ -0,0 +1,73 @@
+# frozen_string_literal: true
+class Settings::DomainSubscribesController < Settings::BaseController
+  layout 'admin'
+
+  before_action :authenticate_user!
+  before_action :set_lists, only: [:index, :new, :edit, :update]
+  before_action :set_domain_subscribes, only: :index
+  before_action :set_domain_subscribe, only: [:edit, :update, :destroy]
+
+  def index
+    @domain_subscribe = DomainSubscribe.new
+  end
+
+  def new
+    @domain_subscribe = current_account.domain_subscribes.build
+  end
+
+  def create
+    @domain_subscribe = current_account.domain_subscribes.new(domain_subscribe_params)
+
+    if @domain_subscribe.save
+      redirect_to settings_domain_subscribes_path
+    else
+      set_domain_subscribe
+
+      render :index
+    end
+  end
+
+  def edit; end
+
+  def update
+    if @domain_subscribe.update(domain_subscribe_params)
+      redirect_to settings_domain_subscribes_path
+    else
+      render action: :edit
+    end
+  end
+
+  def destroy
+    @domain_subscribe.destroy!
+    redirect_to settings_domain_subscribes_path
+  end
+
+  private
+
+  def set_domain_subscribe
+    @domain_subscribe = current_account.domain_subscribes.find(params[:id])
+  end
+
+  def set_domain_subscribes
+    @domain_subscribes = current_account.domain_subscribes.includes(:list).order('list_id NULLS FIRST', :domain).reject(&:new_record?)
+  end
+
+  def set_lists
+    @lists = List.where(account: current_account).all
+  end
+
+  def domain_subscribe_params
+    new_params = resource_params.permit!.to_h
+
+    if resource_params[:list_id] == '-1'
+      list = List.find_or_create_by!({ account: current_account, title: new_params[:domain] })
+      new_params.merge!({list_id: list.id})
+    end
+
+    new_params
+  end
+
+  def resource_params
+    params.require(:domain_subscribe).permit(:domain, :list_id, :exclude_reblog)
+  end
+end
diff --git a/app/controllers/settings/favourite_tags_controller.rb b/app/controllers/settings/favourite_tags_controller.rb
new file mode 100644
index 0000000000000000000000000000000000000000..dcf07ade56438b3f37f685bcbe57912591b8ba4a
--- /dev/null
+++ b/app/controllers/settings/favourite_tags_controller.rb
@@ -0,0 +1,44 @@
+# frozen_string_literal: true
+
+class Settings::FavouriteTagsController < Settings::BaseController
+  layout 'admin'
+
+  before_action :authenticate_user!
+  before_action :set_favourite_tags, only: :index
+  before_action :set_favourite_tag, except: [:index, :create]
+
+  def index
+    @favourite_tag = FavouriteTag.new
+  end
+
+  def create
+    @favourite_tag = current_account.favourite_tags.new(favourite_tag_params)
+
+    if @favourite_tag.save
+      redirect_to settings_favourite_tags_path
+    else
+      set_favourite_tags
+
+      render :index
+    end
+  end
+
+  def destroy
+    @favourite_tag.destroy!
+    redirect_to settings_favourite_tags_path
+  end
+
+  private
+
+  def set_favourite_tag
+    @favourite_tag = current_account.favourite_tags.find(params[:id])
+  end
+
+  def set_favourite_tags
+    @favourite_tags = current_account.favourite_tags.order(:updated_at).reject(&:new_record?)
+  end
+
+  def favourite_tag_params
+    params.require(:favourite_tag).permit(:name)
+  end
+end
diff --git a/app/controllers/settings/follow_tags_controller.rb b/app/controllers/settings/follow_tags_controller.rb
new file mode 100644
index 0000000000000000000000000000000000000000..a42c00c347f4d358b267cb8bf516b6fd817a736a
--- /dev/null
+++ b/app/controllers/settings/follow_tags_controller.rb
@@ -0,0 +1,74 @@
+# frozen_string_literal: true
+
+class Settings::FollowTagsController < Settings::BaseController
+  layout 'admin'
+
+  before_action :authenticate_user!
+  before_action :set_lists, only: [:index, :new, :edit, :update]
+  before_action :set_follow_tags, only: :index
+  before_action :set_follow_tag, only: [:edit, :update, :destroy]
+
+  def index
+    @follow_tag = FollowTag.new
+  end
+
+  def new
+    @follow_tag = current_account.follow_tags.build
+  end
+
+  def create
+    @follow_tag = current_account.follow_tags.new(follow_tag_params)
+
+    if @follow_tag.save
+      redirect_to settings_follow_tags_path
+    else
+      set_follow_tags
+
+      render :index
+    end
+  end
+
+  def edit; end
+
+  def update
+    if @follow_tag.update(follow_tag_params)
+      redirect_to settings_follow_tag_path
+    else
+      render action: :edit
+    end
+  end
+
+  def destroy
+    @follow_tag.destroy!
+    redirect_to settings_follow_tags_path
+  end
+
+  private
+
+  def set_follow_tag
+    @follow_tag = current_account.follow_tags.find(params[:id])
+  end
+
+  def set_follow_tags
+    @follow_tags = current_account.follow_tags.order('list_id NULLS FIRST', :updated_at).reject(&:new_record?)
+  end
+
+  def set_lists
+    @lists = List.where(account: current_account).all
+  end
+
+  def follow_tag_params
+    new_params = resource_params.permit!.to_h
+
+    if resource_params[:list_id] == '-1'
+      list = List.find_or_create_by!({ account: current_account, title: new_params[:name] })
+      new_params.merge!({list_id: list.id})
+    end
+
+    new_params
+  end
+
+  def resource_params
+    params.require(:follow_tag).permit(:name, :list_id)
+  end
+end
diff --git a/app/controllers/settings/keyword_subscribes_controller.rb b/app/controllers/settings/keyword_subscribes_controller.rb
new file mode 100644
index 0000000000000000000000000000000000000000..fd38581d9e2cfd7ff4ed302af6aaf940b13594d0
--- /dev/null
+++ b/app/controllers/settings/keyword_subscribes_controller.rb
@@ -0,0 +1,78 @@
+# frozen_string_literal: true
+
+class Settings::KeywordSubscribesController < ApplicationController
+  include Authorization
+
+  layout 'admin'
+
+  before_action :set_lists, only: [:index, :new, :edit, :update]
+  before_action :set_keyword_subscribes, only: :index
+  before_action :set_keyword_subscribe, only: [:edit, :update, :destroy]
+  before_action :set_body_classes
+
+  def index
+    @keyword_subscribe = KeywordSubscribe.new
+  end
+
+  def new
+    @keyword_subscribe = current_account.keyword_subscribes.build
+  end
+
+  def create
+    @keyword_subscribe = current_account.keyword_subscribes.build(keyword_subscribe_params)
+
+    if @keyword_subscribe.save
+      redirect_to settings_keyword_subscribes_path
+    else
+      render action: :new
+    end
+  end
+
+  def edit; end
+
+  def update
+    if @keyword_subscribe.update(keyword_subscribe_params)
+      redirect_to settings_keyword_subscribes_path
+    else
+      render action: :edit
+    end
+  end
+
+  def destroy
+    @keyword_subscribe.destroy
+    redirect_to settings_keyword_subscribes_path
+  end
+
+  private
+
+  def set_keyword_subscribe
+    @keyword_subscribe = current_account.keyword_subscribes.find(params[:id])
+  end
+
+  def set_keyword_subscribes
+    @keyword_subscribes = current_account.keyword_subscribes.includes(:list).order('list_id NULLS FIRST', :name).reject(&:new_record?)
+  end
+
+  def set_lists
+    @lists = List.where(account: current_account).all
+  end
+
+  def keyword_subscribe_params
+    new_params = resource_params.permit!.to_h
+
+    if resource_params[:list_id] == '-1'
+      list = List.find_or_create_by!({ account: current_account, title: new_params[:name].presence || "keyword_#{Time.now.strftime('%Y%m%d%H%M%S')}" })
+      new_params.merge!({list_id: list.id})
+    end
+
+    new_params
+  end
+
+  def resource_params
+    params.require(:keyword_subscribe).permit(:name, :keyword, :exclude_keyword, :ignorecase, :regexp, :ignore_block, :disabled, :list_id)
+  end
+
+  def set_body_classes
+    @body_classes = 'admin'
+  end
+end
diff --git a/app/controllers/settings/preferences_controller.rb b/app/controllers/settings/preferences_controller.rb
index 12b11c542c52f73be0c8a3c9bbfd60cf62da0964..1451c28f54e7e1b9086a0c708b73ba57c152f978 100644
--- a/app/controllers/settings/preferences_controller.rb
+++ b/app/controllers/settings/preferences_controller.rb
@@ -42,6 +42,7 @@ class Settings::PreferencesController < Settings::BaseController
       :setting_default_language,
       :setting_default_federation,
       :setting_unfollow_modal,
+      :setting_unsubscribe_modal,
       :setting_boost_modal,
       :setting_delete_modal,
       :setting_auto_play_gif,
@@ -58,6 +59,10 @@ class Settings::PreferencesController < Settings::BaseController
       :setting_use_blurhash,
       :setting_use_pending_items,
       :setting_trends,
+      :setting_crop_images,
+      :setting_show_follow_button_on_timeline,
+      :setting_show_subscribe_button_on_timeline,
+      :setting_show_target,
       notification_emails: %i(follow follow_request reblog favourite mention digest report pending_account trending_tag),
       interactions: %i(must_be_follower must_be_following must_be_following_dm)
     )
diff --git a/app/controllers/settings/profiles_controller.rb b/app/controllers/settings/profiles_controller.rb
index 8b640cdca1c1bad8ac9c9fb063f73f709a3f5b8d..19a7ce157f0a782c6b62ac22f39878d01f8c266b 100644
--- a/app/controllers/settings/profiles_controller.rb
+++ b/app/controllers/settings/profiles_controller.rb
@@ -1,16 +1,11 @@
 # frozen_string_literal: true
 
 class Settings::ProfilesController < Settings::BaseController
-  include ObfuscateFilename
-
   layout 'admin'
 
   before_action :authenticate_user!
   before_action :set_account
 
-  obfuscate_filename [:account, :avatar]
-  obfuscate_filename [:account, :header]
-
   def show
     @account.build_fields
   end
diff --git a/app/controllers/well_known/host_meta_controller.rb b/app/controllers/well_known/host_meta_controller.rb
index 2e9298c4ae641a9d5b0188b600ec1e92b03e06c4..2fd6bc7cc914d099207d2c4d79e80bd0db07e627 100644
--- a/app/controllers/well_known/host_meta_controller.rb
+++ b/app/controllers/well_known/host_meta_controller.rb
@@ -8,12 +8,8 @@ module WellKnown
 
     def show
       @webfinger_template = "#{webfinger_url}?resource={uri}"
-
-      respond_to do |format|
-        format.xml { render content_type: 'application/xrd+xml' }
-      end
-
       expires_in 3.days, public: true
+      render content_type: 'application/xrd+xml', formats: [:xml]
     end
   end
 end
diff --git a/app/helpers/accounts_helper.rb b/app/helpers/accounts_helper.rb
new file mode 100644
index 0000000000000000000000000000000000000000..e02bc24475dff54b2aab3bb75b3f80796e95dacd
--- /dev/null
+++ b/app/helpers/accounts_helper.rb
@@ -0,0 +1,108 @@
+# frozen_string_literal: true
+
+module AccountsHelper
+  def display_name(account, **options)
+    if options[:custom_emojify]
+      Formatter.instance.format_display_name(account, **options)
+    else
+      account.display_name.presence || account.username
+    end
+  end
+
+  def acct(account)
+    if account.local?
+      "@#{account.acct}@#{Rails.configuration.x.local_domain}"
+    else
+      "@#{account.pretty_acct}"
+    end
+  end
+
+  def account_action_button(account)
+    if user_signed_in?
+      if account.id == current_user.account_id
+        link_to settings_profile_url, class: 'button logo-button' do
+          safe_join([svg_logo, t('settings.edit_profile')])
+        end
+      elsif current_account.following?(account) || current_account.requested?(account)
+        link_to account_unfollow_path(account), class: 'button logo-button button--destructive', data: { method: :post } do
+          safe_join([svg_logo, t('accounts.unfollow')])
+        end
+      elsif !(account.memorial? || account.moved?)
+        link_to account_follow_path(account), class: "button logo-button#{account.blocking?(current_account) ? ' disabled' : ''}", data: { method: :post } do
+          safe_join([svg_logo, t('accounts.follow')])
+        end
+      end
+    elsif !(account.memorial? || account.moved?)
+      link_to account_remote_follow_path(account), class: 'button logo-button modal-button', target: '_new' do
+        safe_join([svg_logo, t('accounts.follow')])
+      end
+    end
+  end
+
+  def minimal_account_action_button(account)
+    if user_signed_in?
+      return if account.id == current_user.account_id
+
+      if current_account.following?(account) || current_account.requested?(account)
+        link_to account_unfollow_path(account), class: 'icon-button active', data: { method: :post }, title: t('accounts.unfollow') do
+          fa_icon('user-times fw')
+        end
+      elsif !(account.memorial? || account.moved?)
+        link_to account_follow_path(account), class: "icon-button#{account.blocking?(current_account) ? ' disabled' : ''}", data: { method: :post }, title: t('accounts.follow') do
+          fa_icon('user-plus fw')
+        end
+      end
+    elsif !(account.memorial? || account.moved?)
+      link_to account_remote_follow_path(account), class: 'icon-button modal-button', target: '_new', title: t('accounts.follow') do
+        fa_icon('user-plus fw')
+      end
+    end
+  end
+
+  def account_badge(account, all: false)
+    if account.bot?
+      content_tag(:div, content_tag(:div, t('accounts.roles.bot'), class: 'account-role bot'), class: 'roles')
+    elsif account.group?
+      content_tag(:div, content_tag(:div, t('accounts.roles.group'), class: 'account-role group'), class: 'roles')
+    elsif (Setting.show_staff_badge && account.user_staff?) || all
+      content_tag(:div, class: 'roles') do
+        if all && !account.user_staff?
+          content_tag(:div, t('admin.accounts.roles.user'), class: 'account-role')
+        elsif account.user_admin?
+          content_tag(:div, t('accounts.roles.admin'), class: 'account-role admin')
+        elsif account.user_moderator?
+          content_tag(:div, t('accounts.roles.moderator'), class: 'account-role moderator')
+        end
+      end
+    end
+  end
+
+  def account_description(account)
+    prepend_str = [
+      [
+        number_to_human(account.statuses_count, strip_insignificant_zeros: true),
+        I18n.t('accounts.posts', count: account.statuses_count),
+      ].join(' '),
+
+      [
+        number_to_human(account.following_count, strip_insignificant_zeros: true),
+        I18n.t('accounts.following', count: account.following_count),
+      ].join(' '),
+
+      [
+        number_to_human(account.followers_count, strip_insignificant_zeros: true),
+        I18n.t('accounts.followers', count: account.followers_count),
+      ].join(' '),
+    ].join(', ')
+
+    [prepend_str, account.note].join(' · ')
+  end
+
+  def svg_logo
+    content_tag(:svg, tag(:use, 'xlink:href' => '#mastodon-svg-logo'), 'viewBox' => '0 0 216.4144 232.00976')
+  end
+
+  def svg_logo_full
+    content_tag(:svg, tag(:use, 'xlink:href' => '#mastodon-svg-logo-full'), 'viewBox' => '0 0 713.35878 175.8678')
+  end
+end
diff --git a/app/helpers/admin/action_logs_helper.rb b/app/helpers/admin/action_logs_helper.rb
index 1daa607745987d23dc5c93fd66fcee52ad6888c2..608a99dd5bb21f48604acf4d3ac70c068ea7e33b 100644
--- a/app/helpers/admin/action_logs_helper.rb
+++ b/app/helpers/admin/action_logs_helper.rb
@@ -44,6 +44,8 @@ module Admin::ActionLogsHelper
       'flag'
     when 'DomainBlock'
       'lock'
+    when 'DomainAllow'
+      'plus-circle'
     when 'EmailDomainBlock'
       'envelope'
     when 'Status'
@@ -86,7 +88,7 @@ module Admin::ActionLogsHelper
       record.shortcode
     when 'Report'
       link_to "##{record.id}", admin_report_path(record)
-    when 'DomainBlock', 'EmailDomainBlock'
+    when 'DomainBlock', 'DomainAllow', 'EmailDomainBlock'
       link_to record.domain, "https://#{record.domain}"
     when 'Status'
       link_to record.account.acct, ActivityPub::TagManager.instance.url_for(record)
@@ -99,7 +101,7 @@ module Admin::ActionLogsHelper
     case type
     when 'CustomEmoji'
       attributes['shortcode']
-    when 'DomainBlock', 'EmailDomainBlock'
+    when 'DomainBlock', 'DomainAllow', 'EmailDomainBlock'
       link_to attributes['domain'], "https://#{attributes['domain']}"
     when 'Status'
       tmp_status = Status.new(attributes.except('reblogs_count', 'favourites_count'))
diff --git a/app/helpers/admin/filter_helper.rb b/app/helpers/admin/filter_helper.rb
index 8af1683e76545b3ee27987d10d3d3678bd4722b0..130686a02e240c258a85f5d0c38557b92e53a4f9 100644
--- a/app/helpers/admin/filter_helper.rb
+++ b/app/helpers/admin/filter_helper.rb
@@ -1,15 +1,15 @@
 # frozen_string_literal: true
 
 module Admin::FilterHelper
-  ACCOUNT_FILTERS      = %i(local remote by_domain active pending silenced suspended username display_name email ip staff).freeze
-  REPORT_FILTERS       = %i(resolved account_id target_account_id).freeze
-  INVITE_FILTER        = %i(available expired).freeze
-  CUSTOM_EMOJI_FILTERS = %i(local remote by_domain shortcode).freeze
-  TAGS_FILTERS         = %i(directory reviewed unreviewed pending_review popular active name).freeze
-  INSTANCES_FILTERS    = %i(limited by_domain).freeze
-  FOLLOWERS_FILTERS    = %i(relationship status by_domain activity order).freeze
-
-  FILTERS = ACCOUNT_FILTERS + REPORT_FILTERS + INVITE_FILTER + CUSTOM_EMOJI_FILTERS + TAGS_FILTERS + INSTANCES_FILTERS + FOLLOWERS_FILTERS
+  FILTERS = [
+    AccountFilter::KEYS,
+    CustomEmojiFilter::KEYS,
+    ReportFilter::KEYS,
+    TagFilter::KEYS,
+    InstanceFilter::KEYS,
+    InviteFilter::KEYS,
+    RelationshipFilter::KEYS,
+  ].flatten.freeze
 
   def filter_link_to(text, link_to_params, link_class_params = link_to_params)
     new_url   = filtered_url_for(link_to_params)
diff --git a/app/helpers/domain_control_helper.rb b/app/helpers/domain_control_helper.rb
index 067b2c2cd68f723098832f13ce8d032e6451ed9b..ac60cad2954f47acb39bee1846e25afd437cf64e 100644
--- a/app/helpers/domain_control_helper.rb
+++ b/app/helpers/domain_control_helper.rb
@@ -6,7 +6,7 @@ module DomainControlHelper
 
     domain = begin
       if uri_or_domain.include?('://')
-        Addressable::URI.parse(uri_or_domain).domain
+        Addressable::URI.parse(uri_or_domain).host
       else
         uri_or_domain
       end
diff --git a/app/helpers/lists_helper.rb b/app/helpers/lists_helper.rb
new file mode 100644
index 0000000000000000000000000000000000000000..1b85405be4897de516b69a6dc3f64a4c41c93f58
--- /dev/null
+++ b/app/helpers/lists_helper.rb
@@ -0,0 +1,7 @@
+module ListsHelper
+  def home_list_new(lists)
+    items = { nil => t('column.home') }
+    items.merge!(lists&.pluck(:id, :title).to_h)
+    items.merge!({ -1 => t('lists.add_new') })
+  end
+end
diff --git a/app/helpers/routing_helper.rb b/app/helpers/routing_helper.rb
index 998b7566fb8251bb8ecf560d3ef76a768777fbaa..fb24a1b28ce7cd8a40ed128c1379948c6b66bcb4 100644
--- a/app/helpers/routing_helper.rb
+++ b/app/helpers/routing_helper.rb
@@ -13,13 +13,13 @@ module RoutingHelper
   end
 
   def full_asset_url(source, **options)
-    source = ActionController::Base.helpers.asset_url(source, options) unless use_storage?
+    source = ActionController::Base.helpers.asset_url(source, **options) unless use_storage?
 
     URI.join(root_url, source).to_s
   end
 
   def full_pack_url(source, **options)
-    full_asset_url(asset_pack_path(source, options))
+    full_asset_url(asset_pack_path(source, **options))
   end
 
   private
diff --git a/app/helpers/settings_helper.rb b/app/helpers/settings_helper.rb
index aa0a4d4674c9d8c39becbe6f1b5cfc54409aa1da..10aaf3acaa5ac1f7132af470bdcf3f5e9b5ab71f 100644
--- a/app/helpers/settings_helper.rb
+++ b/app/helpers/settings_helper.rb
@@ -32,15 +32,18 @@ module SettingsHelper
     hy: 'Õ€Õ¡ÕµÕ¥Ö€Õ¥Õ¶',
     id: 'Bahasa Indonesia',
     io: 'Ido',
+    is: 'Íslenska',
     it: 'Italiano',
     ja: '日本語',
     ka: 'ქართული',
     kk: 'Қазақша',
+    kn: 'ಕನ್ನಡ',
     ko: '한국어',
     lt: 'Lietuvių',
     lv: 'Latviešu',
     mk: 'Македонски',
     ml: 'മലയാളം',
+    mr: 'मराठी',
     ms: 'Bahasa Melayu',
     nl: 'Nederlands',
     nn: 'Nynorsk',
@@ -63,6 +66,7 @@ module SettingsHelper
     th: 'ไทย',
     tr: 'Türkçe',
     uk: 'Українська',
+    ur: 'اُردُو',
     'zh-CN': '简体中文',
     'zh-HK': '繁體中文(香港)',
     'zh-TW': '繁體中文(臺灣)',
diff --git a/app/helpers/statuses_helper.rb b/app/helpers/statuses_helper.rb
index 8380b3c4270d727419c8b51c572b1ed306cb9579..866a9902c3e4da5bf5e70ec140e692d194773bf4 100644
--- a/app/helpers/statuses_helper.rb
+++ b/app/helpers/statuses_helper.rb
@@ -4,80 +4,6 @@ module StatusesHelper
   EMBEDDED_CONTROLLER = 'statuses'
   EMBEDDED_ACTION = 'embed'
 
-  def display_name(account, **options)
-    if options[:custom_emojify]
-      Formatter.instance.format_display_name(account, options)
-    else
-      account.display_name.presence || account.username
-    end
-  end
-
-  def account_action_button(account)
-    if user_signed_in?
-      if account.id == current_user.account_id
-        link_to settings_profile_url, class: 'button logo-button' do
-          safe_join([svg_logo, t('settings.edit_profile')])
-        end
-      elsif current_account.following?(account) || current_account.requested?(account)
-        link_to account_unfollow_path(account), class: 'button logo-button button--destructive', data: { method: :post } do
-          safe_join([svg_logo, t('accounts.unfollow')])
-        end
-      elsif !(account.memorial? || account.moved?)
-        link_to account_follow_path(account), class: "button logo-button#{account.blocking?(current_account) ? ' disabled' : ''}", data: { method: :post } do
-          safe_join([svg_logo, t('accounts.follow')])
-        end
-      end
-    elsif !(account.memorial? || account.moved?)
-      link_to account_remote_follow_path(account), class: 'button logo-button modal-button', target: '_new' do
-        safe_join([svg_logo, t('accounts.follow')])
-      end
-    end
-  end
-
-  def minimal_account_action_button(account)
-    if user_signed_in?
-      return if account.id == current_user.account_id
-
-      if current_account.following?(account) || current_account.requested?(account)
-        link_to account_unfollow_path(account), class: 'icon-button active', data: { method: :post }, title: t('accounts.unfollow') do
-          fa_icon('user-times fw')
-        end
-      elsif !(account.memorial? || account.moved?)
-        link_to account_follow_path(account), class: "icon-button#{account.blocking?(current_account) ? ' disabled' : ''}", data: { method: :post }, title: t('accounts.follow') do
-          fa_icon('user-plus fw')
-        end
-      end
-    elsif !(account.memorial? || account.moved?)
-      link_to account_remote_follow_path(account), class: 'icon-button modal-button', target: '_new', title: t('accounts.follow') do
-        fa_icon('user-plus fw')
-      end
-    end
-  end
-
-  def svg_logo
-    content_tag(:svg, tag(:use, 'xlink:href' => '#mastodon-svg-logo'), 'viewBox' => '0 0 216.4144 232.00976')
-  end
-
-  def svg_logo_full
-    content_tag(:svg, tag(:use, 'xlink:href' => '#mastodon-svg-logo-full'), 'viewBox' => '0 0 713.35878 175.8678')
-  end
-
-  def account_badge(account, all: false)
-    if account.bot?
-      content_tag(:div, content_tag(:div, t('accounts.roles.bot'), class: 'account-role bot'), class: 'roles')
-    elsif (Setting.show_staff_badge && account.user_staff?) || all
-      content_tag(:div, class: 'roles') do
-        if all && !account.user_staff?
-          content_tag(:div, t('admin.accounts.roles.user'), class: 'account-role')
-        elsif account.user_admin?
-          content_tag(:div, t('accounts.roles.admin'), class: 'account-role admin')
-        elsif account.user_moderator?
-          content_tag(:div, t('accounts.roles.moderator'), class: 'account-role moderator')
-        end
-      end
-    end
-  end
-
   def link_to_more(url)
     link_to t('statuses.show_more'), url, class: 'load-more load-gap'
   end
@@ -88,27 +14,6 @@ module StatusesHelper
     end
   end
 
-  def account_description(account)
-    prepend_str = [
-      [
-        number_to_human(account.statuses_count, strip_insignificant_zeros: true),
-        I18n.t('accounts.posts', count: account.statuses_count),
-      ].join(' '),
-
-      [
-        number_to_human(account.following_count, strip_insignificant_zeros: true),
-        I18n.t('accounts.following', count: account.following_count),
-      ].join(' '),
-
-      [
-        number_to_human(account.followers_count, strip_insignificant_zeros: true),
-        I18n.t('accounts.followers', count: account.followers_count),
-      ].join(' '),
-    ].join(', ')
-
-    [prepend_str, account.note].join(' · ')
-  end
-
   def media_summary(status)
     attachments = { image: 0, video: 0 }
 
@@ -154,14 +59,6 @@ module StatusesHelper
     embedded_view? ? '_blank' : nil
   end
 
-  def acct(account)
-    if account.local?
-      "@#{account.acct}@#{Rails.configuration.x.local_domain}"
-    else
-      "@#{account.acct}"
-    end
-  end
-
   def style_classes(status, is_predecessor, is_successor, include_threads)
     classes = ['entry']
     classes << 'entry-predecessor' if is_predecessor
diff --git a/app/javascript/mastodon/actions/accounts.js b/app/javascript/mastodon/actions/accounts.js
index d4a824e2c9d646c4030b9c09715408e3df05a710..f0caefbf4cdd525f57f804d8c78e53883b45508f 100644
--- a/app/javascript/mastodon/actions/accounts.js
+++ b/app/javascript/mastodon/actions/accounts.js
@@ -14,6 +14,14 @@ export const ACCOUNT_UNFOLLOW_REQUEST = 'ACCOUNT_UNFOLLOW_REQUEST';
 export const ACCOUNT_UNFOLLOW_SUCCESS = 'ACCOUNT_UNFOLLOW_SUCCESS';
 export const ACCOUNT_UNFOLLOW_FAIL    = 'ACCOUNT_UNFOLLOW_FAIL';
 
+export const ACCOUNT_SUBSCRIBE_REQUEST = 'ACCOUNT_SUBSCRIBE_REQUEST';
+export const ACCOUNT_SUBSCRIBE_SUCCESS = 'ACCOUNT_SUBSCRIBE_SUCCESS';
+export const ACCOUNT_SUBSCRIBE_FAIL    = 'ACCOUNT_SUBSCRIBE_FAIL';
+
+export const ACCOUNT_UNSUBSCRIBE_REQUEST = 'ACCOUNT_UNSUBSCRIBE_REQUEST';
+export const ACCOUNT_UNSUBSCRIBE_SUCCESS = 'ACCOUNT_UNSUBSCRIBE_SUCCESS';
+export const ACCOUNT_UNSUBSCRIBE_FAIL    = 'ACCOUNT_UNSUBSCRIBE_FAIL';
+
 export const ACCOUNT_BLOCK_REQUEST = 'ACCOUNT_BLOCK_REQUEST';
 export const ACCOUNT_BLOCK_SUCCESS = 'ACCOUNT_BLOCK_SUCCESS';
 export const ACCOUNT_BLOCK_FAIL    = 'ACCOUNT_BLOCK_FAIL';
@@ -54,6 +62,14 @@ export const FOLLOWING_EXPAND_REQUEST = 'FOLLOWING_EXPAND_REQUEST';
 export const FOLLOWING_EXPAND_SUCCESS = 'FOLLOWING_EXPAND_SUCCESS';
 export const FOLLOWING_EXPAND_FAIL    = 'FOLLOWING_EXPAND_FAIL';
 
+export const SUBSCRIBING_FETCH_REQUEST = 'SUBSCRIBING_FETCH_REQUEST';
+export const SUBSCRIBING_FETCH_SUCCESS = 'SUBSCRIBING_FETCH_SUCCESS';
+export const SUBSCRIBING_FETCH_FAIL    = 'SUBSCRIBING_FETCH_FAIL';
+
+export const SUBSCRIBING_EXPAND_REQUEST = 'SUBSCRIBING_EXPAND_REQUEST';
+export const SUBSCRIBING_EXPAND_SUCCESS = 'SUBSCRIBING_EXPAND_SUCCESS';
+export const SUBSCRIBING_EXPAND_FAIL    = 'SUBSCRIBING_EXPAND_FAIL';
+
 export const RELATIONSHIPS_FETCH_REQUEST = 'RELATIONSHIPS_FETCH_REQUEST';
 export const RELATIONSHIPS_FETCH_SUCCESS = 'RELATIONSHIPS_FETCH_SUCCESS';
 export const RELATIONSHIPS_FETCH_FAIL    = 'RELATIONSHIPS_FETCH_FAIL';
@@ -221,6 +237,85 @@ export function unfollowAccountFail(error) {
   };
 };
 
+export function subscribeAccount(id, reblogs = true) {
+  return (dispatch, getState) => {
+    const alreadySubscribe = getState().getIn(['relationships', id, 'subscribing']);
+    const locked = getState().getIn(['accounts', id, 'locked'], false);
+
+    dispatch(subscribeAccountRequest(id, locked));
+
+    api(getState).post(`/api/v1/accounts/${id}/subscribe`).then(response => {
+      dispatch(subscribeAccountSuccess(response.data, alreadySubscribe));
+    }).catch(error => {
+      dispatch(subscribeAccountFail(error, locked));
+    });
+  };
+};
+
+export function unsubscribeAccount(id) {
+  return (dispatch, getState) => {
+    dispatch(unsubscribeAccountRequest(id));
+
+    api(getState).post(`/api/v1/accounts/${id}/unsubscribe`).then(response => {
+      dispatch(unsubscribeAccountSuccess(response.data, getState().get('statuses')));
+    }).catch(error => {
+      dispatch(unsubscribeAccountFail(error));
+    });
+  };
+};
+
+export function subscribeAccountRequest(id, locked) {
+  return {
+    type: ACCOUNT_SUBSCRIBE_REQUEST,
+    id,
+    locked,
+    skipLoading: true,
+  };
+};
+
+export function subscribeAccountSuccess(relationship, alreadySubscribe) {
+  return {
+    type: ACCOUNT_SUBSCRIBE_SUCCESS,
+    relationship,
+    alreadySubscribe,
+    skipLoading: true,
+  };
+};
+
+export function subscribeAccountFail(error, locked) {
+  return {
+    type: ACCOUNT_SUBSCRIBE_FAIL,
+    error,
+    locked,
+    skipLoading: true,
+  };
+};
+
+export function unsubscribeAccountRequest(id) {
+  return {
+    type: ACCOUNT_UNSUBSCRIBE_REQUEST,
+    id,
+    skipLoading: true,
+  };
+};
+
+export function unsubscribeAccountSuccess(relationship, statuses) {
+  return {
+    type: ACCOUNT_UNSUBSCRIBE_SUCCESS,
+    relationship,
+    statuses,
+    skipLoading: true,
+  };
+};
+
+export function unsubscribeAccountFail(error) {
+  return {
+    type: ACCOUNT_UNSUBSCRIBE_FAIL,
+    error,
+    skipLoading: true,
+  };
+};
+
 export function blockAccount(id) {
   return (dispatch, getState) => {
     dispatch(blockAccountRequest(id));
@@ -531,6 +626,92 @@ export function expandFollowingFail(id, error) {
   };
 };
 
+export function fetchSubscribing(id) {
+  return (dispatch, getState) => {
+    dispatch(fetchSubscribeRequest(id));
+
+    api(getState).get(`/api/v1/accounts/subscribing`).then(response => {
+      const next = getLinks(response).refs.find(link => link.rel === 'next');
+
+      dispatch(importFetchedAccounts(response.data));
+      dispatch(fetchSubscribeSuccess(id, response.data, next ? next.uri : null));
+      dispatch(fetchRelationships(response.data.map(item => item.id)));
+    }).catch(error => {
+      dispatch(fetchSubscribeFail(id, error));
+    });
+  };
+};
+
+export function fetchSubscribeRequest(id) {
+  return {
+    type: SUBSCRIBING_FETCH_REQUEST,
+    id,
+  };
+};
+
+export function fetchSubscribeSuccess(id, accounts, next) {
+  return {
+    type: SUBSCRIBING_FETCH_SUCCESS,
+    id,
+    accounts,
+    next,
+  };
+};
+
+export function fetchSubscribeFail(id, error) {
+  return {
+    type: SUBSCRIBING_FETCH_FAIL,
+    id,
+    error,
+  };
+};
+
+export function expandSubscribing(id) {
+  return (dispatch, getState) => {
+    const url = getState().getIn(['user_lists', 'subscribing', id, 'next']);
+
+    if (url === null) {
+      return;
+    }
+
+    dispatch(expandSubscribeRequest(id));
+
+    api(getState).get(url).then(response => {
+      const next = getLinks(response).refs.find(link => link.rel === 'next');
+
+      dispatch(importFetchedAccounts(response.data));
+      dispatch(expandSubscribeSuccess(id, response.data, next ? next.uri : null));
+      dispatch(fetchRelationships(response.data.map(item => item.id)));
+    }).catch(error => {
+      dispatch(expandSubscribeFail(id, error));
+    });
+  };
+};
+
+export function expandSubscribeRequest(id) {
+  return {
+    type: SUBSCRIBING_EXPAND_REQUEST,
+    id,
+  };
+};
+
+export function expandSubscribeSuccess(id, accounts, next) {
+  return {
+    type: SUBSCRIBING_EXPAND_SUCCESS,
+    id,
+    accounts,
+    next,
+  };
+};
+
+export function expandSubscribeFail(id, error) {
+  return {
+    type: SUBSCRIBING_EXPAND_FAIL,
+    id,
+    error,
+  };
+};
+
 export function fetchRelationships(accountIds) {
   return (dispatch, getState) => {
     const loadedRelationships = getState().get('relationships');
diff --git a/app/javascript/mastodon/actions/bookmarks.js b/app/javascript/mastodon/actions/bookmarks.js
new file mode 100644
index 0000000000000000000000000000000000000000..b3e0a2ab4b992517d13c5345610a21b11a5fb21b
--- /dev/null
+++ b/app/javascript/mastodon/actions/bookmarks.js
@@ -0,0 +1,94 @@
+import { fetchRelationships } from './accounts';
+import api, { getLinks } from '../api';
+import { importFetchedStatuses } from './importer';
+import { uniq } from '../utils/uniq';
+
+export const BOOKMARKED_STATUSES_FETCH_REQUEST = 'BOOKMARKED_STATUSES_FETCH_REQUEST';
+export const BOOKMARKED_STATUSES_FETCH_SUCCESS = 'BOOKMARKED_STATUSES_FETCH_SUCCESS';
+export const BOOKMARKED_STATUSES_FETCH_FAIL    = 'BOOKMARKED_STATUSES_FETCH_FAIL';
+
+export const BOOKMARKED_STATUSES_EXPAND_REQUEST = 'BOOKMARKED_STATUSES_EXPAND_REQUEST';
+export const BOOKMARKED_STATUSES_EXPAND_SUCCESS = 'BOOKMARKED_STATUSES_EXPAND_SUCCESS';
+export const BOOKMARKED_STATUSES_EXPAND_FAIL    = 'BOOKMARKED_STATUSES_EXPAND_FAIL';
+
+export function fetchBookmarkedStatuses() {
+  return (dispatch, getState) => {
+    if (getState().getIn(['status_lists', 'bookmarks', 'isLoading'])) {
+      return;
+    }
+
+    dispatch(fetchBookmarkedStatusesRequest());
+
+    api(getState).get('/api/v1/bookmarks').then(response => {
+      const next = getLinks(response).refs.find(link => link.rel === 'next');
+      dispatch(importFetchedStatuses(response.data));
+      dispatch(fetchRelationships(uniq(response.data.map(item => item.reblog ? item.reblog.account.id : item.account.id))));
+      dispatch(fetchBookmarkedStatusesSuccess(response.data, next ? next.uri : null));
+    }).catch(error => {
+      dispatch(fetchBookmarkedStatusesFail(error));
+    });
+  };
+};
+
+export function fetchBookmarkedStatusesRequest() {
+  return {
+    type: BOOKMARKED_STATUSES_FETCH_REQUEST,
+  };
+};
+
+export function fetchBookmarkedStatusesSuccess(statuses, next) {
+  return {
+    type: BOOKMARKED_STATUSES_FETCH_SUCCESS,
+    statuses,
+    next,
+  };
+};
+
+export function fetchBookmarkedStatusesFail(error) {
+  return {
+    type: BOOKMARKED_STATUSES_FETCH_FAIL,
+    error,
+  };
+};
+
+export function expandBookmarkedStatuses() {
+  return (dispatch, getState) => {
+    const url = getState().getIn(['status_lists', 'bookmarks', 'next'], null);
+
+    if (url === null || getState().getIn(['status_lists', 'bookmarks', 'isLoading'])) {
+      return;
+    }
+
+    dispatch(expandBookmarkedStatusesRequest());
+
+    api(getState).get(url).then(response => {
+      const next = getLinks(response).refs.find(link => link.rel === 'next');
+      dispatch(importFetchedStatuses(response.data));
+      dispatch(fetchRelationships(uniq(response.data.map(item => item.reblog ? item.reblog.account.id : item.account.id))));
+      dispatch(expandBookmarkedStatusesSuccess(response.data, next ? next.uri : null));
+    }).catch(error => {
+      dispatch(expandBookmarkedStatusesFail(error));
+    });
+  };
+};
+
+export function expandBookmarkedStatusesRequest() {
+  return {
+    type: BOOKMARKED_STATUSES_EXPAND_REQUEST,
+  };
+};
+
+export function expandBookmarkedStatusesSuccess(statuses, next) {
+  return {
+    type: BOOKMARKED_STATUSES_EXPAND_SUCCESS,
+    statuses,
+    next,
+  };
+};
+
+export function expandBookmarkedStatusesFail(error) {
+  return {
+    type: BOOKMARKED_STATUSES_EXPAND_FAIL,
+    error,
+  };
+};
diff --git a/app/javascript/mastodon/actions/compose.js b/app/javascript/mastodon/actions/compose.js
index 2dcb81035de9c483f89a5132bc0c78191e3f7588..391a13ca80b18e3bba3a3b78355e2940a32fdb32 100644
--- a/app/javascript/mastodon/actions/compose.js
+++ b/app/javascript/mastodon/actions/compose.js
@@ -20,6 +20,8 @@ export const COMPOSE_SUBMIT_FAIL     = 'COMPOSE_SUBMIT_FAIL';
 export const COMPOSE_REPLY           = 'COMPOSE_REPLY';
 export const COMPOSE_REPLY_CANCEL    = 'COMPOSE_REPLY_CANCEL';
 export const COMPOSE_DIRECT          = 'COMPOSE_DIRECT';
+export const COMPOSE_QUOTE           = 'COMPOSE_QUOTE';
+export const COMPOSE_QUOTE_CANCEL    = 'COMPOSE_QUOTE_CANCEL';
 export const COMPOSE_MENTION         = 'COMPOSE_MENTION';
 export const COMPOSE_RESET           = 'COMPOSE_RESET';
 export const COMPOSE_UPLOAD_REQUEST  = 'COMPOSE_UPLOAD_REQUEST';
@@ -96,6 +98,23 @@ export function cancelReplyCompose() {
   };
 };
 
+export function quoteCompose(status, routerHistory) {
+  return (dispatch, getState) => {
+    dispatch({
+      type: COMPOSE_QUOTE,
+      status: status,
+    });
+
+    ensureComposeIsVisible(getState, routerHistory);
+  };
+};
+
+export function cancelQuoteCompose() {
+  return {
+    type: COMPOSE_QUOTE_CANCEL,
+  };
+};
+
 export function resetCompose() {
   return {
     type: COMPOSE_RESET,
@@ -144,6 +163,7 @@ export function submitCompose(routerHistory) {
       visibility: getState().getIn(['compose', 'privacy']),
       poll: getState().getIn(['compose', 'poll'], null),
       local_only: !getState().getIn(['compose', 'federation']),
+      quote_id: getState().getIn(['compose', 'quote_from'], null),
     }, {
       headers: {
         'Idempotency-Key': getState().getIn(['compose', 'idempotencyKey']),
@@ -207,10 +227,11 @@ export function uploadCompose(files) {
   return function (dispatch, getState) {
     const uploadLimit = 4;
     const media  = getState().getIn(['compose', 'media_attachments']);
+    const pending  = getState().getIn(['compose', 'pending_media_attachments']);
     const progress = new Array(files.length).fill(0);
     let total = Array.from(files).reduce((a, v) => a + v.size, 0);
 
-    if (files.length + media.size > uploadLimit) {
+    if (files.length + media.size + pending > uploadLimit) {
       dispatch(showAlert(undefined, messages.uploadErrorLimit));
       return;
     }
diff --git a/app/javascript/mastodon/actions/favourite_tags.js b/app/javascript/mastodon/actions/favourite_tags.js
new file mode 100644
index 0000000000000000000000000000000000000000..91ffb95eb881b95bea8dd4df9c64c5bbd3258672
--- /dev/null
+++ b/app/javascript/mastodon/actions/favourite_tags.js
@@ -0,0 +1,59 @@
+import api from '../api';
+
+export const FAVOURITE_TAG_FETCH_REQUEST = 'FAVOURITE_TAG_FETCH_REQUEST';
+export const FAVOURITE_TAG_FETCH_SUCCESS = 'FAVOURITE_TAG_FETCH_SUCCESS';
+export const FAVOURITE_TAG_FETCH_FAIL    = 'FAVOURITE_TAG_FETCH_FAIL';
+
+export const FAVOURITE_TAGS_FETCH_REQUEST = 'FAVOURITE_TAGS_FETCH_REQUEST';
+export const FAVOURITE_TAGS_FETCH_SUCCESS = 'FAVOURITE_TAGS_FETCH_SUCCESS';
+export const FAVOURITE_TAGS_FETCH_FAIL    = 'FAVOURITE_TAGS_FETCH_FAIL';
+
+export const fetchFavouriteTag = id => (dispatch, getState) => {
+  if (getState().getIn(['favourite_tags', id])) {
+    return;
+  }
+
+  dispatch(fetchFavouriteTagRequest(id));
+
+  api(getState).get(`/api/v1/favourite_tags/${id}`)
+    .then(({ data }) => dispatch(fetchFavouriteTagSuccess(data)))
+    .catch(err => dispatch(fetchFavouriteTagFail(id, err)));
+};
+
+export const fetchFavouriteTagRequest = id => ({
+  type: FAVOURITE_TAG_FETCH_REQUEST,
+  id,
+});
+
+export const fetchFavouriteTagSuccess = favourite_tag => ({
+  type: FAVOURITE_TAG_FETCH_SUCCESS,
+  favourite_tag,
+});
+
+export const fetchFavouriteTagFail = (id, error) => ({
+  type: FAVOURITE_TAG_FETCH_FAIL,
+  id,
+  error,
+});
+
+export const fetchFavouriteTags = () => (dispatch, getState) => {
+  dispatch(fetchFavouriteTagsRequest());
+
+  api(getState).get('/api/v1/favourite_tags')
+    .then(({ data }) => dispatch(fetchFavouriteTagsSuccess(data)))
+    .catch(err => dispatch(fetchFavouriteTagsFail(err)));
+};
+
+export const fetchFavouriteTagsRequest = () => ({
+  type: FAVOURITE_TAGS_FETCH_REQUEST,
+});
+
+export const fetchFavouriteTagsSuccess = favourite_tags => ({
+  type: FAVOURITE_TAGS_FETCH_SUCCESS,
+  favourite_tags,
+});
+
+export const fetchFavouriteTagsFail = error => ({
+  type: FAVOURITE_TAGS_FETCH_FAIL,
+  error,
+});
diff --git a/app/javascript/mastodon/actions/favourites.js b/app/javascript/mastodon/actions/favourites.js
index 9448b1efe7eae93a64212d91cadde348cb7f086f..9b28ac4c4647ba0c8489be19013e72ecff5c9464 100644
--- a/app/javascript/mastodon/actions/favourites.js
+++ b/app/javascript/mastodon/actions/favourites.js
@@ -1,5 +1,7 @@
+import { fetchRelationships } from './accounts';
 import api, { getLinks } from '../api';
 import { importFetchedStatuses } from './importer';
+import { uniq } from '../utils/uniq';
 
 export const FAVOURITED_STATUSES_FETCH_REQUEST = 'FAVOURITED_STATUSES_FETCH_REQUEST';
 export const FAVOURITED_STATUSES_FETCH_SUCCESS = 'FAVOURITED_STATUSES_FETCH_SUCCESS';
@@ -20,6 +22,7 @@ export function fetchFavouritedStatuses() {
     api(getState).get('/api/v1/favourites').then(response => {
       const next = getLinks(response).refs.find(link => link.rel === 'next');
       dispatch(importFetchedStatuses(response.data));
+      dispatch(fetchRelationships(uniq(response.data.map(item => item.reblog ? item.reblog.account.id : item.account.id))));
       dispatch(fetchFavouritedStatusesSuccess(response.data, next ? next.uri : null));
     }).catch(error => {
       dispatch(fetchFavouritedStatusesFail(error));
@@ -64,6 +67,7 @@ export function expandFavouritedStatuses() {
     api(getState).get(url).then(response => {
       const next = getLinks(response).refs.find(link => link.rel === 'next');
       dispatch(importFetchedStatuses(response.data));
+      dispatch(fetchRelationships(uniq(response.data.map(item => item.reblog ? item.reblog.account.id : item.account.id))));
       dispatch(expandFavouritedStatusesSuccess(response.data, next ? next.uri : null));
     }).catch(error => {
       dispatch(expandFavouritedStatusesFail(error));
diff --git a/app/javascript/mastodon/actions/importer/normalizer.js b/app/javascript/mastodon/actions/importer/normalizer.js
index f7108fdb9017ced70a54db2b4dd6513e15ba9a9e..1d31ad07e37dc9d70b107a5026433eaf5e705de4 100644
--- a/app/javascript/mastodon/actions/importer/normalizer.js
+++ b/app/javascript/mastodon/actions/importer/normalizer.js
@@ -10,6 +10,12 @@ const makeEmojiMap = record => record.emojis.reduce((obj, emoji) => {
   return obj;
 }, {});
 
+export function searchTextFromRawStatus (status) {
+  const spoilerText   = status.spoiler_text || '';
+  const searchContent = ([spoilerText, status.content].concat((status.poll && status.poll.options) ? status.poll.options.map(option => option.title) : [])).join('\n\n').replace(/<br\s*\/?>/g, '\n').replace(/<\/p><p>/g, '\n\n');
+  return domParser.parseFromString(searchContent, 'text/html').documentElement.textContent;
+}
+
 export function normalizeAccount(account) {
   account = { ...account };
 
@@ -54,6 +60,8 @@ export function normalizeStatus(status, normalOldStatus) {
     normalStatus.contentHtml = normalOldStatus.get('contentHtml');
     normalStatus.spoilerHtml = normalOldStatus.get('spoilerHtml');
     normalStatus.hidden = normalOldStatus.get('hidden');
+    normalStatus.quote = normalOldStatus.get('quote');
+    normalStatus.quote_hidden = normalOldStatus.get('quote_hidden');
   } else {
     const spoilerText   = normalStatus.spoiler_text || '';
     const searchContent = ([spoilerText, status.content].concat((status.poll && status.poll.options) ? status.poll.options.map(option => option.title) : [])).join('\n\n').replace(/<br\s*\/?>/g, '\n').replace(/<\/p><p>/g, '\n\n');
@@ -63,6 +71,30 @@ export function normalizeStatus(status, normalOldStatus) {
     normalStatus.contentHtml  = emojify(normalStatus.content, emojiMap);
     normalStatus.spoilerHtml  = emojify(escapeTextContentForBrowser(spoilerText), emojiMap);
     normalStatus.hidden       = expandSpoilers ? false : spoilerText.length > 0 || normalStatus.sensitive;
+
+    if (status.quote && status.quote.id) {
+      const quote_spoilerText = status.quote.spoiler_text || '';
+      const quote_searchContent = [quote_spoilerText, status.quote.content].join('\n\n').replace(/<br\s*\/?>/g, '\n').replace(/<\/p><p>/g, '\n\n');
+
+      const quote_emojiMap = makeEmojiMap(normalStatus.quote);
+
+      const quote_account_emojiMap = makeEmojiMap(status.quote.account);
+      const displayName = normalStatus.quote.account.display_name.length === 0 ? normalStatus.quote.account.username : normalStatus.quote.account.display_name;
+      normalStatus.quote.account.display_name_html = emojify(escapeTextContentForBrowser(displayName), quote_account_emojiMap);
+      normalStatus.quote.search_index = domParser.parseFromString(quote_searchContent, 'text/html').documentElement.textContent;
+      let docElem = domParser.parseFromString(normalStatus.quote.content, 'text/html').documentElement;
+      Array.from(docElem.querySelectorAll('span.invisible'), span => span.remove());
+      Array.from(docElem.querySelectorAll('p,br'), line => {
+        let parentNode = line.parentNode;
+        if (line.nextSibling) {
+          parentNode.insertBefore(document.createTextNode(' '), line.nextSibling);
+        }
+      });
+      let _contentHtml = docElem.textContent;
+      normalStatus.quote.contentHtml  = '<p>'+emojify(_contentHtml.substr(0, 150), quote_emojiMap) + (_contentHtml.substr(150) ? '...' : '')+'</p>';
+      normalStatus.quote.spoilerHtml  = emojify(escapeTextContentForBrowser(quote_spoilerText), quote_emojiMap);
+      normalStatus.quote_hidden       = expandSpoilers ? false : quote_spoilerText.length > 0 || normalStatus.quote.sensitive;
+    }
   }
 
   return normalStatus;
diff --git a/app/javascript/mastodon/actions/interactions.js b/app/javascript/mastodon/actions/interactions.js
index 2dc4c574cd4724f49f876b67aadb3947d3e43e5a..28c6b1a629bb6e343fb4b7f865ebb224db2f59c1 100644
--- a/app/javascript/mastodon/actions/interactions.js
+++ b/app/javascript/mastodon/actions/interactions.js
@@ -33,6 +33,14 @@ export const UNPIN_REQUEST = 'UNPIN_REQUEST';
 export const UNPIN_SUCCESS = 'UNPIN_SUCCESS';
 export const UNPIN_FAIL    = 'UNPIN_FAIL';
 
+export const BOOKMARK_REQUEST = 'BOOKMARK_REQUEST';
+export const BOOKMARK_SUCCESS = 'BOOKMARKED_SUCCESS';
+export const BOOKMARK_FAIL    = 'BOOKMARKED_FAIL';
+
+export const UNBOOKMARK_REQUEST = 'UNBOOKMARKED_REQUEST';
+export const UNBOOKMARK_SUCCESS = 'UNBOOKMARKED_SUCCESS';
+export const UNBOOKMARK_FAIL    = 'UNBOOKMARKED_FAIL';
+
 export function reblog(status) {
   return function (dispatch, getState) {
     dispatch(reblogRequest(status));
@@ -187,6 +195,78 @@ export function unfavouriteFail(status, error) {
   };
 };
 
+export function bookmark(status) {
+  return function (dispatch, getState) {
+    dispatch(bookmarkRequest(status));
+
+    api(getState).post(`/api/v1/statuses/${status.get('id')}/bookmark`).then(function (response) {
+      dispatch(importFetchedStatus(response.data));
+      dispatch(bookmarkSuccess(status, response.data));
+    }).catch(function (error) {
+      dispatch(bookmarkFail(status, error));
+    });
+  };
+};
+
+export function unbookmark(status) {
+  return (dispatch, getState) => {
+    dispatch(unbookmarkRequest(status));
+
+    api(getState).post(`/api/v1/statuses/${status.get('id')}/unbookmark`).then(response => {
+      dispatch(importFetchedStatus(response.data));
+      dispatch(unbookmarkSuccess(status, response.data));
+    }).catch(error => {
+      dispatch(unbookmarkFail(status, error));
+    });
+  };
+};
+
+export function bookmarkRequest(status) {
+  return {
+    type: BOOKMARK_REQUEST,
+    status: status,
+  };
+};
+
+export function bookmarkSuccess(status, response) {
+  return {
+    type: BOOKMARK_SUCCESS,
+    status: status,
+    response: response,
+  };
+};
+
+export function bookmarkFail(status, error) {
+  return {
+    type: BOOKMARK_FAIL,
+    status: status,
+    error: error,
+  };
+};
+
+export function unbookmarkRequest(status) {
+  return {
+    type: UNBOOKMARK_REQUEST,
+    status: status,
+  };
+};
+
+export function unbookmarkSuccess(status, response) {
+  return {
+    type: UNBOOKMARK_SUCCESS,
+    status: status,
+    response: response,
+  };
+};
+
+export function unbookmarkFail(status, error) {
+  return {
+    type: UNBOOKMARK_FAIL,
+    status: status,
+    error: error,
+  };
+};
+
 export function fetchReblogs(id) {
   return (dispatch, getState) => {
     dispatch(fetchReblogsRequest(id));
diff --git a/app/javascript/mastodon/actions/notifications.js b/app/javascript/mastodon/actions/notifications.js
index 58803d1ae5e442a2a59624ba4802c0eab540be44..c6ac071246840d717eb540802e39aa6fc295f334 100644
--- a/app/javascript/mastodon/actions/notifications.js
+++ b/app/javascript/mastodon/actions/notifications.js
@@ -14,6 +14,7 @@ import { unescapeHTML } from '../utils/html';
 import { getFiltersRegex } from '../selectors';
 import { usePendingItems as preferPendingItems } from 'mastodon/initial_state';
 import compareId from 'mastodon/compare_id';
+import { searchTextFromRawStatus } from 'mastodon/actions/importer/normalizer';
 
 export const NOTIFICATIONS_UPDATE      = 'NOTIFICATIONS_UPDATE';
 export const NOTIFICATIONS_UPDATE_NOOP = 'NOTIFICATIONS_UPDATE_NOOP';
@@ -37,7 +38,7 @@ defineMessages({
 });
 
 const fetchRelatedRelationships = (dispatch, notifications) => {
-  const accountIds = notifications.filter(item => item.type === 'follow').map(item => item.account.id);
+  const accountIds = notifications.map(item => item.account.id);
 
   if (accountIds.length > 0) {
     dispatch(fetchRelationships(accountIds));
@@ -60,7 +61,7 @@ export function updateNotifications(notification, intlMessages, intlLocale) {
     if (notification.type === 'mention') {
       const dropRegex   = filters[0];
       const regex       = filters[1];
-      const searchIndex = notification.status.spoiler_text + '\n' + unescapeHTML(notification.status.content);
+      const searchIndex = searchTextFromRawStatus(notification.status);
 
       if (dropRegex && dropRegex.test(searchIndex)) {
         return;
@@ -109,7 +110,7 @@ export function updateNotifications(notification, intlMessages, intlLocale) {
 const excludeTypesFromSettings = state => state.getIn(['settings', 'notifications', 'shows']).filter(enabled => !enabled).keySeq().toJS();
 
 const excludeTypesFromFilter = filter => {
-  const allTypes = ImmutableList(['follow', 'favourite', 'reblog', 'mention', 'poll']);
+  const allTypes = ImmutableList(['follow', 'follow_request', 'favourite', 'reblog', 'mention', 'poll']);
   return allTypes.filterNot(item => item === filter).toJS();
 };
 
diff --git a/app/javascript/mastodon/actions/statuses.js b/app/javascript/mastodon/actions/statuses.js
index 06a19afc3ad4b8b7a7bc38233e83a0f0e63d1b70..1eba35bd904b6ea55511ab1d90a2757a92e414b9 100644
--- a/app/javascript/mastodon/actions/statuses.js
+++ b/app/javascript/mastodon/actions/statuses.js
@@ -26,11 +26,15 @@ export const STATUS_UNMUTE_REQUEST = 'STATUS_UNMUTE_REQUEST';
 export const STATUS_UNMUTE_SUCCESS = 'STATUS_UNMUTE_SUCCESS';
 export const STATUS_UNMUTE_FAIL    = 'STATUS_UNMUTE_FAIL';
 
-export const STATUS_REVEAL = 'STATUS_REVEAL';
-export const STATUS_HIDE   = 'STATUS_HIDE';
+export const STATUS_REVEAL   = 'STATUS_REVEAL';
+export const STATUS_HIDE     = 'STATUS_HIDE';
+export const STATUS_COLLAPSE = 'STATUS_COLLAPSE';
 
 export const REDRAFT = 'REDRAFT';
 
+export const QUOTE_REVEAL = 'QUOTE_REVEAL';
+export const QUOTE_HIDE   = 'QUOTE_HIDE';
+
 export function fetchStatusRequest(id, skipLoading) {
   return {
     type: STATUS_FETCH_REQUEST,
@@ -320,3 +324,33 @@ export function revealStatus(ids) {
     ids,
   };
 };
+
+export function toggleStatusCollapse(id, isCollapsed) {
+  return {
+    type: STATUS_COLLAPSE,
+    id,
+    isCollapsed,
+  };
+}
+
+export function hideQuote(ids) {
+  if (!Array.isArray(ids)) {
+    ids = [ids];
+  }
+
+  return {
+    type: QUOTE_HIDE,
+    ids,
+  };
+};
+
+export function revealQuote(ids) {
+  if (!Array.isArray(ids)) {
+    ids = [ids];
+  }
+
+  return {
+    type: QUOTE_REVEAL,
+    ids,
+  };
+};
diff --git a/app/javascript/mastodon/actions/streaming.js b/app/javascript/mastodon/actions/streaming.js
index c678e9393205961a98a99c35071521e6c1f42d3a..1e6687d5506d3faede9a599b6452573a2ff7df69 100644
--- a/app/javascript/mastodon/actions/streaming.js
+++ b/app/javascript/mastodon/actions/streaming.js
@@ -56,6 +56,7 @@ const refreshHomeTimelineAndNotification = (dispatch, done) => {
 
 export const connectUserStream      = () => connectTimelineStream('home', 'user', refreshHomeTimelineAndNotification);
 export const connectCommunityStream = ({ onlyMedia } = {}) => connectTimelineStream(`community${onlyMedia ? ':media' : ''}`, `public:local${onlyMedia ? ':media' : ''}`);
+export const connectDomainStream    = (domain, { onlyMedia } = {}) => connectTimelineStream(`domain${onlyMedia ? ':media' : ''}:${domain}`, `public:remote${onlyMedia ? ':media' : ''}&domain=${domain}`);
 export const connectPublicStream    = ({ onlyMedia } = {}) => connectTimelineStream(`public${onlyMedia ? ':media' : ''}`, `public${onlyMedia ? ':media' : ''}`);
 export const connectHashtagStream   = (id, tag, accept) => connectTimelineStream(`hashtag:${id}`, `hashtag&tag=${tag}`, null, accept);
 export const connectDirectStream    = () => connectTimelineStream('direct', 'direct');
diff --git a/app/javascript/mastodon/actions/timelines.js b/app/javascript/mastodon/actions/timelines.js
index bc2ac5e82371a75e6bc2f5e76a8f2a4db24868c6..baf106207a347d7fb50df16fad621f1e23ece44f 100644
--- a/app/javascript/mastodon/actions/timelines.js
+++ b/app/javascript/mastodon/actions/timelines.js
@@ -1,8 +1,10 @@
+import { fetchRelationships } from './accounts';
 import { importFetchedStatus, importFetchedStatuses } from './importer';
 import api, { getLinks } from 'mastodon/api';
 import { Map as ImmutableMap, List as ImmutableList } from 'immutable';
 import compareId from 'mastodon/compare_id';
 import { usePendingItems as preferPendingItems } from 'mastodon/initial_state';
+import { uniq } from '../utils/uniq';
 
 export const TIMELINE_UPDATE  = 'TIMELINE_UPDATE';
 export const TIMELINE_DELETE  = 'TIMELINE_DELETE';
@@ -29,6 +31,7 @@ export function updateTimeline(timeline, status, accept) {
     }
 
     dispatch(importFetchedStatus(status));
+    dispatch(fetchRelationships([status.reblog ? status.reblog.account.id : status.account.id]));
 
     dispatch({
       type: TIMELINE_UPDATE,
@@ -97,6 +100,7 @@ export function expandTimeline(timelineId, path, params = {}, done = noOp) {
     api(getState).get(path, { params }).then(response => {
       const next = getLinks(response).refs.find(link => link.rel === 'next');
       dispatch(importFetchedStatuses(response.data));
+      dispatch(fetchRelationships(uniq(response.data.map(item => item.reblog ? item.reblog.account.id : item.account.id))));
       dispatch(expandTimelineSuccess(timelineId, response.data, next ? next.uri : null, response.status === 206, isLoadingRecent, isLoadingMore, isLoadingRecent && preferPendingItems));
       done();
     }).catch(error => {
@@ -109,6 +113,7 @@ export function expandTimeline(timelineId, path, params = {}, done = noOp) {
 export const expandHomeTimeline            = ({ maxId } = {}, done = noOp) => expandTimeline('home', '/api/v1/timelines/home', { max_id: maxId }, done);
 export const expandPublicTimeline          = ({ maxId, onlyMedia } = {}, done = noOp) => expandTimeline(`public${onlyMedia ? ':media' : ''}`, '/api/v1/timelines/public', { max_id: maxId, only_media: !!onlyMedia }, done);
 export const expandCommunityTimeline       = ({ maxId, onlyMedia } = {}, done = noOp) => expandTimeline(`community${onlyMedia ? ':media' : ''}`, '/api/v1/timelines/public', { local: true, max_id: maxId, only_media: !!onlyMedia }, done);
+export const expandDomainTimeline          = (domain, { maxId, onlyMedia } = {}, done = noOp) => expandTimeline(`domain:${domain}${onlyMedia ? ':media' : ''}`, '/api/v1/timelines/public', { local: false, domain: domain, max_id: maxId, only_media: !!onlyMedia }, done);
 export const expandAccountTimeline         = (accountId, { maxId, withReplies } = {}) => expandTimeline(`account:${accountId}${withReplies ? ':with_replies' : ''}`, `/api/v1/accounts/${accountId}/statuses`, { exclude_replies: !withReplies, max_id: maxId });
 export const expandAccountFeaturedTimeline = accountId => expandTimeline(`account:${accountId}:pinned`, `/api/v1/accounts/${accountId}/statuses`, { pinned: true });
 export const expandAccountMediaTimeline    = (accountId, { maxId } = {}) => expandTimeline(`account:${accountId}:media`, `/api/v1/accounts/${accountId}/statuses`, { max_id: maxId, only_media: true, limit: 40 });
diff --git a/app/javascript/mastodon/components/account.js b/app/javascript/mastodon/components/account.js
index 2705a6001341bff0ad06bbfd060fe0c42f5248ca..3f7826354049f202ff6ad4eb19729eb166730fb8 100644
--- a/app/javascript/mastodon/components/account.js
+++ b/app/javascript/mastodon/components/account.js
@@ -12,6 +12,8 @@ import { me } from '../initial_state';
 const messages = defineMessages({
   follow: { id: 'account.follow', defaultMessage: 'Follow' },
   unfollow: { id: 'account.unfollow', defaultMessage: 'Unfollow' },
+  unsubscribe: { id: 'account.unsubscribe', defaultMessage: 'Unsubscribe' },
+  subscribe: { id: 'account.subscribe', defaultMessage: 'Subscribe' },
   requested: { id: 'account.requested', defaultMessage: 'Awaiting approval' },
   unblock: { id: 'account.unblock', defaultMessage: 'Unblock @{name}' },
   unmute: { id: 'account.unmute', defaultMessage: 'Unmute @{name}' },
@@ -25,6 +27,7 @@ class Account extends ImmutablePureComponent {
   static propTypes = {
     account: ImmutablePropTypes.map.isRequired,
     onFollow: PropTypes.func.isRequired,
+    onSubscribe: PropTypes.func.isRequired,
     onBlock: PropTypes.func.isRequired,
     onMute: PropTypes.func.isRequired,
     onMuteNotifications: PropTypes.func.isRequired,
@@ -39,6 +42,10 @@ class Account extends ImmutablePureComponent {
     this.props.onFollow(this.props.account);
   }
 
+  handleSubscribe = () => {
+    this.props.onSubscribe(this.props.account);
+  }
+
   handleBlock = () => {
     this.props.onBlock(this.props.account);
   }
@@ -80,10 +87,11 @@ class Account extends ImmutablePureComponent {
     if (onActionClick && actionIcon) {
       buttons = <IconButton icon={actionIcon} title={actionTitle} onClick={this.handleAction} />;
     } else if (account.get('id') !== me && account.get('relationship', null) !== null) {
-      const following = account.getIn(['relationship', 'following']);
-      const requested = account.getIn(['relationship', 'requested']);
-      const blocking  = account.getIn(['relationship', 'blocking']);
-      const muting  = account.getIn(['relationship', 'muting']);
+      const following   = account.getIn(['relationship', 'following']);
+      const subscribing = account.getIn(['relationship', 'subscribing']);
+      const requested   = account.getIn(['relationship', 'requested']);
+      const blocking    = account.getIn(['relationship', 'blocking']);
+      const muting      = account.getIn(['relationship', 'muting']);
 
       if (requested) {
         buttons = <IconButton disabled icon='hourglass' title={intl.formatMessage(messages.requested)} />;
@@ -102,8 +110,15 @@ class Account extends ImmutablePureComponent {
             {hidingNotificationsButton}
           </Fragment>
         );
-      } else if (!account.get('moved') || following) {
-        buttons = <IconButton icon={following ? 'user-times' : 'user-plus'} title={intl.formatMessage(following ? messages.unfollow : messages.follow)} onClick={this.handleFollow} active={following} />;
+      } else {
+        let following_buttons, subscribing_buttons;
+        if (!account.get('moved') || subscribing ) {
+          subscribing_buttons = <IconButton icon='rss-square' title={intl.formatMessage(subscribing ? messages.unsubscribe : messages.subscribe)} onClick={this.handleSubscribe} active={subscribing} />;
+        }
+        if (!account.get('moved') || following) {
+          following_buttons = <IconButton icon={following ? 'user-times' : 'user-plus'} title={intl.formatMessage(following ? messages.unfollow : messages.follow)} onClick={this.handleFollow} active={following} />;
+        }
+        buttons = <span>{subscribing_buttons}{following_buttons}</span>
       }
     }
 
diff --git a/app/javascript/mastodon/components/account_action_bar.js b/app/javascript/mastodon/components/account_action_bar.js
new file mode 100644
index 0000000000000000000000000000000000000000..3719d2b499da0ddb8605a170a857b72d90536b29
--- /dev/null
+++ b/app/javascript/mastodon/components/account_action_bar.js
@@ -0,0 +1,73 @@
+import React from 'react';
+import ImmutablePropTypes from 'react-immutable-proptypes';
+import PropTypes from 'prop-types';
+import IconButton from './icon_button';
+import { defineMessages, injectIntl } from 'react-intl';
+import ImmutablePureComponent from 'react-immutable-pure-component';
+import { me, show_follow_button_on_timeline, show_subscribe_button_on_timeline } from '../initial_state';
+
+const messages = defineMessages({
+  follow: { id: 'account.follow', defaultMessage: 'Follow' },
+  unfollow: { id: 'account.unfollow', defaultMessage: 'Unfollow' },
+  unsubscribe: { id: 'account.unsubscribe', defaultMessage: 'Unsubscribe' },
+  subscribe: { id: 'account.subscribe', defaultMessage: 'Subscribe' },
+  requested: { id: 'account.requested', defaultMessage: 'Awaiting approval' },
+});
+
+export default @injectIntl
+class AccountActionBar extends ImmutablePureComponent {
+
+  static propTypes = {
+    account: ImmutablePropTypes.map.isRequired,
+    onFollow: PropTypes.func.isRequired,
+    onSubscribe: PropTypes.func.isRequired,
+    intl: PropTypes.object.isRequired,
+  };
+
+  updateOnProps = [
+    'account',
+  ]
+
+  handleFollow = () => {
+    this.props.onFollow(this.props.account);
+  }
+
+  handleSubscribe = () => {
+    this.props.onSubscribe(this.props.account);
+  }
+
+  render () {
+    const { account, intl } = this.props;
+
+    if (!account || (!show_follow_button_on_timeline && !show_subscribe_button_on_timeline)) {
+      return <div />;
+    }
+
+    let buttons, following_buttons, subscribing_buttons;
+
+    if (account.get('id') !== me && account.get('relationship', null) !== null) {
+      const following   = account.getIn(['relationship', 'following']);
+      const subscribing = account.getIn(['relationship', 'subscribing']);
+      const requested   = account.getIn(['relationship', 'requested']);
+
+      if (show_subscribe_button_on_timeline && (!account.get('moved') || subscribing)) {
+        subscribing_buttons = <IconButton icon='rss-square' title={intl.formatMessage(subscribing ? messages.unsubscribe : messages.subscribe)} onClick={this.handleSubscribe} active={subscribing} />;
+      }
+      if (show_follow_button_on_timeline && (!account.get('moved') || following)) {
+        if (requested) {
+          following_buttons = <IconButton disabled icon='hourglass' title={intl.formatMessage(messages.requested)} />;
+        } else {
+          following_buttons = <IconButton icon={following ? 'user-times' : 'user-plus'} title={intl.formatMessage(following ? messages.unfollow : messages.follow)} onClick={this.handleFollow} active={following} />;
+        }
+      }
+      buttons = <span>{subscribing_buttons}{following_buttons}</span>
+    }
+
+    return (
+      <div className='account__action-bar'>
+        {buttons}
+      </div>
+    );
+  }
+
+}
diff --git a/app/javascript/mastodon/components/attachment_list.js b/app/javascript/mastodon/components/attachment_list.js
index 5dfa1464c4fab474d589ccc6093ea6423874f7f2..ebd696583525ec1ce0893a190ee013fd3d4895dc 100644
--- a/app/javascript/mastodon/components/attachment_list.js
+++ b/app/javascript/mastodon/components/attachment_list.js
@@ -25,7 +25,7 @@ export default class AttachmentList extends ImmutablePureComponent {
 
               return (
                 <li key={attachment.get('id')}>
-                  <a href={displayUrl} target='_blank' rel='noopener'><Icon id='link' /> {filename(displayUrl)}</a>
+                  <a href={displayUrl} target='_blank' rel='noopener noreferrer'><Icon id='link' /> {filename(displayUrl)}</a>
                 </li>
               );
             })}
@@ -46,7 +46,7 @@ export default class AttachmentList extends ImmutablePureComponent {
 
             return (
               <li key={attachment.get('id')}>
-                <a href={displayUrl} target='_blank' rel='noopener'>{filename(displayUrl)}</a>
+                <a href={displayUrl} target='_blank' rel='noopener noreferrer'>{filename(displayUrl)}</a>
               </li>
             );
           })}
diff --git a/app/javascript/mastodon/components/dropdown_menu.js b/app/javascript/mastodon/components/dropdown_menu.js
index d423378c119f8ff1cd9c20accda0c8b15b22deb7..a4f2622851b49a8ed82014b9249896f8254d2d7a 100644
--- a/app/javascript/mastodon/components/dropdown_menu.js
+++ b/app/javascript/mastodon/components/dropdown_menu.js
@@ -143,7 +143,7 @@ class DropdownMenu extends React.PureComponent {
 
     return (
       <li className='dropdown-menu__item' key={`${text}-${i}`}>
-        <a href={href} target={target} data-method={method} rel='noopener' role='button' tabIndex='0' ref={i === 0 ? this.setFocusRef : null} onClick={this.handleClick} onKeyPress={this.handleItemKeyPress} data-index={i}>
+        <a href={href} target={target} data-method={method} rel='noopener noreferrer' role='button' tabIndex='0' ref={i === 0 ? this.setFocusRef : null} onClick={this.handleClick} onKeyPress={this.handleItemKeyPress} data-index={i}>
           {text}
         </a>
       </li>
diff --git a/app/javascript/mastodon/components/error_boundary.js b/app/javascript/mastodon/components/error_boundary.js
index 82543e1185ade5003dff9d1929545a0f1f6128ab..800b1c2706aaa45c1351f1cc1fd13f9cf18825b1 100644
--- a/app/javascript/mastodon/components/error_boundary.js
+++ b/app/javascript/mastodon/components/error_boundary.js
@@ -58,7 +58,7 @@ export default class ErrorBoundary extends React.PureComponent {
         <div>
           <p className='error-boundary__error'><FormattedMessage id='error.unexpected_crash.explanation' defaultMessage='Due to a bug in our code or a browser compatibility issue, this page could not be displayed correctly.' /></p>
           <p><FormattedMessage id='error.unexpected_crash.next_steps' defaultMessage='Try refreshing the page. If that does not help, you may still be able to use Mastodon through a different browser or native app.' /></p>
-          <p className='error-boundary__footer'>Mastodon v{version} · <a href={source_url} rel='noopener' target='_blank'><FormattedMessage id='errors.unexpected_crash.report_issue' defaultMessage='Report issue' /></a> · <button onClick={this.handleCopyStackTrace} className={copied && 'copied'}><FormattedMessage id='errors.unexpected_crash.copy_stacktrace' defaultMessage='Copy stacktrace to clipboard' /></button></p>
+          <p className='error-boundary__footer'>Mastodon v{version} · <a href={source_url} rel='noopener noreferrer' target='_blank'><FormattedMessage id='errors.unexpected_crash.report_issue' defaultMessage='Report issue' /></a> · <button onClick={this.handleCopyStackTrace} className={copied && 'copied'}><FormattedMessage id='errors.unexpected_crash.copy_stacktrace' defaultMessage='Copy stacktrace to clipboard' /></button></p>
         </div>
       </div>
     );
diff --git a/app/javascript/mastodon/components/icon_button.js b/app/javascript/mastodon/components/icon_button.js
index 40167505239b41a6c179d930a9a614ece8ad2c54..fd715bc3c83ac83fadc5fb9de2fee1b74fdff3d5 100644
--- a/app/javascript/mastodon/components/icon_button.js
+++ b/app/javascript/mastodon/components/icon_button.js
@@ -1,6 +1,4 @@
 import React from 'react';
-import Motion from '../features/ui/util/optional_motion';
-import spring from 'react-motion/lib/spring';
 import PropTypes from 'prop-types';
 import classNames from 'classnames';
 import Icon from 'mastodon/components/icon';
@@ -37,6 +35,21 @@ export default class IconButton extends React.PureComponent {
     tabIndex: '0',
   };
 
+  state = {
+    activate: false,
+    deactivate: false,
+  }
+
+  componentWillReceiveProps (nextProps) {
+    if (!nextProps.animate) return;
+
+    if (this.props.active && !nextProps.active) {
+      this.setState({ activate: false, deactivate: true });
+    } else if (!this.props.active && nextProps.active) {
+      this.setState({ activate: true, deactivate: false });
+    }
+  }
+
   handleClick = (e) =>  {
     e.preventDefault();
 
@@ -75,7 +88,6 @@ export default class IconButton extends React.PureComponent {
 
     const {
       active,
-      animate,
       className,
       disabled,
       expanded,
@@ -87,57 +99,37 @@ export default class IconButton extends React.PureComponent {
       title,
     } = this.props;
 
+    const {
+      activate,
+      deactivate,
+    } = this.state;
+
     const classes = classNames(className, 'icon-button', {
       active,
       disabled,
       inverted,
+      activate,
+      deactivate,
       overlayed: overlay,
     });
 
-    if (!animate) {
-      // Perf optimization: avoid unnecessary <Motion> components unless
-      // we actually need to animate.
-      return (
-        <button
-          aria-label={title}
-          aria-pressed={pressed}
-          aria-expanded={expanded}
-          title={title}
-          className={classes}
-          onClick={this.handleClick}
-          onMouseDown={this.handleMouseDown}
-          onKeyDown={this.handleKeyDown}
-          onKeyPress={this.handleKeyPress}
-          style={style}
-          tabIndex={tabIndex}
-          disabled={disabled}
-        >
-          <Icon id={icon} fixedWidth aria-hidden='true' />
-        </button>
-      );
-    }
-
     return (
-      <Motion defaultStyle={{ rotate: active ? -360 : 0 }} style={{ rotate: animate ? spring(active ? -360 : 0, { stiffness: 120, damping: 7 }) : 0 }}>
-        {({ rotate }) => (
-          <button
-            aria-label={title}
-            aria-pressed={pressed}
-            aria-expanded={expanded}
-            title={title}
-            className={classes}
-            onClick={this.handleClick}
-            onMouseDown={this.handleMouseDown}
-            onKeyDown={this.handleKeyDown}
-            onKeyPress={this.handleKeyPress}
-            style={style}
-            tabIndex={tabIndex}
-            disabled={disabled}
-          >
-            <Icon id={icon} style={{ transform: `rotate(${rotate}deg)` }} fixedWidth aria-hidden='true' />
-          </button>
-        )}
-      </Motion>
+      <button
+        aria-label={title}
+        aria-pressed={pressed}
+        aria-expanded={expanded}
+        title={title}
+        className={classes}
+        onClick={this.handleClick}
+        onMouseDown={this.handleMouseDown}
+        onKeyDown={this.handleKeyDown}
+        onKeyPress={this.handleKeyPress}
+        style={style}
+        tabIndex={tabIndex}
+        disabled={disabled}
+      >
+        <Icon id={icon} fixedWidth aria-hidden='true' />
+      </button>
     );
   }
 
diff --git a/app/javascript/mastodon/components/media_gallery.js b/app/javascript/mastodon/components/media_gallery.js
index e8dd79af9e09cbb5a81995af0ce33630074516fe..9c7cbb1300429be68dab3e702ffa475bf79b3aba 100644
--- a/app/javascript/mastodon/components/media_gallery.js
+++ b/app/javascript/mastodon/components/media_gallery.js
@@ -6,7 +6,7 @@ import IconButton from './icon_button';
 import { defineMessages, injectIntl, FormattedMessage } from 'react-intl';
 import { isIOS } from '../is_mobile';
 import classNames from 'classnames';
-import { autoPlayGif, displayMedia, useBlurhash } from '../initial_state';
+import { autoPlayGif, cropImages, displayMedia, useBlurhash } from '../initial_state';
 import { decode } from 'blurhash';
 
 const messages = defineMessages({
@@ -23,6 +23,7 @@ class Item extends React.PureComponent {
     onClick: PropTypes.func.isRequired,
     displayWidth: PropTypes.number,
     visible: PropTypes.bool.isRequired,
+    autoplay: PropTypes.bool,
   };
 
   static defaultProps = {
@@ -48,9 +49,13 @@ class Item extends React.PureComponent {
     }
   }
 
+  getAutoPlay() {
+    return this.props.autoplay || autoPlayGif;
+  }
+
   hoverToPlay () {
     const { attachment } = this.props;
-    return !autoPlayGif && attachment.get('type') === 'gifv';
+    return !this.getAutoPlay() && attachment.get('type') === 'gifv';
   }
 
   handleClick = (e) => {
@@ -159,7 +164,7 @@ class Item extends React.PureComponent {
     if (attachment.get('type') === 'unknown') {
       return (
         <div className={classNames('media-gallery__item', { standalone })} key={attachment.get('id')} style={{ left: left, top: top, right: right, bottom: bottom, width: `${width}%`, height: `${height}%` }}>
-          <a className='media-gallery__item-thumbnail' href={attachment.get('remote_url') || attachment.get('url')} target='_blank' style={{ cursor: 'pointer' }} title={attachment.get('description')}>
+          <a className='media-gallery__item-thumbnail' href={attachment.get('remote_url') || attachment.get('url')} style={{ cursor: 'pointer' }} title={attachment.get('description')} target='_blank' rel='noopener noreferrer'>
             <canvas width={32} height={32} ref={this.setCanvasRef} className='media-gallery__preview' />
           </a>
         </div>
@@ -187,6 +192,7 @@ class Item extends React.PureComponent {
           href={attachment.get('remote_url') || originalUrl}
           onClick={this.handleClick}
           target='_blank'
+          rel='noopener noreferrer'
         >
           <img
             src={previewUrl}
@@ -200,7 +206,7 @@ class Item extends React.PureComponent {
         </a>
       );
     } else if (attachment.get('type') === 'gifv') {
-      const autoPlay = !isIOS() && autoPlayGif;
+      const autoPlay = !isIOS() && this.getAutoPlay();
 
       thumbnail = (
         <div className={classNames('media-gallery__gifv', { autoplay: autoPlay })}>
@@ -247,11 +253,14 @@ class MediaGallery extends React.PureComponent {
     defaultWidth: PropTypes.number,
     cacheWidth: PropTypes.func,
     visible: PropTypes.bool,
+    autoplay: PropTypes.bool,
     onToggleVisibility: PropTypes.func,
+    quote: PropTypes.bool,
   };
 
   static defaultProps = {
     standalone: false,
+    quote: false,
   };
 
   state = {
@@ -280,7 +289,7 @@ class MediaGallery extends React.PureComponent {
   }
 
   handleRef = (node) => {
-    if (node /*&& this.isStandaloneEligible()*/) {
+    if (node) {
       // offsetWidth triggers a layout, so only calculate when we need to
       if (this.props.cacheWidth) this.props.cacheWidth(node.offsetWidth);
 
@@ -290,13 +299,13 @@ class MediaGallery extends React.PureComponent {
     }
   }
 
-  isStandaloneEligible() {
-    const { media, standalone } = this.props;
-    return standalone && media.size === 1 && media.getIn([0, 'meta', 'small', 'aspect']);
+  isFullSizeEligible() {
+    const { media } = this.props;
+    return media.size === 1 && media.getIn([0, 'meta', 'small', 'aspect']);
   }
 
   render () {
-    const { media, intl, sensitive, height, defaultWidth } = this.props;
+    const { media, intl, sensitive, height, defaultWidth, standalone, quote, autoplay } = this.props;
     const { visible } = this.state;
 
     const width = this.state.width || defaultWidth;
@@ -305,7 +314,7 @@ class MediaGallery extends React.PureComponent {
 
     const style = {};
 
-    if (this.isStandaloneEligible()) {
+    if (this.isFullSizeEligible() && (standalone || !cropImages)) {
       if (width) {
         style.height = width / this.props.media.getIn([0, 'meta', 'small', 'aspect']);
       }
@@ -318,10 +327,14 @@ class MediaGallery extends React.PureComponent {
     const size     = media.take(4).size;
     const uncached = media.every(attachment => attachment.get('type') === 'unknown');
 
-    if (this.isStandaloneEligible()) {
-      children = <Item standalone onClick={this.handleClick} attachment={media.get(0)} displayWidth={width} visible={visible} />;
+    if (quote) {
+      style.height /= 2;
+    }
+
+    if (standalone && this.isFullSizeEligible()) {
+      children = <Item standalone autoplay={autoplay} onClick={this.handleClick} attachment={media.get(0)} displayWidth={width} visible={visible} />;
     } else {
-      children = media.take(4).map((attachment, i) => <Item key={attachment.get('id')} onClick={this.handleClick} attachment={attachment} index={i} size={size} displayWidth={width} visible={visible || uncached} />);
+      children = media.take(4).map((attachment, i) => <Item key={attachment.get('id')} autoplay={autoplay} onClick={this.handleClick} attachment={attachment} index={i} size={size} displayWidth={width} visible={visible || uncached} />);
     }
 
     if (uncached) {
diff --git a/app/javascript/mastodon/components/modal_root.js b/app/javascript/mastodon/components/modal_root.js
index 5d4f4bbe138ecc907e98716e9f7fb181155e69ee..fa4e59192119fbc4ad993999fc85bcc85bd5e3ba 100644
--- a/app/javascript/mastodon/components/modal_root.js
+++ b/app/javascript/mastodon/components/modal_root.js
@@ -1,5 +1,6 @@
 import React from 'react';
 import PropTypes from 'prop-types';
+import 'wicg-inert';
 
 export default class ModalRoot extends React.PureComponent {
 
@@ -55,15 +56,21 @@ export default class ModalRoot extends React.PureComponent {
     } else if (!nextProps.children) {
       this.setState({ revealed: false });
     }
-    if (!nextProps.children && !!this.props.children) {
-      this.activeElement.focus();
-      this.activeElement = null;
-    }
   }
 
   componentDidUpdate (prevProps) {
     if (!this.props.children && !!prevProps.children) {
       this.getSiblings().forEach(sibling => sibling.removeAttribute('inert'));
+
+      // Because of the wicg-inert polyfill, the activeElement may not be
+      // immediately selectable, we have to wait for observers to run, as
+      // described in https://github.com/WICG/inert#performance-and-gotchas
+      Promise.resolve().then(() => {
+        this.activeElement.focus();
+        this.activeElement = null;
+      }).catch((error) => {
+        console.error(error);
+      });
     }
     if (this.props.children) {
       requestAnimationFrame(() => {
diff --git a/app/javascript/mastodon/components/poll.js b/app/javascript/mastodon/components/poll.js
index cdbcf8f709fdf0572dd1d70f6e68b06763f11a90..c678d797ea476ec8a07b88bd8f36184660e3be39 100644
--- a/app/javascript/mastodon/components/poll.js
+++ b/app/javascript/mastodon/components/poll.js
@@ -39,7 +39,11 @@ class Poll extends ImmutablePureComponent {
 
   static getDerivedStateFromProps (props, state) {
     const { poll, intl } = props;
-    const expired = poll.get('expired') || (new Date(poll.get('expires_at'))).getTime() < intl.now();
+    if (!poll) {
+      return null;
+    }
+    const expires_at = poll.get('expires_at');
+    const expired = poll.get('expired') || expires_at !== null && (new Date(expires_at)).getTime() < intl.now();
     return (expired === state.expired) ? null : { expired };
   }
 
@@ -58,7 +62,7 @@ class Poll extends ImmutablePureComponent {
   _setupTimer () {
     const { poll, intl } = this.props;
     clearTimeout(this._timer);
-    if (!this.state.expired) {
+    if (!this.state.expired && !!poll) {
       const delay = (new Date(poll.get('expires_at'))).getTime() - intl.now();
       this._timer = setTimeout(() => {
         this.setState({ expired: true });
@@ -66,9 +70,7 @@ class Poll extends ImmutablePureComponent {
     }
   }
 
-  handleOptionChange = e => {
-    const { target: { value } } = e;
-
+  _toggleOption = value => {
     if (this.props.poll.get('multiple')) {
       const tmp = { ...this.state.selected };
       if (tmp[value]) {
@@ -82,8 +84,20 @@ class Poll extends ImmutablePureComponent {
       tmp[value] = true;
       this.setState({ selected: tmp });
     }
+  }
+
+  handleOptionChange = ({ target: { value } }) => {
+    this._toggleOption(value);
   };
 
+  handleOptionKeyPress = (e) => {
+    if (e.key === 'Enter' || e.key === ' ') {
+      this._toggleOption(e.target.getAttribute('data-index'));
+      e.stopPropagation();
+      e.preventDefault();
+    }
+  }
+
   handleVote = () => {
     if (this.props.disabled) {
       return;
@@ -134,7 +148,17 @@ class Poll extends ImmutablePureComponent {
             disabled={disabled}
           />
 
-          {!showResults && <span className={classNames('poll__input', { checkbox: poll.get('multiple'), active })} />}
+          {!showResults && (
+            <span
+              className={classNames('poll__input', { checkbox: poll.get('multiple'), active })}
+              tabIndex='0'
+              role={poll.get('multiple') ? 'checkbox' : 'radio'}
+              onKeyPress={this.handleOptionKeyPress}
+              aria-checked={active}
+              aria-label={option.get('title')}
+              data-index={optionIndex}
+            />
+          )}
           {showResults && <span className='poll__number'>
             {!!voted && <Icon id='check' className='poll__vote__mark' title={intl.formatMessage(messages.voted)} />}
             {Math.round(percent)}%
diff --git a/app/javascript/mastodon/components/scrollable_list.js b/app/javascript/mastodon/components/scrollable_list.js
index 421756803c96fb2b1da7ec382243169e9ae1af5d..3a490e78ea76ad9dab33d5f0ad3d33e053176da1 100644
--- a/app/javascript/mastodon/components/scrollable_list.js
+++ b/app/javascript/mastodon/components/scrollable_list.js
@@ -208,10 +208,13 @@ export default class ScrollableList extends PureComponent {
   }
 
   attachIntersectionObserver () {
-    this.intersectionObserverWrapper.connect({
+    let nodeOptions = {
       root: this.node,
       rootMargin: '300% 0px',
-    });
+    };
+
+    this.intersectionObserverWrapper
+      .connect(this.props.bindToDocument ? {} : nodeOptions);
   }
 
   detachIntersectionObserver () {
@@ -293,7 +296,7 @@ export default class ScrollableList extends PureComponent {
           </div>
         </div>
       );
-    } else if (isLoading || childrenCount > 0 || hasMore || !emptyMessage) {
+    } else if (isLoading || childrenCount > 0 || numPending > 0 || hasMore || !emptyMessage) {
       scrollableArea = (
         <div className={classNames('scrollable', { fullscreen })} ref={this.setRef} onMouseMove={this.handleMouseMove}>
           <div role='feed' className='item-list'>
diff --git a/app/javascript/mastodon/components/status.js b/app/javascript/mastodon/components/status.js
index b5606aca5a86578624b8e7a036443ee81382cefa..6f763b46e6e5dcdc385e58b0f5339363cdffbf30 100644
--- a/app/javascript/mastodon/components/status.js
+++ b/app/javascript/mastodon/components/status.js
@@ -8,6 +8,7 @@ import RelativeTimestamp from './relative_timestamp';
 import DisplayName from './display_name';
 import StatusContent from './status_content';
 import StatusActionBar from './status_action_bar';
+import AccountActionBar from './account_action_bar';
 import AttachmentList from './attachment_list';
 import Card from '../features/status/components/card';
 import { injectIntl, FormattedMessage } from 'react-intl';
@@ -76,6 +77,10 @@ class Status extends ImmutablePureComponent {
     onEmbed: PropTypes.func,
     onHeightChange: PropTypes.func,
     onToggleHidden: PropTypes.func,
+    onToggleCollapsed: PropTypes.func,
+    onQuoteToggleHidden: PropTypes.func,
+    onFollow: PropTypes.func.isRequired,
+    onSubscribe: PropTypes.func.isRequired,
     muted: PropTypes.bool,
     hidden: PropTypes.bool,
     unread: PropTypes.bool,
@@ -86,6 +91,7 @@ class Status extends ImmutablePureComponent {
     updateScrollBottom: PropTypes.func,
     cacheMediaWidth: PropTypes.func,
     cachedMediaWidth: PropTypes.number,
+    contextType: PropTypes.string,
   };
 
   // Avoid checking props that are functions (and whose equality will always
@@ -102,19 +108,6 @@ class Status extends ImmutablePureComponent {
     statusId: undefined,
   };
 
-  // Track height changes we know about to compensate scrolling
-  componentDidMount () {
-    this.didShowCard = !this.props.muted && !this.props.hidden && this.props.status && this.props.status.get('card');
-  }
-
-  getSnapshotBeforeUpdate () {
-    if (this.props.getScrollPosition) {
-      return this.props.getScrollPosition();
-    } else {
-      return null;
-    }
-  }
-
   static getDerivedStateFromProps(nextProps, prevState) {
     if (nextProps.status && nextProps.status.get('id') !== prevState.statusId) {
       return {
@@ -126,32 +119,6 @@ class Status extends ImmutablePureComponent {
     }
   }
 
-  // Compensate height changes
-  componentDidUpdate (prevProps, prevState, snapshot) {
-    const doShowCard  = !this.props.muted && !this.props.hidden && this.props.status && this.props.status.get('card');
-
-    if (doShowCard && !this.didShowCard) {
-      this.didShowCard = true;
-
-      if (snapshot !== null && this.props.updateScrollBottom) {
-        if (this.node && this.node.offsetTop < snapshot.top) {
-          this.props.updateScrollBottom(snapshot.height - snapshot.top);
-        }
-      }
-    }
-  }
-
-  componentWillUnmount() {
-    if (this.node && this.props.getScrollPosition) {
-      const position = this.props.getScrollPosition();
-      if (position !== null && this.node.offsetTop < position.top) {
-        requestAnimationFrame(() => {
-          this.props.updateScrollBottom(position.height - position.top);
-        });
-      }
-    }
-  }
-
   handleToggleMediaVisibility = () => {
     this.setState({ showMedia: !this.state.showMedia });
   }
@@ -186,6 +153,15 @@ class Status extends ImmutablePureComponent {
     }
   }
 
+  handleQuoteClick = () => {
+    if (!this.context.router) {
+      return;
+    }
+
+    const { status } = this.props;
+    this.context.router.history.push(`/statuses/${status.getIn(['reblog', 'quote', 'id'], status.getIn(['quote', 'id']))}`);
+  }
+
   handleAccountClick = (e) => {
     if (this.context.router && e.button === 0 && !(e.ctrlKey || e.metaKey)) {
       const id = e.currentTarget.getAttribute('data-id');
@@ -196,6 +172,14 @@ class Status extends ImmutablePureComponent {
 
   handleExpandedToggle = () => {
     this.props.onToggleHidden(this._properStatus());
+  }
+
+  handleCollapsedToggle = isCollapsed => {
+    this.props.onToggleCollapsed(this._properStatus(), isCollapsed);
+  }
+
+  handleExpandedQuoteToggle = () => {
+    this.props.onQuoteToggleHidden(this._properStatus());
   };
 
   renderLoadingMediaGallery () {
@@ -214,6 +198,23 @@ class Status extends ImmutablePureComponent {
     this.props.onOpenVideo(media, startTime);
   }
 
+  handleHotkeyOpenMedia = e => {
+    const { onOpenMedia, onOpenVideo } = this.props;
+    const status = this._properStatus();
+
+    e.preventDefault();
+
+    if (status.get('media_attachments').size > 0) {
+      if (status.getIn(['media_attachments', 0, 'type']) === 'audio') {
+        // TODO: toggle play/paused?
+      } else if (status.getIn(['media_attachments', 0, 'type']) === 'video') {
+        onOpenVideo(status.getIn(['media_attachments', 0]), 0);
+      } else {
+        onOpenMedia(status.get('media_attachments'), 0);
+      }
+    }
+  }
+
   handleHotkeyReply = e => {
     e.preventDefault();
     this.props.onReply(this._properStatus(), this.context.router.history);
@@ -270,11 +271,25 @@ class Status extends ImmutablePureComponent {
     this.node = c;
   }
 
+  _properQuoteStatus () {
+    const { status } = this.props;
+
+    return status.get('quote');
+  }
+
+  handleFollow = () => {
+    this.props.onFollow(this._properStatus().get('account'));
+  }
+
+  handleSubscribe = () => {
+    this.props.onSubscribe(this._properStatus().get('account'));
+  }
+
   render () {
     let media = null;
-    let statusAvatar, prepend, rebloggedByText;
+    let statusAvatar, prepend, rebloggedByText, unlistedQuoteText;
 
-    const { intl, hidden, featured, otherAccounts, unread, showThread } = this.props;
+    const { intl, hidden, featured, otherAccounts, unread, showThread, contextType } = this.props;
 
     let { status, account, ...other } = this.props;
 
@@ -293,6 +308,7 @@ class Status extends ImmutablePureComponent {
       moveDown: this.handleHotkeyMoveDown,
       toggleHidden: this.handleHotkeyToggleHidden,
       toggleSensitive: this.handleHotkeyToggleSensitive,
+      openMedia: this.handleHotkeyOpenMedia,
     };
 
     if (hidden) {
@@ -429,17 +445,65 @@ class Status extends ImmutablePureComponent {
       statusAvatar = <AvatarOverlay account={status.get('account')} friend={account} />;
     }
 
+    let quote = null;
+    if (status.get('quote', null) !== null) {
+      let quote_status = status.get('quote');
+
+      let quote_media = null;
+      if (quote_status.get('media_attachments').size > 0) {
+        if (this.props.muted || quote_status.get('media_attachments').some(item => item.get('type') === 'unknown')) {
+          quote_media = (
+            <AttachmentList
+              compact
+              media={quote_status.get('media_attachments')}
+            />
+          );
+        } else {
+          quote_media = (
+            <Bundle fetchComponent={MediaGallery} loading={this.renderLoadingMediaGallery} >
+              {Component => <Component media={quote_status.get('media_attachments')} sensitive={quote_status.get('sensitive')} height={110} onOpenMedia={this.props.onOpenMedia} quote />}
+            </Bundle>
+          );
+        }
+      }
+
+      if (quote_status.get('visibility') === 'unlisted' && contextType !== 'home') {
+        unlistedQuoteText = intl.formatMessage({ id: 'status.unlisted_quote', defaultMessage: 'Unlisted quote' });
+        quote = (
+          <div className={classNames('quote-status', `status-${quote_status.get('visibility')}`, { muted: this.props.muted })} data-id={quote_status.get('id')}>
+            <div className={classNames('status__content unlisted-quote', { 'status__content--with-action': this.context.router })}>
+              <strong onClick={this.handleQuoteClick}>{unlistedQuoteText}</strong>
+            </div>
+          </div>
+        );
+      } else {
+        quote = (
+          <div className={classNames('quote-status', `status-${quote_status.get('visibility')}`, { muted: this.props.muted })} data-id={quote_status.get('id')}>
+            <div className='status__info'>
+              <a onClick={this.handleAccountClick} target='_blank' data-id={quote_status.getIn(['account', 'id'])} href={quote_status.getIn(['account', 'url'])} title={quote_status.getIn(['account', 'acct'])} className='status__display-name'>
+                <div className='status__avatar'><Avatar account={quote_status.get('account')} size={18} /></div>
+                <DisplayName account={quote_status.get('account')} />
+              </a>
+            </div>
+            <StatusContent status={quote_status} onClick={this.handleQuoteClick} expanded={!status.get('quote_hidden')} onExpandedToggle={this.handleExpandedQuoteToggle} />
+            {quote_media}
+          </div>
+        );
+      }
+    }
+
     return (
       <HotKeys handlers={handlers}>
         <div className={classNames('status__wrapper', `status__wrapper-${status.get('visibility')}`, { 'status__wrapper-reply': !!status.get('in_reply_to_id'), read: unread === false, focusable: !this.props.muted })} tabIndex={this.props.muted ? null : 0} data-featured={featured ? 'true' : null} aria-label={textForScreenReader(intl, status, rebloggedByText)} ref={this.handleRef}>
           {prepend}
 
           <div className={classNames('status', `status-${status.get('visibility')}`, { 'status-reply': !!status.get('in_reply_to_id'), muted: this.props.muted, read: unread === false })} data-id={status.get('id')}>
+            <AccountActionBar account={status.get('account')} {...other} />
             <div className='status__expand' onClick={this.handleExpandClick} role='presentation' />
             <div className='status__info'>
-              <a href={status.get('url')} className='status__relative-time' target='_blank' rel='noopener'><RelativeTimestamp timestamp={status.get('created_at')} /></a>
+              <a href={status.get('url')} className='status__relative-time' target='_blank' rel='noopener noreferrer'><RelativeTimestamp timestamp={status.get('created_at')} /></a>
 
-              <a onClick={this.handleAccountClick} target='_blank' data-id={status.getIn(['account', 'id'])} href={status.getIn(['account', 'url'])} title={status.getIn(['account', 'acct'])} className='status__display-name'>
+              <a onClick={this.handleAccountClick} data-id={status.getIn(['account', 'id'])} href={status.getIn(['account', 'url'])} title={status.getIn(['account', 'acct'])} className='status__display-name' target='_blank' rel='noopener noreferrer'>
                 <div className='status__avatar'>
                   {statusAvatar}
                 </div>
@@ -448,9 +512,10 @@ class Status extends ImmutablePureComponent {
               </a>
             </div>
 
-            <StatusContent status={status} onClick={this.handleClick} expanded={!status.get('hidden')} onExpandedToggle={this.handleExpandedToggle} collapsable />
+            <StatusContent status={status} onClick={this.handleClick} expanded={!status.get('hidden')} onExpandedToggle={this.handleExpandedToggle} collapsable onCollapsedToggle={this.handleCollapsedToggle} />
 
             {media}
+            {quote}
 
             {showThread && status.get('in_reply_to_id') && status.get('in_reply_to_account_id') === status.getIn(['account', 'id']) && (
               <button className='status__content__read-more-button' onClick={this.handleClick}>
diff --git a/app/javascript/mastodon/components/status_action_bar.js b/app/javascript/mastodon/components/status_action_bar.js
index 27c2b466500780b1a79164e7124de7d8e47578b4..1f60d200132b3e51f535fdabb0be75ef48edb9d6 100644
--- a/app/javascript/mastodon/components/status_action_bar.js
+++ b/app/javascript/mastodon/components/status_action_bar.js
@@ -1,5 +1,6 @@
 import React from 'react';
 import ImmutablePropTypes from 'react-immutable-proptypes';
+import { connect } from 'react-redux';
 import PropTypes from 'prop-types';
 import IconButton from './icon_button';
 import DropdownMenuContainer from '../containers/dropdown_menu_container';
@@ -23,7 +24,10 @@ const messages = defineMessages({
   cancel_reblog_private: { id: 'status.cancel_reblog_private', defaultMessage: 'Unboost' },
   cannot_reblog: { id: 'status.cannot_reblog', defaultMessage: 'This post cannot be boosted' },
   local_only: { id: 'status.local_only', defaultMessage: 'This post is only visible by other users of your instance' },
+  quote: { id: 'status.quote', defaultMessage: 'Quote' },
   favourite: { id: 'status.favourite', defaultMessage: 'Favourite' },
+  bookmark: { id: 'status.bookmark', defaultMessage: 'Bookmark' },
+  removeBookmark: { id: 'status.remove_bookmark', defaultMessage: 'Remove bookmark' },
   open: { id: 'status.open', defaultMessage: 'Expand this status' },
   report: { id: 'status.report', defaultMessage: 'Report @{name}' },
   muteConversation: { id: 'status.mute_conversation', defaultMessage: 'Mute conversation' },
@@ -34,6 +38,11 @@ const messages = defineMessages({
   admin_account: { id: 'status.admin_account', defaultMessage: 'Open moderation interface for @{name}' },
   admin_status: { id: 'status.admin_status', defaultMessage: 'Open this status in the moderation interface' },
   copy: { id: 'status.copy', defaultMessage: 'Copy link to status' },
+  blockDomain: { id: 'account.block_domain', defaultMessage: 'Hide everything from {domain}' },
+  unblockDomain: { id: 'account.unblock_domain', defaultMessage: 'Unhide {domain}' },
+  openDomainTimeline: { id: 'account.open_domain_timeline', defaultMessage: 'Open {domain} timeline' },
+  unmute: { id: 'account.unmute', defaultMessage: 'Unmute @{name}' },
+  unblock: { id: 'account.unblock', defaultMessage: 'Unblock @{name}' },
 });
 
 const obfuscatedCount = count => {
@@ -46,7 +55,12 @@ const obfuscatedCount = count => {
   }
 };
 
-export default @injectIntl
+const mapStateToProps = (state, { status }) => ({
+  relationship: state.getIn(['relationships', status.getIn(['account', 'id'])]),
+});
+
+export default @connect(mapStateToProps)
+@injectIntl
 class StatusActionBar extends ImmutablePureComponent {
 
   static contextTypes = {
@@ -55,18 +69,25 @@ class StatusActionBar extends ImmutablePureComponent {
 
   static propTypes = {
     status: ImmutablePropTypes.map.isRequired,
+    relationship: ImmutablePropTypes.map,
     onReply: PropTypes.func,
     onFavourite: PropTypes.func,
     onReblog: PropTypes.func,
+    onQuote: PropTypes.func,
     onDelete: PropTypes.func,
     onDirect: PropTypes.func,
     onMention: PropTypes.func,
     onMute: PropTypes.func,
+    onUnmute: PropTypes.func,
     onBlock: PropTypes.func,
+    onUnblock: PropTypes.func,
+    onBlockDomain: PropTypes.func,
+    onUnblockDomain: PropTypes.func,
     onReport: PropTypes.func,
     onEmbed: PropTypes.func,
     onMuteConversation: PropTypes.func,
     onPin: PropTypes.func,
+    onBookmark: PropTypes.func,
     withDismiss: PropTypes.bool,
     intl: PropTypes.object.isRequired,
   };
@@ -75,6 +96,7 @@ class StatusActionBar extends ImmutablePureComponent {
   // evaluate to false. See react-immutable-pure-component for usage.
   updateOnProps = [
     'status',
+    'relationship',
     'withDismiss',
   ]
 
@@ -115,6 +137,14 @@ class StatusActionBar extends ImmutablePureComponent {
     window.open(`/interact/${this.props.status.get('id')}?type=${type}`, 'mastodon-intent', 'width=445,height=600,resizable=no,menubar=no,status=no,scrollbars=yes');
   }
 
+  handleBookmarkClick = () => {
+    this.props.onBookmark(this.props.status);
+  }
+
+  handleQuoteClick = () => {
+    this.props.onQuote(this.props.status, this.context.router.history);
+  }
+
   handleDeleteClick = () => {
     this.props.onDelete(this.props.status, this.context.router.history);
   }
@@ -136,11 +166,46 @@ class StatusActionBar extends ImmutablePureComponent {
   }
 
   handleMuteClick = () => {
-    this.props.onMute(this.props.status.get('account'));
+    const { status, relationship, onMute, onUnmute } = this.props;
+    const account = status.get('account');
+
+    if (relationship && relationship.get('muting')) {
+      onUnmute(account);
+    } else {
+      onMute(account);
+    }
   }
 
   handleBlockClick = () => {
-    this.props.onBlock(this.props.status);
+    const { status, relationship, onBlock, onUnblock } = this.props;
+    const account = status.get('account');
+
+    if (relationship && relationship.get('blocking')) {
+      onUnblock(account);
+    } else {
+      onBlock(status);
+    }
+  }
+
+  handleBlockDomain = () => {
+    const { status, onBlockDomain } = this.props;
+    const account = status.get('account');
+
+    onBlockDomain(account.get('acct').split('@')[1]);
+  }
+
+  handleUnblockDomain = () => {
+    const { status, onUnblockDomain } = this.props;
+    const account = status.get('account');
+
+    onUnblockDomain(account.get('acct').split('@')[1]);
+  }
+
+  handleOpenDomainTimeline = () => {
+    const { status } = this.props;
+    const account = status.get('account');
+
+    this.context.router.history.push(`/timelines/public/remote/${account.get('acct').split('@')[1]}`);
   }
 
   handleOpen = () => {
@@ -179,12 +244,13 @@ class StatusActionBar extends ImmutablePureComponent {
   }
 
   render () {
-    const { status, intl, withDismiss } = this.props;
+    const { status, relationship, intl, withDismiss } = this.props;
 
     const mutingConversation = status.get('muted');
     const anonymousAccess    = !me;
     const publicStatus       = ['public', 'unlisted'].includes(status.get('visibility'));
     const federated          = !status.get('local_only');
+    const account            = status.get('account');
 
     let menu = [];
     let reblogIcon = 'retweet';
@@ -217,16 +283,40 @@ class StatusActionBar extends ImmutablePureComponent {
       menu.push({ text: intl.formatMessage(messages.delete), action: this.handleDeleteClick });
       menu.push({ text: intl.formatMessage(messages.redraft), action: this.handleRedraftClick });
     } else {
-      menu.push({ text: intl.formatMessage(messages.mention, { name: status.getIn(['account', 'username']) }), action: this.handleMentionClick });
-      menu.push({ text: intl.formatMessage(messages.direct, { name: status.getIn(['account', 'username']) }), action: this.handleDirectClick });
+      menu.push({ text: intl.formatMessage(messages.mention, { name: account.get('username') }), action: this.handleMentionClick });
+      menu.push({ text: intl.formatMessage(messages.direct, { name: account.get('username') }), action: this.handleDirectClick });
       menu.push(null);
-      menu.push({ text: intl.formatMessage(messages.mute, { name: status.getIn(['account', 'username']) }), action: this.handleMuteClick });
-      menu.push({ text: intl.formatMessage(messages.block, { name: status.getIn(['account', 'username']) }), action: this.handleBlockClick });
-      menu.push({ text: intl.formatMessage(messages.report, { name: status.getIn(['account', 'username']) }), action: this.handleReport });
+
+      if (relationship && relationship.get('muting')) {
+        menu.push({ text: intl.formatMessage(messages.unmute, { name: account.get('username') }), action: this.handleMuteClick });
+      } else {
+        menu.push({ text: intl.formatMessage(messages.mute, { name: account.get('username') }), action: this.handleMuteClick });
+      }
+
+      if (relationship && relationship.get('blocking')) {
+        menu.push({ text: intl.formatMessage(messages.unblock, { name: account.get('username') }), action: this.handleBlockClick });
+      } else {
+        menu.push({ text: intl.formatMessage(messages.block, { name: account.get('username') }), action: this.handleBlockClick });
+      }
+
+      menu.push({ text: intl.formatMessage(messages.report, { name: account.get('username') }), action: this.handleReport });
+
+      if (account.get('acct') !== account.get('username')) {
+        const domain = account.get('acct').split('@')[1];
+
+        menu.push(null);
+
+        if (relationship && relationship.get('domain_blocking')) {
+          menu.push({ text: intl.formatMessage(messages.unblockDomain, { domain }), action: this.handleUnblockDomain });
+        } else {
+          menu.push({ text: intl.formatMessage(messages.blockDomain, { domain }), action: this.handleBlockDomain });
+        }
+        menu.push({ text: intl.formatMessage(messages.openDomainTimeline, { domain }), action: this.handleOpenDomainTimeline });
+      }
 
       if (isStaff) {
         menu.push(null);
-        menu.push({ text: intl.formatMessage(messages.admin_account, { name: status.getIn(['account', 'username']) }), href: `/admin/accounts/${status.getIn(['account', 'id'])}` });
+        menu.push({ text: intl.formatMessage(messages.admin_account, { name: account.get('username') }), href: `/admin/accounts/${status.getIn(['account', 'id'])}` });
         menu.push({ text: intl.formatMessage(messages.admin_status), href: `/admin/accounts/${status.getIn(['account', 'id'])}/statuses/${status.get('id')}` });
       }
     }
@@ -254,7 +344,9 @@ class StatusActionBar extends ImmutablePureComponent {
         <div className='status__action-bar__counter'><IconButton className='status__action-bar-button' title={replyTitle} icon={status.get('in_reply_to_account_id') === status.getIn(['account', 'id']) ? 'reply' : replyIcon} onClick={this.handleReplyClick} /><span className='status__action-bar__counter__label' >{obfuscatedCount(status.get('replies_count'))}</span></div>
         <IconButton className='status__action-bar-button' disabled={!publicStatus} active={status.get('reblogged')} pressed={status.get('reblogged')} title={!publicStatus ? intl.formatMessage(messages.cannot_reblog) : intl.formatMessage(messages.reblog)} icon={reblogIcon} onClick={this.handleReblogClick} />
         <IconButton className='status__action-bar-button star-icon' animate active={status.get('favourited')} pressed={status.get('favourited')} title={intl.formatMessage(messages.favourite)} icon='star' onClick={this.handleFavouriteClick} />
+        <IconButton className='status__action-bar-button' disabled={anonymousAccess || !publicStatus} title={!publicStatus ? intl.formatMessage(messages.cannot_reblog) : intl.formatMessage(messages.quote)} icon='quote-right' onClick={this.handleQuoteClick} />
         {shareButton}
+        <IconButton className='status__action-bar-button bookmark-icon' active={status.get('bookmarked')} pressed={status.get('bookmarked')} title={intl.formatMessage(status.get('bookmarked') ? messages.removeBookmark : messages.bookmark)} icon='bookmark' onClick={this.handleBookmarkClick} />
 
         <div className='status__action-bar-dropdown'>
           <DropdownMenuContainer disabled={anonymousAccess} status={status} items={menu} icon='ellipsis-h' size={18} direction='right' title={intl.formatMessage(messages.more)} />
diff --git a/app/javascript/mastodon/components/status_content.js b/app/javascript/mastodon/components/status_content.js
index 5852393056d6bebad000f1613e0f8420096260a2..888c962f7874967c1effdaf2c92d0aeb0df792e1 100644
--- a/app/javascript/mastodon/components/status_content.js
+++ b/app/javascript/mastodon/components/status_content.js
@@ -23,11 +23,11 @@ export default class StatusContent extends React.PureComponent {
     onExpandedToggle: PropTypes.func,
     onClick: PropTypes.func,
     collapsable: PropTypes.bool,
+    onCollapsedToggle: PropTypes.func,
   };
 
   state = {
     hidden: true,
-    collapsed: null, //  `collapsed: null` indicates that an element doesn't need collapsing, while `true` or `false` indicates that it does (and is/isn't).
   };
 
   _updateStatusLinks () {
@@ -59,17 +59,19 @@ export default class StatusContent extends React.PureComponent {
       }
 
       link.setAttribute('target', '_blank');
-      link.setAttribute('rel', 'noopener');
+      link.setAttribute('rel', 'noopener noreferrer');
     }
 
-    if (
-      this.props.collapsable
-      && this.props.onClick
-      && this.state.collapsed === null
-      && node.clientHeight > MAX_HEIGHT
-      && this.props.status.get('spoiler_text').length === 0
-    ) {
-      this.setState({ collapsed: true });
+    if (this.props.status.get('collapsed', null) === null) {
+      let collapsed =
+          this.props.collapsable
+          && this.props.onClick
+          && node.clientHeight > MAX_HEIGHT
+          && this.props.status.get('spoiler_text').length === 0;
+
+      if(this.props.onCollapsedToggle) this.props.onCollapsedToggle(collapsed);
+
+      this.props.status.set('collapsed', collapsed);
     }
   }
 
@@ -185,6 +187,7 @@ export default class StatusContent extends React.PureComponent {
     }
 
     const hidden = this.props.onExpandedToggle ? !this.props.expanded : this.state.hidden;
+    const renderReadMore = this.props.onClick && status.get('collapsed');
 
     const content = { __html: status.get('contentHtml') };
     const spoilerContent = { __html: status.get('spoilerHtml') };
@@ -192,7 +195,7 @@ export default class StatusContent extends React.PureComponent {
     const classNames = classnames('status__content', {
       'status__content--with-action': this.props.onClick && this.context.router,
       'status__content--with-spoiler': status.get('spoiler_text').length > 0,
-      'status__content--collapsed': this.state.collapsed === true,
+      'status__content--collapsed': renderReadMore,
     });
 
     if (isRtl(status.get('search_index'))) {
@@ -244,7 +247,7 @@ export default class StatusContent extends React.PureComponent {
         </div>,
       ];
 
-      if (this.state.collapsed) {
+      if (renderReadMore) {
         output.push(readMoreButton);
       }
 
diff --git a/app/javascript/mastodon/containers/account_container.js b/app/javascript/mastodon/containers/account_container.js
index 5a5136dd186d6fcded794be991a862e7e8c732cb..ac69b91501a92c9946e2ad87860575b658cfd64a 100644
--- a/app/javascript/mastodon/containers/account_container.js
+++ b/app/javascript/mastodon/containers/account_container.js
@@ -6,6 +6,8 @@ import Account from '../components/account';
 import {
   followAccount,
   unfollowAccount,
+  subscribeAccount,
+  unsubscribeAccount,
   blockAccount,
   unblockAccount,
   muteAccount,
@@ -13,10 +15,11 @@ import {
 } from '../actions/accounts';
 import { openModal } from '../actions/modal';
 import { initMuteModal } from '../actions/mutes';
-import { unfollowModal } from '../initial_state';
+import { unfollowModal, unsubscribeModal } from '../initial_state';
 
 const messages = defineMessages({
   unfollowConfirm: { id: 'confirmations.unfollow.confirm', defaultMessage: 'Unfollow' },
+  unsubscribeConfirm: { id: 'confirmations.unsubscribe.confirm', defaultMessage: 'Unsubscribe' },
 });
 
 const makeMapStateToProps = () => {
@@ -47,6 +50,22 @@ const mapDispatchToProps = (dispatch, { intl }) => ({
     }
   },
 
+  onSubscribe (account) {
+    if (account.getIn(['relationship', 'subscribing'])) {
+      if (unsubscribeModal) {
+        dispatch(openModal('CONFIRM', {
+          message: <FormattedMessage id='confirmations.unsubscribe.message' defaultMessage='Are you sure you want to unsubscribe {name}?' values={{ name: <strong>@{account.get('acct')}</strong> }} />,
+          confirm: intl.formatMessage(messages.unsubscribeConfirm),
+          onConfirm: () => dispatch(unsubscribeAccount(account.get('id'))),
+        }));
+      } else {
+        dispatch(unsubscribeAccount(account.get('id')));
+      }
+    } else {
+      dispatch(subscribeAccount(account.get('id')));
+    }
+  },
+
   onBlock (account) {
     if (account.getIn(['relationship', 'blocking'])) {
       dispatch(unblockAccount(account.get('id')));
diff --git a/app/javascript/mastodon/containers/dropdown_menu_container.js b/app/javascript/mastodon/containers/dropdown_menu_container.js
index f79b192029e5de0d666c1682a81ce8d604e8f35d..ab1823194be4c415302730b7671d78550810e2db 100644
--- a/app/javascript/mastodon/containers/dropdown_menu_container.js
+++ b/app/javascript/mastodon/containers/dropdown_menu_container.js
@@ -1,4 +1,5 @@
 import { openDropdownMenu, closeDropdownMenu } from '../actions/dropdown_menu';
+import { fetchRelationships } from 'mastodon/actions/accounts';
 import { openModal, closeModal } from '../actions/modal';
 import { connect } from 'react-redux';
 import DropdownMenu from '../components/dropdown_menu';
@@ -13,12 +14,17 @@ const mapStateToProps = state => ({
 
 const mapDispatchToProps = (dispatch, { status, items }) => ({
   onOpen(id, onItemClick, dropdownPlacement, keyboard) {
+    if (status) {
+      dispatch(fetchRelationships([status.getIn(['account', 'id'])]));
+    }
+
     dispatch(isUserTouching() ? openModal('ACTIONS', {
       status,
       actions: items,
       onClick: onItemClick,
     }) : openDropdownMenu(id, dropdownPlacement, keyboard));
   },
+
   onClose(id) {
     dispatch(closeModal('ACTIONS'));
     dispatch(closeDropdownMenu(id));
diff --git a/app/javascript/mastodon/containers/status_container.js b/app/javascript/mastodon/containers/status_container.js
index fb22676e045281485331a7db1f8c11461fc03de9..57a8b7d3da1ecde37bec898994f6d81e427e5030 100644
--- a/app/javascript/mastodon/containers/status_container.js
+++ b/app/javascript/mastodon/containers/status_container.js
@@ -1,16 +1,20 @@
+import React from 'react';
 import { connect } from 'react-redux';
 import Status from '../components/status';
 import { makeGetStatus } from '../selectors';
 import {
   replyCompose,
+  quoteCompose,
   mentionCompose,
   directCompose,
 } from '../actions/compose';
 import {
   reblog,
   favourite,
+  bookmark,
   unreblog,
   unfavourite,
+  unbookmark,
   pin,
   unpin,
 } from '../actions/interactions';
@@ -20,13 +24,29 @@ import {
   deleteStatus,
   hideStatus,
   revealStatus,
+  toggleStatusCollapse,
+  hideQuote,
+  revealQuote,
 } from '../actions/statuses';
+import {
+  followAccount,
+  unfollowAccount,
+  subscribeAccount,
+  unsubscribeAccount,
+  unmuteAccount,
+  unblockAccount,
+} from '../actions/accounts';
+import {
+  blockDomain,
+  unblockDomain,
+} from '../actions/domain_blocks';
+
 import { initMuteModal } from '../actions/mutes';
 import { initBlockModal } from '../actions/blocks';
 import { initReport } from '../actions/reports';
 import { openModal } from '../actions/modal';
-import { defineMessages, injectIntl } from 'react-intl';
-import { boostModal, deleteModal } from '../initial_state';
+import { defineMessages, injectIntl, FormattedMessage } from 'react-intl';
+import { boostModal, deleteModal, unfollowModal, unsubscribeModal } from '../initial_state';
 import { showAlertForError } from '../actions/alerts';
 
 const messages = defineMessages({
@@ -36,6 +56,9 @@ const messages = defineMessages({
   redraftMessage: { id: 'confirmations.redraft.message', defaultMessage: 'Are you sure you want to delete this status and re-draft it? Favourites and boosts will be lost, and replies to the original post will be orphaned.' },
   replyConfirm: { id: 'confirmations.reply.confirm', defaultMessage: 'Reply' },
   replyMessage: { id: 'confirmations.reply.message', defaultMessage: 'Replying now will overwrite the message you are currently composing. Are you sure you want to proceed?' },
+  blockDomainConfirm: { id: 'confirmations.domain_block.confirm', defaultMessage: 'Hide entire domain' },
+  unfollowConfirm: { id: 'confirmations.unfollow.confirm', defaultMessage: 'Unfollow' },
+  unsubscribeConfirm: { id: 'confirmations.unsubscribe.confirm', defaultMessage: 'Unsubscribe' },
 });
 
 const makeMapStateToProps = () => {
@@ -82,6 +105,10 @@ const mapDispatchToProps = (dispatch, { intl }) => ({
     }
   },
 
+  onQuote (status, router) {
+    dispatch(quoteCompose(status, router));
+  },
+
   onFavourite (status) {
     if (status.get('favourited')) {
       dispatch(unfavourite(status));
@@ -90,6 +117,14 @@ const mapDispatchToProps = (dispatch, { intl }) => ({
     }
   },
 
+  onBookmark (status) {
+    if (status.get('bookmarked')) {
+      dispatch(unbookmark(status));
+    } else {
+      dispatch(bookmark(status));
+    }
+  },
+
   onPin (status) {
     if (status.get('pinned')) {
       dispatch(unpin(status));
@@ -138,6 +173,10 @@ const mapDispatchToProps = (dispatch, { intl }) => ({
     dispatch(initBlockModal(account));
   },
 
+  onUnblock (account) {
+    dispatch(unblockAccount(account.get('id')));
+  },
+
   onReport (status) {
     dispatch(initReport(status.get('account'), status));
   },
@@ -146,6 +185,10 @@ const mapDispatchToProps = (dispatch, { intl }) => ({
     dispatch(initMuteModal(account));
   },
 
+  onUnmute (account) {
+    dispatch(unmuteAccount(account.get('id')));
+  },
+
   onMuteConversation (status) {
     if (status.get('muted')) {
       dispatch(unmuteStatus(status.get('id')));
@@ -162,6 +205,61 @@ const mapDispatchToProps = (dispatch, { intl }) => ({
     }
   },
 
+  onToggleCollapsed (status, isCollapsed) {
+    dispatch(toggleStatusCollapse(status.get('id'), isCollapsed));
+  },
+
+  onBlockDomain (domain) {
+    dispatch(openModal('CONFIRM', {
+      message: <FormattedMessage id='confirmations.domain_block.message' defaultMessage='Are you really, really sure you want to block the entire {domain}? In most cases a few targeted blocks or mutes are sufficient and preferable. You will not see content from that domain in any public timelines or your notifications. Your followers from that domain will be removed.' values={{ domain: <strong>{domain}</strong> }} />,
+      confirm: intl.formatMessage(messages.blockDomainConfirm),
+      onConfirm: () => dispatch(blockDomain(domain)),
+    }));
+  },
+
+  onUnblockDomain (domain) {
+    dispatch(unblockDomain(domain));
+  },
+  
+  onQuoteToggleHidden (status) {
+    if (status.get('quote_hidden')) {
+      dispatch(revealQuote(status.get('id')));
+    } else {
+      dispatch(hideQuote(status.get('id')));
+    }
+  },
+
+  onFollow (account) {
+    if (account.getIn(['relationship', 'following']) || account.getIn(['relationship', 'requested'])) {
+      if (unfollowModal) {
+        dispatch(openModal('CONFIRM', {
+          message: <FormattedMessage id='confirmations.unfollow.message' defaultMessage='Are you sure you want to unfollow {name}?' values={{ name: <strong>@{account.get('acct')}</strong> }} />,
+          confirm: intl.formatMessage(messages.unfollowConfirm),
+          onConfirm: () => dispatch(unfollowAccount(account.get('id'))),
+        }));
+      } else {
+        dispatch(unfollowAccount(account.get('id')));
+      }
+    } else {
+      dispatch(followAccount(account.get('id')));
+    }
+  },
+
+  onSubscribe (account) {
+    if (account.getIn(['relationship', 'subscribing'])) {
+      if (unsubscribeModal) {
+        dispatch(openModal('CONFIRM', {
+          message: <FormattedMessage id='confirmations.unsubscribe.message' defaultMessage='Are you sure you want to unsubscribe {name}?' values={{ name: <strong>@{account.get('acct')}</strong> }} />,
+          confirm: intl.formatMessage(messages.unsubscribeConfirm),
+          onConfirm: () => dispatch(unsubscribeAccount(account.get('id'))),
+        }));
+      } else {
+        dispatch(unsubscribeAccount(account.get('id')));
+      }
+    } else {
+      dispatch(subscribeAccount(account.get('id')));
+    }
+  },
 });
 
 export default injectIntl(connect(makeMapStateToProps, mapDispatchToProps)(Status));
diff --git a/app/javascript/mastodon/extra_polyfills.js b/app/javascript/mastodon/extra_polyfills.js
index 3acc55abd68250a9f7454e7c52354ac1e75fda6a..13c4f6da9ef43675fdc9bd61a6a899083f0a2c39 100644
--- a/app/javascript/mastodon/extra_polyfills.js
+++ b/app/javascript/mastodon/extra_polyfills.js
@@ -1,5 +1,5 @@
 import 'intersection-observer';
 import 'requestidlecallback';
-import objectFitImages  from 'object-fit-images';
+import objectFitImages from 'object-fit-images';
 
 objectFitImages();
diff --git a/app/javascript/mastodon/features/account/components/header.js b/app/javascript/mastodon/features/account/components/header.js
index ac97bad7126cd9e2c8379a90620b933aff58a990..6241f65edb4d59e5709d43c2b226bb51ee66738f 100644
--- a/app/javascript/mastodon/features/account/components/header.js
+++ b/app/javascript/mastodon/features/account/components/header.js
@@ -3,6 +3,7 @@ import ImmutablePropTypes from 'react-immutable-proptypes';
 import PropTypes from 'prop-types';
 import { defineMessages, injectIntl, FormattedMessage } from 'react-intl';
 import Button from 'mastodon/components/button';
+import IconButton from 'mastodon/components/icon_button';
 import ImmutablePureComponent from 'react-immutable-pure-component';
 import { autoPlayGif, me, isStaff } from 'mastodon/initial_state';
 import classNames from 'classnames';
@@ -15,6 +16,8 @@ import DropdownMenuContainer from 'mastodon/containers/dropdown_menu_container';
 const messages = defineMessages({
   unfollow: { id: 'account.unfollow', defaultMessage: 'Unfollow' },
   follow: { id: 'account.follow', defaultMessage: 'Follow' },
+  unsubscribe: { id: 'account.unsubscribe', defaultMessage: 'Unsubscribe' },
+  subscribe: { id: 'account.subscribe', defaultMessage: 'Subscribe' },
   cancel_follow_request: { id: 'account.cancel_follow_request', defaultMessage: 'Cancel follow request' },
   requested: { id: 'account.requested', defaultMessage: 'Awaiting approval. Click to cancel follow request' },
   unblock: { id: 'account.unblock', defaultMessage: 'Unblock @{name}' },
@@ -63,6 +66,7 @@ class Header extends ImmutablePureComponent {
     account: ImmutablePropTypes.map,
     identity_props: ImmutablePropTypes.list,
     onFollow: PropTypes.func.isRequired,
+    onSubscribe: PropTypes.func.isRequired,
     onBlock: PropTypes.func.isRequired,
     intl: PropTypes.object.isRequired,
     domain: PropTypes.string.isRequired,
@@ -238,9 +242,34 @@ class Header extends ImmutablePureComponent {
     const content         = { __html: account.get('note_emojified') };
     const displayNameHtml = { __html: account.get('display_name_html') };
     const fields          = account.get('fields');
-    const badge           = account.get('bot') ? (<div className='account-role bot'><FormattedMessage id='account.badges.bot' defaultMessage='Bot' /></div>) : null;
     const acct            = account.get('acct').indexOf('@') === -1 && domain ? `${account.get('acct')}@${domain}` : account.get('acct');
 
+    let badge;
+
+    if (account.get('bot')) {
+      badge = (<div className='account-role bot'><FormattedMessage id='account.badges.bot' defaultMessage='Bot' /></div>);
+    } else if (account.get('group')) {
+      badge = (<div className='account-role group'><FormattedMessage id='account.badges.group' defaultMessage='Group' /></div>);
+    } else {
+      badge = null;
+    }
+
+    const following   = account.getIn(['relationship', 'following']);
+    const subscribing = account.getIn(['relationship', 'subscribing']);
+    const blockd_by   = account.getIn(['relationship', 'blocked_by']);
+    let buttons;
+
+    if(me !== account.get('id') && !blockd_by) {
+      let following_buttons, subscribing_buttons;
+      if(!account.get('moved') || subscribing) {
+        subscribing_buttons = <IconButton icon='rss-square' title={intl.formatMessage(subscribing ? messages.unsubscribe : messages.subscribe)} onClick={this.props.onSubscribe} active={subscribing} />;
+      }
+      if(!account.get('moved') || following) {
+        following_buttons = <IconButton icon={following ? 'user-times' : 'user-plus'} title={intl.formatMessage(following ? messages.unfollow : messages.follow)} onClick={this.props.onFollow} active={following} />;
+      }
+      buttons = <span>{subscribing_buttons}{following_buttons}</span>
+    }
+
     return (
       <div className={classNames('account__header', { inactive: !!account.get('moved') })} ref={this.setRef}>
         <div className='account__header__image'>
@@ -253,7 +282,7 @@ class Header extends ImmutablePureComponent {
 
         <div className='account__header__bar'>
           <div className='account__header__tabs'>
-            <a className='avatar' href={account.get('url')} rel='noopener' target='_blank'>
+            <a className='avatar' href={account.get('url')} rel='noopener noreferrer' target='_blank'>
               <Avatar account={account} size={90} />
             </a>
 
@@ -271,6 +300,9 @@ class Header extends ImmutablePureComponent {
               <span dangerouslySetInnerHTML={displayNameHtml} /> {badge}
               <small>@{acct} {lockedIcon}</small>
             </h1>
+            <div className='account__header__tabs__name__relationship account__relationship'>
+              {buttons}
+            </div>
           </div>
 
           <div className='account__header__extra'>
@@ -282,10 +314,10 @@ class Header extends ImmutablePureComponent {
                       <dt dangerouslySetInnerHTML={{ __html: proof.get('provider') }} />
 
                       <dd className='verified'>
-                        <a href={proof.get('proof_url')} target='_blank' rel='noopener'><span title={intl.formatMessage(messages.linkVerifiedOn, { date: intl.formatDate(proof.get('updated_at'), dateFormatOptions) })}>
+                        <a href={proof.get('proof_url')} target='_blank' rel='noopener noreferrer'><span title={intl.formatMessage(messages.linkVerifiedOn, { date: intl.formatDate(proof.get('updated_at'), dateFormatOptions) })}>
                           <Icon id='check' className='verified__mark' />
                         </span></a>
-                        <a href={proof.get('profile_url')} target='_blank' rel='noopener'><span dangerouslySetInnerHTML={{ __html: ' '+proof.get('provider_username') }} /></a>
+                        <a href={proof.get('profile_url')} target='_blank' rel='noopener noreferrer'><span dangerouslySetInnerHTML={{ __html: ' '+proof.get('provider_username') }} /></a>
                       </dd>
                     </dl>
                   ))}
@@ -316,6 +348,12 @@ class Header extends ImmutablePureComponent {
               <NavLink exact activeClassName='active' to={`/accounts/${account.get('id')}/followers`} title={intl.formatNumber(account.get('followers_count'))}>
                 <strong>{shortNumberFormat(account.get('followers_count'))}</strong> <FormattedMessage id='account.followers' defaultMessage='Followers' />
               </NavLink>
+
+              { (me === account.get('id')) && (
+                <NavLink exact activeClassName='active' to={`/accounts/${account.get('id')}/subscribing`} title={intl.formatNumber(account.get('subscribing_count'))}>
+                  <strong>{shortNumberFormat(account.get('subscribing_count'))}</strong> <FormattedMessage id='account.subscribes' defaultMessage='Subscribes' />
+                </NavLink>
+              )}
             </div>
           </div>
         </div>
diff --git a/app/javascript/mastodon/features/account_gallery/components/media_item.js b/app/javascript/mastodon/features/account_gallery/components/media_item.js
index b6eec22439663a83e58efd0b40f4f71210fcda6d..617a45d16570deca6209c8f3705a494d7848d6c3 100644
--- a/app/javascript/mastodon/features/account_gallery/components/media_item.js
+++ b/app/javascript/mastodon/features/account_gallery/components/media_item.js
@@ -1,12 +1,12 @@
-import React from 'react';
-import PropTypes from 'prop-types';
-import ImmutablePropTypes from 'react-immutable-proptypes';
-import ImmutablePureComponent from 'react-immutable-pure-component';
+import { decode } from 'blurhash';
+import classNames from 'classnames';
 import Icon from 'mastodon/components/icon';
 import { autoPlayGif, displayMedia } from 'mastodon/initial_state';
-import classNames from 'classnames';
-import { decode } from 'blurhash';
 import { isIOS } from 'mastodon/is_mobile';
+import PropTypes from 'prop-types';
+import React from 'react';
+import ImmutablePropTypes from 'react-immutable-proptypes';
+import ImmutablePureComponent from 'react-immutable-pure-component';
 
 export default class MediaItem extends ImmutablePureComponent {
 
@@ -151,7 +151,7 @@ export default class MediaItem extends ImmutablePureComponent {
 
     return (
       <div className='account-gallery__item' style={{ width, height }}>
-        <a className='media-gallery__item-thumbnail' href={status.get('url')} target='_blank' onClick={this.handleClick} title={title}>
+        <a className='media-gallery__item-thumbnail' href={status.get('url')} onClick={this.handleClick} title={title} target='_blank' rel='noopener noreferrer'>
           <canvas width={32} height={32} ref={this.setCanvasRef} className={classNames('media-gallery__preview', { 'media-gallery__preview--hidden': visible && loaded })} />
           {visible && thumbnail}
           {!visible && icon}
diff --git a/app/javascript/mastodon/features/account_timeline/components/header.js b/app/javascript/mastodon/features/account_timeline/components/header.js
index 844b8a236a89e555072786163da4c9f9e2010f1b..1af0b10e980f6da9a0c06cddb2885b66af6baefa 100644
--- a/app/javascript/mastodon/features/account_timeline/components/header.js
+++ b/app/javascript/mastodon/features/account_timeline/components/header.js
@@ -13,6 +13,7 @@ export default class Header extends ImmutablePureComponent {
     account: ImmutablePropTypes.map,
     identity_proofs: ImmutablePropTypes.list,
     onFollow: PropTypes.func.isRequired,
+    onSubscribe: PropTypes.func.isRequired,
     onBlock: PropTypes.func.isRequired,
     onMention: PropTypes.func.isRequired,
     onDirect: PropTypes.func.isRequired,
@@ -35,6 +36,10 @@ export default class Header extends ImmutablePureComponent {
     this.props.onFollow(this.props.account);
   }
 
+  handleSubscribe = () => {
+    this.props.onSubscribe(this.props.account);
+  }
+
   handleBlock = () => {
     this.props.onBlock(this.props.account);
   }
@@ -98,6 +103,7 @@ export default class Header extends ImmutablePureComponent {
           account={account}
           identity_proofs={identity_proofs}
           onFollow={this.handleFollow}
+          onSubscribe={this.handleSubscribe}
           onBlock={this.handleBlock}
           onMention={this.handleMention}
           onDirect={this.handleDirect}
diff --git a/app/javascript/mastodon/features/account_timeline/containers/header_container.js b/app/javascript/mastodon/features/account_timeline/containers/header_container.js
index 8728b48068a9baa4ddde47f01cbd4ed39fde8798..189e05e127a405d1b580709a63d5e0863d38e34f 100644
--- a/app/javascript/mastodon/features/account_timeline/containers/header_container.js
+++ b/app/javascript/mastodon/features/account_timeline/containers/header_container.js
@@ -5,6 +5,8 @@ import Header from '../components/header';
 import {
   followAccount,
   unfollowAccount,
+  subscribeAccount,
+  unsubscribeAccount,
   unblockAccount,
   unmuteAccount,
   pinAccount,
@@ -20,11 +22,12 @@ import { initReport } from '../../../actions/reports';
 import { openModal } from '../../../actions/modal';
 import { blockDomain, unblockDomain } from '../../../actions/domain_blocks';
 import { defineMessages, injectIntl, FormattedMessage } from 'react-intl';
-import { unfollowModal } from '../../../initial_state';
+import { unfollowModal, unsubscribeModal } from '../../../initial_state';
 import { List as ImmutableList } from 'immutable';
 
 const messages = defineMessages({
   unfollowConfirm: { id: 'confirmations.unfollow.confirm', defaultMessage: 'Unfollow' },
+  unsubscribeConfirm: { id: 'confirmations.unsubscribe.confirm', defaultMessage: 'Unsubscribe' },
   blockDomainConfirm: { id: 'confirmations.domain_block.confirm', defaultMessage: 'Hide entire domain' },
 });
 
@@ -58,6 +61,22 @@ const mapDispatchToProps = (dispatch, { intl }) => ({
     }
   },
 
+  onSubscribe (account) {
+    if (account.getIn(['relationship', 'subscribing'])) {
+      if (unsubscribeModal) {
+        dispatch(openModal('CONFIRM', {
+          message: <FormattedMessage id='confirmations.unsubscribe.message' defaultMessage='Are you sure you want to unsubscribe {name}?' values={{ name: <strong>@{account.get('acct')}</strong> }} />,
+          confirm: intl.formatMessage(messages.unsubscribeConfirm),
+          onConfirm: () => dispatch(unsubscribeAccount(account.get('id'))),
+        }));
+      } else {
+        dispatch(unsubscribeAccount(account.get('id')));
+      }
+    } else {
+      dispatch(subscribeAccount(account.get('id')));
+    }
+  },
+
   onBlock (account) {
     if (account.getIn(['relationship', 'blocking'])) {
       dispatch(unblockAccount(account.get('id')));
diff --git a/app/javascript/mastodon/features/audio/index.js b/app/javascript/mastodon/features/audio/index.js
index 95e5675f3cf12e6adc72bdad9483fe4742bb6daf..fda5a074fe28c45f11c6253e75a2d5126c160e80 100644
--- a/app/javascript/mastodon/features/audio/index.js
+++ b/app/javascript/mastodon/features/audio/index.js
@@ -12,6 +12,7 @@ const messages = defineMessages({
   pause: { id: 'video.pause', defaultMessage: 'Pause' },
   mute: { id: 'video.mute', defaultMessage: 'Mute sound' },
   unmute: { id: 'video.unmute', defaultMessage: 'Unmute sound' },
+  download: { id: 'video.download', defaultMessage: 'Download file' },
 });
 
 export default @injectIntl
@@ -36,15 +37,14 @@ class Audio extends React.PureComponent {
     volume: 0.5,
   };
 
-  // hard coded in components.scss
-  // any way to get ::before values programatically?
-
-  volWidth = 50;
-
+  // Hard coded in components.scss
+  // Any way to get ::before values programatically?
+  volWidth  = 50;
   volOffset = 70;
 
   volHandleOffset = v => {
     const offset = v * this.volWidth + this.volOffset;
+
     return (offset > 110) ? 110 : offset;
   }
 
@@ -60,6 +60,8 @@ class Audio extends React.PureComponent {
     if (this.waveform) {
       this._updateWaveform();
     }
+
+    window.addEventListener('scroll', this.handleScroll);
   }
 
   componentDidUpdate (prevProps) {
@@ -69,6 +71,8 @@ class Audio extends React.PureComponent {
   }
 
   componentWillUnmount () {
+    window.removeEventListener('scroll', this.handleScroll);
+
     if (this.wavesurfer) {
       this.wavesurfer.destroy();
       this.wavesurfer = null;
@@ -127,16 +131,15 @@ class Audio extends React.PureComponent {
         this.loaded = true;
       }
 
-      this.wavesurfer.play();
-      this.setState({ paused: false });
+      this.setState({ paused: false }, () => this.wavesurfer.play());
     } else {
-      this.wavesurfer.pause();
-      this.setState({ paused: true });
+      this.setState({ paused: true }, () => this.wavesurfer.pause());
     }
   }
 
   toggleMute = () => {
-    this.wavesurfer.setMute(!this.state.muted);
+    const muted = !this.state.muted;
+    this.setState({ muted }, () => this.wavesurfer.setMute(muted));
   }
 
   handleVolumeMouseDown = e => {
@@ -175,6 +178,19 @@ class Audio extends React.PureComponent {
     }
   }, 60);
 
+  handleScroll = throttle(() => {
+    if (!this.waveform || !this.wavesurfer) {
+      return;
+    }
+
+    const { top, height } = this.waveform.getBoundingClientRect();
+    const inView = (top <= (window.innerHeight || document.documentElement.clientHeight)) && (top + height >= 0);
+
+    if (!this.state.paused && !inView) {
+      this.setState({ paused: true }, () => this.wavesurfer.pause());
+    }
+  }, 150, { trailing: true })
+
   render () {
     const { height, intl, alt, editable } = this.props;
     const { paused, muted, volume, currentTime } = this.state;
@@ -202,6 +218,7 @@ class Audio extends React.PureComponent {
               <button type='button' aria-label={intl.formatMessage(muted ? messages.unmute : messages.mute)} onClick={this.toggleMute}><Icon id={muted ? 'volume-off' : 'volume-up'} fixedWidth /></button>
 
               <div className='video-player__volume' onMouseDown={this.handleVolumeMouseDown} ref={this.setVolumeRef}>
+                &nbsp;
                 <div className='video-player__volume__current' style={{ width: `${volumeWidth}px` }} />
 
                 <span
@@ -217,6 +234,14 @@ class Audio extends React.PureComponent {
                 <span className='video-player__time-total'>{formatTime(this.state.duration || Math.floor(this.props.duration))}</span>
               </span>
             </div>
+
+            <div className='video-player__buttons right'>
+              <button type='button' aria-label={intl.formatMessage(messages.download)}>
+                <a className='video-player__download__icon' href={this.props.src} download>
+                  <Icon id={'download'} fixedWidth />
+                </a>
+              </button>
+            </div>
           </div>
         </div>
       </div>
diff --git a/app/javascript/mastodon/features/bookmarked_statuses/index.js b/app/javascript/mastodon/features/bookmarked_statuses/index.js
new file mode 100644
index 0000000000000000000000000000000000000000..c37cb9176765b221794745eece56b6437baafcdd
--- /dev/null
+++ b/app/javascript/mastodon/features/bookmarked_statuses/index.js
@@ -0,0 +1,104 @@
+import React from 'react';
+import { connect } from 'react-redux';
+import PropTypes from 'prop-types';
+import ImmutablePropTypes from 'react-immutable-proptypes';
+import { fetchBookmarkedStatuses, expandBookmarkedStatuses } from '../../actions/bookmarks';
+import Column from '../ui/components/column';
+import ColumnHeader from '../../components/column_header';
+import { addColumn, removeColumn, moveColumn } from '../../actions/columns';
+import StatusList from '../../components/status_list';
+import { defineMessages, injectIntl, FormattedMessage } from 'react-intl';
+import ImmutablePureComponent from 'react-immutable-pure-component';
+import { debounce } from 'lodash';
+
+const messages = defineMessages({
+  heading: { id: 'column.bookmarks', defaultMessage: 'Bookmarks' },
+});
+
+const mapStateToProps = state => ({
+  statusIds: state.getIn(['status_lists', 'bookmarks', 'items']),
+  isLoading: state.getIn(['status_lists', 'bookmarks', 'isLoading'], true),
+  hasMore: !!state.getIn(['status_lists', 'bookmarks', 'next']),
+});
+
+export default @connect(mapStateToProps)
+@injectIntl
+class Bookmarks extends ImmutablePureComponent {
+
+  static propTypes = {
+    dispatch: PropTypes.func.isRequired,
+    shouldUpdateScroll: PropTypes.func,
+    statusIds: ImmutablePropTypes.list.isRequired,
+    intl: PropTypes.object.isRequired,
+    columnId: PropTypes.string,
+    multiColumn: PropTypes.bool,
+    hasMore: PropTypes.bool,
+    isLoading: PropTypes.bool,
+  };
+
+  componentWillMount () {
+    this.props.dispatch(fetchBookmarkedStatuses());
+  }
+
+  handlePin = () => {
+    const { columnId, dispatch } = this.props;
+
+    if (columnId) {
+      dispatch(removeColumn(columnId));
+    } else {
+      dispatch(addColumn('BOOKMARKS', {}));
+    }
+  }
+
+  handleMove = (dir) => {
+    const { columnId, dispatch } = this.props;
+    dispatch(moveColumn(columnId, dir));
+  }
+
+  handleHeaderClick = () => {
+    this.column.scrollTop();
+  }
+
+  setRef = c => {
+    this.column = c;
+  }
+
+  handleLoadMore = debounce(() => {
+    this.props.dispatch(expandBookmarkedStatuses());
+  }, 300, { leading: true })
+
+  render () {
+    const { intl, shouldUpdateScroll, statusIds, columnId, multiColumn, hasMore, isLoading } = this.props;
+    const pinned = !!columnId;
+
+    const emptyMessage = <FormattedMessage id='empty_column.bookmarked_statuses' defaultMessage="You don't have any bookmarked toots yet. When you bookmark one, it will show up here." />;
+
+    return (
+      <Column bindToDocument={!multiColumn} ref={this.setRef} label={intl.formatMessage(messages.heading)}>
+        <ColumnHeader
+          icon='bookmark'
+          title={intl.formatMessage(messages.heading)}
+          onPin={this.handlePin}
+          onMove={this.handleMove}
+          onClick={this.handleHeaderClick}
+          pinned={pinned}
+          multiColumn={multiColumn}
+          showBackButton
+        />
+
+        <StatusList
+          trackScroll={!pinned}
+          statusIds={statusIds}
+          scrollKey={`bookmarked_statuses-${columnId}`}
+          hasMore={hasMore}
+          isLoading={isLoading}
+          onLoadMore={this.handleLoadMore}
+          shouldUpdateScroll={shouldUpdateScroll}
+          emptyMessage={emptyMessage}
+          bindToDocument={!multiColumn}
+        />
+      </Column>
+    );
+  }
+
+}
diff --git a/app/javascript/mastodon/features/community_timeline/index.js b/app/javascript/mastodon/features/community_timeline/index.js
index 30153cc15376000459beefd13247f1e4d5ce52ff..b3cd39685cd79080b2994011bf93b9b84c6a811d 100644
--- a/app/javascript/mastodon/features/community_timeline/index.js
+++ b/app/javascript/mastodon/features/community_timeline/index.js
@@ -14,15 +14,16 @@ const messages = defineMessages({
   title: { id: 'column.community', defaultMessage: 'Local timeline' },
 });
 
-const mapStateToProps = (state, { onlyMedia, columnId }) => {
+const mapStateToProps = (state, { columnId }) => {
   const uuid = columnId;
   const columns = state.getIn(['settings', 'columns']);
   const index = columns.findIndex(c => c.get('uuid') === uuid);
+  const onlyMedia = (columnId && index >= 0) ? columns.get(index).getIn(['params', 'other', 'onlyMedia']) : state.getIn(['settings', 'community', 'other', 'onlyMedia']);
   const timelineState = state.getIn(['timelines', `community${onlyMedia ? ':media' : ''}`]);
 
   return {
-    hasUnread: !!timelineState && (timelineState.get('unread') > 0 || timelineState.get('pendingItems').size > 0),
-    onlyMedia: (columnId && index >= 0) ? columns.get(index).getIn(['params', 'other', 'onlyMedia']) : state.getIn(['settings', 'community', 'other', 'onlyMedia']),
+    hasUnread: !!timelineState && timelineState.get('unread') > 0,
+    onlyMedia,
   };
 };
 
diff --git a/app/javascript/mastodon/features/compose/components/compose_form.js b/app/javascript/mastodon/features/compose/components/compose_form.js
index a6d0c88a8956b63be1a42c4ec68199063eafd466..ece1bfb85339fc48df903872e2888d354c6225b4 100644
--- a/app/javascript/mastodon/features/compose/components/compose_form.js
+++ b/app/javascript/mastodon/features/compose/components/compose_form.js
@@ -4,6 +4,7 @@ import Button from '../../../components/button';
 import ImmutablePropTypes from 'react-immutable-proptypes';
 import PropTypes from 'prop-types';
 import ReplyIndicatorContainer from '../containers/reply_indicator_container';
+import QuoteIndicatorContainer from '../containers/quote_indicator_container';
 import AutosuggestTextarea from '../../../components/autosuggest_textarea';
 import AutosuggestInput from '../../../components/autosuggest_input';
 import PollButtonContainer from '../containers/poll_button_container';
@@ -197,6 +198,7 @@ class ComposeForm extends ImmutablePureComponent {
         <WarningContainer />
 
         <ReplyIndicatorContainer />
+        <QuoteIndicatorContainer />
 
         <div className={`spoiler-input ${this.props.spoiler ? 'spoiler-input--visible' : ''}`} ref={this.setRef}>
           <AutosuggestInput
diff --git a/app/javascript/mastodon/features/compose/components/poll_form.js b/app/javascript/mastodon/features/compose/components/poll_form.js
index 211601d520602fb02a6d1c357138120ed991167e..01df31d3a84508e8d710b2cb0ee212d819288163 100644
--- a/app/javascript/mastodon/features/compose/components/poll_form.js
+++ b/app/javascript/mastodon/features/compose/components/poll_form.js
@@ -13,6 +13,8 @@ const messages = defineMessages({
   add_option: { id: 'compose_form.poll.add_option', defaultMessage: 'Add a choice' },
   remove_option: { id: 'compose_form.poll.remove_option', defaultMessage: 'Remove this choice' },
   poll_duration: { id: 'compose_form.poll.duration', defaultMessage: 'Poll duration' },
+  switchToMultiple: { id: 'compose_form.poll.switch_to_multiple', defaultMessage: 'Change poll to allow multiple choices' },
+  switchToSingle: { id: 'compose_form.poll.switch_to_single', defaultMessage: 'Change poll to allow for a single choice' },
   minutes: { id: 'intervals.full.minutes', defaultMessage: '{number, plural, one {# minute} other {# minutes}}' },
   hours: { id: 'intervals.full.hours', defaultMessage: '{number, plural, one {# hour} other {# hours}}' },
   days: { id: 'intervals.full.days', defaultMessage: '{number, plural, one {# day} other {# days}}' },
@@ -50,6 +52,12 @@ class Option extends React.PureComponent {
     e.stopPropagation();
   };
 
+  handleCheckboxKeypress = e => {
+    if (e.key === 'Enter' || e.key === ' ') {
+      this.handleToggleMultiple(e);
+    }
+  }
+
   onSuggestionsClearRequested = () => {
     this.props.onClearSuggestions();
   }
@@ -71,8 +79,11 @@ class Option extends React.PureComponent {
           <span
             className={classNames('poll__input', { checkbox: isPollMultiple })}
             onClick={this.handleToggleMultiple}
+            onKeyPress={this.handleCheckboxKeypress}
             role='button'
             tabIndex='0'
+            title={intl.formatMessage(isPollMultiple ? messages.switchToSingle : messages.switchToMultiple)}
+            aria-label={intl.formatMessage(isPollMultiple ? messages.switchToSingle : messages.switchToMultiple)}
           />
 
           <AutosuggestInput
@@ -142,9 +153,7 @@ class PollForm extends ImmutablePureComponent {
         </ul>
 
         <div className='poll__footer'>
-          {options.size < 4 && (
-            <button className='button button-secondary' onClick={this.handleAddOption}><Icon id='plus' /> <FormattedMessage {...messages.add_option} /></button>
-          )}
+          <button disabled={options.size >= 4} className='button button-secondary' onClick={this.handleAddOption}><Icon id='plus' /> <FormattedMessage {...messages.add_option} /></button>
 
           <select value={expiresIn} onChange={this.handleSelectDuration}>
             <option value={300}>{intl.formatMessage(messages.minutes, { number: 5 })}</option>
diff --git a/app/javascript/mastodon/features/compose/components/quote_indicator.js b/app/javascript/mastodon/features/compose/components/quote_indicator.js
new file mode 100644
index 0000000000000000000000000000000000000000..4a2f92ff1380448e8b4711d478c448e5cead5292
--- /dev/null
+++ b/app/javascript/mastodon/features/compose/components/quote_indicator.js
@@ -0,0 +1,75 @@
+import React from 'react';
+import ImmutablePropTypes from 'react-immutable-proptypes';
+import PropTypes from 'prop-types';
+import Avatar from '../../../components/avatar';
+import IconButton from '../../../components/icon_button';
+import DisplayName from '../../../components/display_name';
+import { defineMessages, injectIntl } from 'react-intl';
+import ImmutablePureComponent from 'react-immutable-pure-component';
+import { isRtl } from '../../../rtl';
+import AttachmentList from 'mastodon/components/attachment_list';
+
+const messages = defineMessages({
+  cancel: { id: 'quote_indicator.cancel', defaultMessage: 'Cancel' },
+});
+
+@injectIntl
+export default class QuoteIndicator extends ImmutablePureComponent {
+
+  static contextTypes = {
+    router: PropTypes.object,
+  };
+
+  static propTypes = {
+    status: ImmutablePropTypes.map,
+    onCancel: PropTypes.func.isRequired,
+    intl: PropTypes.object.isRequired,
+  };
+
+  handleClick = () => {
+    this.props.onCancel();
+  }
+
+  handleAccountClick = (e) => {
+    if (e.button === 0 && !(e.ctrlKey || e.metaKey)) {
+      e.preventDefault();
+      this.context.router.history.push(`/accounts/${this.props.status.getIn(['account', 'id'])}`);
+    }
+  }
+
+  render () {
+    const { status, intl } = this.props;
+
+    if (!status) {
+      return null;
+    }
+
+    const content = { __html: status.get('contentHtml') };
+    const style   = {
+      direction: isRtl(status.get('search_index')) ? 'rtl' : 'ltr',
+    };
+
+    return (
+      <div className='quote-indicator'>
+        <div className='quote-indicator__header'>
+          <div className='quote-indicator__cancel'><IconButton title={intl.formatMessage(messages.cancel)} icon='times' onClick={this.handleClick} /></div>
+
+          <a href={status.getIn(['account', 'url'])} onClick={this.handleAccountClick} className='quote-indicator__display-name'>
+            <div className='quote-indicator__display-avatar'><Avatar account={status.get('account')} size={24} /></div>
+            <DisplayName account={status.get('account')} />
+          </a>
+        </div>
+
+        <div className='quote-indicator__content' style={style} dangerouslySetInnerHTML={content} />
+
+        {status.get('media_attachments').size > 0 && (
+          <AttachmentList
+            compact
+            media={status.get('media_attachments')}
+          />
+        )}
+      </div>
+    );
+  }
+
+}
diff --git a/app/javascript/mastodon/features/compose/components/upload_button.js b/app/javascript/mastodon/features/compose/components/upload_button.js
index d550019f41841ba3039fab9bd16fbcd76d2f5487..08da1306d92f26b04db8d1aa01e89c2b608b2661 100644
--- a/app/javascript/mastodon/features/compose/components/upload_button.js
+++ b/app/javascript/mastodon/features/compose/components/upload_button.js
@@ -10,7 +10,7 @@ const messages = defineMessages({
   upload: { id: 'upload_button.label', defaultMessage: 'Add media ({formats})' },
 });
 
-const SUPPORTED_FORMATS = 'JPEG, PNG, GIF, WebM, MP4, MOV, OGG, WAV, MP3, FLAC';
+const SUPPORTED_FORMATS = 'JPEG, PNG, GIF, WEBP, HEIF, HEIC, WebM, MP4, MOV, OGG, WAV, MP3, FLAC';
 
 const makeMapStateToProps = () => {
   const mapStateToProps = state => ({
diff --git a/app/javascript/mastodon/features/compose/containers/quote_indicator_container.js b/app/javascript/mastodon/features/compose/containers/quote_indicator_container.js
new file mode 100644
index 0000000000000000000000000000000000000000..8a3ad4959a244a6d2525f26eba5e4558c35643d5
--- /dev/null
+++ b/app/javascript/mastodon/features/compose/containers/quote_indicator_container.js
@@ -0,0 +1,24 @@
+import { connect } from 'react-redux';
+import { cancelQuoteCompose } from '../../../actions/compose';
+import { makeGetStatus } from '../../../selectors';
+import QuoteIndicator from '../components/quote_indicator';
+
+const makeMapStateToProps = () => {
+  const getStatus = makeGetStatus();
+
+  const mapStateToProps = state => ({
+    status: getStatus(state, { id: state.getIn(['compose', 'quote_from']) }),
+  });
+
+  return mapStateToProps;
+};
+
+const mapDispatchToProps = dispatch => ({
+
+  onCancel () {
+    dispatch(cancelQuoteCompose());
+  },
+
+});
+
+export default connect(makeMapStateToProps, mapDispatchToProps)(QuoteIndicator);
diff --git a/app/javascript/mastodon/features/compose/containers/upload_button_container.js b/app/javascript/mastodon/features/compose/containers/upload_button_container.js
index 1471e628b05e360fcb08820ef40fd5dce40c3968..221b98e310938504e33023c4507571c4f76c6bdc 100644
--- a/app/javascript/mastodon/features/compose/containers/upload_button_container.js
+++ b/app/javascript/mastodon/features/compose/containers/upload_button_container.js
@@ -3,7 +3,7 @@ import UploadButton from '../components/upload_button';
 import { uploadCompose } from '../../../actions/compose';
 
 const mapStateToProps = state => ({
-  disabled: state.getIn(['compose', 'is_uploading']) || (state.getIn(['compose', 'media_attachments']).size > 3 || state.getIn(['compose', 'media_attachments']).some(m => ['video', 'audio'].includes(m.get('type')))),
+  disabled: state.getIn(['compose', 'is_uploading']) || (state.getIn(['compose', 'media_attachments']).size + state.getIn(['compose', 'pending_media_attachments']) > 3 || state.getIn(['compose', 'media_attachments']).some(m => ['video', 'audio'].includes(m.get('type')))),
   unavailable: state.getIn(['compose', 'poll']) !== null,
   resetFileKey: state.getIn(['compose', 'resetFileKey']),
 });
diff --git a/app/javascript/mastodon/features/compose/index.js b/app/javascript/mastodon/features/compose/index.js
index e2de8b0e6a20d1da4479c19a77dd201c434af682..cad3f9b14bfd495d5bb7cb53f6297c6c37a15ee1 100644
--- a/app/javascript/mastodon/features/compose/index.js
+++ b/app/javascript/mastodon/features/compose/index.js
@@ -24,6 +24,7 @@ const messages = defineMessages({
   notifications: { id: 'tabs_bar.notifications', defaultMessage: 'Notifications' },
   public: { id: 'navigation_bar.public_timeline', defaultMessage: 'Federated timeline' },
   community: { id: 'navigation_bar.community_timeline', defaultMessage: 'Local timeline' },
+  lists: { id: 'navigation_bar.lists', defaultMessage: 'Lists' },
   preferences: { id: 'navigation_bar.preferences', defaultMessage: 'Preferences' },
   logout: { id: 'navigation_bar.logout', defaultMessage: 'Logout' },
   compose: { id: 'navigation_bar.compose', defaultMessage: 'Compose new toot' },
@@ -104,12 +105,10 @@ class Compose extends React.PureComponent {
           {!columns.some(column => column.get('id') === 'NOTIFICATIONS') && (
             <Link to='/notifications' className='drawer__tab' title={intl.formatMessage(messages.notifications)} aria-label={intl.formatMessage(messages.notifications)}><Icon id='bell' fixedWidth /></Link>
           )}
-          {!columns.some(column => column.get('id') === 'COMMUNITY') && (
-            <Link to='/timelines/public/local' className='drawer__tab' title={intl.formatMessage(messages.community)} aria-label={intl.formatMessage(messages.community)}><Icon id='users' fixedWidth /></Link>
-          )}
           {!columns.some(column => column.get('id') === 'PUBLIC') && (
             <Link to='/timelines/public' className='drawer__tab' title={intl.formatMessage(messages.public)} aria-label={intl.formatMessage(messages.public)}><Icon id='globe' fixedWidth /></Link>
           )}
+          <Link to='/lists' className='drawer__tab' title={intl.formatMessage(messages.lists)} aria-label={intl.formatMessage(messages.lists)}><Icon id='list-ul' fixedWidth /></Link>
           <a href='/settings/preferences' className='drawer__tab' title={intl.formatMessage(messages.preferences)} aria-label={intl.formatMessage(messages.preferences)}><Icon id='cog' fixedWidth /></a>
           <a href='/auth/sign_out' className='drawer__tab' title={intl.formatMessage(messages.logout)} aria-label={intl.formatMessage(messages.logout)} onClick={this.handleLogoutClick}><Icon id='sign-out' fixedWidth /></a>
         </nav>
diff --git a/app/javascript/mastodon/features/direct_timeline/components/conversation.js b/app/javascript/mastodon/features/direct_timeline/components/conversation.js
index 2cbaa0791be0fc55704e9eeb3d9eee32ca17d09e..235cb7ad88166c26aa17e4160de1e83208dcdb06 100644
--- a/app/javascript/mastodon/features/direct_timeline/components/conversation.js
+++ b/app/javascript/mastodon/features/direct_timeline/components/conversation.js
@@ -12,6 +12,7 @@ import IconButton from 'mastodon/components/icon_button';
 import RelativeTimestamp from 'mastodon/components/relative_timestamp';
 import { HotKeys } from 'react-hotkeys';
 import { autoPlayGif } from 'mastodon/initial_state';
+import classNames from 'classnames';
 
 const messages = defineMessages({
   more: { id: 'status.more', defaultMessage: 'More' },
@@ -158,7 +159,7 @@ class Conversation extends ImmutablePureComponent {
 
     return (
       <HotKeys handlers={handlers}>
-        <div className='conversation focusable muted' tabIndex='0'>
+        <div className={classNames('conversation focusable muted', { 'conversation--unread': unread })} tabIndex='0'>
           <div className='conversation__avatar'>
             <AvatarComposite accounts={accounts} size={48} />
           </div>
@@ -166,7 +167,7 @@ class Conversation extends ImmutablePureComponent {
           <div className='conversation__content'>
             <div className='conversation__content__info'>
               <div className='conversation__content__relative-time'>
-                <RelativeTimestamp timestamp={lastStatus.get('created_at')} />
+                {unread && <span className='conversation__unread' />} <RelativeTimestamp timestamp={lastStatus.get('created_at')} />
               </div>
 
               <div className='conversation__content__names' ref={this.setNamesRef}>
diff --git a/app/javascript/mastodon/features/directory/components/account_card.js b/app/javascript/mastodon/features/directory/components/account_card.js
index 50ad744501d4de44e11c831329b13912fecbdefb..97a9e4305db81b33276ae28f163f37cc21fca8c8 100644
--- a/app/javascript/mastodon/features/directory/components/account_card.js
+++ b/app/javascript/mastodon/features/directory/components/account_card.js
@@ -10,15 +10,25 @@ import Permalink from 'mastodon/components/permalink';
 import RelativeTimestamp from 'mastodon/components/relative_timestamp';
 import IconButton from 'mastodon/components/icon_button';
 import { FormattedMessage, injectIntl, defineMessages } from 'react-intl';
-import { autoPlayGif, me, unfollowModal } from 'mastodon/initial_state';
+import { autoPlayGif, me, unfollowModal, unsubscribeModal } from 'mastodon/initial_state';
 import { shortNumberFormat } from 'mastodon/utils/numbers';
-import { followAccount, unfollowAccount, blockAccount, unblockAccount, unmuteAccount } from 'mastodon/actions/accounts';
+import {
+  followAccount,
+  unfollowAccount,
+  subscribeAccount,
+  unsubscribeAccount,
+  blockAccount,
+  unblockAccount,
+  unmuteAccount
+} from 'mastodon/actions/accounts';
 import { openModal } from 'mastodon/actions/modal';
 import { initMuteModal } from 'mastodon/actions/mutes';
 
 const messages = defineMessages({
   follow: { id: 'account.follow', defaultMessage: 'Follow' },
   unfollow: { id: 'account.unfollow', defaultMessage: 'Unfollow' },
+  unsubscribe: { id: 'account.unsubscribe', defaultMessage: 'Unsubscribe' },
+  subscribe: { id: 'account.subscribe', defaultMessage: 'Subscribe' },
   requested: { id: 'account.requested', defaultMessage: 'Awaiting approval' },
   unblock: { id: 'account.unblock', defaultMessage: 'Unblock @{name}' },
   unmute: { id: 'account.unmute', defaultMessage: 'Unmute @{name}' },
@@ -52,6 +62,22 @@ const mapDispatchToProps = (dispatch, { intl }) => ({
     }
   },
 
+  onSubscribe (account) {
+    if (account.getIn(['relationship', 'subscribing'])) {
+      if (unsubscribeModal) {
+        dispatch(openModal('CONFIRM', {
+          message: <FormattedMessage id='confirmations.unsubscribe.message' defaultMessage='Are you sure you want to unsubscribe {name}?' values={{ name: <strong>@{account.get('acct')}</strong> }} />,
+          confirm: intl.formatMessage(messages.unsubscribeConfirm),
+          onConfirm: () => dispatch(unsubscribeAccount(account.get('id'))),
+        }));
+      } else {
+        dispatch(unsubscribeAccount(account.get('id')));
+      }
+    } else {
+      dispatch(subscribeAccount(account.get('id')));
+    }
+  },
+
   onBlock (account) {
     if (account.getIn(['relationship', 'blocking'])) {
       dispatch(unblockAccount(account.get('id')));
@@ -78,6 +104,7 @@ class AccountCard extends ImmutablePureComponent {
     account: ImmutablePropTypes.map.isRequired,
     intl: PropTypes.object.isRequired,
     onFollow: PropTypes.func.isRequired,
+    onSubscribe: PropTypes.func.isRequired,
     onBlock: PropTypes.func.isRequired,
     onMute: PropTypes.func.isRequired,
   };
@@ -123,6 +150,10 @@ class AccountCard extends ImmutablePureComponent {
     this.props.onFollow(this.props.account);
   }
 
+  handleSubscribe = () => {
+    this.props.onSubscribe(this.props.account);
+  }
+
   handleBlock = () => {
     this.props.onBlock(this.props.account);
   }
@@ -141,10 +172,11 @@ class AccountCard extends ImmutablePureComponent {
     let buttons;
 
     if (account.get('id') !== me && account.get('relationship', null) !== null) {
-      const following = account.getIn(['relationship', 'following']);
-      const requested = account.getIn(['relationship', 'requested']);
-      const blocking  = account.getIn(['relationship', 'blocking']);
-      const muting    = account.getIn(['relationship', 'muting']);
+      const following   = account.getIn(['relationship', 'following']);
+      const subscribing = account.getIn(['relationship', 'subscribing']);
+      const requested   = account.getIn(['relationship', 'requested']);
+      const blocking    = account.getIn(['relationship', 'blocking']);
+      const muting      = account.getIn(['relationship', 'muting']);
 
       if (requested) {
         buttons = <IconButton disabled icon='hourglass' title={intl.formatMessage(messages.requested)} />;
@@ -152,8 +184,15 @@ class AccountCard extends ImmutablePureComponent {
         buttons = <IconButton active icon='unlock' title={intl.formatMessage(messages.unblock, { name: account.get('username') })} onClick={this.handleBlock} />;
       } else if (muting) {
         buttons = <IconButton active icon='volume-up' title={intl.formatMessage(messages.unmute, { name: account.get('username') })} onClick={this.handleMute} />;
-      } else if (!account.get('moved') || following) {
-        buttons = <IconButton icon={following ? 'user-times' : 'user-plus'} title={intl.formatMessage(following ? messages.unfollow : messages.follow)} onClick={this.handleFollow} active={following} />;
+      } else {
+        let following_buttons, subscribing_buttons;
+        if(!account.get('moved') || subscribing) {
+          subscribing_buttons = <IconButton icon='rss-square' title={intl.formatMessage(subscribing ? messages.unsubscribe : messages.subscribe)} onClick={this.handleSubscribe} active={subscribing} />;
+        }
+        if(!account.get('moved') || following) {
+          following_buttons = <IconButton icon={following ? 'user-times' : 'user-plus'} title={intl.formatMessage(following ? messages.unfollow : messages.follow)} onClick={this.handleFollow} active={following} />;
+        }
+        buttons = <span>{subscribing_buttons}{following_buttons}</span>
       }
     }
 
diff --git a/app/javascript/mastodon/features/domain_timeline/containers/column_settings_container.js b/app/javascript/mastodon/features/domain_timeline/containers/column_settings_container.js
new file mode 100644
index 0000000000000000000000000000000000000000..a83d090306b6eda5201278725835965085b9bd12
--- /dev/null
+++ b/app/javascript/mastodon/features/domain_timeline/containers/column_settings_container.js
@@ -0,0 +1,28 @@
+import { connect } from 'react-redux';
+import ColumnSettings from '../../community_timeline/components/column_settings';
+import { changeSetting } from '../../../actions/settings';
+import { changeColumnParams } from '../../../actions/columns';
+
+const mapStateToProps = (state, { columnId }) => {
+  const uuid = columnId;
+  const columns = state.getIn(['settings', 'columns']);
+  const index = columns.findIndex(c => c.get('uuid') === uuid);
+
+  return {
+    settings: (uuid && index >= 0) ? columns.get(index).get('params') : state.getIn(['settings', 'domain']),
+  };
+};
+
+const mapDispatchToProps = (dispatch, { columnId }) => {
+  return {
+    onChange (key, checked) {
+      if (columnId) {
+        dispatch(changeColumnParams(columnId, key, checked));
+      } else {
+        dispatch(changeSetting(['domain', ...key], checked));
+      }
+    },
+  };
+};
+
+export default connect(mapStateToProps, mapDispatchToProps)(ColumnSettings);
diff --git a/app/javascript/mastodon/features/domain_timeline/index.js b/app/javascript/mastodon/features/domain_timeline/index.js
new file mode 100644
index 0000000000000000000000000000000000000000..b5eb5d6ba6110ba2f4fc27b6d389e9b0dbc5bf0e
--- /dev/null
+++ b/app/javascript/mastodon/features/domain_timeline/index.js
@@ -0,0 +1,138 @@
+import React from 'react';
+import { connect } from 'react-redux';
+import { injectIntl, FormattedMessage } from 'react-intl';
+import PropTypes from 'prop-types';
+import StatusListContainer from '../ui/containers/status_list_container';
+import Column from '../../components/column';
+import ColumnHeader from '../../components/column_header';
+import { expandDomainTimeline } from '../../actions/timelines';
+import { addColumn, removeColumn, moveColumn } from '../../actions/columns';
+import ColumnSettingsContainer from './containers/column_settings_container';
+import { connectDomainStream } from '../../actions/streaming';
+
+const mapStateToProps = (state, props) => {
+  const uuid = props.columnId;
+  const columns = state.getIn(['settings', 'columns']);
+  const index = columns.findIndex(c => c.get('uuid') === uuid);
+  const onlyMedia = (props.columnId && index >= 0) ? columns.get(index).getIn(['params', 'other', 'onlyMedia']) : state.getIn(['settings', 'domain', 'other', 'onlyMedia']);
+  const timelineState = state.getIn(['timelines', `domain:${domain}${onlyMedia ? ':media' : ''}`]);
+  const domain = props.params.domain;
+
+  return {
+    hasUnread: !!timelineState && timelineState.get('unread') > 0,
+    onlyMedia,
+    domain: domain,
+  };
+};
+
+export default @connect(mapStateToProps)
+@injectIntl
+class DomainTimeline extends React.PureComponent {
+
+  static contextTypes = {
+    router: PropTypes.object,
+  };
+
+  static defaultProps = {
+    onlyMedia: false,
+  };
+
+  static propTypes = {
+    params: PropTypes.object.isRequired,
+    dispatch: PropTypes.func.isRequired,
+    shouldUpdateScroll: PropTypes.func,
+    columnId: PropTypes.string,
+    intl: PropTypes.object.isRequired,
+    hasUnread: PropTypes.bool,
+    multiColumn: PropTypes.bool,
+    onlyMedia: PropTypes.bool,
+    domain: PropTypes.string,
+  };
+
+  handlePin = () => {
+    const { columnId, dispatch, onlyMedia, domain } = this.props;
+
+    if (columnId) {
+      dispatch(removeColumn(columnId));
+    } else {
+      dispatch(addColumn('DOMAIN', { domain, other: { onlyMedia } }));
+    }
+  }
+
+  handleMove = (dir) => {
+    const { columnId, dispatch } = this.props;
+    dispatch(moveColumn(columnId, dir));
+  }
+
+  handleHeaderClick = () => {
+    this.column.scrollTop();
+  }
+
+  componentDidMount () {
+    const { dispatch, onlyMedia, domain } = this.props;
+
+    dispatch(expandDomainTimeline(domain, { onlyMedia }));
+    this.disconnect = dispatch(connectDomainStream(domain, { onlyMedia }));
+  }
+
+  componentDidUpdate (prevProps) {
+    if (prevProps.onlyMedia !== this.props.onlyMedia || prevProps.domain !== this.props.domain) {
+      const { dispatch, onlyMedia, domain } = this.props;
+
+      this.disconnect();
+      dispatch(expandDomainTimeline(domain, { onlyMedia }));
+      this.disconnect = dispatch(connectDomainStream(domain, { onlyMedia }));
+    }
+  }
+
+  componentWillUnmount () {
+    if (this.disconnect) {
+      this.disconnect();
+      this.disconnect = null;
+    }
+  }
+
+  setRef = c => {
+    this.column = c;
+  }
+
+  handleLoadMore = maxId => {
+    const { dispatch, onlyMedia, domain } = this.props;
+
+    dispatch(expandDomainTimeline(domain, { maxId, onlyMedia }));
+  }
+
+  render () {
+    const { shouldUpdateScroll, hasUnread, columnId, multiColumn, onlyMedia, domain } = this.props;
+    const pinned = !!columnId;
+
+    return (
+      <Column bindToDocument={!multiColumn} ref={this.setRef} label={domain}>
+        <ColumnHeader
+          icon='users'
+          active={hasUnread}
+          title={domain}
+          onPin={this.handlePin}
+          onMove={this.handleMove}
+          onClick={this.handleHeaderClick}
+          pinned={pinned}
+          multiColumn={multiColumn}
+          showBackButton
+        >
+          <ColumnSettingsContainer columnId={columnId} />
+        </ColumnHeader>
+
+        <StatusListContainer
+          trackScroll={!pinned}
+          scrollKey={`domain_timeline-${columnId}`}
+          timelineId={`domain:${domain}${onlyMedia ? ':media' : ''}`}
+          onLoadMore={this.handleLoadMore}
+          emptyMessage={<FormattedMessage id='empty_column.domain' defaultMessage='There is nothing here! Manually follow users from other servers to fill it up' />}
+          shouldUpdateScroll={shouldUpdateScroll}
+          bindToDocument={!multiColumn}
+        />
+      </Column>
+    );
+  }
+
+}
diff --git a/app/javascript/mastodon/features/getting_started/index.js b/app/javascript/mastodon/features/getting_started/index.js
index 67ec7665b670c1fc36d64ce5999d75918d6f8245..029450d6d9a8a7de175ece572d7d337ca0158871 100644
--- a/app/javascript/mastodon/features/getting_started/index.js
+++ b/app/javascript/mastodon/features/getting_started/index.js
@@ -22,6 +22,7 @@ const messages = defineMessages({
   settings_subheading: { id: 'column_subheading.settings', defaultMessage: 'Settings' },
   community_timeline: { id: 'navigation_bar.community_timeline', defaultMessage: 'Local timeline' },
   direct: { id: 'navigation_bar.direct', defaultMessage: 'Direct messages' },
+  bookmarks: { id: 'navigation_bar.bookmarks', defaultMessage: 'Bookmarks' },
   preferences: { id: 'navigation_bar.preferences', defaultMessage: 'Preferences' },
   follow_requests: { id: 'navigation_bar.follow_requests', defaultMessage: 'Follow requests' },
   favourites: { id: 'navigation_bar.favourites', defaultMessage: 'Favourites' },
@@ -35,6 +36,9 @@ const messages = defineMessages({
   security: { id: 'navigation_bar.security', defaultMessage: 'Security' },
   menu: { id: 'getting_started.heading', defaultMessage: 'Getting started' },
   profile_directory: { id: 'getting_started.directory', defaultMessage: 'Profile directory' },
+  information: { id: 'navigation_bar.information', defaultMessage: 'Information' },
+  information_acct: { id: 'navigation_bar.information_acct', defaultMessage: 'Fedibird info' },
+  hashtag_fedibird: { id: 'navigation_bar.hashtag_fedibird', defaultMessage: 'fedibird' },
 });
 
 const mapStateToProps = state => ({
@@ -97,11 +101,10 @@ class GettingStarted extends ImmutablePureComponent {
     if (multiColumn) {
       navItems.push(
         <ColumnSubheading key={i++} text={intl.formatMessage(messages.discover)} />,
-        <ColumnLink key={i++} icon='users' text={intl.formatMessage(messages.community_timeline)} to='/timelines/public/local' />,
         <ColumnLink key={i++} icon='globe' text={intl.formatMessage(messages.public_timeline)} to='/timelines/public' />,
       );
 
-      height += 34 + 48*2;
+      height += 34 + 48;
 
       if (profile_directory) {
         navItems.push(
@@ -111,6 +114,14 @@ class GettingStarted extends ImmutablePureComponent {
         height += 48;
       }
 
+      navItems.push(
+        <ColumnSubheading key={i++} text={intl.formatMessage(messages.information)} />,
+        <ColumnLink key={i++} icon='info-circle' text={intl.formatMessage(messages.information_acct)} to='/accounts/2' />,
+        <ColumnLink key={i++} icon='hashtag' text={intl.formatMessage(messages.hashtag_fedibird)} to='/timelines/tag/fedibird' />,
+      );
+
+      height += 34 + 48*2;
+
       navItems.push(
         <ColumnSubheading key={i++} text={intl.formatMessage(messages.personal)} />
       );
@@ -122,15 +133,23 @@ class GettingStarted extends ImmutablePureComponent {
       );
 
       height += 48;
+
+      navItems.push(
+        <ColumnLink key={i++} icon='info-circle' text={intl.formatMessage(messages.information_acct)} to='/accounts/2' />,
+        <ColumnLink key={i++} icon='hashtag' text={intl.formatMessage(messages.hashtag_fedibird)} to='/timelines/tag/fedibird' />,
+      );
+
+      height += 48*2;
     }
 
     navItems.push(
       <ColumnLink key={i++} icon='envelope' text={intl.formatMessage(messages.direct)} to='/timelines/direct' />,
+      <ColumnLink key={i++} icon='bookmark' text={intl.formatMessage(messages.bookmarks)} to='/bookmarks' />,
       <ColumnLink key={i++} icon='star' text={intl.formatMessage(messages.favourites)} to='/favourites' />,
       <ColumnLink key={i++} icon='list-ul' text={intl.formatMessage(messages.lists)} to='/lists' />
     );
 
-    height += 48*3;
+    height += 48*4;
 
     if (myAccount.get('locked') || unreadFollowRequests > 0) {
       navItems.push(<ColumnLink key={i++} icon='user-plus' text={intl.formatMessage(messages.follow_requests)} badge={badgeDisplay(unreadFollowRequests, 40)} to='/follow_requests' />);
diff --git a/app/javascript/mastodon/features/hashtag_timeline/components/column_settings.js b/app/javascript/mastodon/features/hashtag_timeline/components/column_settings.js
index cdc138c8bf3a440586c8f65b4793343978b089b0..9c39b158a49d35c76a3df74df824e6da60e533ce 100644
--- a/app/javascript/mastodon/features/hashtag_timeline/components/column_settings.js
+++ b/app/javascript/mastodon/features/hashtag_timeline/components/column_settings.js
@@ -3,7 +3,7 @@ import PropTypes from 'prop-types';
 import ImmutablePropTypes from 'react-immutable-proptypes';
 import { defineMessages, injectIntl, FormattedMessage } from 'react-intl';
 import Toggle from 'react-toggle';
-import AsyncSelect from 'react-select/lib/Async';
+import AsyncSelect from 'react-select/async';
 
 const messages = defineMessages({
   placeholder: { id: 'hashtag.column_settings.select.placeholder', defaultMessage: 'Enter hashtags…' },
diff --git a/app/javascript/mastodon/features/introduction/index.js b/app/javascript/mastodon/features/introduction/index.js
index 754477bb992dfc56520a36d01dd4f08b19b4c8f3..a961d3b976710eb1741e3a06ee8240c55db43580 100644
--- a/app/javascript/mastodon/features/introduction/index.js
+++ b/app/javascript/mastodon/features/introduction/index.js
@@ -44,11 +44,6 @@ const FrameFederation = ({ onNext }) => (
         <p><FormattedMessage id='introduction.federation.home.text' defaultMessage='Posts from people you follow will appear in your home feed. You can follow anyone on any server!' /></p>
       </div>
 
-      <div>
-        <h3><FormattedMessage id='introduction.federation.local.headline' defaultMessage='Local' /></h3>
-        <p><FormattedMessage id='introduction.federation.local.text' defaultMessage='Public posts from people on the same server as you will appear in the local timeline.' /></p>
-      </div>
-
       <div>
         <h3><FormattedMessage id='introduction.federation.federated.headline' defaultMessage='Federated' /></h3>
         <p><FormattedMessage id='introduction.federation.federated.text' defaultMessage='Public posts from other servers of the fediverse will appear in the federated timeline.' /></p>
diff --git a/app/javascript/mastodon/features/keyboard_shortcuts/index.js b/app/javascript/mastodon/features/keyboard_shortcuts/index.js
index 90dc87cbb0b673eb8a13b332ff726bd9ad06f516..64889bcd4ece2d43cc2d1af3d1c14c4b26d7bd3b 100644
--- a/app/javascript/mastodon/features/keyboard_shortcuts/index.js
+++ b/app/javascript/mastodon/features/keyboard_shortcuts/index.js
@@ -56,6 +56,10 @@ class KeyboardShortcuts extends ImmutablePureComponent {
                 <td><kbd>enter</kbd>, <kbd>o</kbd></td>
                 <td><FormattedMessage id='keyboard_shortcuts.enter' defaultMessage='to open status' /></td>
               </tr>
+              <tr>
+                <td><kbd>e</kbd></td>
+                <td><FormattedMessage id='keyboard_shortcuts.open_media' defaultMessage='to open media' /></td>
+              </tr>
               <tr>
                 <td><kbd>x</kbd></td>
                 <td><FormattedMessage id='keyboard_shortcuts.toggle_hidden' defaultMessage='to show/hide text behind CW' /></td>
@@ -104,10 +108,6 @@ class KeyboardShortcuts extends ImmutablePureComponent {
                 <td><kbd>g</kbd>+<kbd>n</kbd></td>
                 <td><FormattedMessage id='keyboard_shortcuts.notifications' defaultMessage='to open notifications column' /></td>
               </tr>
-              <tr>
-                <td><kbd>g</kbd>+<kbd>l</kbd></td>
-                <td><FormattedMessage id='keyboard_shortcuts.local' defaultMessage='to open local timeline' /></td>
-              </tr>
               <tr>
                 <td><kbd>g</kbd>+<kbd>t</kbd></td>
                 <td><FormattedMessage id='keyboard_shortcuts.federated' defaultMessage='to open federated timeline' /></td>
diff --git a/app/javascript/mastodon/features/notifications/components/column_settings.js b/app/javascript/mastodon/features/notifications/components/column_settings.js
index 60a86312a1e0d9bfa02ec304151b924e5394af90..8bd03fbdab26ef2a05be45d9238106e2824ab849 100644
--- a/app/javascript/mastodon/features/notifications/components/column_settings.js
+++ b/app/javascript/mastodon/features/notifications/components/column_settings.js
@@ -57,6 +57,17 @@ export default class ColumnSettings extends React.PureComponent {
           </div>
         </div>
 
+        <div role='group' aria-labelledby='notifications-follow-request'>
+          <span id='notifications-follow-request' className='column-settings__section'><FormattedMessage id='notifications.column_settings.follow_request' defaultMessage='New follow requests:' /></span>
+
+          <div className='column-settings__row'>
+            <SettingToggle prefix='notifications_desktop' settings={settings} settingPath={['alerts', 'follow_request']} onChange={onChange} label={alertStr} />
+            {showPushSettings && <SettingToggle prefix='notifications_push' settings={pushSettings} settingPath={['alerts', 'follow_request']} onChange={this.onPushChange} label={pushStr} />}
+            <SettingToggle prefix='notifications' settings={settings} settingPath={['shows', 'follow_request']} onChange={onChange} label={showStr} />
+            <SettingToggle prefix='notifications' settings={settings} settingPath={['sounds', 'follow_request']} onChange={onChange} label={soundStr} />
+          </div>
+        </div>
+
         <div role='group' aria-labelledby='notifications-favourite'>
           <span id='notifications-favourite' className='column-settings__section'><FormattedMessage id='notifications.column_settings.favourite' defaultMessage='Favourites:' /></span>
 
diff --git a/app/javascript/mastodon/features/notifications/components/follow_request.js b/app/javascript/mastodon/features/notifications/components/follow_request.js
new file mode 100644
index 0000000000000000000000000000000000000000..a80cfb2fa1fe26e6df21a6699862151c4838eb3c
--- /dev/null
+++ b/app/javascript/mastodon/features/notifications/components/follow_request.js
@@ -0,0 +1,59 @@
+import React, { Fragment } from 'react';
+import ImmutablePropTypes from 'react-immutable-proptypes';
+import PropTypes from 'prop-types';
+import Avatar from 'mastodon/components/avatar';
+import DisplayName from 'mastodon/components/display_name';
+import Permalink from 'mastodon/components/permalink';
+import IconButton from 'mastodon/components/icon_button';
+import { defineMessages, injectIntl } from 'react-intl';
+import ImmutablePureComponent from 'react-immutable-pure-component';
+
+const messages = defineMessages({
+  authorize: { id: 'follow_request.authorize', defaultMessage: 'Authorize' },
+  reject: { id: 'follow_request.reject', defaultMessage: 'Reject' },
+});
+
+export default @injectIntl
+class FollowRequest extends ImmutablePureComponent {
+
+  static propTypes = {
+    account: ImmutablePropTypes.map.isRequired,
+    onAuthorize: PropTypes.func.isRequired,
+    onReject: PropTypes.func.isRequired,
+    intl: PropTypes.object.isRequired,
+  };
+
+  render () {
+    const { intl, hidden, account, onAuthorize, onReject } = this.props;
+
+    if (!account) {
+      return <div />;
+    }
+
+    if (hidden) {
+      return (
+        <Fragment>
+          {account.get('display_name')}
+          {account.get('username')}
+        </Fragment>
+      );
+    }
+
+    return (
+      <div className='account'>
+        <div className='account__wrapper'>
+          <Permalink key={account.get('id')} className='account__display-name' title={account.get('acct')} href={account.get('url')} to={`/accounts/${account.get('id')}`}>
+            <div className='account__avatar-wrapper'><Avatar account={account} size={36} /></div>
+            <DisplayName account={account} />
+          </Permalink>
+
+          <div className='account__relationship'>
+            <IconButton title={intl.formatMessage(messages.authorize)} icon='check' onClick={onAuthorize} />
+            <IconButton title={intl.formatMessage(messages.reject)} icon='times' onClick={onReject} />
+          </div>
+        </div>
+      </div>
+    );
+  }
+
+}
diff --git a/app/javascript/mastodon/features/notifications/components/notification.js b/app/javascript/mastodon/features/notifications/components/notification.js
index 41e9324e6f6065e49ae7db6ba1a6274321f7199d..74065e5e2686e421f4349934f4c93a4fa8c5e0b3 100644
--- a/app/javascript/mastodon/features/notifications/components/notification.js
+++ b/app/javascript/mastodon/features/notifications/components/notification.js
@@ -1,13 +1,23 @@
 import React from 'react';
-import PropTypes from 'prop-types';
 import ImmutablePropTypes from 'react-immutable-proptypes';
-import StatusContainer from '../../../containers/status_container';
-import AccountContainer from '../../../containers/account_container';
-import { injectIntl, FormattedMessage } from 'react-intl';
-import Permalink from '../../../components/permalink';
-import ImmutablePureComponent from 'react-immutable-pure-component';
+import { injectIntl, FormattedMessage, defineMessages } from 'react-intl';
 import { HotKeys } from 'react-hotkeys';
+import PropTypes from 'prop-types';
+import ImmutablePureComponent from 'react-immutable-pure-component';
+import { me } from 'mastodon/initial_state';
+import StatusContainer from 'mastodon/containers/status_container';
+import AccountContainer from 'mastodon/containers/account_container';
+import FollowRequestContainer from '../containers/follow_request_container';
 import Icon from 'mastodon/components/icon';
+import Permalink from 'mastodon/components/permalink';
+
+const messages = defineMessages({
+  favourite: { id: 'notification.favourite', defaultMessage: '{name} favourited your status' },
+  follow: { id: 'notification.follow', defaultMessage: '{name} followed you' },
+  ownPoll: { id: 'notification.own_poll', defaultMessage: 'Your poll has ended' },
+  poll: { id: 'notification.poll', defaultMessage: 'A poll you have voted in has ended' },
+  reblog: { id: 'notification.reblog', defaultMessage: '{name} boosted your status' },
+});
 
 const notificationForScreenReader = (intl, message, timestamp) => {
   const output = [message];
@@ -107,7 +117,7 @@ class Notification extends ImmutablePureComponent {
 
     return (
       <HotKeys handlers={this.getHandlers()}>
-        <div className='notification notification-follow focusable' tabIndex='0' aria-label={notificationForScreenReader(intl, intl.formatMessage({ id: 'notification.follow', defaultMessage: '{name} followed you' }, { name: account.get('acct') }), notification.get('created_at'))}>
+        <div className='notification notification-follow focusable' tabIndex='0' aria-label={notificationForScreenReader(intl, intl.formatMessage(messages.follow, { name: account.get('acct') }), notification.get('created_at'))}>
           <div className='notification__message'>
             <div className='notification__favourite-icon-wrapper'>
               <Icon id='user-plus' fixedWidth />
@@ -118,7 +128,29 @@ class Notification extends ImmutablePureComponent {
             </span>
           </div>
 
-          <AccountContainer id={account.get('id')} withNote={false} hidden={this.props.hidden} />
+          <AccountContainer id={account.get('id')} hidden={this.props.hidden} />
+        </div>
+      </HotKeys>
+    );
+  }
+
+  renderFollowRequest (notification, account, link) {
+    const { intl } = this.props;
+
+    return (
+      <HotKeys handlers={this.getHandlers()}>
+        <div className='notification notification-follow-request focusable' tabIndex='0' aria-label={notificationForScreenReader(intl, intl.formatMessage({ id: 'notification.follow_request', defaultMessage: '{name} has requested to follow you' }, { name: account.get('acct') }), notification.get('created_at'))}>
+          <div className='notification__message'>
+            <div className='notification__favourite-icon-wrapper'>
+              <Icon id='user' fixedWidth />
+            </div>
+
+            <span title={notification.get('created_at')}>
+              <FormattedMessage id='notification.follow_request' defaultMessage='{name} has requested to follow you' values={{ name: link }} />
+            </span>
+          </div>
+
+          <FollowRequestContainer id={account.get('id')} withNote={false} hidden={this.props.hidden} />
         </div>
       </HotKeys>
     );
@@ -146,7 +178,7 @@ class Notification extends ImmutablePureComponent {
 
     return (
       <HotKeys handlers={this.getHandlers()}>
-        <div className='notification notification-favourite focusable' tabIndex='0' aria-label={notificationForScreenReader(intl, intl.formatMessage({ id: 'notification.favourite', defaultMessage: '{name} favourited your status' }, { name: notification.getIn(['account', 'acct']) }), notification.get('created_at'))}>
+        <div className='notification notification-favourite focusable' tabIndex='0' aria-label={notificationForScreenReader(intl, intl.formatMessage(messages.favourite, { name: notification.getIn(['account', 'acct']) }), notification.get('created_at'))}>
           <div className='notification__message'>
             <div className='notification__favourite-icon-wrapper'>
               <Icon id='star' className='star-icon' fixedWidth />
@@ -178,7 +210,7 @@ class Notification extends ImmutablePureComponent {
 
     return (
       <HotKeys handlers={this.getHandlers()}>
-        <div className='notification notification-reblog focusable' tabIndex='0' aria-label={notificationForScreenReader(intl, intl.formatMessage({ id: 'notification.reblog', defaultMessage: '{name} boosted your status' }, { name: notification.getIn(['account', 'acct']) }), notification.get('created_at'))}>
+        <div className='notification notification-reblog focusable' tabIndex='0' aria-label={notificationForScreenReader(intl, intl.formatMessage(messages.reblog, { name: notification.getIn(['account', 'acct']) }), notification.get('created_at'))}>
           <div className='notification__message'>
             <div className='notification__favourite-icon-wrapper'>
               <Icon id='retweet' fixedWidth />
@@ -205,25 +237,31 @@ class Notification extends ImmutablePureComponent {
     );
   }
 
-  renderPoll (notification) {
+  renderPoll (notification, account) {
     const { intl } = this.props;
+    const ownPoll  = me === account.get('id');
+    const message  = ownPoll ? intl.formatMessage(messages.ownPoll) : intl.formatMessage(messages.poll);
 
     return (
       <HotKeys handlers={this.getHandlers()}>
-        <div className='notification notification-poll focusable' tabIndex='0' aria-label={notificationForScreenReader(intl, intl.formatMessage({ id: 'notification.poll', defaultMessage: 'A poll you have voted in has ended' }), notification.get('created_at'))}>
+        <div className='notification notification-poll focusable' tabIndex='0' aria-label={notificationForScreenReader(intl, message, notification.get('created_at'))}>
           <div className='notification__message'>
             <div className='notification__favourite-icon-wrapper'>
               <Icon id='tasks' fixedWidth />
             </div>
 
             <span title={notification.get('created_at')}>
-              <FormattedMessage id='notification.poll' defaultMessage='A poll you have voted in has ended' />
+              {ownPoll ? (
+                <FormattedMessage id='notification.own_poll' defaultMessage='Your poll has ended' />
+              ) : (
+                <FormattedMessage id='notification.poll' defaultMessage='A poll you have voted in has ended' />
+              )}
             </span>
           </div>
 
           <StatusContainer
             id={notification.get('status')}
-            account={notification.get('account')}
+            account={account}
             muted
             withDismiss
             hidden={this.props.hidden}
@@ -246,6 +284,8 @@ class Notification extends ImmutablePureComponent {
     switch(notification.get('type')) {
     case 'follow':
       return this.renderFollow(notification, account, link);
+    case 'follow_request':
+      return this.renderFollowRequest(notification, account, link);
     case 'mention':
       return this.renderMention(notification);
     case 'favourite':
@@ -253,7 +293,7 @@ class Notification extends ImmutablePureComponent {
     case 'reblog':
       return this.renderReblog(notification, link);
     case 'poll':
-      return this.renderPoll(notification);
+      return this.renderPoll(notification, account);
     }
 
     return null;
diff --git a/app/javascript/mastodon/features/notifications/containers/follow_request_container.js b/app/javascript/mastodon/features/notifications/containers/follow_request_container.js
new file mode 100644
index 0000000000000000000000000000000000000000..f9f6c577e49b7421d27e21856f910cae1894970c
--- /dev/null
+++ b/app/javascript/mastodon/features/notifications/containers/follow_request_container.js
@@ -0,0 +1,26 @@
+import { connect } from 'react-redux';
+import { makeGetAccount } from 'mastodon/selectors';
+import FollowRequest from '../components/follow_request';
+import { authorizeFollowRequest, rejectFollowRequest } from 'mastodon/actions/accounts';
+
+const makeMapStateToProps = () => {
+  const getAccount = makeGetAccount();
+
+  const mapStateToProps = (state, props) => ({
+    account: getAccount(state, props.id),
+  });
+
+  return mapStateToProps;
+};
+
+const mapDispatchToProps = (dispatch, { id }) => ({
+  onAuthorize () {
+    dispatch(authorizeFollowRequest(id));
+  },
+
+  onReject () {
+    dispatch(rejectFollowRequest(id));
+  },
+});
+
+export default connect(makeMapStateToProps, mapDispatchToProps)(FollowRequest);
diff --git a/app/javascript/mastodon/features/public_timeline/index.js b/app/javascript/mastodon/features/public_timeline/index.js
index e7825e2366493bea810c6fb375bfca110b8135d9..7aabd7f6e9e0bc451a95d2c875ddf630ccf9d0f9 100644
--- a/app/javascript/mastodon/features/public_timeline/index.js
+++ b/app/javascript/mastodon/features/public_timeline/index.js
@@ -14,14 +14,16 @@ const messages = defineMessages({
   title: { id: 'column.public', defaultMessage: 'Federated timeline' },
 });
 
-const mapStateToProps = (state, { onlyMedia, columnId }) => {
+const mapStateToProps = (state, { columnId }) => {
   const uuid = columnId;
   const columns = state.getIn(['settings', 'columns']);
   const index = columns.findIndex(c => c.get('uuid') === uuid);
+  const onlyMedia = (columnId && index >= 0) ? columns.get(index).getIn(['params', 'other', 'onlyMedia']) : state.getIn(['settings', 'public', 'other', 'onlyMedia']);
+  const timelineState = state.getIn(['timelines', `public${onlyMedia ? ':media' : ''}`]);
 
   return {
-    hasUnread: state.getIn(['timelines', `public${onlyMedia ? ':media' : ''}`, 'unread']) > 0,
-    onlyMedia: (columnId && index >= 0) ? columns.get(index).getIn(['params', 'other', 'onlyMedia']) : state.getIn(['settings', 'public', 'other', 'onlyMedia']),
+    hasUnread: !!timelineState && timelineState.get('unread') > 0,
+    onlyMedia,
   };
 };
 
diff --git a/app/javascript/mastodon/features/status/components/action_bar.js b/app/javascript/mastodon/features/status/components/action_bar.js
index 3e511b7a64fa109af768ace680ab776347c1048c..bcd8e343b44afef275d3eada5f350be517242605 100644
--- a/app/javascript/mastodon/features/status/components/action_bar.js
+++ b/app/javascript/mastodon/features/status/components/action_bar.js
@@ -1,5 +1,6 @@
 import React from 'react';
 import PropTypes from 'prop-types';
+import { connect } from 'react-redux';
 import IconButton from '../../../components/icon_button';
 import ImmutablePropTypes from 'react-immutable-proptypes';
 import DropdownMenuContainer from '../../../containers/dropdown_menu_container';
@@ -16,7 +17,9 @@ const messages = defineMessages({
   reblog_private: { id: 'status.reblog_private', defaultMessage: 'Boost to original audience' },
   cancel_reblog_private: { id: 'status.cancel_reblog_private', defaultMessage: 'Unboost' },
   cannot_reblog: { id: 'status.cannot_reblog', defaultMessage: 'This post cannot be boosted' },
+  quote: { id: 'status.quote', defaultMessage: 'Quote' },
   favourite: { id: 'status.favourite', defaultMessage: 'Favourite' },
+  bookmark: { id: 'status.bookmark', defaultMessage: 'Bookmark' },
   mute: { id: 'status.mute', defaultMessage: 'Mute @{name}' },
   muteConversation: { id: 'status.mute_conversation', defaultMessage: 'Mute conversation' },
   unmuteConversation: { id: 'status.unmute_conversation', defaultMessage: 'Unmute conversation' },
@@ -29,9 +32,19 @@ const messages = defineMessages({
   admin_account: { id: 'status.admin_account', defaultMessage: 'Open moderation interface for @{name}' },
   admin_status: { id: 'status.admin_status', defaultMessage: 'Open this status in the moderation interface' },
   copy: { id: 'status.copy', defaultMessage: 'Copy link to status' },
+  blockDomain: { id: 'account.block_domain', defaultMessage: 'Hide everything from {domain}' },
+  unblockDomain: { id: 'account.unblock_domain', defaultMessage: 'Unhide {domain}' },
+  openDomainTimeline: { id: 'account.open_domain_timeline', defaultMessage: 'Open {domain} timeline' },
+  unmute: { id: 'account.unmute', defaultMessage: 'Unmute @{name}' },
+  unblock: { id: 'account.unblock', defaultMessage: 'Unblock @{name}' },
 });
 
-export default @injectIntl
+const mapStateToProps = (state, { status }) => ({
+  relationship: state.getIn(['relationships', status.getIn(['account', 'id'])]),
+});
+
+export default @connect(mapStateToProps)
+@injectIntl
 class ActionBar extends React.PureComponent {
 
   static contextTypes = {
@@ -40,15 +53,22 @@ class ActionBar extends React.PureComponent {
 
   static propTypes = {
     status: ImmutablePropTypes.map.isRequired,
+    relationship: ImmutablePropTypes.map,
     onReply: PropTypes.func.isRequired,
     onReblog: PropTypes.func.isRequired,
+    onQuote: PropTypes.func.isRequired,
     onFavourite: PropTypes.func.isRequired,
+    onBookmark: PropTypes.func.isRequired,
     onDelete: PropTypes.func.isRequired,
     onDirect: PropTypes.func.isRequired,
     onMention: PropTypes.func.isRequired,
     onMute: PropTypes.func,
-    onMuteConversation: PropTypes.func,
+    onUnmute: PropTypes.func,
     onBlock: PropTypes.func,
+    onUnblock: PropTypes.func,
+    onBlockDomain: PropTypes.func,
+    onUnblockDomain: PropTypes.func,
+    onMuteConversation: PropTypes.func,
     onReport: PropTypes.func,
     onPin: PropTypes.func,
     onEmbed: PropTypes.func,
@@ -63,10 +83,18 @@ class ActionBar extends React.PureComponent {
     this.props.onReblog(this.props.status, e);
   }
 
+  handleQuoteClick = () => {
+    this.props.onQuote(this.props.status, this.context.router.history);
+  }
+
   handleFavouriteClick = () => {
     this.props.onFavourite(this.props.status);
   }
 
+  handleBookmarkClick = (e) => {
+    this.props.onBookmark(this.props.status, e);
+  }
+
   handleDeleteClick = () => {
     this.props.onDelete(this.props.status, this.context.router.history);
   }
@@ -84,15 +112,50 @@ class ActionBar extends React.PureComponent {
   }
 
   handleMuteClick = () => {
-    this.props.onMute(this.props.status.get('account'));
-  }
+    const { status, relationship, onMute, onUnmute } = this.props;
+    const account = status.get('account');
 
-  handleConversationMuteClick = () => {
-    this.props.onMuteConversation(this.props.status);
+    if (relationship && relationship.get('muting')) {
+      onUnmute(account);
+    } else {
+      onMute(account);
+    }
   }
 
   handleBlockClick = () => {
-    this.props.onBlock(this.props.status);
+    const { status, relationship, onBlock, onUnblock } = this.props;
+    const account = status.get('account');
+
+    if (relationship && relationship.get('blocking')) {
+      onUnblock(account);
+    } else {
+      onBlock(status);
+    }
+  }
+
+  handleBlockDomain = () => {
+    const { status, onBlockDomain } = this.props;
+    const account = status.get('account');
+
+    onBlockDomain(account.get('acct').split('@')[1]);
+  }
+
+  handleUnblockDomain = () => {
+    const { status, onUnblockDomain } = this.props;
+    const account = status.get('account');
+
+    onUnblockDomain(account.get('acct').split('@')[1]);
+  }
+
+  handleOpenDomainTimeline = () => {
+    const { status } = this.props;
+    const account = status.get('account');
+
+    this.context.router.history.push(`/timelines/public/remote/${account.get('acct').split('@')[1]}`);
+  }
+
+  handleConversationMuteClick = () => {
+    this.props.onMuteConversation(this.props.status);
   }
 
   handleReport = () => {
@@ -134,10 +197,11 @@ class ActionBar extends React.PureComponent {
   }
 
   render () {
-    const { status, intl } = this.props;
+    const { status, relationship, intl } = this.props;
 
     const publicStatus = ['public', 'unlisted'].includes(status.get('visibility'));
     const mutingConversation = status.get('muted');
+    const account            = status.get('account');
 
     let menu = [];
 
@@ -165,9 +229,34 @@ class ActionBar extends React.PureComponent {
       menu.push({ text: intl.formatMessage(messages.mention, { name: status.getIn(['account', 'username']) }), action: this.handleMentionClick });
       menu.push({ text: intl.formatMessage(messages.direct, { name: status.getIn(['account', 'username']) }), action: this.handleDirectClick });
       menu.push(null);
-      menu.push({ text: intl.formatMessage(messages.mute, { name: status.getIn(['account', 'username']) }), action: this.handleMuteClick });
-      menu.push({ text: intl.formatMessage(messages.block, { name: status.getIn(['account', 'username']) }), action: this.handleBlockClick });
+
+      if (relationship && relationship.get('muting')) {
+        menu.push({ text: intl.formatMessage(messages.unmute, { name: account.get('username') }), action: this.handleMuteClick });
+      } else {
+        menu.push({ text: intl.formatMessage(messages.mute, { name: account.get('username') }), action: this.handleMuteClick });
+      }
+
+      if (relationship && relationship.get('blocking')) {
+        menu.push({ text: intl.formatMessage(messages.unblock, { name: account.get('username') }), action: this.handleBlockClick });
+      } else {
+        menu.push({ text: intl.formatMessage(messages.block, { name: account.get('username') }), action: this.handleBlockClick });
+      }
+
       menu.push({ text: intl.formatMessage(messages.report, { name: status.getIn(['account', 'username']) }), action: this.handleReport });
+
+      if (account.get('acct') !== account.get('username')) {
+        const domain = account.get('acct').split('@')[1];
+
+        menu.push(null);
+
+        if (relationship && relationship.get('domain_blocking')) {
+          menu.push({ text: intl.formatMessage(messages.unblockDomain, { domain }), action: this.handleUnblockDomain });
+        } else {
+          menu.push({ text: intl.formatMessage(messages.blockDomain, { domain }), action: this.handleBlockDomain });
+        }
+        menu.push({ text: intl.formatMessage(messages.openDomainTimeline, { domain }), action: this.handleOpenDomainTimeline });
+      }
+
       if (isStaff) {
         menu.push(null);
         menu.push({ text: intl.formatMessage(messages.admin_account, { name: status.getIn(['account', 'username']) }), href: `/admin/accounts/${status.getIn(['account', 'id'])}` });
@@ -197,10 +286,12 @@ class ActionBar extends React.PureComponent {
         <div className='detailed-status__button'><IconButton title={intl.formatMessage(messages.reply)} icon={status.get('in_reply_to_account_id') === status.getIn(['account', 'id']) ? 'reply' : replyIcon} onClick={this.handleReplyClick} /></div>
         <div className='detailed-status__button'><IconButton disabled={reblog_disabled} active={status.get('reblogged')} title={reblog_disabled ? intl.formatMessage(messages.cannot_reblog) : intl.formatMessage(messages.reblog)} icon={reblogIcon} onClick={this.handleReblogClick} /></div>
         <div className='detailed-status__button'><IconButton className='star-icon' animate active={status.get('favourited')} title={intl.formatMessage(messages.favourite)} icon='star' onClick={this.handleFavouriteClick} /></div>
+        <div className='detailed-status__button'><IconButton disabled={reblog_disabled} title={reblog_disabled ? intl.formatMessage(messages.cannot_reblog) : intl.formatMessage(messages.quote)} icon='quote-right' onClick={this.handleQuoteClick} /></div>
         {shareButton}
+        <div className='detailed-status__button'><IconButton className='bookmark-icon' active={status.get('bookmarked')} title={intl.formatMessage(messages.bookmark)} icon='bookmark' onClick={this.handleBookmarkClick} /></div>
 
         <div className='detailed-status__action-bar-dropdown'>
-          <DropdownMenuContainer size={18} icon='ellipsis-h' items={menu} direction='left' title='More' />
+          <DropdownMenuContainer size={18} icon='ellipsis-h' status={status} items={menu} direction='left' title='More' />
         </div>
       </div>
     );
diff --git a/app/javascript/mastodon/features/status/components/card.js b/app/javascript/mastodon/features/status/components/card.js
index 0eff544119f66b62a6022242fc6161d356b06fd9..6dcb875a719f861703e1772c2b11cb91915a6985 100644
--- a/app/javascript/mastodon/features/status/components/card.js
+++ b/app/javascript/mastodon/features/status/components/card.js
@@ -56,6 +56,10 @@ const addAutoPlay = html => {
 
 export default class Card extends React.PureComponent {
 
+  static contextTypes = {
+    router: PropTypes.object,
+  };
+
   static propTypes = {
     card: ImmutablePropTypes.map,
     maxDescription: PropTypes.number,
@@ -148,7 +152,7 @@ export default class Card extends React.PureComponent {
     const horizontal  = (!compact && card.get('width') > card.get('height') && (card.get('width') + 100 >= width)) || card.get('type') !== 'link' || embedded;
     const interactive = card.get('type') !== 'link';
     const className   = classnames('status-card', { horizontal, compact, interactive });
-    const title       = interactive ? <a className='status-card__title' href={card.get('url')} title={card.get('title')} rel='noopener' target='_blank'><strong>{card.get('title')}</strong></a> : <strong className='status-card__title' title={card.get('title')}>{card.get('title')}</strong>;
+    const title       = interactive ? <a className='status-card__title' href={card.get('url')} title={card.get('title')} rel='noopener noreferrer' target='_blank'><strong>{card.get('title')}</strong></a> : <strong className='status-card__title' title={card.get('title')}>{card.get('title')}</strong>;
     const ratio       = card.get('width') / card.get('height');
     const height      = (compact && !embedded) ? (width / (16 / 9)) : (width / ratio);
 
@@ -180,7 +184,7 @@ export default class Card extends React.PureComponent {
             <div className='status-card__actions'>
               <div>
                 <button onClick={this.handleEmbedClick}><Icon id={iconVariant} /></button>
-                {horizontal && <a href={card.get('url')} target='_blank' rel='noopener'><Icon id='external-link' /></a>}
+                {horizontal && <a href={card.get('url')} target='_blank' rel='noopener noreferrer'><Icon id='external-link' /></a>}
               </div>
             </div>
           </div>
@@ -208,7 +212,7 @@ export default class Card extends React.PureComponent {
     }
 
     return (
-      <a href={card.get('url')} className={className} target='_blank' rel='noopener' ref={this.setRef}>
+      <a href={card.get('url')} className={className} target='_blank' rel='noopener noreferrer' ref={this.setRef}>
         {embed}
         {description}
       </a>
diff --git a/app/javascript/mastodon/features/status/components/detailed_status.js b/app/javascript/mastodon/features/status/components/detailed_status.js
index a0838740a7dbe8feda2e5ea7100179707ad6d340..136e7ae1db9faeadbfaa6a1d57ec9a7d71d68d25 100644
--- a/app/javascript/mastodon/features/status/components/detailed_status.js
+++ b/app/javascript/mastodon/features/status/components/detailed_status.js
@@ -37,6 +37,7 @@ export default class DetailedStatus extends ImmutablePureComponent {
     compact: PropTypes.bool,
     showMedia: PropTypes.bool,
     onToggleMediaVisibility: PropTypes.func,
+    onQuoteToggleHidden: PropTypes.func.isRequired,
   };
 
   state = {
@@ -93,6 +94,19 @@ export default class DetailedStatus extends ImmutablePureComponent {
     window.open(href, 'mastodon-intent', 'width=445,height=600,resizable=no,menubar=no,status=no,scrollbars=yes');
   }
 
+  handleExpandedQuoteToggle = () => {
+    this.props.onQuoteToggleHidden(this.props.status);
+  }
+
+  handleQuoteClick = () => {
+    if (!this.context.router) {
+      return;
+    }
+
+    const { status } = this.props;
+    this.context.router.history.push(`/statuses/${status.getIn(['quote', 'id'])}`);
+  }
+
   render () {
     const status = (this.props.status && this.props.status.get('reblog')) ? this.props.status.get('reblog') : this.props.status;
     const intl = this.props.intl;
@@ -114,6 +128,36 @@ export default class DetailedStatus extends ImmutablePureComponent {
       outerStyle.height = `${this.state.height}px`;
     }
 
+    let quote = null;
+    if (status.get('quote', null) !== null) {
+      let quote_status = status.get('quote');
+
+      let quote_media = null;
+      if (quote_status.get('media_attachments').size > 0) {
+        quote_media = (
+          <MediaGallery
+            standalone
+            sensitive={quote_status.get('sensitive')}
+            media={quote_status.get('media_attachments')}
+            height={300}
+            onOpenMedia={this.props.onOpenMedia}
+            quote
+          />
+        );
+      }
+
+      quote = (
+        <div className='quote-status'>
+          <div className='status__info'>
+            <div className='status__avatar'><Avatar account={quote_status.get('account')} size={18} /></div>
+            <DisplayName account={quote_status.get('account')} />
+          </div>
+          <StatusContent status={quote_status} onClick={this.handleQuoteClick} expanded={!status.get('quote_hidden')} onExpandedToggle={this.handleExpandedQuoteToggle} />
+          {quote_media}
+        </div>
+      );
+    }
+
     if (status.get('media_attachments').size > 0) {
       if (status.getIn(['media_attachments', 0, 'type']) === 'audio') {
         const attachment = status.getIn(['media_attachments', 0]);
@@ -163,7 +207,7 @@ export default class DetailedStatus extends ImmutablePureComponent {
     }
 
     if (status.get('application')) {
-      applicationLink = <span> · <a className='detailed-status__application' href={status.getIn(['application', 'website'])} target='_blank' rel='noopener'>{status.getIn(['application', 'name'])}</a></span>;
+      applicationLink = <span> · <a className='detailed-status__application' href={status.getIn(['application', 'website'])} target='_blank' rel='noopener noreferrer'>{status.getIn(['application', 'name'])}</a></span>;
     }
 
     if (status.get('visibility') === 'direct') {
@@ -220,7 +264,7 @@ export default class DetailedStatus extends ImmutablePureComponent {
 
     return (
       <div style={outerStyle}>
-        <div ref={this.setRef} className={classNames('detailed-status', { compact })}>
+        <div ref={this.setRef} className={classNames('detailed-status', `detailed-status-${status.get('visibility')}`, { compact })}>
           <a href={status.getIn(['account', 'url'])} onClick={this.handleAccountClick} className='detailed-status__display-name'>
             <div className='detailed-status__display-avatar'><Avatar account={status.get('account')} size={48} /></div>
             <DisplayName account={status.get('account')} localDomain={this.props.domain} />
@@ -229,9 +273,10 @@ export default class DetailedStatus extends ImmutablePureComponent {
           <StatusContent status={status} expanded={!status.get('hidden')} onExpandedToggle={this.handleExpandedToggle} />
 
           {media}
+          {quote}
 
           <div className='detailed-status__meta'>
-            <a className='detailed-status__datetime' href={status.get('url')} target='_blank' rel='noopener'>
+            <a className='detailed-status__datetime' href={status.get('url')} target='_blank' rel='noopener noreferrer'>
               <FormattedDate value={new Date(status.get('created_at'))} hour12={false} year='numeric' month='short' day='2-digit' hour='2-digit' minute='2-digit' />
             </a>{applicationLink} · {reblogLink} · {favouriteLink}{localOnly}
           </div>
diff --git a/app/javascript/mastodon/features/status/index.js b/app/javascript/mastodon/features/status/index.js
index 029057d4076e1279d17aa91cc09b7e2c9f1c75b4..0ff7350b0f7116d7ff7af25b0840cadb4b309971 100644
--- a/app/javascript/mastodon/features/status/index.js
+++ b/app/javascript/mastodon/features/status/index.js
@@ -13,6 +13,8 @@ import Column from '../ui/components/column';
 import {
   favourite,
   unfavourite,
+  bookmark,
+  unbookmark,
   reblog,
   unreblog,
   pin,
@@ -20,6 +22,7 @@ import {
 } from '../../actions/interactions';
 import {
   replyCompose,
+  quoteCompose,
   mentionCompose,
   directCompose,
 } from '../../actions/compose';
@@ -29,7 +32,17 @@ import {
   deleteStatus,
   hideStatus,
   revealStatus,
+  hideQuote,
+  revealQuote,
 } from '../../actions/statuses';
+import {
+  unblockAccount,
+  unmuteAccount,
+} from '../../actions/accounts';
+import {
+  blockDomain,
+  unblockDomain,
+} from '../../actions/domain_blocks';
 import { initMuteModal } from '../../actions/mutes';
 import { initBlockModal } from '../../actions/blocks';
 import { initReport } from '../../actions/reports';
@@ -39,7 +52,7 @@ import ColumnBackButton from '../../components/column_back_button';
 import ColumnHeader from '../../components/column_header';
 import StatusContainer from '../../containers/status_container';
 import { openModal } from '../../actions/modal';
-import { defineMessages, injectIntl } from 'react-intl';
+import { defineMessages, injectIntl, FormattedMessage } from 'react-intl';
 import ImmutablePureComponent from 'react-immutable-pure-component';
 import { HotKeys } from 'react-hotkeys';
 import { boostModal, deleteModal } from '../../initial_state';
@@ -57,6 +70,7 @@ const messages = defineMessages({
   detailedStatus: { id: 'status.detailed_status', defaultMessage: 'Detailed conversation view' },
   replyConfirm: { id: 'confirmations.reply.confirm', defaultMessage: 'Reply' },
   replyMessage: { id: 'confirmations.reply.message', defaultMessage: 'Replying now will overwrite the message you are currently composing. Are you sure you want to proceed?' },
+  blockDomainConfirm: { id: 'confirmations.domain_block.confirm', defaultMessage: 'Hide entire domain' },
 });
 
 const makeMapStateToProps = () => {
@@ -232,6 +246,18 @@ class Status extends ImmutablePureComponent {
     }
   }
 
+  handleBookmarkClick = (status) => {
+    if (status.get('bookmarked')) {
+      this.props.dispatch(unbookmark(status));
+    } else {
+      this.props.dispatch(bookmark(status));
+    }
+  }
+
+  handleQuoteClick = (status) => {
+    this.props.dispatch(quoteCompose(status, this.context.router.history));
+  }
+
   handleDeleteClick = (status, history, withRedraft = false) => {
     const { dispatch, intl } = this.props;
 
@@ -262,6 +288,22 @@ class Status extends ImmutablePureComponent {
     this.props.dispatch(openModal('VIDEO', { media, time }));
   }
 
+  handleHotkeyOpenMedia = e => {
+    const status = this._properStatus();
+
+    e.preventDefault();
+
+    if (status.get('media_attachments').size > 0) {
+      if (status.getIn(['media_attachments', 0, 'type']) === 'audio') {
+        // TODO: toggle play/paused?
+      } else if (status.getIn(['media_attachments', 0, 'type']) === 'video') {
+        this.handleOpenVideo(status.getIn(['media_attachments', 0]), 0);
+      } else {
+        this.handleOpenMedia(status.get('media_attachments'), 0);
+      }
+    }
+  }
+
   handleMuteClick = (account) => {
     this.props.dispatch(initMuteModal(account));
   }
@@ -282,6 +324,14 @@ class Status extends ImmutablePureComponent {
     }
   }
 
+  handleQuoteToggleHidden = (status) => {
+    if (status.get('quote_hidden')) {
+      this.props.dispatch(revealQuote(status.get('id')));
+    } else {
+      this.props.dispatch(hideQuote(status.get('id')));
+    }
+  }
+
   handleToggleAll = () => {
     const { status, ancestorsIds, descendantsIds } = this.props;
     const statusIds = [status.get('id')].concat(ancestorsIds.toJS(), descendantsIds.toJS());
@@ -307,6 +357,27 @@ class Status extends ImmutablePureComponent {
     this.props.dispatch(openModal('EMBED', { url: status.get('url') }));
   }
 
+  handleUnmuteClick = account => {
+    this.props.dispatch(unmuteAccount(account.get('id')));
+  }
+
+  handleUnblockClick = account => {
+    this.props.dispatch(unblockAccount(account.get('id')));
+  }
+
+  handleBlockDomainClick = domain => {
+    this.props.dispatch(openModal('CONFIRM', {
+      message: <FormattedMessage id='confirmations.domain_block.message' defaultMessage='Are you really, really sure you want to block the entire {domain}? In most cases a few targeted blocks or mutes are sufficient and preferable. You will not see content from that domain in any public timelines or your notifications. Your followers from that domain will be removed.' values={{ domain: <strong>{domain}</strong> }} />,
+      confirm: this.props.intl.formatMessage(messages.blockDomainConfirm),
+      onConfirm: () => this.props.dispatch(blockDomain(domain)),
+    }));
+  }
+
+  handleUnblockDomainClick = domain => {
+    this.props.dispatch(unblockDomain(domain));
+  }
+
+
   handleHotkeyMoveUp = () => {
     this.handleMoveUp(this.props.status.get('id'));
   }
@@ -466,6 +537,7 @@ class Status extends ImmutablePureComponent {
       openProfile: this.handleHotkeyOpenProfile,
       toggleHidden: this.handleHotkeyToggleHidden,
       toggleSensitive: this.handleHotkeyToggleSensitive,
+      openMedia: this.handleHotkeyOpenMedia,
     };
 
     return (
@@ -485,6 +557,7 @@ class Status extends ImmutablePureComponent {
             <HotKeys handlers={handlers}>
               <div className={classNames('focusable', 'detailed-status__wrapper')} tabIndex='0' aria-label={textForScreenReader(intl, status, false)}>
                 <DetailedStatus
+                  key={`details-${status.get('id')}`}
                   status={status}
                   onOpenVideo={this.handleOpenVideo}
                   onOpenMedia={this.handleOpenMedia}
@@ -492,19 +565,27 @@ class Status extends ImmutablePureComponent {
                   domain={domain}
                   showMedia={this.state.showMedia}
                   onToggleMediaVisibility={this.handleToggleMediaVisibility}
+                  onQuoteToggleHidden={this.handleQuoteToggleHidden}
                 />
 
                 <ActionBar
+                  key={`action-bar-${status.get('id')}`}
                   status={status}
                   onReply={this.handleReplyClick}
                   onFavourite={this.handleFavouriteClick}
                   onReblog={this.handleReblogClick}
+                  onBookmark={this.handleBookmarkClick}
+                  onQuote={this.handleQuoteClick}
                   onDelete={this.handleDeleteClick}
                   onDirect={this.handleDirectClick}
                   onMention={this.handleMentionClick}
                   onMute={this.handleMuteClick}
+                  onUnmute={this.handleUnmuteClick}
                   onMuteConversation={this.handleConversationMuteClick}
                   onBlock={this.handleBlockClick}
+                  onUnblock={this.handleUnblockClick}
+                  onBlockDomain={this.handleBlockDomainClick}
+                  onUnblockDomain={this.handleUnblockDomainClick}
                   onReport={this.handleReport}
                   onPin={this.handlePin}
                   onEmbed={this.handleEmbed}
diff --git a/app/javascript/mastodon/features/subscribing/index.js b/app/javascript/mastodon/features/subscribing/index.js
new file mode 100644
index 0000000000000000000000000000000000000000..7c63ef30773a45b8aacc50ef76afc0ed0fc69fab
--- /dev/null
+++ b/app/javascript/mastodon/features/subscribing/index.js
@@ -0,0 +1,103 @@
+import React from 'react';
+import { connect } from 'react-redux';
+import ImmutablePureComponent from 'react-immutable-pure-component';
+import PropTypes from 'prop-types';
+import ImmutablePropTypes from 'react-immutable-proptypes';
+import { debounce } from 'lodash';
+import LoadingIndicator from '../../components/loading_indicator';
+import {
+  fetchAccount,
+  fetchSubscribing,
+  expandSubscribing,
+} from '../../actions/accounts';
+import { FormattedMessage } from 'react-intl';
+import AccountContainer from '../../containers/account_container';
+import Column from '../ui/components/column';
+import HeaderContainer from '../account_timeline/containers/header_container';
+import ColumnBackButton from '../../components/column_back_button';
+import ScrollableList from '../../components/scrollable_list';
+import MissingIndicator from 'mastodon/components/missing_indicator';
+
+const mapStateToProps = (state, props) => ({
+  isAccount: !!state.getIn(['accounts', props.params.accountId]),
+  accountIds: state.getIn(['user_lists', 'subscribing', props.params.accountId, 'items']),
+  hasMore: !!state.getIn(['user_lists', 'subscribing', props.params.accountId, 'next']),
+  blockedBy: state.getIn(['relationships', props.params.accountId, 'blocked_by'], false),
+});
+
+export default @connect(mapStateToProps)
+class Subscribing extends ImmutablePureComponent {
+
+  static propTypes = {
+    params: PropTypes.object.isRequired,
+    dispatch: PropTypes.func.isRequired,
+    shouldUpdateScroll: PropTypes.func,
+    accountIds: ImmutablePropTypes.list,
+    hasMore: PropTypes.bool,
+    blockedBy: PropTypes.bool,
+    isAccount: PropTypes.bool,
+    multiColumn: PropTypes.bool,
+  };
+
+  componentWillMount () {
+    if (!this.props.accountIds) {
+      this.props.dispatch(fetchAccount(this.props.params.accountId));
+      this.props.dispatch(fetchSubscribing(this.props.params.accountId));
+    }
+  }
+
+  componentWillReceiveProps (nextProps) {
+    if (nextProps.params.accountId !== this.props.params.accountId && nextProps.params.accountId) {
+      this.props.dispatch(fetchAccount(nextProps.params.accountId));
+      this.props.dispatch(fetchSubscribing(nextProps.params.accountId));
+    }
+  }
+
+  handleLoadMore = debounce(() => {
+    this.props.dispatch(expandSubscribing(this.props.params.accountId));
+  }, 300, { leading: true });
+
+  render () {
+    const { shouldUpdateScroll, accountIds, hasMore, blockedBy, isAccount, multiColumn } = this.props;
+
+    if (!isAccount) {
+      return (
+        <Column>
+          <MissingIndicator />
+        </Column>
+      );
+    }
+
+    if (!accountIds) {
+      return (
+        <Column>
+          <LoadingIndicator />
+        </Column>
+      );
+    }
+
+    const emptyMessage = blockedBy ? <FormattedMessage id='empty_column.account_unavailable' defaultMessage='Profile unavailable' /> : <FormattedMessage id='account.subscribes.empty' defaultMessage="This user doesn't subscribe anyone yet." />;
+
+    return (
+      <Column>
+        <ColumnBackButton multiColumn={multiColumn} />
+
+        <ScrollableList
+          scrollKey='subscribing'
+          hasMore={hasMore}
+          onLoadMore={this.handleLoadMore}
+          shouldUpdateScroll={shouldUpdateScroll}
+          prepend={<HeaderContainer accountId={this.props.params.accountId} hideTabs />}
+          alwaysPrepend
+          emptyMessage={emptyMessage}
+          bindToDocument={!multiColumn}
+        >
+          {blockedBy ? [] : accountIds.map(id =>
+            <AccountContainer key={id} id={id} withNote={false} />
+          )}
+        </ScrollableList>
+      </Column>
+    );
+  }
+
+}
diff --git a/app/javascript/mastodon/features/ui/components/actions_modal.js b/app/javascript/mastodon/features/ui/components/actions_modal.js
index 00280f7a685352e27e0c250615755e39826ee615..875b2b75d7e08754c0d53de7a288041fcc0eabc5 100644
--- a/app/javascript/mastodon/features/ui/components/actions_modal.js
+++ b/app/javascript/mastodon/features/ui/components/actions_modal.js
@@ -26,7 +26,7 @@ export default class ActionsModal extends ImmutablePureComponent {
 
     return (
       <li key={`${text}-${i}`}>
-        <a href={href} target='_blank' rel='noopener' onClick={this.props.onClick} data-index={i} className={classNames({ active })}>
+        <a href={href} target='_blank' rel='noopener noreferrer' onClick={this.props.onClick} data-index={i} className={classNames({ active })}>
           {icon && <IconButton title={text} icon={icon} role='presentation' tabIndex='-1' inverted />}
           <div>
             <div className={classNames({ 'actions-modal__item-label': !!meta })}>{text}</div>
@@ -42,7 +42,7 @@ export default class ActionsModal extends ImmutablePureComponent {
       <div className='status light'>
         <div className='boost-modal__status-header'>
           <div className='boost-modal__status-time'>
-            <a href={this.props.status.get('url')} className='status__relative-time' target='_blank' rel='noopener'>
+            <a href={this.props.status.get('url')} className='status__relative-time' target='_blank' rel='noopener noreferrer'>
               <RelativeTimestamp timestamp={this.props.status.get('created_at')} />
             </a>
           </div>
diff --git a/app/javascript/mastodon/features/ui/components/boost_modal.js b/app/javascript/mastodon/features/ui/components/boost_modal.js
index 70f4a1282e2a55239615147388a91177a9df8e64..0e79005f04714a31c9502321659a6d83a451eb16 100644
--- a/app/javascript/mastodon/features/ui/components/boost_modal.js
+++ b/app/javascript/mastodon/features/ui/components/boost_modal.js
@@ -61,7 +61,7 @@ class BoostModal extends ImmutablePureComponent {
           <div className='status light'>
             <div className='boost-modal__status-header'>
               <div className='boost-modal__status-time'>
-                <a href={status.get('url')} className='status__relative-time' target='_blank' rel='noopener'><RelativeTimestamp timestamp={status.get('created_at')} /></a>
+                <a href={status.get('url')} className='status__relative-time' target='_blank' rel='noopener noreferrer'><RelativeTimestamp timestamp={status.get('created_at')} /></a>
               </div>
 
               <a onClick={this.handleAccountClick} href={status.getIn(['account', 'url'])} className='status__display-name'>
diff --git a/app/javascript/mastodon/features/ui/components/columns_area.js b/app/javascript/mastodon/features/ui/components/columns_area.js
index 8a4e89b3de40c6c734515dffd0173f7eebddbc0c..bcbd8cd858374d06fab5fbc3b84996fd27d38d58 100644
--- a/app/javascript/mastodon/features/ui/components/columns_area.js
+++ b/app/javascript/mastodon/features/ui/components/columns_area.js
@@ -18,9 +18,11 @@ import {
   HomeTimeline,
   CommunityTimeline,
   PublicTimeline,
+  DomainTimeline,
   HashtagTimeline,
   DirectTimeline,
   FavouritedStatuses,
+  BookmarkedStatuses,
   ListTimeline,
   Directory,
 } from '../../ui/util/async-components';
@@ -37,9 +39,11 @@ const componentMap = {
   'NOTIFICATIONS': Notifications,
   'PUBLIC': PublicTimeline,
   'COMMUNITY': CommunityTimeline,
+  'DOMAIN': DomainTimeline,
   'HASHTAG': HashtagTimeline,
   'DIRECT': DirectTimeline,
   'FAVOURITES': FavouritedStatuses,
+  'BOOKMARKS': BookmarkedStatuses,
   'LIST': ListTimeline,
   'DIRECTORY': Directory,
 };
@@ -182,7 +186,7 @@ class ColumnsArea extends ImmutablePureComponent {
       const floatingActionButton = shouldHideFAB(this.context.router.history.location.pathname) ? null : <Link key='floating-action-button' to='/statuses/new' className='floating-action-button' aria-label={intl.formatMessage(messages.publish)}><Icon id='pencil' /></Link>;
 
       const content = columnIndex !== -1 ? (
-        <ReactSwipeableViews key='content' index={columnIndex} onChangeIndex={this.handleSwipe} onTransitionEnd={this.handleAnimationEnd} animateTransitions={shouldAnimate} springConfig={{ duration: '400ms', delay: '0s', easeFunction: 'ease' }} style={{ height: '100%' }}>
+        <ReactSwipeableViews key='content' hysteresis={0.2} threshold={15} index={columnIndex} onChangeIndex={this.handleSwipe} onTransitionEnd={this.handleAnimationEnd} animateTransitions={shouldAnimate} springConfig={{ duration: '400ms', delay: '0s', easeFunction: 'ease' }} style={{ height: '100%' }}>
           {links.map(this.renderView)}
         </ReactSwipeableViews>
       ) : (
@@ -227,6 +231,11 @@ class ColumnsArea extends ImmutablePureComponent {
         })}
 
         {React.Children.map(children, child => React.cloneElement(child, { multiColumn: true }))}
+        <div className='columns-area__panels__pane columns-area__panels__pane--start columns-area__panels__pane--navigational'>
+          <div className='columns-area__panels__pane__inner'>
+            <NavigationPanel />
+          </div>
+        </div>
       </div>
     );
   }
diff --git a/app/javascript/mastodon/features/ui/components/favourite_tag_panel.js b/app/javascript/mastodon/features/ui/components/favourite_tag_panel.js
new file mode 100644
index 0000000000000000000000000000000000000000..01193da56956b229e7bfd3cc3efeea74b1c64a6c
--- /dev/null
+++ b/app/javascript/mastodon/features/ui/components/favourite_tag_panel.js
@@ -0,0 +1,55 @@
+import React from 'react';
+import PropTypes from 'prop-types';
+import ImmutablePropTypes from 'react-immutable-proptypes';
+import ImmutablePureComponent from 'react-immutable-pure-component';
+import { fetchFavouriteTags } from 'mastodon/actions/favourite_tags';
+import { connect } from 'react-redux';
+import { createSelector } from 'reselect';
+import { NavLink, withRouter } from 'react-router-dom';
+import Icon from 'mastodon/components/icon';
+  
+const getOrderedTags = createSelector([state => state.get('favourite_tags')], favourite_tags => {
+  if (!favourite_tags) {
+    return favourite_tags;
+  }
+
+  return favourite_tags.toList().filter(item => !!item).sort((a, b) => a.get('updated_at').localeCompare(b.get('updated_at'))).take(10);
+});
+
+const mapStateToProps = state => ({
+  favourite_tags: getOrderedTags(state),
+});
+
+export default @withRouter
+@connect(mapStateToProps)
+class FavouriteTagPanel extends ImmutablePureComponent {
+
+  static propTypes = {
+    dispatch: PropTypes.func.isRequired,
+    favourite_tags: ImmutablePropTypes.list,
+  };
+
+  componentDidMount () {
+    const { dispatch } = this.props;
+    dispatch(fetchFavouriteTags());
+  }
+
+  render () {
+    const { favourite_tags } = this.props;
+
+    if (!favourite_tags || favourite_tags.isEmpty()) {
+      return null;
+    }
+
+    return (
+      <div>
+        <hr />
+
+        {favourite_tags.map(favourite_tag => (
+          <NavLink key={favourite_tag.get('id')} className='column-link column-link--transparent' strict to={`/timelines/tag/${favourite_tag.get('name')}`}><Icon className='column-link__icon' id='hashtag' fixedWidth />{favourite_tag.get('name')}</NavLink>
+        ))}
+      </div>
+    );
+  }
+
+}
diff --git a/app/javascript/mastodon/features/ui/components/focal_point_modal.js b/app/javascript/mastodon/features/ui/components/focal_point_modal.js
index 3694ab9046a9123d2e9f0aee0e6d8153a4d7e33a..7d1509f7113522152dadf71e91e1028ecd5faff3 100644
--- a/app/javascript/mastodon/features/ui/components/focal_point_modal.js
+++ b/app/javascript/mastodon/features/ui/components/focal_point_modal.js
@@ -184,6 +184,15 @@ class FocalPointModal extends ImmutablePureComponent {
     this.setState({ description: e.target.value, dirty: true });
   }
 
+  handleKeyDown = (e) => {
+    if (e.keyCode === 13 && (e.ctrlKey || e.metaKey)) {
+      e.preventDefault();
+      e.stopPropagation();
+      this.setState({ description: e.target.value, dirty: true });
+      this.handleSubmit();
+    }
+  }
+
   handleSubmit = () => {
     this.props.onSave(this.state.description, this.state.focusX, this.state.focusY);
     this.props.onClose();
@@ -205,7 +214,7 @@ class FocalPointModal extends ImmutablePureComponent {
         langPath: `${assetHost}/ocr/lang-data`,
       });
 
-      let media_url = media.get('file');
+      let media_url = media.get('url');
 
       if (window.URL && URL.createObjectURL) {
         try {
@@ -235,6 +244,16 @@ class FocalPointModal extends ImmutablePureComponent {
     const previewWidth  = 200;
     const previewHeight = previewWidth / previewRatio;
 
+    let descriptionLabel = null;
+
+    if (media.get('type') === 'audio') {
+      descriptionLabel = <FormattedMessage id='upload_form.audio_description' defaultMessage='Describe for people with hearing loss' />;
+    } else if (media.get('type') === 'video') {
+      descriptionLabel = <FormattedMessage id='upload_form.video_description' defaultMessage='Describe for people with hearing loss or visual impairment' />;
+    } else {
+      descriptionLabel = <FormattedMessage id='upload_form.description' defaultMessage='Describe for the visually impaired' />;
+    }
+
     return (
       <div className='modal-root__modal report-modal' style={{ maxWidth: 960 }}>
         <div className='report-modal__target'>
@@ -246,7 +265,9 @@ class FocalPointModal extends ImmutablePureComponent {
           <div className='report-modal__comment'>
             {focals && <p><FormattedMessage id='upload_modal.hint' defaultMessage='Click or drag the circle on the preview to choose the focal point which will always be in view on all thumbnails.' /></p>}
 
-            <label className='setting-text-label' htmlFor='upload-modal__description'><FormattedMessage id='upload_form.description' defaultMessage='Describe for the visually impaired' /></label>
+            <label className='setting-text-label' htmlFor='upload-modal__description'>
+              {descriptionLabel}
+            </label>
 
             <div className='setting-text__wrapper'>
               <Textarea
@@ -254,6 +275,7 @@ class FocalPointModal extends ImmutablePureComponent {
                 className='setting-text light'
                 value={detecting ? '…' : description}
                 onChange={this.handleChange}
+                onKeyDown={this.handleKeyDown}
                 disabled={detecting}
                 autoFocus
               />
diff --git a/app/javascript/mastodon/features/ui/components/follow_requests_nav_link.js b/app/javascript/mastodon/features/ui/components/follow_requests_nav_link.js
index 90c953893aded65914ed70d1c9f381d58e92e56c..950ed7b273ce8aa2cef373a90b6e5cbce72ef00b 100644
--- a/app/javascript/mastodon/features/ui/components/follow_requests_nav_link.js
+++ b/app/javascript/mastodon/features/ui/components/follow_requests_nav_link.js
@@ -4,12 +4,10 @@ import { fetchFollowRequests } from 'mastodon/actions/accounts';
 import { connect } from 'react-redux';
 import { NavLink, withRouter } from 'react-router-dom';
 import IconWithBadge from 'mastodon/components/icon_with_badge';
-import { me } from 'mastodon/initial_state';
 import { List as ImmutableList } from 'immutable';
 import { FormattedMessage } from 'react-intl';
 
 const mapStateToProps = state => ({
-  locked: state.getIn(['accounts', me, 'locked']),
   count: state.getIn(['user_lists', 'follow_requests', 'items'], ImmutableList()).size,
 });
 
@@ -19,22 +17,19 @@ class FollowRequestsNavLink extends React.Component {
 
   static propTypes = {
     dispatch: PropTypes.func.isRequired,
-    locked: PropTypes.bool,
     count: PropTypes.number.isRequired,
   };
 
   componentDidMount () {
-    const { dispatch, locked } = this.props;
+    const { dispatch } = this.props;
 
-    if (locked) {
-      dispatch(fetchFollowRequests());
-    }
+    dispatch(fetchFollowRequests());
   }
 
   render () {
-    const { locked, count } = this.props;
+    const { count } = this.props;
 
-    if (!locked || count === 0) {
+    if (count === 0) {
       return null;
     }
 
diff --git a/app/javascript/mastodon/features/ui/components/link_footer.js b/app/javascript/mastodon/features/ui/components/link_footer.js
index 2b9bd3875e259d9f0713a1cdc0a087e03786eb84..3c4cff9f9c6de8c9d721292fe65d6aa911b2bf57 100644
--- a/app/javascript/mastodon/features/ui/components/link_footer.js
+++ b/app/javascript/mastodon/features/ui/components/link_footer.js
@@ -62,7 +62,7 @@ class LinkFooter extends React.PureComponent {
           <FormattedMessage
             id='getting_started.open_source_notice'
             defaultMessage='Mastodon is open source software. You can contribute or report issues on GitHub at {github}.'
-            values={{ github: <span><a href={source_url} rel='noopener' target='_blank'>{repository}</a> (v{version})</span> }}
+            values={{ github: <span><a href={source_url} rel='noopener noreferrer' target='_blank'>{repository}</a> (v{version})</span> }}
           />
         </p>
       </div>
diff --git a/app/javascript/mastodon/features/ui/components/navigation_panel.js b/app/javascript/mastodon/features/ui/components/navigation_panel.js
index 51e3ec037d1f161bd5950e12475be561276de99b..cfb6bc613fb7dbf907033e98beb7858a46fd96da 100644
--- a/app/javascript/mastodon/features/ui/components/navigation_panel.js
+++ b/app/javascript/mastodon/features/ui/components/navigation_panel.js
@@ -6,6 +6,7 @@ import { profile_directory, showTrends } from 'mastodon/initial_state';
 import NotificationsCounterIcon from './notifications_counter_icon';
 import FollowRequestsNavLink from './follow_requests_nav_link';
 import ListPanel from './list_panel';
+import FavouriteTagPanel from './favourite_tag_panel';
 import TrendsContainer from 'mastodon/features/getting_started/containers/trends_container';
 
 const NavigationPanel = () => (
@@ -13,14 +14,17 @@ const NavigationPanel = () => (
     <NavLink className='column-link column-link--transparent' to='/timelines/home' data-preview-title-id='column.home' data-preview-icon='home' ><Icon className='column-link__icon' id='home' fixedWidth /><FormattedMessage id='tabs_bar.home' defaultMessage='Home' /></NavLink>
     <NavLink className='column-link column-link--transparent' to='/notifications' data-preview-title-id='column.notifications' data-preview-icon='bell' ><NotificationsCounterIcon className='column-link__icon' /><FormattedMessage id='tabs_bar.notifications' defaultMessage='Notifications' /></NavLink>
     <FollowRequestsNavLink />
-    <NavLink className='column-link column-link--transparent' to='/timelines/public/local' data-preview-title-id='column.community' data-preview-icon='users' ><Icon className='column-link__icon' id='users' fixedWidth /><FormattedMessage id='tabs_bar.local_timeline' defaultMessage='Local' /></NavLink>
     <NavLink className='column-link column-link--transparent' exact to='/timelines/public' data-preview-title-id='column.public' data-preview-icon='globe' ><Icon className='column-link__icon' id='globe' fixedWidth /><FormattedMessage id='tabs_bar.federated_timeline' defaultMessage='Federated' /></NavLink>
+    <NavLink className='column-link column-link--transparent' to='/accounts/2'><Icon className='column-link__icon' id='info-circle' fixedWidth /><FormattedMessage id='navigation_bar.information_acct' defaultMessage='Fedibird info' /></NavLink>
+    <NavLink className='column-link column-link--transparent' to='/timelines/tag/fedibird'><Icon className='column-link__icon' id='hashtag' fixedWidth /><FormattedMessage id='navigation_bar.hashtag_fedibird' defaultMessage='Fedibird topics' /></NavLink>
     <NavLink className='column-link column-link--transparent' to='/timelines/direct'><Icon className='column-link__icon' id='envelope' fixedWidth /><FormattedMessage id='navigation_bar.direct' defaultMessage='Direct messages' /></NavLink>
     <NavLink className='column-link column-link--transparent' to='/favourites'><Icon className='column-link__icon' id='star' fixedWidth /><FormattedMessage id='navigation_bar.favourites' defaultMessage='Favourites' /></NavLink>
+    <NavLink className='column-link column-link--transparent' to='/bookmarks'><Icon className='column-link__icon' id='bookmark' fixedWidth /><FormattedMessage id='navigation_bar.bookmarks' defaultMessage='Bookmarks' /></NavLink>
     <NavLink className='column-link column-link--transparent' to='/lists'><Icon className='column-link__icon' id='list-ul' fixedWidth /><FormattedMessage id='navigation_bar.lists' defaultMessage='Lists' /></NavLink>
     {profile_directory && <NavLink className='column-link column-link--transparent' to='/directory'><Icon className='column-link__icon' id='address-book-o' fixedWidth /><FormattedMessage id='getting_started.directory' defaultMessage='Profile directory' /></NavLink>}
 
     <ListPanel />
+    <FavouriteTagPanel />
 
     <hr />
 
diff --git a/app/javascript/mastodon/features/ui/components/tabs_bar.js b/app/javascript/mastodon/features/ui/components/tabs_bar.js
index 1911da8ba3f58e5188d4f233aad1ff71d0dfae0d..e5ad19949963b957e2381c1a04e523016a362dce 100644
--- a/app/javascript/mastodon/features/ui/components/tabs_bar.js
+++ b/app/javascript/mastodon/features/ui/components/tabs_bar.js
@@ -10,8 +10,8 @@ import NotificationsCounterIcon from './notifications_counter_icon';
 export const links = [
   <NavLink className='tabs-bar__link' to='/timelines/home' data-preview-title-id='column.home' data-preview-icon='home' ><Icon id='home' fixedWidth /><FormattedMessage id='tabs_bar.home' defaultMessage='Home' /></NavLink>,
   <NavLink className='tabs-bar__link' to='/notifications' data-preview-title-id='column.notifications' data-preview-icon='bell' ><NotificationsCounterIcon /><FormattedMessage id='tabs_bar.notifications' defaultMessage='Notifications' /></NavLink>,
-  <NavLink className='tabs-bar__link' to='/timelines/public/local' data-preview-title-id='column.community' data-preview-icon='users' ><Icon id='users' fixedWidth /><FormattedMessage id='tabs_bar.local_timeline' defaultMessage='Local' /></NavLink>,
   <NavLink className='tabs-bar__link' exact to='/timelines/public' data-preview-title-id='column.public' data-preview-icon='globe' ><Icon id='globe' fixedWidth /><FormattedMessage id='tabs_bar.federated_timeline' defaultMessage='Federated' /></NavLink>,
+  <NavLink className='tabs-bar__link' exact to='/lists' data-preview-title-id='column.lists' data-preview-icon='list-ul' ><Icon id='list-ul' fixedWidth /><FormattedMessage id='tabs_bar.lists' defaultMessage='Lists' /></NavLink>,
   <NavLink className='tabs-bar__link optional' to='/search' data-preview-title-id='tabs_bar.search' data-preview-icon='bell' ><Icon id='search' fixedWidth /><FormattedMessage id='tabs_bar.search' defaultMessage='Search' /></NavLink>,
   <NavLink className='tabs-bar__link' style={{ flexGrow: '0', flexBasis: '30px' }} to='/getting-started' data-preview-title-id='getting_started.heading' data-preview-icon='bars' ><Icon id='bars' fixedWidth /></NavLink>,
 ];
diff --git a/app/javascript/mastodon/features/ui/containers/status_list_container.js b/app/javascript/mastodon/features/ui/containers/status_list_container.js
index 7b8eb652b4af87511bab867f7c2396ddcb7f9b28..9f6cbf988ef6fd16de6f255c58d703669f21e5ba 100644
--- a/app/javascript/mastodon/features/ui/containers/status_list_container.js
+++ b/app/javascript/mastodon/features/ui/containers/status_list_container.js
@@ -6,9 +6,9 @@ import { createSelector } from 'reselect';
 import { debounce } from 'lodash';
 import { me } from '../../../initial_state';
 
-const makeGetStatusIds = () => createSelector([
+const makeGetStatusIds = (pending = false) => createSelector([
   (state, { type }) => state.getIn(['settings', type], ImmutableMap()),
-  (state, { type }) => state.getIn(['timelines', type, 'items'], ImmutableList()),
+  (state, { type }) => state.getIn(['timelines', type, pending ? 'pendingItems' : 'items'], ImmutableList()),
   (state)           => state.get('statuses'),
 ], (columnSettings, statusIds, statuses) => {
   return statusIds.filter(id => {
@@ -31,13 +31,14 @@ const makeGetStatusIds = () => createSelector([
 
 const makeMapStateToProps = () => {
   const getStatusIds = makeGetStatusIds();
+  const getPendingStatusIds = makeGetStatusIds(true);
 
   const mapStateToProps = (state, { timelineId }) => ({
     statusIds: getStatusIds(state, { type: timelineId }),
     isLoading: state.getIn(['timelines', timelineId, 'isLoading'], true),
     isPartial: state.getIn(['timelines', timelineId, 'isPartial'], false),
     hasMore:   state.getIn(['timelines', timelineId, 'hasMore']),
-    numPending: state.getIn(['timelines', timelineId, 'pendingItems'], ImmutableList()).size,
+    numPending: getPendingStatusIds(state, { type: timelineId }).size,
   });
 
   return mapStateToProps;
diff --git a/app/javascript/mastodon/features/ui/index.js b/app/javascript/mastodon/features/ui/index.js
index 791ff9a2e5ae6efb3c2b1ba1b7a2c2331c2ea740..04c843534f906d2c975b9e42dd1cfd44d673b8e9 100644
--- a/app/javascript/mastodon/features/ui/index.js
+++ b/app/javascript/mastodon/features/ui/index.js
@@ -28,11 +28,13 @@ import {
   KeyboardShortcuts,
   PublicTimeline,
   CommunityTimeline,
+  DomainTimeline,
   AccountTimeline,
   AccountGallery,
   HomeTimeline,
   Followers,
   Following,
+  Subscribing,
   Reblogs,
   Favourites,
   DirectTimeline,
@@ -41,6 +43,7 @@ import {
   FollowRequests,
   GenericNotFound,
   FavouritedStatuses,
+  BookmarkedStatuses,
   ListTimeline,
   Blocks,
   DomainBlocks,
@@ -87,7 +90,6 @@ const keyMap = {
   back: 'backspace',
   goToHome: 'g h',
   goToNotifications: 'g n',
-  goToLocal: 'g l',
   goToFederated: 'g t',
   goToDirect: 'g d',
   goToStart: 'g s',
@@ -99,6 +101,7 @@ const keyMap = {
   goToRequests: 'g r',
   toggleHidden: 'x',
   toggleSensitive: 'h',
+  openMedia: 'e',
 };
 
 class SwitchingColumnsArea extends React.PureComponent {
@@ -164,7 +167,9 @@ class SwitchingColumnsArea extends React.PureComponent {
   }
 
   setRef = c => {
-    this.node = c.getWrappedInstance();
+    if (c) {
+      this.node = c.getWrappedInstance();
+    }
   }
 
   render () {
@@ -181,13 +186,14 @@ class SwitchingColumnsArea extends React.PureComponent {
           <WrappedRoute path='/keyboard-shortcuts' component={KeyboardShortcuts} content={children} />
           <WrappedRoute path='/timelines/home' component={HomeTimeline} content={children} componentParams={{ shouldUpdateScroll: this.shouldUpdateScroll }} />
           <WrappedRoute path='/timelines/public' exact component={PublicTimeline} content={children} componentParams={{ shouldUpdateScroll: this.shouldUpdateScroll }} />
-          <WrappedRoute path='/timelines/public/local' exact component={CommunityTimeline} content={children} componentParams={{ shouldUpdateScroll: this.shouldUpdateScroll }} />
+          <WrappedRoute path='/timelines/public/remote/:domain' exact component={DomainTimeline} content={children} componentParams={{ shouldUpdateScroll: this.shouldUpdateScroll }} />
           <WrappedRoute path='/timelines/direct' component={DirectTimeline} content={children} componentParams={{ shouldUpdateScroll: this.shouldUpdateScroll }} />
           <WrappedRoute path='/timelines/tag/:id' component={HashtagTimeline} content={children} componentParams={{ shouldUpdateScroll: this.shouldUpdateScroll }} />
           <WrappedRoute path='/timelines/list/:id' component={ListTimeline} content={children} componentParams={{ shouldUpdateScroll: this.shouldUpdateScroll }} />
 
           <WrappedRoute path='/notifications' component={Notifications} content={children} componentParams={{ shouldUpdateScroll: this.shouldUpdateScroll }} />
           <WrappedRoute path='/favourites' component={FavouritedStatuses} content={children} componentParams={{ shouldUpdateScroll: this.shouldUpdateScroll }} />
+          <WrappedRoute path='/bookmarks' component={BookmarkedStatuses} content={children} />
           <WrappedRoute path='/pinned' component={PinnedStatuses} content={children} componentParams={{ shouldUpdateScroll: this.shouldUpdateScroll }} />
 
           <WrappedRoute path='/search' component={Search} content={children} />
@@ -202,6 +208,7 @@ class SwitchingColumnsArea extends React.PureComponent {
           <WrappedRoute path='/accounts/:accountId/with_replies' component={AccountTimeline} content={children} componentParams={{ shouldUpdateScroll: this.shouldUpdateScroll, withReplies: true }} />
           <WrappedRoute path='/accounts/:accountId/followers' component={Followers} content={children} componentParams={{ shouldUpdateScroll: this.shouldUpdateScroll }} />
           <WrappedRoute path='/accounts/:accountId/following' component={Following} content={children} componentParams={{ shouldUpdateScroll: this.shouldUpdateScroll }} />
+          <WrappedRoute path='/accounts/:accountId/subscribing' component={Subscribing} content={children} componentParams={{ shouldUpdateScroll: this.shouldUpdateScroll }} />
           <WrappedRoute path='/accounts/:accountId/media' component={AccountGallery} content={children} componentParams={{ shouldUpdateScroll: this.shouldUpdateScroll }} />
 
           <WrappedRoute path='/follow_requests' component={FollowRequests} content={children} componentParams={{ shouldUpdateScroll: this.shouldUpdateScroll }} />
@@ -460,10 +467,6 @@ class UI extends React.PureComponent {
     this.context.router.history.push('/notifications');
   }
 
-  handleHotkeyGoToLocal = () => {
-    this.context.router.history.push('/timelines/public/local');
-  }
-
   handleHotkeyGoToFederated = () => {
     this.context.router.history.push('/timelines/public');
   }
@@ -513,7 +516,6 @@ class UI extends React.PureComponent {
       back: this.handleHotkeyBack,
       goToHome: this.handleHotkeyGoToHome,
       goToNotifications: this.handleHotkeyGoToNotifications,
-      goToLocal: this.handleHotkeyGoToLocal,
       goToFederated: this.handleHotkeyGoToFederated,
       goToDirect: this.handleHotkeyGoToDirect,
       goToStart: this.handleHotkeyGoToStart,
diff --git a/app/javascript/mastodon/features/ui/util/async-components.js b/app/javascript/mastodon/features/ui/util/async-components.js
index bb0fcb8593468acb8c7183726e4797d0ceb6d78f..06504dc553307ba16ea793671bbabed8b29025e6 100644
--- a/app/javascript/mastodon/features/ui/util/async-components.js
+++ b/app/javascript/mastodon/features/ui/util/async-components.js
@@ -22,6 +22,10 @@ export function CommunityTimeline () {
   return import(/* webpackChunkName: "features/community_timeline" */'../../community_timeline');
 }
 
+export function DomainTimeline () {
+  return import(/* webpackChunkName: "features/domain_timeline" */'../../domain_timeline');
+}
+
 export function HashtagTimeline () {
   return import(/* webpackChunkName: "features/hashtag_timeline" */'../../hashtag_timeline');
 }
@@ -70,6 +74,10 @@ export function Following () {
   return import(/* webpackChunkName: "features/following" */'../../following');
 }
 
+export function Subscribing () {
+  return import(/* webpackChunkName: "features/subscribing" */'../../subscribing');
+}
+
 export function Reblogs () {
   return import(/* webpackChunkName: "features/reblogs" */'../../reblogs');
 }
@@ -90,6 +98,10 @@ export function FavouritedStatuses () {
   return import(/* webpackChunkName: "features/favourited_statuses" */'../../favourited_statuses');
 }
 
+export function BookmarkedStatuses () {
+  return import(/* webpackChunkName: "features/bookmarked_statuses" */'../../bookmarked_statuses');
+}
+
 export function Blocks () {
   return import(/* webpackChunkName: "features/blocks" */'../../blocks');
 }
diff --git a/app/javascript/mastodon/features/video/index.js b/app/javascript/mastodon/features/video/index.js
index 5fe4e956f879f628773f399d80a8475c23b50f30..0e2a99416064301405af11eefdcd3c803a327942 100644
--- a/app/javascript/mastodon/features/video/index.js
+++ b/app/javascript/mastodon/features/video/index.js
@@ -19,6 +19,7 @@ const messages = defineMessages({
   close: { id: 'video.close', defaultMessage: 'Close video' },
   fullscreen: { id: 'video.fullscreen', defaultMessage: 'Full screen' },
   exit_fullscreen: { id: 'video.exit_fullscreen', defaultMessage: 'Exit full screen' },
+  download: { id: 'video.download', defaultMessage: 'Download file' },
 });
 
 export const formatTime = secondsNum => {
@@ -123,12 +124,14 @@ class Video extends React.PureComponent {
     revealed: this.props.visible !== undefined ? this.props.visible : (displayMedia !== 'hide_all' && !this.props.sensitive || displayMedia === 'show_all'),
   };
 
-  // hard coded in components.scss
-  // any way to get ::before values programatically?
-  volWidth = 50;
+  // Hard-coded in components.scss
+  // Any way to get ::before values programatically?
+  volWidth  = 50;
   volOffset = 70;
+
   volHandleOffset = v => {
     const offset = v * this.volWidth + this.volOffset;
+
     return (offset > 110) ? 110 : offset;
   }
 
@@ -137,6 +140,7 @@ class Video extends React.PureComponent {
 
     if (c) {
       if (this.props.cacheWidth) this.props.cacheWidth(this.player.offsetWidth);
+
       this.setState({
         containerWidth: c.offsetWidth,
       });
@@ -204,12 +208,14 @@ class Video extends React.PureComponent {
     const x = (e.clientX - rect.left) / this.volWidth; //x position within the element.
 
     if(!isNaN(x)) {
-      var slideamt = x;
+      let slideamt = x;
+
       if(x > 1) {
         slideamt = 1;
       } else if(x < 0) {
         slideamt = 0;
       }
+
       this.video.volume = slideamt;
       this.setState({ volume: slideamt });
     }
@@ -251,9 +257,9 @@ class Video extends React.PureComponent {
 
   togglePlay = () => {
     if (this.state.paused) {
-      this.video.play();
+      this.setState({ paused: false }, () => this.video.play());
     } else {
-      this.video.pause();
+      this.setState({ paused: true }, () => this.video.pause());
     }
   }
 
@@ -271,12 +277,16 @@ class Video extends React.PureComponent {
     document.addEventListener('mozfullscreenchange', this.handleFullscreenChange, true);
     document.addEventListener('MSFullscreenChange', this.handleFullscreenChange, true);
 
+    window.addEventListener('scroll', this.handleScroll);
+
     if (this.props.blurhash) {
       this._decode();
     }
   }
 
   componentWillUnmount () {
+    window.removeEventListener('scroll', this.handleScroll);
+
     document.removeEventListener('fullscreenchange', this.handleFullscreenChange, true);
     document.removeEventListener('webkitfullscreenchange', this.handleFullscreenChange, true);
     document.removeEventListener('mozfullscreenchange', this.handleFullscreenChange, true);
@@ -293,6 +303,7 @@ class Video extends React.PureComponent {
     if (prevState.revealed && !this.state.revealed && this.video) {
       this.video.pause();
     }
+
     if (prevProps.blurhash !== this.props.blurhash && this.props.blurhash) {
       this._decode();
     }
@@ -312,6 +323,19 @@ class Video extends React.PureComponent {
     }
   }
 
+  handleScroll = throttle(() => {
+    if (!this.video) {
+      return;
+    }
+
+    const { top, height } = this.video.getBoundingClientRect();
+    const inView = (top <= (window.innerHeight || document.documentElement.clientHeight)) && (top + height >= 0);
+
+    if (!this.state.paused && !inView) {
+      this.setState({ paused: true }, () => this.video.pause());
+    }
+  }, 150, { trailing: true })
+
   handleFullscreenChange = () => {
     this.setState({ fullscreen: isFullscreen() });
   }
@@ -325,8 +349,11 @@ class Video extends React.PureComponent {
   }
 
   toggleMute = () => {
-    this.video.muted = !this.video.muted;
-    this.setState({ muted: this.video.muted });
+    const muted = !this.video.muted;
+
+    this.setState({ muted }, () => {
+      this.video.muted = muted;
+    });
   }
 
   toggleReveal = () => {
@@ -429,7 +456,6 @@ class Video extends React.PureComponent {
           src={src}
           poster={preview}
           preload={preload}
-          loop
           role='button'
           tabIndex='0'
           aria-label={alt}
@@ -466,10 +492,11 @@ class Video extends React.PureComponent {
 
           <div className='video-player__buttons-bar'>
             <div className='video-player__buttons left'>
-              <button type='button' aria-label={intl.formatMessage(paused ? messages.play : messages.pause)} onClick={this.togglePlay}><Icon id={paused ? 'play' : 'pause'} fixedWidth /></button>
+              <button type='button' aria-label={intl.formatMessage(paused ? messages.play : messages.pause)} onClick={this.togglePlay} autoFocus={detailed}><Icon id={paused ? 'play' : 'pause'} fixedWidth /></button>
               <button type='button' aria-label={intl.formatMessage(muted ? messages.unmute : messages.mute)} onClick={this.toggleMute}><Icon id={muted ? 'volume-off' : 'volume-up'} fixedWidth /></button>
 
               <div className='video-player__volume' onMouseDown={this.handleVolumeMouseDown} ref={this.setVolumeRef}>
+                &nbsp;
                 <div className='video-player__volume__current' style={{ width: `${volumeWidth}px` }} />
                 <span
                   className={classNames('video-player__volume__handle')}
@@ -493,6 +520,7 @@ class Video extends React.PureComponent {
               {(!onCloseVideo && !editable) && <button type='button' aria-label={intl.formatMessage(messages.hide)} onClick={this.toggleReveal}><Icon id='eye-slash' fixedWidth /></button>}
               {(!fullscreen && onOpenVideo) && <button type='button' aria-label={intl.formatMessage(messages.expand)} onClick={this.handleOpenVideo}><Icon id='expand' fixedWidth /></button>}
               {onCloseVideo && <button type='button' aria-label={intl.formatMessage(messages.close)} onClick={this.handleCloseVideo}><Icon id='compress' fixedWidth /></button>}
+              <button type='button' aria-label={intl.formatMessage(messages.download)}><a className='video-player__download__icon' href={this.props.src} download><Icon id={'download'} fixedWidth /></a></button>
               <button type='button' aria-label={intl.formatMessage(fullscreen ? messages.exit_fullscreen : messages.fullscreen)} onClick={this.toggleFullscreen}><Icon id={fullscreen ? 'compress' : 'arrows-alt'} fixedWidth /></button>
             </div>
           </div>
diff --git a/app/javascript/mastodon/initial_state.js b/app/javascript/mastodon/initial_state.js
index 56fb58546690992c51b27af59a3e50f8ce117034..2c55c7ba00e96f7bc3d2cd4e503c0f32d2aee037 100644
--- a/app/javascript/mastodon/initial_state.js
+++ b/app/javascript/mastodon/initial_state.js
@@ -8,6 +8,7 @@ export const autoPlayGif = getMeta('auto_play_gif');
 export const displayMedia = getMeta('display_media');
 export const expandSpoilers = getMeta('expand_spoilers');
 export const unfollowModal = getMeta('unfollow_modal');
+export const unsubscribeModal = getMeta('unsubscribe_modal');
 export const boostModal = getMeta('boost_modal');
 export const deleteModal = getMeta('delete_modal');
 export const me = getMeta('me');
@@ -24,5 +25,9 @@ export const useBlurhash = getMeta('use_blurhash');
 export const usePendingItems = getMeta('use_pending_items');
 export const showTrends = getMeta('trends');
 export const title = getMeta('title');
+export const cropImages = getMeta('crop_images');
+export const show_follow_button_on_timeline = getMeta('show_follow_button_on_timeline');
+export const show_subscribe_button_on_timeline = getMeta('show_subscribe_button_on_timeline');
+export const show_target = getMeta('show_target');
 
 export default initialState;
diff --git a/app/javascript/mastodon/load_keyboard_extensions.js b/app/javascript/mastodon/load_keyboard_extensions.js
new file mode 100644
index 0000000000000000000000000000000000000000..2dd0e45fa714c46485d056cdf78e886b933557c0
--- /dev/null
+++ b/app/javascript/mastodon/load_keyboard_extensions.js
@@ -0,0 +1,16 @@
+// On KaiOS, we may not be able to use a mouse cursor or navigate using Tab-based focus, so we install
+// special left/right focus navigation keyboard listeners, at least on public pages (i.e. so folks
+// can at least log in using KaiOS devices).
+
+function importArrowKeyNavigation() {
+  return import(/* webpackChunkName: "arrow-key-navigation" */ 'arrow-key-navigation');
+}
+
+export default function loadKeyboardExtensions() {
+  if (/KAIOS/.test(navigator.userAgent)) {
+    return importArrowKeyNavigation().then(arrowKeyNav => {
+      arrowKeyNav.register();
+    });
+  }
+  return Promise.resolve();
+}
diff --git a/app/javascript/mastodon/locales/ar.json b/app/javascript/mastodon/locales/ar.json
index 4dd9df55bc8d384251f4a772812172c026d7f37a..9d062452280313a596ed221024fc74d112fadcde 100644
--- a/app/javascript/mastodon/locales/ar.json
+++ b/app/javascript/mastodon/locales/ar.json
@@ -1,18 +1,19 @@
 {
   "account.add_or_remove_from_list": "أضفه أو أزله من القائمة",
   "account.badges.bot": "روبوت",
+  "account.badges.group": "Group",
   "account.block": "حظر @{name}",
   "account.block_domain": "إخفاء كل شيئ قادم من اسم النطاق {domain}",
   "account.blocked": "محظور",
   "account.cancel_follow_request": "إلغاء طلب المتابَعة",
   "account.direct": "رسالة خاصة إلى @{name}",
   "account.domain_blocked": "النطاق مخفي",
-  "account.edit_profile": "تعديل الملف التعريفي",
+  "account.edit_profile": "تعديل الملف الشخصي",
   "account.endorse": "أوصِ به على صفحتك",
   "account.follow": "تابِع",
-  "account.followers": "متابعون",
+  "account.followers": "مُتابِعون",
   "account.followers.empty": "لا أحد يتبع هذا الحساب بعد.",
-  "account.follows": "يتبع",
+  "account.follows": "يتابع",
   "account.follows.empty": "هذا الحساب لا يتبع أحدًا بعد.",
   "account.follows_you": "يتابعك",
   "account.hide_reblogs": "إخفاء ترقيات @{name}",
@@ -27,7 +28,7 @@
   "account.muted": "مكتوم",
   "account.never_active": "أبدا",
   "account.posts": "تبويقات",
-  "account.posts_with_replies": "التبويقات و الردود",
+  "account.posts_with_replies": "التبويقات والردود",
   "account.report": "ابلِغ عن @{name}",
   "account.requested": "في انتظار الموافقة. اضْغَطْ/ي لإلغاء طلب المتابعة",
   "account.share": "شارك ملف تعريف @{name}",
@@ -39,7 +40,7 @@
   "account.unmute": "إلغاء الكتم عن @{name}",
   "account.unmute_notifications": "إلغاء كتم إخطارات @{name}",
   "alert.rate_limited.message": "يرجى إعادة المحاولة بعد {retry_time, time, medium}.",
-  "alert.rate_limited.title": "Rate limited",
+  "alert.rate_limited.title": "المعدل محدود",
   "alert.unexpected.message": "لقد طرأ هناك خطأ غير متوقّع.",
   "alert.unexpected.title": "المعذرة!",
   "autosuggest_hashtag.per_week": "{count} في الأسبوع",
@@ -51,9 +52,10 @@
   "bundle_modal_error.message": "لقد وقع هناك خطأ أثناء عملية تحميل هذا العنصر.",
   "bundle_modal_error.retry": "إعادة المحاولة",
   "column.blocks": "الحسابات المحجوبة",
+  "column.bookmarks": "الفواصل المرجعية",
   "column.community": "الخيط العام المحلي",
   "column.direct": "الرسائل المباشرة",
-  "column.directory": "استعرض الملفات التعريفية",
+  "column.directory": "استعراض الملفات التعريفية",
   "column.domain_blocks": "النطاقات المخفية",
   "column.favourites": "المفضلة",
   "column.follow_requests": "طلبات المتابعة",
@@ -82,6 +84,8 @@
   "compose_form.poll.duration": "مدة استطلاع الرأي",
   "compose_form.poll.option_placeholder": "الخيار {number}",
   "compose_form.poll.remove_option": "إزالة هذا الخيار",
+  "compose_form.poll.switch_to_multiple": "Change poll to allow multiple choices",
+  "compose_form.poll.switch_to_single": "Change poll to allow for a single choice",
   "compose_form.publish": "بوّق",
   "compose_form.publish_loud": "{publish}!",
   "compose_form.sensitive.hide": "تحديد الوسائط كحساسة",
@@ -106,7 +110,7 @@
   "confirmations.mute.explanation": "This will hide posts from them and posts mentioning them, but it will still allow them to see your posts and follow you.",
   "confirmations.mute.message": "هل أنت متأكد أنك تريد كتم {name} ؟",
   "confirmations.redraft.confirm": "إزالة و إعادة الصياغة",
-  "confirmations.redraft.message": "هل أنت متأكد من أنك تريد حذف هذا المنشور و إعادة صياغته ؟ سوف تفقد جميع الإعجابات و الترقيات أما الردود المتصلة به فستُصبِح يتيمة.",
+  "confirmations.redraft.message": "هل أنت متأكد من أنك تريد حذف هذا المنشور و إعادة صياغته؟ سوف تفقد جميع الإعجابات و الترقيات أما الردود المتصلة به فستُصبِح يتيمة.",
   "confirmations.reply.confirm": "رد",
   "confirmations.reply.message": "الرد في الحين سوف يُعيد كتابة الرسالة التي أنت بصدد كتابتها. متأكد من أنك تريد المواصلة؟",
   "confirmations.unfollow.confirm": "إلغاء المتابعة",
@@ -138,6 +142,7 @@
   "empty_column.account_timeline": "ليس هناك تبويقات!",
   "empty_column.account_unavailable": "الملف التعريفي غير متوفر",
   "empty_column.blocks": "لم تقم بحظر أي مستخدِم بعد.",
+  "empty_column.bookmarked_statuses": "You don't have any bookmarked toots yet. When you bookmark one, it will show up here.",
   "empty_column.community": "الخط العام المحلي فارغ. أكتب شيئا ما للعامة كبداية!",
   "empty_column.direct": "لم تتلق أية رسالة خاصة مباشِرة بعد. سوف يتم عرض الرسائل المباشرة هنا إن قمت بإرسال واحدة أو تلقيت البعض منها.",
   "empty_column.domain_blocks": "ليس هناك نطاقات مخفية بعد.",
@@ -153,8 +158,8 @@
   "empty_column.notifications": "لم تتلق أي إشعار بعدُ. تفاعل مع المستخدمين الآخرين لإنشاء محادثة.",
   "empty_column.public": "لا يوجد أي شيء هنا! قم بنشر شيء ما للعامة، أو اتبع المستخدمين الآخرين المتواجدين على الخوادم الأخرى لملء خيط المحادثات",
   "error.unexpected_crash.explanation": "Due to a bug in our code or a browser compatibility issue, this page could not be displayed correctly.",
-  "error.unexpected_crash.next_steps": "Try refreshing the page. If that does not help, you may still be able to use Mastodon through a different browser or native app.",
-  "errors.unexpected_crash.copy_stacktrace": "Copy stacktrace to clipboard",
+  "error.unexpected_crash.next_steps": "حاول إعادة إنعاش الصفحة. إن لم تُحلّ المشكلة ، يمكنك دائمًا استخدام ماستدون عبر متصفّح آخر أو تطبيق أصلي.",
+  "errors.unexpected_crash.copy_stacktrace": "انسخ تتبع الارتباطات إلى الحافظة",
   "errors.unexpected_crash.report_issue": "الإبلاغ عن خلل",
   "federation.change": "Adjust status federation",
   "federation.federated.long": "Allow toot to reach other instances",
@@ -181,7 +186,7 @@
   "hashtag.column_settings.tag_mode.none": "لا شيء مِن هذه",
   "hashtag.column_settings.tag_toggle": "إدراج الوسوم الإضافية لهذا العمود",
   "home.column_settings.basic": "الأساسية",
-  "home.column_settings.show_reblogs": "عرض الترقيات",
+  "home.column_settings.show_reblogs": "اعرض الترقيات",
   "home.column_settings.show_replies": "اعرض الردود",
   "intervals.full.days": "{number, plural, one {# يوم} other {# أيام}}",
   "intervals.full.hours": "{number, plural, one {# ساعة} other {# ساعات}}",
@@ -224,6 +229,7 @@
   "keyboard_shortcuts.muted": "لفتح قائمة المستخدِمين المكتومين",
   "keyboard_shortcuts.my_profile": "لفتح ملفك التعريفي",
   "keyboard_shortcuts.notifications": "لفتح عمود الإشعارات",
+  "keyboard_shortcuts.open_media": "لفتح الوسائط",
   "keyboard_shortcuts.pinned": "لفتح قائمة التبويقات المدبسة",
   "keyboard_shortcuts.profile": "لفتح الملف التعريفي للناشر",
   "keyboard_shortcuts.reply": "للردّ",
@@ -256,6 +262,7 @@
   "mute_modal.hide_notifications": "هل تود إخفاء الإخطارات القادمة من هذا المستخدم ؟",
   "navigation_bar.apps": "تطبيقات الأجهزة المحمولة",
   "navigation_bar.blocks": "الحسابات المحجوبة",
+  "navigation_bar.bookmarks": "الفواصل المرجعية",
   "navigation_bar.community_timeline": "الخيط العام المحلي",
   "navigation_bar.compose": "تحرير تبويق جديد",
   "navigation_bar.direct": "الرسائل المباشِرة",
@@ -278,7 +285,9 @@
   "navigation_bar.security": "الأمان",
   "notification.favourite": "أُعجِب {name} بمنشورك",
   "notification.follow": "{name} يتابعك",
+  "notification.follow_request": "لقد طلب {name} متابعتك",
   "notification.mention": "{name} ذكرك",
+  "notification.own_poll": "انتهى استطلاعك للرأي",
   "notification.poll": "لقد إنتها تصويت شاركت فيه",
   "notification.reblog": "{name} قام بترقية تبويقك",
   "notifications.clear": "امسح الإخطارات",
@@ -287,8 +296,9 @@
   "notifications.column_settings.favourite": "المُفَضَّلة:",
   "notifications.column_settings.filter_bar.advanced": "اعرض كافة الفئات",
   "notifications.column_settings.filter_bar.category": "شريط الفلترة السريعة",
-  "notifications.column_settings.filter_bar.show": "اعرض",
+  "notifications.column_settings.filter_bar.show": "اظهِره",
   "notifications.column_settings.follow": "متابعُون جُدُد:",
+  "notifications.column_settings.follow_request": "الطلبات الجديد لِمتابَعتك:",
   "notifications.column_settings.mention": "الإشارات:",
   "notifications.column_settings.poll": "نتائج استطلاع الرأي:",
   "notifications.column_settings.push": "الإخطارات المدفوعة",
@@ -304,7 +314,7 @@
   "notifications.group": "{count} إشعارات",
   "poll.closed": "انتهى",
   "poll.refresh": "تحديث",
-  "poll.total_people": "{count, plural, one {# شخص} other {# أشخاص}}",
+  "poll.total_people": "{count, plural, one {# شخص} two {# شخصين} few {# أشخاص} many {# أشخاص} other {# أشخاص}}",
   "poll.total_votes": "{count, plural, one {# صوت} other {# أصوات}}",
   "poll.vote": "صَوّت",
   "poll.voted": "لقد صوّتت على هذه الإجابة",
@@ -345,10 +355,11 @@
   "search_results.hashtags": "الوُسوم",
   "search_results.statuses": "التبويقات",
   "search_results.statuses_fts_disabled": "البحث في التبويقات عن طريق المحتوى ليس مفعل في خادم ماستدون هذا.",
-  "search_results.total": "{count, number} {count, plural, one {result} Ùˆ {results}}",
+  "search_results.total": "{count, number} {count, plural, zero {} one {نتيجة} two {نتيجتين} few {نتائج} many {نتائج} other {نتائج}}",
   "status.admin_account": "افتح الواجهة الإدارية لـ @{name}",
   "status.admin_status": "افتح هذا المنشور على واجهة الإشراف",
   "status.block": "احجب @{name}",
+  "status.bookmark": "أضفه إلى الفواصل المرجعية",
   "status.cancel_reblog_private": "إلغاء الترقية",
   "status.cannot_reblog": "تعذرت ترقية هذا المنشور",
   "status.copy": "نسخ رابط المنشور",
@@ -374,6 +385,7 @@
   "status.reblogged_by": "رقّاه {name}",
   "status.reblogs.empty": "لم يقم أي أحد بترقية هذا التبويق بعد. عندما يقوم أحدهم بذلك سوف تظهر هنا.",
   "status.redraft": "إزالة و إعادة الصياغة",
+  "status.remove_bookmark": "احذفه مِن الفواصل المرجعية",
   "status.reply": "ردّ",
   "status.replyAll": "رُد على الخيط",
   "status.report": "ابلِغ عن @{name}",
@@ -399,25 +411,28 @@
   "time_remaining.minutes": "{number, plural, one {# دقيقة} other {# دقائق}} متبقية",
   "time_remaining.moments": "لحظات متبقية",
   "time_remaining.seconds": "{number, plural, one {# ثانية} other {# ثوانٍ}} متبقية",
-  "trends.count_by_accounts": "{count} {rawCount, plural, one {person} آخرون {people}} يتحدثون",
+  "trends.count_by_accounts": "{count} {rawCount, plural, zero {} one {شخص واحد} two {شخصين} few {أشخاص} many {أشخاص} other {أشخاص}} تتحدّث",
   "trends.trending_now": "المتداولة الآن",
   "ui.beforeunload": "سوف تفقد مسودتك إن تركت ماستدون.",
   "upload_area.title": "اسحب ثم أفلت للرفع",
   "upload_button.label": "إضافة وسائط ({formats})",
   "upload_error.limit": "لقد تم بلوغ الحد الأقصى المسموح به لإرسال الملفات.",
   "upload_error.poll": "لا يمكن إدراج ملفات في استطلاعات الرأي.",
+  "upload_form.audio_description": "وصف للأشخاص ذي قِصر السمع",
   "upload_form.description": "وصف للمعاقين بصريا",
   "upload_form.edit": "تعديل",
   "upload_form.undo": "حذف",
+  "upload_form.video_description": "وصف للمعاقين بصريا أو لِذي قِصر السمع",
   "upload_modal.analyzing_picture": "جارٍ فحص الصورة…",
   "upload_modal.apply": "طبّق",
   "upload_modal.description_placeholder": "A quick brown fox jumps over the lazy dog",
   "upload_modal.detect_text": "اكتشف النص مِن الصورة",
   "upload_modal.edit_media": "تعديل الوسائط",
-  "upload_modal.hint": "Click or drag the circle on the preview to choose the focal point which will always be in view on all thumbnails.",
+  "upload_modal.hint": "اضغط أو اسحب الدائرة على خانة المعاينة لاختيار نقطة التركيز التي ستُعرَض دائمًا على كل المصغرات.",
   "upload_modal.preview_label": "معاينة ({ratio})",
   "upload_progress.label": "يرفع...",
   "video.close": "إغلاق الفيديو",
+  "video.download": "تنزيل الملف",
   "video.exit_fullscreen": "الخروج من وضع الشاشة المليئة",
   "video.expand": "توسيع الفيديو",
   "video.fullscreen": "ملء الشاشة",
diff --git a/app/javascript/mastodon/locales/ast.json b/app/javascript/mastodon/locales/ast.json
index b2c98bb157731bb4532c1318f4a298705157bae4..71c37a18e7042b007500c68ddba45b2d7d8d51e1 100644
--- a/app/javascript/mastodon/locales/ast.json
+++ b/app/javascript/mastodon/locales/ast.json
@@ -1,6 +1,7 @@
 {
   "account.add_or_remove_from_list": "Add or Remove from lists",
   "account.badges.bot": "Robó",
+  "account.badges.group": "Group",
   "account.block": "Bloquiar a @{name}",
   "account.block_domain": "Anubrir tolo de {domain}",
   "account.blocked": "Blocked",
@@ -21,15 +22,15 @@
   "account.locked_info": "This account privacy status is set to locked. The owner manually reviews who can follow them.",
   "account.media": "Media",
   "account.mention": "Mentar a @{name}",
-  "account.moved_to": "{name} has moved to:",
+  "account.moved_to": "{name} mudóse a:",
   "account.mute": "Silenciar a @{name}",
   "account.mute_notifications": "Mute notifications from @{name}",
   "account.muted": "Muted",
-  "account.never_active": "Never",
-  "account.posts": "Toots",
-  "account.posts_with_replies": "Toots y rempuestes",
+  "account.never_active": "Enxamás",
+  "account.posts": "Barritos",
+  "account.posts_with_replies": "Barritos y rempuestes",
   "account.report": "Report @{name}",
-  "account.requested": "Awaiting approval",
+  "account.requested": "Esperando pola aprobación. Calca pa encaboxar la solicitú de siguimientu",
   "account.share": "Share @{name}'s profile",
   "account.show_reblogs": "Show boosts from @{name}",
   "account.unblock": "Desbloquiar a @{name}",
@@ -41,16 +42,17 @@
   "alert.rate_limited.message": "Please retry after {retry_time, time, medium}.",
   "alert.rate_limited.title": "Rate limited",
   "alert.unexpected.message": "Asocedió un fallu inesperáu.",
-  "alert.unexpected.title": "¡Ups!",
-  "autosuggest_hashtag.per_week": "{count} per week",
+  "alert.unexpected.title": "¡Meca!",
+  "autosuggest_hashtag.per_week": "{count} per selmana",
   "boost_modal.combo": "Pues primir {combo} pa saltar esto la próxima vegada",
   "bundle_column_error.body": "Something went wrong while loading this component.",
   "bundle_column_error.retry": "Try again",
   "bundle_column_error.title": "Network error",
   "bundle_modal_error.close": "Close",
-  "bundle_modal_error.message": "Something went wrong while loading this component.",
+  "bundle_modal_error.message": "Asocedió daqué malo mentanto se cargaba esti componente.",
   "bundle_modal_error.retry": "Try again",
   "column.blocks": "Usuarios bloquiaos",
+  "column.bookmarks": "Marcadores",
   "column.community": "Llinia temporal llocal",
   "column.direct": "Mensaxes direutos",
   "column.directory": "Browse profiles",
@@ -61,7 +63,7 @@
   "column.lists": "Llistes",
   "column.mutes": "Usuarios silenciaos",
   "column.notifications": "Avisos",
-  "column.pins": "Toots fixaos",
+  "column.pins": "Barritos fixaos",
   "column.public": "Llinia temporal federada",
   "column_back_button.label": "Atrás",
   "column_header.hide_settings": "Hide settings",
@@ -71,25 +73,27 @@
   "column_header.show_settings": "Show settings",
   "column_header.unpin": "Desfixar",
   "column_subheading.settings": "Axustes",
-  "community.column_settings.media_only": "Media only",
-  "compose_form.direct_message_warning": "Esti toot namái va unviase a los usuarios mentaos.",
+  "community.column_settings.media_only": "Namái multimedia",
+  "compose_form.direct_message_warning": "Esti barritu namái va unviase a los usuarios mentaos.",
   "compose_form.direct_message_warning_learn_more": "Learn more",
   "compose_form.hashtag_warning": "This toot won't be listed under any hashtag as it is unlisted. Only public toots can be searched by hashtag.",
   "compose_form.lock_disclaimer": "Your account is not {locked}. Anyone can follow you to view your follower-only posts.",
   "compose_form.lock_disclaimer.lock": "locked",
   "compose_form.placeholder": "¿En qué pienses?",
-  "compose_form.poll.add_option": "Add a choice",
+  "compose_form.poll.add_option": "Amestar una escoyeta",
   "compose_form.poll.duration": "Poll duration",
-  "compose_form.poll.option_placeholder": "Choice {number}",
+  "compose_form.poll.option_placeholder": "Escoyeta {number}",
   "compose_form.poll.remove_option": "Remove this choice",
+  "compose_form.poll.switch_to_multiple": "Change poll to allow multiple choices",
+  "compose_form.poll.switch_to_single": "Change poll to allow for a single choice",
   "compose_form.publish": "Toot",
   "compose_form.publish_loud": "{publish}!",
   "compose_form.sensitive.hide": "Mark media as sensitive",
   "compose_form.sensitive.marked": "Media is marked as sensitive",
   "compose_form.sensitive.unmarked": "Media is not marked as sensitive",
   "compose_form.spoiler.marked": "El testu nun va anubrise darrera d'una alvertencia",
-  "compose_form.spoiler.unmarked": "El testu va anubrise",
-  "compose_form.spoiler_placeholder": "Escribi equí l'avertencia",
+  "compose_form.spoiler.unmarked": "El testu nun va anubrise",
+  "compose_form.spoiler_placeholder": "Escribi equí l'alvertencia",
   "confirmation_modal.cancel": "Encaboxar",
   "confirmations.block.block_and_report": "Block & Report",
   "confirmations.block.confirm": "Block",
@@ -106,7 +110,7 @@
   "confirmations.mute.explanation": "This will hide posts from them and posts mentioning them, but it will still allow them to see your posts and follow you.",
   "confirmations.mute.message": "¿De xuru que quies silenciar a {name}?",
   "confirmations.redraft.confirm": "Desaniciar y reeditar",
-  "confirmations.redraft.message": "Are you sure you want to delete this status and re-draft it? You will lose all replies, boosts and favourites to it.",
+  "confirmations.redraft.message": "¿De xuru que quies desaniciar esti estáu y reeditalu? Van perdese los favoritos y comparticiones, y les rempuestes al toot orixinal van quedar güérfanes.",
   "confirmations.reply.confirm": "Reply",
   "confirmations.reply.message": "Replying now will overwrite the message you are currently composing. Are you sure you want to proceed?",
   "confirmations.unfollow.confirm": "Unfollow",
@@ -115,44 +119,45 @@
   "conversation.mark_as_read": "Mark as read",
   "conversation.open": "View conversation",
   "conversation.with": "With {names}",
-  "directory.federated": "From known fediverse",
-  "directory.local": "From {domain} only",
-  "directory.new_arrivals": "New arrivals",
+  "directory.federated": "Dende'l fediversu",
+  "directory.local": "Dende {domain} namái",
+  "directory.new_arrivals": "Cuentes nueves",
   "directory.recently_active": "Recently active",
   "embed.instructions": "Empotra esti estáu nun sitiu web copiando'l códigu d'embaxo.",
-  "embed.preview": "Asina ye como va vese:",
+  "embed.preview": "Asina ye cómo va vese:",
   "emoji_button.activity": "Actividaes",
   "emoji_button.custom": "Custom",
   "emoji_button.flags": "Banderes",
   "emoji_button.food": "Comida y bébora",
-  "emoji_button.label": "Insert emoji",
+  "emoji_button.label": "Inxertar un fustaxe",
   "emoji_button.nature": "Natura",
   "emoji_button.not_found": "¡Nun hai fustaxes! (╯°□°)╯︵ ┻━┻",
   "emoji_button.objects": "Oxetos",
   "emoji_button.people": "Xente",
   "emoji_button.recent": "Úsase davezu",
-  "emoji_button.search": "Guetar...",
+  "emoji_button.search": "Guetar…",
   "emoji_button.search_results": "Search results",
   "emoji_button.symbols": "Símbolos",
   "emoji_button.travel": "Viaxes y llugares",
-  "empty_column.account_timeline": "No toots here!",
+  "empty_column.account_timeline": "¡Equí nun hai barritos!",
   "empty_column.account_unavailable": "Profile unavailable",
   "empty_column.blocks": "Entá nun bloquiesti a dengún usuariu.",
+  "empty_column.bookmarked_statuses": "You don't have any bookmarked toots yet. When you bookmark one, it will show up here.",
   "empty_column.community": "The local timeline is empty. Write something publicly to get the ball rolling!",
   "empty_column.direct": "Entá nun tienes dengún mensaxe direutu. Cuando unvies o recibas dalgún, va apaecer equí.",
   "empty_column.domain_blocks": "Entá nun hai dominios anubríos.",
   "empty_column.favourited_statuses": "You don't have any favourite toots yet. When you favourite one, it will show up here.",
   "empty_column.favourites": "No one has favourited this toot yet. When someone does, they will show up here.",
   "empty_column.follow_requests": "Entá nun tienes denguna solicitú de siguimientu. Cuando recibas una, va amosase equí.",
-  "empty_column.hashtag": "There is nothing in this hashtag yet.",
+  "empty_column.hashtag": "Entá nun hai nada nesta etiqueta.",
   "empty_column.home": "¡Tienes la llinia temporal balera! Visita {public} o usa la gueta pa entamar y conocer a otros usuarios.",
   "empty_column.home.public_timeline": "la llinia temporal pública",
   "empty_column.list": "Entá nun hai nada nesta llista. Cuando los miembros d'esta llista espublicen estaos nuevos, van apaecer equí.",
   "empty_column.lists": "Entá nun tienes denguna llista. Cuando crees una, va amosase equí.",
   "empty_column.mutes": "Entá nun silenciesti a dengún usuariu.",
-  "empty_column.notifications": "Entá nun tienes dengún avisu. Interactua con otros p'aniciar la conversación.",
-  "empty_column.public": "There is nothing here! Write something publicly, or manually follow users from other instances to fill it up",
-  "error.unexpected_crash.explanation": "Due to a bug in our code or a browser compatibility issue, this page could not be displayed correctly.",
+  "empty_column.notifications": "Entá nun tienes dengún avisu. Interactúa con otros p'aniciar la conversación.",
+  "empty_column.public": "¡Equí nun hai nada! Escribi daqué público o sigui a usuarios d'otros sirvidores pa rellenar esto",
+  "error.unexpected_crash.explanation": "Pola mor d'un fallu nel códigu o un problema de compatibilidá del restolador, esta páxina nun pudo amosase correutamente.",
   "error.unexpected_crash.next_steps": "Try refreshing the page. If that does not help, you may still be able to use Mastodon through a different browser or native app.",
   "errors.unexpected_crash.copy_stacktrace": "Copy stacktrace to clipboard",
   "errors.unexpected_crash.report_issue": "Report issue",
@@ -164,36 +169,36 @@
   "follow_request.authorize": "Autorizar",
   "follow_request.reject": "Refugar",
   "getting_started.developers": "Desendolcadores",
-  "getting_started.directory": "Profile directory",
+  "getting_started.directory": "Direutoriu de perfiles",
   "getting_started.documentation": "Documentación",
   "getting_started.heading": "Entamu",
-  "getting_started.invite": "Convidar xente",
-  "getting_started.open_source_notice": "Mastodon ye software de códigu abiertu. Pues collaborar o informar de fallos en {github} (GitHub).",
-  "getting_started.security": "Seguranza",
+  "getting_started.invite": "Convidar a persones",
+  "getting_started.open_source_notice": "Mastodon ye software de códigu abiertu. Pues collaborar o informar de fallos en GitHub: {github}.",
+  "getting_started.security": "Axustes de la cuenta",
   "getting_started.terms": "Términos del serviciu",
-  "hashtag.column_header.tag_mode.all": "and {additional}",
-  "hashtag.column_header.tag_mode.any": "or {additional}",
-  "hashtag.column_header.tag_mode.none": "without {additional}",
+  "hashtag.column_header.tag_mode.all": "y {additional}",
+  "hashtag.column_header.tag_mode.any": "o {additional}",
+  "hashtag.column_header.tag_mode.none": "ensin {additional}",
   "hashtag.column_settings.select.no_options_message": "No suggestions found",
   "hashtag.column_settings.select.placeholder": "Enter hashtags…",
   "hashtag.column_settings.tag_mode.all": "All of these",
   "hashtag.column_settings.tag_mode.any": "Any of these",
   "hashtag.column_settings.tag_mode.none": "None of these",
-  "hashtag.column_settings.tag_toggle": "Include additional tags in this column",
+  "hashtag.column_settings.tag_toggle": "Incluyir les etiquetes adicionales d'esta columna",
   "home.column_settings.basic": "Basic",
   "home.column_settings.show_reblogs": "Amosar toots compartíos",
   "home.column_settings.show_replies": "Amosar rempuestes",
-  "intervals.full.days": "{number, plural, one {# day} other {# days}}",
-  "intervals.full.hours": "{number, plural, one {# hour} other {# hours}}",
-  "intervals.full.minutes": "{number, plural, one {# minute} other {# minutes}}",
+  "intervals.full.days": "{number, plural, one {# día} other {# díes}}",
+  "intervals.full.hours": "{number, plural, one {# hora} other {# hores}}",
+  "intervals.full.minutes": "{number, plural, one {# minutu} other {# minutos}}",
   "introduction.federation.action": "Next",
   "introduction.federation.federated.headline": "Federated",
-  "introduction.federation.federated.text": "Public posts from other servers of the fediverse will appear in the federated timeline.",
+  "introduction.federation.federated.text": "Los espublizamientos públicos de los demás sirvidores del fediversu van apaecer na llinia temporal federada.",
   "introduction.federation.home.headline": "Home",
   "introduction.federation.home.text": "Posts from people you follow will appear in your home feed. You can follow anyone on any server!",
   "introduction.federation.local.headline": "Local",
   "introduction.federation.local.text": "Public posts from people on the same server as you will appear in the local timeline.",
-  "introduction.interactions.action": "Finish toot-orial!",
+  "introduction.interactions.action": "¡Finar el tutorial!",
   "introduction.interactions.favourite.headline": "Favourite",
   "introduction.interactions.favourite.text": "You can save a toot for later, and let the author know that you liked it, by favouriting it.",
   "introduction.interactions.reblog.headline": "Boost",
@@ -201,18 +206,18 @@
   "introduction.interactions.reply.headline": "Reply",
   "introduction.interactions.reply.text": "You can reply to other people's and your own toots, which will chain them together in a conversation.",
   "introduction.welcome.action": "Let's go!",
-  "introduction.welcome.headline": "First steps",
-  "introduction.welcome.text": "Welcome to the fediverse! In a few moments, you'll be able to broadcast messages and talk to your friends across a wide variety of servers. But this server, {domain}, is special—it hosts your profile, so remember its name.",
+  "introduction.welcome.headline": "Primeros pasos",
+  "introduction.welcome.text": "¡Afáyate nel fediversu! Nun momentu vas ser a tresmitir mensaxes y falar colos collacios d'una montonera de sirvidores. Pero esti sirvidor, {domain}, ye especial: agospia'l to perfil, asina qu'alcuérdate de cómo se llama.",
   "keyboard_shortcuts.back": "pa dir p'atrás",
   "keyboard_shortcuts.blocked": "p'abrir la llista d'usuarios bloquiaos",
   "keyboard_shortcuts.boost": "pa compartir un toot",
   "keyboard_shortcuts.column": "to focus a status in one of the columns",
-  "keyboard_shortcuts.compose": "to focus the compose textarea",
+  "keyboard_shortcuts.compose": "pa enfocar l'área de composición",
   "keyboard_shortcuts.description": "Descripción",
   "keyboard_shortcuts.direct": "p'abrir la columna de los mensaxes direutos",
   "keyboard_shortcuts.down": "pa baxar na llista",
   "keyboard_shortcuts.enter": "to open status",
-  "keyboard_shortcuts.favourite": "to favourite",
+  "keyboard_shortcuts.favourite": "p'amestar a Favoritos",
   "keyboard_shortcuts.favourites": "p'abrir la llista de favoritos",
   "keyboard_shortcuts.federated": "p'abrir la llinia temporal federada",
   "keyboard_shortcuts.heading": "Atayos del tecláu",
@@ -222,18 +227,19 @@
   "keyboard_shortcuts.local": "p'abrir la llinia temporal llocal",
   "keyboard_shortcuts.mention": "pa mentar al autor",
   "keyboard_shortcuts.muted": "p'abrir la llista d'usuarios silenciaos",
-  "keyboard_shortcuts.my_profile": "to open your profile",
+  "keyboard_shortcuts.my_profile": "p'abrir el to perfil",
   "keyboard_shortcuts.notifications": "p'abrir la columna d'avisos",
-  "keyboard_shortcuts.pinned": "p'abrir la llista de toots fixaos",
+  "keyboard_shortcuts.open_media": "to open media",
+  "keyboard_shortcuts.pinned": "p'abrir la llista de barritos fixaos",
   "keyboard_shortcuts.profile": "p'abrir el perfil del autor",
   "keyboard_shortcuts.reply": "pa responder",
   "keyboard_shortcuts.requests": "p'abrir la llista de solicitúes de siguimientu",
-  "keyboard_shortcuts.search": "to focus search",
+  "keyboard_shortcuts.search": "pa enfocar la gueta",
   "keyboard_shortcuts.start": "p'abrir la columna «entamar»",
   "keyboard_shortcuts.toggle_hidden": "to show/hide text behind CW",
   "keyboard_shortcuts.toggle_sensitivity": "to show/hide media",
-  "keyboard_shortcuts.toot": "p'apenzar un toot nuevu",
-  "keyboard_shortcuts.unfocus": "to un-focus compose textarea/search",
+  "keyboard_shortcuts.toot": "p'apenzar un barritu nuevu",
+  "keyboard_shortcuts.unfocus": "pa desenfocar l'área de composición/gueta",
   "keyboard_shortcuts.up": "pa xubir na llista",
   "lightbox.close": "Close",
   "lightbox.next": "Siguiente",
@@ -248,14 +254,15 @@
   "lists.new.title_placeholder": "Títulu nuevu de la llista",
   "lists.search": "Guetar ente la xente que sigues",
   "lists.subheading": "Les tos llistes",
-  "load_pending": "{count, plural, one {# new item} other {# new items}}",
-  "loading_indicator.label": "Cargando...",
+  "load_pending": "{count, plural, one {# elementu nuevu} other {# elementos nuevos}}",
+  "loading_indicator.label": "Cargando…",
   "media_gallery.toggle_visible": "Toggle visibility",
   "missing_indicator.label": "Nun s'alcontró",
   "missing_indicator.sublabel": "Esti recursu nun pudo alcontrase",
   "mute_modal.hide_notifications": "Hide notifications from this user?",
   "navigation_bar.apps": "Aplicaciones pa móviles",
   "navigation_bar.blocks": "Usuarios bloquiaos",
+  "navigation_bar.bookmarks": "Bookmarks",
   "navigation_bar.community_timeline": "Llinia temporal llocal",
   "navigation_bar.compose": "Compose new toot",
   "navigation_bar.direct": "Mensaxes direutos",
@@ -272,13 +279,15 @@
   "navigation_bar.logout": "Zarrar sesión",
   "navigation_bar.mutes": "Usuarios silenciaos",
   "navigation_bar.personal": "Personal",
-  "navigation_bar.pins": "Toots fixaos",
+  "navigation_bar.pins": "Barritos fixaos",
   "navigation_bar.preferences": "Preferencies",
   "navigation_bar.public_timeline": "Llinia temporal federada",
   "navigation_bar.security": "Seguranza",
   "notification.favourite": "{name} favourited your status",
   "notification.follow": "{name} siguióte",
+  "notification.follow_request": "{name} has requested to follow you",
   "notification.mention": "{name} mentóte",
+  "notification.own_poll": "Your poll has ended",
   "notification.poll": "A poll you have voted in has ended",
   "notification.reblog": "{name} compartió'l to estáu",
   "notifications.clear": "Llimpiar avisos",
@@ -287,19 +296,20 @@
   "notifications.column_settings.favourite": "Favoritos:",
   "notifications.column_settings.filter_bar.advanced": "Display all categories",
   "notifications.column_settings.filter_bar.category": "Quick filter bar",
-  "notifications.column_settings.filter_bar.show": "Show",
+  "notifications.column_settings.filter_bar.show": "Amosar",
   "notifications.column_settings.follow": "Siguidores nuevos:",
+  "notifications.column_settings.follow_request": "Solicitúes de siguimientu nueves:",
   "notifications.column_settings.mention": "Menciones:",
   "notifications.column_settings.poll": "Poll results:",
   "notifications.column_settings.push": "Push notifications",
-  "notifications.column_settings.reblog": "Toots compartíos:",
+  "notifications.column_settings.reblog": "Barritos compartíos:",
   "notifications.column_settings.show": "Amosar en columna",
-  "notifications.column_settings.sound": "Reproducir soníu",
+  "notifications.column_settings.sound": "Reproducir un soníu",
   "notifications.filter.all": "All",
   "notifications.filter.boosts": "Boosts",
   "notifications.filter.favourites": "Favourites",
   "notifications.filter.follows": "Follows",
-  "notifications.filter.mentions": "Mentions",
+  "notifications.filter.mentions": "Menciones",
   "notifications.filter.polls": "Poll results",
   "notifications.group": "{count} avisos",
   "poll.closed": "Closed",
@@ -317,11 +327,11 @@
   "privacy.private.short": "Namái siguidores",
   "privacy.public.long": "Post to public timelines",
   "privacy.public.short": "Public",
-  "privacy.unlisted.long": "Do not show in public timelines",
-  "privacy.unlisted.short": "Unlisted",
+  "privacy.unlisted.long": "Nun apaez nes llinies temporales públiques",
+  "privacy.unlisted.short": "Nun llistar",
   "refresh": "Refresh",
   "regeneration_indicator.label": "Cargando…",
-  "regeneration_indicator.sublabel": "Your home feed is being prepared!",
+  "regeneration_indicator.sublabel": "¡Tamos tresnando'l feed d'Aniciu!",
   "relative_time.days": "{number}d",
   "relative_time.hours": "{number}h",
   "relative_time.just_now": "agora",
@@ -330,7 +340,7 @@
   "reply_indicator.cancel": "Encaboxar",
   "report.forward": "Forward to {target}",
   "report.forward_hint": "The account is from another server. Send an anonymized copy of the report there as well?",
-  "report.hint": "The report will be sent to your instance moderators. You can provide an explanation of why you are reporting this account below:",
+  "report.hint": "L'informe va unviase a los llendadores del to sirvidor. Embaxo, pues desplicar por qué informes d'esta cuenta:",
   "report.placeholder": "Comentarios adicionales",
   "report.submit": "Submit",
   "report.target": "Report {target}",
@@ -343,12 +353,13 @@
   "search_popout.tips.user": "usuariu",
   "search_results.accounts": "Xente",
   "search_results.hashtags": "Etiquetes",
-  "search_results.statuses": "Toots",
-  "search_results.statuses_fts_disabled": "Searching toots by their content is not enabled on this Mastodon server.",
-  "search_results.total": "{count, number} {count, plural, one {result} other {results}}",
+  "search_results.statuses": "Barritos",
+  "search_results.statuses_fts_disabled": "Esti sirvidor de Mastodon tien activada la gueta de barritos pol so conteníu.",
+  "search_results.total": "{count, number} {count, plural, one {resultáu} other {resultaos}}",
   "status.admin_account": "Open moderation interface for @{name}",
   "status.admin_status": "Open this status in the moderation interface",
   "status.block": "Bloquiar a @{name}",
+  "status.bookmark": "Bookmark",
   "status.cancel_reblog_private": "Dexar de compartir",
   "status.cannot_reblog": "Esti artículu nun pue compartise",
   "status.copy": "Copy link to status",
@@ -367,13 +378,14 @@
   "status.mute_conversation": "Silenciar la conversación",
   "status.open": "Espander esti estáu",
   "status.pin": "Fixar nel perfil",
-  "status.pinned": "Toot fixáu",
+  "status.pinned": "Barritu fixáu",
   "status.read_more": "Read more",
   "status.reblog": "Compartir",
   "status.reblog_private": "Compartir cola audiencia orixinal",
   "status.reblogged_by": "{name} compartió",
-  "status.reblogs.empty": "Naide nun compartió esti toot entá. Cuando daquién lo faiga, va amosase equí.",
+  "status.reblogs.empty": "Naide nun compartió esti barritu entá. Cuando daquién lo faiga, va amosase equí.",
   "status.redraft": "Desaniciar y reeditar",
+  "status.remove_bookmark": "Remove bookmark",
   "status.reply": "Responder",
   "status.replyAll": "Reply to thread",
   "status.report": "Report @{name}",
@@ -383,7 +395,7 @@
   "status.show_less_all": "Show less for all",
   "status.show_more": "Amosar más",
   "status.show_more_all": "Show more for all",
-  "status.show_thread": "Show thread",
+  "status.show_thread": "Amosar el filu",
   "status.uncached_media_warning": "Not available",
   "status.unmute_conversation": "Unmute conversation",
   "status.unpin": "Desfixar del perfil",
@@ -394,30 +406,33 @@
   "tabs_bar.local_timeline": "Llocal",
   "tabs_bar.notifications": "Avisos",
   "tabs_bar.search": "Search",
-  "time_remaining.days": "{number, plural, one {# day} other {# days}} left",
+  "time_remaining.days": "{number, plural, one {# día} other {# díes}} que queden",
   "time_remaining.hours": "{number, plural, one {# hour} other {# hours}} left",
   "time_remaining.minutes": "{number, plural, one {# minute} other {# minutes}} left",
   "time_remaining.moments": "Moments remaining",
   "time_remaining.seconds": "{number, plural, one {# second} other {# seconds}} left",
-  "trends.count_by_accounts": "{count} {rawCount, plural, one {person} other {people}} talking",
+  "trends.count_by_accounts": "{count} {rawCount, plural, one {persona} other {persones}} falando",
   "trends.trending_now": "Trending now",
   "ui.beforeunload": "El borrador va perdese si coles de Mastodon.",
   "upload_area.title": "Drag & drop to upload",
-  "upload_button.label": "Add media",
+  "upload_button.label": "Add media ({formats})",
   "upload_error.limit": "File upload limit exceeded.",
   "upload_error.poll": "File upload not allowed with polls.",
+  "upload_form.audio_description": "Describe for people with hearing loss",
   "upload_form.description": "Descripción pa discapacitaos visuales",
-  "upload_form.edit": "Edit",
+  "upload_form.edit": "Editar",
   "upload_form.undo": "Desaniciar",
-  "upload_modal.analyzing_picture": "Analyzing picture…",
-  "upload_modal.apply": "Apply",
+  "upload_form.video_description": "Describe for people with hearing loss or visual impairment",
+  "upload_modal.analyzing_picture": "Analizando la semeya…",
+  "upload_modal.apply": "Aplicar",
   "upload_modal.description_placeholder": "A quick brown fox jumps over the lazy dog",
   "upload_modal.detect_text": "Detect text from picture",
-  "upload_modal.edit_media": "Edit media",
+  "upload_modal.edit_media": "Edición",
   "upload_modal.hint": "Click or drag the circle on the preview to choose the focal point which will always be in view on all thumbnails.",
-  "upload_modal.preview_label": "Preview ({ratio})",
-  "upload_progress.label": "Xubiendo...",
+  "upload_modal.preview_label": "Previsualización ({ratio})",
+  "upload_progress.label": "Xubiendo…",
   "video.close": "Zarrar el videu",
+  "video.download": "Download file",
   "video.exit_fullscreen": "Colar de la pantalla completa",
   "video.expand": "Espander el videu",
   "video.fullscreen": "Pantalla completa",
diff --git a/app/javascript/mastodon/locales/bg.json b/app/javascript/mastodon/locales/bg.json
index 12b03796eb7371a3f321c02cb8b0193274ac6420..2e6cf9ef1c33384e27a5603197c68e6d0b50d2b4 100644
--- a/app/javascript/mastodon/locales/bg.json
+++ b/app/javascript/mastodon/locales/bg.json
@@ -1,22 +1,23 @@
 {
   "account.add_or_remove_from_list": "Добави или премахни от списъците",
   "account.badges.bot": "бот",
+  "account.badges.group": "Group",
   "account.block": "Блокирай",
   "account.block_domain": "скрий всичко от (домейн)",
   "account.blocked": "Блокирани",
-  "account.cancel_follow_request": "Cancel follow request",
+  "account.cancel_follow_request": "Откажи искането за следване",
   "account.direct": "Direct Message @{name}",
   "account.domain_blocked": "Скрит домейн",
   "account.edit_profile": "Редактирай профила си",
-  "account.endorse": "Feature on profile",
+  "account.endorse": "Характеристика на профила",
   "account.follow": "Последвай",
   "account.followers": "Последователи",
-  "account.followers.empty": "No one follows this user yet.",
+  "account.followers.empty": "Все още никой не следва този потребител.",
   "account.follows": "Следвам",
-  "account.follows.empty": "This user doesn't follow anyone yet.",
+  "account.follows.empty": "Този потребител все още не следва никого.",
   "account.follows_you": "Твой последовател",
   "account.hide_reblogs": "Hide boosts from @{name}",
-  "account.last_status": "Last active",
+  "account.last_status": "Последно активен/а",
   "account.link_verified_on": "Ownership of this link was checked on {date}",
   "account.locked_info": "This account privacy status is set to locked. The owner manually reviews who can follow them.",
   "account.media": "Media",
@@ -51,6 +52,7 @@
   "bundle_modal_error.message": "Something went wrong while loading this component.",
   "bundle_modal_error.retry": "Try again",
   "column.blocks": "Blocked users",
+  "column.bookmarks": "Bookmarks",
   "column.community": "Local timeline",
   "column.direct": "Direct messages",
   "column.directory": "Browse profiles",
@@ -82,6 +84,8 @@
   "compose_form.poll.duration": "Poll duration",
   "compose_form.poll.option_placeholder": "Choice {number}",
   "compose_form.poll.remove_option": "Remove this choice",
+  "compose_form.poll.switch_to_multiple": "Change poll to allow multiple choices",
+  "compose_form.poll.switch_to_single": "Change poll to allow for a single choice",
   "compose_form.publish": "Раздумай",
   "compose_form.publish_loud": "{publish}!",
   "compose_form.sensitive.hide": "Mark media as sensitive",
@@ -138,6 +142,7 @@
   "empty_column.account_timeline": "No toots here!",
   "empty_column.account_unavailable": "Profile unavailable",
   "empty_column.blocks": "You haven't blocked any users yet.",
+  "empty_column.bookmarked_statuses": "You don't have any bookmarked toots yet. When you bookmark one, it will show up here.",
   "empty_column.community": "The local timeline is empty. Write something publicly to get the ball rolling!",
   "empty_column.direct": "You don't have any direct messages yet. When you send or receive one, it will show up here.",
   "empty_column.domain_blocks": "There are no hidden domains yet.",
@@ -224,6 +229,7 @@
   "keyboard_shortcuts.muted": "to open muted users list",
   "keyboard_shortcuts.my_profile": "to open your profile",
   "keyboard_shortcuts.notifications": "to open notifications column",
+  "keyboard_shortcuts.open_media": "to open media",
   "keyboard_shortcuts.pinned": "to open pinned toots list",
   "keyboard_shortcuts.profile": "to open author's profile",
   "keyboard_shortcuts.reply": "to reply",
@@ -256,6 +262,7 @@
   "mute_modal.hide_notifications": "Hide notifications from this user?",
   "navigation_bar.apps": "Mobile apps",
   "navigation_bar.blocks": "Blocked users",
+  "navigation_bar.bookmarks": "Bookmarks",
   "navigation_bar.community_timeline": "Local timeline",
   "navigation_bar.compose": "Compose new toot",
   "navigation_bar.direct": "Direct messages",
@@ -278,7 +285,9 @@
   "navigation_bar.security": "Security",
   "notification.favourite": "{name} хареса твоята публикация",
   "notification.follow": "{name} те последва",
+  "notification.follow_request": "{name} has requested to follow you",
   "notification.mention": "{name} те спомена",
+  "notification.own_poll": "Your poll has ended",
   "notification.poll": "A poll you have voted in has ended",
   "notification.reblog": "{name} сподели твоята публикация",
   "notifications.clear": "Clear notifications",
@@ -289,6 +298,7 @@
   "notifications.column_settings.filter_bar.category": "Quick filter bar",
   "notifications.column_settings.filter_bar.show": "Show",
   "notifications.column_settings.follow": "Нови последователи:",
+  "notifications.column_settings.follow_request": "New follow requests:",
   "notifications.column_settings.mention": "Споменавания:",
   "notifications.column_settings.poll": "Poll results:",
   "notifications.column_settings.push": "Push notifications",
@@ -349,6 +359,7 @@
   "status.admin_account": "Open moderation interface for @{name}",
   "status.admin_status": "Open this status in the moderation interface",
   "status.block": "Block @{name}",
+  "status.bookmark": "Bookmark",
   "status.cancel_reblog_private": "Unboost",
   "status.cannot_reblog": "This post cannot be boosted",
   "status.copy": "Copy link to status",
@@ -374,6 +385,7 @@
   "status.reblogged_by": "{name} сподели",
   "status.reblogs.empty": "No one has boosted this toot yet. When someone does, they will show up here.",
   "status.redraft": "Delete & re-draft",
+  "status.remove_bookmark": "Remove bookmark",
   "status.reply": "Отговор",
   "status.replyAll": "Reply to thread",
   "status.report": "Report @{name}",
@@ -406,9 +418,11 @@
   "upload_button.label": "Добави медия",
   "upload_error.limit": "File upload limit exceeded.",
   "upload_error.poll": "File upload not allowed with polls.",
+  "upload_form.audio_description": "Describe for people with hearing loss",
   "upload_form.description": "Describe for the visually impaired",
   "upload_form.edit": "Edit",
   "upload_form.undo": "Отмяна",
+  "upload_form.video_description": "Describe for people with hearing loss or visual impairment",
   "upload_modal.analyzing_picture": "Analyzing picture…",
   "upload_modal.apply": "Apply",
   "upload_modal.description_placeholder": "A quick brown fox jumps over the lazy dog",
@@ -418,6 +432,7 @@
   "upload_modal.preview_label": "Preview ({ratio})",
   "upload_progress.label": "Uploading…",
   "video.close": "Close video",
+  "video.download": "Download file",
   "video.exit_fullscreen": "Exit full screen",
   "video.expand": "Expand video",
   "video.fullscreen": "Full screen",
diff --git a/app/javascript/mastodon/locales/bn.json b/app/javascript/mastodon/locales/bn.json
index 67501844d1eee52857d93038faa6c21c828fa7ce..e5d13fd539165881fe39f3359970f73d538ad457 100644
--- a/app/javascript/mastodon/locales/bn.json
+++ b/app/javascript/mastodon/locales/bn.json
@@ -1,60 +1,62 @@
 {
-  "account.add_or_remove_from_list": "তালিকাতে আরো যুক্ত বা মুছে ফেলুন",
-  "account.badges.bot": "রোবট",
-  "account.block": "@{name} কে বন্ধ করুন",
-  "account.block_domain": "{domain} থেকে সব সরিয়ে ফেলুন",
-  "account.blocked": "বন্ধ করা হয়েছে",
-  "account.cancel_follow_request": "Cancel follow request",
-  "account.direct": "@{name} এর কাছে সরকারি লেখা পাঠাতে",
-  "account.domain_blocked": "ওয়েবসাইট সরিয়ে ফেলা হয়েছে",
-  "account.edit_profile": "নিজের পাতা সম্পাদনা করতে",
-  "account.endorse": "আপনার নিজের পাতায় দেখাতে",
+  "account.add_or_remove_from_list": "তালিকাতে যুক্ত বা অপসারণ করুন",
+  "account.badges.bot": "বট",
+  "account.badges.group": "Group",
+  "account.block": "@{name} কে ব্লক করুন",
+  "account.block_domain": "{domain} থেকে সব আড়াল করুন",
+  "account.blocked": "অবরুদ্ধ",
+  "account.cancel_follow_request": "অনুসরণ অনুরোধ বাতিল করুন",
+  "account.direct": "@{name} কে সরাসরি বার্তা",
+  "account.domain_blocked": "ডোমেন গোপন করুন",
+  "account.edit_profile": "প্রোফাইল পরিবর্তন করুন",
+  "account.endorse": "নিজের পাতায় দেখান",
   "account.follow": "অনুসরণ করুন",
-  "account.followers": "অনুসরণকারক",
-  "account.followers.empty": "এই ব্যবহারকারীকে কেও এখনো অনুসরণ করে না।",
+  "account.followers": "অনুসরণকারী",
+  "account.followers.empty": "এই সদস্যকে এখনো কেউ অনুসরণ করে না।.",
   "account.follows": "যাদেরকে অনুসরণ করেন",
-  "account.follows.empty": "এই ব্যবহারকারী কাওকে এখনো অনুসরণ করেন না।",
+  "account.follows.empty": "এই সদস্য কাওকে এখনো অনুসরণ করেন না.",
   "account.follows_you": "আপনাকে অনুসরণ করে",
-  "account.hide_reblogs": "@{name}র সমর্থনগুলি সরিয়ে ফেলুন",
-  "account.last_status": "Last active",
-  "account.link_verified_on": "এই লিংকের মালিকানা চেক করা হয়েছে {date} তারিকে",
+  "account.hide_reblogs": "@{name}'র সমর্থনগুলি লুকিয়ে ফেলুন",
+  "account.last_status": "শেষ সক্রিয় ছিল",
+  "account.link_verified_on": "এই লিংকের মালিকানা চেক করা হয়েছে {date} তারিখে",
   "account.locked_info": "এই নিবন্ধনের গোপনীয়তার ক্ষেত্র তালা দেওয়া আছে। নিবন্ধনকারী অনুসরণ করার অনুমতি যাদেরকে দেবেন, শুধু তারাই অনুসরণ করতে পারবেন।",
-  "account.media": "ছবি বা ভিডিও",
-  "account.mention": "@{name} কে উল্লেখ করতে",
-  "account.moved_to": "{name} চলে গেছে এখানে:",
-  "account.mute": "@{name} সব কার্যক্রম আপনার সময়রেখা থেকে সরিয়ে ফেলতে",
-  "account.mute_notifications": "@{name}র প্রজ্ঞাপন আপনার কাছ থেকে সরিয়ে ফেলুন",
-  "account.muted": "সরানো আছে",
-  "account.never_active": "Never",
+  "account.media": "মিডিয়া",
+  "account.mention": "@{name} কে উল্লেখ করুন",
+  "account.moved_to": "{name} কে এখানে সরানো হয়েছে:",
+  "account.mute": "@{name} কে নিঃশব্দ করুন",
+  "account.mute_notifications": "@{name} র প্রজ্ঞাপন আপনার কাছে নিঃশব্দ করুন",
+  "account.muted": "নিঃশব্দ",
+  "account.never_active": "কখনও নয়",
   "account.posts": "টুট",
   "account.posts_with_replies": "টুট এবং মতামত",
-  "account.report": "@{name} কে রিপোর্ট করতে",
-  "account.requested": "অনুমতির অপেক্ষায় আছে। অনুসরণ করার অনুরোধ বাতিল করতে এখানে ক্লিক করুন",
-  "account.share": "@{name}র পাতা অন্যদের দেখান",
-  "account.show_reblogs": "@{name}র সমর্থনগুলো দেখুন",
-  "account.unblock": "@{name}র কার্যকলাপ আবার দেখুন",
-  "account.unblock_domain": "{domain}থেকে আবার দেখুন",
-  "account.unendorse": "আপনার নিজের পাতায় এটা না দেখাতে",
+  "account.report": "@{name} কে রিপোর্ট করুন",
+  "account.requested": "অনুমতির অপেক্ষা। অনুসরণ করার অনুরোধ বাতিল করতে এখানে ক্লিক করুন",
+  "account.share": "@{name} র প্রোফাইল অন্যদের দেখান",
+  "account.show_reblogs": "@{name} র সমর্থনগুলো দেখান",
+  "account.unblock": "@{name} র কার্যকলাপ দেখুন",
+  "account.unblock_domain": "{domain} কে আবার দেখুন",
+  "account.unendorse": "আপনার নিজের পাতায় এটা দেখবেন না",
   "account.unfollow": "অনুসরণ না করতে",
-  "account.unmute": "@{name}র কার্যকলাপ আবার দেখুন",
-  "account.unmute_notifications": "@{name}র প্রজ্ঞাপন দেওয়ার অনুমতি দিন",
-  "alert.rate_limited.message": "Please retry after {retry_time, time, medium}.",
-  "alert.rate_limited.title": "Rate limited",
-  "alert.unexpected.message": "অপ্রত্যাশিত একটি সমস্যা হয়েছে।",
+  "account.unmute": "@{name} র কার্যকলাপ আবার দেখুন",
+  "account.unmute_notifications": "@{name} র প্রজ্ঞাপন দেখুন",
+  "alert.rate_limited.message": "{retry_time, time, medium} -এর পরে আবার প্রচেষ্টা করুন।",
+  "alert.rate_limited.title": "হার সীমিত",
+  "alert.unexpected.message": "সমস্যা অপ্রত্যাশিত.",
   "alert.unexpected.title": "ওহো!",
-  "autosuggest_hashtag.per_week": "{count} per week",
-  "boost_modal.combo": "পরেরবার আপনি {combo} চাপ দিলে এটার শেষে চলে যেতে পারবেন",
-  "bundle_column_error.body": "এই অংশটি দেখতে যেয়ে কোনো সমস্যা হয়েছে।",
+  "autosuggest_hashtag.per_week": "প্রতি সপ্তাহে {count}",
+  "boost_modal.combo": "পরেরবার আপনি {combo} টিপলে এটি আর আসবে না",
+  "bundle_column_error.body": "এই অংশটি দেখতে যেয়ে কোনো সমস্যা হয়েছে।.",
   "bundle_column_error.retry": "আবার চেষ্টা করুন",
-  "bundle_column_error.title": "নেটওয়ার্কের সমস্যা হচ্ছে",
+  "bundle_column_error.title": "নেটওয়ার্কের সমস্যা",
   "bundle_modal_error.close": "বন্ধ করুন",
-  "bundle_modal_error.message": "এই অংশটি দেখাতে যেয়ে কোনো সমস্যা হয়েছে।",
+  "bundle_modal_error.message": "এই অংশটি দেখাতে যেয়ে কোনো সমস্যা হয়েছে।.",
   "bundle_modal_error.retry": "আবার চেষ্টা করুন",
-  "column.blocks": "যাদের বন্ধ করে রাখা হয়েছে",
+  "column.blocks": "যাদের ব্লক করা হয়েছে",
+  "column.bookmarks": "Bookmarks",
   "column.community": "স্থানীয় সময়সারি",
   "column.direct": "সরাসরি লেখা",
-  "column.directory": "Browse profiles",
-  "column.domain_blocks": "সরিয়ে ফেলা ওয়েবসাইট",
+  "column.directory": "প্রোফাইল ব্রাউজ করুন",
+  "column.domain_blocks": "লুকোনো ডোমেনগুলি",
   "column.favourites": "পছন্দের গুলো",
   "column.follow_requests": "অনুসরণের অনুমতি চেয়েছে যারা",
   "column.home": "বাড়ি",
@@ -82,28 +84,30 @@
   "compose_form.poll.duration": "ভোটগ্রহনের সময়",
   "compose_form.poll.option_placeholder": "বিকল্প {number}",
   "compose_form.poll.remove_option": "এই বিকল্পটি মুছে ফেলুন",
+  "compose_form.poll.switch_to_multiple": "Change poll to allow multiple choices",
+  "compose_form.poll.switch_to_single": "Change poll to allow for a single choice",
   "compose_form.publish": "টুট",
   "compose_form.publish_loud": "{publish}!",
   "compose_form.sensitive.hide": "এই ছবি বা ভিডিওটি সংবেদনশীল হিসেবে চিহ্নিত করতে",
   "compose_form.sensitive.marked": "এই ছবি বা ভিডিওটি সংবেদনশীল হিসেবে চিহ্নিত করা হয়েছে",
   "compose_form.sensitive.unmarked": "এই ছবি বা ভিডিওটি সংবেদনশীল হিসেবে চিহ্নিত করা হয়নি",
-  "compose_form.spoiler.marked": "লেখাটি সাবধানতার পেছনে লুকানো আছে",
+  "compose_form.spoiler.marked": "সতর্কতার পিছনে লেখানটি লুকানো আছে",
   "compose_form.spoiler.unmarked": "লেখাটি লুকানো নেই",
   "compose_form.spoiler_placeholder": "আপনার লেখা দেখার সাবধানবাণী লিখুন",
   "confirmation_modal.cancel": "বাতিল করুন",
-  "confirmations.block.block_and_report": "বন্ধ করুন এবং রিপোর্ট করুন",
-  "confirmations.block.confirm": "বন্ধ করুন",
-  "confirmations.block.message": "আপনি কি নিশ্চিত {name} কে বন্ধ করতে চান ?",
+  "confirmations.block.block_and_report": "ব্লক করুন এবং রিপোর্ট করুন",
+  "confirmations.block.confirm": "ব্লক করুন",
+  "confirmations.block.message": "আপনি কি নিশ্চিত {name} কে ব্লক করতে চান?",
   "confirmations.delete.confirm": "মুছে ফেলুন",
   "confirmations.delete.message": "আপনি কি নিশ্চিত যে এই লেখাটি মুছে ফেলতে চান ?",
   "confirmations.delete_list.confirm": "মুছে ফেলুন",
   "confirmations.delete_list.message": "আপনি কি নিশ্চিত যে আপনি এই তালিকাটি স্থায়িভাবে মুছে ফেলতে চান ?",
-  "confirmations.domain_block.confirm": "এই ওয়েবসাইট থেকে সব সরান",
-  "confirmations.domain_block.message": "আপনি কি সত্যি সত্যি নিশ্চিত যে {domain} ওয়েবসাইট থেকে সব সরাতে চান ? সাধারণত কিছু লক্ষ্যবস্তু বন্ধ এবং সরানোযা যথেষ্ট। নিশ্চিত করলে ওই ওয়েবসাইট থেকে কোনোকিছু কোনখানে দেখবেন না। যারা আপনাকে অনুসরণ করে ওই ওয়েবসাইট থেকে তাদেরকেও মুছে ফেলা হবে।",
-  "confirmations.logout.confirm": "Log out",
-  "confirmations.logout.message": "Are you sure you want to log out?",
+  "confirmations.domain_block.confirm": "এই ডোমেন থেকে সব লুকান",
+  "confirmations.domain_block.message": "আপনি কি সত্যিই সত্যই নিশ্চিত যে আপনি পুরো {domain}'টি ব্লক করতে চান? বেশিরভাগ ক্ষেত্রে কয়েকটি লক্ষ্যযুক্ত ব্লক বা নীরবতা যথেষ্ট এবং পছন্দসই। আপনি কোনও পাবলিক টাইমলাইন বা আপনার বিজ্ঞপ্তিগুলিতে সেই ডোমেন থেকে সামগ্রী দেখতে পাবেন না। সেই ডোমেন থেকে আপনার অনুসরণকারীদের সরানো হবে।",
+  "confirmations.logout.confirm": "প্রস্থান",
+  "confirmations.logout.message": "আপনি লগ আউট করতে চান?",
   "confirmations.mute.confirm": "সরিয়ে ফেলুন",
-  "confirmations.mute.explanation": "This will hide posts from them and posts mentioning them, but it will still allow them to see your posts and follow you.",
+  "confirmations.mute.explanation": "এটি তাদের কাছ থেকে পোস্ট এবং তাদেরকে মেনশন করা পোস্টগুলি হাইড করবে, তবুও তাদেরকে এটি আপনার পোস্ট গুলো দেখতে দিবে ও তারা আপনাকে অনুসরন করতে পারবে।.",
   "confirmations.mute.message": "আপনি কি নিশ্চিত {name} সরিয়ে ফেলতে চান ?",
   "confirmations.redraft.confirm": "মুছে ফেলুন এবং আবার সম্পাদন করুন",
   "confirmations.redraft.message": "আপনি কি নিশ্চিত এটি মুছে ফেলে  এবং আবার সম্পাদন করতে চান ? এটাতে যা পছন্দিত, সমর্থন বা মতামত আছে সেগুলো নতুন লেখার সাথে যুক্ত থাকবে না।",
@@ -111,14 +115,14 @@
   "confirmations.reply.message": "এখন মতামত লিখতে গেলে আপনার এখন যেটা লিখছেন সেটা মুছে যাবে। আপনি নি নিশ্চিত এটা করতে চান ?",
   "confirmations.unfollow.confirm": "অনুসরণ করা বাতিল করতে",
   "confirmations.unfollow.message": "আপনি কি নিশ্চিত {name} কে আর অনুসরণ করতে চান না ?",
-  "conversation.delete": "Delete conversation",
-  "conversation.mark_as_read": "Mark as read",
-  "conversation.open": "View conversation",
-  "conversation.with": "With {names}",
-  "directory.federated": "From known fediverse",
-  "directory.local": "From {domain} only",
-  "directory.new_arrivals": "New arrivals",
-  "directory.recently_active": "Recently active",
+  "conversation.delete": "কথোপকথন মুছে ফেলুন",
+  "conversation.mark_as_read": "পঠিত হিসেবে চিহ্নিত করুন",
+  "conversation.open": "কথপোকথন দেখান",
+  "conversation.with": "{names} এর সঙ্গে",
+  "directory.federated": "পরিচিত ফেডিভারসের থেকে",
+  "directory.local": "শুধু {domain} থেকে",
+  "directory.new_arrivals": "নতুন আগত",
+  "directory.recently_active": "সম্প্রতি সক্রিয়",
   "embed.instructions": "এই লেখাটি আপনার ওয়েবসাইটে যুক্ত করতে নিচের কোডটি বেবহার করুন।",
   "embed.preview": "সেটা দেখতে এরকম হবে:",
   "emoji_button.activity": "কার্যকলাপ",
@@ -137,25 +141,26 @@
   "emoji_button.travel": "ভ্রমণ এবং স্থান",
   "empty_column.account_timeline": "এখানে কোনো টুট নেই!",
   "empty_column.account_unavailable": "নিজস্ব পাতা নেই",
-  "empty_column.blocks": "আপনি কোনো ব্যবহারকারীদের বন্ধ করেন নি।",
+  "empty_column.blocks": "আপনি কোনো ব্যবহারকারীদের ব্লক করেন নি।",
+  "empty_column.bookmarked_statuses": "You don't have any bookmarked toots yet. When you bookmark one, it will show up here.",
   "empty_column.community": "স্থানীয় সময়রেখাতে কিছু নেই। প্রকাশ্যভাবে কিছু লিখে লেখালেখির উদ্বোধন করে ফেলুন!",
   "empty_column.direct": "আপনার কাছে সরাসরি পাঠানো কোনো লেখা নেই। যদি কেও পাঠায়, সেটা এখানে দেখা যাবে।",
-  "empty_column.domain_blocks": "এখনো কোনো সরানো ওয়েবসাইট নেই।",
+  "empty_column.domain_blocks": "এখনও কোনও লুকানো ডোমেন নেই।",
   "empty_column.favourited_statuses": "আপনার পছন্দের কোনো টুট এখনো নেই। আপনি কোনো লেখা পছন্দের হিসেবে চিহ্নিত করলে এখানে পাওয়া যাবে।",
   "empty_column.favourites": "কেও এখনো এটাকে পছন্দের টুট হিসেবে চিহ্নিত করেনি। যদি করে, তখন তাদের এখানে পাওয়া যাবে।",
   "empty_column.follow_requests": "আপনার এখনো কোনো অনুসরণের আবেদন পাঠানো নেই। যদি পাঠায়, এখানে পাওয়া যাবে।",
   "empty_column.hashtag": "এই হেসটাগে এখনো কিছু নেই।",
-  "empty_column.home": "আপনার বাড়ির সময়রেখা এখনো খালি!  {public}এ ঘুরে আসুন অথবা অনুসন্ধান বেবহার করে শুরু করতে পারেন এবং অন্য ব্যবহারকারীদের সাথে সাক্ষাৎ করতে পারেন।",
+  "empty_column.home": "আপনার বাড়ির সময়রেখা এখনো খালি!  {public} এ ঘুরে আসুন অথবা অনুসন্ধান বেবহার করে শুরু করতে পারেন এবং অন্য ব্যবহারকারীদের সাথে সাক্ষাৎ করতে পারেন।",
   "empty_column.home.public_timeline": "প্রকাশ্য সময়রেখা",
   "empty_column.list": "এই তালিকাতে এখনো কিছু নেই. যখন এই তালিকায় থাকা ব্যবহারকারী নতুন কিছু লিখবে, সেগুলো এখানে পাওয়া যাবে।",
   "empty_column.lists": "আপনার এখনো কোনো তালিকা তৈরী নেই। যদি বা যখন তৈরী করেন, সেগুলো এখানে পাওয়া যাবে।",
-  "empty_column.mutes": "আপনি এখনো কোনো ব্যবহারকারীকে সরাননি।",
+  "empty_column.mutes": "আপনি এখনো কোনো ব্যবহারকারীকে নিঃশব্দ করেননি।",
   "empty_column.notifications": "আপনার এখনো কোনো প্রজ্ঞাপন নেই। কথোপকথন শুরু করতে,  অন্যদের সাথে মেলামেশা করতে পারেন।",
   "empty_column.public": "এখানে এখনো কিছু নেই! প্রকাশ্য ভাবে কিছু লিখুন বা অন্য সার্ভার থেকে কাওকে অনুসরণ করে এই জায়গা ভরে ফেলুন",
-  "error.unexpected_crash.explanation": "Due to a bug in our code or a browser compatibility issue, this page could not be displayed correctly.",
-  "error.unexpected_crash.next_steps": "Try refreshing the page. If that does not help, you may still be able to use Mastodon through a different browser or native app.",
-  "errors.unexpected_crash.copy_stacktrace": "Copy stacktrace to clipboard",
-  "errors.unexpected_crash.report_issue": "Report issue",
+  "error.unexpected_crash.explanation": "আমাদের কোড বা ব্রাউজারের সামঞ্জস্য ইস্যুতে একটি বাগের কারণে এই পৃষ্ঠাটি সঠিকভাবে প্রদর্শিত করা যায় নি।",
+  "error.unexpected_crash.next_steps": "পাতাটি রিফ্রেশ করে চেষ্টা করুন। তবুও যদি না হয়, তবে আপনি অন্য একটি ব্রাউজার অথবা আপনার ডিভাইসের জন্যে এপের মাধ্যমে মাস্টডন ব্যাবহার করতে পারবেন।.",
+  "errors.unexpected_crash.copy_stacktrace": "স্টেকট্রেস ক্লিপবোর্ডে কপি করুন",
+  "errors.unexpected_crash.report_issue": "সমস্যার প্রতিবেদন করুন",
   "federation.change": "Adjust status federation",
   "federation.federated.long": "Allow toot to reach other instances",
   "federation.federated.short": "Federated",
@@ -185,7 +190,7 @@
   "home.column_settings.show_replies": "মতামত দেখান",
   "intervals.full.days": "{number, plural, one {# day} other {# days}}",
   "intervals.full.hours": "{number, plural, one {# ঘটা} other {# ঘটা}}",
-  "intervals.full.minutes": "{number, plural, one {# minute} other {# minutes}}",
+  "intervals.full.minutes": "{number, plural, one {# মিনিট} other {# মিনিট}}",
   "introduction.federation.action": "পরবর্তী",
   "introduction.federation.federated.headline": "যুক্তবিশ্ব",
   "introduction.federation.federated.text": "অন্যান্য যুক্তবিশ্বের সার্ভারের লেখাগুলি যুক্তবিশ্বের সময়রেখাতে আসবে ।",
@@ -204,7 +209,7 @@
   "introduction.welcome.headline": "প্রথম ধাপ",
   "introduction.welcome.text": "যুক্তবিশ্বে স্বাগতম! কিছুক্ষনের মধ্যেই আপনি আপনার লেখা বিভিন্ন সার্ভারে সম্প্রচার করতে পারবেন। কিন্তু মনে রাখবে যে এটা একটা বিশেষ সার্ভার, {domain} কারণ এখানে আপনার নিজেস্ব পাতা রাখা হচ্ছে।",
   "keyboard_shortcuts.back": "পেছনে যেতে",
-  "keyboard_shortcuts.blocked": "বন্ধ করা ব্যবহারকারীদের তালিকা দেখতে",
+  "keyboard_shortcuts.blocked": "ব্লক করা ব্যবহারকারীদের তালিকা খুলতে",
   "keyboard_shortcuts.boost": "সমর্থন করতে",
   "keyboard_shortcuts.column": "কোনো কলামএ কোনো লেখা ফোকাস করতে",
   "keyboard_shortcuts.compose": "লেখা সম্পদনার জায়গায় ফোকাস করতে",
@@ -224,6 +229,7 @@
   "keyboard_shortcuts.muted": "বন্ধ করা ব্যবহারকারীদের তালিকা খুলতে",
   "keyboard_shortcuts.my_profile": "আপনার নিজের পাতা দেখতে",
   "keyboard_shortcuts.notifications": "প্রজ্ঞাপনের কলাম খুলতে",
+  "keyboard_shortcuts.open_media": "to open media",
   "keyboard_shortcuts.pinned": "পিন দেওয়া টুটের তালিকা খুলতে",
   "keyboard_shortcuts.profile": "লেখকের পাতা দেখতে",
   "keyboard_shortcuts.reply": "মতামত দিতে",
@@ -248,7 +254,7 @@
   "lists.new.title_placeholder": "তালিকার নতুন শিরোনাম দিতে",
   "lists.search": "যাদের অনুসরণ করেন তাদের ভেতরে খুঁজুন",
   "lists.subheading": "আপনার তালিকা",
-  "load_pending": "{count, plural, one {# new item} other {# new items}}",
+  "load_pending": "{count, plural, one {# নতুন জিনিস} other {# নতুন জিনিস}}",
   "loading_indicator.label": "আসছে...",
   "media_gallery.toggle_visible": "দৃশ্যতার অবস্থা বদলান",
   "missing_indicator.label": "খুঁজে পাওয়া যায়নি",
@@ -256,21 +262,22 @@
   "mute_modal.hide_notifications": "এই ব্যবহারকারীর প্রজ্ঞাপন বন্ধ করবেন ?",
   "navigation_bar.apps": "মোবাইলের আপ্প",
   "navigation_bar.blocks": "বন্ধ করা ব্যবহারকারী",
+  "navigation_bar.bookmarks": "Bookmarks",
   "navigation_bar.community_timeline": "স্থানীয় সময়রেখা",
   "navigation_bar.compose": "নতুন টুট লিখুন",
   "navigation_bar.direct": "সরাসরি লেখাগুলি",
   "navigation_bar.discover": "ঘুরে দেখুন",
-  "navigation_bar.domain_blocks": "বন্ধ করা ওয়েবসাইট",
+  "navigation_bar.domain_blocks": "লুকানো ডোমেনগুলি",
   "navigation_bar.edit_profile": "নিজের পাতা সম্পাদনা করতে",
   "navigation_bar.favourites": "পছন্দের",
   "navigation_bar.filters": "বন্ধ করা শব্দ",
   "navigation_bar.follow_requests": "অনুসরণের অনুরোধগুলি",
-  "navigation_bar.follows_and_followers": "যাদেরকে অনুসরণ করেন এবং যারা তাকে অনুসরণ করে",
+  "navigation_bar.follows_and_followers": "অনুসরণ এবং অনুসরণকারী",
   "navigation_bar.info": "এই সার্ভার সম্পর্কে",
   "navigation_bar.keyboard_shortcuts": "হটকীগুলি",
   "navigation_bar.lists": "তালিকাগুলো",
   "navigation_bar.logout": "বাইরে যান",
-  "navigation_bar.mutes": "যেসব বেভহারকারীদের কার্যক্রম বন্ধ করা আছে",
+  "navigation_bar.mutes": "যাদের কার্যক্রম দেখা বন্ধ আছে",
   "navigation_bar.personal": "নিজস্ব",
   "navigation_bar.pins": "পিন দেওয়া টুট",
   "navigation_bar.preferences": "পছন্দসমূহ",
@@ -278,7 +285,9 @@
   "navigation_bar.security": "নিরাপত্তা",
   "notification.favourite": "{name} আপনার কার্যক্রম পছন্দ করেছেন",
   "notification.follow": "{name} আপনাকে অনুসরণ করেছেন",
+  "notification.follow_request": "{name} has requested to follow you",
   "notification.mention": "{name} আপনাকে উল্লেখ করেছেন",
+  "notification.own_poll": "আপনার পোল শেষ হয়েছে",
   "notification.poll": "আপনি ভোট দিয়েছিলেন এমন এক  নির্বাচনের ভোটের সময় শেষ হয়েছে",
   "notification.reblog": "{name} আপনার কার্যক্রমে সমর্থন দেখিয়েছেন",
   "notifications.clear": "প্রজ্ঞাপনগুলো মুছে ফেলতে",
@@ -289,6 +298,7 @@
   "notifications.column_settings.filter_bar.category": "সংক্ষিপ্ত ছাঁকনি অংশ",
   "notifications.column_settings.filter_bar.show": "দেখানো",
   "notifications.column_settings.follow": "নতুন অনুসরণকারীরা:",
+  "notifications.column_settings.follow_request": "New follow requests:",
   "notifications.column_settings.mention": "প্রজ্ঞাপনগুলো:",
   "notifications.column_settings.poll": "নির্বাচনের ফলাফল:",
   "notifications.column_settings.push": "পুশ প্রজ্ঞাপনগুলি",
@@ -304,10 +314,10 @@
   "notifications.group": "{count} প্রজ্ঞাপন",
   "poll.closed": "বন্ধ",
   "poll.refresh": "বদলেছে কিনা দেখতে",
-  "poll.total_people": "{count, plural, one {# person} other {# people}}",
+  "poll.total_people": "{count, plural, one {# ব্যক্তি} other {# ব্যক্তি}}",
   "poll.total_votes": "{count, plural, one {# ভোট} other {# ভোট}}",
   "poll.vote": "ভোট",
-  "poll.voted": "You voted for this answer",
+  "poll.voted": "আপনি এই উত্তরের পক্ষে ভোট দিয়েছেন",
   "poll_button.add_poll": "একটা নির্বাচন যোগ করতে",
   "poll_button.remove_poll": "নির্বাচন বাদ দিতে",
   "privacy.change": "লেখার গোপনীয়তা অবস্থা ঠিক করতে",
@@ -319,13 +329,13 @@
   "privacy.public.short": "সর্বজনীন প্রকাশ্য",
   "privacy.unlisted.long": "সর্বজনীন প্রকাশ্য সময়রেখাতে না দেখাতে",
   "privacy.unlisted.short": "প্রকাশ্য নয়",
-  "refresh": "Refresh",
+  "refresh": "সতেজ করা",
   "regeneration_indicator.label": "আসছে…",
   "regeneration_indicator.sublabel": "আপনার বাড়ির-সময়রেখা প্রস্তূত করা হচ্ছে!",
   "relative_time.days": "{number} দিন",
   "relative_time.hours": "{number} ঘন্টা",
   "relative_time.just_now": "এখন",
-  "relative_time.minutes": "{number}ম",
+  "relative_time.minutes": "{number}মিঃ",
   "relative_time.seconds": "{number} সেকেন্ড",
   "reply_indicator.cancel": "বাতিল করতে",
   "report.forward": "এটা আরো পাঠান {target} তে",
@@ -334,7 +344,7 @@
   "report.placeholder": "অন্য কোনো মন্তব্য",
   "report.submit": "জমা দিন",
   "report.target": "{target} রিপোর্ট করুন",
-  "search.placeholder": "খুঁজতে",
+  "search.placeholder": "অনুসন্ধান",
   "search_popout.search_format": "বিস্তারিতভাবে খোঁজার পদ্ধতি",
   "search_popout.tips.full_text": "সাধারণ লেখা দিয়ে খুঁজলে বের হবে সেরকম আপনার লেখা, পছন্দের লেখা, সমর্থন করা লেখা, আপনাকে উল্লেখকরা কোনো লেখা,  যা খুঁজছেন সেরকম কোনো ব্যবহারকারীর নাম বা কোনো হ্যাশট্যাগগুলো।",
   "search_popout.tips.hashtag": "হ্যাশট্যাগ",
@@ -344,11 +354,12 @@
   "search_results.accounts": "মানুষ",
   "search_results.hashtags": "হ্যাশট্যাগগুলি",
   "search_results.statuses": "টুট",
-  "search_results.statuses_fts_disabled": "Searching toots by their content is not enabled on this Mastodon server.",
+  "search_results.statuses_fts_disabled": "তাদের সামগ্রী দ্বারা টুটগুলি অনুসন্ধান এই মস্তোডন সার্ভারে সক্ষম নয়।",
   "search_results.total": "{count, number} {count, plural, one {ফলাফল} other {ফলাফল}}",
   "status.admin_account": "@{name} র জন্য পরিচালনার ইন্টারফেসে ঢুকুন",
   "status.admin_status": "যায় লেখাটি পরিচালনার ইন্টারফেসে খুলুন",
-  "status.block": "@{name}কে বন্ধ করুন",
+  "status.block": "@{name} কে ব্লক করুন",
+  "status.bookmark": "Bookmark",
   "status.cancel_reblog_private": "সমর্থন বাতিল করতে",
   "status.cannot_reblog": "এটিতে সমর্থন দেওয়া যাবেনা",
   "status.copy": "লেখাটির লিংক কপি করতে",
@@ -374,6 +385,7 @@
   "status.reblogged_by": "{name} সমর্থন দিয়েছে",
   "status.reblogs.empty": "এখনো কেও এটাতে সমর্থন দেয়নি। যখন কেও দেয়, সেটা তখন এখানে দেখা যাবে।",
   "status.redraft": "মুছে আবার নতুন করে লিখতে",
+  "status.remove_bookmark": "Remove bookmark",
   "status.reply": "মতামত জানাতে",
   "status.replyAll": "লেখাযুক্ত সবার কাছে মতামত জানাতে",
   "status.report": "@{name} কে রিপোর্ট করতে",
@@ -384,7 +396,7 @@
   "status.show_more": "আরো দেখাতে",
   "status.show_more_all": "সবগুলোতে আরো দেখতে",
   "status.show_thread": "আলোচনা দেখতে",
-  "status.uncached_media_warning": "Not available",
+  "status.uncached_media_warning": "পাওয়া যাচ্ছে না",
   "status.unmute_conversation": "আলোচনার প্রজ্ঞাপন চালু করতে",
   "status.unpin": "নিজের পাতা থেকে পিন করে রাখাটির পিন খুলতে",
   "suggestions.dismiss": "সাহায্যের পরামর্শগুলো সরাতে",
@@ -393,31 +405,34 @@
   "tabs_bar.home": "বাড়ি",
   "tabs_bar.local_timeline": "স্থানীয়",
   "tabs_bar.notifications": "প্রজ্ঞাপনগুলো",
-  "tabs_bar.search": "খুঁজতে",
+  "tabs_bar.search": "অনুসন্ধান",
   "time_remaining.days": "{number, plural, one {# day} other {# days}} বাকি আছে",
   "time_remaining.hours": "{number, plural, one {# hour} other {# hours}} বাকি আছে",
-  "time_remaining.minutes": "{number, plural, one {# minute} other {# minutes}} বাকি আছে",
+  "time_remaining.minutes": "{number, plural, one {# মিনিট} other {# মিনিট}} বাকি আছে",
   "time_remaining.moments": "সময় বাকি আছে",
   "time_remaining.seconds": "{number, plural, one {# second} other {# seconds}} বাকি আছে",
   "trends.count_by_accounts": "{count} {rawCount, plural, one {person} other {people}} কথা বলছে",
-  "trends.trending_now": "Trending now",
+  "trends.trending_now": "বর্তমানে জনপ্রিয়",
   "ui.beforeunload": "যে পর্যন্ত এটা লেখা হয়েছে, মাস্টাডন থেকে চলে গেলে এটা মুছে যাবে।",
   "upload_area.title": "টেনে এখানে ছেড়ে দিলে এখানে যুক্ত করা যাবে",
   "upload_button.label": "ছবি বা ভিডিও যুক্ত করতে (এসব ধরণের: JPEG, PNG, GIF, WebM, MP4, MOV)",
   "upload_error.limit": "যা যুক্ত করতে চাচ্ছেন সেটি বেশি বড়, এখানকার সর্বাধিকের মেমোরির উপরে চলে গেছে।",
   "upload_error.poll": "নির্বাচনক্ষেত্রে কোনো ফাইল যুক্ত করা যাবেনা।",
+  "upload_form.audio_description": "Describe for people with hearing loss",
   "upload_form.description": "যারা দেখতে পায়না তাদের জন্য এটা বর্ণনা করতে",
-  "upload_form.edit": "Edit",
+  "upload_form.edit": "সম্পাদন",
   "upload_form.undo": "মুছে ফেলতে",
-  "upload_modal.analyzing_picture": "Analyzing picture…",
-  "upload_modal.apply": "Apply",
+  "upload_form.video_description": "Describe for people with hearing loss or visual impairment",
+  "upload_modal.analyzing_picture": "চিত্র বিশ্লেষণ করা হচ্ছে…",
+  "upload_modal.apply": "প্রয়োগ করুন",
   "upload_modal.description_placeholder": "A quick brown fox jumps over the lazy dog",
-  "upload_modal.detect_text": "Detect text from picture",
-  "upload_modal.edit_media": "Edit media",
-  "upload_modal.hint": "Click or drag the circle on the preview to choose the focal point which will always be in view on all thumbnails.",
-  "upload_modal.preview_label": "Preview ({ratio})",
+  "upload_modal.detect_text": "ছবি থেকে পাঠ্য সনাক্ত করুন",
+  "upload_modal.edit_media": "মিডিয়া সম্পাদনা করুন",
+  "upload_modal.hint": "একটি দৃশ্যমান পয়েন্ট নির্বাচন করুন ক্লিক অথবা টানার মাধ্যমে যেটি সবময় সব থাম্বনেলে দেখা যাবে।",
+  "upload_modal.preview_label": "পূর্বরূপ({ratio})",
   "upload_progress.label": "যুক্ত করতে পাঠানো হচ্ছে...",
   "video.close": "ভিডিওটি বন্ধ করতে",
+  "video.download": "ফাইলটি ডাউনলোড করুন",
   "video.exit_fullscreen": "পূর্ণ পর্দা থেকে বাইরে বের হতে",
   "video.expand": "ভিডিওটি বড়ো করতে",
   "video.fullscreen": "পূর্ণ পর্দা করতে",
diff --git a/app/javascript/mastodon/locales/br.json b/app/javascript/mastodon/locales/br.json
index db07f1ababed1973e5754c9e3595031409886abc..89ea5043effb0bbc69ce315f88dad228c5db8fc5 100644
--- a/app/javascript/mastodon/locales/br.json
+++ b/app/javascript/mastodon/locales/br.json
@@ -1,6 +1,7 @@
 {
   "account.add_or_remove_from_list": "Ouzhpenn pe lemel ag ar listennadoù",
   "account.badges.bot": "Robot",
+  "account.badges.group": "Group",
   "account.block": "Stankañ @{name}",
   "account.block_domain": "Kuzh kement tra a {domain}",
   "account.blocked": "Stanket",
@@ -13,7 +14,7 @@
   "account.followers": "Heilour·ezed·ion",
   "account.followers.empty": "Den na heul an implijour-mañ c'hoazh.",
   "account.follows": "Koumanantoù",
-  "account.follows.empty": "This user doesn't follow anyone yet.",
+  "account.follows.empty": "An implijer-mañ na heul ket den ebet.",
   "account.follows_you": "Ho heul",
   "account.hide_reblogs": "Kuzh toudoù skignet gant @{name}",
   "account.last_status": "Oberiantiz zivezhañ",
@@ -29,7 +30,7 @@
   "account.posts": "Toudoù",
   "account.posts_with_replies": "Toudoù ha respontoù",
   "account.report": "Disklêriañ @{name}",
-  "account.requested": "Awaiting approval",
+  "account.requested": "É c'hortoz bout aprouet. Clikit da nullañ ar pedad heuliañ",
   "account.share": "Skignañ profil @{name}",
   "account.show_reblogs": "Diskouez toudoù a @{name}",
   "account.unblock": "Distankañ @{name}",
@@ -51,39 +52,42 @@
   "bundle_modal_error.message": "Something went wrong while loading this component.",
   "bundle_modal_error.retry": "Klask endro",
   "column.blocks": "Implijour·ezed·ion stanket",
+  "column.bookmarks": "Bookmarks",
   "column.community": "Red-amzer lec'hel",
   "column.direct": "Kemennadoù prevez",
   "column.directory": "Mont a-dreuz ar profiloù",
   "column.domain_blocks": "Domani kuzhet",
   "column.favourites": "Favourites",
-  "column.follow_requests": "Follow requests",
-  "column.home": "Home",
-  "column.lists": "Lists",
-  "column.mutes": "Muted users",
-  "column.notifications": "Notifications",
-  "column.pins": "Pinned toot",
-  "column.public": "Federated timeline",
-  "column_back_button.label": "Back",
-  "column_header.hide_settings": "Hide settings",
+  "column.follow_requests": "Pedadoù heuliañ",
+  "column.home": "Degemer",
+  "column.lists": "Listennoù",
+  "column.mutes": "Implijer·ion·ezed kuzhet",
+  "column.notifications": "Kemennoù",
+  "column.pins": "Toudoù spilhennet",
+  "column.public": "Red-amzer kevreet",
+  "column_back_button.label": "Distro",
+  "column_header.hide_settings": "Kuzhat an arventennoù",
   "column_header.moveLeft_settings": "Move column to the left",
   "column_header.moveRight_settings": "Move column to the right",
-  "column_header.pin": "Pin",
-  "column_header.show_settings": "Show settings",
-  "column_header.unpin": "Unpin",
-  "column_subheading.settings": "Settings",
-  "community.column_settings.media_only": "Media only",
-  "compose_form.direct_message_warning": "This toot will only be sent to all the mentioned users.",
-  "compose_form.direct_message_warning_learn_more": "Learn more",
+  "column_header.pin": "Spilhennañ",
+  "column_header.show_settings": "Diskouez an arventennoù",
+  "column_header.unpin": "Dispilhennañ",
+  "column_subheading.settings": "Arventennoù",
+  "community.column_settings.media_only": "Nemet Mediaoù",
+  "compose_form.direct_message_warning": "An toud-mañ a vo kaset nemet d'an implijer·ion·ezed meneget.",
+  "compose_form.direct_message_warning_learn_more": "Gouiet hiroc'h",
   "compose_form.hashtag_warning": "This toot won't be listed under any hashtag as it is unlisted. Only public toots can be searched by hashtag.",
   "compose_form.lock_disclaimer": "Your account is not {locked}. Anyone can follow you to view your follower-only posts.",
-  "compose_form.lock_disclaimer.lock": "locked",
-  "compose_form.placeholder": "What is on your mind?",
-  "compose_form.poll.add_option": "Add a choice",
+  "compose_form.lock_disclaimer.lock": "prennet",
+  "compose_form.placeholder": "Petra eh oc'h é soñjal a-barzh ?",
+  "compose_form.poll.add_option": "Ouzhpenniñ un dibab",
   "compose_form.poll.duration": "Poll duration",
-  "compose_form.poll.option_placeholder": "Choice {number}",
-  "compose_form.poll.remove_option": "Remove this choice",
-  "compose_form.publish": "Toot",
-  "compose_form.publish_loud": "{publish}!",
+  "compose_form.poll.option_placeholder": "Dibab {number}",
+  "compose_form.poll.remove_option": "Lemel an dibab-mañ",
+  "compose_form.poll.switch_to_multiple": "Change poll to allow multiple choices",
+  "compose_form.poll.switch_to_single": "Change poll to allow for a single choice",
+  "compose_form.publish": "Toudañ",
+  "compose_form.publish_loud": "{publish} !",
   "compose_form.sensitive.hide": "Mark media as sensitive",
   "compose_form.sensitive.marked": "Media is marked as sensitive",
   "compose_form.sensitive.unmarked": "Media is not marked as sensitive",
@@ -138,6 +142,7 @@
   "empty_column.account_timeline": "No toots here!",
   "empty_column.account_unavailable": "Profile unavailable",
   "empty_column.blocks": "You haven't blocked any users yet.",
+  "empty_column.bookmarked_statuses": "You don't have any bookmarked toots yet. When you bookmark one, it will show up here.",
   "empty_column.community": "The local timeline is empty. Write something publicly to get the ball rolling!",
   "empty_column.direct": "You don't have any direct messages yet. When you send or receive one, it will show up here.",
   "empty_column.domain_blocks": "There are no hidden domains yet.",
@@ -219,6 +224,7 @@
   "keyboard_shortcuts.muted": "to open muted users list",
   "keyboard_shortcuts.my_profile": "to open your profile",
   "keyboard_shortcuts.notifications": "to open notifications column",
+  "keyboard_shortcuts.open_media": "to open media",
   "keyboard_shortcuts.pinned": "to open pinned toots list",
   "keyboard_shortcuts.profile": "to open author's profile",
   "keyboard_shortcuts.reply": "to reply",
@@ -251,6 +257,7 @@
   "mute_modal.hide_notifications": "Hide notifications from this user?",
   "navigation_bar.apps": "Mobile apps",
   "navigation_bar.blocks": "Blocked users",
+  "navigation_bar.bookmarks": "Bookmarks",
   "navigation_bar.community_timeline": "Local timeline",
   "navigation_bar.compose": "Compose new toot",
   "navigation_bar.direct": "Direct messages",
@@ -273,7 +280,9 @@
   "navigation_bar.security": "Security",
   "notification.favourite": "{name} favourited your status",
   "notification.follow": "{name} followed you",
+  "notification.follow_request": "{name} has requested to follow you",
   "notification.mention": "{name} mentioned you",
+  "notification.own_poll": "Your poll has ended",
   "notification.poll": "A poll you have voted in has ended",
   "notification.reblog": "{name} boosted your status",
   "notifications.clear": "Clear notifications",
@@ -284,6 +293,7 @@
   "notifications.column_settings.filter_bar.category": "Quick filter bar",
   "notifications.column_settings.filter_bar.show": "Show",
   "notifications.column_settings.follow": "New followers:",
+  "notifications.column_settings.follow_request": "New follow requests:",
   "notifications.column_settings.mention": "Mentions:",
   "notifications.column_settings.poll": "Poll results:",
   "notifications.column_settings.push": "Push notifications",
@@ -344,6 +354,7 @@
   "status.admin_account": "Open moderation interface for @{name}",
   "status.admin_status": "Open this status in the moderation interface",
   "status.block": "Block @{name}",
+  "status.bookmark": "Bookmark",
   "status.cancel_reblog_private": "Unboost",
   "status.cannot_reblog": "This post cannot be boosted",
   "status.copy": "Copy link to status",
@@ -368,6 +379,7 @@
   "status.reblogged_by": "{name} boosted",
   "status.reblogs.empty": "No one has boosted this toot yet. When someone does, they will show up here.",
   "status.redraft": "Delete & re-draft",
+  "status.remove_bookmark": "Remove bookmark",
   "status.reply": "Reply",
   "status.replyAll": "Reply to thread",
   "status.report": "Report @{name}",
@@ -400,9 +412,11 @@
   "upload_button.label": "Add media ({formats})",
   "upload_error.limit": "File upload limit exceeded.",
   "upload_error.poll": "File upload not allowed with polls.",
+  "upload_form.audio_description": "Describe for people with hearing loss",
   "upload_form.description": "Describe for the visually impaired",
   "upload_form.edit": "Edit",
   "upload_form.undo": "Delete",
+  "upload_form.video_description": "Describe for people with hearing loss or visual impairment",
   "upload_modal.analyzing_picture": "Analyzing picture…",
   "upload_modal.apply": "Apply",
   "upload_modal.description_placeholder": "A quick brown fox jumps over the lazy dog",
@@ -412,6 +426,7 @@
   "upload_modal.preview_label": "Preview ({ratio})",
   "upload_progress.label": "Uploading…",
   "video.close": "Close video",
+  "video.download": "Download file",
   "video.exit_fullscreen": "Exit full screen",
   "video.expand": "Expand video",
   "video.fullscreen": "Full screen",
diff --git a/app/javascript/mastodon/locales/ca.json b/app/javascript/mastodon/locales/ca.json
index e6d1bba1d3e3dc50ec28816a6daceae502474946..b565e239b02ffb2245629f77360b70d9a984c61b 100644
--- a/app/javascript/mastodon/locales/ca.json
+++ b/app/javascript/mastodon/locales/ca.json
@@ -1,6 +1,7 @@
 {
   "account.add_or_remove_from_list": "Afegir o Treure de les llistes",
   "account.badges.bot": "Bot",
+  "account.badges.group": "Grup",
   "account.block": "Bloqueja @{name}",
   "account.block_domain": "Amaga-ho tot de {domain}",
   "account.blocked": "Bloquejat",
@@ -26,8 +27,8 @@
   "account.mute_notifications": "Notificacions desactivades de @{name}",
   "account.muted": "Silenciat",
   "account.never_active": "Mai",
-  "account.posts": "Toots",
-  "account.posts_with_replies": "Toots i respostes",
+  "account.posts": "Tuts",
+  "account.posts_with_replies": "Tuts i respostes",
   "account.report": "Informe @{name}",
   "account.requested": "Esperant aprovació. Clic per a cancel·lar la petició de seguiment",
   "account.share": "Comparteix el perfil de @{name}",
@@ -51,6 +52,7 @@
   "bundle_modal_error.message": "S'ha produït un error en carregar aquest component.",
   "bundle_modal_error.retry": "Torna-ho a provar",
   "column.blocks": "Usuaris bloquejats",
+  "column.bookmarks": "Marcadors",
   "column.community": "Línia de temps local",
   "column.direct": "Missatges directes",
   "column.directory": "Navega els perfils",
@@ -61,7 +63,7 @@
   "column.lists": "Llistes",
   "column.mutes": "Usuaris silenciats",
   "column.notifications": "Notificacions",
-  "column.pins": "Toots fixats",
+  "column.pins": "Tuts fixats",
   "column.public": "Línia de temps federada",
   "column_back_button.label": "Enrere",
   "column_header.hide_settings": "Amaga la configuració",
@@ -72,9 +74,9 @@
   "column_header.unpin": "No fixis",
   "column_subheading.settings": "Configuració",
   "community.column_settings.media_only": "Només multimèdia",
-  "compose_form.direct_message_warning": "Aquest toot només serà enviat als usuaris esmentats.",
+  "compose_form.direct_message_warning": "Aquest tut només serà enviat als usuaris esmentats.",
   "compose_form.direct_message_warning_learn_more": "Aprèn més",
-  "compose_form.hashtag_warning": "Aquest toot no es mostrarà en cap etiqueta ja que no està llistat. Només els toots públics poden ser cercats per etiqueta.",
+  "compose_form.hashtag_warning": "Aquesta tut no es mostrarà en cap etiqueta ja que no està llistat. Només els tuts públics poden ser cercats per etiqueta.",
   "compose_form.lock_disclaimer": "El teu compte no està bloquejat {locked}. Tothom pot seguir-te i veure els teus missatges a seguidors.",
   "compose_form.lock_disclaimer.lock": "bloquejat",
   "compose_form.placeholder": "En què penses?",
@@ -82,7 +84,9 @@
   "compose_form.poll.duration": "Durada de l'enquesta",
   "compose_form.poll.option_placeholder": "Opció {number}",
   "compose_form.poll.remove_option": "Elimina aquesta opció",
-  "compose_form.publish": "Toot",
+  "compose_form.poll.switch_to_multiple": "Canvía l’enquesta per a permetre diverses opcions",
+  "compose_form.poll.switch_to_single": "Canvía l’enquesta per a permetre una sola opció",
+  "compose_form.publish": "Tut",
   "compose_form.publish_loud": "{publish}!",
   "compose_form.sensitive.hide": "Marcar mèdia com a sensible",
   "compose_form.sensitive.marked": "Mèdia marcat com a sensible",
@@ -95,18 +99,18 @@
   "confirmations.block.confirm": "Bloqueja",
   "confirmations.block.message": "Estàs segur que vols bloquejar a {name}?",
   "confirmations.delete.confirm": "Suprimeix",
-  "confirmations.delete.message": "Estàs segur que vols suprimir aquest toot?",
+  "confirmations.delete.message": "Estàs segur que vols suprimir aquest tut?",
   "confirmations.delete_list.confirm": "Suprimeix",
   "confirmations.delete_list.message": "Estàs segur que vols suprimir permanentment aquesta llista?",
   "confirmations.domain_block.confirm": "Amaga tot el domini",
-  "confirmations.domain_block.message": "Estàs segur, realment segur que vols bloquejar totalment {domain}? En la majoria dels casos bloquejar o silenciar uns pocs objectius és suficient i preferible. No veuràs contingut d’aquest domini en cap de les línies públiques ni en les notificacions. Els teus seguidors d’aquest domini seran eliminats.",
+  "confirmations.domain_block.message": "Estàs segur, realment segur que vols bloquejar totalment {domain}? En la majoria dels casos bloquejar o silenciar uns pocs objectius és suficient i preferible. No veuràs contingut d’aquest domini en cap de les línies de temps ni en les notificacions. Els teus seguidors d’aquest domini seran eliminats.",
   "confirmations.logout.confirm": "Tancar sessió",
   "confirmations.logout.message": "Segur que vols tancar la sessió?",
   "confirmations.mute.confirm": "Silencia",
   "confirmations.mute.explanation": "Això amagarà les seves publicacions i les que els mencionen però encara els permetrà veure les teves i seguir-te.",
   "confirmations.mute.message": "Estàs segur que vols silenciar {name}?",
   "confirmations.redraft.confirm": "Esborrar i refer",
-  "confirmations.redraft.message": "Estàs segur que vols esborrar aquest toot i tornar a redactar-lo? Perderàs totes els impulsos i favorits, i les respostes al toot original es quedaran orfes.",
+  "confirmations.redraft.message": "Estàs segur que vols esborrar aquest tut i tornar a redactar-lo? Perdràs tots els impulsos i favorits, i les respostes al tut original es quedaran orfes.",
   "confirmations.reply.confirm": "Respon",
   "confirmations.reply.message": "Responen ara es sobreescriurà el missatge que estàs editant. Estàs segur que vols continuar?",
   "confirmations.unfollow.confirm": "Deixa de seguir",
@@ -119,8 +123,8 @@
   "directory.local": "Només de {domain}",
   "directory.new_arrivals": "Arribades noves",
   "directory.recently_active": "Recentment actius",
-  "embed.instructions": "Incrusta aquest toot al lloc web copiant el codi a continuació.",
-  "embed.preview": "Aquí tenim quin aspecte tindrá:",
+  "embed.instructions": "Incrusta aquest tut al lloc web copiant el codi a continuació.",
+  "embed.preview": "Aquí tenim quin aspecte tindrà:",
   "emoji_button.activity": "Activitat",
   "emoji_button.custom": "Personalitzat",
   "emoji_button.flags": "Banderes",
@@ -135,19 +139,20 @@
   "emoji_button.search_results": "Resultats de la cerca",
   "emoji_button.symbols": "Símbols",
   "emoji_button.travel": "Viatges i Llocs",
-  "empty_column.account_timeline": "No hi ha toots aquí!",
+  "empty_column.account_timeline": "No hi ha tuts aquí!",
   "empty_column.account_unavailable": "Perfil no disponible",
   "empty_column.blocks": "Encara no has bloquejat cap usuari.",
+  "empty_column.bookmarked_statuses": "Encara no tens marcat cap tut. Quan marquis un apareixerà aquí.",
   "empty_column.community": "La línia de temps local és buida. Escriu alguna cosa públicament per a fer rodar la pilota!",
   "empty_column.direct": "Encara no tens missatges directes. Quan enviïs o rebis un, es mostrarà aquí.",
   "empty_column.domain_blocks": "Encara no hi ha dominis ocults.",
-  "empty_column.favourited_statuses": "Encara no tens cap toot favorit. Quan en tinguis, apareixerà aquí.",
-  "empty_column.favourites": "Encara ningú ha marcat aquest toot com a favorit. Quan algú ho faci, apareixera aquí.",
-  "empty_column.follow_requests": "Encara no teniu cap petició de seguiment. Quan rebis una, apareixerà aquí.",
+  "empty_column.favourited_statuses": "Encara no has marcat com a favorit cap tut. Quan en facis, apareixerà aquí.",
+  "empty_column.favourites": "Ningú no ha marcat aquest tut com a preferit encara. Quan algú ho faci, apareixerà aquí.",
+  "empty_column.follow_requests": "Encara no tens cap petició de seguiment. Quan rebis una, apareixerà aquí.",
   "empty_column.hashtag": "Encara no hi ha res en aquesta etiqueta.",
   "empty_column.home": "Encara no segueixes ningú. Visita {public} o fes cerca per començar i conèixer altres usuaris.",
   "empty_column.home.public_timeline": "la línia de temps pública",
-  "empty_column.list": "Encara no hi ha res en aquesta llista. Quan els membres d'aquesta llista publiquin nous toots, apareixeran aquí.",
+  "empty_column.list": "Encara no hi ha res en aquesta llista. Quan els membres d'aquesta llista publiquin nous tuts, apareixeran aquí.",
   "empty_column.lists": "Encara no tens cap llista. Quan en facis una, apareixerà aquí.",
   "empty_column.mutes": "Encara no has silenciat cap usuari.",
   "empty_column.notifications": "Encara no tens notificacions. Interactua amb altres per iniciar la conversa.",
@@ -168,7 +173,7 @@
   "getting_started.documentation": "Documentació",
   "getting_started.heading": "Començant",
   "getting_started.invite": "Convida gent",
-  "getting_started.open_source_notice": "Mastodon és un programari de codi obert. Pots contribuir o informar de problemes a GitHub a {github}.",
+  "getting_started.open_source_notice": "Mastodon és un programari de codi obert. Pots contribuir-hi o informar de problemes a GitHub a {github}.",
   "getting_started.security": "Seguretat",
   "getting_started.terms": "Termes del servei",
   "hashtag.column_header.tag_mode.all": "i {additional}",
@@ -181,8 +186,8 @@
   "hashtag.column_settings.tag_mode.none": "Cap d’aquests",
   "hashtag.column_settings.tag_toggle": "Inclou etiquetes addicionals per a aquesta columna",
   "home.column_settings.basic": "Bàsic",
-  "home.column_settings.show_reblogs": "Mostrar impulsos",
-  "home.column_settings.show_replies": "Mostrar respostes",
+  "home.column_settings.show_reblogs": "Mostra els impulsos",
+  "home.column_settings.show_replies": "Mostra les respostes",
   "intervals.full.days": "{number, plural, one {# dia} other {# dies}}",
   "intervals.full.hours": "{number, plural, one {# hora} other {# hores}}",
   "intervals.full.minutes": "{number, plural, one {# minut} other {# minuts}}",
@@ -195,27 +200,27 @@
   "introduction.federation.local.text": "Les publicacions públiques de les persones del teu mateix servidor apareixeran a la línia de temps local.",
   "introduction.interactions.action": "Finalitza el tutorial!",
   "introduction.interactions.favourite.headline": "Favorit",
-  "introduction.interactions.favourite.text": "Pots desar un toot per a més tard i deixar que l'autor sàpiga que t'ha agradat, marcant-lo com a favorit.",
+  "introduction.interactions.favourite.text": "Pots desar un tut per a més tard i deixar que l'autor sàpiga que t'ha agradat, marcant-lo com a favorit.",
   "introduction.interactions.reblog.headline": "Impuls",
-  "introduction.interactions.reblog.text": "Pots compartir amb els teus seguidors els toots d'altres usuaris, impulsant-los.",
+  "introduction.interactions.reblog.text": "Pots compartir amb els teus seguidors els tuts d'altres usuaris, impulsant-los.",
   "introduction.interactions.reply.headline": "Respondre",
-  "introduction.interactions.reply.text": "Pots respondre als toots d'altres persones i als teus propis, que els unirà en una conversa.",
+  "introduction.interactions.reply.text": "Pots respondre als tuts d'altres persones i als teus propis, que els unirà en una conversa.",
   "introduction.welcome.action": "Som-hi!",
   "introduction.welcome.headline": "Primers passos",
   "introduction.welcome.text": "Benvingut al fedivers! En uns moments podràs emetre missatges i conversar amb els teus amics en una gran varietat de servidors. Però aquest servidor, {domain}, és especial: allotja el teu perfil així que recorda el seu nom.",
-  "keyboard_shortcuts.back": "navegar enrera",
+  "keyboard_shortcuts.back": "navegar enrere",
   "keyboard_shortcuts.blocked": "per obrir la llista d'usuaris bloquejats",
   "keyboard_shortcuts.boost": "impulsar",
-  "keyboard_shortcuts.column": "per a centrar un toot en una de les columnes",
-  "keyboard_shortcuts.compose": "per centrar l'area de composició de text",
+  "keyboard_shortcuts.column": "per a centrar un tut en una de les columnes",
+  "keyboard_shortcuts.compose": "per centrar l'àrea de composició de text",
   "keyboard_shortcuts.description": "Descripció",
   "keyboard_shortcuts.direct": "per obrir la columna de missatges directes",
   "keyboard_shortcuts.down": "per baixar en la llista",
-  "keyboard_shortcuts.enter": "ampliar el toot",
+  "keyboard_shortcuts.enter": "per a obrir el tut",
   "keyboard_shortcuts.favourite": "afavorir",
   "keyboard_shortcuts.favourites": "per obrir la llista de favorits",
   "keyboard_shortcuts.federated": "per obrir la línia de temps federada",
-  "keyboard_shortcuts.heading": "Dreçeres de teclat",
+  "keyboard_shortcuts.heading": "Dreceres de teclat",
   "keyboard_shortcuts.home": "per a obrir la línia de temps Inici",
   "keyboard_shortcuts.hotkey": "Tecla d'accés directe",
   "keyboard_shortcuts.legend": "per a mostrar aquesta llegenda",
@@ -224,16 +229,17 @@
   "keyboard_shortcuts.muted": "per a obrir la llista d'usuaris silenciats",
   "keyboard_shortcuts.my_profile": "per a obrir el teu perfil",
   "keyboard_shortcuts.notifications": "per a obrir la columna de notificacions",
-  "keyboard_shortcuts.pinned": "per a obrir la llista de toots fixats",
+  "keyboard_shortcuts.open_media": "obrir mèdia",
+  "keyboard_shortcuts.pinned": "per a obrir la llista de tuts fixats",
   "keyboard_shortcuts.profile": "per a obrir el perfil de l'autor",
   "keyboard_shortcuts.reply": "respondre",
   "keyboard_shortcuts.requests": "per a obrir la llista de sol·licituds de seguiment",
   "keyboard_shortcuts.search": "per a centrar la cerca",
   "keyboard_shortcuts.start": "per a obrir la columna \"Començar\"",
-  "keyboard_shortcuts.toggle_hidden": "per a mostrar/amagar text sota CW",
-  "keyboard_shortcuts.toggle_sensitivity": "per a mostrar/amagar mèdia",
-  "keyboard_shortcuts.toot": "per a començar un toot nou de trinca",
-  "keyboard_shortcuts.unfocus": "descentrar l'area de composició de text/cerca",
+  "keyboard_shortcuts.toggle_hidden": "per a mostrar o amagar text sota CW",
+  "keyboard_shortcuts.toggle_sensitivity": "per a mostrar o amagar contingut multimèdia",
+  "keyboard_shortcuts.toot": "per a començar un tut nou de trinca",
+  "keyboard_shortcuts.unfocus": "descentrar l'àrea de composició de text/cerca",
   "keyboard_shortcuts.up": "moure amunt en la llista",
   "lightbox.close": "Tancar",
   "lightbox.next": "Següent",
@@ -256,13 +262,14 @@
   "mute_modal.hide_notifications": "Amagar notificacions d'aquest usuari?",
   "navigation_bar.apps": "Apps mòbils",
   "navigation_bar.blocks": "Usuaris bloquejats",
+  "navigation_bar.bookmarks": "Marcadors",
   "navigation_bar.community_timeline": "Línia de temps Local",
-  "navigation_bar.compose": "Redacta nou toot",
+  "navigation_bar.compose": "Redacta un nou tut",
   "navigation_bar.direct": "Missatges directes",
   "navigation_bar.discover": "Descobreix",
   "navigation_bar.domain_blocks": "Dominis ocults",
   "navigation_bar.edit_profile": "Editar perfil",
-  "navigation_bar.favourites": "Favorits",
+  "navigation_bar.favourites": "Preferits",
   "navigation_bar.filters": "Paraules silenciades",
   "navigation_bar.follow_requests": "Sol·licituds de seguiment",
   "navigation_bar.follows_and_followers": "Seguits i seguidors",
@@ -272,29 +279,32 @@
   "navigation_bar.logout": "Tancar sessió",
   "navigation_bar.mutes": "Usuaris silenciats",
   "navigation_bar.personal": "Personal",
-  "navigation_bar.pins": "Toots fixats",
+  "navigation_bar.pins": "Tuts fixats",
   "navigation_bar.preferences": "Preferències",
   "navigation_bar.public_timeline": "Línia de temps federada",
   "navigation_bar.security": "Seguretat",
   "notification.favourite": "{name} ha afavorit el teu estat",
   "notification.follow": "{name} et segueix",
+  "notification.follow_request": "{name} ha sol·licitat seguir-te",
   "notification.mention": "{name} t'ha esmentat",
+  "notification.own_poll": "La teva enquesta ha finalitzat",
   "notification.poll": "Ha finalitzat una enquesta en la que has votat",
   "notification.reblog": "{name} ha impulsat el teu estat",
   "notifications.clear": "Netejar notificacions",
-  "notifications.clear_confirmation": "Estàs segur que vols esborrar permanenment totes les teves notificacions?",
+  "notifications.clear_confirmation": "Estàs segur que vols esborrar permanentment totes les teves notificacions?",
   "notifications.column_settings.alert": "Notificacions d'escriptori",
-  "notifications.column_settings.favourite": "Favorits:",
+  "notifications.column_settings.favourite": "Preferits:",
   "notifications.column_settings.filter_bar.advanced": "Mostra totes les categories",
   "notifications.column_settings.filter_bar.category": "Barra ràpida de filtres",
   "notifications.column_settings.filter_bar.show": "Mostra",
   "notifications.column_settings.follow": "Nous seguidors:",
+  "notifications.column_settings.follow_request": "Nova sol·licitud de seguiment:",
   "notifications.column_settings.mention": "Mencions:",
   "notifications.column_settings.poll": "Resultats de l’enquesta:",
   "notifications.column_settings.push": "Notificacions push",
   "notifications.column_settings.reblog": "Impulsos:",
-  "notifications.column_settings.show": "Mostrar en la columna",
-  "notifications.column_settings.sound": "Reproduïr so",
+  "notifications.column_settings.show": "Mostra en la columna",
+  "notifications.column_settings.sound": "Reproduir so",
   "notifications.filter.all": "Tots",
   "notifications.filter.boosts": "Impulsos",
   "notifications.filter.favourites": "Favorits",
@@ -338,20 +348,21 @@
   "search_popout.search_format": "Format de cerca avançada",
   "search_popout.tips.full_text": "Text simple recupera publicacions que has escrit, les marcades com a favorites, les impulsades o en les que has estat esmentat, així com usuaris, noms d'usuari i etiquetes.",
   "search_popout.tips.hashtag": "etiqueta",
-  "search_popout.tips.status": "estat",
+  "search_popout.tips.status": "tut",
   "search_popout.tips.text": "El text simple retorna coincidències amb els noms de visualització, els noms d'usuari i les etiquetes",
   "search_popout.tips.user": "usuari",
   "search_results.accounts": "Gent",
   "search_results.hashtags": "Etiquetes",
-  "search_results.statuses": "Toots",
-  "search_results.statuses_fts_disabled": "La cerca de toots pel seu contingut no està habilitada en aquest servidor Mastodon.",
+  "search_results.statuses": "Tuts",
+  "search_results.statuses_fts_disabled": "La cerca de tuts pel seu contingut no està habilitada en aquest servidor Mastodon.",
   "search_results.total": "{count, number} {count, plural, one {resultat} other {resultats}}",
   "status.admin_account": "Obre l'interfície de moderació per a @{name}",
-  "status.admin_status": "Obre aquest toot a la interfície de moderació",
+  "status.admin_status": "Obre aquest tut a la interfície de moderació",
   "status.block": "Bloqueja @{name}",
+  "status.bookmark": "Marcador",
   "status.cancel_reblog_private": "Desfer l'impuls",
   "status.cannot_reblog": "Aquesta publicació no pot ser impulsada",
-  "status.copy": "Copia l'enllaç al toot",
+  "status.copy": "Copia l'enllaç al tut",
   "status.delete": "Esborrar",
   "status.detailed_status": "Visualització detallada de la conversa",
   "status.direct": "Missatge directe @{name}",
@@ -367,13 +378,14 @@
   "status.mute_conversation": "Silenciar conversació",
   "status.open": "Ampliar aquest estat",
   "status.pin": "Fixat en el perfil",
-  "status.pinned": "Toot fixat",
+  "status.pinned": "Tut fixat",
   "status.read_more": "Llegir més",
   "status.reblog": "Impuls",
   "status.reblog_private": "Impulsar a l'audiència original",
   "status.reblogged_by": "{name} ha impulsat",
-  "status.reblogs.empty": "Encara ningú no ha impulsat aquest toot. Quan algú ho faci, apareixeran aquí.",
+  "status.reblogs.empty": "Encara ningú no ha impulsat aquest tut. Quan algú ho faci, apareixeran aquí.",
   "status.redraft": "Esborrar i reescriure",
+  "status.remove_bookmark": "Suprimeix el marcador",
   "status.reply": "Respondre",
   "status.replyAll": "Respondre al tema",
   "status.report": "Informar sobre @{name}",
@@ -406,9 +418,11 @@
   "upload_button.label": "Afegir multimèdia (JPEG, PNG, GIF, WebM, MP4, MOV)",
   "upload_error.limit": "S'ha superat el límit de càrrega d'arxius.",
   "upload_error.poll": "No es permet l'enviament de fitxers en les enquestes.",
+  "upload_form.audio_description": "Descriviu per a les persones amb pèrdua auditiva",
   "upload_form.description": "Descriure els problemes visuals",
   "upload_form.edit": "Edita",
   "upload_form.undo": "Esborra",
+  "upload_form.video_description": "Descriu per a les persones amb pèrdua auditiva o deficiència visual",
   "upload_modal.analyzing_picture": "Analitzant imatge…",
   "upload_modal.apply": "Aplica",
   "upload_modal.description_placeholder": "Uns salts ràpids de guineu marró sobre el gos gandul",
@@ -418,6 +432,7 @@
   "upload_modal.preview_label": "Previsualitza ({ratio})",
   "upload_progress.label": "Pujant...",
   "video.close": "Tancar el vídeo",
+  "video.download": "Descarrega l’arxiu",
   "video.exit_fullscreen": "Sortir de pantalla completa",
   "video.expand": "Ampliar el vídeo",
   "video.fullscreen": "Pantalla completa",
diff --git a/app/javascript/mastodon/locales/co.json b/app/javascript/mastodon/locales/co.json
index 8321ffe5a365427718ce2ed08942f4fdd7cb62f3..4a69f41d2063bd72f8e8ca130794229fbe3d9f09 100644
--- a/app/javascript/mastodon/locales/co.json
+++ b/app/javascript/mastodon/locales/co.json
@@ -1,6 +1,7 @@
 {
   "account.add_or_remove_from_list": "Aghjunghje o toglie da e liste",
   "account.badges.bot": "Bot",
+  "account.badges.group": "Gruppu",
   "account.block": "Bluccà @{name}",
   "account.block_domain": "Piattà tuttu da {domain}",
   "account.blocked": "Bluccatu",
@@ -51,6 +52,7 @@
   "bundle_modal_error.message": "C'hè statu un prublemu caricandu st'elementu.",
   "bundle_modal_error.retry": "Pruvà torna",
   "column.blocks": "Utilizatori bluccati",
+  "column.bookmarks": "Segnalibri",
   "column.community": "Linea pubblica lucale",
   "column.direct": "Missaghji diretti",
   "column.directory": "Percorre i prufili",
@@ -82,6 +84,8 @@
   "compose_form.poll.duration": "Durata di u scandagliu",
   "compose_form.poll.option_placeholder": "Scelta {number}",
   "compose_form.poll.remove_option": "Toglie sta scelta",
+  "compose_form.poll.switch_to_multiple": "Cambià u scandagliu per accittà parechje scelte",
+  "compose_form.poll.switch_to_single": "Cambià u scandagliu per ùn accittà ch'una scelta",
   "compose_form.publish": "Toot",
   "compose_form.publish_loud": "{publish}!",
   "compose_form.sensitive.hide": "Indicà u media cum'è sensibile",
@@ -138,6 +142,7 @@
   "empty_column.account_timeline": "Nisun statutu quì!",
   "empty_column.account_unavailable": "Prufile micca dispunibule",
   "empty_column.blocks": "Per avà ùn avete bluccatu manc'un utilizatore.",
+  "empty_column.bookmarked_statuses": "Ùn avete manc'un segnalibru. Quandu aghjunghjerate unu, sarà mustratu quì.",
   "empty_column.community": "Ùn c'hè nunda indè a linea lucale. Scrivete puru qualcosa!",
   "empty_column.direct": "Ùn avete ancu nisun missaghju direttu. S'è voi mandate o ricevete unu, u vidarete quì.",
   "empty_column.domain_blocks": "Ùn c'hè manc'un duminiu bluccatu avà.",
@@ -224,6 +229,7 @@
   "keyboard_shortcuts.muted": "per apre a lista di l'utilizatori piattati",
   "keyboard_shortcuts.my_profile": "per apre u vostru prufile",
   "keyboard_shortcuts.notifications": "per apre a culonna di nutificazione",
+  "keyboard_shortcuts.open_media": "per apre i media",
   "keyboard_shortcuts.pinned": "per apre a lista di statuti puntarulati",
   "keyboard_shortcuts.profile": "per apre u prufile di l'autore",
   "keyboard_shortcuts.reply": "risponde",
@@ -256,6 +262,7 @@
   "mute_modal.hide_notifications": "Piattà nutificazione da st'utilizatore?",
   "navigation_bar.apps": "Applicazione per u telefuninu",
   "navigation_bar.blocks": "Utilizatori bluccati",
+  "navigation_bar.bookmarks": "Segnalibri",
   "navigation_bar.community_timeline": "Linea pubblica lucale",
   "navigation_bar.compose": "Scrive un novu statutu",
   "navigation_bar.direct": "Missaghji diretti",
@@ -278,7 +285,9 @@
   "navigation_bar.security": "Sicurità",
   "notification.favourite": "{name} hà aghjuntu u vostru statutu à i so favuriti",
   "notification.follow": "{name} v'hà seguitatu",
+  "notification.follow_request": "{name} vole abbunassi à u vostru contu",
   "notification.mention": "{name} v'hà mintuvatu",
+  "notification.own_poll": "U vostru scandagliu hè compiu",
   "notification.poll": "Un scandagliu induve avete vutatu hè finitu",
   "notification.reblog": "{name} hà spartutu u vostru statutu",
   "notifications.clear": "Purgà e nutificazione",
@@ -289,6 +298,7 @@
   "notifications.column_settings.filter_bar.category": "Barra di ricerca pronta",
   "notifications.column_settings.filter_bar.show": "Mustrà",
   "notifications.column_settings.follow": "Abbunati novi:",
+  "notifications.column_settings.follow_request": "Nove dumande d'abbunamentu:",
   "notifications.column_settings.mention": "Minzione:",
   "notifications.column_settings.poll": "Risultati:",
   "notifications.column_settings.push": "Nutificazione Push",
@@ -349,6 +359,7 @@
   "status.admin_account": "Apre l'interfaccia di muderazione per @{name}",
   "status.admin_status": "Apre stu statutu in l'interfaccia di muderazione",
   "status.block": "Bluccà @{name}",
+  "status.bookmark": "Segnalibru",
   "status.cancel_reblog_private": "Ùn sparte più",
   "status.cannot_reblog": "Stu statutu ùn pò micca esse spartutu",
   "status.copy": "Cupià ligame indè u statutu",
@@ -374,6 +385,7 @@
   "status.reblogged_by": "{name} hà spartutu",
   "status.reblogs.empty": "Per avà nisunu hà spartutu u statutu. Quandu qualch'unu u sparterà, u so contu sarà mustratu quì.",
   "status.redraft": "Sguassà è riscrive",
+  "status.remove_bookmark": "Toglie segnalibru",
   "status.reply": "Risponde",
   "status.replyAll": "Risponde à tutti",
   "status.report": "Palisà @{name}",
@@ -406,9 +418,11 @@
   "upload_button.label": "Aghjunghje un media (JPEG, PNG, GIF, WebM, MP4, MOV)",
   "upload_error.limit": "Limita di caricamentu di fugliali trapassata.",
   "upload_error.poll": "Ùn si pò micca caricà fugliali cù i scandagli.",
+  "upload_form.audio_description": "Discrizzione per i ciochi",
   "upload_form.description": "Discrive per i malvistosi",
   "upload_form.edit": "Mudificà",
   "upload_form.undo": "Sguassà",
+  "upload_form.video_description": "Discrizzione per i ciochi o cechi",
   "upload_modal.analyzing_picture": "Analisi di u ritrattu…",
   "upload_modal.apply": "Affettà",
   "upload_modal.description_placeholder": "Chì tempi brevi ziu, quandu solfeghji",
@@ -418,6 +432,7 @@
   "upload_modal.preview_label": "Vista ({ratio})",
   "upload_progress.label": "Caricamentu...",
   "video.close": "Chjudà a video",
+  "video.download": "Scaricà fugliale",
   "video.exit_fullscreen": "Caccià u pienu screnu",
   "video.expand": "Ingrandà a video",
   "video.fullscreen": "Pienu screnu",
diff --git a/app/javascript/mastodon/locales/cs.json b/app/javascript/mastodon/locales/cs.json
index ed0588e7c7a0af87949f58a10c936623fe626af4..cc2f8999babaf18813d2abb53b1ede184eb9464b 100644
--- a/app/javascript/mastodon/locales/cs.json
+++ b/app/javascript/mastodon/locales/cs.json
@@ -1,14 +1,15 @@
 {
   "account.add_or_remove_from_list": "Přidat nebo odstranit ze seznamů",
   "account.badges.bot": "Robot",
+  "account.badges.group": "Skupina",
   "account.block": "Zablokovat uživatele @{name}",
-  "account.block_domain": "Skrýt vše z {domain}",
-  "account.blocked": "Blokován/a",
-  "account.cancel_follow_request": "Zrušit požadavek o sledování",
-  "account.direct": "Poslat přímou zprávu uživateli @{name}",
+  "account.block_domain": "Skrýt vše ze serveru {domain}",
+  "account.blocked": "Blokováno",
+  "account.cancel_follow_request": "Zrušit žádost o sledování",
+  "account.direct": "Poslat uživateli @{name} přímou zprávu",
   "account.domain_blocked": "Doména skryta",
   "account.edit_profile": "Upravit profil",
-  "account.endorse": "Představit na profilu",
+  "account.endorse": "Zvýraznit na profilu",
   "account.follow": "Sledovat",
   "account.followers": "Sledující",
   "account.followers.empty": "Tohoto uživatele ještě nikdo nesleduje.",
@@ -21,42 +22,43 @@
   "account.locked_info": "Stav soukromí tohoto účtu je nastaven na zamčeno. Jeho vlastník ručně posuzuje, kdo ho může sledovat.",
   "account.media": "Média",
   "account.mention": "Zmínit uživatele @{name}",
-  "account.moved_to": "{name} se přesunul/a na:",
+  "account.moved_to": "Uživatel {name} se přesunul na:",
   "account.mute": "Skrýt uživatele @{name}",
   "account.mute_notifications": "Skrýt oznámení od uživatele @{name}",
-  "account.muted": "Skryt/a",
+  "account.muted": "Uživatel skryt",
   "account.never_active": "Nikdy",
   "account.posts": "Tooty",
   "account.posts_with_replies": "Tooty a odpovědi",
   "account.report": "Nahlásit uživatele @{name}",
-  "account.requested": "Čekám na schválení. Kliknutím zrušíte požadavek o sledování",
+  "account.requested": "Čeká na schválení. Kliknutím žádost o sledování zrušíte",
   "account.share": "Sdílet profil uživatele @{name}",
   "account.show_reblogs": "Zobrazit boosty od uživatele @{name}",
   "account.unblock": "Odblokovat uživatele @{name}",
   "account.unblock_domain": "Odkrýt doménu {domain}",
-  "account.unendorse": "Nepředstavit na profilu",
+  "account.unendorse": "Nezvýrazňovat na profilu",
   "account.unfollow": "Přestat sledovat",
   "account.unmute": "Odkrýt uživatele @{name}",
   "account.unmute_notifications": "Odkrýt oznámení od uživatele @{name}",
-  "alert.rate_limited.message": "Prosím zkuste to znovu za {retry_time, time, medium}.",
+  "alert.rate_limited.message": "Zkuste to prosím znovu za {retry_time, time, medium}.",
   "alert.rate_limited.title": "Rychlost omezena",
   "alert.unexpected.message": "Objevila se neočekávaná chyba.",
   "alert.unexpected.title": "Jejda!",
   "autosuggest_hashtag.per_week": "{count} za týden",
   "boost_modal.combo": "Příště můžete pro přeskočení stisknout {combo}",
-  "bundle_column_error.body": "Při načítání tohoto komponentu se něco pokazilo.",
+  "bundle_column_error.body": "Při načítání této komponenty se něco pokazilo.",
   "bundle_column_error.retry": "Zkuste to znovu",
   "bundle_column_error.title": "Chyba sítě",
   "bundle_modal_error.close": "Zavřít",
-  "bundle_modal_error.message": "Při načítání tohoto komponentu se něco pokazilo.",
+  "bundle_modal_error.message": "Při načítání této komponenty se něco pokazilo.",
   "bundle_modal_error.retry": "Zkusit znovu",
   "column.blocks": "Blokovaní uživatelé",
+  "column.bookmarks": "Záložky",
   "column.community": "Místní časová osa",
   "column.direct": "Přímé zprávy",
   "column.directory": "Prozkoumat profily",
   "column.domain_blocks": "Skryté domény",
   "column.favourites": "Oblíbené",
-  "column.follow_requests": "Požadavky o sledování",
+  "column.follow_requests": "Žádosti o sledování",
   "column.home": "Domů",
   "column.lists": "Seznamy",
   "column.mutes": "Skrytí uživatelé",
@@ -75,13 +77,15 @@
   "compose_form.direct_message_warning": "Tento toot bude odeslán pouze zmíněným uživatelům.",
   "compose_form.direct_message_warning_learn_more": "Zjistit více",
   "compose_form.hashtag_warning": "Tento toot nebude zobrazen pod žádným hashtagem, neboť je neuvedený. Pouze veřejné tooty mohou být vyhledány podle hashtagu.",
-  "compose_form.lock_disclaimer": "Váš účet není {locked}. Kdokoliv vás může sledovat a vidět vaše příspěvky pouze pro sledující.",
+  "compose_form.lock_disclaimer": "Váš účet není {locked}. Kdokoliv vás může sledovat a vidět vaše příspěvky učené pouze pro sledující.",
   "compose_form.lock_disclaimer.lock": "uzamčen",
   "compose_form.placeholder": "Co se vám honí hlavou?",
   "compose_form.poll.add_option": "Přidat volbu",
-  "compose_form.poll.duration": "Délka ankety",
+  "compose_form.poll.duration": "Doba trvání ankety",
   "compose_form.poll.option_placeholder": "Volba {number}",
   "compose_form.poll.remove_option": "Odstranit tuto volbu",
+  "compose_form.poll.switch_to_multiple": "Povolit u ankety více možností",
+  "compose_form.poll.switch_to_single": "Povolit u ankety jedinou možnost",
   "compose_form.publish": "Tootnout",
   "compose_form.publish_loud": "{publish}!",
   "compose_form.sensitive.hide": "Označit média jako citlivá",
@@ -93,30 +97,30 @@
   "confirmation_modal.cancel": "Zrušit",
   "confirmations.block.block_and_report": "Blokovat a nahlásit",
   "confirmations.block.confirm": "Blokovat",
-  "confirmations.block.message": "Jste si jistý/á, že chcete zablokovat uživatele {name}?",
+  "confirmations.block.message": "Opravdu chcete zablokovat uživatele {name}?",
   "confirmations.delete.confirm": "Smazat",
-  "confirmations.delete.message": "Jste si jistý/á, že chcete smazat tento toot?",
+  "confirmations.delete.message": "Opravdu chcete smazat tento toot?",
   "confirmations.delete_list.confirm": "Smazat",
-  "confirmations.delete_list.message": "Jste si jistý/á, že chcete tento seznam navždy smazat?",
+  "confirmations.delete_list.message": "Opravdu chcete tento seznam navždy smazat?",
   "confirmations.domain_block.confirm": "Skrýt celou doménu",
-  "confirmations.domain_block.message": "Jste si opravdu, opravdu jistý/á, že chcete blokovat celou doménu {domain}? Ve většině případů stačí zablokovat nebo skrýt pár konkrétních uživatelů, což se doporučuje. Z této domény neuvidíte obsah v žádné veřejné časové ose ani v oznámeních. Vaši sledující z této domény budou odstraněni.",
+  "confirmations.domain_block.message": "Opravdu chcete blokovat celou doménu {domain}? Ve většině případů stačí zablokovat nebo skrýt pár konkrétních uživatelů, což také doporučujeme. Z této domény neuvidíte obsah v žádné veřejné časové ose ani v oznámeních. Vaši sledující z této domény budou odstraněni.",
   "confirmations.logout.confirm": "Odhlásit",
-  "confirmations.logout.message": "Jste si jistý/á, že se chcete odhlásit?",
+  "confirmations.logout.message": "Opravdu se chcete odhlásit?",
   "confirmations.mute.confirm": "Skrýt",
-  "confirmations.mute.explanation": "Tohle skryje jeho příspěvky a příspěvky, které ho zmiňují, ale uživatel pořád bude moci vidět vaše příspěvky a sledovat vás.",
-  "confirmations.mute.message": "Jste si jistý/á, že chcete skrýt uživatele {name}?",
+  "confirmations.mute.explanation": "Tohle skryje uživatelovi příspěvky a příspěvky, které ho zmiňují, ale uživatel stále uvidí vaše příspěvky a může vás sledovat.",
+  "confirmations.mute.message": "Opravdu chcete uživatele {name} skrýt?",
   "confirmations.redraft.confirm": "Smazat a přepsat",
   "confirmations.redraft.message": "Jste si jistý/á, že chcete smazat a přepsat tento toot? Oblíbení a boosty budou ztraceny a odpovědi na původní příspěvek budou opuštěny.",
   "confirmations.reply.confirm": "Odpovědět",
-  "confirmations.reply.message": "Odpovězením nyní přepíšete zprávu, kterou aktuálně píšete. Jste si jistý/á, že chcete pokračovat?",
+  "confirmations.reply.message": "Odpověď přepíše vaši rozepsanou zprávu. Opravdu chcete pokračovat?",
   "confirmations.unfollow.confirm": "Přestat sledovat",
-  "confirmations.unfollow.message": "jste si jistý/á, že chcete přestat sledovat uživatele {name}?",
+  "confirmations.unfollow.message": "Opravdu chcete uživatele {name} přestat sledovat?",
   "conversation.delete": "Smazat konverzaci",
   "conversation.mark_as_read": "Označit jako přečtenou",
   "conversation.open": "Zobrazit konverzaci",
   "conversation.with": "S {names}",
   "directory.federated": "Ze známého fedivesmíru",
-  "directory.local": "Pouze z {domain}",
+  "directory.local": "Pouze z domény {domain}",
   "directory.new_arrivals": "Nově příchozí",
   "directory.recently_active": "Nedávno aktivní",
   "embed.instructions": "Pro přidání tootu na vaši webovou stránku zkopírujte níže uvedený kód.",
@@ -127,33 +131,34 @@
   "emoji_button.food": "Jídla a nápoje",
   "emoji_button.label": "Vložit emoji",
   "emoji_button.nature": "Příroda",
-  "emoji_button.not_found": "Žádná emoji!! (╯°□°)╯︵ ┻━┻",
+  "emoji_button.not_found": "Žádné emoji! (╯°□°)╯︵ ┻━┻",
   "emoji_button.objects": "Předměty",
   "emoji_button.people": "Lidé",
-  "emoji_button.recent": "Často používaná",
+  "emoji_button.recent": "Často používané",
   "emoji_button.search": "Hledat…",
   "emoji_button.search_results": "Výsledky hledání",
   "emoji_button.symbols": "Symboly",
   "emoji_button.travel": "Cestování a místa",
-  "empty_column.account_timeline": "Tady nejsou žádné tooty!",
+  "empty_column.account_timeline": "Nejsou tu žádné tooty!",
   "empty_column.account_unavailable": "Profil nedostupný",
-  "empty_column.blocks": "Ještě jste nezablokoval/a žádného uživatele.",
+  "empty_column.blocks": "Ještě jste nezablokovali žádného uživatele.",
+  "empty_column.bookmarked_statuses": "Ještě nemáte v záložkách žádné tooty. Pokud si do nich nějaký přidáte, zobrazí se zde.",
   "empty_column.community": "Místní časová osa je prázdná. Napište něco veřejně a rozhýbejte to tu!",
   "empty_column.direct": "Ještě nemáte žádné přímé zprávy. Pokud nějakou pošlete nebo dostanete, zobrazí se zde.",
-  "empty_column.domain_blocks": "Ještě nejsou žádné skryté domény.",
+  "empty_column.domain_blocks": "Ještě nemáte žádné skryté domény.",
   "empty_column.favourited_statuses": "Ještě nemáte žádné oblíbené tooty. Pokud si nějaký oblíbíte, zobrazí se zde.",
   "empty_column.favourites": "Tento toot si ještě nikdo neoblíbil. Pokud to někdo udělá, zobrazí se zde.",
-  "empty_column.follow_requests": "Ještě nemáte žádné požadavky o sledování. Pokud nějaký obdržíte, zobrazí se zde.",
+  "empty_column.follow_requests": "Ještě nemáte žádné žádosti o sledování. Pokud nějakou obdržíte, zobrazí se zde.",
   "empty_column.hashtag": "Pod tímto hashtagem ještě nic není.",
-  "empty_column.home": "Vaše domovská časová osa je prázdná! Začněte navštívením {public} nebo použijte hledání a seznamte se s dalšími uživateli.",
+  "empty_column.home": "Vaše domovská časová osa je prázdná! Začněte návštěvou {public} nebo použijte hledání a seznamte se s dalšími uživateli.",
   "empty_column.home.public_timeline": "veřejné časové osy",
-  "empty_column.list": "V tomto seznamu ještě nic není. Pokud budou členové tohoto seznamu psát nové tooty, objeví se zde.",
+  "empty_column.list": "V tomto seznamu ještě nic není. Pokud nějaký člen z tohoto seznamu napíše nový toot, objeví se zde.",
   "empty_column.lists": "Ještě nemáte žádný seznam. Pokud nějaký vytvoříte, zobrazí se zde.",
-  "empty_column.mutes": "Ještě jste neskryl/a žádné uživatele.",
-  "empty_column.notifications": "Ještě nemáte žádná oznámení. Začněte konverzaci komunikováním s ostatními.",
+  "empty_column.mutes": "Ještě jste neskryli žádného uživatele.",
+  "empty_column.notifications": "Ještě nemáte žádná oznámení. Začněte s někým konverzaci.",
   "empty_column.public": "Tady nic není! Napište něco veřejně, nebo začněte ručně sledovat uživatele z jiných serverů, aby tu něco přibylo",
   "error.unexpected_crash.explanation": "Kvůli chybě v našem kódu nebo problému s kompatibilitou prohlížeče nemohla být tato stránka načtena správně.",
-  "error.unexpected_crash.next_steps": "Zkuste obnovit stránku. Pokud to nepomůže, budete možná moci dále používat Mastodon pomocí jiného prohlížeče nebo nativní aplikace.",
+  "error.unexpected_crash.next_steps": "Zkuste stránku načíst znovu. Pokud to nepomůže, zkuste Mastodon používat pomocí jiného prohlížeče nebo nativní aplikace.",
   "errors.unexpected_crash.copy_stacktrace": "Zkopírovat stacktrace do schránky",
   "errors.unexpected_crash.report_issue": "Nahlásit problém",
   "federation.change": "Adjust status federation",
@@ -168,13 +173,13 @@
   "getting_started.documentation": "Dokumentace",
   "getting_started.heading": "Začínáme",
   "getting_started.invite": "Pozvat lidi",
-  "getting_started.open_source_notice": "Mastodon je otevřený software. Na GitHubu k němu můžete přispět nebo nahlásit chyby: {github}.",
+  "getting_started.open_source_notice": "Mastodon je otevřený software. Přispět do jeho vývoje nebo hlásit chyby můžete na GitHubu {github}.",
   "getting_started.security": "Nastavení účtu",
   "getting_started.terms": "Podmínky používání",
   "hashtag.column_header.tag_mode.all": "a {additional}",
   "hashtag.column_header.tag_mode.any": "nebo {additional}",
   "hashtag.column_header.tag_mode.none": "bez {additional}",
-  "hashtag.column_settings.select.no_options_message": "Žádné návrhy nenalezeny",
+  "hashtag.column_settings.select.no_options_message": "Nenalezeny žádné návrhy",
   "hashtag.column_settings.select.placeholder": "Zadejte hashtagy…",
   "hashtag.column_settings.tag_mode.all": "Všechny z těchto",
   "hashtag.column_settings.tag_mode.any": "Jakékoliv z těchto",
@@ -183,14 +188,14 @@
   "home.column_settings.basic": "Základní",
   "home.column_settings.show_reblogs": "Zobrazit boosty",
   "home.column_settings.show_replies": "Zobrazit odpovědi",
-  "intervals.full.days": "{number, plural, one {# den} few {# dny} many {# dne} other {# dní}}",
-  "intervals.full.hours": "{number, plural, one {# hodina} few {# hodiny} many {# hodiny} other {# hodin}}",
-  "intervals.full.minutes": "{number, plural, one {# minuta} few {# minuty} many {# minuty} other {# minut}}",
+  "intervals.full.days": "{number, plural, one {# den} few {# dny} many {# dní} other {# dní}}",
+  "intervals.full.hours": "{number, plural, one {# hodina} few {# hodiny} many {# hodin} other {# hodin}}",
+  "intervals.full.minutes": "{number, plural, one {# minuta} few {# minuty} many {# minut} other {# minut}}",
   "introduction.federation.action": "Další",
   "introduction.federation.federated.headline": "Federovaná",
   "introduction.federation.federated.text": "Veřejné příspěvky z jiných serverů ve fedivesmíru se zobrazí na federované časové ose.",
   "introduction.federation.home.headline": "Domů",
-  "introduction.federation.home.text": "Příspěvky od lidí, které sledujete, se objeví ve vašem domovském proudu. Můžete sledovat kohokoliv na jakémkoliv serveru!",
+  "introduction.federation.home.text": "Příspěvky od lidí, které sledujete, se objeví ve vašem domovském kanálu. Můžete sledovat kohokoliv na jakémkoliv serveru!",
   "introduction.federation.local.headline": "Místní",
   "introduction.federation.local.text": "Veřejné příspěvky od lidí ze stejného serveru jako vy se zobrazí na místní časové ose.",
   "introduction.interactions.action": "Dokončit tutoriál!",
@@ -202,39 +207,40 @@
   "introduction.interactions.reply.text": "Můžete odpovídat na tooty jiných lidí i vaše vlastní, což je propojí do konverzace.",
   "introduction.welcome.action": "Jdeme na to!",
   "introduction.welcome.headline": "První kroky",
-  "introduction.welcome.text": "Vítejte ve fedivesmíru! Za malou chvíli budete moci posílat zprávy a povídat si se svými přátely přes širokou škálu serverů. Tento server, {domain}, je však speciální—je na něm váš profil, proto si zapamatujte jeho jméno.",
-  "keyboard_shortcuts.back": "k návratu zpět",
-  "keyboard_shortcuts.blocked": "k otevření seznamu blokovaných uživatelů",
-  "keyboard_shortcuts.boost": "k boostnutí",
-  "keyboard_shortcuts.column": "k zaměření na toot v jednom ze sloupců",
-  "keyboard_shortcuts.compose": "k zaměření na psací prostor",
+  "introduction.welcome.text": "Vítejte ve fedivesmíru! Za malou chvíli budete moci posílat zprávy a povídat si se svými přáteli z mnoha serverů. Tento server {domain}, je však speciální — je na něm váš profil a proto si zapamatujte jeho jméno.",
+  "keyboard_shortcuts.back": "návrat zpět",
+  "keyboard_shortcuts.blocked": "otevřít seznam blokovaných uživatelů",
+  "keyboard_shortcuts.boost": "boost",
+  "keyboard_shortcuts.column": "zaměření na toot v jednom ze sloupců",
+  "keyboard_shortcuts.compose": "zaměření na oblast pro psaní",
   "keyboard_shortcuts.description": "Popis",
-  "keyboard_shortcuts.direct": "k otevření sloupce s přímými zprávami",
-  "keyboard_shortcuts.down": "k posunutí dolů v seznamu",
-  "keyboard_shortcuts.enter": "k otevření tootu",
-  "keyboard_shortcuts.favourite": "k oblíbení",
-  "keyboard_shortcuts.favourites": "k otevření seznamu oblíbených",
-  "keyboard_shortcuts.federated": "k otevření federované časové osy",
+  "keyboard_shortcuts.direct": "otevření sloupce s přímými zprávami",
+  "keyboard_shortcuts.down": "posunutí dolů v seznamu",
+  "keyboard_shortcuts.enter": "otevření tootu",
+  "keyboard_shortcuts.favourite": "oblíbení",
+  "keyboard_shortcuts.favourites": "otevření seznamu oblíbených",
+  "keyboard_shortcuts.federated": "otevření federované časové osy",
   "keyboard_shortcuts.heading": "Klávesové zkratky",
-  "keyboard_shortcuts.home": "k otevření domovské časové osy",
+  "keyboard_shortcuts.home": "otevření domovské časové osy",
   "keyboard_shortcuts.hotkey": "Klávesová zkratka",
-  "keyboard_shortcuts.legend": "k zobrazení této legendy",
-  "keyboard_shortcuts.local": "k otevření místní časové osy",
-  "keyboard_shortcuts.mention": "ke zmínění autora",
-  "keyboard_shortcuts.muted": "k otevření seznamu skrytých uživatelů",
-  "keyboard_shortcuts.my_profile": "k otevření vašeho profilu",
-  "keyboard_shortcuts.notifications": "k otevření sloupce s oznámeními",
-  "keyboard_shortcuts.pinned": "k otevření seznamu připnutých tootů",
-  "keyboard_shortcuts.profile": "k otevření autorova profilu",
-  "keyboard_shortcuts.reply": "k odpovězení",
-  "keyboard_shortcuts.requests": "k otevření seznamu požadavků o sledování",
-  "keyboard_shortcuts.search": "k zaměření na hledání",
-  "keyboard_shortcuts.start": "k otevření sloupce „začínáme“",
-  "keyboard_shortcuts.toggle_hidden": "k zobrazení/skrytí textu za varováním o obsahu",
-  "keyboard_shortcuts.toggle_sensitivity": "k zobrazení/skrytí médií",
-  "keyboard_shortcuts.toot": "k napsání úplně nového tootu",
-  "keyboard_shortcuts.unfocus": "ke zrušení zaměření na psací prostor/hledání",
-  "keyboard_shortcuts.up": "k posunutí nahoru v seznamu",
+  "keyboard_shortcuts.legend": "zobrazení této legendy",
+  "keyboard_shortcuts.local": "otevření místní časové osy",
+  "keyboard_shortcuts.mention": "zmínění autora",
+  "keyboard_shortcuts.muted": "otevření seznamu skrytých uživatelů",
+  "keyboard_shortcuts.my_profile": "otevření vašeho profilu",
+  "keyboard_shortcuts.notifications": "otevření sloupce s oznámeními",
+  "keyboard_shortcuts.open_media": "otevření médií",
+  "keyboard_shortcuts.pinned": "otevření seznamu připnutých tootů",
+  "keyboard_shortcuts.profile": "otevření autorova profilu",
+  "keyboard_shortcuts.reply": "odpovědět",
+  "keyboard_shortcuts.requests": "otevření seznamu požadavků o sledování",
+  "keyboard_shortcuts.search": "zaměření na hledání",
+  "keyboard_shortcuts.start": "otevření sloupce „začínáme“",
+  "keyboard_shortcuts.toggle_hidden": "zobrazení/skrytí textu za varováním o obsahu",
+  "keyboard_shortcuts.toggle_sensitivity": "zobrazení/skrytí médií",
+  "keyboard_shortcuts.toot": "napsání úplně nového tootu",
+  "keyboard_shortcuts.unfocus": "zrušení zaměření na psací prostor/hledání",
+  "keyboard_shortcuts.up": "posunutí nahoru v seznamu",
   "lightbox.close": "Zavřít",
   "lightbox.next": "Další",
   "lightbox.previous": "Předchozí",
@@ -249,13 +255,14 @@
   "lists.search": "Hledejte mezi lidmi, které sledujete",
   "lists.subheading": "Vaše seznamy",
   "load_pending": "{count, plural, one {# nová položka} few {# nové položky} many {# nových položek} other {# nových položek}}",
-  "loading_indicator.label": "Načítám…",
-  "media_gallery.toggle_visible": "Přepínat viditelnost",
+  "loading_indicator.label": "Načítání…",
+  "media_gallery.toggle_visible": "Přepnout viditelnost",
   "missing_indicator.label": "Nenalezeno",
   "missing_indicator.sublabel": "Tento zdroj se nepodařilo najít",
   "mute_modal.hide_notifications": "Skrýt oznámení od tohoto uživatele?",
   "navigation_bar.apps": "Mobilní aplikace",
   "navigation_bar.blocks": "Blokovaní uživatelé",
+  "navigation_bar.bookmarks": "Záložky",
   "navigation_bar.community_timeline": "Místní časová osa",
   "navigation_bar.compose": "Vytvořit nový toot",
   "navigation_bar.direct": "Přímé zprávy",
@@ -264,7 +271,7 @@
   "navigation_bar.edit_profile": "Upravit profil",
   "navigation_bar.favourites": "Oblíbené",
   "navigation_bar.filters": "Skrytá slova",
-  "navigation_bar.follow_requests": "Požadavky o sledování",
+  "navigation_bar.follow_requests": "Žádosti o sledování",
   "navigation_bar.follows_and_followers": "Sledovaní a sledující",
   "navigation_bar.info": "O tomto serveru",
   "navigation_bar.keyboard_shortcuts": "Klávesové zkratky",
@@ -276,19 +283,22 @@
   "navigation_bar.preferences": "Předvolby",
   "navigation_bar.public_timeline": "Federovaná časová osa",
   "navigation_bar.security": "Zabezpečení",
-  "notification.favourite": "{name} si oblíbil/a váš toot",
-  "notification.follow": "{name} vás začal/a sledovat",
-  "notification.mention": "{name} vás zmínil/a",
-  "notification.poll": "Anketa, ve které jste hlasoval/a, skončila",
-  "notification.reblog": "{name} boostnul/a váš toot",
-  "notifications.clear": "Vymazat oznámení",
-  "notifications.clear_confirmation": "Jste si jistý/á, že chcete trvale vymazat všechna vaše oznámení?",
-  "notifications.column_settings.alert": "Desktopová oznámení",
+  "notification.favourite": "Uživatel {name} si oblíbil váš toot",
+  "notification.follow": "Uživatel {name} vás začal sledovat",
+  "notification.follow_request": "Uživatel {name} požádal o povolení vás sledovat",
+  "notification.mention": "Uživatel {name} vás zmínil",
+  "notification.own_poll": "Vaše anketa skončila",
+  "notification.poll": "Anketa, ve které jste hlasovali, skončila",
+  "notification.reblog": "Uživatel {name} boostnul váš toot",
+  "notifications.clear": "Smazat oznámení",
+  "notifications.clear_confirmation": "Opravdu chcete trvale smazat všechna vaše oznámení?",
+  "notifications.column_settings.alert": "Oznámení na počítači",
   "notifications.column_settings.favourite": "Oblíbení:",
   "notifications.column_settings.filter_bar.advanced": "Zobrazit všechny kategorie",
   "notifications.column_settings.filter_bar.category": "Panel rychlého filtrování",
   "notifications.column_settings.filter_bar.show": "Zobrazit",
   "notifications.column_settings.follow": "Noví sledující:",
+  "notifications.column_settings.follow_request": "Nové žádosti o sledování:",
   "notifications.column_settings.mention": "Zmínky:",
   "notifications.column_settings.poll": "Výsledky anket:",
   "notifications.column_settings.push": "Push oznámení",
@@ -302,12 +312,12 @@
   "notifications.filter.mentions": "Zmínky",
   "notifications.filter.polls": "Výsledky anket",
   "notifications.group": "{count} oznámení",
-  "poll.closed": "Uzavřena",
+  "poll.closed": "Uzavřeno",
   "poll.refresh": "Obnovit",
   "poll.total_people": "{count, plural, one {# člověk} few {# lidé} many {# lidí} other {# lidí}}",
-  "poll.total_votes": "{count, plural, one {# hlas} few {# hlasy} many {# hlasu} other {# hlasů}}",
+  "poll.total_votes": "{count, plural, one {# hlas} few {# hlasy} many {# hlasů} other {# hlasů}}",
   "poll.vote": "Hlasovat",
-  "poll.voted": "Pro tuto odpověď jste hlasoval/a",
+  "poll.voted": "Pro tuto odpověď jste hlasovali",
   "poll_button.add_poll": "Přidat anketu",
   "poll_button.remove_poll": "Odstranit anketu",
   "privacy.change": "Změnit soukromí tootu",
@@ -317,11 +327,11 @@
   "privacy.private.short": "Pouze pro sledující",
   "privacy.public.long": "Odeslat na veřejné časové osy",
   "privacy.public.short": "Veřejný",
-  "privacy.unlisted.long": "Neodeslat na veřejné časové osy",
+  "privacy.unlisted.long": "Neodesílat na veřejné časové osy",
   "privacy.unlisted.short": "Neuvedený",
   "refresh": "Obnovit",
-  "regeneration_indicator.label": "Načítám…",
-  "regeneration_indicator.sublabel": "Váš domovský proud se připravuje!",
+  "regeneration_indicator.label": "Načítání…",
+  "regeneration_indicator.sublabel": "Váš domovský kanál se připravuje!",
   "relative_time.days": "{number} d",
   "relative_time.hours": "{number} h",
   "relative_time.just_now": "teď",
@@ -330,13 +340,13 @@
   "reply_indicator.cancel": "Zrušit",
   "report.forward": "Přeposlat na {target}",
   "report.forward_hint": "Tento účet je z jiného serveru. Chcete na něj také poslat anonymizovanou kopii?",
-  "report.hint": "Nahlášení bude zasláno moderátorům vašeho serveru. Níže můžete uvést, proč tento účet nahlašujete:",
+  "report.hint": "Hlášení bude zasláno moderátorům vašeho serveru. Níže můžete uvést, proč tento účet nahlašujete:",
   "report.placeholder": "Dodatečné komentáře",
   "report.submit": "Odeslat",
   "report.target": "Nahlášení uživatele {target}",
   "search.placeholder": "Hledat",
   "search_popout.search_format": "Pokročilé hledání",
-  "search_popout.tips.full_text": "Jednoduchý text navrátí tooty, které jste napsal/a, oblíbil/a si, boostnul/a, nebo v nich byl/a zmíněn/a, a také odpovídající přezdívky, zobrazovaná jména a hashtagy.",
+  "search_popout.tips.full_text": "Jednoduchý text navrátí tooty, které jste napsali, oblíbili si, boostnuli, nebo vás v nich někdo zmínil, a také odpovídající přezdívky, zobrazovaná jména a hashtagy.",
   "search_popout.tips.hashtag": "hashtag",
   "search_popout.tips.status": "toot",
   "search_popout.tips.text": "Jednoduchý text navrátí odpovídající zobrazovaná jména, přezdívky a hashtagy",
@@ -345,16 +355,17 @@
   "search_results.hashtags": "Hashtagy",
   "search_results.statuses": "Tooty",
   "search_results.statuses_fts_disabled": "Vyhledávání tootů podle jejich obsahu není na tomto serveru Mastodon povoleno.",
-  "search_results.total": "{count, number} {count, plural, one {výsledek} few {výsledky} many {výsledku} other {výsledků}}",
+  "search_results.total": "{count, number} {count, plural, one {výsledek} few {výsledky} many {výsledků} other {výsledků}}",
   "status.admin_account": "Otevřít moderátorské rozhraní pro uživatele @{name}",
   "status.admin_status": "Otevřít tento toot v moderátorském rozhraní",
   "status.block": "Zablokovat uživatele @{name}",
+  "status.bookmark": "Přidat do záložek",
   "status.cancel_reblog_private": "Zrušit boost",
   "status.cannot_reblog": "Tento příspěvek nemůže být boostnutý",
   "status.copy": "Kopírovat odkaz k tootu",
   "status.delete": "Smazat",
-  "status.detailed_status": "Detailní zobrazení konverzace",
-  "status.direct": "Poslat přímou zprávu uživateli @{name}",
+  "status.detailed_status": "Podrobné zobrazení konverzace",
+  "status.direct": "Poslat uživateli @{name} přímou zprávu",
   "status.embed": "Vložit na web",
   "status.favourite": "Oblíbit",
   "status.filtered": "Filtrováno",
@@ -371,9 +382,10 @@
   "status.read_more": "Číst více",
   "status.reblog": "Boostnout",
   "status.reblog_private": "Boostnout původnímu publiku",
-  "status.reblogged_by": "{name} boostnul/a",
+  "status.reblogged_by": "Uživatel {name} boostnul",
   "status.reblogs.empty": "Tento toot ještě nikdo neboostnul. Pokud to někdo udělá, zobrazí se zde.",
   "status.redraft": "Smazat a přepsat",
+  "status.remove_bookmark": "Odstranit ze záložek",
   "status.reply": "Odpovědět",
   "status.replyAll": "Odpovědět na vlákno",
   "status.report": "Nahlásit uživatele @{name}",
@@ -388,37 +400,40 @@
   "status.unmute_conversation": "Odkrýt konverzaci",
   "status.unpin": "Odepnout z profilu",
   "suggestions.dismiss": "Odmítnout návrh",
-  "suggestions.header": "Mohli by vás zajímat…",
+  "suggestions.header": "Mohlo by vás zajímat…",
   "tabs_bar.federated_timeline": "Federovaná",
   "tabs_bar.home": "Domů",
   "tabs_bar.local_timeline": "Místní",
   "tabs_bar.notifications": "Oznámení",
   "tabs_bar.search": "Hledat",
-  "time_remaining.days": "{number, plural, one {Zbývá # den} few {Zbývají # dny} many {Zbývá # dne} other {Zbývá # dní}}",
-  "time_remaining.hours": "{number, plural, one {Zbývá # hodina} few {Zbývají # hodiny} many {Zbývá # hodiny} other {Zbývá # hodin}}",
-  "time_remaining.minutes": "{number, plural, one {Zbývá # minuta} few {Zbývají # minuty} many {Zbývá # minuty} other {Zbývá # minut}}",
+  "time_remaining.days": "{number, plural, one {Zbývá # den} few {Zbývají # dny} many {Zbývá # dní} other {Zbývá # dní}}",
+  "time_remaining.hours": "{number, plural, one {Zbývá # hodina} few {Zbývají # hodiny} many {Zbývá # hodin} other {Zbývá # hodin}}",
+  "time_remaining.minutes": "{number, plural, one {Zbývá # minuta} few {Zbývají # minuty} many {Zbývá # minut} other {Zbývá # minut}}",
   "time_remaining.moments": "Zbývá několik sekund",
-  "time_remaining.seconds": "{number, plural, one {Zbývá # sekunda} few {Zbývají # sekundy} many {Zbývá # sekundy} other {Zbývá # sekund}}",
+  "time_remaining.seconds": "{number, plural, one {Zbývá # sekunda} few {Zbývají # sekundy} many {Zbývá # sekund} other {Zbývá # sekund}}",
   "trends.count_by_accounts": "{count} {rawCount, plural, one {člověk} few {lidé} many {lidí} other {lidí}} hovoří",
   "trends.trending_now": "Aktuální trendy",
-  "ui.beforeunload": "Váš koncept se ztratí, pokud Mastodon opustíte.",
-  "upload_area.title": "Přetažením nahrajete",
-  "upload_button.label": "Přidat média (JPEG, PNG, GIF, WebM, MP4, MOV)",
+  "ui.beforeunload": "Pokud Mastodon opustíte, váš koncept se ztratí.",
+  "upload_area.title": "Nahrajte přetažením",
+  "upload_button.label": "Přidat média ({formats})",
   "upload_error.limit": "Byl překročen limit nahraných souborů.",
-  "upload_error.poll": "Nahrávání souborů není povoleno u anket.",
+  "upload_error.poll": "U anket není nahrávání souborů povoleno.",
+  "upload_form.audio_description": "Popis pro sluchově postižené",
   "upload_form.description": "Popis pro zrakově postižené",
   "upload_form.edit": "Upravit",
   "upload_form.undo": "Smazat",
+  "upload_form.video_description": "Popis pro sluchově či zrakově postižené",
   "upload_modal.analyzing_picture": "Analyzuji obrázek…",
   "upload_modal.apply": "Použít",
   "upload_modal.description_placeholder": "Příliš žluťoučký kůň úpěl ďábelské ódy",
   "upload_modal.detect_text": "Detekovat text z obrázku",
   "upload_modal.edit_media": "Upravit média",
-  "upload_modal.hint": "Kliknutím na nebo přetáhnutím kruhu na náhledu vyberte bod soustředění, který bude vždy zobrazen na všech náhledech.",
+  "upload_modal.hint": "Kliknutím na nebo přetáhnutím kruhu na náhledu vyberte oblast, která bude na všech náhledech vždy zobrazen.",
   "upload_modal.preview_label": "Náhled ({ratio})",
-  "upload_progress.label": "Nahrávám…",
+  "upload_progress.label": "Nahrávání…",
   "video.close": "Zavřít video",
-  "video.exit_fullscreen": "Ukončit celou obrazovku",
+  "video.download": "Stáhnout soubor",
+  "video.exit_fullscreen": "Ukončit režim celé obrazovky",
   "video.expand": "Otevřít video",
   "video.fullscreen": "Celá obrazovka",
   "video.hide": "Skrýt video",
diff --git a/app/javascript/mastodon/locales/cy.json b/app/javascript/mastodon/locales/cy.json
index aeb919f5fb8da086f24b75e7fda755e746c37f9d..6625c9fcbadeef26551c18482c77a5f1c97404d5 100644
--- a/app/javascript/mastodon/locales/cy.json
+++ b/app/javascript/mastodon/locales/cy.json
@@ -1,6 +1,7 @@
 {
   "account.add_or_remove_from_list": "Ychwanegu neu Dileu o'r rhestrau",
   "account.badges.bot": "Bot",
+  "account.badges.group": "Group",
   "account.block": "Blocio @{name}",
   "account.block_domain": "Cuddio popeth rhag {domain}",
   "account.blocked": "Blociwyd",
@@ -51,6 +52,7 @@
   "bundle_modal_error.message": "Aeth rhywbeth o'i le tra'n llwytho'r elfen hon.",
   "bundle_modal_error.retry": "Ceiswich eto",
   "column.blocks": "Defnyddwyr a flociwyd",
+  "column.bookmarks": "Tudalnodau",
   "column.community": "Ffrwd lleol",
   "column.direct": "Negeseuon preifat",
   "column.directory": "Pori proffiliau",
@@ -82,6 +84,8 @@
   "compose_form.poll.duration": "Cyfnod pleidlais",
   "compose_form.poll.option_placeholder": "Dewisiad {number}",
   "compose_form.poll.remove_option": "Tynnu'r dewisiad",
+  "compose_form.poll.switch_to_multiple": "Change poll to allow multiple choices",
+  "compose_form.poll.switch_to_single": "Change poll to allow for a single choice",
   "compose_form.publish": "Tŵt",
   "compose_form.publish_loud": "{publish}!",
   "compose_form.sensitive.hide": "Marcio cyfryngau fel eu bod yn sensitif",
@@ -103,7 +107,7 @@
   "confirmations.logout.confirm": "Allgofnodi",
   "confirmations.logout.message": "Ydych chi'n siŵr eich bod am allgofnodi?",
   "confirmations.mute.confirm": "Tawelu",
-  "confirmations.mute.explanation": "This will hide posts from them and posts mentioning them, but it will still allow them to see your posts and follow you.",
+  "confirmations.mute.explanation": "Bydd hyn yn cuddio pyst oddi wrthynt a physt sydd yn sôn amdanynt, ond bydd hyn dal yn gadael iddyn nhw gweld eich pyst a'ch dilyn.",
   "confirmations.mute.message": "Ydych chi'n sicr eich bod am ddistewi {name}?",
   "confirmations.redraft.confirm": "Dileu & ailddrafftio",
   "confirmations.redraft.message": "Ydych chi'n siwr eich bod eisiau dileu y tŵt hwn a'i ailddrafftio? Bydd ffefrynnau a bwstiau'n cael ei colli, a bydd ymatebion i'r tŵt gwreiddiol yn cael eu hamddifadu.",
@@ -138,6 +142,7 @@
   "empty_column.account_timeline": "Dim tŵtiau fama!",
   "empty_column.account_unavailable": "Proffil ddim ar gael",
   "empty_column.blocks": "Nid ydych wedi blocio unrhyw ddefnyddwyr eto.",
+  "empty_column.bookmarked_statuses": "Nid oes gennych unrhyw dwtiau tudalnodiedig eto. Pan y byddwch yn tudalnodi un, mi fydd yn ymddangos yma.",
   "empty_column.community": "Mae'r ffrwd lleol yn wag. Ysgrifenwch rhywbeth yn gyhoeddus i gael dechrau arni!",
   "empty_column.direct": "Nid oes gennych unrhyw negeseuon preifat eto. Pan y byddwch yn anfon neu derbyn un, mi fydd yn ymddangos yma.",
   "empty_column.domain_blocks": "Nid oes yna unrhyw barthau cuddiedig eto.",
@@ -152,10 +157,10 @@
   "empty_column.mutes": "Nid ydych wedi tawelu unrhyw ddefnyddwyr eto.",
   "empty_column.notifications": "Nid oes gennych unrhyw hysbysiadau eto. Rhyngweithiwch ac eraill i ddechrau'r sgwrs.",
   "empty_column.public": "Does dim byd yma! Ysgrifennwch rhywbeth yn gyhoeddus, neu dilynwch ddefnyddwyr o achosion eraill i'w lenwi",
-  "error.unexpected_crash.explanation": "Due to a bug in our code or a browser compatibility issue, this page could not be displayed correctly.",
-  "error.unexpected_crash.next_steps": "Try refreshing the page. If that does not help, you may still be able to use Mastodon through a different browser or native app.",
-  "errors.unexpected_crash.copy_stacktrace": "Copy stacktrace to clipboard",
-  "errors.unexpected_crash.report_issue": "Report issue",
+  "error.unexpected_crash.explanation": "Oherwydd gwall yn ein cod neu oherwydd problem cysondeb porwr, nid oedd y dudalen hon gallu cael ei dangos yn gywir.",
+  "error.unexpected_crash.next_steps": "Ceisiwch ail-lwytho y dudalen. Os nad yw hyn yn eich helpu, efallai gallech defnyddio Mastodon trwy borwr neu ap brodorol gwahanol.",
+  "errors.unexpected_crash.copy_stacktrace": "Copïo'r olrhain stac i'r clipfwrdd",
+  "errors.unexpected_crash.report_issue": "Rhoi gwybod am broblem",
   "federation.change": "Adjust status federation",
   "federation.federated.long": "Allow toot to reach other instances",
   "federation.federated.short": "Federated",
@@ -224,6 +229,7 @@
   "keyboard_shortcuts.muted": "i agor rhestr defnyddwyr a dawelwyd",
   "keyboard_shortcuts.my_profile": "i agor eich proffil",
   "keyboard_shortcuts.notifications": "i agor colofn hysbysiadau",
+  "keyboard_shortcuts.open_media": "i agor cyfryngau",
   "keyboard_shortcuts.pinned": "i agor rhestr tŵtiau wedi'i pinio",
   "keyboard_shortcuts.profile": "i agor proffil yr awdur",
   "keyboard_shortcuts.reply": "i ateb",
@@ -256,6 +262,7 @@
   "mute_modal.hide_notifications": "Cuddio hysbysiadau rhag y defnyddiwr hwn?",
   "navigation_bar.apps": "Apiau symudol",
   "navigation_bar.blocks": "Defnyddwyr wedi eu blocio",
+  "navigation_bar.bookmarks": "Tudalnodau",
   "navigation_bar.community_timeline": "Ffrwd leol",
   "navigation_bar.compose": "Cyfansoddi tŵt newydd",
   "navigation_bar.direct": "Negeseuon preifat",
@@ -278,7 +285,9 @@
   "navigation_bar.security": "Diogelwch",
   "notification.favourite": "hoffodd {name} eich tŵt",
   "notification.follow": "dilynodd {name} chi",
+  "notification.follow_request": "Mae {name} wedi gwneud cais i'ch dilyn",
   "notification.mention": "Soniodd {name} amdanoch chi",
+  "notification.own_poll": "Mae eich pôl wedi diweddu",
   "notification.poll": "Mae pleidlais rydych wedi pleidleisio ynddi wedi dod i ben",
   "notification.reblog": "Hysbysebodd {name} eich tŵt",
   "notifications.clear": "Clirio hysbysiadau",
@@ -289,6 +298,7 @@
   "notifications.column_settings.filter_bar.category": "Bar hidlo",
   "notifications.column_settings.filter_bar.show": "Dangos",
   "notifications.column_settings.follow": "Dilynwyr newydd:",
+  "notifications.column_settings.follow_request": "Ceisiadau dilyn newydd:",
   "notifications.column_settings.mention": "Crybwylliadau:",
   "notifications.column_settings.poll": "Canlyniadau pleidlais:",
   "notifications.column_settings.push": "Hysbysiadau gwthiadwy",
@@ -304,10 +314,10 @@
   "notifications.group": "{count} o hysbysiadau",
   "poll.closed": "Ar gau",
   "poll.refresh": "Adnewyddu",
-  "poll.total_people": "{count, plural, one {# person} other {# people}}",
+  "poll.total_people": "{count, plural, one {# berson} other {# o bobl}}",
   "poll.total_votes": "{count, plural, one {# bleidlais} other {# o bleidleisiau}}",
   "poll.vote": "Pleidleisio",
-  "poll.voted": "You voted for this answer",
+  "poll.voted": "Pleidleisioch chi am yr ateb hon",
   "poll_button.add_poll": "Ychwanegu pleidlais",
   "poll_button.remove_poll": "Tynnu pleidlais",
   "privacy.change": "Addasu preifatrwdd y tŵt",
@@ -319,7 +329,7 @@
   "privacy.public.short": "Cyhoeddus",
   "privacy.unlisted.long": "Peidio a chyhoeddi i ffrydiau cyhoeddus",
   "privacy.unlisted.short": "Heb ei restru",
-  "refresh": "Refresh",
+  "refresh": "Adnewyddu",
   "regeneration_indicator.label": "Llwytho…",
   "regeneration_indicator.sublabel": "Mae eich ffrwd cartref yn cael ei baratoi!",
   "relative_time.days": "{number}dydd",
@@ -349,6 +359,7 @@
   "status.admin_account": "Agor rhyngwyneb goruwchwylio ar gyfer @{name}",
   "status.admin_status": "Agor y tŵt yn y rhyngwyneb goruwchwylio",
   "status.block": "Blocio @{name}",
+  "status.bookmark": "Tudalnodi",
   "status.cancel_reblog_private": "Dadfŵstio",
   "status.cannot_reblog": "Ni ellir sbarduno'r tŵt hwn",
   "status.copy": "Copïo cysylltiad i'r tŵt",
@@ -374,6 +385,7 @@
   "status.reblogged_by": "Bŵstio {name}",
   "status.reblogs.empty": "Does neb wedi bŵstio'r tŵt yma eto. Pan y bydd rhywun yn gwneud, byddent yn ymddangos yma.",
   "status.redraft": "Dileu & ailddrafftio",
+  "status.remove_bookmark": "Tynnu'r tudalnod",
   "status.reply": "Ateb",
   "status.replyAll": "Ateb i edefyn",
   "status.report": "Adrodd @{name}",
@@ -406,9 +418,11 @@
   "upload_button.label": "Ychwanegwch gyfryngau (JPEG, PNG, GIF, WebM, MP4, MOV)",
   "upload_error.limit": "Wedi mynd heibio'r uchafswm terfyn uwchlwytho.",
   "upload_error.poll": "Nid oes modd uwchlwytho ffeiliau â phleidleisiau.",
+  "upload_form.audio_description": "Disgrifio ar gyfer pobl sydd â cholled clyw",
   "upload_form.description": "Disgrifio i'r rheini a nam ar ei golwg",
   "upload_form.edit": "Golygu",
   "upload_form.undo": "Dileu",
+  "upload_form.video_description": "Disgrifio ar gyfer pobl sydd â cholled clyw neu amhariad golwg",
   "upload_modal.analyzing_picture": "Dadansoddi llun…",
   "upload_modal.apply": "Gweithredu",
   "upload_modal.description_placeholder": "Mae ei phen bach llawn jocs, 'run peth a fy nghot golff, rhai dyddiau",
@@ -418,6 +432,7 @@
   "upload_modal.preview_label": "Rhagolwg ({ratio})",
   "upload_progress.label": "Uwchlwytho...",
   "video.close": "Cau fideo",
+  "video.download": "Lawrlwytho ffeil",
   "video.exit_fullscreen": "Gadael sgrîn llawn",
   "video.expand": "Ymestyn fideo",
   "video.fullscreen": "Sgrîn llawn",
diff --git a/app/javascript/mastodon/locales/da.json b/app/javascript/mastodon/locales/da.json
index 64088fd6e8e01df82f864774a7dab7d17ec439fd..1450bf40c6cd073617fcef8763500467e0e7c863 100644
--- a/app/javascript/mastodon/locales/da.json
+++ b/app/javascript/mastodon/locales/da.json
@@ -1,6 +1,7 @@
 {
   "account.add_or_remove_from_list": "Tilføj eller fjern fra lister",
   "account.badges.bot": "Robot",
+  "account.badges.group": "Group",
   "account.block": "Bloker @{name}",
   "account.block_domain": "Skjul alt fra {domain}",
   "account.blocked": "Blokeret",
@@ -39,7 +40,7 @@
   "account.unmute": "Fjern dæmpningen af @{name}",
   "account.unmute_notifications": "Fjern dæmpningen af notifikationer fra @{name}",
   "alert.rate_limited.message": "Prøv venligst igen efter {retry_time, time, medium}.",
-  "alert.rate_limited.title": "Rate limited",
+  "alert.rate_limited.title": "Gradsbegrænset",
   "alert.unexpected.message": "Der opstod en uventet fejl.",
   "alert.unexpected.title": "Ups!",
   "autosuggest_hashtag.per_week": "{count} per uge",
@@ -51,6 +52,7 @@
   "bundle_modal_error.message": "Noget gik galt under indlæsningen af dette komponent.",
   "bundle_modal_error.retry": "Prøv igen",
   "column.blocks": "Blokerede brugere",
+  "column.bookmarks": "Bogmærker",
   "column.community": "Lokal tidslinje",
   "column.direct": "Direkte beskeder",
   "column.directory": "Gennemse profiler",
@@ -82,6 +84,8 @@
   "compose_form.poll.duration": "Afstemningens varighed",
   "compose_form.poll.option_placeholder": "Valgmulighed {number}",
   "compose_form.poll.remove_option": "Fjern denne valgmulighed",
+  "compose_form.poll.switch_to_multiple": "Change poll to allow multiple choices",
+  "compose_form.poll.switch_to_single": "Change poll to allow for a single choice",
   "compose_form.publish": "Trut",
   "compose_form.publish_loud": "{publish}!",
   "compose_form.sensitive.hide": "Markér medie som følsomt",
@@ -103,7 +107,7 @@
   "confirmations.logout.confirm": "Log ud",
   "confirmations.logout.message": "Er du sikker på du vil logge ud?",
   "confirmations.mute.confirm": "Dæmp",
-  "confirmations.mute.explanation": "This will hide posts from them and posts mentioning them, but it will still allow them to see your posts and follow you.",
+  "confirmations.mute.explanation": "Dette vil skjule indlæg fra dem, samt andre indlæg der omtaler dem, men de vil stadig være i stand til at se dine indlæg og følge dig.",
   "confirmations.mute.message": "Er du sikker på, du vil dæmpe {name}?",
   "confirmations.redraft.confirm": "Slet & omskriv",
   "confirmations.redraft.message": "Er du sikker på, du vil slette denne status og omskrive den? Favoritter og fremhævelser vil gå tabt og svar til det oprindelige opslag vil blive forældreløse.",
@@ -138,6 +142,7 @@
   "empty_column.account_timeline": "Ingen bidrag her!",
   "empty_column.account_unavailable": "Profil utilgængelig",
   "empty_column.blocks": "Du har ikke blokeret nogen endnu.",
+  "empty_column.bookmarked_statuses": "You don't have any bookmarked toots yet. When you bookmark one, it will show up here.",
   "empty_column.community": "Den lokale tidslinje er tom. Skriv noget offentligt for at starte lavinen!",
   "empty_column.direct": "Du har endnu ingen direkte beskeder. NÃ¥r du sender eller modtager en, vil den vises her.",
   "empty_column.domain_blocks": "Der er endnu ikke nogle skjulte domæner.",
@@ -152,10 +157,10 @@
   "empty_column.mutes": "Du har endnu ikke dæmpet nogen som helst bruger.",
   "empty_column.notifications": "Du har endnu ingen notifikationer. Tag ud og bland dig med folkemængden for at starte samtalen.",
   "empty_column.public": "Der er ikke noget at se her! Skriv noget offentligt eller start ud med manuelt at følge brugere fra andre server for at udfylde tomrummet",
-  "error.unexpected_crash.explanation": "Due to a bug in our code or a browser compatibility issue, this page could not be displayed correctly.",
-  "error.unexpected_crash.next_steps": "Try refreshing the page. If that does not help, you may still be able to use Mastodon through a different browser or native app.",
-  "errors.unexpected_crash.copy_stacktrace": "Copy stacktrace to clipboard",
-  "errors.unexpected_crash.report_issue": "Report issue",
+  "error.unexpected_crash.explanation": "På grund af en fejl i vores kode, eller en browser kompatibilitetsfejl, så kunne siden ikke vises korrekt.",
+  "error.unexpected_crash.next_steps": "Prøv at genindlæs siden. Hvis dette ikke hjælper, så forsøg venligst, at tilgå Mastodon via en anden browser eller app.",
+  "errors.unexpected_crash.copy_stacktrace": "Kopiér stack trace til udklipsholderen",
+  "errors.unexpected_crash.report_issue": "Rapportér problem",
   "federation.change": "Adjust status federation",
   "federation.federated.long": "Allow toot to reach other instances",
   "federation.federated.short": "Federated",
@@ -224,6 +229,7 @@
   "keyboard_shortcuts.muted": "for at åbne listen over dæmpede brugere",
   "keyboard_shortcuts.my_profile": "for at åbne din profil",
   "keyboard_shortcuts.notifications": "for at åbne notifikations kolonnen",
+  "keyboard_shortcuts.open_media": "to open media",
   "keyboard_shortcuts.pinned": "for at åbne listen over fastgjorte trut",
   "keyboard_shortcuts.profile": "til profil af åben forfatter",
   "keyboard_shortcuts.reply": "for at svare",
@@ -256,6 +262,7 @@
   "mute_modal.hide_notifications": "Skjul notifikationer fra denne bruger?",
   "navigation_bar.apps": "Mobil apps",
   "navigation_bar.blocks": "Blokerede brugere",
+  "navigation_bar.bookmarks": "Bogmærker",
   "navigation_bar.community_timeline": "Lokal tidslinje",
   "navigation_bar.compose": "Skriv nyt trut",
   "navigation_bar.direct": "Direkte beskeder",
@@ -278,7 +285,9 @@
   "navigation_bar.security": "Sikkerhed",
   "notification.favourite": "{name} favoriserede din status",
   "notification.follow": "{name} fulgte dig",
+  "notification.follow_request": "{name} has requested to follow you",
   "notification.mention": "{name} nævnte dig",
+  "notification.own_poll": "Din afstemning er afsluttet",
   "notification.poll": "En afstemning, du stemte i, er slut",
   "notification.reblog": "{name} boostede din status",
   "notifications.clear": "Ryd notifikationer",
@@ -289,6 +298,7 @@
   "notifications.column_settings.filter_bar.category": "Hurtigfilter",
   "notifications.column_settings.filter_bar.show": "Vis",
   "notifications.column_settings.follow": "Nye følgere:",
+  "notifications.column_settings.follow_request": "New follow requests:",
   "notifications.column_settings.mention": "Statusser der nævner dig:",
   "notifications.column_settings.poll": "Afstemningsresultat:",
   "notifications.column_settings.push": "Pushnotifikationer",
@@ -304,10 +314,10 @@
   "notifications.group": "{count} notifikationer",
   "poll.closed": "Lukket",
   "poll.refresh": "Opdatér",
-  "poll.total_people": "{count, plural, one {# person} other {# people}}",
+  "poll.total_people": "{count, plural, one {# person} other {# personer}}",
   "poll.total_votes": "{count, plural, one {# stemme} other {# stemmer}}",
   "poll.vote": "Stem",
-  "poll.voted": "You voted for this answer",
+  "poll.voted": "Du stemte for denne valgmulighed",
   "poll_button.add_poll": "Tilføj en afstemning",
   "poll_button.remove_poll": "Fjern afstemning",
   "privacy.change": "Skift status visningsindstillinger",
@@ -319,7 +329,7 @@
   "privacy.public.short": "Offentligt",
   "privacy.unlisted.long": "Udgiv ikke på offentlige tidslinjer",
   "privacy.unlisted.short": "Ikke listet",
-  "refresh": "Refresh",
+  "refresh": "Opdatér",
   "regeneration_indicator.label": "Indlæser…",
   "regeneration_indicator.sublabel": "Din startside er ved at blive forberedt!",
   "relative_time.days": "{number}d",
@@ -349,6 +359,7 @@
   "status.admin_account": "Ã…ben modereringsvisning for @{name}",
   "status.admin_status": "Ã…ben denne status i modereringsvisningen",
   "status.block": "Bloker @{name}",
+  "status.bookmark": "Bogmærke",
   "status.cancel_reblog_private": "Fjern boost",
   "status.cannot_reblog": "Denne post kan ikke boostes",
   "status.copy": "Kopiér link til status",
@@ -374,6 +385,7 @@
   "status.reblogged_by": "{name} boostede",
   "status.reblogs.empty": "Der er endnu ingen der har boostet dette trut. Når der er nogen der gør, vil det blive vist her.",
   "status.redraft": "Slet og omskriv",
+  "status.remove_bookmark": "Fjern bogmærke",
   "status.reply": "Besvar",
   "status.replyAll": "Besvar samtale",
   "status.report": "Anmeld @{name}",
@@ -406,9 +418,11 @@
   "upload_button.label": "Tilføj medie (JPEG, PNG, GIF, WebM, MP4, MOV)",
   "upload_error.limit": "Uploadgrænse overskredet.",
   "upload_error.poll": "Filupload ikke tilladt sammen med afstemninger.",
+  "upload_form.audio_description": "Describe for people with hearing loss",
   "upload_form.description": "Beskriv for svagtseende",
   "upload_form.edit": "Redigér",
   "upload_form.undo": "Slet",
+  "upload_form.video_description": "Describe for people with hearing loss or visual impairment",
   "upload_modal.analyzing_picture": "Analyserer billede…",
   "upload_modal.apply": "Anvend",
   "upload_modal.description_placeholder": "En hurtig brun ræv hopper over den dovne hund",
@@ -418,6 +432,7 @@
   "upload_modal.preview_label": "Forhåndsvisning ({ratio})",
   "upload_progress.label": "Uploader...",
   "video.close": "Luk video",
+  "video.download": "Hent fil",
   "video.exit_fullscreen": "Forlad fuldskærm",
   "video.expand": "Udvid video",
   "video.fullscreen": "Fuldskærm",
diff --git a/app/javascript/mastodon/locales/de.json b/app/javascript/mastodon/locales/de.json
index 077cb729a99f1fbed5b388fbc8d5fd03917b345d..294a72fccd1c4a75e1eb2c0eba2dcccb0e80371e 100644
--- a/app/javascript/mastodon/locales/de.json
+++ b/app/javascript/mastodon/locales/de.json
@@ -1,6 +1,7 @@
 {
   "account.add_or_remove_from_list": "Hinzufügen oder Entfernen von Listen",
   "account.badges.bot": "Bot",
+  "account.badges.group": "Group",
   "account.block": "@{name} blockieren",
   "account.block_domain": "Alles von {domain} verstecken",
   "account.blocked": "Blockiert",
@@ -51,6 +52,7 @@
   "bundle_modal_error.message": "Etwas ist beim Laden schiefgelaufen.",
   "bundle_modal_error.retry": "Erneut versuchen",
   "column.blocks": "Blockierte Profile",
+  "column.bookmarks": "Lesezeichen",
   "column.community": "Lokale Zeitleiste",
   "column.direct": "Direktnachrichten",
   "column.directory": "Profile durchsuchen",
@@ -82,6 +84,8 @@
   "compose_form.poll.duration": "Umfragedauer",
   "compose_form.poll.option_placeholder": "Wahl {number}",
   "compose_form.poll.remove_option": "Wahl entfernen",
+  "compose_form.poll.switch_to_multiple": "Change poll to allow multiple choices",
+  "compose_form.poll.switch_to_single": "Change poll to allow for a single choice",
   "compose_form.publish": "Tröt",
   "compose_form.publish_loud": "{publish}!",
   "compose_form.sensitive.hide": "Medien als heikel markieren",
@@ -138,6 +142,7 @@
   "empty_column.account_timeline": "Keine Beiträge!",
   "empty_column.account_unavailable": "Konto nicht verfügbar",
   "empty_column.blocks": "Du hast keine Profile blockiert.",
+  "empty_column.bookmarked_statuses": "Du hast bis jetzt keine Beiträge als Lesezeichen gespeichert. Wenn du einen Beitrag als Lesezeichen speicherst wird er hier erscheinen.",
   "empty_column.community": "Die lokale Zeitleiste ist leer. Schreibe einen öffentlichen Beitrag, um den Ball ins Rollen zu bringen!",
   "empty_column.direct": "Du hast noch keine Direktnachrichten erhalten. Wenn du eine sendest oder empfängst, wird sie hier zu sehen sein.",
   "empty_column.domain_blocks": "Es ist noch keine versteckten Domains.",
@@ -169,7 +174,7 @@
   "getting_started.heading": "Erste Schritte",
   "getting_started.invite": "Leute einladen",
   "getting_started.open_source_notice": "Mastodon ist quelloffene Software. Du kannst auf GitHub unter {github} dazu beitragen oder Probleme melden.",
-  "getting_started.security": "Sicherheit",
+  "getting_started.security": "Konto & Sicherheit",
   "getting_started.terms": "Nutzungsbedingungen",
   "hashtag.column_header.tag_mode.all": "und {additional}",
   "hashtag.column_header.tag_mode.any": "oder {additional}",
@@ -224,6 +229,7 @@
   "keyboard_shortcuts.muted": "Liste stummgeschalteter Profile öffnen",
   "keyboard_shortcuts.my_profile": "Dein Profil öffnen",
   "keyboard_shortcuts.notifications": "Benachrichtigungsspalte öffnen",
+  "keyboard_shortcuts.open_media": "um Medien zu öffnen",
   "keyboard_shortcuts.pinned": "Liste angehefteter Beiträge öffnen",
   "keyboard_shortcuts.profile": "Profil des Autors öffnen",
   "keyboard_shortcuts.reply": "antworten",
@@ -256,6 +262,7 @@
   "mute_modal.hide_notifications": "Benachrichtigungen von diesem Account verbergen?",
   "navigation_bar.apps": "Mobile Apps",
   "navigation_bar.blocks": "Blockierte Profile",
+  "navigation_bar.bookmarks": "Lesezeichen",
   "navigation_bar.community_timeline": "Lokale Zeitleiste",
   "navigation_bar.compose": "Neuen Beitrag verfassen",
   "navigation_bar.direct": "Direktnachrichten",
@@ -278,7 +285,9 @@
   "navigation_bar.security": "Sicherheit",
   "notification.favourite": "{name} hat deinen Beitrag favorisiert",
   "notification.follow": "{name} folgt dir",
+  "notification.follow_request": "{name} möchte dir folgen",
   "notification.mention": "{name} hat dich erwähnt",
+  "notification.own_poll": "Deine Umfrage ist beendet",
   "notification.poll": "Eine Umfrage in der du abgestimmt hast ist vorbei",
   "notification.reblog": "{name} hat deinen Beitrag geteilt",
   "notifications.clear": "Mitteilungen löschen",
@@ -289,6 +298,7 @@
   "notifications.column_settings.filter_bar.category": "Schnellfilterleiste",
   "notifications.column_settings.filter_bar.show": "Anzeigen",
   "notifications.column_settings.follow": "Neue Folgende:",
+  "notifications.column_settings.follow_request": "Neue Folge-Anfragen:",
   "notifications.column_settings.mention": "Erwähnungen:",
   "notifications.column_settings.poll": "Ergebnisse von Umfragen:",
   "notifications.column_settings.push": "Push-Benachrichtigungen",
@@ -349,6 +359,7 @@
   "status.admin_account": "Öffne Moderationsoberfläche für @{name}",
   "status.admin_status": "Öffne Beitrag in der Moderationsoberfläche",
   "status.block": "Blockiere @{name}",
+  "status.bookmark": "Lesezeichen",
   "status.cancel_reblog_private": "Nicht mehr teilen",
   "status.cannot_reblog": "Dieser Beitrag kann nicht geteilt werden",
   "status.copy": "Kopiere Link zum Beitrag",
@@ -374,6 +385,7 @@
   "status.reblogged_by": "{name} teilte",
   "status.reblogs.empty": "Diesen Beitrag hat noch niemand geteilt. Sobald es jemand tut, wird diese Person hier angezeigt.",
   "status.redraft": "Löschen und neu erstellen",
+  "status.remove_bookmark": "Lesezeichen entfernen",
   "status.reply": "Antworten",
   "status.replyAll": "Allen antworten",
   "status.report": "@{name} melden",
@@ -406,18 +418,21 @@
   "upload_button.label": "Mediendatei hinzufügen ({formats})",
   "upload_error.limit": "Dateiupload-Limit erreicht.",
   "upload_error.poll": "Dateiuploads sind in Kombination mit Umfragen nicht erlaubt.",
+  "upload_form.audio_description": "Beschreibe die Audiodatei für Menschen mit Hörschädigungen",
   "upload_form.description": "Für Menschen mit Sehbehinderung beschreiben",
   "upload_form.edit": "Bearbeiten",
   "upload_form.undo": "Löschen",
+  "upload_form.video_description": "Beschreibe das Video für Menschen mit einer Hör- oder Sehbehinderung",
   "upload_modal.analyzing_picture": "Analysiere Bild…",
   "upload_modal.apply": "Übernehmen",
-  "upload_modal.description_placeholder": "Franz jagt im komplett verwahrlosten Taxi quer durch Bayern",
+  "upload_modal.description_placeholder": "Die heiße Zypernsonne quälte Max und Victoria ja böse auf dem Weg bis zur Küste",
   "upload_modal.detect_text": "Text aus Bild erkennen",
   "upload_modal.edit_media": "Medien bearbeiten",
   "upload_modal.hint": "Klicke oder ziehe den Kreis auf die Vorschau, um den Brennpunkt auszuwählen, der immer auf allen Vorschaubilder angezeigt wird.",
   "upload_modal.preview_label": "Vorschau ({ratio})",
   "upload_progress.label": "Wird hochgeladen …",
   "video.close": "Video schließen",
+  "video.download": "Datei herunterladen",
   "video.exit_fullscreen": "Vollbild verlassen",
   "video.expand": "Video vergrößern",
   "video.fullscreen": "Vollbild",
diff --git a/app/javascript/mastodon/locales/defaultMessages.json b/app/javascript/mastodon/locales/defaultMessages.json
index 62d822615e79993e6df0cc02a8c8114bf43f897b..99259268ceca746de393c25260d37d6cb43a57cb 100644
--- a/app/javascript/mastodon/locales/defaultMessages.json
+++ b/app/javascript/mastodon/locales/defaultMessages.json
@@ -398,10 +398,26 @@
         "defaultMessage": "This post is only visible by other users of your instance",
         "id": "status.local_only"
       },
+      {
+        "defaultMessage": "Quote",
+        "id": "status.quote"
+      },
+      {
+        "defaultMessage": "Unlisted quote",
+        "id": "status.unlisted_quote"
+      },
       {
         "defaultMessage": "Favourite",
         "id": "status.favourite"
       },
+      {
+        "defaultMessage": "Bookmark",
+        "id": "status.bookmark"
+      },
+      {
+        "defaultMessage": "Remove bookmark",
+        "id": "status.remove_bookmark"
+      },
       {
         "defaultMessage": "Expand this status",
         "id": "status.open"
@@ -441,6 +457,22 @@
       {
         "defaultMessage": "Copy link to status",
         "id": "status.copy"
+      },
+      {
+        "defaultMessage": "Hide everything from {domain}",
+        "id": "account.block_domain"
+      },
+      {
+        "defaultMessage": "Unhide {domain}",
+        "id": "account.unblock_domain"
+      },
+      {
+        "defaultMessage": "Unmute @{name}",
+        "id": "account.unmute"
+      },
+      {
+        "defaultMessage": "Unblock @{name}",
+        "id": "account.unblock"
       }
     ],
     "path": "app/javascript/mastodon/components/status_action_bar.json"
@@ -534,6 +566,14 @@
       {
         "defaultMessage": "Replying now will overwrite the message you are currently composing. Are you sure you want to proceed?",
         "id": "confirmations.reply.message"
+      },
+      {
+        "defaultMessage": "Hide entire domain",
+        "id": "confirmations.domain_block.confirm"
+      },
+      {
+        "defaultMessage": "Are you really, really sure you want to block the entire {domain}? In most cases a few targeted blocks or mutes are sufficient and preferable. You will not see content from that domain in any public timelines or your notifications. Your followers from that domain will be removed.",
+        "id": "confirmations.domain_block.message"
       }
     ],
     "path": "app/javascript/mastodon/containers/status_container.json"
@@ -748,6 +788,10 @@
         "defaultMessage": "Bot",
         "id": "account.badges.bot"
       },
+      {
+        "defaultMessage": "Group",
+        "id": "account.badges.group"
+      },
       {
         "defaultMessage": "Toots",
         "id": "account.posts"
@@ -780,6 +824,10 @@
       {
         "defaultMessage": "Unmute sound",
         "id": "video.unmute"
+      },
+      {
+        "defaultMessage": "Download file",
+        "id": "video.download"
       }
     ],
     "path": "app/javascript/mastodon/features/audio/index.json"
@@ -797,6 +845,19 @@
     ],
     "path": "app/javascript/mastodon/features/blocks/index.json"
   },
+  {
+    "descriptors": [
+      {
+        "defaultMessage": "Bookmarks",
+        "id": "column.bookmarks"
+      },
+      {
+        "defaultMessage": "You don't have any bookmarked toots yet. When you bookmark one, it will show up here.",
+        "id": "empty_column.bookmarked_statuses"
+      }
+    ],
+    "path": "app/javascript/mastodon/features/bookmarked_statuses/index.json"
+  },
   {
     "descriptors": [
       {
@@ -1015,6 +1076,14 @@
         "defaultMessage": "Poll duration",
         "id": "compose_form.poll.duration"
       },
+      {
+        "defaultMessage": "Change poll to allow multiple choices",
+        "id": "compose_form.poll.switch_to_multiple"
+      },
+      {
+        "defaultMessage": "Change poll to allow for a single choice",
+        "id": "compose_form.poll.switch_to_single"
+      },
       {
         "defaultMessage": "{number, plural, one {# minute} other {# minutes}}",
         "id": "intervals.full.minutes"
@@ -1071,6 +1140,15 @@
     ],
     "path": "app/javascript/mastodon/features/compose/components/privacy_dropdown.json"
   },
+  {
+    "descriptors": [
+      {
+        "defaultMessage": "Cancel",
+        "id": "quote_indicator.cancel"
+      }
+    ],
+    "path": "app/javascript/mastodon/features/compose/components/quote_indicator.json"
+  },
   {
     "descriptors": [
       {
@@ -1518,6 +1596,23 @@
     ],
     "path": "app/javascript/mastodon/features/following/index.json"
   },
+  {
+    "descriptors": [
+      {
+        "defaultMessage": "Close",
+        "id": "lightbox.close"
+      },
+      {
+        "defaultMessage": "Previous",
+        "id": "lightbox.previous"
+      },
+      {
+        "defaultMessage": "Next",
+        "id": "lightbox.next"
+      }
+    ],
+    "path": "app/javascript/mastodon/features/getting_started/components/announcements.json"
+  },
   {
     "descriptors": [
       {
@@ -1553,6 +1648,10 @@
         "defaultMessage": "Direct messages",
         "id": "navigation_bar.direct"
       },
+      {
+        "defaultMessage": "Bookmarks",
+        "id": "navigation_bar.bookmarks"
+      },
       {
         "defaultMessage": "Preferences",
         "id": "navigation_bar.preferences"
@@ -1803,6 +1902,10 @@
         "defaultMessage": "to open status",
         "id": "keyboard_shortcuts.enter"
       },
+      {
+        "defaultMessage": "to open media",
+        "id": "keyboard_shortcuts.open_media"
+      },
       {
         "defaultMessage": "to show/hide text behind CW",
         "id": "keyboard_shortcuts.toggle_hidden"
@@ -2053,6 +2156,10 @@
         "defaultMessage": "New followers:",
         "id": "notifications.column_settings.follow"
       },
+      {
+        "defaultMessage": "New follow requests:",
+        "id": "notifications.column_settings.follow_request"
+      },
       {
         "defaultMessage": "Favourites:",
         "id": "notifications.column_settings.favourite"
@@ -2104,20 +2211,41 @@
   {
     "descriptors": [
       {
-        "defaultMessage": "{name} followed you",
-        "id": "notification.follow"
+        "defaultMessage": "Authorize",
+        "id": "follow_request.authorize"
       },
+      {
+        "defaultMessage": "Reject",
+        "id": "follow_request.reject"
+      }
+    ],
+    "path": "app/javascript/mastodon/features/notifications/components/follow_request.json"
+  },
+  {
+    "descriptors": [
       {
         "defaultMessage": "{name} favourited your status",
         "id": "notification.favourite"
       },
       {
-        "defaultMessage": "{name} boosted your status",
-        "id": "notification.reblog"
+        "defaultMessage": "{name} followed you",
+        "id": "notification.follow"
+      },
+      {
+        "defaultMessage": "Your poll has ended",
+        "id": "notification.own_poll"
       },
       {
         "defaultMessage": "A poll you have voted in has ended",
         "id": "notification.poll"
+      },
+      {
+        "defaultMessage": "{name} boosted your status",
+        "id": "notification.reblog"
+      },
+      {
+        "defaultMessage": "{name} has requested to follow you",
+        "id": "notification.follow_request"
       }
     ],
     "path": "app/javascript/mastodon/features/notifications/components/notification.json"
@@ -2225,6 +2353,10 @@
         "defaultMessage": "Favourite",
         "id": "status.favourite"
       },
+      {
+        "defaultMessage": "Bookmark",
+        "id": "status.bookmark"
+      },
       {
         "defaultMessage": "Mute @{name}",
         "id": "status.mute"
@@ -2272,6 +2404,22 @@
       {
         "defaultMessage": "Copy link to status",
         "id": "status.copy"
+      },
+      {
+        "defaultMessage": "Hide everything from {domain}",
+        "id": "account.block_domain"
+      },
+      {
+        "defaultMessage": "Unhide {domain}",
+        "id": "account.unblock_domain"
+      },
+      {
+        "defaultMessage": "Unmute @{name}",
+        "id": "account.unmute"
+      },
+      {
+        "defaultMessage": "Unblock @{name}",
+        "id": "account.unblock"
       }
     ],
     "path": "app/javascript/mastodon/features/status/components/action_bar.json"
@@ -2351,6 +2499,14 @@
       {
         "defaultMessage": "Replying now will overwrite the message you are currently composing. Are you sure you want to proceed?",
         "id": "confirmations.reply.message"
+      },
+      {
+        "defaultMessage": "Hide entire domain",
+        "id": "confirmations.domain_block.confirm"
+      },
+      {
+        "defaultMessage": "Are you really, really sure you want to block the entire {domain}? In most cases a few targeted blocks or mutes are sufficient and preferable. You will not see content from that domain in any public timelines or your notifications. Your followers from that domain will be removed.",
+        "id": "confirmations.domain_block.message"
       }
     ],
     "path": "app/javascript/mastodon/features/status/index.json"
@@ -2490,17 +2646,25 @@
         "id": "upload_modal.description_placeholder"
       },
       {
-        "defaultMessage": "Edit media",
-        "id": "upload_modal.edit_media"
+        "defaultMessage": "Describe for people with hearing loss",
+        "id": "upload_form.audio_description"
       },
       {
-        "defaultMessage": "Click or drag the circle on the preview to choose the focal point which will always be in view on all thumbnails.",
-        "id": "upload_modal.hint"
+        "defaultMessage": "Describe for people with hearing loss or visual impairment",
+        "id": "upload_form.video_description"
       },
       {
         "defaultMessage": "Describe for the visually impaired",
         "id": "upload_form.description"
       },
+      {
+        "defaultMessage": "Edit media",
+        "id": "upload_modal.edit_media"
+      },
+      {
+        "defaultMessage": "Click or drag the circle on the preview to choose the focal point which will always be in view on all thumbnails.",
+        "id": "upload_modal.hint"
+      },
       {
         "defaultMessage": "Analyzing picture…",
         "id": "upload_modal.analyzing_picture"
@@ -2650,6 +2814,10 @@
         "defaultMessage": "Favourites",
         "id": "navigation_bar.favourites"
       },
+      {
+        "defaultMessage": "Bookmarks",
+        "id": "navigation_bar.bookmarks"
+      },
       {
         "defaultMessage": "Lists",
         "id": "navigation_bar.lists"
@@ -2792,6 +2960,10 @@
         "defaultMessage": "Exit full screen",
         "id": "video.exit_fullscreen"
       },
+      {
+        "defaultMessage": "Download file",
+        "id": "video.download"
+      },
       {
         "defaultMessage": "Sensitive content",
         "id": "status.sensitive_warning"
@@ -2803,4 +2975,4 @@
     ],
     "path": "app/javascript/mastodon/features/video/index.json"
   }
-]
\ No newline at end of file
+]
diff --git a/app/javascript/mastodon/locales/el.json b/app/javascript/mastodon/locales/el.json
index e395c8ba991168b92371cfdcf8c29a657e556218..56aae338a99b8ef345005b5b263ff302e3834e83 100644
--- a/app/javascript/mastodon/locales/el.json
+++ b/app/javascript/mastodon/locales/el.json
@@ -1,6 +1,7 @@
 {
   "account.add_or_remove_from_list": "Προσθήκη ή Αφαίρεση από λίστες",
   "account.badges.bot": "Μποτ",
+  "account.badges.group": "Group",
   "account.block": "Αποκλεισμός @{name}",
   "account.block_domain": "Απόκρυψε τα πάντα από το {domain}",
   "account.blocked": "Αποκλεισμένος/η",
@@ -51,6 +52,7 @@
   "bundle_modal_error.message": "Κάτι πήγε στραβά κατά τη φόρτωση του στοιχείου.",
   "bundle_modal_error.retry": "Δοκίμασε ξανά",
   "column.blocks": "Αποκλεισμένοι χρήστες",
+  "column.bookmarks": "Σελιδοδείκτες",
   "column.community": "Τοπική ροή",
   "column.direct": "Προσωπικά μηνύματα",
   "column.directory": "Δες προφίλ",
@@ -82,6 +84,8 @@
   "compose_form.poll.duration": "Διάρκεια δημοσκόπησης",
   "compose_form.poll.option_placeholder": "Επιλογή {number}",
   "compose_form.poll.remove_option": "Αφαίρεση επιλογής",
+  "compose_form.poll.switch_to_multiple": "Change poll to allow multiple choices",
+  "compose_form.poll.switch_to_single": "Change poll to allow for a single choice",
   "compose_form.publish": "Τουτ",
   "compose_form.publish_loud": "{publish}!",
   "compose_form.sensitive.hide": "Σημείωσε τα πολυμέσα ως ευαίσθητα",
@@ -138,6 +142,7 @@
   "empty_column.account_timeline": "Δεν έχει τουτ εδώ!",
   "empty_column.account_unavailable": "Μη διαθέσιμο προφίλ",
   "empty_column.blocks": "Δεν έχεις αποκλείσει κανέναν χρήστη ακόμα.",
+  "empty_column.bookmarked_statuses": "Δεν έχεις κανένα αποθηκευμένο τουτ ακόμα. Μόλις αποθηκεύσεις κάποιο, θα εμφανιστεί εδώ.",
   "empty_column.community": "Η τοπική ροή είναι κενή. Γράψε κάτι δημόσιο παραμύθι ν' αρχινίσει!",
   "empty_column.direct": "Δεν έχεις προσωπικά μηνύματα ακόμα. Όταν στείλεις ή λάβεις κανένα, θα εμφανιστεί εδώ.",
   "empty_column.domain_blocks": "Δεν υπάρχουν αποκλεισμένοι τομείς ακόμα.",
@@ -224,6 +229,7 @@
   "keyboard_shortcuts.muted": "άνοιγμα λίστας αποσιωπημενων χρηστών",
   "keyboard_shortcuts.my_profile": "άνοιγμα του προφίλ σου",
   "keyboard_shortcuts.notifications": "άνοιγμα στήλης ειδοποιήσεων",
+  "keyboard_shortcuts.open_media": "εμφάνιση πολυμέσου",
   "keyboard_shortcuts.pinned": "άνοιγμα λίστας καρφιτσωμένων τουτ",
   "keyboard_shortcuts.profile": "άνοιγμα προφίλ συγγραφέα",
   "keyboard_shortcuts.reply": "απάντηση",
@@ -256,6 +262,7 @@
   "mute_modal.hide_notifications": "Απόκρυψη ειδοποιήσεων αυτού του χρήστη;",
   "navigation_bar.apps": "Εφαρμογές φορητών συσκευών",
   "navigation_bar.blocks": "Αποκλεισμένοι χρήστες",
+  "navigation_bar.bookmarks": "Σελιδοδείκτες",
   "navigation_bar.community_timeline": "Τοπική ροή",
   "navigation_bar.compose": "Γράψε νέο τουτ",
   "navigation_bar.direct": "Προσωπικά μηνύματα",
@@ -278,7 +285,9 @@
   "navigation_bar.security": "Ασφάλεια",
   "notification.favourite": "Ο/Η {name} σημείωσε ως αγαπημένη την κατάστασή σου",
   "notification.follow": "Ο/Η {name} σε ακολούθησε",
+  "notification.follow_request": "Ο/H {name} ζήτησε να σε παρακολουθεί",
   "notification.mention": "Ο/Η {name} σε ανέφερε",
+  "notification.own_poll": "Η ψηφοφορία σου έληξε",
   "notification.poll": "Τελείωσε μια από τις ψηφοφορίες που συμμετείχες",
   "notification.reblog": "Ο/Η {name} προώθησε την κατάστασή σου",
   "notifications.clear": "Καθαρισμός ειδοποιήσεων",
@@ -289,6 +298,7 @@
   "notifications.column_settings.filter_bar.category": "Μπάρα γρήγορου φίλτρου",
   "notifications.column_settings.filter_bar.show": "Εμφάνιση",
   "notifications.column_settings.follow": "Νέοι ακόλουθοι:",
+  "notifications.column_settings.follow_request": "Νέο αίτημα παρακολούθησης:",
   "notifications.column_settings.mention": "Αναφορές:",
   "notifications.column_settings.poll": "Αποτελέσματα ψηφοφορίας:",
   "notifications.column_settings.push": "Άμεσες ειδοποιήσεις",
@@ -349,6 +359,7 @@
   "status.admin_account": "Άνοιγμα λειτουργίας διαμεσολάβησης για τον/την @{name}",
   "status.admin_status": "Άνοιγμα αυτής της δημοσίευσης στη λειτουργία διαμεσολάβησης",
   "status.block": "Αποκλεισμός @{name}",
+  "status.bookmark": "Σελιδοδείκτης",
   "status.cancel_reblog_private": "Ακύρωσε την προώθηση",
   "status.cannot_reblog": "Αυτή η δημοσίευση δεν μπορεί να προωθηθεί",
   "status.copy": "Αντιγραφή συνδέσμου της δημοσίευσης",
@@ -374,6 +385,7 @@
   "status.reblogged_by": "{name} προώθησε",
   "status.reblogs.empty": "Κανείς δεν προώθησε αυτό το τουτ ακόμα. Μόλις το κάνει κάποια, θα εμφανιστούν εδώ.",
   "status.redraft": "Σβήσε & ξαναγράψε",
+  "status.remove_bookmark": "Αφαίρεση σελιδοδείκτη",
   "status.reply": "Απάντησε",
   "status.replyAll": "Απάντησε στην συζήτηση",
   "status.report": "Κατάγγειλε @{name}",
@@ -399,16 +411,18 @@
   "time_remaining.minutes": "απομένουν {number, plural, one {# λεπτό} other {# λεπτά}}",
   "time_remaining.moments": "Απομένουν στιγμές",
   "time_remaining.seconds": "απομένουν {number, plural, one {# δευτερόλεπτο} other {# δευτερόλεπτα}}",
-  "trends.count_by_accounts": "{count} {rawCount, plural, one {person} other {people}} μιλάνε",
+  "trends.count_by_accounts": "{count} {rawCount, plural, one {άτομο μιλάει} other {άτομα μιλάνε}}",
   "trends.trending_now": "Δημοφιλή τώρα",
   "ui.beforeunload": "Το προσχέδιό σου θα χαθεί αν φύγεις από το Mastodon.",
   "upload_area.title": "Drag & drop για να ανεβάσεις",
   "upload_button.label": "Πρόσθεσε πολυμέσα ({formats})",
   "upload_error.limit": "Υπέρβαση ορίου μεγέθους ανεβασμένων αρχείων.",
   "upload_error.poll": "Στις δημοσκοπήσεις δεν επιτρέπεται η μεταφόρτωση αρχείου.",
+  "upload_form.audio_description": "Περιγραφή για άτομα με προβλήματα ακοής",
   "upload_form.description": "Περιέγραψε για όσους & όσες έχουν προβλήματα όρασης",
   "upload_form.edit": "Ενημέρωση",
   "upload_form.undo": "Διαγραφή",
+  "upload_form.video_description": "Περιγραφή για άτομα με προβλήματα ακοής ή όρασης",
   "upload_modal.analyzing_picture": "Ανάλυση εικόνας…",
   "upload_modal.apply": "Εφαρμογή",
   "upload_modal.description_placeholder": "Λύκος μαύρος και ισχνός του πατέρα του καημός",
@@ -418,6 +432,7 @@
   "upload_modal.preview_label": "Προεπισκόπηση ({ratio})",
   "upload_progress.label": "Ανεβαίνει...",
   "video.close": "Κλείσε το βίντεο",
+  "video.download": "Λήψη αρχείου",
   "video.exit_fullscreen": "Έξοδος από πλήρη οθόνη",
   "video.expand": "Επέκταση βίντεο",
   "video.fullscreen": "Πλήρης οθόνη",
diff --git a/app/javascript/mastodon/locales/en.json b/app/javascript/mastodon/locales/en.json
index 29070422dbdecc12ed99cabb9cc6afa79d8a4d2e..9839cc20f046bba110b5be042189de65da53456e 100644
--- a/app/javascript/mastodon/locales/en.json
+++ b/app/javascript/mastodon/locales/en.json
@@ -1,6 +1,7 @@
 {
   "account.add_or_remove_from_list": "Add or Remove from lists",
   "account.badges.bot": "Bot",
+  "account.badges.group": "Group",
   "account.block": "Block @{name}",
   "account.block_domain": "Hide everything from {domain}",
   "account.blocked": "Blocked",
@@ -26,16 +27,21 @@
   "account.mute_notifications": "Mute notifications from @{name}",
   "account.muted": "Muted",
   "account.never_active": "Never",
+  "account.open_domain_timeline": "Open {domain} timeline",
   "account.posts": "Toots",
   "account.posts_with_replies": "Toots and replies",
   "account.report": "Report @{name}",
   "account.requested": "Awaiting approval. Click to cancel follow request",
   "account.share": "Share @{name}'s profile",
   "account.show_reblogs": "Show boosts from @{name}",
+  "account.subscribe": "Subscribe",
+  "account.subscribes": "Subscribes",
+  "account.subscribes.empty": "This user doesn't subscribe anyone yet.",
   "account.unblock": "Unblock @{name}",
   "account.unblock_domain": "Unhide {domain}",
   "account.unendorse": "Don't feature on profile",
   "account.unfollow": "Unfollow",
+  "account.unsubscribe": "Unsubscribe",
   "account.unmute": "Unmute @{name}",
   "account.unmute_notifications": "Unmute notifications from @{name}",
   "alert.rate_limited.message": "Please retry after {retry_time, time, medium}.",
@@ -51,6 +57,7 @@
   "bundle_modal_error.message": "Something went wrong while loading this component.",
   "bundle_modal_error.retry": "Try again",
   "column.blocks": "Blocked users",
+  "column.bookmarks": "Bookmarks",
   "column.community": "Local timeline",
   "column.direct": "Direct messages",
   "column.directory": "Browse profiles",
@@ -82,6 +89,8 @@
   "compose_form.poll.duration": "Poll duration",
   "compose_form.poll.option_placeholder": "Choice {number}",
   "compose_form.poll.remove_option": "Remove this choice",
+  "compose_form.poll.switch_to_multiple": "Change poll to allow multiple choices",
+  "compose_form.poll.switch_to_single": "Change poll to allow for a single choice",
   "compose_form.publish": "Toot",
   "compose_form.publish_loud": "{publish}!",
   "compose_form.sensitive.hide": "Mark media as sensitive",
@@ -111,6 +120,8 @@
   "confirmations.reply.message": "Replying now will overwrite the message you are currently composing. Are you sure you want to proceed?",
   "confirmations.unfollow.confirm": "Unfollow",
   "confirmations.unfollow.message": "Are you sure you want to unfollow {name}?",
+  "confirmations.unsubscribe.confirm": "Unsubscribe",
+  "confirmations.unsubscribe.message": "Are you sure you want to unsubscribe {name}?",
   "conversation.delete": "Delete conversation",
   "conversation.mark_as_read": "Mark as read",
   "conversation.open": "View conversation",
@@ -138,6 +149,7 @@
   "empty_column.account_timeline": "No toots here!",
   "empty_column.account_unavailable": "Profile unavailable",
   "empty_column.blocks": "You haven't blocked any users yet.",
+  "empty_column.bookmarked_statuses": "You don't have any bookmarked toots yet. When you bookmark one, it will show up here.",
   "empty_column.community": "The local timeline is empty. Write something publicly to get the ball rolling!",
   "empty_column.direct": "You don't have any direct messages yet. When you send or receive one, it will show up here.",
   "empty_column.domain_blocks": "There are no hidden domains yet.",
@@ -188,7 +200,7 @@
   "intervals.full.minutes": "{number, plural, one {# minute} other {# minutes}}",
   "introduction.federation.action": "Next",
   "introduction.federation.federated.headline": "Federated",
-  "introduction.federation.federated.text": "Public posts from other servers of the fediverse will appear in the federated timeline.",
+  "introduction.federation.federated.text": "Public posts from various Fediverse servers are displayed on the federation timeline.",
   "introduction.federation.home.headline": "Home",
   "introduction.federation.home.text": "Posts from people you follow will appear in your home feed. You can follow anyone on any server!",
   "introduction.federation.local.headline": "Local",
@@ -224,6 +236,7 @@
   "keyboard_shortcuts.muted": "to open muted users list",
   "keyboard_shortcuts.my_profile": "to open your profile",
   "keyboard_shortcuts.notifications": "to open notifications column",
+  "keyboard_shortcuts.open_media": "to open media",
   "keyboard_shortcuts.pinned": "to open pinned toots list",
   "keyboard_shortcuts.profile": "to open author's profile",
   "keyboard_shortcuts.reply": "to reply",
@@ -256,6 +269,7 @@
   "mute_modal.hide_notifications": "Hide notifications from this user?",
   "navigation_bar.apps": "Mobile apps",
   "navigation_bar.blocks": "Blocked users",
+  "navigation_bar.bookmarks": "Bookmarks",
   "navigation_bar.community_timeline": "Local timeline",
   "navigation_bar.compose": "Compose new toot",
   "navigation_bar.direct": "Direct messages",
@@ -266,7 +280,10 @@
   "navigation_bar.filters": "Muted words",
   "navigation_bar.follow_requests": "Follow requests",
   "navigation_bar.follows_and_followers": "Follows and followers",
+  "navigation_bar.hashtag_fedibird": "Fedibird topics",
   "navigation_bar.info": "About this server",
+  "navigation_bar.information": "Information",
+  "navigation_bar.information_acct": "Fedibird info",
   "navigation_bar.keyboard_shortcuts": "Hotkeys",
   "navigation_bar.lists": "Lists",
   "navigation_bar.logout": "Logout",
@@ -278,7 +295,9 @@
   "navigation_bar.security": "Security",
   "notification.favourite": "{name} favourited your status",
   "notification.follow": "{name} followed you",
+  "notification.follow_request": "{name} has requested to follow you",
   "notification.mention": "{name} mentioned you",
+  "notification.own_poll": "Your poll has ended",
   "notification.poll": "A poll you have voted in has ended",
   "notification.reblog": "{name} boosted your status",
   "notifications.clear": "Clear notifications",
@@ -289,6 +308,7 @@
   "notifications.column_settings.filter_bar.category": "Quick filter bar",
   "notifications.column_settings.filter_bar.show": "Show",
   "notifications.column_settings.follow": "New followers:",
+  "notifications.column_settings.follow_request": "New follow requests:",
   "notifications.column_settings.mention": "Mentions:",
   "notifications.column_settings.poll": "Poll results:",
   "notifications.column_settings.push": "Push notifications",
@@ -319,6 +339,7 @@
   "privacy.public.short": "Public",
   "privacy.unlisted.long": "Do not post to public timelines",
   "privacy.unlisted.short": "Unlisted",
+  "quote_indicator.cancel": "Cancel",
   "refresh": "Refresh",
   "regeneration_indicator.label": "Loading…",
   "regeneration_indicator.sublabel": "Your home feed is being prepared!",
@@ -349,6 +370,7 @@
   "status.admin_account": "Open moderation interface for @{name}",
   "status.admin_status": "Open this status in the moderation interface",
   "status.block": "Block @{name}",
+  "status.bookmark": "Bookmark",
   "status.cancel_reblog_private": "Unboost",
   "status.cannot_reblog": "This post cannot be boosted",
   "status.copy": "Copy link to status",
@@ -369,11 +391,13 @@
   "status.pin": "Pin on profile",
   "status.pinned": "Pinned toot",
   "status.read_more": "Read more",
+  "status.quote": "Quote",
   "status.reblog": "Boost",
   "status.reblog_private": "Boost to original audience",
   "status.reblogged_by": "{name} boosted",
   "status.reblogs.empty": "No one has boosted this toot yet. When someone does, they will show up here.",
   "status.redraft": "Delete & re-draft",
+  "status.remove_bookmark": "Remove bookmark",
   "status.reply": "Reply",
   "status.replyAll": "Reply to thread",
   "status.report": "Report @{name}",
@@ -391,6 +415,7 @@
   "suggestions.header": "You might be interested in…",
   "tabs_bar.federated_timeline": "Federated",
   "tabs_bar.home": "Home",
+  "tabs_bar.lists": "List",
   "tabs_bar.local_timeline": "Local",
   "tabs_bar.notifications": "Notifications",
   "tabs_bar.search": "Search",
@@ -406,9 +431,11 @@
   "upload_button.label": "Add media ({formats})",
   "upload_error.limit": "File upload limit exceeded.",
   "upload_error.poll": "File upload not allowed with polls.",
+  "upload_form.audio_description": "Describe for people with hearing loss",
   "upload_form.description": "Describe for the visually impaired",
   "upload_form.edit": "Edit",
   "upload_form.undo": "Delete",
+  "upload_form.video_description": "Describe for people with hearing loss or visual impairment",
   "upload_modal.analyzing_picture": "Analyzing picture…",
   "upload_modal.apply": "Apply",
   "upload_modal.description_placeholder": "A quick brown fox jumps over the lazy dog",
@@ -418,6 +445,7 @@
   "upload_modal.preview_label": "Preview ({ratio})",
   "upload_progress.label": "Uploading...",
   "video.close": "Close video",
+  "video.download": "Download file",
   "video.exit_fullscreen": "Exit full screen",
   "video.expand": "Expand video",
   "video.fullscreen": "Full screen",
diff --git a/app/javascript/mastodon/locales/eo.json b/app/javascript/mastodon/locales/eo.json
index 0835ae5b07b6edd31039c163459ad10ce35b727c..a8952096173b60935ed4b3fb89c6131979d0a3d7 100644
--- a/app/javascript/mastodon/locales/eo.json
+++ b/app/javascript/mastodon/locales/eo.json
@@ -1,6 +1,7 @@
 {
   "account.add_or_remove_from_list": "Aldoni al aÅ­ forigi el listoj",
   "account.badges.bot": "Roboto",
+  "account.badges.group": "Grupo",
   "account.block": "Bloki @{name}",
   "account.block_domain": "Kaŝi ĉion de {domain}",
   "account.blocked": "Blokita",
@@ -51,6 +52,7 @@
   "bundle_modal_error.message": "Io misfunkciis en la ŝargado de ĉi tiu elemento.",
   "bundle_modal_error.retry": "Bonvolu reprovi",
   "column.blocks": "Blokitaj uzantoj",
+  "column.bookmarks": "Legosignoj",
   "column.community": "Loka tempolinio",
   "column.direct": "Rektaj mesaĝoj",
   "column.directory": "Trarigardi profilojn",
@@ -82,6 +84,8 @@
   "compose_form.poll.duration": "Balotenketa daÅ­ro",
   "compose_form.poll.option_placeholder": "Elekteblo {number}",
   "compose_form.poll.remove_option": "Forigi ĉi tiu elekteblon",
+  "compose_form.poll.switch_to_multiple": "Ŝanĝi la balotenketon por permesi multajn elektojn",
+  "compose_form.poll.switch_to_single": "Ŝanĝi la balotenketon por permesi unu solan elekton",
   "compose_form.publish": "Hup",
   "compose_form.publish_loud": "{publish}!",
   "compose_form.sensitive.hide": "Marki la aŭdovidaĵojn kiel tiklaj",
@@ -138,6 +142,7 @@
   "empty_column.account_timeline": "Neniu mesaĝo ĉi tie!",
   "empty_column.account_unavailable": "Profilo ne disponebla",
   "empty_column.blocks": "Vi ankoraÅ­ ne blokis uzanton.",
+  "empty_column.bookmarked_statuses": "Vi ankoraŭ ne aldonis mesaĝon al viaj legosignoj. Kiam vi aldonos iun, tiu aperos ĉi tie.",
   "empty_column.community": "La loka tempolinio estas malplena. Skribu ion por plenigi ĝin!",
   "empty_column.direct": "Vi ankoraŭ ne havas rektan mesaĝon. Kiam vi sendos aŭ ricevos iun, ĝi aperos ĉi tie.",
   "empty_column.domain_blocks": "AnkoraÅ­ neniu domajno estas blokita.",
@@ -154,7 +159,7 @@
   "empty_column.public": "Estas nenio ĉi tie! Publike skribu ion, aŭ mane sekvu uzantojn de aliaj serviloj por plenigi la publikan tempolinion",
   "error.unexpected_crash.explanation": "Due to a bug in our code or a browser compatibility issue, this page could not be displayed correctly.",
   "error.unexpected_crash.next_steps": "Try refreshing the page. If that does not help, you may still be able to use Mastodon through a different browser or native app.",
-  "errors.unexpected_crash.copy_stacktrace": "Copy stacktrace to clipboard",
+  "errors.unexpected_crash.copy_stacktrace": "Kopii stakspuron en tondujo",
   "errors.unexpected_crash.report_issue": "Raporti problemon",
   "federation.change": "Adjust status federation",
   "federation.federated.long": "Allow toot to reach other instances",
@@ -224,6 +229,7 @@
   "keyboard_shortcuts.muted": "por malfermi la liston de silentigitaj uzantoj",
   "keyboard_shortcuts.my_profile": "por malfermi vian profilon",
   "keyboard_shortcuts.notifications": "por malfermi la kolumnon de sciigoj",
+  "keyboard_shortcuts.open_media": "por malfermi aŭdovidaĵon",
   "keyboard_shortcuts.pinned": "por malfermi la liston de alpinglitaj mesaĝoj",
   "keyboard_shortcuts.profile": "por malfermi la profilon de la aÅ­toro",
   "keyboard_shortcuts.reply": "por respondi",
@@ -256,6 +262,7 @@
   "mute_modal.hide_notifications": "Ĉu vi volas kaŝi la sciigojn de ĉi tiu uzanto?",
   "navigation_bar.apps": "Telefonaj aplikaĵoj",
   "navigation_bar.blocks": "Blokitaj uzantoj",
+  "navigation_bar.bookmarks": "Legosignoj",
   "navigation_bar.community_timeline": "Loka tempolinio",
   "navigation_bar.compose": "Skribi novan mesaĝon",
   "navigation_bar.direct": "Rektaj mesaĝoj",
@@ -278,7 +285,9 @@
   "navigation_bar.security": "Sekureco",
   "notification.favourite": "{name} stelumis vian mesaĝon",
   "notification.follow": "{name} eksekvis vin",
+  "notification.follow_request": "{name} petis sekvi vin",
   "notification.mention": "{name} menciis vin",
+  "notification.own_poll": "Via balotenketo finiĝitis",
   "notification.poll": "Partoprenita balotenketo finiĝis",
   "notification.reblog": "{name} diskonigis vian mesaĝon",
   "notifications.clear": "Forviŝi sciigojn",
@@ -289,6 +298,7 @@
   "notifications.column_settings.filter_bar.category": "Rapida filtra breto",
   "notifications.column_settings.filter_bar.show": "Montri",
   "notifications.column_settings.follow": "Novaj sekvantoj:",
+  "notifications.column_settings.follow_request": "Novaj petoj de sekvado:",
   "notifications.column_settings.mention": "Mencioj:",
   "notifications.column_settings.poll": "Balotenketaj rezultoj:",
   "notifications.column_settings.push": "Puŝsciigoj",
@@ -349,6 +359,7 @@
   "status.admin_account": "Malfermi la kontrolan interfacon por @{name}",
   "status.admin_status": "Malfermi ĉi tiun mesaĝon en la kontrola interfaco",
   "status.block": "Bloki @{name}",
+  "status.bookmark": "Aldoni al la legosignoj",
   "status.cancel_reblog_private": "Ne plu diskonigi",
   "status.cannot_reblog": "Ĉi tiu mesaĝo ne diskonigeblas",
   "status.copy": "Kopii la ligilon al la mesaĝo",
@@ -374,6 +385,7 @@
   "status.reblogged_by": "{name} diskonigis",
   "status.reblogs.empty": "Ankoraŭ neniu diskonigis tiun mesaĝon. Kiam iu faros tion, tiu aperos ĉi tie.",
   "status.redraft": "Forigi kaj reskribi",
+  "status.remove_bookmark": "Forigi legosignon",
   "status.reply": "Respondi",
   "status.replyAll": "Respondi al la fadeno",
   "status.report": "Signali @{name}",
@@ -406,9 +418,11 @@
   "upload_button.label": "Aldoni aŭdovidaĵon (JPEG, PNG, GIF, WebM, MP4, MOV)",
   "upload_error.limit": "Limo de dosiera alŝutado transpasita.",
   "upload_error.poll": "Alŝuto de dosiero ne permesita kun balotenketo.",
+  "upload_form.audio_description": "Priskribi por homoj kiuj malfacile aÅ­di",
   "upload_form.description": "Priskribi por misvidantaj homoj",
   "upload_form.edit": "Redakti",
   "upload_form.undo": "Forigi",
+  "upload_form.video_description": "Priskribi por homoj kiuj malfacile aÅ­di aÅ­ vidi",
   "upload_modal.analyzing_picture": "Bilda analizado…",
   "upload_modal.apply": "Apliki",
   "upload_modal.description_placeholder": "Laŭ Ludoviko Zamenhof bongustas freŝa ĉeĥa manĝaĵo kun spicoj",
@@ -418,6 +432,7 @@
   "upload_modal.preview_label": "AntaÅ­vido ({ratio})",
   "upload_progress.label": "Alŝutado…",
   "video.close": "Fermi la videon",
+  "video.download": "Elŝuti dosieron",
   "video.exit_fullscreen": "Eksigi plenekrana",
   "video.expand": "Grandigi la videon",
   "video.fullscreen": "Igi plenekrana",
diff --git a/app/javascript/mastodon/locales/es-AR.json b/app/javascript/mastodon/locales/es-AR.json
index d46063b182baa6a5c62e27ac16ff199e6c38a20a..ee46e24dd303dbac91ddd10c2bb85d82d627aee2 100644
--- a/app/javascript/mastodon/locales/es-AR.json
+++ b/app/javascript/mastodon/locales/es-AR.json
@@ -1,6 +1,7 @@
 {
   "account.add_or_remove_from_list": "Agregar o quitar de las listas",
   "account.badges.bot": "Bot",
+  "account.badges.group": "Grupo",
   "account.block": "Bloquear a @{name}",
   "account.block_domain": "Ocultar todo de {domain}",
   "account.blocked": "Bloqueado",
@@ -40,7 +41,7 @@
   "account.unmute_notifications": "Dejar de silenciar las notificaciones de @{name}",
   "alert.rate_limited.message": "Por favor, reintentá después de las {retry_time, time, medium}.",
   "alert.rate_limited.title": "Tarifa limitada",
-  "alert.unexpected.message": "Ocurrió un error inesperado.",
+  "alert.unexpected.message": "Ocurrió un error.",
   "alert.unexpected.title": "¡Epa!",
   "autosuggest_hashtag.per_week": "{count} por semana",
   "boost_modal.combo": "Podés hacer clic en {combo} para saltar esto la próxima vez",
@@ -51,6 +52,7 @@
   "bundle_modal_error.message": "Algo salió mal al cargar este componente.",
   "bundle_modal_error.retry": "Intentá de nuevo",
   "column.blocks": "Usuarios bloqueados",
+  "column.bookmarks": "Marcadores",
   "column.community": "Línea temporal local",
   "column.direct": "Mensajes directos",
   "column.directory": "Explorar perfiles",
@@ -82,6 +84,8 @@
   "compose_form.poll.duration": "Duración de la encuesta",
   "compose_form.poll.option_placeholder": "Opción {number}",
   "compose_form.poll.remove_option": "Quitá esta opción",
+  "compose_form.poll.switch_to_multiple": "Cambiar encuesta para permitir opciones múltiples",
+  "compose_form.poll.switch_to_single": "Cambiar encuesta para permitir una sola opción",
   "compose_form.publish": "Tootear",
   "compose_form.publish_loud": "¡{publish}!",
   "compose_form.sensitive.hide": "Marcar medio como sensible",
@@ -103,7 +107,7 @@
   "confirmations.logout.confirm": "Cerrar sesión",
   "confirmations.logout.message": "¿Estás seguro que querés cerrar la sesión?",
   "confirmations.mute.confirm": "Silenciar",
-  "confirmations.mute.explanation": "Esto ocultará mensajes de ellos y mensajes que los mencionen, pero todavía les permitirá ver tus mensajes o seguirte.",
+  "confirmations.mute.explanation": "Se ocultarán los mensajes de esta cuenta y los mensajes de otras cuentas que mencionen a ésta, pero todavía esta cuenta podrá ver tus mensajes o seguirte.",
   "confirmations.mute.message": "¿Estás seguro que querés silenciar a {name}?",
   "confirmations.redraft.confirm": "Eliminar toot original y editarlo",
   "confirmations.redraft.message": "¿Estás seguro que querés eliminar este estado y volver a editarlo? Se perderán las veces marcadas como favoritos y los retoots, y las respuestas a la publicación original quedarán huérfanas.",
@@ -138,6 +142,7 @@
   "empty_column.account_timeline": "¡No hay toots aquí!",
   "empty_column.account_unavailable": "Perfil no disponible",
   "empty_column.blocks": "Todavía no bloqueaste a ningún usuario.",
+  "empty_column.bookmarked_statuses": "Todavía no tenés toots guardados en marcadores. Cuando guardés uno en marcadores, se mostrará acá.",
   "empty_column.community": "La línea temporal local está vacía. ¡Escribí algo en modo público para que se empiece a correr la bola!",
   "empty_column.direct": "Todavía no tenés ningún mensaje directo. Cuando enviés o recibás uno, se mostrará acá.",
   "empty_column.domain_blocks": "Todavía no hay dominios ocultos.",
@@ -185,7 +190,7 @@
   "introduction.federation.federated.headline": "Federado",
   "introduction.federation.federated.text": "Los toots públicos de otros servidores del fediverso aparecerán en la línea temporal federada.",
   "introduction.federation.home.headline": "Principal",
-  "introduction.federation.home.text": "Los toots de las personas que seguíss aparecerán en tu línea temporal principal. ¡Podés seguir a cualquiera en cualquier servidor!",
+  "introduction.federation.home.text": "Los toots de las personas que seguís aparecerán en tu línea temporal principal. ¡Podés seguir a cualquiera en cualquier servidor!",
   "introduction.federation.local.headline": "Local",
   "introduction.federation.local.text": "Los toots públicos de las personas en el mismo servidor aparecerán en la línea temporal local.",
   "introduction.interactions.action": "¡Terminar tutorial!",
@@ -219,6 +224,7 @@
   "keyboard_shortcuts.muted": "abrir la lista de usuarios silenciados",
   "keyboard_shortcuts.my_profile": "para abrir tu perfil",
   "keyboard_shortcuts.notifications": "para abrir la columna de notificaciones",
+  "keyboard_shortcuts.open_media": "para abrir archivos de medios",
   "keyboard_shortcuts.pinned": "para abrir lista de toots fijados",
   "keyboard_shortcuts.profile": "para abrir el perfil del autor",
   "keyboard_shortcuts.reply": "para responder",
@@ -251,6 +257,7 @@
   "mute_modal.hide_notifications": "¿Querés ocultar las notificaciones de este usuario?",
   "navigation_bar.apps": "Aplicaciones móviles",
   "navigation_bar.blocks": "Usuarios bloqueados",
+  "navigation_bar.bookmarks": "Marcadores",
   "navigation_bar.community_timeline": "Línea temporal local",
   "navigation_bar.compose": "Redactar un nuevo toot",
   "navigation_bar.direct": "Mensajes directos",
@@ -273,7 +280,9 @@
   "navigation_bar.security": "Seguridad",
   "notification.favourite": "{name} marcó tu estado como favorito",
   "notification.follow": "{name} te empezó a seguir",
+  "notification.follow_request": "{name} solicitó seguirte",
   "notification.mention": "{name} te mencionó",
+  "notification.own_poll": "Tu encuesta finalizó",
   "notification.poll": "Finalizó una encuesta en la que votaste",
   "notification.reblog": "{name} retooteó tu estado",
   "notifications.clear": "Limpiar notificaciones",
@@ -284,6 +293,7 @@
   "notifications.column_settings.filter_bar.category": "Barra de filtrado rápido",
   "notifications.column_settings.filter_bar.show": "Mostrar",
   "notifications.column_settings.follow": "Nuevos seguidores:",
+  "notifications.column_settings.follow_request": "Nuevas solicitudes de seguimiento:",
   "notifications.column_settings.mention": "Menciones:",
   "notifications.column_settings.poll": "Resultados de la encuesta:",
   "notifications.column_settings.push": "Notificaciones push",
@@ -344,6 +354,7 @@
   "status.admin_account": "Abrir interface de moderación para @{name}",
   "status.admin_status": "Abrir este estado en la interface de moderación",
   "status.block": "Bloquear a @{name}",
+  "status.bookmark": "Marcador",
   "status.cancel_reblog_private": "Quitar retoot",
   "status.cannot_reblog": "No se puede retootear este toot",
   "status.copy": "Copiar enlace al estado",
@@ -365,9 +376,10 @@
   "status.read_more": "Leer más",
   "status.reblog": "Retootear",
   "status.reblog_private": "Retootear a la audiencia original",
-  "status.reblogged_by": "Retooteado por {name}",
+  "status.reblogged_by": "{name} retooteó",
   "status.reblogs.empty": "Todavía nadie retooteó este toot. Cuando alguien lo haga, se mostrará acá.",
   "status.redraft": "Eliminar toot original y editarlo",
+  "status.remove_bookmark": "Quitar marcador",
   "status.reply": "Responder",
   "status.replyAll": "Responder al hilo",
   "status.report": "Denunciar a @{name}",
@@ -400,9 +412,11 @@
   "upload_button.label": "Agregar medios ({formats})",
   "upload_error.limit": "Se excedió el límite de subida de archivos.",
   "upload_error.poll": "No se permite la subida de archivos en encuestas.",
+  "upload_form.audio_description": "Describir para personas con problemas auditivos",
   "upload_form.description": "Agregar descripción para los usuarios con dificultades visuales",
   "upload_form.edit": "Editar",
   "upload_form.undo": "Eliminar",
+  "upload_form.video_description": "Describir para personas con problemas auditivos o visuales",
   "upload_modal.analyzing_picture": "Analizando imagen…",
   "upload_modal.apply": "Aplicar",
   "upload_modal.description_placeholder": "El veloz murciélago hindú comía feliz cardillo y kiwi. La cigüeña tocaba el saxofón detrás del palenque de paja.",
@@ -412,6 +426,7 @@
   "upload_modal.preview_label": "Previsualización ({ratio})",
   "upload_progress.label": "Subiendo…",
   "video.close": "Cerrar video",
+  "video.download": "Descargar archivo",
   "video.exit_fullscreen": "Salir de pantalla completa",
   "video.expand": "Expandir vídeo",
   "video.fullscreen": "Pantalla completa",
diff --git a/app/javascript/mastodon/locales/es.json b/app/javascript/mastodon/locales/es.json
index d964716faf3f63731579952c3d18a1270fdc8e64..9f237a5ecd0774f97443a43759e34b44fecb818e 100644
--- a/app/javascript/mastodon/locales/es.json
+++ b/app/javascript/mastodon/locales/es.json
@@ -1,6 +1,7 @@
 {
   "account.add_or_remove_from_list": "Agregar o eliminar de listas",
   "account.badges.bot": "Bot",
+  "account.badges.group": "Grupo",
   "account.block": "Bloquear a @{name}",
   "account.block_domain": "Ocultar todo de {domain}",
   "account.blocked": "Bloqueado",
@@ -39,7 +40,7 @@
   "account.unmute": "Dejar de silenciar a @{name}",
   "account.unmute_notifications": "Dejar de silenciar las notificaciones de @{name}",
   "alert.rate_limited.message": "Por favor reintente después de {retry_time, time, medium}.",
-  "alert.rate_limited.title": "Tarifa limitada",
+  "alert.rate_limited.title": "Tasa limitada",
   "alert.unexpected.message": "Hubo un error inesperado.",
   "alert.unexpected.title": "¡Ups!",
   "autosuggest_hashtag.per_week": "{count} por semana",
@@ -51,18 +52,19 @@
   "bundle_modal_error.message": "Algo salió mal al cargar este componente.",
   "bundle_modal_error.retry": "Inténtalo de nuevo",
   "column.blocks": "Usuarios bloqueados",
-  "column.community": "Línea de tiempo local",
+  "column.bookmarks": "Marcadores",
+  "column.community": "Cronología local",
   "column.direct": "Mensajes directos",
   "column.directory": "Buscar perfiles",
   "column.domain_blocks": "Dominios ocultados",
-  "column.favourites": "Favoritos",
+  "column.favourites": "Levantar la trompa",
   "column.follow_requests": "Solicitudes de seguimiento",
   "column.home": "Inicio",
   "column.lists": "Listas",
   "column.mutes": "Usuarios silenciados",
   "column.notifications": "Notificaciones",
   "column.pins": "Toots fijados",
-  "column.public": "Línea de tiempo federada",
+  "column.public": "Cronología federada",
   "column_back_button.label": "Atrás",
   "column_header.hide_settings": "Ocultar configuración",
   "column_header.moveLeft_settings": "Mover columna a la izquierda",
@@ -82,7 +84,9 @@
   "compose_form.poll.duration": "Duración de la encuesta",
   "compose_form.poll.option_placeholder": "Elección {number}",
   "compose_form.poll.remove_option": "Eliminar esta opción",
-  "compose_form.publish": "Tootear",
+  "compose_form.poll.switch_to_multiple": "Modificar encuesta para permitir múltiples opciones",
+  "compose_form.poll.switch_to_single": "Modificar encuesta para permitir una única opción",
+  "compose_form.publish": "Ipoxta",
   "compose_form.publish_loud": "{publish}!",
   "compose_form.sensitive.hide": "Marcar multimedia como sensible",
   "compose_form.sensitive.marked": "Material marcado como sensible",
@@ -99,7 +103,7 @@
   "confirmations.delete_list.confirm": "Eliminar",
   "confirmations.delete_list.message": "¿Seguro que quieres borrar esta lista permanentemente?",
   "confirmations.domain_block.confirm": "Ocultar dominio entero",
-  "confirmations.domain_block.message": "¿Seguro de que quieres bloquear al dominio {domain} entero? En general unos cuantos bloqueos y silenciados concretos es suficiente y preferible.",
+  "confirmations.domain_block.message": "¿Seguro de que quieres bloquear al dominio {domain} entero? En general unos cuantos bloqueos y silenciados concretos es suficiente y preferible.\nNo podrás ver contenido de ese dominio en ninguna de las cronologías públicas o tus notificaciones. Tus seguidoras de ese dominio serán borradas.",
   "confirmations.logout.confirm": "Cerrar sesión",
   "confirmations.logout.message": "¿Estás seguro de querer cerrar la sesión?",
   "confirmations.mute.confirm": "Silenciar",
@@ -138,22 +142,23 @@
   "empty_column.account_timeline": "¡No hay toots aquí!",
   "empty_column.account_unavailable": "Perfil no disponible",
   "empty_column.blocks": "Aún no has bloqueado a ningún usuario.",
-  "empty_column.community": "La línea de tiempo local está vacía. ¡Escribe algo para empezar la fiesta!",
+  "empty_column.bookmarked_statuses": "Aún no tienes ninguna barritada guardada como marcador. Cuando guardes una, se mostrará aquí.",
+  "empty_column.community": "La cronología local está vacía. ¡Escribe algo para empezar la fiesta!",
   "empty_column.direct": "Aún no tienes ningún mensaje directo. Cuando envíes o recibas uno, se mostrará aquí.",
   "empty_column.domain_blocks": "Todavía no hay dominios ocultos.",
   "empty_column.favourited_statuses": "Aún no tienes toots preferidos. Cuando marques uno como favorito, aparecerá aquí.",
   "empty_column.favourites": "Nadie ha marcado este toot como preferido. Cuando alguien lo haga, aparecerá aquí.",
   "empty_column.follow_requests": "No tienes ninguna petición de seguidor. Cuando recibas una, se mostrará aquí.",
-  "empty_column.hashtag": "No hay nada en este hashtag aún.",
+  "empty_column.hashtag": "No hay nada en esta etiqueta aún.",
   "empty_column.home": "No estás siguiendo a nadie aún. Visita {public} o haz búsquedas para empezar y conocer gente nueva.",
-  "empty_column.home.public_timeline": "la línea de tiempo pública",
+  "empty_column.home.public_timeline": "la cronología pública",
   "empty_column.list": "No hay nada en esta lista aún. Cuando miembros de esta lista publiquen nuevos estatus, estos aparecerán qui.",
   "empty_column.lists": "No tienes ninguna lista. cuando crees una, se mostrará aquí.",
   "empty_column.mutes": "Aún no has silenciado a ningún usuario.",
   "empty_column.notifications": "No tienes ninguna notificación aún. Interactúa con otros para empezar una conversación.",
   "empty_column.public": "¡No hay nada aquí! Escribe algo públicamente, o sigue usuarios de otras instancias manualmente para llenarlo",
   "error.unexpected_crash.explanation": "Debido a un error en nuestro código o a un problema de compatibilidad con el navegador, esta página no se ha podido mostrar correctamente.",
-  "error.unexpected_crash.next_steps": "Intenta actualizar la página. Si eso no ayuda, es posible que puedas usar Mastodon a través de otro navegador o aplicación nativa.",
+  "error.unexpected_crash.next_steps": "Intenta actualizar la página. Si eso no ayuda, es posible que puedas usar Mastodonte a través de otro navegador o aplicación nativa.",
   "errors.unexpected_crash.copy_stacktrace": "Copiar el seguimiento de pila en el portapapeles",
   "errors.unexpected_crash.report_issue": "Informar de un problema/error",
   "federation.change": "Adjust status federation",
@@ -168,18 +173,18 @@
   "getting_started.documentation": "Documentación",
   "getting_started.heading": "Primeros pasos",
   "getting_started.invite": "Invitar usuarios",
-  "getting_started.open_source_notice": "Mastodon es software libre. Puedes contribuir o reportar errores en {github}.",
+  "getting_started.open_source_notice": "Mastodonte es un Programa Libre y de Código Abierto - Plica/Foss -. Puedes contribuir o reportar errores en {github}.",
   "getting_started.security": "Seguridad",
   "getting_started.terms": "Términos de servicio",
   "hashtag.column_header.tag_mode.all": "y {additional}",
   "hashtag.column_header.tag_mode.any": "o {additional}",
   "hashtag.column_header.tag_mode.none": "sin {additional}",
   "hashtag.column_settings.select.no_options_message": "No se encontraron sugerencias",
-  "hashtag.column_settings.select.placeholder": "Introduzca hashtags…",
-  "hashtag.column_settings.tag_mode.all": "Cualquiera de estos",
+  "hashtag.column_settings.select.placeholder": "Introduzca etiquetas…",
+  "hashtag.column_settings.tag_mode.all": "Todos estos",
   "hashtag.column_settings.tag_mode.any": "Cualquiera de estos",
   "hashtag.column_settings.tag_mode.none": "Ninguno de estos",
-  "hashtag.column_settings.tag_toggle": "Include additional tags in this column",
+  "hashtag.column_settings.tag_toggle": "Incluya etiquetas adicionales para esta columna",
   "home.column_settings.basic": "Básico",
   "home.column_settings.show_reblogs": "Mostrar retoots",
   "home.column_settings.show_replies": "Mostrar respuestas",
@@ -192,7 +197,7 @@
   "introduction.federation.home.headline": "Inicio",
   "introduction.federation.home.text": "Los posts de personas que sigues aparecerán en tu cronología. ¡Puedes seguir a cualquiera en cualquier servidor!",
   "introduction.federation.local.headline": "Local",
-  "introduction.federation.local.text": "Los posts públicos de personas en el mismo servidor que aparecerán en la cronología local.",
+  "introduction.federation.local.text": "Los mensajes públicos de personas en el mismo servidor que aparecerán en la cronología local.",
   "introduction.interactions.action": "¡Terminar tutorial!",
   "introduction.interactions.favourite.headline": "Favorito",
   "introduction.interactions.favourite.text": "Puedes guardar un toot para más tarde, y hacer saber al autor que te gustó, dándole a favorito.",
@@ -205,7 +210,7 @@
   "introduction.welcome.text": "¡Bienvenido al fediverso! En unos momentos, podrás transmitir mensajes y hablar con tus amigos a través de una amplia variedad de servidores. Pero este servidor, {domain}, es especial, alberga tu perfil, así que recuerda su nombre.",
   "keyboard_shortcuts.back": "volver atrás",
   "keyboard_shortcuts.blocked": "abrir una lista de usuarios bloqueados",
-  "keyboard_shortcuts.boost": "retootear",
+  "keyboard_shortcuts.boost": "reipoxta",
   "keyboard_shortcuts.column": "enfocar un estado en una de las columnas",
   "keyboard_shortcuts.compose": "enfocar el área de texto de redacción",
   "keyboard_shortcuts.description": "Descripción",
@@ -214,16 +219,17 @@
   "keyboard_shortcuts.enter": "abrir estado",
   "keyboard_shortcuts.favourite": "añadir a favoritos",
   "keyboard_shortcuts.favourites": "abrir la lista de favoritos",
-  "keyboard_shortcuts.federated": "abrir el timeline federado",
+  "keyboard_shortcuts.federated": "abrir la cronología federada",
   "keyboard_shortcuts.heading": "Keyboard Shortcuts",
-  "keyboard_shortcuts.home": "abrir el timeline propio",
+  "keyboard_shortcuts.home": "abrir la cronología propia",
   "keyboard_shortcuts.hotkey": "Tecla caliente",
   "keyboard_shortcuts.legend": "para mostrar esta leyenda",
-  "keyboard_shortcuts.local": "abrir el timeline local",
+  "keyboard_shortcuts.local": "abrir la cronología local",
   "keyboard_shortcuts.mention": "para mencionar al autor",
   "keyboard_shortcuts.muted": "abrir la lista de usuarios silenciados",
   "keyboard_shortcuts.my_profile": "abrir tu perfil",
   "keyboard_shortcuts.notifications": "abrir la columna de notificaciones",
+  "keyboard_shortcuts.open_media": "para abrir archivos multimedia",
   "keyboard_shortcuts.pinned": "abrir la lista de toots destacados",
   "keyboard_shortcuts.profile": "abrir el perfil del autor",
   "keyboard_shortcuts.reply": "para responder",
@@ -256,7 +262,8 @@
   "mute_modal.hide_notifications": "Ocultar notificaciones de este usuario?",
   "navigation_bar.apps": "Aplicaciones móviles",
   "navigation_bar.blocks": "Usuarios bloqueados",
-  "navigation_bar.community_timeline": "Historia local",
+  "navigation_bar.bookmarks": "Marcadores",
+  "navigation_bar.community_timeline": "Cronología local",
   "navigation_bar.compose": "Escribir un nuevo toot",
   "navigation_bar.direct": "Mensajes directos",
   "navigation_bar.discover": "Descubrir",
@@ -274,11 +281,13 @@
   "navigation_bar.personal": "Personal",
   "navigation_bar.pins": "Toots fijados",
   "navigation_bar.preferences": "Preferencias",
-  "navigation_bar.public_timeline": "Historia federada",
+  "navigation_bar.public_timeline": "Cronología federada",
   "navigation_bar.security": "Seguridad",
   "notification.favourite": "{name} marcó tu estado como favorito",
   "notification.follow": "{name} te empezó a seguir",
+  "notification.follow_request": "{name} ha solicitado seguirte",
   "notification.mention": "{name} te ha mencionado",
+  "notification.own_poll": "Tu encuesta ha terminado",
   "notification.poll": "Una encuesta en la que has votado ha terminado",
   "notification.reblog": "{name} ha retooteado tu estado",
   "notifications.clear": "Limpiar notificaciones",
@@ -289,6 +298,7 @@
   "notifications.column_settings.filter_bar.category": "Barra de filtrado rápido",
   "notifications.column_settings.filter_bar.show": "Mostrar",
   "notifications.column_settings.follow": "Nuevos seguidores:",
+  "notifications.column_settings.follow_request": "Nuevas solicitudes de seguimiento:",
   "notifications.column_settings.mention": "Menciones:",
   "notifications.column_settings.poll": "Resultados de la votación:",
   "notifications.column_settings.push": "Notificaciones push",
@@ -315,9 +325,9 @@
   "privacy.direct.short": "Directo",
   "privacy.private.long": "Sólo mostrar a seguidores",
   "privacy.private.short": "Privado",
-  "privacy.public.long": "Mostrar en la historia federada",
+  "privacy.public.long": "Mostrar en la cronología federada",
   "privacy.public.short": "Público",
-  "privacy.unlisted.long": "No mostrar en la historia federada",
+  "privacy.unlisted.long": "No mostrar en la cronología federada",
   "privacy.unlisted.short": "No listado",
   "refresh": "Actualizar",
   "regeneration_indicator.label": "Cargando…",
@@ -339,18 +349,19 @@
   "search_popout.tips.full_text": "Búsquedas de texto recuperan posts que has escrito, marcado como favoritos, retooteado o en los que has sido mencionado, así como usuarios, nombres y hashtags.",
   "search_popout.tips.hashtag": "etiqueta",
   "search_popout.tips.status": "estado",
-  "search_popout.tips.text": "El texto simple devuelve correspondencias de nombre, usuario y hashtag",
+  "search_popout.tips.text": "El texto simple devuelve correspondencias de nombre, persona usuaria y etiqueta",
   "search_popout.tips.user": "usuario",
   "search_results.accounts": "Gente",
   "search_results.hashtags": "Etiquetas",
   "search_results.statuses": "Toots",
-  "search_results.statuses_fts_disabled": "Buscar toots por su contenido no está disponible en este servidor de Mastodon.",
+  "search_results.statuses_fts_disabled": "Buscar bramidos por su contenido no está disponible en este servidor de Mastodonte.",
   "search_results.total": "{count, number} {count, plural, one {resultado} other {resultados}}",
   "status.admin_account": "Abrir interfaz de moderación para @{name}",
   "status.admin_status": "Abrir este estado en la interfaz de moderación",
   "status.block": "Bloquear a @{name}",
+  "status.bookmark": "Marcador",
   "status.cancel_reblog_private": "Des-impulsar",
-  "status.cannot_reblog": "Este toot no puede retootearse",
+  "status.cannot_reblog": "Este bramido no puede rebarritarse",
   "status.copy": "Copiar enlace al estado",
   "status.delete": "Borrar",
   "status.detailed_status": "Vista de conversación detallada",
@@ -369,11 +380,12 @@
   "status.pin": "Fijar",
   "status.pinned": "Toot fijado",
   "status.read_more": "Leer más",
-  "status.reblog": "Retootear",
+  "status.reblog": "ReIpoxta",
   "status.reblog_private": "Implusar a la audiencia original",
   "status.reblogged_by": "Retooteado por {name}",
   "status.reblogs.empty": "Nadie impulsó este toot todavía. Cuando alguien lo haga, aparecerá aqui.",
   "status.redraft": "Borrar y volver a borrador",
+  "status.remove_bookmark": "Eliminar marcador",
   "status.reply": "Responder",
   "status.replyAll": "Responder al hilo",
   "status.report": "Reportar",
@@ -389,7 +401,7 @@
   "status.unpin": "Dejar de fijar",
   "suggestions.dismiss": "Descartar sugerencia",
   "suggestions.header": "Es posible que te interese…",
-  "tabs_bar.federated_timeline": "Federado",
+  "tabs_bar.federated_timeline": "Federada",
   "tabs_bar.home": "Inicio",
   "tabs_bar.local_timeline": "Local",
   "tabs_bar.notifications": "Notificaciones",
@@ -401,14 +413,16 @@
   "time_remaining.seconds": "{number, plural, one {# segundo restante} other {# segundos restantes}}",
   "trends.count_by_accounts": "{count} {rawCount, plural, one {persona} other {personas}} hablando",
   "trends.trending_now": "Tendencia ahora",
-  "ui.beforeunload": "Tu borrador se perderá si sales de Mastodon.",
+  "ui.beforeunload": "Tu borrador se perderá si sales de Mastodonte.",
   "upload_area.title": "Arrastra y suelta para subir",
   "upload_button.label": "Subir multimedia (JPEG, PNG, GIF, WebM, MP4, MOV)",
   "upload_error.limit": "Límite de subida de archivos excedido.",
   "upload_error.poll": "Subida de archivos no permitida con encuestas.",
+  "upload_form.audio_description": "Describir para personas con problemas auditivos",
   "upload_form.description": "Describir para los usuarios con dificultad visual",
   "upload_form.edit": "Editar",
   "upload_form.undo": "Borrar",
+  "upload_form.video_description": "Describir para personas con problemas auditivos o visuales",
   "upload_modal.analyzing_picture": "Analizando imagen…",
   "upload_modal.apply": "Aplicar",
   "upload_modal.description_placeholder": "Un rápido zorro marrón salta sobre el perro perezoso",
@@ -418,6 +432,7 @@
   "upload_modal.preview_label": "Vista previa ({ratio})",
   "upload_progress.label": "Subiendo…",
   "video.close": "Cerrar video",
+  "video.download": "Descargar archivo",
   "video.exit_fullscreen": "Salir de pantalla completa",
   "video.expand": "Expandir vídeo",
   "video.fullscreen": "Pantalla completa",
diff --git a/app/javascript/mastodon/locales/et.json b/app/javascript/mastodon/locales/et.json
index db60dab545276725f6219f1f0d22686c606467ba..94e73ae3d080cef03c9fd857d2dd86dc1f35b929 100644
--- a/app/javascript/mastodon/locales/et.json
+++ b/app/javascript/mastodon/locales/et.json
@@ -1,10 +1,11 @@
 {
   "account.add_or_remove_from_list": "Lisa või Eemalda nimekirjadest",
   "account.badges.bot": "Robot",
+  "account.badges.group": "Grupp",
   "account.block": "Blokeeri @{name}",
   "account.block_domain": "Peida kõik domeenist {domain}",
   "account.blocked": "Blokeeritud",
-  "account.cancel_follow_request": "Cancel follow request",
+  "account.cancel_follow_request": "Tühista jälgimistaotlus",
   "account.direct": "Otsesõnum @{name}",
   "account.domain_blocked": "Domeen peidetud",
   "account.edit_profile": "Muuda profiili",
@@ -14,18 +15,18 @@
   "account.followers.empty": "Keegi ei jälgi seda kasutajat veel.",
   "account.follows": "Jälgib",
   "account.follows.empty": "See kasutaja ei jälgi veel kedagi.",
-  "account.follows_you": "Jälgib sind",
+  "account.follows_you": "Jälgib Teid",
   "account.hide_reblogs": "Peida upitused kasutajalt @{name}",
-  "account.last_status": "Last active",
+  "account.last_status": "Viimati aktiivne",
   "account.link_verified_on": "Selle lingi autorsust kontrolliti {date}",
-  "account.locked_info": "Selle konto privaatsus on lukustatud. Omanik vaatab manuaalselt üle, kes teda jägida saab.",
+  "account.locked_info": "Selle konto privaatsussätteks on lukustatud. Omanik vaatab manuaalselt üle, kes teda jägida saab.",
   "account.media": "Meedia",
   "account.mention": "Maini @{name}",
   "account.moved_to": "{name} on kolinud:",
   "account.mute": "Vaigista @{name}",
   "account.mute_notifications": "Vaigista teated kasutajalt @{name}",
   "account.muted": "Vaigistatud",
-  "account.never_active": "Never",
+  "account.never_active": "Mitte kunagi",
   "account.posts": "Tuututused",
   "account.posts_with_replies": "Tuututused ja vastused",
   "account.report": "Raporteeri @{name}",
@@ -38,22 +39,23 @@
   "account.unfollow": "Ära jälgi",
   "account.unmute": "Ära vaigista @{name}",
   "account.unmute_notifications": "Ära vaigista teateid kasutajalt @{name}",
-  "alert.rate_limited.message": "Please retry after {retry_time, time, medium}.",
-  "alert.rate_limited.title": "Rate limited",
+  "alert.rate_limited.message": "Palun proovi uuesti pärast {retry_time, time, medium}.",
+  "alert.rate_limited.title": "Piiratud",
   "alert.unexpected.message": "Tekkis ootamatu viga.",
   "alert.unexpected.title": "Oih!",
-  "autosuggest_hashtag.per_week": "{count} per week",
-  "boost_modal.combo": "Saad vajutada {combo}, et see järgmine kord vahele jätta",
-  "bundle_column_error.body": "Mindagi läks valesti selle komponendi laadimisel.",
+  "autosuggest_hashtag.per_week": "{count} nädalas",
+  "boost_modal.combo": "Võite vajutada {combo}, et see järgmine kord vahele jätta",
+  "bundle_column_error.body": "Midagi läks valesti selle komponendi laadimisel.",
   "bundle_column_error.retry": "Proovi uuesti",
   "bundle_column_error.title": "Võrgu viga",
   "bundle_modal_error.close": "Sulge",
   "bundle_modal_error.message": "Selle komponendi laadimisel läks midagi viltu.",
   "bundle_modal_error.retry": "Proovi uuesti",
   "column.blocks": "Blokeeritud kasutajad",
+  "column.bookmarks": "Järjehoidjad",
   "column.community": "Kohalik ajajoon",
   "column.direct": "Otsesõnumid",
-  "column.directory": "Browse profiles",
+  "column.directory": "Sirvi profiile",
   "column.domain_blocks": "Peidetud domeenid",
   "column.favourites": "Lemmikud",
   "column.follow_requests": "Jälgimistaotlused",
@@ -61,7 +63,7 @@
   "column.lists": "Nimekirjad",
   "column.mutes": "Vaigistatud kasutajad",
   "column.notifications": "Teated",
-  "column.pins": "Kinnitatud upitused",
+  "column.pins": "Kinnitatud tuututused",
   "column.public": "Föderatiivne ajajoon",
   "column_back_button.label": "Tagasi",
   "column_header.hide_settings": "Peida sätted",
@@ -75,13 +77,15 @@
   "compose_form.direct_message_warning": "See tuut saadetakse ainult mainitud kasutajatele.",
   "compose_form.direct_message_warning_learn_more": "Vaata veel",
   "compose_form.hashtag_warning": "Seda tuuti ei kuvata ühegi sildi all, sest see on kirjendamata. Ainult avalikud tuutid on sildi järgi otsitavad.",
-  "compose_form.lock_disclaimer": "Sinu konto ei ole {locked}. Igaüks saab sind jälgida ja näha su ainult-jälgijatele postitusi.",
+  "compose_form.lock_disclaimer": "Teie konto ei ole {locked}. Igaüks saab Teid jälgida ja näha Teie ainult-jälgijatele postitusi.",
   "compose_form.lock_disclaimer.lock": "lukus",
-  "compose_form.placeholder": "Millest mõtled?",
+  "compose_form.placeholder": "Millest mõtlete?",
   "compose_form.poll.add_option": "Lisa valik",
   "compose_form.poll.duration": "Küsitluse kestus",
   "compose_form.poll.option_placeholder": "Valik {number}",
   "compose_form.poll.remove_option": "Eemalda see valik",
+  "compose_form.poll.switch_to_multiple": "Muuda küsitlust lubamaks mitut valikut",
+  "compose_form.poll.switch_to_single": "Muuda küsitlust lubamaks ainult ühte valikut",
   "compose_form.publish": "Tuut",
   "compose_form.publish_loud": "{publish}!",
   "compose_form.sensitive.hide": "Märgista meedia tundlikuks",
@@ -89,36 +93,36 @@
   "compose_form.sensitive.unmarked": "Meedia ei ole sensitiivseks märgitud",
   "compose_form.spoiler.marked": "Tekst on hoiatuse taha peidetud",
   "compose_form.spoiler.unmarked": "Tekst ei ole peidetud",
-  "compose_form.spoiler_placeholder": "Kirjuta oma hoiatus siia",
+  "compose_form.spoiler_placeholder": "Kirjutage oma hoiatus siia",
   "confirmation_modal.cancel": "Katkesta",
   "confirmations.block.block_and_report": "Blokeeri & Teata",
   "confirmations.block.confirm": "Blokeeri",
-  "confirmations.block.message": "Oled kindel, et soovid blokkida {name}?",
+  "confirmations.block.message": "Olete kindel, et soovite blokeerida {name}?",
   "confirmations.delete.confirm": "Kustuta",
-  "confirmations.delete.message": "Oled kindel, et soovid selle staatuse kustutada?",
+  "confirmations.delete.message": "Olete kindel, et soovite selle staatuse kustutada?",
   "confirmations.delete_list.confirm": "Kustuta",
-  "confirmations.delete_list.message": "Oled kindel, et soovid selle nimekirja püsivalt kustutada?",
+  "confirmations.delete_list.message": "Olete kindel, et soovite selle nimekirja püsivalt kustutada?",
   "confirmations.domain_block.confirm": "Peida terve domeen",
-  "confirmations.domain_block.message": "Oled ikka päris kindel, et soovid blokeerida terve  {domain}? Enamikul juhtudel piisab mõnest sihitud blokist või vaigistusest, mis on eelistatav. Sa ei näe selle domeeni sisu üheski avalikus ajajoones või teadetes. Sinu jälgijad sellest domeenist eemaldatakse.",
-  "confirmations.logout.confirm": "Log out",
-  "confirmations.logout.message": "Are you sure you want to log out?",
+  "confirmations.domain_block.message": "Olete ikka päris kindel, et soovite blokeerida terve {domain}? Enamikul juhtudel piisab mõnest sihitud blokist või vaigistusest, mis on eelistatav. Te ei näe selle domeeni sisu üheski avalikus ajajoones või teadetes. Teie jälgijad sellest domeenist eemaldatakse.",
+  "confirmations.logout.confirm": "Välju",
+  "confirmations.logout.message": "Kas olete kindel, et soovite välja logida?",
   "confirmations.mute.confirm": "Vaigista",
-  "confirmations.mute.explanation": "This will hide posts from them and posts mentioning them, but it will still allow them to see your posts and follow you.",
-  "confirmations.mute.message": "Oled kindel, et soovid {name} vaigistada?",
+  "confirmations.mute.explanation": "See peidab postitusi temalt ning postitusi, kus mainitakse neid, kuid see lubab neil ikka näha Teie postitusi ning Teid jälgida.",
+  "confirmations.mute.message": "Olete kindel, et soovite {name} vaigistada?",
   "confirmations.redraft.confirm": "Kustuta & taasalusta",
-  "confirmations.redraft.message": "Oled kindel, et soovid selle staatuse kustutada ja alustada uuesti? Lemmikud ja upitused lähevad kaotsi ja vastused originaaalpostitusele jäävad orvuks.",
+  "confirmations.redraft.message": "Olete kindel, et soovite selle staatuse kustutada ja alustada uuesti? Lemmikud ja upitused lähevad kaotsi ja vastused originaaalpostitusele jäävad orvuks.",
   "confirmations.reply.confirm": "Vasta",
-  "confirmations.reply.message": "Kohene vastamine kirjutab üle sõnumi, mida hetkel koostad. Oled kindel, et soovid jätkata?",
+  "confirmations.reply.message": "Praegu vastamine kirjutab üle sõnumi, mida hetkel koostate. Olete kindel, et soovite jätkata?",
   "confirmations.unfollow.confirm": "Ära jälgi",
-  "confirmations.unfollow.message": "Oled kindel, et ei soovi jälgida {name}?",
-  "conversation.delete": "Delete conversation",
-  "conversation.mark_as_read": "Mark as read",
-  "conversation.open": "View conversation",
-  "conversation.with": "With {names}",
-  "directory.federated": "From known fediverse",
-  "directory.local": "From {domain} only",
-  "directory.new_arrivals": "New arrivals",
-  "directory.recently_active": "Recently active",
+  "confirmations.unfollow.message": "Olete kindel, et ei soovi rohkem jälgida kasutajat {name}?",
+  "conversation.delete": "Kustuta vestlus",
+  "conversation.mark_as_read": "Märgi loetuks",
+  "conversation.open": "Vaata vestlust",
+  "conversation.with": "Koos {names}",
+  "directory.federated": "Teatud fediversumist",
+  "directory.local": "Ainult domeenilt {domain}",
+  "directory.new_arrivals": "Uustulijad",
+  "directory.recently_active": "Hiljuti aktiivne",
   "embed.instructions": "Manusta see staatus oma veebilehele, kopeerides alloleva koodi.",
   "embed.preview": "Nii näeb see välja:",
   "emoji_button.activity": "Tegevus",
@@ -138,24 +142,25 @@
   "empty_column.account_timeline": "Siin tuute ei ole!",
   "empty_column.account_unavailable": "Profiil pole saadaval",
   "empty_column.blocks": "Sa ei ole veel ühtegi kasutajat blokeerinud.",
-  "empty_column.community": "Kohalik ajajoon on tühi. Kirjuta midagi avalikult, et pall veerema saada!",
-  "empty_column.direct": "Sul ei veel otsesõnumeid. Kui saadad või võtad mõne vastu, ilmuvad nad siia.",
+  "empty_column.bookmarked_statuses": "Teil pole veel järjehoidjatesse lisatud tuututusi. Kui lisate mõne, näete neid siin.",
+  "empty_column.community": "Kohalik ajajoon on tühi. Kirjutage midagi avalikult, et pall veerema ajada!",
+  "empty_column.direct": "Teil ei ole veel otsesõnumeid. Kui saadate või võtate mõne vastu, ilmuvad nad siia.",
   "empty_column.domain_blocks": "Siin ei ole veel peidetud domeene.",
-  "empty_column.favourited_statuses": "Sul pole veel lemmikuid tuute. Kui märgid mõne, näed neid siin.",
+  "empty_column.favourited_statuses": "Teil pole veel lemmikuid tuute. Kui märgite mõne, näete neid siin.",
   "empty_column.favourites": "Keegi pole veel seda tuuti lemmikuks märkinud. Kui seegi seda teeb, näed seda siin.",
-  "empty_column.follow_requests": "Sul pole veel ühtegi jälgimise taotlust. Kui saad mõne, näed seda siin.",
+  "empty_column.follow_requests": "Teil pole veel ühtegi jälgimise taotlust. Kui saate mõne, näete neid siin.",
   "empty_column.hashtag": "Selle sildiga pole veel midagi.",
-  "empty_column.home": "Sinu kodu ajajoon on tühi! Külasta {public} või kasuta otsingut alustamaks ja kohtamaks teisi kasutajaid.",
+  "empty_column.home": "Teie kodu ajajoon on tühi! Külastage {public} või kasutage otsingut alustamaks ja kohtamaks teisi kasutajaid.",
   "empty_column.home.public_timeline": "avalik ajajoon",
   "empty_column.list": "Siin nimstus pole veel midagi. Kui selle nimistu liikmed postitavad uusi staatusi, näed neid siin.",
-  "empty_column.lists": "Sul ei ole veel ühtegi nimekirja. Kui lood mõne, näed seda siin.",
-  "empty_column.mutes": "Sa pole veel ühtegi kasutajat vaigistanud.",
-  "empty_column.notifications": "Sul ei ole veel teateid. Suhtle teistega alustamaks vestlust.",
+  "empty_column.lists": "Teil ei ole veel ühtegi nimekirja. Kui loote mõne, näete neid siin.",
+  "empty_column.mutes": "Te pole veel ühtegi kasutajat vaigistanud.",
+  "empty_column.notifications": "Teil ei ole veel teateid. Suhelge teistega alustamaks vestlust.",
   "empty_column.public": "Siin pole midagi! Kirjuta midagi avalikut või jälgi ise kasutajaid täitmaks seda ruumi",
-  "error.unexpected_crash.explanation": "Due to a bug in our code or a browser compatibility issue, this page could not be displayed correctly.",
-  "error.unexpected_crash.next_steps": "Try refreshing the page. If that does not help, you may still be able to use Mastodon through a different browser or native app.",
-  "errors.unexpected_crash.copy_stacktrace": "Copy stacktrace to clipboard",
-  "errors.unexpected_crash.report_issue": "Report issue",
+  "error.unexpected_crash.explanation": "Meie poolse probleemi või veebilehitseja ühilduvus probleemi tõttu ei suutnud me Teile seda lehekülge korrektselt näidata.",
+  "error.unexpected_crash.next_steps": "Proovige lehekülge uuesti avada. Kui see ei aita, võite proovida kasutada Mastodoni mõne muu veebilehitseja või äppi kaudu.",
+  "errors.unexpected_crash.copy_stacktrace": "Kopeeri stacktrace lõikelauale",
+  "errors.unexpected_crash.report_issue": "Teavita veast",
   "follow_request.authorize": "Autoriseeri",
   "follow_request.reject": "Hülga",
   "getting_started.developers": "Arendajad",
@@ -163,7 +168,7 @@
   "getting_started.documentation": "Dokumentatsioon",
   "getting_started.heading": "Alustamine",
   "getting_started.invite": "Kutsu inimesi",
-  "getting_started.open_source_notice": "Mastodon on avatud lähtekoodiga tarkvara. Saad panustada või teatada probleemidest GitHubis {github}.",
+  "getting_started.open_source_notice": "Mastodon on avatud lähtekoodiga tarkvara. Saate panustada või teatada probleemidest GitHubis {github}.",
   "getting_started.security": "Turvalisus",
   "getting_started.terms": "Kasutustingimused",
   "hashtag.column_header.tag_mode.all": "ja {additional}",
@@ -185,19 +190,19 @@
   "introduction.federation.federated.headline": "Föderatiivne",
   "introduction.federation.federated.text": "Avalikud postitused teistest föderatsiooni serveritest kuvatakse föderatiivsel ajajoonel.",
   "introduction.federation.home.headline": "Kodu",
-  "introduction.federation.home.text": "Inimest postitused keda jälgid kuvatakse sinu koduajajoonel. Saad jälgida igaüht igas serveris!",
+  "introduction.federation.home.text": "Inimeste, keda jälgite, postitused kuvatakse Teie koduajajoonel. Saate jälgida igaüht igas serveris!",
   "introduction.federation.local.headline": "Kohalik",
   "introduction.federation.local.text": "Samas serveris olevate inimeste postitused kuvatakse kohalikul ajajoonel.",
   "introduction.interactions.action": "Välju õpetusest!",
   "introduction.interactions.favourite.headline": "Lemmik",
-  "introduction.interactions.favourite.text": "Saad tuuti salvestada ja anda autorile teada, et meeldis märkides selle lemmikuks.",
+  "introduction.interactions.favourite.text": "Saate tuuti salvestada ja anda autorile teada, et see meeldis Teile, märkides selle lemmikuks.",
   "introduction.interactions.reblog.headline": "Upita",
-  "introduction.interactions.reblog.text": "Saad jagada teiste inimeste tuute oma jälgijatega upitades neid.",
+  "introduction.interactions.reblog.text": "Saate jagada teiste inimeste tuute oma jälgijatega neid upitades.",
   "introduction.interactions.reply.headline": "Vasta",
-  "introduction.interactions.reply.text": "Saad vastata teiste ja enda tuutidele, mis ühendab nad kokku aruteluks.",
+  "introduction.interactions.reply.text": "Saate vastata teiste ja enda tuutidele, mis ühendab nad kokku aruteluks.",
   "introduction.welcome.action": "Lähme!",
   "introduction.welcome.headline": "Esimesed sammud",
-  "introduction.welcome.text": "Teretulemast fediversumisse! Mõne aja pärast saad avaldada sõnumeid ja rääkida oma sõpradega läbi laia valiku serverite. Aga see server, {domain}, on eriline—ta majutab sinu profiili. Seega jäta ta nimi meelde.",
+  "introduction.welcome.text": "Teretulemast fediversumisse! Mõne aja pärast saate avaldada sõnumeid ja rääkida oma sõpradega läbi laia valiku serverite. Aga see server, {domain}, on eriline—see majutab sinu profiili. Seega jäta selle nimi meelde.",
   "keyboard_shortcuts.back": "tagasiminekuks",
   "keyboard_shortcuts.blocked": "avamaks blokeeritud kasutajate nimistut",
   "keyboard_shortcuts.boost": "upitamiseks",
@@ -219,6 +224,7 @@
   "keyboard_shortcuts.muted": "avamaks vaigistatud kasutajate nimistut",
   "keyboard_shortcuts.my_profile": "avamaks profiili",
   "keyboard_shortcuts.notifications": "avamaks teadete tulpa",
+  "keyboard_shortcuts.open_media": "et avada meedia",
   "keyboard_shortcuts.pinned": "avamaks kinnitatud tuutide nimistut",
   "keyboard_shortcuts.profile": "avamaks autori profiili",
   "keyboard_shortcuts.reply": "vastamiseks",
@@ -241,8 +247,8 @@
   "lists.edit.submit": "Muuda pealkiri",
   "lists.new.create": "Lisa nimistu",
   "lists.new.title_placeholder": "Uus nimistu pealkiri",
-  "lists.search": "Otsi sinu poolt jälgitavate inimese hulgast",
-  "lists.subheading": "Sinu nimistud",
+  "lists.search": "Otsi Teie poolt jälgitavate inimese hulgast",
+  "lists.subheading": "Teie nimistud",
   "load_pending": "{count, plural, one {# uus kirje} other {# uut kirjet}}",
   "loading_indicator.label": "Laeb..",
   "media_gallery.toggle_visible": "Lülita nähtavus",
@@ -251,6 +257,7 @@
   "mute_modal.hide_notifications": "Kas peita teated sellelt kasutajalt?",
   "navigation_bar.apps": "Mobiilrakendused",
   "navigation_bar.blocks": "Blokeeritud kasutajad",
+  "navigation_bar.bookmarks": "Järjehoidjad",
   "navigation_bar.community_timeline": "Kohalik ajajoon",
   "navigation_bar.compose": "Koosta uus tuut",
   "navigation_bar.direct": "Otsesõnumid",
@@ -271,19 +278,22 @@
   "navigation_bar.preferences": "Eelistused",
   "navigation_bar.public_timeline": "Föderatiivne ajajoon",
   "navigation_bar.security": "Turvalisus",
-  "notification.favourite": "{name} märkis su staatuse lemmikuks",
-  "notification.follow": "{name} jälgib sind",
-  "notification.mention": "{name} mainis sind",
-  "notification.poll": "Küsitlus, milles osalesid, on lõppenud",
-  "notification.reblog": "{name} upitas su staatust",
+  "notification.favourite": "{name} märkis Teie staatuse lemmikuks",
+  "notification.follow": "{name} jälgib nüüd Teid",
+  "notification.follow_request": "{name} soovib Teid jälgida",
+  "notification.mention": "{name} mainis Teid",
+  "notification.own_poll": "Teie küsitlus on lõppenud",
+  "notification.poll": "Küsitlus, milles osalesite, on lõppenud",
+  "notification.reblog": "{name} upitas Teie staatust",
   "notifications.clear": "Puhasta teated",
-  "notifications.clear_confirmation": "Oled kindel, et soovid püsivalt kõik oma teated puhastada?",
+  "notifications.clear_confirmation": "Olete kindel, et soovite püsivalt kõik oma teated eemaldada?",
   "notifications.column_settings.alert": "Töölauateated",
   "notifications.column_settings.favourite": "Lemmikud:",
   "notifications.column_settings.filter_bar.advanced": "Kuva kõik kategooriad",
   "notifications.column_settings.filter_bar.category": "Kiirfiltri riba",
   "notifications.column_settings.filter_bar.show": "Kuva",
   "notifications.column_settings.follow": "Uued jälgijad:",
+  "notifications.column_settings.follow_request": "Uued jälgimistaotlused:",
   "notifications.column_settings.mention": "Mainimised:",
   "notifications.column_settings.poll": "Küsitluse tulemused:",
   "notifications.column_settings.push": "Push teated",
@@ -299,10 +309,10 @@
   "notifications.group": "{count} teated",
   "poll.closed": "Suletud",
   "poll.refresh": "Värskenda",
-  "poll.total_people": "{count, plural, one {# person} other {# people}}",
+  "poll.total_people": "{count, plural,one {# inimene} other {# inimest}}",
   "poll.total_votes": "{count, plural, one {# hääl} other {# hääli}}",
   "poll.vote": "Hääleta",
-  "poll.voted": "You voted for this answer",
+  "poll.voted": "Teie hääletasite selle poolt",
   "poll_button.add_poll": "Lisa küsitlus",
   "poll_button.remove_poll": "Eemalda küsitlus",
   "privacy.change": "Muuda staatuse privaatsust",
@@ -314,9 +324,9 @@
   "privacy.public.short": "Avalik",
   "privacy.unlisted.long": "Ära postita avalikele ajajoontele",
   "privacy.unlisted.short": "Määramata",
-  "refresh": "Refresh",
+  "refresh": "Värskenda",
   "regeneration_indicator.label": "Laeb…",
-  "regeneration_indicator.sublabel": "Sinu kodu voog on ettevalmistamisel!",
+  "regeneration_indicator.sublabel": "Teie kodu voog on ettevalmistamisel!",
   "relative_time.days": "{number}p",
   "relative_time.hours": "{number}t",
   "relative_time.just_now": "nüüd",
@@ -325,7 +335,7 @@
   "reply_indicator.cancel": "Tühista",
   "report.forward": "Edasta kasutajale {target}",
   "report.forward_hint": "See kasutaja on teisest serverist. Kas saadan anonümiseeritud koopia sellest teatest sinna ka?",
-  "report.hint": "See teade saadetakse sinu serveri moderaatoritele. Te saate lisada selgituse selle kohta, miks selle kasutaja kohta teate esitasite, siin:",
+  "report.hint": "See teade saadetakse Teie serveri moderaatoritele. Te saate lisada selgituse selle kohta, miks selle kasutaja kohta teate esitasite, siin:",
   "report.placeholder": "Lisaks kommentaarid",
   "report.submit": "Saada",
   "report.target": "Teatamine {target} kohta",
@@ -344,6 +354,7 @@
   "status.admin_account": "Ava moderaatoriliides kasutajale @{name}",
   "status.admin_status": "Ava see staatus moderaatoriliites",
   "status.block": "Blokeeri @{name}",
+  "status.bookmark": "Järjehoidja",
   "status.cancel_reblog_private": "Äraupita",
   "status.cannot_reblog": "Seda postitust ei saa upitada",
   "status.copy": "Kopeeri link staatusesse",
@@ -368,6 +379,7 @@
   "status.reblogged_by": "{name} upitatud",
   "status.reblogs.empty": "Keegi pole seda tuuti veel upitanud. Kui keegi upitab, näed seda siin.",
   "status.redraft": "Kustuta & alga uuesti",
+  "status.remove_bookmark": "Eemalda järjehoidja",
   "status.reply": "Vasta",
   "status.replyAll": "Vasta lõimele",
   "status.report": "Raport @{name}",
@@ -378,11 +390,11 @@
   "status.show_more": "Näita veel",
   "status.show_more_all": "Näita enam kõigile",
   "status.show_thread": "Kuva lõim",
-  "status.uncached_media_warning": "Not available",
+  "status.uncached_media_warning": "Pole saadaval",
   "status.unmute_conversation": "Ära vaigista vestlust",
   "status.unpin": "Kinnita profiililt lahti",
   "suggestions.dismiss": "Eira soovitust",
-  "suggestions.header": "Sind võib huvitada…",
+  "suggestions.header": "Teid võib huvitada…",
   "tabs_bar.federated_timeline": "Föderatiivne",
   "tabs_bar.home": "Kodu",
   "tabs_bar.local_timeline": "Kohalik",
@@ -394,24 +406,27 @@
   "time_remaining.moments": "Hetked jäänud",
   "time_remaining.seconds": "{number, plural, one {# sekund} other {# sekundit}} left",
   "trends.count_by_accounts": "{count} {rawCount, plural, one {inimene} other {inimesed}} talking",
-  "trends.trending_now": "Trending now",
-  "ui.beforeunload": "Sinu mustand läheb kaotsi, kui lahkud Mastodonist.",
+  "trends.trending_now": "Praegu populaarne",
+  "ui.beforeunload": "Teie mustand läheb kaotsi, kui lahkute Mastodonist.",
   "upload_area.title": "Lohista & aseta üleslaadimiseks",
   "upload_button.label": "Lisa meedia (JPEG, PNG, GIF, WebM, MP4, MOV)",
   "upload_error.limit": "Faili üleslaadimise limiit ületatud.",
   "upload_error.poll": "Küsitlustes pole faili üleslaadimine lubatud.",
+  "upload_form.audio_description": "Kirjelda kuulmispuudega inimeste jaoks",
   "upload_form.description": "Kirjelda vaegnägijatele",
-  "upload_form.edit": "Edit",
+  "upload_form.edit": "Redigeeri",
   "upload_form.undo": "Kustuta",
-  "upload_modal.analyzing_picture": "Analyzing picture…",
-  "upload_modal.apply": "Apply",
-  "upload_modal.description_placeholder": "A quick brown fox jumps over the lazy dog",
-  "upload_modal.detect_text": "Detect text from picture",
-  "upload_modal.edit_media": "Edit media",
-  "upload_modal.hint": "Click or drag the circle on the preview to choose the focal point which will always be in view on all thumbnails.",
-  "upload_modal.preview_label": "Preview ({ratio})",
+  "upload_form.video_description": "Kirjelda kuulmis- või nägemispuudega inimeste jaoks",
+  "upload_modal.analyzing_picture": "Analüüsime pilti…",
+  "upload_modal.apply": "Rakenda",
+  "upload_modal.description_placeholder": "Kiire pruun rebane hüppab üle laisa koera",
+  "upload_modal.detect_text": "Tuvasta teksti pildilt",
+  "upload_modal.edit_media": "Muuda meediat",
+  "upload_modal.hint": "Vajuta või tõmba ringi eelvaatel, et valida fookuspunkti, mis on alati nähtaval kõikidel eelvaadetel.",
+  "upload_modal.preview_label": "Eelvaade ({ratio})",
   "upload_progress.label": "Laeb üles....",
   "video.close": "Sulge video",
+  "video.download": "Faili allalaadimine",
   "video.exit_fullscreen": "Välju täisekraanist",
   "video.expand": "Suurenda video",
   "video.fullscreen": "Täisekraan",
diff --git a/app/javascript/mastodon/locales/eu.json b/app/javascript/mastodon/locales/eu.json
index 1fb7faf9adf53a8a1ac081d14d1cdac7fb6039ec..541a005ed7576d29852f7aa7fe8546a498de47b0 100644
--- a/app/javascript/mastodon/locales/eu.json
+++ b/app/javascript/mastodon/locales/eu.json
@@ -1,6 +1,7 @@
 {
   "account.add_or_remove_from_list": "Gehitu edo kendu zerrendetatik",
   "account.badges.bot": "Bot-a",
+  "account.badges.group": "Group",
   "account.block": "Blokeatu @{name}",
   "account.block_domain": "Ezkutatu {domain} domeinuko guztia",
   "account.blocked": "Blokeatuta",
@@ -39,7 +40,7 @@
   "account.unmute": "Desmututu @{name}",
   "account.unmute_notifications": "Desmututu @{name}(r)en jakinarazpenak",
   "alert.rate_limited.message": "Saiatu {retry_time, time, medium} barru.",
-  "alert.rate_limited.title": "Rate limited",
+  "alert.rate_limited.title": "Abiadura mugatua",
   "alert.unexpected.message": "Ustekabeko errore bat gertatu da.",
   "alert.unexpected.title": "Ene!",
   "autosuggest_hashtag.per_week": "{count} asteko",
@@ -51,6 +52,7 @@
   "bundle_modal_error.message": "Zerbait okerra gertatu da osagai hau kargatzean.",
   "bundle_modal_error.retry": "Saiatu berriro",
   "column.blocks": "Blokeatutako erabiltzaileak",
+  "column.bookmarks": "Laster-markak",
   "column.community": "Denbora-lerro lokala",
   "column.direct": "Mezu zuzenak",
   "column.directory": "Arakatu profilak",
@@ -82,6 +84,8 @@
   "compose_form.poll.duration": "Inkestaren iraupena",
   "compose_form.poll.option_placeholder": "{number}. aukera",
   "compose_form.poll.remove_option": "Kendu aukera hau",
+  "compose_form.poll.switch_to_multiple": "Change poll to allow multiple choices",
+  "compose_form.poll.switch_to_single": "Change poll to allow for a single choice",
   "compose_form.publish": "Toot",
   "compose_form.publish_loud": "{publish}!",
   "compose_form.sensitive.hide": "Markatu multimedia hunkigarri gisa",
@@ -138,6 +142,7 @@
   "empty_column.account_timeline": "Ez dago toot-ik hemen!",
   "empty_column.account_unavailable": "Profila ez dago eskuragarri",
   "empty_column.blocks": "Ez duzu erabiltzailerik blokeatu oraindik.",
+  "empty_column.bookmarked_statuses": "Oraindik ez dituzu toot laster-markatutarik. Bat laster-markatzerakoan, hemen agertuko da.",
   "empty_column.community": "Denbora-lerro lokala hutsik dago. Idatzi zerbait publikoki pilota biraka jartzeko!",
   "empty_column.direct": "Ez duzu mezu zuzenik oraindik. Baten bat bidali edo jasotzen duzunean, hemen agertuko da.",
   "empty_column.domain_blocks": "Ez dago ezkutatutako domeinurik oraindik.",
@@ -154,7 +159,7 @@
   "empty_column.public": "Ez dago ezer hemen! Idatzi zerbait publikoki edo jarraitu eskuz beste zerbitzari batzuetako erabiltzaileak hau betetzen joateko",
   "error.unexpected_crash.explanation": "Gure kodean arazoren bat dela eta, edo nabigatzailearekin bateragarritasun arazoren bat dela eta, orri hau ezin izan da ongi bistaratu.",
   "error.unexpected_crash.next_steps": "Saiatu orria berritzen. Horrek ez badu laguntzen, agian Mastodon erabiltzeko aukera duzu oraindik ere beste nabigatzaile bat edo aplikazio natibo bat erabilita.",
-  "errors.unexpected_crash.copy_stacktrace": "Copy stacktrace to clipboard",
+  "errors.unexpected_crash.copy_stacktrace": "Kopiatu irteera arbelera",
   "errors.unexpected_crash.report_issue": "Eman arazoaren berri",
   "federation.change": "Adjust status federation",
   "federation.federated.long": "Allow toot to reach other instances",
@@ -224,6 +229,7 @@
   "keyboard_shortcuts.muted": "mutututako erabiltzaileen zerrenda irekitzeko",
   "keyboard_shortcuts.my_profile": "zure profila irekitzeko",
   "keyboard_shortcuts.notifications": "jakinarazpenen zutabea irekitzeko",
+  "keyboard_shortcuts.open_media": "media zabaltzeko",
   "keyboard_shortcuts.pinned": "finkatutako toot-en zerrenda irekitzeko",
   "keyboard_shortcuts.profile": "egilearen profila irekitzeko",
   "keyboard_shortcuts.reply": "erantzutea",
@@ -256,6 +262,7 @@
   "mute_modal.hide_notifications": "Ezkutatu erabiltzaile honen jakinarazpenak?",
   "navigation_bar.apps": "Mugikorrerako aplikazioak",
   "navigation_bar.blocks": "Blokeatutako erabiltzaileak",
+  "navigation_bar.bookmarks": "Laster-markak",
   "navigation_bar.community_timeline": "Denbora-lerro lokala",
   "navigation_bar.compose": "Idatzi toot berria",
   "navigation_bar.direct": "Mezu zuzenak",
@@ -278,7 +285,9 @@
   "navigation_bar.security": "Segurtasuna",
   "notification.favourite": "{name}(e)k zure mezua gogoko du",
   "notification.follow": "{name}(e)k jarraitzen zaitu",
+  "notification.follow_request": "{name}(e)k zu jarraitzeko eskaera egin du",
   "notification.mention": "{name}(e)k aipatu zaitu",
+  "notification.own_poll": "Zure inkesta amaitu da",
   "notification.poll": "Zuk erantzun duzun inkesta bat bukatu da",
   "notification.reblog": "{name}(e)k bultzada eman dio zure mezuari",
   "notifications.clear": "Garbitu jakinarazpenak",
@@ -289,6 +298,7 @@
   "notifications.column_settings.filter_bar.category": "Iragazki azkarraren barra",
   "notifications.column_settings.filter_bar.show": "Erakutsi",
   "notifications.column_settings.follow": "Jarraitzaile berriak:",
+  "notifications.column_settings.follow_request": "Jarraitzeko eskaera berriak:",
   "notifications.column_settings.mention": "Aipamenak:",
   "notifications.column_settings.poll": "Inkestaren emaitzak:",
   "notifications.column_settings.push": "Push jakinarazpenak",
@@ -323,7 +333,7 @@
   "regeneration_indicator.label": "Kargatzen…",
   "regeneration_indicator.sublabel": "Zure hasiera-jarioa prestatzen ari da!",
   "relative_time.days": "{number}e",
-  "relative_time.hours": "{number}o",
+  "relative_time.hours": "{number}h",
   "relative_time.just_now": "orain",
   "relative_time.minutes": "{number}m",
   "relative_time.seconds": "{number}s",
@@ -345,10 +355,11 @@
   "search_results.hashtags": "Traolak",
   "search_results.statuses": "Toot-ak",
   "search_results.statuses_fts_disabled": "Mastodon zerbitzari honek ez du Toot-en edukiaren bilaketa gaitu.",
-  "search_results.total": "{count, number} {count, plural, one {emaitza} other {emaitzak}}",
+  "search_results.total": "{count, number} {count, plural, one {emaitza} other {emaitza}}",
   "status.admin_account": "Ireki @{name} erabiltzailearen moderazio interfazea",
   "status.admin_status": "Ireki mezu hau moderazio interfazean",
   "status.block": "Blokeatu @{name}",
+  "status.bookmark": "Laster-marka",
   "status.cancel_reblog_private": "Kendu bultzada",
   "status.cannot_reblog": "Mezu honi ezin zaio bultzada eman",
   "status.copy": "Kopiatu mezuaren esteka",
@@ -374,6 +385,7 @@
   "status.reblogged_by": "{name}(r)en bultzada",
   "status.reblogs.empty": "Ez dio inork bultzada eman toot honi oraindik. Inork egiten duenean, hemen agertuko dira.",
   "status.redraft": "Ezabatu eta berridatzi",
+  "status.remove_bookmark": "Kendu laster-marka",
   "status.reply": "Erantzun",
   "status.replyAll": "Erantzun harian",
   "status.report": "Salatu @{name}",
@@ -399,25 +411,28 @@
   "time_remaining.minutes": "{number, plural, one {minutu #} other {# minutu}} amaitzeko",
   "time_remaining.moments": "Amaitzekotan",
   "time_remaining.seconds": "{number, plural, one {segundo #} other {# segundo}} amaitzeko",
-  "trends.count_by_accounts": "{count} {rawCount, plural, one {person} other {people}} hitz egiten",
+  "trends.count_by_accounts": "{count} {rawCount, plural, one {pertsona} other {pertsona}} hitz egiten",
   "trends.trending_now": "Joera orain",
   "ui.beforeunload": "Zure zirriborroa galduko da Mastodon uzten baduzu.",
   "upload_area.title": "Arrastatu eta jaregin igotzeko",
   "upload_button.label": "Gehitu multimedia  (JPEG, PNG, GIF, WebM, MP4, MOV)",
   "upload_error.limit": "Fitxategi igoera muga gaindituta.",
   "upload_error.poll": "Ez da inkestetan fitxategiak igotzea onartzen.",
+  "upload_form.audio_description": "Deskribatu entzumen galera duten pertsonentzat",
   "upload_form.description": "Deskribatu ikusmen arazoak dituztenentzat",
   "upload_form.edit": "Editatu",
   "upload_form.undo": "Ezabatu",
+  "upload_form.video_description": "Deskribatu entzumen galera edo ikusmen urritasuna duten pertsonentzat",
   "upload_modal.analyzing_picture": "Irudia aztertzen…",
   "upload_modal.apply": "Aplikatu",
-  "upload_modal.description_placeholder": "A quick brown fox jumps over the lazy dog",
-  "upload_modal.detect_text": "Antzeman irudiko testua",
-  "upload_modal.edit_media": "Editatu multimedia",
+  "upload_modal.description_placeholder": "Vaudeville itxurako filmean yogi ñaño bat jipoitzen dute Quebec-en whiski truk",
+  "upload_modal.detect_text": "Antzeman testua iruditik",
+  "upload_modal.edit_media": "Editatu media",
   "upload_modal.hint": "Sakatu eta jaregin aurrebistako zirkulua iruditxoetan beti ikusgai egongo den puntu fokala hautatzeko.",
-  "upload_modal.preview_label": "Aurreikusi({ratio})",
+  "upload_modal.preview_label": "Aurreikusi ({ratio})",
   "upload_progress.label": "Igotzen...",
   "video.close": "Itxi bideoa",
+  "video.download": "Deskargatu fitxategia",
   "video.exit_fullscreen": "Irten pantaila osotik",
   "video.expand": "Hedatu bideoa",
   "video.fullscreen": "Pantaila osoa",
diff --git a/app/javascript/mastodon/locales/fa.json b/app/javascript/mastodon/locales/fa.json
index fa3453f105d3d4dd341c7a763b178884f1917469..ccd7266e8e5375c56e61d8a815c2d24b425e1739 100644
--- a/app/javascript/mastodon/locales/fa.json
+++ b/app/javascript/mastodon/locales/fa.json
@@ -1,143 +1,148 @@
 {
   "account.add_or_remove_from_list": "افزودن یا برداشتن از فهرست",
   "account.badges.bot": "ربات",
+  "account.badges.group": "Group",
   "account.block": "مسدودسازی @{name}",
   "account.block_domain": "پنهان‌سازی همه چیز از سرور {domain}",
-  "account.blocked": "مسدود شده",
+  "account.blocked": "مسدود",
   "account.cancel_follow_request": "لغو درخواست پیگیری",
-  "account.direct": "پیغام خصوصی به @{name}",
-  "account.domain_blocked": "دامین پنهان‌شده",
+  "account.direct": "پیام خصوصی به @{name}",
+  "account.domain_blocked": "دامنه نهفته",
   "account.edit_profile": "ویرایش نمایه",
-  "account.endorse": "نمایش در نمایه",
-  "account.follow": "پی بگیرید",
-  "account.followers": "پیگیران",
-  "account.followers.empty": "هنوز هیچ کسی پیگیر این کاربر نیست.",
+  "account.endorse": "معرّفی در نمایه",
+  "account.follow": "پیگیری",
+  "account.followers": "پی‌گیران",
+  "account.followers.empty": "هنوز کسی پیگیر این کاربر نیست.",
   "account.follows": "پی می‌گیرد",
-  "account.follows.empty": "این کاربر هنوز هیچ کسی را پی نمی‌گیرد.",
-  "account.follows_you": "پیگیر شماست",
-  "account.hide_reblogs": "پنهان کردن بازبوق‌های @{name}",
+  "account.follows.empty": "این کاربر هنوز پیگیر کسی نیست.",
+  "account.follows_you": "پیگیرتان",
+  "account.hide_reblogs": "نهفتن تقویت‌های @{name}",
   "account.last_status": "آخرین فعالیت",
-  "account.link_verified_on": "مالکیت این نشانی در تاریخ {date} بررسی شد",
-  "account.locked_info": "این حساب خصوصی است. صاحب این حساب تصمیم می‌گیرد که چه کسی می‌تواند پیگیرش باشد.",
-  "account.media": "عکس و ویدیو",
-  "account.mention": "نام‌بردن از @{name}",
-  "account.moved_to": "{name} منتقل شده است به:",
-  "account.mute": "بی‌صدا کردن @{name}",
-  "account.mute_notifications": "بی‌صداکردن اعلان‌ها از طرف @{name}",
-  "account.muted": "بی‌صداشده",
+  "account.link_verified_on": "مالکیت این پیوند در {date} بررسی شد",
+  "account.locked_info": "این حساب خصوصی است. صاحبش تصمیم می‌گیرد که چه کسی بتواند پیگیرش باشد.",
+  "account.media": "رسانه",
+  "account.mention": "اشاره به @{name}",
+  "account.moved_to": "{name} منتقل شده به:",
+  "account.mute": "خموشی @{name}",
+  "account.mute_notifications": "خموشی آگاهی‌ها از @{name}",
+  "account.muted": "خموش",
   "account.never_active": "هرگز",
-  "account.posts": "نوشته‌ها",
-  "account.posts_with_replies": "نوشته‌ها و پاسخ‌ها",
+  "account.posts": "بوق‌ها",
+  "account.posts_with_replies": "بوق‌ها و پاسخ‌ها",
   "account.report": "گزارش @{name}",
-  "account.requested": "در انتظار پذیرش",
+  "account.requested": "منتظر پذیرش. کلیک برای لغو درخواست پی‌گیری",
   "account.share": "هم‌رسانی نمایهٔ @{name}",
-  "account.show_reblogs": "نشان‌دادن بازبوق‌های  @{name}",
+  "account.show_reblogs": "نمایش تقویت‌های @{name}",
   "account.unblock": "رفع انسداد @{name}",
-  "account.unblock_domain": "رفع پنهان‌سازی از {domain}",
-  "account.unendorse": "نهفتن از نمایه",
-  "account.unfollow": "پایان پیگیری",
-  "account.unmute": "باصدا کردن @{name}",
-  "account.unmute_notifications": "باصداکردن اعلان‌ها از طرف @{name}",
-  "alert.rate_limited.message": "لطفاً پس از {retry_time, time, medium} دوباره تلاش کنید.",
-  "alert.rate_limited.title": "محدودیت تعداد",
-  "alert.unexpected.message": "خطای پیش‌بینی‌نشده‌ای رخ داد.",
-  "alert.unexpected.title": "ای وای!",
+  "account.unblock_domain": "رفع نهفتن {domain}",
+  "account.unendorse": "معرّفی نکردن در نمایه",
+  "account.unfollow": "ناپی‌گیری",
+  "account.unmute": "رفع خموشی @{name}",
+  "account.unmute_notifications": "رفع خموشی آگاهی‌ها از @{name}",
+  "alert.rate_limited.message": "لطفاً پس از {retry_time, time, medium} دوباره بیازمایید.",
+  "alert.rate_limited.title": "محدود شده",
+  "alert.unexpected.message": "خطایی غیرمنتظره رخ داد.",
+  "alert.unexpected.title": "وای!",
   "autosuggest_hashtag.per_week": "{count} در هفته",
   "boost_modal.combo": "دکمهٔ {combo} را بزنید تا دیگر این را نبینید",
   "bundle_column_error.body": "هنگام بازکردن این بخش خطایی رخ داد.",
   "bundle_column_error.retry": "تلاش دوباره",
   "bundle_column_error.title": "خطای شبکه",
   "bundle_modal_error.close": "بستن",
-  "bundle_modal_error.message": "هنگام بازکردن این بخش خطایی رخ داد.",
+  "bundle_modal_error.message": "هنگام بار کردن این بخش خطایی رخ داد.",
   "bundle_modal_error.retry": "تلاش دوباره",
-  "column.blocks": "کاربران مسدودشده",
-  "column.community": "نوشته‌های محلی",
-  "column.direct": "پیغام‌های خصوصی",
+  "column.blocks": "کاربران مسدود",
+  "column.bookmarks": "نشانک‌ها",
+  "column.community": "خط زمانی محلّی",
+  "column.direct": "پیام‌های خصوصی",
   "column.directory": "مرور نمایه‌ها",
-  "column.domain_blocks": "دامین‌های پنهان‌شده",
-  "column.favourites": "پسندیده‌ها",
+  "column.domain_blocks": "دامنه‌های نهفته",
+  "column.favourites": "برگزیده‌ها",
   "column.follow_requests": "درخواست‌های پیگیری",
   "column.home": "خانه",
   "column.lists": "فهرست‌ها",
-  "column.mutes": "کاربران بی‌صداشده",
-  "column.notifications": "اعلان‌ها",
-  "column.pins": "نوشته‌های ثابت",
-  "column.public": "نوشته‌های همه‌جا",
+  "column.mutes": "کاربران خموش",
+  "column.notifications": "آگاهی‌ها",
+  "column.pins": "بوق‌های سنجاق‌شده",
+  "column.public": "خط‌زمانی عمومی",
   "column_back_button.label": "بازگشت",
   "column_header.hide_settings": "نهفتن تنظیمات",
   "column_header.moveLeft_settings": "انتقال ستون به راست",
   "column_header.moveRight_settings": "انتقال ستون به چپ",
-  "column_header.pin": "ثابت‌کردن",
+  "column_header.pin": "سنجاق",
   "column_header.show_settings": "نمایش تنظیمات",
-  "column_header.unpin": "رهاکردن",
+  "column_header.unpin": "برداشتن سنجاق",
   "column_subheading.settings": "تنظیمات",
-  "community.column_settings.media_only": "فقط عکس و ویدیو",
-  "compose_form.direct_message_warning": "این بوق تنها به کاربرانی که از آن‌ها نام برده شده فرستاده خواهد شد.",
-  "compose_form.direct_message_warning_learn_more": "بیشتر بدانید",
-  "compose_form.hashtag_warning": "از آن‌جا که این بوق فهرست‌نشده است، در نتایج جستجوی هشتگ‌ها پیدا نخواهد شد. تنها بوق‌های عمومی را می‌توان با جستجوی هشتگ پیدا کرد.",
-  "compose_form.lock_disclaimer": "حساب شما {locked} نیست. هر کسی می‌تواند پیگیر شما شود و نوشته‌های ویژهٔ پیگیران شما را ببیند.",
+  "community.column_settings.media_only": "فقط رسانه",
+  "compose_form.direct_message_warning": "این بوق تنها به کاربران اشاره‌شده فرستاده خواهد شد.",
+  "compose_form.direct_message_warning_learn_more": "بیش‌تر بدانید",
+  "compose_form.hashtag_warning": "از آن‌جا که این بوق فهرست‌نشده است، در نتایج جست‌وجوی هشتگ‌ها پیدا نخواهد شد. تنها بوق‌های عمومی را می‌توان با جست‌وجوی هشتگ یافت.",
+  "compose_form.lock_disclaimer": "حسابتان {locked} نیست. هر کسی می‌تواند پیگیرتان شده و فرسته‌های ویژهٔ پیگیرانتان را ببیند.",
   "compose_form.lock_disclaimer.lock": "قفل",
-  "compose_form.placeholder": "تازه چه خبر؟",
+  "compose_form.placeholder": "چی تو سرته؟",
   "compose_form.poll.add_option": "افزودن گزینه",
   "compose_form.poll.duration": "مدت نظرسنجی",
   "compose_form.poll.option_placeholder": "گزینهٔ {number}",
-  "compose_form.poll.remove_option": "حذف این گزینه",
+  "compose_form.poll.remove_option": "برداشتن این گزینه",
+  "compose_form.poll.switch_to_multiple": "Change poll to allow multiple choices",
+  "compose_form.poll.switch_to_single": "Change poll to allow for a single choice",
   "compose_form.publish": "بوق",
   "compose_form.publish_loud": "{publish}!",
-  "compose_form.sensitive.hide": "علامت‌گذاری به عنوان حساس",
-  "compose_form.sensitive.marked": "این تصویر به عنوان حساس علامت‌گذاری شده",
-  "compose_form.sensitive.unmarked": "این تصویر به عنوان حساس علامت‌گذاری نشده",
-  "compose_form.spoiler.marked": "نوشته پشت هشدار محتوا پنهان است",
+  "compose_form.sensitive.hide": "علامت‌گذاری رسانه به عنوان حساس",
+  "compose_form.sensitive.marked": "رسانه به عنوان حساس علامت‌گذاری شده",
+  "compose_form.sensitive.unmarked": "رسانه به عنوان حساس علامت‌گذاری نشده",
+  "compose_form.spoiler.marked": "نوشته پشت هشدار پنهان است",
   "compose_form.spoiler.unmarked": "نوشته پنهان نیست",
-  "compose_form.spoiler_placeholder": "هشدار محتوا",
-  "confirmation_modal.cancel": "بی‌خیال",
-  "confirmations.block.block_and_report": "مسدودسازی و گزارش",
-  "confirmations.block.confirm": "مسدود کن",
-  "confirmations.block.message": "آیا واقعاً می‌خواهید {name} را مسدود کنید؟",
-  "confirmations.delete.confirm": "پاک کن",
-  "confirmations.delete.message": "آیا واقعاً می‌خواهید این نوشته را پاک کنید؟",
-  "confirmations.delete_list.confirm": "پاک کن",
-  "confirmations.delete_list.message": "آیا واقعاً می‌خواهید این فهرست را برای همیشه پاک کنید؟",
-  "confirmations.domain_block.confirm": "پنهان‌سازی کل دامین",
-  "confirmations.domain_block.message": "آیا جدی جدی می‌خواهید کل دامین {domain} را مسدود کنید؟ بیشتر وقت‌ها مسدودکردن یا بی‌صداکردن چند حساب کاربری خاص کافی است و توصیه می‌شود. پس از این کار شما هیچ نوشته‌ای را از این دامین در فهرست نوشته‌های عمومی یا اعلان‌هایتان نخواهید دید. پیگیران شما از این دامین هم حذف خواهد شد.",
+  "compose_form.spoiler_placeholder": "هشدارتان را این‌جا بنویسید",
+  "confirmation_modal.cancel": "لغو",
+  "confirmations.block.block_and_report": "انسداد و گزارش",
+  "confirmations.block.confirm": "انسداد",
+  "confirmations.block.message": "مطمئنید که می‌خواهید {name} را مسدود کنید؟",
+  "confirmations.delete.confirm": "حذف",
+  "confirmations.delete.message": "مطمئنید می‌خواهید این وضعیت را حذف کنید؟",
+  "confirmations.delete_list.confirm": "حذف",
+  "confirmations.delete_list.message": "مطمئنید می‌خواهید این فهرست را برای همیشه پاک کنید؟",
+  "confirmations.domain_block.confirm": "نهفتن تمام دامنه",
+  "confirmations.domain_block.message": "آیا جدی جدی می‌خواهید تمام دامنهٔ {domain} را مسدود کنید؟ در بیش‌تر موارد انسداد یا خموش کردن چند حساب خاص کافی بوده و توصیه می‌شود. پس از این کار شما هیچ نوشته‌ای را از این دامنه در خط‌زمانی‌های عمومی یا آگاهی‌هایتان نخواهید دید. پیگیرانتان از این دامنه هم برداشته خواهند شد.",
   "confirmations.logout.confirm": "خروج",
-  "confirmations.logout.message": "آیا مطمئنید که می‌خواهید خارج شوید؟",
-  "confirmations.mute.confirm": "بی‌صدا کن",
-  "confirmations.mute.explanation": "این کار نوشته‌های آن‌ها و نوشته‌هایی را که از آن‌ها نام برده پنهان می‌کند، ولی آن‌ها همچنان اجازه دارند نوشته‌های شما را ببینند و شما را پی بگیرند.",
-  "confirmations.mute.message": "آیا واقعاً می‌خواهید {name} را بی‌صدا کنید؟",
-  "confirmations.redraft.confirm": "پاک‌کردن و بازنویسی",
-  "confirmations.redraft.message": "آیا واقعاً می‌خواهید این نوشته را پاک کنید و آن را از نو بنویسید؟ با این کار بازبوق‌ها و پسندیده‌شدن‌های آن از دست می‌رود و پاسخ‌ها به آن بی‌مرجع می‌شود.",
+  "confirmations.logout.message": "مطمئنید می‌خواهید خارج شوید؟",
+  "confirmations.mute.confirm": "خموشی",
+  "confirmations.mute.explanation": "این کار فرسته‌هایشان و فرسته‌هایی که به آنان اشاره می‌کند را پنهان می‌کند، ولی همچنان اجازه دارند فرسته‌هایتان را دیده و دنبالتان کنند.",
+  "confirmations.mute.message": "مطمئنید می‌خواهید {name} را خموش کنید؟",
+  "confirmations.redraft.confirm": "حذف و بازنویسی",
+  "confirmations.redraft.message": "مطمئنید می‌خواهید این وضعیت را حذف کرده و از نو بنویسید؟ با این کار تقویت‌ها و برگزیدن‌هایش از دست رفته و پاسخ‌ها به فرستهٔ اصلی یتیم می‌شوند.",
   "confirmations.reply.confirm": "پاسخ",
-  "confirmations.reply.message": "اگر الان پاسخ دهید، چیزی که در حال نوشتنش بودید پاک خواهد شد. آیا همین را می‌خواهید؟",
-  "confirmations.unfollow.confirm": "لغو پیگیری",
-  "confirmations.unfollow.message": "آیا واقعاً می‌خواهید به پیگیری از {name} پایان دهید؟",
-  "conversation.delete": "حذف گفتگو",
+  "confirmations.reply.message": "اگر الان پاسخ دهید، پیامی که در حال نوشتنش بودید پاک خواهد شد. می‌خواهید ادامه دهید؟",
+  "confirmations.unfollow.confirm": "ناپی‌گیری",
+  "confirmations.unfollow.message": "مطمئنید می‌خواهید پیگیری {name} را پایان دهید؟",
+  "conversation.delete": "حذف گفت‌وگو",
   "conversation.mark_as_read": "علامت‌گذاری به عنوان خوانده شده",
-  "conversation.open": "دیدن گفتگو",
+  "conversation.open": "دیدن گفت‌وگو",
   "conversation.with": "با {names}",
-  "directory.federated": "از سرورهای همسایه",
-  "directory.local": "تنها از {domain}",
+  "directory.federated": "از کارسازهای شناخته‌شده",
+  "directory.local": "فقط از {domain}",
   "directory.new_arrivals": "تازه‌واردان",
   "directory.recently_active": "کاربران فعال اخیر",
-  "embed.instructions": "برای جاگذاری این نوشته در سایت خودتان، کد زیر را کپی کنید.",
-  "embed.preview": "نوشتهٔ جاگذاری‌شده این گونه به نظر خواهد رسید:",
+  "embed.instructions": "با رونوشت از کد زیر، این وضعیت را روی پایگاهتان جاگذاری کنید.",
+  "embed.preview": "این گونه دیده خواهد شد:",
   "emoji_button.activity": "فعالیت",
   "emoji_button.custom": "سفارشی",
   "emoji_button.flags": "پرچم‌ها",
   "emoji_button.food": "غذا و نوشیدنی",
-  "emoji_button.label": "افزودن شکلک",
+  "emoji_button.label": "درج اموجی",
   "emoji_button.nature": "طبیعت",
-  "emoji_button.not_found": "این‌جا شکلکی نیست!! (╯°□°)╯︵ ┻━┻",
+  "emoji_button.not_found": "اموجی‌ای وجود ندارد!! ‪ (╯°□°)╯︵ ┻━┻‬",
   "emoji_button.objects": "اشیا",
   "emoji_button.people": "مردم",
-  "emoji_button.recent": "زیاد به‌کاررفته",
-  "emoji_button.search": "جستجو...",
-  "emoji_button.search_results": "نتایج جستجو",
+  "emoji_button.recent": "پراستفاده",
+  "emoji_button.search": "جست‌وجو…",
+  "emoji_button.search_results": "نتایج جست‌وجو",
   "emoji_button.symbols": "نمادها",
   "emoji_button.travel": "سفر و مکان",
   "empty_column.account_timeline": "هیچ بوقی این‌جا نیست!",
   "empty_column.account_unavailable": "نمایهٔ ناموجود",
   "empty_column.blocks": "شما هنوز هیچ کسی را مسدود نکرده‌اید.",
+  "empty_column.bookmarked_statuses": "هنوز هیچ بوق نشان‌شده‌ای ندارید. وقتی بوقی را نشان‌کنید، این‌جا دیده خواهد شد.",
   "empty_column.community": "فهرست نوشته‌های محلی خالی است. چیزی بنویسید تا چرخش بچرخد!",
   "empty_column.direct": "شما هیچ پیغام مستقیمی ندارید. اگر چنین پیغامی بگیرید یا بفرستید این‌جا نمایش خواهد یافت.",
   "empty_column.domain_blocks": "هنوز هیچ دامینی پنهان نشده است.",
@@ -165,12 +170,12 @@
   "follow_request.reject": "اجازه ندهید",
   "getting_started.developers": "برای برنامه‌نویسان",
   "getting_started.directory": "فهرست گزیدهٔ کاربران",
-  "getting_started.documentation": "راهنما",
+  "getting_started.documentation": "مستندات",
   "getting_started.heading": "آغاز کنید",
-  "getting_started.invite": "دعوت از دوستان",
-  "getting_started.open_source_notice": "ماستدون یک نرم‌افزار آزاد است. می‌توانید در ساخت آن مشارکت کنید یا مشکلاتش را در {github} گزارش دهید.",
-  "getting_started.security": "امنیت",
-  "getting_started.terms": "شرایط استفاده",
+  "getting_started.invite": "دعوت از دیگران",
+  "getting_started.open_source_notice": "ماستودون نرم‌افزاری آزاد است. می‌توانید روی {github} در آن مشارکت کرده یا مشکلاتش را گزارش دهید.",
+  "getting_started.security": "تنظیمات حساب",
+  "getting_started.terms": "شرایط خدمات",
   "hashtag.column_header.tag_mode.all": "Ùˆ {additional}",
   "hashtag.column_header.tag_mode.any": "یا {additional}",
   "hashtag.column_header.tag_mode.none": "بدون {additional}",
@@ -179,182 +184,188 @@
   "hashtag.column_settings.tag_mode.all": "همهٔ این‌ها",
   "hashtag.column_settings.tag_mode.any": "هرکدام از این‌ها",
   "hashtag.column_settings.tag_mode.none": "هیچ‌کدام از این‌ها",
-  "hashtag.column_settings.tag_toggle": "برچسب‌های بیشتری به این ستون بیفزایید",
-  "home.column_settings.basic": "اصلی",
-  "home.column_settings.show_reblogs": "نمایش بازبوق‌ها",
+  "hashtag.column_settings.tag_toggle": "افزودن برچسب‌هایی بیشتر به این ستون",
+  "home.column_settings.basic": "پایه‌ای",
+  "home.column_settings.show_reblogs": "نمایش تقویت‌ها",
   "home.column_settings.show_replies": "نمایش پاسخ‌ها",
   "intervals.full.days": "{number, plural, one {# روز} other {# روز}}",
   "intervals.full.hours": "{number, plural, one {# ساعت} other {# ساعت}}",
   "intervals.full.minutes": "{number, plural, one {# دقیقه} other {# دقیقه}}",
   "introduction.federation.action": "بعدی",
-  "introduction.federation.federated.headline": "فهرست همهٔ سرورها",
-  "introduction.federation.federated.text": "نوشته‌های عمومی سرورهای دیگر در این فهرست نمایش می‌یابند.",
+  "introduction.federation.federated.headline": "همگانی",
+  "introduction.federation.federated.text": "نوشته‌های عمومی دیگر کارسازها در خط‌زمانی همگانی طاهر خواهند شد.",
   "introduction.federation.home.headline": "خانه",
-  "introduction.federation.home.text": "نوشته‌های کسانی که شما آن‌ها را پی می‌گیرید این‌جا نمایش می‌یابند. شما می‌توانید هر کسی را از هر سروری پی بگیرید!",
-  "introduction.federation.local.headline": "محلی",
-  "introduction.federation.local.text": "نوشته‌های عمومی کسانی که روی سرور شما هستند در فهرست نوشته‌های محلی نمایش می‌یابند.",
+  "introduction.federation.home.text": "فرسته‌ها از افرادی که دنبالشان می‌کنید در خوراک خانه‌تان ظاهر خواهند شد. می‌توانید هر کسی را روی هر کارسازی پی‌بگیرید!",
+  "introduction.federation.local.headline": "محلّی",
+  "introduction.federation.local.text": "نوشته‌های عمومی افرادی که روی همان کارساز خودتان هستند در خط زمانی محلّی ظاهر خواهند شد.",
   "introduction.interactions.action": "پایان خودآموز!",
-  "introduction.interactions.favourite.headline": "پسندیدن",
-  "introduction.interactions.favourite.text": "با پسندیدن یک بوق، شما آن را برای آینده ذخیره می‌کنید و به نویسنده می‌گویید که از بوقش خوشتان آمده.",
-  "introduction.interactions.reblog.headline": "بازبوقیدن",
-  "introduction.interactions.reblog.text": "اگر بخواهید نوشته‌ای را با پیگیران خودتان به اشتراک بگذارید، آن را بازمی‌بوقید.",
+  "introduction.interactions.favourite.headline": "برگزیدن",
+  "introduction.interactions.favourite.text": "می‌توانید بوقی را برای بعد ذخیره کنید و با برگزیدنش، بگذارید نویسنده بداند که پسندیدیش.",
+  "introduction.interactions.reblog.headline": "تقویت",
+  "introduction.interactions.reblog.text": "با تقویت بوق‌های دیگران، می‌توانید آن‌ها را با پی‌گیرانتان هم‌رسانی کنید.",
   "introduction.interactions.reply.headline": "پاسخ",
-  "introduction.interactions.reply.text": "شما می‌توانید به بوق‌های خودتان و دیگران پاسخ دهید، تا همهٔ این بوق‌ها به شکل رشتهٔ به‌هم‌پیوسته‌ای در یک گفتگو درآیند.",
+  "introduction.interactions.reply.text": "می‌توانید به بوق‌های خودتان و دیگران پاسخ دهید، تا در یک گفت‌وگو به هم زنجیر شوند.",
   "introduction.welcome.action": "بزن بریم!",
   "introduction.welcome.headline": "نخستین گام‌ها",
-  "introduction.welcome.text": "به دنیای شبکه‌های اجتماعی غیرمتمرکز خوش آمدید! به زودی می‌توانید نوشته‌های خودتان را منتشر کنید و با دوستانتان که روی سرورهای مختلفی هستند حرف بزنید. ولی این سرور، {domain}، با بقیه فرق دارد زیرا حساب شما روی آن ساخته شده است، پس نامش را یادتان نگه دارید.",
+  "introduction.welcome.text": "به دنیای شبکه‌های اجتماعی غیرمتمرکز خوش آمدید! به زودی می‌توانید نوشته‌هایتان را منتشر کرده و با دوستانتان روی دامنهٔ وسیعی از کارسازها حرف بزنید. ولی این کارساز، {domain}، با بقیه فرق دارد، چرا که میزبان نمایهٔ شماست، پس نامش را به خاطر بسپارید.",
   "keyboard_shortcuts.back": "برای بازگشت",
-  "keyboard_shortcuts.blocked": "برای گشودن کاربران بی‌صداشده",
-  "keyboard_shortcuts.boost": "برای بازبوقیدن",
-  "keyboard_shortcuts.column": "برای برجسته‌کردن یک نوشته در یکی از ستون‌ها",
-  "keyboard_shortcuts.compose": "برای فعال‌کردن کادر نوشتهٔ تازه",
+  "keyboard_shortcuts.blocked": "برای گشودن فهرست کاربران خموش",
+  "keyboard_shortcuts.boost": "برای تقویت",
+  "keyboard_shortcuts.column": "برای تمرکز روی وضعیتی در یکی از ستون‌ها",
+  "keyboard_shortcuts.compose": "برای تمرکز روی محیط نوشتن",
   "keyboard_shortcuts.description": "توضیح",
-  "keyboard_shortcuts.direct": "برای گشودن ستون پیغام‌های مستقیم",
-  "keyboard_shortcuts.down": "برای پایین‌رفتن در فهرست",
-  "keyboard_shortcuts.enter": "برای گشودن نوشته",
-  "keyboard_shortcuts.favourite": "برای پسندیدن",
-  "keyboard_shortcuts.favourites": "برای گشودن پیغام‌های پسندیده‌شده",
-  "keyboard_shortcuts.federated": "برای گشودن فهرست نوشته‌های همه‌جا",
+  "keyboard_shortcuts.direct": "برای گشودن ستون پیام‌های خصوصی",
+  "keyboard_shortcuts.down": "برای پایین رفتن در فهرست",
+  "keyboard_shortcuts.enter": "برای گشودن وضعیت",
+  "keyboard_shortcuts.favourite": "برای برگزیدن",
+  "keyboard_shortcuts.favourites": "برای گشودن فهرست برگزیده‌ها",
+  "keyboard_shortcuts.federated": "برای گشودن خط‌زمانی همگانی",
   "keyboard_shortcuts.heading": "میان‌برهای صفحه‌کلید",
-  "keyboard_shortcuts.home": "برای گشودن ستون اصلی پیگیری‌ها",
+  "keyboard_shortcuts.home": "برای گشودن خط‌زمانی خانه",
   "keyboard_shortcuts.hotkey": "میان‌بر",
   "keyboard_shortcuts.legend": "برای نمایش این راهنما",
-  "keyboard_shortcuts.local": "برای گشودن فهرست نوشته‌های محلی",
-  "keyboard_shortcuts.mention": "برای نام‌بردن از نویسنده",
-  "keyboard_shortcuts.muted": "برای گشودن فهرست کاربران بی‌صداشده",
-  "keyboard_shortcuts.my_profile": "برای گشودن صفحهٔ نمایهٔ شما",
-  "keyboard_shortcuts.notifications": "برای گشودن ستون اعلان‌ها",
-  "keyboard_shortcuts.pinned": "برای گشودن فهرست نوشته‌‌های ثابت",
-  "keyboard_shortcuts.profile": "گشودن نمایهٔ نویسنده",
-  "keyboard_shortcuts.reply": "برای پاسخ‌دادن",
+  "keyboard_shortcuts.local": "برای گشودن خط‌زمانی محلّی",
+  "keyboard_shortcuts.mention": "برای اشاره به نویسنده",
+  "keyboard_shortcuts.muted": "برای گشودن فهرست کاربران خموش",
+  "keyboard_shortcuts.my_profile": "برای گشودن نمایه‌تان",
+  "keyboard_shortcuts.notifications": "برای گشودن ستون آگاهی‌ها",
+  "keyboard_shortcuts.open_media": "برای باز کردن رسانه",
+  "keyboard_shortcuts.pinned": "برای گشودن فهرست بوق‌های سنجاق‌شده",
+  "keyboard_shortcuts.profile": "برای گشودن نمایهٔ نویسنده",
+  "keyboard_shortcuts.reply": "برای پاسخ",
   "keyboard_shortcuts.requests": "برای گشودن فهرست درخواست‌های پیگیری",
-  "keyboard_shortcuts.search": "برای فعال‌کردن جستجو",
+  "keyboard_shortcuts.search": "برای تمرکز روی جست‌وجو",
   "keyboard_shortcuts.start": "برای گشودن ستون «آغاز کنید»",
   "keyboard_shortcuts.toggle_hidden": "برای نمایش/نهفتن نوشتهٔ پشت هشدار محتوا",
-  "keyboard_shortcuts.toggle_sensitivity": "برای نمایش/نهفتن عکس و ویدیو",
+  "keyboard_shortcuts.toggle_sensitivity": "برای نمایش/نهفتن رسانه",
   "keyboard_shortcuts.toot": "برای آغاز یک بوق تازه",
-  "keyboard_shortcuts.unfocus": "برای برداشتن توجه از نوشتن/جستجو",
+  "keyboard_shortcuts.unfocus": "برای برداشتن تمرکز از نوشتن/جست‌وجو",
   "keyboard_shortcuts.up": "برای بالا رفتن در فهرست",
   "lightbox.close": "بستن",
   "lightbox.next": "بعدی",
-  "lightbox.previous": "قبلی",
-  "lightbox.view_context": "نمایش گفتگو",
+  "lightbox.previous": "پیشین",
+  "lightbox.view_context": "نمایش متن",
   "lists.account.add": "افزودن به فهرست",
-  "lists.account.remove": "پاک‌کردن از فهرست",
+  "lists.account.remove": "برداشتن از فهرست",
   "lists.delete": "حذف فهرست",
   "lists.edit": "ویرایش فهرست",
   "lists.edit.submit": "تغییر عنوان",
   "lists.new.create": "افزودن فهرست",
-  "lists.new.title_placeholder": "نام فهرست تازه",
-  "lists.search": "بین کسانی که پی می‌گیرید بگردید",
-  "lists.subheading": "فهرست‌های شما",
+  "lists.new.title_placeholder": "عنوان فهرست تازه",
+  "lists.search": "جست‌وجو بین افرادی که پی می‌گیرید",
+  "lists.subheading": "فهرست‌هایتان",
   "load_pending": "{count, plural, one {# مورد تازه} other {# مورد تازه}}",
-  "loading_indicator.label": "بارگیری...",
-  "media_gallery.toggle_visible": "تغییر پیدایی",
+  "loading_indicator.label": "در حال بار کردن…",
+  "media_gallery.toggle_visible": "تغییر وضعیت نمایانی",
   "missing_indicator.label": "پیدا نشد",
   "missing_indicator.sublabel": "این منبع پیدا نشد",
-  "mute_modal.hide_notifications": "اعلان‌های این کاربر پنهان شود؟",
-  "navigation_bar.apps": "اپ‌های موبایل",
-  "navigation_bar.blocks": "کاربران مسدودشده",
-  "navigation_bar.community_timeline": "نوشته‌های محلی",
+  "mute_modal.hide_notifications": "نهفتن آگاهی‌ها از این کاربر؟",
+  "navigation_bar.apps": "کاره‌های همراه",
+  "navigation_bar.blocks": "کاربران مسدود",
+  "navigation_bar.bookmarks": "نشانک‌ها",
+  "navigation_bar.community_timeline": "خط‌زمانی محلّی",
   "navigation_bar.compose": "نوشتن بوق تازه",
-  "navigation_bar.direct": "پیغام‌های مستقیم",
-  "navigation_bar.discover": "گشت و گذار",
-  "navigation_bar.domain_blocks": "دامین‌های پنهان‌شده",
+  "navigation_bar.direct": "پیام‌های خصوصی",
+  "navigation_bar.discover": "کشف",
+  "navigation_bar.domain_blocks": "دامنه‌های نهفته",
   "navigation_bar.edit_profile": "ویرایش نمایه",
-  "navigation_bar.favourites": "پسندیده‌ها",
-  "navigation_bar.filters": "واژگان بی‌صداشده",
+  "navigation_bar.favourites": "برگزیده‌ها",
+  "navigation_bar.filters": "واژگان خموش",
   "navigation_bar.follow_requests": "درخواست‌های پیگیری",
-  "navigation_bar.follows_and_followers": "پیگیری‌ها و پیگیران",
-  "navigation_bar.info": "دربارهٔ این سرور",
-  "navigation_bar.keyboard_shortcuts": "میان‌برهای صفحه‌کلید",
+  "navigation_bar.follows_and_followers": "پی‌گیری‌ها و پی‌گیران",
+  "navigation_bar.info": "دربارهٔ این کارساز",
+  "navigation_bar.keyboard_shortcuts": "میان‌برها",
   "navigation_bar.lists": "فهرست‌ها",
   "navigation_bar.logout": "خروج",
-  "navigation_bar.mutes": "کاربران بی‌صداشده",
+  "navigation_bar.mutes": "کاربران خموش",
   "navigation_bar.personal": "شخصی",
-  "navigation_bar.pins": "نوشته‌های ثابت",
+  "navigation_bar.pins": "بوق‌های سنجاق‌شده",
   "navigation_bar.preferences": "ترجیحات",
-  "navigation_bar.public_timeline": "نوشته‌های همه‌جا",
+  "navigation_bar.public_timeline": "خط‌زمانی همگانی",
   "navigation_bar.security": "امنیت",
-  "notification.favourite": "‫{name}‬ نوشتهٔ شما را پسندید",
-  "notification.follow": "‫{name}‬ پیگیر شما شد",
-  "notification.mention": "‫{name}‬ از شما نام برد",
-  "notification.poll": "نظرسنجی‌ای که در آن رأی دادید به پایان رسیده است",
-  "notification.reblog": "‫{name}‬ نوشتهٔ شما را بازبوقید",
-  "notifications.clear": "پاک‌کردن اعلان‌ها",
-  "notifications.clear_confirmation": "واقعاً می‌خواهید همهٔ اعلان‌هایتان را برای همیشه پاک کنید؟",
-  "notifications.column_settings.alert": "اعلان در کامپیوتر",
-  "notifications.column_settings.favourite": "پسندیده‌ها:",
-  "notifications.column_settings.filter_bar.advanced": "نمایش همهٔ گروه‌ها",
-  "notifications.column_settings.filter_bar.category": "فیلتر سریع",
+  "notification.favourite": "‫{name}‬ وضعیتتان را برگزید",
+  "notification.follow": "‫{name}‬ پی‌گیرتان شد",
+  "notification.follow_request": "{name} درخواست پی‌گیریتان را داده است",
+  "notification.mention": "‫{name}‬ به شما اشاره کرد",
+  "notification.own_poll": "نظرسنجیتان پایان یافت",
+  "notification.poll": "نظرسنجی‌ای که در آن رأی دادید پایان یافته است",
+  "notification.reblog": "‫{name}‬ وضعیتتان را تقویت کرد",
+  "notifications.clear": "پاک‌سازی آگاهی‌ها",
+  "notifications.clear_confirmation": "مطمئنید می‌خواهید تمام آگاهی‌هایتان را برای همیشه پاک کنید؟",
+  "notifications.column_settings.alert": "آگاهی‌های میزکار",
+  "notifications.column_settings.favourite": "برگزیده‌ها:",
+  "notifications.column_settings.filter_bar.advanced": "نمایش تمام دسته‌ها",
+  "notifications.column_settings.filter_bar.category": "نوار پالایش سریع",
   "notifications.column_settings.filter_bar.show": "نمایش",
-  "notifications.column_settings.follow": "پیگیران تازه:",
-  "notifications.column_settings.mention": "نام‌بردن‌ها:",
+  "notifications.column_settings.follow": "پی‌گیران تازه:",
+  "notifications.column_settings.follow_request": "درخواست‌های جدید پی‌گیری:",
+  "notifications.column_settings.mention": "اشاره‌ها:",
   "notifications.column_settings.poll": "نتایج نظرسنجی:",
-  "notifications.column_settings.push": "اعلان‌ها از سمت سرور",
-  "notifications.column_settings.reblog": "بازبوق‌ها:",
+  "notifications.column_settings.push": "ارسال آگاهی‌ها",
+  "notifications.column_settings.reblog": "تقویت‌ها:",
   "notifications.column_settings.show": "نمایش در ستون",
   "notifications.column_settings.sound": "پخش صدا",
   "notifications.filter.all": "همه",
-  "notifications.filter.boosts": "بازبوق‌ها",
-  "notifications.filter.favourites": "پسندیده‌ها",
-  "notifications.filter.follows": "پیگیری‌ها",
-  "notifications.filter.mentions": "گفتگوها",
+  "notifications.filter.boosts": "تقویت‌ها",
+  "notifications.filter.favourites": "برگزیده‌ها",
+  "notifications.filter.follows": "پی‌گیری‌ها",
+  "notifications.filter.mentions": "اشاره‌ها",
   "notifications.filter.polls": "نتایج نظرسنجی",
-  "notifications.group": "{count} اعلان",
-  "poll.closed": "پایان‌یافته",
-  "poll.refresh": "به‌روزرسانی",
+  "notifications.group": "{count} آگاهی",
+  "poll.closed": "بسته‌شده",
+  "poll.refresh": "نوسازی",
   "poll.total_people": "{count, plural, one {# نفر} other {# نفر}}",
   "poll.total_votes": "{count, plural, one {# رأی} other {# رأی}}",
   "poll.vote": "رأی",
-  "poll.voted": "شما به این گزینه رأی دادید",
+  "poll.voted": "به این پاسخ رأی دادید",
   "poll_button.add_poll": "افزودن نظرسنجی",
-  "poll_button.remove_poll": "حذف نظرسنجی",
-  "privacy.change": "تنظیم حریم خصوصی نوشته‌ها",
-  "privacy.direct.long": "تنها به کاربران نام‌برده‌شده نشان بده",
-  "privacy.direct.short": "مستقیم",
-  "privacy.private.long": "تنها به پیگیران نشان بده",
-  "privacy.private.short": "خصوصی",
-  "privacy.public.long": "نمایش در فهرست عمومی",
+  "poll_button.remove_poll": "برداشتن نظرسنجی",
+  "privacy.change": "تنظیم محرمانگی وضعیت‌ها",
+  "privacy.direct.long": "ارسال فقط به کاربران اشاره‌شده",
+  "privacy.direct.short": "خصوصی",
+  "privacy.private.long": "ارسال فقط به پی‌گیران",
+  "privacy.private.short": "فقط پی‌گیران",
+  "privacy.public.long": "ارسال به خط‌زمانی عمومی",
   "privacy.public.short": "عمومی",
-  "privacy.unlisted.long": "عمومی، ولی فهرست نکن",
+  "privacy.unlisted.long": "ارسال نکردن به خط‌زمانی عمومی",
   "privacy.unlisted.short": "فهرست‌نشده",
-  "refresh": "به‌روزرسانی",
-  "regeneration_indicator.label": "در حال باز شدن…",
-  "regeneration_indicator.sublabel": "این فهرست دارد آماده می‌شود!",
+  "refresh": "نوسازی",
+  "regeneration_indicator.label": "در حال بار کردن…",
+  "regeneration_indicator.sublabel": "خوراک خانه‌تان در حال آماده شدن است!",
   "relative_time.days": "{number} روز",
   "relative_time.hours": "{number} ساعت",
-  "relative_time.just_now": "الان",
+  "relative_time.just_now": "اکنون",
   "relative_time.minutes": "{number} دقیقه",
   "relative_time.seconds": "{number} ثانیه",
   "reply_indicator.cancel": "لغو",
-  "report.forward": "فرستادن به {target}",
-  "report.forward_hint": "این حساب در سرور دیگری ثبت شده. آیا می‌خواهید رونوشتی از این گزارش به طور ناشناس به آن‌جا هم فرستاده شود؟",
-  "report.hint": "این گزارش به مدیران سرور شما فرستاده خواهد شد. می‌توانید دلیل گزارش‌دادن این حساب را در این‌جا بنویسید:",
+  "report.forward": "هدایت به {target}",
+  "report.forward_hint": "این حساب از کارسازی دیگر است. رونوشتی ناشناس از گزارش به آن‌جا نیز فرستاده شود؟",
+  "report.hint": "این گزارش به مدیران کارسازتان فرستاده خواهد شد. می‌توانید دلیلی بر چرایی گزارش این حساب را در ادامه بنویسید:",
   "report.placeholder": "توضیح اضافه",
-  "report.submit": "بفرست",
-  "report.target": "گزارش‌دادن",
-  "search.placeholder": "جستجو",
-  "search_popout.search_format": "راهنمای جستجوی پیشرفته",
-  "search_popout.tips.full_text": "جستجوی متنی ساده می‌تواند بوق‌هایی که شما نوشته‌اید، پسندیده‌اید، بازبوقیده‌اید، یا در آن‌ها از شما نام برده شده است را پیدا کند. همچنین نام‌های کاربری، نام نمایش‌یافته، و هشتگ‌ها را هم شامل می‌شود.",
+  "report.submit": "ثبت",
+  "report.target": "در حال گزارش {target}",
+  "search.placeholder": "جست‌وجو",
+  "search_popout.search_format": "قالب جست‌وجوی پیشرفته",
+  "search_popout.tips.full_text": "جست‌وجوی متنی ساده وضعیت‌هایی که که نوشته، برگزیده، تقویت‌کرده یا در آن‌ها اشاره‌شده‌اید را به اضافهٔ نام‌های کاربری، نام‌های نمایشی و برچسب‌های مطابق برمی‌گرداند.",
   "search_popout.tips.hashtag": "برچسب",
-  "search_popout.tips.status": "نوشته",
-  "search_popout.tips.text": "جستجوی متنی ساده برای نام‌ها، نام‌های کاربری، و برچسب‌ها",
+  "search_popout.tips.status": "وضعیت",
+  "search_popout.tips.text": "جست‌وجوی متنی ساده، نام‌های نمایشی، نام‌های کاربری، و برچسب‌ها را برمی‌گرداند",
   "search_popout.tips.user": "کاربر",
   "search_results.accounts": "افراد",
   "search_results.hashtags": "برچسب‌ها",
   "search_results.statuses": "بوق‌ها",
-  "search_results.statuses_fts_disabled": "جستجوی محتوای بوق‌ها در این سرور ماستدون ممکن نیست.",
+  "search_results.statuses_fts_disabled": "جست‌وجوی بوق‌ها بر اساس محتوایشان روی این کارساز ماستودون به کار نیفتاده است.",
   "search_results.total": "{count, number} {count, plural, one {نتیجه} other {نتیجه}}",
-  "status.admin_account": "محیط مدیریت مربوط به @{name} را باز کن",
-  "status.admin_status": "این نوشته را در محیط مدیریت باز کن",
-  "status.block": "مسدودسازی @{name}",
-  "status.cancel_reblog_private": "حذف بازبوق",
-  "status.cannot_reblog": "این نوشته را نمی‌شود بازبوقید",
-  "status.copy": "رونوشت‌برداری از نشانی این نوشته",
-  "status.delete": "پاک‌کردن",
-  "status.detailed_status": "نمایش کامل گفتگو",
-  "status.direct": "پیغام مستقیم به @{name}",
+  "status.admin_account": "گشودن واسط مدیریت برای @{name}",
+  "status.admin_status": "گشودن این وضعیت در واسط مدیریت",
+  "status.block": "انسداد @{name}",
+  "status.bookmark": "نشانک",
+  "status.cancel_reblog_private": "ناتقویت",
+  "status.cannot_reblog": "این نوشته نمی‌تواند تقویت شود",
+  "status.copy": "رونوشت از پیوند به وضعیت",
+  "status.delete": "حذف",
+  "status.detailed_status": "نمای گفت‌وگوی باجزییات",
+  "status.direct": "پیام خصوصی به @{name}",
   "status.embed": "جاگذاری",
   "status.favourite": "پسندیدن",
   "status.filtered": "فیلترشده",
@@ -363,67 +374,71 @@
   "status.media_hidden": "تصویر پنهان شده",
   "status.mention": "نام‌بردن از @{name}",
   "status.more": "بیشتر",
-  "status.mute": "بی‌صدا کردن @{name}",
-  "status.mute_conversation": "بی‌صداکردن گفتگو",
-  "status.open": "این نوشته را باز کن",
-  "status.pin": "نوشتهٔ ثابت نمایه",
-  "status.pinned": "بوق ثابت",
+  "status.mute": "خموشی @{name}",
+  "status.mute_conversation": "خموشی گفت‌وگو",
+  "status.open": "گسترش این وضعیت",
+  "status.pin": "سنجاق به نمایه",
+  "status.pinned": "بوق سنجاق‌شده",
   "status.read_more": "بیشتر بخوانید",
-  "status.reblog": "بازبوقیدن",
-  "status.reblog_private": "بازبوق به مخاطبان اولیه",
-  "status.reblogged_by": "‫{name}‬ بازبوقید",
-  "status.reblogs.empty": "هنوز هیچ کسی این بوق را بازنبوقیده است. وقتی کسی چنین کاری کند، این‌جا نمایش خواهد یافت.",
-  "status.redraft": "پاک‌کردن و بازنویسی",
+  "status.reblog": "تقویت",
+  "status.reblog_private": "تقویت برای مخاطبان نخستین",
+  "status.reblogged_by": "‫{name}‬ تقویت کرد",
+  "status.reblogs.empty": "هنوز کسی این بوق را تقویت نکرده است. وقتی کسی چنین کاری کند، این‌جا دیده خواهد شد.",
+  "status.redraft": "حذف و بازنویسی",
+  "status.remove_bookmark": "برداشتن نشانک",
   "status.reply": "پاسخ",
-  "status.replyAll": "به نوشته پاسخ دهید",
-  "status.report": "گزارش دادن @{name}",
+  "status.replyAll": "پاسخ به رشته",
+  "status.report": "گزارش @{name}",
   "status.sensitive_warning": "محتوای حساس",
   "status.share": "هم‌رسانی",
-  "status.show_less": "نهفتن",
-  "status.show_less_all": "نمایش کمتر همه",
-  "status.show_more": "نمایش",
-  "status.show_more_all": "نمایش بیشتر همه",
-  "status.show_thread": "نمایش گفتگو",
+  "status.show_less": "نمایش کمتر",
+  "status.show_less_all": "نمایش کمتر برای همه",
+  "status.show_more": "نمایش بیشتر",
+  "status.show_more_all": "نمایش بیشتر برای همه",
+  "status.show_thread": "نمایش رشته",
   "status.uncached_media_warning": "ناموجود",
-  "status.unmute_conversation": "باصداکردن گفتگو",
-  "status.unpin": "برداشتن نوشتهٔ ثابت نمایه",
-  "suggestions.dismiss": "پیشنهاد را نادیده بگیر",
+  "status.unmute_conversation": "رفع خموشی گفت‌وگو",
+  "status.unpin": "برداشتن سنجاق از نمایه",
+  "suggestions.dismiss": "نادیده گرفتن پیشنهاد",
   "suggestions.header": "شاید این هم برایتان جالب باشد…",
   "tabs_bar.federated_timeline": "همگانی",
   "tabs_bar.home": "خانه",
-  "tabs_bar.local_timeline": "محلی",
-  "tabs_bar.notifications": "اعلان‌ها",
-  "tabs_bar.search": "جستجو",
+  "tabs_bar.local_timeline": "محلّی",
+  "tabs_bar.notifications": "آگاهی‌ها",
+  "tabs_bar.search": "جست‌وجو",
   "time_remaining.days": "{number, plural, one {# روز} other {# روز}} باقی مانده",
   "time_remaining.hours": "{number, plural, one {# ساعت} other {# ساعت}} باقی مانده",
   "time_remaining.minutes": "{number, plural, one {# دقیقه} other {# دقیقه}} باقی مانده",
-  "time_remaining.moments": "زمان باقی‌مانده",
+  "time_remaining.moments": "لحظاتی باقی‌مانده",
   "time_remaining.seconds": "{number, plural, one {# ثانیه} other {# ثانیه}} باقی مانده",
   "trends.count_by_accounts": "{count} {rawCount, plural, one {نفر نوشته است} other {نفر نوشته‌اند}}",
   "trends.trending_now": "پرطرفدار",
-  "ui.beforeunload": "اگر از ماستدون خارج شوید پیش‌نویس شما پاک خواهد شد.",
+  "ui.beforeunload": "در صورت خروج از از ماستودون، پیش‌نویستان از دست خواهد رفت.",
   "upload_area.title": "برای بارگذاری به این‌جا بکشید",
-  "upload_button.label": "افزودن عکس و ویدیو (JPEG, PNG, GIF, WebM, MP4, MOV)",
-  "upload_error.limit": "از حد مجاز باگذاری فراتر رفتید.",
-  "upload_error.poll": "باگذاری پرونده در نظرسنجی‌ها ممکن نیست.",
-  "upload_form.description": "نوشتهٔ توضیحی برای کم‌بینایان و نابینایان",
+  "upload_button.label": "افزودن رسانه ({formats})",
+  "upload_error.limit": "تجاوز از کران بارگذاری پرونده.",
+  "upload_error.poll": "بارگذاری پرونده در نظرسنجی‌ها مجاز نیست.",
+  "upload_form.audio_description": "توصیف برای افراد فاقد شنوایی",
+  "upload_form.description": "توضیح برای کم‌بینایان",
   "upload_form.edit": "ویرایش",
   "upload_form.undo": "حذف",
+  "upload_form.video_description": "توصیف برای افراد با اختلال دید یا فاقد شنوایی",
   "upload_modal.analyzing_picture": "در حال پردازش تصویر…",
-  "upload_modal.apply": "اجرا",
-  "upload_modal.description_placeholder": "مردی با بیل مادرزنش را کشت",
-  "upload_modal.detect_text": "پیدا کردن نوشته از درون تصویر",
-  "upload_modal.edit_media": "ویرایش تصویر",
-  "upload_modal.hint": "حتی اگر تصویر بریده یا کوچک شود، نقطهٔ کانونی آن همیشه دیده خواهد شد. نقطهٔ کانونی را با کلیک یا جابه‌جا کردن آن تنظیم کنید.",
+  "upload_modal.apply": "اعمال",
+  "upload_modal.description_placeholder": "الا یا ایّها الساقی، ادر کأساً و ناولها",
+  "upload_modal.detect_text": "تشخیص متن درون عکس",
+  "upload_modal.edit_media": "ویرایش رسانه",
+  "upload_modal.hint": "دایره را روی پیش‌نمایش کشیده یا کلیک کنید تا نقطهٔ کانونی‌ای که همواره باید در تمام بندانگشتی‌ها داخل نما باشد را برگزینید.",
   "upload_modal.preview_label": "پیش‌نمایش ({ratio})",
-  "upload_progress.label": "بارگذاری...",
+  "upload_progress.label": "در حال بارگذاری…",
   "video.close": "بستن ویدیو",
-  "video.exit_fullscreen": "خروج از حالت تمام صفحه",
-  "video.expand": "بزرگ‌کردن ویدیو",
-  "video.fullscreen": "تمام صفحه",
+  "video.download": "بارگیری پرونده",
+  "video.exit_fullscreen": "خروج از حالت تمام‌صفحه",
+  "video.expand": "گسترش ویدیو",
+  "video.fullscreen": "تمام‌صفحه",
   "video.hide": "نهفتن ویدیو",
-  "video.mute": "قطع صدا",
-  "video.pause": "توقف",
+  "video.mute": "خموشی صدا",
+  "video.pause": "Ù…Ú©Ø«",
   "video.play": "پخش",
-  "video.unmute": "پخش صدا"
+  "video.unmute": "رفع خموشی صدا"
 }
diff --git a/app/javascript/mastodon/locales/fi.json b/app/javascript/mastodon/locales/fi.json
index ca96d298abd397120eba70b66d541d13ba470ef2..9bc47f90ca0c6c938da3c8754f3c2da13ce4575d 100644
--- a/app/javascript/mastodon/locales/fi.json
+++ b/app/javascript/mastodon/locales/fi.json
@@ -1,13 +1,14 @@
 {
   "account.add_or_remove_from_list": "Lisää tai poista listoilta",
   "account.badges.bot": "Botti",
+  "account.badges.group": "Group",
   "account.block": "Estä @{name}",
   "account.block_domain": "Piilota kaikki sisältö verkkotunnuksesta {domain}",
   "account.blocked": "Estetty",
   "account.cancel_follow_request": "Peruuta seurauspyyntö",
   "account.direct": "Viesti käyttäjälle @{name}",
   "account.domain_blocked": "Verkko-osoite piilotettu",
-  "account.edit_profile": "Muokkaa",
+  "account.edit_profile": "Muokkaa profiilia",
   "account.endorse": "Suosittele profiilissasi",
   "account.follow": "Seuraa",
   "account.followers": "Seuraajaa",
@@ -39,7 +40,7 @@
   "account.unmute": "Poista käyttäjän @{name} mykistys",
   "account.unmute_notifications": "Poista mykistys käyttäjän @{name} ilmoituksilta",
   "alert.rate_limited.message": "Yritä uudestaan {retry_time, time, medium} jälkeen.",
-  "alert.rate_limited.title": "Rate limited",
+  "alert.rate_limited.title": "Määrää rajoitettu",
   "alert.unexpected.message": "Tapahtui odottamaton virhe.",
   "alert.unexpected.title": "Hups!",
   "autosuggest_hashtag.per_week": "{count} viikossa",
@@ -51,6 +52,7 @@
   "bundle_modal_error.message": "Jokin meni vikaan komponenttia ladattaessa.",
   "bundle_modal_error.retry": "Yritä uudestaan",
   "column.blocks": "Estetyt käyttäjät",
+  "column.bookmarks": "Kirjanmerkit",
   "column.community": "Paikallinen aikajana",
   "column.direct": "Viestit",
   "column.directory": "Selaa profiileja",
@@ -82,6 +84,8 @@
   "compose_form.poll.duration": "Äänestyksen kesto",
   "compose_form.poll.option_placeholder": "Valinta numero",
   "compose_form.poll.remove_option": "Poista tämä valinta",
+  "compose_form.poll.switch_to_multiple": "Change poll to allow multiple choices",
+  "compose_form.poll.switch_to_single": "Change poll to allow for a single choice",
   "compose_form.publish": "Tuuttaa",
   "compose_form.publish_loud": "Julkista!",
   "compose_form.sensitive.hide": "Valitse tämä arkaluontoisena",
@@ -103,7 +107,7 @@
   "confirmations.logout.confirm": "Kirjaudu ulos",
   "confirmations.logout.message": "Oletko varma, että haluat kirjautua ulos?",
   "confirmations.mute.confirm": "Mykistä",
-  "confirmations.mute.explanation": "This will hide posts from them and posts mentioning them, but it will still allow them to see your posts and follow you.",
+  "confirmations.mute.explanation": "Tämä piilottaa päivitykset heiltä ja päivitykset, joissa hänet mainitaan, mutta sallii silti heidän nähdä sinun päivityksesi ja seurata sinua.",
   "confirmations.mute.message": "Haluatko varmasti mykistää käyttäjän {name}?",
   "confirmations.redraft.confirm": "Poista & palauta muokattavaksi",
   "confirmations.redraft.message": "Are you sure you want to delete this status and re-draft it? You will lose all replies, boosts and favourites to it.",
@@ -138,6 +142,7 @@
   "empty_column.account_timeline": "Ei ole 'toots' täällä!",
   "empty_column.account_unavailable": "Profiilia ei löydy",
   "empty_column.blocks": "Et ole vielä estänyt yhtään käyttäjää.",
+  "empty_column.bookmarked_statuses": "You don't have any bookmarked toots yet. When you bookmark one, it will show up here.",
   "empty_column.community": "Paikallinen aikajana on tyhjä. Homma lähtee käyntiin, kun kirjoitat jotain julkista!",
   "empty_column.direct": "Sinulla ei ole vielä yhtään viestiä yksittäiselle käyttäjälle. Kun lähetät tai vastaanotat sellaisen, se näkyy täällä.",
   "empty_column.domain_blocks": "Yhtään verkko-osoitetta ei ole vielä piilotettu.",
@@ -202,7 +207,7 @@
   "introduction.interactions.reply.text": "TOOT IS NOT A WORD",
   "introduction.welcome.action": "Mennään!",
   "introduction.welcome.headline": "Ensimmäiset askeleet",
-  "introduction.welcome.text": "Welcome to the fediverse! In a few moments, you'll be able to broadcast messages and talk to your friends across a wide variety of servers. But this server, {domain}, is special—it hosts your profile, so remember its name.",
+  "introduction.welcome.text": "Tervetuloa fediverseen! Muutaman hetken kuluttua voit lähettää viestejä ja jutella ystävillesi useiden palvelinten halki. Mutta tämä palvelin {domain}, on erityinen — sinun profiilisi sijaitsee sillä, joten muista sen nimi.",
   "keyboard_shortcuts.back": "liiku taaksepäin",
   "keyboard_shortcuts.blocked": "avaa lista estetyistä käyttäjistä",
   "keyboard_shortcuts.boost": "buustaa",
@@ -224,6 +229,7 @@
   "keyboard_shortcuts.muted": "avaa lista mykistetyistä käyttäjistä",
   "keyboard_shortcuts.my_profile": "avaa profiilisi",
   "keyboard_shortcuts.notifications": "avaa ilmoitukset-sarake",
+  "keyboard_shortcuts.open_media": "to open media",
   "keyboard_shortcuts.pinned": "avaa lista kiinnitetyistä tuuttauksista",
   "keyboard_shortcuts.profile": "avaa kirjoittajan profiili",
   "keyboard_shortcuts.reply": "vastaa",
@@ -243,7 +249,7 @@
   "lists.account.remove": "Poista listasta",
   "lists.delete": "Poista lista",
   "lists.edit": "Muokkaa listaa",
-  "lists.edit.submit": "Change title",
+  "lists.edit.submit": "Vaihda otsikko",
   "lists.new.create": "Lisää lista",
   "lists.new.title_placeholder": "Uuden listan nimi",
   "lists.search": "Etsi seuraamistasi henkilöistä",
@@ -254,8 +260,9 @@
   "missing_indicator.label": "Ei löytynyt",
   "missing_indicator.sublabel": "Tätä resurssia ei löytynyt",
   "mute_modal.hide_notifications": "Piilota tältä käyttäjältä tulevat ilmoitukset?",
-  "navigation_bar.apps": "Mobiiliapplikaatiot",
+  "navigation_bar.apps": "Mobiilisovellukset",
   "navigation_bar.blocks": "Estetyt käyttäjät",
+  "navigation_bar.bookmarks": "Bookmarks",
   "navigation_bar.community_timeline": "Paikallinen aikajana",
   "navigation_bar.compose": "Kirjoita uusi tuuttaus",
   "navigation_bar.direct": "Viestit",
@@ -278,7 +285,9 @@
   "navigation_bar.security": "Tunnukset",
   "notification.favourite": "{name} tykkäsi tilastasi",
   "notification.follow": "{name} seurasi sinua",
+  "notification.follow_request": "{name} has requested to follow you",
   "notification.mention": "{name} mainitsi sinut",
+  "notification.own_poll": "Your poll has ended",
   "notification.poll": "Kysely, johon osallistuit, on päättynyt",
   "notification.reblog": "{name} buustasi tilaasi",
   "notifications.clear": "Tyhjennä ilmoitukset",
@@ -289,6 +298,7 @@
   "notifications.column_settings.filter_bar.category": "Pikasuodatuspalkki",
   "notifications.column_settings.filter_bar.show": "Näytä",
   "notifications.column_settings.follow": "Uudet seuraajat:",
+  "notifications.column_settings.follow_request": "New follow requests:",
   "notifications.column_settings.mention": "Maininnat:",
   "notifications.column_settings.poll": "Kyselyn tulokset:",
   "notifications.column_settings.push": "Push-ilmoitukset",
@@ -349,6 +359,7 @@
   "status.admin_account": "Avaa moderaattorinäkymä tilistä @{name}",
   "status.admin_status": "Avaa tilapäivitys moderaattorinäkymässä",
   "status.block": "Estä @{name}",
+  "status.bookmark": "Bookmark",
   "status.cancel_reblog_private": "Peru buustaus",
   "status.cannot_reblog": "Tätä julkaisua ei voi buustata",
   "status.copy": "Kopioi linkki tilapäivitykseen",
@@ -374,6 +385,7 @@
   "status.reblogged_by": "{name} buustasi",
   "status.reblogs.empty": "Kukaan ei ole vielä buustannut tätä tuuttausta. Kun joku tekee niin, näkyy kyseinen henkilö tässä.",
   "status.redraft": "Poista & palauta muokattavaksi",
+  "status.remove_bookmark": "Remove bookmark",
   "status.reply": "Vastaa",
   "status.replyAll": "Vastaa ketjuun",
   "status.report": "Raportoi @{name}",
@@ -387,7 +399,7 @@
   "status.uncached_media_warning": "Ei saatavilla",
   "status.unmute_conversation": "Poista keskustelun mykistys",
   "status.unpin": "Irrota profiilista",
-  "suggestions.dismiss": "Dismiss suggestion",
+  "suggestions.dismiss": "Hylkää ehdotus",
   "suggestions.header": "Saatat olla kiinnostunut myös…",
   "tabs_bar.federated_timeline": "Yleinen",
   "tabs_bar.home": "Koti",
@@ -406,18 +418,21 @@
   "upload_button.label": "Lisää mediaa",
   "upload_error.limit": "Tiedostolatauksien raja ylitetty.",
   "upload_error.poll": "Tiedon lataaminen ei ole sallittua kyselyissä.",
+  "upload_form.audio_description": "Describe for people with hearing loss",
   "upload_form.description": "Anna kuvaus näkörajoitteisia varten",
   "upload_form.edit": "Muokkaa",
   "upload_form.undo": "Peru",
+  "upload_form.video_description": "Describe for people with hearing loss or visual impairment",
   "upload_modal.analyzing_picture": "Analysoidaan kuvaa…",
   "upload_modal.apply": "Käytä",
   "upload_modal.description_placeholder": "Eräänä jäätävänä ja pimeänä yönä gorilla ratkaisi sudokun kahdessa minuutissa",
-  "upload_modal.detect_text": "Detect text from picture",
-  "upload_modal.edit_media": "Edit media",
-  "upload_modal.hint": "Click or drag the circle on the preview to choose the focal point which will always be in view on all thumbnails.",
-  "upload_modal.preview_label": "Preview ({ratio})",
+  "upload_modal.detect_text": "Tunnista teksti kuvasta",
+  "upload_modal.edit_media": "Muokkaa mediaa",
+  "upload_modal.hint": "Klikkaa tai vedä ympyrä esikatselussa valitaksesi keskipiste, joka näkyy aina pienoiskuvissa.",
+  "upload_modal.preview_label": "Esikatselu ({ratio})",
   "upload_progress.label": "Ladataan...",
   "video.close": "Sulje video",
+  "video.download": "Lataa tiedosto",
   "video.exit_fullscreen": "Poistu koko näytön tilasta",
   "video.expand": "Laajenna video",
   "video.fullscreen": "Koko näyttö",
diff --git a/app/javascript/mastodon/locales/fr.json b/app/javascript/mastodon/locales/fr.json
index 9568b54f0f9b73a721dcacb8f0b4dd3db0353b67..be31ee79906c8d5a04f514ab115cd99e431c47a7 100644
--- a/app/javascript/mastodon/locales/fr.json
+++ b/app/javascript/mastodon/locales/fr.json
@@ -1,9 +1,10 @@
 {
   "account.add_or_remove_from_list": "Ajouter ou retirer des listes",
   "account.badges.bot": "Robot",
+  "account.badges.group": "Groupe",
   "account.block": "Bloquer @{name}",
   "account.block_domain": "Tout masquer venant de {domain}",
-  "account.blocked": "Bloqué",
+  "account.blocked": "Bloqué·e",
   "account.cancel_follow_request": "Annuler la demande de suivi",
   "account.direct": "Envoyer un message direct à @{name}",
   "account.domain_blocked": "Domaine caché",
@@ -24,7 +25,7 @@
   "account.moved_to": "{name} a déménagé vers :",
   "account.mute": "Masquer @{name}",
   "account.mute_notifications": "Ignorer les notifications de @{name}",
-  "account.muted": "Silencé",
+  "account.muted": "Silencé·e",
   "account.never_active": "Jamais",
   "account.posts": "Pouets",
   "account.posts_with_replies": "Pouets et réponses",
@@ -51,12 +52,13 @@
   "bundle_modal_error.message": "Une erreur s’est produite lors du chargement de ce composant.",
   "bundle_modal_error.retry": "Réessayer",
   "column.blocks": "Comptes bloqués",
+  "column.bookmarks": "Marque-pages",
   "column.community": "Fil public local",
   "column.direct": "Messages privés",
   "column.directory": "Parcourir les profils",
   "column.domain_blocks": "Domaines cachés",
   "column.favourites": "Favoris",
-  "column.follow_requests": "Demandes de suivi",
+  "column.follow_requests": "Demandes d'abonnement",
   "column.home": "Accueil",
   "column.lists": "Listes",
   "column.mutes": "Comptes masqués",
@@ -73,8 +75,8 @@
   "column_subheading.settings": "Paramètres",
   "community.column_settings.media_only": "Média uniquement",
   "compose_form.direct_message_warning": "Ce pouet sera uniquement envoyé aux personnes mentionnées. Cependant, l’administration de votre instance et des instances réceptrices pourront inspecter ce message.",
-  "compose_form.direct_message_warning_learn_more": "Plus d’informations",
-  "compose_form.hashtag_warning": "Ce pouet ne sera pas listé dans les recherches par hashtag car sa visibilité est réglée sur \"non listé\". Seuls les pouets avec une visibilité \"publique\" peuvent être recherchés par hashtag.",
+  "compose_form.direct_message_warning_learn_more": "En savoir plus",
+  "compose_form.hashtag_warning": "Ce pouet ne sera pas listé dans les recherches par hashtag car sa visibilité est réglée sur « non listé ». Seuls les pouets avec une visibilité « publique » peuvent être recherchés par hashtag.",
   "compose_form.lock_disclaimer": "Votre compte n’est pas {locked}. Tout le monde peut vous suivre et voir vos pouets privés.",
   "compose_form.lock_disclaimer.lock": "verrouillé",
   "compose_form.placeholder": "Qu’avez-vous en tête ?",
@@ -82,6 +84,8 @@
   "compose_form.poll.duration": "Durée du sondage",
   "compose_form.poll.option_placeholder": "Choix {number}",
   "compose_form.poll.remove_option": "Supprimer ce choix",
+  "compose_form.poll.switch_to_multiple": "Changer le sondage pour autoriser plusieurs choix",
+  "compose_form.poll.switch_to_single": "Changer le sondage pour autoriser qu'un seul choix",
   "compose_form.publish": "Pouet",
   "compose_form.publish_loud": "{publish} !",
   "compose_form.sensitive.hide": "Marquer le média comme sensible",
@@ -101,28 +105,28 @@
   "confirmations.domain_block.confirm": "Masquer le domaine entier",
   "confirmations.domain_block.message": "Êtes-vous vraiment, vraiment sûr⋅e de vouloir bloquer {domain} en entier ? Dans la plupart des cas, quelques blocages ou masquages ciblés sont suffisants et préférables. Vous ne verrez plus de contenu provenant de ce domaine, ni dans fils publics, ni dans vos notifications. Vos abonné·e·s utilisant ce domaine seront retiré·e·s.",
   "confirmations.logout.confirm": "Déconnexion",
-  "confirmations.logout.message": "Êtes-vous sûr de vouloir vous déconnecter ?",
+  "confirmations.logout.message": "Êtes-vous sûr·e de vouloir vous déconnecter ?",
   "confirmations.mute.confirm": "Masquer",
-  "confirmations.mute.explanation": "Cela masquera leurs messages et les messages les mentionnant, mais cela leur permettra quand même de voir vos messages et vous suivre.",
+  "confirmations.mute.explanation": "Cela masquera ses messages et les messages le ou la mentionnant, mais cela lui permettra quand même de voir vos messages et de vous suivre.",
   "confirmations.mute.message": "Êtes-vous sûr·e de vouloir masquer {name} ?",
   "confirmations.redraft.confirm": "Effacer et ré-écrire",
   "confirmations.redraft.message": "Êtes-vous sûr·e de vouloir effacer ce statut pour le ré-écrire ? Ses partages ainsi que ses mises en favori seront perdu·e·s et ses réponses seront orphelines.",
   "confirmations.reply.confirm": "Répondre",
-  "confirmations.reply.message": "Répondre maintenant écrasera le message que vous composez actuellement. Êtes-vous sûr de vouloir continuer ?",
+  "confirmations.reply.message": "Répondre maintenant écrasera le message que vous composez actuellement. Êtes-vous sûr·e de vouloir continuer ?",
   "confirmations.unfollow.confirm": "Ne plus suivre",
-  "confirmations.unfollow.message": "Voulez-vous arrêter de suivre {name} ?",
+  "confirmations.unfollow.message": "Êtes-vous sûr·e de vouloir arrêter de suivre {name} ?",
   "conversation.delete": "Supprimer la conversation",
   "conversation.mark_as_read": "Marquer comme lu",
   "conversation.open": "Afficher la conversation",
   "conversation.with": "Avec {names}",
   "directory.federated": "Du fédiverse connu",
   "directory.local": "De {domain} seulement",
-  "directory.new_arrivals": "Nouveaux arrivants",
-  "directory.recently_active": "Récemment actif",
+  "directory.new_arrivals": "Nouveaux·elles arrivant·e·s",
+  "directory.recently_active": "Récemment actif·ve·s",
   "embed.instructions": "Intégrez ce statut à votre site en copiant le code ci-dessous.",
   "embed.preview": "Il apparaîtra comme cela :",
   "emoji_button.activity": "Activités",
-  "emoji_button.custom": "Personnalisé",
+  "emoji_button.custom": "Personnalisés",
   "emoji_button.flags": "Drapeaux",
   "emoji_button.food": "Nourriture & Boisson",
   "emoji_button.label": "Insérer un émoji",
@@ -138,6 +142,7 @@
   "empty_column.account_timeline": "Aucun pouet ici !",
   "empty_column.account_unavailable": "Profil non disponible",
   "empty_column.blocks": "Vous n’avez bloqué aucun·e utilisateur·rice pour le moment.",
+  "empty_column.bookmarked_statuses": "Vous n'avez pas de pouets enregistrés comme marque-pages pour le moment. Lorsque vous en ajouterez un, il apparaîtra ici.",
   "empty_column.community": "Le fil public local est vide. Écrivez donc quelque chose pour le remplir !",
   "empty_column.direct": "Vous n’avez pas encore de messages directs. Lorsque vous en enverrez ou recevrez un, il s’affichera ici.",
   "empty_column.domain_blocks": "Il n’y a aucun domaine caché pour le moment.",
@@ -149,10 +154,10 @@
   "empty_column.home.public_timeline": "le fil public",
   "empty_column.list": "Il n’y a rien dans cette liste pour l’instant. Dès que des personnes de cette liste publieront de nouveaux statuts, ils apparaîtront ici.",
   "empty_column.lists": "Vous n’avez pas encore de liste. Lorsque vous en créerez une, elle apparaîtra ici.",
-  "empty_column.mutes": "Vous n’avez pas encore mis d’utilisateur·rice·s en silence.",
+  "empty_column.mutes": "Vous n’avez pas encore silencié d’utilisateur·rice·s.",
   "empty_column.notifications": "Vous n’avez pas encore de notification. Interagissez avec d’autres personnes pour débuter la conversation.",
-  "empty_column.public": "Il n’y a rien ici ! Écrivez quelque chose publiquement, ou bien suivez manuellement des personnes d’autres instances pour le remplir",
-  "error.unexpected_crash.explanation": "En raison d’un bug dans notre code ou d’un problème de compatibilité avec le navigateur, cette page n’a pas pu être affichée correctement.",
+  "empty_column.public": "Il n’y a rien ici ! Écrivez quelque chose publiquement, ou bien suivez manuellement des personnes d’autres serveurs pour remplir le fil public",
+  "error.unexpected_crash.explanation": "En raison d’un bug dans notre code ou d’un problème de compatibilité avec votre navigateur, cette page n’a pas pu être affichée correctement.",
   "error.unexpected_crash.next_steps": "Essayez de rafraîchir la page. Si cela n’aide pas, vous pouvez toujours utiliser Mastodon via un autre navigateur ou une application native.",
   "errors.unexpected_crash.copy_stacktrace": "Copier la trace-pile dans le presse-papier",
   "errors.unexpected_crash.report_issue": "Signaler un bogue",
@@ -169,14 +174,14 @@
   "getting_started.documentation": "Documentation",
   "getting_started.heading": "Pour commencer",
   "getting_started.invite": "Inviter des gens",
-  "getting_started.open_source_notice": "Mastodon est un logiciel libre. Vous pouvez contribuer et envoyer vos commentaires et rapports de bogues via {github} sur GitHub.",
+  "getting_started.open_source_notice": "Mastodon est un logiciel libre. Vous pouvez contribuer ou faire des rapports de bogues via {github} sur GitHub.",
   "getting_started.security": "Sécurité",
   "getting_started.terms": "Conditions d’utilisation",
   "hashtag.column_header.tag_mode.all": "et {additional}",
   "hashtag.column_header.tag_mode.any": "ou {additional}",
   "hashtag.column_header.tag_mode.none": "sans {additional}",
   "hashtag.column_settings.select.no_options_message": "Aucune suggestion trouvée",
-  "hashtag.column_settings.select.placeholder": "Ajouter des mots-clés…",
+  "hashtag.column_settings.select.placeholder": "Ajouter des hashtags…",
   "hashtag.column_settings.tag_mode.all": "Tous ces éléments",
   "hashtag.column_settings.tag_mode.any": "Au moins un de ces éléments",
   "hashtag.column_settings.tag_mode.none": "Aucun de ces éléments",
@@ -196,25 +201,25 @@
   "introduction.federation.local.text": "Les messages publics de personnes se trouvant sur le même serveur que vous apparaîtront sur le fil public local.",
   "introduction.interactions.action": "Finir le tutoriel !",
   "introduction.interactions.favourite.headline": "Favoris",
-  "introduction.interactions.favourite.text": "Vous pouvez garder un pouet pour plus tard et faire savoir à son auteur·ice que vous l’avez aimé, en le favorisant.",
+  "introduction.interactions.favourite.text": "Vous pouvez garder un pouet pour plus tard et faire savoir à son auteur·ice que vous l’avez aimé, en l'ajoutant aux favoris.",
   "introduction.interactions.reblog.headline": "Repartager",
   "introduction.interactions.reblog.text": "Vous pouvez partager les pouets d'autres personnes avec vos abonné·e·s en les repartageant.",
   "introduction.interactions.reply.headline": "Répondre",
   "introduction.interactions.reply.text": "Vous pouvez répondre aux pouets d'autres personnes et à vos propres pouets, ce qui les enchaînera dans une conversation.",
   "introduction.welcome.action": "Allons-y !",
   "introduction.welcome.headline": "Premiers pas",
-  "introduction.welcome.text": "Bienvenue dans le fediverse ! Dans quelques instants, vous pourrez diffuser des messages et parler à vos amis sur une grande variété de serveurs. Mais ce serveur, {domain}, est spécial - il héberge votre profil, alors souvenez-vous de son nom.",
+  "introduction.welcome.text": "Bienvenue dans le fédiverse ! Dans quelques instants, vous pourrez diffuser des messages et parler à vos ami·e·s sur une grande variété de serveurs. Mais ce serveur, {domain}, est spécial - il héberge votre profil, alors souvenez-vous de son nom.",
   "keyboard_shortcuts.back": "pour revenir en arrière",
-  "keyboard_shortcuts.blocked": "pour ouvrir une liste d’utilisateur·rice·s bloqué·e·s",
+  "keyboard_shortcuts.blocked": "pour ouvrir la liste des comptes bloqués",
   "keyboard_shortcuts.boost": "pour partager",
   "keyboard_shortcuts.column": "pour focaliser un statut dans l’une des colonnes",
   "keyboard_shortcuts.compose": "pour focaliser la zone de rédaction",
   "keyboard_shortcuts.description": "Description",
-  "keyboard_shortcuts.direct": "pour ouvrir une colonne des messages directs",
+  "keyboard_shortcuts.direct": "pour ouvrir la colonne des messages directs",
   "keyboard_shortcuts.down": "pour descendre dans la liste",
   "keyboard_shortcuts.enter": "pour ouvrir le statut",
   "keyboard_shortcuts.favourite": "pour ajouter aux favoris",
-  "keyboard_shortcuts.favourites": "pour ouvrir une liste de favoris",
+  "keyboard_shortcuts.favourites": "pour ouvrir la liste des pouets favoris",
   "keyboard_shortcuts.federated": "pour ouvrir le fil public global",
   "keyboard_shortcuts.heading": "Raccourcis clavier",
   "keyboard_shortcuts.home": "pour ouvrir l’accueil",
@@ -222,15 +227,16 @@
   "keyboard_shortcuts.legend": "pour afficher cette légende",
   "keyboard_shortcuts.local": "pour ouvrir le fil public local",
   "keyboard_shortcuts.mention": "pour mentionner l’auteur·rice",
-  "keyboard_shortcuts.muted": "pour ouvrir la liste des utilisateur·rice·s rendu·e·s muet·te·s",
+  "keyboard_shortcuts.muted": "pour ouvrir la liste des utilisateur·rice·s muté·e·s",
   "keyboard_shortcuts.my_profile": "pour ouvrir votre profil",
   "keyboard_shortcuts.notifications": "pour ouvrir votre colonne de notifications",
+  "keyboard_shortcuts.open_media": "pour ouvrir le média",
   "keyboard_shortcuts.pinned": "pour ouvrir une liste des pouets épinglés",
   "keyboard_shortcuts.profile": "pour ouvrir le profil de l’auteur·rice",
   "keyboard_shortcuts.reply": "pour répondre",
   "keyboard_shortcuts.requests": "pour ouvrir la liste de demandes de suivi",
   "keyboard_shortcuts.search": "pour cibler la recherche",
-  "keyboard_shortcuts.start": "pour ouvrir la colonne \"pour commencer\"",
+  "keyboard_shortcuts.start": "pour ouvrir la colonne « pour commencer »",
   "keyboard_shortcuts.toggle_hidden": "pour afficher/cacher un texte derrière CW",
   "keyboard_shortcuts.toggle_sensitivity": "pour afficher/cacher les médias",
   "keyboard_shortcuts.toot": "pour démarrer un tout nouveau pouet",
@@ -242,9 +248,9 @@
   "lightbox.view_context": "Voir le contexte",
   "lists.account.add": "Ajouter à la liste",
   "lists.account.remove": "Supprimer de la liste",
-  "lists.delete": "Effacer la liste",
+  "lists.delete": "Supprimer la liste",
   "lists.edit": "Éditer la liste",
-  "lists.edit.submit": "Changer le titre",
+  "lists.edit.submit": "Modifier le titre",
   "lists.new.create": "Ajouter une liste",
   "lists.new.title_placeholder": "Titre de la nouvelle liste",
   "lists.search": "Rechercher parmi les gens que vous suivez",
@@ -257,8 +263,9 @@
   "mute_modal.hide_notifications": "Masquer les notifications de cette personne ?",
   "navigation_bar.apps": "Applications mobiles",
   "navigation_bar.blocks": "Comptes bloqués",
+  "navigation_bar.bookmarks": "Marque-pages",
   "navigation_bar.community_timeline": "Fil public local",
-  "navigation_bar.compose": "Rédiger un nouveau toot",
+  "navigation_bar.compose": "Rédiger un nouveau pouet",
   "navigation_bar.direct": "Messages directs",
   "navigation_bar.discover": "Découvrir",
   "navigation_bar.domain_blocks": "Domaines cachés",
@@ -279,7 +286,9 @@
   "navigation_bar.security": "Sécurité",
   "notification.favourite": "{name} a ajouté à ses favoris :",
   "notification.follow": "{name} vous suit",
-  "notification.mention": "{name} vous a mentionné :",
+  "notification.follow_request": "{name} a demandé à vous suivre",
+  "notification.mention": "{name} vous a mentionné·e :",
+  "notification.own_poll": "Votre sondage est terminé",
   "notification.poll": "Un sondage auquel vous avez participé vient de se terminer",
   "notification.reblog": "{name} a partagé votre statut :",
   "notifications.clear": "Nettoyer les notifications",
@@ -290,14 +299,15 @@
   "notifications.column_settings.filter_bar.category": "Barre de filtrage rapide",
   "notifications.column_settings.filter_bar.show": "Afficher",
   "notifications.column_settings.follow": "Nouveaux⋅elles abonné⋅e·s :",
+  "notifications.column_settings.follow_request": "Nouvelles demandes d’abonnement :",
   "notifications.column_settings.mention": "Mentions :",
-  "notifications.column_settings.poll": "Résultats du sondage :",
-  "notifications.column_settings.push": "Notifications",
+  "notifications.column_settings.poll": "Résultats des sondage :",
+  "notifications.column_settings.push": "Notifications push",
   "notifications.column_settings.reblog": "Partages :",
   "notifications.column_settings.show": "Afficher dans la colonne",
   "notifications.column_settings.sound": "Émettre un son",
   "notifications.filter.all": "Tout",
-  "notifications.filter.boosts": "Repartages",
+  "notifications.filter.boosts": "Partages",
   "notifications.filter.favourites": "Favoris",
   "notifications.filter.follows": "Abonné·e·s",
   "notifications.filter.mentions": "Mentions",
@@ -322,7 +332,7 @@
   "privacy.unlisted.short": "Non listé",
   "refresh": "Actualiser",
   "regeneration_indicator.label": "Chargement…",
-  "regeneration_indicator.sublabel": "Le flux de votre page principale est en cours de préparation !",
+  "regeneration_indicator.sublabel": "Votre fil principal est en cours de préparation !",
   "relative_time.days": "{number} j",
   "relative_time.hours": "{number} h",
   "relative_time.just_now": "à l’instant",
@@ -330,14 +340,14 @@
   "relative_time.seconds": "{number} s",
   "reply_indicator.cancel": "Annuler",
   "report.forward": "Transférer à {target}",
-  "report.forward_hint": "Le compte provient d’un autre serveur. Envoyez également une copie anonyme du rapport ?",
+  "report.forward_hint": "Le compte provient d’un autre serveur. Envoyer également une copie anonyme du rapport ?",
   "report.hint": "Le rapport sera envoyé aux modérateur·rice·s de votre instance. Vous pouvez expliquer pourquoi vous signalez le compte ci-dessous :",
   "report.placeholder": "Commentaires additionnels",
   "report.submit": "Envoyer",
-  "report.target": "Signalement",
+  "report.target": "Signalement de {target}",
   "search.placeholder": "Rechercher",
   "search_popout.search_format": "Recherche avancée",
-  "search_popout.tips.full_text": "Les textes simples retournent les pouets que vous avez écris, mis en favori, épinglés, ou ayant été mentionnés, ainsi que les identifiants, les noms affichés, et les hashtags des personnes et messages correspondant.",
+  "search_popout.tips.full_text": "Un texte normal retourne les pouets que vous avez écris, mis en favori, partagés, ou vous mentionnant, ainsi que les identifiants, les noms affichés, et les hashtags des personnes et messages correspondant.",
   "search_popout.tips.hashtag": "hashtag",
   "search_popout.tips.status": "statuts",
   "search_popout.tips.text": "Un texte simple renvoie les noms affichés, les identifiants et les hashtags correspondants",
@@ -350,8 +360,9 @@
   "status.admin_account": "Ouvrir l’interface de modération pour @{name}",
   "status.admin_status": "Ouvrir ce statut dans l’interface de modération",
   "status.block": "Bloquer @{name}",
-  "status.cancel_reblog_private": "Dé-booster",
-  "status.cannot_reblog": "Cette publication ne peut être boostée",
+  "status.bookmark": "Ajouter aux marque-pages",
+  "status.cancel_reblog_private": "Annuler le partage",
+  "status.cannot_reblog": "Ce pouet ne peut pas être partagé",
   "status.copy": "Copier le lien vers le pouet",
   "status.delete": "Effacer",
   "status.detailed_status": "Vue détaillée de la conversation",
@@ -371,10 +382,11 @@
   "status.pinned": "Pouet épinglé",
   "status.read_more": "En savoir plus",
   "status.reblog": "Partager",
-  "status.reblog_private": "Booster vers l’audience originale",
+  "status.reblog_private": "Partager à l’audience originale",
   "status.reblogged_by": "{name} a partagé :",
   "status.reblogs.empty": "Personne n’a encore partagé ce pouet. Lorsque quelqu’un le fera, il apparaîtra ici.",
   "status.redraft": "Effacer et ré-écrire",
+  "status.remove_bookmark": "Retirer des marque-pages",
   "status.reply": "Répondre",
   "status.replyAll": "Répondre au fil",
   "status.report": "Signaler @{name}",
@@ -389,7 +401,7 @@
   "status.unmute_conversation": "Ne plus masquer la conversation",
   "status.unpin": "Retirer du profil",
   "suggestions.dismiss": "Rejeter la suggestion",
-  "suggestions.header": "Vous pourriez être intéressé par…",
+  "suggestions.header": "Vous pourriez être intéressé·e par…",
   "tabs_bar.federated_timeline": "Fil public global",
   "tabs_bar.home": "Accueil",
   "tabs_bar.local_timeline": "Fil public local",
@@ -407,9 +419,11 @@
   "upload_button.label": "Joindre un média ({formats})",
   "upload_error.limit": "Taille maximale d'envoi de fichier dépassée.",
   "upload_error.poll": "L’envoi de fichiers n’est pas autorisé avec les sondages.",
+  "upload_form.audio_description": "Décrire pour les personnes ayant des difficultés d’audition",
   "upload_form.description": "Décrire pour les malvoyant·e·s",
   "upload_form.edit": "Modifier",
   "upload_form.undo": "Supprimer",
+  "upload_form.video_description": "Décrire pour les personnes ayant des problèmes d’audition ou de vision",
   "upload_modal.analyzing_picture": "Analyse de l’image en cours…",
   "upload_modal.apply": "Appliquer",
   "upload_modal.description_placeholder": "Buvez de ce whisky que le patron juge fameux",
@@ -419,6 +433,7 @@
   "upload_modal.preview_label": "Aperçu ({ratio})",
   "upload_progress.label": "Envoi en cours…",
   "video.close": "Fermer la vidéo",
+  "video.download": "Télécharger le fichier",
   "video.exit_fullscreen": "Quitter le plein écran",
   "video.expand": "Agrandir la vidéo",
   "video.fullscreen": "Plein écran",
diff --git a/app/javascript/mastodon/locales/ga.json b/app/javascript/mastodon/locales/ga.json
index 2dd0dbbad97700e96e9027190825dd74d3b3e719..4966946ccde2721ebc1f3ca24ab6cab93f07d1e3 100644
--- a/app/javascript/mastodon/locales/ga.json
+++ b/app/javascript/mastodon/locales/ga.json
@@ -1,6 +1,7 @@
 {
   "account.add_or_remove_from_list": "Add or Remove from lists",
   "account.badges.bot": "Bot",
+  "account.badges.group": "Group",
   "account.block": "Block @{name}",
   "account.block_domain": "Hide everything from {domain}",
   "account.blocked": "Blocked",
@@ -51,6 +52,7 @@
   "bundle_modal_error.message": "Something went wrong while loading this component.",
   "bundle_modal_error.retry": "Try again",
   "column.blocks": "Blocked users",
+  "column.bookmarks": "Bookmarks",
   "column.community": "Local timeline",
   "column.direct": "Direct messages",
   "column.directory": "Browse profiles",
@@ -82,6 +84,8 @@
   "compose_form.poll.duration": "Poll duration",
   "compose_form.poll.option_placeholder": "Choice {number}",
   "compose_form.poll.remove_option": "Remove this choice",
+  "compose_form.poll.switch_to_multiple": "Change poll to allow multiple choices",
+  "compose_form.poll.switch_to_single": "Change poll to allow for a single choice",
   "compose_form.publish": "Toot",
   "compose_form.publish_loud": "{publish}!",
   "compose_form.sensitive.hide": "Mark media as sensitive",
@@ -138,6 +142,7 @@
   "empty_column.account_timeline": "No toots here!",
   "empty_column.account_unavailable": "Profile unavailable",
   "empty_column.blocks": "You haven't blocked any users yet.",
+  "empty_column.bookmarked_statuses": "You don't have any bookmarked toots yet. When you bookmark one, it will show up here.",
   "empty_column.community": "The local timeline is empty. Write something publicly to get the ball rolling!",
   "empty_column.direct": "You don't have any direct messages yet. When you send or receive one, it will show up here.",
   "empty_column.domain_blocks": "There are no hidden domains yet.",
@@ -219,6 +224,7 @@
   "keyboard_shortcuts.muted": "to open muted users list",
   "keyboard_shortcuts.my_profile": "to open your profile",
   "keyboard_shortcuts.notifications": "to open notifications column",
+  "keyboard_shortcuts.open_media": "to open media",
   "keyboard_shortcuts.pinned": "to open pinned toots list",
   "keyboard_shortcuts.profile": "to open author's profile",
   "keyboard_shortcuts.reply": "to reply",
@@ -251,6 +257,7 @@
   "mute_modal.hide_notifications": "Hide notifications from this user?",
   "navigation_bar.apps": "Mobile apps",
   "navigation_bar.blocks": "Blocked users",
+  "navigation_bar.bookmarks": "Bookmarks",
   "navigation_bar.community_timeline": "Local timeline",
   "navigation_bar.compose": "Compose new toot",
   "navigation_bar.direct": "Direct messages",
@@ -273,7 +280,9 @@
   "navigation_bar.security": "Security",
   "notification.favourite": "{name} favourited your status",
   "notification.follow": "{name} followed you",
+  "notification.follow_request": "{name} has requested to follow you",
   "notification.mention": "{name} mentioned you",
+  "notification.own_poll": "Your poll has ended",
   "notification.poll": "A poll you have voted in has ended",
   "notification.reblog": "{name} boosted your status",
   "notifications.clear": "Clear notifications",
@@ -284,6 +293,7 @@
   "notifications.column_settings.filter_bar.category": "Quick filter bar",
   "notifications.column_settings.filter_bar.show": "Show",
   "notifications.column_settings.follow": "New followers:",
+  "notifications.column_settings.follow_request": "New follow requests:",
   "notifications.column_settings.mention": "Mentions:",
   "notifications.column_settings.poll": "Poll results:",
   "notifications.column_settings.push": "Push notifications",
@@ -344,6 +354,7 @@
   "status.admin_account": "Open moderation interface for @{name}",
   "status.admin_status": "Open this status in the moderation interface",
   "status.block": "Block @{name}",
+  "status.bookmark": "Bookmark",
   "status.cancel_reblog_private": "Unboost",
   "status.cannot_reblog": "This post cannot be boosted",
   "status.copy": "Copy link to status",
@@ -368,6 +379,7 @@
   "status.reblogged_by": "{name} boosted",
   "status.reblogs.empty": "No one has boosted this toot yet. When someone does, they will show up here.",
   "status.redraft": "Delete & re-draft",
+  "status.remove_bookmark": "Remove bookmark",
   "status.reply": "Reply",
   "status.replyAll": "Reply to thread",
   "status.report": "Report @{name}",
@@ -400,9 +412,11 @@
   "upload_button.label": "Add media ({formats})",
   "upload_error.limit": "File upload limit exceeded.",
   "upload_error.poll": "File upload not allowed with polls.",
+  "upload_form.audio_description": "Describe for people with hearing loss",
   "upload_form.description": "Describe for the visually impaired",
   "upload_form.edit": "Edit",
   "upload_form.undo": "Delete",
+  "upload_form.video_description": "Describe for people with hearing loss or visual impairment",
   "upload_modal.analyzing_picture": "Analyzing picture…",
   "upload_modal.apply": "Apply",
   "upload_modal.description_placeholder": "A quick brown fox jumps over the lazy dog",
@@ -412,6 +426,7 @@
   "upload_modal.preview_label": "Preview ({ratio})",
   "upload_progress.label": "Uploading...",
   "video.close": "Close video",
+  "video.download": "Download file",
   "video.exit_fullscreen": "Exit full screen",
   "video.expand": "Expand video",
   "video.fullscreen": "Full screen",
diff --git a/app/javascript/mastodon/locales/gl.json b/app/javascript/mastodon/locales/gl.json
index bee0384c33f438f428511fbd01c1b8934cd3adeb..3d2da01ed90ee2d9d961787bc8c9e61b0d0313ef 100644
--- a/app/javascript/mastodon/locales/gl.json
+++ b/app/javascript/mastodon/locales/gl.json
@@ -1,143 +1,148 @@
 {
-  "account.add_or_remove_from_list": "Engadir ou Eliminar das listas",
+  "account.add_or_remove_from_list": "Engadir ou eliminar das listaxes",
   "account.badges.bot": "Bot",
+  "account.badges.group": "Grupo",
   "account.block": "Bloquear @{name}",
-  "account.block_domain": "Ocultar calquer contido de {domain}",
-  "account.blocked": "Bloqueada",
-  "account.cancel_follow_request": "Cancelar petición de seguemento",
+  "account.block_domain": "Agochar todo de {domain}",
+  "account.blocked": "Bloqueado",
+  "account.cancel_follow_request": "Desbotar solicitude de seguimento",
   "account.direct": "Mensaxe directa @{name}",
   "account.domain_blocked": "Dominio agochado",
   "account.edit_profile": "Editar perfil",
-  "account.endorse": "Mostrado no perfil",
+  "account.endorse": "Amosar no perfil",
   "account.follow": "Seguir",
-  "account.followers": "Seguidoras",
-  "account.followers.empty": "Ninguén está a seguir esta usuaria por agora.",
+  "account.followers": "Seguidores",
+  "account.followers.empty": "Aínda ninguén segue este usuario.",
   "account.follows": "Seguindo",
-  "account.follows.empty": "Esta usuaria aínda non segue a ninguén.",
+  "account.follows.empty": "Este usuario aínda non segue a ninguén.",
   "account.follows_you": "Séguete",
-  "account.hide_reblogs": "Ocultar repeticións de @{name}",
-  "account.last_status": "Último activo",
-  "account.link_verified_on": "A propiedade de esta ligazón foi comprobada en {date}",
-  "account.locked_info": "O estado da intimidade de esta conta estableceuse en pechado. A persoa dona da conta revisa quen pode seguila.",
-  "account.media": "Medios",
+  "account.hide_reblogs": "Agochar compartidos de @{name}",
+  "account.last_status": "Última actividade",
+  "account.link_verified_on": "A propiedade desta ligazón foi verificada o {date}",
+  "account.locked_info": "Esta é unha conta privada. O dono revisa de xeito manual quen pode seguilo.",
+  "account.media": "Multimedia",
   "account.mention": "Mencionar @{name}",
-  "account.moved_to": "{name} marchou a:",
-  "account.mute": "Acalar @{name}",
-  "account.mute_notifications": "Acalar as notificacións de @{name}",
-  "account.muted": "Acalada",
+  "account.moved_to": "{name} mudouse a:",
+  "account.mute": "Silenciar @{name}",
+  "account.mute_notifications": "Silenciar notificacións de @{name}",
+  "account.muted": "Silenciado",
   "account.never_active": "Nunca",
   "account.posts": "Toots",
   "account.posts_with_replies": "Toots e respostas",
-  "account.report": "Informar sobre @{name}",
-  "account.requested": "Agardando aceptación. Pulse para cancelar a solicitude de seguimento",
+  "account.report": "Denunciar @{name}",
+  "account.requested": "Agardando aprovación. Preme para desbotar a solicitude de seguimento",
   "account.share": "Compartir o perfil de @{name}",
-  "account.show_reblogs": "Mostrar repeticións de @{name}",
+  "account.show_reblogs": "Amosar compartidos de @{name}",
   "account.unblock": "Desbloquear @{name}",
-  "account.unblock_domain": "Non ocultar {domain}",
-  "account.unendorse": "Non mostrar no perfil",
-  "account.unfollow": "Non seguir",
-  "account.unmute": "Non acalar @{name}",
-  "account.unmute_notifications": "Desbloquear as notificacións de @{name}",
-  "alert.rate_limited.message": "Por favor inténteo tras {retry_time, time, medium}.",
-  "alert.rate_limited.title": "Taxa limitada",
-  "alert.unexpected.message": "Aconteceu un fallo non agardado.",
-  "alert.unexpected.title": "Vaia!",
+  "account.unblock_domain": "Amosar {domain}",
+  "account.unendorse": "Non amosar no perfil",
+  "account.unfollow": "Deixar de seguir",
+  "account.unmute": "Deixar de silenciar a @{name}",
+  "account.unmute_notifications": "Deixar de silenciar as notificacións de @{name}",
+  "alert.rate_limited.message": "Téntao novamente após {retry_time, time, medium}.",
+  "alert.rate_limited.title": "Límite de intentos",
+  "alert.unexpected.message": "Ocorreu un erro non agardado.",
+  "alert.unexpected.title": "Vaites!",
   "autosuggest_hashtag.per_week": "{count} por semana",
-  "boost_modal.combo": "Pulse {combo} para saltar esto a próxima vez",
-  "bundle_column_error.body": "Houbo un fallo mentras se cargaba este compoñente.",
-  "bundle_column_error.retry": "Inténteo de novo",
-  "bundle_column_error.title": "Fallo na rede",
+  "boost_modal.combo": "Preme {combo} para ignorar isto na seguinte vez",
+  "bundle_column_error.body": "Ocorreu un erro ó cargar este compoñente.",
+  "bundle_column_error.retry": "Téntao de novo",
+  "bundle_column_error.title": "Erro na rede",
   "bundle_modal_error.close": "Pechar",
-  "bundle_modal_error.message": "Algo fallou mentras se cargaba este compoñente.",
-  "bundle_modal_error.retry": "Inténteo de novo",
-  "column.blocks": "Usuarias bloqueadas",
-  "column.community": "Liña temporal local",
+  "bundle_modal_error.message": "Ocorreu un erro ó cargar este compoñente.",
+  "bundle_modal_error.retry": "Téntao de novo",
+  "column.blocks": "Usuarios bloqueados",
+  "column.bookmarks": "Marcadores",
+  "column.community": "Cronoloxía local",
   "column.direct": "Mensaxes directas",
-  "column.directory": "Ver perfiles",
+  "column.directory": "Procurar perfís",
   "column.domain_blocks": "Dominios agochados",
-  "column.favourites": "Favoritas",
+  "column.favourites": "Favoritos",
   "column.follow_requests": "Peticións de seguimento",
-  "column.home": "Inicio",
-  "column.lists": "Listas",
-  "column.mutes": "Usuarias acaladas",
+  "column.home": "Páxina inicial",
+  "column.lists": "Listaxes",
+  "column.mutes": "Usuarios silenciados",
   "column.notifications": "Notificacións",
-  "column.pins": "Mensaxes fixadas",
-  "column.public": "Liña temporal federada",
-  "column_back_button.label": "Atrás",
+  "column.pins": "Toots fixados",
+  "column.public": "Cronoloxía federada",
+  "column_back_button.label": "Voltar",
   "column_header.hide_settings": "Agochar axustes",
-  "column_header.moveLeft_settings": "Mover a columna hacia a esquerda",
-  "column_header.moveRight_settings": "Mover a columna hacia a dereita",
+  "column_header.moveLeft_settings": "Mover columna cara a esquerda",
+  "column_header.moveRight_settings": "Mover columna cara a dereita",
   "column_header.pin": "Fixar",
-  "column_header.show_settings": "Mostras axustes",
-  "column_header.unpin": "Soltar",
+  "column_header.show_settings": "Amosar axustes",
+  "column_header.unpin": "Desafixar",
   "column_subheading.settings": "Axustes",
-  "community.column_settings.media_only": "Só medios",
-  "compose_form.direct_message_warning": "Este toot enviarase só as usuarias mencionadas. Porén, a súa proveedora de internet e calquera das instancias receptoras poderían examinar esta mensaxe.",
+  "community.column_settings.media_only": "Só multimedia",
+  "compose_form.direct_message_warning": "Este toot só será enviado ós usuarios mencionados.",
   "compose_form.direct_message_warning_learn_more": "Coñecer máis",
-  "compose_form.hashtag_warning": "Esta mensaxe non será listada baixo ningunha etiqueta xa que está marcada como non listada. Só os toots públicos poden buscarse por etiquetas.",
-  "compose_form.lock_disclaimer": "A súa conta non está {locked}. Calquera pode seguila para ver as súas mensaxes só-para-seguidoras.",
+  "compose_form.hashtag_warning": "Este toot non se amosará baixo cancelos (hashtags) porque non é público. Só os toots públicos poden ser procurados por cancelos.",
+  "compose_form.lock_disclaimer": "A túa conta non está {locked}. Todos poden seguirche para ollar os teus toots só para seguidores.",
   "compose_form.lock_disclaimer.lock": "bloqueado",
-  "compose_form.placeholder": "Qué contas?",
+  "compose_form.placeholder": "En que estás a pensar?",
   "compose_form.poll.add_option": "Engadir unha opción",
-  "compose_form.poll.duration": "Duración da sondaxe",
+  "compose_form.poll.duration": "Duración da enquisa",
   "compose_form.poll.option_placeholder": "Opción {number}",
   "compose_form.poll.remove_option": "Eliminar esta opción",
+  "compose_form.poll.switch_to_multiple": "Mudar a enquisa para permitir múltiples escollas",
+  "compose_form.poll.switch_to_single": "Mudar a enquisa para permitir unha soa escolla",
   "compose_form.publish": "Toot",
   "compose_form.publish_loud": "{publish}!",
-  "compose_form.sensitive.hide": "Marcar medios como sensibles",
-  "compose_form.sensitive.marked": "Medios marcados como sensibles",
-  "compose_form.sensitive.unmarked": "Os medios non están marcados como sensibles",
+  "compose_form.sensitive.hide": "Marcar coma contido multimedia sensíbel",
+  "compose_form.sensitive.marked": "Contido multimedia marcado coma sensíbel",
+  "compose_form.sensitive.unmarked": "Contido multimedia non marcado coma sensíbel",
   "compose_form.spoiler.marked": "O texto está agochado tras un aviso",
   "compose_form.spoiler.unmarked": "O texto non está agochado",
-  "compose_form.spoiler_placeholder": "Escriba o aviso aquí",
-  "confirmation_modal.cancel": "Cancelar",
-  "confirmations.block.block_and_report": "Bloquear e Informar",
+  "compose_form.spoiler_placeholder": "Escribe o teu aviso aquí",
+  "confirmation_modal.cancel": "Desbotar",
+  "confirmations.block.block_and_report": "Bloquear e denunciar",
   "confirmations.block.confirm": "Bloquear",
-  "confirmations.block.message": "Está segura de querer bloquear a {name}?",
-  "confirmations.delete.confirm": "Borrar",
-  "confirmations.delete.message": "Está segura de que quere eliminar este estado?",
+  "confirmations.block.message": "Tes a certeza de querer bloquear a {name}?",
+  "confirmations.delete.confirm": "Eliminar",
+  "confirmations.delete.message": "Tes a certeza de querer eliminar este estado?",
   "confirmations.delete_list.confirm": "Eliminar",
-  "confirmations.delete_list.message": "Estás seguro de que queres eliminar permanentemente esta lista?",
-  "confirmations.domain_block.confirm": "Agochar un dominio completo",
-  "confirmations.domain_block.message": "Realmente está segura de que quere bloquear por completo o dominio {domain}? Normalmente é suficiente, e preferible, bloquear de xeito selectivo varios elementos. Non verá contidos de ese dominio en ningunha liña temporal ou nas notificacións. As súas seguidoras en ese dominio serán eliminadas.",
-  "confirmations.logout.confirm": "Desconectar",
-  "confirmations.logout.message": "Seguro que desexa desconectar?",
-  "confirmations.mute.confirm": "Acalar",
-  "confirmations.mute.explanation": "Esto ocultará as publicacións delas e as que as mencionen, pero poderán seguir lendo as túas publicacións e seguirte.",
-  "confirmations.mute.message": "Está segura de que quere acalar a {name}?",
+  "confirmations.delete_list.message": "Tes a certeza de querer eliminar de xeito permanente esta listaxe?",
+  "confirmations.domain_block.confirm": "Agochar dominio enteiro",
+  "confirmations.domain_block.message": "Tes a certeza de querer bloquear todo de {domain}? Na meirande parte dos casos uns bloqueos ou silenciados específicos son suficientes. Non verás máis o contido deste dominio en ningunha cronoloxía pública ou nas túas notificacións. Os teus seguidores deste dominio serán eliminados.",
+  "confirmations.logout.confirm": "Pechar sesión",
+  "confirmations.logout.message": "Desexas pechar a sesión?",
+  "confirmations.mute.confirm": "Silenciar",
+  "confirmations.mute.explanation": "Isto agochará as publicacións deles ou nas que os mencionen, mais permitirá que vexan as túas publicacións e sexan os teus seguidores.",
+  "confirmations.mute.message": "Tes a certeza de querer silenciar a {name}?",
   "confirmations.redraft.confirm": "Eliminar e reescribir",
-  "confirmations.redraft.message": "Está segura de querer eliminar este estado e voltalo a escribir? Perderá réplicas e favoritas, e as respostas ao orixinal quedarán orfas.",
+  "confirmations.redraft.message": "Tes a certeza de querer eliminar este estado e reescribilo? Perderás os compartidos e favoritos, e as respostas á publicación orixinal ficarán orfas.",
   "confirmations.reply.confirm": "Respostar",
-  "confirmations.reply.message": "Respostando agora sobreescribirá a mensaxe que está a compoñer. Segura de querer proceder?",
+  "confirmations.reply.message": "Respostar agora sobrescribirá a mensaxe que estás a compor. Tes a certeza de que queres continuar?",
   "confirmations.unfollow.confirm": "Deixar de seguir",
-  "confirmations.unfollow.message": "Quere deixar de seguir a {name}?",
+  "confirmations.unfollow.message": "Desexas deixar de seguir a {name}?",
   "conversation.delete": "Eliminar conversa",
   "conversation.mark_as_read": "Marcar como lido",
-  "conversation.open": "Ver conversa",
+  "conversation.open": "Ollar conversa",
   "conversation.with": "Con {names}",
-  "directory.federated": "Desde o fediverso coñecido",
-  "directory.local": "Só desde {domain}",
-  "directory.new_arrivals": "Novas achegas",
-  "directory.recently_active": "Activo recentemente",
-  "embed.instructions": "Copie o código inferior para incrustar no seu sitio web este estado.",
-  "embed.preview": "Así será mostrado:",
+  "directory.federated": "Do fediverso coñecido",
+  "directory.local": "Só de {domain}",
+  "directory.new_arrivals": "Recén chegados",
+  "directory.recently_active": "Activos recentemente",
+  "embed.instructions": "Engade este estado ó teu sitio web copiando o seguinte código.",
+  "embed.preview": "Así será amosado:",
   "emoji_button.activity": "Actividade",
-  "emoji_button.custom": "Persoalizado",
-  "emoji_button.flags": "Marcas",
-  "emoji_button.food": "Comida e Bebida",
-  "emoji_button.label": "Insertar emoji",
+  "emoji_button.custom": "Personalizado",
+  "emoji_button.flags": "Bandeiras",
+  "emoji_button.food": "Comida e bebida",
+  "emoji_button.label": "Inserir emoticona",
   "emoji_button.nature": "Natureza",
-  "emoji_button.not_found": "Sen emojos!! (╯°□°)╯︵ ┻━┻",
-  "emoji_button.objects": "Obxetos",
-  "emoji_button.people": "Xente",
-  "emoji_button.recent": "Utilizadas con frecuencia",
-  "emoji_button.search": "Buscar...",
-  "emoji_button.search_results": "Resultados da busca",
+  "emoji_button.not_found": "Non hai emoticonas!! (╯°□°)╯︵ ┻━┻",
+  "emoji_button.objects": "Obxectos",
+  "emoji_button.people": "Persoas",
+  "emoji_button.recent": "Empregadas acotío",
+  "emoji_button.search": "Procurar...",
+  "emoji_button.search_results": "Resultados da procura",
   "emoji_button.symbols": "Símbolos",
   "emoji_button.travel": "Viaxes e Lugares",
   "empty_column.account_timeline": "Sen toots por aquí!",
   "empty_column.account_unavailable": "Perfil non dispoñible",
   "empty_column.blocks": "Non bloqueou ningunha usuaria polo de agora.",
+  "empty_column.bookmarked_statuses": "Aínda non marcaches ningún toot. Cando o fagas, amosaranse aquí.",
   "empty_column.community": "A liña temporal local está baldeira. Escriba algo de xeito público para que rule!",
   "empty_column.direct": "Aínda non ten mensaxes directas. Cando envíe ou reciba unha, aparecerá aquí.",
   "empty_column.domain_blocks": "Aínda non  ocultou ningún dominio.",
@@ -163,267 +168,277 @@
   "federation.local_only.short": "Local-only",
   "follow_request.authorize": "Autorizar",
   "follow_request.reject": "Rexeitar",
-  "getting_started.developers": "Desenvolvedoras",
+  "getting_started.developers": "Desenvolvedores",
   "getting_started.directory": "Directorio do perfil",
   "getting_started.documentation": "Documentación",
-  "getting_started.heading": "Comezando",
-  "getting_started.invite": "Convide a xente",
-  "getting_started.open_source_notice": "Mastodon é software de código aberto. Pode contribuír ou informar de fallos en GitHub en {github}.",
-  "getting_started.security": "Seguridade",
+  "getting_started.heading": "Primeiros pasos",
+  "getting_started.invite": "Convidar persoas",
+  "getting_started.open_source_notice": "O Mastodon é software de código aberto. Podes contribuír ou informar de fallos no GitHub en {github}.",
+  "getting_started.security": "Seguranza",
   "getting_started.terms": "Termos do servizo",
   "hashtag.column_header.tag_mode.all": "e {additional}",
   "hashtag.column_header.tag_mode.any": "ou {additional}",
   "hashtag.column_header.tag_mode.none": "sen {additional}",
-  "hashtag.column_settings.select.no_options_message": "Non se atopan suxestións",
-  "hashtag.column_settings.select.placeholder": "Introducir etiquetas…",
-  "hashtag.column_settings.tag_mode.all": "Todos estos",
-  "hashtag.column_settings.tag_mode.any": "Calquera de estos",
-  "hashtag.column_settings.tag_mode.none": "Ningún de estos",
+  "hashtag.column_settings.select.no_options_message": "Non se atoparon suxestións",
+  "hashtag.column_settings.select.placeholder": "Inserir cancelos…",
+  "hashtag.column_settings.tag_mode.all": "Todos estes",
+  "hashtag.column_settings.tag_mode.any": "Calquera destes",
+  "hashtag.column_settings.tag_mode.none": "Ningún destes",
   "hashtag.column_settings.tag_toggle": "Incluír etiquetas adicionais para esta columna",
   "home.column_settings.basic": "Básico",
-  "home.column_settings.show_reblogs": "Mostrar repeticións",
-  "home.column_settings.show_replies": "Mostrar respostas",
+  "home.column_settings.show_reblogs": "Amosar compartidos",
+  "home.column_settings.show_replies": "Amosar respostas",
   "intervals.full.days": "{number, plural,one {# día} other {# días}}",
   "intervals.full.hours": "{number, plural, one {# hora} other {# horas}}",
   "intervals.full.minutes": "{number, plural, one {# minuto} other {# minutos}}",
   "introduction.federation.action": "Seguinte",
   "introduction.federation.federated.headline": "Federado",
-  "introduction.federation.federated.text": "Publicacións públicas desde outros servidores do fediverso aparecerán na liña temporal federada.",
-  "introduction.federation.home.headline": "Inicio",
-  "introduction.federation.home.text": "Publicacións de xente que vostede segue aparecerán no TL de Inicio. Pode seguir a calquera en calquer servidor!",
+  "introduction.federation.federated.text": "Publicacións públicas doutros servidores do fediverso aparecerán na cronoloxía federada.",
+  "introduction.federation.home.headline": "Páxina inicial",
+  "introduction.federation.home.text": "Publicacións de persoas que ti segues aparecerán na cronoloxía do inicio. Podes seguir calquera persoa en calquera servidor!",
   "introduction.federation.local.headline": "Local",
-  "introduction.federation.local.text": "Publicacións públicas de xente no seu mesmo servidor aparecerán na liña temporal local.",
+  "introduction.federation.local.text": "Publicacións públicas de persoas no teu mesmo servidor aparecerán na cronoloxía local.",
   "introduction.interactions.action": "Rematar titorial!",
   "introduction.interactions.favourite.headline": "Favorito",
-  "introduction.interactions.favourite.text": "Pode gardar un toot para máis tarde, e facerlle saber a autora que lle gustou, dándolle a Favorito.",
-  "introduction.interactions.reblog.headline": "Promocionar",
-  "introduction.interactions.reblog.text": "Pode compartir os toots de outra xente coas súas seguidoras promocionándoos.",
+  "introduction.interactions.favourite.text": "Podes gardar un toot para depois e facer saber ó autor que che gostou marcandoo coma favorito.",
+  "introduction.interactions.reblog.headline": "Compartir na cronoloxía",
+  "introduction.interactions.reblog.text": "Podes compartir os toots doutras persoas cos teus seguidores.",
   "introduction.interactions.reply.headline": "Respostar",
-  "introduction.interactions.reply.text": "Pode respostar aos toots de outras persoas e aos seus propios, así quedarán encadeados nunha conversa.",
+  "introduction.interactions.reply.text": "Podes respostar ós toots doutras persoas e ós teus propios, así ficarán encadeados nunha conversa.",
   "introduction.welcome.action": "Imos!",
   "introduction.welcome.headline": "Primeiros pasos",
-  "introduction.welcome.text": "Benvida ao fediverso! Nun intre poderá difundir mensaxes e falar cos seus amigos nun gran número de servidores. Pero este servidor (dominio) é especial—hospeda o seu perfil, así que lémbreo.",
-  "keyboard_shortcuts.back": "voltar atrás",
-  "keyboard_shortcuts.blocked": "abrir lista de usuarias bloqueadas",
-  "keyboard_shortcuts.boost": "promover",
-  "keyboard_shortcuts.column": "destacar un estado en unha das columnas",
-  "keyboard_shortcuts.compose": "Foco no área de escritura",
+  "introduction.welcome.text": "Benvido ó fediverso! Nun intre poderás difundir mensaxes e falar coas túas amizades nun grande número de servidores. Mais este servidor, {domain}, é especial—hospeda o teu perfil, por iso lémbrate do seu nome.",
+  "keyboard_shortcuts.back": "para voltar atrás",
+  "keyboard_shortcuts.blocked": "para abrir a listaxe de usuarios bloqueados",
+  "keyboard_shortcuts.boost": "para compartir na cronoloxía",
+  "keyboard_shortcuts.column": "para destacar un estado nunha das columnas",
+  "keyboard_shortcuts.compose": "para destacar a área de escritura",
   "keyboard_shortcuts.description": "Descrición",
-  "keyboard_shortcuts.direct": "abrir columna de mensaxes directas",
-  "keyboard_shortcuts.down": "ir hacia abaixo na lista",
-  "keyboard_shortcuts.enter": "abrir estado",
-  "keyboard_shortcuts.favourite": "marcar como favorito",
-  "keyboard_shortcuts.favourites": "abrir lista de favoritos",
-  "keyboard_shortcuts.federated": "abrir liña temporal federada",
+  "keyboard_shortcuts.direct": "para abrir a columna de mensaxes directas",
+  "keyboard_shortcuts.down": "para mover cara abaixo na listaxe",
+  "keyboard_shortcuts.enter": "para abrir estado",
+  "keyboard_shortcuts.favourite": "para engadir a favoritos",
+  "keyboard_shortcuts.favourites": "para abrir a listaxe dos favoritos",
+  "keyboard_shortcuts.federated": "para abrir a cronoloxía federada",
   "keyboard_shortcuts.heading": "Atallos do teclado",
-  "keyboard_shortcuts.home": "abrir liña temporal de inicio",
-  "keyboard_shortcuts.hotkey": "Tecla de acceso directo",
-  "keyboard_shortcuts.legend": "para mostrar esta lenda",
-  "keyboard_shortcuts.local": "abrir liña temporal local",
-  "keyboard_shortcuts.mention": "para mencionar o autor",
-  "keyboard_shortcuts.muted": "abrir lista de usuarias acaladas",
-  "keyboard_shortcuts.my_profile": "abrir o seu perfil",
-  "keyboard_shortcuts.notifications": "abrir columna de notificacións",
-  "keyboard_shortcuts.pinned": "abrir lista de toots fixados",
-  "keyboard_shortcuts.profile": "abrir perfil da autora",
-  "keyboard_shortcuts.reply": "para responder",
-  "keyboard_shortcuts.requests": "abrir lista de peticións de seguimento",
-  "keyboard_shortcuts.search": "para centrar a busca",
-  "keyboard_shortcuts.start": "abrir columna \"comezando\"",
-  "keyboard_shortcuts.toggle_hidden": "mostrar/agochar un texto detrás do AC",
-  "keyboard_shortcuts.toggle_sensitivity": "mostrar/ocultar medios",
-  "keyboard_shortcuts.toot": "escribir un toot novo",
-  "keyboard_shortcuts.unfocus": "quitar o foco do área de escritura/busca",
-  "keyboard_shortcuts.up": "ir hacia arriba na lista",
+  "keyboard_shortcuts.home": "para abrir a cronoloxía inicial",
+  "keyboard_shortcuts.hotkey": "Tecla de atallo",
+  "keyboard_shortcuts.legend": "para amosar esta lenda",
+  "keyboard_shortcuts.local": "para abrir a cronoloxía local",
+  "keyboard_shortcuts.mention": "para mencionar ó autor",
+  "keyboard_shortcuts.muted": "para abrir a listaxe dos usuarios silenciados",
+  "keyboard_shortcuts.my_profile": "para abrir o teu perfil",
+  "keyboard_shortcuts.notifications": "para abrir a columna das notificacións",
+  "keyboard_shortcuts.open_media": "para abrir o contido multimedia",
+  "keyboard_shortcuts.pinned": "para abrir a listaxe dos toots fixados",
+  "keyboard_shortcuts.profile": "para abrir o perfil do autor",
+  "keyboard_shortcuts.reply": "para respostar",
+  "keyboard_shortcuts.requests": "para abrir a listaxe das peticións de seguimento",
+  "keyboard_shortcuts.search": "para destacar a procura",
+  "keyboard_shortcuts.start": "para abrir a columna dos \"primeiros pasos\"",
+  "keyboard_shortcuts.toggle_hidden": "para amosar/agochar texto detrás do aviso de contido (AC)",
+  "keyboard_shortcuts.toggle_sensitivity": "para amosar/agochar contido multimedia",
+  "keyboard_shortcuts.toot": "para escribir un novo toot",
+  "keyboard_shortcuts.unfocus": "para deixar de destacar a área de escritura/procura",
+  "keyboard_shortcuts.up": "para mover cara arriba na listaxe",
   "lightbox.close": "Fechar",
   "lightbox.next": "Seguinte",
   "lightbox.previous": "Anterior",
-  "lightbox.view_context": "Ver contexto",
-  "lists.account.add": "Engadir á lista",
-  "lists.account.remove": "Eliminar da lista",
-  "lists.delete": "Eliminar lista",
-  "lists.edit": "Editar lista",
-  "lists.edit.submit": "Cambiar título",
-  "lists.new.create": "Engadir lista",
-  "lists.new.title_placeholder": "Novo título da lista",
-  "lists.search": "Procurar entre a xente que segues",
-  "lists.subheading": "As túas listas",
+  "lightbox.view_context": "Ollar contexto",
+  "lists.account.add": "Engadir á listaxe",
+  "lists.account.remove": "Eliminar da listaxe",
+  "lists.delete": "Eliminar listaxe",
+  "lists.edit": "Editar listaxe",
+  "lists.edit.submit": "Mudar o título",
+  "lists.new.create": "Engadir listaxe",
+  "lists.new.title_placeholder": "Título da nova listaxe",
+  "lists.search": "Procurar entre as persoas que segues",
+  "lists.subheading": "As túas listaxes",
   "load_pending": "{count, plural, one {# novo elemento} other {# novos elementos}}",
-  "loading_indicator.label": "Cargando...",
-  "media_gallery.toggle_visible": "Ocultar",
+  "loading_indicator.label": "Estase a cargar...",
+  "media_gallery.toggle_visible": "Trocar visibilidade",
   "missing_indicator.label": "Non atopado",
-  "missing_indicator.sublabel": "Non se puido atopar o recurso",
-  "mute_modal.hide_notifications": "Esconder notificacións deste usuario?",
-  "navigation_bar.apps": "Apps móbiles",
-  "navigation_bar.blocks": "Usuarias bloqueadas",
-  "navigation_bar.community_timeline": "Liña temporal local",
-  "navigation_bar.compose": "Escribir novo toot",
+  "missing_indicator.sublabel": "Este recurso non foi atopado",
+  "mute_modal.hide_notifications": "Agochar notificacións deste usuario?",
+  "navigation_bar.apps": "Aplicacións móbiles",
+  "navigation_bar.blocks": "Usuarios bloqueados",
+  "navigation_bar.bookmarks": "Marcadores",
+  "navigation_bar.community_timeline": "Cronoloxía local",
+  "navigation_bar.compose": "Escribir un novo toot",
   "navigation_bar.direct": "Mensaxes directas",
   "navigation_bar.discover": "Descubrir",
   "navigation_bar.domain_blocks": "Dominios agochados",
   "navigation_bar.edit_profile": "Editar perfil",
-  "navigation_bar.favourites": "Favoritas",
-  "navigation_bar.filters": "Palabras acaladas",
+  "navigation_bar.favourites": "Favoritos",
+  "navigation_bar.filters": "Palabras silenciadas",
   "navigation_bar.follow_requests": "Peticións de seguimento",
-  "navigation_bar.follows_and_followers": "Seguindo e seguidoras",
+  "navigation_bar.follows_and_followers": "Seguindo e seguidores",
   "navigation_bar.info": "Sobre este servidor",
-  "navigation_bar.keyboard_shortcuts": "Atallos",
-  "navigation_bar.lists": "Listas",
-  "navigation_bar.logout": "Sair",
-  "navigation_bar.mutes": "Usuarias acaladas",
+  "navigation_bar.keyboard_shortcuts": "Atallos do teclado",
+  "navigation_bar.lists": "Listaxes",
+  "navigation_bar.logout": "Pechar sesión",
+  "navigation_bar.mutes": "Usuarios silenciados",
   "navigation_bar.personal": "Persoal",
-  "navigation_bar.pins": "Mensaxes fixadas",
+  "navigation_bar.pins": "Toots fixados",
   "navigation_bar.preferences": "Preferencias",
-  "navigation_bar.public_timeline": "Liña temporal federada",
-  "navigation_bar.security": "Seguridade",
-  "notification.favourite": "{name} marcou como favorito o seu estado",
-  "notification.follow": "{name} está a seguila",
+  "navigation_bar.public_timeline": "Cronoloxía federada",
+  "navigation_bar.security": "Seguranza",
+  "notification.favourite": "{name} marcou o teu estado coma favorito",
+  "notification.follow": "{name} comezou a seguirte",
+  "notification.follow_request": "{name} solicitou seguirte",
   "notification.mention": "{name} mencionoute",
-  "notification.poll": "Unha sondaxe na que votou xa rematou",
-  "notification.reblog": "{name} promoveu o seu estado",
+  "notification.own_poll": "A túa enquisa rematou",
+  "notification.poll": "Unha enquisa na que votaches rematou",
+  "notification.reblog": "{name} compartiu o teu estado",
   "notifications.clear": "Limpar notificacións",
-  "notifications.clear_confirmation": "Estás seguro de que queres limpar permanentemente todas as túas notificacións?",
+  "notifications.clear_confirmation": "Tes a certeza de querer limpar de xeito permanente todas as túas notificacións?",
   "notifications.column_settings.alert": "Notificacións de escritorio",
-  "notifications.column_settings.favourite": "Favoritas:",
-  "notifications.column_settings.filter_bar.advanced": "Mostrar todas as categorías",
+  "notifications.column_settings.favourite": "Favoritos:",
+  "notifications.column_settings.filter_bar.advanced": "Amosar todas as categorías",
   "notifications.column_settings.filter_bar.category": "Barra de filtrado rápido",
-  "notifications.column_settings.filter_bar.show": "Mostrar",
+  "notifications.column_settings.filter_bar.show": "Amosar",
   "notifications.column_settings.follow": "Novos seguidores:",
+  "notifications.column_settings.follow_request": "Novas peticións de seguimento:",
   "notifications.column_settings.mention": "Mencións:",
-  "notifications.column_settings.poll": "Resultados da sondaxe:",
-  "notifications.column_settings.push": "Enviar notificacións",
-  "notifications.column_settings.reblog": "Promocións:",
-  "notifications.column_settings.show": "Mostrar en columna",
+  "notifications.column_settings.poll": "Resultados da enquisa:",
+  "notifications.column_settings.push": "Notificacións emerxentes",
+  "notifications.column_settings.reblog": "Compartidos:",
+  "notifications.column_settings.show": "Amosar en columna",
   "notifications.column_settings.sound": "Reproducir son",
   "notifications.filter.all": "Todo",
-  "notifications.filter.boosts": "Promocións",
+  "notifications.filter.boosts": "Compartidos",
   "notifications.filter.favourites": "Favoritos",
   "notifications.filter.follows": "Seguimentos",
   "notifications.filter.mentions": "Mencións",
-  "notifications.filter.polls": "Resultados da sondaxe",
+  "notifications.filter.polls": "Resultados da enquisa",
   "notifications.group": "{count} notificacións",
   "poll.closed": "Pechado",
   "poll.refresh": "Actualizar",
   "poll.total_people": "{count, plural,one {# persoa}other {# persoas}}",
   "poll.total_votes": "{count, plural, one {# voto} outros {# votos}}",
   "poll.vote": "Votar",
-  "poll.voted": "Votou por esta opción",
-  "poll_button.add_poll": "Engadir sondaxe",
-  "poll_button.remove_poll": "Eliminar sondaxe",
-  "privacy.change": "Axustar a intimidade do estado",
-  "privacy.direct.long": "Enviar exclusivamente as usuarias mencionadas",
-  "privacy.direct.short": "Directa",
-  "privacy.private.long": "Enviar só as seguidoras",
-  "privacy.private.short": "Só-seguidoras",
-  "privacy.public.long": "Publicar na liña temporal pública",
-  "privacy.public.short": "Pública",
-  "privacy.unlisted.long": "Non publicar en liñas temporais públicas",
-  "privacy.unlisted.short": "Non listada",
+  "poll.voted": "Votaches por esta opción",
+  "poll_button.add_poll": "Engadir unha enquisa",
+  "poll_button.remove_poll": "Eliminar enquisa",
+  "privacy.change": "Axustar privacidade",
+  "privacy.direct.long": "Só para os usuarios mencionados",
+  "privacy.direct.short": "Directo",
+  "privacy.private.long": "Só para os seguidores",
+  "privacy.private.short": "Só seguidores",
+  "privacy.public.long": "Publicar nas cronoloxías públicas",
+  "privacy.public.short": "Público",
+  "privacy.unlisted.long": "Non publicar nas cronoloxías públicas",
+  "privacy.unlisted.short": "Non listado",
   "refresh": "Actualizar",
-  "regeneration_indicator.label": "Cargando…",
-  "regeneration_indicator.sublabel": "Estase a preparar a súa liña temporal de inicio!",
+  "regeneration_indicator.label": "Estase a cargar…",
+  "regeneration_indicator.sublabel": "Estase a preparar a túa cronoloxía de inicio!",
   "relative_time.days": "{number}d",
   "relative_time.hours": "{number}h",
   "relative_time.just_now": "agora",
   "relative_time.minutes": "{number}m",
   "relative_time.seconds": "{number}s",
-  "reply_indicator.cancel": "Cancelar",
+  "reply_indicator.cancel": "Desbotar",
   "report.forward": "Reenviar a {target}",
-  "report.forward_hint": "A conta pertence a outro servidor. Enviar unha copia anónima do informe alí tamén?",
-  "report.hint": "O informe enviarase a moderación do seu servidor. Abaixo pode explicar a razón pola que está a informar:",
+  "report.forward_hint": "A conta é doutro servidor. Enviar unha copia anónima da denuncia aló tamén?",
+  "report.hint": "A denuncia enviarase á moderación do teu servidor. Abaixo podes explicar a razón pola que estás a denunciar:",
   "report.placeholder": "Comentarios adicionais",
   "report.submit": "Enviar",
-  "report.target": "Informar {target}",
-  "search.placeholder": "Buscar",
-  "search_popout.search_format": "Formato de busca avanzada",
-  "search_popout.tips.full_text": "Texto simple devolve estados que vostede escribeu, promoveu, marcou favoritos, ou foi mencionada, así como nomes de usuaria coincidentes, nomes públicos e etiquetas.",
-  "search_popout.tips.hashtag": "etiqueta",
+  "report.target": "Denunciar a {target}",
+  "search.placeholder": "Procurar",
+  "search_popout.search_format": "Formato de procura avanzada",
+  "search_popout.tips.full_text": "Texto sinxelo que devolve estados que ti escribiches, compartiches, marcaches favorito, ou foches mencionado, así como nomes de usuario coincidentes, nomes públicos e cancelos.",
+  "search_popout.tips.hashtag": "cancelo",
   "search_popout.tips.status": "estado",
-  "search_popout.tips.text": "Texto simple devolve coincidencias con nomes públicos, nomes de usuaria e etiquetas",
-  "search_popout.tips.user": "usuaria",
-  "search_results.accounts": "Xente",
-  "search_results.hashtags": "Etiquetas",
+  "search_popout.tips.text": "Texto sinxelo que devolve coincidencias con nomes públicos, nomes de usuario e cancelos",
+  "search_popout.tips.user": "usuario",
+  "search_results.accounts": "Persoas",
+  "search_results.hashtags": "Cancelos",
   "search_results.statuses": "Toots",
-  "search_results.statuses_fts_disabled": "Non está activada neste servidor Mastodon a busca de toots polo seu contido.",
-  "search_results.total": "{count, number} {count,plural,one {result} outros {results}}",
+  "search_results.statuses_fts_disabled": "Procurar toots polo seu contido non está activado neste servidor do Mastodon.",
+  "search_results.total": "{count, number} {count, plural, one {resultado} other {resultados}}",
   "status.admin_account": "Abrir interface de moderación para @{name}",
   "status.admin_status": "Abrir este estado na interface de moderación",
   "status.block": "Bloquear @{name}",
-  "status.cancel_reblog_private": "Non promover",
-  "status.cannot_reblog": "Esta mensaxe non pode ser promovida",
-  "status.copy": "Copiar ligazón ao estado",
+  "status.bookmark": "Marcar",
+  "status.cancel_reblog_private": "Desfacer compartido",
+  "status.cannot_reblog": "Esta publicación non pode ser compartida",
+  "status.copy": "Copiar ligazón ó estado",
   "status.delete": "Eliminar",
   "status.detailed_status": "Vista detallada da conversa",
   "status.direct": "Mensaxe directa @{name}",
-  "status.embed": "Incrustar",
-  "status.favourite": "Favorita",
+  "status.embed": "Embeber nunha web",
+  "status.favourite": "Favorito",
   "status.filtered": "Filtrado",
   "status.load_more": "Cargar máis",
   "status.local_only": "This post is only visible by other users of your instance",
   "status.media_hidden": "Medios ocultos",
   "status.mention": "Mencionar @{name}",
   "status.more": "Máis",
-  "status.mute": "Acalar @{name}",
-  "status.mute_conversation": "Acalar conversa",
+  "status.mute": "Silenciar @{name}",
+  "status.mute_conversation": "Silenciar conversa",
   "status.open": "Expandir este estado",
   "status.pin": "Fixar no perfil",
   "status.pinned": "Toot fixado",
-  "status.read_more": "Lea máis",
-  "status.reblog": "Promover",
-  "status.reblog_private": "Promover a audiencia orixinal",
-  "status.reblogged_by": "{name} promoveu",
-  "status.reblogs.empty": "Ninguén promoveu este toot polo de agora. Cando alguén o faga, mostraránse aquí.",
-  "status.redraft": "Eliminar & reescribir",
-  "status.reply": "Resposta",
-  "status.replyAll": "Resposta a conversa",
-  "status.report": "Informar @{name}",
-  "status.sensitive_warning": "Contido sensible",
+  "status.read_more": "Ler máis",
+  "status.reblog": "Compartir",
+  "status.reblog_private": "Compartir á audiencia orixinal",
+  "status.reblogged_by": "{name} compartiu",
+  "status.reblogs.empty": "Aínda ninguén compartiu este toot. Cando alguén o faga, amosarase aquí.",
+  "status.redraft": "Eliminar e reescribir",
+  "status.remove_bookmark": "Eliminar marcador",
+  "status.reply": "Respostar",
+  "status.replyAll": "Respostar ó fío",
+  "status.report": "Denunciar @{name}",
+  "status.sensitive_warning": "Contido sensíbel",
   "status.share": "Compartir",
-  "status.show_less": "Mostrar menos",
-  "status.show_less_all": "Mostrar menos para todas",
-  "status.show_more": "Mostrar máis",
-  "status.show_more_all": "Mostrar máis para todas",
-  "status.show_thread": "Mostrar fío",
-  "status.uncached_media_warning": "Non dispoñible",
-  "status.unmute_conversation": "Non acalar a conversa",
-  "status.unpin": "Despegar do perfil",
+  "status.show_less": "Amosar menos",
+  "status.show_less_all": "Amosar menos para todos",
+  "status.show_more": "Amosar máis",
+  "status.show_more_all": "Amosar máis para todos",
+  "status.show_thread": "Amosar fío",
+  "status.uncached_media_warning": "Non dispoñíbel",
+  "status.unmute_conversation": "Deixar de silenciar conversa",
+  "status.unpin": "Desafixar do perfil",
   "suggestions.dismiss": "Rexeitar suxestión",
-  "suggestions.header": "Podería estar interesada en…",
-  "tabs_bar.federated_timeline": "Federado",
+  "suggestions.header": "Poderíache interesar…",
+  "tabs_bar.federated_timeline": "Federada",
   "tabs_bar.home": "Inicio",
   "tabs_bar.local_timeline": "Local",
   "tabs_bar.notifications": "Notificacións",
-  "tabs_bar.search": "Buscar",
-  "time_remaining.days": "{number, plural, one {# dia} other {# días}} restantes",
+  "tabs_bar.search": "Procurar",
+  "time_remaining.days": "{number, plural, one {# día} other {# días}} restantes",
   "time_remaining.hours": "{number, plural, one {# hora} other {# horas}} restantes",
   "time_remaining.minutes": "{number, plural, one {# minuto} other {# minutos}} restantes",
-  "time_remaining.moments": "Está rematando",
+  "time_remaining.moments": "Momentos restantes",
   "time_remaining.seconds": "{number, plural, one {# segundo} other {# segundos}} restantes",
-  "trends.count_by_accounts": "{count} {rawCount, plural, one {person} outras {people}} conversando",
+  "trends.count_by_accounts": "{count} {rawCount, plural, one {persoa} other {persoas}} falando",
   "trends.trending_now": "Tendencias actuais",
-  "ui.beforeunload": "O borrador perderase se sae de Mastodon.",
-  "upload_area.title": "Arrastre e solte para subir",
-  "upload_button.label": "Engadir medios ({formats})",
-  "upload_error.limit": "Excedeu o límite de subida de ficheiros.",
-  "upload_error.poll": "Non se poden subir ficheiros nas sondaxes.",
-  "upload_form.description": "Describa para deficientes visuais",
+  "ui.beforeunload": "O borrador perderase se saes do Mastodon.",
+  "upload_area.title": "Arrastra e solta para subir",
+  "upload_button.label": "Engadir multimedia ({formats})",
+  "upload_error.limit": "Límite máximo do ficheiro a subir excedido.",
+  "upload_error.poll": "Non se poden subir ficheiros nas enquisas.",
+  "upload_form.audio_description": "Describir para persoas con problemas auditivos",
+  "upload_form.description": "Describir para persoas con problemas visuais",
   "upload_form.edit": "Editar",
   "upload_form.undo": "Eliminar",
-  "upload_modal.analyzing_picture": "Analizando imaxe…",
+  "upload_form.video_description": "Describir para persoas con problemas visuais ou auditivos",
+  "upload_modal.analyzing_picture": "Estase a analizar a imaxe…",
   "upload_modal.apply": "Aplicar",
-  "upload_modal.description_placeholder": "Un raposo moi feitiño salta sobre o can preguiceiro",
+  "upload_modal.description_placeholder": "Un raposo veloz brinca sobre o can preguiceiro",
   "upload_modal.detect_text": "Detectar texto na imaxe",
-  "upload_modal.edit_media": "Editar medios",
-  "upload_modal.hint": "Prema ou arrastre o círculo na vista previa para escolle o punto focal que se verá na vista de todas as miniaturas.",
+  "upload_modal.edit_media": "Editar multimedia",
+  "upload_modal.hint": "Preme ou arrastra o círculo na vista previa para escoller o punto focal que sempre estará á vista en todas as miniaturas.",
   "upload_modal.preview_label": "Vista previa ({ratio})",
-  "upload_progress.label": "Subindo...",
-  "video.close": "Pechar video",
+  "upload_progress.label": "Estase a subir...",
+  "video.close": "Pechar vídeo",
+  "video.download": "Baixar ficheiro",
   "video.exit_fullscreen": "Saír da pantalla completa",
   "video.expand": "Expandir vídeo",
   "video.fullscreen": "Pantalla completa",
   "video.hide": "Agochar vídeo",
-  "video.mute": "Acalar son",
-  "video.pause": "Pausar",
+  "video.mute": "Silenciar son",
+  "video.pause": "Deter",
   "video.play": "Reproducir",
   "video.unmute": "Permitir son"
 }
diff --git a/app/javascript/mastodon/locales/he.json b/app/javascript/mastodon/locales/he.json
index 81912477d9a5cd05002c51c86f3fb6e75f8af570..891b34f93c3e406cdbc5b786b2a63583e1a7be50 100644
--- a/app/javascript/mastodon/locales/he.json
+++ b/app/javascript/mastodon/locales/he.json
@@ -1,6 +1,7 @@
 {
   "account.add_or_remove_from_list": "הוסף או הסר מהרשימות",
   "account.badges.bot": "בוט",
+  "account.badges.group": "Group",
   "account.block": "חסימת @{name}",
   "account.block_domain": "להסתיר הכל מהקהילה {domain}",
   "account.blocked": "חסום",
@@ -51,6 +52,7 @@
   "bundle_modal_error.message": "משהו השתבש בעת טעינת הרכיב הזה.",
   "bundle_modal_error.retry": "לנסות שוב",
   "column.blocks": "חסימות",
+  "column.bookmarks": "Bookmarks",
   "column.community": "ציר זמן מקומי",
   "column.direct": "Direct messages",
   "column.directory": "Browse profiles",
@@ -82,6 +84,8 @@
   "compose_form.poll.duration": "Poll duration",
   "compose_form.poll.option_placeholder": "Choice {number}",
   "compose_form.poll.remove_option": "Remove this choice",
+  "compose_form.poll.switch_to_multiple": "Change poll to allow multiple choices",
+  "compose_form.poll.switch_to_single": "Change poll to allow for a single choice",
   "compose_form.publish": "ללחוש",
   "compose_form.publish_loud": "לחצרץ!",
   "compose_form.sensitive.hide": "Mark media as sensitive",
@@ -138,6 +142,7 @@
   "empty_column.account_timeline": "No toots here!",
   "empty_column.account_unavailable": "Profile unavailable",
   "empty_column.blocks": "You haven't blocked any users yet.",
+  "empty_column.bookmarked_statuses": "You don't have any bookmarked toots yet. When you bookmark one, it will show up here.",
   "empty_column.community": "טור הסביבה ריק. יש לפרסם משהו כדי שדברים יתרחילו להתגלגל!",
   "empty_column.direct": "You don't have any direct messages yet. When you send or receive one, it will show up here.",
   "empty_column.domain_blocks": "There are no hidden domains yet.",
@@ -224,6 +229,7 @@
   "keyboard_shortcuts.muted": "to open muted users list",
   "keyboard_shortcuts.my_profile": "to open your profile",
   "keyboard_shortcuts.notifications": "to open notifications column",
+  "keyboard_shortcuts.open_media": "to open media",
   "keyboard_shortcuts.pinned": "to open pinned toots list",
   "keyboard_shortcuts.profile": "to open author's profile",
   "keyboard_shortcuts.reply": "לענות",
@@ -256,6 +262,7 @@
   "mute_modal.hide_notifications": "להסתיר הודעות מחשבון זה?",
   "navigation_bar.apps": "Mobile apps",
   "navigation_bar.blocks": "חסימות",
+  "navigation_bar.bookmarks": "Bookmarks",
   "navigation_bar.community_timeline": "ציר זמן מקומי",
   "navigation_bar.compose": "Compose new toot",
   "navigation_bar.direct": "Direct messages",
@@ -278,7 +285,9 @@
   "navigation_bar.security": "Security",
   "notification.favourite": "חצרוצך חובב על ידי {name}",
   "notification.follow": "{name} במעקב אחרייך",
+  "notification.follow_request": "{name} has requested to follow you",
   "notification.mention": "אוזכרת על ידי {name}",
+  "notification.own_poll": "Your poll has ended",
   "notification.poll": "A poll you have voted in has ended",
   "notification.reblog": "חצרוצך הודהד על ידי {name}",
   "notifications.clear": "הסרת התראות",
@@ -289,6 +298,7 @@
   "notifications.column_settings.filter_bar.category": "Quick filter bar",
   "notifications.column_settings.filter_bar.show": "Show",
   "notifications.column_settings.follow": "עוקבים חדשים:",
+  "notifications.column_settings.follow_request": "New follow requests:",
   "notifications.column_settings.mention": "פניות:",
   "notifications.column_settings.poll": "Poll results:",
   "notifications.column_settings.push": "הודעות בדחיפה",
@@ -349,6 +359,7 @@
   "status.admin_account": "Open moderation interface for @{name}",
   "status.admin_status": "Open this status in the moderation interface",
   "status.block": "Block @{name}",
+  "status.bookmark": "Bookmark",
   "status.cancel_reblog_private": "Unboost",
   "status.cannot_reblog": "לא ניתן להדהד הודעה זו",
   "status.copy": "Copy link to status",
@@ -374,6 +385,7 @@
   "status.reblogged_by": "הודהד על ידי {name}",
   "status.reblogs.empty": "No one has boosted this toot yet. When someone does, they will show up here.",
   "status.redraft": "Delete & re-draft",
+  "status.remove_bookmark": "Remove bookmark",
   "status.reply": "תגובה",
   "status.replyAll": "תגובה לכולם",
   "status.report": "דיווח על @{name}",
@@ -406,9 +418,11 @@
   "upload_button.label": "הוספת מדיה",
   "upload_error.limit": "File upload limit exceeded.",
   "upload_error.poll": "File upload not allowed with polls.",
+  "upload_form.audio_description": "Describe for people with hearing loss",
   "upload_form.description": "תיאור לכבדי ראיה",
   "upload_form.edit": "Edit",
   "upload_form.undo": "ביטול",
+  "upload_form.video_description": "Describe for people with hearing loss or visual impairment",
   "upload_modal.analyzing_picture": "Analyzing picture…",
   "upload_modal.apply": "Apply",
   "upload_modal.description_placeholder": "A quick brown fox jumps over the lazy dog",
@@ -418,6 +432,7 @@
   "upload_modal.preview_label": "Preview ({ratio})",
   "upload_progress.label": "עולה...",
   "video.close": "סגירת וידאו",
+  "video.download": "Download file",
   "video.exit_fullscreen": "יציאה ממסך מלא",
   "video.expand": "להרחיב וידאו",
   "video.fullscreen": "Full screen",
diff --git a/app/javascript/mastodon/locales/hi.json b/app/javascript/mastodon/locales/hi.json
index 325b64dc4220ae521d8d2b17be81b02733b953b1..bfa1c9c129254ba81a024bc0df3df32a849e3870 100644
--- a/app/javascript/mastodon/locales/hi.json
+++ b/app/javascript/mastodon/locales/hi.json
@@ -1,153 +1,158 @@
 {
-  "account.add_or_remove_from_list": "Add or Remove from lists",
-  "account.badges.bot": "Bot",
-  "account.block": "Block @{name}",
-  "account.block_domain": "Hide everything from {domain}",
-  "account.blocked": "Blocked",
-  "account.cancel_follow_request": "Cancel follow request",
-  "account.direct": "Direct message @{name}",
-  "account.domain_blocked": "Domain hidden",
-  "account.edit_profile": "Edit profile",
-  "account.endorse": "Feature on profile",
-  "account.follow": "Follow",
-  "account.followers": "Followers",
-  "account.followers.empty": "No one follows this user yet.",
-  "account.follows": "Follows",
-  "account.follows.empty": "This user doesn't follow anyone yet.",
-  "account.follows_you": "Follows you",
-  "account.hide_reblogs": "Hide boosts from @{name}",
-  "account.last_status": "Last active",
-  "account.link_verified_on": "Ownership of this link was checked on {date}",
-  "account.locked_info": "This account privacy status is set to locked. The owner manually reviews who can follow them.",
-  "account.media": "Media",
-  "account.mention": "Mention @{name}",
-  "account.moved_to": "{name} has moved to:",
-  "account.mute": "Mute @{name}",
-  "account.mute_notifications": "Mute notifications from @{name}",
-  "account.muted": "Muted",
-  "account.never_active": "Never",
-  "account.posts": "Toots",
-  "account.posts_with_replies": "Toots and replies",
-  "account.report": "Report @{name}",
-  "account.requested": "Awaiting approval. Click to cancel follow request",
-  "account.share": "Share @{name}'s profile",
-  "account.show_reblogs": "Show boosts from @{name}",
-  "account.unblock": "Unblock @{name}",
-  "account.unblock_domain": "Unhide {domain}",
-  "account.unendorse": "Don't feature on profile",
-  "account.unfollow": "Unfollow",
-  "account.unmute": "Unmute @{name}",
-  "account.unmute_notifications": "Unmute notifications from @{name}",
-  "alert.rate_limited.message": "Please retry after {retry_time, time, medium}.",
-  "alert.rate_limited.title": "Rate limited",
-  "alert.unexpected.message": "An unexpected error occurred.",
-  "alert.unexpected.title": "Oops!",
-  "autosuggest_hashtag.per_week": "{count} per week",
-  "boost_modal.combo": "You can press {combo} to skip this next time",
-  "bundle_column_error.body": "Something went wrong while loading this component.",
-  "bundle_column_error.retry": "Try again",
-  "bundle_column_error.title": "Network error",
-  "bundle_modal_error.close": "Close",
-  "bundle_modal_error.message": "Something went wrong while loading this component.",
-  "bundle_modal_error.retry": "Try again",
-  "column.blocks": "Blocked users",
-  "column.community": "Local timeline",
-  "column.direct": "Direct messages",
-  "column.directory": "Browse profiles",
-  "column.domain_blocks": "Hidden domains",
-  "column.favourites": "Favourites",
-  "column.follow_requests": "Follow requests",
-  "column.home": "Home",
-  "column.lists": "Lists",
-  "column.mutes": "Muted users",
-  "column.notifications": "Notifications",
-  "column.pins": "Pinned toot",
-  "column.public": "Federated timeline",
-  "column_back_button.label": "Back",
-  "column_header.hide_settings": "Hide settings",
-  "column_header.moveLeft_settings": "Move column to the left",
-  "column_header.moveRight_settings": "Move column to the right",
-  "column_header.pin": "Pin",
-  "column_header.show_settings": "Show settings",
-  "column_header.unpin": "Unpin",
-  "column_subheading.settings": "Settings",
-  "community.column_settings.media_only": "Media Only",
+  "account.add_or_remove_from_list": "सूची में जोड़ें या हटाए",
+  "account.badges.bot": "बॉट",
+  "account.badges.group": "Group",
+  "account.block": "@{name} को ब्लॉक करें",
+  "account.block_domain": "{domain} के सारी चीज़े छुपाएं",
+  "account.blocked": "ब्लॉक",
+  "account.cancel_follow_request": "फ़ॉलो रिक्वेस्ट रद्द करें",
+  "account.direct": "प्रत्यक्ष संदेश @{name}",
+  "account.domain_blocked": "छिपा हुआ डोमेन",
+  "account.edit_profile": "प्रोफ़ाइल संपादित करें",
+  "account.endorse": "प्रोफ़ाइल पर दिखाए",
+  "account.follow": "फॉलो करें",
+  "account.followers": "फॉलोवर",
+  "account.followers.empty": "कोई भी इस यूज़र् को फ़ॉलो नहीं करता है",
+  "account.follows": "फॉलो करें",
+  "account.follows.empty": "यह यूज़र् अभी तक किसी को फॉलो नहीं करता है।",
+  "account.follows_you": "आपको फॉलो करता है",
+  "account.hide_reblogs": "@{name} के बूस्ट छुपाएं",
+  "account.last_status": "अंतिम सक्रिय",
+  "account.link_verified_on": "इस लिंक का स्वामित्व {date} को चेक किया गया था",
+  "account.locked_info": "यह खाता गोपनीयता स्थिति लॉक करने के लिए सेट है। मालिक मैन्युअल रूप से समीक्षा करता है कि कौन उनको फॉलो कर सकता है।",
+  "account.media": "मीडिया",
+  "account.mention": "उल्लेख @{name}",
+  "account.moved_to": "{name} स्थानांतरित हो गया:",
+  "account.mute": "म्यूट @{name}",
+  "account.mute_notifications": "@{name} के नोटिफिकेशन म्यूट करे",
+  "account.muted": "म्यूट है",
+  "account.never_active": "कभी नहीं दिखे",
+  "account.posts": "टूट्स",
+  "account.posts_with_replies": "टूट्स एवं जवाब",
+  "account.report": "रिपोर्ट @{name}",
+  "account.requested": "मंजूरी का इंतजार। फॉलो रिक्वेस्ट को रद्द करने के लिए क्लिक करें",
+  "account.share": "@{name} की प्रोफाइल शेयर करे",
+  "account.show_reblogs": "@{name} के बूस्ट दिखाए",
+  "account.unblock": "@{name} को अनब्लॉक करें",
+  "account.unblock_domain": "{domain} दिखाए",
+  "account.unendorse": "प्रोफ़ाइल पर न दिखाए",
+  "account.unfollow": "अनफॉलो करें",
+  "account.unmute": "अनम्यूट @{name}",
+  "account.unmute_notifications": "@{name} के नोटिफिकेशन अनम्यूट करे",
+  "alert.rate_limited.message": "कृप्या {retry_time, time, medium} के बाद दुबारा कोशिश करें",
+  "alert.rate_limited.title": "सीमित दर",
+  "alert.unexpected.message": "एक अप्रत्याशित त्रुटि हुई है!",
+  "alert.unexpected.title": "उफ़!",
+  "autosuggest_hashtag.per_week": "{count} हर सप्ताह",
+  "boost_modal.combo": "अगली बार स्किप करने के लिए आप {combo} दबा सकते है",
+  "bundle_column_error.body": "इस कॉम्पोनेन्ट को लोड करते वक्त कुछ गलत हो गया",
+  "bundle_column_error.retry": "दुबारा कोशिश करें",
+  "bundle_column_error.title": "नेटवर्क त्रुटि",
+  "bundle_modal_error.close": "बंद",
+  "bundle_modal_error.message": "इस कॉम्पोनेन्ट को लोड करते वक्त कुछ गलत हो गया",
+  "bundle_modal_error.retry": "दुबारा कोशिश करें",
+  "column.blocks": "ब्लॉक्ड यूज़र्स",
+  "column.bookmarks": "Bookmarks",
+  "column.community": "लोकल टाइम्लाइन",
+  "column.direct": "सीधा संदेश",
+  "column.directory": "प्रोफाइल्स खोजें",
+  "column.domain_blocks": "छुपे डोमेन्स",
+  "column.favourites": "पसंदीदा",
+  "column.follow_requests": "फॉलो रिक्वेस्ट्स",
+  "column.home": "होम",
+  "column.lists": "सूचियाँ",
+  "column.mutes": "म्यूट किये हुए यूजर",
+  "column.notifications": "नोटिफिकेशन्स",
+  "column.pins": "पिनड टूट्स",
+  "column.public": "फ़ेडरेटेड टाइम्लाइन",
+  "column_back_button.label": "पीछे जाए",
+  "column_header.hide_settings": "सेटिंग्स छुपाए",
+  "column_header.moveLeft_settings": "कॉलम को बाएं ले जाये",
+  "column_header.moveRight_settings": "कॉलम को दाएं ले जाये",
+  "column_header.pin": "पिन",
+  "column_header.show_settings": "सेटिंग्स दिखाएँ",
+  "column_header.unpin": "अनपिन",
+  "column_subheading.settings": "सेटिंग्स",
+  "community.column_settings.media_only": "सिर्फ़ मीडिया",
   "compose_form.direct_message_warning": "This toot will only be sent to all the mentioned users.",
-  "compose_form.direct_message_warning_learn_more": "Learn more",
-  "compose_form.hashtag_warning": "This toot won't be listed under any hashtag as it is unlisted. Only public toots can be searched by hashtag.",
-  "compose_form.lock_disclaimer": "Your account is not {locked}. Anyone can follow you to view your follower-only posts.",
-  "compose_form.lock_disclaimer.lock": "locked",
+  "compose_form.direct_message_warning_learn_more": "और जानें",
+  "compose_form.hashtag_warning": "यह टूट् किसी भी हैशटैग के तहत सूचीबद्ध नहीं होगा क्योंकि यह अनलिस्टेड है। हैशटैग द्वारा केवल सार्वजनिक टूट्स खोजे जा सकते हैं।",
+  "compose_form.lock_disclaimer": "आपका खाता {locked} नहीं है। आपको केवल फॉलोवर्स को दिखाई दिए जाने वाले पोस्ट देखने के लिए कोई भी फॉलो कर सकता है।",
+  "compose_form.lock_disclaimer.lock": "लॉक्ड",
   "compose_form.placeholder": "What is on your mind?",
-  "compose_form.poll.add_option": "Add a choice",
-  "compose_form.poll.duration": "Poll duration",
-  "compose_form.poll.option_placeholder": "Choice {number}",
-  "compose_form.poll.remove_option": "Remove this choice",
-  "compose_form.publish": "Toot",
+  "compose_form.poll.add_option": "विकल्प जोड़े",
+  "compose_form.poll.duration": "चुनाव की अवधि",
+  "compose_form.poll.option_placeholder": "कुल विकल्प {number}",
+  "compose_form.poll.remove_option": "इस विकल्प को हटाएँ",
+  "compose_form.poll.switch_to_multiple": "Change poll to allow multiple choices",
+  "compose_form.poll.switch_to_single": "Change poll to allow for a single choice",
+  "compose_form.publish": "टूट्",
   "compose_form.publish_loud": "{publish}!",
-  "compose_form.sensitive.hide": "Mark media as sensitive",
-  "compose_form.sensitive.marked": "Media is marked as sensitive",
-  "compose_form.sensitive.unmarked": "Media is not marked as sensitive",
-  "compose_form.spoiler.marked": "Text is hidden behind warning",
-  "compose_form.spoiler.unmarked": "Text is not hidden",
-  "compose_form.spoiler_placeholder": "Write your warning here",
-  "confirmation_modal.cancel": "Cancel",
-  "confirmations.block.block_and_report": "Block & Report",
-  "confirmations.block.confirm": "Block",
-  "confirmations.block.message": "Are you sure you want to block {name}?",
-  "confirmations.delete.confirm": "Delete",
-  "confirmations.delete.message": "Are you sure you want to delete this status?",
-  "confirmations.delete_list.confirm": "Delete",
-  "confirmations.delete_list.message": "Are you sure you want to permanently delete this list?",
-  "confirmations.domain_block.confirm": "Hide entire domain",
-  "confirmations.domain_block.message": "Are you really, really sure you want to block the entire {domain}? In most cases a few targeted blocks or mutes are sufficient and preferable. You will not see content from that domain in any public timelines or your notifications. Your followers from that domain will be removed.",
-  "confirmations.logout.confirm": "Log out",
-  "confirmations.logout.message": "Are you sure you want to log out?",
-  "confirmations.mute.confirm": "Mute",
-  "confirmations.mute.explanation": "This will hide posts from them and posts mentioning them, but it will still allow them to see your posts and follow you.",
-  "confirmations.mute.message": "Are you sure you want to mute {name}?",
-  "confirmations.redraft.confirm": "Delete & redraft",
-  "confirmations.redraft.message": "Are you sure you want to delete this status and re-draft it? Favourites and boosts will be lost, and replies to the original post will be orphaned.",
-  "confirmations.reply.confirm": "Reply",
-  "confirmations.reply.message": "Replying now will overwrite the message you are currently composing. Are you sure you want to proceed?",
-  "confirmations.unfollow.confirm": "Unfollow",
-  "confirmations.unfollow.message": "Are you sure you want to unfollow {name}?",
-  "conversation.delete": "Delete conversation",
-  "conversation.mark_as_read": "Mark as read",
-  "conversation.open": "View conversation",
-  "conversation.with": "With {names}",
-  "directory.federated": "From known fediverse",
-  "directory.local": "From {domain} only",
-  "directory.new_arrivals": "New arrivals",
-  "directory.recently_active": "Recently active",
-  "embed.instructions": "Embed this status on your website by copying the code below.",
-  "embed.preview": "Here is what it will look like:",
-  "emoji_button.activity": "Activity",
-  "emoji_button.custom": "Custom",
-  "emoji_button.flags": "Flags",
-  "emoji_button.food": "Food & Drink",
-  "emoji_button.label": "Insert emoji",
-  "emoji_button.nature": "Nature",
-  "emoji_button.not_found": "No emojos!! (╯°□°)╯︵ ┻━┻",
-  "emoji_button.objects": "Objects",
-  "emoji_button.people": "People",
-  "emoji_button.recent": "Frequently used",
-  "emoji_button.search": "Search...",
-  "emoji_button.search_results": "Search results",
-  "emoji_button.symbols": "Symbols",
-  "emoji_button.travel": "Travel & Places",
-  "empty_column.account_timeline": "No toots here!",
-  "empty_column.account_unavailable": "Profile unavailable",
-  "empty_column.blocks": "You haven't blocked any users yet.",
-  "empty_column.community": "The local timeline is empty. Write something publicly to get the ball rolling!",
-  "empty_column.direct": "You don't have any direct messages yet. When you send or receive one, it will show up here.",
-  "empty_column.domain_blocks": "There are no hidden domains yet.",
-  "empty_column.favourited_statuses": "You don't have any favourite toots yet. When you favourite one, it will show up here.",
-  "empty_column.favourites": "No one has favourited this toot yet. When someone does, they will show up here.",
-  "empty_column.follow_requests": "You don't have any follow requests yet. When you receive one, it will show up here.",
-  "empty_column.hashtag": "There is nothing in this hashtag yet.",
-  "empty_column.home": "Your home timeline is empty! Visit {public} or use search to get started and meet other users.",
-  "empty_column.home.public_timeline": "the public timeline",
-  "empty_column.list": "There is nothing in this list yet. When members of this list post new statuses, they will appear here.",
+  "compose_form.sensitive.hide": "मीडिया को संवेदनशील के रूप में चिह्नित करें",
+  "compose_form.sensitive.marked": "मीडिया संवेदनशील के रूप में चिह्नित है",
+  "compose_form.sensitive.unmarked": "मीडिया संवेदनशील के रूप में चिह्नित नहीं है",
+  "compose_form.spoiler.marked": "चेतावनी के पीछे टेक्स्ट छिपा है",
+  "compose_form.spoiler.unmarked": "टेक्स्ट छिपा नहीं है",
+  "compose_form.spoiler_placeholder": "अपनी चेतावनी यहाँ लिखें",
+  "confirmation_modal.cancel": "रद्द करें",
+  "confirmations.block.block_and_report": "ब्लॉक एवं रिपोर्ट",
+  "confirmations.block.confirm": "ब्लॉक",
+  "confirmations.block.message": "क्या आप वाकई {name} को ब्लॉक करना चाहते हैं?",
+  "confirmations.delete.confirm": "मिटाए",
+  "confirmations.delete.message": "क्या आप वाकई इस स्टेटस को हटाना चाहते हैं?",
+  "confirmations.delete_list.confirm": "मिटाए",
+  "confirmations.delete_list.message": "क्या आप वाकई इस लिस्ट को हमेशा के लिये मिटाना चाहते हैं?",
+  "confirmations.domain_block.confirm": "संपूर्ण डोमेन छिपाएं",
+  "confirmations.domain_block.message": "क्या आप वास्तव में, वास्तव में आप पूरे {domain} को ब्लॉक करना चाहते हैं? ज्यादातर मामलों में कुछ लक्षित ब्लॉक या म्यूट पर्याप्त और बेहतर हैं। आप किसी भी सार्वजनिक समय-सीमा या अपनी सूचनाओं में उस डोमेन की सामग्री नहीं देखेंगे। उस डोमेन से आपके फॉलोवर्स को हटा दिया जाएगा।",
+  "confirmations.logout.confirm": "लॉग आउट करें",
+  "confirmations.logout.message": "आप सुनिश्चित हैं कि लॉगआउट करना चाहते हैं?",
+  "confirmations.mute.confirm": "शांत",
+  "confirmations.mute.explanation": "यह उनसे और पोस्टों का उल्लेख करते हुए उनसे छिपाएगा, लेकिन यह अभी भी उन्हें आपकी पोस्ट देखने और आपको फॉलो करने की अनुमति देगा।",
+  "confirmations.mute.message": "क्या आप वाकई {name} को शांत करना चाहते हैं?",
+  "confirmations.redraft.confirm": "मिटायें और पुनःप्रारूपण करें",
+  "confirmations.redraft.message": "क्या आप वाकई इस स्टेटस को हटाना चाहते हैं और इसे फिर से ड्राफ्ट करना चाहते हैं? पसंदीदा और बूस्ट खो जाएंगे, और मूल पोस्ट के उत्तर अनाथ हो जाएंगे।",
+  "confirmations.reply.confirm": "उत्तर दें",
+  "confirmations.reply.message": "अब उत्तर देना उस संदेश को अधिलेखित कर देगा जो आप वर्तमान में बना रहे हैं। क्या आप सुनिश्चित रूप से आगे बढ़ना चाहते हैं?",
+  "confirmations.unfollow.confirm": "अनफॉलो करें",
+  "confirmations.unfollow.message": "क्या आप वाकई {name} को अनफॉलो करना चाहते हैं?",
+  "conversation.delete": "वार्तालाप हटाएँ",
+  "conversation.mark_as_read": "पढ़ा गया के रूप में चिह्नित करें",
+  "conversation.open": "वार्तालाप देखें",
+  "conversation.with": "{names} के साथ",
+  "directory.federated": "ज्ञात फेडीवर्स से",
+  "directory.local": "केवल {domain} से",
+  "directory.new_arrivals": "नए आगंतुक",
+  "directory.recently_active": "हाल में ही सक्रिय",
+  "embed.instructions": "अपने वेबसाइट पर, निचे दिए कोड को कॉपी करके, इस स्टेटस को एम्बेड करें",
+  "embed.preview": "यह ऐसा दिखेगा :",
+  "emoji_button.activity": "गतिविधि",
+  "emoji_button.custom": "निजीकृत",
+  "emoji_button.flags": "झंडे",
+  "emoji_button.food": "भोजन एवं पेय",
+  "emoji_button.label": "इमोजी डाले",
+  "emoji_button.nature": "प्रकृति",
+  "emoji_button.not_found": "कोई इमोजी नहीं मिला! (╯°□°)╯︵ ┻━┻",
+  "emoji_button.objects": "वस्तुएं",
+  "emoji_button.people": "लोग",
+  "emoji_button.recent": "अक्सर इस्तेमाल किया जाने वाला",
+  "emoji_button.search": "खोजें",
+  "emoji_button.search_results": "खोज परिणाम",
+  "emoji_button.symbols": "प्रतीक",
+  "emoji_button.travel": "यात्रा एवं स्थान",
+  "empty_column.account_timeline": "सन्नाटा! यहां कोई टूट्स नहीं!",
+  "empty_column.account_unavailable": "प्रोफाइल उपलब्ध नहीं",
+  "empty_column.blocks": "आप अभी तक किसी भी यूजर के द्वारा ब्लॉक्ड नहीं हो।",
+  "empty_column.bookmarked_statuses": "You don't have any bookmarked toots yet. When you bookmark one, it will show up here.",
+  "empty_column.community": "लोकल टाइम्लाइन खाली है, कुछ देखने के लिये सार्वजनिक रूप से कुछ लिखें!",
+  "empty_column.direct": "आपके पास कोई सीधा सन्देश नहीं है, जब आप कोई भेजेंगे प्राप्त करेंगे तो यहाँ दिखेगा।",
+  "empty_column.domain_blocks": "अभी तक कोई छुपा हुआ डोमेन नहीं है।",
+  "empty_column.favourited_statuses": "आपके पास अभी कोई भी चहिता टूट नहीं है. जब आप किसी टूट को पसंद (स्टार) करेंगे, तब वो यहाँ दिखेगा।",
+  "empty_column.favourites": "अभी तक किसी ने भी इस टूट को पसंद (स्टार) नहीं किया है. जब भी कोई इसे पसंद करेगा, उनका नाम यहाँ दिखेगा।",
+  "empty_column.follow_requests": "अभी तक किसी ने भी आपका अनुसरण करने की विनती नहीं की है. जब भी कोई आपको विनती भेजेगा, वो यहाँ दिखेगी.",
+  "empty_column.hashtag": "यह हैशटैग अभी तक खाली है।",
+  "empty_column.home": "आपकी मुख्य कालक्रम अभी खली है. अन्य उपयोगकर्ताओं से मिलने के लिए और अपनी गतिविधियां शुरू करने के लिए या तो {public} पर जाएं या खोज का उपयोग करें।",
+  "empty_column.home.public_timeline": "सार्वजनिक कालक्रम",
+  "empty_column.list": "यह सूची अभी खाली है. जब इसके सदस्य कोई अभिव्यक्ति देंगे, तो वो यहां दिखाई देंगी.",
   "empty_column.lists": "You don't have any lists yet. When you create one, it will show up here.",
   "empty_column.mutes": "You haven't muted any users yet.",
   "empty_column.notifications": "You don't have any notifications yet. Interact with others to start the conversation.",
@@ -155,80 +160,81 @@
   "error.unexpected_crash.explanation": "Due to a bug in our code or a browser compatibility issue, this page could not be displayed correctly.",
   "error.unexpected_crash.next_steps": "Try refreshing the page. If that does not help, you may still be able to use Mastodon through a different browser or native app.",
   "errors.unexpected_crash.copy_stacktrace": "Copy stacktrace to clipboard",
-  "errors.unexpected_crash.report_issue": "Report issue",
+  "errors.unexpected_crash.report_issue": "समस्या सूचित करें",
   "federation.change": "Adjust status federation",
   "federation.federated.long": "Allow toot to reach other instances",
   "federation.federated.short": "Federated",
   "federation.local_only.long": "Restrict this toot only to my instance",
   "federation.local_only.short": "Local-only",
-  "follow_request.authorize": "Authorize",
-  "follow_request.reject": "Reject",
-  "getting_started.developers": "Developers",
-  "getting_started.directory": "Profile directory",
-  "getting_started.documentation": "Documentation",
-  "getting_started.heading": "Getting started",
-  "getting_started.invite": "Invite people",
-  "getting_started.open_source_notice": "Mastodon is open source software. You can contribute or report issues on GitHub at {github}.",
-  "getting_started.security": "Security",
-  "getting_started.terms": "Terms of service",
-  "hashtag.column_header.tag_mode.all": "and {additional}",
-  "hashtag.column_header.tag_mode.any": "or {additional}",
-  "hashtag.column_header.tag_mode.none": "without {additional}",
-  "hashtag.column_settings.select.no_options_message": "No suggestions found",
-  "hashtag.column_settings.select.placeholder": "Enter hashtags…",
-  "hashtag.column_settings.tag_mode.all": "All of these",
-  "hashtag.column_settings.tag_mode.any": "Any of these",
-  "hashtag.column_settings.tag_mode.none": "None of these",
+  "follow_request.authorize": "अधिकार दें",
+  "follow_request.reject": "अस्वीकार करें",
+  "getting_started.developers": "डेवॅलपर्स",
+  "getting_started.directory": "प्रोफ़ाइल निर्देशिका",
+  "getting_started.documentation": "प्रलेखन",
+  "getting_started.heading": "पहले कदम रखें",
+  "getting_started.invite": "दोस्तों को आमंत्रित करें",
+  "getting_started.open_source_notice": "मास्टोडॉन एक मुक्त स्रोत सॉफ्टवेयर है. आप गिटहब {github} पर इस सॉफ्टवेयर में योगदान या किसी भी समस्या को सूचित कर सकते है.",
+  "getting_started.security": "अकाउंट सेटिंग्स",
+  "getting_started.terms": "सेवा की शर्तें",
+  "hashtag.column_header.tag_mode.all": "और {additional}",
+  "hashtag.column_header.tag_mode.any": "या {additional}",
+  "hashtag.column_header.tag_mode.none": "बिना {additional}",
+  "hashtag.column_settings.select.no_options_message": "कोई सुझाव नहीं मिला",
+  "hashtag.column_settings.select.placeholder": "हैशटैग लिखें...",
+  "hashtag.column_settings.tag_mode.all": "यह सभी",
+  "hashtag.column_settings.tag_mode.any": "इनमें से कोई भी",
+  "hashtag.column_settings.tag_mode.none": "इनमें से कोई भी नहीं",
   "hashtag.column_settings.tag_toggle": "Include additional tags in this column",
-  "home.column_settings.basic": "Basic",
-  "home.column_settings.show_reblogs": "Show boosts",
-  "home.column_settings.show_replies": "Show replies",
+  "home.column_settings.basic": "बुनियादी",
+  "home.column_settings.show_reblogs": "बूस्ट दिखाए",
+  "home.column_settings.show_replies": "जवाबों को दिखाए",
   "intervals.full.days": "{number, plural, one {# day} other {# days}}",
   "intervals.full.hours": "{number, plural, one {# hour} other {# hours}}",
   "intervals.full.minutes": "{number, plural, one {# minute} other {# minutes}}",
-  "introduction.federation.action": "Next",
-  "introduction.federation.federated.headline": "Federated",
+  "introduction.federation.action": "अगला",
+  "introduction.federation.federated.headline": "फ़ेडरेटेड",
   "introduction.federation.federated.text": "Public posts from other servers of the fediverse will appear in the federated timeline.",
-  "introduction.federation.home.headline": "Home",
+  "introduction.federation.home.headline": "होम",
   "introduction.federation.home.text": "Posts from people you follow will appear in your home feed. You can follow anyone on any server!",
-  "introduction.federation.local.headline": "Local",
+  "introduction.federation.local.headline": "लोकल",
   "introduction.federation.local.text": "Public posts from people on the same server as you will appear in the local timeline.",
   "introduction.interactions.action": "Finish toot-orial!",
-  "introduction.interactions.favourite.headline": "Favourite",
+  "introduction.interactions.favourite.headline": "पसंदीदा",
   "introduction.interactions.favourite.text": "You can save a toot for later, and let the author know that you liked it, by favouriting it.",
-  "introduction.interactions.reblog.headline": "Boost",
+  "introduction.interactions.reblog.headline": "बूस्ट",
   "introduction.interactions.reblog.text": "You can share other people's toots with your followers by boosting them.",
-  "introduction.interactions.reply.headline": "Reply",
+  "introduction.interactions.reply.headline": "जवाब",
   "introduction.interactions.reply.text": "You can reply to other people's and your own toots, which will chain them together in a conversation.",
-  "introduction.welcome.action": "Let's go!",
-  "introduction.welcome.headline": "First steps",
+  "introduction.welcome.action": "आइए शुरू करते हैं!",
+  "introduction.welcome.headline": "पहले कदम",
   "introduction.welcome.text": "Welcome to the fediverse! In a few moments, you'll be able to broadcast messages and talk to your friends across a wide variety of servers. But this server, {domain}, is special—it hosts your profile, so remember its name.",
   "keyboard_shortcuts.back": "to navigate back",
   "keyboard_shortcuts.blocked": "to open blocked users list",
   "keyboard_shortcuts.boost": "to boost",
   "keyboard_shortcuts.column": "to focus a status in one of the columns",
-  "keyboard_shortcuts.compose": "to focus the compose textarea",
-  "keyboard_shortcuts.description": "Description",
-  "keyboard_shortcuts.direct": "to open direct messages column",
-  "keyboard_shortcuts.down": "to move down in the list",
-  "keyboard_shortcuts.enter": "to open status",
-  "keyboard_shortcuts.favourite": "to favourite",
-  "keyboard_shortcuts.favourites": "to open favourites list",
-  "keyboard_shortcuts.federated": "to open federated timeline",
+  "keyboard_shortcuts.compose": "कंपोज़ टेक्स्ट-एरिया पर ध्यान केंद्रित करने के लिए",
+  "keyboard_shortcuts.description": "विवरण",
+  "keyboard_shortcuts.direct": "सीधा सन्देश कॉलम को खोलने के लिए",
+  "keyboard_shortcuts.down": "सूची में शामिल करने के लिए",
+  "keyboard_shortcuts.enter": "स्टेटस खोलने के लिए",
+  "keyboard_shortcuts.favourite": "पसंदीदा के लिए",
+  "keyboard_shortcuts.favourites": "पसंदीदा सूची खोलने के लिए",
+  "keyboard_shortcuts.federated": "फ़ैडरेटेड टाइम्लाइन खोलने के लिए",
   "keyboard_shortcuts.heading": "Keyboard Shortcuts",
-  "keyboard_shortcuts.home": "to open home timeline",
-  "keyboard_shortcuts.hotkey": "Hotkey",
-  "keyboard_shortcuts.legend": "to display this legend",
-  "keyboard_shortcuts.local": "to open local timeline",
-  "keyboard_shortcuts.mention": "to mention author",
-  "keyboard_shortcuts.muted": "to open muted users list",
-  "keyboard_shortcuts.my_profile": "to open your profile",
-  "keyboard_shortcuts.notifications": "to open notifications column",
-  "keyboard_shortcuts.pinned": "to open pinned toots list",
-  "keyboard_shortcuts.profile": "to open author's profile",
-  "keyboard_shortcuts.reply": "to reply",
-  "keyboard_shortcuts.requests": "to open follow requests list",
-  "keyboard_shortcuts.search": "to focus search",
+  "keyboard_shortcuts.home": "होम टाइम्लाइन खोलने के लिए",
+  "keyboard_shortcuts.hotkey": "हॉट-की",
+  "keyboard_shortcuts.legend": "इस लीजेंड को दिखाने के लिए",
+  "keyboard_shortcuts.local": "लोकल टाइम्लाइन खोलने के लिए",
+  "keyboard_shortcuts.mention": "लेखक को मेन्शन करने के लिए",
+  "keyboard_shortcuts.muted": "म्यूटेड यूजर की लिस्ट खोलने के लिए",
+  "keyboard_shortcuts.my_profile": "आपकी प्रोफाइल खोलने के लिए",
+  "keyboard_shortcuts.notifications": "नोटिफिकेशन कॉलम खोलने के लिए",
+  "keyboard_shortcuts.open_media": "to open media",
+  "keyboard_shortcuts.pinned": "पिनड टूट्स की लिस्ट खोलने के लिए",
+  "keyboard_shortcuts.profile": "लेखक की प्रोफाइल खोलने के लिए",
+  "keyboard_shortcuts.reply": "जवाब के लिए",
+  "keyboard_shortcuts.requests": "फॉलो रिक्वेस्ट लिस्ट खोलने के लिए",
+  "keyboard_shortcuts.search": "गहरी खोज के लिए",
   "keyboard_shortcuts.start": "to open \"get started\" column",
   "keyboard_shortcuts.toggle_hidden": "to show/hide text behind CW",
   "keyboard_shortcuts.toggle_sensitivity": "to show/hide media",
@@ -249,15 +255,16 @@
   "lists.search": "Search among people you follow",
   "lists.subheading": "Your lists",
   "load_pending": "{count, plural, one {# new item} other {# new items}}",
-  "loading_indicator.label": "Loading...",
+  "loading_indicator.label": "लोड हो रहा है...",
   "media_gallery.toggle_visible": "Toggle visibility",
-  "missing_indicator.label": "Not found",
-  "missing_indicator.sublabel": "This resource could not be found",
+  "missing_indicator.label": "नहीं मिला",
+  "missing_indicator.sublabel": "यह संसाधन नहीं मिल सका।",
   "mute_modal.hide_notifications": "Hide notifications from this user?",
-  "navigation_bar.apps": "Mobile apps",
-  "navigation_bar.blocks": "Blocked users",
-  "navigation_bar.community_timeline": "Local timeline",
-  "navigation_bar.compose": "Compose new toot",
+  "navigation_bar.apps": "मोबाइल एप्लिकेशंस",
+  "navigation_bar.blocks": "ब्लॉक्ड यूज़र्स",
+  "navigation_bar.bookmarks": "Bookmarks",
+  "navigation_bar.community_timeline": "लोकल टाइम्लाइन",
+  "navigation_bar.compose": "नया टूट् लिखें",
   "navigation_bar.direct": "Direct messages",
   "navigation_bar.discover": "Discover",
   "navigation_bar.domain_blocks": "Hidden domains",
@@ -278,63 +285,66 @@
   "navigation_bar.security": "Security",
   "notification.favourite": "{name} favourited your status",
   "notification.follow": "{name} followed you",
+  "notification.follow_request": "{name} has requested to follow you",
   "notification.mention": "{name} mentioned you",
+  "notification.own_poll": "Your poll has ended",
   "notification.poll": "A poll you have voted in has ended",
   "notification.reblog": "{name} boosted your status",
   "notifications.clear": "Clear notifications",
   "notifications.clear_confirmation": "Are you sure you want to permanently clear all your notifications?",
   "notifications.column_settings.alert": "Desktop notifications",
   "notifications.column_settings.favourite": "Favourites:",
-  "notifications.column_settings.filter_bar.advanced": "Display all categories",
-  "notifications.column_settings.filter_bar.category": "Quick filter bar",
-  "notifications.column_settings.filter_bar.show": "Show",
-  "notifications.column_settings.follow": "New followers:",
-  "notifications.column_settings.mention": "Mentions:",
-  "notifications.column_settings.poll": "Poll results:",
-  "notifications.column_settings.push": "Push notifications",
-  "notifications.column_settings.reblog": "Boosts:",
-  "notifications.column_settings.show": "Show in column",
-  "notifications.column_settings.sound": "Play sound",
-  "notifications.filter.all": "All",
-  "notifications.filter.boosts": "Boosts",
-  "notifications.filter.favourites": "Favourites",
-  "notifications.filter.follows": "Follows",
-  "notifications.filter.mentions": "Mentions",
-  "notifications.filter.polls": "Poll results",
-  "notifications.group": "{count} notifications",
-  "poll.closed": "Closed",
-  "poll.refresh": "Refresh",
+  "notifications.column_settings.filter_bar.advanced": "सभी श्रेणियाँ दिखाएं",
+  "notifications.column_settings.filter_bar.category": "फ़िल्टर बार",
+  "notifications.column_settings.filter_bar.show": "दिखाएँ",
+  "notifications.column_settings.follow": "नए फ़ॉलोअर्स",
+  "notifications.column_settings.follow_request": "New follow requests:",
+  "notifications.column_settings.mention": "उल्लेख:",
+  "notifications.column_settings.poll": "चुनाव परिणाम",
+  "notifications.column_settings.push": "पुश सूचनाएँ",
+  "notifications.column_settings.reblog": "बूस्ट:",
+  "notifications.column_settings.show": "कॉलम में दिखाएँ",
+  "notifications.column_settings.sound": "ध्वनि चलाएँ",
+  "notifications.filter.all": "सभी",
+  "notifications.filter.boosts": "बूस्ट",
+  "notifications.filter.favourites": "पसंदीदा",
+  "notifications.filter.follows": "फॉलो",
+  "notifications.filter.mentions": "उल्लेख",
+  "notifications.filter.polls": "चुनाव परिणाम",
+  "notifications.group": "{count} सूचनाएँ",
+  "poll.closed": "बंद कर दिया",
+  "poll.refresh": "रीफ्रेश करें",
   "poll.total_people": "{count, plural, one {# person} other {# people}}",
   "poll.total_votes": "{count, plural, one {# vote} other {# votes}}",
-  "poll.vote": "Vote",
-  "poll.voted": "You voted for this answer",
+  "poll.vote": "वोट",
+  "poll.voted": "आपने इसी उत्तर का चुनाव किया है।",
   "poll_button.add_poll": "Add a poll",
   "poll_button.remove_poll": "Remove poll",
   "privacy.change": "Adjust status privacy",
   "privacy.direct.long": "Post to mentioned users only",
-  "privacy.direct.short": "Direct",
+  "privacy.direct.short": "सीधा",
   "privacy.private.long": "Post to followers only",
   "privacy.private.short": "Followers-only",
-  "privacy.public.long": "Post to public timelines",
-  "privacy.public.short": "Public",
+  "privacy.public.long": "सार्वजनिक टाइम्लाइन पर भेजें",
+  "privacy.public.short": "सार्वजनिक",
   "privacy.unlisted.long": "Do not show in public timelines",
-  "privacy.unlisted.short": "Unlisted",
-  "refresh": "Refresh",
-  "regeneration_indicator.label": "Loading…",
+  "privacy.unlisted.short": "अनलिस्टेड",
+  "refresh": "रीफ्रेश करें",
+  "regeneration_indicator.label": "लोड हो रहा है...",
   "regeneration_indicator.sublabel": "Your home feed is being prepared!",
   "relative_time.days": "{number}d",
   "relative_time.hours": "{number}h",
-  "relative_time.just_now": "now",
+  "relative_time.just_now": "अभी",
   "relative_time.minutes": "{number}m",
   "relative_time.seconds": "{number}s",
-  "reply_indicator.cancel": "Cancel",
+  "reply_indicator.cancel": "रद्द करें",
   "report.forward": "Forward to {target}",
   "report.forward_hint": "The account is from another server. Send an anonymized copy of the report there as well?",
   "report.hint": "The report will be sent to your server moderators. You can provide an explanation of why you are reporting this account below:",
   "report.placeholder": "Additional comments",
-  "report.submit": "Submit",
+  "report.submit": "सबमिट करें",
   "report.target": "Report {target}",
-  "search.placeholder": "Search",
+  "search.placeholder": "खोजें",
   "search_popout.search_format": "Advanced search format",
   "search_popout.tips.full_text": "Simple text returns statuses you have written, favourited, boosted, or have been mentioned in, as well as matching usernames, display names, and hashtags.",
   "search_popout.tips.hashtag": "hashtag",
@@ -349,6 +359,7 @@
   "status.admin_account": "Open moderation interface for @{name}",
   "status.admin_status": "Open this status in the moderation interface",
   "status.block": "Block @{name}",
+  "status.bookmark": "Bookmark",
   "status.cancel_reblog_private": "Unboost",
   "status.cannot_reblog": "This post cannot be boosted",
   "status.copy": "Copy link to status",
@@ -369,31 +380,32 @@
   "status.pin": "Pin on profile",
   "status.pinned": "Pinned toot",
   "status.read_more": "Read more",
-  "status.reblog": "Boost",
+  "status.reblog": "बूस्ट",
   "status.reblog_private": "Boost to original audience",
   "status.reblogged_by": "{name} boosted",
   "status.reblogs.empty": "No one has boosted this toot yet. When someone does, they will show up here.",
   "status.redraft": "Delete & re-draft",
-  "status.reply": "Reply",
+  "status.remove_bookmark": "Remove bookmark",
+  "status.reply": "जवाब",
   "status.replyAll": "Reply to thread",
   "status.report": "Report @{name}",
-  "status.sensitive_warning": "Sensitive content",
-  "status.share": "Share",
-  "status.show_less": "Show less",
+  "status.sensitive_warning": "संवेदनशील विषय वस्तु",
+  "status.share": "शेयर करें",
+  "status.show_less": "कम दिखाएँ",
   "status.show_less_all": "Show less for all",
-  "status.show_more": "Show more",
+  "status.show_more": "और दिखाएँ",
   "status.show_more_all": "Show more for all",
   "status.show_thread": "Show thread",
-  "status.uncached_media_warning": "Not available",
+  "status.uncached_media_warning": "अनुपलब्ध",
   "status.unmute_conversation": "Unmute conversation",
   "status.unpin": "Unpin from profile",
   "suggestions.dismiss": "Dismiss suggestion",
   "suggestions.header": "You might be interested in…",
-  "tabs_bar.federated_timeline": "Federated",
-  "tabs_bar.home": "Home",
-  "tabs_bar.local_timeline": "Local",
-  "tabs_bar.notifications": "Notifications",
-  "tabs_bar.search": "Search",
+  "tabs_bar.federated_timeline": "फ़ेडरेटेड",
+  "tabs_bar.home": "होम",
+  "tabs_bar.local_timeline": "लोकल",
+  "tabs_bar.notifications": "सूचनाएँ",
+  "tabs_bar.search": "खोजें",
   "time_remaining.days": "{number, plural, one {# day} other {# days}} left",
   "time_remaining.hours": "{number, plural, one {# hour} other {# hours}} left",
   "time_remaining.minutes": "{number, plural, one {# minute} other {# minutes}} left",
@@ -403,21 +415,24 @@
   "trends.trending_now": "Trending now",
   "ui.beforeunload": "Your draft will be lost if you leave Mastodon.",
   "upload_area.title": "Drag & drop to upload",
-  "upload_button.label": "Add media (JPEG, PNG, GIF, WebM, MP4, MOV)",
+  "upload_button.label": "Add media ({formats})",
   "upload_error.limit": "File upload limit exceeded.",
   "upload_error.poll": "File upload not allowed with polls.",
+  "upload_form.audio_description": "Describe for people with hearing loss",
   "upload_form.description": "Describe for the visually impaired",
-  "upload_form.edit": "Edit",
-  "upload_form.undo": "Delete",
+  "upload_form.edit": "संशोधन करें",
+  "upload_form.undo": "मिटाए",
+  "upload_form.video_description": "Describe for people with hearing loss or visual impairment",
   "upload_modal.analyzing_picture": "Analyzing picture…",
-  "upload_modal.apply": "Apply",
+  "upload_modal.apply": "लागू करें",
   "upload_modal.description_placeholder": "A quick brown fox jumps over the lazy dog",
   "upload_modal.detect_text": "Detect text from picture",
-  "upload_modal.edit_media": "Edit media",
+  "upload_modal.edit_media": "मीडिया में संशोधन करें",
   "upload_modal.hint": "Click or drag the circle on the preview to choose the focal point which will always be in view on all thumbnails.",
   "upload_modal.preview_label": "Preview ({ratio})",
-  "upload_progress.label": "Uploading...",
+  "upload_progress.label": "अपलोडिंग...",
   "video.close": "Close video",
+  "video.download": "फाइल डाउनलोड करें",
   "video.exit_fullscreen": "Exit full screen",
   "video.expand": "Expand video",
   "video.fullscreen": "Full screen",
diff --git a/app/javascript/mastodon/locales/hr.json b/app/javascript/mastodon/locales/hr.json
index fd32fcd3804190e4f82989dc6ed02ec5cdf03970..cfcfeca9bc0d5838f89f36472b45b9eb8f613f4a 100644
--- a/app/javascript/mastodon/locales/hr.json
+++ b/app/javascript/mastodon/locales/hr.json
@@ -1,6 +1,7 @@
 {
   "account.add_or_remove_from_list": "Add or Remove from lists",
   "account.badges.bot": "Bot",
+  "account.badges.group": "Group",
   "account.block": "Blokiraj @{name}",
   "account.block_domain": "Sakrij sve sa {domain}",
   "account.blocked": "Blocked",
@@ -51,6 +52,7 @@
   "bundle_modal_error.message": "Something went wrong while loading this component.",
   "bundle_modal_error.retry": "Try again",
   "column.blocks": "Blokirani korisnici",
+  "column.bookmarks": "Bookmarks",
   "column.community": "Lokalni timeline",
   "column.direct": "Direct messages",
   "column.directory": "Browse profiles",
@@ -82,6 +84,8 @@
   "compose_form.poll.duration": "Poll duration",
   "compose_form.poll.option_placeholder": "Choice {number}",
   "compose_form.poll.remove_option": "Remove this choice",
+  "compose_form.poll.switch_to_multiple": "Change poll to allow multiple choices",
+  "compose_form.poll.switch_to_single": "Change poll to allow for a single choice",
   "compose_form.publish": "Toot",
   "compose_form.publish_loud": "{publish}!",
   "compose_form.sensitive.hide": "Mark media as sensitive",
@@ -138,6 +142,7 @@
   "empty_column.account_timeline": "No toots here!",
   "empty_column.account_unavailable": "Profile unavailable",
   "empty_column.blocks": "You haven't blocked any users yet.",
+  "empty_column.bookmarked_statuses": "You don't have any bookmarked toots yet. When you bookmark one, it will show up here.",
   "empty_column.community": "Lokalni timeline je prazan. Napiši nešto javno kako bi pokrenuo stvari!",
   "empty_column.direct": "You don't have any direct messages yet. When you send or receive one, it will show up here.",
   "empty_column.domain_blocks": "There are no hidden domains yet.",
@@ -224,6 +229,7 @@
   "keyboard_shortcuts.muted": "to open muted users list",
   "keyboard_shortcuts.my_profile": "to open your profile",
   "keyboard_shortcuts.notifications": "to open notifications column",
+  "keyboard_shortcuts.open_media": "to open media",
   "keyboard_shortcuts.pinned": "to open pinned toots list",
   "keyboard_shortcuts.profile": "to open author's profile",
   "keyboard_shortcuts.reply": "to reply",
@@ -256,6 +262,7 @@
   "mute_modal.hide_notifications": "Hide notifications from this user?",
   "navigation_bar.apps": "Mobile apps",
   "navigation_bar.blocks": "Blokirani korisnici",
+  "navigation_bar.bookmarks": "Bookmarks",
   "navigation_bar.community_timeline": "Lokalni timeline",
   "navigation_bar.compose": "Compose new toot",
   "navigation_bar.direct": "Direct messages",
@@ -278,7 +285,9 @@
   "navigation_bar.security": "Security",
   "notification.favourite": "{name} je lajkao tvoj status",
   "notification.follow": "{name} te sada slijedi",
+  "notification.follow_request": "{name} has requested to follow you",
   "notification.mention": "{name} te je spomenuo",
+  "notification.own_poll": "Your poll has ended",
   "notification.poll": "A poll you have voted in has ended",
   "notification.reblog": "{name} je podigao tvoj status",
   "notifications.clear": "Očisti notifikacije",
@@ -289,6 +298,7 @@
   "notifications.column_settings.filter_bar.category": "Quick filter bar",
   "notifications.column_settings.filter_bar.show": "Show",
   "notifications.column_settings.follow": "Novi sljedbenici:",
+  "notifications.column_settings.follow_request": "New follow requests:",
   "notifications.column_settings.mention": "Spominjanja:",
   "notifications.column_settings.poll": "Poll results:",
   "notifications.column_settings.push": "Push notifications",
@@ -349,6 +359,7 @@
   "status.admin_account": "Open moderation interface for @{name}",
   "status.admin_status": "Open this status in the moderation interface",
   "status.block": "Block @{name}",
+  "status.bookmark": "Bookmark",
   "status.cancel_reblog_private": "Unboost",
   "status.cannot_reblog": "Ovaj post ne može biti boostan",
   "status.copy": "Copy link to status",
@@ -374,6 +385,7 @@
   "status.reblogged_by": "{name} je podigao",
   "status.reblogs.empty": "No one has boosted this toot yet. When someone does, they will show up here.",
   "status.redraft": "Delete & re-draft",
+  "status.remove_bookmark": "Remove bookmark",
   "status.reply": "Odgovori",
   "status.replyAll": "Odgovori na temu",
   "status.report": "Prijavi @{name}",
@@ -406,9 +418,11 @@
   "upload_button.label": "Dodaj media",
   "upload_error.limit": "File upload limit exceeded.",
   "upload_error.poll": "File upload not allowed with polls.",
+  "upload_form.audio_description": "Describe for people with hearing loss",
   "upload_form.description": "Describe for the visually impaired",
   "upload_form.edit": "Edit",
   "upload_form.undo": "Poništi",
+  "upload_form.video_description": "Describe for people with hearing loss or visual impairment",
   "upload_modal.analyzing_picture": "Analyzing picture…",
   "upload_modal.apply": "Apply",
   "upload_modal.description_placeholder": "A quick brown fox jumps over the lazy dog",
@@ -418,6 +432,7 @@
   "upload_modal.preview_label": "Preview ({ratio})",
   "upload_progress.label": "Uploadam...",
   "video.close": "Close video",
+  "video.download": "Download file",
   "video.exit_fullscreen": "Exit full screen",
   "video.expand": "Expand video",
   "video.fullscreen": "Full screen",
diff --git a/app/javascript/mastodon/locales/hu.json b/app/javascript/mastodon/locales/hu.json
index 0eadb290348a5a445b29215a2dbd504ec2aa87d6..5345a9dad87e4253db0fc10f105fec251a6aa88f 100644
--- a/app/javascript/mastodon/locales/hu.json
+++ b/app/javascript/mastodon/locales/hu.json
@@ -1,6 +1,7 @@
 {
-  "account.add_or_remove_from_list": "Hozzáadás és elvétel listáról",
+  "account.add_or_remove_from_list": "Hozzáadás vagy eltávolítás a listáról",
   "account.badges.bot": "Bot",
+  "account.badges.group": "Group",
   "account.block": "@{name} letiltása",
   "account.block_domain": "Minden elrejtése innen: {domain}",
   "account.blocked": "Letiltva",
@@ -12,13 +13,13 @@
   "account.follow": "Követés",
   "account.followers": "Követő",
   "account.followers.empty": "Ezt a felhasználót még senki sem követi.",
-  "account.follows": "Követett",
+  "account.follows": "Követések",
   "account.follows.empty": "Ez a felhasználó még senkit sem követ.",
   "account.follows_you": "Követ téged",
   "account.hide_reblogs": "@{name} megtolásainak némítása",
   "account.last_status": "Utoljára aktív",
   "account.link_verified_on": "A linket ellenőriztük: {date}",
-  "account.locked_info": "Ez a fiók zárt. A tulaj engedélyezi, ki követheti őt.",
+  "account.locked_info": "Ez a fiók zárt. A tulajdonos engedélyezi, hogy ki követheti őt.",
   "account.media": "Média",
   "account.mention": "@{name} említése",
   "account.moved_to": "{name} átköltözött:",
@@ -27,7 +28,7 @@
   "account.muted": "Némítva",
   "account.never_active": "Soha",
   "account.posts": "Tülkölés",
-  "account.posts_with_replies": "Tülkölés válaszokkal",
+  "account.posts_with_replies": "Tülkölés és válaszok",
   "account.report": "@{name} jelentése",
   "account.requested": "Engedélyre vár. Kattints a követési kérés visszavonásához",
   "account.share": "@{name} profiljának megosztása",
@@ -38,7 +39,7 @@
   "account.unfollow": "Követés vége",
   "account.unmute": "@{name} némítás feloldása",
   "account.unmute_notifications": "@{name} némított értesítéseinek feloldása",
-  "alert.rate_limited.message": "Kérlek, próbáld újra {retry_time, time, medium}.",
+  "alert.rate_limited.message": "Próbáld újra {retry_time, time, medium} után.",
   "alert.rate_limited.title": "Forgalomkorlátozás",
   "alert.unexpected.message": "Váratlan hiba történt.",
   "alert.unexpected.title": "Hoppá!",
@@ -51,6 +52,7 @@
   "bundle_modal_error.message": "Hiba történt a komponens betöltésekor.",
   "bundle_modal_error.retry": "Próbáld újra",
   "column.blocks": "Letiltott felhasználók",
+  "column.bookmarks": "Könyvjelzők",
   "column.community": "Helyi idővonal",
   "column.direct": "Közvetlen üzenetek",
   "column.directory": "Profilok böngészése",
@@ -73,38 +75,40 @@
   "column_subheading.settings": "Beállítások",
   "community.column_settings.media_only": "Csak média",
   "compose_form.direct_message_warning": "Ezt a tülköt csak a benne megemlített felhasználók láthatják majd.",
-  "compose_form.direct_message_warning_learn_more": "Több infó",
+  "compose_form.direct_message_warning_learn_more": "Tudj meg többet",
   "compose_form.hashtag_warning": "Ez a tülköd nem fog megjelenni semmilyen hashtag alatt mivel listázatlan. Csak nyilvános tülkök kereshetőek hashtaggel.",
   "compose_form.lock_disclaimer": "A fiókod nincs {locked}. Bárki követni tud, hogy megtekintse a kizárólag követőknek szánt üzeneteidet.",
   "compose_form.lock_disclaimer.lock": "lezárva",
   "compose_form.placeholder": "Mi jár a fejedben?",
   "compose_form.poll.add_option": "Lehetőség hozzáadása",
   "compose_form.poll.duration": "Szavazás időtartama",
-  "compose_form.poll.option_placeholder": "Lehetőség {number}",
+  "compose_form.poll.option_placeholder": "{number}. lehetőség",
   "compose_form.poll.remove_option": "Lehetőség törlése",
+  "compose_form.poll.switch_to_multiple": "Change poll to allow multiple choices",
+  "compose_form.poll.switch_to_single": "Change poll to allow for a single choice",
   "compose_form.publish": "Tülk",
   "compose_form.publish_loud": "{publish}!",
   "compose_form.sensitive.hide": "Média megjelölése szenzitívként",
-  "compose_form.sensitive.marked": "A médiát szenzitívnek jelölték",
-  "compose_form.sensitive.unmarked": "A médiát nem jelölték szenzitívnek",
+  "compose_form.sensitive.marked": "A médiát érzékenynek jelölték",
+  "compose_form.sensitive.unmarked": "A médiát nem jelölték érzékenynek",
   "compose_form.spoiler.marked": "A szöveg figyelmeztetés mögé van rejtve",
   "compose_form.spoiler.unmarked": "A szöveg nem rejtett",
   "compose_form.spoiler_placeholder": "Írd ide a figyelmeztetést",
   "confirmation_modal.cancel": "Mégse",
-  "confirmations.block.block_and_report": "Letiltás és Bejelentés",
+  "confirmations.block.block_and_report": "Letiltás és jelentés",
   "confirmations.block.confirm": "Letiltás",
-  "confirmations.block.message": "Biztos, hogy le szeretnéd tiltani {name}?",
+  "confirmations.block.message": "Biztos, hogy letiltod: {name}?",
   "confirmations.delete.confirm": "Törlés",
   "confirmations.delete.message": "Biztos, hogy törölni szeretnéd ezt a tülkölést?",
   "confirmations.delete_list.confirm": "Törlés",
   "confirmations.delete_list.message": "Biztos, hogy véglegesen törölni szeretnéd ezt a listát?",
   "confirmations.domain_block.confirm": "Teljes domain elrejtése",
-  "confirmations.domain_block.message": "Egészen biztos, hogy le szeretnéd tiltani a teljes {domain}-t? A legtöbb esetben néhány célzott tiltás vagy némítás elegendő és kívánatosabb megoldás. Semmilyen tartalmat nem fogsz látni ebből a domainből se idővonalakon, se értesítésekben. Az ebben a domainben lévő követőidet is eltávolítjuk.",
+  "confirmations.domain_block.message": "Biztos, hogy le szeretnéd tiltani a teljes {domain} domaint? A legtöbb esetben néhány célzott tiltás vagy némítás elegendő, és kívánatosabb megoldás. Semmilyen tartalmat nem fogsz látni ebből a domainből se az idővonalakon, se az értesítésekben. Az ebben a domainben lévő követőidet is eltávolítjuk.",
   "confirmations.logout.confirm": "Kijelentkezés",
-  "confirmations.logout.message": "Biztosan ki akar jelentkezni?",
+  "confirmations.logout.message": "Biztos, hogy kijelentkezel?",
   "confirmations.mute.confirm": "Némítás",
-  "confirmations.mute.explanation": "Ez elrejti a tőlük érkező posztokat, valamint az őket megemlítőket, de ők továbbra is láthatják a te posztjaidat és követhetnek is téged.",
-  "confirmations.mute.message": "Biztos, hogy némítani szeretnéd {name}?",
+  "confirmations.mute.explanation": "Ez elrejti a tőlük érkező bejegyzéseket, valamint az őket megemlítőket, de ők továbbra is láthatják a te bejegyzéseid, és követhetnek is téged.",
+  "confirmations.mute.message": "Biztos, hogy némítod: {name}?",
   "confirmations.redraft.confirm": "Törlés és újraírás",
   "confirmations.redraft.message": "Biztos, hogy ezt a tülköt szeretnéd törölni és újraírni? Minden megtolást és kedvencnek jelölést elvesztesz, az eredetire adott válaszok pedig elárvulnak.",
   "confirmations.reply.confirm": "Válasz",
@@ -116,7 +120,7 @@
   "conversation.open": "Beszélgetés megtekintése",
   "conversation.with": "{names}-el/al",
   "directory.federated": "Az ismert fediverzumból",
-  "directory.local": "Csak {domain}-ból/ből",
+  "directory.local": "Csak innen: {domain}",
   "directory.new_arrivals": "Új csatlakozók",
   "directory.recently_active": "Nemrég aktív",
   "embed.instructions": "Ágyazd be ezt a tülköt a weboldaladba az alábbi kód kimásolásával.",
@@ -127,7 +131,7 @@
   "emoji_button.food": "Étel és Ital",
   "emoji_button.label": "Emoji beszúrása",
   "emoji_button.nature": "Természet",
-  "emoji_button.not_found": "Nincsenek emojik!! (╯°□°)╯︵ ┻━┻",
+  "emoji_button.not_found": "Nincsenek emodzsik!! (╯°□°)╯︵ ┻━┻",
   "emoji_button.objects": "Tárgyak",
   "emoji_button.people": "Emberek",
   "emoji_button.recent": "Gyakran használt",
@@ -136,8 +140,9 @@
   "emoji_button.symbols": "Szimbólumok",
   "emoji_button.travel": "Utazás és Helyek",
   "empty_column.account_timeline": "Itt nincs tülkölés!",
-  "empty_column.account_unavailable": "A profil nem elérhető",
+  "empty_column.account_unavailable": "A profil nem érhető el",
   "empty_column.blocks": "Még senkit sem tiltottál le.",
+  "empty_column.bookmarked_statuses": "Még nincs egyetlen könyvjelzőzött tülköd sem. Ha könyvjelzőzöl egyet, itt fog megjelenni.",
   "empty_column.community": "A helyi idővonal üres. Tülkölj egyet nyilvánosan, hogy elindítsd az eseményeket!",
   "empty_column.direct": "Még nincs egy közvetlen üzeneted sem. Ha küldesz vagy kapsz egyet, itt fog megjelenni.",
   "empty_column.domain_blocks": "Még nem rejtettél el egyetlen domaint sem.",
@@ -145,8 +150,8 @@
   "empty_column.favourites": "Még senki sem jelölte ezt a tülköt kedvencként. Ha valaki mégis megteszi, itt fogjuk mutatni.",
   "empty_column.follow_requests": "Még nincs egy követési kérésed sem. Ha kapsz egyet, itt fogjuk feltüntetni.",
   "empty_column.hashtag": "Jelenleg nem található semmi ezzel a hashtaggel.",
-  "empty_column.home": "A saját idővonalad üres! Látogasd meg a {public} -at vagy használd a keresőt, hogy megismerj másokat.",
-  "empty_column.home.public_timeline": "nyilvános idővonal",
+  "empty_column.home": "A saját idővonalad üres! Látogasd meg a {public} oldalt vagy használd a keresőt, hogy megismerj másokat.",
+  "empty_column.home.public_timeline": "a nyilvános idővonal",
   "empty_column.list": "A lista jelenleg üres. Ha a listatagok tülkölnek, itt fognak megjelenni.",
   "empty_column.lists": "Még nem hoztál létre listát. Ha csinálsz egyet, itt látszik majd.",
   "empty_column.mutes": "Még egy felhasználót sem némítottál le.",
@@ -162,25 +167,25 @@
   "federation.local_only.long": "Restrict this toot only to my instance",
   "federation.local_only.short": "Local-only",
   "follow_request.authorize": "Engedélyezés",
-  "follow_request.reject": "Visszautasítás",
+  "follow_request.reject": "Elutasítás",
   "getting_started.developers": "Fejlesztőknek",
   "getting_started.directory": "Profilok",
   "getting_started.documentation": "Dokumentáció",
   "getting_started.heading": "Első lépések",
   "getting_started.invite": "Mások meghívása",
-  "getting_started.open_source_notice": "A Mastodon nyílt forráskódú szoftver. Csatlakozhatsz a fejlesztéshez vagy jelenthetsz problémákat GitHub-on {github}.",
-  "getting_started.security": "Biztonság",
+  "getting_started.open_source_notice": "A Mastodon nyílt forráskódú szoftver. Közreműködhetsz vagy problémákat jelenthetsz a GitHubon: {github}.",
+  "getting_started.security": "Fiókbeállítások",
   "getting_started.terms": "Felhasználási feltételek",
   "hashtag.column_header.tag_mode.all": "és {additional}",
   "hashtag.column_header.tag_mode.any": "vagy {additional}",
-  "hashtag.column_header.tag_mode.none": "nélküle {additional}",
+  "hashtag.column_header.tag_mode.none": "{additional} nélkül",
   "hashtag.column_settings.select.no_options_message": "Nincs javaslat",
   "hashtag.column_settings.select.placeholder": "Addj meg hashtageket…",
   "hashtag.column_settings.tag_mode.all": "Mindegyik",
   "hashtag.column_settings.tag_mode.any": "Bármelyik",
   "hashtag.column_settings.tag_mode.none": "Egyik sem",
-  "hashtag.column_settings.tag_toggle": "Új tagek felvétele ehhez az oszlophoz",
-  "home.column_settings.basic": "Alapértelmezések",
+  "hashtag.column_settings.tag_toggle": "Új címkék felvétele ehhez az oszlophoz",
+  "home.column_settings.basic": "Alapvető",
   "home.column_settings.show_reblogs": "Megtolások mutatása",
   "home.column_settings.show_replies": "Válaszok mutatása",
   "intervals.full.days": "{number, plural, one {# nap} other {# nap}}",
@@ -189,10 +194,10 @@
   "introduction.federation.action": "Következő",
   "introduction.federation.federated.headline": "Föderációs",
   "introduction.federation.federated.text": "A fediverzum más szervereiről származó nyilvános tülkök a föderációs idővonalon jelennek meg.",
-  "introduction.federation.home.headline": "Saját",
-  "introduction.federation.home.text": "A saját idővonaladon az általad követettek tülkjei jelennek meg. Bárkit követhetsz bármely szerveren.",
+  "introduction.federation.home.headline": "Kezdőlap",
+  "introduction.federation.home.text": "A saját idővonaladon az általad követett emberek tülkjei jelennek meg. Bárkit követhetsz, bármelyik kiszolgálón.",
   "introduction.federation.local.headline": "Helyi",
-  "introduction.federation.local.text": "A helyi idővonalon a veled közös szerveren lévő emberek nyilvános tülkjei jelennek meg.",
+  "introduction.federation.local.text": "A helyi idővonalon a veled közös kiszolgálón lévő emberek nyilvános tülkjei jelennek meg.",
   "introduction.interactions.action": "Oktatóanyag befejezése!",
   "introduction.interactions.favourite.headline": "Kedvenc",
   "introduction.interactions.favourite.text": "A kedvenc funkcióval elrakhatsz későbbre egy tülköt, illetve közölheted a szerzővel, hogy tetszett a megosztása.",
@@ -224,6 +229,7 @@
   "keyboard_shortcuts.muted": "némított felhasználók listájának megnyitása",
   "keyboard_shortcuts.my_profile": "profilod megnyitása",
   "keyboard_shortcuts.notifications": "értesítések megnyitása",
+  "keyboard_shortcuts.open_media": "média megnyitása",
   "keyboard_shortcuts.pinned": "kitűzött tülkök listájának megnyitása",
   "keyboard_shortcuts.profile": "szerző profiljának megnyitása",
   "keyboard_shortcuts.reply": "válasz",
@@ -256,6 +262,7 @@
   "mute_modal.hide_notifications": "Rejtsük el a felhasználótól származó értesítéseket?",
   "navigation_bar.apps": "Mobil appok",
   "navigation_bar.blocks": "Letiltott felhasználók",
+  "navigation_bar.bookmarks": "Könyvjelzők",
   "navigation_bar.community_timeline": "Helyi idővonal",
   "navigation_bar.compose": "Új tülk írása",
   "navigation_bar.direct": "Közvetlen üzenetek",
@@ -266,7 +273,7 @@
   "navigation_bar.filters": "Némított szavak",
   "navigation_bar.follow_requests": "Követési kérelmek",
   "navigation_bar.follows_and_followers": "Követettek és követők",
-  "navigation_bar.info": "Erről a szerverről",
+  "navigation_bar.info": "Erről a kiszolgálóról",
   "navigation_bar.keyboard_shortcuts": "Gyorsbillentyűk",
   "navigation_bar.lists": "Listák",
   "navigation_bar.logout": "Kijelentkezés",
@@ -278,7 +285,9 @@
   "navigation_bar.security": "Biztonság",
   "notification.favourite": "{name} kedvencnek jelölte egy tülködet",
   "notification.follow": "{name} követ téged",
+  "notification.follow_request": "{name} követni szeretne téged",
   "notification.mention": "{name} megemlített",
+  "notification.own_poll": "A szavazásod véget ért",
   "notification.poll": "Egy szavazás, melyben részt vettél, véget ért",
   "notification.reblog": "{name} megtolta a tülködet",
   "notifications.clear": "Értesítések törlése",
@@ -289,7 +298,8 @@
   "notifications.column_settings.filter_bar.category": "Gyorskereső mező",
   "notifications.column_settings.filter_bar.show": "Mutat",
   "notifications.column_settings.follow": "Új követők:",
-  "notifications.column_settings.mention": "Megemlítéseid:",
+  "notifications.column_settings.follow_request": "Új követési kérelmek:",
+  "notifications.column_settings.mention": "Megemlítések:",
   "notifications.column_settings.poll": "Szavazás eredménye:",
   "notifications.column_settings.push": "Push értesítések",
   "notifications.column_settings.reblog": "Megtolások:",
@@ -322,23 +332,23 @@
   "refresh": "Frissítés",
   "regeneration_indicator.label": "Töltődik…",
   "regeneration_indicator.sublabel": "A saját idővonalad épp készül!",
-  "relative_time.days": "{number}nap",
+  "relative_time.days": "{number}n",
   "relative_time.hours": "{number}ó",
   "relative_time.just_now": "most",
   "relative_time.minutes": "{number}p",
   "relative_time.seconds": "{number}mp",
   "reply_indicator.cancel": "Mégsem",
-  "report.forward": "Továbbítás neki {target}",
-  "report.forward_hint": "Ez a fiók egy másik szerverről van. Küldjünk oda is egy anonimizált bejelentést?",
+  "report.forward": "Továbbítás: {target}",
+  "report.forward_hint": "Ez a fiók egy másik kiszolgálóról van. Oda is elküldöd a jelentés egy anonimizált másolatát?",
   "report.hint": "A bejelentést a szervered moderátorainak küldjük el. Megmagyarázhatod, miért jelented az alábbi problémát:",
   "report.placeholder": "További megjegyzések",
   "report.submit": "Küldés",
   "report.target": "{target} jelentése",
   "search.placeholder": "Keresés",
-  "search_popout.search_format": "Haladó keresés",
+  "search_popout.search_format": "Speciális keresés",
   "search_popout.tips.full_text": "Egyszerű szöveg. Illeszkedő, általad írt tülköket, kedvencnek jelöléseket, megtolást, megemlítést, felhasználói nevet, megjelenített nevet, hashtageket ad majd vissza.",
   "search_popout.tips.hashtag": "hashtag",
-  "search_popout.tips.status": "tülk",
+  "search_popout.tips.status": "állapot",
   "search_popout.tips.text": "Egyszerű szöveg. Illeszkedő megjelenített nevet, felhasználói nevet, hashtageket ad majd vissza",
   "search_popout.tips.user": "felhasználó",
   "search_results.accounts": "Emberek",
@@ -349,6 +359,7 @@
   "status.admin_account": "Moderáció megnyitása @{name} felhasználóhoz",
   "status.admin_status": "Tülk megnyitása moderációra",
   "status.block": "@{name} letiltása",
+  "status.bookmark": "Könyvjelzőzés",
   "status.cancel_reblog_private": "Megtolás törlése",
   "status.cannot_reblog": "Ez a tülk nem tolható meg",
   "status.copy": "Link másolása tülkbe",
@@ -374,23 +385,24 @@
   "status.reblogged_by": "{name} megtolta",
   "status.reblogs.empty": "Senki sem tolta még meg ezt a tülköt. Ha valaki megteszi, itt fog megjelenni.",
   "status.redraft": "Törlés és újraírás",
+  "status.remove_bookmark": "Könyvjelző eltávolítása",
   "status.reply": "Válasz",
   "status.replyAll": "Válasz a beszélgetésre",
   "status.report": "@{name} jelentése",
-  "status.sensitive_warning": "Szenzitív tartalom",
+  "status.sensitive_warning": "Érzékeny tartalom",
   "status.share": "Megosztás",
-  "status.show_less": "Kevesebbet",
+  "status.show_less": "Kevesebb megjelenítése",
   "status.show_less_all": "Kevesebbet mindenhol",
   "status.show_more": "Többet",
   "status.show_more_all": "Többet mindenhol",
   "status.show_thread": "Szál mutatása",
-  "status.uncached_media_warning": "Nem elérhető",
+  "status.uncached_media_warning": "Nem érhető el",
   "status.unmute_conversation": "Beszélgetés némításának kikapcsolása",
   "status.unpin": "Kitűzés eltávolítása a profilodról",
   "suggestions.dismiss": "Javaslat elvetése",
   "suggestions.header": "Esetleg érdekelhet…",
   "tabs_bar.federated_timeline": "Föderációs",
-  "tabs_bar.home": "Saját",
+  "tabs_bar.home": "Kezdőlap",
   "tabs_bar.local_timeline": "Helyi",
   "tabs_bar.notifications": "Értesítések",
   "tabs_bar.search": "Keresés",
@@ -400,17 +412,19 @@
   "time_remaining.moments": "Pillanatok vannak hátra",
   "time_remaining.seconds": "{number, plural, one {# másodperc} other {# másodperc}} van hátra",
   "trends.count_by_accounts": "{count} {rawCount, plural, one {résztvevő} other {résztvevő}} beszélget",
-  "trends.trending_now": "Most trendi",
-  "ui.beforeunload": "A piszkozatod el fog veszni, ha elhagyod a Mastodon-t.",
+  "trends.trending_now": "Most felkapott",
+  "ui.beforeunload": "A piszkozatod el fog veszni, ha elhagyod a Mastodont.",
   "upload_area.title": "Húzd ide a feltöltéshez",
-  "upload_button.label": "Média hozzáadása (JPEG, PNG, GIF, WebM, MP4, MOV)",
-  "upload_error.limit": "Túllépted a fájl feltöltési limitet.",
+  "upload_button.label": "Média hozzáadása ({formats})",
+  "upload_error.limit": "Túllépted a fájlfeltöltési korlátot.",
   "upload_error.poll": "Szavazásnál nem lehet fájlt feltölteni.",
+  "upload_form.audio_description": "Írja le a hallássérültek számára",
   "upload_form.description": "Leírás látáskorlátozottak számára",
   "upload_form.edit": "Szerkesztés",
   "upload_form.undo": "Mégsem",
+  "upload_form.video_description": "Írja le a hallás- vagy látássérültek számára",
   "upload_modal.analyzing_picture": "Kép elemzése…",
-  "upload_modal.apply": "Alkalmazás",
+  "upload_modal.apply": "Alkalmaz",
   "upload_modal.description_placeholder": "A gyors, barna róka átugrik a lusta kutya fölött",
   "upload_modal.detect_text": "Szöveg felismerése a képről",
   "upload_modal.edit_media": "Média szerkesztése",
@@ -418,12 +432,13 @@
   "upload_modal.preview_label": "Előnézet ({ratio})",
   "upload_progress.label": "Feltöltés...",
   "video.close": "Videó bezárása",
+  "video.download": "Fájl letöltése",
   "video.exit_fullscreen": "Kilépés teljes képernyőből",
   "video.expand": "Videó nagyítása",
   "video.fullscreen": "Teljes képernyő",
   "video.hide": "Videó elrejtése",
-  "video.mute": "Hang némitása",
+  "video.mute": "Hang némítása",
   "video.pause": "Szünet",
   "video.play": "Lejátszás",
-  "video.unmute": "Hang némitásának vége"
+  "video.unmute": "Hang némításának vége"
 }
diff --git a/app/javascript/mastodon/locales/hy.json b/app/javascript/mastodon/locales/hy.json
index e667e5b4e8c4618b9520b2854991afaeef5d1343..7b1085971ffa87080b797afbf92d2cfc6cd6d456 100644
--- a/app/javascript/mastodon/locales/hy.json
+++ b/app/javascript/mastodon/locales/hy.json
@@ -1,31 +1,32 @@
 {
-  "account.add_or_remove_from_list": "Add or Remove from lists",
+  "account.add_or_remove_from_list": "Աւելացնել կամ հեռացնել ցանկերից",
   "account.badges.bot": "Ô²Õ¸Õ¿",
+  "account.badges.group": "Group",
   "account.block": "Ô±Ö€Õ£Õ¥Õ¬Õ¡ÖƒÕ¡Õ¯Õ¥Õ¬ @{name}ÖŠÕ«Õ¶",
   "account.block_domain": "Թաքցնել ամենը հետեւյալ տիրույթից՝ {domain}",
-  "account.blocked": "Blocked",
-  "account.cancel_follow_request": "Cancel follow request",
+  "account.blocked": "Ô±Ö€Õ£Õ¥Õ¬Õ¡ÖƒÕ¡Õ¯Õ¸Ö‚Õ¡Õ® Õ§",
+  "account.cancel_follow_request": "չեղարկել հետեւելու հայցը",
   "account.direct": "Direct Message @{name}",
-  "account.domain_blocked": "Domain hidden",
+  "account.domain_blocked": "Թաքցրած տիրոյթ",
   "account.edit_profile": "Ô½Õ´Õ¢Õ¡Õ£Ö€Õ¥Õ¬ Õ¡Õ¶Õ±Õ¶Õ¡Õ¯Õ¡Õ¶ Õ§Õ»Õ¨",
-  "account.endorse": "Feature on profile",
+  "account.endorse": "Ցուցադրել անձնական էջում",
   "account.follow": "Õ€Õ¥Õ¿Õ¥Ö‚Õ¥Õ¬",
   "account.followers": "Õ€Õ¥Õ¿Õ¥Ö‚Õ¸Õ²Õ¶Õ¥Ö€",
-  "account.followers.empty": "No one follows this user yet.",
+  "account.followers.empty": "Ô±ÕµÕ½ Ö…Õ£Õ¿Õ¡Õ¿Õ«Ö€Õ¸Õ»Õ¨ Õ¤Õ¥Õ¼ Õ¸Õ¹ Õ´Õ§Õ¯ Õ¹Õ« Õ°Õ¥Õ¿Õ¥Ö‚Õ¸Ö‚Õ´Ö‰",
   "account.follows": "Õ€Õ¥Õ¿Õ¥Ö‚Õ¸Ö‚Õ´ Õ§",
-  "account.follows.empty": "This user doesn't follow anyone yet.",
+  "account.follows.empty": "Ô±ÕµÕ½ Ö…Õ£Õ¿Õ¡Õ¿Õ§Ö€Õ¶ Õ¤Õ¥Õ¼ Õ¸Õ¹ Õ´Õ§Õ¯Õ« Õ¹Õ« Õ°Õ¥Õ¿Õ¥Ö‚Õ¸Ö‚Õ´Ö‰",
   "account.follows_you": "Õ€Õ¥Õ¿Õ¥Ö‚Õ¸Ö‚Õ´ Õ§ Ö„Õ¥Õ¦",
   "account.hide_reblogs": "Թաքցնել @{name}֊ի տարածածները",
-  "account.last_status": "Last active",
-  "account.link_verified_on": "Ownership of this link was checked on {date}",
-  "account.locked_info": "This account privacy status is set to locked. The owner manually reviews who can follow them.",
+  "account.last_status": "ÕŽÕ¥Ö€Õ»Õ«Õ¶ Õ¡Õ¶Õ£Õ¡Õ´ Õ¡Õ¯Õ¿Õ«Ö‚ Õ§Ö€",
+  "account.link_verified_on": "Սոյն յղման տիրապետումը ստուգուած է՝ {date}֊ին",
+  "account.locked_info": "Սոյն հաշուի գաղտնիութեան մակարդակը նշուած է որպէս՝ փակ։ Հաշուի տէրն ընտրում է, թէ ով կարող է հետեւել իրեն։",
   "account.media": "Õ„Õ¥Õ¤Õ«Õ¡",
   "account.mention": "Õ†Õ·Õ¥Õ¬ @{name}ÖŠÕ«Õ¶",
   "account.moved_to": "{name}֊ը տեղափոխվել է՝",
   "account.mute": "Լռեցնել @{name}֊ին",
   "account.mute_notifications": "Անջատել ծանուցումները @{name}֊ից",
-  "account.muted": "Muted",
-  "account.never_active": "Never",
+  "account.muted": "Լռեցուած",
+  "account.never_active": "ÔµÖ€Õ¢Õ¥Ö„",
   "account.posts": "Ô³Ö€Õ¡Õ¼Õ¸Ö‚Õ´Õ¶Õ¥Ö€",
   "account.posts_with_replies": "Toots with replies",
   "account.report": "Բողոքել @{name}֊ից",
@@ -34,15 +35,15 @@
   "account.show_reblogs": "Ցուցադրել @{name}֊ի տարածածները",
   "account.unblock": "Ô±ÕºÕ¡Õ¡Ö€Õ£Õ¥Õ¬Õ¡ÖƒÕ¡Õ¯Õ¥Õ¬ @{name}ÖŠÕ«Õ¶",
   "account.unblock_domain": "Ցուցադրել {domain} թաքցված տիրույթի գրառումները",
-  "account.unendorse": "Don't feature on profile",
+  "account.unendorse": "Չցուցադրել անձնական էջում",
   "account.unfollow": "Õ‰Õ°Õ¥Õ¿Õ¥Ö‚Õ¥Õ¬",
   "account.unmute": "Ապալռեցնել @{name}֊ին",
   "account.unmute_notifications": "Միացնել ծանուցումները @{name}֊ից",
-  "alert.rate_limited.message": "Please retry after {retry_time, time, medium}.",
+  "alert.rate_limited.message": "Փորձէք  որոշ ժամանակ անց՝ {retry_time, time, medium}։",
   "alert.rate_limited.title": "Rate limited",
-  "alert.unexpected.message": "An unexpected error occurred.",
+  "alert.unexpected.message": "Անսպասելի սխալ տեղի ունեցաւ։",
   "alert.unexpected.title": "Վա՜յ",
-  "autosuggest_hashtag.per_week": "{count} per week",
+  "autosuggest_hashtag.per_week": "շաբաթը՝ {count}",
   "boost_modal.combo": "Կարող ես սեղմել {combo}՝ սա հաջորդ անգամ բաց թողնելու համար",
   "bundle_column_error.body": "Այս բաղադրիչը բեռնելու ընթացքում ինչ֊որ բան խափանվեց։",
   "bundle_column_error.retry": "Ô¿Ö€Õ¯Õ«Õ¶ ÖƒÕ¸Ö€Õ±Õ¥Õ¬",
@@ -51,10 +52,11 @@
   "bundle_modal_error.message": "Այս բաղադրիչը բեռնելու ընթացքում ինչ֊որ բան խափանվեց։",
   "bundle_modal_error.retry": "Ô¿Ö€Õ¯Õ«Õ¶ ÖƒÕ¸Ö€Õ±Õ¥Õ¬",
   "column.blocks": "Ô±Ö€Õ£Õ¥Õ¬Õ¡ÖƒÕ¡Õ¯Õ¾Õ¡Õ® Ö…Õ£Õ¿Õ¡Õ¿Õ¥Ö€Õ¥Ö€",
+  "column.bookmarks": "Ô·Õ»Õ¡Õ¶Õ«Õ·Õ¥Ö€",
   "column.community": "Տեղական հոսք",
-  "column.direct": "Direct messages",
-  "column.directory": "Browse profiles",
-  "column.domain_blocks": "Hidden domains",
+  "column.direct": "Հասցէագրուած հաղորդագրութիւններ",
+  "column.directory": "Ô¶Õ¶Õ¶Õ¥Õ¬ Õ¡Õ¶Õ±Õ¶Õ¡Õ¯Õ¡Õ¶ Õ§Õ»Õ¥Ö€Õ¨",
+  "column.domain_blocks": "Թաքցուած տիրոյթները",
   "column.favourites": "Õ€Õ¡Õ¾Õ¡Õ¶Õ¡Õ®Õ¶Õ¥Ö€",
   "column.follow_requests": "Հետեւելու հայցեր",
   "column.home": "Õ€Õ«Õ´Õ¶Õ¡Õ¯Õ¡Õ¶",
@@ -73,25 +75,27 @@
   "column_subheading.settings": "Ô¿Õ¡Ö€Õ£Õ¡Õ¾Õ¸Ö€Õ¸Ö‚Õ´Õ¶Õ¥Ö€",
   "community.column_settings.media_only": "Media only",
   "compose_form.direct_message_warning": "This toot will only be visible to all the mentioned users.",
-  "compose_form.direct_message_warning_learn_more": "Learn more",
+  "compose_form.direct_message_warning_learn_more": "Ô»Õ´Õ¡Õ¶Õ¡Õ¬ Õ¡Õ¾Õ¥Õ¬Õ«Õ¶",
   "compose_form.hashtag_warning": "Ô±ÕµÕ½ Õ©Õ¸Ö‚Õ©Õ¨ Õ¹Õ« Õ°Õ¡Õ·Õ¾Õ¡Õ¼Õ¾Õ« Õ¸Ö€Õ¥Ö‚Õ§ ÕºÕ«Õ¿Õ¡Õ¯Õ« Õ¿Õ¡Õ¯, Ö„Õ¡Õ¶Õ¦Õ« Õ¡ÕµÕ¶ Õ®Õ¡Õ®Õ¸Ö‚Õ¯ Õ§Ö‰ Õ„Õ«Õ¡ÕµÕ¶ Õ°Ö€Õ¡ÕºÕ¡Ö€Õ¡Õ¯Õ¡ÕµÕ«Õ¶ Õ©Õ©Õ¥Ö€Õ¨ Õ°Õ¶Õ¡Ö€Õ¡Õ¾Õ¸Ö€ Õ§ Õ¸Ö€Õ¸Õ¶Õ¥Õ¬ ÕºÕ«Õ¿Õ¡Õ¯Õ¶Õ¥Ö€Õ¸Õ¾Ö‰",
   "compose_form.lock_disclaimer": "Õ”Õ¸ Õ°Õ¡Õ·Õ«Õ¾Õ¨ {locked} Õ¹Õ§Ö‰ Õ…Õ¸Ö‚Ö€Õ¡Ö„Õ¡Õ¶Õ¹ÕµÕ¸Ö‚Ö€ Õ¸Ö„ Õ¯Õ¡Ö€Õ¸Õ² Õ§ Õ°Õ¥Õ¿Õ¥Ö‚Õ¥Õ¬ Ö„Õ¥Õ¦ Õ¥Ö‚ Õ¿Õ¥Õ½Õ¶Õ¥Õ¬ Õ´Õ«Õ¡ÕµÕ¶ Õ°Õ¥Õ¿Õ¥Ö‚Õ¸Õ²Õ¶Õ¥Ö€Õ« Õ°Õ¡Õ´Õ¡Ö€ Õ¶Õ¡Õ­Õ¡Õ¿Õ¥Õ½Õ¾Õ¡Õ® Õ£Ö€Õ¡Õ¼Õ¸Ö‚Õ´Õ¶Õ¥Ö€Õ¨Ö‰",
   "compose_form.lock_disclaimer.lock": "ÖƒÕ¡Õ¯",
   "compose_form.placeholder": "Ô»ÕžÕ¶Õ¹ Õ¯Õ¡ Õ´Õ¿Ö„Õ«Õ¤",
-  "compose_form.poll.add_option": "Add a choice",
-  "compose_form.poll.duration": "Poll duration",
-  "compose_form.poll.option_placeholder": "Choice {number}",
-  "compose_form.poll.remove_option": "Remove this choice",
+  "compose_form.poll.add_option": "Աւելացնել տարբերակ",
+  "compose_form.poll.duration": "Հարցման տեւողութիւնը",
+  "compose_form.poll.option_placeholder": "Տարբերակ {number}",
+  "compose_form.poll.remove_option": "Հեռացնել այս տարբերակը",
+  "compose_form.poll.switch_to_multiple": "Change poll to allow multiple choices",
+  "compose_form.poll.switch_to_single": "Change poll to allow for a single choice",
   "compose_form.publish": "Ô¹Õ©Õ¥Õ¬",
   "compose_form.publish_loud": "Թթե՜լ",
-  "compose_form.sensitive.hide": "Mark media as sensitive",
-  "compose_form.sensitive.marked": "Media is marked as sensitive",
-  "compose_form.sensitive.unmarked": "Media is not marked as sensitive",
-  "compose_form.spoiler.marked": "Text is hidden behind warning",
-  "compose_form.spoiler.unmarked": "Text is not hidden",
+  "compose_form.sensitive.hide": "Նշել մեդիան որպէս դիւրազգաց",
+  "compose_form.sensitive.marked": "Մեդիան նշուած է որպէս դիւրազգաց",
+  "compose_form.sensitive.unmarked": "Մեդիան նշուած չէ որպէս դիւրազգաց",
+  "compose_form.spoiler.marked": "Տեքստը թաքցուած է զգուշացման ետեւում",
+  "compose_form.spoiler.unmarked": "Տեքստը թաքցուած չէ",
   "compose_form.spoiler_placeholder": "Գրիր նախազգուշացումդ այստեղ",
   "confirmation_modal.cancel": "Õ‰Õ¥Õ²Õ¡Ö€Õ¯Õ¥Õ¬",
-  "confirmations.block.block_and_report": "Block & Report",
+  "confirmations.block.block_and_report": "Ô±Ö€Õ£Õ¥Õ¬Õ¡ÖƒÕ¡Õ¯Õ¥Õ¬ Õ¥Ö‚ Õ¢Õ¸Õ²Õ¸Ö„Õ¥Õ¬",
   "confirmations.block.confirm": "Ô±Ö€Õ£Õ¥Õ¬Õ¡ÖƒÕ¡Õ¯Õ¥Õ¬",
   "confirmations.block.message": "ÕŽÕ½Õ¿Õ¡ÕžÕ° Õ¥Õ½, Õ¸Ö€ Õ¸Ö‚Õ¦Õ¸Ö‚Õ´ Õ¥Õ½ Õ¡Ö€Õ£Õ¥Õ¬Õ¡ÖƒÕ¡Õ¯Õ¥Õ¬ {name}ÖŠÕ«Õ¶Ö‰",
   "confirmations.delete.confirm": "Õ‹Õ¶Õ»Õ¥Õ¬",
@@ -100,25 +104,25 @@
   "confirmations.delete_list.message": "Վստա՞հ ես, որ ուզում ես մշտապես ջնջել այս ցանկը։",
   "confirmations.domain_block.confirm": "Թաքցնել ամբողջ տիրույթը",
   "confirmations.domain_block.message": "Հաստատ֊հաստա՞տ վստահ ես, որ ուզում ես արգելափակել ամբողջ {domain} տիրույթը։ Սովորաբար մի երկու թիրախավորված արգելափակում կամ լռեցում բավական է ու նախընտրելի։",
-  "confirmations.logout.confirm": "Log out",
-  "confirmations.logout.message": "Are you sure you want to log out?",
+  "confirmations.logout.confirm": "ÔµÕ¬Ö„",
+  "confirmations.logout.message": "Õ€Õ¡Õ´Õ¸Õ¦Õ¸ÕžÖ‚Õ¡Õ® Õ¥Õ½, Õ¸Ö€ Õ¸Ö‚Õ¦Õ¸Ö‚Õ´ Õ¥Õ½ Õ¤Õ¸Ö‚Ö€Õ½ Õ£Õ¡Õ¬",
   "confirmations.mute.confirm": "Լռեցնել",
-  "confirmations.mute.explanation": "This will hide posts from them and posts mentioning them, but it will still allow them to see your posts and follow you.",
+  "confirmations.mute.explanation": "Սա թաքցնելու ա իրենց գրառումներն, ինչպէս նաեւ իրենց նշող գրառումներն, բայց իրենք միեւնոյն է կը կարողանան հետեւել ձեզ եւ տեսնել ձեր գրառումները։",
   "confirmations.mute.message": "Վստա՞հ ես, որ ուզում ես {name}֊ին լռեցնել։",
-  "confirmations.redraft.confirm": "Delete & redraft",
+  "confirmations.redraft.confirm": "Ջնջել եւ խմբագրել նորից",
   "confirmations.redraft.message": "Are you sure you want to delete this status and re-draft it? You will lose all replies, boosts and favourites to it.",
-  "confirmations.reply.confirm": "Reply",
-  "confirmations.reply.message": "Replying now will overwrite the message you are currently composing. Are you sure you want to proceed?",
+  "confirmations.reply.confirm": "ÕŠÕ¡Õ¿Õ¡Õ½Õ­Õ¡Õ¶Õ¥Õ¬",
+  "confirmations.reply.message": "Այս պահին պատասխանելը կը չեղարկի ձեր՝ այս պահին անաւարտ հաղորդագրութիւնը։ Համոզուա՞ծ էք։",
   "confirmations.unfollow.confirm": "Ô±ÕºÕ¡Õ°Õ¥Õ¿Õ¥Ö‚Õ¥Õ¬",
   "confirmations.unfollow.message": "ÕŽÕ½Õ¿Õ¡ÕžÕ° Õ¥Õ½, Õ¸Ö€ Õ¸Ö‚Õ¦Õ¸Ö‚Õ´ Õ¥Õ½ Õ¡ÕµÕ¬Õ¥Ö‚Õ½ Õ¹Õ°Õ¥Õ¿Õ¥Ö‚Õ¥Õ¬ {name}ÖŠÕ«Õ¶Ö‰",
-  "conversation.delete": "Delete conversation",
-  "conversation.mark_as_read": "Mark as read",
-  "conversation.open": "View conversation",
-  "conversation.with": "With {names}",
-  "directory.federated": "From known fediverse",
-  "directory.local": "From {domain} only",
-  "directory.new_arrivals": "New arrivals",
-  "directory.recently_active": "Recently active",
+  "conversation.delete": "Ջնջել խօսակցութիւնը",
+  "conversation.mark_as_read": "Նշել որպէս ընթերցուած",
+  "conversation.open": "Դիտել խօսակցութիւնը",
+  "conversation.with": "{names}ÖŠÕ¥Ö€Õ« Õ°Õ¥Õ¿",
+  "directory.federated": "Յայտնի դաշնեզերքից",
+  "directory.local": "{domain} տիրոյթից միայն",
+  "directory.new_arrivals": "Õ†Õ¸Ö€Õ¸Ö‚Õ©Õ«Ö‚Õ¶Õ¶Õ¥Ö€",
+  "directory.recently_active": "ÕŽÕ¥Ö€Õ»Õ¥Ö€Õ½ Õ¡Õ¯Õ¿Õ«Ö‚",
   "embed.instructions": "Ô±ÕµÕ½ Õ©Õ¸Ö‚Õ©Õ¨ Ö„Õ¸ Õ¯Õ¡ÕµÖ„Õ¸Ö‚Õ´ Õ¶Õ¥Ö€Õ¤Õ¶Õ¥Õ¬Õ¸Ö‚ Õ°Õ¡Õ´Õ¡Ö€ Õ¯Õ¡Ö€Õ¸Õ² Õ¥Õ½ ÕºÕ¡Õ¿Õ³Õ¥Õ¶Õ¥Õ¬ Õ¶Õ¥Ö€Ö„Õ¸Õ°Õ«Õ·ÕµÕ¡Õ¬ Õ¯Õ¸Õ¤Õ¨Ö‰",
   "embed.preview": "Ահա, թե ինչ տեսք կունենա այն՝",
   "emoji_button.activity": "Ô¶Õ¢Õ¡Õ²Õ´Õ¸Ö‚Õ¶Ö„Õ¶Õ¥Ö€",
@@ -135,27 +139,28 @@
   "emoji_button.search_results": "ÕˆÖ€Õ¸Õ¶Õ´Õ¡Õ¶ Õ¡Ö€Õ¤ÕµÕ¸Ö‚Õ¶Ö„Õ¶Õ¥Ö€",
   "emoji_button.symbols": "Õ†Õ·Õ¡Õ¶Õ¶Õ¥Ö€",
   "emoji_button.travel": "ÕˆÖ‚Õ²Õ¥Ö‚Õ¸Ö€Õ¸Ö‚Õ©ÕµÕ¸Ö‚Õ¶ Õ¥Ö‚ Õ¿Õ¥Õ²Õ¡Õ¶Ö„Õ¶Õ¥Ö€",
-  "empty_column.account_timeline": "No toots here!",
-  "empty_column.account_unavailable": "Profile unavailable",
-  "empty_column.blocks": "You haven't blocked any users yet.",
+  "empty_column.account_timeline": "Ô±ÕµÕ½Õ¿Õ¥Õ² Õ©Õ©Õ¥Ö€ Õ¹Õ¯Õ¡Õ›Õ¶Ö‰",
+  "empty_column.account_unavailable": "Ô±Õ¶Õ±Õ¶Õ¡Õ¯Õ¡Õ¶ Õ§Õ»Õ¨ Õ°Õ¡Õ½Õ¡Õ¶Õ¥Õ¬Õ« Õ¹Õ«",
+  "empty_column.blocks": "Ô´Õ¸Ö‚ Õ¤Õ¥Õ¼ Õ¸Õ¹ Õ´Õ§Õ¯Õ« Õ¹Õ¥Õ½ Õ¡Ö€Õ£Õ¥Õ¬Õ¡ÖƒÕ¡Õ¯Õ¥Õ¬Ö‰",
+  "empty_column.bookmarked_statuses": "You don't have any bookmarked toots yet. When you bookmark one, it will show up here.",
   "empty_column.community": "Տեղական հոսքը դատա՛րկ է։ Հրապարակային մի բան գրիր շարժիչը խոդ տալու համար։",
-  "empty_column.direct": "You don't have any direct messages yet. When you send or receive one, it will show up here.",
-  "empty_column.domain_blocks": "There are no hidden domains yet.",
-  "empty_column.favourited_statuses": "You don't have any favourite toots yet. When you favourite one, it will show up here.",
-  "empty_column.favourites": "No one has favourited this toot yet. When someone does, they will show up here.",
+  "empty_column.direct": "Դու դեռ չունես ոչ մի հասցէագրուած հաղորդագրութիւն։ Երբ ուղարկես կամ ստանաս որեւէ անձնական նամակ, այն այստեղ կերեւայ։",
+  "empty_column.domain_blocks": "Թաքցուած տիրոյթներ դեռ չկան։",
+  "empty_column.favourited_statuses": "Ô´Õ¸Ö‚ Õ¤Õ¥Õ¼ Õ¹Õ¸Ö‚Õ¶Õ¥Õ½ Õ¸Ö€Õ¥Ö‚Õ§ Õ°Õ¡Ö‚Õ¡Õ¶Õ¡Õ® Õ©Õ¸Ö‚Õ©Ö‰ ÔµÖ€Õ¢ Õ°Õ¡Ö‚Õ¡Õ¶Õ¥Õ½, Õ¤Ö€Õ¡Õ¶Ö„ Õ¯Õ¥Ö€Õ¥Ö‚Õ¡Õ¶ Õ¡ÕµÕ½Õ¿Õ¥Õ²Ö‰",
+  "empty_column.favourites": "Ô±ÕµÕ½ Õ©Õ¸Ö‚Õ©Õ¨ Õ¸Õ¹ Õ´Õ§Õ¯ Õ¤Õ¥Õ¼ Õ¹Õ« Õ°Õ¡Ö‚Õ¡Õ¶Õ¥Õ¬Ö‰ Õ€Õ¡Ö‚Õ¡Õ¶Õ¸Õ²Õ¶Õ¥Ö€Õ¨ Õ¯Õ¥Ö€Õ¥Ö‚Õ¡Õ¶ Õ¡ÕµÕ½Õ¿Õ¥Õ², Õ¥Ö€Õ¢ Õ¶Õ·Õ¥Õ¶ Õ©Õ¸Ö‚Õ©Õ¨ Õ°Õ¡Ö‚Õ¡Õ¶Õ¡Õ®Ö‰",
   "empty_column.follow_requests": "You don't have any follow requests yet. When you receive one, it will show up here.",
   "empty_column.hashtag": "Ô±ÕµÕ½ ÕºÕ«Õ¿Õ¡Õ¯Õ¸Õ¾ Õ¤Õ¥Õ¼ Õ¸Õ¹Õ«Õ¶Õ¹ Õ¹Õ¯Õ¡Ö‰",
   "empty_column.home": "Քո հիմնական հոսքը դատա՛րկ է։ Այցելի՛ր {public}ը կամ օգտվիր որոնումից՝ այլ մարդկանց հանդիպելու համար։",
   "empty_column.home.public_timeline": "Õ°Ö€Õ¡ÕºÕ¡Ö€Õ¡Õ¯Õ¡ÕµÕ«Õ¶ Õ°Õ¸Õ½Ö„",
   "empty_column.list": "Այս ցանկում դեռ ոչինչ չկա։ Երբ ցանկի անդամներից որեւէ մեկը նոր թութ գրի, այն կհայտնվի այստեղ։",
   "empty_column.lists": "You don't have any lists yet. When you create one, it will show up here.",
-  "empty_column.mutes": "You haven't muted any users yet.",
+  "empty_column.mutes": "Ô±Õ¼Õ¡ÕµÕªÕ´ Õ¸Õ¹ Õ¸Ö„Õ« Õ¹Õ¥Ö„ Õ¡Ö€Õ£Õ¥Õ¬Õ¡ÖƒÕ¡Õ¯Õ¥Õ¬Ö‰",
   "empty_column.notifications": "Ոչ մի ծանուցում դեռ չունես։ Բզիր մյուսներին՝ խոսակցությունը սկսելու համար։",
   "empty_column.public": "Այստեղ բան չկա՛։ Հրապարակային մի բան գրիր կամ հետեւիր այլ հանգույցներից էակների՝ այն լցնելու համար։",
   "error.unexpected_crash.explanation": "Due to a bug in our code or a browser compatibility issue, this page could not be displayed correctly.",
   "error.unexpected_crash.next_steps": "Try refreshing the page. If that does not help, you may still be able to use Mastodon through a different browser or native app.",
   "errors.unexpected_crash.copy_stacktrace": "Copy stacktrace to clipboard",
-  "errors.unexpected_crash.report_issue": "Report issue",
+  "errors.unexpected_crash.report_issue": "Զեկուցել խնդրի մասին",
   "federation.change": "Adjust status federation",
   "federation.federated.long": "Allow toot to reach other instances",
   "federation.federated.short": "Federated",
@@ -163,22 +168,22 @@
   "federation.local_only.short": "Local-only",
   "follow_request.authorize": "Վավերացնել",
   "follow_request.reject": "Õ„Õ¥Ö€ÕªÕ¥Õ¬",
-  "getting_started.developers": "Developers",
-  "getting_started.directory": "Profile directory",
-  "getting_started.documentation": "Documentation",
+  "getting_started.developers": "Õ„Õ·Õ¡Õ¯Õ¸Õ²Õ¶Õ¥Ö€",
+  "getting_started.directory": "ÕŠÖ€Õ¸Ö†Õ«Õ¬Õ« Õ¿Õ¥Õ²Õ¡Õ¤Ö€Õ¡Õ¾Õ¡ÕµÖ€Õ¨",
+  "getting_started.documentation": "Õ“Õ¡Õ½Õ¿Õ¡Õ©Õ²Õ©Õ¥Ö€",
   "getting_started.heading": "Ô»Õ¶Õ¹ÕºÕ¥Õ½ Õ½Õ¯Õ½Õ¥Õ¬",
-  "getting_started.invite": "Invite people",
+  "getting_started.invite": "Հրավիրել մարդկանց",
   "getting_started.open_source_notice": "Մաստոդոնը բաց ելատեքստով ծրագրակազմ է։ Կարող ես ներդրում անել կամ վրեպներ զեկուցել ԳիթՀաբում՝ {github}։",
-  "getting_started.security": "Security",
-  "getting_started.terms": "Terms of service",
-  "hashtag.column_header.tag_mode.all": "and {additional}",
-  "hashtag.column_header.tag_mode.any": "or {additional}",
-  "hashtag.column_header.tag_mode.none": "without {additional}",
+  "getting_started.security": "Õ€Õ¡Õ·Õ¾Õ« Õ¯Õ¡Ö€Õ£Õ¡Õ¾Õ¸Ö€Õ¸Ö‚Õ´Õ¶Õ¥Ö€",
+  "getting_started.terms": "Ô¾Õ¡Õ¼Õ¡ÕµÕ¸Ö‚Õ©ÕµÕ¡Õ¶ ÕºÕ¡ÕµÕ´Õ¡Õ¶Õ¶Õ¥Ö€Õ¨",
+  "hashtag.column_header.tag_mode.all": "Ö‡ {additional}",
+  "hashtag.column_header.tag_mode.any": "Õ¯Õ¡Õ´ {additional}",
+  "hashtag.column_header.tag_mode.none": "առանց {additional}",
   "hashtag.column_settings.select.no_options_message": "No suggestions found",
   "hashtag.column_settings.select.placeholder": "Enter hashtags…",
-  "hashtag.column_settings.tag_mode.all": "All of these",
-  "hashtag.column_settings.tag_mode.any": "Any of these",
-  "hashtag.column_settings.tag_mode.none": "None of these",
+  "hashtag.column_settings.tag_mode.all": "Ô²Õ¸Õ¬Õ¸Ö€Õ¨",
+  "hashtag.column_settings.tag_mode.any": "Ցանկացածը",
+  "hashtag.column_settings.tag_mode.none": "ÕˆÕ¹ Õ´Õ¥Õ¯Õ¨",
   "hashtag.column_settings.tag_toggle": "Include additional tags in this column",
   "home.column_settings.basic": "Õ€Õ«Õ´Õ¶Õ¡Õ¯Õ¡Õ¶",
   "home.column_settings.show_reblogs": "Ցուցադրել տարածածները",
@@ -186,25 +191,25 @@
   "intervals.full.days": "{number, plural, one {# day} other {# days}}",
   "intervals.full.hours": "{number, plural, one {# hour} other {# hours}}",
   "intervals.full.minutes": "{number, plural, one {# minute} other {# minutes}}",
-  "introduction.federation.action": "Next",
+  "introduction.federation.action": "Õ€Õ¡Õ»Õ¸Ö€Õ¤",
   "introduction.federation.federated.headline": "Federated",
   "introduction.federation.federated.text": "Public posts from other servers of the fediverse will appear in the federated timeline.",
-  "introduction.federation.home.headline": "Home",
+  "introduction.federation.home.headline": "Õ€Õ«Õ´Õ¶Õ¡Õ¯Õ¡Õ¶",
   "introduction.federation.home.text": "Posts from people you follow will appear in your home feed. You can follow anyone on any server!",
-  "introduction.federation.local.headline": "Local",
+  "introduction.federation.local.headline": "Տեղային",
   "introduction.federation.local.text": "Public posts from people on the same server as you will appear in the local timeline.",
   "introduction.interactions.action": "Finish toot-orial!",
-  "introduction.interactions.favourite.headline": "Favourite",
+  "introduction.interactions.favourite.headline": "Õ†Õ¡Õ­Õ¨Õ¶Õ¿Ö€Õ¥Õ¬Õ«",
   "introduction.interactions.favourite.text": "You can save a toot for later, and let the author know that you liked it, by favouriting it.",
-  "introduction.interactions.reblog.headline": "Boost",
+  "introduction.interactions.reblog.headline": "Տարածել",
   "introduction.interactions.reblog.text": "You can share other people's toots with your followers by boosting them.",
-  "introduction.interactions.reply.headline": "Reply",
+  "introduction.interactions.reply.headline": "ÕŠÕ¡Õ¿Õ¡Õ½Õ­Õ¡Õ¶Õ¥Õ¬",
   "introduction.interactions.reply.text": "You can reply to other people's and your own toots, which will chain them together in a conversation.",
-  "introduction.welcome.action": "Let's go!",
-  "introduction.welcome.headline": "First steps",
+  "introduction.welcome.action": "Գնացի՜նք։",
+  "introduction.welcome.headline": "Ô±Õ¼Õ¡Õ»Õ«Õ¶ Ö„Õ¡ÕµÕ¬Õ¥Ö€",
   "introduction.welcome.text": "Welcome to the fediverse! In a few moments, you'll be able to broadcast messages and talk to your friends across a wide variety of servers. But this server, {domain}, is special—it hosts your profile, so remember its name.",
   "keyboard_shortcuts.back": "Õ¥Õ¿ Õ¶Õ¡Õ¾Õ¡Ö€Õ¯Õ¥Õ¬Õ¸Ö‚ Õ°Õ¡Õ´Õ¡Ö€",
-  "keyboard_shortcuts.blocked": "to open blocked users list",
+  "keyboard_shortcuts.blocked": "արգելափակված օգտատերերի ցանկը բացելու համար",
   "keyboard_shortcuts.boost": "Õ¿Õ¡Ö€Õ¡Õ®Õ¥Õ¬Õ¸Ö‚ Õ°Õ¡Õ´Õ¡Ö€",
   "keyboard_shortcuts.column": "սյուներից մեկի վրա սեւեռվելու համար",
   "keyboard_shortcuts.compose": "Õ·Õ¡Ö€Õ¡Õ¤Ö€Õ´Õ¡Õ¶ Õ¿Õ«Ö€Õ¸Ö‚ÕµÕ©Õ«Õ¶ Õ½Õ¥Ö‚Õ¥Õ¼Õ¾Õ¥Õ¬Õ¸Ö‚ Õ°Õ¡Õ´Õ¡Ö€",
@@ -224,26 +229,27 @@
   "keyboard_shortcuts.muted": "to open muted users list",
   "keyboard_shortcuts.my_profile": "to open your profile",
   "keyboard_shortcuts.notifications": "to open notifications column",
-  "keyboard_shortcuts.pinned": "to open pinned toots list",
-  "keyboard_shortcuts.profile": "to open author's profile",
+  "keyboard_shortcuts.open_media": "to open media",
+  "keyboard_shortcuts.pinned": "ամրացուած թթերի ցանկը բացելու համար",
+  "keyboard_shortcuts.profile": "հեղինակի անձնական էջը բացելու համար",
   "keyboard_shortcuts.reply": "ÕºÕ¡Õ¿Õ¡Õ½Õ­Õ¡Õ¶Õ¥Õ¬Õ¸Ö‚ Õ°Õ¡Õ´Õ¡Ö€",
-  "keyboard_shortcuts.requests": "to open follow requests list",
+  "keyboard_shortcuts.requests": "հետեւելու հայցերի ցանկը դիտելու համար",
   "keyboard_shortcuts.search": "Õ¸Ö€Õ¸Õ¶Õ´Õ¡Õ¶ Õ¤Õ¡Õ·Õ¿Õ«Õ¶ Õ½Õ¥Ö‚Õ¥Õ¼Õ¾Õ¥Õ¬Õ¸Ö‚ Õ°Õ¡Õ´Õ¡Ö€",
-  "keyboard_shortcuts.start": "to open \"get started\" column",
-  "keyboard_shortcuts.toggle_hidden": "to show/hide text behind CW",
-  "keyboard_shortcuts.toggle_sensitivity": "to show/hide media",
+  "keyboard_shortcuts.start": "«սկսել» սիւնակը բացելու համար",
+  "keyboard_shortcuts.toggle_hidden": "CW֊ի ետեւի տեքստը ցուցադրել֊թաքցնելու համար",
+  "keyboard_shortcuts.toggle_sensitivity": "մեդիան ցուցադրել֊թաքցնելու համար",
   "keyboard_shortcuts.toot": "Õ©Õ¡Ö€Õ´ Õ©Õ¸Ö‚Õ© Õ½Õ¯Õ½Õ¥Õ¬Õ¸Ö‚ Õ°Õ¡Õ´Õ¡Ö€",
   "keyboard_shortcuts.unfocus": "տեքստի/որոնման տիրույթից ապասեւեռվելու համար",
   "keyboard_shortcuts.up": "ցանկով վերեւ շարժվելու համար",
   "lightbox.close": "Õ“Õ¡Õ¯Õ¥Õ¬",
   "lightbox.next": "Õ€Õ¡Õ»Õ¸Ö€Õ¤",
   "lightbox.previous": "Õ†Õ¡Õ­Õ¸Ö€Õ¤",
-  "lightbox.view_context": "View context",
+  "lightbox.view_context": "Տեսնել ենթատեքստը",
   "lists.account.add": "Ավելացնել ցանկին",
   "lists.account.remove": "Հանել ցանկից",
   "lists.delete": "Ջնջել ցանկը",
   "lists.edit": "Փոփոխել ցանկը",
-  "lists.edit.submit": "Change title",
+  "lists.edit.submit": "Õ“Õ¸Õ­Õ¥Õ¬ Õ¾Õ¥Ö€Õ¶Õ¡Õ£Õ«Ö€Õ¨",
   "lists.new.create": "Ավելացնել ցանկ",
   "lists.new.title_placeholder": "Նոր ցանկի վերնագիր",
   "lists.search": "Փնտրել քո հետեւած մարդկանց մեջ",
@@ -252,20 +258,21 @@
   "loading_indicator.label": "Բեռնվում է…",
   "media_gallery.toggle_visible": "Ցուցադրել/թաքցնել",
   "missing_indicator.label": "Չգտնվեց",
-  "missing_indicator.sublabel": "This resource could not be found",
+  "missing_indicator.sublabel": "ÕŠÕ¡Õ·Õ¡Ö€Õ¨ Õ¹Õ« Õ£Õ¿Õ¶Ö‚Õ¸Ö‚Õ´",
   "mute_modal.hide_notifications": "Թաքցնե՞լ ցանուցումներն այս օգտատիրոջից։",
-  "navigation_bar.apps": "Mobile apps",
+  "navigation_bar.apps": "Ô´Õ«Ö‚Ö€Õ¡Õ¯Õ«Ö€ ÕµÕ¡Ö‚Õ¥Õ¬Õ¸Ö‚Õ¡Õ®Õ¶Õ¥Ö€",
   "navigation_bar.blocks": "Ô±Ö€Õ£Õ¥Õ¬Õ¡ÖƒÕ¡Õ¯Õ¾Õ¡Õ® Ö…Õ£Õ¿Õ¡Õ¿Õ¥Ö€Õ¥Ö€",
+  "navigation_bar.bookmarks": "Ô·Õ»Õ¡Õ¶Õ«Õ·Õ¥Ö€",
   "navigation_bar.community_timeline": "Տեղական հոսք",
-  "navigation_bar.compose": "Compose new toot",
-  "navigation_bar.direct": "Direct messages",
-  "navigation_bar.discover": "Discover",
-  "navigation_bar.domain_blocks": "Hidden domains",
+  "navigation_bar.compose": "Ô³Ö€Õ¥Õ¬ Õ¶Õ¸Ö€ Õ©Õ¸Ö‚Õ©",
+  "navigation_bar.direct": "Հասցէագրուած",
+  "navigation_bar.discover": "Բացայայտել",
+  "navigation_bar.domain_blocks": "Թաքցուած տիրոյթներ",
   "navigation_bar.edit_profile": "Ô½Õ´Õ¢Õ¡Õ£Ö€Õ¥Õ¬ Õ¡Õ¶Õ±Õ¶Õ¡Õ¯Õ¡Õ¶ Õ§Õ»Õ¨",
   "navigation_bar.favourites": "Õ€Õ¡Õ¾Õ¡Õ¶Õ¡Õ®Õ¶Õ¥Ö€",
-  "navigation_bar.filters": "Muted words",
+  "navigation_bar.filters": "Լռեցուած բառեր",
   "navigation_bar.follow_requests": "Հետեւելու հայցեր",
-  "navigation_bar.follows_and_followers": "Follows and followers",
+  "navigation_bar.follows_and_followers": "Õ€Õ¥Õ¿Õ¥Ö‚Õ¡Õ®Õ¶Õ¥Ö€ Õ¥Ö‚ Õ°Õ¥Õ¿Õ¥Ö‚Õ¸Õ²Õ¶Õ¥Ö€",
   "navigation_bar.info": "Այս հանգույցի մասին",
   "navigation_bar.keyboard_shortcuts": "Ստեղնաշարի կարճատներ",
   "navigation_bar.lists": "Õ‘Õ¡Õ¶Õ¯Õ¥Ö€",
@@ -278,38 +285,41 @@
   "navigation_bar.security": "Ô±Õ¶Õ¾Õ¿Õ¡Õ¶Õ£Õ¸Ö‚Õ©ÕµÕ¸Ö‚Õ¶",
   "notification.favourite": "{name} հավանեց թութդ",
   "notification.follow": "{name} սկսեց հետեւել քեզ",
+  "notification.follow_request": "{name} has requested to follow you",
   "notification.mention": "{name} նշեց քեզ",
-  "notification.poll": "A poll you have voted in has ended",
+  "notification.own_poll": "Հարցումդ աւարտուեց",
+  "notification.poll": "Հարցումը, ուր դու քուէարկել ես, աւարտուեց։",
   "notification.reblog": "{name} տարածեց թութդ",
   "notifications.clear": "Մաքրել ծանուցումները",
   "notifications.clear_confirmation": "Վստա՞հ ես, որ ուզում ես մշտապես մաքրել քո բոլոր ծանուցումները։",
   "notifications.column_settings.alert": "Աշխատատիրույթի ծանուցումներ",
   "notifications.column_settings.favourite": "Հավանածներից՝",
-  "notifications.column_settings.filter_bar.advanced": "Display all categories",
-  "notifications.column_settings.filter_bar.category": "Quick filter bar",
-  "notifications.column_settings.filter_bar.show": "Show",
+  "notifications.column_settings.filter_bar.advanced": "Ցուցադրել բոլոր կատեգորիաները",
+  "notifications.column_settings.filter_bar.category": "Ô±Ö€Õ¡Õ£ Õ¦Õ¿Õ´Õ¡Õ¶ Õ¾Õ¡Õ°Õ¡Õ¶Õ¡Õ¯",
+  "notifications.column_settings.filter_bar.show": "Ցուցադրել",
   "notifications.column_settings.follow": "Նոր հետեւողներ՝",
+  "notifications.column_settings.follow_request": "New follow requests:",
   "notifications.column_settings.mention": "Նշումներ՝",
-  "notifications.column_settings.poll": "Poll results:",
+  "notifications.column_settings.poll": "Հարցման արդիւնքները՝",
   "notifications.column_settings.push": "Հրելու ծանուցումներ",
   "notifications.column_settings.reblog": "Տարածածներից՝",
   "notifications.column_settings.show": "Ցուցադրել սյունում",
   "notifications.column_settings.sound": "Ձայն հանել",
-  "notifications.filter.all": "All",
-  "notifications.filter.boosts": "Boosts",
-  "notifications.filter.favourites": "Favourites",
-  "notifications.filter.follows": "Follows",
-  "notifications.filter.mentions": "Mentions",
-  "notifications.filter.polls": "Poll results",
-  "notifications.group": "{count} notifications",
-  "poll.closed": "Closed",
-  "poll.refresh": "Refresh",
+  "notifications.filter.all": "Ô²Õ¸Õ¬Õ¸Ö€Õ¨",
+  "notifications.filter.boosts": "Տարածածները",
+  "notifications.filter.favourites": "Õ€Õ¡Ö‚Õ¡Õ¶Õ¡Õ®Õ¶Õ¥Ö€Õ¨",
+  "notifications.filter.follows": "Õ€Õ¥Õ¿Õ¥Ö‚Õ¡Õ®Õ¶Õ¥Ö€Õ¨",
+  "notifications.filter.mentions": "Õ†Õ·Õ¸Ö‚Õ´Õ¶Õ¥Ö€Õ¨",
+  "notifications.filter.polls": "Հարցման արդիւնքները",
+  "notifications.group": "{count} ծանուցում",
+  "poll.closed": "Õ“Õ¡Õ¯",
+  "poll.refresh": "Թարմացնել",
   "poll.total_people": "{count, plural, one {# person} other {# people}}",
   "poll.total_votes": "{count, plural, one {# vote} other {# votes}}",
-  "poll.vote": "Vote",
-  "poll.voted": "You voted for this answer",
-  "poll_button.add_poll": "Add a poll",
-  "poll_button.remove_poll": "Remove poll",
+  "poll.vote": "Õ”Õ¸Ö‚Õ§Õ¡Ö€Õ¯Õ¥Õ¬",
+  "poll.voted": "Ô´Õ¸Ö‚ Ö„Õ¸Ö‚Õ§Õ¡Ö€Õ¯Õ¥Õ¬ Õ¥Õ½ Õ¡ÕµÕ½ Õ¿Õ¡Ö€Õ¢Õ¥Ö€Õ¡Õ¯Õ« Õ°Õ¡Õ´Õ¡Ö€",
+  "poll_button.add_poll": "Աւելացնել հարցում",
+  "poll_button.remove_poll": "Հեռացնել հարցումը",
   "privacy.change": "Ô¿Õ¡Ö€Õ£Õ¡Õ¾Õ¸Ö€Õ¥Õ¬ Õ©Õ©Õ« Õ£Õ¡Õ²Õ¿Õ¶Õ«Õ¸Ö‚Õ©ÕµÕ¸Ö‚Õ¶Õ¨",
   "privacy.direct.long": "Ô¹Õ©Õ¥Õ¬ Õ´Õ«Õ¡ÕµÕ¶ Õ¶Õ·Õ¾Õ¡Õ® Ö…Õ£Õ¿Õ¡Õ¿Õ¥Ö€Õ¥Ö€Õ« Õ°Õ¡Õ´Õ¡Ö€",
   "privacy.direct.short": "Հասցեագրված",
@@ -319,37 +329,38 @@
   "privacy.public.short": "Õ€Ö€Õ¡ÕºÕ¡Ö€Õ¡Õ¯Õ¡ÕµÕ«Õ¶",
   "privacy.unlisted.long": "Õ‰Õ©Õ©Õ¥Õ¬ Õ°Ö€Õ¡ÕºÕ¡Ö€Õ¡Õ¯Õ¡ÕµÕ«Õ¶ Õ°Õ¸Õ½Ö„Õ¥Ö€Õ¸Ö‚Õ´",
   "privacy.unlisted.short": "Ô¾Õ¡Õ®Õ¸Ö‚Õ¯",
-  "refresh": "Refresh",
-  "regeneration_indicator.label": "Loading…",
-  "regeneration_indicator.sublabel": "Your home feed is being prepared!",
+  "refresh": "Թարմացնել",
+  "regeneration_indicator.label": "Բեռնւում է…",
+  "regeneration_indicator.sublabel": "ÕºÕ¡Õ¿Ö€Õ¡Õ½Õ¿Ö‚Õ¸Ö‚Õ´ Õ§ Õ°Õ«Õ´Õ¶Õ¡Õ¯Õ¡Õ¶ Õ°Õ¸Õ½Ö„Õ¤",
   "relative_time.days": "{number}Ö…Ö€",
   "relative_time.hours": "{number}Õª",
   "relative_time.just_now": "Õ¶Õ¸Ö€",
   "relative_time.minutes": "{number}Ö€",
   "relative_time.seconds": "{number}Õ¾",
   "reply_indicator.cancel": "Õ‰Õ¥Õ²Õ¡Ö€Õ¯Õ¥Õ¬",
-  "report.forward": "Forward to {target}",
-  "report.forward_hint": "The account is from another server. Send an anonymized copy of the report there as well?",
+  "report.forward": "Փոխանցել {target}֊ին",
+  "report.forward_hint": "Այս հաշիւ այլ հանգոյցից է։ Ուղարկե՞մ այնտեղ էլ այս բողոքի անոնիմ պատճէնը։",
   "report.hint": "The report will be sent to your instance moderators. You can provide an explanation of why you are reporting this account below:",
   "report.placeholder": "Լրացուցիչ մեկնաբանություններ",
   "report.submit": "ÕˆÖ‚Õ²Õ¡Ö€Õ¯Õ¥Õ¬",
   "report.target": "Ô²Õ¸Õ²Õ¸Ö„Õ¥Õ¬ {target}ÖŠÕ« Õ´Õ¡Õ½Õ«Õ¶",
   "search.placeholder": "Õ“Õ¶Õ¿Ö€Õ¥Õ¬",
   "search_popout.search_format": "Õ“Õ¶Õ¿Ö€Õ¥Õ¬Õ¸Ö‚ Õ¡Õ¼Õ¡Õ»Õ¡Õ¤Õ¥Õ´ Õ±Õ¥Ö‚",
-  "search_popout.tips.full_text": "Simple text returns statuses you have written, favourited, boosted, or have been mentioned in, as well as matching usernames, display names, and hashtags.",
+  "search_popout.tips.full_text": "ÕŠÕ¡Ö€Õ¦ Õ¿Õ¥Ö„Õ½Õ¿Õ¨ Õ¾Õ¥Ö€Õ¡Õ¤Õ¡Ö€Õ±Õ¶Õ¸Ö‚Õ´ Õ§ Õ£Ö€Õ¡Õ¼Õ¸Ö‚Õ´Õ¶Õ¥Ö€Õ¤, Õ°Õ¡Ö‚Õ¡Õ¶Õ¡Õ®Õ¶Õ¥Ö€Õ¤, Õ¿Õ¡Ö€Õ¡Õ®Õ¡Õ®Õ¶Õ¥Ö€Õ¤, Õ¸Ö€Õ¿Õ¥Õ² Õ¥Õ½ Õ¶Õ·Õ¸Ö‚Õ¡Õ® Õ¥Õ²Õ¥Õ¬, Õ«Õ¶Õ¹ÕºÕ§Õ½ Õ¶Õ¡Õ¥Ö‚ Õ¶Õ´Õ¡Õ¶ Ö…Õ£Õ¿Õ¡Õ¶Õ¸Ö‚Õ¶Õ¶Õ¥Ö€, Õ¡Õ¶Õ¸Ö‚Õ¶Õ¶Õ¥Ö€ Õ¥Ö‚ ÕºÕ«Õ¿Õ¡Õ¯Õ¶Õ¥Ö€Ö‰",
   "search_popout.tips.hashtag": "ÕºÕ«Õ¿Õ¡Õ¯",
   "search_popout.tips.status": "Õ©Õ¸Ö‚Õ©",
   "search_popout.tips.text": "Õ€Õ¡Õ½Õ¡Ö€Õ¡Õ¯ Õ¿Õ¥Ö„Õ½Õ¿Õ¨ Õ¯Õ¾Õ¥Ö€Õ¡Õ¤Õ¡Ö€Õ±Õ¶Õ« Õ°Õ¡Õ´Õ¨Õ¶Õ¯Õ¶Õ¸Õ² Õ¡Õ¶Õ¸Ö‚Õ¶Õ¶Õ¥Ö€, Ö…Õ£Õ¿Õ¡Õ¶Õ¸Ö‚Õ¶Õ¶Õ¥Ö€ Õ¸Ö‚ ÕºÕ«Õ¿Õ¡Õ¯Õ¶Õ¥Ö€",
   "search_popout.tips.user": "Ö…Õ£Õ¿Õ¡Õ¿Õ¥Ö€",
   "search_results.accounts": "Õ„Õ¡Ö€Õ¤Õ«Õ¯",
-  "search_results.hashtags": "Hashtags",
-  "search_results.statuses": "Toots",
-  "search_results.statuses_fts_disabled": "Searching toots by their content is not enabled on this Mastodon server.",
+  "search_results.hashtags": "ÕŠÕ«Õ¿Õ¡Õ¯Õ¶Õ¥Ö€",
+  "search_results.statuses": "Ô¹Õ©Õ¥Ö€",
+  "search_results.statuses_fts_disabled": "Այս հանգոյցում միացուած չէ ըստ բովանդակութեան թթեր փնտրելու հնարաւորութիւնը։",
   "search_results.total": "{count, number} {count, plural, one {Õ¡Ö€Õ¤ÕµÕ¸Ö‚Õ¶Ö„} other {Õ¡Ö€Õ¤ÕµÕ¸Ö‚Õ¶Ö„}}",
-  "status.admin_account": "Open moderation interface for @{name}",
-  "status.admin_status": "Open this status in the moderation interface",
+  "status.admin_account": "Բացել @{name} օգտատիրոջ մոդերացիայի դիմերէսը։",
+  "status.admin_status": "Բացել այս գրառումը մոդերատորի դիմերէսի մէջ",
   "status.block": "Ô±Ö€Õ£Õ¥Õ¬Õ¡ÖƒÕ¡Õ¯Õ¥Õ¬ @{name}ÖŠÕ«Õ¶",
-  "status.cancel_reblog_private": "Unboost",
+  "status.bookmark": "Ô·Õ»Õ¡Õ¶Õ«Õ·",
+  "status.cancel_reblog_private": "Ô±ÕºÕ¡Õ¿Õ¡Ö€Õ¡Õ®Õ¥Õ¬",
   "status.cannot_reblog": "Ô±ÕµÕ½ Õ©Õ¸Ö‚Õ©Õ¨ Õ¹Õ« Õ¯Õ¡Ö€Õ¸Õ² Õ¿Õ¡Ö€Õ¡Õ®Õ¾Õ¥Õ¬",
   "status.copy": "Copy link to status",
   "status.delete": "Õ‹Õ¶Õ»Õ¥Õ¬",
@@ -357,7 +368,7 @@
   "status.direct": "Direct message @{name}",
   "status.embed": "Õ†Õ¥Ö€Õ¤Õ¶Õ¥Õ¬",
   "status.favourite": "Õ€Õ¡Õ¾Õ¡Õ¶Õ¥Õ¬",
-  "status.filtered": "Filtered",
+  "status.filtered": "Ô¶Õ¿Õ¾Õ¡Õ®",
   "status.load_more": "Ô²Õ¥Õ¼Õ¶Õ¥Õ¬ Õ¡Õ¾Õ¥Õ¬Õ«Õ¶",
   "status.local_only": "This post is only visible by other users of your instance",
   "status.media_hidden": "մեդիաբովանդակությունը թաքցված է",
@@ -368,12 +379,13 @@
   "status.open": "Ô¸Õ¶Õ¤Õ¡Ö€Õ±Õ¡Õ¯Õ¥Õ¬ Õ¡ÕµÕ½ Õ©Õ¸Ö‚Õ©Õ¨",
   "status.pin": "Ամրացնել անձնական էջում",
   "status.pinned": "Pinned toot",
-  "status.read_more": "Read more",
+  "status.read_more": "Ô¿Õ¡Ö€Õ¤Õ¡Õ¬ Õ¡Õ¾Õ¥Õ¬Õ«Õ¶",
   "status.reblog": "Տարածել",
   "status.reblog_private": "Boost to original audience",
   "status.reblogged_by": "{name} Õ¿Õ¡Ö€Õ¡Õ®Õ¥Õ¬ Õ§",
   "status.reblogs.empty": "No one has boosted this toot yet. When someone does, they will show up here.",
   "status.redraft": "Delete & re-draft",
+  "status.remove_bookmark": "Remove bookmark",
   "status.reply": "ÕŠÕ¡Õ¿Õ¡Õ½Õ­Õ¡Õ¶Õ¥Õ¬",
   "status.replyAll": "ÕŠÕ¡Õ¿Õ¡Õ½Õ­Õ¡Õ¶Õ¥Õ¬ Õ©Õ¥Õ¬Õ«Õ¶",
   "status.report": "Բողոքել @{name}֊ից",
@@ -384,7 +396,7 @@
   "status.show_more": "Ô±Õ¾Õ¥Õ¬Õ«Õ¶",
   "status.show_more_all": "Show more for all",
   "status.show_thread": "Show thread",
-  "status.uncached_media_warning": "Not available",
+  "status.uncached_media_warning": "Ô±Õ¶Õ°Õ¡Õ½Õ¡Õ¶Õ¥Õ¬Õ«",
   "status.unmute_conversation": "Ապալռեցնել խոսակցությունը",
   "status.unpin": "Հանել անձնական էջից",
   "suggestions.dismiss": "Dismiss suggestion",
@@ -406,18 +418,21 @@
   "upload_button.label": "Ավելացնել մեդիա",
   "upload_error.limit": "File upload limit exceeded.",
   "upload_error.poll": "File upload not allowed with polls.",
+  "upload_form.audio_description": "Describe for people with hearing loss",
   "upload_form.description": "Նկարագրություն ավելացրու տեսողական խնդիրներ ունեցողների համար",
-  "upload_form.edit": "Edit",
+  "upload_form.edit": "Ô½Õ´Õ¢Õ¡Õ£Ö€Õ¥Õ¬",
   "upload_form.undo": "Õ€Õ¥Õ¿Õ¡Ö€Õ¯Õ¥Õ¬",
+  "upload_form.video_description": "Describe for people with hearing loss or visual impairment",
   "upload_modal.analyzing_picture": "Analyzing picture…",
-  "upload_modal.apply": "Apply",
+  "upload_modal.apply": "Ô¿Õ«Ö€Õ¡Õ¼Õ¥Õ¬",
   "upload_modal.description_placeholder": "A quick brown fox jumps over the lazy dog",
-  "upload_modal.detect_text": "Detect text from picture",
-  "upload_modal.edit_media": "Edit media",
+  "upload_modal.detect_text": "Հայտնբերել տեքստը նկարից",
+  "upload_modal.edit_media": "Ô½Õ´Õ¢Õ¡Õ£Ö€Õ¥Õ¬ Õ´Õ¥Õ¤Õ«Õ¡Õ¶",
   "upload_modal.hint": "Click or drag the circle on the preview to choose the focal point which will always be in view on all thumbnails.",
-  "upload_modal.preview_label": "Preview ({ratio})",
+  "upload_modal.preview_label": "Õ†Õ¡Õ­Õ¡Õ¤Õ«Õ¿Õ¸Ö‚Õ´ ({ratio})",
   "upload_progress.label": "Վերբեռնվում է…",
   "video.close": "Õ“Õ¡Õ¯Õ¥Õ¬  Õ¿Õ¥Õ½Õ¡Õ£Ö€Õ¸Ö‚Õ©ÕµÕ¸Ö‚Õ¶Õ¨",
+  "video.download": "Õ†Õ¥Ö€Õ¢Õ¥Õ¼Õ¶Õ¥Õ¬ Ö†Õ¡ÕµÕ¬Õ¨",
   "video.exit_fullscreen": "Ô±Õ¶Õ»Õ¡Õ¿Õ¥Õ¬ Õ¬Õ«Õ¡Õ§Õ¯Ö€Õ¡Õ¶ Õ¤Õ«Õ¿Õ¸Ö‚Õ´Õ¨",
   "video.expand": "Ô¸Õ¶Õ¤Õ¡Ö€Õ±Õ¡Õ¯Õ¥Õ¬ Õ¿Õ¥Õ½Õ¡Õ£Ö€Õ¸Ö‚Õ©ÕµÕ¸Ö‚Õ¶Õ¨",
   "video.fullscreen": "Ô¼Õ«Õ¡Õ§Õ¯Ö€Õ¡Õ¶",
diff --git a/app/javascript/mastodon/locales/id.json b/app/javascript/mastodon/locales/id.json
index 900f95d422b1b7944d157f2eb235194ebef8d7e5..126ed86cf1cf7730b2bbc14c70a4d60a36d70446 100644
--- a/app/javascript/mastodon/locales/id.json
+++ b/app/javascript/mastodon/locales/id.json
@@ -1,6 +1,7 @@
 {
   "account.add_or_remove_from_list": "Tambah atau Hapus dari daftar",
   "account.badges.bot": "Bot",
+  "account.badges.group": "Grup",
   "account.block": "Blokir @{name}",
   "account.block_domain": "Sembunyikan segalanya dari {domain}",
   "account.blocked": "Terblokir",
@@ -39,7 +40,7 @@
   "account.unmute": "Berhenti membisukan @{name}",
   "account.unmute_notifications": "Munculkan notifikasi dari @{name}",
   "alert.rate_limited.message": "Tolong ulangi setelah {retry_time, time, medium}.",
-  "alert.rate_limited.title": "Rate limited",
+  "alert.rate_limited.title": "Batasan tingkat",
   "alert.unexpected.message": "Terjadi kesalahan yang tidak terduga.",
   "alert.unexpected.title": "Oops!",
   "autosuggest_hashtag.per_week": "{count} per minggu",
@@ -51,6 +52,7 @@
   "bundle_modal_error.message": "Kesalahan terjadi saat memuat komponen ini.",
   "bundle_modal_error.retry": "Coba lagi",
   "column.blocks": "Pengguna diblokir",
+  "column.bookmarks": "Markah",
   "column.community": "Linimasa Lokal",
   "column.direct": "Pesan langsung",
   "column.directory": "Jelajahi profil",
@@ -82,6 +84,8 @@
   "compose_form.poll.duration": "Durasi jajak pendapat",
   "compose_form.poll.option_placeholder": "Pilihan {number}",
   "compose_form.poll.remove_option": "Hapus opsi ini",
+  "compose_form.poll.switch_to_multiple": "Ubah japat menjadi pilihan ganda",
+  "compose_form.poll.switch_to_single": "Ubah japat menjadi pilihan tunggal",
   "compose_form.publish": "Toot",
   "compose_form.publish_loud": "{publish}!",
   "compose_form.sensitive.hide": "Tandai sebagai media sensitif",
@@ -138,6 +142,7 @@
   "empty_column.account_timeline": "Tidak ada toot di sini!",
   "empty_column.account_unavailable": "Profil tidak tersedia",
   "empty_column.blocks": "Anda belum memblokir siapapun.",
+  "empty_column.bookmarked_statuses": "Anda belum memiliki toot termarkah. Saat Anda menandainya sebagai markah, ia akan muncul di sini.",
   "empty_column.community": "Linimasa lokal masih kosong. Tulis sesuatu secara publik dan buat roda berputar!",
   "empty_column.direct": "Anda belum memiliki pesan langsung. Ketika Anda mengirim atau menerimanya, maka akan muncul di sini.",
   "empty_column.domain_blocks": "Tidak ada topik tersembunyi.",
@@ -224,6 +229,7 @@
   "keyboard_shortcuts.muted": "buka daftar pengguna terbisukan",
   "keyboard_shortcuts.my_profile": "buka profil Anda",
   "keyboard_shortcuts.notifications": "buka kolom notifikasi",
+  "keyboard_shortcuts.open_media": "membuka media",
   "keyboard_shortcuts.pinned": "buka daftar toot tersemat",
   "keyboard_shortcuts.profile": "buka profil pencipta",
   "keyboard_shortcuts.reply": "balas",
@@ -233,8 +239,8 @@
   "keyboard_shortcuts.toggle_hidden": "tampilkan/sembunyikan teks di belakang CW",
   "keyboard_shortcuts.toggle_sensitivity": "tampilkan/sembunyikan media",
   "keyboard_shortcuts.toot": "mulai toot baru",
-  "keyboard_shortcuts.unfocus": "to un-focus compose textarea/search",
-  "keyboard_shortcuts.up": "to move up in the list",
+  "keyboard_shortcuts.unfocus": "untuk tidak fokus pada area teks/pencarian",
+  "keyboard_shortcuts.up": "untuk memindah ke atas pada daftar",
   "lightbox.close": "Tutup",
   "lightbox.next": "Selanjutnya",
   "lightbox.previous": "Sebelumnya",
@@ -248,7 +254,7 @@
   "lists.new.title_placeholder": "Judul daftar baru",
   "lists.search": "Cari di antara orang yang Anda ikuti",
   "lists.subheading": "Daftar Anda",
-  "load_pending": "{count, plural, one {# new item} other {# new items}}",
+  "load_pending": "{count, plural, other {# item baru}}",
   "loading_indicator.label": "Tunggu sebentar...",
   "media_gallery.toggle_visible": "Tampil/Sembunyikan",
   "missing_indicator.label": "Tidak ditemukan",
@@ -256,6 +262,7 @@
   "mute_modal.hide_notifications": "Sembunyikan notifikasi dari pengguna ini?",
   "navigation_bar.apps": "Aplikasi mobile",
   "navigation_bar.blocks": "Pengguna diblokir",
+  "navigation_bar.bookmarks": "Markah",
   "navigation_bar.community_timeline": "Linimasa lokal",
   "navigation_bar.compose": "Tulis toot baru",
   "navigation_bar.direct": "Pesan langsung",
@@ -265,7 +272,7 @@
   "navigation_bar.favourites": "Favorit",
   "navigation_bar.filters": "Kata yang dibisukan",
   "navigation_bar.follow_requests": "Permintaan mengikuti",
-  "navigation_bar.follows_and_followers": "Follows and followers",
+  "navigation_bar.follows_and_followers": "Ikuti dan pengikut",
   "navigation_bar.info": "Informasi selengkapnya",
   "navigation_bar.keyboard_shortcuts": "Keyboard shortcuts",
   "navigation_bar.lists": "Daftar",
@@ -278,7 +285,9 @@
   "navigation_bar.security": "Keamanan",
   "notification.favourite": "{name} menyukai status anda",
   "notification.follow": "{name} mengikuti anda",
+  "notification.follow_request": "{name} ingin mengikuti Anda",
   "notification.mention": "{name} menyebut Anda",
+  "notification.own_poll": "Japat Anda telah berakhir",
   "notification.poll": "Japat yang Anda ikuti telah berakhir",
   "notification.reblog": "{name} mem-boost status anda",
   "notifications.clear": "Hapus notifikasi",
@@ -289,6 +298,7 @@
   "notifications.column_settings.filter_bar.category": "Bilah penyaring cepat",
   "notifications.column_settings.filter_bar.show": "Tampilkan",
   "notifications.column_settings.follow": "Pengikut baru:",
+  "notifications.column_settings.follow_request": "Permintaan mengikuti baru:",
   "notifications.column_settings.mention": "Balasan:",
   "notifications.column_settings.poll": "Hasil japat:",
   "notifications.column_settings.push": "Notifikasi dorong",
@@ -304,12 +314,12 @@
   "notifications.group": "{count} notifikasi",
   "poll.closed": "Ditutup",
   "poll.refresh": "Segarkan",
-  "poll.total_people": "{count, plural, one {# person} other {# people}}",
-  "poll.total_votes": "{count, plural, one {# vote} other {# votes}}",
-  "poll.vote": "Vote",
-  "poll.voted": "You voted for this answer",
-  "poll_button.add_poll": "Add a poll",
-  "poll_button.remove_poll": "Remove poll",
+  "poll.total_people": "{count, plural, other {# orang}}",
+  "poll.total_votes": "{count, plural, other {# suara}}",
+  "poll.vote": "Memilih",
+  "poll.voted": "Anda memilih jawaban ini",
+  "poll_button.add_poll": "Tambah japat",
+  "poll_button.remove_poll": "Hapus japat",
   "privacy.change": "Tentukan privasi status",
   "privacy.direct.long": "Kirim hanya ke pengguna yang disebut",
   "privacy.direct.short": "Langsung",
@@ -319,111 +329,116 @@
   "privacy.public.short": "Publik",
   "privacy.unlisted.long": "Tidak ditampilkan di linimasa publik",
   "privacy.unlisted.short": "Tak Terdaftar",
-  "refresh": "Refresh",
-  "regeneration_indicator.label": "Loading…",
+  "refresh": "Segarkan",
+  "regeneration_indicator.label": "Memuat…",
   "regeneration_indicator.sublabel": "Linimasa anda sedang disiapkan!",
-  "relative_time.days": "{number}d",
-  "relative_time.hours": "{number}h",
-  "relative_time.just_now": "now",
-  "relative_time.minutes": "{number}m",
-  "relative_time.seconds": "{number}s",
+  "relative_time.days": "{number}h",
+  "relative_time.hours": "{number}j",
+  "relative_time.just_now": "sekarang",
+  "relative_time.minutes": "{number}b",
+  "relative_time.seconds": "{number}d",
   "reply_indicator.cancel": "Batal",
-  "report.forward": "Forward to {target}",
-  "report.forward_hint": "The account is from another server. Send an anonymized copy of the report there as well?",
+  "report.forward": "Teruskan ke {target}",
+  "report.forward_hint": "Akun dari server lain. Kirim salinan laporan scr anonim ke sana?",
   "report.hint": "The report will be sent to your instance moderators. You can provide an explanation of why you are reporting this account below:",
   "report.placeholder": "Komentar tambahan",
   "report.submit": "Kirim",
   "report.target": "Melaporkan",
   "search.placeholder": "Pencarian",
-  "search_popout.search_format": "Advanced search format",
-  "search_popout.tips.full_text": "Simple text returns statuses you have written, favourited, boosted, or have been mentioned in, as well as matching usernames, display names, and hashtags.",
+  "search_popout.search_format": "Format pencarian mahir",
+  "search_popout.tips.full_text": "Teks simpel menampilkan status yang Anda tulis, favoritkan, boost-kan, atau status yang menyebut Anda, serta nama pengguna, nama yang ditampilkan, dan tagar yang cocok.",
   "search_popout.tips.hashtag": "tagar",
   "search_popout.tips.status": "status",
-  "search_popout.tips.text": "Simple text returns matching display names, usernames and hashtags",
-  "search_popout.tips.user": "user",
-  "search_results.accounts": "People",
-  "search_results.hashtags": "Hashtags",
-  "search_results.statuses": "Toots",
-  "search_results.statuses_fts_disabled": "Searching toots by their content is not enabled on this Mastodon server.",
+  "search_popout.tips.text": "Teks sederhana menampilkan nama yang ditampilkan, nama pengguna, dan tagar yang cocok",
+  "search_popout.tips.user": "pengguna",
+  "search_results.accounts": "Orang",
+  "search_results.hashtags": "Tagar",
+  "search_results.statuses": "Toot",
+  "search_results.statuses_fts_disabled": "Pencarian toot berdasarkan konten tidak diaktifkan di server Mastadon ini.",
   "search_results.total": "{count, number} {count, plural, one {hasil} other {hasil}}",
-  "status.admin_account": "Open moderation interface for @{name}",
-  "status.admin_status": "Open this status in the moderation interface",
-  "status.block": "Block @{name}",
-  "status.cancel_reblog_private": "Unboost",
-  "status.cannot_reblog": "This post cannot be boosted",
-  "status.copy": "Copy link to status",
+  "status.admin_account": "Buka antar muka moderasi untuk @{name}",
+  "status.admin_status": "Buka status ini dalam antar muka moderasi",
+  "status.block": "Blokir @{name}",
+  "status.bookmark": "Markah",
+  "status.cancel_reblog_private": "Batalkan boost",
+  "status.cannot_reblog": "Pos ini tak dapat di-boost",
+  "status.copy": "Salin tautan ke status",
   "status.delete": "Hapus",
-  "status.detailed_status": "Detailed conversation view",
-  "status.direct": "Direct message @{name}",
-  "status.embed": "Embed",
+  "status.detailed_status": "Tampilan detail percakapan",
+  "status.direct": "Pesan langsung @{name}",
+  "status.embed": "Tanam",
   "status.favourite": "Difavoritkan",
-  "status.filtered": "Filtered",
+  "status.filtered": "Disaring",
   "status.load_more": "Tampilkan semua",
   "status.local_only": "This post is only visible by other users of your instance",
   "status.media_hidden": "Media disembunyikan",
   "status.mention": "Balasan @{name}",
-  "status.more": "More",
-  "status.mute": "Mute @{name}",
-  "status.mute_conversation": "Mute conversation",
+  "status.more": "Lebih banyak",
+  "status.mute": "Bisukan @{name}",
+  "status.mute_conversation": "Bisukan percakapan",
   "status.open": "Tampilkan status ini",
-  "status.pin": "Pin on profile",
-  "status.pinned": "Pinned toot",
-  "status.read_more": "Read more",
+  "status.pin": "Sematkan pada profil",
+  "status.pinned": "Toot tersemat",
+  "status.read_more": "Baca lebih banyak",
   "status.reblog": "Boost",
-  "status.reblog_private": "Boost to original audience",
+  "status.reblog_private": "Boost ke audiens asli",
   "status.reblogged_by": "di-boost {name}",
-  "status.reblogs.empty": "No one has boosted this toot yet. When someone does, they will show up here.",
-  "status.redraft": "Delete & re-draft",
+  "status.reblogs.empty": "Belum ada yang mem-boost toot ini. Ketika seseorang melakukannya, maka akan muncul di sini.",
+  "status.redraft": "Hapus & redraf",
+  "status.remove_bookmark": "Hapus markah",
   "status.reply": "Balas",
   "status.replyAll": "Balas ke semua",
   "status.report": "Laporkan @{name}",
   "status.sensitive_warning": "Konten sensitif",
-  "status.share": "Share",
+  "status.share": "Bagikan",
   "status.show_less": "Tampilkan lebih sedikit",
-  "status.show_less_all": "Show less for all",
+  "status.show_less_all": "Tampilkan lebih sedikit",
   "status.show_more": "Tampilkan semua",
-  "status.show_more_all": "Show more for all",
-  "status.show_thread": "Show thread",
-  "status.uncached_media_warning": "Not available",
-  "status.unmute_conversation": "Unmute conversation",
-  "status.unpin": "Unpin from profile",
-  "suggestions.dismiss": "Dismiss suggestion",
-  "suggestions.header": "You might be interested in…",
+  "status.show_more_all": "Tampilkan lebih banyak",
+  "status.show_thread": "Tampilkan utas",
+  "status.uncached_media_warning": "Tak tersedia",
+  "status.unmute_conversation": "Bunyikan percakapan",
+  "status.unpin": "Hapus sematan dari profil",
+  "suggestions.dismiss": "Hentikan saran",
+  "suggestions.header": "Anda mungkin tertarik dg…",
   "tabs_bar.federated_timeline": "Gabungan",
   "tabs_bar.home": "Beranda",
   "tabs_bar.local_timeline": "Lokal",
   "tabs_bar.notifications": "Notifikasi",
-  "tabs_bar.search": "Search",
-  "time_remaining.days": "{number, plural, one {# day} other {# days}} left",
-  "time_remaining.hours": "{number, plural, one {# hour} other {# hours}} left",
-  "time_remaining.minutes": "{number, plural, one {# minute} other {# minutes}} left",
-  "time_remaining.moments": "Moments remaining",
-  "time_remaining.seconds": "{number, plural, one {# second} other {# seconds}} left",
-  "trends.count_by_accounts": "{count} {rawCount, plural, one {person} other {people}} talking",
-  "trends.trending_now": "Trending now",
+  "tabs_bar.search": "Cari",
+  "time_remaining.days": "{number, plural, other {# hari}} tersisa",
+  "time_remaining.hours": "{number, plural, other {# jam}} tersisa",
+  "time_remaining.minutes": "{number, plural, other {# menit}} tersisa",
+  "time_remaining.moments": "Momen tersisa",
+  "time_remaining.seconds": "{number, plural, other {# detik}} tersisa",
+  "trends.count_by_accounts": "{count} {rawCount, plural, other {orang}} berbicara",
+  "trends.trending_now": "Sedang tren sekarang",
   "ui.beforeunload": "Naskah anda akan hilang jika anda keluar dari Mastodon.",
   "upload_area.title": "Seret & lepaskan untuk mengunggah",
   "upload_button.label": "Tambahkan media",
-  "upload_error.limit": "File upload limit exceeded.",
-  "upload_error.poll": "File upload not allowed with polls.",
+  "upload_error.limit": "Batas unggah berkas terlampaui.",
+  "upload_error.poll": "Unggah berkas tak diizinkan di japat ini.",
+  "upload_form.audio_description": "Penjelasan untuk orang dengan gangguan pendengaran",
   "upload_form.description": "Deskripsikan untuk mereka yang tidak bisa melihat dengan jelas",
-  "upload_form.edit": "Edit",
+  "upload_form.edit": "Sunting",
   "upload_form.undo": "Undo",
-  "upload_modal.analyzing_picture": "Analyzing picture…",
-  "upload_modal.apply": "Apply",
-  "upload_modal.description_placeholder": "A quick brown fox jumps over the lazy dog",
-  "upload_modal.detect_text": "Detect text from picture",
-  "upload_modal.edit_media": "Edit media",
-  "upload_modal.hint": "Click or drag the circle on the preview to choose the focal point which will always be in view on all thumbnails.",
-  "upload_modal.preview_label": "Preview ({ratio})",
+  "upload_form.video_description": "Penjelasan untuk orang dengan gangguan pendengaran atau penglihatan",
+  "upload_modal.analyzing_picture": "Analisis gambar…",
+  "upload_modal.apply": "Terapkan",
+  "upload_modal.description_placeholder": "Muharjo seorang xenofobia universal yang takut pada warga jazirah, contohnya Qatar",
+  "upload_modal.detect_text": "Deteksi teks pada gambar",
+  "upload_modal.edit_media": "Sunting media",
+  "upload_modal.hint": "Klik atau seret lingkaran pada pratinjau untuk memilih titik fokus yang akan ditampilkan pada semua gambar kecil.",
+  "upload_modal.preview_label": "Pratinjau ({ratio})",
   "upload_progress.label": "Mengunggah...",
-  "video.close": "Close video",
+  "video.close": "Tutup video",
+  "video.download": "Unduh berkas",
   "video.exit_fullscreen": "Keluar dari layar penuh",
   "video.expand": "Perbesar video",
-  "video.fullscreen": "Full screen",
-  "video.hide": "Hide video",
-  "video.mute": "Mute sound",
-  "video.pause": "Pause",
-  "video.play": "Play",
-  "video.unmute": "Unmute sound"
+  "video.fullscreen": "Layar penuh",
+  "video.hide": "Sembunyikan video",
+  "video.mute": "Bisukan suara",
+  "video.pause": "Jeda",
+  "video.play": "Putar",
+  "video.unmute": "Bunyikan suara"
 }
diff --git a/app/javascript/mastodon/locales/io.json b/app/javascript/mastodon/locales/io.json
index 06db699cb248a6720df8b6c84ba6da0232e949ca..74a06bfb1c0bef332ff35bfe4870766f42f20413 100644
--- a/app/javascript/mastodon/locales/io.json
+++ b/app/javascript/mastodon/locales/io.json
@@ -1,6 +1,7 @@
 {
   "account.add_or_remove_from_list": "Add or Remove from lists",
   "account.badges.bot": "Bot",
+  "account.badges.group": "Group",
   "account.block": "Blokusar @{name}",
   "account.block_domain": "Hide everything from {domain}",
   "account.blocked": "Blocked",
@@ -51,6 +52,7 @@
   "bundle_modal_error.message": "Something went wrong while loading this component.",
   "bundle_modal_error.retry": "Try again",
   "column.blocks": "Blokusita uzeri",
+  "column.bookmarks": "Bookmarks",
   "column.community": "Lokala tempolineo",
   "column.direct": "Direct messages",
   "column.directory": "Browse profiles",
@@ -82,6 +84,8 @@
   "compose_form.poll.duration": "Poll duration",
   "compose_form.poll.option_placeholder": "Choice {number}",
   "compose_form.poll.remove_option": "Remove this choice",
+  "compose_form.poll.switch_to_multiple": "Change poll to allow multiple choices",
+  "compose_form.poll.switch_to_single": "Change poll to allow for a single choice",
   "compose_form.publish": "Siflar",
   "compose_form.publish_loud": "{publish}!",
   "compose_form.sensitive.hide": "Mark media as sensitive",
@@ -138,6 +142,7 @@
   "empty_column.account_timeline": "No toots here!",
   "empty_column.account_unavailable": "Profile unavailable",
   "empty_column.blocks": "You haven't blocked any users yet.",
+  "empty_column.bookmarked_statuses": "You don't have any bookmarked toots yet. When you bookmark one, it will show up here.",
   "empty_column.community": "La lokala tempolineo esas vakua. Skribez ulo publike por iniciar la agiveso!",
   "empty_column.direct": "You don't have any direct messages yet. When you send or receive one, it will show up here.",
   "empty_column.domain_blocks": "There are no hidden domains yet.",
@@ -224,6 +229,7 @@
   "keyboard_shortcuts.muted": "to open muted users list",
   "keyboard_shortcuts.my_profile": "to open your profile",
   "keyboard_shortcuts.notifications": "to open notifications column",
+  "keyboard_shortcuts.open_media": "to open media",
   "keyboard_shortcuts.pinned": "to open pinned toots list",
   "keyboard_shortcuts.profile": "to open author's profile",
   "keyboard_shortcuts.reply": "to reply",
@@ -256,6 +262,7 @@
   "mute_modal.hide_notifications": "Hide notifications from this user?",
   "navigation_bar.apps": "Mobile apps",
   "navigation_bar.blocks": "Blokusita uzeri",
+  "navigation_bar.bookmarks": "Bookmarks",
   "navigation_bar.community_timeline": "Lokala tempolineo",
   "navigation_bar.compose": "Compose new toot",
   "navigation_bar.direct": "Direct messages",
@@ -278,7 +285,9 @@
   "navigation_bar.security": "Security",
   "notification.favourite": "{name} favorizis tua mesajo",
   "notification.follow": "{name} sequeskis tu",
+  "notification.follow_request": "{name} has requested to follow you",
   "notification.mention": "{name} mencionis tu",
+  "notification.own_poll": "Your poll has ended",
   "notification.poll": "A poll you have voted in has ended",
   "notification.reblog": "{name} repetis tua mesajo",
   "notifications.clear": "Efacar savigi",
@@ -289,6 +298,7 @@
   "notifications.column_settings.filter_bar.category": "Quick filter bar",
   "notifications.column_settings.filter_bar.show": "Show",
   "notifications.column_settings.follow": "Nova sequanti:",
+  "notifications.column_settings.follow_request": "New follow requests:",
   "notifications.column_settings.mention": "Mencioni:",
   "notifications.column_settings.poll": "Poll results:",
   "notifications.column_settings.push": "Push notifications",
@@ -349,6 +359,7 @@
   "status.admin_account": "Open moderation interface for @{name}",
   "status.admin_status": "Open this status in the moderation interface",
   "status.block": "Block @{name}",
+  "status.bookmark": "Bookmark",
   "status.cancel_reblog_private": "Unboost",
   "status.cannot_reblog": "This post cannot be boosted",
   "status.copy": "Copy link to status",
@@ -374,6 +385,7 @@
   "status.reblogged_by": "{name} repetita",
   "status.reblogs.empty": "No one has boosted this toot yet. When someone does, they will show up here.",
   "status.redraft": "Delete & re-draft",
+  "status.remove_bookmark": "Remove bookmark",
   "status.reply": "Respondar",
   "status.replyAll": "Respondar a filo",
   "status.report": "Denuncar @{name}",
@@ -406,9 +418,11 @@
   "upload_button.label": "Adjuntar kontenajo",
   "upload_error.limit": "File upload limit exceeded.",
   "upload_error.poll": "File upload not allowed with polls.",
+  "upload_form.audio_description": "Describe for people with hearing loss",
   "upload_form.description": "Describe for the visually impaired",
   "upload_form.edit": "Edit",
   "upload_form.undo": "Desfacar",
+  "upload_form.video_description": "Describe for people with hearing loss or visual impairment",
   "upload_modal.analyzing_picture": "Analyzing picture…",
   "upload_modal.apply": "Apply",
   "upload_modal.description_placeholder": "A quick brown fox jumps over the lazy dog",
@@ -418,6 +432,7 @@
   "upload_modal.preview_label": "Preview ({ratio})",
   "upload_progress.label": "Kargante...",
   "video.close": "Close video",
+  "video.download": "Download file",
   "video.exit_fullscreen": "Exit full screen",
   "video.expand": "Expand video",
   "video.fullscreen": "Full screen",
diff --git a/app/javascript/mastodon/locales/is.json b/app/javascript/mastodon/locales/is.json
new file mode 100644
index 0000000000000000000000000000000000000000..c1f1b37200a699f8bbe9cd6cbf7d4862d2f399e5
--- /dev/null
+++ b/app/javascript/mastodon/locales/is.json
@@ -0,0 +1,438 @@
+{
+  "account.add_or_remove_from_list": "Bæta á eða fjarlægja af listum",
+  "account.badges.bot": "Róbót",
+  "account.badges.group": "Hópur",
+  "account.block": "Útiloka @{name}",
+  "account.block_domain": "Fela allt frá {domain}",
+  "account.blocked": "Útilokaður",
+  "account.cancel_follow_request": "Hætta við beiðni um að fylgjast með",
+  "account.direct": "Bein skilaboð til @{name}",
+  "account.domain_blocked": "Lén falið",
+  "account.edit_profile": "Breyta notandasniði",
+  "account.endorse": "Birta á notandasniði",
+  "account.follow": "Fylgja",
+  "account.followers": "Fylgjendur",
+  "account.followers.empty": "Ennþá fylgist enginn með þessum notanda.",
+  "account.follows": "Fylgir",
+  "account.follows.empty": "Þessi notandi fylgist ennþá ekki með neinum.",
+  "account.follows_you": "Fylgir þér",
+  "account.hide_reblogs": "Fela endurbirtingar fyrir @{name}",
+  "account.last_status": "Síðasta virkni",
+  "account.link_verified_on": "Eignarhald á þessum tengli var athugað þann {date}",
+  "account.locked_info": "Staða gagnaleyndar á þessum aðgangi er stillt á læsingu. Eigandinn yfirfer handvirkt hverjir geti fylgst með honum.",
+  "account.media": "Myndskrár",
+  "account.mention": "Minnast á @{name}",
+  "account.moved_to": "{name} hefur verið færður til:",
+  "account.mute": "Þagga niður í @{name}",
+  "account.mute_notifications": "Þagga tilkynningar frá @{name}",
+  "account.muted": "Þaggað",
+  "account.never_active": "Aldrei",
+  "account.posts": "Tíst",
+  "account.posts_with_replies": "Tíst og svör",
+  "account.report": "Kæra @{name}",
+  "account.requested": "Bíður eftir samþykki. Smelltu til að hætta við beiðni um að fylgjast með",
+  "account.share": "Deila notandasniði fyrir @{name}",
+  "account.show_reblogs": "Sýna endurbirtingar frá @{name}",
+  "account.unblock": "Aflétta útilokun af @{name}",
+  "account.unblock_domain": "Hætta að fela {domain}",
+  "account.unendorse": "Ekki birta á notandasniði",
+  "account.unfollow": "Hætta að fylgja",
+  "account.unmute": "Hætta að þagga niður í @{name}",
+  "account.unmute_notifications": "Hætta að þagga tilkynningar frá @{name}",
+  "alert.rate_limited.message": "Prófaðu aftur eftir {retry_time, time, medium}.",
+  "alert.rate_limited.title": "Með takmörkum",
+  "alert.unexpected.message": "Upp kom óvænt villa.",
+  "alert.unexpected.title": "Úbbs!",
+  "autosuggest_hashtag.per_week": "{count} á viku",
+  "boost_modal.combo": "Þú getur ýtt á {combo} til að sleppa þessu næst",
+  "bundle_column_error.body": "Eitthvað fór úrskeiðis við að hlaða inn þessari einingu.",
+  "bundle_column_error.retry": "Reyndu aftur",
+  "bundle_column_error.title": "Villa í netkerfi",
+  "bundle_modal_error.close": "Loka",
+  "bundle_modal_error.message": "Eitthvað fór úrskeiðis við að hlaða inn þessari einingu.",
+  "bundle_modal_error.retry": "Reyndu aftur",
+  "column.blocks": "Útilokaðir notendur",
+  "column.bookmarks": "Bókamerki",
+  "column.community": "Staðvær tímalína",
+  "column.direct": "Bein skilaboð",
+  "column.directory": "Skoða notandasnið",
+  "column.domain_blocks": "Falin lén",
+  "column.favourites": "Eftirlæti",
+  "column.follow_requests": "Fylgja beiðnum",
+  "column.home": "Heim",
+  "column.lists": "Listar",
+  "column.mutes": "Þaggaðir notendur",
+  "column.notifications": "Tilkynningar",
+  "column.pins": "Föst tíst",
+  "column.public": "Sameiginleg tímalína",
+  "column_back_button.label": "Til baka",
+  "column_header.hide_settings": "Fela stillingar",
+  "column_header.moveLeft_settings": "Færa dálk til vinstri",
+  "column_header.moveRight_settings": "Færa dálk til hægri",
+  "column_header.pin": "Festa",
+  "column_header.show_settings": "Birta stillingar",
+  "column_header.unpin": "Losa",
+  "column_subheading.settings": "Stillingar",
+  "community.column_settings.media_only": "Einungis myndskrár",
+  "compose_form.direct_message_warning": "Þetta tíst verður aðeins sent á notendur sem minnst er á.",
+  "compose_form.direct_message_warning_learn_more": "Kanna nánar",
+  "compose_form.hashtag_warning": "Þetta tíst verður ekki talið með undir nokkru myllumerki þar sem það er óskráð. Einungis er hægt að leita að opinberum tístum eftir myllumerkjum.",
+  "compose_form.lock_disclaimer": "Aðgangurinn þinn er ekki {locked}. Hver sem er getur fylgst með þeim færslum þínum sem einungis eru til fylgjenda þinna.",
+  "compose_form.lock_disclaimer.lock": "læst",
+  "compose_form.placeholder": "Hvað varstu að hugsa?",
+  "compose_form.poll.add_option": "Bæta við valkosti",
+  "compose_form.poll.duration": "Tímalengd könnunar",
+  "compose_form.poll.option_placeholder": "Valkostur {number}",
+  "compose_form.poll.remove_option": "Fjarlægja þennan valkost",
+  "compose_form.poll.switch_to_multiple": "Breyta könnun svo hægt sé að hafa marga valkosti",
+  "compose_form.poll.switch_to_single": "Breyta könnun svo hægt sé að hafa einn stakan valkost",
+  "compose_form.publish": "Tíst",
+  "compose_form.publish_loud": "{publish}!",
+  "compose_form.sensitive.hide": "Merkja myndir sem viðkvæmar",
+  "compose_form.sensitive.marked": "Mynd er merkt sem viðkvæm",
+  "compose_form.sensitive.unmarked": "Mynd er ekki merkt sem viðkvæm",
+  "compose_form.spoiler.marked": "Texti er falinn á bak við aðvörun",
+  "compose_form.spoiler.unmarked": "Texti er ekki falinn",
+  "compose_form.spoiler_placeholder": "Skrifaðu aðvörunina þína hér",
+  "confirmation_modal.cancel": "Hætta við",
+  "confirmations.block.block_and_report": "Útiloka og kæra",
+  "confirmations.block.confirm": "Útiloka",
+  "confirmations.block.message": "Ertu viss um að þú viljir loka á {name}?",
+  "confirmations.delete.confirm": "Eyða",
+  "confirmations.delete.message": "Ertu viss um að þú viljir eyða þessari stöðufærslu?",
+  "confirmations.delete_list.confirm": "Eyða",
+  "confirmations.delete_list.message": "Ertu viss um að þú viljir eyða þessum lista endanlega?",
+  "confirmations.domain_block.confirm": "Fela allt lénið",
+  "confirmations.domain_block.message": "Ertu alveg algjörlega viss um að þú viljir loka á allt {domain}? Í flestum tilfellum er vænlegra að nota færri en markvissari útilokanir eða að þagga niður tiltekna aðila. Þú munt ekki sjá efni frá þessu léni í neinum opinberum tímalínum eða í tilkynningunum þínum. Fylgjendur þínir frá þessu léni verða fjarlægðir.",
+  "confirmations.logout.confirm": "Skrá út",
+  "confirmations.logout.message": "Ertu viss um að þú viljir skrá þig út?",
+  "confirmations.mute.confirm": "Þagga",
+  "confirmations.mute.explanation": "Þetta mun fela færslur frá þeim og þær færslur þar sem minnst er á þau, en það mun samt sem áður gera þeim kleift að sjá færslurnar þínar og að fylgjast með þér.",
+  "confirmations.mute.message": "Ertu viss um að þú viljir þagga niður í {name}?",
+  "confirmations.redraft.confirm": "Eyða og enduvinna drög",
+  "confirmations.redraft.message": "Ertu viss um að þú viljir eyða þessari stöðufærslu og enduvinna drögin? Eftirlæti og endurbirtingar munu tapast og svör við upprunalegu fæerslunni munu verða munaðarlaus.",
+  "confirmations.reply.confirm": "Svara",
+  "confirmations.reply.message": "Ef þú svarar núna verður skrifað yfir skilaboðin sem þú ert að semja núna. Ertu viss um að þú viljir halda áfram?",
+  "confirmations.unfollow.confirm": "Hætta að fylgja",
+  "confirmations.unfollow.message": "Ertu viss um að þú viljir hætta að fylgjast með {name}?",
+  "conversation.delete": "Eyða samtali",
+  "conversation.mark_as_read": "Merkja sem lesið",
+  "conversation.open": "Skoða samtal",
+  "conversation.with": "Með {names}",
+  "directory.federated": "Frá samtengdum vefþjónum",
+  "directory.local": "Einungis frá {domain}",
+  "directory.new_arrivals": "Nýkomnir",
+  "directory.recently_active": "Nýleg virkni",
+  "embed.instructions": "Felldu þessa færslu inn í vefsvæðið þitt með því að afrita kóðann hér fyrir neðan.",
+  "embed.preview": "Svona mun þetta líta út:",
+  "emoji_button.activity": "Virkni",
+  "emoji_button.custom": "Sérsniðið",
+  "emoji_button.flags": "Flögg",
+  "emoji_button.food": "Matur og drykkur",
+  "emoji_button.label": "Setja inn tjáningartákn",
+  "emoji_button.nature": "Náttúra",
+  "emoji_button.not_found": "Engin tjáningartákn!! (╯°□°)╯︵ ┻━┻",
+  "emoji_button.objects": "Hlutir",
+  "emoji_button.people": "Fólk",
+  "emoji_button.recent": "Oft notað",
+  "emoji_button.search": "Leita...",
+  "emoji_button.search_results": "Leitarniðurstöður",
+  "emoji_button.symbols": "Tákn",
+  "emoji_button.travel": "Ferðalög og staðir",
+  "empty_column.account_timeline": "Engin tíst hér!",
+  "empty_column.account_unavailable": "Notandasnið ekki tiltækt",
+  "empty_column.blocks": "Þú hefur ekki ennþá útilokað neina notendur.",
+  "empty_column.bookmarked_statuses": "Þú ert ekki ennþá með nein bókamerkt tíst. Þegar þú gefur tísti bókamerki, munu það birtast hér.",
+  "empty_column.community": "Staðværa tímalínan er tóm. Skrifaðu eitthvað opinberlega til að láta boltann fara að rúlla!",
+  "empty_column.direct": "Þú átt ennþá engin bein skilaboð. Þegar þú sendir eða tekur á móti slíkum skilaboðum, munu þau birtast hér.",
+  "empty_column.domain_blocks": "Það eru engin falin lén ennþá.",
+  "empty_column.favourited_statuses": "Þú átt ennþá engin eftirlætistíst. Þegar þú setur tíst í eftirlæti, munu þau birtast hér.",
+  "empty_column.favourites": "Enginn hefur ennþá set þetta tíst í eftirlæti. Þegar einhverjir gera það, munu þeir birtast hér.",
+  "empty_column.follow_requests": "Þú átt ennþá engar beiðnir um að fylgja þér. Þegar þú færð slíkar beiðnir, munu þær birtast hér.",
+  "empty_column.hashtag": "Það er ekkert ennþá undir þessu myllumerki.",
+  "empty_column.home": "Heimatímalínan þín er tóm! Skoðaðu {public} eða notaðu leitina til að komast í ganf og finna annað fólk.",
+  "empty_column.home.public_timeline": "opinbera tímalínan",
+  "empty_column.list": "Það er ennþá ekki neitt á þessum lista. Þegar meðlimir á listanum senda inn nýjar stöðufærslur, munu þær birtast hér.",
+  "empty_column.lists": "Þú ert ennþá ekki með neina lista. Þegar þú byrð til einhvern lista, munu hann birtast hér.",
+  "empty_column.mutes": "Þú hefur ekki þaggað niður í neinum notendum ennþá.",
+  "empty_column.notifications": "Þú ert ekki ennþá með neinar tilkynningar. Vertu í samskiptum við aðra til að umræður fari af stað.",
+  "empty_column.public": "Það er ekkert hér! Skrifaðu eitthvað opinberlega, eða fylgstu með notendum á öðrum netþjónum til að fylla upp í þetta",
+  "error.unexpected_crash.explanation": "Vegna villu í kóðanum okkar eða samhæfnivandamála í vafra er ekki hægt að birta þessa síðu svo vel sé.",
+  "error.unexpected_crash.next_steps": "Prófaðu að endurlesa síðuna. Ef það hjálpar ekki til, má samt vera að þú getir notað Mastodon í gegnum annan vafra eða forrit.",
+  "errors.unexpected_crash.copy_stacktrace": "Afrita rakningarupplýsingar (stacktrace) á klippispjald",
+  "errors.unexpected_crash.report_issue": "Tilkynna vandamál",
+  "follow_request.authorize": "Heimila",
+  "follow_request.reject": "Hafna",
+  "getting_started.developers": "Forritarar",
+  "getting_started.directory": "Notandasniðamappa",
+  "getting_started.documentation": "Hjálparskjöl",
+  "getting_started.heading": "Komast í gang",
+  "getting_started.invite": "Bjóða fólki",
+  "getting_started.open_source_notice": "Mastodon er opinn og frjáls hugbúnaður. Þú getur lagt þitt af mörkum eða tilkynnt um vandamál á GitHub á slóðinni {github}.",
+  "getting_started.security": "Stillingar notandaaðgangs",
+  "getting_started.terms": "Þjónustuskilmálar",
+  "hashtag.column_header.tag_mode.all": "og {additional}",
+  "hashtag.column_header.tag_mode.any": "eða {additional}",
+  "hashtag.column_header.tag_mode.none": "án {additional}",
+  "hashtag.column_settings.select.no_options_message": "Engar tillögur fundust",
+  "hashtag.column_settings.select.placeholder": "Settu inn myllumerki…",
+  "hashtag.column_settings.tag_mode.all": "Allt þetta",
+  "hashtag.column_settings.tag_mode.any": "Hvað sem er af þessu",
+  "hashtag.column_settings.tag_mode.none": "Ekkert af þessu",
+  "hashtag.column_settings.tag_toggle": "Taka með viðbótarmerki fyrir þennan dálk",
+  "home.column_settings.basic": "Einfalt",
+  "home.column_settings.show_reblogs": "Sýna endurbirtingar",
+  "home.column_settings.show_replies": "Birta svör",
+  "intervals.full.days": "{number, plural, one {# dagur} other {# dagar}}",
+  "intervals.full.hours": "{number, plural, one {# klukkustund} other {# klukkustundir}}",
+  "intervals.full.minutes": "{number, plural, one {# mínúta} other {# mínútur}}",
+  "introduction.federation.action": "Næsta",
+  "introduction.federation.federated.headline": "Sameiginlegt",
+  "introduction.federation.federated.text": "Opinberar færslur frá öðrum vefþjónum í skýjasambandinu birtast á sameiginlegu tímalínunni.",
+  "introduction.federation.home.headline": "Heim",
+  "introduction.federation.home.text": "Færslur frá fólki sem þú fylgist með birtast í heimastreyminu þínu. Þú getur fylgst með hverjum sem er á hvaða vefþjóni sem er!",
+  "introduction.federation.local.headline": "Staðvært",
+  "introduction.federation.local.text": "Opinberar færslur frá fólki á sama vefþjóni og þú birtast á staðværu tímalínunni.",
+  "introduction.interactions.action": "Ljúka leiðarvísinum!",
+  "introduction.interactions.favourite.headline": "Eftirlæti",
+  "introduction.interactions.favourite.text": "Þú getur vistað tíst til að eiga í handraðanum og látið höfundinn vita að þér hafi líkað það með því að setja það í eftirlætin þín.",
+  "introduction.interactions.reblog.headline": "Endurbirting",
+  "introduction.interactions.reblog.text": "Þú getur deilt tístum frá öðru fólki til þeirra sem fylgjast með þér með því að endurbirta færslurnar.",
+  "introduction.interactions.reply.headline": "Svara",
+  "introduction.interactions.reply.text": "Þú getur svarað tístum frá öðru fólki og eins sjálfum þér, sem mun binda tístin saman í samtal.",
+  "introduction.welcome.action": "Drífum okkur!",
+  "introduction.welcome.headline": "Fyrstu skrefin",
+  "introduction.welcome.text": "Velkomin í skýjasambandið (fediverse)! Eftir augnablik geturðu farið að útvarpa skilaboðum og spjalla við vini þína úti um víða veröld, allt í gegnum ýmsar gerðir vefþjóna sem samt geta talað saman. En þessi vefþjónn, {domain}, er sérstakur — hann hýsir notandasniðið þitt, þannig að þú skalt muna hvað hann heitir.",
+  "keyboard_shortcuts.back": "að fara til baka",
+  "keyboard_shortcuts.blocked": "að opna lista yfir útilokaða notendur",
+  "keyboard_shortcuts.boost": "að endurbirta",
+  "keyboard_shortcuts.column": "að setja virkni á stöðufærslu í einum af dálkunum",
+  "keyboard_shortcuts.compose": "að setja virkni á textainnsetningarreit",
+  "keyboard_shortcuts.description": "Lýsing",
+  "keyboard_shortcuts.direct": "að opna dálk með beinum skilaboðum",
+  "keyboard_shortcuts.down": "að fara neðar í listanum",
+  "keyboard_shortcuts.enter": "að opna stöðufærslu",
+  "keyboard_shortcuts.favourite": "að setja í eftirlæti",
+  "keyboard_shortcuts.favourites": "að opna eftirlætislista",
+  "keyboard_shortcuts.federated": "að opna sameiginlega tímalínu",
+  "keyboard_shortcuts.heading": "Flýtileiðir á lyklaborði",
+  "keyboard_shortcuts.home": "að opna heimatímalínu",
+  "keyboard_shortcuts.hotkey": "Flýtilykill",
+  "keyboard_shortcuts.legend": "að birta þessa skýringu",
+  "keyboard_shortcuts.local": "að opna staðværa tímalínu",
+  "keyboard_shortcuts.mention": "að minnast á höfund",
+  "keyboard_shortcuts.muted": "að opna lista yfir þaggaða notendur",
+  "keyboard_shortcuts.my_profile": "að opna notandasniðið þitt",
+  "keyboard_shortcuts.notifications": "að opna tilkynningadálk",
+  "keyboard_shortcuts.open_media": "til að opna margmiðlunargögn",
+  "keyboard_shortcuts.pinned": "að opna lista yfir föst tíst",
+  "keyboard_shortcuts.profile": "að opna notandasnið höfundar",
+  "keyboard_shortcuts.reply": "að svara",
+  "keyboard_shortcuts.requests": "að opna lista yfir fylgjendabeiðnir",
+  "keyboard_shortcuts.search": "að setja virkni í leit",
+  "keyboard_shortcuts.start": "að opna \"komast í gang\" dálk",
+  "keyboard_shortcuts.toggle_hidden": "að birta/fela texta á bak við aðvörun vegna efnis",
+  "keyboard_shortcuts.toggle_sensitivity": "að birta/fela myndir",
+  "keyboard_shortcuts.toot": "að byrja glænýtt tíst",
+  "keyboard_shortcuts.unfocus": "að taka virkni úr textainnsetningarreit eða leit",
+  "keyboard_shortcuts.up": "að fara ofar í listanum",
+  "lightbox.close": "Loka",
+  "lightbox.next": "Næsta",
+  "lightbox.previous": "Fyrra",
+  "lightbox.view_context": "Skoða samhengi",
+  "lists.account.add": "Bæta á lista",
+  "lists.account.remove": "Fjarlægja af lista",
+  "lists.delete": "Eyða lista",
+  "lists.edit": "Breyta lista",
+  "lists.edit.submit": "Breyta titli",
+  "lists.new.create": "Bæta við lista",
+  "lists.new.title_placeholder": "Titill á nýjum lista",
+  "lists.search": "Leita meðal þeirra sem þú fylgist með",
+  "lists.subheading": "Listarnir þínir",
+  "load_pending": "{count, plural, one {# nýtt atriði} other {# ný atriði}}",
+  "loading_indicator.label": "Hleð inn...",
+  "media_gallery.toggle_visible": "Víxla sýnileika",
+  "missing_indicator.label": "Fannst ekki",
+  "missing_indicator.sublabel": "Tilfangið fannst ekki",
+  "mute_modal.hide_notifications": "Fela tilkynningar frá þessum notanda?",
+  "navigation_bar.apps": "Farsímaforrit",
+  "navigation_bar.blocks": "Útilokaðir notendur",
+  "navigation_bar.bookmarks": "Bókamerki",
+  "navigation_bar.community_timeline": "Staðvær tímalína",
+  "navigation_bar.compose": "Semja nýtt tíst",
+  "navigation_bar.direct": "Bein skilaboð",
+  "navigation_bar.discover": "Uppgötva",
+  "navigation_bar.domain_blocks": "Falin lén",
+  "navigation_bar.edit_profile": "Breyta notandasniði",
+  "navigation_bar.favourites": "Eftirlæti",
+  "navigation_bar.filters": "Þögguð orð",
+  "navigation_bar.follow_requests": "Fylgja beiðnum",
+  "navigation_bar.follows_and_followers": "Fylgist með og fylgjendur",
+  "navigation_bar.info": "Um þennan vefþjón",
+  "navigation_bar.keyboard_shortcuts": "Flýtilyklar",
+  "navigation_bar.lists": "Listar",
+  "navigation_bar.logout": "Útskráning",
+  "navigation_bar.mutes": "Þaggaðir notendur",
+  "navigation_bar.personal": "Einka",
+  "navigation_bar.pins": "Föst tíst",
+  "navigation_bar.preferences": "Kjörstillingar",
+  "navigation_bar.public_timeline": "Sameiginleg tímalína",
+  "navigation_bar.security": "Öryggi",
+  "notification.favourite": "{name} setti stöðufærslu þína í eftirlæti",
+  "notification.follow": "{name} fylgdist með þér",
+  "notification.follow_request": "{name} hefur beðið um að fylgjast með þér",
+  "notification.mention": "{name} minntist á þig",
+  "notification.own_poll": "Könnuninni þinni er lokið",
+  "notification.poll": "Könnun sem þú tókst þátt í er lokið",
+  "notification.reblog": "{name} endurbirti stöðufærsluna þína",
+  "notifications.clear": "Hreinsa tilkynningar",
+  "notifications.clear_confirmation": "Ertu viss um að þú viljir endanlega eyða öllum tilkynningunum þínum?",
+  "notifications.column_settings.alert": "Tilkynningar á skjáborði",
+  "notifications.column_settings.favourite": "Eftirlæti:",
+  "notifications.column_settings.filter_bar.advanced": "Birta alla flokka",
+  "notifications.column_settings.filter_bar.category": "Skyndisíustika",
+  "notifications.column_settings.filter_bar.show": "Sýna",
+  "notifications.column_settings.follow": "Nýir fylgjendur:",
+  "notifications.column_settings.follow_request": "Nýjar beiðnir um að fylgjast með:",
+  "notifications.column_settings.mention": "Tilvísanir:",
+  "notifications.column_settings.poll": "Niðurstöður könnunar:",
+  "notifications.column_settings.push": "Ýti-tilkynningar",
+  "notifications.column_settings.reblog": "Endurbirtingar:",
+  "notifications.column_settings.show": "Sýna í dálki",
+  "notifications.column_settings.sound": "Spila hljóð",
+  "notifications.filter.all": "Allt",
+  "notifications.filter.boosts": "Endurbirtingar",
+  "notifications.filter.favourites": "Eftirlæti",
+  "notifications.filter.follows": "Fylgist með",
+  "notifications.filter.mentions": "Tilvísanir",
+  "notifications.filter.polls": "Niðurstöður könnunar",
+  "notifications.group": "{count} tilkynningar",
+  "poll.closed": "Lokað",
+  "poll.refresh": "Endurlesa",
+  "poll.total_people": "{count, plural, one {# aðili} other {# aðilar}}",
+  "poll.total_votes": "{count, plural, one {# atkvæði} other {# atkvæði}}",
+  "poll.vote": "Greiða atkvæði",
+  "poll.voted": "Þú kaust þetta svar",
+  "poll_button.add_poll": "Bæta við könnun",
+  "poll_button.remove_poll": "Fjarlægja könnun",
+  "privacy.change": "Aðlaga gagnaleynd stöðufærslu",
+  "privacy.direct.long": "Senda einungis á notendur sem minnst er á",
+  "privacy.direct.short": "Beint",
+  "privacy.private.long": "Senda einungis á fylgjendur",
+  "privacy.private.short": "Einungis fylgjendur",
+  "privacy.public.long": "Senda á opinberar tímalínur",
+  "privacy.public.short": "Opinbert",
+  "privacy.unlisted.long": "Ekki senda á opinberar tímalínur",
+  "privacy.unlisted.short": "Óskráð",
+  "refresh": "Endurlesa",
+  "regeneration_indicator.label": "Hleð inn…",
+  "regeneration_indicator.sublabel": "Verið er að útbúa heimastreymið þitt!",
+  "relative_time.days": "{number}d",
+  "relative_time.hours": "{number}kl.",
+  "relative_time.just_now": "núna",
+  "relative_time.minutes": "{number}mín",
+  "relative_time.seconds": "{number}sek",
+  "reply_indicator.cancel": "Hætta við",
+  "report.forward": "Áframsenda til {target}",
+  "report.forward_hint": "Notandaaðgangurinn er af öðrum vefþjóni. Á einnig að senda nafnlaust afrit af kærunni þangað?",
+  "report.hint": "Kæran verður send á umsjónarmenn vefþjónsins þíns. Þú getur gefið skýringu hér fyrir neðan á því af hverju þú ert að kæra þennan notandaaðgang:",
+  "report.placeholder": "Viðbótarathugasemdir",
+  "report.submit": "Senda inn",
+  "report.target": "Kæri {target}",
+  "search.placeholder": "Leita",
+  "search_popout.search_format": "Snið ítarlegrar leitar",
+  "search_popout.tips.full_text": "Einfaldur texti skilar stöðufærslum sem þú hefur skrifað, sett í eftirlæti, endurbirt eða verið minnst á þig í, ásamt samsvarandi birtingarnöfnum, notendanöfnum og myllumerkjum.",
+  "search_popout.tips.hashtag": "myllumerki",
+  "search_popout.tips.status": "stöðufærsla",
+  "search_popout.tips.text": "Einfaldur texti skilar samsvarandi birtingarnöfnum, notendanöfnum og myllumerkjum",
+  "search_popout.tips.user": "notandi",
+  "search_results.accounts": "Fólk",
+  "search_results.hashtags": "Myllumerki",
+  "search_results.statuses": "Tíst",
+  "search_results.statuses_fts_disabled": "Að leita í efni tísta er ekki virk á þessum Mastodon-þjóni.",
+  "search_results.total": "{count, number} {count, plural, one {niðurstaða} other {niðurstöður}}",
+  "status.admin_account": "Opna umsjónarviðmót fyrir @{name}",
+  "status.admin_status": "Opna þessa stöðufærslu í umsjónarviðmótinu",
+  "status.block": "Útiloka @{name}",
+  "status.bookmark": "Bókamerki",
+  "status.cancel_reblog_private": "Taka úr endurbirtingu",
+  "status.cannot_reblog": "Þessa færslu er ekki hægt að endurbirta",
+  "status.copy": "Afrita tengil í stöðufærslu",
+  "status.delete": "Eyða",
+  "status.detailed_status": "Nákvæm spjallþráðasýn",
+  "status.direct": "Bein skilaboð @{name}",
+  "status.embed": "Ívefja",
+  "status.favourite": "Eftirlæti",
+  "status.filtered": "Síað",
+  "status.load_more": "Hlaða inn meiru",
+  "status.media_hidden": "Mynd er falin",
+  "status.mention": "Minnast á @{name}",
+  "status.more": "Meira",
+  "status.mute": "Þagga niður í @{name}",
+  "status.mute_conversation": "Þagga niður í samtali",
+  "status.open": "Útliða þessa stöðu",
+  "status.pin": "Festa á notandasnið",
+  "status.pinned": "Fast tíst",
+  "status.read_more": "Lesa meira",
+  "status.reblog": "Endurbirting",
+  "status.reblog_private": "Endurbirta til upphaflegra lesenda",
+  "status.reblogged_by": "{name} endurbirti",
+  "status.reblogs.empty": "Enginn hefur ennþá endurbirt þetta tíst. Þegar einhverjir gera það, munu þeir birtast hér.",
+  "status.redraft": "Eyða og enduvinna drög",
+  "status.remove_bookmark": "Fjarlægja bókamerki",
+  "status.reply": "Svara",
+  "status.replyAll": "Svara þræði",
+  "status.report": "Kæra @{name}",
+  "status.sensitive_warning": "Viðkvæmt efni",
+  "status.share": "Deila",
+  "status.show_less": "Sýna minna",
+  "status.show_less_all": "Sýna minna fyrir allt",
+  "status.show_more": "Sýna meira",
+  "status.show_more_all": "Sýna meira fyrir allt",
+  "status.show_thread": "Birta þráð",
+  "status.uncached_media_warning": "Ekki tiltækt",
+  "status.unmute_conversation": "Hætta að þagga niður í samtali",
+  "status.unpin": "Losa af notandasniði",
+  "suggestions.dismiss": "Hafna tillögu",
+  "suggestions.header": "Þú gætir haft áhuga á…",
+  "tabs_bar.federated_timeline": "Sameiginlegt",
+  "tabs_bar.home": "Heim",
+  "tabs_bar.local_timeline": "Staðvært",
+  "tabs_bar.notifications": "Tilkynningar",
+  "tabs_bar.search": "Leita",
+  "time_remaining.days": "{number, plural, one {# dagur} other {# dagar}} eftir",
+  "time_remaining.hours": "{number, plural, one {# klukkustund} other {# klukkustundir}} eftir",
+  "time_remaining.minutes": "{number, plural, one {# mínúta} other {# mínútur}} eftir",
+  "time_remaining.moments": "Tími eftir",
+  "time_remaining.seconds": "{number, plural, one {# sekúnda} other {# sekúndur}} eftir",
+  "trends.count_by_accounts": "{count} {rawCount, plural, one {aðili} other {aðilar}} að tala",
+  "trends.trending_now": "Í umræðunni núna",
+  "ui.beforeunload": "Drögin tapast ef þú ferð út úr Mastodon.",
+  "upload_area.title": "Dragðu-og-slepptu hér til að senda inn",
+  "upload_button.label": "Bæta við ({formats}) myndskrá",
+  "upload_error.limit": "Fór yfir takmörk á innsendingum skráa.",
+  "upload_error.poll": "Innsending skráa er ekki leyfð í könnunum.",
+  "upload_form.audio_description": "Lýstu þessu fyrir heyrnarskerta",
+  "upload_form.description": "Lýstu þessu fyrir sjónskerta",
+  "upload_form.edit": "Breyta",
+  "upload_form.undo": "Eyða",
+  "upload_form.video_description": "Lýstu þessu fyrir fólk sem heyrir illa eða er með skerta sjón",
+  "upload_modal.analyzing_picture": "Greini mynd…",
+  "upload_modal.apply": "Virkja",
+  "upload_modal.description_placeholder": "Öllum dýrunum í skóginum þætti bezt að vera vinir",
+  "upload_modal.detect_text": "Skynja texta úr mynd",
+  "upload_modal.edit_media": "Breyta myndskrá",
+  "upload_modal.hint": "Smelltu eða dragðu til hringinn á forskoðuninni til að velja miðpunktinn sem verður alltaf sýnilegastur á öllum smámyndum.",
+  "upload_modal.preview_label": "Forskoðun ({ratio})",
+  "upload_progress.label": "Er að senda inn...",
+  "video.close": "Loka myndskeiði",
+  "video.download": "Sækja skrá",
+  "video.exit_fullscreen": "Hætta í skjáfylli",
+  "video.expand": "Stækka myndskeið",
+  "video.fullscreen": "Skjáfylli",
+  "video.hide": "Fela myndskeið",
+  "video.mute": "Þagga hljóð",
+  "video.pause": "Gera hlé",
+  "video.play": "Spila",
+  "video.unmute": "Kveikja á hljóði"
+}
diff --git a/app/javascript/mastodon/locales/it.json b/app/javascript/mastodon/locales/it.json
index c5b1d724b7ee220a944d5ba67ef7ad23c0a062b8..12a25e89bdc0a0cbb759984e84778f97b0ae5346 100644
--- a/app/javascript/mastodon/locales/it.json
+++ b/app/javascript/mastodon/locales/it.json
@@ -1,6 +1,7 @@
 {
   "account.add_or_remove_from_list": "Aggiungi o togli dalle liste",
   "account.badges.bot": "Bot",
+  "account.badges.group": "Group",
   "account.block": "Blocca @{name}",
   "account.block_domain": "Nascondi tutto da {domain}",
   "account.blocked": "Bloccato",
@@ -38,8 +39,8 @@
   "account.unfollow": "Non seguire",
   "account.unmute": "Non silenziare @{name}",
   "account.unmute_notifications": "Non silenziare più le notifiche da @{name}",
-  "alert.rate_limited.message": "Please retry after {retry_time, time, medium}.",
-  "alert.rate_limited.title": "Rate limited",
+  "alert.rate_limited.message": "Riprova dopo {retry_time, time, medium}.",
+  "alert.rate_limited.title": "Numero massimo di richieste superato",
   "alert.unexpected.message": "Si è verificato un errore inatteso.",
   "alert.unexpected.title": "Oops!",
   "autosuggest_hashtag.per_week": "{count} per settimana",
@@ -51,6 +52,7 @@
   "bundle_modal_error.message": "C'è stato un errore mentre questo componente veniva caricato.",
   "bundle_modal_error.retry": "Riprova",
   "column.blocks": "Utenti bloccati",
+  "column.bookmarks": "Segnalibri",
   "column.community": "Timeline locale",
   "column.direct": "Messaggi diretti",
   "column.directory": "Sfoglia profili",
@@ -82,6 +84,8 @@
   "compose_form.poll.duration": "Durata del sondaggio",
   "compose_form.poll.option_placeholder": "Scelta {number}",
   "compose_form.poll.remove_option": "Rimuovi questa scelta",
+  "compose_form.poll.switch_to_multiple": "Modifica sondaggio per consentire scelte multiple",
+  "compose_form.poll.switch_to_single": "Modifica sondaggio per consentire una singola scelta",
   "compose_form.publish": "Toot",
   "compose_form.publish_loud": "{publish}!",
   "compose_form.sensitive.hide": "Segna media come sensibile",
@@ -103,7 +107,7 @@
   "confirmations.logout.confirm": "Esci",
   "confirmations.logout.message": "Sei sicuro di voler uscire?",
   "confirmations.mute.confirm": "Silenzia",
-  "confirmations.mute.explanation": "This will hide posts from them and posts mentioning them, but it will still allow them to see your posts and follow you.",
+  "confirmations.mute.explanation": "I post scritti da loro e quelli che li menzionano saranno nascosti, ma loro continueranno a vedere i tuoi post e a poterti seguire.",
   "confirmations.mute.message": "Sei sicuro di voler silenziare {name}?",
   "confirmations.redraft.confirm": "Cancella e riscrivi",
   "confirmations.redraft.message": "Sei sicuro di voler cancellare questo stato e riscriverlo? Perderai tutte le risposte, condivisioni e preferiti.",
@@ -138,6 +142,7 @@
   "empty_column.account_timeline": "Non ci sono toot qui!",
   "empty_column.account_unavailable": "Profilo non disponibile",
   "empty_column.blocks": "Non hai ancora bloccato nessun utente.",
+  "empty_column.bookmarked_statuses": "Non hai ancora nessun toot tra i segnalibri. Quando ne aggiungerai qualcuno, comparirà qui.",
   "empty_column.community": "La timeline locale è vuota. Condividi qualcosa pubblicamente per dare inizio alla festa!",
   "empty_column.direct": "Non hai ancora nessun messaggio privato. Quando ne manderai o riceverai qualcuno, apparirà qui.",
   "empty_column.domain_blocks": "Non vi sono domini nascosti.",
@@ -152,10 +157,10 @@
   "empty_column.mutes": "Non hai ancora silenziato nessun utente.",
   "empty_column.notifications": "Non hai ancora nessuna notifica. Interagisci con altri per iniziare conversazioni.",
   "empty_column.public": "Qui non c'è nulla! Scrivi qualcosa pubblicamente, o aggiungi utenti da altri server per riempire questo spazio",
-  "error.unexpected_crash.explanation": "Due to a bug in our code or a browser compatibility issue, this page could not be displayed correctly.",
-  "error.unexpected_crash.next_steps": "Try refreshing the page. If that does not help, you may still be able to use Mastodon through a different browser or native app.",
-  "errors.unexpected_crash.copy_stacktrace": "Copy stacktrace to clipboard",
-  "errors.unexpected_crash.report_issue": "Report issue",
+  "error.unexpected_crash.explanation": "A causa di un bug nel nostro codice o di un problema di compatibilità del browser, questa pagina non può essere visualizzata correttamente.",
+  "error.unexpected_crash.next_steps": "Prova ad aggiornare la pagina. Se non funziona, potresti ancora essere in grado di utilizzare Mastodon attraverso un browser diverso o un'app nativa.",
+  "errors.unexpected_crash.copy_stacktrace": "Copia stacktrace negli appunti",
+  "errors.unexpected_crash.report_issue": "Segnala il problema",
   "federation.change": "Adjust status federation",
   "federation.federated.long": "Allow toot to reach other instances",
   "federation.federated.short": "Federated",
@@ -224,6 +229,7 @@
   "keyboard_shortcuts.muted": "per aprire l'elenco degli utenti silenziati",
   "keyboard_shortcuts.my_profile": "per aprire il tuo profilo",
   "keyboard_shortcuts.notifications": "per aprire la colonna delle notifiche",
+  "keyboard_shortcuts.open_media": "per aprire media",
   "keyboard_shortcuts.pinned": "per aprire l'elenco dei toot fissati in cima",
   "keyboard_shortcuts.profile": "per aprire il profilo dell'autore",
   "keyboard_shortcuts.reply": "per rispondere",
@@ -256,6 +262,7 @@
   "mute_modal.hide_notifications": "Nascondere le notifiche da quest'utente?",
   "navigation_bar.apps": "App per dispositivi mobili",
   "navigation_bar.blocks": "Utenti bloccati",
+  "navigation_bar.bookmarks": "Segnalibri",
   "navigation_bar.community_timeline": "Timeline locale",
   "navigation_bar.compose": "Componi nuovo toot",
   "navigation_bar.direct": "Messaggi diretti",
@@ -278,7 +285,9 @@
   "navigation_bar.security": "Sicurezza",
   "notification.favourite": "{name} ha apprezzato il tuo post",
   "notification.follow": "{name} ha iniziato a seguirti",
+  "notification.follow_request": "{name} ha chiesto di seguirti",
   "notification.mention": "{name} ti ha menzionato",
+  "notification.own_poll": "Il tuo sondaggio è terminato",
   "notification.poll": "Un sondaggio in cui hai votato è terminato",
   "notification.reblog": "{name} ha condiviso il tuo post",
   "notifications.clear": "Cancella notifiche",
@@ -289,6 +298,7 @@
   "notifications.column_settings.filter_bar.category": "Filtro rapido",
   "notifications.column_settings.filter_bar.show": "Mostra",
   "notifications.column_settings.follow": "Nuovi seguaci:",
+  "notifications.column_settings.follow_request": "Nuove richieste di essere seguito:",
   "notifications.column_settings.mention": "Menzioni:",
   "notifications.column_settings.poll": "Risultati del sondaggio:",
   "notifications.column_settings.push": "Notifiche push",
@@ -304,10 +314,10 @@
   "notifications.group": "{count} notifiche",
   "poll.closed": "Chiuso",
   "poll.refresh": "Aggiorna",
-  "poll.total_people": "{count, plural, one {# person} other {# people}}",
+  "poll.total_people": "{count, plural, one {# persona} other {# persone}}",
   "poll.total_votes": "{count, plural, one {# voto} other {# voti}}",
   "poll.vote": "Vota",
-  "poll.voted": "You voted for this answer",
+  "poll.voted": "Hai votato per questa risposta",
   "poll_button.add_poll": "Aggiungi un sondaggio",
   "poll_button.remove_poll": "Rimuovi sondaggio",
   "privacy.change": "Modifica privacy del post",
@@ -319,7 +329,7 @@
   "privacy.public.short": "Pubblico",
   "privacy.unlisted.long": "Non mostrare sulla timeline pubblica",
   "privacy.unlisted.short": "Non elencato",
-  "refresh": "Refresh",
+  "refresh": "Aggiorna",
   "regeneration_indicator.label": "Caricamento in corso…",
   "regeneration_indicator.sublabel": "Stiamo preparando il tuo home feed!",
   "relative_time.days": "{number}g",
@@ -349,6 +359,7 @@
   "status.admin_account": "Apri interfaccia di moderazione per @{name}",
   "status.admin_status": "Apri questo status nell'interfaccia di moderazione",
   "status.block": "Blocca @{name}",
+  "status.bookmark": "Aggiungi segnalibro",
   "status.cancel_reblog_private": "Annulla condivisione",
   "status.cannot_reblog": "Questo post non può essere condiviso",
   "status.copy": "Copia link allo status",
@@ -374,6 +385,7 @@
   "status.reblogged_by": "{name} ha condiviso",
   "status.reblogs.empty": "Nessuno ha ancora condiviso questo toot. Quando qualcuno lo farà, comparirà qui.",
   "status.redraft": "Cancella e riscrivi",
+  "status.remove_bookmark": "Elimina segnalibro",
   "status.reply": "Rispondi",
   "status.replyAll": "Rispondi alla conversazione",
   "status.report": "Segnala @{name}",
@@ -406,11 +418,13 @@
   "upload_button.label": "Aggiungi file multimediale",
   "upload_error.limit": "Limite al caricamento di file superato.",
   "upload_error.poll": "Caricamento file non consentito nei sondaggi.",
+  "upload_form.audio_description": "Descrizione per persone con difetti uditivi",
   "upload_form.description": "Descrizione per utenti con disabilità visive",
   "upload_form.edit": "Modifica",
   "upload_form.undo": "Cancella",
+  "upload_form.video_description": "Descrizione per persone con difetti uditivi o visivi",
   "upload_modal.analyzing_picture": "Analisi immagine…",
-  "upload_modal.apply": "Apply",
+  "upload_modal.apply": "Applica",
   "upload_modal.description_placeholder": "Ma la volpe col suo balzo ha raggiunto il quieto Fido",
   "upload_modal.detect_text": "Rileva testo dall'immagine",
   "upload_modal.edit_media": "Modifica media",
@@ -418,6 +432,7 @@
   "upload_modal.preview_label": "Anteprima ({ratio})",
   "upload_progress.label": "Sto caricando...",
   "video.close": "Chiudi video",
+  "video.download": "Scarica file",
   "video.exit_fullscreen": "Esci da modalità a schermo intero",
   "video.expand": "Espandi video",
   "video.fullscreen": "Schermo intero",
diff --git a/app/javascript/mastodon/locales/ja.json b/app/javascript/mastodon/locales/ja.json
index f6026824c12d4f031489a3e64f3a6ecc9dab4ba3..62f0fe1e254b75baf6e2456858404eae0db706a4 100644
--- a/app/javascript/mastodon/locales/ja.json
+++ b/app/javascript/mastodon/locales/ja.json
@@ -1,6 +1,7 @@
 {
   "account.add_or_remove_from_list": "リストから追加または外す",
   "account.badges.bot": "Bot",
+  "account.badges.group": "Group",
   "account.block": "@{name}さんをブロック",
   "account.block_domain": "{domain}全体を非表示",
   "account.blocked": "ブロック済み",
@@ -26,16 +27,21 @@
   "account.mute_notifications": "@{name}さんからの通知を受け取らない",
   "account.muted": "ミュート済み",
   "account.never_active": "活動なし",
+  "account.open_domain_timeline": "{domain}タイムラインを表示",
   "account.posts": "投稿",
   "account.posts_with_replies": "投稿と返信",
   "account.report": "@{name}さんを通報",
   "account.requested": "フォロー承認待ちです。クリックしてキャンセル",
   "account.share": "@{name}さんのプロフィールを共有する",
   "account.show_reblogs": "@{name}さんからのブーストを表示",
+  "account.subscribe": "購読",
+  "account.subscribes": "購読",
+  "account.subscribes.empty": "まだ誰も購読していません。",
   "account.unblock": "@{name}さんのブロックを解除",
   "account.unblock_domain": "{domain}の非表示を解除",
   "account.unendorse": "プロフィールから外す",
   "account.unfollow": "フォロー解除",
+  "account.unsubscribe": "購読解除",
   "account.unmute": "@{name}さんのミュートを解除",
   "account.unmute_notifications": "@{name}さんからの通知を受け取るようにする",
   "alert.rate_limited.message": "{retry_time, time, medium} 以降に再度実行してください。",
@@ -51,6 +57,7 @@
   "bundle_modal_error.message": "コンポーネントの読み込み中に問題が発生しました。",
   "bundle_modal_error.retry": "再試行",
   "column.blocks": "ブロックしたユーザー",
+  "column.bookmarks": "ブックマーク",
   "column.community": "ローカルタイムライン",
   "column.direct": "ダイレクトメッセージ",
   "column.directory": "ディレクトリ",
@@ -82,6 +89,8 @@
   "compose_form.poll.duration": "アンケート期間",
   "compose_form.poll.option_placeholder": "é …ç›® {number}",
   "compose_form.poll.remove_option": "この項目を削除",
+  "compose_form.poll.switch_to_multiple": "複数選択用に変更",
+  "compose_form.poll.switch_to_single": "単一選択用に変更",
   "compose_form.publish": "トゥート",
   "compose_form.publish_loud": "{publish}!",
   "compose_form.sensitive.hide": "メディアを閲覧注意にする",
@@ -103,7 +112,7 @@
   "confirmations.logout.confirm": "ログアウト",
   "confirmations.logout.message": "本当にログアウトしますか?",
   "confirmations.mute.confirm": "ミュート",
-  "confirmations.mute.explanation": "これにより相手のトゥートと返信は見えなくなりますが、引き続きあなたをフォローしトゥートを見ることはできます。",
+  "confirmations.mute.explanation": "これにより相手のトゥートと返信は見えなくなりますが、相手はあなたをフォローし続けトゥートを見ることができます。",
   "confirmations.mute.message": "本当に{name}さんをミュートしますか?",
   "confirmations.redraft.confirm": "削除して下書きに戻す",
   "confirmations.redraft.message": "本当にこのトゥートを削除して下書きに戻しますか? このトゥートへのお気に入り登録やブーストは失われ、返信は孤立することになります。",
@@ -111,6 +120,8 @@
   "confirmations.reply.message": "今返信すると現在作成中のメッセージが上書きされます。本当に実行しますか?",
   "confirmations.unfollow.confirm": "フォロー解除",
   "confirmations.unfollow.message": "本当に{name}さんのフォローを解除しますか?",
+  "confirmations.unsubscribe.confirm": "購読解除",
+  "confirmations.unsubscribe.message": "本当に{name}さんの購読を解除しますか?",
   "conversation.delete": "会話を削除",
   "conversation.mark_as_read": "既読にする",
   "conversation.open": "会話を表示",
@@ -138,6 +149,7 @@
   "empty_column.account_timeline": "トゥートがありません!",
   "empty_column.account_unavailable": "プロフィールは利用できません",
   "empty_column.blocks": "まだ誰もブロックしていません。",
+  "empty_column.bookmarked_statuses": "まだ何もブックマーク登録していません。ブックマーク登録するとここに表示されます。",
   "empty_column.community": "ローカルタイムラインはまだ使われていません。何か書いてみましょう!",
   "empty_column.direct": "ダイレクトメッセージはまだありません。ダイレクトメッセージをやりとりすると、ここに表示されます。",
   "empty_column.domain_blocks": "非表示にしているドメインはありません。",
@@ -188,7 +200,7 @@
   "intervals.full.minutes": "{number}分",
   "introduction.federation.action": "次へ",
   "introduction.federation.federated.headline": "連合タイムライン",
-  "introduction.federation.federated.text": "Fediverseの他のサーバーからの公開投稿は連合タイムラインに表示されます。",
+  "introduction.federation.federated.text": "Fediverseの様々なサーバーからの公開投稿が連合タイムラインに表示されます。",
   "introduction.federation.home.headline": "ホームタイムライン",
   "introduction.federation.home.text": "フォローしている人々の投稿はホームタイムラインに表示されます。どこのサーバーの誰でもフォローできます!",
   "introduction.federation.local.headline": "ローカルタイムライン",
@@ -224,6 +236,7 @@
   "keyboard_shortcuts.muted": "ミュートしたユーザーのリストを開く",
   "keyboard_shortcuts.my_profile": "自分のプロフィールを開く",
   "keyboard_shortcuts.notifications": "通知カラムを開く",
+  "keyboard_shortcuts.open_media": "メディアを開く",
   "keyboard_shortcuts.pinned": "固定したトゥートのリストを開く",
   "keyboard_shortcuts.profile": "プロフィールを開く",
   "keyboard_shortcuts.reply": "返信",
@@ -256,6 +269,7 @@
   "mute_modal.hide_notifications": "このユーザーからの通知を隠しますか?",
   "navigation_bar.apps": "アプリ",
   "navigation_bar.blocks": "ブロックしたユーザー",
+  "navigation_bar.bookmarks": "ブックマーク",
   "navigation_bar.community_timeline": "ローカルタイムライン",
   "navigation_bar.compose": "トゥートの新規作成",
   "navigation_bar.direct": "ダイレクトメッセージ",
@@ -266,7 +280,10 @@
   "navigation_bar.filters": "フィルター設定",
   "navigation_bar.follow_requests": "フォローリクエスト",
   "navigation_bar.follows_and_followers": "フォロー・フォロワー",
+  "navigation_bar.hashtag_fedibird": "Fedibirdに関する話題",
   "navigation_bar.info": "このサーバーについて",
+  "navigation_bar.information": "お知らせと情報",
+  "navigation_bar.information_acct": "Fedibirdインフォメーション",
   "navigation_bar.keyboard_shortcuts": "ホットキー",
   "navigation_bar.lists": "リスト",
   "navigation_bar.logout": "ログアウト",
@@ -278,7 +295,9 @@
   "navigation_bar.security": "セキュリティ",
   "notification.favourite": "{name}さんがあなたのトゥートをお気に入りに登録しました",
   "notification.follow": "{name}さんにフォローされました",
+  "notification.follow_request": "{name} さんがあなたにフォローリクエストしました",
   "notification.mention": "{name}さんがあなたに返信しました",
+  "notification.own_poll": "アンケートが終了しました",
   "notification.poll": "アンケートが終了しました",
   "notification.reblog": "{name}さんがあなたのトゥートをブーストしました",
   "notifications.clear": "通知を消去",
@@ -289,6 +308,7 @@
   "notifications.column_settings.filter_bar.category": "クイックフィルターバー",
   "notifications.column_settings.filter_bar.show": "表示",
   "notifications.column_settings.follow": "新しいフォロワー:",
+  "notifications.column_settings.follow_request": "新しいフォローリクエスト:",
   "notifications.column_settings.mention": "返信:",
   "notifications.column_settings.poll": "アンケート結果:",
   "notifications.column_settings.push": "プッシュ通知",
@@ -319,6 +339,7 @@
   "privacy.public.short": "公開",
   "privacy.unlisted.long": "公開TLで表示しない",
   "privacy.unlisted.short": "未収載",
+  "quote_indicator.cancel": "キャンセル",
   "refresh": "æ›´æ–°",
   "regeneration_indicator.label": "読み込み中…",
   "regeneration_indicator.sublabel": "ホームタイムラインは準備中です!",
@@ -349,6 +370,7 @@
   "status.admin_account": "@{name} のモデレーション画面を開く",
   "status.admin_status": "このトゥートをモデレーション画面で開く",
   "status.block": "@{name}さんをブロック",
+  "status.bookmark": "ブックマーク",
   "status.cancel_reblog_private": "ブースト解除",
   "status.cannot_reblog": "この投稿はブーストできません",
   "status.copy": "トゥートへのリンクをコピー",
@@ -369,11 +391,14 @@
   "status.pin": "プロフィールに固定表示",
   "status.pinned": "固定されたトゥート",
   "status.read_more": "もっと見る",
+  "status.quote": "引用",
+  "status.unlisted_quote": "未収載の引用",
   "status.reblog": "ブースト",
   "status.reblog_private": "ブースト",
   "status.reblogged_by": "{name}さんがブースト",
   "status.reblogs.empty": "まだ誰もブーストしていません。ブーストされるとここに表示されます。",
   "status.redraft": "削除して下書きに戻す",
+  "status.remove_bookmark": "ブックマークを削除",
   "status.reply": "返信",
   "status.replyAll": "全員に返信",
   "status.report": "@{name}さんを通報",
@@ -391,6 +416,7 @@
   "suggestions.header": "興味あるかもしれません…",
   "tabs_bar.federated_timeline": "連合",
   "tabs_bar.home": "ホーム",
+  "tabs_bar.lists": "リスト",
   "tabs_bar.local_timeline": "ローカル",
   "tabs_bar.notifications": "通知",
   "tabs_bar.search": "検索",
@@ -406,9 +432,11 @@
   "upload_button.label": "メディアを追加 ({formats})",
   "upload_error.limit": "アップロードできる上限を超えています。",
   "upload_error.poll": "アンケートではファイルをアップロードできません。",
-  "upload_form.description": "視覚障害者のための説明",
+  "upload_form.audio_description": "聴取が難しいユーザーへの説明",
+  "upload_form.description": "閲覧が難しいユーザーへの説明",
   "upload_form.edit": "編集",
   "upload_form.undo": "削除",
+  "upload_form.video_description": "視聴が難しいユーザーへの説明",
   "upload_modal.analyzing_picture": "画像を解析中…",
   "upload_modal.apply": "適用",
   "upload_modal.description_placeholder": "あのイーハトーヴォのすきとおった風",
@@ -418,6 +446,7 @@
   "upload_modal.preview_label": "プレビュー ({ratio})",
   "upload_progress.label": "アップロード中...",
   "video.close": "動画を閉じる",
+  "video.download": "ダウンロード",
   "video.exit_fullscreen": "全画面を終了する",
   "video.expand": "動画を拡大する",
   "video.fullscreen": "全画面",
diff --git a/app/javascript/mastodon/locales/ka.json b/app/javascript/mastodon/locales/ka.json
index c378bc9c88916e28c398a8c659d611f095eed645..c62b6150c9ac3770fbb7b3dddfaf198ade2ee43e 100644
--- a/app/javascript/mastodon/locales/ka.json
+++ b/app/javascript/mastodon/locales/ka.json
@@ -1,6 +1,7 @@
 {
   "account.add_or_remove_from_list": "Add or Remove from lists",
   "account.badges.bot": "ბოტი",
+  "account.badges.group": "Group",
   "account.block": "დაბლოკე @{name}",
   "account.block_domain": "დაიმალოს ყველაფერი დომენიდან {domain}",
   "account.blocked": "დაიბლოკა",
@@ -42,7 +43,7 @@
   "alert.rate_limited.title": "Rate limited",
   "alert.unexpected.message": "წარმოიშვა მოულოდნელი შეცდომა.",
   "alert.unexpected.title": "უპს!",
-  "autosuggest_hashtag.per_week": "{count} per week",
+  "autosuggest_hashtag.per_week": "კვირაში {count}",
   "boost_modal.combo": "შეგიძლიათ დააჭიროთ {combo}-ს რათა შემდეგ ჯერზე გამოტოვოთ ეს",
   "bundle_column_error.body": "ამ კომპონენტის ჩატვირთვისას რაღაც აირია.",
   "bundle_column_error.retry": "სცადეთ კიდევ ერთხელ",
@@ -51,6 +52,7 @@
   "bundle_modal_error.message": "ამ კომპონენტის ჩატვირთვისას რაღაც აირია.",
   "bundle_modal_error.retry": "სცადეთ კიდევ ერთხელ",
   "column.blocks": "დაბლოკილი მომხმარებლები",
+  "column.bookmarks": "Bookmarks",
   "column.community": "ლოკალური თაიმლაინი",
   "column.direct": "პირდაპირი წერილები",
   "column.directory": "Browse profiles",
@@ -82,6 +84,8 @@
   "compose_form.poll.duration": "Poll duration",
   "compose_form.poll.option_placeholder": "Choice {number}",
   "compose_form.poll.remove_option": "Remove this choice",
+  "compose_form.poll.switch_to_multiple": "Change poll to allow multiple choices",
+  "compose_form.poll.switch_to_single": "Change poll to allow for a single choice",
   "compose_form.publish": "ტუტი",
   "compose_form.publish_loud": "{publish}!",
   "compose_form.sensitive.hide": "Mark media as sensitive",
@@ -138,6 +142,7 @@
   "empty_column.account_timeline": "No toots here!",
   "empty_column.account_unavailable": "Profile unavailable",
   "empty_column.blocks": "You haven't blocked any users yet.",
+  "empty_column.bookmarked_statuses": "You don't have any bookmarked toots yet. When you bookmark one, it will show up here.",
   "empty_column.community": "ლოკალური თაიმლაინი ცარიელია. დაწერეთ რაიმე ღიად ან ქენით რაიმე სხვა!",
   "empty_column.direct": "ჯერ პირდაპირი წერილები არ გაქვთ. როდესაც მიიღებთ ან გააგზავნით, გამოჩნდება აქ.",
   "empty_column.domain_blocks": "There are no hidden domains yet.",
@@ -224,6 +229,7 @@
   "keyboard_shortcuts.muted": "to open muted users list",
   "keyboard_shortcuts.my_profile": "to open your profile",
   "keyboard_shortcuts.notifications": "to open notifications column",
+  "keyboard_shortcuts.open_media": "to open media",
   "keyboard_shortcuts.pinned": "to open pinned toots list",
   "keyboard_shortcuts.profile": "ავტორის პროფილის გასახსნელად",
   "keyboard_shortcuts.reply": "პასუხისთვის",
@@ -256,6 +262,7 @@
   "mute_modal.hide_notifications": "დავმალოთ შეტყობინებები ამ მომხმარებლისგან?",
   "navigation_bar.apps": "Mobile apps",
   "navigation_bar.blocks": "დაბლოკილი მომხმარებლები",
+  "navigation_bar.bookmarks": "Bookmarks",
   "navigation_bar.community_timeline": "ლოკალური თაიმლაინი",
   "navigation_bar.compose": "Compose new toot",
   "navigation_bar.direct": "პირდაპირი წერილები",
@@ -278,7 +285,9 @@
   "navigation_bar.security": "უსაფრთხოება",
   "notification.favourite": "{name}-მა თქვენი სტატუსი აქცია ფავორიტად",
   "notification.follow": "{name} გამოგყვათ",
+  "notification.follow_request": "{name} has requested to follow you",
   "notification.mention": "{name}-მა გასახელათ",
+  "notification.own_poll": "Your poll has ended",
   "notification.poll": "A poll you have voted in has ended",
   "notification.reblog": "{name}-მა დაბუსტა თქვენი სტატუსი",
   "notifications.clear": "შეტყობინებების გასუფთავება",
@@ -289,6 +298,7 @@
   "notifications.column_settings.filter_bar.category": "Quick filter bar",
   "notifications.column_settings.filter_bar.show": "Show",
   "notifications.column_settings.follow": "ახალი მიმდევრები:",
+  "notifications.column_settings.follow_request": "New follow requests:",
   "notifications.column_settings.mention": "ხსენებები:",
   "notifications.column_settings.poll": "Poll results:",
   "notifications.column_settings.push": "ფუშ შეტყობინებები",
@@ -349,6 +359,7 @@
   "status.admin_account": "Open moderation interface for @{name}",
   "status.admin_status": "Open this status in the moderation interface",
   "status.block": "დაბლოკე @{name}",
+  "status.bookmark": "Bookmark",
   "status.cancel_reblog_private": "ბუსტის მოშორება",
   "status.cannot_reblog": "ეს პოსტი ვერ დაიბუსტება",
   "status.copy": "Copy link to status",
@@ -374,6 +385,7 @@
   "status.reblogged_by": "{name} დაიბუსტა",
   "status.reblogs.empty": "No one has boosted this toot yet. When someone does, they will show up here.",
   "status.redraft": "გაუქმდეს და გადანაწილდეს",
+  "status.remove_bookmark": "Remove bookmark",
   "status.reply": "პასუხი",
   "status.replyAll": "უპასუხე თემას",
   "status.report": "დაარეპორტე @{name}",
@@ -406,9 +418,11 @@
   "upload_button.label": "მედიის დამატება",
   "upload_error.limit": "File upload limit exceeded.",
   "upload_error.poll": "File upload not allowed with polls.",
+  "upload_form.audio_description": "Describe for people with hearing loss",
   "upload_form.description": "აღწერილობა ვიზუალურად უფასურისთვის",
   "upload_form.edit": "Edit",
   "upload_form.undo": "გაუქმება",
+  "upload_form.video_description": "Describe for people with hearing loss or visual impairment",
   "upload_modal.analyzing_picture": "Analyzing picture…",
   "upload_modal.apply": "Apply",
   "upload_modal.description_placeholder": "A quick brown fox jumps over the lazy dog",
@@ -418,6 +432,7 @@
   "upload_modal.preview_label": "Preview ({ratio})",
   "upload_progress.label": "იტვირთება...",
   "video.close": "ვიდეოს დახურვა",
+  "video.download": "Download file",
   "video.exit_fullscreen": "სრულ ეკრანზე ჩვენების გათიშვა",
   "video.expand": "ვიდეოს გაფართოება",
   "video.fullscreen": "ჩვენება სრულ ეკრანზე",
diff --git a/app/javascript/mastodon/locales/kab.json b/app/javascript/mastodon/locales/kab.json
new file mode 100644
index 0000000000000000000000000000000000000000..edb539f4f1ef70e1f66b9b2d8f77e7cc5101ff5f
--- /dev/null
+++ b/app/javascript/mastodon/locales/kab.json
@@ -0,0 +1,438 @@
+{
+  "account.add_or_remove_from_list": "Rnu neɣ kkes seg tebdarin",
+  "account.badges.bot": "Aá¹›ubut",
+  "account.badges.group": "Group",
+  "account.block": "Seḥbes @{name}",
+  "account.block_domain": "Ffer kra i d-yekkan seg {domain}",
+  "account.blocked": "Yettuseḥbes",
+  "account.cancel_follow_request": "Sefsex asuter n weḍfaṛ",
+  "account.direct": "Izen usrid i @{name}",
+  "account.domain_blocked": "Taɣult yeffren",
+  "account.edit_profile": "Ẓreg amaɣnu",
+  "account.endorse": "Welleh fell-as deg umaɣnu-inek",
+  "account.follow": "Ḍfeṛ",
+  "account.followers": "Imeḍfaṛen",
+  "account.followers.empty": "Ar tura, ulac yiwen i yeá¹­á¹­afaá¹›en amseqdac-agi.",
+  "account.follows": "Aḍfaṛen",
+  "account.follows.empty": "Ar tura, amseqdac-agi ur yeá¹­á¹­afaá¹› yiwen.",
+  "account.follows_you": "Yeá¹­á¹­afaá¹›-ik",
+  "account.hide_reblogs": "Ffer ayen i ibeá¹­á¹­u @{name}",
+  "account.last_status": "Armud aneggaru",
+  "account.link_verified_on": "Taɣara n useɣwen-a tettwasenqed de {date}",
+  "account.locked_info": "Amiḍan-agi uslig isekweṛ. D bab-is kan i izemren ad yeǧǧ, s ufus-is, win ara t-iḍefṛen.",
+  "account.media": "Allal n teywalt",
+  "account.mention": "Bder-d @{name}",
+  "account.moved_to": "{name} ibeddel ɣer:",
+  "account.mute": "Sgugem @{name}",
+  "account.mute_notifications": "Ḥbes ilɣa sɣur @{name}",
+  "account.muted": "Yettwasgugem",
+  "account.never_active": "Werǧin",
+  "account.posts": "Tiberraḥin",
+  "account.posts_with_replies": "Tibarraḥin d tririyin",
+  "account.report": "Sewɛed @{name}",
+  "account.requested": "Di laɛḍil ad yettwaqbel. Ssit iwakken ad yefsex usuter n weḍfar",
+  "account.share": "Bḍu amaɣnu n @{name}",
+  "account.show_reblogs": "Sken-d inebḍa n @{name}",
+  "account.unblock": "Serreḥ i @{name}",
+  "account.unblock_domain": "Kkes tuffra i {domain}",
+  "account.unendorse": "Ur ttwellih ara fell-as deg umaɣnu-inek",
+  "account.unfollow": "Ur á¹­á¹­afaá¹› ara",
+  "account.unmute": "Kkes asgugem ɣef @{name}",
+  "account.unmute_notifications": "Serreḥ ilɣa sɣur @{name}",
+  "alert.rate_limited.message": "Ma ulac aɣilif ɛreḍ tikelt-nniḍen mbeɛd {retry_time, time, medium}.",
+  "alert.rate_limited.title": "Aktum s talast",
+  "alert.unexpected.message": "Tella-d tuccḍa i ɣef ur nedmi ara.",
+  "alert.unexpected.title": "Ayhuh!",
+  "autosuggest_hashtag.per_week": "{count} i yimalas",
+  "boost_modal.combo": "Tzemreḍ ad tetekkiḍ ɣef {combo} akken ad tessurfeḍ aya tikelt-nniḍen",
+  "bundle_column_error.body": "Tella-d kra n tuccḍa mi d-yettali ugbur-agi.",
+  "bundle_column_error.retry": "Ɛreḍ tikelt-nniḍen",
+  "bundle_column_error.title": "Tuccḍa deg uẓeṭṭa",
+  "bundle_modal_error.close": "Mdel",
+  "bundle_modal_error.message": "Tella-d kra n tuccḍa mi d-yettali ugbur-agi.",
+  "bundle_modal_error.retry": "Ɛreḍ tikelt-nniḍen",
+  "column.blocks": "Imiḍanen yettusḥebsen",
+  "column.bookmarks": "Ticraḍ",
+  "column.community": "Tasuddemt tadigant",
+  "column.direct": "Iznan usriden",
+  "column.directory": "Qelleb deg yimaɣnuten",
+  "column.domain_blocks": "Tiɣula yettwaffren",
+  "column.favourites": "Ismenyifen",
+  "column.follow_requests": "Isuturen n teḍfeṛt",
+  "column.home": "Agejdan",
+  "column.lists": "Tibdarin",
+  "column.mutes": "Imiḍanen yettwasgugmen",
+  "column.notifications": "Tilɣa",
+  "column.pins": "Tiberraḥin yettwasenṭḍen",
+  "column.public": "Tasuddemt tamatut",
+  "column_back_button.label": "Tuɣalin",
+  "column_header.hide_settings": "Ffer iɣewwaṛen",
+  "column_header.moveLeft_settings": "Err ajgu ɣer tama tazelmaḍt",
+  "column_header.moveRight_settings": "Err ajgu ɣer tama tayfust",
+  "column_header.pin": "Senteḍ",
+  "column_header.show_settings": "Sken iɣewwaṛen",
+  "column_header.unpin": "Kkes asenteḍ",
+  "column_subheading.settings": "IÉ£ewwaá¹›en",
+  "community.column_settings.media_only": "Allal n teywalt kan",
+  "compose_form.direct_message_warning": "Taberraḥt-a ad d-tettwasken kan i yimseqdacen i d-yettwabedren.",
+  "compose_form.direct_message_warning_learn_more": "Issin ugar",
+  "compose_form.hashtag_warning": "This toot won't be listed under any hashtag as it is unlisted. Only public toots can be searched by hashtag.",
+  "compose_form.lock_disclaimer": "Amiḍan-ik ur yelli ara {locked}. Menwala yezmer ad k-yeḍfeṛ akken ad iẓer acu tbeṭṭuḍ akked yimeḍfaṛen-ik.",
+  "compose_form.lock_disclaimer.lock": "yettwacekkel",
+  "compose_form.placeholder": "D acu i itezzin deg uqaṛṛu-ik?",
+  "compose_form.poll.add_option": "Rnu afran",
+  "compose_form.poll.duration": "Tanzagt n tefrant",
+  "compose_form.poll.option_placeholder": "Afran {number}",
+  "compose_form.poll.remove_option": "Sfeḍ afran-agi",
+  "compose_form.poll.switch_to_multiple": "Change poll to allow multiple choices",
+  "compose_form.poll.switch_to_single": "Change poll to allow for a single choice",
+  "compose_form.publish": "Taberraḥt",
+  "compose_form.publish_loud": "{publish}!",
+  "compose_form.sensitive.hide": "Creḍ allal n teywalt d anafri",
+  "compose_form.sensitive.marked": "Allal n teywalt yettwacreḍ d anafri",
+  "compose_form.sensitive.unmarked": "Allal n teywalt ur yettwacreḍ ara d anafri",
+  "compose_form.spoiler.marked": "Aḍris yeffer deffir n walɣu",
+  "compose_form.spoiler.unmarked": "Aḍris ur yettwaffer ara",
+  "compose_form.spoiler_placeholder": "Aru alɣu-inek da",
+  "confirmation_modal.cancel": "Sefsex",
+  "confirmations.block.block_and_report": "Sewḥel & sewɛed",
+  "confirmations.block.confirm": "Sewḥel",
+  "confirmations.block.message": "Tebɣiḍ s tidet ad tesḥebseḍ {name}?",
+  "confirmations.delete.confirm": "Kkes",
+  "confirmations.delete.message": "Tebɣiḍ s tidet ad tekkseḍ tasuffeɣt-agi?",
+  "confirmations.delete_list.confirm": "Kkes",
+  "confirmations.delete_list.message": "Tebɣiḍ s tidet ad tekkseḍ tabdert-agi i lebda?",
+  "confirmations.domain_block.confirm": "Ffer taɣult meṛṛa",
+  "confirmations.domain_block.message": "Are you really, really sure you want to block the entire {domain}? In most cases a few targeted blocks or mutes are sufficient and preferable. You will not see content from that domain in any public timelines or your notifications. Your followers from that domain will be removed.",
+  "confirmations.logout.confirm": "Ffeɣ",
+  "confirmations.logout.message": "D tidet tebɣiḍ ad teffɣeḍ?",
+  "confirmations.mute.confirm": "Sgugem",
+  "confirmations.mute.explanation": "Aya ad yeffer iznan-is d wid i deg d-yettwabder neɣ d-tettwabder, maca xas akka yezmer neɣ tezmer awali n yiznan-inek d uḍfaṛ-ik.",
+  "confirmations.mute.message": "Tetḥeqqeḍ belli tebɣiḍ asɛuggen n {name}?",
+  "confirmations.redraft.confirm": "Sfeḍ & Ɛiwed tira",
+  "confirmations.redraft.message": "Tetḥeqqeḍ belli tebɣiḍ asfaḍ n waddad-agi iwakken ad s-tɛiwdeḍ tira? Ismenyifen d beḍḍuwat ad ṛuḥen, ma d tiririyin-is ad uɣalent d tigujilin.",
+  "confirmations.reply.confirm": "Err",
+  "confirmations.reply.message": "Tiririt akka tura ad k-degger izen-agi i tettaruḍ. Tebɣiḍ ad tkemmleḍ?",
+  "confirmations.unfollow.confirm": "Ur ḍḍafaṛ ara",
+  "confirmations.unfollow.message": "Tetḥeqqeḍ belli tebɣiḍ ur teḍḍafaṛeḍ ara {name}?",
+  "conversation.delete": "Sfeḍ adiwenni",
+  "conversation.mark_as_read": "Creḍ yettwaɣṛa",
+  "conversation.open": "Sken adiwenni",
+  "conversation.with": "Akked {names}",
+  "directory.federated": "Seg fedivers yettwasnen",
+  "directory.local": "Seg {domain} kan",
+  "directory.new_arrivals": "Inebgawen imaynuten",
+  "directory.recently_active": "Yermed xas melmi kan",
+  "embed.instructions": "Ẓẓu addad-agi deg usmel-inek s wenɣal n tangalt yellan sdaw-agi.",
+  "embed.preview": "Akka ara d-iban:",
+  "emoji_button.activity": "Aqeddic",
+  "emoji_button.custom": "Udmawan",
+  "emoji_button.flags": "Innayen",
+  "emoji_button.food": "Tegwella & Tissit",
+  "emoji_button.label": "Sekcem imuji",
+  "emoji_button.nature": "Agama",
+  "emoji_button.not_found": "Ulac izamulen n yiḥulfan  !! (╯°□°)╯︵ ┻━┻",
+  "emoji_button.objects": "Tiɣawsiwin",
+  "emoji_button.people": "Medden",
+  "emoji_button.recent": "Wid yettuseqdacen s waá¹­as",
+  "emoji_button.search": "Nadi…",
+  "emoji_button.search_results": "Igmaḍ u unadi",
+  "emoji_button.symbols": "Izamulen",
+  "emoji_button.travel": "Imeḍqan d Yinigen",
+  "empty_column.account_timeline": "Ulac tiberraḥin dagi!",
+  "empty_column.account_unavailable": "Ur nufi ara amaɣnu-a",
+  "empty_column.blocks": "Ur tesḥebseḍ ula yiwen n umseqdac ar tura.",
+  "empty_column.bookmarked_statuses": "Ulac tiberraḥin i terniḍ ɣer yismenyifen-ik ar tura. Ticki terniḍ yiwet, ad d-tettwasken da.",
+  "empty_column.community": "Tasuddemt tazayezt tadigant n yisallen d tilemt. Aru ihi kra akken ad tt-teččareḍ!",
+  "empty_column.direct": "Ulac ɣur-k ula yiwen n yizen usrid. Ad d-yettwasken da, ticki tuzneḍ neɣ teṭṭfeḍ-d yiwen.",
+  "empty_column.domain_blocks": "Ulac kra n taɣult yettwaffren ar tura.",
+  "empty_column.favourited_statuses": "Ulac ula yiwet n tberraḥt deg yismenyifen-ik ar tura. Ticki Tella-d yiwet, ad d-ban da.",
+  "empty_column.favourites": "Ula yiwen ur yerri taberraḥt-agi deg yismenyifen-is. Melmi i d-yella waya, ad d-yettwasken da.",
+  "empty_column.follow_requests": "Ulac ɣur-k ula yiwen n usuter n teḍfeṛt. Ticki teṭṭfeḍ-d yiwen ad d-yettwasken da.",
+  "empty_column.hashtag": "Ar tura ulac kra n ugbur yesɛan assaɣ ɣer uhacṭag-agi.",
+  "empty_column.home": "Tasuddemt tagejdant n yisallen d tilemt! Ẓer {public} neɣ nadi ad tafeḍ imseqdacen-nniḍen ad ten-ḍefṛeḍ.",
+  "empty_column.home.public_timeline": "tasuddemt tazayezt n yisallen",
+  "empty_column.list": "Ar tura ur yelli kra deg tebdert-a. Ad d-yettwasken da ticki iɛeggalen n tebdert-a suffɣen-d kra.",
+  "empty_column.lists": "Ulac ɣur-k kra n tebdert yakan. Ad d-tettwasken da ticki tesluleḍ-d yiwet.",
+  "empty_column.mutes": "Ulac ɣur-k imseqdacen i yettwasgugmen.",
+  "empty_column.notifications": "Ulac ɣur-k tilɣa. Sedmer akked yemdanen-nniḍen akken ad tebduḍ adiwenni.",
+  "empty_column.public": "Ulac kra da! Aru kra, neɣ ḍfeṛ imdanen i yellan deg yiqeddacen-nniḍen akken ad d-teččar tsuddemt tazayezt",
+  "error.unexpected_crash.explanation": "Due to a bug in our code or a browser compatibility issue, this page could not be displayed correctly.",
+  "error.unexpected_crash.next_steps": "Smiren asebter-a, ma ur yekkis ara wugur, ẓer d akken tzemreḍ ad tesqedceḍ Mastudun deg yiminig-nniḍen neɣ deg usnas anaṣli.",
+  "errors.unexpected_crash.copy_stacktrace": "Copy stacktrace to clipboard",
+  "errors.unexpected_crash.report_issue": "Mmel ugur",
+  "follow_request.authorize": "Ssireg",
+  "follow_request.reject": "Agi",
+  "getting_started.developers": "Ineflayen",
+  "getting_started.directory": "Imaɣnuten",
+  "getting_started.documentation": "Amnir",
+  "getting_started.heading": "Bdu",
+  "getting_started.invite": "Snebgi-d imdanen",
+  "getting_started.open_source_notice": "Mastudun d aseɣzan s uɣbalu yeldin. Tzemreḍ ad tɛiwneḍ neɣ ad temmleḍ uguren seg GitHub {github}.",
+  "getting_started.security": "Iγewwaṛen n umiḍan",
+  "getting_started.terms": "Tiwetlin n useqdec",
+  "hashtag.column_header.tag_mode.all": "d {additional}",
+  "hashtag.column_header.tag_mode.any": "neγ {additional}",
+  "hashtag.column_header.tag_mode.none": "war {additional}",
+  "hashtag.column_settings.select.no_options_message": "Ulac isumar",
+  "hashtag.column_settings.select.placeholder": "Rnu-d ihacṭagen…",
+  "hashtag.column_settings.tag_mode.all": "Kra yellan",
+  "hashtag.column_settings.tag_mode.any": "Yiwen seg-sen",
+  "hashtag.column_settings.tag_mode.none": "Yiwen ala seg-sen",
+  "hashtag.column_settings.tag_toggle": "Glu-d s yihacá¹­agen imerna i ujgu-agi",
+  "home.column_settings.basic": "Igejdanen",
+  "home.column_settings.show_reblogs": "Sken-d beá¹­á¹­u",
+  "home.column_settings.show_replies": "Sken-d tiririyin",
+  "intervals.full.days": "{number, plural, one {# n wass} other {# n wussan}}",
+  "intervals.full.hours": "{number, plural, one {# n usarag} other {# n yesragen}}",
+  "intervals.full.minutes": "{number, plural, one {# n tesdat} other {# n tesdatin}}",
+  "introduction.federation.action": "Uḍfiṛ",
+  "introduction.federation.federated.headline": "Amatu",
+  "introduction.federation.federated.text": "Iznan izuyaz i d-yekkan seg yiqeddacen-nniḍen n fediverse ad banen deg tsuddemt tazayezt tamatut n yisallen.",
+  "introduction.federation.home.headline": "Agejdan",
+  "introduction.federation.home.text": "Iznan n yemdanen i teṭṭafaṛeḍ ad banen deg tsuddemt n umagger. Tzemreḍ ad tḍefṛeḍ win tebɣiḍ deg uqeddac i tebɣiḍ!",
+  "introduction.federation.local.headline": "Adigan",
+  "introduction.federation.local.text": "Iznan izuyaz n yemdanen i yellan deg yiwen uqeddac akked kečč ad d-banen deg tsuddemt tazayezt tadigant.",
+  "introduction.interactions.action": "Fakk tameskant!",
+  "introduction.interactions.favourite.headline": "Ismenyifen",
+  "introduction.interactions.favourite.text": "Tzemreḍ ad teǧǧeḍ kra n tberraḥt i ticki, daɣen ad tiniḍ i bab-is d akken taɛǧeb-ik, s tmerna-ines ɣer yismenyifen-ik.",
+  "introduction.interactions.reblog.headline": "Bḍu tikelt-nniḍen",
+  "introduction.interactions.reblog.text": "Tzemreḍ ad tebḍuḍ akked yimeḍfaṛen-ik tiberraḥin n yemdanen-nniḍen s beṭṭu-nsent tikelt-nniḍen.",
+  "introduction.interactions.reply.headline": "Err",
+  "introduction.interactions.reply.text": "Tzemreḍ ad terreḍ ɣef tberraḥin-ik d tid n medden-nniḍen, d acu ara tent-id-iɛeqden ta deffir ta deg udiwenni.",
+  "introduction.welcome.action": "Bdu!",
+  "introduction.welcome.headline": "Isurifen imenza",
+  "introduction.welcome.text": "Anṣuf ɣer fediverse! Deg kra n yimiren, ad tizmireḍ ad tzzuzreḍ iznan neɣ ad tmeslayeḍ i yemddukkal deg waṭas n yiqeddacen. Maca aqeddac-agi, {domain}, mačči am wiyaḍ - deg-s i yella umaɣnu-ik, ihi cfu ɣef yisem-is.",
+  "keyboard_shortcuts.back": "uɣal ar deffir",
+  "keyboard_shortcuts.blocked": "akken ad teldiḍ tabdert n yimseqdacen yettwasḥebsen",
+  "keyboard_shortcuts.boost": "i beṭṭu tikelt-nniḍen",
+  "keyboard_shortcuts.column": "to focus a status in one of the columns",
+  "keyboard_shortcuts.compose": "to focus the compose textarea",
+  "keyboard_shortcuts.description": "Aglam",
+  "keyboard_shortcuts.direct": "akken ad teldiḍ ajgu n yiznan usriden",
+  "keyboard_shortcuts.down": "i kennu ɣer wadda n tebdert",
+  "keyboard_shortcuts.enter": "i tildin n tsuffeɣt",
+  "keyboard_shortcuts.favourite": "akken ad ternuḍ ɣer yismenyifen",
+  "keyboard_shortcuts.favourites": "i tildin n tebdert n yismenyifen",
+  "keyboard_shortcuts.federated": "i tildin n tsuddemt tamatut n yisallen",
+  "keyboard_shortcuts.heading": "Inegzumen n unasiw",
+  "keyboard_shortcuts.home": "i tildin n tsuddemt tagejdant n yisallen",
+  "keyboard_shortcuts.hotkey": "Inegzumen",
+  "keyboard_shortcuts.legend": "to display this legend",
+  "keyboard_shortcuts.local": "i tildin n tsuddemt tadigant n yisallen",
+  "keyboard_shortcuts.mention": "akken ad d-bedreḍ ameskar",
+  "keyboard_shortcuts.muted": "akken ad teldiḍ tabdert n yimseqdacen yettwasgugmen",
+  "keyboard_shortcuts.my_profile": "akken ad d-teldiḍ amaɣnu-ik",
+  "keyboard_shortcuts.notifications": "akken ad d-teldiḍ ajgu n tilɣa",
+  "keyboard_shortcuts.open_media": "to open media",
+  "keyboard_shortcuts.pinned": "i tildin n tebdert n tberraḥin yettwasentḍen",
+  "keyboard_shortcuts.profile": "akken ad d-teldiḍ amaɣnu n umeskar",
+  "keyboard_shortcuts.reply": "i tririt",
+  "keyboard_shortcuts.requests": "akken ad d-teldiḍ tabdert n yisuturen n teḍfeṛt",
+  "keyboard_shortcuts.search": "to focus search",
+  "keyboard_shortcuts.start": "akken ad d-teldiḍ ajgu n \"bdu\"",
+  "keyboard_shortcuts.toggle_hidden": "to show/hide text behind CW",
+  "keyboard_shortcuts.toggle_sensitivity": "i teskent/tuffra n yimidyaten",
+  "keyboard_shortcuts.toot": "i beddu n tberraḥt tamaynut",
+  "keyboard_shortcuts.unfocus": "to un-focus compose textarea/search",
+  "keyboard_shortcuts.up": "i tulin ɣer ufella n tebdert",
+  "lightbox.close": "Mdel",
+  "lightbox.next": "Γer zdat",
+  "lightbox.previous": "Γer deffir",
+  "lightbox.view_context": "Ẓer amnaḍ",
+  "lists.account.add": "Rnu γer tabdart",
+  "lists.account.remove": "Kkes seg tebdart",
+  "lists.delete": "Kkes tabdert",
+  "lists.edit": "Ẓreg tabdert",
+  "lists.edit.submit": "Beddel azwel",
+  "lists.new.create": "Rnu tabdart",
+  "lists.new.title_placeholder": "Azwel n tebdert tamaynut",
+  "lists.search": "Nadi gar yemdanen i teṭṭafaṛeḍ",
+  "lists.subheading": "Tibdarin-ik·im",
+  "load_pending": "{count, plural, one {# n uferdis amaynut} other {# n yiferdisen imaynuten}}",
+  "loading_indicator.label": "Asali...",
+  "media_gallery.toggle_visible": "Sken / Ffer",
+  "missing_indicator.label": "Ulac-it",
+  "missing_indicator.sublabel": "Ur nufi ara aɣbalu-a",
+  "mute_modal.hide_notifications": "Tebɣiḍ ad teffreḍ talɣutin n umseqdac-a?",
+  "navigation_bar.apps": "Isnasen izirazen",
+  "navigation_bar.blocks": "Imseqdacen yettusḥebsen",
+  "navigation_bar.bookmarks": "Ticraḍ",
+  "navigation_bar.community_timeline": "Tasuddemt tadigant",
+  "navigation_bar.compose": "Aru taberraḥt tamaynut",
+  "navigation_bar.direct": "Iznan usridden",
+  "navigation_bar.discover": "Ẓer",
+  "navigation_bar.domain_blocks": "Tiɣula yeffren",
+  "navigation_bar.edit_profile": "Ẓreg amaɣnu",
+  "navigation_bar.favourites": "Ismenyifen",
+  "navigation_bar.filters": "Awalen i yettwasgugmen",
+  "navigation_bar.follow_requests": "Isuturen n teḍfeṛt",
+  "navigation_bar.follows_and_followers": "Imeḍfaṛen akked wid i teṭṭafaṛeḍ",
+  "navigation_bar.info": "Ɣef uqeddac-agi",
+  "navigation_bar.keyboard_shortcuts": "Inegzumen n unasiw",
+  "navigation_bar.lists": "Tibdarin",
+  "navigation_bar.logout": "Ffeγ",
+  "navigation_bar.mutes": "Iseqdacen yettwasusmen",
+  "navigation_bar.personal": "Udmawan",
+  "navigation_bar.pins": "Tiberraḥin yettwasentḍen",
+  "navigation_bar.preferences": "Imenyafen",
+  "navigation_bar.public_timeline": "Tasuddemt tazayezt tamatut",
+  "navigation_bar.security": "Taγellist",
+  "notification.favourite": "{name} yesmenyef tasuffeɣt-ik",
+  "notification.follow": "{name} yeá¹­á¹­afaá¹›-ik",
+  "notification.follow_request": "{name} yessuter-d ad k-yeḍfeṛ",
+  "notification.mention": "{name} yebder-ik-id",
+  "notification.own_poll": "Your poll has ended",
+  "notification.poll": "A poll you have voted in has ended",
+  "notification.reblog": "{name} yebḍa taberraḥ-ik i tikelt-nniḍen",
+  "notifications.clear": "Sfeḍ tilɣa",
+  "notifications.clear_confirmation": "Tebɣiḍ s tidet ad tekkseḍ akk tilɣa-ik i lebda?",
+  "notifications.column_settings.alert": "Tilɣa n tnarit",
+  "notifications.column_settings.favourite": "Ismenyifen:",
+  "notifications.column_settings.filter_bar.advanced": "Sken-d meṛṛa tiggayin",
+  "notifications.column_settings.filter_bar.category": "Iri n usizdeg uzrib",
+  "notifications.column_settings.filter_bar.show": "Sken",
+  "notifications.column_settings.follow": "Imeḍfaṛen imaynuten:",
+  "notifications.column_settings.follow_request": "Isuturen imaynuten n teḍfeṛt:",
+  "notifications.column_settings.mention": "Abdar:",
+  "notifications.column_settings.poll": "Poll results:",
+  "notifications.column_settings.push": "Tilɣa yettudemmren",
+  "notifications.column_settings.reblog": "Boosts:",
+  "notifications.column_settings.show": "Sken-d tilɣa deg ujgu",
+  "notifications.column_settings.sound": "Rmed imesli",
+  "notifications.filter.all": "Akk",
+  "notifications.filter.boosts": "Boosts",
+  "notifications.filter.favourites": "Ismenyifen",
+  "notifications.filter.follows": "Yeá¹­afaá¹›",
+  "notifications.filter.mentions": "Abdar",
+  "notifications.filter.polls": "Poll results",
+  "notifications.group": "{count} n tilɣa",
+  "poll.closed": "Ifukk",
+  "poll.refresh": "Smiren",
+  "poll.total_people": "{count, plural, one {# n wemdan} other {# n yemdanen}}",
+  "poll.total_votes": "{count, plural, one {# n udɣaṛ} other {# n yedɣaṛen}}",
+  "poll.vote": "DÉ£eá¹›",
+  "poll.voted": "Tdeɣṛeḍ ɣef tririt-agi",
+  "poll_button.add_poll": "Add a poll",
+  "poll_button.remove_poll": "Remove poll",
+  "privacy.change": "Adjust status privacy",
+  "privacy.direct.long": "Bḍu gar yimseqdacen i tbedreḍ kan",
+  "privacy.direct.short": "Usrid",
+  "privacy.private.long": "Bḍu i yimeḍfaṛen-ik kan",
+  "privacy.private.short": "Imeḍfaṛen kan",
+  "privacy.public.long": "Bḍu deg tsuddemt tazayezt",
+  "privacy.public.short": "Azayez",
+  "privacy.unlisted.long": "Ur beá¹­á¹­u ara deg tsuddemt tazayezt",
+  "privacy.unlisted.short": "War tabdert",
+  "refresh": "Smiren",
+  "regeneration_indicator.label": "Asali…",
+  "regeneration_indicator.sublabel": "Tasuddemt tagejdant ara d-tettwaheggay!",
+  "relative_time.days": "{number}u",
+  "relative_time.hours": "{number}h",
+  "relative_time.just_now": "tura",
+  "relative_time.minutes": "{number}t",
+  "relative_time.seconds": "{number}s",
+  "reply_indicator.cancel": "Sefsex",
+  "report.forward": "Forward to {target}",
+  "report.forward_hint": "The account is from another server. Send an anonymized copy of the report there as well?",
+  "report.hint": "The report will be sent to your server moderators. You can provide an explanation of why you are reporting this account below:",
+  "report.placeholder": "Iwenniten-nniḍen",
+  "report.submit": "Azen",
+  "report.target": "Mmel {target}",
+  "search.placeholder": "Nadi",
+  "search_popout.search_format": "Anadi yenneflin",
+  "search_popout.tips.full_text": "Simple text returns statuses you have written, favourited, boosted, or have been mentioned in, as well as matching usernames, display names, and hashtags.",
+  "search_popout.tips.hashtag": "ahacá¹­ag",
+  "search_popout.tips.status": "status",
+  "search_popout.tips.text": "Simple text returns matching display names, usernames and hashtags",
+  "search_popout.tips.user": "amseqdac",
+  "search_results.accounts": "Medden",
+  "search_results.hashtags": "Ihacá¹­agen",
+  "search_results.statuses": "Tibeṛṛaniyin",
+  "search_results.statuses_fts_disabled": "Anadi n tberraḥin s ugbur-nsent ur yermid ara deg uqeddac-agi n Mastudun.",
+  "search_results.total": "{count, number} {count, plural, one {n ugemmuḍ} other {n yigemmuḍen}}",
+  "status.admin_account": "Open moderation interface for @{name}",
+  "status.admin_status": "Open this status in the moderation interface",
+  "status.block": "Seḥbes @{name}",
+  "status.bookmark": "Creḍ",
+  "status.cancel_reblog_private": "Sefsex beá¹­á¹­u",
+  "status.cannot_reblog": "Tasuffeɣt-a ur tezmir ara ad tettwabḍu tikelt-nniḍen",
+  "status.copy": "Nɣel assaɣ ɣer tasuffeɣt",
+  "status.delete": "Kkes",
+  "status.detailed_status": "Detailed conversation view",
+  "status.direct": "Izen usrid i @{name}",
+  "status.embed": "Embed",
+  "status.favourite": "Rnu ɣer yismenyifen",
+  "status.filtered": "Yettwasizdeg",
+  "status.load_more": "Sali ugar",
+  "status.media_hidden": "Media hidden",
+  "status.mention": "Bder-d @{name}",
+  "status.more": "Ugar",
+  "status.mute": "Sussem @{name}",
+  "status.mute_conversation": "Mute conversation",
+  "status.open": "Semɣeṛ tasuffeɣt-agi",
+  "status.pin": "Senteḍ-itt deg umaɣnu",
+  "status.pinned": "Tiberraḥin yettwasentḍen",
+  "status.read_more": "Issin ugar",
+  "status.reblog": "Bḍu",
+  "status.reblog_private": "Boost to original audience",
+  "status.reblogged_by": "{name} boosted",
+  "status.reblogs.empty": "Ula yiwen ur yebḍi taberraḥt-agi ar tura. Ticki yebḍa-tt yiwen, ad d-iban da.",
+  "status.redraft": "Sfeḍ tɛiwdeḍ tira",
+  "status.remove_bookmark": "Kkes tacreḍt",
+  "status.reply": "Err",
+  "status.replyAll": "Reply to thread",
+  "status.report": "Cetki γef @{name}",
+  "status.sensitive_warning": "Agbur amḥulfu",
+  "status.share": "Bḍu",
+  "status.show_less": "Sken-d drus",
+  "status.show_less_all": "Semẓi akk tisuffɣin",
+  "status.show_more": "Sken-ed ugar",
+  "status.show_more_all": "Ẓerr ugar lebda",
+  "status.show_thread": "Show thread",
+  "status.uncached_media_warning": "Ulac-it",
+  "status.unmute_conversation": "Kkes asgugem n udiwenni",
+  "status.unpin": "Kkes asenteḍ seg umaɣnu",
+  "suggestions.dismiss": "Dismiss suggestion",
+  "suggestions.header": "Ahat ad tcelgeḍ deg…",
+  "tabs_bar.federated_timeline": "Amatu",
+  "tabs_bar.home": "Agejdan",
+  "tabs_bar.local_timeline": "Adigan",
+  "tabs_bar.notifications": "Tilγa",
+  "tabs_bar.search": "Nadi",
+  "time_remaining.days": "Mazal {number, plural, one {# n wass} other {# n wussan}}",
+  "time_remaining.hours": "Mazal {number, plural, one {# n usrag} other {# n yesragen}}",
+  "time_remaining.minutes": "Mazal {number, plural, one {# n tesdat} other {# n tesdatin}}",
+  "time_remaining.moments": "Moments remaining",
+  "time_remaining.seconds": "Mazal {number, plural, one {# n tasint} other {# n tsinin}}",
+  "trends.count_by_accounts": "{count} {rawCount, plural, one {n umdan} other {n yemdanen}} i yettmeslayen",
+  "trends.trending_now": "Trending now",
+  "ui.beforeunload": "Your draft will be lost if you leave Mastodon.",
+  "upload_area.title": "Drag & drop to upload",
+  "upload_button.label": "Add media ({formats})",
+  "upload_error.limit": "File upload limit exceeded.",
+  "upload_error.poll": "File upload not allowed with polls.",
+  "upload_form.audio_description": "Glem-d i yemdanen i yesɛan ugur deg tmesliwt",
+  "upload_form.description": "Glem-d i yemdaneni yesɛan ugur deg yiẓri",
+  "upload_form.edit": "Ẓreg",
+  "upload_form.undo": "Kkes",
+  "upload_form.video_description": "Glem-d i yemdanen i yesɛan ugur deg tmesliwt neɣ deg yiẓri",
+  "upload_modal.analyzing_picture": "Tasleḍt n tugna tetteddu…",
+  "upload_modal.apply": "Snes",
+  "upload_modal.description_placeholder": "Aberraɣ arurad ineggez nnig n uqjun amuṭṭis",
+  "upload_modal.detect_text": "Detect text from picture",
+  "upload_modal.edit_media": "Edit media",
+  "upload_modal.hint": "Click or drag the circle on the preview to choose the focal point which will always be in view on all thumbnails.",
+  "upload_modal.preview_label": "Preview ({ratio})",
+  "upload_progress.label": "Asali iteddu...",
+  "video.close": "Mdel tabidyutt",
+  "video.download": "Sidered afaylu",
+  "video.exit_fullscreen": "Ffeɣ seg ugdil aččuran",
+  "video.expand": "Semɣeṛ tavidyut",
+  "video.fullscreen": "Agdil aččuran",
+  "video.hide": "Ffer tabidyutt",
+  "video.mute": "Gzem imesli",
+  "video.pause": "Sgunfu",
+  "video.play": "Seddu",
+  "video.unmute": "Rmed imesli"
+}
diff --git a/app/javascript/mastodon/locales/kk.json b/app/javascript/mastodon/locales/kk.json
index be0a5050397af653ffc7d9a3d66f29bae882d38b..294825c2eafb4b92e2a902210817c86c75a4866f 100644
--- a/app/javascript/mastodon/locales/kk.json
+++ b/app/javascript/mastodon/locales/kk.json
@@ -1,10 +1,11 @@
 {
   "account.add_or_remove_from_list": "Тізімге қосу немесе жою",
   "account.badges.bot": "Бот",
+  "account.badges.group": "Group",
   "account.block": "Бұғаттау @{name}",
   "account.block_domain": "Домендегі барлығын бұғатта {domain}",
   "account.blocked": "Бұғатталды",
-  "account.cancel_follow_request": "Cancel follow request",
+  "account.cancel_follow_request": "Жазылуға сұранымды қайтару",
   "account.direct": "Жеке хат @{name}",
   "account.domain_blocked": "Домен жабық",
   "account.edit_profile": "Профильді өңдеу",
@@ -16,7 +17,7 @@
   "account.follows.empty": "Ешкімге жазылмапты.",
   "account.follows_you": "Сізге жазылыпты",
   "account.hide_reblogs": "@{name} атты қолданушының әрекеттерін жасыру",
-  "account.last_status": "Last active",
+  "account.last_status": "Соңғы белсенділік",
   "account.link_verified_on": "Сілтеме меншігі расталған күн {date}",
   "account.locked_info": "Бұл қолданушы өзі туралы мәліметтерді жасырған. Тек жазылғандар ғана көре алады.",
   "account.media": "Медиа",
@@ -25,7 +26,7 @@
   "account.mute": "Үнсіз қылу @{name}",
   "account.mute_notifications": "@{name} туралы ескертпелерді жасыру",
   "account.muted": "Үнсіз",
-  "account.never_active": "Never",
+  "account.never_active": "Ешқашан",
   "account.posts": "Жазбалар",
   "account.posts_with_replies": "Жазбалар мен жауаптар",
   "account.report": "Шағымдану @{name}",
@@ -38,11 +39,11 @@
   "account.unfollow": "Оқымау",
   "account.unmute": "@{name} ескертпелерін қосу",
   "account.unmute_notifications": "@{name} ескертпелерін көрсету",
-  "alert.rate_limited.message": "Please retry after {retry_time, time, medium}.",
-  "alert.rate_limited.title": "Rate limited",
+  "alert.rate_limited.message": "Қайтадан көріңіз  {retry_time, time, medium} кейін.",
+  "alert.rate_limited.title": "Бағалау шектеулі",
   "alert.unexpected.message": "Бір нәрсе дұрыс болмады.",
   "alert.unexpected.title": "Өй!",
-  "autosuggest_hashtag.per_week": "{count} per week",
+  "autosuggest_hashtag.per_week": "{count} аптасына",
   "boost_modal.combo": "Келесіде өткізіп жіберу үшін басыңыз {combo}",
   "bundle_column_error.body": "Бұл компонентті жүктеген кезде бір қате пайда болды.",
   "bundle_column_error.retry": "Қайтадан көріңіз",
@@ -51,9 +52,10 @@
   "bundle_modal_error.message": "Бұл компонентті жүктеген кезде бір қате пайда болды.",
   "bundle_modal_error.retry": "Қайтадан көріңіз",
   "column.blocks": "Бұғатталғандар",
+  "column.bookmarks": "Бетбелгілер",
   "column.community": "Жергілікті желі",
   "column.direct": "Жеке хаттар",
-  "column.directory": "Browse profiles",
+  "column.directory": "Профильдерді аралау",
   "column.domain_blocks": "Жасырылған домендер",
   "column.favourites": "Таңдаулылар",
   "column.follow_requests": "Жазылу сұранымдары",
@@ -82,16 +84,18 @@
   "compose_form.poll.duration": "Сауалнама мерзімі",
   "compose_form.poll.option_placeholder": "Жауап {number}",
   "compose_form.poll.remove_option": "Бұл жауапты өшір",
+  "compose_form.poll.switch_to_multiple": "Change poll to allow multiple choices",
+  "compose_form.poll.switch_to_single": "Change poll to allow for a single choice",
   "compose_form.publish": "Түрт",
   "compose_form.publish_loud": "{publish}!",
-  "compose_form.sensitive.hide": "Mark media as sensitive",
+  "compose_form.sensitive.hide": "Сезімтал ретінде белгіле",
   "compose_form.sensitive.marked": "Медиа нәзік деп белгіленген",
   "compose_form.sensitive.unmarked": "Медиа нәзік деп белгіленбеген",
   "compose_form.spoiler.marked": "Мәтін ескертумен жасырылған",
   "compose_form.spoiler.unmarked": "Мәтін жасырылмаған",
   "compose_form.spoiler_placeholder": "Ескертуіңізді осында жазыңыз",
   "confirmation_modal.cancel": "Қайтып алу",
-  "confirmations.block.block_and_report": "Block & Report",
+  "confirmations.block.block_and_report": "Блок және Шағым",
   "confirmations.block.confirm": "Бұғаттау",
   "confirmations.block.message": "{name} атты қолданушыны бұғаттайтыныңызға сенімдісіз бе?",
   "confirmations.delete.confirm": "Өшіру",
@@ -100,10 +104,10 @@
   "confirmations.delete_list.message": "Бұл тізімді жоясыз ба шынымен?",
   "confirmations.domain_block.confirm": "Бұл доменді бұғатта",
   "confirmations.domain_block.message": "Бұл домендегі {domain} жазбаларды шынымен бұғаттайсыз ба? Кейде үнсіз қылып тастау да жеткілікті.",
-  "confirmations.logout.confirm": "Log out",
-  "confirmations.logout.message": "Are you sure you want to log out?",
+  "confirmations.logout.confirm": "Шығу",
+  "confirmations.logout.message": "Шығатыныңызға сенімдісіз бе?",
   "confirmations.mute.confirm": "Үнсіз қылу",
-  "confirmations.mute.explanation": "This will hide posts from them and posts mentioning them, but it will still allow them to see your posts and follow you.",
+  "confirmations.mute.explanation": "Олардың посттары же олар туралы меншндар сізге көрінбейді, бірақ олар сіздің посттарды көре алады және жазыла алады.",
   "confirmations.mute.message": "{name} атты қолданушы үнсіз болсын ба?",
   "confirmations.redraft.confirm": "Өшіруді құптау",
   "confirmations.redraft.message": "Бұл жазбаны өшіріп, нобайларға жібереміз бе? Барлық жауаптар мен лайктарды жоғалтасыз.",
@@ -111,14 +115,14 @@
   "confirmations.reply.message": "Жауабыңыз жазып жатқан жазбаңыздың үстіне кетеді. Жалғастырамыз ба?",
   "confirmations.unfollow.confirm": "Оқымау",
   "confirmations.unfollow.message": "\"{name} атты қолданушыға енді жазылғыңыз келмей ме?",
-  "conversation.delete": "Delete conversation",
-  "conversation.mark_as_read": "Mark as read",
-  "conversation.open": "View conversation",
-  "conversation.with": "With {names}",
-  "directory.federated": "From known fediverse",
-  "directory.local": "From {domain} only",
-  "directory.new_arrivals": "New arrivals",
-  "directory.recently_active": "Recently active",
+  "conversation.delete": "Пікірталасты өшіру",
+  "conversation.mark_as_read": "Оқылды деп белгіле",
+  "conversation.open": "Пікірталасты қарау",
+  "conversation.with": "{names} атты",
+  "directory.federated": "Танымал желіден",
+  "directory.local": "Тек {domain} доменінен",
+  "directory.new_arrivals": "Жаңадан келгендер",
+  "directory.recently_active": "Жақында кіргендер",
   "embed.instructions": "Төмендегі кодты көшіріп алу арқылы жазбаны басқа сайттарға да орналастыра аласыз.",
   "embed.preview": "Былай көрінетін болады:",
   "emoji_button.activity": "Белсенділік",
@@ -136,8 +140,9 @@
   "emoji_button.symbols": "Таңбалар",
   "emoji_button.travel": "Саяхат",
   "empty_column.account_timeline": "Жазба жоқ ешқандай!",
-  "empty_column.account_unavailable": "Profile unavailable",
+  "empty_column.account_unavailable": "Профиль қолжетімді емес",
   "empty_column.blocks": "Ешкімді бұғаттамағансыз.",
+  "empty_column.bookmarked_statuses": "Ешқандай жазба Бетбелгілер тізіміне қосылмапты. Қосылғаннан кейін осында жинала бастайды.",
   "empty_column.community": "Жергілікті желі бос. Сіз бастап жазыңыз!",
   "empty_column.direct": "Әзірше дым хат жоқ. Өзіңіз жазып көріңіз алдымен.",
   "empty_column.domain_blocks": "Бұғатталған домен жоқ.",
@@ -152,10 +157,10 @@
   "empty_column.mutes": "Әзірше ешқандай үнсізге қойылған қолданушы жоқ.",
   "empty_column.notifications": "Әзірше ешқандай ескертпе жоқ. Басқалармен араласуды бастаңыз және пікірталастарға қатысыңыз.",
   "empty_column.public": "Ештеңе жоқ бұл жерде! Өзіңіз бастап жазып көріңіз немесе басқаларға жазылыңыз",
-  "error.unexpected_crash.explanation": "Due to a bug in our code or a browser compatibility issue, this page could not be displayed correctly.",
-  "error.unexpected_crash.next_steps": "Try refreshing the page. If that does not help, you may still be able to use Mastodon through a different browser or native app.",
-  "errors.unexpected_crash.copy_stacktrace": "Copy stacktrace to clipboard",
-  "errors.unexpected_crash.report_issue": "Report issue",
+  "error.unexpected_crash.explanation": "Кодтағы баг немесе браузердегі қатеден, бұл бет дұрыс ашылмай тұр.",
+  "error.unexpected_crash.next_steps": "Бетті жаңартып көріңіз. Егер бұл көмектеспесе, Mastodon желісін басқа браузерден немесе мобиль қосымшадан ашып көріңіз.",
+  "errors.unexpected_crash.copy_stacktrace": "Жиынтықты көшіріп ал клипбордқа",
+  "errors.unexpected_crash.report_issue": "Мәселені хабарла",
   "federation.change": "Adjust status federation",
   "federation.federated.long": "Allow toot to reach other instances",
   "federation.federated.short": "Federated",
@@ -185,7 +190,7 @@
   "home.column_settings.show_replies": "Жауаптарды көрсету",
   "intervals.full.days": "{number, plural, one {# күн} other {# күн}}",
   "intervals.full.hours": "{number, plural, one {# сағат} other {# сағат}}",
-  "intervals.full.minutes": "{number, plural, one {# minute} other {# minutes}}",
+  "intervals.full.minutes": "{number, plural, one {# минут} other {# минут}}",
   "introduction.federation.action": "Келесі",
   "introduction.federation.federated.headline": "Жаһандық",
   "introduction.federation.federated.text": "Жаһандық желідегі жазбалар осында көрінетін болады.",
@@ -224,6 +229,7 @@
   "keyboard_shortcuts.muted": "үнсіздер тізімін ашу",
   "keyboard_shortcuts.my_profile": "профиліңізді ашу",
   "keyboard_shortcuts.notifications": "ескертпелер бағанын ашу",
+  "keyboard_shortcuts.open_media": "медианы ашу үшін",
   "keyboard_shortcuts.pinned": "жабыстырылған жазбаларды көру",
   "keyboard_shortcuts.profile": "автор профилін қарау",
   "keyboard_shortcuts.reply": "жауап жазу",
@@ -231,14 +237,14 @@
   "keyboard_shortcuts.search": "іздеу",
   "keyboard_shortcuts.start": "бастапқы бағанға бару",
   "keyboard_shortcuts.toggle_hidden": "жабық мәтінді CW ашу/жабу",
-  "keyboard_shortcuts.toggle_sensitivity": "to show/hide media",
+  "keyboard_shortcuts.toggle_sensitivity": "көрсет/жап",
   "keyboard_shortcuts.toot": "жаңа жазба бастау",
   "keyboard_shortcuts.unfocus": "жазба қалдыру алаңынан шығу",
   "keyboard_shortcuts.up": "тізімде жоғары шығу",
   "lightbox.close": "Жабу",
   "lightbox.next": "Келесі",
   "lightbox.previous": "Алдыңғы",
-  "lightbox.view_context": "View context",
+  "lightbox.view_context": "Контексті көрсет",
   "lists.account.add": "Тізімге қосу",
   "lists.account.remove": "Тізімнен шығару",
   "lists.delete": "Тізімді өшіру",
@@ -248,7 +254,7 @@
   "lists.new.title_placeholder": "Жаңа тізім аты",
   "lists.search": "Сіз іздеген адамдар арасында іздеу",
   "lists.subheading": "Тізімдеріңіз",
-  "load_pending": "{count, plural, one {# new item} other {# new items}}",
+  "load_pending": "{count, plural, one {# жаңа нәрсе} other {# жаңа нәрсе}}",
   "loading_indicator.label": "Жүктеу...",
   "media_gallery.toggle_visible": "Көрінуді қосу",
   "missing_indicator.label": "Табылмады",
@@ -256,6 +262,7 @@
   "mute_modal.hide_notifications": "Бұл қолданушы ескертпелерін жасырамыз ба?",
   "navigation_bar.apps": "Мобиль қосымшалар",
   "navigation_bar.blocks": "Бұғатталғандар",
+  "navigation_bar.bookmarks": "Бетбелгілер",
   "navigation_bar.community_timeline": "Жергілікті желі",
   "navigation_bar.compose": "Жаңа жазба бастау",
   "navigation_bar.direct": "Жеке хаттар",
@@ -265,7 +272,7 @@
   "navigation_bar.favourites": "Таңдаулылар",
   "navigation_bar.filters": "Үнсіз сөздер",
   "navigation_bar.follow_requests": "Жазылуға сұранғандар",
-  "navigation_bar.follows_and_followers": "Follows and followers",
+  "navigation_bar.follows_and_followers": "Жазылымдар және оқырмандар",
   "navigation_bar.info": "Сервер туралы",
   "navigation_bar.keyboard_shortcuts": "Ыстық пернелер",
   "navigation_bar.lists": "Тізімдер",
@@ -278,7 +285,9 @@
   "navigation_bar.security": "Қауіпсіздік",
   "notification.favourite": "{name} жазбаңызды таңдаулыға қосты",
   "notification.follow": "{name} сізге жазылды",
+  "notification.follow_request": "{name} сізге жазылғысы келеді",
   "notification.mention": "{name} сізді атап өтті",
+  "notification.own_poll": "Сауалнама аяқталды",
   "notification.poll": "Бұл сауалнаманың мерзімі аяқталыпты",
   "notification.reblog": "{name} жазбаңызды бөлісті",
   "notifications.clear": "Ескертпелерді тазарт",
@@ -289,6 +298,7 @@
   "notifications.column_settings.filter_bar.category": "Жедел сүзгі",
   "notifications.column_settings.filter_bar.show": "Көрсету",
   "notifications.column_settings.follow": "Жаңа оқырмандар:",
+  "notifications.column_settings.follow_request": "Жазылуға жаңа сұранымдар:",
   "notifications.column_settings.mention": "Аталымдар:",
   "notifications.column_settings.poll": "Нәтижелері:",
   "notifications.column_settings.push": "Push ескертпелер",
@@ -304,10 +314,10 @@
   "notifications.group": "{count} ескертпе",
   "poll.closed": "Жабық",
   "poll.refresh": "Жаңарту",
-  "poll.total_people": "{count, plural, one {# person} other {# people}}",
+  "poll.total_people": "{count, plural, one {# адам} other {# адам}}",
   "poll.total_votes": "{count, plural, one {# дауыс} other {# дауыс}}",
   "poll.vote": "Дауыс беру",
-  "poll.voted": "You voted for this answer",
+  "poll.voted": "Бұл сұраққа жауап бердіңіз",
   "poll_button.add_poll": "Сауалнама қосу",
   "poll_button.remove_poll": "Сауалнаманы өшіру",
   "privacy.change": "Құпиялылықты реттеу",
@@ -319,14 +329,14 @@
   "privacy.public.short": "Ашық",
   "privacy.unlisted.long": "Do not show in public timelines",
   "privacy.unlisted.short": "Тізімсіз",
-  "refresh": "Refresh",
+  "refresh": "Жаңарту",
   "regeneration_indicator.label": "Жүктеу…",
   "regeneration_indicator.sublabel": "Жергілікті желі құрылуда!",
   "relative_time.days": "{number}күн",
   "relative_time.hours": "{number}сағ",
   "relative_time.just_now": "жаңа",
   "relative_time.minutes": "{number}мин",
-  "relative_time.seconds": "{number}s",
+  "relative_time.seconds": "{number}с",
   "reply_indicator.cancel": "Қайтып алу",
   "report.forward": "Жіберу {target}",
   "report.forward_hint": "Бұл аккаунт басқа серверден. Аноним шағым жібересіз бе?",
@@ -344,11 +354,12 @@
   "search_results.accounts": "Адамдар",
   "search_results.hashtags": "Хэштегтер",
   "search_results.statuses": "Жазбалар",
-  "search_results.statuses_fts_disabled": "Searching toots by their content is not enabled on this Mastodon server.",
-  "search_results.total": "{count, number} {count, plural, one {result} other {results}}",
+  "search_results.statuses_fts_disabled": "Mastodon серверінде постты толық мәтінмен іздей алмайсыз.",
+  "search_results.total": "{count, number} {count, plural, one {нәтиже} other {нәтиже}}",
   "status.admin_account": "@{name} үшін модерация интерфейсін аш",
   "status.admin_status": "Бұл жазбаны модерация интерфейсінде аш",
   "status.block": "Бұғаттау @{name}",
+  "status.bookmark": "Бетбелгі",
   "status.cancel_reblog_private": "Бөліспеу",
   "status.cannot_reblog": "Бұл жазба бөлісілмейді",
   "status.copy": "Жазба сілтемесін көшір",
@@ -374,6 +385,7 @@
   "status.reblogged_by": "{name} бөлісті",
   "status.reblogs.empty": "Бұл жазбаны әлі ешкім бөліспеді. Біреу бөліскен кезде осында көрінеді.",
   "status.redraft": "Өшіру & қайта қарастыру",
+  "status.remove_bookmark": "Бетбелгілерден алып тастау",
   "status.reply": "Жауап",
   "status.replyAll": "Тақырыпқа жауап",
   "status.report": "Шағым @{name}",
@@ -384,7 +396,7 @@
   "status.show_more": "Толығырақ",
   "status.show_more_all": "Бәрін толығымен",
   "status.show_thread": "Желіні көрсет",
-  "status.uncached_media_warning": "Not available",
+  "status.uncached_media_warning": "Қолжетімді емес",
   "status.unmute_conversation": "Пікірталасты үнсіз қылмау",
   "status.unpin": "Профильден алып тастау",
   "suggestions.dismiss": "Өткізіп жіберу",
@@ -400,24 +412,27 @@
   "time_remaining.moments": "Қалған уақыт",
   "time_remaining.seconds": "{number, plural, one {# секунд} other {# секунд}}",
   "trends.count_by_accounts": "{count} {rawCount, plural, one {person} other {people}} жазған екен",
-  "trends.trending_now": "Trending now",
+  "trends.trending_now": "Тренд тақырыптар",
   "ui.beforeunload": "Mastodon желісінен шықсаңыз, нобайыңыз сақталмайды.",
   "upload_area.title": "Жүктеу үшін сүйреп әкеліңіз",
   "upload_button.label": "Медиа қосу (JPEG, PNG, GIF, WebM, MP4, MOV)",
   "upload_error.limit": "Файл жүктеу лимитінен асып кеттіңіз.",
   "upload_error.poll": "Сауалнамамен бірге файл жүктеуге болмайды.",
+  "upload_form.audio_description": "Есту қабілеті нашар адамдарға сипаттама беріңіз",
   "upload_form.description": "Көру қабілеті нашар адамдар үшін сипаттаңыз",
-  "upload_form.edit": "Edit",
+  "upload_form.edit": "Түзету",
   "upload_form.undo": "Өшіру",
-  "upload_modal.analyzing_picture": "Analyzing picture…",
-  "upload_modal.apply": "Apply",
-  "upload_modal.description_placeholder": "A quick brown fox jumps over the lazy dog",
-  "upload_modal.detect_text": "Detect text from picture",
-  "upload_modal.edit_media": "Edit media",
-  "upload_modal.hint": "Click or drag the circle on the preview to choose the focal point which will always be in view on all thumbnails.",
-  "upload_modal.preview_label": "Preview ({ratio})",
+  "upload_form.video_description": "Есту немесе көру қабілеті нашар адамдарға сипаттама беріңіз",
+  "upload_modal.analyzing_picture": "Суретті анализ жасау…",
+  "upload_modal.apply": "Қолдану",
+  "upload_modal.description_placeholder": "Щучинск съезіндегі өрт пе? Вагон-үй, аэромобиль һәм ұшақ фюзеляжы цехінен ғой",
+  "upload_modal.detect_text": "Суреттен мәтін анықтау",
+  "upload_modal.edit_media": "Медиафайлды өңдеу",
+  "upload_modal.hint": "Алдын-ала қарау шеңберін басыңыз немесе сүйреңіз, барлық нобайларда көрінетін фокусты таңдау үшін.",
+  "upload_modal.preview_label": "Превью ({ratio})",
   "upload_progress.label": "Жүктеп жатыр...",
   "video.close": "Видеоны жабу",
+  "video.download": "Файлды түсіру",
   "video.exit_fullscreen": "Толық экраннан шық",
   "video.expand": "Видеоны аш",
   "video.fullscreen": "Толық экран",
diff --git a/app/javascript/mastodon/locales/kn.json b/app/javascript/mastodon/locales/kn.json
new file mode 100644
index 0000000000000000000000000000000000000000..96872bbbda28365381eb8e25b605321588a09e52
--- /dev/null
+++ b/app/javascript/mastodon/locales/kn.json
@@ -0,0 +1,438 @@
+{
+  "account.add_or_remove_from_list": "Add or Remove from lists",
+  "account.badges.bot": "Bot",
+  "account.badges.group": "Group",
+  "account.block": "Block @{name}",
+  "account.block_domain": "Hide everything from {domain}",
+  "account.blocked": "Blocked",
+  "account.cancel_follow_request": "Cancel follow request",
+  "account.direct": "Direct message @{name}",
+  "account.domain_blocked": "Domain hidden",
+  "account.edit_profile": "Edit profile",
+  "account.endorse": "Feature on profile",
+  "account.follow": "Follow",
+  "account.followers": "Followers",
+  "account.followers.empty": "No one follows this user yet.",
+  "account.follows": "Follows",
+  "account.follows.empty": "This user doesn't follow anyone yet.",
+  "account.follows_you": "Follows you",
+  "account.hide_reblogs": "Hide boosts from @{name}",
+  "account.last_status": "Last active",
+  "account.link_verified_on": "Ownership of this link was checked on {date}",
+  "account.locked_info": "This account privacy status is set to locked. The owner manually reviews who can follow them.",
+  "account.media": "Media",
+  "account.mention": "Mention @{name}",
+  "account.moved_to": "{name} has moved to:",
+  "account.mute": "Mute @{name}",
+  "account.mute_notifications": "Mute notifications from @{name}",
+  "account.muted": "Muted",
+  "account.never_active": "Never",
+  "account.posts": "Toots",
+  "account.posts_with_replies": "Toots and replies",
+  "account.report": "Report @{name}",
+  "account.requested": "Awaiting approval",
+  "account.share": "Share @{name}'s profile",
+  "account.show_reblogs": "Show boosts from @{name}",
+  "account.unblock": "Unblock @{name}",
+  "account.unblock_domain": "Unhide {domain}",
+  "account.unendorse": "Don't feature on profile",
+  "account.unfollow": "Unfollow",
+  "account.unmute": "Unmute @{name}",
+  "account.unmute_notifications": "Unmute notifications from @{name}",
+  "alert.rate_limited.message": "Please retry after {retry_time, time, medium}.",
+  "alert.rate_limited.title": "Rate limited",
+  "alert.unexpected.message": "An unexpected error occurred.",
+  "alert.unexpected.title": "Oops!",
+  "autosuggest_hashtag.per_week": "{count} per week",
+  "boost_modal.combo": "You can press {combo} to skip this next time",
+  "bundle_column_error.body": "Something went wrong while loading this component.",
+  "bundle_column_error.retry": "Try again",
+  "bundle_column_error.title": "Network error",
+  "bundle_modal_error.close": "Close",
+  "bundle_modal_error.message": "Something went wrong while loading this component.",
+  "bundle_modal_error.retry": "Try again",
+  "column.blocks": "Blocked users",
+  "column.bookmarks": "Bookmarks",
+  "column.community": "Local timeline",
+  "column.direct": "Direct messages",
+  "column.directory": "Browse profiles",
+  "column.domain_blocks": "Hidden domains",
+  "column.favourites": "Favourites",
+  "column.follow_requests": "Follow requests",
+  "column.home": "Home",
+  "column.lists": "Lists",
+  "column.mutes": "Muted users",
+  "column.notifications": "Notifications",
+  "column.pins": "Pinned toot",
+  "column.public": "Federated timeline",
+  "column_back_button.label": "Back",
+  "column_header.hide_settings": "Hide settings",
+  "column_header.moveLeft_settings": "Move column to the left",
+  "column_header.moveRight_settings": "Move column to the right",
+  "column_header.pin": "Pin",
+  "column_header.show_settings": "Show settings",
+  "column_header.unpin": "Unpin",
+  "column_subheading.settings": "Settings",
+  "community.column_settings.media_only": "Media only",
+  "compose_form.direct_message_warning": "This toot will only be sent to all the mentioned users.",
+  "compose_form.direct_message_warning_learn_more": "Learn more",
+  "compose_form.hashtag_warning": "This toot won't be listed under any hashtag as it is unlisted. Only public toots can be searched by hashtag.",
+  "compose_form.lock_disclaimer": "Your account is not {locked}. Anyone can follow you to view your follower-only posts.",
+  "compose_form.lock_disclaimer.lock": "locked",
+  "compose_form.placeholder": "What is on your mind?",
+  "compose_form.poll.add_option": "Add a choice",
+  "compose_form.poll.duration": "Poll duration",
+  "compose_form.poll.option_placeholder": "Choice {number}",
+  "compose_form.poll.remove_option": "Remove this choice",
+  "compose_form.poll.switch_to_multiple": "Change poll to allow multiple choices",
+  "compose_form.poll.switch_to_single": "Change poll to allow for a single choice",
+  "compose_form.publish": "Toot",
+  "compose_form.publish_loud": "{publish}!",
+  "compose_form.sensitive.hide": "Mark media as sensitive",
+  "compose_form.sensitive.marked": "Media is marked as sensitive",
+  "compose_form.sensitive.unmarked": "Media is not marked as sensitive",
+  "compose_form.spoiler.marked": "Text is hidden behind warning",
+  "compose_form.spoiler.unmarked": "Text is not hidden",
+  "compose_form.spoiler_placeholder": "Write your warning here",
+  "confirmation_modal.cancel": "Cancel",
+  "confirmations.block.block_and_report": "Block & Report",
+  "confirmations.block.confirm": "Block",
+  "confirmations.block.message": "Are you sure you want to block {name}?",
+  "confirmations.delete.confirm": "Delete",
+  "confirmations.delete.message": "Are you sure you want to delete this status?",
+  "confirmations.delete_list.confirm": "Delete",
+  "confirmations.delete_list.message": "Are you sure you want to permanently delete this list?",
+  "confirmations.domain_block.confirm": "Hide entire domain",
+  "confirmations.domain_block.message": "Are you really, really sure you want to block the entire {domain}? In most cases a few targeted blocks or mutes are sufficient and preferable. You will not see content from that domain in any public timelines or your notifications. Your followers from that domain will be removed.",
+  "confirmations.logout.confirm": "Log out",
+  "confirmations.logout.message": "Are you sure you want to log out?",
+  "confirmations.mute.confirm": "Mute",
+  "confirmations.mute.explanation": "This will hide posts from them and posts mentioning them, but it will still allow them to see your posts and follow you.",
+  "confirmations.mute.message": "Are you sure you want to mute {name}?",
+  "confirmations.redraft.confirm": "Delete & redraft",
+  "confirmations.redraft.message": "Are you sure you want to delete this status and re-draft it? Favourites and boosts will be lost, and replies to the original post will be orphaned.",
+  "confirmations.reply.confirm": "Reply",
+  "confirmations.reply.message": "Replying now will overwrite the message you are currently composing. Are you sure you want to proceed?",
+  "confirmations.unfollow.confirm": "Unfollow",
+  "confirmations.unfollow.message": "Are you sure you want to unfollow {name}?",
+  "conversation.delete": "Delete conversation",
+  "conversation.mark_as_read": "Mark as read",
+  "conversation.open": "View conversation",
+  "conversation.with": "With {names}",
+  "directory.federated": "From known fediverse",
+  "directory.local": "From {domain} only",
+  "directory.new_arrivals": "New arrivals",
+  "directory.recently_active": "Recently active",
+  "embed.instructions": "Embed this status on your website by copying the code below.",
+  "embed.preview": "Here is what it will look like:",
+  "emoji_button.activity": "Activity",
+  "emoji_button.custom": "Custom",
+  "emoji_button.flags": "Flags",
+  "emoji_button.food": "Food & Drink",
+  "emoji_button.label": "Insert emoji",
+  "emoji_button.nature": "Nature",
+  "emoji_button.not_found": "No emojos!! (╯°□°)╯︵ ┻━┻",
+  "emoji_button.objects": "Objects",
+  "emoji_button.people": "People",
+  "emoji_button.recent": "Frequently used",
+  "emoji_button.search": "Search...",
+  "emoji_button.search_results": "Search results",
+  "emoji_button.symbols": "Symbols",
+  "emoji_button.travel": "Travel & Places",
+  "empty_column.account_timeline": "No toots here!",
+  "empty_column.account_unavailable": "Profile unavailable",
+  "empty_column.blocks": "You haven't blocked any users yet.",
+  "empty_column.bookmarked_statuses": "You don't have any bookmarked toots yet. When you bookmark one, it will show up here.",
+  "empty_column.community": "The local timeline is empty. Write something publicly to get the ball rolling!",
+  "empty_column.direct": "You don't have any direct messages yet. When you send or receive one, it will show up here.",
+  "empty_column.domain_blocks": "There are no hidden domains yet.",
+  "empty_column.favourited_statuses": "You don't have any favourite toots yet. When you favourite one, it will show up here.",
+  "empty_column.favourites": "No one has favourited this toot yet. When someone does, they will show up here.",
+  "empty_column.follow_requests": "You don't have any follow requests yet. When you receive one, it will show up here.",
+  "empty_column.hashtag": "There is nothing in this hashtag yet.",
+  "empty_column.home": "Your home timeline is empty! Visit {public} or use search to get started and meet other users.",
+  "empty_column.home.public_timeline": "the public timeline",
+  "empty_column.list": "There is nothing in this list yet. When members of this list post new statuses, they will appear here.",
+  "empty_column.lists": "You don't have any lists yet. When you create one, it will show up here.",
+  "empty_column.mutes": "You haven't muted any users yet.",
+  "empty_column.notifications": "You don't have any notifications yet. Interact with others to start the conversation.",
+  "empty_column.public": "There is nothing here! Write something publicly, or manually follow users from other servers to fill it up",
+  "error.unexpected_crash.explanation": "Due to a bug in our code or a browser compatibility issue, this page could not be displayed correctly.",
+  "error.unexpected_crash.next_steps": "Try refreshing the page. If that does not help, you may still be able to use Mastodon through a different browser or native app.",
+  "errors.unexpected_crash.copy_stacktrace": "Copy stacktrace to clipboard",
+  "errors.unexpected_crash.report_issue": "Report issue",
+  "follow_request.authorize": "Authorize",
+  "follow_request.reject": "Reject",
+  "getting_started.developers": "Developers",
+  "getting_started.directory": "Profile directory",
+  "getting_started.documentation": "Documentation",
+  "getting_started.heading": "Getting started",
+  "getting_started.invite": "Invite people",
+  "getting_started.open_source_notice": "Mastodon is open source software. You can contribute or report issues on GitHub at {github}.",
+  "getting_started.security": "Security",
+  "getting_started.terms": "Terms of service",
+  "hashtag.column_header.tag_mode.all": "and {additional}",
+  "hashtag.column_header.tag_mode.any": "or {additional}",
+  "hashtag.column_header.tag_mode.none": "without {additional}",
+  "hashtag.column_settings.select.no_options_message": "No suggestions found",
+  "hashtag.column_settings.select.placeholder": "Enter hashtags…",
+  "hashtag.column_settings.tag_mode.all": "All of these",
+  "hashtag.column_settings.tag_mode.any": "Any of these",
+  "hashtag.column_settings.tag_mode.none": "None of these",
+  "hashtag.column_settings.tag_toggle": "Include additional tags in this column",
+  "home.column_settings.basic": "Basic",
+  "home.column_settings.show_reblogs": "Show boosts",
+  "home.column_settings.show_replies": "Show replies",
+  "intervals.full.days": "{number, plural, one {# day} other {# days}}",
+  "intervals.full.hours": "{number, plural, one {# hour} other {# hours}}",
+  "intervals.full.minutes": "{number, plural, one {# minute} other {# minutes}}",
+  "introduction.federation.action": "Next",
+  "introduction.federation.federated.headline": "Federated",
+  "introduction.federation.federated.text": "Public posts from other servers of the fediverse will appear in the federated timeline.",
+  "introduction.federation.home.headline": "Home",
+  "introduction.federation.home.text": "Posts from people you follow will appear in your home feed. You can follow anyone on any server!",
+  "introduction.federation.local.headline": "Local",
+  "introduction.federation.local.text": "Public posts from people on the same server as you will appear in the local timeline.",
+  "introduction.interactions.action": "Finish toot-orial!",
+  "introduction.interactions.favourite.headline": "Favourite",
+  "introduction.interactions.favourite.text": "You can save a toot for later, and let the author know that you liked it, by favouriting it.",
+  "introduction.interactions.reblog.headline": "Boost",
+  "introduction.interactions.reblog.text": "You can share other people's toots with your followers by boosting them.",
+  "introduction.interactions.reply.headline": "Reply",
+  "introduction.interactions.reply.text": "You can reply to other people's and your own toots, which will chain them together in a conversation.",
+  "introduction.welcome.action": "Let's go!",
+  "introduction.welcome.headline": "First steps",
+  "introduction.welcome.text": "Welcome to the fediverse! In a few moments, you'll be able to broadcast messages and talk to your friends across a wide variety of servers. But this server, {domain}, is special—it hosts your profile, so remember its name.",
+  "keyboard_shortcuts.back": "to navigate back",
+  "keyboard_shortcuts.blocked": "to open blocked users list",
+  "keyboard_shortcuts.boost": "to boost",
+  "keyboard_shortcuts.column": "to focus a status in one of the columns",
+  "keyboard_shortcuts.compose": "to focus the compose textarea",
+  "keyboard_shortcuts.description": "Description",
+  "keyboard_shortcuts.direct": "to open direct messages column",
+  "keyboard_shortcuts.down": "to move down in the list",
+  "keyboard_shortcuts.enter": "to open status",
+  "keyboard_shortcuts.favourite": "to favourite",
+  "keyboard_shortcuts.favourites": "to open favourites list",
+  "keyboard_shortcuts.federated": "to open federated timeline",
+  "keyboard_shortcuts.heading": "Keyboard Shortcuts",
+  "keyboard_shortcuts.home": "to open home timeline",
+  "keyboard_shortcuts.hotkey": "Hotkey",
+  "keyboard_shortcuts.legend": "to display this legend",
+  "keyboard_shortcuts.local": "to open local timeline",
+  "keyboard_shortcuts.mention": "to mention author",
+  "keyboard_shortcuts.muted": "to open muted users list",
+  "keyboard_shortcuts.my_profile": "to open your profile",
+  "keyboard_shortcuts.notifications": "to open notifications column",
+  "keyboard_shortcuts.open_media": "to open media",
+  "keyboard_shortcuts.pinned": "to open pinned toots list",
+  "keyboard_shortcuts.profile": "to open author's profile",
+  "keyboard_shortcuts.reply": "to reply",
+  "keyboard_shortcuts.requests": "to open follow requests list",
+  "keyboard_shortcuts.search": "to focus search",
+  "keyboard_shortcuts.start": "to open \"get started\" column",
+  "keyboard_shortcuts.toggle_hidden": "to show/hide text behind CW",
+  "keyboard_shortcuts.toggle_sensitivity": "to show/hide media",
+  "keyboard_shortcuts.toot": "to start a brand new toot",
+  "keyboard_shortcuts.unfocus": "to un-focus compose textarea/search",
+  "keyboard_shortcuts.up": "to move up in the list",
+  "lightbox.close": "Close",
+  "lightbox.next": "Next",
+  "lightbox.previous": "Previous",
+  "lightbox.view_context": "View context",
+  "lists.account.add": "Add to list",
+  "lists.account.remove": "Remove from list",
+  "lists.delete": "Delete list",
+  "lists.edit": "Edit list",
+  "lists.edit.submit": "Change title",
+  "lists.new.create": "Add list",
+  "lists.new.title_placeholder": "New list title",
+  "lists.search": "Search among people you follow",
+  "lists.subheading": "Your lists",
+  "load_pending": "{count, plural, one {# new item} other {# new items}}",
+  "loading_indicator.label": "Loading...",
+  "media_gallery.toggle_visible": "Toggle visibility",
+  "missing_indicator.label": "Not found",
+  "missing_indicator.sublabel": "This resource could not be found",
+  "mute_modal.hide_notifications": "Hide notifications from this user?",
+  "navigation_bar.apps": "Mobile apps",
+  "navigation_bar.blocks": "Blocked users",
+  "navigation_bar.bookmarks": "Bookmarks",
+  "navigation_bar.community_timeline": "Local timeline",
+  "navigation_bar.compose": "Compose new toot",
+  "navigation_bar.direct": "Direct messages",
+  "navigation_bar.discover": "Discover",
+  "navigation_bar.domain_blocks": "Hidden domains",
+  "navigation_bar.edit_profile": "Edit profile",
+  "navigation_bar.favourites": "Favourites",
+  "navigation_bar.filters": "Muted words",
+  "navigation_bar.follow_requests": "Follow requests",
+  "navigation_bar.follows_and_followers": "Follows and followers",
+  "navigation_bar.info": "About this server",
+  "navigation_bar.keyboard_shortcuts": "Hotkeys",
+  "navigation_bar.lists": "Lists",
+  "navigation_bar.logout": "Logout",
+  "navigation_bar.mutes": "Muted users",
+  "navigation_bar.personal": "Personal",
+  "navigation_bar.pins": "Pinned toots",
+  "navigation_bar.preferences": "Preferences",
+  "navigation_bar.public_timeline": "Federated timeline",
+  "navigation_bar.security": "Security",
+  "notification.favourite": "{name} favourited your status",
+  "notification.follow": "{name} followed you",
+  "notification.follow_request": "{name} has requested to follow you",
+  "notification.mention": "{name} mentioned you",
+  "notification.own_poll": "Your poll has ended",
+  "notification.poll": "A poll you have voted in has ended",
+  "notification.reblog": "{name} boosted your status",
+  "notifications.clear": "Clear notifications",
+  "notifications.clear_confirmation": "Are you sure you want to permanently clear all your notifications?",
+  "notifications.column_settings.alert": "Desktop notifications",
+  "notifications.column_settings.favourite": "Favourites:",
+  "notifications.column_settings.filter_bar.advanced": "Display all categories",
+  "notifications.column_settings.filter_bar.category": "Quick filter bar",
+  "notifications.column_settings.filter_bar.show": "Show",
+  "notifications.column_settings.follow": "New followers:",
+  "notifications.column_settings.follow_request": "New follow requests:",
+  "notifications.column_settings.mention": "Mentions:",
+  "notifications.column_settings.poll": "Poll results:",
+  "notifications.column_settings.push": "Push notifications",
+  "notifications.column_settings.reblog": "Boosts:",
+  "notifications.column_settings.show": "Show in column",
+  "notifications.column_settings.sound": "Play sound",
+  "notifications.filter.all": "All",
+  "notifications.filter.boosts": "Boosts",
+  "notifications.filter.favourites": "Favourites",
+  "notifications.filter.follows": "Follows",
+  "notifications.filter.mentions": "Mentions",
+  "notifications.filter.polls": "Poll results",
+  "notifications.group": "{count} notifications",
+  "poll.closed": "Closed",
+  "poll.refresh": "Refresh",
+  "poll.total_people": "{count, plural, one {# person} other {# people}}",
+  "poll.total_votes": "{count, plural, one {# vote} other {# votes}}",
+  "poll.vote": "Vote",
+  "poll.voted": "You voted for this answer",
+  "poll_button.add_poll": "Add a poll",
+  "poll_button.remove_poll": "Remove poll",
+  "privacy.change": "Adjust status privacy",
+  "privacy.direct.long": "Post to mentioned users only",
+  "privacy.direct.short": "Direct",
+  "privacy.private.long": "Post to followers only",
+  "privacy.private.short": "Followers-only",
+  "privacy.public.long": "Post to public timelines",
+  "privacy.public.short": "Public",
+  "privacy.unlisted.long": "Do not show in public timelines",
+  "privacy.unlisted.short": "Unlisted",
+  "refresh": "Refresh",
+  "regeneration_indicator.label": "Loading…",
+  "regeneration_indicator.sublabel": "Your home feed is being prepared!",
+  "relative_time.days": "{number}d",
+  "relative_time.hours": "{number}h",
+  "relative_time.just_now": "now",
+  "relative_time.minutes": "{number}m",
+  "relative_time.seconds": "{number}s",
+  "reply_indicator.cancel": "Cancel",
+  "report.forward": "Forward to {target}",
+  "report.forward_hint": "The account is from another server. Send an anonymized copy of the report there as well?",
+  "report.hint": "The report will be sent to your server moderators. You can provide an explanation of why you are reporting this account below:",
+  "report.placeholder": "Additional comments",
+  "report.submit": "Submit",
+  "report.target": "Report {target}",
+  "search.placeholder": "Search",
+  "search_popout.search_format": "Advanced search format",
+  "search_popout.tips.full_text": "Simple text returns statuses you have written, favourited, boosted, or have been mentioned in, as well as matching usernames, display names, and hashtags.",
+  "search_popout.tips.hashtag": "hashtag",
+  "search_popout.tips.status": "status",
+  "search_popout.tips.text": "Simple text returns matching display names, usernames and hashtags",
+  "search_popout.tips.user": "user",
+  "search_results.accounts": "People",
+  "search_results.hashtags": "Hashtags",
+  "search_results.statuses": "Toots",
+  "search_results.statuses_fts_disabled": "Searching toots by their content is not enabled on this Mastodon server.",
+  "search_results.total": "{count, number} {count, plural, one {result} other {results}}",
+  "status.admin_account": "Open moderation interface for @{name}",
+  "status.admin_status": "Open this status in the moderation interface",
+  "status.block": "Block @{name}",
+  "status.bookmark": "Bookmark",
+  "status.cancel_reblog_private": "Unboost",
+  "status.cannot_reblog": "This post cannot be boosted",
+  "status.copy": "Copy link to status",
+  "status.delete": "Delete",
+  "status.detailed_status": "Detailed conversation view",
+  "status.direct": "Direct message @{name}",
+  "status.embed": "Embed",
+  "status.favourite": "Favourite",
+  "status.filtered": "Filtered",
+  "status.load_more": "Load more",
+  "status.media_hidden": "Media hidden",
+  "status.mention": "Mention @{name}",
+  "status.more": "More",
+  "status.mute": "Mute @{name}",
+  "status.mute_conversation": "Mute conversation",
+  "status.open": "Expand this status",
+  "status.pin": "Pin on profile",
+  "status.pinned": "Pinned toot",
+  "status.read_more": "Read more",
+  "status.reblog": "Boost",
+  "status.reblog_private": "Boost to original audience",
+  "status.reblogged_by": "{name} boosted",
+  "status.reblogs.empty": "No one has boosted this toot yet. When someone does, they will show up here.",
+  "status.redraft": "Delete & re-draft",
+  "status.remove_bookmark": "Remove bookmark",
+  "status.reply": "Reply",
+  "status.replyAll": "Reply to thread",
+  "status.report": "Report @{name}",
+  "status.sensitive_warning": "Sensitive content",
+  "status.share": "Share",
+  "status.show_less": "Show less",
+  "status.show_less_all": "Show less for all",
+  "status.show_more": "Show more",
+  "status.show_more_all": "Show more for all",
+  "status.show_thread": "Show thread",
+  "status.uncached_media_warning": "Not available",
+  "status.unmute_conversation": "Unmute conversation",
+  "status.unpin": "Unpin from profile",
+  "suggestions.dismiss": "Dismiss suggestion",
+  "suggestions.header": "You might be interested in…",
+  "tabs_bar.federated_timeline": "Federated",
+  "tabs_bar.home": "Home",
+  "tabs_bar.local_timeline": "Local",
+  "tabs_bar.notifications": "Notifications",
+  "tabs_bar.search": "Search",
+  "time_remaining.days": "{number, plural, one {# day} other {# days}} left",
+  "time_remaining.hours": "{number, plural, one {# hour} other {# hours}} left",
+  "time_remaining.minutes": "{number, plural, one {# minute} other {# minutes}} left",
+  "time_remaining.moments": "Moments remaining",
+  "time_remaining.seconds": "{number, plural, one {# second} other {# seconds}} left",
+  "trends.count_by_accounts": "{count} {rawCount, plural, one {person} other {people}} talking",
+  "trends.trending_now": "Trending now",
+  "ui.beforeunload": "Your draft will be lost if you leave Mastodon.",
+  "upload_area.title": "Drag & drop to upload",
+  "upload_button.label": "Add media ({formats})",
+  "upload_error.limit": "File upload limit exceeded.",
+  "upload_error.poll": "File upload not allowed with polls.",
+  "upload_form.audio_description": "Describe for people with hearing loss",
+  "upload_form.description": "Describe for the visually impaired",
+  "upload_form.edit": "Edit",
+  "upload_form.undo": "Delete",
+  "upload_form.video_description": "Describe for people with hearing loss or visual impairment",
+  "upload_modal.analyzing_picture": "Analyzing picture…",
+  "upload_modal.apply": "Apply",
+  "upload_modal.description_placeholder": "A quick brown fox jumps over the lazy dog",
+  "upload_modal.detect_text": "Detect text from picture",
+  "upload_modal.edit_media": "Edit media",
+  "upload_modal.hint": "Click or drag the circle on the preview to choose the focal point which will always be in view on all thumbnails.",
+  "upload_modal.preview_label": "Preview ({ratio})",
+  "upload_progress.label": "Uploading…",
+  "video.close": "Close video",
+  "video.download": "Download file",
+  "video.exit_fullscreen": "Exit full screen",
+  "video.expand": "Expand video",
+  "video.fullscreen": "Full screen",
+  "video.hide": "Hide video",
+  "video.mute": "Mute sound",
+  "video.pause": "Pause",
+  "video.play": "Play",
+  "video.unmute": "Unmute sound"
+}
diff --git a/app/javascript/mastodon/locales/ko.json b/app/javascript/mastodon/locales/ko.json
index 2640b43b415dbdf8323b65feae11678735ac8032..a68c3dd21556c16467626e5e0da268f20af87ba9 100644
--- a/app/javascript/mastodon/locales/ko.json
+++ b/app/javascript/mastodon/locales/ko.json
@@ -1,19 +1,20 @@
 {
   "account.add_or_remove_from_list": "리스트에 추가 혹은 삭제",
   "account.badges.bot": "ë´‡",
+  "account.badges.group": "그룹",
   "account.block": "@{name}을 차단",
   "account.block_domain": "{domain} 전체를 숨김",
-  "account.blocked": "차단 됨",
+  "account.blocked": "차단됨",
   "account.cancel_follow_request": "팔로우 요청 취소",
-  "account.direct": "@{name}으로부터의 다이렉트 메시지",
+  "account.direct": "@{name}의 다이렉트 메시지",
   "account.domain_blocked": "도메인 숨겨짐",
   "account.edit_profile": "프로필 편집",
-  "account.endorse": "프로필에 나타내기",
+  "account.endorse": "프로필에 보이기",
   "account.follow": "팔로우",
   "account.followers": "팔로워",
-  "account.followers.empty": "아직 아무도 이 유저를 팔로우 하고 있지 않습니다.",
+  "account.followers.empty": "아직 아무도 이 유저를 팔로우하고 있지 않습니다.",
   "account.follows": "팔로우",
-  "account.follows.empty": "이 유저는 아직 아무도 팔로우 하고 있지 않습니다.",
+  "account.follows.empty": "이 유저는 아직 아무도 팔로우하고 있지 않습니다.",
   "account.follows_you": "날 팔로우합니다",
   "account.hide_reblogs": "@{name}의 부스트를 숨기기",
   "account.last_status": "마지막 활동",
@@ -51,6 +52,7 @@
   "bundle_modal_error.message": "컴포넌트를 불러오는 과정에서 문제가 발생했습니다.",
   "bundle_modal_error.retry": "다시 시도",
   "column.blocks": "차단 중인 사용자",
+  "column.bookmarks": "갈무리",
   "column.community": "로컬 타임라인",
   "column.direct": "다이렉트 메시지",
   "column.directory": "프로필 둘러보기",
@@ -82,6 +84,8 @@
   "compose_form.poll.duration": "투표 기간",
   "compose_form.poll.option_placeholder": "{number}번 항목",
   "compose_form.poll.remove_option": "이 항목 삭제",
+  "compose_form.poll.switch_to_multiple": "다중 선택이 가능한 투표로 변경",
+  "compose_form.poll.switch_to_single": "단일 선택 투표로 변경",
   "compose_form.publish": "툿",
   "compose_form.publish_loud": "{publish}!",
   "compose_form.sensitive.hide": "미디어를 민감함으로 설정하기",
@@ -99,7 +103,7 @@
   "confirmations.delete_list.confirm": "삭제",
   "confirmations.delete_list.message": "정말로 이 리스트를 삭제하시겠습니까?",
   "confirmations.domain_block.confirm": "도메인 전체를 숨김",
-  "confirmations.domain_block.message": "정말로 {domain} 전체를 숨기시겠습니까? 대부분의 경우 개별 차단이나 뮤트로 충분합니다. 모든 공개 타임라인과 알림에서 해당 도메인에서 작성된 컨텐츠를 보지 못합니다. 해당 도메인 팔로워와의 관계가 사라집니다.",
+  "confirmations.domain_block.message": "정말로 {domain} 전체를 차단하시겠습니까? 대부분의 경우 개별 차단이나 뮤트로 충분합니다. 모든 공개 타임라인과 알림에서 해당 도메인에서 작성된 컨텐츠를 보지 못합니다. 해당 도메인 팔로워와의 관계가 사라집니다.",
   "confirmations.logout.confirm": "로그아웃",
   "confirmations.logout.message": "정말로 로그아웃 하시겠습니까?",
   "confirmations.mute.confirm": "뮤트",
@@ -138,6 +142,7 @@
   "empty_column.account_timeline": "여긴 툿이 없어요!",
   "empty_column.account_unavailable": "프로필 사용 불가",
   "empty_column.blocks": "아직 아무도 차단하지 않았습니다.",
+  "empty_column.bookmarked_statuses": "아직 갈무리한 툿이 없습니다. 툿을 갈무리하면 여기에 나타납니다.",
   "empty_column.community": "로컬 타임라인에 아무 것도 없습니다. 아무거나 적어 보세요!",
   "empty_column.direct": "아직 다이렉트 메시지가 없습니다. 다이렉트 메시지를 보내거나 받은 경우, 여기에 표시 됩니다.",
   "empty_column.domain_blocks": "아직 숨겨진 도메인이 없습니다.",
@@ -164,7 +169,7 @@
   "follow_request.authorize": "허가",
   "follow_request.reject": "ê±°ë¶€",
   "getting_started.developers": "개발자",
-  "getting_started.directory": "프로필 디렉터리",
+  "getting_started.directory": "프로필 디렉토리",
   "getting_started.documentation": "문서",
   "getting_started.heading": "시작",
   "getting_started.invite": "초대",
@@ -224,6 +229,7 @@
   "keyboard_shortcuts.muted": "뮤트 된 유저 리스트 열기",
   "keyboard_shortcuts.my_profile": "내 프로필 열기",
   "keyboard_shortcuts.notifications": "알림 컬럼 열기",
+  "keyboard_shortcuts.open_media": "미디어 열기",
   "keyboard_shortcuts.pinned": "고정 툿 리스트 열기",
   "keyboard_shortcuts.profile": "프로필 열기",
   "keyboard_shortcuts.reply": "답장",
@@ -253,9 +259,10 @@
   "media_gallery.toggle_visible": "표시 전환",
   "missing_indicator.label": "찾을 수 없습니다",
   "missing_indicator.sublabel": "이 리소스를 찾을 수 없었습니다",
-  "mute_modal.hide_notifications": "이 사용자로부터의 알림을 뮤트하시겠습니까?",
+  "mute_modal.hide_notifications": "이 사용자로부터의 알림을 숨기시겠습니까?",
   "navigation_bar.apps": "모바일 앱",
   "navigation_bar.blocks": "차단한 사용자",
+  "navigation_bar.bookmarks": "갈무리",
   "navigation_bar.community_timeline": "로컬 타임라인",
   "navigation_bar.compose": "새 툿 작성",
   "navigation_bar.direct": "다이렉트 메시지",
@@ -263,7 +270,7 @@
   "navigation_bar.domain_blocks": "숨겨진 도메인",
   "navigation_bar.edit_profile": "프로필 편집",
   "navigation_bar.favourites": "즐겨찾기",
-  "navigation_bar.filters": "뮤트",
+  "navigation_bar.filters": "뮤트된 단어",
   "navigation_bar.follow_requests": "팔로우 요청",
   "navigation_bar.follows_and_followers": "팔로우와 팔로워",
   "navigation_bar.info": "이 서버에 대해서",
@@ -278,7 +285,9 @@
   "navigation_bar.security": "보안",
   "notification.favourite": "{name}님이 즐겨찾기 했습니다",
   "notification.follow": "{name}님이 나를 팔로우 했습니다",
+  "notification.follow_request": "{name}님이 팔로우 요청을 보냈습니다",
   "notification.mention": "{name}님이 답글을 보냈습니다",
+  "notification.own_poll": "내 투표가 끝났습니다",
   "notification.poll": "당신이 참여 한 투표가 종료되었습니다",
   "notification.reblog": "{name}님이 부스트 했습니다",
   "notifications.clear": "알림 지우기",
@@ -289,6 +298,7 @@
   "notifications.column_settings.filter_bar.category": "퀵 필터 바",
   "notifications.column_settings.filter_bar.show": "표시",
   "notifications.column_settings.follow": "새 팔로워:",
+  "notifications.column_settings.follow_request": "새 팔로우 요청:",
   "notifications.column_settings.mention": "답글:",
   "notifications.column_settings.poll": "투표 결과:",
   "notifications.column_settings.push": "푸시 알림",
@@ -346,9 +356,10 @@
   "search_results.statuses": "툿",
   "search_results.statuses_fts_disabled": "이 마스토돈 서버에선 툿의 내용을 통한 검색이 활성화 되어 있지 않습니다.",
   "search_results.total": "{count, number}건의 결과",
-  "status.admin_account": "@{name}에 대한 모더레이션 인터페이스 열기",
-  "status.admin_status": "모더레이션 인터페이스에서 이 게시물 열기",
+  "status.admin_account": "@{name}에 대한 중재 화면 열기",
+  "status.admin_status": "중재 화면에서 이 게시물 열기",
   "status.block": "@{name} 차단",
+  "status.bookmark": "갈무리",
   "status.cancel_reblog_private": "부스트 취소",
   "status.cannot_reblog": "이 포스트는 부스트 할 수 없습니다",
   "status.copy": "게시물 링크 복사",
@@ -374,6 +385,7 @@
   "status.reblogged_by": "{name}님이 부스트 했습니다",
   "status.reblogs.empty": "아직 아무도 이 툿을 부스트하지 않았습니다. 부스트 한 사람들이 여기에 표시 됩니다.",
   "status.redraft": "지우고 다시 쓰기",
+  "status.remove_bookmark": "갈무리 삭제",
   "status.reply": "답장",
   "status.replyAll": "전원에게 답장",
   "status.report": "ì‹ ê³ ",
@@ -406,9 +418,11 @@
   "upload_button.label": "미디어 추가 (JPEG, PNG, GIF, WebM, MP4, MOV)",
   "upload_error.limit": "파일 업로드 제한에 도달했습니다.",
   "upload_error.poll": "파일 업로드는 투표와 함께 첨부할 수 없습니다.",
+  "upload_form.audio_description": "청각 장애인을 위한 설명",
   "upload_form.description": "시각장애인을 위한 설명",
   "upload_form.edit": "편집",
   "upload_form.undo": "삭제",
+  "upload_form.video_description": "청각, 시각 장애인을 위한 설명",
   "upload_modal.analyzing_picture": "이미지 분석 중…",
   "upload_modal.apply": "적용",
   "upload_modal.description_placeholder": "다람쥐 헌 쳇바퀴 타고파",
@@ -418,6 +432,7 @@
   "upload_modal.preview_label": "미리보기 ({ratio})",
   "upload_progress.label": "업로드 중...",
   "video.close": "동영상 닫기",
+  "video.download": "파일 다운로드",
   "video.exit_fullscreen": "전체화면 나가기",
   "video.expand": "동영상 확장",
   "video.fullscreen": "전체화면",
diff --git a/app/javascript/mastodon/locales/lt.json b/app/javascript/mastodon/locales/lt.json
index 611a5eb53cf3b0288fd322003f0e907bbc289665..bcf6883be22268855451bac3eb45238e20a64891 100644
--- a/app/javascript/mastodon/locales/lt.json
+++ b/app/javascript/mastodon/locales/lt.json
@@ -1,6 +1,7 @@
 {
   "account.add_or_remove_from_list": "Add or Remove from lists",
   "account.badges.bot": "Bot",
+  "account.badges.group": "Group",
   "account.block": "Block @{name}",
   "account.block_domain": "Hide everything from {domain}",
   "account.blocked": "Blocked",
@@ -51,6 +52,7 @@
   "bundle_modal_error.message": "Something went wrong while loading this component.",
   "bundle_modal_error.retry": "Try again",
   "column.blocks": "Blocked users",
+  "column.bookmarks": "Bookmarks",
   "column.community": "Local timeline",
   "column.direct": "Direct messages",
   "column.directory": "Browse profiles",
@@ -82,6 +84,8 @@
   "compose_form.poll.duration": "Poll duration",
   "compose_form.poll.option_placeholder": "Choice {number}",
   "compose_form.poll.remove_option": "Remove this choice",
+  "compose_form.poll.switch_to_multiple": "Change poll to allow multiple choices",
+  "compose_form.poll.switch_to_single": "Change poll to allow for a single choice",
   "compose_form.publish": "Toot",
   "compose_form.publish_loud": "{publish}!",
   "compose_form.sensitive.hide": "Mark media as sensitive",
@@ -138,6 +142,7 @@
   "empty_column.account_timeline": "No toots here!",
   "empty_column.account_unavailable": "Profile unavailable",
   "empty_column.blocks": "You haven't blocked any users yet.",
+  "empty_column.bookmarked_statuses": "You don't have any bookmarked toots yet. When you bookmark one, it will show up here.",
   "empty_column.community": "The local timeline is empty. Write something publicly to get the ball rolling!",
   "empty_column.direct": "You don't have any direct messages yet. When you send or receive one, it will show up here.",
   "empty_column.domain_blocks": "There are no hidden domains yet.",
@@ -224,6 +229,7 @@
   "keyboard_shortcuts.muted": "to open muted users list",
   "keyboard_shortcuts.my_profile": "to open your profile",
   "keyboard_shortcuts.notifications": "to open notifications column",
+  "keyboard_shortcuts.open_media": "to open media",
   "keyboard_shortcuts.pinned": "to open pinned toots list",
   "keyboard_shortcuts.profile": "to open author's profile",
   "keyboard_shortcuts.reply": "to reply",
@@ -256,6 +262,7 @@
   "mute_modal.hide_notifications": "Hide notifications from this user?",
   "navigation_bar.apps": "Mobile apps",
   "navigation_bar.blocks": "Blocked users",
+  "navigation_bar.bookmarks": "Bookmarks",
   "navigation_bar.community_timeline": "Local timeline",
   "navigation_bar.compose": "Compose new toot",
   "navigation_bar.direct": "Direct messages",
@@ -278,7 +285,9 @@
   "navigation_bar.security": "Security",
   "notification.favourite": "{name} favourited your status",
   "notification.follow": "{name} followed you",
+  "notification.follow_request": "{name} has requested to follow you",
   "notification.mention": "{name} mentioned you",
+  "notification.own_poll": "Your poll has ended",
   "notification.poll": "A poll you have voted in has ended",
   "notification.reblog": "{name} boosted your status",
   "notifications.clear": "Clear notifications",
@@ -289,6 +298,7 @@
   "notifications.column_settings.filter_bar.category": "Quick filter bar",
   "notifications.column_settings.filter_bar.show": "Show",
   "notifications.column_settings.follow": "New followers:",
+  "notifications.column_settings.follow_request": "New follow requests:",
   "notifications.column_settings.mention": "Mentions:",
   "notifications.column_settings.poll": "Poll results:",
   "notifications.column_settings.push": "Push notifications",
@@ -349,6 +359,7 @@
   "status.admin_account": "Open moderation interface for @{name}",
   "status.admin_status": "Open this status in the moderation interface",
   "status.block": "Block @{name}",
+  "status.bookmark": "Bookmark",
   "status.cancel_reblog_private": "Unboost",
   "status.cannot_reblog": "This post cannot be boosted",
   "status.copy": "Copy link to status",
@@ -374,6 +385,7 @@
   "status.reblogged_by": "{name} boosted",
   "status.reblogs.empty": "No one has boosted this toot yet. When someone does, they will show up here.",
   "status.redraft": "Delete & re-draft",
+  "status.remove_bookmark": "Remove bookmark",
   "status.reply": "Reply",
   "status.replyAll": "Reply to thread",
   "status.report": "Report @{name}",
@@ -406,9 +418,11 @@
   "upload_button.label": "Add media ({formats})",
   "upload_error.limit": "File upload limit exceeded.",
   "upload_error.poll": "File upload not allowed with polls.",
+  "upload_form.audio_description": "Describe for people with hearing loss",
   "upload_form.description": "Describe for the visually impaired",
   "upload_form.edit": "Edit",
   "upload_form.undo": "Delete",
+  "upload_form.video_description": "Describe for people with hearing loss or visual impairment",
   "upload_modal.analyzing_picture": "Analyzing picture…",
   "upload_modal.apply": "Apply",
   "upload_modal.description_placeholder": "A quick brown fox jumps over the lazy dog",
@@ -418,6 +432,7 @@
   "upload_modal.preview_label": "Preview ({ratio})",
   "upload_progress.label": "Uploading…",
   "video.close": "Close video",
+  "video.download": "Download file",
   "video.exit_fullscreen": "Exit full screen",
   "video.expand": "Expand video",
   "video.fullscreen": "Full screen",
diff --git a/app/javascript/mastodon/locales/lv.json b/app/javascript/mastodon/locales/lv.json
index fc76339c54f534877d939069a95c88fa4c697cfc..329218c0e7c1b6f76041c614f98fa6d8d304a210 100644
--- a/app/javascript/mastodon/locales/lv.json
+++ b/app/javascript/mastodon/locales/lv.json
@@ -1,6 +1,7 @@
 {
   "account.add_or_remove_from_list": "Pievienot vai noņemt no saraksta",
   "account.badges.bot": "Bots",
+  "account.badges.group": "Group",
   "account.block": "Bloķēt @{name}",
   "account.block_domain": "Slēpt visu no {domain}",
   "account.blocked": "Bloķēts",
@@ -51,6 +52,7 @@
   "bundle_modal_error.message": "Kaut kas nogāja greizi ielādējot šo komponenti.",
   "bundle_modal_error.retry": "Mēģini vēlreiz",
   "column.blocks": "Bloķētie lietotāji",
+  "column.bookmarks": "Bookmarks",
   "column.community": "Lokālā laika līnija",
   "column.direct": "Privātās ziņas",
   "column.directory": "Browse profiles",
@@ -82,6 +84,8 @@
   "compose_form.poll.duration": "Poll duration",
   "compose_form.poll.option_placeholder": "Choice {number}",
   "compose_form.poll.remove_option": "Remove this choice",
+  "compose_form.poll.switch_to_multiple": "Change poll to allow multiple choices",
+  "compose_form.poll.switch_to_single": "Change poll to allow for a single choice",
   "compose_form.publish": "Publicēt",
   "compose_form.publish_loud": "{publish}!",
   "compose_form.sensitive.hide": "Mark media as sensitive",
@@ -138,6 +142,7 @@
   "empty_column.account_timeline": "Šeit ziņojumu nav!",
   "empty_column.account_unavailable": "Profile unavailable",
   "empty_column.blocks": "Tu neesi vēl nevienu bloķējis.",
+  "empty_column.bookmarked_statuses": "You don't have any bookmarked toots yet. When you bookmark one, it will show up here.",
   "empty_column.community": "Lokālā laika līnija ir tukša. :/ Ieraksti kaut ko lai sākas rosība!",
   "empty_column.direct": "Tev nav privāto ziņu. Tiklīdz saņemsi tās šeit parādīsies.",
   "empty_column.domain_blocks": "Slēpto domēnu vēl nav.",
@@ -224,6 +229,7 @@
   "keyboard_shortcuts.muted": "to open muted users list",
   "keyboard_shortcuts.my_profile": "to open your profile",
   "keyboard_shortcuts.notifications": "to open notifications column",
+  "keyboard_shortcuts.open_media": "to open media",
   "keyboard_shortcuts.pinned": "to open pinned toots list",
   "keyboard_shortcuts.profile": "to open author's profile",
   "keyboard_shortcuts.reply": "to reply",
@@ -256,6 +262,7 @@
   "mute_modal.hide_notifications": "Hide notifications from this user?",
   "navigation_bar.apps": "Mobile apps",
   "navigation_bar.blocks": "Blocked users",
+  "navigation_bar.bookmarks": "Bookmarks",
   "navigation_bar.community_timeline": "Local timeline",
   "navigation_bar.compose": "Compose new toot",
   "navigation_bar.direct": "Direct messages",
@@ -278,7 +285,9 @@
   "navigation_bar.security": "Security",
   "notification.favourite": "{name} favourited your status",
   "notification.follow": "{name} followed you",
+  "notification.follow_request": "{name} has requested to follow you",
   "notification.mention": "{name} mentioned you",
+  "notification.own_poll": "Your poll has ended",
   "notification.poll": "A poll you have voted in has ended",
   "notification.reblog": "{name} boosted your status",
   "notifications.clear": "Clear notifications",
@@ -289,6 +298,7 @@
   "notifications.column_settings.filter_bar.category": "Quick filter bar",
   "notifications.column_settings.filter_bar.show": "Show",
   "notifications.column_settings.follow": "New followers:",
+  "notifications.column_settings.follow_request": "New follow requests:",
   "notifications.column_settings.mention": "Mentions:",
   "notifications.column_settings.poll": "Poll results:",
   "notifications.column_settings.push": "Push notifications",
@@ -349,6 +359,7 @@
   "status.admin_account": "Open moderation interface for @{name}",
   "status.admin_status": "Open this status in the moderation interface",
   "status.block": "Block @{name}",
+  "status.bookmark": "Bookmark",
   "status.cancel_reblog_private": "Unboost",
   "status.cannot_reblog": "This post cannot be boosted",
   "status.copy": "Copy link to status",
@@ -374,6 +385,7 @@
   "status.reblogged_by": "{name} boosted",
   "status.reblogs.empty": "No one has boosted this toot yet. When someone does, they will show up here.",
   "status.redraft": "Delete & re-draft",
+  "status.remove_bookmark": "Remove bookmark",
   "status.reply": "Reply",
   "status.replyAll": "Reply to thread",
   "status.report": "Report @{name}",
@@ -406,9 +418,11 @@
   "upload_button.label": "Add media ({formats})",
   "upload_error.limit": "File upload limit exceeded.",
   "upload_error.poll": "File upload not allowed with polls.",
+  "upload_form.audio_description": "Describe for people with hearing loss",
   "upload_form.description": "Describe for the visually impaired",
   "upload_form.edit": "Edit",
   "upload_form.undo": "Delete",
+  "upload_form.video_description": "Describe for people with hearing loss or visual impairment",
   "upload_modal.analyzing_picture": "Analyzing picture…",
   "upload_modal.apply": "Apply",
   "upload_modal.description_placeholder": "A quick brown fox jumps over the lazy dog",
@@ -418,6 +432,7 @@
   "upload_modal.preview_label": "Preview ({ratio})",
   "upload_progress.label": "Uploading…",
   "video.close": "Close video",
+  "video.download": "Download file",
   "video.exit_fullscreen": "Exit full screen",
   "video.expand": "Expand video",
   "video.fullscreen": "Full screen",
diff --git a/app/javascript/mastodon/locales/mk.json b/app/javascript/mastodon/locales/mk.json
index 9a4a417af4165e335790bfa7f9172e2bfcbc6f60..2a31a5c22ea2718024f0968c4910b83a0c132d63 100644
--- a/app/javascript/mastodon/locales/mk.json
+++ b/app/javascript/mastodon/locales/mk.json
@@ -1,6 +1,7 @@
 {
   "account.add_or_remove_from_list": "Додади или одстрани од листа",
   "account.badges.bot": "Бот",
+  "account.badges.group": "Group",
   "account.block": "Блокирај @{name}",
   "account.block_domain": "Сокријај се од {domain}",
   "account.blocked": "Блокиран",
@@ -34,7 +35,7 @@
   "account.show_reblogs": "Прикажи бустови од @{name}",
   "account.unblock": "Одблокирај @{name}",
   "account.unblock_domain": "Прикажи {domain}",
-  "account.unendorse": "Don't feature on profile",
+  "account.unendorse": "Не прикажувај на профил",
   "account.unfollow": "Одследи",
   "account.unmute": "Зачути го @{name}",
   "account.unmute_notifications": "Исклучи известувања од @{name}",
@@ -51,102 +52,106 @@
   "bundle_modal_error.message": "Настана грешка при прикажувањето на оваа веб-страница.",
   "bundle_modal_error.retry": "Обидете се повторно",
   "column.blocks": "Блокирани корисници",
-  "column.community": "Local timeline",
+  "column.bookmarks": "Bookmarks",
+  "column.community": "Локална временска зона",
   "column.direct": "Директна порака",
-  "column.directory": "Browse profiles",
-  "column.domain_blocks": "Hidden domains",
-  "column.favourites": "Favourites",
+  "column.directory": "Види профили",
+  "column.domain_blocks": "Скриени домеини",
+  "column.favourites": "Омилени",
   "column.follow_requests": "Follow requests",
   "column.home": "Дома",
   "column.lists": "Листа",
-  "column.mutes": "Muted users",
+  "column.mutes": "Заќутени корисници",
   "column.notifications": "Известувања",
   "column.pins": "Pinned toot",
-  "column.public": "Federated timeline",
+  "column.public": "Федеративен времеплов",
   "column_back_button.label": "Назад",
-  "column_header.hide_settings": "Hide settings",
-  "column_header.moveLeft_settings": "Move column to the left",
-  "column_header.moveRight_settings": "Move column to the right",
+  "column_header.hide_settings": "Скриј подесувања",
+  "column_header.moveLeft_settings": "Премести колона влево",
+  "column_header.moveRight_settings": "Премести колона вдесно",
   "column_header.pin": "Pin",
-  "column_header.show_settings": "Show settings",
+  "column_header.show_settings": "Прикажи подесувања",
   "column_header.unpin": "Unpin",
-  "column_subheading.settings": "Settings",
-  "community.column_settings.media_only": "Media only",
+  "column_subheading.settings": "Подесувања",
+  "community.column_settings.media_only": "Само медиа",
   "compose_form.direct_message_warning": "This toot will only be sent to all the mentioned users.",
-  "compose_form.direct_message_warning_learn_more": "Learn more",
+  "compose_form.direct_message_warning_learn_more": "Научи повеќе",
   "compose_form.hashtag_warning": "This toot won't be listed under any hashtag as it is unlisted. Only public toots can be searched by hashtag.",
   "compose_form.lock_disclaimer": "Your account is not {locked}. Anyone can follow you to view your follower-only posts.",
-  "compose_form.lock_disclaimer.lock": "locked",
-  "compose_form.placeholder": "What is on your mind?",
-  "compose_form.poll.add_option": "Add a choice",
-  "compose_form.poll.duration": "Poll duration",
-  "compose_form.poll.option_placeholder": "Choice {number}",
-  "compose_form.poll.remove_option": "Remove this choice",
-  "compose_form.publish": "Toot",
+  "compose_form.lock_disclaimer.lock": "заклучен",
+  "compose_form.placeholder": "Што имате на ум?",
+  "compose_form.poll.add_option": "Додај избор",
+  "compose_form.poll.duration": "Времетрање на анкета",
+  "compose_form.poll.option_placeholder": "Избери {number}",
+  "compose_form.poll.remove_option": "Избриши избор",
+  "compose_form.poll.switch_to_multiple": "Change poll to allow multiple choices",
+  "compose_form.poll.switch_to_single": "Change poll to allow for a single choice",
+  "compose_form.publish": "Тутови",
   "compose_form.publish_loud": "{publish}!",
-  "compose_form.sensitive.hide": "Mark media as sensitive",
-  "compose_form.sensitive.marked": "Media is marked as sensitive",
-  "compose_form.sensitive.unmarked": "Media is not marked as sensitive",
-  "compose_form.spoiler.marked": "Text is hidden behind warning",
-  "compose_form.spoiler.unmarked": "Text is not hidden",
+  "compose_form.sensitive.hide": "Обележи медиа како сензитивна",
+  "compose_form.sensitive.marked": "Медиата е обележана како сензитивна",
+  "compose_form.sensitive.unmarked": "Медиата не е обележана како сензитивна",
+  "compose_form.spoiler.marked": "Текстот е сокриен зад предупредување",
+  "compose_form.spoiler.unmarked": "Текстот не е сокриен",
   "compose_form.spoiler_placeholder": "Write your warning here",
-  "confirmation_modal.cancel": "Cancel",
-  "confirmations.block.block_and_report": "Block & Report",
+  "confirmation_modal.cancel": "Откажи",
+  "confirmations.block.block_and_report": "Блокирај и Пријави",
   "confirmations.block.confirm": "Блокирај",
-  "confirmations.block.message": "Are you sure you want to block {name}?",
-  "confirmations.delete.confirm": "Delete",
-  "confirmations.delete.message": "Are you sure you want to delete this status?",
-  "confirmations.delete_list.confirm": "Delete",
-  "confirmations.delete_list.message": "Are you sure you want to permanently delete this list?",
-  "confirmations.domain_block.confirm": "Hide entire domain",
-  "confirmations.domain_block.message": "Are you really, really sure you want to block the entire {domain}? In most cases a few targeted blocks or mutes are sufficient and preferable. You will not see content from that domain in any public timelines or your notifications. Your followers from that domain will be removed.",
-  "confirmations.logout.confirm": "Log out",
-  "confirmations.logout.message": "Are you sure you want to log out?",
-  "confirmations.mute.confirm": "Mute",
-  "confirmations.mute.explanation": "This will hide posts from them and posts mentioning them, but it will still allow them to see your posts and follow you.",
-  "confirmations.mute.message": "Are you sure you want to mute {name}?",
+  "confirmations.block.message": "Сигурни сте дека дека го блокирате {name}?",
+  "confirmations.delete.confirm": "Избриши",
+  "confirmations.delete.message": "Сигурни сте дека го бришите статусот?",
+  "confirmations.delete_list.confirm": "Избриши",
+  "confirmations.delete_list.message": "Дали сте сигурни дека сакате да го избришете списоков?",
+  "confirmations.domain_block.confirm": "Сокриј цел домеин",
+  "confirmations.domain_block.message": "Дали скроз сте сигурни дека ќе блокирате сѐ од {domain}? Во повеќето случаеви неколку таргетирани блокирања или заќутувања се доволни и предложени. Нема да ја видите содржината од тој домеин во никој јавен времеплов или вашите нотификации. Вашите следбеници од тој домеин ќе бидат остранети.",
+  "confirmations.logout.confirm": "Одјави се",
+  "confirmations.logout.message": "Дали сте сигурни дека сакате да се одјавите?",
+  "confirmations.mute.confirm": "Заќути",
+  "confirmations.mute.explanation": "Ќе сокрие објави од нив и објави кои ги спомнуваат нив, но сеуште ќе им дозволи да ги видат вашите постови и ве следат.",
+  "confirmations.mute.message": "Дали ќе го заќутите {name}?",
   "confirmations.redraft.confirm": "Delete & redraft",
   "confirmations.redraft.message": "Are you sure you want to delete this status and re-draft it? Favourites and boosts will be lost, and replies to the original post will be orphaned.",
-  "confirmations.reply.confirm": "Reply",
+  "confirmations.reply.confirm": "Одговори",
   "confirmations.reply.message": "Replying now will overwrite the message you are currently composing. Are you sure you want to proceed?",
-  "confirmations.unfollow.confirm": "Unfollow",
-  "confirmations.unfollow.message": "Are you sure you want to unfollow {name}?",
-  "conversation.delete": "Delete conversation",
-  "conversation.mark_as_read": "Mark as read",
-  "conversation.open": "View conversation",
-  "conversation.with": "With {names}",
-  "directory.federated": "From known fediverse",
-  "directory.local": "From {domain} only",
+  "confirmations.unfollow.confirm": "Одследи",
+  "confirmations.unfollow.message": "Сигурни сте дека ќе го отследите {name}?",
+  "conversation.delete": "Избриши разговор",
+  "conversation.mark_as_read": "Означете како прочитано",
+  "conversation.open": "Прегледај разговор",
+  "conversation.with": "Со {names}",
+  "directory.federated": "Од познати fediverse",
+  "directory.local": "Само од {domain}",
   "directory.new_arrivals": "New arrivals",
   "directory.recently_active": "Recently active",
   "embed.instructions": "Embed this status on your website by copying the code below.",
   "embed.preview": "Here is what it will look like:",
-  "emoji_button.activity": "Activity",
+  "emoji_button.activity": "Активност",
   "emoji_button.custom": "Custom",
   "emoji_button.flags": "Flags",
-  "emoji_button.food": "Food & Drink",
+  "emoji_button.food": "Храна &amp; Пијалаци",
   "emoji_button.label": "Insert emoji",
-  "emoji_button.nature": "Nature",
+  "emoji_button.nature": "Природа",
   "emoji_button.not_found": "No emojos!! (╯°□°)╯︵ ┻━┻",
-  "emoji_button.objects": "Objects",
-  "emoji_button.people": "People",
-  "emoji_button.recent": "Frequently used",
-  "emoji_button.search": "Search...",
-  "emoji_button.search_results": "Search results",
-  "emoji_button.symbols": "Symbols",
-  "emoji_button.travel": "Travel & Places",
+  "emoji_button.objects": "Објекти",
+  "emoji_button.people": "Луѓе",
+  "emoji_button.recent": "Најчесто користени",
+  "emoji_button.search": "Барај...",
+  "emoji_button.search_results": "Резултати од барање",
+  "emoji_button.symbols": "Симболи",
+  "emoji_button.travel": "Патувања и Места",
   "empty_column.account_timeline": "No toots here!",
-  "empty_column.account_unavailable": "Profile unavailable",
-  "empty_column.blocks": "You haven't blocked any users yet.",
-  "empty_column.community": "The local timeline is empty. Write something publicly to get the ball rolling!",
-  "empty_column.direct": "You don't have any direct messages yet. When you send or receive one, it will show up here.",
-  "empty_column.domain_blocks": "There are no hidden domains yet.",
+  "empty_column.account_unavailable": "Недостапен профил",
+  "empty_column.blocks": "Немате сеуште блокирано корисници.",
+  "empty_column.bookmarked_statuses": "You don't have any bookmarked toots yet. When you bookmark one, it will show up here.",
+  "empty_column.community": "Локалниот времеплов е празен. Објавете нешто јавно за да може да почне шоуто!",
+  "empty_column.direct": "Немате директни пораки. Кога ќе пратите или примите, ќе се појават тука.",
+  "empty_column.domain_blocks": "Немате сокриени домеини уште.",
   "empty_column.favourited_statuses": "You don't have any favourite toots yet. When you favourite one, it will show up here.",
   "empty_column.favourites": "No one has favourited this toot yet. When someone does, they will show up here.",
   "empty_column.follow_requests": "You don't have any follow requests yet. When you receive one, it will show up here.",
   "empty_column.hashtag": "There is nothing in this hashtag yet.",
   "empty_column.home": "Your home timeline is empty! Visit {public} or use search to get started and meet other users.",
-  "empty_column.home.public_timeline": "the public timeline",
+  "empty_column.home.public_timeline": "јавен времеплов",
   "empty_column.list": "There is nothing in this list yet. When members of this list post new statuses, they will appear here.",
   "empty_column.lists": "You don't have any lists yet. When you create one, it will show up here.",
   "empty_column.mutes": "You haven't muted any users yet.",
@@ -155,50 +160,50 @@
   "error.unexpected_crash.explanation": "Due to a bug in our code or a browser compatibility issue, this page could not be displayed correctly.",
   "error.unexpected_crash.next_steps": "Try refreshing the page. If that does not help, you may still be able to use Mastodon through a different browser or native app.",
   "errors.unexpected_crash.copy_stacktrace": "Copy stacktrace to clipboard",
-  "errors.unexpected_crash.report_issue": "Report issue",
-  "follow_request.authorize": "Authorize",
-  "follow_request.reject": "Reject",
-  "getting_started.developers": "Developers",
-  "getting_started.directory": "Profile directory",
-  "getting_started.documentation": "Documentation",
-  "getting_started.heading": "Getting started",
-  "getting_started.invite": "Invite people",
-  "getting_started.open_source_notice": "Mastodon is open source software. You can contribute or report issues on GitHub at {github}.",
-  "getting_started.security": "Security",
-  "getting_started.terms": "Terms of service",
-  "hashtag.column_header.tag_mode.all": "and {additional}",
-  "hashtag.column_header.tag_mode.any": "or {additional}",
-  "hashtag.column_header.tag_mode.none": "without {additional}",
-  "hashtag.column_settings.select.no_options_message": "No suggestions found",
-  "hashtag.column_settings.select.placeholder": "Enter hashtags…",
-  "hashtag.column_settings.tag_mode.all": "All of these",
-  "hashtag.column_settings.tag_mode.any": "Any of these",
-  "hashtag.column_settings.tag_mode.none": "None of these",
-  "hashtag.column_settings.tag_toggle": "Include additional tags in this column",
-  "home.column_settings.basic": "Basic",
-  "home.column_settings.show_reblogs": "Show boosts",
-  "home.column_settings.show_replies": "Show replies",
-  "intervals.full.days": "{number, plural, one {# day} other {# days}}",
-  "intervals.full.hours": "{number, plural, one {# hour} other {# hours}}",
-  "intervals.full.minutes": "{number, plural, one {# minute} other {# minutes}}",
-  "introduction.federation.action": "Next",
-  "introduction.federation.federated.headline": "Federated",
-  "introduction.federation.federated.text": "Public posts from other servers of the fediverse will appear in the federated timeline.",
-  "introduction.federation.home.headline": "Home",
+  "errors.unexpected_crash.report_issue": "Пријавете проблем",
+  "follow_request.authorize": "Одобри",
+  "follow_request.reject": "Одбиј",
+  "getting_started.developers": "Програмери",
+  "getting_started.directory": "Профил директориум",
+  "getting_started.documentation": "Документација",
+  "getting_started.heading": "Започни",
+  "getting_started.invite": "Покани луѓе",
+  "getting_started.open_source_notice": "Мастодон е софтвер со отворен код. Можете да придонесувате или пријавувате проблеми во GitHub на {github}.",
+  "getting_started.security": "Поставки на сметката",
+  "getting_started.terms": "Услови на користење",
+  "hashtag.column_header.tag_mode.all": "и {additional}",
+  "hashtag.column_header.tag_mode.any": "или {additional}",
+  "hashtag.column_header.tag_mode.none": "без {additional}",
+  "hashtag.column_settings.select.no_options_message": "Нема предлози",
+  "hashtag.column_settings.select.placeholder": "Внеси хаштагови…",
+  "hashtag.column_settings.tag_mode.all": "Сите овие",
+  "hashtag.column_settings.tag_mode.any": "Било кои",
+  "hashtag.column_settings.tag_mode.none": "Никои",
+  "hashtag.column_settings.tag_toggle": "Стави додатни тагови за оваа колона",
+  "home.column_settings.basic": "Основно",
+  "home.column_settings.show_reblogs": "Прикажи бустирања",
+  "home.column_settings.show_replies": "Прикажи одговори",
+  "intervals.full.days": "{number, plural, one {# ден} other {# дена}}",
+  "intervals.full.hours": "{number, plural, one {# час} other {# часа}}",
+  "intervals.full.minutes": "{number, plural, one {# минута} other {# минути}}",
+  "introduction.federation.action": "Следно",
+  "introduction.federation.federated.headline": "Федеративно",
+  "introduction.federation.federated.text": "Јавни објави од други сервери од fediverse ќе се појават во федеративниот времеплов.",
+  "introduction.federation.home.headline": "Дома",
   "introduction.federation.home.text": "Posts from people you follow will appear in your home feed. You can follow anyone on any server!",
-  "introduction.federation.local.headline": "Local",
+  "introduction.federation.local.headline": "Локално",
   "introduction.federation.local.text": "Public posts from people on the same server as you will appear in the local timeline.",
-  "introduction.interactions.action": "Finish toot-orial!",
-  "introduction.interactions.favourite.headline": "Favourite",
+  "introduction.interactions.action": "Заврши туторијал!",
+  "introduction.interactions.favourite.headline": "Омилени",
   "introduction.interactions.favourite.text": "You can save a toot for later, and let the author know that you liked it, by favouriting it.",
-  "introduction.interactions.reblog.headline": "Boost",
+  "introduction.interactions.reblog.headline": "Бустирај",
   "introduction.interactions.reblog.text": "You can share other people's toots with your followers by boosting them.",
-  "introduction.interactions.reply.headline": "Reply",
+  "introduction.interactions.reply.headline": "Одговори",
   "introduction.interactions.reply.text": "You can reply to other people's and your own toots, which will chain them together in a conversation.",
-  "introduction.welcome.action": "Let's go!",
-  "introduction.welcome.headline": "First steps",
+  "introduction.welcome.action": "Да започнеме!",
+  "introduction.welcome.headline": "Почетни чекори",
   "introduction.welcome.text": "Welcome to the fediverse! In a few moments, you'll be able to broadcast messages and talk to your friends across a wide variety of servers. But this server, {domain}, is special—it hosts your profile, so remember its name.",
-  "keyboard_shortcuts.back": "to navigate back",
+  "keyboard_shortcuts.back": "за да одите назад",
   "keyboard_shortcuts.blocked": "to open blocked users list",
   "keyboard_shortcuts.boost": "to boost",
   "keyboard_shortcuts.column": "to focus a status in one of the columns",
@@ -219,9 +224,10 @@
   "keyboard_shortcuts.muted": "to open muted users list",
   "keyboard_shortcuts.my_profile": "to open your profile",
   "keyboard_shortcuts.notifications": "to open notifications column",
+  "keyboard_shortcuts.open_media": "to open media",
   "keyboard_shortcuts.pinned": "to open pinned toots list",
   "keyboard_shortcuts.profile": "to open author's profile",
-  "keyboard_shortcuts.reply": "to reply",
+  "keyboard_shortcuts.reply": "одговори",
   "keyboard_shortcuts.requests": "to open follow requests list",
   "keyboard_shortcuts.search": "to focus search",
   "keyboard_shortcuts.start": "to open \"get started\" column",
@@ -251,29 +257,32 @@
   "mute_modal.hide_notifications": "Hide notifications from this user?",
   "navigation_bar.apps": "Mobile apps",
   "navigation_bar.blocks": "Blocked users",
+  "navigation_bar.bookmarks": "Bookmarks",
   "navigation_bar.community_timeline": "Local timeline",
   "navigation_bar.compose": "Compose new toot",
   "navigation_bar.direct": "Direct messages",
   "navigation_bar.discover": "Discover",
   "navigation_bar.domain_blocks": "Hidden domains",
-  "navigation_bar.edit_profile": "Edit profile",
-  "navigation_bar.favourites": "Favourites",
-  "navigation_bar.filters": "Muted words",
-  "navigation_bar.follow_requests": "Follow requests",
-  "navigation_bar.follows_and_followers": "Follows and followers",
-  "navigation_bar.info": "About this server",
-  "navigation_bar.keyboard_shortcuts": "Hotkeys",
-  "navigation_bar.lists": "Lists",
-  "navigation_bar.logout": "Logout",
-  "navigation_bar.mutes": "Muted users",
-  "navigation_bar.personal": "Personal",
+  "navigation_bar.edit_profile": "Уреди профил",
+  "navigation_bar.favourites": "Омилени",
+  "navigation_bar.filters": "Замолќени зборови",
+  "navigation_bar.follow_requests": "Следи покани",
+  "navigation_bar.follows_and_followers": "Следења и следбеници",
+  "navigation_bar.info": "За овој сервер",
+  "navigation_bar.keyboard_shortcuts": "Кратенки",
+  "navigation_bar.lists": "Листи",
+  "navigation_bar.logout": "Одјави се",
+  "navigation_bar.mutes": "Заќутени корисници",
+  "navigation_bar.personal": "Лично",
   "navigation_bar.pins": "Pinned toots",
   "navigation_bar.preferences": "Preferences",
-  "navigation_bar.public_timeline": "Federated timeline",
-  "navigation_bar.security": "Security",
+  "navigation_bar.public_timeline": "Федеративен времеплов",
+  "navigation_bar.security": "Безбедност",
   "notification.favourite": "{name} favourited your status",
   "notification.follow": "{name} followed you",
+  "notification.follow_request": "{name} has requested to follow you",
   "notification.mention": "{name} mentioned you",
+  "notification.own_poll": "Your poll has ended",
   "notification.poll": "A poll you have voted in has ended",
   "notification.reblog": "{name} boosted your status",
   "notifications.clear": "Clear notifications",
@@ -284,57 +293,58 @@
   "notifications.column_settings.filter_bar.category": "Quick filter bar",
   "notifications.column_settings.filter_bar.show": "Show",
   "notifications.column_settings.follow": "New followers:",
+  "notifications.column_settings.follow_request": "New follow requests:",
   "notifications.column_settings.mention": "Mentions:",
-  "notifications.column_settings.poll": "Poll results:",
-  "notifications.column_settings.push": "Push notifications",
-  "notifications.column_settings.reblog": "Boosts:",
-  "notifications.column_settings.show": "Show in column",
-  "notifications.column_settings.sound": "Play sound",
-  "notifications.filter.all": "All",
-  "notifications.filter.boosts": "Boosts",
-  "notifications.filter.favourites": "Favourites",
-  "notifications.filter.follows": "Follows",
-  "notifications.filter.mentions": "Mentions",
-  "notifications.filter.polls": "Poll results",
-  "notifications.group": "{count} notifications",
-  "poll.closed": "Closed",
-  "poll.refresh": "Refresh",
-  "poll.total_people": "{count, plural, one {# person} other {# people}}",
-  "poll.total_votes": "{count, plural, one {# vote} other {# votes}}",
-  "poll.vote": "Vote",
-  "poll.voted": "You voted for this answer",
-  "poll_button.add_poll": "Add a poll",
-  "poll_button.remove_poll": "Remove poll",
-  "privacy.change": "Adjust status privacy",
-  "privacy.direct.long": "Post to mentioned users only",
-  "privacy.direct.short": "Direct",
-  "privacy.private.long": "Post to followers only",
-  "privacy.private.short": "Followers-only",
-  "privacy.public.long": "Post to public timelines",
-  "privacy.public.short": "Public",
-  "privacy.unlisted.long": "Do not show in public timelines",
-  "privacy.unlisted.short": "Unlisted",
-  "refresh": "Refresh",
-  "regeneration_indicator.label": "Loading…",
-  "regeneration_indicator.sublabel": "Your home feed is being prepared!",
-  "relative_time.days": "{number}d",
-  "relative_time.hours": "{number}h",
-  "relative_time.just_now": "now",
-  "relative_time.minutes": "{number}m",
-  "relative_time.seconds": "{number}s",
-  "reply_indicator.cancel": "Cancel",
-  "report.forward": "Forward to {target}",
-  "report.forward_hint": "The account is from another server. Send an anonymized copy of the report there as well?",
-  "report.hint": "The report will be sent to your server moderators. You can provide an explanation of why you are reporting this account below:",
-  "report.placeholder": "Additional comments",
-  "report.submit": "Submit",
-  "report.target": "Report {target}",
-  "search.placeholder": "Search",
-  "search_popout.search_format": "Advanced search format",
+  "notifications.column_settings.poll": "Резултати од анкета:",
+  "notifications.column_settings.push": "Пуш нотификации",
+  "notifications.column_settings.reblog": "Бустови:",
+  "notifications.column_settings.show": "Прикажи во колона",
+  "notifications.column_settings.sound": "Свири звуци",
+  "notifications.filter.all": "Сите",
+  "notifications.filter.boosts": "Бустови",
+  "notifications.filter.favourites": "Омилени",
+  "notifications.filter.follows": "Следења",
+  "notifications.filter.mentions": "Спомнувања",
+  "notifications.filter.polls": "Резултати од анкета",
+  "notifications.group": "{count} нотификации",
+  "poll.closed": "Затворени",
+  "poll.refresh": "Освежи",
+  "poll.total_people": "{count, plural, one {# човек} other {# луѓе}}",
+  "poll.total_votes": "{count, plural, one {# глас} other {# гласа}}",
+  "poll.vote": "Гласај",
+  "poll.voted": "Вие гласавте за овој одговор",
+  "poll_button.add_poll": "Додадете нова анкета",
+  "poll_button.remove_poll": "Избришете анкета",
+  "privacy.change": "Штеловај статус на приватност",
+  "privacy.direct.long": "Објави само на спомнати корисници",
+  "privacy.direct.short": "Директно",
+  "privacy.private.long": "Објави само на следбеници",
+  "privacy.private.short": "Само следбеници",
+  "privacy.public.long": "Објави во јавни времплови",
+  "privacy.public.short": "Јавно",
+  "privacy.unlisted.long": "Не објавувај на јавни времеплови",
+  "privacy.unlisted.short": "Необјавено",
+  "refresh": "Освежи",
+  "regeneration_indicator.label": "Вчитување…",
+  "regeneration_indicator.sublabel": "Вашиот новости се подготвуваат!",
+  "relative_time.days": "{number}д",
+  "relative_time.hours": "{number}ч",
+  "relative_time.just_now": "сега",
+  "relative_time.minutes": "{number}м",
+  "relative_time.seconds": "{number}с",
+  "reply_indicator.cancel": "Откажи",
+  "report.forward": "Проследи до {target}",
+  "report.forward_hint": "Оваа сметка е од друг сервер. Испрати анонимна копија од пријавата и таму?",
+  "report.hint": "Пријавата ќе биде испратена до вашиот серверски модератор. Подолу можете да ставите опис зошто ја пријавувате сметката:",
+  "report.placeholder": "Додатни коментари",
+  "report.submit": "Испрати",
+  "report.target": "Пријавување {target}",
+  "search.placeholder": "Барај",
+  "search_popout.search_format": "Напреден формат за барање",
   "search_popout.tips.full_text": "Simple text returns statuses you have written, favourited, boosted, or have been mentioned in, as well as matching usernames, display names, and hashtags.",
-  "search_popout.tips.hashtag": "hashtag",
-  "search_popout.tips.status": "status",
-  "search_popout.tips.text": "Simple text returns matching display names, usernames and hashtags",
+  "search_popout.tips.hashtag": "хештег",
+  "search_popout.tips.status": "состојба",
+  "search_popout.tips.text": "Прост текст враќа совпаднати имиња, корисници и хештагови",
   "search_popout.tips.user": "user",
   "search_results.accounts": "People",
   "search_results.hashtags": "Hashtags",
@@ -344,6 +354,7 @@
   "status.admin_account": "Open moderation interface for @{name}",
   "status.admin_status": "Open this status in the moderation interface",
   "status.block": "Block @{name}",
+  "status.bookmark": "Bookmark",
   "status.cancel_reblog_private": "Unboost",
   "status.cannot_reblog": "This post cannot be boosted",
   "status.copy": "Copy link to status",
@@ -368,6 +379,7 @@
   "status.reblogged_by": "{name} boosted",
   "status.reblogs.empty": "No one has boosted this toot yet. When someone does, they will show up here.",
   "status.redraft": "Delete & re-draft",
+  "status.remove_bookmark": "Remove bookmark",
   "status.reply": "Reply",
   "status.replyAll": "Reply to thread",
   "status.report": "Report @{name}",
@@ -384,15 +396,15 @@
   "suggestions.dismiss": "Dismiss suggestion",
   "suggestions.header": "You might be interested in…",
   "tabs_bar.federated_timeline": "Federated",
-  "tabs_bar.home": "Home",
-  "tabs_bar.local_timeline": "Local",
-  "tabs_bar.notifications": "Notifications",
-  "tabs_bar.search": "Search",
-  "time_remaining.days": "{number, plural, one {# day} other {# days}} left",
-  "time_remaining.hours": "{number, plural, one {# hour} other {# hours}} left",
-  "time_remaining.minutes": "{number, plural, one {# minute} other {# minutes}} left",
-  "time_remaining.moments": "Moments remaining",
-  "time_remaining.seconds": "{number, plural, one {# second} other {# seconds}} left",
+  "tabs_bar.home": "Дома",
+  "tabs_bar.local_timeline": "Локално",
+  "tabs_bar.notifications": "Нотификации",
+  "tabs_bar.search": "Барај",
+  "time_remaining.days": "{number, plural, one {# ден} other {# дена}} {number, plural, one {остана} other {останаа}}",
+  "time_remaining.hours": "{number, plural, one {# час} other {# часа}} {number, plural, one {остана} other {останаа}}",
+  "time_remaining.minutes": "{number, plural, one {# минута} other {# минути}} {number, plural, one {остана} other {останаа}}",
+  "time_remaining.moments": "Уште некои мига",
+  "time_remaining.seconds": "{number, plural, one {# секунда} other {# секунди}} {number, plural, one {остана} other {останаа}}",
   "trends.count_by_accounts": "{count} {rawCount, plural, one {person} other {people}} talking",
   "trends.trending_now": "Trending now",
   "ui.beforeunload": "Your draft will be lost if you leave Mastodon.",
@@ -400,9 +412,11 @@
   "upload_button.label": "Add media ({formats})",
   "upload_error.limit": "File upload limit exceeded.",
   "upload_error.poll": "File upload not allowed with polls.",
+  "upload_form.audio_description": "Describe for people with hearing loss",
   "upload_form.description": "Describe for the visually impaired",
   "upload_form.edit": "Edit",
   "upload_form.undo": "Delete",
+  "upload_form.video_description": "Describe for people with hearing loss or visual impairment",
   "upload_modal.analyzing_picture": "Analyzing picture…",
   "upload_modal.apply": "Apply",
   "upload_modal.description_placeholder": "A quick brown fox jumps over the lazy dog",
@@ -412,6 +426,7 @@
   "upload_modal.preview_label": "Preview ({ratio})",
   "upload_progress.label": "Uploading…",
   "video.close": "Close video",
+  "video.download": "Download file",
   "video.exit_fullscreen": "Exit full screen",
   "video.expand": "Expand video",
   "video.fullscreen": "Full screen",
diff --git a/app/javascript/mastodon/locales/ml.json b/app/javascript/mastodon/locales/ml.json
new file mode 100644
index 0000000000000000000000000000000000000000..0705f20e35de398443ac5b188c46ea146a61f4af
--- /dev/null
+++ b/app/javascript/mastodon/locales/ml.json
@@ -0,0 +1,438 @@
+{
+  "account.add_or_remove_from_list": "പട്ടികയിൽ ചേർക്കുകയോ അല്ലെങ്കിൽ മാറ്റുകയോ ചെയ്യുക",
+  "account.badges.bot": "റോബോട്ട്",
+  "account.badges.group": "Group",
+  "account.block": "@{name} നെ ബ്ലോക്ക് ചെയ്യുക",
+  "account.block_domain": "{domain} ൽ നിന്നുള്ള എല്ലാം മറയ്കുക",
+  "account.blocked": "തടഞ്ഞു",
+  "account.cancel_follow_request": "പിന്തുടരാനുള്ള അപേക്ഷ നിരസിക്കുക",
+  "account.direct": "@{name} ന് നേരിട്ട് മെസേജ് അയക്കുക",
+  "account.domain_blocked": "മേഖല മറയ്ക്കപ്പെട്ടിരിക്കുന്നു",
+  "account.edit_profile": "പ്രൊഫൈൽ തിരുത്തുക",
+  "account.endorse": "പ്രൊഫൈലിൽ പ്രകടമാക്കുക",
+  "account.follow": "പിന്തുടരുക",
+  "account.followers": "പിന്തുടരുന്നവർ",
+  "account.followers.empty": "ഈ ഉപയോക്താവിനെ ആരും ഇതുവരെ പിന്തുടരുന്നില്ല.",
+  "account.follows": "പിന്തുടരുന്നു",
+  "account.follows.empty": "ഈ ഉപയോക്താവ് ആരേയും ഇതുവരെ പിന്തുടരുന്നില്ല.",
+  "account.follows_you": "നിങ്ങളെ പിന്തുടരുന്നു",
+  "account.hide_reblogs": "@{name} ബൂസ്റ്റ് ചെയ്തവ മറയ്കുക",
+  "account.last_status": "അവസാനം കണ്ടത്",
+  "account.link_verified_on": "ഈ ലിങ്കിന്റെ ഉടമസ്തത {date} ഇൽ ഉറപ്പാക്കിയതാണ്",
+  "account.locked_info": "ഈ അംഗത്വത്തിന്റെ സ്വകാര്യതാ നിലപാട് അനുസരിച്ച് പിന്തുടരുന്നവരെ തിരഞ്ഞെടുക്കാനുള്ള വിവേചനാധികാരം ഉടമസ്ഥനിൽ നിഷിപ്തമായിരിക്കുന്നു.",
+  "account.media": "മീഡിയ",
+  "account.mention": "@{name} സൂചിപ്പിക്കുക",
+  "account.moved_to": "{name} ഇതിലേക്ക് മാറിയിരിക്കുന്നു:",
+  "account.mute": "നിശ്ശബ്ദമാക്കുക @{name}",
+  "account.mute_notifications": "@{name} യിൽ നിന്നുള്ള അറിയിപ്പുകൾ നിശബ്ദമാക്കുക",
+  "account.muted": "നിശ്ശബ്ദമാക്കിയിരിക്കുന്നു",
+  "account.never_active": "ഒരിക്കലും ഇല്ല",
+  "account.posts": "ടൂട്ടുകൾ",
+  "account.posts_with_replies": "ടൂട്ടുകളും മറുപടികളും",
+  "account.report": "റിപ്പോർട്ട് ചെയ്യുക @{name}",
+  "account.requested": "അനുവാദത്തിനായി കാത്തിരിക്കുന്നു. പിന്തുടരാനുള്ള അപേക്ഷ റദ്ദാക്കുവാൻ ഞെക്കുക",
+  "account.share": "@{name} ന്റെ പ്രൊഫൈൽ പങ്കുവെക്കുക",
+  "account.show_reblogs": "@{name} ൽ നിന്നുള്ള ബൂസ്റ്റുകൾ കാണിക്കുക",
+  "account.unblock": "ബ്ലോക്ക് മാറ്റുക @{name}",
+  "account.unblock_domain": "{domain} വെളിപ്പെടുത്തുക",
+  "account.unendorse": "പ്രൊഫൈലിൽ പ്രകടമാക്കാതിരിക്കുക",
+  "account.unfollow": "പിന്തുടരുന്നത് നിര്‍ത്തുക",
+  "account.unmute": "നിശ്ശബ്ദമാക്കുന്നത് നിർത്തുക @{name}",
+  "account.unmute_notifications": "@{name} യിൽ നിന്നുള്ള അറിയിപ്പുകൾ പ്രസിദ്ധപ്പെടുത്തുക",
+  "alert.rate_limited.message": "{retry_time, time, medium} നു ശേഷം വീണ്ടും ശ്രമിക്കുക.",
+  "alert.rate_limited.title": "തോത് പരിമിതപ്പെടുത്തിയിരിക്കുന്നു",
+  "alert.unexpected.message": "അപ്രതീക്ഷിതമായി എന്തോ സംഭവിച്ചു.",
+  "alert.unexpected.title": "ശ്ശോ!",
+  "autosuggest_hashtag.per_week": "ആഴ്ച തോറും {count}",
+  "boost_modal.combo": "അടുത്ത തവണ ഇത് ഒഴിവാക്കുവാൻ {combo} ഞെക്കാവുന്നതാണ്",
+  "bundle_column_error.body": "ഈ ഘടകം പ്രദശിപ്പിക്കുമ്പോൾ എന്തോ കുഴപ്പം സംഭവിച്ചു.",
+  "bundle_column_error.retry": "വീണ്ടും ശ്രമിക്കുക",
+  "bundle_column_error.title": "ശൃംഖലയിലെ പിഴവ്",
+  "bundle_modal_error.close": "അടയ്ക്കുക",
+  "bundle_modal_error.message": "ഈ വെബ്പേജ് പ്രദർശിപ്പിക്കുമ്പോൾ എന്തോ കുഴപ്പം സംഭവിച്ചു.",
+  "bundle_modal_error.retry": "വീണ്ടും ശ്രമിക്കുക",
+  "column.blocks": "തടയപ്പെട്ട ഉപയോക്താക്കൾ",
+  "column.bookmarks": "Bookmarks",
+  "column.community": "പ്രാദേശികമായ സമയരേഖ",
+  "column.direct": "നേരിട്ടുള്ള സന്ദേശങ്ങൾ",
+  "column.directory": "പ്രൊഫൈലുകൾ മറിച്ചുനോക്കുക",
+  "column.domain_blocks": "മറയ്ക്കപ്പെട്ട മേഖലകൾ",
+  "column.favourites": "പ്രിയപ്പെട്ടവ",
+  "column.follow_requests": "പിന്തുടരാനുള്ള അഭ്യർത്ഥനകൾ",
+  "column.home": "ഭവനം",
+  "column.lists": "പട്ടികകൾ",
+  "column.mutes": "നിശബ്ദമാക്കപ്പെട്ട ഉപയോക്താക്കൾ",
+  "column.notifications": "അറിയിപ്പുകൾ",
+  "column.pins": "ഉറപ്പിച്ചു നിറുത്തിയിരിക്കുന്ന ടൂട്ടുകൾ",
+  "column.public": "സംയുക്തമായ സമയരേഖ",
+  "column_back_button.label": "പുറകിലേക്ക്",
+  "column_header.hide_settings": "സജ്ജീകരണങ്ങള്‍ മറയ്ക്കുക",
+  "column_header.moveLeft_settings": "എഴുത്തുപംക്തി ഇടത്തോട്ട് മാറ്റുക",
+  "column_header.moveRight_settings": "എഴുത്തുപംക്തി വലത്തോട്ട് മാറ്റുക",
+  "column_header.pin": "ഉറപ്പിച്ചു നിറുത്തുക",
+  "column_header.show_settings": "ക്രമീകരണങ്ങൾ കാണിക്കുക",
+  "column_header.unpin": "ഇളക്കി മാറ്റുക",
+  "column_subheading.settings": "ക്രമീകരണങ്ങള്‍",
+  "community.column_settings.media_only": "മാധ്യമങ്ങൾ മാത്രം",
+  "compose_form.direct_message_warning": "പരാമർശിക്കപ്പെട്ടിരിക്കുന്ന ഉപയോഗ്താക്കൾക്കെ ഈ ടൂട്ട് അയക്കപ്പെടുകയുള്ളു.",
+  "compose_form.direct_message_warning_learn_more": "കൂടുതൽ പഠിക്കുക",
+  "compose_form.hashtag_warning": "ഈ ടൂട്ട് പട്ടികയിൽ ഇല്ലാത്തതിനാൽ ഒരു ചർച്ചാവിഷയത്തിന്റെ പട്ടികയിലും പെടുകയില്ല. പരസ്യമായ ടൂട്ടുകൾ മാത്രമേ ചർച്ചാവിഷയം അടിസ്ഥാനമാക്കി തിരയുവാൻ സാധിക്കുകയുള്ളു.",
+  "compose_form.lock_disclaimer": "Your account is not {locked}. Anyone can follow you to view your follower-only posts.",
+  "compose_form.lock_disclaimer.lock": "locked",
+  "compose_form.placeholder": "നിങ്ങളുടെ മനസ്സിൽ എന്താണ്?",
+  "compose_form.poll.add_option": "Add a choice",
+  "compose_form.poll.duration": "തിരഞ്ഞെടുപ്പിന്റെ സമയദൈർഖ്യം",
+  "compose_form.poll.option_placeholder": "Choice {number}",
+  "compose_form.poll.remove_option": "Remove this choice",
+  "compose_form.poll.switch_to_multiple": "Change poll to allow multiple choices",
+  "compose_form.poll.switch_to_single": "Change poll to allow for a single choice",
+  "compose_form.publish": "ടൂട്ട്",
+  "compose_form.publish_loud": "{publish}!",
+  "compose_form.sensitive.hide": "Mark media as sensitive",
+  "compose_form.sensitive.marked": "Media is marked as sensitive",
+  "compose_form.sensitive.unmarked": "Media is not marked as sensitive",
+  "compose_form.spoiler.marked": "എഴുത്ത് മുന്നറിയിപ്പിനാൽ മറച്ചിരിക്കുന്നു",
+  "compose_form.spoiler.unmarked": "എഴുത്ത് മറയ്ക്കപ്പെട്ടിട്ടില്ല",
+  "compose_form.spoiler_placeholder": "നിങ്ങളുടെ മുന്നറിയിപ്പ് ഇവിടെ എഴുതുക",
+  "confirmation_modal.cancel": "റദ്ദാക്കുക",
+  "confirmations.block.block_and_report": "Block & Report",
+  "confirmations.block.confirm": "തടയുക",
+  "confirmations.block.message": "Are you sure you want to block {name}?",
+  "confirmations.delete.confirm": "മായ്ക്കുക",
+  "confirmations.delete.message": "Are you sure you want to delete this status?",
+  "confirmations.delete_list.confirm": "മായ്ക്കുക",
+  "confirmations.delete_list.message": "Are you sure you want to permanently delete this list?",
+  "confirmations.domain_block.confirm": "Hide entire domain",
+  "confirmations.domain_block.message": "Are you really, really sure you want to block the entire {domain}? In most cases a few targeted blocks or mutes are sufficient and preferable. You will not see content from that domain in any public timelines or your notifications. Your followers from that domain will be removed.",
+  "confirmations.logout.confirm": "പുറത്തുകടക്കുക",
+  "confirmations.logout.message": "Are you sure you want to log out?",
+  "confirmations.mute.confirm": "നിശ്ശബ്ദമാക്കുക",
+  "confirmations.mute.explanation": "This will hide posts from them and posts mentioning them, but it will still allow them to see your posts and follow you.",
+  "confirmations.mute.message": "Are you sure you want to mute {name}?",
+  "confirmations.redraft.confirm": "മായിച്ച് മാറ്റങ്ങൾ വരുത്തി വീണ്ടും എഴുതുക",
+  "confirmations.redraft.message": "നിങ്ങൾ ഉറപ്പായും ഈ കുറിപ്പ് മായ്ച്ച് മാറ്റങ്ങൾ വരുത്തി വീണ്ടും എഴുതുവാൻ താല്പര്യപ്പെടുന്നുവോ? അങ്ങനെ ചെയ്യുന്ന പക്ഷം ഇതിനു ലഭിച്ചിരിക്കുന്ന പ്രിയപ്പെടലുകളും ബൂസ്റ്റുകളും ആദ്യമുണ്ടായിരുന്ന കുറിപ്പിന് ലഭിച്ചിരുന്ന മറുപടികൾ ഒറ്റപ്പെടുകയും ചെയ്യും.",
+  "confirmations.reply.confirm": "മറുപടി",
+  "confirmations.reply.message": "ഇപ്പോൾ മറുപടി കൊടുക്കുന്നത് നിങ്ങൾ എഴുതിക്കൊണ്ടിരിക്കുന്ന സന്ദേശത്തിന് മുകളിൽ എഴുതാൻ കാരണമാകും. തീർച്ചയായും മുൻപോട്ട് പോകാൻ തീരുമാനിച്ചുവോ?",
+  "confirmations.unfollow.confirm": "പിന്തുടരുന്നത് നിര്‍ത്തുക",
+  "confirmations.unfollow.message": "നിങ്ങൾ {name} യെ പിന്തുടരുന്നത് നിർത്തുവാൻ തീർച്ചയായും തീരുമാനിച്ചുവോ?",
+  "conversation.delete": "സംഭാഷണം മായിക്കുക",
+  "conversation.mark_as_read": "വായിച്ചതായി അടയാളപ്പെടുത്തുക",
+  "conversation.open": "സംഭാഷണം കാണുക",
+  "conversation.with": "{names} കൂടെ",
+  "directory.federated": "അറിയപ്പെടുന്ന ഫെഡിവേഴ്‌സ്ൽ നിന്ന്",
+  "directory.local": "{domain} ൽ നിന്ന് മാത്രം",
+  "directory.new_arrivals": "പുതിയ വരവുകൾ",
+  "directory.recently_active": "അടുത്തിടെയായി സജീവമായ",
+  "embed.instructions": "Embed this status on your website by copying the code below.",
+  "embed.preview": "ഇത് ഇങ്ങനെ കാണപ്പെടും:",
+  "emoji_button.activity": "പ്രവര്‍ത്തനം",
+  "emoji_button.custom": "സ്വന്തമായ ഭേദഗതി",
+  "emoji_button.flags": "കൊടികൾ",
+  "emoji_button.food": "ഭക്ഷണവും പാനീയവും",
+  "emoji_button.label": "ഇമോജി ചേർക്കുക",
+  "emoji_button.nature": "പ്രകൃതി",
+  "emoji_button.not_found": "No emojos!! (╯°□°)╯︵ ┻━┻",
+  "emoji_button.objects": "വസ്തുക്കൾ",
+  "emoji_button.people": "ആളുകൾ",
+  "emoji_button.recent": "അടിക്കടി ഉപയോഗിക്കുന്നവ",
+  "emoji_button.search": "തിരയുക...",
+  "emoji_button.search_results": "തിരച്ചിൽ ഫലങ്ങൾ",
+  "emoji_button.symbols": "ചിഹ്നങ്ങൾ",
+  "emoji_button.travel": "യാത്രയും സ്ഥലങ്ങളും",
+  "empty_column.account_timeline": "ഇവിടെ ടൂട്ടുകൾ ഇല്ല!",
+  "empty_column.account_unavailable": "പ്രൊഫൈൽ ലഭ്യമല്ല",
+  "empty_column.blocks": "നിങ്ങൾ ഇതുവരെ ഒരു ഉപയോക്താക്കളെയും തടഞ്ഞിട്ടില്ല.",
+  "empty_column.bookmarked_statuses": "You don't have any bookmarked toots yet. When you bookmark one, it will show up here.",
+  "empty_column.community": "പ്രാദേശികമായ സമയരേഖ ശൂന്യമാണ്. എന്തെങ്കിലും പരസ്യമായി എഴുതി തുടക്കം കുറിക്കു!",
+  "empty_column.direct": "നിങ്ങൾക്ക് ഇതുവരെ നേരിട്ടുള്ള സന്ദേശങ്ങൾ ഒന്നുമില്ല. നിങ്ങൾ അങ്ങനെ ഒന്ന് അയക്കുകയോ, നിങ്ങൾക്ക് ലഭിക്കുകയോ ചെയ്യുന്നപക്ഷം അതിവിടെ കാണപ്പെടുന്നതാണ്.",
+  "empty_column.domain_blocks": "മറയ്ക്കപ്പെട്ടിരിക്കുന്ന മേഖലകൾ ഇതുവരെ ഇല്ല.",
+  "empty_column.favourited_statuses": "നിങ്ങൾക്ക് ഇത് വരെ ഒരു പ്രിയപ്പെട്ട ടൂട്ടും ഇല്ല. നിങ്ങൾ അങ്ങനെ ഒന്ന് പ്രിയപ്പെടുന്ന പക്ഷം അതിവിടെ കാണപ്പെടുന്നതാണ്.",
+  "empty_column.favourites": "ഇതുവരെ ആരും ഈ ടൂട്ട് പ്രിയപ്പെട്ടതായി അടയാളപ്പെടുത്തിയിട്ടില്ല. ആരെങ്കിലും അങ്ങനെ ചെയ്യുന്നപക്ഷം അതിവിടെ കാണപ്പെടുന്നതാണ്.",
+  "empty_column.follow_requests": "You don't have any follow requests yet. When you receive one, it will show up here.",
+  "empty_column.hashtag": "There is nothing in this hashtag yet.",
+  "empty_column.home": "Your home timeline is empty! Visit {public} or use search to get started and meet other users.",
+  "empty_column.home.public_timeline": "the public timeline",
+  "empty_column.list": "There is nothing in this list yet. When members of this list post new statuses, they will appear here.",
+  "empty_column.lists": "You don't have any lists yet. When you create one, it will show up here.",
+  "empty_column.mutes": "You haven't muted any users yet.",
+  "empty_column.notifications": "നിങ്ങൾക്ക് ഇതുവരെ ഒരു അറിയിപ്പുകളും ഇല്ല. മറ്റുള്ളവരുമായി ഇടപെട്ട് സംഭാഷണത്തിന് തുടക്കം കുറിക്കു.",
+  "empty_column.public": "ഇവിടെ ഒന്നുമില്ലല്ലോ! ഇവിടെ നിറയ്ക്കാൻ എന്തെങ്കിലും പരസ്യമായി എഴുതുകയോ മറ്റ് ഉപഭോക്താക്കളെ പിന്തുടരുകയോ ചെയ്യുക",
+  "error.unexpected_crash.explanation": "Due to a bug in our code or a browser compatibility issue, this page could not be displayed correctly.",
+  "error.unexpected_crash.next_steps": "Try refreshing the page. If that does not help, you may still be able to use Mastodon through a different browser or native app.",
+  "errors.unexpected_crash.copy_stacktrace": "Copy stacktrace to clipboard",
+  "errors.unexpected_crash.report_issue": "പ്രശ്നം അറിയിക്കുക",
+  "follow_request.authorize": "ചുമതലപ്പെടുത്തുക",
+  "follow_request.reject": "നിരസിക്കുക",
+  "getting_started.developers": "വികസിപ്പിക്കുന്നവർ",
+  "getting_started.directory": "രൂപരേഖ നാമഗൃഹസൂചി",
+  "getting_started.documentation": "രേഖാ സമാഹരണം",
+  "getting_started.heading": "തുടക്കം കുറിക്കുക",
+  "getting_started.invite": "ആളുകളെ ക്ഷണിക്കുക",
+  "getting_started.open_source_notice": "മാസ്റ്റഡോൺ ഒരു സ്വതന്ത്ര സോഫ്ട്‍വെയർ ആണ്. നിങ്ങൾക്ക് {github} GitHub ൽ സംഭാവന ചെയ്യുകയോ പ്രശ്നങ്ങൾ അറിയിക്കുകയോ ചെയ്യാം.",
+  "getting_started.security": "അംഗത്വ ക്രമീകരണങ്ങൾ",
+  "getting_started.terms": "സേവന വ്യവസ്ഥകൾ",
+  "hashtag.column_header.tag_mode.all": "{additional} ഉം കൂടെ",
+  "hashtag.column_header.tag_mode.any": "അല്ലെങ്കിൽ {additional}",
+  "hashtag.column_header.tag_mode.none": "{additional} ഇല്ലാതെ",
+  "hashtag.column_settings.select.no_options_message": "ഒരു സൂചനയും കണ്ടെത്തിയില്ല",
+  "hashtag.column_settings.select.placeholder": "ചർച്ചാവിഷയങ്ങൾ എഴുതുക…",
+  "hashtag.column_settings.tag_mode.all": "ഇവയെല്ലാം",
+  "hashtag.column_settings.tag_mode.any": "ഇവയിലേതെങ്കിലും",
+  "hashtag.column_settings.tag_mode.none": "ഇതിലൊന്നുമല്ല",
+  "hashtag.column_settings.tag_toggle": "ഈ എഴുത്തുപംക്തിക്ക് കൂടുതൽ ഉപനാമങ്ങൾ ചേർക്കുക",
+  "home.column_settings.basic": "അടിസ്ഥാനം",
+  "home.column_settings.show_reblogs": "ബൂസ്റ്റുകൾ കാണിക്കുക",
+  "home.column_settings.show_replies": "മറുപടികൾ കാണിക്കുക",
+  "intervals.full.days": "{number, plural, one {# day} other {# days}}",
+  "intervals.full.hours": "{number, plural, one {# hour} other {# hours}}",
+  "intervals.full.minutes": "{number, plural, one {# minute} other {# minutes}}",
+  "introduction.federation.action": "അടുത്തത്",
+  "introduction.federation.federated.headline": "സംയുക്തമാക്കിയ",
+  "introduction.federation.federated.text": "Public posts from other servers of the fediverse will appear in the federated timeline.",
+  "introduction.federation.home.headline": "ഭവനം",
+  "introduction.federation.home.text": "Posts from people you follow will appear in your home feed. You can follow anyone on any server!",
+  "introduction.federation.local.headline": "പ്രാദേശികം",
+  "introduction.federation.local.text": "Public posts from people on the same server as you will appear in the local timeline.",
+  "introduction.interactions.action": "പഠനസഹായി പൂർത്തീകരിക്കുക!",
+  "introduction.interactions.favourite.headline": "പ്രിയപ്പെട്ടത്",
+  "introduction.interactions.favourite.text": "You can save a toot for later, and let the author know that you liked it, by favouriting it.",
+  "introduction.interactions.reblog.headline": "ബൂസ്റ്റ് ചെയ്യുക",
+  "introduction.interactions.reblog.text": "You can share other people's toots with your followers by boosting them.",
+  "introduction.interactions.reply.headline": "മറുപടി",
+  "introduction.interactions.reply.text": "You can reply to other people's and your own toots, which will chain them together in a conversation.",
+  "introduction.welcome.action": "നമുക്ക് തുടങ്ങാം!",
+  "introduction.welcome.headline": "ആദ്യ ചുവടുവെപ്പുകൾ",
+  "introduction.welcome.text": "Welcome to the fediverse! In a few moments, you'll be able to broadcast messages and talk to your friends across a wide variety of servers. But this server, {domain}, is special—it hosts your profile, so remember its name.",
+  "keyboard_shortcuts.back": "തിരികെ പോകുക",
+  "keyboard_shortcuts.blocked": "to open blocked users list",
+  "keyboard_shortcuts.boost": "to boost",
+  "keyboard_shortcuts.column": "to focus a status in one of the columns",
+  "keyboard_shortcuts.compose": "to focus the compose textarea",
+  "keyboard_shortcuts.description": "വിവരണം",
+  "keyboard_shortcuts.direct": "to open direct messages column",
+  "keyboard_shortcuts.down": "to move down in the list",
+  "keyboard_shortcuts.enter": "to open status",
+  "keyboard_shortcuts.favourite": "to favourite",
+  "keyboard_shortcuts.favourites": "to open favourites list",
+  "keyboard_shortcuts.federated": "to open federated timeline",
+  "keyboard_shortcuts.heading": "കീബോർഡ് എളുപ്പവഴികൾ",
+  "keyboard_shortcuts.home": "to open home timeline",
+  "keyboard_shortcuts.hotkey": "Hotkey",
+  "keyboard_shortcuts.legend": "to display this legend",
+  "keyboard_shortcuts.local": "to open local timeline",
+  "keyboard_shortcuts.mention": "to mention author",
+  "keyboard_shortcuts.muted": "to open muted users list",
+  "keyboard_shortcuts.my_profile": "to open your profile",
+  "keyboard_shortcuts.notifications": "to open notifications column",
+  "keyboard_shortcuts.open_media": "to open media",
+  "keyboard_shortcuts.pinned": "to open pinned toots list",
+  "keyboard_shortcuts.profile": "to open author's profile",
+  "keyboard_shortcuts.reply": "to reply",
+  "keyboard_shortcuts.requests": "to open follow requests list",
+  "keyboard_shortcuts.search": "to focus search",
+  "keyboard_shortcuts.start": "to open \"get started\" column",
+  "keyboard_shortcuts.toggle_hidden": "to show/hide text behind CW",
+  "keyboard_shortcuts.toggle_sensitivity": "to show/hide media",
+  "keyboard_shortcuts.toot": "to start a brand new toot",
+  "keyboard_shortcuts.unfocus": "to un-focus compose textarea/search",
+  "keyboard_shortcuts.up": "to move up in the list",
+  "lightbox.close": "Close",
+  "lightbox.next": "Next",
+  "lightbox.previous": "Previous",
+  "lightbox.view_context": "View context",
+  "lists.account.add": "Add to list",
+  "lists.account.remove": "Remove from list",
+  "lists.delete": "Delete list",
+  "lists.edit": "Edit list",
+  "lists.edit.submit": "Change title",
+  "lists.new.create": "Add list",
+  "lists.new.title_placeholder": "New list title",
+  "lists.search": "Search among people you follow",
+  "lists.subheading": "Your lists",
+  "load_pending": "{count, plural, one {# new item} other {# new items}}",
+  "loading_indicator.label": "Loading...",
+  "media_gallery.toggle_visible": "Toggle visibility",
+  "missing_indicator.label": "Not found",
+  "missing_indicator.sublabel": "This resource could not be found",
+  "mute_modal.hide_notifications": "Hide notifications from this user?",
+  "navigation_bar.apps": "Mobile apps",
+  "navigation_bar.blocks": "Blocked users",
+  "navigation_bar.bookmarks": "Bookmarks",
+  "navigation_bar.community_timeline": "Local timeline",
+  "navigation_bar.compose": "Compose new toot",
+  "navigation_bar.direct": "Direct messages",
+  "navigation_bar.discover": "Discover",
+  "navigation_bar.domain_blocks": "Hidden domains",
+  "navigation_bar.edit_profile": "Edit profile",
+  "navigation_bar.favourites": "Favourites",
+  "navigation_bar.filters": "Muted words",
+  "navigation_bar.follow_requests": "Follow requests",
+  "navigation_bar.follows_and_followers": "Follows and followers",
+  "navigation_bar.info": "About this server",
+  "navigation_bar.keyboard_shortcuts": "Hotkeys",
+  "navigation_bar.lists": "Lists",
+  "navigation_bar.logout": "Logout",
+  "navigation_bar.mutes": "Muted users",
+  "navigation_bar.personal": "Personal",
+  "navigation_bar.pins": "Pinned toots",
+  "navigation_bar.preferences": "Preferences",
+  "navigation_bar.public_timeline": "Federated timeline",
+  "navigation_bar.security": "Security",
+  "notification.favourite": "{name} favourited your status",
+  "notification.follow": "{name} followed you",
+  "notification.follow_request": "{name} has requested to follow you",
+  "notification.mention": "{name} mentioned you",
+  "notification.own_poll": "Your poll has ended",
+  "notification.poll": "A poll you have voted in has ended",
+  "notification.reblog": "{name} boosted your status",
+  "notifications.clear": "Clear notifications",
+  "notifications.clear_confirmation": "Are you sure you want to permanently clear all your notifications?",
+  "notifications.column_settings.alert": "Desktop notifications",
+  "notifications.column_settings.favourite": "Favourites:",
+  "notifications.column_settings.filter_bar.advanced": "Display all categories",
+  "notifications.column_settings.filter_bar.category": "Quick filter bar",
+  "notifications.column_settings.filter_bar.show": "Show",
+  "notifications.column_settings.follow": "New followers:",
+  "notifications.column_settings.follow_request": "New follow requests:",
+  "notifications.column_settings.mention": "Mentions:",
+  "notifications.column_settings.poll": "Poll results:",
+  "notifications.column_settings.push": "Push notifications",
+  "notifications.column_settings.reblog": "Boosts:",
+  "notifications.column_settings.show": "Show in column",
+  "notifications.column_settings.sound": "Play sound",
+  "notifications.filter.all": "All",
+  "notifications.filter.boosts": "Boosts",
+  "notifications.filter.favourites": "Favourites",
+  "notifications.filter.follows": "Follows",
+  "notifications.filter.mentions": "Mentions",
+  "notifications.filter.polls": "Poll results",
+  "notifications.group": "{count} notifications",
+  "poll.closed": "Closed",
+  "poll.refresh": "Refresh",
+  "poll.total_people": "{count, plural, one {# person} other {# people}}",
+  "poll.total_votes": "{count, plural, one {# vote} other {# votes}}",
+  "poll.vote": "Vote",
+  "poll.voted": "You voted for this answer",
+  "poll_button.add_poll": "Add a poll",
+  "poll_button.remove_poll": "Remove poll",
+  "privacy.change": "Adjust status privacy",
+  "privacy.direct.long": "Post to mentioned users only",
+  "privacy.direct.short": "Direct",
+  "privacy.private.long": "Post to followers only",
+  "privacy.private.short": "Followers-only",
+  "privacy.public.long": "Post to public timelines",
+  "privacy.public.short": "Public",
+  "privacy.unlisted.long": "Do not show in public timelines",
+  "privacy.unlisted.short": "Unlisted",
+  "refresh": "Refresh",
+  "regeneration_indicator.label": "Loading…",
+  "regeneration_indicator.sublabel": "Your home feed is being prepared!",
+  "relative_time.days": "{number}d",
+  "relative_time.hours": "{number}h",
+  "relative_time.just_now": "now",
+  "relative_time.minutes": "{number}m",
+  "relative_time.seconds": "{number}s",
+  "reply_indicator.cancel": "Cancel",
+  "report.forward": "Forward to {target}",
+  "report.forward_hint": "The account is from another server. Send an anonymized copy of the report there as well?",
+  "report.hint": "The report will be sent to your server moderators. You can provide an explanation of why you are reporting this account below:",
+  "report.placeholder": "Additional comments",
+  "report.submit": "Submit",
+  "report.target": "Report {target}",
+  "search.placeholder": "Search",
+  "search_popout.search_format": "Advanced search format",
+  "search_popout.tips.full_text": "Simple text returns statuses you have written, favourited, boosted, or have been mentioned in, as well as matching usernames, display names, and hashtags.",
+  "search_popout.tips.hashtag": "hashtag",
+  "search_popout.tips.status": "status",
+  "search_popout.tips.text": "Simple text returns matching display names, usernames and hashtags",
+  "search_popout.tips.user": "user",
+  "search_results.accounts": "People",
+  "search_results.hashtags": "Hashtags",
+  "search_results.statuses": "Toots",
+  "search_results.statuses_fts_disabled": "Searching toots by their content is not enabled on this Mastodon server.",
+  "search_results.total": "{count, number} {count, plural, one {result} other {results}}",
+  "status.admin_account": "Open moderation interface for @{name}",
+  "status.admin_status": "Open this status in the moderation interface",
+  "status.block": "Block @{name}",
+  "status.bookmark": "Bookmark",
+  "status.cancel_reblog_private": "Unboost",
+  "status.cannot_reblog": "This post cannot be boosted",
+  "status.copy": "Copy link to status",
+  "status.delete": "Delete",
+  "status.detailed_status": "Detailed conversation view",
+  "status.direct": "Direct message @{name}",
+  "status.embed": "Embed",
+  "status.favourite": "Favourite",
+  "status.filtered": "Filtered",
+  "status.load_more": "Load more",
+  "status.media_hidden": "Media hidden",
+  "status.mention": "Mention @{name}",
+  "status.more": "More",
+  "status.mute": "Mute @{name}",
+  "status.mute_conversation": "Mute conversation",
+  "status.open": "Expand this status",
+  "status.pin": "Pin on profile",
+  "status.pinned": "Pinned toot",
+  "status.read_more": "Read more",
+  "status.reblog": "Boost",
+  "status.reblog_private": "Boost to original audience",
+  "status.reblogged_by": "{name} boosted",
+  "status.reblogs.empty": "No one has boosted this toot yet. When someone does, they will show up here.",
+  "status.redraft": "Delete & re-draft",
+  "status.remove_bookmark": "Remove bookmark",
+  "status.reply": "Reply",
+  "status.replyAll": "Reply to thread",
+  "status.report": "Report @{name}",
+  "status.sensitive_warning": "Sensitive content",
+  "status.share": "Share",
+  "status.show_less": "Show less",
+  "status.show_less_all": "Show less for all",
+  "status.show_more": "Show more",
+  "status.show_more_all": "Show more for all",
+  "status.show_thread": "Show thread",
+  "status.uncached_media_warning": "Not available",
+  "status.unmute_conversation": "Unmute conversation",
+  "status.unpin": "Unpin from profile",
+  "suggestions.dismiss": "Dismiss suggestion",
+  "suggestions.header": "You might be interested in…",
+  "tabs_bar.federated_timeline": "Federated",
+  "tabs_bar.home": "Home",
+  "tabs_bar.local_timeline": "Local",
+  "tabs_bar.notifications": "Notifications",
+  "tabs_bar.search": "Search",
+  "time_remaining.days": "{number, plural, one {# day} other {# days}} left",
+  "time_remaining.hours": "{number, plural, one {# hour} other {# hours}} left",
+  "time_remaining.minutes": "{number, plural, one {# minute} other {# minutes}} left",
+  "time_remaining.moments": "Moments remaining",
+  "time_remaining.seconds": "{number, plural, one {# second} other {# seconds}} left",
+  "trends.count_by_accounts": "{count} {rawCount, plural, one {person} other {people}} talking",
+  "trends.trending_now": "Trending now",
+  "ui.beforeunload": "Your draft will be lost if you leave Mastodon.",
+  "upload_area.title": "Drag & drop to upload",
+  "upload_button.label": "Add media ({formats})",
+  "upload_error.limit": "File upload limit exceeded.",
+  "upload_error.poll": "File upload not allowed with polls.",
+  "upload_form.audio_description": "Describe for people with hearing loss",
+  "upload_form.description": "Describe for the visually impaired",
+  "upload_form.edit": "Edit",
+  "upload_form.undo": "Delete",
+  "upload_form.video_description": "Describe for people with hearing loss or visual impairment",
+  "upload_modal.analyzing_picture": "Analyzing picture…",
+  "upload_modal.apply": "Apply",
+  "upload_modal.description_placeholder": "A quick brown fox jumps over the lazy dog",
+  "upload_modal.detect_text": "Detect text from picture",
+  "upload_modal.edit_media": "Edit media",
+  "upload_modal.hint": "Click or drag the circle on the preview to choose the focal point which will always be in view on all thumbnails.",
+  "upload_modal.preview_label": "Preview ({ratio})",
+  "upload_progress.label": "Uploading…",
+  "video.close": "Close video",
+  "video.download": "Download file",
+  "video.exit_fullscreen": "Exit full screen",
+  "video.expand": "Expand video",
+  "video.fullscreen": "Full screen",
+  "video.hide": "Hide video",
+  "video.mute": "Mute sound",
+  "video.pause": "Pause",
+  "video.play": "Play",
+  "video.unmute": "Unmute sound"
+}
diff --git a/app/javascript/mastodon/locales/mr.json b/app/javascript/mastodon/locales/mr.json
new file mode 100644
index 0000000000000000000000000000000000000000..a4dcbb144fd663148bbe356c0cc5178af80d2a1d
--- /dev/null
+++ b/app/javascript/mastodon/locales/mr.json
@@ -0,0 +1,438 @@
+{
+  "account.add_or_remove_from_list": "यादीत घाला किंवा यादीतून काढून टाका",
+  "account.badges.bot": "स्वयंचलित खाते",
+  "account.badges.group": "Group",
+  "account.block": "@{name} यांना ब्लॉक करा",
+  "account.block_domain": "{domain} पासून सर्व लपवा",
+  "account.blocked": "ब्लॉक केले आहे",
+  "account.cancel_follow_request": "अनुयायी होण्याची विनंती रद्द करा",
+  "account.direct": "थेट संदेश @{name}",
+  "account.domain_blocked": "Domain hidden",
+  "account.edit_profile": "प्रोफाइल एडिट करा",
+  "account.endorse": "Feature on profile",
+  "account.follow": "अनुयायी व्हा",
+  "account.followers": "अनुयायी",
+  "account.followers.empty": "ह्या वापरकर्त्याचा आतापर्यंत कोणी अनुयायी नाही.",
+  "account.follows": "अनुयायी आहे",
+  "account.follows.empty": "हा वापरकर्ता अजूनपर्यंत कोणाचा अनुयायी नाही.",
+  "account.follows_you": "तुमचा अनुयायी आहे",
+  "account.hide_reblogs": "@{name} पासून सर्व बूस्ट लपवा",
+  "account.last_status": "शेवटचे सक्रिय",
+  "account.link_verified_on": "Ownership of this link was checked on {date}",
+  "account.locked_info": "This account privacy status is set to locked. The owner manually reviews who can follow them.",
+  "account.media": "दृक्‌‌श्राव्य मजकूर",
+  "account.mention": "@{name} चा उल्लेख करा",
+  "account.moved_to": "{name} आता आहे:",
+  "account.mute": "@{name} ला मूक कारा",
+  "account.mute_notifications": "Mute notifications from @{name}",
+  "account.muted": "Muted",
+  "account.never_active": "Never",
+  "account.posts": "Toots",
+  "account.posts_with_replies": "Toots and replies",
+  "account.report": "Report @{name}",
+  "account.requested": "Awaiting approval",
+  "account.share": "Share @{name}'s profile",
+  "account.show_reblogs": "{name}चे सर्व बुस्ट्स दाखवा",
+  "account.unblock": "@{name} ला ब्लॉक करा",
+  "account.unblock_domain": "उघड करा {domain}",
+  "account.unendorse": "Don't feature on profile",
+  "account.unfollow": "अनुयायी असणे थांबवा",
+  "account.unmute": "Unmute @{name}",
+  "account.unmute_notifications": "Unmute notifications from @{name}",
+  "alert.rate_limited.message": "Please retry after {retry_time, time, medium}.",
+  "alert.rate_limited.title": "Rate limited",
+  "alert.unexpected.message": "An unexpected error occurred.",
+  "alert.unexpected.title": "अरेरे!",
+  "autosuggest_hashtag.per_week": "{count} प्रतिसप्ताह",
+  "boost_modal.combo": "You can press {combo} to skip this next time",
+  "bundle_column_error.body": "हा घटक लोड करतांना काहीतरी चुकले आहे.",
+  "bundle_column_error.retry": "पुन्हा प्रयत्न करा",
+  "bundle_column_error.title": "नेटवर्क त्रुटी",
+  "bundle_modal_error.close": "बंद करा",
+  "bundle_modal_error.message": "हा घटक लोड करतांना काहीतरी चुकले आहे.",
+  "bundle_modal_error.retry": "पुन्हा प्रयत्न करा",
+  "column.blocks": "ब्लॉक केलेले खातेधारक",
+  "column.bookmarks": "Bookmarks",
+  "column.community": "Local timeline",
+  "column.direct": "थेट संदेश",
+  "column.directory": "Browse profiles",
+  "column.domain_blocks": "गुप्त डोमेन्स",
+  "column.favourites": "आवडते",
+  "column.follow_requests": "अनुचरण विनंत्या",
+  "column.home": "मुख्यपृष्ठ",
+  "column.lists": "याद्या",
+  "column.mutes": "नि: शब्द खातेधारक",
+  "column.notifications": "सूचना",
+  "column.pins": "Pinned toot",
+  "column.public": "Federated timeline",
+  "column_back_button.label": "मागे",
+  "column_header.hide_settings": "सेटिंग लपवा",
+  "column_header.moveLeft_settings": "स्तंभ डावीकडे सरकवा",
+  "column_header.moveRight_settings": "स्तंभ उजवीकडे सरकवा",
+  "column_header.pin": "टाचण",
+  "column_header.show_settings": "सेटिंग्स दाखवा",
+  "column_header.unpin": "अनपिन करा",
+  "column_subheading.settings": "सेटिंग्ज",
+  "community.column_settings.media_only": "केवळ मीडिया",
+  "compose_form.direct_message_warning": "This toot will only be sent to all the mentioned users.",
+  "compose_form.direct_message_warning_learn_more": "अधिक जाणून घ्या",
+  "compose_form.hashtag_warning": "This toot won't be listed under any hashtag as it is unlisted. Only public toots can be searched by hashtag.",
+  "compose_form.lock_disclaimer": "Your account is not {locked}. Anyone can follow you to view your follower-only posts.",
+  "compose_form.lock_disclaimer.lock": "locked",
+  "compose_form.placeholder": "आपल्या मनात काय आहे?",
+  "compose_form.poll.add_option": "नवीन पर्याय",
+  "compose_form.poll.duration": "Poll duration",
+  "compose_form.poll.option_placeholder": "निवड {number}",
+  "compose_form.poll.remove_option": "हा पर्याय काढा",
+  "compose_form.poll.switch_to_multiple": "Change poll to allow multiple choices",
+  "compose_form.poll.switch_to_single": "Change poll to allow for a single choice",
+  "compose_form.publish": "Toot",
+  "compose_form.publish_loud": "{publish}!",
+  "compose_form.sensitive.hide": "Mark media as sensitive",
+  "compose_form.sensitive.marked": "Media is marked as sensitive",
+  "compose_form.sensitive.unmarked": "Media is not marked as sensitive",
+  "compose_form.spoiler.marked": "Text is hidden behind warning",
+  "compose_form.spoiler.unmarked": "Text is not hidden",
+  "compose_form.spoiler_placeholder": "Write your warning here",
+  "confirmation_modal.cancel": "Cancel",
+  "confirmations.block.block_and_report": "Block & Report",
+  "confirmations.block.confirm": "Block",
+  "confirmations.block.message": "Are you sure you want to block {name}?",
+  "confirmations.delete.confirm": "हटवा",
+  "confirmations.delete.message": "हे स्टेटस तुम्हाला नक्की हटवायचंय?",
+  "confirmations.delete_list.confirm": "हटवा",
+  "confirmations.delete_list.message": "ही यादी तुम्हाला नक्की कायमची हटवायचीय?",
+  "confirmations.domain_block.confirm": "संपूर्ण डोमेन लपवा",
+  "confirmations.domain_block.message": "Are you really, really sure you want to block the entire {domain}? In most cases a few targeted blocks or mutes are sufficient and preferable. You will not see content from that domain in any public timelines or your notifications. Your followers from that domain will be removed.",
+  "confirmations.logout.confirm": "Log out",
+  "confirmations.logout.message": "Are you sure you want to log out?",
+  "confirmations.mute.confirm": "Mute",
+  "confirmations.mute.explanation": "This will hide posts from them and posts mentioning them, but it will still allow them to see your posts and follow you.",
+  "confirmations.mute.message": "Are you sure you want to mute {name}?",
+  "confirmations.redraft.confirm": "Delete & redraft",
+  "confirmations.redraft.message": "Are you sure you want to delete this status and re-draft it? Favourites and boosts will be lost, and replies to the original post will be orphaned.",
+  "confirmations.reply.confirm": "Reply",
+  "confirmations.reply.message": "Replying now will overwrite the message you are currently composing. Are you sure you want to proceed?",
+  "confirmations.unfollow.confirm": "Unfollow",
+  "confirmations.unfollow.message": "Are you sure you want to unfollow {name}?",
+  "conversation.delete": "Delete conversation",
+  "conversation.mark_as_read": "Mark as read",
+  "conversation.open": "View conversation",
+  "conversation.with": "With {names}",
+  "directory.federated": "From known fediverse",
+  "directory.local": "From {domain} only",
+  "directory.new_arrivals": "New arrivals",
+  "directory.recently_active": "Recently active",
+  "embed.instructions": "Embed this status on your website by copying the code below.",
+  "embed.preview": "Here is what it will look like:",
+  "emoji_button.activity": "Activity",
+  "emoji_button.custom": "Custom",
+  "emoji_button.flags": "Flags",
+  "emoji_button.food": "Food & Drink",
+  "emoji_button.label": "Insert emoji",
+  "emoji_button.nature": "Nature",
+  "emoji_button.not_found": "No emojos!! (╯°□°)╯︵ ┻━┻",
+  "emoji_button.objects": "Objects",
+  "emoji_button.people": "People",
+  "emoji_button.recent": "Frequently used",
+  "emoji_button.search": "Search...",
+  "emoji_button.search_results": "Search results",
+  "emoji_button.symbols": "Symbols",
+  "emoji_button.travel": "Travel & Places",
+  "empty_column.account_timeline": "No toots here!",
+  "empty_column.account_unavailable": "Profile unavailable",
+  "empty_column.blocks": "You haven't blocked any users yet.",
+  "empty_column.bookmarked_statuses": "You don't have any bookmarked toots yet. When you bookmark one, it will show up here.",
+  "empty_column.community": "The local timeline is empty. Write something publicly to get the ball rolling!",
+  "empty_column.direct": "You don't have any direct messages yet. When you send or receive one, it will show up here.",
+  "empty_column.domain_blocks": "There are no hidden domains yet.",
+  "empty_column.favourited_statuses": "You don't have any favourite toots yet. When you favourite one, it will show up here.",
+  "empty_column.favourites": "No one has favourited this toot yet. When someone does, they will show up here.",
+  "empty_column.follow_requests": "You don't have any follow requests yet. When you receive one, it will show up here.",
+  "empty_column.hashtag": "There is nothing in this hashtag yet.",
+  "empty_column.home": "Your home timeline is empty! Visit {public} or use search to get started and meet other users.",
+  "empty_column.home.public_timeline": "the public timeline",
+  "empty_column.list": "There is nothing in this list yet. When members of this list post new statuses, they will appear here.",
+  "empty_column.lists": "You don't have any lists yet. When you create one, it will show up here.",
+  "empty_column.mutes": "You haven't muted any users yet.",
+  "empty_column.notifications": "You don't have any notifications yet. Interact with others to start the conversation.",
+  "empty_column.public": "There is nothing here! Write something publicly, or manually follow users from other servers to fill it up",
+  "error.unexpected_crash.explanation": "Due to a bug in our code or a browser compatibility issue, this page could not be displayed correctly.",
+  "error.unexpected_crash.next_steps": "Try refreshing the page. If that does not help, you may still be able to use Mastodon through a different browser or native app.",
+  "errors.unexpected_crash.copy_stacktrace": "Copy stacktrace to clipboard",
+  "errors.unexpected_crash.report_issue": "Report issue",
+  "follow_request.authorize": "Authorize",
+  "follow_request.reject": "Reject",
+  "getting_started.developers": "Developers",
+  "getting_started.directory": "Profile directory",
+  "getting_started.documentation": "Documentation",
+  "getting_started.heading": "Getting started",
+  "getting_started.invite": "Invite people",
+  "getting_started.open_source_notice": "Mastodon is open source software. You can contribute or report issues on GitHub at {github}.",
+  "getting_started.security": "Security",
+  "getting_started.terms": "Terms of service",
+  "hashtag.column_header.tag_mode.all": "and {additional}",
+  "hashtag.column_header.tag_mode.any": "or {additional}",
+  "hashtag.column_header.tag_mode.none": "without {additional}",
+  "hashtag.column_settings.select.no_options_message": "No suggestions found",
+  "hashtag.column_settings.select.placeholder": "Enter hashtags…",
+  "hashtag.column_settings.tag_mode.all": "All of these",
+  "hashtag.column_settings.tag_mode.any": "Any of these",
+  "hashtag.column_settings.tag_mode.none": "None of these",
+  "hashtag.column_settings.tag_toggle": "Include additional tags in this column",
+  "home.column_settings.basic": "Basic",
+  "home.column_settings.show_reblogs": "Show boosts",
+  "home.column_settings.show_replies": "Show replies",
+  "intervals.full.days": "{number, plural, one {# day} other {# days}}",
+  "intervals.full.hours": "{number, plural, one {# hour} other {# hours}}",
+  "intervals.full.minutes": "{number, plural, one {# minute} other {# minutes}}",
+  "introduction.federation.action": "Next",
+  "introduction.federation.federated.headline": "Federated",
+  "introduction.federation.federated.text": "Public posts from other servers of the fediverse will appear in the federated timeline.",
+  "introduction.federation.home.headline": "Home",
+  "introduction.federation.home.text": "Posts from people you follow will appear in your home feed. You can follow anyone on any server!",
+  "introduction.federation.local.headline": "Local",
+  "introduction.federation.local.text": "Public posts from people on the same server as you will appear in the local timeline.",
+  "introduction.interactions.action": "Finish toot-orial!",
+  "introduction.interactions.favourite.headline": "Favourite",
+  "introduction.interactions.favourite.text": "You can save a toot for later, and let the author know that you liked it, by favouriting it.",
+  "introduction.interactions.reblog.headline": "Boost",
+  "introduction.interactions.reblog.text": "You can share other people's toots with your followers by boosting them.",
+  "introduction.interactions.reply.headline": "Reply",
+  "introduction.interactions.reply.text": "You can reply to other people's and your own toots, which will chain them together in a conversation.",
+  "introduction.welcome.action": "Let's go!",
+  "introduction.welcome.headline": "First steps",
+  "introduction.welcome.text": "Welcome to the fediverse! In a few moments, you'll be able to broadcast messages and talk to your friends across a wide variety of servers. But this server, {domain}, is special—it hosts your profile, so remember its name.",
+  "keyboard_shortcuts.back": "to navigate back",
+  "keyboard_shortcuts.blocked": "to open blocked users list",
+  "keyboard_shortcuts.boost": "to boost",
+  "keyboard_shortcuts.column": "to focus a status in one of the columns",
+  "keyboard_shortcuts.compose": "to focus the compose textarea",
+  "keyboard_shortcuts.description": "Description",
+  "keyboard_shortcuts.direct": "to open direct messages column",
+  "keyboard_shortcuts.down": "to move down in the list",
+  "keyboard_shortcuts.enter": "to open status",
+  "keyboard_shortcuts.favourite": "to favourite",
+  "keyboard_shortcuts.favourites": "to open favourites list",
+  "keyboard_shortcuts.federated": "to open federated timeline",
+  "keyboard_shortcuts.heading": "Keyboard Shortcuts",
+  "keyboard_shortcuts.home": "to open home timeline",
+  "keyboard_shortcuts.hotkey": "Hotkey",
+  "keyboard_shortcuts.legend": "to display this legend",
+  "keyboard_shortcuts.local": "to open local timeline",
+  "keyboard_shortcuts.mention": "to mention author",
+  "keyboard_shortcuts.muted": "to open muted users list",
+  "keyboard_shortcuts.my_profile": "to open your profile",
+  "keyboard_shortcuts.notifications": "to open notifications column",
+  "keyboard_shortcuts.open_media": "to open media",
+  "keyboard_shortcuts.pinned": "to open pinned toots list",
+  "keyboard_shortcuts.profile": "to open author's profile",
+  "keyboard_shortcuts.reply": "to reply",
+  "keyboard_shortcuts.requests": "to open follow requests list",
+  "keyboard_shortcuts.search": "to focus search",
+  "keyboard_shortcuts.start": "to open \"get started\" column",
+  "keyboard_shortcuts.toggle_hidden": "to show/hide text behind CW",
+  "keyboard_shortcuts.toggle_sensitivity": "to show/hide media",
+  "keyboard_shortcuts.toot": "to start a brand new toot",
+  "keyboard_shortcuts.unfocus": "to un-focus compose textarea/search",
+  "keyboard_shortcuts.up": "to move up in the list",
+  "lightbox.close": "Close",
+  "lightbox.next": "Next",
+  "lightbox.previous": "Previous",
+  "lightbox.view_context": "View context",
+  "lists.account.add": "Add to list",
+  "lists.account.remove": "Remove from list",
+  "lists.delete": "Delete list",
+  "lists.edit": "Edit list",
+  "lists.edit.submit": "Change title",
+  "lists.new.create": "Add list",
+  "lists.new.title_placeholder": "New list title",
+  "lists.search": "Search among people you follow",
+  "lists.subheading": "Your lists",
+  "load_pending": "{count, plural, one {# new item} other {# new items}}",
+  "loading_indicator.label": "Loading...",
+  "media_gallery.toggle_visible": "Toggle visibility",
+  "missing_indicator.label": "Not found",
+  "missing_indicator.sublabel": "This resource could not be found",
+  "mute_modal.hide_notifications": "Hide notifications from this user?",
+  "navigation_bar.apps": "Mobile apps",
+  "navigation_bar.blocks": "Blocked users",
+  "navigation_bar.bookmarks": "Bookmarks",
+  "navigation_bar.community_timeline": "Local timeline",
+  "navigation_bar.compose": "Compose new toot",
+  "navigation_bar.direct": "Direct messages",
+  "navigation_bar.discover": "Discover",
+  "navigation_bar.domain_blocks": "Hidden domains",
+  "navigation_bar.edit_profile": "Edit profile",
+  "navigation_bar.favourites": "Favourites",
+  "navigation_bar.filters": "Muted words",
+  "navigation_bar.follow_requests": "Follow requests",
+  "navigation_bar.follows_and_followers": "Follows and followers",
+  "navigation_bar.info": "About this server",
+  "navigation_bar.keyboard_shortcuts": "Hotkeys",
+  "navigation_bar.lists": "Lists",
+  "navigation_bar.logout": "Logout",
+  "navigation_bar.mutes": "Muted users",
+  "navigation_bar.personal": "Personal",
+  "navigation_bar.pins": "Pinned toots",
+  "navigation_bar.preferences": "Preferences",
+  "navigation_bar.public_timeline": "Federated timeline",
+  "navigation_bar.security": "Security",
+  "notification.favourite": "{name} favourited your status",
+  "notification.follow": "{name} followed you",
+  "notification.follow_request": "{name} has requested to follow you",
+  "notification.mention": "{name} mentioned you",
+  "notification.own_poll": "Your poll has ended",
+  "notification.poll": "A poll you have voted in has ended",
+  "notification.reblog": "{name} boosted your status",
+  "notifications.clear": "Clear notifications",
+  "notifications.clear_confirmation": "Are you sure you want to permanently clear all your notifications?",
+  "notifications.column_settings.alert": "Desktop notifications",
+  "notifications.column_settings.favourite": "Favourites:",
+  "notifications.column_settings.filter_bar.advanced": "Display all categories",
+  "notifications.column_settings.filter_bar.category": "Quick filter bar",
+  "notifications.column_settings.filter_bar.show": "Show",
+  "notifications.column_settings.follow": "New followers:",
+  "notifications.column_settings.follow_request": "New follow requests:",
+  "notifications.column_settings.mention": "Mentions:",
+  "notifications.column_settings.poll": "Poll results:",
+  "notifications.column_settings.push": "Push notifications",
+  "notifications.column_settings.reblog": "Boosts:",
+  "notifications.column_settings.show": "Show in column",
+  "notifications.column_settings.sound": "Play sound",
+  "notifications.filter.all": "All",
+  "notifications.filter.boosts": "Boosts",
+  "notifications.filter.favourites": "Favourites",
+  "notifications.filter.follows": "Follows",
+  "notifications.filter.mentions": "Mentions",
+  "notifications.filter.polls": "Poll results",
+  "notifications.group": "{count} notifications",
+  "poll.closed": "Closed",
+  "poll.refresh": "Refresh",
+  "poll.total_people": "{count, plural, one {# person} other {# people}}",
+  "poll.total_votes": "{count, plural, one {# vote} other {# votes}}",
+  "poll.vote": "Vote",
+  "poll.voted": "You voted for this answer",
+  "poll_button.add_poll": "Add a poll",
+  "poll_button.remove_poll": "Remove poll",
+  "privacy.change": "Adjust status privacy",
+  "privacy.direct.long": "Post to mentioned users only",
+  "privacy.direct.short": "Direct",
+  "privacy.private.long": "Post to followers only",
+  "privacy.private.short": "Followers-only",
+  "privacy.public.long": "Post to public timelines",
+  "privacy.public.short": "Public",
+  "privacy.unlisted.long": "Do not show in public timelines",
+  "privacy.unlisted.short": "Unlisted",
+  "refresh": "Refresh",
+  "regeneration_indicator.label": "Loading…",
+  "regeneration_indicator.sublabel": "Your home feed is being prepared!",
+  "relative_time.days": "{number}d",
+  "relative_time.hours": "{number}h",
+  "relative_time.just_now": "now",
+  "relative_time.minutes": "{number}m",
+  "relative_time.seconds": "{number}s",
+  "reply_indicator.cancel": "Cancel",
+  "report.forward": "Forward to {target}",
+  "report.forward_hint": "The account is from another server. Send an anonymized copy of the report there as well?",
+  "report.hint": "The report will be sent to your server moderators. You can provide an explanation of why you are reporting this account below:",
+  "report.placeholder": "Additional comments",
+  "report.submit": "Submit",
+  "report.target": "Report {target}",
+  "search.placeholder": "Search",
+  "search_popout.search_format": "Advanced search format",
+  "search_popout.tips.full_text": "Simple text returns statuses you have written, favourited, boosted, or have been mentioned in, as well as matching usernames, display names, and hashtags.",
+  "search_popout.tips.hashtag": "hashtag",
+  "search_popout.tips.status": "status",
+  "search_popout.tips.text": "Simple text returns matching display names, usernames and hashtags",
+  "search_popout.tips.user": "user",
+  "search_results.accounts": "People",
+  "search_results.hashtags": "Hashtags",
+  "search_results.statuses": "Toots",
+  "search_results.statuses_fts_disabled": "Searching toots by their content is not enabled on this Mastodon server.",
+  "search_results.total": "{count, number} {count, plural, one {result} other {results}}",
+  "status.admin_account": "Open moderation interface for @{name}",
+  "status.admin_status": "Open this status in the moderation interface",
+  "status.block": "Block @{name}",
+  "status.bookmark": "Bookmark",
+  "status.cancel_reblog_private": "Unboost",
+  "status.cannot_reblog": "This post cannot be boosted",
+  "status.copy": "Copy link to status",
+  "status.delete": "Delete",
+  "status.detailed_status": "Detailed conversation view",
+  "status.direct": "Direct message @{name}",
+  "status.embed": "Embed",
+  "status.favourite": "Favourite",
+  "status.filtered": "Filtered",
+  "status.load_more": "Load more",
+  "status.media_hidden": "Media hidden",
+  "status.mention": "Mention @{name}",
+  "status.more": "More",
+  "status.mute": "Mute @{name}",
+  "status.mute_conversation": "Mute conversation",
+  "status.open": "Expand this status",
+  "status.pin": "Pin on profile",
+  "status.pinned": "Pinned toot",
+  "status.read_more": "Read more",
+  "status.reblog": "Boost",
+  "status.reblog_private": "Boost to original audience",
+  "status.reblogged_by": "{name} boosted",
+  "status.reblogs.empty": "No one has boosted this toot yet. When someone does, they will show up here.",
+  "status.redraft": "Delete & re-draft",
+  "status.remove_bookmark": "Remove bookmark",
+  "status.reply": "Reply",
+  "status.replyAll": "Reply to thread",
+  "status.report": "Report @{name}",
+  "status.sensitive_warning": "Sensitive content",
+  "status.share": "Share",
+  "status.show_less": "Show less",
+  "status.show_less_all": "Show less for all",
+  "status.show_more": "Show more",
+  "status.show_more_all": "Show more for all",
+  "status.show_thread": "Show thread",
+  "status.uncached_media_warning": "Not available",
+  "status.unmute_conversation": "Unmute conversation",
+  "status.unpin": "Unpin from profile",
+  "suggestions.dismiss": "Dismiss suggestion",
+  "suggestions.header": "You might be interested in…",
+  "tabs_bar.federated_timeline": "Federated",
+  "tabs_bar.home": "Home",
+  "tabs_bar.local_timeline": "Local",
+  "tabs_bar.notifications": "Notifications",
+  "tabs_bar.search": "Search",
+  "time_remaining.days": "{number, plural, one {# day} other {# days}} left",
+  "time_remaining.hours": "{number, plural, one {# hour} other {# hours}} left",
+  "time_remaining.minutes": "{number, plural, one {# minute} other {# minutes}} left",
+  "time_remaining.moments": "Moments remaining",
+  "time_remaining.seconds": "{number, plural, one {# second} other {# seconds}} left",
+  "trends.count_by_accounts": "{count} {rawCount, plural, one {person} other {people}} talking",
+  "trends.trending_now": "Trending now",
+  "ui.beforeunload": "Your draft will be lost if you leave Mastodon.",
+  "upload_area.title": "Drag & drop to upload",
+  "upload_button.label": "Add media ({formats})",
+  "upload_error.limit": "File upload limit exceeded.",
+  "upload_error.poll": "File upload not allowed with polls.",
+  "upload_form.audio_description": "Describe for people with hearing loss",
+  "upload_form.description": "Describe for the visually impaired",
+  "upload_form.edit": "Edit",
+  "upload_form.undo": "Delete",
+  "upload_form.video_description": "Describe for people with hearing loss or visual impairment",
+  "upload_modal.analyzing_picture": "Analyzing picture…",
+  "upload_modal.apply": "Apply",
+  "upload_modal.description_placeholder": "A quick brown fox jumps over the lazy dog",
+  "upload_modal.detect_text": "Detect text from picture",
+  "upload_modal.edit_media": "Edit media",
+  "upload_modal.hint": "Click or drag the circle on the preview to choose the focal point which will always be in view on all thumbnails.",
+  "upload_modal.preview_label": "Preview ({ratio})",
+  "upload_progress.label": "Uploading…",
+  "video.close": "Close video",
+  "video.download": "Download file",
+  "video.exit_fullscreen": "Exit full screen",
+  "video.expand": "Expand video",
+  "video.fullscreen": "Full screen",
+  "video.hide": "Hide video",
+  "video.mute": "Mute sound",
+  "video.pause": "Pause",
+  "video.play": "Play",
+  "video.unmute": "Unmute sound"
+}
diff --git a/app/javascript/mastodon/locales/ms.json b/app/javascript/mastodon/locales/ms.json
index 6efd42955cfe20fae93a6c4a0f18b2bbbd374bbe..02e79f5d7f80834d66edbaccc91d618e012ad7ec 100644
--- a/app/javascript/mastodon/locales/ms.json
+++ b/app/javascript/mastodon/locales/ms.json
@@ -1,6 +1,7 @@
 {
   "account.add_or_remove_from_list": "Add or Remove from lists",
   "account.badges.bot": "Bot",
+  "account.badges.group": "Group",
   "account.block": "Block @{name}",
   "account.block_domain": "Hide everything from {domain}",
   "account.blocked": "Blocked",
@@ -51,6 +52,7 @@
   "bundle_modal_error.message": "Something went wrong while loading this component.",
   "bundle_modal_error.retry": "Try again",
   "column.blocks": "Blocked users",
+  "column.bookmarks": "Bookmarks",
   "column.community": "Local timeline",
   "column.direct": "Direct messages",
   "column.directory": "Browse profiles",
@@ -82,6 +84,8 @@
   "compose_form.poll.duration": "Poll duration",
   "compose_form.poll.option_placeholder": "Choice {number}",
   "compose_form.poll.remove_option": "Remove this choice",
+  "compose_form.poll.switch_to_multiple": "Change poll to allow multiple choices",
+  "compose_form.poll.switch_to_single": "Change poll to allow for a single choice",
   "compose_form.publish": "Toot",
   "compose_form.publish_loud": "{publish}!",
   "compose_form.sensitive.hide": "Mark media as sensitive",
@@ -138,6 +142,7 @@
   "empty_column.account_timeline": "No toots here!",
   "empty_column.account_unavailable": "Profile unavailable",
   "empty_column.blocks": "You haven't blocked any users yet.",
+  "empty_column.bookmarked_statuses": "You don't have any bookmarked toots yet. When you bookmark one, it will show up here.",
   "empty_column.community": "The local timeline is empty. Write something publicly to get the ball rolling!",
   "empty_column.direct": "You don't have any direct messages yet. When you send or receive one, it will show up here.",
   "empty_column.domain_blocks": "There are no hidden domains yet.",
@@ -224,6 +229,7 @@
   "keyboard_shortcuts.muted": "to open muted users list",
   "keyboard_shortcuts.my_profile": "to open your profile",
   "keyboard_shortcuts.notifications": "to open notifications column",
+  "keyboard_shortcuts.open_media": "to open media",
   "keyboard_shortcuts.pinned": "to open pinned toots list",
   "keyboard_shortcuts.profile": "to open author's profile",
   "keyboard_shortcuts.reply": "to reply",
@@ -256,6 +262,7 @@
   "mute_modal.hide_notifications": "Hide notifications from this user?",
   "navigation_bar.apps": "Mobile apps",
   "navigation_bar.blocks": "Blocked users",
+  "navigation_bar.bookmarks": "Bookmarks",
   "navigation_bar.community_timeline": "Local timeline",
   "navigation_bar.compose": "Compose new toot",
   "navigation_bar.direct": "Direct messages",
@@ -278,7 +285,9 @@
   "navigation_bar.security": "Security",
   "notification.favourite": "{name} favourited your status",
   "notification.follow": "{name} followed you",
+  "notification.follow_request": "{name} has requested to follow you",
   "notification.mention": "{name} mentioned you",
+  "notification.own_poll": "Your poll has ended",
   "notification.poll": "A poll you have voted in has ended",
   "notification.reblog": "{name} boosted your status",
   "notifications.clear": "Clear notifications",
@@ -289,6 +298,7 @@
   "notifications.column_settings.filter_bar.category": "Quick filter bar",
   "notifications.column_settings.filter_bar.show": "Show",
   "notifications.column_settings.follow": "New followers:",
+  "notifications.column_settings.follow_request": "New follow requests:",
   "notifications.column_settings.mention": "Mentions:",
   "notifications.column_settings.poll": "Poll results:",
   "notifications.column_settings.push": "Push notifications",
@@ -349,6 +359,7 @@
   "status.admin_account": "Open moderation interface for @{name}",
   "status.admin_status": "Open this status in the moderation interface",
   "status.block": "Block @{name}",
+  "status.bookmark": "Bookmark",
   "status.cancel_reblog_private": "Unboost",
   "status.cannot_reblog": "This post cannot be boosted",
   "status.copy": "Copy link to status",
@@ -374,6 +385,7 @@
   "status.reblogged_by": "{name} boosted",
   "status.reblogs.empty": "No one has boosted this toot yet. When someone does, they will show up here.",
   "status.redraft": "Delete & re-draft",
+  "status.remove_bookmark": "Remove bookmark",
   "status.reply": "Reply",
   "status.replyAll": "Reply to thread",
   "status.report": "Report @{name}",
@@ -406,9 +418,11 @@
   "upload_button.label": "Add media ({formats})",
   "upload_error.limit": "File upload limit exceeded.",
   "upload_error.poll": "File upload not allowed with polls.",
+  "upload_form.audio_description": "Describe for people with hearing loss",
   "upload_form.description": "Describe for the visually impaired",
   "upload_form.edit": "Edit",
   "upload_form.undo": "Delete",
+  "upload_form.video_description": "Describe for people with hearing loss or visual impairment",
   "upload_modal.analyzing_picture": "Analyzing picture…",
   "upload_modal.apply": "Apply",
   "upload_modal.description_placeholder": "A quick brown fox jumps over the lazy dog",
@@ -418,6 +432,7 @@
   "upload_modal.preview_label": "Preview ({ratio})",
   "upload_progress.label": "Uploading…",
   "video.close": "Close video",
+  "video.download": "Download file",
   "video.exit_fullscreen": "Exit full screen",
   "video.expand": "Expand video",
   "video.fullscreen": "Full screen",
diff --git a/app/javascript/mastodon/locales/nl.json b/app/javascript/mastodon/locales/nl.json
index ba649dde09fd6489233a0b3fb5f7375f021dbed0..8a35cb97c785f6f123eaf582961cafb64d85da70 100644
--- a/app/javascript/mastodon/locales/nl.json
+++ b/app/javascript/mastodon/locales/nl.json
@@ -1,11 +1,12 @@
 {
   "account.add_or_remove_from_list": "Toevoegen of verwijderen vanuit lijsten",
   "account.badges.bot": "Bot",
+  "account.badges.group": "Group",
   "account.block": "Blokkeer @{name}",
   "account.block_domain": "Verberg alles van {domain}",
   "account.blocked": "Geblokkeerd",
   "account.cancel_follow_request": "Volgverzoek annuleren",
-  "account.direct": "Direct Message @{name}",
+  "account.direct": "Direct bericht @{name}",
   "account.domain_blocked": "Domein verborgen",
   "account.edit_profile": "Profiel bewerken",
   "account.endorse": "Op profiel weergeven",
@@ -51,6 +52,7 @@
   "bundle_modal_error.message": "Tijdens het laden van dit onderdeel is er iets fout gegaan.",
   "bundle_modal_error.retry": "Opnieuw proberen",
   "column.blocks": "Geblokkeerde gebruikers",
+  "column.bookmarks": "Bladwijzers",
   "column.community": "Lokale tijdlijn",
   "column.direct": "Directe berichten",
   "column.directory": "Gebruikersgids",
@@ -82,6 +84,8 @@
   "compose_form.poll.duration": "Duur van de poll",
   "compose_form.poll.option_placeholder": "Keuze {number}",
   "compose_form.poll.remove_option": "Deze keuze verwijderen",
+  "compose_form.poll.switch_to_multiple": "Change poll to allow multiple choices",
+  "compose_form.poll.switch_to_single": "Change poll to allow for a single choice",
   "compose_form.publish": "Toot",
   "compose_form.publish_loud": "{publish}!",
   "compose_form.sensitive.hide": "Media als gevoelig markeren",
@@ -103,7 +107,7 @@
   "confirmations.logout.confirm": "Uitloggen",
   "confirmations.logout.message": "Weet je zeker dat je wilt uitloggen?",
   "confirmations.mute.confirm": "Negeren",
-  "confirmations.mute.explanation": "This will hide posts from them and posts mentioning them, but it will still allow them to see your posts and follow you.",
+  "confirmations.mute.explanation": "Dit verbergt toots van hen en toots waar hen in wordt vermeld, maar hen kan nog steeds jouw toots bekijken en jou volgen.",
   "confirmations.mute.message": "Weet je het zeker dat je {name} wilt negeren?",
   "confirmations.redraft.confirm": "Verwijderen en herschrijven",
   "confirmations.redraft.message": "Weet je zeker dat je deze toot wilt verwijderen en herschrijven? Je verliest wel de boosts en favorieten, en reacties op de originele toot zitten niet meer aan de nieuwe toot vast.",
@@ -138,6 +142,7 @@
   "empty_column.account_timeline": "Hier zijn geen toots!",
   "empty_column.account_unavailable": "Profiel is niet beschikbaar",
   "empty_column.blocks": "Jij hebt nog geen enkele gebruiker geblokkeerd.",
+  "empty_column.bookmarked_statuses": "Jij hebt nog geen toots aan je bladwijzers toegevoegd. Wanneer je er een aan jouw bladwijzers toevoegt, valt deze hier te zien.",
   "empty_column.community": "De lokale tijdlijn is nog leeg. Toot iets in het openbaar om de bal aan het rollen te krijgen!",
   "empty_column.direct": "Je hebt nog geen directe berichten. Wanneer je er een verzend of ontvangt, zijn deze hier te zien.",
   "empty_column.domain_blocks": "Er zijn nog geen genegeerde servers.",
@@ -152,8 +157,8 @@
   "empty_column.mutes": "Jij hebt nog geen gebruikers genegeerd.",
   "empty_column.notifications": "Je hebt nog geen meldingen. Begin met iemand een gesprek.",
   "empty_column.public": "Er is hier helemaal niks! Toot iets in het openbaar of volg mensen van andere servers om het te vullen",
-  "error.unexpected_crash.explanation": "Due to a bug in our code or a browser compatibility issue, this page could not be displayed correctly.",
-  "error.unexpected_crash.next_steps": "Try refreshing the page. If that does not help, you may still be able to use Mastodon through a different browser or native app.",
+  "error.unexpected_crash.explanation": "Als gevolg van een bug in onze broncode of als gevolg van een compatibiliteitsprobleem met jouw webbrowser, kan deze pagina niet goed worden weergegeven.",
+  "error.unexpected_crash.next_steps": "Probeer deze pagina te vernieuwen. Wanneer dit niet helpt is het nog steeds mogelijk om Mastodon in een andere webbrowser of mobiele app te gebruiken.",
   "errors.unexpected_crash.copy_stacktrace": "Stacktrace naar klembord kopiëren",
   "errors.unexpected_crash.report_issue": "Technisch probleem melden",
   "federation.change": "Adjust status federation",
@@ -169,7 +174,7 @@
   "getting_started.heading": "Aan de slag",
   "getting_started.invite": "Mensen uitnodigen",
   "getting_started.open_source_notice": "Mastodon is vrije software. Je kunt bijdragen of problemen melden op GitHub via {github}.",
-  "getting_started.security": "Beveiliging",
+  "getting_started.security": "Accountinstellingen",
   "getting_started.terms": "Voorwaarden",
   "hashtag.column_header.tag_mode.all": "en {additional}",
   "hashtag.column_header.tag_mode.any": "of {additional}",
@@ -211,7 +216,7 @@
   "keyboard_shortcuts.description": "Omschrijving",
   "keyboard_shortcuts.direct": "om jouw directe berichten te tonen",
   "keyboard_shortcuts.down": "om naar beneden door de lijst te bewegen",
-  "keyboard_shortcuts.enter": "om toot volledig te tonen",
+  "keyboard_shortcuts.enter": "om uitgebreide toot te tonen",
   "keyboard_shortcuts.favourite": "om aan jouw favorieten toe te voegen",
   "keyboard_shortcuts.favourites": "om jouw lijst met favorieten te tonen",
   "keyboard_shortcuts.federated": "om de globale tijdlijn te tonen",
@@ -224,6 +229,7 @@
   "keyboard_shortcuts.muted": "om de door jou genegeerde gebruikers te tonen",
   "keyboard_shortcuts.my_profile": "om jouw profiel te tonen",
   "keyboard_shortcuts.notifications": "om jouw meldingen te tonen",
+  "keyboard_shortcuts.open_media": "om media te openen",
   "keyboard_shortcuts.pinned": "om jouw vastgezette toots te tonen",
   "keyboard_shortcuts.profile": "om het gebruikersprofiel te openen",
   "keyboard_shortcuts.reply": "om te reageren",
@@ -256,6 +262,7 @@
   "mute_modal.hide_notifications": "Verberg meldingen van deze persoon?",
   "navigation_bar.apps": "Mobiele apps",
   "navigation_bar.blocks": "Geblokkeerde gebruikers",
+  "navigation_bar.bookmarks": "Bladwijzers",
   "navigation_bar.community_timeline": "Lokale tijdlijn",
   "navigation_bar.compose": "Nieuw toot schrijven",
   "navigation_bar.direct": "Directe berichten",
@@ -278,7 +285,9 @@
   "navigation_bar.security": "Beveiliging",
   "notification.favourite": "{name} voegde jouw toot als favoriet toe",
   "notification.follow": "{name} volgt jou nu",
+  "notification.follow_request": "{name} wil jou graag volgen",
   "notification.mention": "{name} vermeldde jou",
+  "notification.own_poll": "Jouw poll is beëindigd",
   "notification.poll": "Een poll waaraan jij hebt meegedaan is beëindigd",
   "notification.reblog": "{name} boostte jouw toot",
   "notifications.clear": "Meldingen verwijderen",
@@ -289,6 +298,7 @@
   "notifications.column_settings.filter_bar.category": "Snelle filterbalk",
   "notifications.column_settings.filter_bar.show": "Tonen",
   "notifications.column_settings.follow": "Nieuwe volgers:",
+  "notifications.column_settings.follow_request": "Nieuw volgverzoek:",
   "notifications.column_settings.mention": "Vermeldingen:",
   "notifications.column_settings.poll": "Pollresultaten:",
   "notifications.column_settings.push": "Pushmeldingen",
@@ -349,12 +359,13 @@
   "status.admin_account": "Moderatie-omgeving van @{name} openen",
   "status.admin_status": "Deze toot in de moderatie-omgeving openen",
   "status.block": "Blokkeer @{name}",
+  "status.bookmark": "Bladwijzer toevoegen",
   "status.cancel_reblog_private": "Niet langer boosten",
   "status.cannot_reblog": "Deze toot kan niet geboost worden",
   "status.copy": "Link naar toot kopiëren",
   "status.delete": "Verwijderen",
   "status.detailed_status": "Uitgebreide gespreksweergave",
-  "status.direct": "Directe toot @{name}",
+  "status.direct": "Direct bericht @{name}",
   "status.embed": "Insluiten",
   "status.favourite": "Favoriet",
   "status.filtered": "Gefilterd",
@@ -365,7 +376,7 @@
   "status.more": "Meer",
   "status.mute": "Negeer @{name}",
   "status.mute_conversation": "Negeer gesprek",
-  "status.open": "Toot volledig tonen",
+  "status.open": "Uitgebreide toot tonen",
   "status.pin": "Aan profielpagina vastmaken",
   "status.pinned": "Vastgemaakte toot",
   "status.read_more": "Meer lezen",
@@ -374,6 +385,7 @@
   "status.reblogged_by": "{name} boostte",
   "status.reblogs.empty": "Niemand heeft deze toot nog geboost. Wanneer iemand dit doet, valt dat hier te zien.",
   "status.redraft": "Verwijderen en herschrijven",
+  "status.remove_bookmark": "Bladwijzer verwijderen",
   "status.reply": "Reageren",
   "status.replyAll": "Reageer op iedereen",
   "status.report": "Rapporteer @{name}",
@@ -406,9 +418,11 @@
   "upload_button.label": "Media toevoegen ({formats})",
   "upload_error.limit": "Uploadlimiet van bestand overschreden.",
   "upload_error.poll": "Het uploaden van bestanden is in polls niet toegestaan.",
+  "upload_form.audio_description": "Omschrijf dit voor mensen met een auditieve beperking",
   "upload_form.description": "Omschrijf dit voor mensen met een visuele beperking",
   "upload_form.edit": "Bewerken",
   "upload_form.undo": "Verwijderen",
+  "upload_form.video_description": "Omschrijf dit voor mensen met een auditieve of visuele beperking",
   "upload_modal.analyzing_picture": "Afbeelding analyseren…",
   "upload_modal.apply": "Toepassen",
   "upload_modal.description_placeholder": "A quick brown fox jumps over the lazy dog",
@@ -418,6 +432,7 @@
   "upload_modal.preview_label": "Voorvertoning ({ratio})",
   "upload_progress.label": "Uploaden...",
   "video.close": "Video sluiten",
+  "video.download": "Bestand downloaden",
   "video.exit_fullscreen": "Volledig scherm sluiten",
   "video.expand": "Video groter maken",
   "video.fullscreen": "Volledig scherm",
diff --git a/app/javascript/mastodon/locales/nn.json b/app/javascript/mastodon/locales/nn.json
index 73a319179b6985d543b0904a45a3144db87a2c5c..00e323cc1eef7357b1bb88dfc894483d60ae9865 100644
--- a/app/javascript/mastodon/locales/nn.json
+++ b/app/javascript/mastodon/locales/nn.json
@@ -1,423 +1,438 @@
 {
-  "account.add_or_remove_from_list": "Legg til eller ta vekk fra liste",
+  "account.add_or_remove_from_list": "Legg til eller tak vekk frå listene",
   "account.badges.bot": "Robot",
-  "account.block": "Blokkér @{name}",
-  "account.block_domain": "Gøyme alt innhald for domenet {domain}",
+  "account.badges.group": "Group",
+  "account.block": "Blokker @{name}",
+  "account.block_domain": "Skjul alt frå {domain}",
   "account.blocked": "Blokkert",
-  "account.cancel_follow_request": "Avslutt føljar-førespurnad",
-  "account.direct": "Direkte meld @{name}",
+  "account.cancel_follow_request": "Fjern fylgjeførespurnad",
+  "account.direct": "Send melding til @{name}",
   "account.domain_blocked": "Domenet er gøymt",
   "account.edit_profile": "Rediger profil",
-  "account.endorse": "Framhev på profilen din",
-  "account.follow": "Følj",
-  "account.followers": "Føljare",
-  "account.followers.empty": "Er ikkje nokon som føljar denne brukaren ennå.",
-  "account.follows": "Føljingar",
-  "account.follows.empty": "Denne brukaren foljer ikkje nokon ennå.",
-  "account.follows_you": "Føljar deg",
-  "account.hide_reblogs": "Gøym fremhevingar for @{name}",
+  "account.endorse": "Framhev på profil",
+  "account.follow": "Fylg",
+  "account.followers": "Fylgjarar",
+  "account.followers.empty": "Ingen fylgjer denne brukaren enno.",
+  "account.follows": "Fylgjer",
+  "account.follows.empty": "Denne brukaren fylgjer ikkje nokon enno.",
+  "account.follows_you": "Fylgjer deg",
+  "account.hide_reblogs": "Gøym fremhevingar frå @{name}",
   "account.last_status": "Sist aktiv",
-  "account.link_verified_on": "Eigerskap for denne linken er sist sjekket den {date}",
-  "account.locked_info": "Brukarens privat-status er satt til lukka. Eigaren må manuelt døme kvem som kan følje honom.",
+  "account.link_verified_on": "Eigarskap for denne lenkja vart sist sjekka {date}",
+  "account.locked_info": "Denne kontoen er privat. Eigaren kan sjølv velja kven som kan fylgja han.",
   "account.media": "Media",
-  "account.mention": "Nemne @{name}",
+  "account.mention": "Nemn @{name}",
   "account.moved_to": "{name} har flytta til:",
   "account.mute": "MÃ¥lbind @{name}",
-  "account.mute_notifications": "Målbind varslingar ifrå @{name}",
-  "account.muted": "MÃ¥lbindt",
+  "account.mute_notifications": "Målbind varsel frå @{name}",
+  "account.muted": "MÃ¥lbunden",
   "account.never_active": "Aldri",
-  "account.posts": "Tutar",
-  "account.posts_with_replies": "Tutar og svar",
+  "account.posts": "Tut",
+  "account.posts_with_replies": "Tut og svar",
   "account.report": "Rapporter @{name}",
-  "account.requested": "Venter på samtykke. Klikk for å avbryte føljar-førespurnad",
+  "account.requested": "Ventar på samtykke. Klikk for å avbryta fylgjeførespurnaden",
   "account.share": "Del @{name} sin profil",
-  "account.show_reblogs": "Sjå framhevingar ifrå @{name}",
-  "account.unblock": "Avblokker @{name}",
+  "account.show_reblogs": "Vis framhevingar frå @{name}",
+  "account.unblock": "Slutt å blokera @{name}",
   "account.unblock_domain": "Vis {domain}",
   "account.unendorse": "Ikkje framhev på profil",
-  "account.unfollow": "Avfølja",
+  "account.unfollow": "Slutt å fylgja",
   "account.unmute": "Av-demp @{name}",
-  "account.unmute_notifications": "Av-demp notifikasjoner ifrå @{name}",
-  "alert.rate_limited.message": "Ver vennlig og prøv igjen {retry_time, time, medium}.",
-  "alert.rate_limited.title": "Bregrensa rate",
-  "alert.unexpected.message": "Eit uforventa problem har hendt.",
-  "alert.unexpected.title": "Oops!",
+  "account.unmute_notifications": "Vis varsel frå @{name}",
+  "alert.rate_limited.message": "Ver venleg å prøva igjen etter {retry_time, time, medium}.",
+  "alert.rate_limited.title": "Begrensa rate",
+  "alert.unexpected.message": "Eit uventa problem oppstod.",
+  "alert.unexpected.title": "Oi sann!",
   "autosuggest_hashtag.per_week": "{count} per veke",
-  "boost_modal.combo": "Du kan trykke {combo} for å hoppe over dette neste gong",
-  "bundle_column_error.body": "Noko gikk gale mens komponent ble nedlasta.",
+  "boost_modal.combo": "Du kan trykkja {combo} for å hoppa over dette neste gong",
+  "bundle_column_error.body": "Noko gjekk gale mens denne komponenten vart lasta ned.",
   "bundle_column_error.retry": "Prøv igjen",
-  "bundle_column_error.title": "Tenarmaskin feil",
+  "bundle_column_error.title": "Nettverksfeil",
   "bundle_modal_error.close": "Lukk",
-  "bundle_modal_error.message": "Noko gikk gale mens komponent var i ferd med å bli nedlasta.",
+  "bundle_modal_error.message": "Noko gjekk gale under lastinga av denne komponenten.",
   "bundle_modal_error.retry": "Prøv igjen",
-  "column.blocks": "Blokka brukare",
-  "column.community": "Lokal samtid",
-  "column.direct": "Direkte meldingar",
-  "column.directory": "Sjå gjennom profiler",
-  "column.domain_blocks": "Gøymte domener",
+  "column.blocks": "Blokkerte brukarar",
+  "column.bookmarks": "Bokmerke",
+  "column.community": "Lokal tidsline",
+  "column.direct": "Meldingar",
+  "column.directory": "Sjå gjennom profilar",
+  "column.domain_blocks": "Gøymde domene",
   "column.favourites": "Favorittar",
-  "column.follow_requests": "Føljarførespurnad",
+  "column.follow_requests": "Fylgjeførespurnadar",
   "column.home": "Heim",
   "column.lists": "Lister",
-  "column.mutes": "MÃ¥lbindte brukare",
-  "column.notifications": "Varslingar",
-  "column.pins": "Festa tuter",
-  "column.public": "Federert samtid",
+  "column.mutes": "MÃ¥lbundne brukarar",
+  "column.notifications": "Varsel",
+  "column.pins": "Festa tut",
+  "column.public": "Samla tidsline",
   "column_back_button.label": "Tilbake",
-  "column_header.hide_settings": "Skjul innstillingar",
-  "column_header.moveLeft_settings": "Flytt feltet til venstre",
-  "column_header.moveRight_settings": "Flytt feltet til høgre",
+  "column_header.hide_settings": "Gøym innstillingar",
+  "column_header.moveLeft_settings": "Flytt kolonne til venstre",
+  "column_header.moveRight_settings": "Flytt kolonne til høgre",
   "column_header.pin": "Fest",
   "column_header.show_settings": "Vis innstillingar",
   "column_header.unpin": "Løys",
   "column_subheading.settings": "Innstillingar",
-  "community.column_settings.media_only": "Kun medie",
-  "compose_form.direct_message_warning": "Denne tuten vil kun verte synleg for nemnde brukarar.",
+  "community.column_settings.media_only": "Berre media",
+  "compose_form.direct_message_warning": "Dette tutet vert berre synleg for nemnde brukarar.",
   "compose_form.direct_message_warning_learn_more": "Lær meir",
-  "compose_form.hashtag_warning": "Denne tuten vill ikkje bli lista under nokon knagg ettersom den ikkje er opplista. Berre offentlege tutar kan ble søkt på ved emneknagg.",
-  "compose_form.lock_disclaimer": "Din brukar er ikkje {locked}. Alle kan følje deg for å sjå føljar-modus poster.",
+  "compose_form.hashtag_warning": "Dette tutet vert ikkje oppført under nokon emneknagg sidan det ikkje er oppført. Berre offentlege tut kan verta søkt etter med emneknagg.",
+  "compose_form.lock_disclaimer": "Kontoen din er ikkje {locked}. Kven som helst kan fylgja deg for å sjå innlegga dine som berre visast til fylgjarar.",
   "compose_form.lock_disclaimer.lock": "låst",
-  "compose_form.placeholder": "Kva har du på hjartet?",
-  "compose_form.poll.add_option": "Legg til eit punkt",
-  "compose_form.poll.duration": "Varigheit for spørring",
+  "compose_form.placeholder": "Kva har du på hjarta?",
+  "compose_form.poll.add_option": "Legg til eit val",
+  "compose_form.poll.duration": "Varigskap for røysting",
   "compose_form.poll.option_placeholder": "Val {number}",
-  "compose_form.poll.remove_option": "Ta burt dette valet",
+  "compose_form.poll.remove_option": "Ta vekk dette valet",
+  "compose_form.poll.switch_to_multiple": "Change poll to allow multiple choices",
+  "compose_form.poll.switch_to_single": "Change poll to allow for a single choice",
   "compose_form.publish": "Tut",
   "compose_form.publish_loud": "{publish}!",
-  "compose_form.sensitive.hide": "Merk media som sensitivt",
-  "compose_form.sensitive.marked": "Media er markert som sensitivt",
-  "compose_form.sensitive.unmarked": "Media er ikkje merka som sensitivt",
-  "compose_form.spoiler.marked": "Tekst er gøymt bak ein advarsel",
-  "compose_form.spoiler.unmarked": "Tekst er ikkje gøymt",
-  "compose_form.spoiler_placeholder": "Skriv varselen din her",
-  "confirmation_modal.cancel": "Avbrot",
-  "confirmations.block.block_and_report": "Blokk & rapportér",
-  "confirmations.block.confirm": "Blokkér",
-  "confirmations.block.message": "Er du sikker på at du vill blokke {name}?",
+  "compose_form.sensitive.hide": "Merk medium som sensitivt",
+  "compose_form.sensitive.marked": "Medium er markert som sensitivt",
+  "compose_form.sensitive.unmarked": "Medium er ikkje merka som sensitivt",
+  "compose_form.spoiler.marked": "Tekst er gøymd bak åtvaring",
+  "compose_form.spoiler.unmarked": "Tekst er ikkje gøymd",
+  "compose_form.spoiler_placeholder": "Skriv åtvaringa di her",
+  "confirmation_modal.cancel": "Avbryt",
+  "confirmations.block.block_and_report": "Blokker & rapporter",
+  "confirmations.block.confirm": "Blokker",
+  "confirmations.block.message": "Er du sikker på at du vil blokkera {name}?",
   "confirmations.delete.confirm": "Slett",
-  "confirmations.delete.message": "Er du sikker på at du vill slette denne statusen?",
+  "confirmations.delete.message": "Er du sikker på at du vil sletta denne statusen?",
   "confirmations.delete_list.confirm": "Slett",
-  "confirmations.delete_list.message": "Er du sikker på at du vill slette denne listen for alltid?",
+  "confirmations.delete_list.message": "Er du sikker på at du vil sletta denne lista for alltid?",
   "confirmations.domain_block.confirm": "Gøym heile domenet",
-  "confirmations.domain_block.message": "Er du ordentleg, ordentleg sikker på at du vill blokkere heile {domain}? I dei tilfeller er det bedre med ein målretta blokkering eller demping av individuelle brukare.",
+  "confirmations.domain_block.message": "Er du heilt, heilt sikker på at du vil blokkera heile {domain}? I dei fleste tilfelle er det godt nok og føretrekt med nokre få målretta blokkeringar eller målbindingar. Du kjem ikkje til å sjå innhald frå det domenet i nokon fødererte tidsliner eller i varsla dine. Fylgjarane dine frå det domenet vert fjerna.",
   "confirmations.logout.confirm": "Logg ut",
-  "confirmations.logout.message": "Er du sikker på at du vill logge ut?",
+  "confirmations.logout.message": "Er du sikker på at du vil logga ut?",
   "confirmations.mute.confirm": "MÃ¥lbind",
-  "confirmations.mute.explanation": "This will hide posts from them and posts mentioning them, but it will still allow them to see your posts and follow you.",
-  "confirmations.mute.message": "Er du sikker på at d vill målbinde {name}?",
-  "confirmations.redraft.confirm": "Slett & gjennopprett",
-  "confirmations.redraft.message": "Er du sikker på at du vill slette statusen og gjennoprette den? Favoritter og framhevinger vill bli borte, og svar til den originale posten vill bli einstøing.",
+  "confirmations.mute.explanation": "Dette gøymer innlegg frå dei og innlegg som nemner dei, men tillèt dei framleis å sjå dine innlegg og fylgja deg.",
+  "confirmations.mute.message": "Er du sikker på at du vil målbinda {name}?",
+  "confirmations.redraft.confirm": "Slett & skriv på nytt",
+  "confirmations.redraft.message": "Er du sikker på at du vil sletta denne statusen og skriva han på nytt? Då misser du favorittar og framhevingar, og svar til det opphavlege innlegget vert einstøingar.",
   "confirmations.reply.confirm": "Svar",
-  "confirmations.reply.message": "Å svare nå vill overskrive meldingen du er i ferd med å skrive. Er du sikker på at du vill gå fram?",
-  "confirmations.unfollow.confirm": "Avfølj",
-  "confirmations.unfollow.message": "Er du sikker på at du vill avfølje {name}?",
+  "confirmations.reply.message": "Å svara no vil overskriva meldinga du skriv no. Er du sikker på at du vil halda fram?",
+  "confirmations.unfollow.confirm": "Slutt å fylgja",
+  "confirmations.unfollow.message": "Er du sikker på at du vil slutta å fylgja {name}?",
   "conversation.delete": "Slett samtale",
-  "conversation.mark_as_read": "Merk som lest",
+  "conversation.mark_as_read": "Merk som lese",
   "conversation.open": "Sjå samtale",
   "conversation.with": "Med {names}",
-  "directory.federated": "Fra kjent fedivers",
-  "directory.local": "Fra berre {domain} domenet",
+  "directory.federated": "Frå kjent fedivers",
+  "directory.local": "Berre frå {domain}",
   "directory.new_arrivals": "Nyankommne",
-  "directory.recently_active": "Nylig aktiv",
-  "embed.instructions": "Embed this status on your website by copying the code below.",
-  "embed.preview": "Dette er korleis den vil sjå ut:",
+  "directory.recently_active": "Nyleg aktive",
+  "embed.instructions": "Bygg inn denne statusen på nettsida di ved å kopiera koden under.",
+  "embed.preview": "Slik bid det å sjå ut:",
   "emoji_button.activity": "Aktivitet",
-  "emoji_button.custom": "Custom",
+  "emoji_button.custom": "Eige",
   "emoji_button.flags": "Flagg",
   "emoji_button.food": "Mat & drikke",
-  "emoji_button.label": "Legg til smilefjes",
+  "emoji_button.label": "Legg til emoji",
   "emoji_button.nature": "Natur",
   "emoji_button.not_found": "No emojos!! (╯°□°)╯︵ ┻━┻",
-  "emoji_button.objects": "Objektar",
+  "emoji_button.objects": "Objekt",
   "emoji_button.people": "Folk",
   "emoji_button.recent": "Ofte brukt",
   "emoji_button.search": "Søk...",
-  "emoji_button.search_results": "Søke resultater",
-  "emoji_button.symbols": "Symbolar",
-  "emoji_button.travel": "Reise & steder",
-  "empty_column.account_timeline": "Ikkje nokon tutar her!",
+  "emoji_button.search_results": "Søkeresultat",
+  "emoji_button.symbols": "Symbol",
+  "emoji_button.travel": "Reise & stader",
+  "empty_column.account_timeline": "Ingen tut her!",
   "empty_column.account_unavailable": "Profil ikkje tilgjengelig",
-  "empty_column.blocks": "Du har ikkje blokkért nokon brukarar ennå.",
+  "empty_column.blocks": "Du har ikkje blokkert nokon brukarar enno.",
+  "empty_column.bookmarked_statuses": "Du har ikkje nokon bokmerkte tut enno. NÃ¥r du bokmerkjer eit, dukkar det opp her.",
   "empty_column.community": "Den lokale samtiden er tom. Skriv noko offentleg å få ballen til å rulle!",
-  "empty_column.direct": "Du har ikkje nokon direkte meldingar ennå. Når du sendar eller får ein, så vill den ende opp her.",
-  "empty_column.domain_blocks": "Der er ikkje nokon gøymte domener enno.",
-  "empty_column.favourited_statuses": "Du har ikkje favorisert nokon tutar enno. Når du favoriserer noko, så vill det ende opp her.",
-  "empty_column.favourites": "Ikkje nokon har favorisert denne tuten enno. Når nokon gjer det, så vill den ende opp her.",
-  "empty_column.follow_requests": "Du har ikkje nokon føljar førespurnad enno. Når du får ein, så vill den sjåast her.",
-  "empty_column.hashtag": "Det er ikkje noko i denne emneknaggen her enno.",
-  "empty_column.home": "Din heime-tidslinja er tom! Dra til {public} eller søk for å starte å møte andre brukare.",
-  "empty_column.home.public_timeline": "Den offentlege tidslinja",
-  "empty_column.list": "Det er ikkje noko i denne lista enno. Når medlemmar av denne lista poster statuser, så vill dei sjåast her.",
-  "empty_column.lists": "Du har ikkje nokon liste enno. Når du lagar ein, så vill den ende up her.",
-  "empty_column.mutes": "Du har ikkje dempet nokon brukare enno.",
-  "empty_column.notifications": "You don't have any notifications yet. Interact with others to start the conversation.",
-  "empty_column.public": "There is nothing here! Write something publicly, or manually follow users from other servers to fill it up",
-  "error.unexpected_crash.explanation": "Due to a bug in our code or a browser compatibility issue, this page could not be displayed correctly.",
-  "error.unexpected_crash.next_steps": "Try refreshing the page. If that does not help, you may still be able to use Mastodon through a different browser or native app.",
-  "errors.unexpected_crash.copy_stacktrace": "Copy stacktrace to clipboard",
-  "errors.unexpected_crash.report_issue": "Rapportér problem",
+  "empty_column.direct": "Du har ingen direktemeldingar ennå. Når du sender eller får ein vil den dukke opp her.",
+  "empty_column.domain_blocks": "Det er ingen gøymde domene ennå.",
+  "empty_column.favourited_statuses": "Du har ingen favoritt-tut ennå. Når du merkjer ein som favoritt, så dukkar det opp her.",
+  "empty_column.favourites": "Ingen har merkt dette tutet som favoritt enno. Når nokon gjer det, så dukkar det opp her.",
+  "empty_column.follow_requests": "Du har ingen følgjeførespurnadar ennå. Når du får ein, så vil den dukke opp her.",
+  "empty_column.hashtag": "Det er ingenting i denne emneknaggen ennå.",
+  "empty_column.home": "Heime-tidslinja di er tom! Besøk {public} eller søk for å starte og å møte andre brukarar.",
+  "empty_column.home.public_timeline": "den offentlege tidslina",
+  "empty_column.list": "Det er ingenting i denne lista enno. Når medlemer av denne lista legg ut nye statusar, så dukkar dei opp her.",
+  "empty_column.lists": "Du har ingen lister enno. Når du lagar ei, så dukkar ho opp her.",
+  "empty_column.mutes": "Du har ikkje målbunde nokon brukarar enno.",
+  "empty_column.notifications": "Du har ingen varsel ennå. Kommuniser med andre for å starte samtalen.",
+  "empty_column.public": "Det er ingenting her! Skriv noko offentleg, eller følg brukarar frå andre tenarar manuelt for å fylle det opp",
+  "error.unexpected_crash.explanation": "På grunn av ein feil i vår kode eller eit nettlesarkompatibilitetsproblem, kunne ikkje denne sida verte vist korrekt.",
+  "error.unexpected_crash.next_steps": "Prøv å lasta inn sida på nytt. Om det ikkje hjelper så kan du framleis nytta Mastodon i ein annan nettlesar eller app.",
+  "errors.unexpected_crash.copy_stacktrace": "Kopier stacktrace til utklippstavla",
+  "errors.unexpected_crash.report_issue": "Rapporter problem",
   "follow_request.authorize": "Autoriser",
-  "follow_request.reject": "Reject",
-  "getting_started.developers": "Utviklare",
-  "getting_started.directory": "Profile directory",
+  "follow_request.reject": "Avvis",
+  "getting_started.developers": "Utviklarar",
+  "getting_started.directory": "Profilkatalog",
   "getting_started.documentation": "Dokumentasjon",
-  "getting_started.heading": "Komme i gong",
-  "getting_started.invite": "Inviter folk",
-  "getting_started.open_source_notice": "Mastodon har åpen kilde kode. Du kan hjelpe til med problemar på GitHub gjennom {github}.",
-  "getting_started.security": "Brukar instillingar",
+  "getting_started.heading": "Kom i gang",
+  "getting_started.invite": "Byd folk inn",
+  "getting_started.open_source_notice": "Mastodon er fri programvare. Du kan bidraga eller rapportera problem med GitHub på {github}.",
+  "getting_started.security": "Kontoinnstillingar",
   "getting_started.terms": "Brukarvillkår",
   "hashtag.column_header.tag_mode.all": "og {additional}",
   "hashtag.column_header.tag_mode.any": "eller {additional}",
-  "hashtag.column_header.tag_mode.none": "uten {additional}",
-  "hashtag.column_settings.select.no_options_message": "No suggestions found",
-  "hashtag.column_settings.select.placeholder": "Enter hashtags…",
+  "hashtag.column_header.tag_mode.none": "utan {additional}",
+  "hashtag.column_settings.select.no_options_message": "Fann ingen forslag",
+  "hashtag.column_settings.select.placeholder": "Legg til emneknaggar…",
   "hashtag.column_settings.tag_mode.all": "Alle disse",
-  "hashtag.column_settings.tag_mode.any": "Any of these",
-  "hashtag.column_settings.tag_mode.none": "None of these",
-  "hashtag.column_settings.tag_toggle": "Include additional tags in this column",
-  "home.column_settings.basic": "Basic",
-  "home.column_settings.show_reblogs": "Vis fremhevingar",
+  "hashtag.column_settings.tag_mode.any": "Kva som helst av desse",
+  "hashtag.column_settings.tag_mode.none": "Ikkje nokon av disse",
+  "hashtag.column_settings.tag_toggle": "Inkluder ekstra emneknaggar for denne kolonna",
+  "home.column_settings.basic": "Enkelt",
+  "home.column_settings.show_reblogs": "Vis framhevingar",
   "home.column_settings.show_replies": "Vis svar",
-  "intervals.full.days": "{number, plural, one {# day} other {# days}}",
-  "intervals.full.hours": "{number, plural, one {# hour} other {# hours}}",
-  "intervals.full.minutes": "{number, plural, one {# minute} other {# minutes}}",
+  "intervals.full.days": "{number, plural, one {# dag} other {# dagar}}",
+  "intervals.full.hours": "{number, plural, one {# time} other {# timar}}",
+  "intervals.full.minutes": "{number, plural, one {# minutt} other {# minutt}}",
   "introduction.federation.action": "Neste",
-  "introduction.federation.federated.headline": "Federert",
-  "introduction.federation.federated.text": "Public posts from other servers of the fediverse will appear in the federated timeline.",
+  "introduction.federation.federated.headline": "Føderert",
+  "introduction.federation.federated.text": "Offentlege innlegg frå andre tenarar i fødiverset dukkar opp i den fødererte tidslina.",
   "introduction.federation.home.headline": "Heim",
-  "introduction.federation.home.text": "Posts from people you follow will appear in your home feed. You can follow anyone on any server!",
+  "introduction.federation.home.text": "Innlegg frå folk du fylgjer dukkar opp i heimetidslina di. Du kan fylgja kven som helst frå kva tenar som helst!",
   "introduction.federation.local.headline": "Lokal",
-  "introduction.federation.local.text": "Public posts from people on the same server as you will appear in the local timeline.",
+  "introduction.federation.local.text": "Offentlege innlegg frå folk på same tenar som deg, dukkar opp i den lokale tidslina.",
   "introduction.interactions.action": "Fullfør omvisning!",
-  "introduction.interactions.favourite.headline": "Lik",
-  "introduction.interactions.favourite.text": "You can save a toot for later, and let the author know that you liked it, by favouriting it.",
-  "introduction.interactions.reblog.headline": "Fremhev",
-  "introduction.interactions.reblog.text": "You can share other people's toots with your followers by boosting them.",
+  "introduction.interactions.favourite.headline": "Merk som favoritt",
+  "introduction.interactions.favourite.text": "Du kan lagra eit tut til seinare og lata forfattaren vita at du likte det med å merkja det som favoritt.",
+  "introduction.interactions.reblog.headline": "Framhev",
+  "introduction.interactions.reblog.text": "Du kan dela andre folk sine tut med å framheva dei.",
   "introduction.interactions.reply.headline": "Svar",
-  "introduction.interactions.reply.text": "You can reply to other people's and your own toots, which will chain them together in a conversation.",
-  "introduction.welcome.action": "Let's go!",
-  "introduction.welcome.headline": "Første steg",
-  "introduction.welcome.text": "Welcome to the fediverse! In a few moments, you'll be able to broadcast messages and talk to your friends across a wide variety of servers. But this server, {domain}, is special—it hosts your profile, so remember its name.",
-  "keyboard_shortcuts.back": "to navigate back",
-  "keyboard_shortcuts.blocked": "to open blocked users list",
-  "keyboard_shortcuts.boost": "to boost",
-  "keyboard_shortcuts.column": "to focus a status in one of the columns",
-  "keyboard_shortcuts.compose": "to focus the compose textarea",
-  "keyboard_shortcuts.description": "Description",
-  "keyboard_shortcuts.direct": "to open direct messages column",
-  "keyboard_shortcuts.down": "to move down in the list",
-  "keyboard_shortcuts.enter": "to open status",
-  "keyboard_shortcuts.favourite": "to favourite",
-  "keyboard_shortcuts.favourites": "to open favourites list",
-  "keyboard_shortcuts.federated": "to open federated timeline",
-  "keyboard_shortcuts.heading": "Keyboard Shortcuts",
-  "keyboard_shortcuts.home": "to open home timeline",
-  "keyboard_shortcuts.hotkey": "Hotkey",
-  "keyboard_shortcuts.legend": "to display this legend",
-  "keyboard_shortcuts.local": "to open local timeline",
-  "keyboard_shortcuts.mention": "to mention author",
-  "keyboard_shortcuts.muted": "to open muted users list",
-  "keyboard_shortcuts.my_profile": "to open your profile",
-  "keyboard_shortcuts.notifications": "to open notifications column",
-  "keyboard_shortcuts.pinned": "to open pinned toots list",
-  "keyboard_shortcuts.profile": "to open author's profile",
-  "keyboard_shortcuts.reply": "to reply",
-  "keyboard_shortcuts.requests": "to open follow requests list",
-  "keyboard_shortcuts.search": "to focus search",
-  "keyboard_shortcuts.start": "to open \"get started\" column",
-  "keyboard_shortcuts.toggle_hidden": "to show/hide text behind CW",
-  "keyboard_shortcuts.toggle_sensitivity": "to show/hide media",
-  "keyboard_shortcuts.toot": "Start ein heilt ny tut",
-  "keyboard_shortcuts.unfocus": "to un-focus compose textarea/search",
-  "keyboard_shortcuts.up": "to move up in the list",
-  "lightbox.close": "Lukk",
+  "introduction.interactions.reply.text": "Du kan svare på andre folk sine tutar, som gjer at dei vert lenka saman i ein samtale.",
+  "introduction.welcome.action": "Lat oss koma i gang!",
+  "introduction.welcome.headline": "Fyrste steg",
+  "introduction.welcome.text": "Velkommen til fediverset! Om nokre minutt vil du kunne kringkaste meldingar og snakke med dine vener rundt omkring på eit bredt spekter av tenarar. Men denne tenaren, {domain}, er spesiell – den er vert for profilen din, så hugs namnet på den.",
+  "keyboard_shortcuts.back": "for å gå tilbake",
+  "keyboard_shortcuts.blocked": "for å opna lista med blokkerte brukarar",
+  "keyboard_shortcuts.boost": "for å framheva",
+  "keyboard_shortcuts.column": "for å fokusera på ein status i ei av kolonnane",
+  "keyboard_shortcuts.compose": "for å fokusera tekstfeltet for skriving",
+  "keyboard_shortcuts.description": "Skildring",
+  "keyboard_shortcuts.direct": "for å opna direktemeldingskolonna",
+  "keyboard_shortcuts.down": "for å flytta seg opp og ned i lista",
+  "keyboard_shortcuts.enter": "for å opna status",
+  "keyboard_shortcuts.favourite": "for å merkja som favoritt",
+  "keyboard_shortcuts.favourites": "for å opna favorittlista",
+  "keyboard_shortcuts.federated": "for å opna den samla tidslina",
+  "keyboard_shortcuts.heading": "Snøggtastar",
+  "keyboard_shortcuts.home": "for opna heimetidslina",
+  "keyboard_shortcuts.hotkey": "Snøggtast",
+  "keyboard_shortcuts.legend": "for å visa denne forklåringa",
+  "keyboard_shortcuts.local": "for å opna den lokale tidslina",
+  "keyboard_shortcuts.mention": "for å nemna forfattaren",
+  "keyboard_shortcuts.muted": "for å opna lista over målbundne brukarar",
+  "keyboard_shortcuts.my_profile": "for å opna profilen din",
+  "keyboard_shortcuts.notifications": "for å opna varselskolonna",
+  "keyboard_shortcuts.open_media": "for å opna media",
+  "keyboard_shortcuts.pinned": "for å opna lista over festa tut",
+  "keyboard_shortcuts.profile": "for å opna forfattaren sin profil",
+  "keyboard_shortcuts.reply": "for å svara",
+  "keyboard_shortcuts.requests": "for å opna lista med fylgjeførespurnader",
+  "keyboard_shortcuts.search": "for å fokusera søket",
+  "keyboard_shortcuts.start": "for å opna \"kom i gang\"-feltet",
+  "keyboard_shortcuts.toggle_hidden": "for å visa/gøyma tekst bak innhaldsvarsel",
+  "keyboard_shortcuts.toggle_sensitivity": "for å visa/gøyma media",
+  "keyboard_shortcuts.toot": "for å laga ein heilt ny tut",
+  "keyboard_shortcuts.unfocus": "å ufokusere komponerings-/søkefeltet",
+  "keyboard_shortcuts.up": "for å flytta seg opp på lista",
+  "lightbox.close": "Lukk att",
   "lightbox.next": "Neste",
-  "lightbox.previous": "Forrige",
+  "lightbox.previous": "Førre",
   "lightbox.view_context": "Sjå kontekst",
   "lists.account.add": "Legg til i liste",
-  "lists.account.remove": "Ta burt fra liste",
+  "lists.account.remove": "Fjern frå liste",
   "lists.delete": "Slett liste",
   "lists.edit": "Rediger liste",
-  "lists.edit.submit": "Bytt tittel",
+  "lists.edit.submit": "Endre tittel",
   "lists.new.create": "Legg til liste",
-  "lists.new.title_placeholder": "Ny liste tittel",
-  "lists.search": "Søk gjennom folk du føljar",
+  "lists.new.title_placeholder": "Ny listetittel",
+  "lists.search": "Søk gjennom folk du følgjer",
   "lists.subheading": "Dine lister",
-  "load_pending": "{count, plural, one {# new item} other {# new items}}",
-  "loading_indicator.label": "Laster...",
-  "media_gallery.toggle_visible": "Toggle visibility",
+  "load_pending": "{count, plural, one {# nytt element} other {# nye element}}",
+  "loading_indicator.label": "Lastar...",
+  "media_gallery.toggle_visible": "Gjer synleg/usynleg",
   "missing_indicator.label": "Ikkje funne",
-  "missing_indicator.sublabel": "Denne ressursen ble ikkje funne",
-  "mute_modal.hide_notifications": "Hide notifications from this user?",
-  "navigation_bar.apps": "Mobile apps",
-  "navigation_bar.blocks": "Blocked users",
-  "navigation_bar.community_timeline": "Local timeline",
-  "navigation_bar.compose": "Compose new toot",
-  "navigation_bar.direct": "Direct messages",
-  "navigation_bar.discover": "Discover",
-  "navigation_bar.domain_blocks": "Hidden domains",
-  "navigation_bar.edit_profile": "Edit profile",
-  "navigation_bar.favourites": "Favourites",
-  "navigation_bar.filters": "Muted words",
-  "navigation_bar.follow_requests": "Follow requests",
-  "navigation_bar.follows_and_followers": "Follows and followers",
-  "navigation_bar.info": "About this server",
-  "navigation_bar.keyboard_shortcuts": "Hotkeys",
+  "missing_indicator.sublabel": "Fann ikkje ressursen",
+  "mute_modal.hide_notifications": "Gøyme varsel frå denne brukaren?",
+  "navigation_bar.apps": "Mobilappar",
+  "navigation_bar.blocks": "Blokkerte brukarar",
+  "navigation_bar.bookmarks": "Bokmerke",
+  "navigation_bar.community_timeline": "Lokal tidsline",
+  "navigation_bar.compose": "Lag eit nytt tut",
+  "navigation_bar.direct": "Direktemeldingar",
+  "navigation_bar.discover": "Oppdag",
+  "navigation_bar.domain_blocks": "Skjulte domene",
+  "navigation_bar.edit_profile": "Rediger profil",
+  "navigation_bar.favourites": "Favorittar",
+  "navigation_bar.filters": "MÃ¥lbundne ord",
+  "navigation_bar.follow_requests": "Fylgjeførespurnader",
+  "navigation_bar.follows_and_followers": "Fylgje og fylgjarar",
+  "navigation_bar.info": "Om denne tenaren",
+  "navigation_bar.keyboard_shortcuts": "Snøggtastar",
   "navigation_bar.lists": "Lister",
   "navigation_bar.logout": "Logg ut",
-  "navigation_bar.mutes": "Dempa brukare",
-  "navigation_bar.personal": "Personlig",
-  "navigation_bar.pins": "Festa tuter",
-  "navigation_bar.preferences": "Preferanser",
-  "navigation_bar.public_timeline": "Federert tidslinje",
-  "navigation_bar.security": "Sikkerheit",
-  "notification.favourite": "{name} likte din status",
-  "notification.follow": "{name} fulgte deg",
-  "notification.mention": "{name} nevnte deg",
-  "notification.poll": "A poll you have voted in has ended",
-  "notification.reblog": "{name} boosted your status",
-  "notifications.clear": "Klarer notifikasjoner",
-  "notifications.clear_confirmation": "Are you sure you want to permanently clear all your notifications?",
-  "notifications.column_settings.alert": "Desktop notifications",
-  "notifications.column_settings.favourite": "Favourites:",
-  "notifications.column_settings.filter_bar.advanced": "Display all categories",
-  "notifications.column_settings.filter_bar.category": "Quick filter bar",
-  "notifications.column_settings.filter_bar.show": "Show",
-  "notifications.column_settings.follow": "Nye føljare:",
-  "notifications.column_settings.mention": "Mentions:",
-  "notifications.column_settings.poll": "Poll results:",
-  "notifications.column_settings.push": "Push notifications",
-  "notifications.column_settings.reblog": "Framhevinger:",
-  "notifications.column_settings.show": "Show in column",
-  "notifications.column_settings.sound": "Play sound",
-  "notifications.filter.all": "All",
-  "notifications.filter.boosts": "Framhevinger",
-  "notifications.filter.favourites": "Favoritter",
-  "notifications.filter.follows": "Føljare",
-  "notifications.filter.mentions": "Mentions",
-  "notifications.filter.polls": "Poll results",
-  "notifications.group": "{count} notifications",
-  "poll.closed": "Closed",
-  "poll.refresh": "Refresh",
-  "poll.total_people": "{count, plural, one {# person} other {# people}}",
-  "poll.total_votes": "{count, plural, one {# vote} other {# votes}}",
-  "poll.vote": "Vote",
-  "poll.voted": "You voted for this answer",
-  "poll_button.add_poll": "Add a poll",
-  "poll_button.remove_poll": "Remove poll",
-  "privacy.change": "Adjust status privacy",
-  "privacy.direct.long": "Post to mentioned users only",
-  "privacy.direct.short": "Direct",
-  "privacy.private.long": "Post to followers only",
-  "privacy.private.short": "Followers-only",
-  "privacy.public.long": "Post to public timelines",
-  "privacy.public.short": "Public",
-  "privacy.unlisted.long": "Do not show in public timelines",
-  "privacy.unlisted.short": "Unlisted",
-  "refresh": "Refresh",
-  "regeneration_indicator.label": "Loading…",
-  "regeneration_indicator.sublabel": "Your home feed is being prepared!",
-  "relative_time.days": "{number}d",
-  "relative_time.hours": "{number}h",
-  "relative_time.just_now": "now",
-  "relative_time.minutes": "{number}m",
-  "relative_time.seconds": "{number}s",
-  "reply_indicator.cancel": "Cancel",
-  "report.forward": "Forward to {target}",
-  "report.forward_hint": "The account is from another server. Send an anonymized copy of the report there as well?",
-  "report.hint": "The report will be sent to your server moderators. You can provide an explanation of why you are reporting this account below:",
-  "report.placeholder": "Additional comments",
-  "report.submit": "Submit",
-  "report.target": "Report {target}",
-  "search.placeholder": "Search",
-  "search_popout.search_format": "Advanced search format",
-  "search_popout.tips.full_text": "Simple text returns statuses you have written, favourited, boosted, or have been mentioned in, as well as matching usernames, display names, and hashtags.",
-  "search_popout.tips.hashtag": "hashtag",
+  "navigation_bar.mutes": "MÃ¥lbundne brukarar",
+  "navigation_bar.personal": "Personleg",
+  "navigation_bar.pins": "Festa tut",
+  "navigation_bar.preferences": "Innstillingar",
+  "navigation_bar.public_timeline": "Føderert tidsline",
+  "navigation_bar.security": "Tryggleik",
+  "notification.favourite": "{name} merkte statusen din som favoritt",
+  "notification.follow": "{name} fylgde deg",
+  "notification.follow_request": "{name} har bedt om å fylgja deg",
+  "notification.mention": "{name} nemnde deg",
+  "notification.own_poll": "Rundspørjinga di er ferdig",
+  "notification.poll": "Ei rundspørjing du har røysta i er ferdig",
+  "notification.reblog": "{name} framheva statusen din",
+  "notifications.clear": "Tøm varsel",
+  "notifications.clear_confirmation": "Er du sikker på at du vil fjerna alle varsla dine for alltid?",
+  "notifications.column_settings.alert": "Skrivebordsvarsel",
+  "notifications.column_settings.favourite": "Favorittar:",
+  "notifications.column_settings.filter_bar.advanced": "Vis alle kategoriar",
+  "notifications.column_settings.filter_bar.category": "Snarfilterlinje",
+  "notifications.column_settings.filter_bar.show": "Vis",
+  "notifications.column_settings.follow": "Nye fylgjarar:",
+  "notifications.column_settings.follow_request": "Ny fylgjarførespurnader:",
+  "notifications.column_settings.mention": "Nemningar:",
+  "notifications.column_settings.poll": "Røysteresultat:",
+  "notifications.column_settings.push": "Pushvarsel",
+  "notifications.column_settings.reblog": "Framhevingar:",
+  "notifications.column_settings.show": "Vis i kolonne",
+  "notifications.column_settings.sound": "Spel av lyd",
+  "notifications.filter.all": "Alle",
+  "notifications.filter.boosts": "Framhevingar",
+  "notifications.filter.favourites": "Favorittar",
+  "notifications.filter.follows": "Fylgjer",
+  "notifications.filter.mentions": "Nemningar",
+  "notifications.filter.polls": "Røysteresultat",
+  "notifications.group": "{count} varsel",
+  "poll.closed": "Lukka",
+  "poll.refresh": "Oppdater",
+  "poll.total_people": "{count, plural, one {# person} other {# folk}}",
+  "poll.total_votes": "{count, plural, one {# røyst} other {# røyster}}",
+  "poll.vote": "Røyst",
+  "poll.voted": "Du røysta på dette svaret",
+  "poll_button.add_poll": "Start ei meiningsmåling",
+  "poll_button.remove_poll": "Fjern røyst",
+  "privacy.change": "Juster status-synlegheit",
+  "privacy.direct.long": "Legg berre ut for nemnde brukarar",
+  "privacy.direct.short": "Direkte",
+  "privacy.private.long": "Post kun til følgjarar",
+  "privacy.private.short": "Kun følgjarar",
+  "privacy.public.long": "Post til offentlege tidslinjer",
+  "privacy.public.short": "Offentleg",
+  "privacy.unlisted.long": "Ikkje post til offentlege tidslinjer",
+  "privacy.unlisted.short": "Uoppført",
+  "refresh": "Oppdater",
+  "regeneration_indicator.label": "Lastar…",
+  "regeneration_indicator.sublabel": "Heimetidslinja di vert førebudd!",
+  "relative_time.days": "{number}dg",
+  "relative_time.hours": "{number}t",
+  "relative_time.just_now": "nå",
+  "relative_time.minutes": "{number}min",
+  "relative_time.seconds": "{number}sek",
+  "reply_indicator.cancel": "Avbryt",
+  "report.forward": "Vidaresend til {target}",
+  "report.forward_hint": "Kontoen er frå ein annan tenar. Vil du senda ein anonymisert kopi av rapporten dit òg?",
+  "report.hint": "Rapporten vil verte sendt til dine tenarmoderatorar. Du kan oppgje ei forklaring på kvifor du rapporterer denne kontoen, under:",
+  "report.placeholder": "Tilleggskommentarar",
+  "report.submit": "Send inn",
+  "report.target": "Rapporterer {target}",
+  "search.placeholder": "Søk",
+  "search_popout.search_format": "Avansert søkeformat",
+  "search_popout.tips.full_text": "Enkel tekst returnerer statusar du har skrive, likt, framheva eller vorte nemnd i, i tillegg til samsvarande brukarnamn, visningsnamn og emneknaggar.",
+  "search_popout.tips.hashtag": "emneknagg",
   "search_popout.tips.status": "status",
-  "search_popout.tips.text": "Simple text returns matching display names, usernames and hashtags",
-  "search_popout.tips.user": "user",
-  "search_results.accounts": "People",
-  "search_results.hashtags": "Hashtags",
-  "search_results.statuses": "Toots",
-  "search_results.statuses_fts_disabled": "Searching toots by their content is not enabled on this Mastodon server.",
-  "search_results.total": "{count, number} {count, plural, one {result} other {results}}",
-  "status.admin_account": "Open moderation interface for @{name}",
-  "status.admin_status": "Open this status in the moderation interface",
-  "status.block": "Block @{name}",
-  "status.cancel_reblog_private": "Unboost",
-  "status.cannot_reblog": "This post cannot be boosted",
-  "status.copy": "Copy link to status",
-  "status.delete": "Delete",
-  "status.detailed_status": "Detailed conversation view",
-  "status.direct": "Direct message @{name}",
-  "status.embed": "Embed",
-  "status.favourite": "Favourite",
-  "status.filtered": "Filtered",
-  "status.load_more": "Load more",
-  "status.media_hidden": "Media hidden",
-  "status.mention": "Mention @{name}",
-  "status.more": "More",
-  "status.mute": "Mute @{name}",
-  "status.mute_conversation": "Mute conversation",
-  "status.open": "Expand this status",
-  "status.pin": "Pin on profile",
-  "status.pinned": "Pinned toot",
-  "status.read_more": "Read more",
-  "status.reblog": "Boost",
-  "status.reblog_private": "Boost to original audience",
-  "status.reblogged_by": "{name} boosted",
-  "status.reblogs.empty": "No one has boosted this toot yet. When someone does, they will show up here.",
-  "status.redraft": "Delete & re-draft",
-  "status.reply": "Reply",
-  "status.replyAll": "Reply to thread",
-  "status.report": "Report @{name}",
-  "status.sensitive_warning": "Sensitive content",
-  "status.share": "Share",
-  "status.show_less": "Show less",
-  "status.show_less_all": "Show less for all",
-  "status.show_more": "Show more",
-  "status.show_more_all": "Show more for all",
-  "status.show_thread": "Show thread",
-  "status.uncached_media_warning": "Not available",
-  "status.unmute_conversation": "Unmute conversation",
-  "status.unpin": "Unpin from profile",
-  "suggestions.dismiss": "Dismiss suggestion",
-  "suggestions.header": "You might be interested in…",
-  "tabs_bar.federated_timeline": "Federated",
-  "tabs_bar.home": "Home",
-  "tabs_bar.local_timeline": "Local",
-  "tabs_bar.notifications": "Notifications",
-  "tabs_bar.search": "Search",
-  "time_remaining.days": "{number, plural, one {# day} other {# days}} left",
-  "time_remaining.hours": "{number, plural, one {# hour} other {# hours}} left",
-  "time_remaining.minutes": "{number, plural, one {# minute} other {# minutes}} left",
-  "time_remaining.moments": "Moments remaining",
-  "time_remaining.seconds": "{number, plural, one {# second} other {# seconds}} left",
-  "trends.count_by_accounts": "{count} {rawCount, plural, one {person} other {people}} talking",
-  "trends.trending_now": "Trending now",
-  "ui.beforeunload": "Your draft will be lost if you leave Mastodon.",
-  "upload_area.title": "Drag & drop to upload",
-  "upload_button.label": "Add media ({formats})",
-  "upload_error.limit": "File upload limit exceeded.",
-  "upload_error.poll": "File upload not allowed with polls.",
-  "upload_form.description": "Describe for the visually impaired",
-  "upload_form.edit": "Edit",
-  "upload_form.undo": "Delete",
-  "upload_modal.analyzing_picture": "Analyzing picture…",
-  "upload_modal.apply": "Apply",
-  "upload_modal.description_placeholder": "A quick brown fox jumps over the lazy dog",
-  "upload_modal.detect_text": "Detect text from picture",
-  "upload_modal.edit_media": "Edit media",
-  "upload_modal.hint": "Click or drag the circle on the preview to choose the focal point which will always be in view on all thumbnails.",
-  "upload_modal.preview_label": "Preview ({ratio})",
-  "upload_progress.label": "Uploading…",
-  "video.close": "Close video",
-  "video.exit_fullscreen": "Exit full screen",
-  "video.expand": "Expand video",
-  "video.fullscreen": "Full screen",
-  "video.hide": "Hide video",
-  "video.mute": "Mute sound",
+  "search_popout.tips.text": "Enkel tekst returnerer samsvarande visningsnamn, brukarnamn og emneknaggar",
+  "search_popout.tips.user": "brukar",
+  "search_results.accounts": "Folk",
+  "search_results.hashtags": "Emneknaggar",
+  "search_results.statuses": "Tut",
+  "search_results.statuses_fts_disabled": "På denne Matsodon-tenaren kan du ikkje søkja på tut etter innhaldet deira.",
+  "search_results.total": "{count, number} {count, plural, one {treff} other {treff}}",
+  "status.admin_account": "Opne moderasjonsgrensesnitt for @{name}",
+  "status.admin_status": "Opne denne statusen i moderasjonsgrensesnittet",
+  "status.block": "Blokker @{name}",
+  "status.bookmark": "Bokmerke",
+  "status.cancel_reblog_private": "Opphev framheving",
+  "status.cannot_reblog": "Denne posten kan ikkje framhevast",
+  "status.copy": "Kopier lenke til status",
+  "status.delete": "Slett",
+  "status.detailed_status": "Detaljert samtalevisning",
+  "status.direct": "Send melding til @{name}",
+  "status.embed": "Bygg inn",
+  "status.favourite": "Favoritt",
+  "status.filtered": "Filtrert",
+  "status.load_more": "Last inn meir",
+  "status.media_hidden": "Medium gøymd",
+  "status.mention": "Nemn @{name}",
+  "status.more": "Meir",
+  "status.mute": "MÃ¥lbind @{name}",
+  "status.mute_conversation": "MÃ¥lbind samtale",
+  "status.open": "Utvid denne statusen",
+  "status.pin": "Fest på profil",
+  "status.pinned": "Festa tut",
+  "status.read_more": "Les meir",
+  "status.reblog": "Framhev",
+  "status.reblog_private": "Framhev til dei originale mottakarane",
+  "status.reblogged_by": "{name} framheva",
+  "status.reblogs.empty": "Ingen har framheva dette tutet enno. Om nokon gjer, så dukkar det opp her.",
+  "status.redraft": "Slett & skriv på nytt",
+  "status.remove_bookmark": "Fjern bokmerke",
+  "status.reply": "Svar",
+  "status.replyAll": "Svar til tråd",
+  "status.report": "Rapporter @{name}",
+  "status.sensitive_warning": "Sensitivt innhald",
+  "status.share": "Del",
+  "status.show_less": "Vis mindre",
+  "status.show_less_all": "Vis mindre for alle",
+  "status.show_more": "Vis meir",
+  "status.show_more_all": "Vis meir for alle",
+  "status.show_thread": "Vis tråd",
+  "status.uncached_media_warning": "Ikkje tilgjengeleg",
+  "status.unmute_conversation": "Opphev målbinding av samtalen",
+  "status.unpin": "Løys frå profil",
+  "suggestions.dismiss": "Avslå framlegg",
+  "suggestions.header": "Du er kanskje interessert i…",
+  "tabs_bar.federated_timeline": "Føderert",
+  "tabs_bar.home": "Heim",
+  "tabs_bar.local_timeline": "Lokal",
+  "tabs_bar.notifications": "Varsel",
+  "tabs_bar.search": "Søk",
+  "time_remaining.days": "{number, plural, one {# dag} other {# dagar}} igjen",
+  "time_remaining.hours": "{number, plural, one {# time} other {# timar}} igjen",
+  "time_remaining.minutes": "{number, plural, one {# minutt} other {# minutt}} igjen",
+  "time_remaining.moments": "Kort tid igjen",
+  "time_remaining.seconds": "{number, plural, one {# sekund} other {# sekund}} igjen",
+  "trends.count_by_accounts": "{count} {rawCount, plural, one {person} other {folk}} snakkar",
+  "trends.trending_now": "Populært no",
+  "ui.beforeunload": "Kladden din forsvinn om du forlèt Mastodon no.",
+  "upload_area.title": "Drag & slepp for å lasta opp",
+  "upload_button.label": "Legg til medium ({formats})",
+  "upload_error.limit": "Du har gått over opplastingsgrensa.",
+  "upload_error.poll": "Filopplasting ikkje tillate med meiningsmålingar.",
+  "upload_form.audio_description": "Beskriv det for folk med hørselstap",
+  "upload_form.description": "Skildr for synshemja",
+  "upload_form.edit": "Rediger",
+  "upload_form.undo": "Slett",
+  "upload_form.video_description": "Beskriv det for folk med hørselstap eller synshemminger",
+  "upload_modal.analyzing_picture": "Analyserer bilete…",
+  "upload_modal.apply": "Bruk",
+  "upload_modal.description_placeholder": "Ein rask brun rev hoppar over den late hunden",
+  "upload_modal.detect_text": "Gjenkjenn tekst i biletet",
+  "upload_modal.edit_media": "Rediger medium",
+  "upload_modal.hint": "Klikk og dra sirkelen på førehandsvisninga for å velge fokuspunktet som alltid vil vere synleg på alle miniatyrbileta.",
+  "upload_modal.preview_label": "Førehandsvis ({ratio})",
+  "upload_progress.label": "Lastar opp...",
+  "video.close": "Lukk video",
+  "video.download": "Last ned fil",
+  "video.exit_fullscreen": "Lukk fullskjerm",
+  "video.expand": "Utvid video",
+  "video.fullscreen": "Fullskjerm",
+  "video.hide": "Gøym video",
+  "video.mute": "Demp lyd",
   "video.pause": "Pause",
-  "video.play": "Play",
-  "video.unmute": "Unmute sound"
+  "video.play": "Spel av",
+  "video.unmute": "Av-dempe lyd"
 }
diff --git a/app/javascript/mastodon/locales/no.json b/app/javascript/mastodon/locales/no.json
index 28f89863323581c959eafc17c18c5419134e5dd2..76f574d6ca5226fec92fa51cd5f170ab6f1e460d 100644
--- a/app/javascript/mastodon/locales/no.json
+++ b/app/javascript/mastodon/locales/no.json
@@ -1,31 +1,32 @@
 {
-  "account.add_or_remove_from_list": "Add or Remove from lists",
+  "account.add_or_remove_from_list": "Legg til eller fjern fra lister",
   "account.badges.bot": "Bot",
+  "account.badges.group": "Group",
   "account.block": "Blokkér @{name}",
   "account.block_domain": "Skjul alt fra {domain}",
-  "account.blocked": "Blocked",
-  "account.cancel_follow_request": "Cancel follow request",
+  "account.blocked": "Blokkert",
+  "account.cancel_follow_request": "Avbryt følge forespørsel",
   "account.direct": "Direct Message @{name}",
-  "account.domain_blocked": "Domain hidden",
+  "account.domain_blocked": "Domenet skjult",
   "account.edit_profile": "Rediger profil",
-  "account.endorse": "Feature on profile",
+  "account.endorse": "Vis frem på profilen",
   "account.follow": "Følg",
   "account.followers": "Følgere",
-  "account.followers.empty": "No one follows this user yet.",
+  "account.followers.empty": "Ingen følger denne brukeren ennå.",
   "account.follows": "Følger",
-  "account.follows.empty": "This user doesn't follow anyone yet.",
+  "account.follows.empty": "Denne brukeren følger ikke noen enda.",
   "account.follows_you": "Følger deg",
   "account.hide_reblogs": "Skjul fremhevinger fra @{name}",
-  "account.last_status": "Last active",
-  "account.link_verified_on": "Ownership of this link was checked on {date}",
-  "account.locked_info": "This account privacy status is set to locked. The owner manually reviews who can follow them.",
+  "account.last_status": "Sist aktiv",
+  "account.link_verified_on": "Eierskap av denne lenken ble sjekket {date}",
+  "account.locked_info": "Denne kontoens personvernstatus er satt til låst. Eieren vurderer manuelt hvem som kan følge dem.",
   "account.media": "Media",
   "account.mention": "Nevn @{name}",
   "account.moved_to": "{name} har flyttet til:",
   "account.mute": "Demp @{name}",
   "account.mute_notifications": "Ignorer varsler fra @{name}",
-  "account.muted": "Muted",
-  "account.never_active": "Never",
+  "account.muted": "Dempet",
+  "account.never_active": "Aldri",
   "account.posts": "Innlegg",
   "account.posts_with_replies": "Toots with replies",
   "account.report": "Rapportér @{name}",
@@ -34,27 +35,28 @@
   "account.show_reblogs": "Vis boosts fra @{name}",
   "account.unblock": "Avblokker @{name}",
   "account.unblock_domain": "Vis {domain}",
-  "account.unendorse": "Don't feature on profile",
+  "account.unendorse": "Ikke vis frem på profilen",
   "account.unfollow": "Avfølg",
   "account.unmute": "Avdemp @{name}",
   "account.unmute_notifications": "Vis varsler fra @{name}",
-  "alert.rate_limited.message": "Please retry after {retry_time, time, medium}.",
-  "alert.rate_limited.title": "Rate limited",
-  "alert.unexpected.message": "An unexpected error occurred.",
+  "alert.rate_limited.message": "Vennligst prøv igjen etter kl. {retry_time, time, medium}.",
+  "alert.rate_limited.title": "Hastighetsbegrenset",
+  "alert.unexpected.message": "En uventet feil oppstod.",
   "alert.unexpected.title": "Oops!",
-  "autosuggest_hashtag.per_week": "{count} per week",
+  "autosuggest_hashtag.per_week": "{count} per uke",
   "boost_modal.combo": "You kan trykke {combo} for å hoppe over dette neste gang",
   "bundle_column_error.body": "Noe gikk galt mens denne komponenten lastet.",
   "bundle_column_error.retry": "Prøv igjen",
-  "bundle_column_error.title": "Network error",
+  "bundle_column_error.title": "Nettverksfeil",
   "bundle_modal_error.close": "Lukk",
   "bundle_modal_error.message": "Noe gikk galt da denne komponenten lastet.",
   "bundle_modal_error.retry": "Prøv igjen",
   "column.blocks": "Blokkerte brukere",
+  "column.bookmarks": "Bokmerker",
   "column.community": "Lokal tidslinje",
-  "column.direct": "Direct messages",
-  "column.directory": "Browse profiles",
-  "column.domain_blocks": "Hidden domains",
+  "column.direct": "Direktemeldinger",
+  "column.directory": "Bla gjennom profiler",
+  "column.domain_blocks": "Skjulte domener",
   "column.favourites": "Likt",
   "column.follow_requests": "Følgeforespørsler",
   "column.home": "Hjem",
@@ -73,52 +75,54 @@
   "column_subheading.settings": "Innstillinger",
   "community.column_settings.media_only": "Media only",
   "compose_form.direct_message_warning": "This toot will only be visible to all the mentioned users.",
-  "compose_form.direct_message_warning_learn_more": "Learn more",
+  "compose_form.direct_message_warning_learn_more": "Lær mer",
   "compose_form.hashtag_warning": "Denne tuten blir ikke listet under noen emneknagger da den er ulistet. Kun offentlige tuter kan søktes etter med emneknagg.",
   "compose_form.lock_disclaimer": "Din konto er ikke {locked}. Hvem som helst kan følge deg og se dine private poster.",
   "compose_form.lock_disclaimer.lock": "låst",
   "compose_form.placeholder": "Hva har du på hjertet?",
-  "compose_form.poll.add_option": "Add a choice",
-  "compose_form.poll.duration": "Poll duration",
-  "compose_form.poll.option_placeholder": "Choice {number}",
-  "compose_form.poll.remove_option": "Remove this choice",
+  "compose_form.poll.add_option": "Legg til et valg",
+  "compose_form.poll.duration": "Avstemningens varighet",
+  "compose_form.poll.option_placeholder": "Valg {number}",
+  "compose_form.poll.remove_option": "Fjern dette valget",
+  "compose_form.poll.switch_to_multiple": "Change poll to allow multiple choices",
+  "compose_form.poll.switch_to_single": "Change poll to allow for a single choice",
   "compose_form.publish": "Tut",
   "compose_form.publish_loud": "{publish}!",
-  "compose_form.sensitive.hide": "Mark media as sensitive",
-  "compose_form.sensitive.marked": "Media is marked as sensitive",
-  "compose_form.sensitive.unmarked": "Media is not marked as sensitive",
-  "compose_form.spoiler.marked": "Text is hidden behind warning",
-  "compose_form.spoiler.unmarked": "Text is not hidden",
+  "compose_form.sensitive.hide": "Merk media som sensitivt",
+  "compose_form.sensitive.marked": "Mediet er merket som sensitiv",
+  "compose_form.sensitive.unmarked": "Mediet er ikke merket som sensitiv",
+  "compose_form.spoiler.marked": "Teksten er skjult bak en advarsel",
+  "compose_form.spoiler.unmarked": "Teksten er ikke skjult",
   "compose_form.spoiler_placeholder": "Innholdsadvarsel",
   "confirmation_modal.cancel": "Avbryt",
-  "confirmations.block.block_and_report": "Block & Report",
+  "confirmations.block.block_and_report": "Blokker og rapporter",
   "confirmations.block.confirm": "Blokkèr",
   "confirmations.block.message": "Er du sikker på at du vil blokkere {name}?",
   "confirmations.delete.confirm": "Slett",
   "confirmations.delete.message": "Er du sikker på at du vil slette denne statusen?",
-  "confirmations.delete_list.confirm": "Delete",
+  "confirmations.delete_list.confirm": "Slett",
   "confirmations.delete_list.message": "Er du sikker på at du vil slette denne listen permanent?",
   "confirmations.domain_block.confirm": "Skjul alt fra domenet",
   "confirmations.domain_block.message": "Er du sikker på at du vil skjule hele domenet {domain}? I de fleste tilfeller er det bedre med målrettet blokkering eller demping.",
-  "confirmations.logout.confirm": "Log out",
-  "confirmations.logout.message": "Are you sure you want to log out?",
+  "confirmations.logout.confirm": "Logg ut",
+  "confirmations.logout.message": "Er du sikker på at du vil logge ut?",
   "confirmations.mute.confirm": "Demp",
-  "confirmations.mute.explanation": "This will hide posts from them and posts mentioning them, but it will still allow them to see your posts and follow you.",
+  "confirmations.mute.explanation": "Dette vil skjule innlegg fra dem og innlegg som nevner dem, men det vil fortsatt la dem se dine innlegg og å følge deg.",
   "confirmations.mute.message": "Er du sikker på at du vil dempe {name}?",
-  "confirmations.redraft.confirm": "Delete & redraft",
+  "confirmations.redraft.confirm": "Slett og drøft på nytt",
   "confirmations.redraft.message": "Are you sure you want to delete this status and re-draft it? You will lose all replies, boosts and favourites to it.",
-  "confirmations.reply.confirm": "Reply",
-  "confirmations.reply.message": "Replying now will overwrite the message you are currently composing. Are you sure you want to proceed?",
+  "confirmations.reply.confirm": "Svar",
+  "confirmations.reply.message": "Å svare nå vil overskrive meldingen du skriver for øyeblikket. Er du sikker på at du vil fortsette?",
   "confirmations.unfollow.confirm": "Slutt å følge",
   "confirmations.unfollow.message": "Er du sikker på at du vil slutte å følge {name}?",
-  "conversation.delete": "Delete conversation",
-  "conversation.mark_as_read": "Mark as read",
-  "conversation.open": "View conversation",
-  "conversation.with": "With {names}",
-  "directory.federated": "From known fediverse",
-  "directory.local": "From {domain} only",
-  "directory.new_arrivals": "New arrivals",
-  "directory.recently_active": "Recently active",
+  "conversation.delete": "Slett samtalen",
+  "conversation.mark_as_read": "Marker som lest",
+  "conversation.open": "Vis samtale",
+  "conversation.with": "Med {names}",
+  "directory.federated": "Fra det kjente strømiverset",
+  "directory.local": "Kun fra {domain}",
+  "directory.new_arrivals": "Nye ankomster",
+  "directory.recently_active": "Nylig aktiv",
   "embed.instructions": "Kopier koden under for å bygge inn denne statusen på hjemmesiden din.",
   "embed.preview": "Slik kommer det til å se ut:",
   "emoji_button.activity": "Aktivitet",
@@ -135,27 +139,28 @@
   "emoji_button.search_results": "Søkeresultat",
   "emoji_button.symbols": "Symboler",
   "emoji_button.travel": "Reise & steder",
-  "empty_column.account_timeline": "No toots here!",
-  "empty_column.account_unavailable": "Profile unavailable",
-  "empty_column.blocks": "You haven't blocked any users yet.",
+  "empty_column.account_timeline": "Ingen tuter er her!",
+  "empty_column.account_unavailable": "Profilen er utilgjengelig",
+  "empty_column.blocks": "Du har ikke blokkert noen brukere enda.",
+  "empty_column.bookmarked_statuses": "Du har ikke bokmerket noen tuter enda. NÃ¥r du bokmerker en, vil den dukke opp her.",
   "empty_column.community": "Den lokale tidslinjen er tom. Skriv noe offentlig for å få snøballen til å rulle!",
-  "empty_column.direct": "You don't have any direct messages yet. When you send or receive one, it will show up here.",
-  "empty_column.domain_blocks": "There are no hidden domains yet.",
-  "empty_column.favourited_statuses": "You don't have any favourite toots yet. When you favourite one, it will show up here.",
-  "empty_column.favourites": "No one has favourited this toot yet. When someone does, they will show up here.",
-  "empty_column.follow_requests": "You don't have any follow requests yet. When you receive one, it will show up here.",
+  "empty_column.direct": "Du har ingen direktemeldinger enda. NÃ¥r du mottar eller sender en, vil den dukke opp her.",
+  "empty_column.domain_blocks": "Det er ingen skjulte domener enda.",
+  "empty_column.favourited_statuses": "Du har ikke likt noen tuter enda. NÃ¥r du liker en, vil den dukke opp her.",
+  "empty_column.favourites": "Ingen har likt denne tuten enda. Når noen gjør det, vil de dukke opp her.",
+  "empty_column.follow_requests": "Du har ingen følgeforespørsler enda. Når du mottar en, vil den dukke opp her.",
   "empty_column.hashtag": "Det er ingenting i denne hashtagen ennå.",
   "empty_column.home": "Du har ikke fulgt noen ennå. Besøk {publlic} eller bruk søk for å komme i gang og møte andre brukere.",
   "empty_column.home.public_timeline": "en offentlig tidslinje",
   "empty_column.list": "Det er ingenting i denne listen ennå. Når medlemmene av denne listen legger ut nye statuser vil de dukke opp her.",
-  "empty_column.lists": "You don't have any lists yet. When you create one, it will show up here.",
-  "empty_column.mutes": "You haven't muted any users yet.",
+  "empty_column.lists": "Du har ingen lister enda. NÃ¥r du lager en, vil den dukke opp her.",
+  "empty_column.mutes": "Du har ikke dempet noen brukere enda.",
   "empty_column.notifications": "Du har ingen varsler ennå. Kommuniser med andre for å begynne samtalen.",
   "empty_column.public": "Det er ingenting her! Skriv noe offentlig, eller følg brukere manuelt fra andre instanser for å fylle den opp",
-  "error.unexpected_crash.explanation": "Due to a bug in our code or a browser compatibility issue, this page could not be displayed correctly.",
-  "error.unexpected_crash.next_steps": "Try refreshing the page. If that does not help, you may still be able to use Mastodon through a different browser or native app.",
-  "errors.unexpected_crash.copy_stacktrace": "Copy stacktrace to clipboard",
-  "errors.unexpected_crash.report_issue": "Report issue",
+  "error.unexpected_crash.explanation": "På grunn av en bug i koden vår eller et nettleserkompatibilitetsproblem, kunne denne siden ikke vises riktig.",
+  "error.unexpected_crash.next_steps": "Prøv å oppfriske siden. Dersom det ikke hjelper, vil du kanskje fortsatt kunne bruke Mastodon gjennom en annen nettleser eller app.",
+  "errors.unexpected_crash.copy_stacktrace": "Kopier stacktrace-en til utklippstavlen",
+  "errors.unexpected_crash.report_issue": "Rapporter en feil",
   "federation.change": "Adjust status federation",
   "federation.federated.long": "Allow toot to reach other instances",
   "federation.federated.short": "Federated",
@@ -163,153 +168,158 @@
   "federation.local_only.short": "Local-only",
   "follow_request.authorize": "Autorisér",
   "follow_request.reject": "Avvis",
-  "getting_started.developers": "Developers",
-  "getting_started.directory": "Profile directory",
-  "getting_started.documentation": "Documentation",
+  "getting_started.developers": "Utviklere",
+  "getting_started.directory": "Profilmappe",
+  "getting_started.documentation": "Dokumentasjon",
   "getting_started.heading": "Kom i gang",
-  "getting_started.invite": "Invite people",
+  "getting_started.invite": "Inviter folk",
   "getting_started.open_source_notice": "Mastodon er fri programvare. Du kan bidra eller rapportere problemer på GitHub på {github}.",
-  "getting_started.security": "Security",
-  "getting_started.terms": "Terms of service",
-  "hashtag.column_header.tag_mode.all": "and {additional}",
-  "hashtag.column_header.tag_mode.any": "or {additional}",
-  "hashtag.column_header.tag_mode.none": "without {additional}",
-  "hashtag.column_settings.select.no_options_message": "No suggestions found",
-  "hashtag.column_settings.select.placeholder": "Enter hashtags…",
-  "hashtag.column_settings.tag_mode.all": "All of these",
-  "hashtag.column_settings.tag_mode.any": "Any of these",
-  "hashtag.column_settings.tag_mode.none": "None of these",
+  "getting_started.security": "Kontoinnstillinger",
+  "getting_started.terms": "Bruksvilkår",
+  "hashtag.column_header.tag_mode.all": "og {additional}",
+  "hashtag.column_header.tag_mode.any": "eller {additional}",
+  "hashtag.column_header.tag_mode.none": "uten {additional}",
+  "hashtag.column_settings.select.no_options_message": "Ingen forslag ble funnet",
+  "hashtag.column_settings.select.placeholder": "Skriv inn emneknagger …",
+  "hashtag.column_settings.tag_mode.all": "Alle disse",
+  "hashtag.column_settings.tag_mode.any": "Enhver av disse",
+  "hashtag.column_settings.tag_mode.none": "Ingen av disse",
   "hashtag.column_settings.tag_toggle": "Include additional tags in this column",
-  "home.column_settings.basic": "Enkel",
+  "home.column_settings.basic": "Enkelt",
   "home.column_settings.show_reblogs": "Vis fremhevinger",
   "home.column_settings.show_replies": "Vis svar",
-  "intervals.full.days": "{number, plural, one {# day} other {# days}}",
-  "intervals.full.hours": "{number, plural, one {# hour} other {# hours}}",
-  "intervals.full.minutes": "{number, plural, one {# minute} other {# minutes}}",
-  "introduction.federation.action": "Next",
-  "introduction.federation.federated.headline": "Federated",
-  "introduction.federation.federated.text": "Public posts from other servers of the fediverse will appear in the federated timeline.",
-  "introduction.federation.home.headline": "Home",
-  "introduction.federation.home.text": "Posts from people you follow will appear in your home feed. You can follow anyone on any server!",
-  "introduction.federation.local.headline": "Local",
-  "introduction.federation.local.text": "Public posts from people on the same server as you will appear in the local timeline.",
-  "introduction.interactions.action": "Finish toot-orial!",
-  "introduction.interactions.favourite.headline": "Favourite",
-  "introduction.interactions.favourite.text": "You can save a toot for later, and let the author know that you liked it, by favouriting it.",
-  "introduction.interactions.reblog.headline": "Boost",
-  "introduction.interactions.reblog.text": "You can share other people's toots with your followers by boosting them.",
-  "introduction.interactions.reply.headline": "Reply",
-  "introduction.interactions.reply.text": "You can reply to other people's and your own toots, which will chain them together in a conversation.",
-  "introduction.welcome.action": "Let's go!",
-  "introduction.welcome.headline": "First steps",
-  "introduction.welcome.text": "Welcome to the fediverse! In a few moments, you'll be able to broadcast messages and talk to your friends across a wide variety of servers. But this server, {domain}, is special—it hosts your profile, so remember its name.",
+  "intervals.full.days": "{number, plural,one {# dag} other {# dager}}",
+  "intervals.full.hours": "{number, plural, one {# time} other {# timer}}",
+  "intervals.full.minutes": "{number, plural, one {# minutt} other {# minutter}}",
+  "introduction.federation.action": "Neste",
+  "introduction.federation.federated.headline": "Felles",
+  "introduction.federation.federated.text": "Offentlige innlegg fra andre tjenere i strømiverset vil dukke opp i fellestidslinjen.",
+  "introduction.federation.home.headline": "Hjem",
+  "introduction.federation.home.text": "Innlegg fra folk du følger vil dukke opp på hjemmestrømmen din. Du kan følge hvem som helst på enhver tjener!",
+  "introduction.federation.local.headline": "Lokalt",
+  "introduction.federation.local.text": "Offentlige innlegg fra folk på samme tjener som deg, vil dukke opp i den lokale tidslinjen.",
+  "introduction.interactions.action": "Avslutt veiledningen!",
+  "introduction.interactions.favourite.headline": "Lik",
+  "introduction.interactions.favourite.text": "Du kan lagre en tut til senere, og la forfatteren vite at du satte pris på det, ved å like det.",
+  "introduction.interactions.reblog.headline": "Fremhev",
+  "introduction.interactions.reblog.text": "Du kan dele andre folks tutinger med dine følgere ved å fremheve dem.",
+  "introduction.interactions.reply.headline": "Svar",
+  "introduction.interactions.reply.text": "Du kan svare på tuten til andre folk og til deg selv, som vil binde dem sammen til en samtale.",
+  "introduction.welcome.action": "La oss sette i gang!",
+  "introduction.welcome.headline": "De første skritt",
+  "introduction.welcome.text": "Velkommen til strømiverset! Om noen øyeblikk, vil du kunne sende meldinger og snakke med dine venner over et bredt spekter av tjenere. Men denne tjeneren, {domain}, er spesiell, for den inneholder profilen din, så husk på navnet dens.",
   "keyboard_shortcuts.back": "for å navigere tilbake",
-  "keyboard_shortcuts.blocked": "to open blocked users list",
+  "keyboard_shortcuts.blocked": "Ã¥pne listen over blokkerte brukere",
   "keyboard_shortcuts.boost": "Ã¥ fremheve",
   "keyboard_shortcuts.column": "Ã¥ fokusere en status i en av kolonnene",
   "keyboard_shortcuts.compose": "Ã¥ fokusere komponeringsfeltet",
-  "keyboard_shortcuts.description": "Description",
-  "keyboard_shortcuts.direct": "to open direct messages column",
+  "keyboard_shortcuts.description": "Beskrivelse",
+  "keyboard_shortcuts.direct": "Ã¥pne direktemeldingskolonnen",
   "keyboard_shortcuts.down": "for å flytte ned i listen",
-  "keyboard_shortcuts.enter": "to open status",
+  "keyboard_shortcuts.enter": "å åpne status",
   "keyboard_shortcuts.favourite": "for å favorittmarkere",
-  "keyboard_shortcuts.favourites": "to open favourites list",
-  "keyboard_shortcuts.federated": "to open federated timeline",
+  "keyboard_shortcuts.favourites": "Ã¥pne listen over likte ting",
+  "keyboard_shortcuts.federated": "for å åpne fellestidslinjen",
   "keyboard_shortcuts.heading": "Keyboard Shortcuts",
-  "keyboard_shortcuts.home": "to open home timeline",
+  "keyboard_shortcuts.home": "Ã¥pne hjemmetidslinjen",
   "keyboard_shortcuts.hotkey": "Lyntast",
   "keyboard_shortcuts.legend": "Ã¥ vise denne forklaringen",
-  "keyboard_shortcuts.local": "to open local timeline",
+  "keyboard_shortcuts.local": "Ã¥pne den lokale tidslinjen",
   "keyboard_shortcuts.mention": "Ã¥ nevne forfatter",
-  "keyboard_shortcuts.muted": "to open muted users list",
-  "keyboard_shortcuts.my_profile": "to open your profile",
-  "keyboard_shortcuts.notifications": "to open notifications column",
-  "keyboard_shortcuts.pinned": "to open pinned toots list",
-  "keyboard_shortcuts.profile": "to open author's profile",
+  "keyboard_shortcuts.muted": "Ã¥pne listen over dempede brukere",
+  "keyboard_shortcuts.my_profile": "å åpne profilen din",
+  "keyboard_shortcuts.notifications": "Ã¥pne varslingskolonnen",
+  "keyboard_shortcuts.open_media": "å åpne media",
+  "keyboard_shortcuts.pinned": "Ã¥pne listen over klistrede tuter",
+  "keyboard_shortcuts.profile": "Ã¥pne forfatterens profil",
   "keyboard_shortcuts.reply": "for å svare",
-  "keyboard_shortcuts.requests": "to open follow requests list",
+  "keyboard_shortcuts.requests": "åpne følgingsforespørselslisten",
   "keyboard_shortcuts.search": "å fokusere søk",
-  "keyboard_shortcuts.start": "to open \"get started\" column",
-  "keyboard_shortcuts.toggle_hidden": "to show/hide text behind CW",
-  "keyboard_shortcuts.toggle_sensitivity": "to show/hide media",
+  "keyboard_shortcuts.start": "åpne «Sett i gang»-kolonnen",
+  "keyboard_shortcuts.toggle_hidden": "Ã¥ vise/skjule tekst bak en innholdsadvarsel",
+  "keyboard_shortcuts.toggle_sensitivity": "Ã¥ vise/skjule media",
   "keyboard_shortcuts.toot": "Ã¥ starte en helt ny tut",
   "keyboard_shortcuts.unfocus": "å ufokusere komponerings-/søkefeltet",
   "keyboard_shortcuts.up": "Ã¥ flytte opp i listen",
   "lightbox.close": "Lukk",
   "lightbox.next": "Neste",
   "lightbox.previous": "Forrige",
-  "lightbox.view_context": "View context",
+  "lightbox.view_context": "Vis sammenheng",
   "lists.account.add": "Legg til i listen",
   "lists.account.remove": "Fjern fra listen",
   "lists.delete": "Slett listen",
   "lists.edit": "Rediger listen",
-  "lists.edit.submit": "Change title",
+  "lists.edit.submit": "Endre tittel",
   "lists.new.create": "Ligg til liste",
   "lists.new.title_placeholder": "Ny listetittel",
   "lists.search": "Søk blant personer du følger",
   "lists.subheading": "Dine lister",
-  "load_pending": "{count, plural, one {# new item} other {# new items}}",
+  "load_pending": "{count, plural,one {# ny gjenstand} other {# nye gjenstander}}",
   "loading_indicator.label": "Laster...",
   "media_gallery.toggle_visible": "Veksle synlighet",
   "missing_indicator.label": "Ikke funnet",
   "missing_indicator.sublabel": "Denne ressursen ble ikke funnet",
   "mute_modal.hide_notifications": "Skjul varslinger fra denne brukeren?",
-  "navigation_bar.apps": "Mobile apps",
+  "navigation_bar.apps": "Mobilapper",
   "navigation_bar.blocks": "Blokkerte brukere",
+  "navigation_bar.bookmarks": "Bokmerker",
   "navigation_bar.community_timeline": "Lokal tidslinje",
-  "navigation_bar.compose": "Compose new toot",
-  "navigation_bar.direct": "Direct messages",
-  "navigation_bar.discover": "Discover",
-  "navigation_bar.domain_blocks": "Hidden domains",
+  "navigation_bar.compose": "Skriv en ny tut",
+  "navigation_bar.direct": "Direktemeldinger",
+  "navigation_bar.discover": "Oppdag",
+  "navigation_bar.domain_blocks": "Skjulte domener",
   "navigation_bar.edit_profile": "Rediger profil",
   "navigation_bar.favourites": "Favoritter",
-  "navigation_bar.filters": "Muted words",
+  "navigation_bar.filters": "Stilnede ord",
   "navigation_bar.follow_requests": "Følgeforespørsler",
-  "navigation_bar.follows_and_followers": "Follows and followers",
+  "navigation_bar.follows_and_followers": "Følginger og følgere",
   "navigation_bar.info": "Utvidet informasjon",
   "navigation_bar.keyboard_shortcuts": "Tastatursnarveier",
   "navigation_bar.lists": "Lister",
   "navigation_bar.logout": "Logg ut",
   "navigation_bar.mutes": "Dempede brukere",
-  "navigation_bar.personal": "Personal",
+  "navigation_bar.personal": "Personlig",
   "navigation_bar.pins": "Festa tuter",
   "navigation_bar.preferences": "Preferanser",
   "navigation_bar.public_timeline": "Felles tidslinje",
-  "navigation_bar.security": "Security",
+  "navigation_bar.security": "Sikkerhet",
   "notification.favourite": "{name} likte din status",
   "notification.follow": "{name} fulgte deg",
+  "notification.follow_request": "{name} har bedt om å få følge deg",
   "notification.mention": "{name} nevnte deg",
-  "notification.poll": "A poll you have voted in has ended",
+  "notification.own_poll": "Avstemningen din er ferdig",
+  "notification.poll": "En avstemning du har stemt på har avsluttet",
   "notification.reblog": "{name} fremhevde din status",
   "notifications.clear": "Fjern varsler",
   "notifications.clear_confirmation": "Er du sikker på at du vil fjerne alle dine varsler permanent?",
   "notifications.column_settings.alert": "Skrivebordsvarslinger",
   "notifications.column_settings.favourite": "Likt:",
-  "notifications.column_settings.filter_bar.advanced": "Display all categories",
-  "notifications.column_settings.filter_bar.category": "Quick filter bar",
-  "notifications.column_settings.filter_bar.show": "Show",
+  "notifications.column_settings.filter_bar.advanced": "Vis alle kategorier",
+  "notifications.column_settings.filter_bar.category": "Hurtigfiltreringslinje",
+  "notifications.column_settings.filter_bar.show": "Vis",
   "notifications.column_settings.follow": "Nye følgere:",
+  "notifications.column_settings.follow_request": "Nye følgerforespørsler:",
   "notifications.column_settings.mention": "Nevnt:",
-  "notifications.column_settings.poll": "Poll results:",
+  "notifications.column_settings.poll": "Avstemningsresultater:",
   "notifications.column_settings.push": "Push varsler",
   "notifications.column_settings.reblog": "Fremhevet:",
   "notifications.column_settings.show": "Vis i kolonne",
   "notifications.column_settings.sound": "Spill lyd",
-  "notifications.filter.all": "All",
-  "notifications.filter.boosts": "Boosts",
-  "notifications.filter.favourites": "Favourites",
-  "notifications.filter.follows": "Follows",
-  "notifications.filter.mentions": "Mentions",
-  "notifications.filter.polls": "Poll results",
-  "notifications.group": "{count} notifications",
-  "poll.closed": "Closed",
-  "poll.refresh": "Refresh",
-  "poll.total_people": "{count, plural, one {# person} other {# people}}",
-  "poll.total_votes": "{count, plural, one {# vote} other {# votes}}",
-  "poll.vote": "Vote",
-  "poll.voted": "You voted for this answer",
-  "poll_button.add_poll": "Add a poll",
-  "poll_button.remove_poll": "Remove poll",
+  "notifications.filter.all": "Alle",
+  "notifications.filter.boosts": "Fremhevinger",
+  "notifications.filter.favourites": "Favoritter",
+  "notifications.filter.follows": "Følginger",
+  "notifications.filter.mentions": "Nevnelser",
+  "notifications.filter.polls": "Avstemningsresultater",
+  "notifications.group": "{count} varslinger",
+  "poll.closed": "Lukket",
+  "poll.refresh": "Oppdater",
+  "poll.total_people": "{count, plural, one {# person} other {# personer}}",
+  "poll.total_votes": "{count, plural, one {# stemme} other {# stemmer}}",
+  "poll.vote": "Stem",
+  "poll.voted": "Du stemte på dette svaret",
+  "poll_button.add_poll": "Legg til en avstemning",
+  "poll_button.remove_poll": "Fjern avstemningen",
   "privacy.change": "Justér synlighet",
   "privacy.direct.long": "Post kun til nevnte brukere",
   "privacy.direct.short": "Direkte",
@@ -319,45 +329,46 @@
   "privacy.public.short": "Offentlig",
   "privacy.unlisted.long": "Ikke vis i offentlige tidslinjer",
   "privacy.unlisted.short": "Uoppført",
-  "refresh": "Refresh",
+  "refresh": "Oppfrisk",
   "regeneration_indicator.label": "Laster…",
   "regeneration_indicator.sublabel": "Dine startside forberedes!",
   "relative_time.days": "{number}d",
-  "relative_time.hours": "{number}h",
+  "relative_time.hours": "{number}t",
   "relative_time.just_now": "nå",
   "relative_time.minutes": "{number}m",
   "relative_time.seconds": "{number}s",
   "reply_indicator.cancel": "Avbryt",
-  "report.forward": "Forward to {target}",
-  "report.forward_hint": "The account is from another server. Send an anonymized copy of the report there as well?",
+  "report.forward": "Videresend til {target}",
+  "report.forward_hint": "Denne kontoen er fra en annen tjener. Vil du sende en anonymisert kopi av rapporten dit også?",
   "report.hint": "The report will be sent to your instance moderators. You can provide an explanation of why you are reporting this account below:",
   "report.placeholder": "Tilleggskommentarer",
   "report.submit": "Send inn",
   "report.target": "Rapporterer",
   "search.placeholder": "Søk",
   "search_popout.search_format": "Avansert søkeformat",
-  "search_popout.tips.full_text": "Simple text returns statuses you have written, favourited, boosted, or have been mentioned in, as well as matching usernames, display names, and hashtags.",
+  "search_popout.tips.full_text": "Enkel tekst gir resultater for statuser du har skrevet, likt, fremhevet, eller har blitt nevnt i, i tillegg til samsvarende brukernavn, visningsnavn og emneknagger.",
   "search_popout.tips.hashtag": "emneknagg",
   "search_popout.tips.status": "status",
   "search_popout.tips.text": "Enkel tekst returnerer matchende visningsnavn, brukernavn og emneknagger",
   "search_popout.tips.user": "bruker",
-  "search_results.accounts": "People",
-  "search_results.hashtags": "Hashtags",
-  "search_results.statuses": "Toots",
-  "search_results.statuses_fts_disabled": "Searching toots by their content is not enabled on this Mastodon server.",
+  "search_results.accounts": "Folk",
+  "search_results.hashtags": "Emneknagger",
+  "search_results.statuses": "Tuter",
+  "search_results.statuses_fts_disabled": "Å søke i tuter etter innhold er ikke skrudd på i denne Mastodon-tjeneren.",
   "search_results.total": "{count, number} {count, plural, one {resultat} other {resultater}}",
-  "status.admin_account": "Open moderation interface for @{name}",
-  "status.admin_status": "Open this status in the moderation interface",
-  "status.block": "Block @{name}",
-  "status.cancel_reblog_private": "Unboost",
+  "status.admin_account": "Ã…pne moderatorgrensesnittet for @{name}",
+  "status.admin_status": "Ã…pne denne statusen i moderatorgrensesnittet",
+  "status.block": "Blokkér @{name}",
+  "status.bookmark": "Bokmerke",
+  "status.cancel_reblog_private": "Fjern fremheving",
   "status.cannot_reblog": "Denne posten kan ikke fremheves",
-  "status.copy": "Copy link to status",
+  "status.copy": "Kopier lenken til statusen",
   "status.delete": "Slett",
-  "status.detailed_status": "Detailed conversation view",
-  "status.direct": "Direct message @{name}",
+  "status.detailed_status": "Detaljert samtalevisning",
+  "status.direct": "Send direktemelding til @{name}",
   "status.embed": "Bygge inn",
   "status.favourite": "Lik",
-  "status.filtered": "Filtered",
+  "status.filtered": "Filtrert",
   "status.load_more": "Last mer",
   "status.local_only": "This post is only visible by other users of your instance",
   "status.media_hidden": "Media skjult",
@@ -367,60 +378,64 @@
   "status.mute_conversation": "Demp samtale",
   "status.open": "Utvid denne statusen",
   "status.pin": "Fest på profilen",
-  "status.pinned": "Pinned toot",
-  "status.read_more": "Read more",
+  "status.pinned": "Festet tut",
+  "status.read_more": "Les mer",
   "status.reblog": "Fremhev",
-  "status.reblog_private": "Boost to original audience",
+  "status.reblog_private": "Fremhev til det opprinnelige publikummet",
   "status.reblogged_by": "Fremhevd av {name}",
-  "status.reblogs.empty": "No one has boosted this toot yet. When someone does, they will show up here.",
-  "status.redraft": "Delete & re-draft",
+  "status.reblogs.empty": "Ingen har fremhevet denne tuten enda. Når noen gjør det, vil de dukke opp her.",
+  "status.redraft": "Slett og drøft på nytt",
+  "status.remove_bookmark": "Fjern bokmerke",
   "status.reply": "Svar",
   "status.replyAll": "Svar til samtale",
   "status.report": "Rapporter @{name}",
   "status.sensitive_warning": "Følsomt innhold",
   "status.share": "Del",
   "status.show_less": "Vis mindre",
-  "status.show_less_all": "Show less for all",
+  "status.show_less_all": "Vis mindre for alle",
   "status.show_more": "Vis mer",
-  "status.show_more_all": "Show more for all",
-  "status.show_thread": "Show thread",
-  "status.uncached_media_warning": "Not available",
+  "status.show_more_all": "Vis mer for alle",
+  "status.show_thread": "Vis tråden",
+  "status.uncached_media_warning": "Ikke tilgjengelig",
   "status.unmute_conversation": "Ikke demp samtale",
   "status.unpin": "Angre festing på profilen",
-  "suggestions.dismiss": "Dismiss suggestion",
-  "suggestions.header": "You might be interested in…",
+  "suggestions.dismiss": "Utelukk forslaget",
+  "suggestions.header": "Du er kanskje interessert i …",
   "tabs_bar.federated_timeline": "Felles",
   "tabs_bar.home": "Hjem",
   "tabs_bar.local_timeline": "Lokal",
   "tabs_bar.notifications": "Varslinger",
-  "tabs_bar.search": "Search",
-  "time_remaining.days": "{number, plural, one {# day} other {# days}} left",
-  "time_remaining.hours": "{number, plural, one {# hour} other {# hours}} left",
-  "time_remaining.minutes": "{number, plural, one {# minute} other {# minutes}} left",
-  "time_remaining.moments": "Moments remaining",
-  "time_remaining.seconds": "{number, plural, one {# second} other {# seconds}} left",
-  "trends.count_by_accounts": "{count} {rawCount, plural, one {person} other {people}} talking",
-  "trends.trending_now": "Trending now",
+  "tabs_bar.search": "Søk",
+  "time_remaining.days": "{number, plural,one {# dag} other {# dager}} igjen",
+  "time_remaining.hours": "{number, plural, one {# time} other {# timer}} igjen",
+  "time_remaining.minutes": "{number, plural, one {# minutt} other {# minutter}} igjen",
+  "time_remaining.moments": "Gjenværende øyeblikk",
+  "time_remaining.seconds": "{number, plural, one {# sekund} other {# sekunder}} igjen",
+  "trends.count_by_accounts": "{count} {rawCount, plural, one {person} other {personer}} snakker om det",
+  "trends.trending_now": "Trender nå",
   "ui.beforeunload": "Din kladd vil bli forkastet om du forlater Mastodon.",
   "upload_area.title": "Dra og slipp for å laste opp",
   "upload_button.label": "Legg til media",
-  "upload_error.limit": "File upload limit exceeded.",
-  "upload_error.poll": "File upload not allowed with polls.",
+  "upload_error.limit": "Filopplastingsgrensen er oversteget.",
+  "upload_error.poll": "Filopplasting inni avstemninger er ikke tillatt.",
+  "upload_form.audio_description": "Beskriv det for folk med hørselstap",
   "upload_form.description": "Beskriv for synshemmede",
-  "upload_form.edit": "Edit",
+  "upload_form.edit": "Rediger",
   "upload_form.undo": "Angre",
-  "upload_modal.analyzing_picture": "Analyzing picture…",
-  "upload_modal.apply": "Apply",
-  "upload_modal.description_placeholder": "A quick brown fox jumps over the lazy dog",
-  "upload_modal.detect_text": "Detect text from picture",
-  "upload_modal.edit_media": "Edit media",
-  "upload_modal.hint": "Click or drag the circle on the preview to choose the focal point which will always be in view on all thumbnails.",
-  "upload_modal.preview_label": "Preview ({ratio})",
+  "upload_form.video_description": "Beskriv det for folk med hørselstap eller synshemminger",
+  "upload_modal.analyzing_picture": "Analyserer bildet …",
+  "upload_modal.apply": "Bruk",
+  "upload_modal.description_placeholder": "NÃ¥r du en gang kommer, neste sommer, skal vi atter drikke vin",
+  "upload_modal.detect_text": "Oppdag tekst i bildet",
+  "upload_modal.edit_media": "Rediger media",
+  "upload_modal.hint": "Klikk eller dra sirkelen i forhåndsvisningen for å velge hovedpunktet som alltid vil bli vist i alle miniatyrbilder.",
+  "upload_modal.preview_label": "Forhåndsvisning ({ratio})",
   "upload_progress.label": "Laster opp...",
   "video.close": "Lukk video",
+  "video.download": "Last ned fil",
   "video.exit_fullscreen": "Lukk fullskjerm",
   "video.expand": "Utvid video",
-  "video.fullscreen": "Full screen",
+  "video.fullscreen": "Fullskjerm",
   "video.hide": "Skjul video",
   "video.mute": "Skru av lyd",
   "video.pause": "Pause",
diff --git a/app/javascript/mastodon/locales/oc.json b/app/javascript/mastodon/locales/oc.json
index 1a2479ecb2d9f4371db33c2d2ed986ac573780bd..fa7e6924c5d2438750f94560b282f388e18c0ffe 100644
--- a/app/javascript/mastodon/locales/oc.json
+++ b/app/javascript/mastodon/locales/oc.json
@@ -1,6 +1,7 @@
 {
   "account.add_or_remove_from_list": "Ajustar o tirar de las listas",
   "account.badges.bot": "Robòt",
+  "account.badges.group": "Group",
   "account.block": "Blocar @{name}",
   "account.block_domain": "Tot amagar del domeni {domain}",
   "account.blocked": "Blocat",
@@ -51,6 +52,7 @@
   "bundle_modal_error.message": "Quicòm a fach mèuca pendent lo cargament d’aqueste compausant.",
   "bundle_modal_error.retry": "Tornar ensajar",
   "column.blocks": "Personas blocadas",
+  "column.bookmarks": "Marcadors",
   "column.community": "Flux public local",
   "column.direct": "Messatges dirèctes",
   "column.directory": "Percórrer los perfils",
@@ -82,6 +84,8 @@
   "compose_form.poll.duration": "Durada del sondatge",
   "compose_form.poll.option_placeholder": "Opcion {number}",
   "compose_form.poll.remove_option": "Levar aquesta opcion",
+  "compose_form.poll.switch_to_multiple": "Change poll to allow multiple choices",
+  "compose_form.poll.switch_to_single": "Change poll to allow for a single choice",
   "compose_form.publish": "Tut",
   "compose_form.publish_loud": "{publish} !",
   "compose_form.sensitive.hide": "Marcar coma sensible",
@@ -103,7 +107,7 @@
   "confirmations.logout.confirm": "Desconnexion",
   "confirmations.logout.message": "Volètz vertadièrament vos desconnectar ?",
   "confirmations.mute.confirm": "Rescondre",
-  "confirmations.mute.explanation": "This will hide posts from them and posts mentioning them, but it will still allow them to see your posts and follow you.",
+  "confirmations.mute.explanation": "Aquò lor escondrà las publicacions e mencions, mas aquò lor permetrà encara de veire vòstra publicacions e de vos sègre.",
   "confirmations.mute.message": "Volètz vertadièrament rescondre {name} ?",
   "confirmations.redraft.confirm": "Escafar & tornar formular",
   "confirmations.redraft.message": "Volètz vertadièrament escafar aqueste estatut e lo reformular ? Totes sos partiments e favorits seràn perduts, e sas responsas seràn orfanèlas.",
@@ -138,6 +142,7 @@
   "empty_column.account_timeline": "Cap de tuts aquí !",
   "empty_column.account_unavailable": "Perfil pas disponible",
   "empty_column.blocks": "Avètz pas blocat degun pel moment.",
+  "empty_column.bookmarked_statuses": "Avètz pas cap de tuts marcats pel moment. Quand ne marquetz un, serà mostrat aquí.",
   "empty_column.community": "Lo flux public local es void. Escrivètz quicòm per lo garnir !",
   "empty_column.direct": "Avètz pas encara cap de messatges. Quand ne mandatz un o que ne recebètz un, serà mostrat aquí.",
   "empty_column.domain_blocks": "I a pas encara cap de domeni amagat.",
@@ -152,9 +157,9 @@
   "empty_column.mutes": "Encara avètz pas mes en silenci degun.",
   "empty_column.notifications": "Avètz pas encara de notificacions. Respondètz a qualqu’un per començar una conversacion.",
   "empty_column.public": "I a pas res aquí ! Escrivètz quicòm de public, o seguètz de personas d’autres servidors per garnir lo flux public",
-  "error.unexpected_crash.explanation": "Due to a bug in our code or a browser compatibility issue, this page could not be displayed correctly.",
-  "error.unexpected_crash.next_steps": "Try refreshing the page. If that does not help, you may still be able to use Mastodon through a different browser or native app.",
-  "errors.unexpected_crash.copy_stacktrace": "Copy stacktrace to clipboard",
+  "error.unexpected_crash.explanation": "A causa d’una avaria dins nòstre còdi o d’un problèma de compatibilitat de navegador, aquesta pagina se pòt pas afichar corrèctament.",
+  "error.unexpected_crash.next_steps": "Ensajatz d’actualizar la pagina. S’aquò càmbia pas res, podètz provar d’utilizar Mastodon via un navegador diferent o d’una aplicacion nativa estant.",
+  "errors.unexpected_crash.copy_stacktrace": "Copiar las traças al quichapapièrs",
   "errors.unexpected_crash.report_issue": "Senhalar un problèma",
   "federation.change": "Adjust status federation",
   "federation.federated.long": "Allow toot to reach other instances",
@@ -224,6 +229,7 @@
   "keyboard_shortcuts.muted": "dobrir la lista dels utilizaires silenciats",
   "keyboard_shortcuts.my_profile": "dobrir vòstre perfil",
   "keyboard_shortcuts.notifications": "dobrir la colomna de notificacions",
+  "keyboard_shortcuts.open_media": "dobrir lo mèdia",
   "keyboard_shortcuts.pinned": "dobrir la lista dels tuts penjats",
   "keyboard_shortcuts.profile": "dobrir lo perfil de l’autor",
   "keyboard_shortcuts.reply": "respondre",
@@ -231,7 +237,7 @@
   "keyboard_shortcuts.search": "anar a la recèrca",
   "keyboard_shortcuts.start": "dobrir la colomna « Per començar »",
   "keyboard_shortcuts.toggle_hidden": "mostrar/amagar lo tèxte dels avertiments",
-  "keyboard_shortcuts.toggle_sensitivity": "per mostrar/rescondre los mèdias",
+  "keyboard_shortcuts.toggle_sensitivity": "mostrar/rescondre los mèdias",
   "keyboard_shortcuts.toot": "començar un estatut tot novèl",
   "keyboard_shortcuts.unfocus": "quitar lo camp tèxte/de recèrca",
   "keyboard_shortcuts.up": "far montar dins la lista",
@@ -256,6 +262,7 @@
   "mute_modal.hide_notifications": "Rescondre las notificacions d’aquesta persona ?",
   "navigation_bar.apps": "Aplicacions mobil",
   "navigation_bar.blocks": "Personas blocadas",
+  "navigation_bar.bookmarks": "Marcadors",
   "navigation_bar.community_timeline": "Flux public local",
   "navigation_bar.compose": "Escriure un nòu tut",
   "navigation_bar.direct": "Messatges dirèctes",
@@ -278,7 +285,9 @@
   "navigation_bar.security": "Seguretat",
   "notification.favourite": "{name} a ajustat a sos favorits",
   "notification.follow": "{name} vos sèc",
+  "notification.follow_request": "{name} has requested to follow you",
   "notification.mention": "{name} vos a mencionat",
+  "notification.own_poll": "Vòstre sondatge es acabat",
   "notification.poll": "Avètz participat a un sondatge que ven de s’acabar",
   "notification.reblog": "{name} a partejat vòstre estatut",
   "notifications.clear": "Escafar",
@@ -289,6 +298,7 @@
   "notifications.column_settings.filter_bar.category": "Barra de recèrca rapida",
   "notifications.column_settings.filter_bar.show": "Mostrar",
   "notifications.column_settings.follow": "Nòus seguidors :",
+  "notifications.column_settings.follow_request": "New follow requests:",
   "notifications.column_settings.mention": "Mencions :",
   "notifications.column_settings.poll": "Resultats del sondatge :",
   "notifications.column_settings.push": "Notificacions",
@@ -307,7 +317,7 @@
   "poll.total_people": "{count, plural, one {# persona} other {# personas}}",
   "poll.total_votes": "{count, plural, one {# vòte} other {# vòtes}}",
   "poll.vote": "Votar",
-  "poll.voted": "You voted for this answer",
+  "poll.voted": "Avètz votat per aquesta responsa",
   "poll_button.add_poll": "Ajustar un sondatge",
   "poll_button.remove_poll": "Levar lo sondatge",
   "privacy.change": "Ajustar la confidencialitat del messatge",
@@ -349,6 +359,7 @@
   "status.admin_account": "Dobrir l’interfàcia de moderacion per @{name}",
   "status.admin_status": "Dobrir aqueste estatut dins l’interfàcia de moderacion",
   "status.block": "Blocar @{name}",
+  "status.bookmark": "Marcador",
   "status.cancel_reblog_private": "Quitar de partejar",
   "status.cannot_reblog": "Aqueste estatut pòt pas èsser partejat",
   "status.copy": "Copiar lo ligam de l’estatut",
@@ -374,6 +385,7 @@
   "status.reblogged_by": "{name} a partejat",
   "status.reblogs.empty": "Degun a pas encara partejat aqueste tut. Quand qualqu’un o farà, apareisserà aquí.",
   "status.redraft": "Escafar e tornar formular",
+  "status.remove_bookmark": "Suprimir lo marcador",
   "status.reply": "Respondre",
   "status.replyAll": "Respondre a la conversacion",
   "status.report": "Senhalar @{name}",
@@ -406,9 +418,11 @@
   "upload_button.label": "Ajustar un mèdia (JPEG, PNG, GIF, WebM, MP4, MOV)",
   "upload_error.limit": "Talha maximum pels mandadís subrepassada.",
   "upload_error.poll": "Lo mandadís de fichièr es pas autorizat pels sondatges.",
+  "upload_form.audio_description": "Describe for people with hearing loss",
   "upload_form.description": "Descripcion pels mal vesents",
   "upload_form.edit": "Modificar",
   "upload_form.undo": "Suprimir",
+  "upload_form.video_description": "Describe for people with hearing loss or visual impairment",
   "upload_modal.analyzing_picture": "Analisi de l’imatge…",
   "upload_modal.apply": "Aplicar",
   "upload_modal.description_placeholder": "Lo dròlle bilingüe manja un yaourt de ròcs exagonals e kiwis verds farà un an mai",
@@ -418,6 +432,7 @@
   "upload_modal.preview_label": "Apercebut ({ratio})",
   "upload_progress.label": "Mandadís…",
   "video.close": "Tampar la vidèo",
+  "video.download": "Telecargar lo fichièr",
   "video.exit_fullscreen": "Sortir plen ecran",
   "video.expand": "Agrandir la vidèo",
   "video.fullscreen": "Ecran complèt",
diff --git a/app/javascript/mastodon/locales/pl.json b/app/javascript/mastodon/locales/pl.json
index cf0c0188edc7c963737be4e1f5e16d1e85e83fe0..7748069dd1e4ef22c471ddb42928013d43ce2322 100644
--- a/app/javascript/mastodon/locales/pl.json
+++ b/app/javascript/mastodon/locales/pl.json
@@ -1,6 +1,7 @@
 {
   "account.add_or_remove_from_list": "Dodaj lub usuń z list",
   "account.badges.bot": "Bot",
+  "account.badges.group": "Group",
   "account.block": "Blokuj @{name}",
   "account.block_domain": "Blokuj wszystko z {domain}",
   "account.blocked": "Zablokowany(-a)",
@@ -39,7 +40,7 @@
   "account.unmute": "Cofnij wyciszenie @{name}",
   "account.unmute_notifications": "Cofnij wyciszenie powiadomień od @{name}",
   "alert.rate_limited.message": "Spróbuj ponownie po {retry_time, time, medium}.",
-  "alert.rate_limited.title": "Rate limited",
+  "alert.rate_limited.title": "Ograniczony czasowo",
   "alert.unexpected.message": "Wystąpił nieoczekiwany błąd.",
   "alert.unexpected.title": "O nie!",
   "autosuggest_hashtag.per_week": "{count} co tydzień",
@@ -51,6 +52,7 @@
   "bundle_modal_error.message": "Coś poszło nie tak podczas ładowania tego składnika.",
   "bundle_modal_error.retry": "Spróbuj ponownie",
   "column.blocks": "Zablokowani użytkownicy",
+  "column.bookmarks": "Zakładki",
   "column.community": "Lokalna oÅ› czasu",
   "column.direct": "Wiadomości bezpośrednie",
   "column.directory": "PrzeglÄ…daj profile",
@@ -82,6 +84,8 @@
   "compose_form.poll.duration": "Czas trwania głosowania",
   "compose_form.poll.option_placeholder": "Opcja {number}",
   "compose_form.poll.remove_option": "Usuń tę opcję",
+  "compose_form.poll.switch_to_multiple": "Change poll to allow multiple choices",
+  "compose_form.poll.switch_to_single": "Change poll to allow for a single choice",
   "compose_form.publish": "Wyślij",
   "compose_form.publish_loud": "{publish}!",
   "compose_form.sensitive.hide": "Oznacz multimedia jako wrażliwe",
@@ -138,6 +142,7 @@
   "empty_column.account_timeline": "Brak wpisów tutaj!",
   "empty_column.account_unavailable": "Profil niedostępny",
   "empty_column.blocks": "Nie zablokowałeś(-aś) jeszcze żadnego użytkownika.",
+  "empty_column.bookmarked_statuses": "Nie dodałeś(-aś) żadnego wpisu do zakładek. Kiedy to zrobisz, pojawi się on tutaj.",
   "empty_column.community": "Lokalna oś czasu jest pusta. Napisz coś publicznie, aby zagaić!",
   "empty_column.direct": "Nie masz żadnych wiadomości bezpośrednich. Kiedy dostaniesz lub wyślesz jakąś, pojawi się ona tutaj.",
   "empty_column.domain_blocks": "Brak ukrytych domen.",
@@ -224,6 +229,7 @@
   "keyboard_shortcuts.muted": "aby przejść do listy wyciszonych użytkowników",
   "keyboard_shortcuts.my_profile": "aby otworzyć własny profil",
   "keyboard_shortcuts.notifications": "aby otworzyć kolumnę powiadomień",
+  "keyboard_shortcuts.open_media": "aby otworzyć zawartość multimedialną",
   "keyboard_shortcuts.pinned": "aby przejść do listy przypiętych wpisów",
   "keyboard_shortcuts.profile": "aby przejść do profilu autora wpisu",
   "keyboard_shortcuts.reply": "aby odpowiedzieć",
@@ -256,6 +262,7 @@
   "mute_modal.hide_notifications": "Chcesz ukryć powiadomienia od tego użytkownika?",
   "navigation_bar.apps": "Aplikacje mobilne",
   "navigation_bar.blocks": "Zablokowani użytkownicy",
+  "navigation_bar.bookmarks": "Zakładki",
   "navigation_bar.community_timeline": "Lokalna oÅ› czasu",
   "navigation_bar.compose": "Utwórz nowy wpis",
   "navigation_bar.direct": "Wiadomości bezpośrednie",
@@ -278,7 +285,9 @@
   "navigation_bar.security": "Bezpieczeństwo",
   "notification.favourite": "{name} dodał(a) Twój wpis do ulubionych",
   "notification.follow": "{name} zaczął(-ęła) Cię śledzić",
+  "notification.follow_request": "{name} poprosił(a) o możliwość śledzenia Cię",
   "notification.mention": "{name} wspomniał(a) o tobie",
+  "notification.own_poll": "Twoje głosowanie zakończyło się",
   "notification.poll": "Głosowanie w którym brałeś(-aś) udział zakończyła się",
   "notification.reblog": "{name} podbił(a) Twój wpis",
   "notifications.clear": "Wyczyść powiadomienia",
@@ -289,6 +298,7 @@
   "notifications.column_settings.filter_bar.category": "Szybkie filtrowanie",
   "notifications.column_settings.filter_bar.show": "Pokaż",
   "notifications.column_settings.follow": "Nowi śledzący:",
+  "notifications.column_settings.follow_request": "Nowe prośby o możliwość śledzenia:",
   "notifications.column_settings.mention": "Wspomnienia:",
   "notifications.column_settings.poll": "Wyniki głosowania:",
   "notifications.column_settings.push": "Powiadomienia push",
@@ -307,7 +317,7 @@
   "poll.total_people": "{count, plural, one {# osoba} few {# osoby} many {# osób} other {# osób}}",
   "poll.total_votes": "{count, plural, one {# głos} few {# głosy} many {# głosów} other {# głosów}}",
   "poll.vote": "Zagłosuj",
-  "poll.voted": "You voted for this answer",
+  "poll.voted": "Zagłosowałeś_aś na tą odpowiedź",
   "poll_button.add_poll": "Dodaj głosowanie",
   "poll_button.remove_poll": "Usuń głosowanie",
   "privacy.change": "Dostosuj widoczność wpisów",
@@ -349,6 +359,7 @@
   "status.admin_account": "Otwórz interfejs moderacyjny dla @{name}",
   "status.admin_status": "Otwórz ten wpis w interfejsie moderacyjnym",
   "status.block": "Zablokuj @{name}",
+  "status.bookmark": "Dodaj zakładkę",
   "status.cancel_reblog_private": "Cofnij podbicie",
   "status.cannot_reblog": "Ten wpis nie może zostać podbity",
   "status.copy": "Skopiuj odnośnik do wpisu",
@@ -374,6 +385,7 @@
   "status.reblogged_by": "{name} podbił(a)",
   "status.reblogs.empty": "Nikt nie podbił jeszcze tego wpisu. Gdy ktoś to zrobi, pojawi się tutaj.",
   "status.redraft": "Usuń i przeredaguj",
+  "status.remove_bookmark": "Usuń zakładkę",
   "status.reply": "Odpowiedz",
   "status.replyAll": "Odpowiedz na wÄ…tek",
   "status.report": "Zgłoś @{name}",
@@ -406,9 +418,11 @@
   "upload_button.label": "Dodaj zawartość multimedialną (JPEG, PNG, GIF, WebM, MP4, MOV)",
   "upload_error.limit": "Przekroczono limit plików do wysłania.",
   "upload_error.poll": "Dołączanie plików nie dozwolone z głosowaniami.",
+  "upload_form.audio_description": "Describe for people with hearing loss",
   "upload_form.description": "Wprowadź opis dla niewidomych i niedowidzących",
   "upload_form.edit": "Edytuj",
   "upload_form.undo": "Usuń",
+  "upload_form.video_description": "Describe for people with hearing loss or visual impairment",
   "upload_modal.analyzing_picture": "Analizowanie obrazu…",
   "upload_modal.apply": "Zastosuj",
   "upload_modal.description_placeholder": "Pchnąć w tę łódź jeża lub ośm skrzyń fig",
@@ -418,6 +432,7 @@
   "upload_modal.preview_label": "PodglÄ…d ({ratio})",
   "upload_progress.label": "Wysyłanie…",
   "video.close": "Zamknij film",
+  "video.download": "Pobierz plik",
   "video.exit_fullscreen": "Opuść tryb pełnoekranowy",
   "video.expand": "Rozszerz film",
   "video.fullscreen": "Pełny ekran",
diff --git a/app/javascript/mastodon/locales/pt-BR.json b/app/javascript/mastodon/locales/pt-BR.json
index 86322e1e12c94971a99f28939c268ed075b17153..98f58bff87a7b7db346b2f1bfcfd92622e1e11f8 100644
--- a/app/javascript/mastodon/locales/pt-BR.json
+++ b/app/javascript/mastodon/locales/pt-BR.json
@@ -1,29 +1,30 @@
 {
-  "account.add_or_remove_from_list": "Adicionar ou remover de listas",
+  "account.add_or_remove_from_list": "Adicionar ou remover das listas",
   "account.badges.bot": "Robô",
+  "account.badges.group": "Grupo",
   "account.block": "Bloquear @{name}",
-  "account.block_domain": "Esconder tudo de {domain}",
+  "account.block_domain": "Bloquear {domain}",
   "account.blocked": "Bloqueado",
   "account.cancel_follow_request": "Cancelar solicitação para seguir",
-  "account.direct": "Direct Message @{name}",
-  "account.domain_blocked": "Domínio escondido",
+  "account.direct": "Enviar toot direto para @{name}",
+  "account.domain_blocked": "Domínio bloqueado",
   "account.edit_profile": "Editar perfil",
   "account.endorse": "Destacar no perfil",
   "account.follow": "Seguir",
   "account.followers": "Seguidores",
-  "account.followers.empty": "Ninguém segue esse usuário no momento.",
-  "account.follows": "Segue",
-  "account.follows.empty": "Esse usuário não segue ninguém no momento.",
+  "account.followers.empty": "Nada aqui.",
+  "account.follows": "Seguindo",
+  "account.follows.empty": "Nada aqui.",
   "account.follows_you": "Segue você",
-  "account.hide_reblogs": "Esconder compartilhamentos de @{name}",
+  "account.hide_reblogs": "Ocultar boosts de @{name}",
   "account.last_status": "Última atividade",
-  "account.link_verified_on": "A posse desse link foi verificada em {date}",
-  "account.locked_info": "Essa conta está trancada. Se você a seguir sua solicitação será revisada manualmente.",
+  "account.link_verified_on": "O link foi verificado em {date}",
+  "account.locked_info": "Esta conta está trancada. Sua solicitação para seguir requer aprovação manual do usuário.",
   "account.media": "Mídia",
   "account.mention": "Mencionar @{name}",
   "account.moved_to": "{name} se mudou para:",
   "account.mute": "Silenciar @{name}",
-  "account.mute_notifications": "Silenciar notificações de @{name}",
+  "account.mute_notifications": "Ocultar notificações de @{name}",
   "account.muted": "Silenciado",
   "account.never_active": "Nunca",
   "account.posts": "Toots",
@@ -31,40 +32,41 @@
   "account.report": "Denunciar @{name}",
   "account.requested": "Aguardando aprovação. Clique para cancelar a solicitação",
   "account.share": "Compartilhar perfil de @{name}",
-  "account.show_reblogs": "Mostra compartilhamentos de @{name}",
+  "account.show_reblogs": "Mostrar boosts de @{name}",
   "account.unblock": "Desbloquear @{name}",
   "account.unblock_domain": "Desbloquear {domain}",
   "account.unendorse": "Não destacar no perfil",
   "account.unfollow": "Deixar de seguir",
-  "account.unmute": "Não silenciar @{name}",
-  "account.unmute_notifications": "Retirar silêncio das notificações vindas de @{name}",
+  "account.unmute": "Desfazer silêncio de @{name}",
+  "account.unmute_notifications": "Mostrar notificações de @{name}",
   "alert.rate_limited.message": "Por favor tente novamente após {retry_time, time, medium}.",
-  "alert.rate_limited.title": "Limite de tentativas",
-  "alert.unexpected.message": "Um erro inesperado ocorreu.",
+  "alert.rate_limited.title": "Tentativas limitadas",
+  "alert.unexpected.message": "Ocorreu um erro inesperado.",
   "alert.unexpected.title": "Eita!",
   "autosuggest_hashtag.per_week": "{count} por semana",
-  "boost_modal.combo": "Você pode pressionar {combo} para ignorar este diálogo na próxima vez",
-  "bundle_column_error.body": "Algo de errado aconteceu enquanto este componente era carregado.",
+  "boost_modal.combo": "Pressione {combo} para ignorar este diálogo na próxima vez",
+  "bundle_column_error.body": "Ocorreu um problema ao carregar este componente.",
   "bundle_column_error.retry": "Tente novamente",
   "bundle_column_error.title": "Erro de rede",
   "bundle_modal_error.close": "Fechar",
-  "bundle_modal_error.message": "Algo de errado aconteceu enquanto este componente era carregado.",
+  "bundle_modal_error.message": "Ocorreu um problema ao carregar este componente.",
   "bundle_modal_error.retry": "Tente novamente",
   "column.blocks": "Usuários bloqueados",
+  "column.bookmarks": "Salvos",
   "column.community": "Local",
-  "column.direct": "Mensagens diretas",
+  "column.direct": "Mensagens Diretas",
   "column.directory": "Explorar perfis",
-  "column.domain_blocks": "Domínios escondidos",
+  "column.domain_blocks": "Domínios bloqueados",
   "column.favourites": "Favoritos",
   "column.follow_requests": "Seguidores pendentes",
   "column.home": "Página inicial",
   "column.lists": "Listas",
   "column.mutes": "Usuários silenciados",
   "column.notifications": "Notificações",
-  "column.pins": "Postagens fixadas",
-  "column.public": "Global",
+  "column.pins": "Toots fixados",
+  "column.public": "Linha global",
   "column_back_button.label": "Voltar",
-  "column_header.hide_settings": "Esconder configurações",
+  "column_header.hide_settings": "Ocultar configurações",
   "column_header.moveLeft_settings": "Mover coluna para a esquerda",
   "column_header.moveRight_settings": "Mover coluna para a direita",
   "column_header.pin": "Fixar",
@@ -73,88 +75,91 @@
   "column_subheading.settings": "Configurações",
   "community.column_settings.media_only": "Apenas mídia",
   "compose_form.direct_message_warning": "Este toot só será enviado aos usuários mencionados.",
-  "compose_form.direct_message_warning_learn_more": "Saber mais",
-  "compose_form.hashtag_warning": "Esse toot não será listado em nenhuma hashtag por ser não listado. Somente toots públicos podem ser pesquisados por hashtag.",
-  "compose_form.lock_disclaimer": "A sua conta não está {locked}. Qualquer pessoa pode te seguir e visualizar postagens direcionadas a apenas seguidores.",
+  "compose_form.direct_message_warning_learn_more": "Saiba mais",
+  "compose_form.hashtag_warning": "O toot não será listado nas hashtags porque não é público. Somente toots públicos podem ser pesquisados por hashtag. Dica: Poste como Não-listado.",
+  "compose_form.lock_disclaimer": "Sua conta não está {locked}. Qualquer pessoa pode te seguir e ver seus toots privados.",
   "compose_form.lock_disclaimer.lock": "trancada",
   "compose_form.placeholder": "No que você está pensando?",
-  "compose_form.poll.add_option": "Adicionar uma opção",
+  "compose_form.poll.add_option": "Adicionar opção",
   "compose_form.poll.duration": "Duração da enquete",
   "compose_form.poll.option_placeholder": "Opção {number}",
-  "compose_form.poll.remove_option": "Remover essa opção",
-  "compose_form.publish": "Publicar",
+  "compose_form.poll.remove_option": "Remover opção",
+  "compose_form.poll.switch_to_multiple": "Alterar para múltiplos votos",
+  "compose_form.poll.switch_to_single": "Alterar para voto único",
+  "compose_form.publish": "TOOT",
   "compose_form.publish_loud": "{publish}!",
   "compose_form.sensitive.hide": "Marcar mídia como sensível",
   "compose_form.sensitive.marked": "Mídia está marcada como sensível",
   "compose_form.sensitive.unmarked": "Mídia não está marcada como sensível",
-  "compose_form.spoiler.marked": "O texto está escondido por um aviso de conteúdo",
-  "compose_form.spoiler.unmarked": "O texto não está escondido",
-  "compose_form.spoiler_placeholder": "Aviso de conteúdo",
+  "compose_form.spoiler.marked": "O texto está oculto por um aviso de conteúdo",
+  "compose_form.spoiler.unmarked": "Sem Aviso de Conteúdo",
+  "compose_form.spoiler_placeholder": "Aviso de Conteúdo aqui",
   "confirmation_modal.cancel": "Cancelar",
   "confirmations.block.block_and_report": "Bloquear e denunciar",
   "confirmations.block.confirm": "Bloquear",
-  "confirmations.block.message": "Você tem certeza de que quer bloquear {name}?",
+  "confirmations.block.message": "Você tem certeza de que deseja bloquear {name}?",
   "confirmations.delete.confirm": "Excluir",
-  "confirmations.delete.message": "Você tem certeza de que quer excluir esta postagem?",
+  "confirmations.delete.message": "Excluir este toot?",
   "confirmations.delete_list.confirm": "Excluir",
-  "confirmations.delete_list.message": "Você tem certeza que quer deletar permanentemente a lista?",
-  "confirmations.domain_block.confirm": "Esconder o domínio inteiro",
-  "confirmations.domain_block.message": "Você quer mesmo bloquear {domain} inteiro? Na maioria dos casos, silenciar ou bloquear alguns usuários é o suficiente e o recomendado. Você não vai ver conteúdo desse domínio em nenhuma das timelines públicas ou nas suas notificações. Seus seguidores desse domínio serão removidos.",
+  "confirmations.delete_list.message": "Você tem certeza de que deseja excluir esta lista?",
+  "confirmations.domain_block.confirm": "Bloquear domínio",
+  "confirmations.domain_block.message": "Você tem certeza de que deseja bloquear tudo de {domain}? Você não verá mais o conteúdo desta instância em nenhuma linha do tempo pública ou nas suas notificações. Seus seguidores desta instância serão removidos.",
   "confirmations.logout.confirm": "Sair",
-  "confirmations.logout.message": "Tem certeza que deseja encerrar a sessão?",
+  "confirmations.logout.message": "Você tem certeza de que deseja sair?",
   "confirmations.mute.confirm": "Silenciar",
-  "confirmations.mute.explanation": "Isto irá esconder postagens e postagens que mencionam, mas ainda vai permitir que eles vejam suas publicações e sigam você.",
-  "confirmations.mute.message": "Você tem certeza de que quer silenciar {name}?",
-  "confirmations.redraft.confirm": "Apagar & usar como rascunho",
-  "confirmations.redraft.message": "Você tem certeza que deseja apagar esse status e usá-lo como rascunho? Seus compartilhamentos e favoritos serão perdidos e as respostas ao toot original ficarão desconectadas.",
+  "confirmations.mute.explanation": "Isso ocultará toots deles e toots mencionando-os, mas ainda permitirá que eles vejam seus toots e te sigam.",
+  "confirmations.mute.message": "Você tem certeza de que deseja silenciar {name}?",
+  "confirmations.redraft.confirm": "Excluir e rascunhar",
+  "confirmations.redraft.message": "Você tem certeza de que deseja apagar o toot e usá-lo como rascunho? Boosts e favoritos serão perdidos e as respostas ao toot original ficarão desconectadas.",
   "confirmations.reply.confirm": "Responder",
-  "confirmations.reply.message": "Responder agora vai sobrescrever a mensagem que você está compondo. Você tem certeza que quer continuar?",
+  "confirmations.reply.message": "Responder agora vai sobrescrever o toot que você está compondo. Deseja continuar?",
   "confirmations.unfollow.confirm": "Deixar de seguir",
-  "confirmations.unfollow.message": "Você tem certeza de que quer deixar de seguir {name}?",
+  "confirmations.unfollow.message": "Deixar de seguir {name}?",
   "conversation.delete": "Excluir conversa",
   "conversation.mark_as_read": "Marcar como lida",
   "conversation.open": "Ver conversa",
   "conversation.with": "Com {names}",
-  "directory.federated": "De fediverso conhecido",
-  "directory.local": "De {domain} apenas",
+  "directory.federated": "Do fediverso",
+  "directory.local": "Apenas do {domain}",
   "directory.new_arrivals": "Acabaram de chegar",
-  "directory.recently_active": "Reverta esta propriedade para seu valor padrão",
-  "embed.instructions": "Incorpore esta postagem em seu site copiando o código abaixo.",
-  "embed.preview": "Aqui está uma previsão de como ficará:",
+  "directory.recently_active": "Ativos recentemente",
+  "embed.instructions": "Incorpore este toot no seu site copiando o código abaixo.",
+  "embed.preview": "Veja como vai ficar:",
   "emoji_button.activity": "Atividades",
-  "emoji_button.custom": "Customizados",
+  "emoji_button.custom": "Personalizados",
   "emoji_button.flags": "Bandeiras",
-  "emoji_button.food": "Comidas & Bebidas",
-  "emoji_button.label": "Inserir Emoji",
+  "emoji_button.food": "Comidas e Bebidas",
+  "emoji_button.label": "Inserir emoji",
   "emoji_button.nature": "Natureza",
-  "emoji_button.not_found": "Não tem emojos! (╯°□°)╯︵ ┻━┻",
+  "emoji_button.not_found": "Sem emojis! (╯°□°)╯︵ ┻━┻",
   "emoji_button.objects": "Objetos",
   "emoji_button.people": "Pessoas",
   "emoji_button.recent": "Usados frequentemente",
-  "emoji_button.search": "Buscar...",
-  "emoji_button.search_results": "Resultados da busca",
+  "emoji_button.search": "Pesquisar...",
+  "emoji_button.search_results": "Resultados da pesquisa",
   "emoji_button.symbols": "Símbolos",
-  "emoji_button.travel": "Viagens & Lugares",
-  "empty_column.account_timeline": "Não há toots aqui!",
+  "emoji_button.travel": "Viagens e Lugares",
+  "empty_column.account_timeline": "Nada aqui!",
   "empty_column.account_unavailable": "Perfil indisponível",
-  "empty_column.blocks": "Você ainda não bloqueou nenhum usuário.",
-  "empty_column.community": "A timeline local está vazia. Escreva algo publicamente para começar!",
-  "empty_column.direct": "Você não tem nenhuma mensagem direta ainda. Quando você enviar ou receber uma, as mensagens aparecerão por aqui.",
-  "empty_column.domain_blocks": "Ainda não há nenhum domínio escondido.",
-  "empty_column.favourited_statuses": "Você ainda não tem nenhum toot favorito. Quando você favoritar um toot, ele aparecerá aqui.",
-  "empty_column.favourites": "Ninguém favoritou esse toot até agora. Quando alguém favoritar, a pessoa aparecerá aqui.",
-  "empty_column.follow_requests": "Você não tem nenhum pedido de seguir por agora. Quando você receber um, ele aparecerá aqui.",
-  "empty_column.hashtag": "Ainda não há qualquer conteúdo com essa hashtag.",
-  "empty_column.home": "Você ainda não segue usuário algum. Visite a timeline {public} ou use o buscador para procurar e conhecer outros usuários.",
-  "empty_column.home.public_timeline": "global",
-  "empty_column.list": "Ainda não há nada nesta lista. Quando membros dessa lista fizerem novas postagens, elas aparecerão aqui.",
-  "empty_column.lists": "Você ainda não tem nenhuma lista. Quando você criar uma, ela aparecerá aqui.",
-  "empty_column.mutes": "Você ainda não silenciou nenhum usuário.",
-  "empty_column.notifications": "Você ainda não possui notificações. Interaja com outros usuários para começar a conversar.",
-  "empty_column.public": "Não há nada aqui! Escreva algo publicamente ou siga manualmente usuários de outras instâncias",
-  "error.unexpected_crash.explanation": "Devido a um bug em nosso código ou a um problema de compatibilidade do navegador, esta página não pode ser exibida corretamente.",
-  "error.unexpected_crash.next_steps": "Tente atualizar a página. Se isso não ajudar, você ainda pode usar Mastodon através de um navegador diferente ou aplicativo nativo.",
-  "errors.unexpected_crash.copy_stacktrace": "Copiar stacktrace para a área de transferência",
+  "empty_column.blocks": "Nada aqui.",
+  "empty_column.bookmarked_statuses": "Sem toots salvos. Quando você salvar alguns, eles aparecerão aqui.",
+  "empty_column.community": "A linha do tempo local está vazia. Poste algo publicamente para começar!",
+  "empty_column.direct": "Nada aqui. Quando você enviar ou receber toots diretos, eles aparecerão aqui.",
+  "empty_column.domain_blocks": "Nada aqui.",
+  "empty_column.favourited_statuses": "Nada aqui. Quando você favoritar um toot, ele aparecerá aqui.",
+  "empty_column.favourites": "Nada aqui. Quando alguém favoritar, o autor aparecerá aqui.",
+  "empty_column.follow_requests": "Nada aqui. Quando você receber solicitações de seguidores, elas aparecerão aqui.",
+  "empty_column.hashtag": "Nada aqui.",
+  "empty_column.home": "Sua linha do tempo está vazia. Visite a linha {public} ou use a pesquisa para conhecer outros usuários!",
+  "empty_column.home.public_timeline": "a linha do tempo pública",
+  "empty_column.list": "Nada aqui. Quando os usuários nesta lista postarem toots, eles aparecerão aqui.",
+  "empty_column.lists": "Nada aqui. Quando você criar listas, elas aparecerão aqui.",
+  "empty_column.mutes": "Nada aqui.",
+  "empty_column.notifications": "Nada aqui. Interaja com outros usuários para começar a conversar.",
+  "empty_column.public": "Nada aqui! Poste algo publicamente ou siga usuários de outras instâncias",
+  "error.unexpected_crash.explanation": "Devido a um problema em nosso código ou de compatibilidade com o navegador, esta página não pôde ser exibida corretamente.",
+  "error.unexpected_crash.next_steps": "Tente atualizar a página. Se não resolver, você ainda pode usar o Mastodon em outro navegador ou aplicativo.",
+  "errors.unexpected_crash.copy_stacktrace": "Copiar estado da pilha para a área de transferência",
   "errors.unexpected_crash.report_issue": "Reportar problema",
   "federation.change": "Ajustar federação do toot",
   "federation.federated.long": "Permitir que o toot chegue a outras instâncias",
@@ -167,103 +172,105 @@
   "getting_started.directory": "Diretório de perfis",
   "getting_started.documentation": "Documentação",
   "getting_started.heading": "Primeiros passos",
-  "getting_started.invite": "Convide pessoas",
-  "getting_started.open_source_notice": "Mastodon é um software de código aberto. Você pode contribuir ou reportar problemas na página do GitHub do projeto: {github}.",
-  "getting_started.security": "Segurança",
+  "getting_started.invite": "Convidar pessoas",
+  "getting_started.open_source_notice": "Mastodon é um software de código aberto. Você pode contribuir ou reportar problemas na página do projeto no GitHub em {github}.",
+  "getting_started.security": "Configurações da conta",
   "getting_started.terms": "Termos de serviço",
   "hashtag.column_header.tag_mode.all": "e {additional}",
   "hashtag.column_header.tag_mode.any": "ou {additional}",
   "hashtag.column_header.tag_mode.none": "sem {additional}",
   "hashtag.column_settings.select.no_options_message": "Nenhuma sugestão encontrada",
-  "hashtag.column_settings.select.placeholder": "Adicione as hashtags…",
+  "hashtag.column_settings.select.placeholder": "Adicione hashtags…",
   "hashtag.column_settings.tag_mode.all": "Todas essas",
   "hashtag.column_settings.tag_mode.any": "Qualquer uma dessas",
   "hashtag.column_settings.tag_mode.none": "Nenhuma dessas",
-  "hashtag.column_settings.tag_toggle": "Incluir outras hashtags nessa coluna",
+  "hashtag.column_settings.tag_toggle": "Adicionar mais hashtags",
   "home.column_settings.basic": "Básico",
-  "home.column_settings.show_reblogs": "Mostrar compartilhamentos",
-  "home.column_settings.show_replies": "Mostrar as respostas",
+  "home.column_settings.show_reblogs": "Mostrar boosts",
+  "home.column_settings.show_replies": "Mostrar respostas",
   "intervals.full.days": "{number, plural, one {# dia} other {# dias}}",
   "intervals.full.hours": "{number, plural, one {# hora} other {# horas}}",
   "intervals.full.minutes": "{number, plural, one {# minuto} other {# minutos}}",
   "introduction.federation.action": "Próximo",
   "introduction.federation.federated.headline": "Global",
-  "introduction.federation.federated.text": "Posts públicos de outros servidores do fediverso vão aparecer na timeline global.",
-  "introduction.federation.home.headline": "Início",
-  "introduction.federation.home.text": "Posts de pessoas que você segue vão aparecer na sua página inicial. Você pode seguir pessoas de qualquer servidor!",
+  "introduction.federation.federated.text": "Toots públicos de outras instâncias do fediverso aparecerão na linha global.",
+  "introduction.federation.home.headline": "Página inicial",
+  "introduction.federation.home.text": "Os toots das pessoas que você segue aparecerão na página inicial. Você pode seguir pessoas de qualquer instância!",
   "introduction.federation.local.headline": "Local",
-  "introduction.federation.local.text": "Posts públicos de pessoas no mesmo servidor que você vão aparecer na timeline local.",
-  "introduction.interactions.action": "Finalizar o tutorial!",
+  "introduction.federation.local.text": "Toots públicos de pessoas na mesma instância que você aparecerão na linha local.",
+  "introduction.interactions.action": "Terminar o tutorial!",
   "introduction.interactions.favourite.headline": "Favoritos",
-  "introduction.interactions.favourite.text": "Você pode salvar um toot pra mais tarde, e deixar a pessoa que postou saber que você gostou, favoritando-o.",
-  "introduction.interactions.reblog.headline": "Compartilhamento",
-  "introduction.interactions.reblog.text": "Você pode mostrar toots de outras pessoas aos seus seguidores compartilhando.",
+  "introduction.interactions.favourite.text": "Ao favoritar, você salva o toot para mais tarde ou sinaliza ao autor que você gostou do toot.",
+  "introduction.interactions.reblog.headline": "Boost",
+  "introduction.interactions.reblog.text": "Ao dar boost, você compartilha toots de outras pessoas para seus seguidores.",
   "introduction.interactions.reply.headline": "Responder",
-  "introduction.interactions.reply.text": "Você pode responder a toots de outras pessoas e aos seus, e isso vai uni-los em uma conversa.",
-  "introduction.welcome.action": "Vamos!",
+  "introduction.interactions.reply.text": "Você pode responder aos toots de outras pessoas e formar uma conversa ou responder aos seus e formar uma sequência.",
+  "introduction.welcome.action": "É HORA DO SHOW!",
   "introduction.welcome.headline": "Primeiros passos",
-  "introduction.welcome.text": "Boas vindas ao fediverso! Em alguns momentos, você vai poder transmitir mensagens e falar com pessoas amigas através de uma variedade de servidores. Mas esse servidor, {domain}, é especial—é onde o seu perfil está hospedado, então lembre do nome.",
-  "keyboard_shortcuts.back": "para navegar de volta",
-  "keyboard_shortcuts.blocked": "para abrir a lista de usuários bloqueados",
-  "keyboard_shortcuts.boost": "para compartilhar",
-  "keyboard_shortcuts.column": "Focar um status em uma das colunas",
-  "keyboard_shortcuts.compose": "para focar a área de redação",
+  "introduction.welcome.text": "Boas vindas ao fediverso! Logo você vai poder publicar mensagens e falar com pessoas amigas através de uma variedade de instâncias. Mas esta instância, {domain}, é especial — é onde o seu perfil está guardado, então lembre do nome dela com carinho.",
+  "keyboard_shortcuts.back": "voltar",
+  "keyboard_shortcuts.blocked": "abrir lista de usuários bloqueados",
+  "keyboard_shortcuts.boost": "dar boost",
+  "keyboard_shortcuts.column": "focar no toot de uma das colunas",
+  "keyboard_shortcuts.compose": "focar na composição",
   "keyboard_shortcuts.description": "Descrição",
-  "keyboard_shortcuts.direct": "para abrir a coluna de mensagens diretas",
-  "keyboard_shortcuts.down": "para mover para baixo na lista",
-  "keyboard_shortcuts.enter": "para expandir um status",
-  "keyboard_shortcuts.favourite": "para adicionar aos favoritos",
-  "keyboard_shortcuts.favourites": "para abrir a lista de favoritos",
-  "keyboard_shortcuts.federated": "para abrir a timeline global",
+  "keyboard_shortcuts.direct": "abrir Mensagens Diretas",
+  "keyboard_shortcuts.down": "mover para baixo na linha",
+  "keyboard_shortcuts.enter": "expandir um toot",
+  "keyboard_shortcuts.favourite": "favoritar",
+  "keyboard_shortcuts.favourites": "abrir os favoritos",
+  "keyboard_shortcuts.federated": "abrir linha global",
   "keyboard_shortcuts.heading": "Atalhos de teclado",
-  "keyboard_shortcuts.home": "para abrir a página inicial",
+  "keyboard_shortcuts.home": "abrir página inicial",
   "keyboard_shortcuts.hotkey": "Atalho",
-  "keyboard_shortcuts.legend": "para mostrar essa legenda",
-  "keyboard_shortcuts.local": "para abrir a timeline local",
-  "keyboard_shortcuts.mention": "para mencionar o autor",
-  "keyboard_shortcuts.muted": "para abrir a lista de usuários silenciados",
-  "keyboard_shortcuts.my_profile": "para abrir o seu perfil",
-  "keyboard_shortcuts.notifications": "para abrir a coluna de notificações",
-  "keyboard_shortcuts.pinned": "para abrir a lista de toots fixados",
-  "keyboard_shortcuts.profile": "para abrir o perfil do autor",
-  "keyboard_shortcuts.reply": "para responder",
-  "keyboard_shortcuts.requests": "para abrir a lista de seguidores pendentes",
-  "keyboard_shortcuts.search": "para focar a pesquisa",
-  "keyboard_shortcuts.start": "para abrir a coluna \"primeiros passos\"",
-  "keyboard_shortcuts.toggle_hidden": "mostrar/esconder o texto com aviso de conteúdo",
-  "keyboard_shortcuts.toggle_sensitivity": "mostrar/esconder mídia",
-  "keyboard_shortcuts.toot": "para compor um novo toot",
-  "keyboard_shortcuts.unfocus": "para remover o foco da área de composição/pesquisa",
-  "keyboard_shortcuts.up": "para mover para cima na lista",
+  "keyboard_shortcuts.legend": "mostrar estes atalhos",
+  "keyboard_shortcuts.local": "abrir linha local",
+  "keyboard_shortcuts.mention": "mencionar autor",
+  "keyboard_shortcuts.muted": "abrir lista de usuários silenciados",
+  "keyboard_shortcuts.my_profile": "abrir seu perfil",
+  "keyboard_shortcuts.notifications": "abrir notificações",
+  "keyboard_shortcuts.open_media": "abrir mídia",
+  "keyboard_shortcuts.pinned": "abrir toots fixados",
+  "keyboard_shortcuts.profile": "abrir o perfil do autor",
+  "keyboard_shortcuts.reply": "responder",
+  "keyboard_shortcuts.requests": "abrir lista de seguidores pendentes",
+  "keyboard_shortcuts.search": "focar na pesquisa",
+  "keyboard_shortcuts.start": "abrir o \"Primeiros passos\"",
+  "keyboard_shortcuts.toggle_hidden": "mostrar/ocultar o toot com Aviso de Conteúdo",
+  "keyboard_shortcuts.toggle_sensitivity": "mostrar/ocultar mídia",
+  "keyboard_shortcuts.toot": "compor novo toot",
+  "keyboard_shortcuts.unfocus": "sair da composição ou da pesquisa",
+  "keyboard_shortcuts.up": "mover para cima na linha",
   "lightbox.close": "Fechar",
   "lightbox.next": "Próximo",
   "lightbox.previous": "Anterior",
   "lightbox.view_context": "Ver contexto",
-  "lists.account.add": "Adicionar a listas",
+  "lists.account.add": "Adicionar à lista",
   "lists.account.remove": "Remover da lista",
   "lists.delete": "Excluir lista",
   "lists.edit": "Editar lista",
-  "lists.edit.submit": "Mudar o título",
-  "lists.new.create": "Adicionar lista",
-  "lists.new.title_placeholder": "Novo título da lista",
+  "lists.edit.submit": "Renomear",
+  "lists.new.create": "Criar lista",
+  "lists.new.title_placeholder": "Nome da lista",
   "lists.search": "Procurar entre as pessoas que você segue",
   "lists.subheading": "Suas listas",
   "load_pending": "{count, plural, one {# novo item} other {# novos items}}",
   "loading_indicator.label": "Carregando...",
-  "media_gallery.toggle_visible": "Esconder/Mostrar",
+  "media_gallery.toggle_visible": "Mostrar/Ocultar",
   "missing_indicator.label": "Não encontrado",
   "missing_indicator.sublabel": "Esse recurso não pôde ser encontrado",
-  "mute_modal.hide_notifications": "Esconder notificações deste usuário?",
-  "navigation_bar.apps": "Apps",
+  "mute_modal.hide_notifications": "Ocultar notificações deste usuário?",
+  "navigation_bar.apps": "Aplicativos",
   "navigation_bar.blocks": "Usuários bloqueados",
+  "navigation_bar.bookmarks": "Salvos",
   "navigation_bar.community_timeline": "Local",
-  "navigation_bar.compose": "Compor um novo toot",
-  "navigation_bar.direct": "Mensagens diretas",
+  "navigation_bar.compose": "Compor novo toot",
+  "navigation_bar.direct": "Mensagens Diretas",
   "navigation_bar.discover": "Descobrir",
-  "navigation_bar.domain_blocks": "Domínios escondidos",
+  "navigation_bar.domain_blocks": "Domínios bloqueados",
   "navigation_bar.edit_profile": "Editar perfil",
   "navigation_bar.favourites": "Favoritos",
-  "navigation_bar.filters": "Palavras silenciadas",
+  "navigation_bar.filters": "Palavras filtradas",
   "navigation_bar.follow_requests": "Seguidores pendentes",
   "navigation_bar.follows_and_followers": "Seguindo e seguidores",
   "navigation_bar.info": "Mais informações",
@@ -272,53 +279,56 @@
   "navigation_bar.logout": "Sair",
   "navigation_bar.mutes": "Usuários silenciados",
   "navigation_bar.personal": "Pessoal",
-  "navigation_bar.pins": "Postagens fixadas",
+  "navigation_bar.pins": "Toots fixados",
   "navigation_bar.preferences": "Preferências",
   "navigation_bar.public_timeline": "Global",
   "navigation_bar.security": "Segurança",
-  "notification.favourite": "{name} adicionou a sua postagem aos favoritos",
+  "notification.favourite": "{name} favoritou seu toot",
   "notification.follow": "{name} te seguiu",
+  "notification.follow_request": "{name} quer te seguir",
   "notification.mention": "{name} te mencionou",
-  "notification.poll": "Uma enquete em que você votou chegou ao fim",
-  "notification.reblog": "{name} compartilhou a sua postagem",
+  "notification.own_poll": "Sua enquete terminou",
+  "notification.poll": "Uma enquete que você votou terminou",
+  "notification.reblog": "{name} deu boost no seu toot",
   "notifications.clear": "Limpar notificações",
-  "notifications.clear_confirmation": "Você tem certeza de que quer limpar todas as suas notificações permanentemente?",
+  "notifications.clear_confirmation": "Você tem certeza de que quer limpar todas as suas notificações?",
   "notifications.column_settings.alert": "Notificações no computador",
   "notifications.column_settings.favourite": "Favoritos:",
   "notifications.column_settings.filter_bar.advanced": "Mostrar todas as categorias",
   "notifications.column_settings.filter_bar.category": "Barra de filtro rápido",
   "notifications.column_settings.filter_bar.show": "Mostrar",
-  "notifications.column_settings.follow": "Novos seguidores:",
+  "notifications.column_settings.follow": "Seguidores:",
+  "notifications.column_settings.follow_request": "Novos seguidores pendentes:",
   "notifications.column_settings.mention": "Menções:",
-  "notifications.column_settings.poll": "Resultados da enquete:",
+  "notifications.column_settings.poll": "Enquetes:",
   "notifications.column_settings.push": "Enviar notificações",
-  "notifications.column_settings.reblog": "Compartilhamento:",
+  "notifications.column_settings.reblog": "Boosts:",
   "notifications.column_settings.show": "Mostrar nas colunas",
   "notifications.column_settings.sound": "Reproduzir som",
   "notifications.filter.all": "Tudo",
-  "notifications.filter.boosts": "Compartilhamentos",
+  "notifications.filter.boosts": "Boosts",
   "notifications.filter.favourites": "Favoritos",
   "notifications.filter.follows": "Seguidores",
   "notifications.filter.mentions": "Menções",
-  "notifications.filter.polls": "Resultados da enquete",
+  "notifications.filter.polls": "Enquetes",
   "notifications.group": "{count} notificações",
-  "poll.closed": "Fechada",
+  "poll.closed": "Terminou",
   "poll.refresh": "Atualizar",
   "poll.total_people": "{count, plural, one {# pessoa} other {# pessoas}}",
   "poll.total_votes": "{count, plural, one {# voto} other {# votos}}",
   "poll.vote": "Votar",
-  "poll.voted": "Você votou nesta resposta",
-  "poll_button.add_poll": "Adicionar uma enquete",
+  "poll.voted": "Você votou nesta opção",
+  "poll_button.add_poll": "Adicionar enquete",
   "poll_button.remove_poll": "Remover enquete",
-  "privacy.change": "Ajustar a privacidade da mensagem",
-  "privacy.direct.long": "Apenas para usuários mencionados",
-  "privacy.direct.short": "Direta",
-  "privacy.private.long": "Apenas para seus seguidores",
-  "privacy.private.short": "Privada",
-  "privacy.public.long": "Publicar em todos os feeds",
-  "privacy.public.short": "Pública",
-  "privacy.unlisted.long": "Não publicar em feeds públicos",
-  "privacy.unlisted.short": "Não listada",
+  "privacy.change": "Ajustar privacidade do toot",
+  "privacy.direct.long": "Postar apenas para usuários mencionados",
+  "privacy.direct.short": "Direto",
+  "privacy.private.long": "Postar apenas para seguidores",
+  "privacy.private.short": "Privado",
+  "privacy.public.long": "Postar em linhas públicas",
+  "privacy.public.short": "Público",
+  "privacy.unlisted.long": "Não postar em linhas públicas",
+  "privacy.unlisted.short": "Não-listado",
   "refresh": "Atualizar",
   "regeneration_indicator.label": "Carregando…",
   "regeneration_indicator.sublabel": "Sua página inicial está sendo preparada!",
@@ -328,35 +338,36 @@
   "relative_time.minutes": "{number}m",
   "relative_time.seconds": "{number}s",
   "reply_indicator.cancel": "Cancelar",
-  "report.forward": "Encaminhar para {target}",
-  "report.forward_hint": "Essa conta pertence à um outro servidor. Encaminhar uma cópia da denúncia com seus dados tornados anônimos para esse servidor?",
-  "report.hint": "A sua denúncia será enviada aos moderadores da instância. Você pode adicionar uma explicação de porque você está denunciando essa conta abaixo:",
+  "report.forward": "Enviar cópia para {target}",
+  "report.forward_hint": "A conta está em outra instância. Enviar uma cópia anônima da denúncia para lá?",
+  "report.hint": "A denúncia será enviada aos moderadores da instância. Você pode explicar por que você denunciou a conta:",
   "report.placeholder": "Comentários adicionais",
   "report.submit": "Enviar",
-  "report.target": "Denunciar",
+  "report.target": "Denunciando {target}",
   "search.placeholder": "Pesquisar",
-  "search_popout.search_format": "Formato de busca avançado",
-  "search_popout.tips.full_text": "Texto simples retorna status que você escreveu, favoritou, compartilhou ou em que tenha sido mencionado; também retorna nomes de exibição, usuários e hashtags correspondentes.",
+  "search_popout.search_format": "Pesquisa avançada",
+  "search_popout.tips.full_text": "Texto simples retorna seus toots, favoritos, boosts ou toots em que foi mencionado, como também nomes de exibição, usuários e hashtags correspondentes.",
   "search_popout.tips.hashtag": "hashtag",
-  "search_popout.tips.status": "status",
+  "search_popout.tips.status": "toot",
   "search_popout.tips.text": "Texto simples retorna nomes de exibição, usuários e hashtags correspondentes",
   "search_popout.tips.user": "usuário",
   "search_results.accounts": "Pessoas",
   "search_results.hashtags": "Hashtags",
   "search_results.statuses": "Toots",
-  "search_results.statuses_fts_disabled": "Pesquisar toots por seu conteúdo não está habilitado neste servidor Mastodon.",
+  "search_results.statuses_fts_disabled": "Pesquisar toots por seu conteúdo não está ativado nesta instância Mastodon.",
   "search_results.total": "{count, number} {count, plural, one {resultado} other {resultados}}",
   "status.admin_account": "Abrir interface de moderação para @{name}",
-  "status.admin_status": "Abrir esse status na interface de moderação",
+  "status.admin_status": "Abrir o toot na interface de moderação",
   "status.block": "Bloquear @{name}",
-  "status.cancel_reblog_private": "Desfazer compartilhamento",
-  "status.cannot_reblog": "Esta postagem não pode ser compartilhada",
-  "status.copy": "Copiar o link para o status",
+  "status.bookmark": "Salvar",
+  "status.cancel_reblog_private": "Desfazer boost",
+  "status.cannot_reblog": "Não foi possível dar boost",
+  "status.copy": "Copiar o link do toot",
   "status.delete": "Excluir",
   "status.detailed_status": "Visão detalhada da conversa",
-  "status.direct": "Enviar mensagem direta a @{name}",
+  "status.direct": "Toot direto para @{name}",
   "status.embed": "Incorporar",
-  "status.favourite": "Adicionar aos favoritos",
+  "status.favourite": "Favoritar",
   "status.filtered": "Filtrado",
   "status.load_more": "Carregar mais",
   "status.local_only": "Esse post só é visível para outros usuários da sua instância",
@@ -369,61 +380,65 @@
   "status.pin": "Fixar no perfil",
   "status.pinned": "Toot fixado",
   "status.read_more": "Ler mais",
-  "status.reblog": "Compartilhar",
-  "status.reblog_private": "Compartilhar com a audiência original",
-  "status.reblogged_by": "{name} compartilhou",
-  "status.reblogs.empty": "Ninguém compartilhou esse toot até agora. Quando alguém o fizer, eles aparecerão aqui.",
-  "status.redraft": "Apagar & usar como rascunho",
+  "status.reblog": "Dar boost",
+  "status.reblog_private": "Dar boost para audiência original",
+  "status.reblogged_by": "{name} deu boost",
+  "status.reblogs.empty": "Nada aqui. Quando alguém der boost, o autor aparecerá aqui.",
+  "status.redraft": "Excluir e rascunhar",
+  "status.remove_bookmark": "Remover dos Salvos",
   "status.reply": "Responder",
-  "status.replyAll": "Responder à sequência",
+  "status.replyAll": "Responder à conversa",
   "status.report": "Denunciar @{name}",
   "status.sensitive_warning": "Conteúdo sensível",
   "status.share": "Compartilhar",
   "status.show_less": "Mostrar menos",
-  "status.show_less_all": "Mostrar menos para todas as mensagens",
+  "status.show_less_all": "Mostrar menos para todos os toots",
   "status.show_more": "Mostrar mais",
-  "status.show_more_all": "Mostrar mais para todas as mensagens",
-  "status.show_thread": "Mostrar sequência",
+  "status.show_more_all": "Mostrar mais para todos os toots",
+  "status.show_thread": "Mostrar conversa",
   "status.uncached_media_warning": "Não disponível",
   "status.unmute_conversation": "Desativar silêncio desta conversa",
   "status.unpin": "Desafixar do perfil",
-  "suggestions.dismiss": "Ignorar a sugestão",
+  "suggestions.dismiss": "Ignorar sugestão",
   "suggestions.header": "Você pode se interessar por…",
   "tabs_bar.federated_timeline": "Global",
   "tabs_bar.home": "Página inicial",
   "tabs_bar.local_timeline": "Local",
   "tabs_bar.notifications": "Notificações",
-  "tabs_bar.search": "Buscar",
+  "tabs_bar.search": "Pesquisar",
   "time_remaining.days": "{number, plural, one {# dia restante} other {# dias restantes}}",
   "time_remaining.hours": "{number, plural, one {# hora restante} other {# horas restantes}}",
   "time_remaining.minutes": "{number, plural, one {# minuto restante} other {# minutos restantes}}",
-  "time_remaining.moments": "Momentos restantes",
+  "time_remaining.moments": "Tempo restante",
   "time_remaining.seconds": "{number, plural, one {# segundo restante} other {# segundos restantes}}",
   "trends.count_by_accounts": "{count} {rawCount, plural, one {pessoa} other {pessoas}} falando sobre",
   "trends.trending_now": "Em alta no momento",
   "ui.beforeunload": "Seu rascunho será perdido se você sair do Mastodon.",
   "upload_area.title": "Arraste e solte para enviar",
-  "upload_button.label": "Adicionar mídia (JPEG, PNG, GIF, WebM, MP4, MOV)",
+  "upload_button.label": "Adicionar mídia ({formats})",
   "upload_error.limit": "Limite de envio de arquivos excedido.",
-  "upload_error.poll": "Envio de arquivos não é permitido com enquetes.",
-  "upload_form.description": "Descreva a imagem para deficientes visuais",
+  "upload_error.poll": "Não é possível enviar arquivos com enquetes.",
+  "upload_form.audio_description": "Descrever para deficientes auditivos",
+  "upload_form.description": "Descrever para deficientes visuais",
   "upload_form.edit": "Editar",
   "upload_form.undo": "Remover",
+  "upload_form.video_description": "Descrever para deficientes auditivos e visuais",
   "upload_modal.analyzing_picture": "Analisando imagem…",
   "upload_modal.apply": "Aplicar",
-  "upload_modal.description_placeholder": "Grave e cabisbaixo, o filho justo zelava pela querida mãe doente",
+  "upload_modal.description_placeholder": "Um pequeno jabuti xereta viu dez cegonhas felizes",
   "upload_modal.detect_text": "Detectar texto da imagem",
   "upload_modal.edit_media": "Editar mídia",
-  "upload_modal.hint": "Clique ou arraste o círculo na visualização para escolher o ponto focal que sempre será visto em todas as miniaturas.",
+  "upload_modal.hint": "Clique ou arraste o círculo na prévia para escolher o ponto focal que ficará visível em todas as miniaturas.",
   "upload_modal.preview_label": "Prévia ({ratio})",
-  "upload_progress.label": "Salvando...",
+  "upload_progress.label": "Enviando...",
   "video.close": "Fechar vídeo",
+  "video.download": "Baixar arquivo",
   "video.exit_fullscreen": "Sair da tela cheia",
   "video.expand": "Expandir vídeo",
   "video.fullscreen": "Tela cheia",
-  "video.hide": "Esconder vídeo",
+  "video.hide": "Ocultar vídeo",
   "video.mute": "Silenciar",
-  "video.pause": "Parar",
+  "video.pause": "Pausar",
   "video.play": "Reproduzir",
-  "video.unmute": "Retirar silêncio"
+  "video.unmute": "Desativar silêncio"
 }
diff --git a/app/javascript/mastodon/locales/pt-PT.json b/app/javascript/mastodon/locales/pt-PT.json
index c3b1ea17136bda3623b3a57d21d586e404fd2725..a3be49b1c85efe1cf98d087299b12e7dfb8e2e5f 100644
--- a/app/javascript/mastodon/locales/pt-PT.json
+++ b/app/javascript/mastodon/locales/pt-PT.json
@@ -1,10 +1,11 @@
 {
   "account.add_or_remove_from_list": "Adicionar ou remover das listas",
   "account.badges.bot": "Robô",
+  "account.badges.group": "Grupo",
   "account.block": "Bloquear @{name}",
   "account.block_domain": "Esconder tudo do domínio {domain}",
   "account.blocked": "Bloqueado",
-  "account.cancel_follow_request": "Cancel follow request",
+  "account.cancel_follow_request": "Cancelar pedido de seguidor",
   "account.direct": "Mensagem directa @{name}",
   "account.domain_blocked": "Domínio escondido",
   "account.edit_profile": "Editar perfil",
@@ -16,7 +17,7 @@
   "account.follows.empty": "Este utilizador ainda não segue alguém.",
   "account.follows_you": "É teu seguidor",
   "account.hide_reblogs": "Esconder partilhas de @{name}",
-  "account.last_status": "Last active",
+  "account.last_status": "Última actividade",
   "account.link_verified_on": "A posse deste link foi verificada em {date}",
   "account.locked_info": "O estatuto de privacidade desta conta é fechado. O dono revê manualmente que a pode seguir.",
   "account.media": "Média",
@@ -25,7 +26,7 @@
   "account.mute": "Silenciar @{name}",
   "account.mute_notifications": "Silenciar notificações de @{name}",
   "account.muted": "Silenciada",
-  "account.never_active": "Never",
+  "account.never_active": "Nunca",
   "account.posts": "Publicações",
   "account.posts_with_replies": "Publicações e respostas",
   "account.report": "Denunciar @{name}",
@@ -38,11 +39,11 @@
   "account.unfollow": "Deixar de seguir",
   "account.unmute": "Não silenciar @{name}",
   "account.unmute_notifications": "Deixar de silenciar @{name}",
-  "alert.rate_limited.message": "Please retry after {retry_time, time, medium}.",
-  "alert.rate_limited.title": "Rate limited",
+  "alert.rate_limited.message": "Volte a tentar depois das {retry_time, time, medium}.",
+  "alert.rate_limited.title": "Limite de tentativas",
   "alert.unexpected.message": "Ocorreu um erro inesperado.",
   "alert.unexpected.title": "Bolas!",
-  "autosuggest_hashtag.per_week": "{count} per week",
+  "autosuggest_hashtag.per_week": "{count} por semana",
   "boost_modal.combo": "Pode clicar {combo} para não voltar a ver",
   "bundle_column_error.body": "Algo de errado aconteceu enquanto este componente era carregado.",
   "bundle_column_error.retry": "Tente de novo",
@@ -51,9 +52,10 @@
   "bundle_modal_error.message": "Algo de errado aconteceu enquanto este componente era carregado.",
   "bundle_modal_error.retry": "Tente de novo",
   "column.blocks": "Utilizadores Bloqueados",
+  "column.bookmarks": "Favoritos",
   "column.community": "Cronologia local",
   "column.direct": "Mensagens directas",
-  "column.directory": "Browse profiles",
+  "column.directory": "Procurar perfis",
   "column.domain_blocks": "Domínios escondidos",
   "column.favourites": "Favoritos",
   "column.follow_requests": "Seguidores pendentes",
@@ -82,6 +84,8 @@
   "compose_form.poll.duration": "Duração da votação",
   "compose_form.poll.option_placeholder": "Opção {number}",
   "compose_form.poll.remove_option": "Eliminar esta opção",
+  "compose_form.poll.switch_to_multiple": "Alterar a votação para permitir múltiplas escolhas",
+  "compose_form.poll.switch_to_single": "Alterar a votação para permitir uma única escolha",
   "compose_form.publish": "Toot",
   "compose_form.publish_loud": "{publish}!",
   "compose_form.sensitive.hide": "Marcar multimédia como sensível",
@@ -100,10 +104,10 @@
   "confirmations.delete_list.message": "Tens a certeza de que desejas eliminar permanentemente esta lista?",
   "confirmations.domain_block.confirm": "Esconder tudo deste domínio",
   "confirmations.domain_block.message": "De certeza que queres bloquear completamente o domínio {domain}? Na maioria dos casos, silenciar ou bloquear alguns utilizadores é suficiente e é o recomendado. Não irás ver conteúdo daquele domínio em cronologia alguma nem nas tuas notificações. Os teus seguidores daquele domínio serão removidos.",
-  "confirmations.logout.confirm": "Log out",
-  "confirmations.logout.message": "Are you sure you want to log out?",
+  "confirmations.logout.confirm": "Terminar sessão",
+  "confirmations.logout.message": "Deseja terminar a sessão?",
   "confirmations.mute.confirm": "Silenciar",
-  "confirmations.mute.explanation": "This will hide posts from them and posts mentioning them, but it will still allow them to see your posts and follow you.",
+  "confirmations.mute.explanation": "Isto irá esconder publicações deles ou publicações que os mencionem, mas irá permitir que vejam as suas publicações e sejam seus seguidores.",
   "confirmations.mute.message": "De certeza que queres silenciar {name}?",
   "confirmations.redraft.confirm": "Apagar & redigir",
   "confirmations.redraft.message": "Tens a certeza que queres apagar e redigir esta publicação?  Os favoritos e as partilhas perder-se-ão e as respostas à publicação original ficarão órfãs.",
@@ -111,14 +115,14 @@
   "confirmations.reply.message": "Responder agora irá reescrever a mensagem que estás a compor actualmente. Tens a certeza que queres continuar?",
   "confirmations.unfollow.confirm": "Deixar de seguir",
   "confirmations.unfollow.message": "De certeza que queres deixar de seguir {name}?",
-  "conversation.delete": "Delete conversation",
-  "conversation.mark_as_read": "Mark as read",
-  "conversation.open": "View conversation",
-  "conversation.with": "With {names}",
-  "directory.federated": "From known fediverse",
-  "directory.local": "From {domain} only",
-  "directory.new_arrivals": "New arrivals",
-  "directory.recently_active": "Recently active",
+  "conversation.delete": "Eliminar conversa",
+  "conversation.mark_as_read": "Marcar como lida",
+  "conversation.open": "Ver conversa",
+  "conversation.with": "Com {names}",
+  "directory.federated": "Do fediverso conhecido",
+  "directory.local": "Apenas de {domain}",
+  "directory.new_arrivals": "Recém chegados",
+  "directory.recently_active": "Com actividade recente",
   "embed.instructions": "Publica esta publicação no teu site copiando o código abaixo.",
   "embed.preview": "Podes ver aqui como irá ficar:",
   "emoji_button.activity": "Actividade",
@@ -138,6 +142,7 @@
   "empty_column.account_timeline": "Sem toots por aqui!",
   "empty_column.account_unavailable": "Perfil indisponível",
   "empty_column.blocks": "Ainda não bloqueaste qualquer utilizador.",
+  "empty_column.bookmarked_statuses": "Ainda não assinalou toots como favoritos. Quando o fizer, eles aparecerão aqui.",
   "empty_column.community": "A timeline local está vazia. Escreve algo publicamente para começar!",
   "empty_column.direct": "Ainda não tens qualquer mensagem directa. Quando enviares ou receberes alguma, ela irá aparecer aqui.",
   "empty_column.domain_blocks": "Ainda não há qualquer domínio escondido.",
@@ -152,10 +157,10 @@
   "empty_column.mutes": "Ainda não silenciaste qualquer utilizador.",
   "empty_column.notifications": "Não tens notificações. Interage com outros utilizadores para iniciar uma conversa.",
   "empty_column.public": "Não há nada aqui! Escreve algo publicamente ou segue outros utilizadores para veres aqui os conteúdos públicos",
-  "error.unexpected_crash.explanation": "Due to a bug in our code or a browser compatibility issue, this page could not be displayed correctly.",
-  "error.unexpected_crash.next_steps": "Try refreshing the page. If that does not help, you may still be able to use Mastodon through a different browser or native app.",
-  "errors.unexpected_crash.copy_stacktrace": "Copy stacktrace to clipboard",
-  "errors.unexpected_crash.report_issue": "Report issue",
+  "error.unexpected_crash.explanation": "Devido a um erro no nosso código ou a uma compatilidade com o seu navegador, esta página não pôde ser apresentada correctamente.",
+  "error.unexpected_crash.next_steps": "Tente atualizar a página. Se isso não ajudar, pode usar o Mastodon através de um navegador diferente ou uma aplicação nativa.",
+  "errors.unexpected_crash.copy_stacktrace": "Copiar a stacktrace para o clipboard",
+  "errors.unexpected_crash.report_issue": "Reportar problema",
   "federation.change": "Ajustar federação do toot",
   "federation.federated.long": "Permitir que o toot chegue a outras instâncias",
   "federation.federated.short": "Federado",
@@ -224,6 +229,7 @@
   "keyboard_shortcuts.muted": "para abrir a lista dos utilizadores silenciados",
   "keyboard_shortcuts.my_profile": "para abrir o teu perfil",
   "keyboard_shortcuts.notifications": "para abrir a coluna das notificações",
+  "keyboard_shortcuts.open_media": "para abrir média",
   "keyboard_shortcuts.pinned": "para abrir a lista dos toots fixados",
   "keyboard_shortcuts.profile": "para abrir o perfil do autor",
   "keyboard_shortcuts.reply": "para responder",
@@ -248,7 +254,7 @@
   "lists.new.title_placeholder": "Título da nova lista",
   "lists.search": "Pesquisa entre as pessoas que segues",
   "lists.subheading": "As tuas listas",
-  "load_pending": "{count, plural, one {# new item} other {# new items}}",
+  "load_pending": "{count, plural, one {# novo item} other {# novos itens}}",
   "loading_indicator.label": "A carregar...",
   "media_gallery.toggle_visible": "Mostrar/ocultar",
   "missing_indicator.label": "Não encontrado",
@@ -256,6 +262,7 @@
   "mute_modal.hide_notifications": "Esconder notificações deste utilizador?",
   "navigation_bar.apps": "Aplicações móveis",
   "navigation_bar.blocks": "Utilizadores bloqueados",
+  "navigation_bar.bookmarks": "Favoritos",
   "navigation_bar.community_timeline": "Cronologia local",
   "navigation_bar.compose": "Escrever novo toot",
   "navigation_bar.direct": "Mensagens directas",
@@ -278,7 +285,9 @@
   "navigation_bar.security": "Segurança",
   "notification.favourite": "{name} adicionou o teu estado aos favoritos",
   "notification.follow": "{name} começou a seguir-te",
+  "notification.follow_request": "{name} pediu para segui-lo",
   "notification.mention": "{name} mencionou-te",
+  "notification.own_poll": "A sua votação terminou",
   "notification.poll": "Uma votação em participaste chegou ao fim",
   "notification.reblog": "{name} fez boost ao teu o teu estado",
   "notifications.clear": "Limpar notificações",
@@ -289,6 +298,7 @@
   "notifications.column_settings.filter_bar.category": "Barra de filtros rápidos",
   "notifications.column_settings.filter_bar.show": "Mostrar",
   "notifications.column_settings.follow": "Novos seguidores:",
+  "notifications.column_settings.follow_request": "Novos pedidos de seguidor:",
   "notifications.column_settings.mention": "Menções:",
   "notifications.column_settings.poll": "Resultados da votação:",
   "notifications.column_settings.push": "Notificações Push",
@@ -304,10 +314,10 @@
   "notifications.group": "{count} notificações",
   "poll.closed": "Fechado",
   "poll.refresh": "Recarregar",
-  "poll.total_people": "{count, plural, one {# person} other {# people}}",
+  "poll.total_people": "{count, plural, one {# pessoa} other {# pessoas}}",
   "poll.total_votes": "{contar, plural, um {# vote} outro {# votes}}",
   "poll.vote": "Votar",
-  "poll.voted": "You voted for this answer",
+  "poll.voted": "Você votou nesta resposta",
   "poll_button.add_poll": "Adicionar votação",
   "poll_button.remove_poll": "Remover votação",
   "privacy.change": "Ajustar a privacidade da mensagem",
@@ -319,7 +329,7 @@
   "privacy.public.short": "Público",
   "privacy.unlisted.long": "Não publicar nos feeds públicos",
   "privacy.unlisted.short": "Não listar",
-  "refresh": "Refresh",
+  "refresh": "Actualizar",
   "regeneration_indicator.label": "A carregar…",
   "regeneration_indicator.sublabel": "A tua home está a ser preparada!",
   "relative_time.days": "{number}d",
@@ -344,11 +354,12 @@
   "search_results.accounts": "Pessoas",
   "search_results.hashtags": "Hashtags",
   "search_results.statuses": "Toots",
-  "search_results.statuses_fts_disabled": "Searching toots by their content is not enabled on this Mastodon server.",
+  "search_results.statuses_fts_disabled": "A pesquisa de toots pelo seu conteúdo não está disponível neste servidor Mastodon.",
   "search_results.total": "{count, number} {count, plural, one {resultado} other {resultados}}",
   "status.admin_account": "Abrir a interface de moderação para @{name}",
   "status.admin_status": "Abrir esta publicação na interface de moderação",
   "status.block": "Bloquear @{name}",
+  "status.bookmark": "Favorito",
   "status.cancel_reblog_private": "Remover boost",
   "status.cannot_reblog": "Não é possível fazer boost a esta publicação",
   "status.copy": "Copiar o link para a publicação",
@@ -374,6 +385,7 @@
   "status.reblogged_by": "{name} fez boost",
   "status.reblogs.empty": "Ainda ninguém fez boost a este toot. Quando alguém o fizer, ele irá aparecer aqui.",
   "status.redraft": "Apagar & reescrever",
+  "status.remove_bookmark": "Remover favorito",
   "status.reply": "Responder",
   "status.replyAll": "Responder à conversa",
   "status.report": "Denunciar @{name}",
@@ -384,7 +396,7 @@
   "status.show_more": "Mostrar mais",
   "status.show_more_all": "Mostrar mais para todas",
   "status.show_thread": "Mostrar conversa",
-  "status.uncached_media_warning": "Not available",
+  "status.uncached_media_warning": "Não diponível",
   "status.unmute_conversation": "Deixar de silenciar esta conversa",
   "status.unpin": "Não fixar no perfil",
   "suggestions.dismiss": "Dispensar a sugestão",
@@ -400,24 +412,27 @@
   "time_remaining.moments": "Momentos restantes",
   "time_remaining.seconds": "{número, plural, um {# second} outro {# seconds}} faltam",
   "trends.count_by_accounts": "{count} {rawCount, plural, uma {person} outra {people}} a falar",
-  "trends.trending_now": "Trending now",
+  "trends.trending_now": "Tendências atuais",
   "ui.beforeunload": "O teu rascunho será perdido se abandonares o Mastodon.",
   "upload_area.title": "Arraste e solte para enviar",
   "upload_button.label": "Adicionar media",
   "upload_error.limit": "Limite máximo do ficheiro a carregar excedido.",
   "upload_error.poll": "Carregamento de ficheiros não é permitido em votações.",
+  "upload_form.audio_description": "Descreva para pessoas com diminuição da acuidade auditiva",
   "upload_form.description": "Descrição da imagem para pessoas com dificuldades visuais",
-  "upload_form.edit": "Edit",
+  "upload_form.edit": "Editar",
   "upload_form.undo": "Apagar",
-  "upload_modal.analyzing_picture": "Analyzing picture…",
-  "upload_modal.apply": "Apply",
-  "upload_modal.description_placeholder": "A quick brown fox jumps over the lazy dog",
-  "upload_modal.detect_text": "Detect text from picture",
-  "upload_modal.edit_media": "Edit media",
-  "upload_modal.hint": "Click or drag the circle on the preview to choose the focal point which will always be in view on all thumbnails.",
-  "upload_modal.preview_label": "Preview ({ratio})",
+  "upload_form.video_description": "Descreva para pessoas com diminuição da acuidade auditiva ou visual",
+  "upload_modal.analyzing_picture": "A analizar imagem…",
+  "upload_modal.apply": "Aplicar",
+  "upload_modal.description_placeholder": "Grave e cabisbaixo, o filho justo zelava pela querida mãe doente",
+  "upload_modal.detect_text": "Detectar texto na imagem",
+  "upload_modal.edit_media": "Editar média",
+  "upload_modal.hint": "Clique ou arraste o círculo na pré-visualização para escolher o ponto focal que será sempre visível em todas as miniaturas.",
+  "upload_modal.preview_label": "Pré-visualizar ({ratio})",
   "upload_progress.label": "A enviar...",
   "video.close": "Fechar vídeo",
+  "video.download": "Descarregar ficheiro",
   "video.exit_fullscreen": "Sair de full screen",
   "video.expand": "Expandir vídeo",
   "video.fullscreen": "Ecrã completo",
diff --git a/app/javascript/mastodon/locales/ro.json b/app/javascript/mastodon/locales/ro.json
index b52ec721b8d1743e0caa6b1c354f57e8541eeba1..29ab974291c3341019fead7b80abd01a59cd1672 100644
--- a/app/javascript/mastodon/locales/ro.json
+++ b/app/javascript/mastodon/locales/ro.json
@@ -1,6 +1,7 @@
 {
   "account.add_or_remove_from_list": "Adaugă sau Elimină din liste",
   "account.badges.bot": "Bot",
+  "account.badges.group": "Group",
   "account.block": "Blochează @{name}",
   "account.block_domain": "Ascunde tot de la {domain}",
   "account.blocked": "Blocat",
@@ -51,6 +52,7 @@
   "bundle_modal_error.message": "Ceva nu a funcționat în timupul încărcării acestui component.",
   "bundle_modal_error.retry": "Încearcă din nou",
   "column.blocks": "Utilizatori blocați",
+  "column.bookmarks": "Bookmarks",
   "column.community": "Fluxul Local",
   "column.direct": "Mesaje directe",
   "column.directory": "Browse profiles",
@@ -82,6 +84,8 @@
   "compose_form.poll.duration": "Poll duration",
   "compose_form.poll.option_placeholder": "Choice {number}",
   "compose_form.poll.remove_option": "Remove this choice",
+  "compose_form.poll.switch_to_multiple": "Change poll to allow multiple choices",
+  "compose_form.poll.switch_to_single": "Change poll to allow for a single choice",
   "compose_form.publish": "Postează",
   "compose_form.publish_loud": "{publish}!",
   "compose_form.sensitive.hide": "Mark media as sensitive",
@@ -138,6 +142,7 @@
   "empty_column.account_timeline": "Nici o postare aici!",
   "empty_column.account_unavailable": "Profile unavailable",
   "empty_column.blocks": "Nu ai blocat nici un utilizator incă.",
+  "empty_column.bookmarked_statuses": "You don't have any bookmarked toots yet. When you bookmark one, it will show up here.",
   "empty_column.community": "Fluxul local este gol. Scrie ceva public pentru a împinge bila la vale!",
   "empty_column.direct": "Nu ai nici un mesaj direct incă. Când trimiți sau primești unul, va fi afișat aici.",
   "empty_column.domain_blocks": "Nu sunt domenii ascunse incă.",
@@ -224,6 +229,7 @@
   "keyboard_shortcuts.muted": "să deschidă lista utilizatorilor opriți",
   "keyboard_shortcuts.my_profile": "să deschidă profilul tău",
   "keyboard_shortcuts.notifications": "să deschidă coloana cu notificări",
+  "keyboard_shortcuts.open_media": "to open media",
   "keyboard_shortcuts.pinned": "să deschidă lista postărilor fixate",
   "keyboard_shortcuts.profile": "să deschidă porfilul autorului",
   "keyboard_shortcuts.reply": "să răspundă",
@@ -256,6 +262,7 @@
   "mute_modal.hide_notifications": "Ascunzi notificările de la acest utilizator?",
   "navigation_bar.apps": "Aplicații mobile",
   "navigation_bar.blocks": "Utilizatori blocați",
+  "navigation_bar.bookmarks": "Bookmarks",
   "navigation_bar.community_timeline": "Flux local",
   "navigation_bar.compose": "Compune o nouă postare",
   "navigation_bar.direct": "Mesaje directe",
@@ -278,7 +285,9 @@
   "navigation_bar.security": "Securitate",
   "notification.favourite": "{name} a adăugat statusul tău la favorite",
   "notification.follow": "{name} te urmărește",
+  "notification.follow_request": "{name} has requested to follow you",
   "notification.mention": "{name} te-a menționat",
+  "notification.own_poll": "Your poll has ended",
   "notification.poll": "A poll you have voted in has ended",
   "notification.reblog": "{name} a redistribuit postarea ta",
   "notifications.clear": "Șterge notificările",
@@ -289,6 +298,7 @@
   "notifications.column_settings.filter_bar.category": "Bară de filtrare rapidă",
   "notifications.column_settings.filter_bar.show": "Arată",
   "notifications.column_settings.follow": "Noi urmăritori:",
+  "notifications.column_settings.follow_request": "New follow requests:",
   "notifications.column_settings.mention": "Mențiuni:",
   "notifications.column_settings.poll": "Poll results:",
   "notifications.column_settings.push": "Notificări push",
@@ -349,6 +359,7 @@
   "status.admin_account": "Open moderation interface for @{name}",
   "status.admin_status": "Open this status in the moderation interface",
   "status.block": "Blochează @{name}",
+  "status.bookmark": "Bookmark",
   "status.cancel_reblog_private": "Nedistribuit",
   "status.cannot_reblog": "Această postare nu poate fi redistribuită",
   "status.copy": "Copy link to status",
@@ -374,6 +385,7 @@
   "status.reblogged_by": "{name} a redistribuit",
   "status.reblogs.empty": "Nimeni nu a redistribuit această postare până acum. Când cineva o va face, va apărea aici.",
   "status.redraft": "Șterge și adaugă la ciorne",
+  "status.remove_bookmark": "Remove bookmark",
   "status.reply": "Răspunde",
   "status.replyAll": "Răspunde la topic",
   "status.report": "Raportează @{name}",
@@ -406,9 +418,11 @@
   "upload_button.label": "Adaugă media (JPEG, PNG, GIF, WebM, MP4, MOV)",
   "upload_error.limit": "File upload limit exceeded.",
   "upload_error.poll": "File upload not allowed with polls.",
+  "upload_form.audio_description": "Describe for people with hearing loss",
   "upload_form.description": "Adaugă o descriere pentru persoanele cu deficiențe de vedere",
   "upload_form.edit": "Edit",
   "upload_form.undo": "Șterge",
+  "upload_form.video_description": "Describe for people with hearing loss or visual impairment",
   "upload_modal.analyzing_picture": "Analyzing picture…",
   "upload_modal.apply": "Apply",
   "upload_modal.description_placeholder": "A quick brown fox jumps over the lazy dog",
@@ -418,6 +432,7 @@
   "upload_modal.preview_label": "Preview ({ratio})",
   "upload_progress.label": "Se Încarcă...",
   "video.close": "ÃŽnchide video",
+  "video.download": "Download file",
   "video.exit_fullscreen": "ÃŽnchide",
   "video.expand": "Extinde video",
   "video.fullscreen": "Ecran întreg",
diff --git a/app/javascript/mastodon/locales/ru.json b/app/javascript/mastodon/locales/ru.json
index 9a36c3b575ccbd7ff569196f9e5839715ce59d1f..0c6bff66c06643a37e039c8a4082e59a68766c03 100644
--- a/app/javascript/mastodon/locales/ru.json
+++ b/app/javascript/mastodon/locales/ru.json
@@ -1,8 +1,9 @@
 {
-  "account.add_or_remove_from_list": "Добавить или удалить из списков",
+  "account.add_or_remove_from_list": "Управление списками",
   "account.badges.bot": "Бот",
-  "account.block": "Блокировать",
-  "account.block_domain": "Блокировать все с {domain}",
+  "account.badges.group": "Группа",
+  "account.block": "Заблокировать @{name}",
+  "account.block_domain": "Заблокировать {domain}",
   "account.blocked": "Заблокирован(а)",
   "account.cancel_follow_request": "Отменить запрос",
   "account.direct": "Написать @{name}",
@@ -11,55 +12,56 @@
   "account.endorse": "Рекомендовать в профиле",
   "account.follow": "Подписаться",
   "account.followers": "Подписаны",
-  "account.followers.empty": "Никто не подписан на этого пользователя.",
+  "account.followers.empty": "На этого пользователя пока никто не подписан.",
   "account.follows": "Подписки",
-  "account.follows.empty": "Этот пользователь ни на кого не подписан.",
+  "account.follows.empty": "Этот пользователь пока ни на кого не подписался.",
   "account.follows_you": "Подписан(а) на вас",
-  "account.hide_reblogs": "Скрыть реблоги от @{name}",
+  "account.hide_reblogs": "Скрыть продвижения от @{name}",
   "account.last_status": "Последняя активность",
   "account.link_verified_on": "Владение этой ссылкой было проверено {date}",
   "account.locked_info": "Это закрытый аккаунт. Его владелец вручную одобряет подписчиков.",
   "account.media": "Медиа",
-  "account.mention": "Упомянуть",
+  "account.mention": "Упомянуть @{name}",
   "account.moved_to": "Ищите {name} здесь:",
-  "account.mute": "Скрыть @{name}",
+  "account.mute": "Игнорировать @{name}",
   "account.mute_notifications": "Скрыть уведомления от @{name}",
-  "account.muted": "Скрыт",
+  "account.muted": "Игнорируется",
   "account.never_active": "Никогда",
   "account.posts": "Посты",
-  "account.posts_with_replies": "Посты с ответами",
+  "account.posts_with_replies": "Посты и ответы",
   "account.report": "Пожаловаться",
   "account.requested": "Ожидает подтверждения. Нажмите для отмены",
   "account.share": "Поделиться профилем @{name}",
   "account.show_reblogs": "Показывать продвижения от @{name}",
-  "account.unblock": "Разблокировать",
+  "account.unblock": "Разблокировать @{name}",
   "account.unblock_domain": "Разблокировать {domain}",
   "account.unendorse": "Не рекомендовать в профиле",
   "account.unfollow": "Отписаться",
-  "account.unmute": "Снять глушение",
+  "account.unmute": "Не игнорировать @{name}",
   "account.unmute_notifications": "Показывать уведомления от @{name}",
-  "alert.rate_limited.message": "Пожалуйста, повторите через {retry_time, time, medium}.",
-  "alert.rate_limited.title": "Скорость ограничена",
+  "alert.rate_limited.message": "Пожалуйста, повторите после {retry_time, time, medium}.",
+  "alert.rate_limited.title": "Вы выполняете действие слишком часто",
   "alert.unexpected.message": "Что-то пошло не так.",
   "alert.unexpected.title": "Ой!",
   "autosuggest_hashtag.per_week": "{count} / неделю",
-  "boost_modal.combo": "Нажмите {combo}, чтобы пропустить это в следующий раз",
+  "boost_modal.combo": "{combo}, чтобы пропустить это в следующий раз",
   "bundle_column_error.body": "Что-то пошло не так при загрузке этого компонента.",
   "bundle_column_error.retry": "Попробовать снова",
   "bundle_column_error.title": "Ошибка сети",
   "bundle_modal_error.close": "Закрыть",
   "bundle_modal_error.message": "Что-то пошло не так при загрузке этого компонента.",
   "bundle_modal_error.retry": "Попробовать снова",
-  "column.blocks": "Список блокировки",
+  "column.blocks": "Заблокированные пользователи",
+  "column.bookmarks": "Закладки",
   "column.community": "Локальная лента",
   "column.direct": "Личные сообщения",
   "column.directory": "Просмотр профилей",
   "column.domain_blocks": "Скрытые домены",
-  "column.favourites": "Понравившееся",
+  "column.favourites": "Избранное",
   "column.follow_requests": "Запросы на подписку",
   "column.home": "Главная",
   "column.lists": "Списки",
-  "column.mutes": "Список скрытых пользователей",
+  "column.mutes": "Игнорируемые пользователи",
   "column.notifications": "Уведомления",
   "column.pins": "Закреплённый пост",
   "column.public": "Глобальная лента",
@@ -72,21 +74,23 @@
   "column_header.unpin": "Открепить",
   "column_subheading.settings": "Настройки",
   "community.column_settings.media_only": "Только с медиа",
-  "compose_form.direct_message_warning": "Этот статус будет виден только упомянутым пользователям.",
-  "compose_form.direct_message_warning_learn_more": "Узнать больше",
-  "compose_form.hashtag_warning": "Этот пост не будет показывается в поиске по хэштегу, т.к. он непубличный. Только публичные посты можно найти в поиске по хэштегу.",
-  "compose_form.lock_disclaimer": "Ваш аккаунт не {locked}. Любой человек может подписаться на Вас и просматривать посты для подписчиков.",
-  "compose_form.lock_disclaimer.lock": "закрыт",
-  "compose_form.placeholder": "О чем вы думаете?",
-  "compose_form.poll.add_option": "Добавить",
-  "compose_form.poll.duration": "Длительность опроса",
+  "compose_form.direct_message_warning": "Адресованные посты отправляются и видны только упомянутым в них пользователям.",
+  "compose_form.direct_message_warning_learn_more": "Узнать подробнее",
+  "compose_form.hashtag_warning": "Так как этот пост не публичный, он не отобразится в поиске по хэштегам.",
+  "compose_form.lock_disclaimer": "Ваша учётная запись {locked}. Любой пользователь сможет подписаться на вас и просматривать посты для подписчиков.",
+  "compose_form.lock_disclaimer.lock": "не закрыта",
+  "compose_form.placeholder": "О чём думаете?",
+  "compose_form.poll.add_option": "Добавить вариант",
+  "compose_form.poll.duration": "Продолжительность опроса",
   "compose_form.poll.option_placeholder": "Вариант {number}",
-  "compose_form.poll.remove_option": "Удалить этот вариант",
+  "compose_form.poll.remove_option": "Убрать этот вариант",
+  "compose_form.poll.switch_to_multiple": "Переключить в режим выбора нескольких ответов",
+  "compose_form.poll.switch_to_single": "Переключить в режим выбора одного ответа",
   "compose_form.publish": "Запостить",
   "compose_form.publish_loud": "{publish}!",
-  "compose_form.sensitive.hide": "Пометить медиафайл как чувствительный",
-  "compose_form.sensitive.marked": "Медиафайлы не отмечены как чувствительные",
-  "compose_form.sensitive.unmarked": "Медиафайлы не отмечены как чувствительные",
+  "compose_form.sensitive.hide": "Отметить медиафайл как деликатный",
+  "compose_form.sensitive.marked": "Медиафайл отмечен как деликатный",
+  "compose_form.sensitive.unmarked": "Медиафайл не отмечен как деликатный",
   "compose_form.spoiler.marked": "Текст скрыт за предупреждением",
   "compose_form.spoiler.unmarked": "Текст не скрыт",
   "compose_form.spoiler_placeholder": "Текст предупреждения",
@@ -95,20 +99,20 @@
   "confirmations.block.confirm": "Заблокировать",
   "confirmations.block.message": "Вы уверены, что хотите заблокировать {name}?",
   "confirmations.delete.confirm": "Удалить",
-  "confirmations.delete.message": "Вы уверены, что хотите удалить этот статус?",
+  "confirmations.delete.message": "Вы уверены, что хотите удалить этот пост?",
   "confirmations.delete_list.confirm": "Удалить",
   "confirmations.delete_list.message": "Вы действительно хотите навсегда удалить этот список?",
-  "confirmations.domain_block.confirm": "Блокировать весь домен",
-  "confirmations.domain_block.message": "Вы на самом деле уверены, что хотите блокировать весь {domain}? В большинстве случаев нескольких отдельных блокировок или глушений достаточно.",
+  "confirmations.domain_block.confirm": "Да, заблокировать узел",
+  "confirmations.domain_block.message": "Вы точно уверены, что хотите скрыть все посты с узла {domain}? В большинстве случаев пары блокировок и скрытий вполне достаточно.\n\nПри блокировке узла, вы перестанете получать уведомления оттуда, все посты будут скрыты из публичных лент, а подписчики убраны.",
   "confirmations.logout.confirm": "Выйти",
   "confirmations.logout.message": "Вы уверены, что хотите выйти?",
-  "confirmations.mute.confirm": "Заглушить",
-  "confirmations.mute.explanation": "Будут скрыты их посты и те, где они упоминаются, но они при этом смогут видеть ваши посты и подписываться на вас.",
-  "confirmations.mute.message": "Вы уверены, что хотите заглушить {name}?",
+  "confirmations.mute.confirm": "Игнорировать",
+  "confirmations.mute.explanation": "Это скроет посты этого пользователя и те, в которых он упоминается, но при этом он по-прежнему сможет подписаться на вас и смотреть ваши посты.",
+  "confirmations.mute.message": "Вы уверены, что хотите добавить {name} в список игнорируемых?",
   "confirmations.redraft.confirm": "Удалить и исправить",
-  "confirmations.redraft.message": "Вы уверены, что хотите удалить этот статус и превратить в черновик? Вы потеряете все ответы, продвижения и отметки 'нравится' к нему.",
+  "confirmations.redraft.message": "Вы уверены, что хотите переписать этот пост? Старый пост будет удалён, а вместе с ним пропадут отметки «избранного», продвижения и ответы.",
   "confirmations.reply.confirm": "Ответить",
-  "confirmations.reply.message": "При ответе текст набираемого сообщения будет перезаписан. Продолжить?",
+  "confirmations.reply.message": "При ответе, текст набираемого поста будет очищен. Продолжить?",
   "confirmations.unfollow.confirm": "Отписаться",
   "confirmations.unfollow.message": "Вы уверены, что хотите отписаться от {name}?",
   "conversation.delete": "Удалить беседу",
@@ -116,13 +120,13 @@
   "conversation.open": "Просмотр беседы",
   "conversation.with": "С {names}",
   "directory.federated": "Со всей федерации",
-  "directory.local": "Только из {domain}",
+  "directory.local": "Только с {domain}",
   "directory.new_arrivals": "Новички",
   "directory.recently_active": "Недавно активные",
-  "embed.instructions": "Встройте этот статус на Вашем сайте, скопировав код внизу.",
+  "embed.instructions": "Встройте этот пост на свой сайт, скопировав следующий код:",
   "embed.preview": "Так это будет выглядеть:",
   "emoji_button.activity": "Занятия",
-  "emoji_button.custom": "Собственные",
+  "emoji_button.custom": "С этого узла",
   "emoji_button.flags": "Флаги",
   "emoji_button.food": "Еда и напитки",
   "emoji_button.label": "Вставить эмодзи",
@@ -134,24 +138,25 @@
   "emoji_button.search": "Найти...",
   "emoji_button.search_results": "Результаты поиска",
   "emoji_button.symbols": "Символы",
-  "emoji_button.travel": "Путешествия",
+  "emoji_button.travel": "Путешествия и места",
   "empty_column.account_timeline": "Здесь нет постов!",
   "empty_column.account_unavailable": "Профиль недоступен",
   "empty_column.blocks": "Вы ещё никого не заблокировали.",
+  "empty_column.bookmarked_statuses": "У вас пока нет постов в закладках. Как добавите один, он отобразится здесь.",
   "empty_column.community": "Локальная лента пуста. Напишите что-нибудь, чтобы разогреть народ!",
   "empty_column.direct": "У вас пока нет личных сообщений. Как только вы отправите или получите одно, оно появится здесь.",
   "empty_column.domain_blocks": "Скрытых доменов пока нет.",
   "empty_column.favourited_statuses": "Вы не добавили ни один пост в «Избранное». Как только вы это сделаете, он появится здесь.",
   "empty_column.favourites": "Никто ещё не добавил этот пост в «Избранное». Как только кто-то это сделает, это отобразится здесь.",
   "empty_column.follow_requests": "Вам ещё не приходили запросы на подписку. Все новые запросы будут показаны здесь.",
-  "empty_column.hashtag": "Статусов с таким хэштегом еще не существует.",
+  "empty_column.hashtag": "С этим хэштегом пока ещё ничего не постили.",
   "empty_column.home": "Пока вы ни на кого не подписаны. Полистайте {public} или используйте поиск, чтобы освоиться и завести новые знакомства.",
   "empty_column.home.public_timeline": "публичные ленты",
   "empty_column.list": "В этом списке пока ничего нет.",
   "empty_column.lists": "У вас ещё нет списков. Созданные вами списки будут показаны здесь.",
-  "empty_column.mutes": "Вы ещё никого не скрывали.",
+  "empty_column.mutes": "Вы никого не игнорируете и всех внимательно выслушиваете.",
   "empty_column.notifications": "У вас пока нет уведомлений. Взаимодействуйте с другими, чтобы завести разговор.",
-  "empty_column.public": "Здесь ничего нет! Опубликуйте что-нибудь или подпишитесь на пользователей с других узлов, чтобы заполнить ленту.",
+  "empty_column.public": "Здесь ничего нет! Опубликуйте что-нибудь или подпишитесь на пользователей с других узлов, чтобы заполнить ленту",
   "error.unexpected_crash.explanation": "Из-за несовместимого браузера или ошибки в нашем коде, эта страница не может быть корректно отображена.",
   "error.unexpected_crash.next_steps": "Попробуйте обновить страницу. Если проблема не исчезает, используйте Mastodon из-под другого браузера или приложения.",
   "errors.unexpected_crash.copy_stacktrace": "Копировать стектрейс в буфер обмена",
@@ -179,7 +184,7 @@
   "hashtag.column_settings.tag_mode.all": "Все из списка",
   "hashtag.column_settings.tag_mode.any": "Любой из списка",
   "hashtag.column_settings.tag_mode.none": "Ни один из списка",
-  "hashtag.column_settings.tag_toggle": "Включая дополнительные хэштеге из этой колонки",
+  "hashtag.column_settings.tag_toggle": "Включить дополнительные теги для этой колонки",
   "home.column_settings.basic": "Основные",
   "home.column_settings.show_reblogs": "Показывать продвижения",
   "home.column_settings.show_replies": "Показывать ответы",
@@ -188,21 +193,21 @@
   "intervals.full.minutes": "{number, plural, one {# минута} few {# минуты} other {# минут}}",
   "introduction.federation.action": "Далее",
   "introduction.federation.federated.headline": "Глобальная лента",
-  "introduction.federation.federated.text": "Публичные статусы с других серверов федеративной сети расположатся в глобальной ленте.",
+  "introduction.federation.federated.text": "Публичные посты с других серверов федеративной сети расположатся в глобальной ленте.",
   "introduction.federation.home.headline": "Домашняя лента",
-  "introduction.federation.home.text": "Статусы от тех, на кого вы подписаны, появятся в вашей домашней ленте. Вы можете подписаться на кого угодно с любого сервера!",
+  "introduction.federation.home.text": "Посты людей, на которых вы подписаны, будут отображаться в домашней ленте. Подписываться можно на кого угодно, независимо от узла.",
   "introduction.federation.local.headline": "Локальная лента",
-  "introduction.federation.local.text": "Публичные статусы от людей с того же сервера, что и вы, будут отображены в локальной ленте.",
+  "introduction.federation.local.text": "Публичные посты от людей с того же сервера, что и вы, будут отображены в локальной ленте.",
   "introduction.interactions.action": "Завершить обучение",
   "introduction.interactions.favourite.headline": "Отметки «нравится»",
-  "introduction.interactions.favourite.text": "Вы можете отметить статус, чтобы вернуться к нему позже и дать знать автору, что запись вам понравилась, поставив отметку \"нравится\".",
+  "introduction.interactions.favourite.text": "Дайте автору знать, что пост вам понравился и вернитесь к нему позже, добавив его в избранное.",
   "introduction.interactions.reblog.headline": "Продвижения",
-  "introduction.interactions.reblog.text": "Вы можете делиться статусами других людей, продвигая их в своём аккаунте.",
+  "introduction.interactions.reblog.text": "Вы можете делиться постами других людей, продвигая их в своей учётной записи.",
   "introduction.interactions.reply.headline": "Ответы",
   "introduction.interactions.reply.text": "Вы можете отвечать свои и чужие посты, образуя цепочки сообщений (обсуждения).",
   "introduction.welcome.action": "Поехали!",
   "introduction.welcome.headline": "Первые шаги",
-  "introduction.welcome.text": "Добро пожаловать в федеративную сеть! Уже через мгновение вы сможете отправлять сообщения и общаться со своими друзьями на любом сервере. Но этот сервер — {domain} — особенный: на нём располагается ваш профиль. Запомните его название.",
+  "introduction.welcome.text": "Добро пожаловать в Федиверс! Уже через мгновение вы сможете отправлять сообщения и общаться со своими друзьями с любых узлов. Но этот узел — {domain} — особенный: на нём располагается ваш профиль, так что не забудьте его название.",
   "keyboard_shortcuts.back": "перейти назад",
   "keyboard_shortcuts.blocked": "чтобы открыть список заблокированных",
   "keyboard_shortcuts.boost": "продвинуть пост",
@@ -211,9 +216,9 @@
   "keyboard_shortcuts.description": "Описание",
   "keyboard_shortcuts.direct": "чтобы показать колонку личных сообщений",
   "keyboard_shortcuts.down": "вниз по списку",
-  "keyboard_shortcuts.enter": "развернуть пост",
+  "keyboard_shortcuts.enter": "открыть пост",
   "keyboard_shortcuts.favourite": "в избранное",
-  "keyboard_shortcuts.favourites": "открыть 'Избранное'",
+  "keyboard_shortcuts.favourites": "открыть «Избранное»",
   "keyboard_shortcuts.federated": "перейти к глобальной ленте",
   "keyboard_shortcuts.heading": "Сочетания клавиш",
   "keyboard_shortcuts.home": "перейти к домашней ленте",
@@ -221,10 +226,11 @@
   "keyboard_shortcuts.legend": "показать это окно",
   "keyboard_shortcuts.local": "перейти к локальной ленте",
   "keyboard_shortcuts.mention": "упомянуть автора поста",
-  "keyboard_shortcuts.muted": "открыть список заглушённых",
+  "keyboard_shortcuts.muted": "открыть список игнорируемых",
   "keyboard_shortcuts.my_profile": "перейти к своему профилю",
   "keyboard_shortcuts.notifications": "перейти к уведомлениям",
-  "keyboard_shortcuts.pinned": "перейти к закреплённым статусам",
+  "keyboard_shortcuts.open_media": "открыть вложение",
+  "keyboard_shortcuts.pinned": "перейти к закреплённым постам",
   "keyboard_shortcuts.profile": "перейти к профилю автора",
   "keyboard_shortcuts.reply": "ответить",
   "keyboard_shortcuts.requests": "перейти к запросам на подписку",
@@ -244,26 +250,27 @@
   "lists.delete": "Удалить список",
   "lists.edit": "Изменить список",
   "lists.edit.submit": "Изменить название",
-  "lists.new.create": "Новый список",
-  "lists.new.title_placeholder": "Заголовок списка",
-  "lists.search": "Искать из ваших подписок",
+  "lists.new.create": "Создать список",
+  "lists.new.title_placeholder": "Название для нового списка",
+  "lists.search": "Искать среди подписок",
   "lists.subheading": "Ваши списки",
   "load_pending": "{count, plural, one {# новый элемент} few {# новых элемента} other {# новых элементов}}",
   "loading_indicator.label": "Загрузка...",
   "media_gallery.toggle_visible": "Показать/скрыть",
   "missing_indicator.label": "Не найдено",
   "missing_indicator.sublabel": "Запрашиваемый ресурс не найден",
-  "mute_modal.hide_notifications": "Убрать уведомления от этого пользователя?",
+  "mute_modal.hide_notifications": "Скрыть уведомления от этого пользователя?",
   "navigation_bar.apps": "Мобильные приложения",
   "navigation_bar.blocks": "Список блокировки",
+  "navigation_bar.bookmarks": "Закладки",
   "navigation_bar.community_timeline": "Локальная лента",
-  "navigation_bar.compose": "Создать новый статус",
+  "navigation_bar.compose": "Создать новый пост",
   "navigation_bar.direct": "Личные сообщения",
   "navigation_bar.discover": "Изучайте",
   "navigation_bar.domain_blocks": "Скрытые домены",
   "navigation_bar.edit_profile": "Изменить профиль",
-  "navigation_bar.favourites": "Понравившееся",
-  "navigation_bar.filters": "Заглушенные слова",
+  "navigation_bar.favourites": "Избранное",
+  "navigation_bar.filters": "Игнорируемые слова",
   "navigation_bar.follow_requests": "Запросы на подписку",
   "navigation_bar.follows_and_followers": "Подписки и подписчики",
   "navigation_bar.info": "Об узле",
@@ -276,29 +283,32 @@
   "navigation_bar.preferences": "Настройки",
   "navigation_bar.public_timeline": "Глобальная лента",
   "navigation_bar.security": "Безопасность",
-  "notification.favourite": "{name} понравился Ваш статус",
+  "notification.favourite": "{name} добавил(а) ваш пост в избранное",
   "notification.follow": "{name} подписался (-лась) на вас",
+  "notification.follow_request": "{name} отправил запрос на подписку",
   "notification.mention": "{name} упомянул(а) вас",
+  "notification.own_poll": "Ваш опрос закончился",
   "notification.poll": "Опрос, в котором вы приняли участие, завершился",
-  "notification.reblog": "{name} продвинул(а) Ваш статус",
+  "notification.reblog": "{name} продвинул(а) ваш пост",
   "notifications.clear": "Очистить уведомления",
   "notifications.clear_confirmation": "Вы уверены, что хотите очистить все уведомления?",
-  "notifications.column_settings.alert": "Десктопные уведомления",
-  "notifications.column_settings.favourite": "Нравится:",
+  "notifications.column_settings.alert": "Уведомления в фоне",
+  "notifications.column_settings.favourite": "Ваш пост добавили в «избранное»:",
   "notifications.column_settings.filter_bar.advanced": "Отображать все категории",
-  "notifications.column_settings.filter_bar.category": "Фильтры по категориям",
-  "notifications.column_settings.filter_bar.show": "Показывать",
-  "notifications.column_settings.follow": "Новые подписчики:",
-  "notifications.column_settings.mention": "Упоминания:",
-  "notifications.column_settings.poll": "Результаты опроса:",
-  "notifications.column_settings.push": "Push-уведомления",
-  "notifications.column_settings.reblog": "Продвижения:",
-  "notifications.column_settings.show": "Показывать в колонке",
+  "notifications.column_settings.filter_bar.category": "Панель сортировки",
+  "notifications.column_settings.filter_bar.show": "Отображать панель сортировки",
+  "notifications.column_settings.follow": "У вас новый подписчик:",
+  "notifications.column_settings.follow_request": "Новые запросы на подписку:",
+  "notifications.column_settings.mention": "Вас упомянули в посте:",
+  "notifications.column_settings.poll": "Опрос, в котором вы приняли участие, завершился:",
+  "notifications.column_settings.push": "Пуш-уведомления",
+  "notifications.column_settings.reblog": "Ваш пост продвинули:",
+  "notifications.column_settings.show": "Отображать в списке",
   "notifications.column_settings.sound": "Проигрывать звук",
-  "notifications.filter.all": "Все",
+  "notifications.filter.all": "Всё",
   "notifications.filter.boosts": "Продвижения",
-  "notifications.filter.favourites": "Отметки \"нравится\"",
-  "notifications.filter.follows": "Новые подписчики",
+  "notifications.filter.favourites": "Отметки «избранного»",
+  "notifications.filter.follows": "Подписки",
   "notifications.filter.mentions": "Упоминания",
   "notifications.filter.polls": "Результаты опросов",
   "notifications.group": "{count} уведомл.",
@@ -310,82 +320,84 @@
   "poll.voted": "Вы проголосовали за этот вариант",
   "poll_button.add_poll": "Добавить опрос",
   "poll_button.remove_poll": "Удалить опрос",
-  "privacy.change": "Изменить видимость статуса",
+  "privacy.change": "Изменить видимость поста",
   "privacy.direct.long": "Показать только упомянутым",
-  "privacy.direct.short": "Направленный",
+  "privacy.direct.short": "Адресованный",
   "privacy.private.long": "Показать только подписчикам",
   "privacy.private.short": "Приватный",
   "privacy.public.long": "Показать в публичных лентах",
   "privacy.public.short": "Публичный",
-  "privacy.unlisted.long": "Не показывать в лентах",
+  "privacy.unlisted.long": "Не показывать в публичных лентах",
   "privacy.unlisted.short": "Скрытый",
   "refresh": "Обновить",
   "regeneration_indicator.label": "Загрузка…",
-  "regeneration_indicator.sublabel": "Ваша домашняя лента готовится!",
-  "relative_time.days": "{number}д",
-  "relative_time.hours": "{number}ч",
+  "regeneration_indicator.sublabel": "Один момент, мы подготавливаем вашу ленту!",
+  "relative_time.days": "{number} д",
+  "relative_time.hours": "{number} ч",
   "relative_time.just_now": "только что",
-  "relative_time.minutes": "{number}м",
-  "relative_time.seconds": "{number}с",
+  "relative_time.minutes": "{number} мин",
+  "relative_time.seconds": "{number} с",
   "reply_indicator.cancel": "Отмена",
   "report.forward": "Переслать в {target}",
-  "report.forward_hint": "Этот аккаунт расположен на другом сервере. Отправить туда анонимную копию Вашей жалобы?",
-  "report.hint": "Жалоба будет отправлена модераторам Вашего сервера. Вы также можете указать подробную причину жалобы ниже:",
+  "report.forward_hint": "Эта учётная запись расположена на другом узле. Отправить туда анонимную копию вашей жалобы?",
+  "report.hint": "Жалоба будет отправлена модераторам вашего узла. Вы также можете указать подробную причину жалобы ниже:",
   "report.placeholder": "Комментарий",
   "report.submit": "Отправить",
   "report.target": "Жалоба на {target}",
   "search.placeholder": "Поиск",
   "search_popout.search_format": "Продвинутый формат поиска",
-  "search_popout.tips.full_text": "Возвращает посты, которые Вы написали, отметили как 'избранное', продвинули или в которых были упомянуты, а также содержащие юзернейм, имя и хэштеги.",
+  "search_popout.tips.full_text": "Поиск по простому тексту отобразит посты, которые вы написали, добавили в избранное, продвинули или в которых были упомянуты, а также подходящие имена пользователей и хэштеги.",
   "search_popout.tips.hashtag": "хэштег",
-  "search_popout.tips.status": "статус",
+  "search_popout.tips.status": "пост",
   "search_popout.tips.text": "Простой ввод текста покажет совпадающие имена пользователей, отображаемые имена и хэштеги",
   "search_popout.tips.user": "пользователь",
   "search_results.accounts": "Люди",
   "search_results.hashtags": "Хэштеги",
   "search_results.statuses": "Посты",
-  "search_results.statuses_fts_disabled": "Поиск постов по их контенту не поддерживается на этом сервере Mastodon.",
+  "search_results.statuses_fts_disabled": "Поиск постов по их содержанию не поддерживается данным узлом Mastodon.",
   "search_results.total": "{count, number} {count, plural, one {результат} few {результата} many {результатов} other {результатов}}",
   "status.admin_account": "Открыть интерфейс модератора для @{name}",
-  "status.admin_status": "Открыть этот статус в интерфейсе модератора",
+  "status.admin_status": "Открыть этот пост в интерфейсе модератора",
   "status.block": "Заблокировать @{name}",
+  "status.bookmark": "Добавить в закладки",
   "status.cancel_reblog_private": "Не продвигать",
-  "status.cannot_reblog": "Этот статус не может быть продвинут",
-  "status.copy": "Копировать ссылку на запись",
+  "status.cannot_reblog": "Этот пост не может быть продвинут",
+  "status.copy": "Скопировать ссылку на пост",
   "status.delete": "Удалить",
   "status.detailed_status": "Подробный просмотр обсуждения",
   "status.direct": "Написать @{name}",
-  "status.embed": "Встроить",
+  "status.embed": "Встроить на свой сайт",
   "status.favourite": "Нравится",
   "status.filtered": "Отфильтровано",
-  "status.load_more": "Показать еще",
+  "status.load_more": "Загрузить остальное",
   "status.local_only": "This post is only visible by other users of your instance",
   "status.media_hidden": "Медиа скрыто",
   "status.mention": "Упомянуть @{name}",
   "status.more": "Больше",
-  "status.mute": "Заглушить @{name}",
-  "status.mute_conversation": "Заглушить всё обсуждение",
-  "status.open": "Развернуть статус",
+  "status.mute": "Игнорировать @{name}",
+  "status.mute_conversation": "Игнорировать обсуждение",
+  "status.open": "Открыть пост",
   "status.pin": "Закрепить в профиле",
-  "status.pinned": "Закреплённый статус",
+  "status.pinned": "Закреплённый пост",
   "status.read_more": "Ещё",
   "status.reblog": "Продвинуть",
   "status.reblog_private": "Продвинуть для своей аудитории",
   "status.reblogged_by": "{name} продвинул(а)",
-  "status.reblogs.empty": "Никто ещё не продвинул этот статус. Как только кто-то это сделает, они появятся здесь.",
+  "status.reblogs.empty": "Никто ещё не продвинул этот пост. Как только кто-то это сделает, они появятся здесь.",
   "status.redraft": "Удалить и исправить",
+  "status.remove_bookmark": "Убрать из закладок",
   "status.reply": "Ответить",
   "status.replyAll": "Ответить всем",
   "status.report": "Пожаловаться",
-  "status.sensitive_warning": "Чувствительный контент",
+  "status.sensitive_warning": "Деликатное содержимое",
   "status.share": "Поделиться",
   "status.show_less": "Свернуть",
-  "status.show_less_all": "Свернуть для всех",
+  "status.show_less_all": "Свернуть все спойлеры в ветке",
   "status.show_more": "Развернуть",
-  "status.show_more_all": "Развернуть для всех",
+  "status.show_more_all": "Развернуть все спойлеры в ветке",
   "status.show_thread": "Показать обсуждение",
   "status.uncached_media_warning": "Недоступно",
-  "status.unmute_conversation": "Снять глушение с обсуждения",
+  "status.unmute_conversation": "Не игнорировать обсуждение",
   "status.unpin": "Открепить от профиля",
   "suggestions.dismiss": "Удалить предложение",
   "suggestions.header": "Вам может быть интересно…",
@@ -398,17 +410,19 @@
   "time_remaining.hours": "{number, plural, one {остался # час} few {осталось # часа} many {осталось # часов} other {осталось # часов}}",
   "time_remaining.minutes": "{number, plural, one {осталась # минута} few {осталось # минуты} many {осталось # минут} other {осталось # минут}}",
   "time_remaining.moments": "остались считанные мгновения",
-  "time_remaining.seconds": "{number, plural, one {осталась # секунду} few {осталось # секунды} many {осталось # секунд} other {осталось # секунд}}",
+  "time_remaining.seconds": "{number, plural, one {# секунда} many {# секунд} other {# секунды}}",
   "trends.count_by_accounts": "{count} {rawCount, plural, one {человек говорит} few {человека говорят} other {человек говорят}} про это",
   "trends.trending_now": "Самое актуальное",
   "ui.beforeunload": "Ваш черновик будет утерян, если вы покинете Mastodon.",
   "upload_area.title": "Перетащите сюда, чтобы загрузить",
-  "upload_button.label": "Добавить медиаконтент",
+  "upload_button.label": "Добавить файл медиа ({formats})",
   "upload_error.limit": "Достигнут лимит загруженных файлов.",
   "upload_error.poll": "К опросам нельзя прикреплять файлы.",
+  "upload_form.audio_description": "Опишите аудиофайл для людей с нарушением слуха",
   "upload_form.description": "Добавьте описание для людей с нарушениями зрения:",
   "upload_form.edit": "Изменить",
   "upload_form.undo": "Отменить",
+  "upload_form.video_description": "Опишите видео для людей с нарушением слуха или зрения",
   "upload_modal.analyzing_picture": "Обработка изображения…",
   "upload_modal.apply": "Применить",
   "upload_modal.description_placeholder": "На дворе трава, на траве дрова",
@@ -418,11 +432,12 @@
   "upload_modal.preview_label": "Предпросмотр ({ratio})",
   "upload_progress.label": "Загрузка...",
   "video.close": "Закрыть видео",
+  "video.download": "Загрузить файл",
   "video.exit_fullscreen": "Покинуть полноэкранный режим",
   "video.expand": "Развернуть видео",
   "video.fullscreen": "Полноэкранный режим",
   "video.hide": "Скрыть видео",
-  "video.mute": "Заглушить звук",
+  "video.mute": "Выключить звук",
   "video.pause": "Пауза",
   "video.play": "Пуск",
   "video.unmute": "Включить звук"
diff --git a/app/javascript/mastodon/locales/sk.json b/app/javascript/mastodon/locales/sk.json
index 01fd3d42c979dfd89e483932411724886bb187bd..0705e68509899cc748b786f9ba36a2a331463979 100644
--- a/app/javascript/mastodon/locales/sk.json
+++ b/app/javascript/mastodon/locales/sk.json
@@ -1,11 +1,12 @@
 {
   "account.add_or_remove_from_list": "Pridaj do, alebo odober zo zoznamov",
   "account.badges.bot": "Bot",
+  "account.badges.group": "Group",
   "account.block": "Blokuj @{name}",
   "account.block_domain": "Ukry všetko z {domain}",
   "account.blocked": "Blokovaný/á",
-  "account.cancel_follow_request": "Zruš požiadanie o sledovanie",
-  "account.direct": "Súkromná správa pre @{name}",
+  "account.cancel_follow_request": "Zruš žiadosť o sledovanie",
+  "account.direct": "Priama správa pre @{name}",
   "account.domain_blocked": "Doména ukrytá",
   "account.edit_profile": "Uprav profil",
   "account.endorse": "Zobrazuj na profile",
@@ -51,8 +52,9 @@
   "bundle_modal_error.message": "Nastala chyba pri načítaní tohto komponentu.",
   "bundle_modal_error.retry": "Skúsiť znova",
   "column.blocks": "Blokovaní užívatelia",
+  "column.bookmarks": "Záložky",
   "column.community": "Miestna časová os",
-  "column.direct": "Súkromné správy",
+  "column.direct": "Priame správy",
   "column.directory": "Prehľadávaj profily",
   "column.domain_blocks": "Skryté domény",
   "column.favourites": "Obľúbené",
@@ -69,11 +71,11 @@
   "column_header.moveRight_settings": "Presuň stĺpec doprava",
   "column_header.pin": "Pripni",
   "column_header.show_settings": "Ukáž nastavenia",
-  "column_header.unpin": "Odopnúť",
+  "column_header.unpin": "Odopni",
   "column_subheading.settings": "Nastavenia",
   "community.column_settings.media_only": "Iba médiá",
-  "compose_form.direct_message_warning": "Tento príspevok bude videný výhradne iba spomenutými užívateľmi. Ber ale na vedomie že správci tvojej a všetkých iných zahrnutých instancií majú možnosť skontrolovať túto správu.",
-  "compose_form.direct_message_warning_learn_more": "Zistiť viac",
+  "compose_form.direct_message_warning": "Tento príspevok bude boslaný iba spomenutým užívateľom.",
+  "compose_form.direct_message_warning_learn_more": "Zisti viac",
   "compose_form.hashtag_warning": "Tento toot nebude zobrazený pod žiadným haštagom lebo nieje listovaný. Iba verejné tooty môžu byť nájdené podľa haštagu.",
   "compose_form.lock_disclaimer": "Tvoj účet nie je {locked}. Ktokoľvek ťa môže nasledovať a vidieť tvoje správy pre sledujúcich.",
   "compose_form.lock_disclaimer.lock": "zamknutý",
@@ -82,6 +84,8 @@
   "compose_form.poll.duration": "Trvanie ankety",
   "compose_form.poll.option_placeholder": "Voľba {number}",
   "compose_form.poll.remove_option": "Odstráň túto voľbu",
+  "compose_form.poll.switch_to_multiple": "Change poll to allow multiple choices",
+  "compose_form.poll.switch_to_single": "Change poll to allow for a single choice",
   "compose_form.publish": "Pošli",
   "compose_form.publish_loud": "{publish}!",
   "compose_form.sensitive.hide": "Označ médiá ako chúlostivé",
@@ -103,7 +107,7 @@
   "confirmations.logout.confirm": "Odhlás sa",
   "confirmations.logout.message": "Si si istý/á, že sa chceš odhlásiť?",
   "confirmations.mute.confirm": "Ignoruj",
-  "confirmations.mute.explanation": "This will hide posts from them and posts mentioning them, but it will still allow them to see your posts and follow you.",
+  "confirmations.mute.explanation": "Toto nastavenie pred tebou skryje ich príspevky, alebo príspevky od iných v ktorých sú spomenutí, ale umožní im vidieť tvoje príspevky, aj ťa následovať.",
   "confirmations.mute.message": "Naozaj chceš ignorovať {name}?",
   "confirmations.redraft.confirm": "Vyčisti a prepíš",
   "confirmations.redraft.message": "Si si istý/á, že chceš premazať a prepísať tento príspevok? Jeho nadobudnuté vyzdvihnutia a obľúbenia, ale i odpovede na pôvodný príspevok budú odlúčené.",
@@ -138,8 +142,9 @@
   "empty_column.account_timeline": "Niesú tu žiadne príspevky!",
   "empty_column.account_unavailable": "Profil nedostupný",
   "empty_column.blocks": "Ešte si nikoho nezablokoval/a.",
+  "empty_column.bookmarked_statuses": "Ešte nemáš žiadné záložky. Keď si pridáš príspevok k záložkám, zobrazí sa tu.",
   "empty_column.community": "Lokálna časová os je prázdna. Napíšte niečo, aby sa to tu začalo hýbať!",
-  "empty_column.direct": "Ešte nemáš žiadne súkromné správy. Keď nejakú pošleš, alebo dostaneš, ukáže sa tu.",
+  "empty_column.direct": "Ešte nemáš žiadne priame správy. Keď nejakú pošleš, alebo dostaneš, ukáže sa tu.",
   "empty_column.domain_blocks": "Žiadne domény ešte niesú skryté.",
   "empty_column.favourited_statuses": "Nemáš obľúbené ešte žiadne príspevky. Keď si nejaký obľúbiš, bude zobrazený práve tu.",
   "empty_column.favourites": "Tento toot si ešte nikto neobľúbil. Ten kto si ho obľúbi, bude zobrazený tu.",
@@ -152,8 +157,8 @@
   "empty_column.mutes": "Ešte si nestĺmil žiadných užívateľov.",
   "empty_column.notifications": "Ešte nemáš žiadne oznámenia. Začni komunikovať s ostatnými, aby diskusia mohla začať.",
   "empty_column.public": "Ešte tu nič nie je. Napíš niečo verejne, alebo začni sledovať užívateľov z iných serverov, aby tu niečo pribudlo",
-  "error.unexpected_crash.explanation": "Due to a bug in our code or a browser compatibility issue, this page could not be displayed correctly.",
-  "error.unexpected_crash.next_steps": "Try refreshing the page. If that does not help, you may still be able to use Mastodon through a different browser or native app.",
+  "error.unexpected_crash.explanation": "Kvôli chybe v našom kóde, alebo problému s kompatibilitou prehliadača, túto stránku nebolo možné zobraziť správne.",
+  "error.unexpected_crash.next_steps": "Skús obnoviť stránku. Ak to nepomôže, pravdepodobne budeš stále môcť používať Mastodon cez iný prehliadač, alebo natívnu aplikáciu.",
   "errors.unexpected_crash.copy_stacktrace": "Skopíruj stacktrace do schránky",
   "errors.unexpected_crash.report_issue": "Nahlás problém",
   "federation.change": "Adjust status federation",
@@ -181,8 +186,8 @@
   "hashtag.column_settings.tag_mode.none": "Žiaden z týchto",
   "hashtag.column_settings.tag_toggle": "Vlož dodatočné haštagy pre tento stĺpec",
   "home.column_settings.basic": "Základné",
-  "home.column_settings.show_reblogs": "Zobraziť povýšené",
-  "home.column_settings.show_replies": "Ukázať odpovede",
+  "home.column_settings.show_reblogs": "Ukáž vyzdvihnuté",
+  "home.column_settings.show_replies": "Ukáž odpovede",
   "intervals.full.days": "{number, plural, one {# deň} few {# dní} many {# dní} other {# dní}}",
   "intervals.full.hours": "{number, plural, one {# hodina} few {# hodín} many {# hodín} other {# hodín}}",
   "intervals.full.minutes": "{number, plural, one {# minúta} few {# minút} many {# minút} other {# minút}}",
@@ -197,7 +202,7 @@
   "introduction.interactions.favourite.headline": "Obľúbené",
   "introduction.interactions.favourite.text": "Obľúbením si môžeš príspevok uložiť na neskôr, a zároveň dať jeho autorovi vedieť, že sa ti páčil.",
   "introduction.interactions.reblog.headline": "Vyzdvihni",
-  "introduction.interactions.reblog.text": "Môžeš zdieľať príspevky iných ľudí s vašimi následovateľmi tým, že ich povýšiš.",
+  "introduction.interactions.reblog.text": "Môžeš zdieľať príspevky iných ľudí s tvojími následovateľmi tak, že ich vyzdvihneš.",
   "introduction.interactions.reply.headline": "Odpovedz",
   "introduction.interactions.reply.text": "Odpovedať môžeš na príspevky iných ľudí, aj na svoje vlastné, čím sa spolu prepoja do konverzácie.",
   "introduction.welcome.action": "Poďme do toho!",
@@ -209,7 +214,7 @@
   "keyboard_shortcuts.column": "zameraj sa na príspevok v jednom zo stĺpcov",
   "keyboard_shortcuts.compose": "zameraj sa na písaciu plochu",
   "keyboard_shortcuts.description": "Popis",
-  "keyboard_shortcuts.direct": "otvor panel súkromných správ",
+  "keyboard_shortcuts.direct": "pre otvorenie panelu priamých správ",
   "keyboard_shortcuts.down": "posunúť sa dole v zozname",
   "keyboard_shortcuts.enter": "otvoriť správu",
   "keyboard_shortcuts.favourite": "pridaj do obľúbených",
@@ -224,6 +229,7 @@
   "keyboard_shortcuts.muted": "otvor zoznam stíšených užívateľov",
   "keyboard_shortcuts.my_profile": "otvor svoj profil",
   "keyboard_shortcuts.notifications": "otvor panel oboznámení",
+  "keyboard_shortcuts.open_media": "na otvorenie médií",
   "keyboard_shortcuts.pinned": "otvor zoznam pripnutých príspevkov",
   "keyboard_shortcuts.profile": "otvor autorov profil",
   "keyboard_shortcuts.reply": "odpovedať",
@@ -256,16 +262,17 @@
   "mute_modal.hide_notifications": "Skry oznámenia od tohto používateľa?",
   "navigation_bar.apps": "Aplikácie",
   "navigation_bar.blocks": "Blokovaní užívatelia",
+  "navigation_bar.bookmarks": "Záložky",
   "navigation_bar.community_timeline": "Miestna časová os",
   "navigation_bar.compose": "Napíš nový príspevok",
-  "navigation_bar.direct": "Súkromné správy",
+  "navigation_bar.direct": "Priame správy",
   "navigation_bar.discover": "Objavuj",
   "navigation_bar.domain_blocks": "Skryté domény",
   "navigation_bar.edit_profile": "Uprav profil",
   "navigation_bar.favourites": "Obľúbené",
   "navigation_bar.filters": "Filtrované slová",
   "navigation_bar.follow_requests": "Žiadosti o sledovanie",
-  "navigation_bar.follows_and_followers": "Následovaní a sledovatelia",
+  "navigation_bar.follows_and_followers": "Sledovania a následovatelia",
   "navigation_bar.info": "O tomto serveri",
   "navigation_bar.keyboard_shortcuts": "Klávesové skratky",
   "navigation_bar.lists": "Zoznamy",
@@ -273,12 +280,14 @@
   "navigation_bar.mutes": "Ignorovaní užívatelia",
   "navigation_bar.personal": "Osobné",
   "navigation_bar.pins": "Pripnuté príspevky",
-  "navigation_bar.preferences": "Voľby",
+  "navigation_bar.preferences": "Nastavenia",
   "navigation_bar.public_timeline": "Federovaná časová os",
   "navigation_bar.security": "Zabezbečenie",
   "notification.favourite": "{name} si obľúbil/a tvoj príspevok",
   "notification.follow": "{name} ťa začal/a následovať",
+  "notification.follow_request": "{name} žiada ťa následovať",
   "notification.mention": "{name} ťa spomenul/a",
+  "notification.own_poll": "Tvoja anketa sa skončila",
   "notification.poll": "Anketa v ktorej si hlasoval/a sa skončila",
   "notification.reblog": "{name} zdieľal/a tvoj príspevok",
   "notifications.clear": "Vyčisti oboznámenia",
@@ -289,11 +298,12 @@
   "notifications.column_settings.filter_bar.category": "Rýchle triedenie",
   "notifications.column_settings.filter_bar.show": "Ukáž",
   "notifications.column_settings.follow": "Noví sledujúci:",
+  "notifications.column_settings.follow_request": "Nové žiadosti o následovanie:",
   "notifications.column_settings.mention": "Zmienenia:",
   "notifications.column_settings.poll": "Výsledky ankiet:",
   "notifications.column_settings.push": "Push notifikácie",
   "notifications.column_settings.reblog": "Vyzdvihnutia:",
-  "notifications.column_settings.show": "Zobraz v stĺpci",
+  "notifications.column_settings.show": "Ukáž v stĺpci",
   "notifications.column_settings.sound": "Prehraj zvuk",
   "notifications.filter.all": "Všetky",
   "notifications.filter.boosts": "Vyzdvihnutia",
@@ -349,12 +359,13 @@
   "status.admin_account": "Otvor moderovacie rozhranie užívateľa @{name}",
   "status.admin_status": "Otvor tento príspevok v moderovacom rozhraní",
   "status.block": "Blokuj @{name}",
+  "status.bookmark": "Záložka",
   "status.cancel_reblog_private": "Nezdieľaj",
   "status.cannot_reblog": "Tento príspevok nemôže byť zdieľaný",
   "status.copy": "Skopíruj odkaz na príspevok",
   "status.delete": "Zmazať",
   "status.detailed_status": "Podrobný náhľad celej konverzácie",
-  "status.direct": "Súkromná správa @{name}",
+  "status.direct": "Priama správa pre @{name}",
   "status.embed": "Vložiť",
   "status.favourite": "Páči sa mi",
   "status.filtered": "Filtrované",
@@ -371,9 +382,10 @@
   "status.read_more": "Čítaj ďalej",
   "status.reblog": "Vyzdvihni",
   "status.reblog_private": "Vyzdvihni k pôvodnému publiku",
-  "status.reblogged_by": "{name} povýšil/a",
+  "status.reblogged_by": "{name} vyzdvihli",
   "status.reblogs.empty": "Nikto ešte nevyzdvihol tento príspevok. Keď tak niekto urobí, bude to zobrazené práve tu.",
   "status.redraft": "Vymaž a prepíš",
+  "status.remove_bookmark": "Odstráň záložku",
   "status.reply": "Odpovedať",
   "status.replyAll": "Odpovedz na diskusiu",
   "status.report": "Nahlás @{name}",
@@ -399,25 +411,28 @@
   "time_remaining.minutes": "Ostáva {number, plural, one {# minúta} few {# minút} many {# minút} other {# minúty}}",
   "time_remaining.moments": "Ostáva už iba chviľka",
   "time_remaining.seconds": "Ostáva {number, plural, one {# sekunda} few {# sekúnd} many {# sekúnd} other {# sekúnd}}",
-  "trends.count_by_accounts": "{count} {rawCount, plural, one {človek vraví} other {ľudia vravia}}",
+  "trends.count_by_accounts": "{count} {rawCount, plural, one {človek spomína} other {ľudí spomína}}",
   "trends.trending_now": "Teraz populárne",
   "ui.beforeunload": "Čo máš rozpísané sa stratí, ak opustíš Mastodon.",
   "upload_area.title": "Pretiahni a pusť pre nahratie",
   "upload_button.label": "Pridaj médiálny súbor (JPEG, PNG, GIF, WebM, MP4, MOV)",
   "upload_error.limit": "Limit pre nahrávanie súborov bol prekročený.",
   "upload_error.poll": "Nahrávanie súborov pri anketách nieje možné.",
+  "upload_form.audio_description": "Popíš, pre ľudí so stratou sluchu",
   "upload_form.description": "Opis pre slabo vidiacich",
   "upload_form.edit": "Uprav",
   "upload_form.undo": "Vymaž",
+  "upload_form.video_description": "Popíš, pre ľudí so stratou sluchu, alebo očným znevýhodnením",
   "upload_modal.analyzing_picture": "Analyzujem obrázok…",
   "upload_modal.apply": "Použi",
   "upload_modal.description_placeholder": "Rýchla hnedá líška skáče ponad lenivého psa",
   "upload_modal.detect_text": "Rozpoznaj text z obrázka",
   "upload_modal.edit_media": "Uprav médiá",
-  "upload_modal.hint": "Click or drag the circle on the preview to choose the focal point which will always be in view on all thumbnails.",
+  "upload_modal.hint": "Klikni, alebo potiahni okruh ukážky pre zvolenie z ktorého východzieho bodu bude vždy v dohľadne na všetkých náhľadoch.",
   "upload_modal.preview_label": "Náhľad ({ratio})",
   "upload_progress.label": "Nahráva sa...",
   "video.close": "Zavri video",
+  "video.download": "Stiahni súbor",
   "video.exit_fullscreen": "Vypni zobrazenie na celú obrazovku",
   "video.expand": "Zväčši video",
   "video.fullscreen": "Zobraz na celú obrazovku",
diff --git a/app/javascript/mastodon/locales/sl.json b/app/javascript/mastodon/locales/sl.json
index 29d7bf473ec6007201326431d1edfd6658ec045f..87375bd45968863e9d58fb78e5f38baf81c0478c 100644
--- a/app/javascript/mastodon/locales/sl.json
+++ b/app/javascript/mastodon/locales/sl.json
@@ -1,6 +1,7 @@
 {
   "account.add_or_remove_from_list": "Dodaj ali odstrani iz seznama",
   "account.badges.bot": "Robot",
+  "account.badges.group": "Group",
   "account.block": "Blokiraj @{name}",
   "account.block_domain": "Skrij vse iz {domain}",
   "account.blocked": "Blokirano",
@@ -51,6 +52,7 @@
   "bundle_modal_error.message": "Med nalaganjem te komponente je prišlo do napake.",
   "bundle_modal_error.retry": "Poskusi ponovno",
   "column.blocks": "Blokirani uporabniki",
+  "column.bookmarks": "Bookmarks",
   "column.community": "Lokalna časovnica",
   "column.direct": "Neposredna sporočila",
   "column.directory": "Browse profiles",
@@ -82,6 +84,8 @@
   "compose_form.poll.duration": "Trajanje ankete",
   "compose_form.poll.option_placeholder": "Izbira {number}",
   "compose_form.poll.remove_option": "Odstrani to izbiro",
+  "compose_form.poll.switch_to_multiple": "Change poll to allow multiple choices",
+  "compose_form.poll.switch_to_single": "Change poll to allow for a single choice",
   "compose_form.publish": "Tutni",
   "compose_form.publish_loud": "{publish}!",
   "compose_form.sensitive.hide": "Označi medij kot občutljiv",
@@ -138,6 +142,7 @@
   "empty_column.account_timeline": "Tukaj ni tutov!",
   "empty_column.account_unavailable": "Profil ni na voljo",
   "empty_column.blocks": "Niste še blokirali nobenega uporabnika.",
+  "empty_column.bookmarked_statuses": "You don't have any bookmarked toots yet. When you bookmark one, it will show up here.",
   "empty_column.community": "Lokalna časovnica je prazna. Napišite nekaj javnega, da se bo žoga zakotalila!",
   "empty_column.direct": "Nimate še nobenih neposrednih sporočil. Ko ga boste poslali ali prejeli, se bo prikazal tukaj.",
   "empty_column.domain_blocks": "Å e vedno ni skritih domen.",
@@ -224,6 +229,7 @@
   "keyboard_shortcuts.muted": "odpri seznam utišanih uporabnikov",
   "keyboard_shortcuts.my_profile": "odpri svoj profil",
   "keyboard_shortcuts.notifications": "odpri stolpec z obvestili",
+  "keyboard_shortcuts.open_media": "to open media",
   "keyboard_shortcuts.pinned": "odpri seznam pripetih tutov",
   "keyboard_shortcuts.profile": "odpri avtorjev profil",
   "keyboard_shortcuts.reply": "odgovori",
@@ -256,6 +262,7 @@
   "mute_modal.hide_notifications": "Skrij obvestila tega uporabnika?",
   "navigation_bar.apps": "Mobilne aplikacije",
   "navigation_bar.blocks": "Blokirani uporabniki",
+  "navigation_bar.bookmarks": "Bookmarks",
   "navigation_bar.community_timeline": "Lokalna časovnica",
   "navigation_bar.compose": "Sestavi nov tut",
   "navigation_bar.direct": "Neposredna sporočila",
@@ -278,7 +285,9 @@
   "navigation_bar.security": "Varnost",
   "notification.favourite": "{name} je vzljubil/a vaš status",
   "notification.follow": "{name} vam sledi",
+  "notification.follow_request": "{name} has requested to follow you",
   "notification.mention": "{name} vas je omenil/a",
+  "notification.own_poll": "Your poll has ended",
   "notification.poll": "Glasovanje, v katerem ste sodelovali, se je končalo",
   "notification.reblog": "{name} je spodbudil/a vaš status",
   "notifications.clear": "Počisti obvestila",
@@ -289,6 +298,7 @@
   "notifications.column_settings.filter_bar.category": "Vrstica za hitro filtriranje",
   "notifications.column_settings.filter_bar.show": "Pokaži",
   "notifications.column_settings.follow": "Novi sledilci:",
+  "notifications.column_settings.follow_request": "New follow requests:",
   "notifications.column_settings.mention": "Omembe:",
   "notifications.column_settings.poll": "Rezultati glasovanja:",
   "notifications.column_settings.push": "Potisna obvestila",
@@ -349,6 +359,7 @@
   "status.admin_account": "Odpri vmesnik za moderiranje za @{name}",
   "status.admin_status": "Odpri status v vmesniku za moderiranje",
   "status.block": "Blokiraj @{name}",
+  "status.bookmark": "Bookmark",
   "status.cancel_reblog_private": "Prekini spodbudo",
   "status.cannot_reblog": "Te objave ni mogoče spodbuditi",
   "status.copy": "Kopiraj povezavo do statusa",
@@ -371,9 +382,10 @@
   "status.read_more": "Preberi več",
   "status.reblog": "Spodbudi",
   "status.reblog_private": "Spodbudi izvirnemu občinstvu",
-  "status.reblogged_by": "{name} spodbujen",
+  "status.reblogged_by": "{name} spodbuja",
   "status.reblogs.empty": "Nihče še ni spodbudil tega tuta. Ko se bo to zgodilo, se bodo pojavili tukaj.",
   "status.redraft": "Izbriši in preoblikuj",
+  "status.remove_bookmark": "Remove bookmark",
   "status.reply": "Odgovori",
   "status.replyAll": "Odgovori na objavo",
   "status.report": "Prijavi @{name}",
@@ -406,9 +418,11 @@
   "upload_button.label": "Dodaj medije ({formats})",
   "upload_error.limit": "Omejitev prenosa datoteke je presežena.",
   "upload_error.poll": "Prenos datoteke z anketami ni dovoljen.",
+  "upload_form.audio_description": "Describe for people with hearing loss",
   "upload_form.description": "Opišite za slabovidne",
   "upload_form.edit": "Edit",
   "upload_form.undo": "Izbriši",
+  "upload_form.video_description": "Describe for people with hearing loss or visual impairment",
   "upload_modal.analyzing_picture": "Analyzing picture…",
   "upload_modal.apply": "Apply",
   "upload_modal.description_placeholder": "A quick brown fox jumps over the lazy dog",
@@ -418,6 +432,7 @@
   "upload_modal.preview_label": "Preview ({ratio})",
   "upload_progress.label": "Pošiljanje...",
   "video.close": "Zapri video",
+  "video.download": "Download file",
   "video.exit_fullscreen": "Izhod iz celozaslonskega načina",
   "video.expand": "Razširi video",
   "video.fullscreen": "Celozaslonski način",
diff --git a/app/javascript/mastodon/locales/sq.json b/app/javascript/mastodon/locales/sq.json
index 1f6de613d636ed674a3b018ef3544e4f88e291f2..e54936bb62a35a53ff6fdb4b91446486ee572076 100644
--- a/app/javascript/mastodon/locales/sq.json
+++ b/app/javascript/mastodon/locales/sq.json
@@ -1,6 +1,7 @@
 {
   "account.add_or_remove_from_list": "Shtoni ose Hiqni prej listash",
   "account.badges.bot": "Robot",
+  "account.badges.group": "Group",
   "account.block": "Blloko @{name}",
   "account.block_domain": "Fshih gjithçka prej {domain}",
   "account.blocked": "E bllokuar",
@@ -51,6 +52,7 @@
   "bundle_modal_error.message": "Diç shkoi ters teksa ngarkohej ky përbërës.",
   "bundle_modal_error.retry": "Riprovoni",
   "column.blocks": "Përdorues të bllokuar",
+  "column.bookmarks": "Bookmarks",
   "column.community": "Rrjedhë kohore vendore",
   "column.direct": "Mesazhe të drejtpërdrejta",
   "column.directory": "Browse profiles",
@@ -82,6 +84,8 @@
   "compose_form.poll.duration": "Poll duration",
   "compose_form.poll.option_placeholder": "Choice {number}",
   "compose_form.poll.remove_option": "Remove this choice",
+  "compose_form.poll.switch_to_multiple": "Change poll to allow multiple choices",
+  "compose_form.poll.switch_to_single": "Change poll to allow for a single choice",
   "compose_form.publish": "Mesazh",
   "compose_form.publish_loud": "{publish}!",
   "compose_form.sensitive.hide": "Mark media as sensitive",
@@ -138,6 +142,7 @@
   "empty_column.account_timeline": "S’ka mesazhe këtu!",
   "empty_column.account_unavailable": "Profile unavailable",
   "empty_column.blocks": "S’keni bllokuar ende ndonjë përdorues.",
+  "empty_column.bookmarked_statuses": "You don't have any bookmarked toots yet. When you bookmark one, it will show up here.",
   "empty_column.community": "Rrjedha kohore vendore është e zbrazët. Shkruani diçka publikisht që t’i hyhet valles!",
   "empty_column.direct": "S’keni ende ndonjë mesazh të drejtpërdrejt. Kur dërgoni ose merrni një të tillë, ai do të shfaqet këtu.",
   "empty_column.domain_blocks": "Ende s’ka përkatësi të fshehura.",
@@ -224,6 +229,7 @@
   "keyboard_shortcuts.muted": "për hapje liste përdoruesish të heshtuar",
   "keyboard_shortcuts.my_profile": "për hapjen e profilit tuaj",
   "keyboard_shortcuts.notifications": "për hapje shtylle njoftimesh",
+  "keyboard_shortcuts.open_media": "to open media",
   "keyboard_shortcuts.pinned": "për hapje liste mesazhesh të fiksuar",
   "keyboard_shortcuts.profile": "për hapje të profilit të autorit",
   "keyboard_shortcuts.reply": "për t’u përgjigjur",
@@ -256,6 +262,7 @@
   "mute_modal.hide_notifications": "Të fshihen njoftimet prej këtij përdoruesi?",
   "navigation_bar.apps": "Aplikacione për celular",
   "navigation_bar.blocks": "Përdorues të bllokuar",
+  "navigation_bar.bookmarks": "Bookmarks",
   "navigation_bar.community_timeline": "Rrjedhë kohore vendore",
   "navigation_bar.compose": "Hartoni mesazh të ri",
   "navigation_bar.direct": "Mesazhe të drejtpërdrejta",
@@ -278,7 +285,9 @@
   "navigation_bar.security": "Siguri",
   "notification.favourite": "{name} parapëlqeu gjendjen tuaj",
   "notification.follow": "{name} zuri t’ju ndjekë",
+  "notification.follow_request": "{name} has requested to follow you",
   "notification.mention": "{name} ju ka përmendur",
+  "notification.own_poll": "Your poll has ended",
   "notification.poll": "A poll you have voted in has ended",
   "notification.reblog": "{name} përforcoi gjendjen tuaj",
   "notifications.clear": "Pastroji njoftimet",
@@ -289,6 +298,7 @@
   "notifications.column_settings.filter_bar.category": "Shtyllë filtrimesh të shpejta",
   "notifications.column_settings.filter_bar.show": "Shfaq",
   "notifications.column_settings.follow": "Ndjekës të rinj:",
+  "notifications.column_settings.follow_request": "New follow requests:",
   "notifications.column_settings.mention": "Përmendje:",
   "notifications.column_settings.poll": "Poll results:",
   "notifications.column_settings.push": "Njoftime Push",
@@ -349,6 +359,7 @@
   "status.admin_account": "Hap ndërfaqe moderimi për @{name}",
   "status.admin_status": "Hape këtë gjendje te ndërfaqja e moderimit",
   "status.block": "Blloko @{name}",
+  "status.bookmark": "Bookmark",
   "status.cancel_reblog_private": "Shpërforcojeni",
   "status.cannot_reblog": "Ky postim s’mund të përforcohet",
   "status.copy": "Kopjoje lidhjen te gjendje",
@@ -374,6 +385,7 @@
   "status.reblogged_by": "{name} përforcoi",
   "status.reblogs.empty": "Këtë mesazh s’e ka përforcuar njeri deri tani. Kur ta bëjë dikush, kjo do të duket këtu.",
   "status.redraft": "Fshijeni & rihartojeni",
+  "status.remove_bookmark": "Remove bookmark",
   "status.reply": "Përgjigjuni",
   "status.replyAll": "Përgjigjuni rrjedhës",
   "status.report": "Raportojeni @{name}",
@@ -406,9 +418,11 @@
   "upload_button.label": "Shtoni media (JPEG, PNG, GIF, WebM, MP4, MOV)",
   "upload_error.limit": "U tejkalua kufi ngarkimi kartelash.",
   "upload_error.poll": "File upload not allowed with polls.",
+  "upload_form.audio_description": "Describe for people with hearing loss",
   "upload_form.description": "Përshkruajeni për persona me probleme shikimi",
   "upload_form.edit": "Edit",
   "upload_form.undo": "Fshije",
+  "upload_form.video_description": "Describe for people with hearing loss or visual impairment",
   "upload_modal.analyzing_picture": "Analyzing picture…",
   "upload_modal.apply": "Apply",
   "upload_modal.description_placeholder": "A quick brown fox jumps over the lazy dog",
@@ -418,6 +432,7 @@
   "upload_modal.preview_label": "Preview ({ratio})",
   "upload_progress.label": "Po ngarkohet…",
   "video.close": "Mbylle videon",
+  "video.download": "Download file",
   "video.exit_fullscreen": "Dil nga mënyra Sa Krejt Ekrani",
   "video.expand": "Zgjeroje videon",
   "video.fullscreen": "Sa krejt ekrani",
diff --git a/app/javascript/mastodon/locales/sr-Latn.json b/app/javascript/mastodon/locales/sr-Latn.json
index e396087dff74b93a47bf97e6fb7b8fe8618d19ab..4f0710ee7e2afdbdc7363944b8ba7951882e8d1d 100644
--- a/app/javascript/mastodon/locales/sr-Latn.json
+++ b/app/javascript/mastodon/locales/sr-Latn.json
@@ -1,6 +1,7 @@
 {
   "account.add_or_remove_from_list": "Add or Remove from lists",
   "account.badges.bot": "Bot",
+  "account.badges.group": "Group",
   "account.block": "Blokiraj korisnika @{name}",
   "account.block_domain": "Sakrij sve sa domena {domain}",
   "account.blocked": "Blocked",
@@ -51,6 +52,7 @@
   "bundle_modal_error.message": "Nešto nije bilo u redu pri učitavanju ove komponente.",
   "bundle_modal_error.retry": "Pokušajte ponovo",
   "column.blocks": "Blokirani korisnici",
+  "column.bookmarks": "Bookmarks",
   "column.community": "Lokalna lajna",
   "column.direct": "Direct messages",
   "column.directory": "Browse profiles",
@@ -82,6 +84,8 @@
   "compose_form.poll.duration": "Poll duration",
   "compose_form.poll.option_placeholder": "Choice {number}",
   "compose_form.poll.remove_option": "Remove this choice",
+  "compose_form.poll.switch_to_multiple": "Change poll to allow multiple choices",
+  "compose_form.poll.switch_to_single": "Change poll to allow for a single choice",
   "compose_form.publish": "Tutni",
   "compose_form.publish_loud": "{publish}!",
   "compose_form.sensitive.hide": "Mark media as sensitive",
@@ -138,6 +142,7 @@
   "empty_column.account_timeline": "No toots here!",
   "empty_column.account_unavailable": "Profile unavailable",
   "empty_column.blocks": "You haven't blocked any users yet.",
+  "empty_column.bookmarked_statuses": "You don't have any bookmarked toots yet. When you bookmark one, it will show up here.",
   "empty_column.community": "Lokalna lajna je prazna. Napišite nešto javno da lajna produva!",
   "empty_column.direct": "You don't have any direct messages yet. When you send or receive one, it will show up here.",
   "empty_column.domain_blocks": "There are no hidden domains yet.",
@@ -224,6 +229,7 @@
   "keyboard_shortcuts.muted": "to open muted users list",
   "keyboard_shortcuts.my_profile": "to open your profile",
   "keyboard_shortcuts.notifications": "to open notifications column",
+  "keyboard_shortcuts.open_media": "to open media",
   "keyboard_shortcuts.pinned": "to open pinned toots list",
   "keyboard_shortcuts.profile": "to open author's profile",
   "keyboard_shortcuts.reply": "da odgovorite",
@@ -256,6 +262,7 @@
   "mute_modal.hide_notifications": "Sakrij obaveštenja od ovog korisnika?",
   "navigation_bar.apps": "Mobile apps",
   "navigation_bar.blocks": "Blokirani korisnici",
+  "navigation_bar.bookmarks": "Bookmarks",
   "navigation_bar.community_timeline": "Lokalna lajna",
   "navigation_bar.compose": "Compose new toot",
   "navigation_bar.direct": "Direct messages",
@@ -278,7 +285,9 @@
   "navigation_bar.security": "Security",
   "notification.favourite": "{name} je stavio Vaš status kao omiljeni",
   "notification.follow": "{name} Vas je zapratio",
+  "notification.follow_request": "{name} has requested to follow you",
   "notification.mention": "{name} Vas je pomenuo",
+  "notification.own_poll": "Your poll has ended",
   "notification.poll": "A poll you have voted in has ended",
   "notification.reblog": "{name} je podržao(la) Vaš status",
   "notifications.clear": "Očisti obaveštenja",
@@ -289,6 +298,7 @@
   "notifications.column_settings.filter_bar.category": "Quick filter bar",
   "notifications.column_settings.filter_bar.show": "Show",
   "notifications.column_settings.follow": "Novi pratioci:",
+  "notifications.column_settings.follow_request": "New follow requests:",
   "notifications.column_settings.mention": "Pominjanja:",
   "notifications.column_settings.poll": "Poll results:",
   "notifications.column_settings.push": "Guraj obaveštenja",
@@ -349,6 +359,7 @@
   "status.admin_account": "Open moderation interface for @{name}",
   "status.admin_status": "Open this status in the moderation interface",
   "status.block": "Block @{name}",
+  "status.bookmark": "Bookmark",
   "status.cancel_reblog_private": "Unboost",
   "status.cannot_reblog": "Ovaj status ne može da se podrži",
   "status.copy": "Copy link to status",
@@ -374,6 +385,7 @@
   "status.reblogged_by": "{name} podržao(la)",
   "status.reblogs.empty": "No one has boosted this toot yet. When someone does, they will show up here.",
   "status.redraft": "Delete & re-draft",
+  "status.remove_bookmark": "Remove bookmark",
   "status.reply": "Odgovori",
   "status.replyAll": "Odgovori na diskusiju",
   "status.report": "Prijavi korisnika @{name}",
@@ -406,9 +418,11 @@
   "upload_button.label": "Dodaj multimediju",
   "upload_error.limit": "File upload limit exceeded.",
   "upload_error.poll": "File upload not allowed with polls.",
+  "upload_form.audio_description": "Describe for people with hearing loss",
   "upload_form.description": "Opiši za slabovide osobe",
   "upload_form.edit": "Edit",
   "upload_form.undo": "Opozovi",
+  "upload_form.video_description": "Describe for people with hearing loss or visual impairment",
   "upload_modal.analyzing_picture": "Analyzing picture…",
   "upload_modal.apply": "Apply",
   "upload_modal.description_placeholder": "A quick brown fox jumps over the lazy dog",
@@ -418,6 +432,7 @@
   "upload_modal.preview_label": "Preview ({ratio})",
   "upload_progress.label": "Otpremam...",
   "video.close": "Zatvori video",
+  "video.download": "Download file",
   "video.exit_fullscreen": "Napusti ceo ekran",
   "video.expand": "Proširi video",
   "video.fullscreen": "Ceo ekran",
diff --git a/app/javascript/mastodon/locales/sr.json b/app/javascript/mastodon/locales/sr.json
index 40d14599a41b15a2f0abec6c01626e480d08c851..de8665bb1dce679301aae52a6fa1e517a6658b8d 100644
--- a/app/javascript/mastodon/locales/sr.json
+++ b/app/javascript/mastodon/locales/sr.json
@@ -1,6 +1,7 @@
 {
   "account.add_or_remove_from_list": "Add or Remove from lists",
   "account.badges.bot": "Бот",
+  "account.badges.group": "Group",
   "account.block": "Блокирај @{name}",
   "account.block_domain": "Сакриј све са домена {domain}",
   "account.blocked": "Блокиран",
@@ -51,6 +52,7 @@
   "bundle_modal_error.message": "Нешто није било у реду при учитавању ове компоненте.",
   "bundle_modal_error.retry": "Покушајте поново",
   "column.blocks": "Блокирани корисници",
+  "column.bookmarks": "Bookmarks",
   "column.community": "Локална временска линија",
   "column.direct": "Директне поруке",
   "column.directory": "Browse profiles",
@@ -82,6 +84,8 @@
   "compose_form.poll.duration": "Poll duration",
   "compose_form.poll.option_placeholder": "Choice {number}",
   "compose_form.poll.remove_option": "Remove this choice",
+  "compose_form.poll.switch_to_multiple": "Change poll to allow multiple choices",
+  "compose_form.poll.switch_to_single": "Change poll to allow for a single choice",
   "compose_form.publish": "Труби",
   "compose_form.publish_loud": "{publish}!",
   "compose_form.sensitive.hide": "Mark media as sensitive",
@@ -138,6 +142,7 @@
   "empty_column.account_timeline": "No toots here!",
   "empty_column.account_unavailable": "Profile unavailable",
   "empty_column.blocks": "Још увек немате блокираних корисника.",
+  "empty_column.bookmarked_statuses": "You don't have any bookmarked toots yet. When you bookmark one, it will show up here.",
   "empty_column.community": "Локална временска линија је празна. Напишите нешто јавно да започнете!",
   "empty_column.direct": "Још увек немате директних порука. Када пошаљете или примите једну, појавиће се овде.",
   "empty_column.domain_blocks": "Још увек нема сакривених домена.",
@@ -224,6 +229,7 @@
   "keyboard_shortcuts.muted": "да отворите листу ућутканих корисника",
   "keyboard_shortcuts.my_profile": "да отворите ваш профил",
   "keyboard_shortcuts.notifications": "да отворите колону обавештења",
+  "keyboard_shortcuts.open_media": "to open media",
   "keyboard_shortcuts.pinned": "да отворите листу закачених труба",
   "keyboard_shortcuts.profile": "да отворите профил аутора",
   "keyboard_shortcuts.reply": "да одговорите",
@@ -256,6 +262,7 @@
   "mute_modal.hide_notifications": "Сакриј обавештења од овог корисника?",
   "navigation_bar.apps": "Мобилне апликације",
   "navigation_bar.blocks": "Блокирани корисници",
+  "navigation_bar.bookmarks": "Bookmarks",
   "navigation_bar.community_timeline": "Локална временска линија",
   "navigation_bar.compose": "Саставите нову трубу",
   "navigation_bar.direct": "Директне поруке",
@@ -278,7 +285,9 @@
   "navigation_bar.security": "Безбедност",
   "notification.favourite": "{name} је ставио/ла Ваш статус као омиљени",
   "notification.follow": "{name} Вас је запратио/ла",
+  "notification.follow_request": "{name} has requested to follow you",
   "notification.mention": "{name} Вас је поменуо/ла",
+  "notification.own_poll": "Your poll has ended",
   "notification.poll": "A poll you have voted in has ended",
   "notification.reblog": "{name} је подржао/ла Ваш статус",
   "notifications.clear": "Очисти обавештења",
@@ -289,6 +298,7 @@
   "notifications.column_settings.filter_bar.category": "Quick filter bar",
   "notifications.column_settings.filter_bar.show": "Show",
   "notifications.column_settings.follow": "Нови пратиоци:",
+  "notifications.column_settings.follow_request": "New follow requests:",
   "notifications.column_settings.mention": "Помињања:",
   "notifications.column_settings.poll": "Poll results:",
   "notifications.column_settings.push": "Гурај обавештења",
@@ -349,6 +359,7 @@
   "status.admin_account": "Open moderation interface for @{name}",
   "status.admin_status": "Open this status in the moderation interface",
   "status.block": "Блокирај @{name}",
+  "status.bookmark": "Bookmark",
   "status.cancel_reblog_private": "Уклони подршку",
   "status.cannot_reblog": "Овај статус не може да се подржи",
   "status.copy": "Copy link to status",
@@ -374,6 +385,7 @@
   "status.reblogged_by": "{name} подржао/ла",
   "status.reblogs.empty": "Још увек нико није подржао ову трубу. Када буде подржана, појавиће се овде.",
   "status.redraft": "Избриши и преправи",
+  "status.remove_bookmark": "Remove bookmark",
   "status.reply": "Одговори",
   "status.replyAll": "Одговори на дискусију",
   "status.report": "Пријави корисника @{name}",
@@ -406,9 +418,11 @@
   "upload_button.label": "Додај мултимедију (JPEG, PNG, GIF, WebM, MP4, MOV)",
   "upload_error.limit": "File upload limit exceeded.",
   "upload_error.poll": "File upload not allowed with polls.",
+  "upload_form.audio_description": "Describe for people with hearing loss",
   "upload_form.description": "Опишите за особе са оштећеним видом",
   "upload_form.edit": "Edit",
   "upload_form.undo": "Обриши",
+  "upload_form.video_description": "Describe for people with hearing loss or visual impairment",
   "upload_modal.analyzing_picture": "Analyzing picture…",
   "upload_modal.apply": "Apply",
   "upload_modal.description_placeholder": "A quick brown fox jumps over the lazy dog",
@@ -418,6 +432,7 @@
   "upload_modal.preview_label": "Preview ({ratio})",
   "upload_progress.label": "Отпремам...",
   "video.close": "Затвори видео",
+  "video.download": "Download file",
   "video.exit_fullscreen": "Напусти цео екран",
   "video.expand": "Прошири видео",
   "video.fullscreen": "Цео екран",
diff --git a/app/javascript/mastodon/locales/sv.json b/app/javascript/mastodon/locales/sv.json
index 2bbb534c889df84c730304f1768a08d066b78caf..6b532fd0c95bf242eac9beaba9e0013cd2629aaa 100644
--- a/app/javascript/mastodon/locales/sv.json
+++ b/app/javascript/mastodon/locales/sv.json
@@ -1,24 +1,25 @@
 {
-  "account.add_or_remove_from_list": "Lägg till eller ta bort från listor",
+  "account.add_or_remove_from_list": "Lägg till i eller ta bort från listor",
   "account.badges.bot": "Robot",
+  "account.badges.group": "Group",
   "account.block": "Blockera @{name}",
   "account.block_domain": "Dölj allt från {domain}",
   "account.blocked": "Blockerad",
-  "account.cancel_follow_request": "Avbryt förfrågan att följa",
+  "account.cancel_follow_request": "Avbryt följarförfrågan",
   "account.direct": "Skicka ett direktmeddelande till @{name}",
   "account.domain_blocked": "Domän dold",
   "account.edit_profile": "Redigera profil",
-  "account.endorse": "Visa upp på profil",
+  "account.endorse": "Visa på profil",
   "account.follow": "Följ",
   "account.followers": "Följare",
-  "account.followers.empty": "Ingen följer denna användaren än.",
+  "account.followers.empty": "Ingen följer denna användare än.",
   "account.follows": "Följer",
-  "account.follows.empty": "Den här användaren följer inte någon ännu.",
+  "account.follows.empty": "Denna användare följer inte någon än.",
   "account.follows_you": "Följer dig",
   "account.hide_reblogs": "Dölj knuffar från @{name}",
   "account.last_status": "Senast aktiv",
-  "account.link_verified_on": "Ägarskapet för det här kontot kontrollerades den {date}",
-  "account.locked_info": "Detta konto har en låst integritetsstatus. Ägaren väljer manuellt vem som kan följa.",
+  "account.link_verified_on": "Ägarskap för detta konto kontrollerades den {date}",
+  "account.locked_info": "Detta konto har låst integritetsstatus. Ägaren väljer manuellt vem som kan följa.",
   "account.media": "Media",
   "account.mention": "Nämna @{name}",
   "account.moved_to": "{name} har flyttat till:",
@@ -26,100 +27,103 @@
   "account.mute_notifications": "Stäng av notifieringar från @{name}",
   "account.muted": "Tystad",
   "account.never_active": "Aldrig",
-  "account.posts": "Inlägg",
-  "account.posts_with_replies": "Toots och svar",
+  "account.posts": "Tutningar",
+  "account.posts_with_replies": "Tutningar och svar",
   "account.report": "Rapportera @{name}",
-  "account.requested": "Inväntar godkännande. Klicka för att avbryta följförfrågan",
+  "account.requested": "Inväntar godkännande. Klicka för att avbryta följarförfrågan",
   "account.share": "Dela @{name}s profil",
   "account.show_reblogs": "Visa knuffar från @{name}",
   "account.unblock": "Avblockera @{name}",
   "account.unblock_domain": "Sluta dölja {domain}",
-  "account.unendorse": "Visa inte upp på profil",
-  "account.unfollow": "Sluta följa",
+  "account.unendorse": "Visa inte på profil",
+  "account.unfollow": "Sluta följ",
   "account.unmute": "Sluta tysta @{name}",
-  "account.unmute_notifications": "Återaktivera notifikationer från @{name}",
+  "account.unmute_notifications": "Återaktivera aviseringar från @{name}",
   "alert.rate_limited.message": "Vänligen försök igen efter {retry_time, time, medium}.",
-  "alert.rate_limited.title": "Begränsad mängd",
+  "alert.rate_limited.title": "Mängd begränsad",
   "alert.unexpected.message": "Ett oväntat fel uppstod.",
   "alert.unexpected.title": "Hoppsan!",
   "autosuggest_hashtag.per_week": "{count} per vecka",
-  "boost_modal.combo": "Du kan trycka {combo} för att slippa denna nästa gång",
-  "bundle_column_error.body": "Något gick fel när du laddade denna komponent.",
+  "boost_modal.combo": "Du kan trycka {combo} för att slippa detta nästa gång",
+  "bundle_column_error.body": "NÃ¥got gick fel medan denna komponent laddades.",
   "bundle_column_error.retry": "Försök igen",
   "bundle_column_error.title": "Nätverksfel",
   "bundle_modal_error.close": "Stäng",
   "bundle_modal_error.message": "Något gick fel när denna komponent laddades.",
   "bundle_modal_error.retry": "Försök igen",
   "column.blocks": "Blockerade användare",
+  "column.bookmarks": "Bokmärken",
   "column.community": "Lokal tidslinje",
   "column.direct": "Direktmeddelanden",
   "column.directory": "Bläddra bland profiler",
   "column.domain_blocks": "Dolda domäner",
   "column.favourites": "Favoriter",
-  "column.follow_requests": "Följförfrågningar",
+  "column.follow_requests": "Följarförfrågningar",
   "column.home": "Hem",
   "column.lists": "Listor",
   "column.mutes": "Tystade användare",
-  "column.notifications": "Meddelanden",
+  "column.notifications": "Aviseringar",
   "column.pins": "NÃ¥lade toots",
   "column.public": "Förenad tidslinje",
   "column_back_button.label": "Tillbaka",
   "column_header.hide_settings": "Dölj inställningar",
-  "column_header.moveLeft_settings": "Flytta kolumnen till vänster",
-  "column_header.moveRight_settings": "Flytta kolumnen till höger",
+  "column_header.moveLeft_settings": "Flytta kolumnen åt vänster",
+  "column_header.moveRight_settings": "Flytta kolumnen åt höger",
   "column_header.pin": "Fäst",
   "column_header.show_settings": "Visa inställningar",
   "column_header.unpin": "Ångra fäst",
   "column_subheading.settings": "Inställningar",
-  "community.column_settings.media_only": "Enbart media",
-  "compose_form.direct_message_warning": "Denna toot kommer endast att skickas till nämnda användare.",
-  "compose_form.direct_message_warning_learn_more": "Visa mer",
-  "compose_form.hashtag_warning": "Denna toot kommer inte att listas under någon hashtag eftersom den är onoterad. Endast offentliga toots kan sökas med hashtag.",
-  "compose_form.lock_disclaimer": "Ditt konto är inte {locked}. Vem som helst kan följa dig och även se dina inlägg som bara är för följare.",
+  "community.column_settings.media_only": "Endast media",
+  "compose_form.direct_message_warning": "Denna tutning kommer endast skickas till de nämnda användarna.",
+  "compose_form.direct_message_warning_learn_more": "Lär dig mer",
+  "compose_form.hashtag_warning": "Denna toot kommer inte att visas under någon hashtag eftersom den är onoterad. Endast offentliga toots kan sökas med hashtag.",
+  "compose_form.lock_disclaimer": "Ditt konto är inte {locked}. Vem som helst kan följa dig för att se dina inlägg som endast är för följare.",
   "compose_form.lock_disclaimer.lock": "låst",
   "compose_form.placeholder": "Vad funderar du på?",
-  "compose_form.poll.add_option": "Nytt alternativ",
+  "compose_form.poll.add_option": "Lägg till ett val",
   "compose_form.poll.duration": "Varaktighet för omröstning",
-  "compose_form.poll.option_placeholder": "Alternativ {number}",
-  "compose_form.poll.remove_option": "Ta bort alternativ",
+  "compose_form.poll.option_placeholder": "Val {number}",
+  "compose_form.poll.remove_option": "Ta bort detta val",
+  "compose_form.poll.switch_to_multiple": "Change poll to allow multiple choices",
+  "compose_form.poll.switch_to_single": "Change poll to allow for a single choice",
   "compose_form.publish": "Tut",
   "compose_form.publish_loud": "{publish}!",
   "compose_form.sensitive.hide": "Markera media som känsligt",
   "compose_form.sensitive.marked": "Media har markerats som känsligt",
-  "compose_form.sensitive.unmarked": "Media har inte markerats som känsligt",
-  "compose_form.spoiler.marked": "Texten har dolts bakom en varning",
+  "compose_form.sensitive.unmarked": "Media är inte markerat som känsligt",
+  "compose_form.spoiler.marked": "Texten är dold bakom en varning",
   "compose_form.spoiler.unmarked": "Texten är inte dold",
   "compose_form.spoiler_placeholder": "Skriv din varning här",
   "confirmation_modal.cancel": "Ã…ngra",
   "confirmations.block.block_and_report": "Blockera & rapportera",
   "confirmations.block.confirm": "Blockera",
-  "confirmations.block.message": "Är du säker att du vill blockera {name}?",
+  "confirmations.block.message": "Är du säker på att du vill blockera {name}?",
   "confirmations.delete.confirm": "Ta bort",
-  "confirmations.delete.message": "Är du säker att du vill ta bort denna status?",
+  "confirmations.delete.message": "Är du säker på att du vill ta bort denna status?",
   "confirmations.delete_list.confirm": "Ta bort",
   "confirmations.delete_list.message": "Är du säker på att du vill radera denna lista permanent?",
   "confirmations.domain_block.confirm": "Dölj hela domänen",
-  "confirmations.domain_block.message": "Är du verkligen säker på att du vill blockera hela {domain}? I de flesta fall är några riktade blockeringar eller nedtystade konton tillräckligt och att föredra. Du kommer sluta se innehåll från {domain}-domänen i den allmänna tidslinjen och i dina egna notifieringar. Du kommer även sluta följa alla eventuella följare du har från {domain}.",
+  "confirmations.domain_block.message": "Är du verkligen, verkligen säker på att du vill blockera hela {domain}? I de flesta fall är några riktade blockeringar eller nedtystade konton tillräckligt och att föredra. Du kommer inte se innehåll från den domänen i den allmänna tidslinjen eller i dina aviseringar. Dina följare från den domänen komer att tas bort.",
   "confirmations.logout.confirm": "Logga ut",
   "confirmations.logout.message": "Är du säker på att du vill logga ut?",
   "confirmations.mute.confirm": "Tysta",
-  "confirmations.mute.explanation": "Detta kommer dölja postningar från dem och postningar som nämner dem, men fortfarande tillåta dem att se dina postningar och följa dig.",
-  "confirmations.mute.message": "Är du säker du vill tysta ner {name}?",
-  "confirmations.redraft.confirm": "Radera och gör om",
-  "confirmations.redraft.message": "Är du säker på att du vill radera meddelandet och göra om det? Du kommer förlora alla svar, knuffar och favoriter som hänvisar till meddelandet.",
+  "confirmations.mute.explanation": "Detta kommer att dölja poster från dem och poster som nämner dem, men fortfarande tillåta dem att se dina poster och följa dig.",
+  "confirmations.mute.message": "Är du säker på att du vill tysta {name}?",
+  "confirmations.redraft.confirm": "Radera & gör om",
+  "confirmations.redraft.message": "Är du säker på att du vill radera detta meddelande och göra om det? Du kommer förlora alla favoriter, knuffar och svar till det ursprungliga meddelandet.",
   "confirmations.reply.confirm": "Svara",
-  "confirmations.reply.message": "Om du svarar nu kommer det att ersätta meddelandet du håller på att skriva. Är du säker på att du vill fortsätta?",
-  "confirmations.unfollow.confirm": "Sluta följa",
-  "confirmations.unfollow.message": "Är du säker på att du vill sluta följa {name}?",
+  "confirmations.reply.message": "Om du svarar nu kommer det att ersätta meddelandet du håller på att skapa. Är du säker på att du vill fortsätta?",
+  "confirmations.unfollow.confirm": "Avfölj",
+  "confirmations.unfollow.message": "Är du säker på att du vill avfölja {name}?",
   "conversation.delete": "Radera konversation",
   "conversation.mark_as_read": "Markera som läst",
   "conversation.open": "Se konversation",
   "conversation.with": "Med {names}",
-  "directory.federated": "Från känt fediverse",
+  "directory.federated": "Från känt servernätverk",
   "directory.local": "Endast från {domain}",
   "directory.new_arrivals": "Nyanlända",
   "directory.recently_active": "Nyligen aktiva",
-  "embed.instructions": "Bädda in den här statusen på din webbplats genom att kopiera koden nedan.",
+  "embed.instructions": "Lägg in denna status på din webbplats genom att kopiera koden nedan.",
   "embed.preview": "Så här kommer det att se ut:",
   "emoji_button.activity": "Aktivitet",
   "emoji_button.custom": "Anpassad",
@@ -136,14 +140,15 @@
   "emoji_button.symbols": "Symboler",
   "emoji_button.travel": "Resor & platser",
   "empty_column.account_timeline": "Inga inlägg här!",
-  "empty_column.account_unavailable": "Profilen är inte tillgänglig",
-  "empty_column.blocks": "Du har ännu inte blockerat några användare.",
+  "empty_column.account_unavailable": "Profilen ej tillgänglig",
+  "empty_column.blocks": "Du har ännu ej blockerat några användare.",
+  "empty_column.bookmarked_statuses": "Du har inte bokmärkt några tutar än. När du gör ett bokmärke kommer det synas här.",
   "empty_column.community": "Den lokala tidslinjen är tom. Skriv något offentligt för att sätta bollen i rullning!",
-  "empty_column.direct": "Du har inga direktmeddelanden än. När du skickar eller tar emot ett kommer det att dyka upp här.",
+  "empty_column.direct": "Du har inga direktmeddelanden än. När du skickar eller tar emot ett kommer det att visas här.",
   "empty_column.domain_blocks": "Det finns ännu inga dolda domäner.",
-  "empty_column.favourited_statuses": "Du har inga favoritmarkerade toots än. När du favoritmarkerar en kommer den synas här.",
-  "empty_column.favourites": "Ingen har favoritmarkerat den här tooten än. När någon gör det kommer de synas här.",
-  "empty_column.follow_requests": "Du har inga följförfrågningar än. När du får en kommer den synas här.",
+  "empty_column.favourited_statuses": "Du har inga favoritmarkerade toots än. När du favoritmarkerar en kommer den visas här.",
+  "empty_column.favourites": "Ingen har favoritmarkerat den här tooten än. När någon gör det kommer den visas här.",
+  "empty_column.follow_requests": "Du har inga följarförfrågningar än. När du får en kommer den visas här.",
   "empty_column.hashtag": "Det finns inget i denna hashtag ännu.",
   "empty_column.home": "Din hemma-tidslinje är tom! Besök {public} eller använd sökning för att komma igång och träffa andra användare.",
   "empty_column.home.public_timeline": "den publika tidslinjen",
@@ -169,7 +174,7 @@
   "getting_started.heading": "Kom igång",
   "getting_started.invite": "Skicka inbjudningar",
   "getting_started.open_source_notice": "Mastodon är programvara med öppen källkod. Du kan bidra eller rapportera problem via GitHub på {github}.",
-  "getting_started.security": "Säkerhet",
+  "getting_started.security": "Kontoinställningar",
   "getting_started.terms": "Användarvillkor",
   "hashtag.column_header.tag_mode.all": "och {additional}",
   "hashtag.column_header.tag_mode.any": "eller {additional}",
@@ -184,8 +189,8 @@
   "home.column_settings.show_reblogs": "Visa knuffar",
   "home.column_settings.show_replies": "Visa svar",
   "intervals.full.days": "{number, plural, one {# dag} other {# dagar}}",
-  "intervals.full.hours": "{hours, plural, one {# timme} other {# timmar}}",
-  "intervals.full.minutes": "{minutes, plural, one {1 minut} other {# minuter}}",
+  "intervals.full.hours": "{number, plural, one {# timme} other {# timmar}}",
+  "intervals.full.minutes": "{number, plural, one {# minut} other {# minuter}}",
   "introduction.federation.action": "Nästa",
   "introduction.federation.federated.headline": "Federerad",
   "introduction.federation.federated.text": "Publika inlägg från andra servrar i servernätverket visas i den förenade tidslinjen.",
@@ -224,6 +229,7 @@
   "keyboard_shortcuts.muted": "för att öppna listan över tystade användare",
   "keyboard_shortcuts.my_profile": "för att öppna din profil",
   "keyboard_shortcuts.notifications": "för att öppna Meddelanden",
+  "keyboard_shortcuts.open_media": "to open media",
   "keyboard_shortcuts.pinned": "för att öppna Nålade toots",
   "keyboard_shortcuts.profile": "för att öppna skaparens profil",
   "keyboard_shortcuts.reply": "för att svara",
@@ -253,9 +259,10 @@
   "media_gallery.toggle_visible": "Växla synlighet",
   "missing_indicator.label": "Hittades inte",
   "missing_indicator.sublabel": "Den här resursen kunde inte hittas",
-  "mute_modal.hide_notifications": "Dölj notifikationer från denna användare?",
+  "mute_modal.hide_notifications": "Dölj aviseringar från denna användare?",
   "navigation_bar.apps": "Mobilappar",
   "navigation_bar.blocks": "Blockerade användare",
+  "navigation_bar.bookmarks": "Bokmärken",
   "navigation_bar.community_timeline": "Lokal tidslinje",
   "navigation_bar.compose": "Författa ny toot",
   "navigation_bar.direct": "Direktmeddelanden",
@@ -278,20 +285,23 @@
   "navigation_bar.security": "Säkerhet",
   "notification.favourite": "{name} favoriserade din status",
   "notification.follow": "{name} följer dig",
+  "notification.follow_request": "{name} har begärt att följa dig",
   "notification.mention": "{name} nämnde dig",
+  "notification.own_poll": "Din röstning har avslutats",
   "notification.poll": "En omröstning du röstat i har avslutats",
   "notification.reblog": "{name} knuffade din status",
-  "notifications.clear": "Rensa meddelanden",
-  "notifications.clear_confirmation": "Är du säker på att du vill radera alla dina meddelanden permanent?",
-  "notifications.column_settings.alert": "Skrivbordsmeddelanden",
+  "notifications.clear": "Rensa aviseringar",
+  "notifications.clear_confirmation": "Är du säker på att du vill rensa alla dina aviseringar permanent?",
+  "notifications.column_settings.alert": "Skrivbordsaviseringar",
   "notifications.column_settings.favourite": "Favoriter:",
   "notifications.column_settings.filter_bar.advanced": "Visa alla kategorier",
   "notifications.column_settings.filter_bar.category": "Snabbfilter",
   "notifications.column_settings.filter_bar.show": "Visa",
   "notifications.column_settings.follow": "Nya följare:",
+  "notifications.column_settings.follow_request": "Ny följ-förfrågan:",
   "notifications.column_settings.mention": "Omnämningar:",
   "notifications.column_settings.poll": "Omröstningsresultat:",
-  "notifications.column_settings.push": "Push meddelanden",
+  "notifications.column_settings.push": "Push-aviseringar",
   "notifications.column_settings.reblog": "Knuffar:",
   "notifications.column_settings.show": "Visa i kolumnen",
   "notifications.column_settings.sound": "Spela upp ljud",
@@ -349,6 +359,7 @@
   "status.admin_account": "Öppet modereringsgränssnitt för @{name}",
   "status.admin_status": "Öppna denna status i modereringsgränssnittet",
   "status.block": "Blockera @{name}",
+  "status.bookmark": "Bokmärk",
   "status.cancel_reblog_private": "Ta bort knuff",
   "status.cannot_reblog": "Detta inlägg kan inte knuffas",
   "status.copy": "Kopiera länk till status",
@@ -372,8 +383,9 @@
   "status.reblog": "Knuffa",
   "status.reblog_private": "Knuffa till de ursprungliga åhörarna",
   "status.reblogged_by": "{name} knuffade",
-  "status.reblogs.empty": "No one has boosted this toot yet. When someone does, they will show up here.",
+  "status.reblogs.empty": "Ingen har favoriserat den här tutningen än. När någon gör det kommer den att synas här.",
   "status.redraft": "Radera & gör om",
+  "status.remove_bookmark": "Ta bort bokmärke",
   "status.reply": "Svara",
   "status.replyAll": "Svara på tråden",
   "status.report": "Rapportera @{name}",
@@ -387,43 +399,46 @@
   "status.uncached_media_warning": "Ej tillgängligt",
   "status.unmute_conversation": "Öppna konversation",
   "status.unpin": "Ångra fäst i profil",
-  "suggestions.dismiss": "Dismiss suggestion",
-  "suggestions.header": "You might be interested in…",
+  "suggestions.dismiss": "Avfärda förslag",
+  "suggestions.header": "Du kanske är intresserad av…",
   "tabs_bar.federated_timeline": "Förenad",
   "tabs_bar.home": "Hem",
   "tabs_bar.local_timeline": "Lokal",
-  "tabs_bar.notifications": "Meddelanden",
+  "tabs_bar.notifications": "Aviseringar",
   "tabs_bar.search": "Sök",
   "time_remaining.days": "{number, plural, one {# dag} other {# dagar}} kvar",
   "time_remaining.hours": "{hours, plural, one {# timme} other {# timmar}} kvar",
   "time_remaining.minutes": "{minutes, plural, one {1 minut} other {# minuter}} kvar",
-  "time_remaining.moments": "Moments remaining",
+  "time_remaining.moments": "Återstående tillfällen",
   "time_remaining.seconds": "{hours, plural, one {# sekund} other {# sekunder}} kvar",
   "trends.count_by_accounts": "{count} {rawCount, plural, en {person} andra {people}} pratar",
-  "trends.trending_now": "Trending now",
+  "trends.trending_now": "Trendar nu",
   "ui.beforeunload": "Ditt utkast kommer att förloras om du lämnar Mastodon.",
   "upload_area.title": "Dra & släpp för att ladda upp",
   "upload_button.label": "Lägg till media",
-  "upload_error.limit": "File upload limit exceeded.",
-  "upload_error.poll": "File upload not allowed with polls.",
+  "upload_error.limit": "Filöverföringsgränsen överskriden.",
+  "upload_error.poll": "Filuppladdning tillåts inte med omröstningar.",
+  "upload_form.audio_description": "Describe for people with hearing loss",
   "upload_form.description": "Beskriv för synskadade",
   "upload_form.edit": "Redigera",
   "upload_form.undo": "Ta bort",
-  "upload_modal.analyzing_picture": "Analyzing picture…",
+  "upload_form.video_description": "Describe for people with hearing loss or visual impairment",
+  "upload_modal.analyzing_picture": "Analyserar bild…",
   "upload_modal.apply": "Verkställ",
-  "upload_modal.description_placeholder": "A quick brown fox jumps over the lazy dog",
-  "upload_modal.detect_text": "Detect text from picture",
-  "upload_modal.edit_media": "Edit media",
-  "upload_modal.hint": "Click or drag the circle on the preview to choose the focal point which will always be in view on all thumbnails.",
-  "upload_modal.preview_label": "Preview ({ratio})",
+  "upload_modal.description_placeholder": "En snabb brun räv hoppar över den lata hunden",
+  "upload_modal.detect_text": "Upptäck bildens text",
+  "upload_modal.edit_media": "Redigera meida",
+  "upload_modal.hint": "Klicka eller dra cirkeln på förhandstitten för att välja den fokusering som alltid kommer synas på alla miniatyrer.",
+  "upload_modal.preview_label": "Förhandstitt ({ratio})",
   "upload_progress.label": "Laddar upp...",
   "video.close": "Stäng video",
+  "video.download": "Ladda ner fil",
   "video.exit_fullscreen": "Stäng helskärm",
   "video.expand": "Expandera video",
   "video.fullscreen": "Helskärm",
   "video.hide": "Dölj video",
   "video.mute": "Stäng av ljud",
-  "video.pause": "Pause",
+  "video.pause": "Pausa",
   "video.play": "Spela upp",
   "video.unmute": "Spela upp ljud"
 }
diff --git a/app/javascript/mastodon/locales/ta.json b/app/javascript/mastodon/locales/ta.json
index 957cf024c53fe3aa588ac186e88df6a5f01b9913..9a8e41999f53142d96616be13c45f12e5ed83b36 100644
--- a/app/javascript/mastodon/locales/ta.json
+++ b/app/javascript/mastodon/locales/ta.json
@@ -1,69 +1,71 @@
 {
-  "account.add_or_remove_from_list": "பட்டியல்களில் இருந்து சேர் அல்லது நீக்குக",
+  "account.add_or_remove_from_list": "பட்டியல்களில் சேர்/நீக்கு",
   "account.badges.bot": "பாட்",
-  "account.block": "Block @{name}",
-  "account.block_domain": "எல்லாவற்றையும் மறைக்க {domain}",
-  "account.blocked": "தடைமுட்டுகள்",
-  "account.cancel_follow_request": "Cancel follow request",
+  "account.badges.group": "Group",
+  "account.block": "@{name} -ஐத் தடு",
+  "account.block_domain": "{domain} யில் இருந்து வரும் எல்லாவற்றையும் மறை",
+  "account.blocked": "முடக்கப்பட்டது",
+  "account.cancel_follow_request": "பின்தொடரும் கோரிக்கையை நிராகரி",
   "account.direct": "நேரடி செய்தி @{name}",
-  "account.domain_blocked": "டொமைன் மறைக்கப்பட்டது",
-  "account.edit_profile": "சுயவிவரத்தைத் திருத்தவும்",
-  "account.endorse": "சுயவிவரத்தில் அம்சம்",
-  "account.follow": "பின்பற்று",
-  "account.followers": "பின்பற்றுபவர்கள்",
+  "account.domain_blocked": "மறைக்கப்பட்டத் தளங்கள்",
+  "account.edit_profile": "சுயவிவரத்தை மாற்று",
+  "account.endorse": "சுயவிவரத்தில் வெளிப்படுத்து",
+  "account.follow": "பின்தொடர்",
+  "account.followers": "பின்தொடர்பவர்கள்",
   "account.followers.empty": "இதுவரை யாரும் இந்த பயனரைப் பின்தொடரவில்லை.",
-  "account.follows": "பின்பற்று",
+  "account.follows": "பின்தொடர்",
   "account.follows.empty": "இந்த பயனர் இதுவரை யாரையும் பின்தொடரவில்லை.",
-  "account.follows_you": "நீ பின் தொடர்கிறாய்",
+  "account.follows_you": "உங்களைப் பின்தொடர்கிறார்",
   "account.hide_reblogs": "இருந்து ஊக்கியாக மறை @{name}",
-  "account.last_status": "Last active",
+  "account.last_status": "கடைசி செயல்பாடு",
   "account.link_verified_on": "இந்த இணைப்பை உரிமையாளர் சரிபார்க்கப்பட்டது {date}",
   "account.locked_info": "இந்தக் கணக்கு தனியுரிமை நிலை பூட்டப்பட்டுள்ளது. அவர்களைப் பின்தொடர்பவர் யார் என்பதை உரிமையாளர் கைமுறையாக மதிப்பாய்வு செய்கிறார்.",
-  "account.media": "Media",
+  "account.media": "ஊடகங்கள்",
   "account.mention": "குறிப்பிடு @{name}",
   "account.moved_to": "{name} நகர்த்தப்பட்டது:",
   "account.mute": "ஊமையான @{name}",
   "account.mute_notifications": "அறிவிப்புகளை முடக்கு @{name}",
   "account.muted": "முடக்கியது",
-  "account.never_active": "Never",
-  "account.posts": "Toots",
+  "account.never_active": "எப்போதுமில்லை",
+  "account.posts": "டூட்டுகள்",
   "account.posts_with_replies": "Toots மற்றும் பதில்கள்",
-  "account.report": "Report @{name}",
-  "account.requested": "ஒப்புதலுக்காக காத்திருக்கிறது. கோரிக்கையை ரத்துசெய்ய கிளிக் செய்க",
-  "account.share": "பங்கிடு @{name}'s மனித முகத்தின்",
+  "account.report": "@{name} -ஐப் புகாரளி",
+  "account.requested": "ஒப்புதலுக்காகக் காத்திருக்கிறது. பின்தொடரும் கோரிக்கையை நீக்க அழுத்தவும்",
+  "account.share": "@{name} உடைய விவரத்தை பகிர்",
   "account.show_reblogs": "காட்டு boosts இருந்து @{name}",
-  "account.unblock": "விடுவி @{name}",
-  "account.unblock_domain": "காண்பி {domain}",
-  "account.unendorse": "சுயவிவரத்தில் அம்சம் இல்லை",
-  "account.unfollow": "பின்தொடராட்",
-  "account.unmute": "தடுப்புநீக்கு @{name}",
-  "account.unmute_notifications": "அறிவிப்புகளை அகற்றவும் @{name}",
-  "alert.rate_limited.message": "Please retry after {retry_time, time, medium}.",
-  "alert.rate_limited.title": "Rate limited",
-  "alert.unexpected.message": "எதிர் பாராத பிழை ஏற்பட்டு விட்டது.",
+  "account.unblock": "@{name} மீது தடை நீக்குக",
+  "account.unblock_domain": "{domain} ஐ காண்பி",
+  "account.unendorse": "சுயவிவரத்தில் இடம்பெற வேண்டாம்",
+  "account.unfollow": "பின்தொடர்வதை நிறுத்துக",
+  "account.unmute": "@{name} இன் மீது மௌனத் தடையை நீக்குக",
+  "account.unmute_notifications": "@{name} இலிருந்து அறிவிப்புகளின் மீது மௌனத் தடையை நீக்குக",
+  "alert.rate_limited.message": "{retry_time, time, medium} க்கு பிறகு மீண்டும் முயற்சிக்கவும்.",
+  "alert.rate_limited.title": "விகிதம் வரையறுக்கப்பட்டுள்ளது",
+  "alert.unexpected.message": "எதிர்பாராத பிழை ஏற்பட்டுவிட்டது.",
   "alert.unexpected.title": "அச்சச்சோ!",
-  "autosuggest_hashtag.per_week": "{count} per week",
-  "boost_modal.combo": "நீங்கள் அழுத்தவும் {combo} அடுத்த முறை தவிர்க்கவும்",
-  "bundle_column_error.body": "இந்த கூறுகளை ஏற்றும்போது ஏதோ தவறு ஏற்பட்டது.",
-  "bundle_column_error.retry": "மீண்டும் முயற்சி செய்",
-  "bundle_column_error.title": "Network error",
-  "bundle_modal_error.close": "நெருக்கமாக",
-  "bundle_modal_error.message": "இந்த கூறுகளை ஏற்றும்போது ஏதோ தவறு ஏற்பட்டது.",
+  "autosuggest_hashtag.per_week": "ஒவ்வொரு வாரம் {count}",
+  "boost_modal.combo": "நீங்கள் இதை அடுத்தமுறை தவிர்க்க {combo} வை அழுத்தவும்",
+  "bundle_column_error.body": "இக்கூற்றை ஏற்றம் செய்யும்பொழுது ஏதோ தவறு ஏற்பட்டுள்ளது.",
+  "bundle_column_error.retry": "மீண்டும் முயல்க",
+  "bundle_column_error.title": "பிணையப் பிழை",
+  "bundle_modal_error.close": "மூடுக",
+  "bundle_modal_error.message": "இக்கூற்றை ஏற்றம் செய்யும்பொழுது ஏதோ தவறு ஏற்பட்டுள்ளது.",
   "bundle_modal_error.retry": "மீண்டும் முயற்சி செய்",
   "column.blocks": "தடுக்கப்பட்ட பயனர்கள்",
-  "column.community": "உள்ளூர் காலக்கெடு",
-  "column.direct": "நேரடி செய்திகள்",
-  "column.directory": "Browse profiles",
-  "column.domain_blocks": "மறைந்த களங்கள்",
-  "column.favourites": "விருப்பத்துக்குகந்த",
-  "column.follow_requests": "கோரிக்கைகளை பின்பற்றவும்",
-  "column.home": "Home",
-  "column.lists": "குதிரை வீர்ர்கள்",
-  "column.mutes": "முடக்கப்பட்ட பயனர்கள்",
-  "column.notifications": "Notifications",
+  "column.bookmarks": "Bookmarks",
+  "column.community": "சுய நிகழ்வு காலவரிசை",
+  "column.direct": "நேர் சேதிகள்",
+  "column.directory": "சுயவிவரங்களை உலாவு",
+  "column.domain_blocks": "மறைந்திருக்கும் திரளங்கள்",
+  "column.favourites": "பிடித்தவைகள்",
+  "column.follow_requests": "பின்தொடர அனுமதிகள்",
+  "column.home": "முகப்பு",
+  "column.lists": "பட்டியல்கள்",
+  "column.mutes": "மௌனத் தடை செய்யப்பட்ட பயனர்கள்",
+  "column.notifications": "அறிவிப்புகள்",
   "column.pins": "Pinned toot",
   "column.public": "கூட்டாட்சி காலக்கெடு",
-  "column_back_button.label": "ஆதரி",
+  "column_back_button.label": "முந்தைய பக்கம்",
   "column_header.hide_settings": "அமைப்புகளை மறை",
   "column_header.moveLeft_settings": "நெடுவரிசையை இடதுபுறமாக நகர்த்தவும்",
   "column_header.moveRight_settings": "நெடுவரிசை வலது புறமாக நகர்த்து",
@@ -71,7 +73,7 @@
   "column_header.show_settings": "அமைப்புகளைக் காட்டு",
   "column_header.unpin": "பொருத்தப்படாத",
   "column_subheading.settings": "அமைப்புகள்",
-  "community.column_settings.media_only": "மீடியா மட்டுமே",
+  "community.column_settings.media_only": "படங்கள் மட்டுமே",
   "compose_form.direct_message_warning": "This toot will only be sent to all the mentioned users.",
   "compose_form.direct_message_warning_learn_more": "மேலும் அறிக",
   "compose_form.hashtag_warning": "இந்த toot பட்டியலிடப்படாதது போல எந்த ஹேஸ்டேக்கின் கீழ் பட்டியலிடப்படாது. ஹேஸ்டேக் மூலம் பொது டோட்டல்கள் மட்டுமே தேட முடியும்.",
@@ -82,28 +84,30 @@
   "compose_form.poll.duration": "வாக்கெடுப்பு காலம்",
   "compose_form.poll.option_placeholder": "தேர்ந்தெடுப்ப {number}",
   "compose_form.poll.remove_option": "இந்த விருப்பத்தை அகற்றவும்",
-  "compose_form.publish": "Toot",
+  "compose_form.poll.switch_to_multiple": "Change poll to allow multiple choices",
+  "compose_form.poll.switch_to_single": "Change poll to allow for a single choice",
+  "compose_form.publish": "டூட் செய்க",
   "compose_form.publish_loud": "{publish}!",
-  "compose_form.sensitive.hide": "Mark media as sensitive",
+  "compose_form.sensitive.hide": "அனைவருக்கும் ஏற்ற ஊடகம் இல்லை எனக் குறியிடுக",
   "compose_form.sensitive.marked": "ஊடகம் உணர்திறன் என குறிக்கப்பட்டுள்ளது",
   "compose_form.sensitive.unmarked": "ஊடகம் உணர்திறன் என குறிக்கப்படவில்லை",
   "compose_form.spoiler.marked": "எச்சரிக்கை பின்னால் உரை மறைக்கப்பட்டுள்ளது",
   "compose_form.spoiler.unmarked": "உரை மறைக்கப்படவில்லை",
   "compose_form.spoiler_placeholder": "இங்கே உங்கள் எச்சரிக்கையை எழுதுங்கள்",
   "confirmation_modal.cancel": "எதிராணை",
-  "confirmations.block.block_and_report": "Block & Report",
-  "confirmations.block.confirm": "Block",
+  "confirmations.block.block_and_report": "தடுத்துப் புகாரளி",
+  "confirmations.block.confirm": "தடு",
   "confirmations.block.message": "நீங்கள் நிச்சயமாக தடைசெய்ய விரும்புகிறீர்களா {name}?",
-  "confirmations.delete.confirm": "Delete",
+  "confirmations.delete.confirm": "அழி",
   "confirmations.delete.message": "இந்த நிலையை நிச்சயமாக நீக்க விரும்புகிறீர்களா?",
-  "confirmations.delete_list.confirm": "Delete",
+  "confirmations.delete_list.confirm": "அழி",
   "confirmations.delete_list.message": "இந்த பட்டியலில் நிரந்தரமாக நீக்க விரும்புகிறீர்களா?",
   "confirmations.domain_block.confirm": "முழு டொமைனை மறை",
   "confirmations.domain_block.message": "நீங்கள் உண்மையில், நிச்சயமாக நீங்கள் முழு தடுக்க வேண்டும் நிச்சயமாக {domain}? பெரும்பாலான சந்தர்ப்பங்களில் ஒரு சில இலக்குகள் அல்லது மியூட்கள் போதுமானவை மற்றும் சிறந்தவை. எந்த பொது நேரத்திலும் அல்லது உங்கள் அறிவிப்புகளிலும் அந்தக் களத்திலிருந்து உள்ளடக்கத்தை நீங்கள் பார்க்க மாட்டீர்கள். அந்த களத்தில் இருந்து உங்கள் ஆதரவாளர்கள் அகற்றப்படுவார்கள்.",
-  "confirmations.logout.confirm": "Log out",
-  "confirmations.logout.message": "Are you sure you want to log out?",
+  "confirmations.logout.confirm": "வெளியேறு",
+  "confirmations.logout.message": "கண்டிப்பாக வெளியேறத்தான் வேண்டுமா?",
   "confirmations.mute.confirm": "ஊமையான",
-  "confirmations.mute.explanation": "This will hide posts from them and posts mentioning them, but it will still allow them to see your posts and follow you.",
+  "confirmations.mute.explanation": "இது அவர்களின் பதிவுகளையும், அவர்களைக் குறிப்பிடும் பதிவுகளையும் மறைத்துவிடும். ஆனால் அவர்கள் உங்கள் பதிவுகளைப் பார்க்கவும், உங்களைப் பின் தொடரவும் அனுமதிக்கப்படுவார்கள்.",
   "confirmations.mute.message": "நிச்சயமாக நீங்கள் முடக்க விரும்புகிறீர்களா {name}?",
   "confirmations.redraft.confirm": "நீக்கு & redraft",
   "confirmations.redraft.message": "நிச்சயமாக இந்த நிலையை நீக்கி, அதை மறுபடியும் உருவாக்க வேண்டுமா? பிடித்தவை மற்றும் ஊக்கங்கள் இழக்கப்படும், மற்றும் அசல் இடுகையில் பதில்கள் அனாதையான இருக்கும்.",
@@ -111,33 +115,34 @@
   "confirmations.reply.message": "இப்போது பதில், தற்போது நீங்கள் உருவாக்கும் செய்தி மேலெழுதப்படும். நீங்கள் தொடர விரும்புகிறீர்களா?",
   "confirmations.unfollow.confirm": "பின்தொடராட்",
   "confirmations.unfollow.message": "நிச்சயமாக நீங்கள் பின்தொடர விரும்புகிறீர்களா {name}?",
-  "conversation.delete": "Delete conversation",
-  "conversation.mark_as_read": "Mark as read",
-  "conversation.open": "View conversation",
-  "conversation.with": "With {names}",
-  "directory.federated": "From known fediverse",
-  "directory.local": "From {domain} only",
-  "directory.new_arrivals": "New arrivals",
-  "directory.recently_active": "Recently active",
+  "conversation.delete": "உரையாடலை அழிக்கவும்",
+  "conversation.mark_as_read": "படிக்கபட்டதாகக் குறி",
+  "conversation.open": "உரையாடலைக் காண்க",
+  "conversation.with": "{names} உடன்",
+  "directory.federated": "தெரிந்த ஃபெடிவெர்சிலிருந்து",
+  "directory.local": "{domain} இல் இருந்து மட்டும்",
+  "directory.new_arrivals": "புதிய வரவு",
+  "directory.recently_active": "தற்பொழுது இயாக்கதிலிருப்பவர்கள்",
   "embed.instructions": "கீழே உள்ள குறியீட்டை நகலெடுப்பதன் மூலம் உங்கள் இணையதளத்தில் இந்த நிலையை உட்பொதிக்கவும்.",
   "embed.preview": "இது போன்ற தோற்றத்தை இங்கு காணலாம்:",
   "emoji_button.activity": "நடவடிக்கை",
   "emoji_button.custom": "வழக்கம்",
   "emoji_button.flags": "கொடி",
   "emoji_button.food": "உணவு மற்றும் பானம்",
-  "emoji_button.label": "Insert emoji",
+  "emoji_button.label": "குறுப்படங்களை உள்ளிடு",
   "emoji_button.nature": "இயற்கை",
   "emoji_button.not_found": "எமோஜோஸ் இல்லை! (╯°□°)╯︵ ┻━┻",
   "emoji_button.objects": "மறுப்ப கூறு",
-  "emoji_button.people": "People",
+  "emoji_button.people": "மக்கள்",
   "emoji_button.recent": "அடிக்கடி பயன்படுத்தப்படும்",
   "emoji_button.search": "தேடல்...",
   "emoji_button.search_results": "தேடல் முடிவுகள்",
-  "emoji_button.symbols": "Symbols",
+  "emoji_button.symbols": "குறியீடுகள்",
   "emoji_button.travel": "சுற்றுலா மற்றும் இடங்கள்",
   "empty_column.account_timeline": "இல்லை toots இங்கே!",
   "empty_column.account_unavailable": "சுயவிவரம் கிடைக்கவில்லை",
   "empty_column.blocks": "இதுவரை எந்த பயனர்களும் தடுக்கவில்லை.",
+  "empty_column.bookmarked_statuses": "You don't have any bookmarked toots yet. When you bookmark one, it will show up here.",
   "empty_column.community": "உள்ளூர் காலக்கெடு காலியாக உள்ளது. பந்தை உருட்டிக்கொள்வதற்கு பகிரங்கமாக ஒன்றை எழுதுங்கள்!",
   "empty_column.direct": "உங்களிடம் நேரடியான செய்திகள் எதுவும் இல்லை. நீங்கள் ஒன்றை அனுப்பி அல்லது பெறும் போது, அது இங்கே காண்பிக்கும்.",
   "empty_column.domain_blocks": "இன்னும் மறைந்த களங்கள் இல்லை.",
@@ -152,10 +157,10 @@
   "empty_column.mutes": "நீங்கள் இதுவரை எந்த பயனர்களையும் முடக்கியிருக்கவில்லை.",
   "empty_column.notifications": "உங்களிடம் எந்த அறிவிப்புகளும் இல்லை. உரையாடலைத் தொடங்க பிறருடன் தொடர்புகொள்ளவும்.",
   "empty_column.public": "இங்கே எதுவும் இல்லை! பகிரங்கமாக ஒன்றை எழுதவும் அல்லது மற்ற நிகழ்வுகளிலிருந்து பயனர்களை அதை நிரப்புவதற்கு கைமுறையாக பின்பற்றவும்",
-  "error.unexpected_crash.explanation": "Due to a bug in our code or a browser compatibility issue, this page could not be displayed correctly.",
-  "error.unexpected_crash.next_steps": "Try refreshing the page. If that does not help, you may still be able to use Mastodon through a different browser or native app.",
-  "errors.unexpected_crash.copy_stacktrace": "Copy stacktrace to clipboard",
-  "errors.unexpected_crash.report_issue": "Report issue",
+  "error.unexpected_crash.explanation": "மென்பொருள் பழுதுனாலோ அல்லது உங்கள் இணை உலாவியின் பொருந்தாதன்மையினாலோ இந்தப் பக்கத்தை சரியாகக் காண்பிக்க முடியவில்லை.",
+  "error.unexpected_crash.next_steps": "பக்கத்தை புதுப்பித்துப் பார்க்கவும். வேலை செய்யவில்லையெனில், வேறு ஒரு உலாவியில் இருந்தோ அல்லது உங்கள் கருவிக்கு பொருத்தமான வேறு செயலியில் இருந்தோ மச்டோடனைப் பயன்படுத்தவும்.",
+  "errors.unexpected_crash.copy_stacktrace": "பழுசெய்தியை பிடிப்புப் பலகைக்கு நகல் எடு",
+  "errors.unexpected_crash.report_issue": "புகாரளி",
   "federation.change": "Adjust status federation",
   "federation.federated.long": "Allow toot to reach other instances",
   "federation.federated.short": "Federated",
@@ -165,7 +170,7 @@
   "follow_request.reject": "விலக்கு",
   "getting_started.developers": "உருவாக்குநர்கள்",
   "getting_started.directory": "சுயவிவர அடைவு",
-  "getting_started.documentation": "Documentation",
+  "getting_started.documentation": "ஆவணங்கள்",
   "getting_started.heading": "தொடங்குதல்",
   "getting_started.invite": "நபர்களை அழைக்கவும்",
   "getting_started.open_source_notice": "Mastodon திறந்த மூல மென்பொருள். GitHub இல் நீங்கள் பங்களிக்கவோ அல்லது புகார் அளிக்கவோ முடியும் {github}.",
@@ -187,11 +192,11 @@
   "intervals.full.hours": "{number, plural, one {# hour} மற்ற {# hours}}",
   "intervals.full.minutes": "{number, plural, one {# minute} மற்ற {# minutes}}",
   "introduction.federation.action": "அடுத்த",
-  "introduction.federation.federated.headline": "Federated",
+  "introduction.federation.federated.headline": "கூட்டமைந்த",
   "introduction.federation.federated.text": "கூட்டமைப்பின் பிற சேவையகங்களிலிருந்து பொது பதிவுகள் கூட்டப்பட்ட காலக்கெடுவில் தோன்றும்.",
-  "introduction.federation.home.headline": "Home",
+  "introduction.federation.home.headline": "முகப்பு",
   "introduction.federation.home.text": "நீங்கள் பின்பற்றும் நபர்களின் இடுகைகள் உங்கள் வீட்டு ஊட்டத்தில் தோன்றும். நீங்கள் எந்த சர்வரில் யாரையும் பின்பற்ற முடியும்!",
-  "introduction.federation.local.headline": "Local",
+  "introduction.federation.local.headline": "அருகாமை",
   "introduction.federation.local.text": "உள்ளூர் சேவையகத்தில் தோன்றும் அதே சர்வரில் உள்ளவர்களின் பொது இடுகைகள்.",
   "introduction.interactions.action": "பயிற்சி முடிக்க!",
   "introduction.interactions.favourite.headline": "விருப்பத்துக்குகந்த",
@@ -203,15 +208,15 @@
   "introduction.welcome.action": "போகலாம்!",
   "introduction.welcome.headline": "முதல் படிகள்",
   "introduction.welcome.text": "கூட்டாளிக்கு வருக! ஒரு சில நிமிடங்களில், பலவிதமான சேவையகங்களில் செய்திகளை உரையாட மற்றும் உங்கள் நண்பர்களிடம் பேச முடியும். ஆனால் இந்த சர்வர், {domain}, சிறப்பு - இது உங்கள் சுயவிவரத்தை வழங்குகிறது, எனவே அதன் பெயரை நினைவில் கொள்ளுங்கள்.",
-  "keyboard_shortcuts.back": "மீண்டும் செல்லவும்",
+  "keyboard_shortcuts.back": "பின் செல்வதற்கு",
   "keyboard_shortcuts.blocked": "தடுக்கப்பட்ட பயனர்களின் பட்டியலைத் திறக்க",
   "keyboard_shortcuts.boost": "அதிகரிக்கும்",
   "keyboard_shortcuts.column": "நெடுவரிசைகளில் ஒன்றில் நிலைக்கு கவனம் செலுத்த வேண்டும்",
   "keyboard_shortcuts.compose": "தொகு உரைப்பகுதியை கவனத்தில் கொள்ளவும்",
-  "keyboard_shortcuts.description": "Description",
+  "keyboard_shortcuts.description": "விவரம்",
   "keyboard_shortcuts.direct": "நேரடி செய்திகள் பத்தி திறக்க",
   "keyboard_shortcuts.down": "பட்டியலில் கீழே நகர்த்த",
-  "keyboard_shortcuts.enter": "to open status",
+  "keyboard_shortcuts.enter": "பதிவைத்திறக்க",
   "keyboard_shortcuts.favourite": "பிடித்தது",
   "keyboard_shortcuts.favourites": "பிடித்தவை பட்டியலை திறக்க",
   "keyboard_shortcuts.federated": "ஒருங்கிணைந்த நேரத்தை திறக்க",
@@ -224,6 +229,7 @@
   "keyboard_shortcuts.muted": "முடக்கப்பட்ட பயனர்களின் பட்டியலைத் திறக்க",
   "keyboard_shortcuts.my_profile": "உங்கள் சுயவிவரத்தை திறக்க",
   "keyboard_shortcuts.notifications": "அறிவிப்பு நெடுவரிசையைத் திறக்க",
+  "keyboard_shortcuts.open_media": "படத்தைத் திறக்க‌",
   "keyboard_shortcuts.pinned": "திறக்க பொருத்தப்பட்டன toots பட்டியல்",
   "keyboard_shortcuts.profile": "ஆசிரியரின் சுயவிவரத்தைத் திறக்க",
   "keyboard_shortcuts.reply": "பதிலளிக்க",
@@ -231,24 +237,24 @@
   "keyboard_shortcuts.search": "தேடல் கவனம் செலுத்த",
   "keyboard_shortcuts.start": "'தொடங்குவதற்கு' நெடுவரிசை திறக்க",
   "keyboard_shortcuts.toggle_hidden": "CW க்கு பின்னால் உரையை மறைக்க / மறைக்க",
-  "keyboard_shortcuts.toggle_sensitivity": "to show/hide media",
+  "keyboard_shortcuts.toggle_sensitivity": "படிமங்களைக் காட்ட/மறைக்க",
   "keyboard_shortcuts.toot": "தொடங்க ஒரு புதிய toot",
   "keyboard_shortcuts.unfocus": "உரை பகுதியை / தேடலை கவனம் செலுத்த வேண்டும்",
   "keyboard_shortcuts.up": "பட்டியலில் மேலே செல்ல",
   "lightbox.close": "நெருக்கமாக",
   "lightbox.next": "அடுத்த",
   "lightbox.previous": "சென்ற",
-  "lightbox.view_context": "View context",
+  "lightbox.view_context": "சூழலைக் பார்",
   "lists.account.add": "பட்டியலில் சேர்",
   "lists.account.remove": "பட்டியலில் இருந்து அகற்று",
-  "lists.delete": "Delete list",
+  "lists.delete": "பட்டியலை நீக்கு",
   "lists.edit": "பட்டியலை திருத்து",
   "lists.edit.submit": "தலைப்பு மாற்றவும்",
   "lists.new.create": "பட்டியலில் சேர்",
   "lists.new.title_placeholder": "புதிய பட்டியல் தலைப்பு",
   "lists.search": "நீங்கள் பின்தொடரும் நபர்கள் மத்தியில் தேடுதல்",
   "lists.subheading": "உங்கள் பட்டியல்கள்",
-  "load_pending": "{count, plural, one {# new item} other {# new items}}",
+  "load_pending": "{count, plural,one {# புதியது}other {# புதியவை}}",
   "loading_indicator.label": "ஏற்றுதல்...",
   "media_gallery.toggle_visible": "நிலைமாற்று தெரியும்",
   "missing_indicator.label": "கிடைக்கவில்லை",
@@ -256,6 +262,7 @@
   "mute_modal.hide_notifications": "இந்த பயனரின் அறிவிப்புகளை மறைக்கவா?",
   "navigation_bar.apps": "மொபைல் பயன்பாடுகள்",
   "navigation_bar.blocks": "தடுக்கப்பட்ட பயனர்கள்",
+  "navigation_bar.bookmarks": "Bookmarks",
   "navigation_bar.community_timeline": "உள்ளூர் காலக்கெடு",
   "navigation_bar.compose": "புதியவற்றை எழுதுக toot",
   "navigation_bar.direct": "நேரடி செய்திகள்",
@@ -265,20 +272,22 @@
   "navigation_bar.favourites": "விருப்பத்துக்குகந்த",
   "navigation_bar.filters": "முடக்கப்பட்ட வார்த்தைகள்",
   "navigation_bar.follow_requests": "கோரிக்கைகளை பின்பற்றவும்",
-  "navigation_bar.follows_and_followers": "Follows and followers",
+  "navigation_bar.follows_and_followers": "பின்பற்றல்கள் மற்றும் பின்பற்றுபவர்கள்",
   "navigation_bar.info": "இந்த நிகழ்வு பற்றி",
   "navigation_bar.keyboard_shortcuts": "சுருக்குவிசைகள்",
   "navigation_bar.lists": "குதிரை வீர்ர்கள்",
   "navigation_bar.logout": "விடு பதிகை",
   "navigation_bar.mutes": "முடக்கப்பட்ட பயனர்கள்",
-  "navigation_bar.personal": "Personal",
+  "navigation_bar.personal": "தனிப்பட்டவை",
   "navigation_bar.pins": "பொருத்தப்பட்டன toots",
   "navigation_bar.preferences": "விருப்பங்கள்",
   "navigation_bar.public_timeline": "கூட்டாட்சி காலக்கெடு",
   "navigation_bar.security": "பத்திரம்",
   "notification.favourite": "{name} ஆர்வம் கொண்டவர், உங்கள் நிலை",
-  "notification.follow": "{name} நீங்கள் தொடர்ந்து வந்தீர்கள்",
+  "notification.follow": "{name} உங்களைப் பின்தொடர்கிறார்",
+  "notification.follow_request": "{name} உங்களைப் பின்தொடரக் கோருகிறார்",
   "notification.mention": "{name} நீங்கள் குறிப்பிட்டுள்ளீர்கள்",
+  "notification.own_poll": "கருத்துக்கணிப்பு நிறைவடைந்தது",
   "notification.poll": "நீங்கள் வாக்களித்த வாக்கெடுப்பு முடிவடைந்தது",
   "notification.reblog": "{name} உங்கள் நிலை அதிகரித்தது",
   "notifications.clear": "அறிவிப்புகளை அழிக்கவும்",
@@ -289,9 +298,10 @@
   "notifications.column_settings.filter_bar.category": "விரைவு வடிகட்டி பட்டை",
   "notifications.column_settings.filter_bar.show": "காட்டு",
   "notifications.column_settings.follow": "புதிய பின்பற்றுபவர்கள்:",
+  "notifications.column_settings.follow_request": "புதிய பின்தொடர் கோரிக்கைகள்:",
   "notifications.column_settings.mention": "குறிப்பிடுகிறது:",
   "notifications.column_settings.poll": "கருத்துக்கணிப்பு முடிவுகள்:",
-  "notifications.column_settings.push": "Push notifications",
+  "notifications.column_settings.push": "தள் அறிவிப்புகள்",
   "notifications.column_settings.reblog": "மதிப்பை உயர்த்து:",
   "notifications.column_settings.show": "பத்தியில் காண்பி",
   "notifications.column_settings.sound": "ஒலி விளையாட",
@@ -301,13 +311,13 @@
   "notifications.filter.follows": "பின்பற்று",
   "notifications.filter.mentions": "குறிப்பிடுகிறார்",
   "notifications.filter.polls": "கருத்துக்கணிப்பு முடிவுகள்",
-  "notifications.group": "{count} notifications",
+  "notifications.group": "{count} அறிவிப்புகள்",
   "poll.closed": "மூடிய",
   "poll.refresh": "பத்துயிர்ப்ப?ட்டு",
-  "poll.total_people": "{count, plural, one {# person} other {# people}}",
+  "poll.total_people": "{count, plural, one {# நபர்} other {# நபர்கள்}}",
   "poll.total_votes": "{count, plural, one {# vote} மற்ற {# votes}}",
   "poll.vote": "வாக்களி",
-  "poll.voted": "You voted for this answer",
+  "poll.voted": "உங்கள் தேர்வு",
   "poll_button.add_poll": "வாக்கெடுப்பைச் சேர்க்கவும்",
   "poll_button.remove_poll": "வாக்கெடுப்பை அகற்று",
   "privacy.change": "நிலை தனியுரிமை",
@@ -316,43 +326,44 @@
   "privacy.private.long": "பின்தொடர்பவர்களுக்கு மட்டுமே இடுகை",
   "privacy.private.short": "பின்பற்றுபவர்கள் மட்டும்",
   "privacy.public.long": "பொது நேரங்களுக்கான இடுகை",
-  "privacy.public.short": "Public",
+  "privacy.public.short": "பொது",
   "privacy.unlisted.long": "Do not show in public timelines",
   "privacy.unlisted.short": "பட்டியலிடப்படாத",
-  "refresh": "Refresh",
+  "refresh": "புதுப்பி",
   "regeneration_indicator.label": "சுமையேற்றம்…",
   "regeneration_indicator.sublabel": "உங்கள் வீட்டு ஊட்டம் தயார் செய்யப்படுகிறது!",
-  "relative_time.days": "{number}d",
-  "relative_time.hours": "{number}h",
+  "relative_time.days": "{number}நா",
+  "relative_time.hours": "{number}à®®",
   "relative_time.just_now": "இப்பொழுது",
-  "relative_time.minutes": "{number}m",
-  "relative_time.seconds": "{number}s",
+  "relative_time.minutes": "{number}நி",
+  "relative_time.seconds": "{number}வி",
   "reply_indicator.cancel": "எதிராணை",
   "report.forward": "முன்னோக்கி {target}",
   "report.forward_hint": "கணக்கு மற்றொரு சேவையகத்திலிருந்து வருகிறது. அறிக்கையின் அநாமதேய பிரதி ஒன்றை அனுப்பவும்.?",
   "report.hint": "அறிக்கை உங்கள் மாதிரியாக மாற்றியமைக்கப்படும். கீழே உள்ள கணக்கை நீங்கள் ஏன் புகாரளிக்கிறீர்கள் என்பதற்கான விளக்கத்தை வழங்கலாம்:",
   "report.placeholder": "கூடுதல் கருத்துரைகள்",
-  "report.submit": "Submit",
+  "report.submit": "சமர்ப்பி",
   "report.target": "Report {target}",
   "search.placeholder": "தேடு",
   "search_popout.search_format": "மேம்பட்ட தேடல் வடிவம்",
   "search_popout.tips.full_text": "எளிமையான உரை நீங்கள் எழுதப்பட்ட, புகழ், அதிகரித்தது, அல்லது குறிப்பிட்டுள்ள, அதே போல் பயனர் பெயர்கள், காட்சி பெயர்கள், மற்றும் ஹேஸ்டேகைகளை கொண்டுள்ளது என்று நிலைகளை கொடுக்கிறது.",
   "search_popout.tips.hashtag": "ஹேஸ்டேக்",
-  "search_popout.tips.status": "status",
+  "search_popout.tips.status": "நிலைமை",
   "search_popout.tips.text": "எளிய உரை காட்சி பெயர்கள், பயனர்பெயர்கள் மற்றும் ஹாஷ்டேட்களுடன் பொருந்துகிறது",
-  "search_popout.tips.user": "user",
-  "search_results.accounts": "People",
+  "search_popout.tips.user": "பயனர்",
+  "search_results.accounts": "மக்கள்",
   "search_results.hashtags": "ஹாஷ்டேக்குகளைச்",
-  "search_results.statuses": "Toots",
-  "search_results.statuses_fts_disabled": "Searching toots by their content is not enabled on this Mastodon server.",
+  "search_results.statuses": "டூட்டுகள்",
+  "search_results.statuses_fts_disabled": "டூட்டுகளின் வார்த்தைகளைக்கொண்டு தேடுவது இந்த மச்டோடன் வழங்கியில் இயல்விக்கப்படவில்லை.",
   "search_results.total": "{count, number} {count, plural, one {result} மற்ற {results}}",
   "status.admin_account": "மிதமான இடைமுகத்தை திறக்க @{name}",
   "status.admin_status": "மிதமான இடைமுகத்தில் இந்த நிலையை திறக்கவும்",
-  "status.block": "Block @{name}",
+  "status.block": "@{name} -ஐத் தடு",
+  "status.bookmark": "அடையாளம் குறி",
   "status.cancel_reblog_private": "இல்லை பூஸ்ட்",
   "status.cannot_reblog": "இந்த இடுகை அதிகரிக்க முடியாது",
   "status.copy": "நிலைக்கு இணைப்பை நகலெடு",
-  "status.delete": "Delete",
+  "status.delete": "நீக்கு",
   "status.detailed_status": "விரிவான உரையாடல் காட்சி",
   "status.direct": "நேரடி செய்தி @{name}",
   "status.embed": "கிடத்து",
@@ -374,9 +385,10 @@
   "status.reblogged_by": "{name} மதிப்பை உயர்த்து",
   "status.reblogs.empty": "இதுவரை யாரும் இந்த மோதலை அதிகரிக்கவில்லை. யாராவது செய்தால், அவர்கள் இங்கே காண்பார்கள்.",
   "status.redraft": "நீக்கு மற்றும் மீண்டும் வரைவு",
+  "status.remove_bookmark": "அடையாளம் நீக்கு",
   "status.reply": "பதில்",
   "status.replyAll": "நூலுக்கு பதிலளிக்கவும்",
-  "status.report": "Report @{name}",
+  "status.report": "@{name} மீது புகாரளி",
   "status.sensitive_warning": "உணர்திறன் உள்ளடக்கம்",
   "status.share": "பங்கிடு",
   "status.show_less": "குறைவாகக் காண்பி",
@@ -384,15 +396,15 @@
   "status.show_more": "மேலும் காட்ட",
   "status.show_more_all": "அனைவருக்கும் மேலும் காட்டு",
   "status.show_thread": "நூல் காட்டு",
-  "status.uncached_media_warning": "Not available",
+  "status.uncached_media_warning": "கிடைக்கவில்லை",
   "status.unmute_conversation": "ஊமையாக உரையாடல் இல்லை",
   "status.unpin": "சுயவிவரத்திலிருந்து நீக்கவும்",
   "suggestions.dismiss": "பரிந்துரை விலக்க",
   "suggestions.header": "நீங்கள் ஆர்வமாக இருக்கலாம் …",
-  "tabs_bar.federated_timeline": "Federated",
-  "tabs_bar.home": "Home",
-  "tabs_bar.local_timeline": "Local",
-  "tabs_bar.notifications": "Notifications",
+  "tabs_bar.federated_timeline": "கூட்டமைந்த",
+  "tabs_bar.home": "முகப்பு",
+  "tabs_bar.local_timeline": "உள்ளூர்",
+  "tabs_bar.notifications": "அறிவிப்புகள்",
   "tabs_bar.search": "தேடு",
   "time_remaining.days": "{number, plural, one {# day} மற்ற {# days}} left",
   "time_remaining.hours": "{number, plural, one {# hour} மற்ற {# hours}} left",
@@ -400,30 +412,33 @@
   "time_remaining.moments": "தருணங்கள் மீதமுள்ளன",
   "time_remaining.seconds": "{number, plural, one {# second} மற்ற {# seconds}} left",
   "trends.count_by_accounts": "{count} {rawCount, plural, one {person} மற்ற {people}} உரையாடு",
-  "trends.trending_now": "Trending now",
+  "trends.trending_now": "இப்போது செல்திசையில் இருப்பவை",
   "ui.beforeunload": "நீங்கள் வெளியே சென்றால் உங்கள் வரைவு இழக்கப்படும் மஸ்தோடோன்.",
   "upload_area.title": "பதிவேற்ற & இழுக்கவும்",
   "upload_button.label": "மீடியாவைச் சேர்க்கவும் (JPEG, PNG, GIF, WebM, MP4, MOV)",
   "upload_error.limit": "கோப்பு பதிவேற்ற வரம்பு மீறப்பட்டது.",
   "upload_error.poll": "கோப்பு பதிவேற்றம் அனுமதிக்கப்படவில்லை.",
+  "upload_form.audio_description": "செவித்திறன் குறைபாடு உள்ளவர்களுக்காக விளக்குக‌",
   "upload_form.description": "பார்வையற்ற விவரிக்கவும்",
-  "upload_form.edit": "Edit",
-  "upload_form.undo": "Delete",
-  "upload_modal.analyzing_picture": "Analyzing picture…",
-  "upload_modal.apply": "Apply",
-  "upload_modal.description_placeholder": "A quick brown fox jumps over the lazy dog",
-  "upload_modal.detect_text": "Detect text from picture",
-  "upload_modal.edit_media": "Edit media",
-  "upload_modal.hint": "Click or drag the circle on the preview to choose the focal point which will always be in view on all thumbnails.",
-  "upload_modal.preview_label": "Preview ({ratio})",
+  "upload_form.edit": "தொகு",
+  "upload_form.undo": "நீக்கு",
+  "upload_form.video_description": "செவித்திறன் மற்றும் பார்வைக் குறைபாடு உள்ளவர்களுக்காக விளக்குக‌",
+  "upload_modal.analyzing_picture": "படம் ஆராயப்படுகிறது…",
+  "upload_modal.apply": "உபயோகி",
+  "upload_modal.description_placeholder": "பொருள் விளக்கம்",
+  "upload_modal.detect_text": "படத்தில் இருக்கும் எழுத்தை கண்டறி",
+  "upload_modal.edit_media": "படத்தைத் தொகு",
+  "upload_modal.hint": "எல்லா வில்லைப்பட்த்திலும் தெரியவேண்டிய, படத்தின் முக்கிய குவியப்புள்ளிக்கு, வட்டத்தை சொடுக்கி இழுத்துச்செல்லவும்.",
+  "upload_modal.preview_label": "முன்னோட்டம் ({ratio})",
   "upload_progress.label": "ஏற்றுகிறது ...",
   "video.close": "வீடியோவை மூடு",
+  "video.download": "கோப்பைப் பதிவிறக்கவும்",
   "video.exit_fullscreen": "முழு திரையில் இருந்து வெளியேறவும்",
   "video.expand": "வீடியோவை விரிவாக்கு",
-  "video.fullscreen": "Full screen",
+  "video.fullscreen": "முழுத்திரை",
   "video.hide": "வீடியோவை மறை",
   "video.mute": "ஒலி முடக்கவும்",
-  "video.pause": "Pause",
+  "video.pause": "இடைநிறுத்து",
   "video.play": "விளையாடு",
   "video.unmute": "ஒலி மெளனமாக இல்லை"
 }
diff --git a/app/javascript/mastodon/locales/te.json b/app/javascript/mastodon/locales/te.json
index 6e2a3acfd49d9b6aa15f339e1ce8bee1bb94f1dc..1c30feb8de2cce903b1d3e44b15afd76aae6d759 100644
--- a/app/javascript/mastodon/locales/te.json
+++ b/app/javascript/mastodon/locales/te.json
@@ -1,6 +1,7 @@
 {
   "account.add_or_remove_from_list": "జాబితాల నుండి చేర్చు లేదా తీసివేయి",
   "account.badges.bot": "బాట్",
+  "account.badges.group": "Group",
   "account.block": "@{name} ను బ్లాక్ చేయి",
   "account.block_domain": "{domain} నుంచి అన్నీ దాచిపెట్టు",
   "account.blocked": "బ్లాక్ అయినవి",
@@ -51,6 +52,7 @@
   "bundle_modal_error.message": "ఈ భాగం లోడ్ అవుతున్నప్పుడు ఏదో తప్పు జరిగింది.",
   "bundle_modal_error.retry": "మళ్ళీ ప్రయత్నించండి",
   "column.blocks": "బ్లాక్ చేయబడిన వినియోగదారులు",
+  "column.bookmarks": "Bookmarks",
   "column.community": "స్థానిక కాలక్రమం",
   "column.direct": "ప్రత్యక్ష సందేశాలు",
   "column.directory": "Browse profiles",
@@ -82,6 +84,8 @@
   "compose_form.poll.duration": "ఎన్నిక వ్యవధి",
   "compose_form.poll.option_placeholder": "ఎంపిక {number}",
   "compose_form.poll.remove_option": "ఈ ఎంపికను తొలగించు",
+  "compose_form.poll.switch_to_multiple": "Change poll to allow multiple choices",
+  "compose_form.poll.switch_to_single": "Change poll to allow for a single choice",
   "compose_form.publish": "టూట్",
   "compose_form.publish_loud": "{publish}!",
   "compose_form.sensitive.hide": "Mark media as sensitive",
@@ -138,6 +142,7 @@
   "empty_column.account_timeline": "ఇక్కడ ఏ టూట్లూ లేవు!No toots here!",
   "empty_column.account_unavailable": "Profile unavailable",
   "empty_column.blocks": "మీరు ఇంకా ఏ వినియోగదారులనూ బ్లాక్ చేయలేదు.",
+  "empty_column.bookmarked_statuses": "You don't have any bookmarked toots yet. When you bookmark one, it will show up here.",
   "empty_column.community": "స్థానిక కాలక్రమం ఖాళీగా ఉంది. మొదలుపెట్టడానికి బహిరంగంగా ఏదో ఒకటి వ్రాయండి!",
   "empty_column.direct": "మీకు ఇంకా ఏ ప్రత్యక్ష సందేశాలు లేవు. మీరు ఒకదాన్ని పంపినప్పుడు లేదా స్వీకరించినప్పుడు, అది ఇక్కడ చూపబడుతుంది.",
   "empty_column.domain_blocks": "దాచబడిన డొమైన్లు ఇంకా ఏమీ లేవు.",
@@ -224,6 +229,7 @@
   "keyboard_shortcuts.muted": "మ్యూట్ చేయబడిన వినియోగదారుల జాబితాను తెరవడానికి",
   "keyboard_shortcuts.my_profile": "మీ ప్రొఫైల్ను తెరవడానికి",
   "keyboard_shortcuts.notifications": "నోటిఫికేషన్ల నిలువు వరుసను తెరవడానికి",
+  "keyboard_shortcuts.open_media": "to open media",
   "keyboard_shortcuts.pinned": "అతికించబడిన టూట్ల జాబితాను తెరవడానికి",
   "keyboard_shortcuts.profile": "రచయిత ప్రొఫైల్ ను తెరవాలంటే",
   "keyboard_shortcuts.reply": "ప్రత్యుత్తరం ఇవ్వడానికి",
@@ -256,6 +262,7 @@
   "mute_modal.hide_notifications": "ఈ వినియోగదారు నుండి నోటిఫికేషన్లను దాచాలా?",
   "navigation_bar.apps": "మొబైల్ ఆప్ లు",
   "navigation_bar.blocks": "బ్లాక్ చేయబడిన వినియోగదారులు",
+  "navigation_bar.bookmarks": "Bookmarks",
   "navigation_bar.community_timeline": "స్థానిక కాలక్రమం",
   "navigation_bar.compose": "కొత్త టూట్ను రాయండి",
   "navigation_bar.direct": "ప్రత్యక్ష సందేశాలు",
@@ -278,7 +285,9 @@
   "navigation_bar.security": "భద్రత",
   "notification.favourite": "{name} మీ స్టేటస్ ను ఇష్టపడ్డారు",
   "notification.follow": "{name} మిమ్మల్ని అనుసరిస్తున్నారు",
+  "notification.follow_request": "{name} has requested to follow you",
   "notification.mention": "{name} మిమ్మల్ని ప్రస్తావించారు",
+  "notification.own_poll": "Your poll has ended",
   "notification.poll": "మీరు పాల్గొనిన ఎన్సిక ముగిసినది",
   "notification.reblog": "{name} మీ స్టేటస్ ను బూస్ట్ చేసారు",
   "notifications.clear": "ప్రకటనలను తుడిచివేయు",
@@ -289,6 +298,7 @@
   "notifications.column_settings.filter_bar.category": "క్విక్ ఫిల్టర్ బార్",
   "notifications.column_settings.filter_bar.show": "చూపించు",
   "notifications.column_settings.follow": "క్రొత్త అనుచరులు:",
+  "notifications.column_settings.follow_request": "New follow requests:",
   "notifications.column_settings.mention": "ప్రస్తావనలు:",
   "notifications.column_settings.poll": "ఎన్నిక ఫలితాలు:",
   "notifications.column_settings.push": "పుష్ ప్రకటనలు",
@@ -349,6 +359,7 @@
   "status.admin_account": "@{name} కొరకు సమన్వయ వినిమయసీమను తెరువు",
   "status.admin_status": "సమన్వయ వినిమయసీమలో ఈ స్టేటస్ ను తెరవండి",
   "status.block": "@{name} ను బ్లాక్ చేయి",
+  "status.bookmark": "Bookmark",
   "status.cancel_reblog_private": "బూస్ట్ను తొలగించు",
   "status.cannot_reblog": "ఈ పోస్ట్ను బూస్ట్ చేయడం సాధ్యం కాదు",
   "status.copy": "లంకెను స్టేటస్కు కాపీ చేయి",
@@ -374,6 +385,7 @@
   "status.reblogged_by": "{name} బూస్ట్ చేసారు",
   "status.reblogs.empty": "ఈ టూట్ను ఇంకా ఎవరూ బూస్ట్ చేయలేదు. ఎవరైనా చేసినప్పుడు, అవి ఇక్కడ కనబడతాయి.",
   "status.redraft": "తొలగించు & తిరగరాయు",
+  "status.remove_bookmark": "Remove bookmark",
   "status.reply": "ప్రత్యుత్తరం",
   "status.replyAll": "సంభాషణకు ప్రత్యుత్తరం ఇవ్వండి",
   "status.report": "@{name}పై ఫిర్యాదుచేయు",
@@ -406,9 +418,11 @@
   "upload_button.label": "మీడియాను జోడించండి (JPEG, PNG, GIF, WebM, MP4, MOV)",
   "upload_error.limit": "File upload limit exceeded.",
   "upload_error.poll": "File upload not allowed with polls.",
+  "upload_form.audio_description": "Describe for people with hearing loss",
   "upload_form.description": "దృష్టి లోపమున్న వారి కోసం వివరించండి",
   "upload_form.edit": "Edit",
   "upload_form.undo": "తొలగించు",
+  "upload_form.video_description": "Describe for people with hearing loss or visual impairment",
   "upload_modal.analyzing_picture": "Analyzing picture…",
   "upload_modal.apply": "Apply",
   "upload_modal.description_placeholder": "A quick brown fox jumps over the lazy dog",
@@ -418,6 +432,7 @@
   "upload_modal.preview_label": "Preview ({ratio})",
   "upload_progress.label": "అప్లోడ్ అవుతోంది...",
   "video.close": "వీడియోని మూసివేయి",
+  "video.download": "Download file",
   "video.exit_fullscreen": "పూర్తి స్క్రీన్ నుండి నిష్క్రమించు",
   "video.expand": "వీడియోను విస్తరించండి",
   "video.fullscreen": "పూర్తి స్క్రీన్",
diff --git a/app/javascript/mastodon/locales/th.json b/app/javascript/mastodon/locales/th.json
index 352e92092290a44100291ad59d6252cdb0ca088d..c81ba2239b0f1780a357d3d493deab27d6ceef4a 100644
--- a/app/javascript/mastodon/locales/th.json
+++ b/app/javascript/mastodon/locales/th.json
@@ -1,6 +1,7 @@
 {
   "account.add_or_remove_from_list": "เพิ่มหรือเอาออกจากรายการ",
   "account.badges.bot": "บอต",
+  "account.badges.group": "กลุ่ม",
   "account.block": "ปิดกั้น @{name}",
   "account.block_domain": "ซ่อนทุกอย่างจาก {domain}",
   "account.blocked": "ปิดกั้นอยู่",
@@ -38,8 +39,8 @@
   "account.unfollow": "เลิกติดตาม",
   "account.unmute": "เลิกปิดเสียง @{name}",
   "account.unmute_notifications": "เลิกปิดเสียงการแจ้งเตือนจาก @{name}",
-  "alert.rate_limited.message": "Please retry after {retry_time, time, medium}.",
-  "alert.rate_limited.title": "Rate limited",
+  "alert.rate_limited.message": "โปรดลองใหม่หลังจาก {retry_time, time, medium}",
+  "alert.rate_limited.title": "มีการจำกัดอัตรา",
   "alert.unexpected.message": "เกิดข้อผิดพลาดที่ไม่คาดคิด",
   "alert.unexpected.title": "อุปส์!",
   "autosuggest_hashtag.per_week": "{count} ต่อสัปดาห์",
@@ -51,6 +52,7 @@
   "bundle_modal_error.message": "มีบางอย่างผิดพลาดขณะโหลดส่วนประกอบนี้",
   "bundle_modal_error.retry": "ลองอีกครั้ง",
   "column.blocks": "ผู้ใช้ที่ปิดกั้นอยู่",
+  "column.bookmarks": "ที่คั่นหน้า",
   "column.community": "เส้นเวลาในเว็บ",
   "column.direct": "ข้อความโดยตรง",
   "column.directory": "เรียกดูโปรไฟล์",
@@ -79,9 +81,11 @@
   "compose_form.lock_disclaimer.lock": "ล็อคอยู่",
   "compose_form.placeholder": "คุณกำลังคิดอะไรอยู่?",
   "compose_form.poll.add_option": "เพิ่มทางเลือก",
-  "compose_form.poll.duration": "ระยะเวลาโพล",
+  "compose_form.poll.duration": "ระยะเวลาการสำรวจความคิดเห็น",
   "compose_form.poll.option_placeholder": "ทางเลือก {number}",
   "compose_form.poll.remove_option": "เอาทางเลือกนี้ออก",
+  "compose_form.poll.switch_to_multiple": "Change poll to allow multiple choices",
+  "compose_form.poll.switch_to_single": "Change poll to allow for a single choice",
   "compose_form.publish": "โพสต์",
   "compose_form.publish_loud": "{publish}!",
   "compose_form.sensitive.hide": "ทำเครื่องหมายสื่อว่าละเอียดอ่อน",
@@ -99,11 +103,11 @@
   "confirmations.delete_list.confirm": "ลบ",
   "confirmations.delete_list.message": "คุณแน่ใจหรือไม่ว่าต้องการลบรายการนี้อย่างถาวร?",
   "confirmations.domain_block.confirm": "ซ่อนทั้งโดเมน",
-  "confirmations.domain_block.message": "Are you really, really sure you want to block the entire {domain}? In most cases a few targeted blocks or mutes are sufficient and preferable.",
+  "confirmations.domain_block.message": "คุณแน่ใจจริง ๆ หรือไม่ว่าต้องการปิดกั้นทั้ง {domain}? ในกรณีส่วนใหญ่ การปิดกั้นหรือการปิดเสียงแบบกำหนดเป้าหมายไม่กี่รายการนั้นเพียงพอและเป็นที่นิยม คุณจะไม่เห็นเนื้อหาจากโดเมนนั้นในเส้นเวลาสาธารณะใด ๆ หรือการแจ้งเตือนของคุณ จะเอาผู้ติดตามของคุณจากโดเมนนั้นออก",
   "confirmations.logout.confirm": "ออกจากระบบ",
   "confirmations.logout.message": "คุณแน่ใจหรือไม่ว่าต้องการออกจากระบบ?",
   "confirmations.mute.confirm": "ปิดเสียง",
-  "confirmations.mute.explanation": "This will hide posts from them and posts mentioning them, but it will still allow them to see your posts and follow you.",
+  "confirmations.mute.explanation": "นี่จะซ่อนโพสต์จากเขาและโพสต์ที่กล่าวถึงเขา แต่จะยังอนุญาตให้เขาเห็นโพสต์ของคุณและติดตามคุณ",
   "confirmations.mute.message": "คุณแน่ใจหรือไม่ว่าต้องการปิดเสียง {name}?",
   "confirmations.redraft.confirm": "ลบแล้วร่างใหม่",
   "confirmations.redraft.message": "คุณแน่ใจหรือไม่ว่าต้องการลบสถานะนี้แล้วร่างใหม่? รายการโปรดและการดันจะหายไป และการตอบกลับโพสต์ดั้งเดิมจะไม่มีความเกี่ยวพัน",
@@ -117,8 +121,8 @@
   "conversation.with": "กับ {names}",
   "directory.federated": "จากเฟดิเวิร์สที่รู้จัก",
   "directory.local": "จาก {domain} เท่านั้น",
-  "directory.new_arrivals": "New arrivals",
-  "directory.recently_active": "Recently active",
+  "directory.new_arrivals": "มาใหม่",
+  "directory.recently_active": "ใช้งานล่าสุด",
   "embed.instructions": "ฝังสถานะนี้ในเว็บไซต์ของคุณโดยคัดลอกโค้ดด้านล่าง",
   "embed.preview": "นี่คือลักษณะที่จะปรากฏ:",
   "emoji_button.activity": "กิจกรรม",
@@ -138,6 +142,7 @@
   "empty_column.account_timeline": "ไม่มีโพสต์ที่นี่!",
   "empty_column.account_unavailable": "ไม่มีโปรไฟล์",
   "empty_column.blocks": "คุณยังไม่ได้ปิดกั้นผู้ใช้ใด ๆ",
+  "empty_column.bookmarked_statuses": "คุณยังไม่มีโพสต์ที่เพิ่มที่คั่นหน้าไว้ใด ๆ เมื่อคุณเพิ่มที่คั่นหน้าโพสต์ โพสต์จะปรากฏที่นี่",
   "empty_column.community": "เส้นเวลาในเว็บว่างเปล่า เขียนบางอย่างเป็นสาธารณะเพื่อเริ่มต้น!",
   "empty_column.direct": "คุณยังไม่มีข้อความโดยตรงใด ๆ เมื่อคุณส่งหรือรับข้อความ ข้อความจะปรากฏที่นี่",
   "empty_column.domain_blocks": "ยังไม่มีโดเมนที่ซ่อนอยู่",
@@ -152,9 +157,9 @@
   "empty_column.mutes": "คุณยังไม่ได้ปิดเสียงผู้ใช้ใด ๆ",
   "empty_column.notifications": "คุณยังไม่มีการแจ้งเตือนใด ๆ โต้ตอบกับผู้อื่นเพื่อเริ่มการสนทนา",
   "empty_column.public": "ไม่มีสิ่งใดที่นี่! เขียนบางอย่างเป็นสาธารณะ หรือติดตามผู้ใช้จากเซิร์ฟเวอร์อื่น ๆ ด้วยตนเองเพื่อเติมให้เต็ม",
-  "error.unexpected_crash.explanation": "Due to a bug in our code or a browser compatibility issue, this page could not be displayed correctly.",
-  "error.unexpected_crash.next_steps": "Try refreshing the page. If that does not help, you may still be able to use Mastodon through a different browser or native app.",
-  "errors.unexpected_crash.copy_stacktrace": "Copy stacktrace to clipboard",
+  "error.unexpected_crash.explanation": "เนื่องจากข้อบกพร่องในโค้ดของเราหรือปัญหาความเข้ากันได้ของเบราว์เซอร์ จึงไม่สามารถแสดงหน้านี้ได้อย่างถูกต้อง",
+  "error.unexpected_crash.next_steps": "ลองรีเฟรชหน้า หากนั่นไม่ช่วย คุณอาจยังสามารถใช้ Mastodon ผ่านเบราว์เซอร์อื่นหรือแอป",
+  "errors.unexpected_crash.copy_stacktrace": "คัดลอกการติดตามสแตกไปยังคลิปบอร์ด",
   "errors.unexpected_crash.report_issue": "รายงานปัญหา",
   "federation.change": "Adjust status federation",
   "federation.federated.long": "Allow toot to reach other instances",
@@ -169,7 +174,7 @@
   "getting_started.heading": "เริ่มต้นใช้งาน",
   "getting_started.invite": "เชิญผู้คน",
   "getting_started.open_source_notice": "Mastodon เป็นซอฟต์แวร์เปิดต้นฉบับ คุณสามารถมีส่วนร่วมหรือรายงานปัญหาที่ GitHub ที่ {github}",
-  "getting_started.security": "ความปลอดภัย",
+  "getting_started.security": "การตั้งค่าบัญชี",
   "getting_started.terms": "เงื่อนไขการให้บริการ",
   "hashtag.column_header.tag_mode.all": "และ {additional}",
   "hashtag.column_header.tag_mode.any": "หรือ {additional}",
@@ -195,14 +200,14 @@
   "introduction.federation.local.text": "โพสต์สาธารณะจากผู้คนในเซิร์ฟเวอร์เดียวกันกับคุณจะปรากฏในเส้นเวลาในเว็บ",
   "introduction.interactions.action": "เสร็จสิ้นบทช่วยสอน!",
   "introduction.interactions.favourite.headline": "ชื่นชอบ",
-  "introduction.interactions.favourite.text": "You can save a toot for later, and let the author know that you liked it, by favouriting it.",
+  "introduction.interactions.favourite.text": "คุณสามารถบันทึกโพสต์ไว้ในภายหลังและแจ้งให้ผู้สร้างทราบว่าคุณชอบโพสต์โดยการชื่นชอบโพสต์",
   "introduction.interactions.reblog.headline": "ดัน",
-  "introduction.interactions.reblog.text": "You can share other people's toots with your followers by boosting them.",
+  "introduction.interactions.reblog.text": "คุณสามารถแบ่งปันโพสต์ของผู้อื่นกับผู้ติดตามของคุณโดยการดันโพสต์",
   "introduction.interactions.reply.headline": "ตอบกลับ",
-  "introduction.interactions.reply.text": "You can reply to other people's and your own toots, which will chain them together in a conversation.",
+  "introduction.interactions.reply.text": "คุณสามารถตอบกลับโพสต์ของผู้อื่นและของคุณเอง ซึ่งจะเชื่อมโยงโพสต์เข้าด้วยกันในการสนทนา",
   "introduction.welcome.action": "ไปกันเลย!",
   "introduction.welcome.headline": "ขั้นตอนแรก",
-  "introduction.welcome.text": "Welcome to the fediverse! In a few moments, you'll be able to broadcast messages and talk to your friends across a wide variety of servers. But this server, {domain}, is special—it hosts your profile, so remember its name.",
+  "introduction.welcome.text": "ยินดีต้อนรับสู่เฟดิเวิร์ส! ในอีกสักครู่ คุณจะสามารถออกอากาศข้อความและพูดคุยกับเพื่อน ๆ ของคุณผ่านเซิร์ฟเวอร์ที่หลากหลาย แต่เซิร์ฟเวอร์นี้ {domain} มีความพิเศษคือเป็นเซิร์ฟเวอร์ที่โฮสต์โปรไฟล์ของคุณ ดังนั้นจดจำชื่อของเซิร์ฟเวอร์ไว้",
   "keyboard_shortcuts.back": "เพื่อนำทางย้อนกลับ",
   "keyboard_shortcuts.blocked": "เพื่อเปิดรายการผู้ใช้ที่ปิดกั้นอยู่",
   "keyboard_shortcuts.boost": "เพื่อดัน",
@@ -224,6 +229,7 @@
   "keyboard_shortcuts.muted": "เพื่อเปิดรายการผู้ใช้ที่ปิดเสียงอยู่",
   "keyboard_shortcuts.my_profile": "เพื่อเปิดโปรไฟล์ของคุณ",
   "keyboard_shortcuts.notifications": "เพื่อเปิดคอลัมน์การแจ้งเตือน",
+  "keyboard_shortcuts.open_media": "เพื่อเปิดสื่อ",
   "keyboard_shortcuts.pinned": "เพื่อเปิดรายการโพสต์ที่ปักหมุด",
   "keyboard_shortcuts.profile": "เพื่อเปิดโปรไฟล์ของผู้สร้าง",
   "keyboard_shortcuts.reply": "เพื่อตอบกลับ",
@@ -254,8 +260,9 @@
   "missing_indicator.label": "ไม่พบ",
   "missing_indicator.sublabel": "ไม่พบทรัพยากรนี้",
   "mute_modal.hide_notifications": "ซ่อนการแจ้งเตือนจากผู้ใช้นี้?",
-  "navigation_bar.apps": "แอปสำหรับมือถือ",
+  "navigation_bar.apps": "แอปมือถือ",
   "navigation_bar.blocks": "ผู้ใช้ที่ปิดกั้นอยู่",
+  "navigation_bar.bookmarks": "ที่คั่นหน้า",
   "navigation_bar.community_timeline": "เส้นเวลาในเว็บ",
   "navigation_bar.compose": "เขียนโพสต์ใหม่",
   "navigation_bar.direct": "ข้อความโดยตรง",
@@ -278,8 +285,10 @@
   "navigation_bar.security": "ความปลอดภัย",
   "notification.favourite": "{name} ได้ชื่นชอบสถานะของคุณ",
   "notification.follow": "{name} ได้ติดตามคุณ",
+  "notification.follow_request": "{name} ได้ขอติดตามคุณ",
   "notification.mention": "{name} ได้กล่าวถึงคุณ",
-  "notification.poll": "โพลที่คุณได้ลงคะแนนได้สิ้นสุดแล้ว",
+  "notification.own_poll": "การสำรวจความคิดเห็นของคุณได้สิ้นสุดแล้ว",
+  "notification.poll": "การสำรวจความคิดเห็นที่คุณได้ลงคะแนนได้สิ้นสุดแล้ว",
   "notification.reblog": "{name} ได้ดันสถานะของคุณ",
   "notifications.clear": "ล้างการแจ้งเตือน",
   "notifications.clear_confirmation": "คุณแน่ใจหรือไม่ว่าต้องการล้างการแจ้งเตือนทั้งหมดของคุณอย่างถาวร?",
@@ -289,8 +298,9 @@
   "notifications.column_settings.filter_bar.category": "แถบตัวกรองด่วน",
   "notifications.column_settings.filter_bar.show": "แสดง",
   "notifications.column_settings.follow": "ผู้ติดตามใหม่:",
+  "notifications.column_settings.follow_request": "คำขอติดตามใหม่:",
   "notifications.column_settings.mention": "การกล่าวถึง:",
-  "notifications.column_settings.poll": "ผลลัพธ์โพล:",
+  "notifications.column_settings.poll": "ผลลัพธ์การสำรวจความคิดเห็น:",
   "notifications.column_settings.push": "การแจ้งเตือนแบบผลัก",
   "notifications.column_settings.reblog": "การดัน:",
   "notifications.column_settings.show": "แสดงในคอลัมน์",
@@ -300,16 +310,16 @@
   "notifications.filter.favourites": "รายการโปรด",
   "notifications.filter.follows": "การติดตาม",
   "notifications.filter.mentions": "การกล่าวถึง",
-  "notifications.filter.polls": "ผลลัพธ์โพล",
+  "notifications.filter.polls": "ผลลัพธ์การสำรวจความคิดเห็น",
   "notifications.group": "{count} การแจ้งเตือน",
   "poll.closed": "ปิดแล้ว",
   "poll.refresh": "รีเฟรช",
-  "poll.total_people": "{count, plural, one {# person} other {# people}}",
+  "poll.total_people": "{count, plural, other {# คน}}",
   "poll.total_votes": "{count, plural, other {# การลงคะแนน}}",
   "poll.vote": "ลงคะแนน",
-  "poll.voted": "You voted for this answer",
-  "poll_button.add_poll": "เพิ่มโพล",
-  "poll_button.remove_poll": "เอาโพลออก",
+  "poll.voted": "คุณได้ลงคะแนนให้กับคำตอบนี้",
+  "poll_button.add_poll": "เพิ่มการสำรวจความคิดเห็น",
+  "poll_button.remove_poll": "เอาการสำรวจความคิดเห็นออก",
   "privacy.change": "ปรับเปลี่ยนความเป็นส่วนตัวของสถานะ",
   "privacy.direct.long": "โพสต์ไปยังผู้ใช้ที่กล่าวถึงเท่านั้น",
   "privacy.direct.short": "โดยตรง",
@@ -344,11 +354,12 @@
   "search_results.accounts": "ผู้คน",
   "search_results.hashtags": "แฮชแท็ก",
   "search_results.statuses": "โพสต์",
-  "search_results.statuses_fts_disabled": "Searching toots by their content is not enabled on this Mastodon server.",
+  "search_results.statuses_fts_disabled": "ไม่มีการเปิดใช้งานการค้นหาโพสต์โดยเนื้อหาของโพสต์ในเซิร์ฟเวอร์ Mastodon นี้",
   "search_results.total": "{count, number} {count, plural, other {ผลลัพธ์}}",
   "status.admin_account": "เปิดส่วนติดต่อการควบคุมสำหรับ @{name}",
   "status.admin_status": "เปิดสถานะนี้ในส่วนติดต่อการควบคุม",
   "status.block": "ปิดกั้น @{name}",
+  "status.bookmark": "เพิ่มที่คั่นหน้า",
   "status.cancel_reblog_private": "เลิกดัน",
   "status.cannot_reblog": "ไม่สามารถดันโพสต์นี้",
   "status.copy": "คัดลอกลิงก์ไปยังสถานะ",
@@ -374,6 +385,7 @@
   "status.reblogged_by": "{name} ได้ดัน",
   "status.reblogs.empty": "ยังไม่มีใครดันโพสต์นี้ เมื่อใครสักคนดัน เขาจะปรากฏที่นี่",
   "status.redraft": "ลบแล้วร่างใหม่",
+  "status.remove_bookmark": "เอาที่คั่นหน้าออก",
   "status.reply": "ตอบกลับ",
   "status.replyAll": "ตอบกลับกระทู้",
   "status.report": "รายงาน @{name}",
@@ -384,7 +396,7 @@
   "status.show_more": "แสดงเพิ่มเติม",
   "status.show_more_all": "แสดงเพิ่มเติมทั้งหมด",
   "status.show_thread": "แสดงกระทู้",
-  "status.uncached_media_warning": "Not available",
+  "status.uncached_media_warning": "ไม่พร้อมใช้งาน",
   "status.unmute_conversation": "เลิกปิดเสียงการสนทนา",
   "status.unpin": "ถอนหมุดจากโปรไฟล์",
   "suggestions.dismiss": "ยกเลิกข้อเสนอแนะ",
@@ -403,21 +415,24 @@
   "trends.trending_now": "กำลังนิยม",
   "ui.beforeunload": "แบบร่างของคุณจะหายไปหากคุณออกจาก Mastodon",
   "upload_area.title": "ลากแล้วปล่อยเพื่ออัปโหลด",
-  "upload_button.label": "เพิ่มสื่อ (JPEG, PNG, GIF, WebM, MP4, MOV)",
+  "upload_button.label": "เพิ่มสื่อ ({formats})",
   "upload_error.limit": "เกินขีดจำกัดการอัปโหลดไฟล์",
   "upload_error.poll": "ไม่อนุญาตให้อัปโหลดไฟล์กับการลงคะแนน",
+  "upload_form.audio_description": "อธิบายสำหรับผู้สูญเสียการได้ยิน",
   "upload_form.description": "อธิบายสำหรับผู้บกพร่องทางการมองเห็น",
   "upload_form.edit": "แก้ไข",
   "upload_form.undo": "ลบ",
+  "upload_form.video_description": "อธิบายสำหรับผู้สูญเสียการได้ยินหรือบกพร่องทางการมองเห็น",
   "upload_modal.analyzing_picture": "กำลังวิเคราะห์รูปภาพ…",
   "upload_modal.apply": "นำไปใช้",
-  "upload_modal.description_placeholder": "A quick brown fox jumps over the lazy dog",
-  "upload_modal.detect_text": "Detect text from picture",
+  "upload_modal.description_placeholder": "สุนัขจิ้งจอกสีน้ำตาลที่ว่องไวกระโดดข้ามสุนัขขี้เกียจ",
+  "upload_modal.detect_text": "ตรวจหาข้อความจากรูปภาพ",
   "upload_modal.edit_media": "แก้ไขสื่อ",
-  "upload_modal.hint": "Click or drag the circle on the preview to choose the focal point which will always be in view on all thumbnails.",
+  "upload_modal.hint": "คลิกหรือลากวงกลมในตัวอย่างเพื่อเลือกจุดโฟกัส ซึ่งจะอยู่ในมุมมองของภาพขนาดย่อทั้งหมดเสมอ",
   "upload_modal.preview_label": "ตัวอย่าง ({ratio})",
   "upload_progress.label": "กำลังอัปโหลด...",
   "video.close": "ปิดวิดีโอ",
+  "video.download": "ดาวน์โหลดไฟล์",
   "video.exit_fullscreen": "ออกจากเต็มหน้าจอ",
   "video.expand": "ขยายวิดีโอ",
   "video.fullscreen": "เต็มหน้าจอ",
diff --git a/app/javascript/mastodon/locales/tr.json b/app/javascript/mastodon/locales/tr.json
index 4be3eaa15e36c983462ad27d6876b33ada627646..54d54721d96e1734ab3666ea1264ea11e57a56ac 100644
--- a/app/javascript/mastodon/locales/tr.json
+++ b/app/javascript/mastodon/locales/tr.json
@@ -1,11 +1,12 @@
 {
-  "account.add_or_remove_from_list": "Listeye ekle veya kaldır",
+  "account.add_or_remove_from_list": "Listelere ekle veya kaldır",
   "account.badges.bot": "Bot",
+  "account.badges.group": "Grup",
   "account.block": "@{name} adlı kişiyi engelle",
   "account.block_domain": "{domain} alanından her şeyi gizle",
   "account.blocked": "EngellenmiÅŸ",
   "account.cancel_follow_request": "Takip isteÄŸini iptal et",
-  "account.direct": "Mesaj gönder : @{name}",
+  "account.direct": "Mesaj gönder @{name}",
   "account.domain_blocked": "Alan adı gizlendi",
   "account.edit_profile": "Profili düzenle",
   "account.endorse": "Profildeki özellik",
@@ -17,7 +18,7 @@
   "account.follows_you": "Seni takip ediyor",
   "account.hide_reblogs": "@{name} kiÅŸisinin yinelemelerini gizle",
   "account.last_status": "Son aktivite",
-  "account.link_verified_on": "Bu bağlantının mülkiyeti {date} tarihinde kontrol edildi",
+  "account.link_verified_on": "Bu bağlantının sahipliği {date} tarihinde kontrol edildi",
   "account.locked_info": "Bu hesabın gizlilik durumu kilitli olarak ayarlanmış. Sahibi, onu kimin takip edebileceğini elle inceliyor.",
   "account.media": "Medya",
   "account.mention": "@{name} kullanıcısından bahset",
@@ -26,8 +27,8 @@
   "account.mute_notifications": "@{name} adlı kişinin bildirimlerini kapat",
   "account.muted": "Susturuldu",
   "account.never_active": "Asla",
-  "account.posts": "Gönderi",
-  "account.posts_with_replies": "Gönderiler ve yanıtlar",
+  "account.posts": "Toot",
+  "account.posts_with_replies": "Tootlar ve cevaplar",
   "account.report": "@{name} adlı kişiyi bildir",
   "account.requested": "Onay Bekleniyor. Takip isteğini iptal etmek için tıklayın",
   "account.share": "@{name} kullanıcısının profilini paylaş",
@@ -35,7 +36,7 @@
   "account.unblock": "@{name} adlı kişinin engelini kaldır",
   "account.unblock_domain": "{domain} göster",
   "account.unendorse": "Profilde özellik yok",
-  "account.unfollow": "Takipi bırak",
+  "account.unfollow": "Takibi bırak",
   "account.unmute": "@{name} adlı kişinin sesini aç",
   "account.unmute_notifications": "@{name} adlı kişinin bildirimlerini aç",
   "alert.rate_limited.message": "Lütfen sonra tekrar deneyin {retry_time, time, medium}.",
@@ -51,6 +52,7 @@
   "bundle_modal_error.message": "Bu bileşen yüklenirken bir şeyler ters gitti.",
   "bundle_modal_error.retry": "Tekrar deneyin",
   "column.blocks": "Engellenen kullanıcılar",
+  "column.bookmarks": "Yer imleri",
   "column.community": "Yerel zaman tüneli",
   "column.direct": "DoÄŸrudan mesajlar",
   "column.directory": "Profillere göz at",
@@ -61,7 +63,7 @@
   "column.lists": "Listeler",
   "column.mutes": "Susturulmuş kullanıcılar",
   "column.notifications": "Bildirimler",
-  "column.pins": "Sabitlenmiş gönderi",
+  "column.pins": "SabitlenmiÅŸ tootlar",
   "column.public": "Federe zaman tüneli",
   "column_back_button.label": "Geri",
   "column_header.hide_settings": "Ayarları gizle",
@@ -72,9 +74,9 @@
   "column_header.unpin": "Sabitlemeyi kaldır",
   "column_subheading.settings": "Ayarlar",
   "community.column_settings.media_only": "Sadece medya",
-  "compose_form.direct_message_warning": "Bu gönderi sadece belirtilen kullanıcılara gönderilecektir.",
+  "compose_form.direct_message_warning": "Bu toot sadece belirtilen kullanıcılara gönderilecektir.",
   "compose_form.direct_message_warning_learn_more": "Daha fazla bilgi edinin",
-  "compose_form.hashtag_warning": "Bu paylaşım liste dışı olduğu için hiç bir hashtag'de yer almayacak. Sadece herkese açık gönderiler hashtaglerde bulunabilir.",
+  "compose_form.hashtag_warning": "Bu toot liste dışı olduğu için hiç bir etikette yer almayacak. Sadece herkese açık tootlar etiketlerde bulunabilir.",
   "compose_form.lock_disclaimer": "Hesabınız {locked} değil. Sadece takipçilerle paylaştığınız gönderileri görebilmek için sizi herhangi bir kullanıcı takip edebilir.",
   "compose_form.lock_disclaimer.lock": "kilitli",
   "compose_form.placeholder": "Aklınızdan ne geçiyor?",
@@ -82,7 +84,9 @@
   "compose_form.poll.duration": "Anket süresi",
   "compose_form.poll.option_placeholder": "Seçim {number}",
   "compose_form.poll.remove_option": "Bu seçimi kaldır",
-  "compose_form.publish": "Gönder",
+  "compose_form.poll.switch_to_multiple": "Birden çok seçeneğe izin vermek için anketi değiştir",
+  "compose_form.poll.switch_to_single": "Tek bir seçeneğe izin vermek için anketi değiştir",
+  "compose_form.publish": "Tootla",
   "compose_form.publish_loud": "{publish}!",
   "compose_form.sensitive.hide": "Medyayı hassas olarak işaretle",
   "compose_form.sensitive.marked": "Medya hassas olarak iÅŸaretlendi",
@@ -135,14 +139,15 @@
   "emoji_button.search_results": "Arama sonuçları",
   "emoji_button.symbols": "Semboller",
   "emoji_button.travel": "Seyahat ve Yerler",
-  "empty_column.account_timeline": "Burada hiç gönderi yok!",
+  "empty_column.account_timeline": "Burada hiç toot yok!",
   "empty_column.account_unavailable": "Profil kullanılamıyor",
   "empty_column.blocks": "Henüz bir kullanıcıyı engellemediniz.",
+  "empty_column.bookmarked_statuses": "Hiç işaretlediğiniz tootunuz yok. Bir tane olduğunda burada görünecek.",
   "empty_column.community": "Yerel zaman çizelgesi boş. Daha fazla eğlence için herkese açık bir gönderi paylaşın!",
   "empty_column.direct": "Henüz doğrudan mesajınız yok. Bir tane gönderdiğinizde veya aldığınızda burada görünecektir.",
   "empty_column.domain_blocks": "Henüz hiçbir gizli alan adı yok.",
-  "empty_column.favourited_statuses": "Hiç favori gönderiminiz yok. Bir tane olursa burada görünecek.",
-  "empty_column.favourites": "Kimse bu gönderiyi favorilerine eklememiş. Biri eklerse burada görünecek.",
+  "empty_column.favourited_statuses": "Hiç favori tootunuz yok. Bir tane olduğunda burada görünecek.",
+  "empty_column.favourites": "Kimse bu tootu favorilerine eklememiş. Biri eklediğinde burada görünecek.",
   "empty_column.follow_requests": "Hiç takip isteğiniz yok. Bir tane aldığınızda burada görünecek.",
   "empty_column.hashtag": "Henüz bu hashtag’e sahip hiçbir gönderi yok.",
   "empty_column.home": "Henüz kimseyi takip etmiyorsunuz. {public} ziyaret edebilir veya arama kısmını kullanarak diğer kullanıcılarla iletişime geçebilirsiniz.",
@@ -195,11 +200,11 @@
   "introduction.federation.local.text": "Aynı sunucudaki kişilerin gönderileri yerel zaman tünelinde gözükecektir.",
   "introduction.interactions.action": "Öğreticiyi bitirin!",
   "introduction.interactions.favourite.headline": "Favori",
-  "introduction.interactions.favourite.text": "Bir gönderiyi favorilerinize alarak sonrası için saklayabilirsiniz ve yazara gönderiyi beğendiğinizi söyleyebilirsiniz.",
+  "introduction.interactions.favourite.text": "Bir tootu favorilerinize alarak sonrası için saklayabilirsiniz ve yazara tootu beğendiğinizi söyleyebilirsiniz.",
   "introduction.interactions.reblog.headline": "Yinele",
-  "introduction.interactions.reblog.text": "Başkalarının gönderilerini boostlayarak kendi takipçilerinizle paylaşabillirsiniz.",
+  "introduction.interactions.reblog.text": "Başkalarının tootlarını yineleyerek onları kendi takipçilerinizle paylaşabillirsiniz.",
   "introduction.interactions.reply.headline": "Yanıt",
-  "introduction.interactions.reply.text": "Başkalarının gönderilerini ve kendi gönderilerinizi yanıtlayabilirsiniz. Bir konuşmada zincirli bir şekilde olacaklardır.",
+  "introduction.interactions.reply.text": "Başkalarının ve kendinizin tootlarına cevap verebilirsiniz. Bu, onları bir konuşmada zincirli bir şekilde gösterecektir.",
   "introduction.welcome.action": "Hadi gidelim!",
   "introduction.welcome.headline": "İlk adımlar",
   "introduction.welcome.text": "Krallığa hoş geldiniz! Az sonra, geniş bir sunucu yelpazesinde mesaj gönderip arkadaşlarınızla konuşabileceksiniz. Ama bu sunucu, {domain}, özel (profilinizi barındırır, bu yüzden adresini hatırlayın).",
@@ -224,7 +229,8 @@
   "keyboard_shortcuts.muted": "susturulmuş kullanıcı listesini açmak için",
   "keyboard_shortcuts.my_profile": "profilinizi açmak için",
   "keyboard_shortcuts.notifications": "bildirimler sütununu açmak için",
-  "keyboard_shortcuts.pinned": "sabitlenmiş gönderiler listesini açmak için",
+  "keyboard_shortcuts.open_media": "medyayı açmak için",
+  "keyboard_shortcuts.pinned": "sabitlenmiş tootların listesini açmak için",
   "keyboard_shortcuts.profile": "yazarın profilini açmak için",
   "keyboard_shortcuts.reply": "cevaplamak için",
   "keyboard_shortcuts.requests": "takip istekleri listesini açmak için",
@@ -232,7 +238,7 @@
   "keyboard_shortcuts.start": "\"başlayın\" sütununu açmak için",
   "keyboard_shortcuts.toggle_hidden": "CW'den önceki yazıyı göstermek/gizlemek için",
   "keyboard_shortcuts.toggle_sensitivity": "medyayı göstermek/gizlemek için",
-  "keyboard_shortcuts.toot": "yeni bir gönderiye başlamak için",
+  "keyboard_shortcuts.toot": "yeni bir toot başlatmak için",
   "keyboard_shortcuts.unfocus": "aramada bir gönderiye odaklanmamak için",
   "keyboard_shortcuts.up": "listede yukarıya çıkmak için",
   "lightbox.close": "Kapat",
@@ -256,8 +262,9 @@
   "mute_modal.hide_notifications": "Bu kullanıcıdan bildirimler gizlensin mı?",
   "navigation_bar.apps": "Mobil uygulamalar",
   "navigation_bar.blocks": "Engellenen kullanıcılar",
+  "navigation_bar.bookmarks": "Yer imleri",
   "navigation_bar.community_timeline": "Yerel zaman tüneli",
-  "navigation_bar.compose": "Yeni bir gönderi yazın",
+  "navigation_bar.compose": "Yeni toot oluÅŸtur",
   "navigation_bar.direct": "Direkt Mesajlar",
   "navigation_bar.discover": "KeÅŸfet",
   "navigation_bar.domain_blocks": "Gizli alan adları",
@@ -272,13 +279,15 @@
   "navigation_bar.logout": "Çıkış",
   "navigation_bar.mutes": "Sessize alınmış kullanıcılar",
   "navigation_bar.personal": "KiÅŸisel",
-  "navigation_bar.pins": "Sabitlenmiş gönderiler",
+  "navigation_bar.pins": "SabitlenmiÅŸ tootlar",
   "navigation_bar.preferences": "Tercihler",
   "navigation_bar.public_timeline": "Federe zaman tüneli",
   "navigation_bar.security": "Güvenlik",
   "notification.favourite": "{name} senin durumunu favorilere ekledi",
   "notification.follow": "{name} seni takip ediyor",
+  "notification.follow_request": "{name} sizi takip etme isteği gönderdi",
   "notification.mention": "{name} senden bahsetti",
+  "notification.own_poll": "Anketiniz sona erdi",
   "notification.poll": "Oy verdiÄŸiniz bir anket bitti",
   "notification.reblog": "{name} senin durumunu boost etti",
   "notifications.clear": "Bildirimleri temizle",
@@ -289,6 +298,7 @@
   "notifications.column_settings.filter_bar.category": "Hızlı filtre çubuğu",
   "notifications.column_settings.filter_bar.show": "Göster",
   "notifications.column_settings.follow": "Yeni takipçiler:",
+  "notifications.column_settings.follow_request": "Yeni takip istekleri:",
   "notifications.column_settings.mention": "Bahsedilenler:",
   "notifications.column_settings.poll": "Anket sonuçları:",
   "notifications.column_settings.push": "Push bildirimleri",
@@ -343,12 +353,13 @@
   "search_popout.tips.user": "kullanıcı",
   "search_results.accounts": "İnsanlar",
   "search_results.hashtags": "Hashtagler",
-  "search_results.statuses": "Gönderiler",
-  "search_results.statuses_fts_disabled": "Bu Mastodon sunucusunda gönderi içeriğine göre arama etkin değil.",
+  "search_results.statuses": "Tootlar",
+  "search_results.statuses_fts_disabled": "Bu Mastodon sunucusunda toot içeriğine göre arama etkin değil.",
   "search_results.total": "{count, number} {count, plural, one {sonuç} other {sonuçlar}}",
   "status.admin_account": "@{name} için denetim arayüzünü açın",
   "status.admin_status": "Denetim arayüzünde bu durumu açın",
   "status.block": "Engelle : @{name}",
+  "status.bookmark": "Yer imlerine ekle",
   "status.cancel_reblog_private": "Boost'u geri al",
   "status.cannot_reblog": "Bu gönderi boost edilemez",
   "status.copy": "Bağlantı durumunu kopyala",
@@ -367,13 +378,14 @@
   "status.mute_conversation": "Yazışmayı sustur",
   "status.open": "Bu gönderiyi genişlet",
   "status.pin": "Profile sabitle",
-  "status.pinned": "Sabitlenmiş gönderi",
+  "status.pinned": "SabitlenmiÅŸ toot",
   "status.read_more": "Daha dazla oku",
   "status.reblog": "Boostla",
   "status.reblog_private": "Orjinal kitleye yinele",
   "status.reblogged_by": "{name} boost etti",
-  "status.reblogs.empty": "Kimse bu gönderiyi boostlamadı. Biri yaptığında burada gözükecek.",
+  "status.reblogs.empty": "Henüz kimse bu tootu yinelemedi. Biri yaptığında burada görünecek.",
   "status.redraft": "Sil & tekrar taslakla",
+  "status.remove_bookmark": "Yer imini kaldır",
   "status.reply": "Cevapla",
   "status.replyAll": "Konuşmayı cevapla",
   "status.report": "@{name}'i raporla",
@@ -406,9 +418,11 @@
   "upload_button.label": "Görsel ekle",
   "upload_error.limit": "Dosya yükleme sınırı aşıldı.",
   "upload_error.poll": "Anketlerde dosya yüklemesine izin verilmez.",
+  "upload_form.audio_description": "İşitme kaybı olan kişiler için tarif edin",
   "upload_form.description": "Görme engelliler için açıklama",
   "upload_form.edit": "Düzenle",
   "upload_form.undo": "Geri al",
+  "upload_form.video_description": "İşitme kaybı veya görme engeli olan kişiler için tarif edin",
   "upload_modal.analyzing_picture": "Resmi analiz ediyor…",
   "upload_modal.apply": "Uygula",
   "upload_modal.description_placeholder": "Pijamalı hasta yağız şoföre çabucak güvendi",
@@ -418,6 +432,7 @@
   "upload_modal.preview_label": "Ön izleme ({ratio})",
   "upload_progress.label": "Yükleniyor...",
   "video.close": "Videoyu kapat",
+  "video.download": "Dosyayı indir",
   "video.exit_fullscreen": "Tam ekrandan çık",
   "video.expand": "Videoyu geniÅŸlet",
   "video.fullscreen": "Tam ekran",
diff --git a/app/javascript/mastodon/locales/uk.json b/app/javascript/mastodon/locales/uk.json
index b8be74b008b2ba4b7d2d69f5186723300a5ae77e..44c6daa9645bb558db22244a370cc38b3cf5a05c 100644
--- a/app/javascript/mastodon/locales/uk.json
+++ b/app/javascript/mastodon/locales/uk.json
@@ -1,6 +1,7 @@
 {
   "account.add_or_remove_from_list": "Додати або видалити зі списків",
   "account.badges.bot": "Бот",
+  "account.badges.group": "Group",
   "account.block": "Заблокувати @{name}",
   "account.block_domain": "Заглушити {domain}",
   "account.blocked": "Заблоковані",
@@ -8,7 +9,7 @@
   "account.direct": "Пряме повідомлення @{name}",
   "account.domain_blocked": "Домен приховано",
   "account.edit_profile": "Редагувати профіль",
-  "account.endorse": "Feature on profile",
+  "account.endorse": "Публікувати у профілі",
   "account.follow": "Підписатися",
   "account.followers": "Підписники",
   "account.followers.empty": "Ніхто ще не підписався на цього користувача.",
@@ -34,7 +35,7 @@
   "account.show_reblogs": "Показати передмухи від @{name}",
   "account.unblock": "Розблокувати @{name}",
   "account.unblock_domain": "Розблокувати {domain}",
-  "account.unendorse": "Don't feature on profile",
+  "account.unendorse": "Не публікувати у профілі",
   "account.unfollow": "Відписатися",
   "account.unmute": "Зняти глушення з @{name}",
   "account.unmute_notifications": "Показувати сповіщення від @{name}",
@@ -51,6 +52,7 @@
   "bundle_modal_error.message": "Щось пішло не так під час завантаження компоненту.",
   "bundle_modal_error.retry": "Спробувати ще раз",
   "column.blocks": "Заблоковані користувачі",
+  "column.bookmarks": "Bookmarks",
   "column.community": "Локальна стрічка",
   "column.direct": "Прямі повідомлення",
   "column.directory": "Переглянути профілі",
@@ -82,6 +84,8 @@
   "compose_form.poll.duration": "Тривалість опитування",
   "compose_form.poll.option_placeholder": "Варіант {number}",
   "compose_form.poll.remove_option": "Видалити цей варіант",
+  "compose_form.poll.switch_to_multiple": "Change poll to allow multiple choices",
+  "compose_form.poll.switch_to_single": "Change poll to allow for a single choice",
   "compose_form.publish": "Дмухнути",
   "compose_form.publish_loud": "{publish}!",
   "compose_form.sensitive.hide": "Позначити медіа як дражливе",
@@ -103,7 +107,7 @@
   "confirmations.logout.confirm": "Вийти",
   "confirmations.logout.message": "Ви впевнені, що хочете вийти?",
   "confirmations.mute.confirm": "Заглушити",
-  "confirmations.mute.explanation": "This will hide posts from them and posts mentioning them, but it will still allow them to see your posts and follow you.",
+  "confirmations.mute.explanation": "Це приховає пости від них і пости зі згадками про них, проте вони все одно матимуть змогу бачити ваші пости і підписуватися на вас.",
   "confirmations.mute.message": "Ви впевнені, що хочете заглушити {name}?",
   "confirmations.redraft.confirm": "Видалити та перестворити",
   "confirmations.redraft.message": "Ви впевнені, що хочете видалити допис і перестворити його? Ви втратите всі відповіді, передмухи та вподобайки допису.",
@@ -114,7 +118,7 @@
   "conversation.delete": "Видалити цю бесіду",
   "conversation.mark_as_read": "Позначити як прочитане",
   "conversation.open": "Переглянути бесіду",
-  "conversation.with": "With {names}",
+  "conversation.with": "З {names}",
   "directory.federated": "З відомого федесвіту",
   "directory.local": "Тільки з домену {domain}",
   "directory.new_arrivals": "Нові надходження",
@@ -138,6 +142,7 @@
   "empty_column.account_timeline": "Тут дмухалок немає!",
   "empty_column.account_unavailable": "Профіль недоступний",
   "empty_column.blocks": "Ви ще не заблокували жодного користувача.",
+  "empty_column.bookmarked_statuses": "У вас ще немає дмухів у закладках. Коли ви щось додасте до заклкдок, воно з'явиться тут.",
   "empty_column.community": "Локальна стрічка пуста. Напишіть щось, щоб розігріти народ!",
   "empty_column.direct": "У вас ще немає прямих повідомлень. Коли ви відправите чи отримаєте якесь, воно з'явиться тут.",
   "empty_column.domain_blocks": "Тут поки немає прихованих доменів.",
@@ -152,10 +157,10 @@
   "empty_column.mutes": "Ви ще не заглушили жодного користувача.",
   "empty_column.notifications": "У вас ще немає сповіщень. Переписуйтесь з іншими користувачами, щоб почати розмову.",
   "empty_column.public": "Тут поки нічого немає! Опублікуйте щось, або вручну підпишіться на користувачів інших інстанцій, щоб заповнити стрічку",
-  "error.unexpected_crash.explanation": "Due to a bug in our code or a browser compatibility issue, this page could not be displayed correctly.",
-  "error.unexpected_crash.next_steps": "Try refreshing the page. If that does not help, you may still be able to use Mastodon through a different browser or native app.",
-  "errors.unexpected_crash.copy_stacktrace": "Copy stacktrace to clipboard",
-  "errors.unexpected_crash.report_issue": "Report issue",
+  "error.unexpected_crash.explanation": "Ця сторінка не може бути коректно відображена через баґ у нашому коді або через проблему сумісності браузера.",
+  "error.unexpected_crash.next_steps": "Спробуйте перезавантажити сторінку. Якщо це не допоможе, ви все ще зможете використовувати Mastodon через інший браузер або рідний додаток.",
+  "errors.unexpected_crash.copy_stacktrace": "Скопіювати трасування стека у буфер обміну",
+  "errors.unexpected_crash.report_issue": "Повідомити про проблему",
   "federation.change": "Adjust status federation",
   "federation.federated.long": "Allow toot to reach other instances",
   "federation.federated.short": "Federated",
@@ -224,6 +229,7 @@
   "keyboard_shortcuts.muted": "відкрити список заглушених користувачів",
   "keyboard_shortcuts.my_profile": "відкрити ваш профіль",
   "keyboard_shortcuts.notifications": "відкрити колонку сповіщень",
+  "keyboard_shortcuts.open_media": "to open media",
   "keyboard_shortcuts.pinned": "відкрити список закріплених дмухів",
   "keyboard_shortcuts.profile": "відкрити профіль автора",
   "keyboard_shortcuts.reply": "відповісти",
@@ -256,6 +262,7 @@
   "mute_modal.hide_notifications": "Приховати сповіщення від користувача?",
   "navigation_bar.apps": "Мобільні додатки",
   "navigation_bar.blocks": "Заблоковані користувачі",
+  "navigation_bar.bookmarks": "Закладки",
   "navigation_bar.community_timeline": "Локальна стрічка",
   "navigation_bar.compose": "Написати новий дмух",
   "navigation_bar.direct": "Прямі повідомлення",
@@ -278,7 +285,9 @@
   "navigation_bar.security": "Безпека",
   "notification.favourite": "{name} вподобав(-ла) ваш допис",
   "notification.follow": "{name} підписався(-лась) на Вас",
+  "notification.follow_request": "{name} хоче підписатися на Вас",
   "notification.mention": "{name} згадав(-ла) Вас",
+  "notification.own_poll": "Ваше опитування завершено",
   "notification.poll": "Опитування, у якому ви голосували, закінчилося",
   "notification.reblog": "{name} передмухнув(-ла) Ваш допис",
   "notifications.clear": "Очистити сповіщення",
@@ -289,6 +298,7 @@
   "notifications.column_settings.filter_bar.category": "Панель швидкого фільтру",
   "notifications.column_settings.filter_bar.show": "Показати",
   "notifications.column_settings.follow": "Нові підписники:",
+  "notifications.column_settings.follow_request": "Нові запити на підписку:",
   "notifications.column_settings.mention": "Згадки:",
   "notifications.column_settings.poll": "Результати опитування:",
   "notifications.column_settings.push": "Push-сповіщення",
@@ -304,10 +314,10 @@
   "notifications.group": "{count} сповіщень",
   "poll.closed": "Закрито",
   "poll.refresh": "Оновити",
-  "poll.total_people": "{count, plural, one {# person} other {# people}}",
+  "poll.total_people": "{count, plural, one {# особа} other {# осіб}}",
   "poll.total_votes": "{count, plural, one {# голос} few {# голоси} many {# голосів} other {# голосів}}",
   "poll.vote": "Проголосувати",
-  "poll.voted": "You voted for this answer",
+  "poll.voted": "Ви голосували за цю відповідь",
   "poll_button.add_poll": "Додати опитування",
   "poll_button.remove_poll": "Видалити опитування",
   "privacy.change": "Змінити видимість допису",
@@ -349,6 +359,7 @@
   "status.admin_account": "Відкрити інтерфейс модерації для @{name}",
   "status.admin_status": "Відкрити цей статус в інтерфейсі модерації",
   "status.block": "Заблокувати @{name}",
+  "status.bookmark": "У закладки",
   "status.cancel_reblog_private": "Відмінити передмухання",
   "status.cannot_reblog": "Цей допис не може бути передмухнутий",
   "status.copy": "Копіювати посилання до статусу",
@@ -374,15 +385,16 @@
   "status.reblogged_by": "{name} передмухнув(-ла)",
   "status.reblogs.empty": "Ніхто ще не передмухнув цього дмуху. Коли якісь користувачі це зроблять, вони будуть відображені тут.",
   "status.redraft": "Видалити та перестворити",
+  "status.remove_bookmark": "Видалити закладку",
   "status.reply": "Відповісти",
   "status.replyAll": "Відповісти на ланцюжок",
   "status.report": "Поскаржитися на @{name}",
   "status.sensitive_warning": "Дражливий зміст",
   "status.share": "Поділитися",
   "status.show_less": "Згорнути",
-  "status.show_less_all": "Show less for all",
+  "status.show_less_all": "Показувати менше для всіх",
   "status.show_more": "Розгорнути",
-  "status.show_more_all": "Show more for all",
+  "status.show_more_all": "Показувати більше для всіх",
   "status.show_thread": "Показати ланцюжок",
   "status.uncached_media_warning": "Недоступно",
   "status.unmute_conversation": "Зняти глушення з діалогу",
@@ -397,7 +409,7 @@
   "time_remaining.days": "{number, plural, one {# день} few {# дні} other {# днів}}",
   "time_remaining.hours": "{number, plural, one {# година} few {# години} other {# годин}}",
   "time_remaining.minutes": "{number, plural, one {# хвилина} few {# хвилини} other {# хвилин}}",
-  "time_remaining.moments": "Moments remaining",
+  "time_remaining.moments": "Залишилось секунд",
   "time_remaining.seconds": "{number, plural, one {# секунда} few {# секунди} other {# секунд}}",
   "trends.count_by_accounts": "{count} {rawCount, plural, one {людина} few {людини} many {людей} other {людей}} обговорюють це",
   "trends.trending_now": "Актуальні",
@@ -406,9 +418,11 @@
   "upload_button.label": "Додати медіаконтент ({formats})",
   "upload_error.limit": "Ліміт завантаження файлів перевищено.",
   "upload_error.poll": "Не можна завантажувати файли до опитувань.",
+  "upload_form.audio_description": "Опишіть для людей із вадами слуху",
   "upload_form.description": "Опишіть для людей з вадами зору",
   "upload_form.edit": "Змінити",
   "upload_form.undo": "Видалити",
+  "upload_form.video_description": "Опишіть для людей із вадами слуху або зору",
   "upload_modal.analyzing_picture": "Аналізуємо малюнок…",
   "upload_modal.apply": "Застосувати",
   "upload_modal.description_placeholder": "Щурячий бугай із їжаком-харцизом в'ючись підписали ґешефт у єнах",
@@ -418,6 +432,7 @@
   "upload_modal.preview_label": "Переглянути ({ratio})",
   "upload_progress.label": "Завантаження...",
   "video.close": "Закрити відео",
+  "video.download": "Завантаження файла",
   "video.exit_fullscreen": "Вийти з повноекранного режиму",
   "video.expand": "Розширити відео",
   "video.fullscreen": "На весь екран",
diff --git a/app/javascript/mastodon/locales/ur.json b/app/javascript/mastodon/locales/ur.json
new file mode 100644
index 0000000000000000000000000000000000000000..6f14ad3c66f3ac961ec15f914522911c6fd96710
--- /dev/null
+++ b/app/javascript/mastodon/locales/ur.json
@@ -0,0 +1,438 @@
+{
+  "account.add_or_remove_from_list": "فہرست میں شامل یا برطرف کریں",
+  "account.badges.bot": "روبوٹ",
+  "account.badges.group": "Group",
+  "account.block": "مسدود @{name}",
+  "account.block_domain": "{domain} سے سب چھپائیں",
+  "account.blocked": "مسدود کردہ",
+  "account.cancel_follow_request": "درخواستِ پیروی منسوخ کریں",
+  "account.direct": "راست پیغام @{name}",
+  "account.domain_blocked": "پوشیدہ ڈومین",
+  "account.edit_profile": "مشخص ترمیم کریں",
+  "account.endorse": "مشکص پر نمایاں کریں",
+  "account.follow": "پیروی کریں",
+  "account.followers": "پیروکار",
+  "account.followers.empty": "\"ہنوز اس صارف کی کوئی پیروی نہیں کرتا\".",
+  "account.follows": "پیروی کرتے ہیں",
+  "account.follows.empty": "\"یہ صارف ہنوز کسی کی پیروی نہیں کرتا ہے\".",
+  "account.follows_you": "آپ کا پیروکار ہے",
+  "account.hide_reblogs": "@{name} سے فروغ چھپائیں",
+  "account.last_status": "آخری فعال",
+  "account.link_verified_on": "اس لنک کی ملکیت کی توثیق {date} پر کی گئی تھی",
+  "account.locked_info": "اس اکاونٹ کا اخفائی ضابطہ مقفل ہے۔ صارف کی پیروی کون کر سکتا ہے اس کا جائزہ وہ خود لیتا ہے.",
+  "account.media": "وسائل",
+  "account.mention": "ذکر @{name}",
+  "account.moved_to": "{name} منتقل ہگیا ہے بہ:",
+  "account.mute": "خاموش @{name}",
+  "account.mute_notifications": "@{name} سے اطلاعات خاموش کریں",
+  "account.muted": "خاموش کردہ",
+  "account.never_active": "کبھی نہیں",
+  "account.posts": "ٹوٹ",
+  "account.posts_with_replies": "ٹوٹ اور جوابات",
+  "account.report": "@{name} اطلاع کریں",
+  "account.requested": "منظوری کا منتظر۔ درخواستِ پیروی منسوخ کرنے کیلئے کلک کریں",
+  "account.share": "@{name} کے مشخص کو بانٹیں",
+  "account.show_reblogs": "@{name} کی افزائشات کو دکھائیں",
+  "account.unblock": "@{name} کو بحال کریں",
+  "account.unblock_domain": "{domain} کو نہ چھپائیں",
+  "account.unendorse": "مشخص پر نمایاں نہ کریں",
+  "account.unfollow": "پیروی ترک کریں",
+  "account.unmute": "@{name} کو با آواز کریں",
+  "account.unmute_notifications": "@{name} سے اطلاعات کو با آواز کریں",
+  "alert.rate_limited.message": "\"{retry_time, time, medium} کے بعد کوشش کریں\".",
+  "alert.rate_limited.title": "Rate limited",
+  "alert.unexpected.message": "ایک غیر متوقع سہو ہوا ہے.",
+  "alert.unexpected.title": "ا رے!",
+  "autosuggest_hashtag.per_week": "{count} فی ہفتہ",
+  "boost_modal.combo": "آئیندہ یہ نہ دیکھنے کیلئے آپ {combo} دبا سکتے ہیں",
+  "bundle_column_error.body": "اس عنصر کو برآمد کرتے وقت کچھ خرابی پیش آئی ہے.",
+  "bundle_column_error.retry": "دوبارہ کوشش کریں",
+  "bundle_column_error.title": "نیٹ ورک کی خرابی",
+  "bundle_modal_error.close": "بند کریں",
+  "bundle_modal_error.message": "اس عنصر کو برآمد کرتے وقت کچھ خرابی پیش آئی ہے.",
+  "bundle_modal_error.retry": "دوبارہ کوشش کریں",
+  "column.blocks": "مسدود صارفین",
+  "column.bookmarks": "Bookmarks",
+  "column.community": "مقامی زمانی جدول",
+  "column.direct": "راست پیغام",
+  "column.directory": "مشخصات کا مطالعہ کریں",
+  "column.domain_blocks": "پوشیدہ ڈومین",
+  "column.favourites": "پسندیدہ",
+  "column.follow_requests": "پیروی درخواست",
+  "column.home": "خانہ",
+  "column.lists": "فہرستیں",
+  "column.mutes": "خاموش کردہ صارفین",
+  "column.notifications": "اطلاعات",
+  "column.pins": "چسپاں ٹوٹ",
+  "column.public": "مجموعی زمانی جدول",
+  "column_back_button.label": "واپس",
+  "column_header.hide_settings": "ترتیبات کو چھپائیں",
+  "column_header.moveLeft_settings": "کالم کو بائیں جانب منتقل کریں",
+  "column_header.moveRight_settings": "کالم کو دائیں جانب منتقل کریں",
+  "column_header.pin": "چسپاں کریں",
+  "column_header.show_settings": "ترتیبات دکھائیں",
+  "column_header.unpin": "رہا کریں",
+  "column_subheading.settings": "ترتیبات",
+  "community.column_settings.media_only": "وسائل فقط",
+  "compose_form.direct_message_warning": "یہ ٹوٹ صرف مذکورہ صارفین کو بھیجا جائے گا.",
+  "compose_form.direct_message_warning_learn_more": "مزید جانیں",
+  "compose_form.hashtag_warning": "چونکہ یہ ٹوٹ غیر مندرجہ ہے لہذا یہ کسی بھی ہیش ٹیگ کے تحت درج نہیں کیا جائے گا. ہیش ٹیگ کے تحت صرف \nعمومی ٹوٹ تلاش کئے جا سکتے ہیں.",
+  "compose_form.lock_disclaimer": "آپ کا اکاؤنٹ {locked} نہیں ہے. کوئی بھی آپ کے مخصوص برائے پیروکار ٹوٹ دیکھنے کی خاطر آپ کی پیروی کر سکتا ہے.",
+  "compose_form.lock_disclaimer.lock": "مقفل",
+  "compose_form.placeholder": "آپ کیا سوچ رہے ہیں؟",
+  "compose_form.poll.add_option": "انتخاب شامل کریں",
+  "compose_form.poll.duration": "مدتِ رائے",
+  "compose_form.poll.option_placeholder": "انتخاب {number}",
+  "compose_form.poll.remove_option": "یہ انتخاب ہٹا دیں",
+  "compose_form.poll.switch_to_multiple": "Change poll to allow multiple choices",
+  "compose_form.poll.switch_to_single": "Change poll to allow for a single choice",
+  "compose_form.publish": "ٹوٹ",
+  "compose_form.publish_loud": "{publish}!",
+  "compose_form.sensitive.hide": "وسائل کو حساس نشاندہ کریں",
+  "compose_form.sensitive.marked": "وسائل حساس نشاندہ ہے",
+  "compose_form.sensitive.unmarked": "Media is not marked as sensitive",
+  "compose_form.spoiler.marked": "Text is hidden behind warning",
+  "compose_form.spoiler.unmarked": "Text is not hidden",
+  "compose_form.spoiler_placeholder": "Write your warning here",
+  "confirmation_modal.cancel": "Cancel",
+  "confirmations.block.block_and_report": "Block & Report",
+  "confirmations.block.confirm": "Block",
+  "confirmations.block.message": "Are you sure you want to block {name}?",
+  "confirmations.delete.confirm": "Delete",
+  "confirmations.delete.message": "Are you sure you want to delete this status?",
+  "confirmations.delete_list.confirm": "Delete",
+  "confirmations.delete_list.message": "Are you sure you want to permanently delete this list?",
+  "confirmations.domain_block.confirm": "Hide entire domain",
+  "confirmations.domain_block.message": "Are you really, really sure you want to block the entire {domain}? In most cases a few targeted blocks or mutes are sufficient and preferable. You will not see content from that domain in any public timelines or your notifications. Your followers from that domain will be removed.",
+  "confirmations.logout.confirm": "Log out",
+  "confirmations.logout.message": "Are you sure you want to log out?",
+  "confirmations.mute.confirm": "Mute",
+  "confirmations.mute.explanation": "This will hide posts from them and posts mentioning them, but it will still allow them to see your posts and follow you.",
+  "confirmations.mute.message": "Are you sure you want to mute {name}?",
+  "confirmations.redraft.confirm": "Delete & redraft",
+  "confirmations.redraft.message": "Are you sure you want to delete this status and re-draft it? Favourites and boosts will be lost, and replies to the original post will be orphaned.",
+  "confirmations.reply.confirm": "Reply",
+  "confirmations.reply.message": "Replying now will overwrite the message you are currently composing. Are you sure you want to proceed?",
+  "confirmations.unfollow.confirm": "Unfollow",
+  "confirmations.unfollow.message": "Are you sure you want to unfollow {name}?",
+  "conversation.delete": "Delete conversation",
+  "conversation.mark_as_read": "Mark as read",
+  "conversation.open": "View conversation",
+  "conversation.with": "With {names}",
+  "directory.federated": "From known fediverse",
+  "directory.local": "From {domain} only",
+  "directory.new_arrivals": "New arrivals",
+  "directory.recently_active": "Recently active",
+  "embed.instructions": "Embed this status on your website by copying the code below.",
+  "embed.preview": "Here is what it will look like:",
+  "emoji_button.activity": "Activity",
+  "emoji_button.custom": "Custom",
+  "emoji_button.flags": "Flags",
+  "emoji_button.food": "Food & Drink",
+  "emoji_button.label": "Insert emoji",
+  "emoji_button.nature": "Nature",
+  "emoji_button.not_found": "No emojos!! (╯°□°)╯︵ ┻━┻",
+  "emoji_button.objects": "Objects",
+  "emoji_button.people": "People",
+  "emoji_button.recent": "Frequently used",
+  "emoji_button.search": "Search...",
+  "emoji_button.search_results": "Search results",
+  "emoji_button.symbols": "Symbols",
+  "emoji_button.travel": "Travel & Places",
+  "empty_column.account_timeline": "یہاں کوئی نوٹس نہیں ہیں!",
+  "empty_column.account_unavailable": "مشخص دستیاب نہیں ہے",
+  "empty_column.blocks": "آپ نے ابھی کسی صارف کو مسدود نہیں کیا ہے.",
+  "empty_column.bookmarked_statuses": "You don't have any bookmarked toots yet. When you bookmark one, it will show up here.",
+  "empty_column.community": "مقامی جدول خالی ہے. کچھ تحریر کریں تاکہ بات آگے بڑھے!",
+  "empty_column.direct": "آپ کیلئے کوئی راست پیغام نہیں ہے. جب آپ بھیجیں گے یا وصول کریں گے، یہاں نظر آئےگا.",
+  "empty_column.domain_blocks": "ابھی تک کوئی چھپا ہوا ڈومین نہیں ہے.",
+  "empty_column.favourited_statuses": "آپ کا کوئی پسندیدہ ٹوٹ نہیں ہے. جب آپ پسند کریں گے، یہاں نظر آئےگا.",
+  "empty_column.favourites": "ابھی تک کسی نے بھی اس ٹوٹ کو پسند نہیں کیا ہے. جب بھی کوئی اسے پسند کرے گا، ان کا نام یہاں نظر آئے گا.",
+  "empty_column.follow_requests": "ابھی تک آپ کی پیری کرنے کی درخواست نہیں کی ہے. جب کوئی درخواست کرے گا، ان کا نام یہاں نظر آئے گا.",
+  "empty_column.hashtag": "ابھی یہ ہیش ٹیگ خالی ہے.",
+  "empty_column.home": "آپ کا خانگی جدول خالی ہے! {public} دیکھیں یا شروعات کیلئے تلاش کریں اور دیگر صارفین سے ملیں.",
+  "empty_column.home.public_timeline": "جدولِ عام",
+  "empty_column.list": "یہ فہرست ابھی خالی ہے. جب اس فہرست کے ارکان کچھ تحریر کریں گے، یہاں نظر آئے گا.",
+  "empty_column.lists": "ابھی آپ کی کوئی فہرست نہیں ہے. جب آپ بنائیں گے، وہ یہاں نظر آئے گی.",
+  "empty_column.mutes": "آپ نے ابھی کسی صارف کو خاموش نہیں کیا ہے.",
+  "empty_column.notifications": "ابھی آپ کیلئے کوئی اطلاعات نہیں ہیں. گفتگو شروع کرنے کے لئے دیگر صارفین سے متعامل ہوں.",
+  "empty_column.public": "یہاں کچھ بھی نہیں ہے! کچھ عمومی تحریر کریں یا اس جگہ کو پُر کرنے کے لئے از خود دیگر سرورس کے صارفین کی پیروی کریں",
+  "error.unexpected_crash.explanation": "Due to a bug in our code or a browser compatibility issue, this page could not be displayed correctly.",
+  "error.unexpected_crash.next_steps": "صفحے کو تازہ کرنے کی کوشش کریں. اگر کارآمد نہ ہو تو آپ کسی دیگر براؤزر یا مقامی ایپ سے ہنوز ماسٹوڈون استعمال کر سکتے ہیں.",
+  "errors.unexpected_crash.copy_stacktrace": "Copy stacktrace to clipboard",
+  "errors.unexpected_crash.report_issue": "مسئلہ کی اطلاع کریں",
+  "follow_request.authorize": "اجازت دیں",
+  "follow_request.reject": "انکار کریں",
+  "getting_started.developers": "Developers",
+  "getting_started.directory": "فہرست مشخصات",
+  "getting_started.documentation": "اسناد",
+  "getting_started.heading": "آغاز کریں",
+  "getting_started.invite": "دوستوں کو دعوت دیں",
+  "getting_started.open_source_notice": "ماسٹوڈون آزاد منبع سوفٹویر ہے. آپ {github} گِٹ ہب پر مسائل میں معاونت یا مشکلات کی اطلاع دے سکتے ہیں.",
+  "getting_started.security": "ترتیباتِ اکاؤنٹ",
+  "getting_started.terms": "شرائط خدمات",
+  "hashtag.column_header.tag_mode.all": "اور {additional}",
+  "hashtag.column_header.tag_mode.any": "یا {additional}",
+  "hashtag.column_header.tag_mode.none": "بغیر {additional}",
+  "hashtag.column_settings.select.no_options_message": "کوئی ترغیبات نہیں ملیں",
+  "hashtag.column_settings.select.placeholder": "ہیش ٹیگ داخل کریں…",
+  "hashtag.column_settings.tag_mode.all": "یہ تمام",
+  "hashtag.column_settings.tag_mode.any": "ان میں سے کوئی",
+  "hashtag.column_settings.tag_mode.none": "ان میں سے کوئی بھی نہیں",
+  "hashtag.column_settings.tag_toggle": "اس کالم کے لئے مزید ٹیگز شامل کریں",
+  "home.column_settings.basic": "بنیادی",
+  "home.column_settings.show_reblogs": "افزائشات دکھائیں",
+  "home.column_settings.show_replies": "جوابات دکھائیں",
+  "intervals.full.days": "{number, plural, one {# روز} other {# روز}}",
+  "intervals.full.hours": "{number, plural, one {# ساعت} other {# ساعت}}",
+  "intervals.full.minutes": "{number, plural, one {# minute} other {# minutes}}",
+  "introduction.federation.action": "اگلا",
+  "introduction.federation.federated.headline": "مجموعی",
+  "introduction.federation.federated.text": "Public posts from other servers of the fediverse will appear in the federated timeline.",
+  "introduction.federation.home.headline": "Home",
+  "introduction.federation.home.text": "Posts from people you follow will appear in your home feed. You can follow anyone on any server!",
+  "introduction.federation.local.headline": "Local",
+  "introduction.federation.local.text": "Public posts from people on the same server as you will appear in the local timeline.",
+  "introduction.interactions.action": "Finish toot-orial!",
+  "introduction.interactions.favourite.headline": "Favourite",
+  "introduction.interactions.favourite.text": "You can save a toot for later, and let the author know that you liked it, by favouriting it.",
+  "introduction.interactions.reblog.headline": "Boost",
+  "introduction.interactions.reblog.text": "You can share other people's toots with your followers by boosting them.",
+  "introduction.interactions.reply.headline": "Reply",
+  "introduction.interactions.reply.text": "You can reply to other people's and your own toots, which will chain them together in a conversation.",
+  "introduction.welcome.action": "Let's go!",
+  "introduction.welcome.headline": "First steps",
+  "introduction.welcome.text": "Welcome to the fediverse! In a few moments, you'll be able to broadcast messages and talk to your friends across a wide variety of servers. But this server, {domain}, is special—it hosts your profile, so remember its name.",
+  "keyboard_shortcuts.back": "to navigate back",
+  "keyboard_shortcuts.blocked": "to open blocked users list",
+  "keyboard_shortcuts.boost": "to boost",
+  "keyboard_shortcuts.column": "to focus a status in one of the columns",
+  "keyboard_shortcuts.compose": "to focus the compose textarea",
+  "keyboard_shortcuts.description": "Description",
+  "keyboard_shortcuts.direct": "to open direct messages column",
+  "keyboard_shortcuts.down": "to move down in the list",
+  "keyboard_shortcuts.enter": "to open status",
+  "keyboard_shortcuts.favourite": "to favourite",
+  "keyboard_shortcuts.favourites": "to open favourites list",
+  "keyboard_shortcuts.federated": "to open federated timeline",
+  "keyboard_shortcuts.heading": "Keyboard Shortcuts",
+  "keyboard_shortcuts.home": "to open home timeline",
+  "keyboard_shortcuts.hotkey": "Hotkey",
+  "keyboard_shortcuts.legend": "to display this legend",
+  "keyboard_shortcuts.local": "to open local timeline",
+  "keyboard_shortcuts.mention": "to mention author",
+  "keyboard_shortcuts.muted": "to open muted users list",
+  "keyboard_shortcuts.my_profile": "to open your profile",
+  "keyboard_shortcuts.notifications": "to open notifications column",
+  "keyboard_shortcuts.open_media": "to open media",
+  "keyboard_shortcuts.pinned": "to open pinned toots list",
+  "keyboard_shortcuts.profile": "to open author's profile",
+  "keyboard_shortcuts.reply": "to reply",
+  "keyboard_shortcuts.requests": "to open follow requests list",
+  "keyboard_shortcuts.search": "to focus search",
+  "keyboard_shortcuts.start": "to open \"get started\" column",
+  "keyboard_shortcuts.toggle_hidden": "to show/hide text behind CW",
+  "keyboard_shortcuts.toggle_sensitivity": "to show/hide media",
+  "keyboard_shortcuts.toot": "to start a brand new toot",
+  "keyboard_shortcuts.unfocus": "to un-focus compose textarea/search",
+  "keyboard_shortcuts.up": "to move up in the list",
+  "lightbox.close": "Close",
+  "lightbox.next": "Next",
+  "lightbox.previous": "Previous",
+  "lightbox.view_context": "View context",
+  "lists.account.add": "Add to list",
+  "lists.account.remove": "Remove from list",
+  "lists.delete": "Delete list",
+  "lists.edit": "Edit list",
+  "lists.edit.submit": "Change title",
+  "lists.new.create": "Add list",
+  "lists.new.title_placeholder": "New list title",
+  "lists.search": "Search among people you follow",
+  "lists.subheading": "Your lists",
+  "load_pending": "{count, plural, one {# new item} other {# new items}}",
+  "loading_indicator.label": "Loading...",
+  "media_gallery.toggle_visible": "Toggle visibility",
+  "missing_indicator.label": "Not found",
+  "missing_indicator.sublabel": "This resource could not be found",
+  "mute_modal.hide_notifications": "Hide notifications from this user?",
+  "navigation_bar.apps": "Mobile apps",
+  "navigation_bar.blocks": "Blocked users",
+  "navigation_bar.bookmarks": "Bookmarks",
+  "navigation_bar.community_timeline": "Local timeline",
+  "navigation_bar.compose": "Compose new toot",
+  "navigation_bar.direct": "Direct messages",
+  "navigation_bar.discover": "Discover",
+  "navigation_bar.domain_blocks": "Hidden domains",
+  "navigation_bar.edit_profile": "Edit profile",
+  "navigation_bar.favourites": "Favourites",
+  "navigation_bar.filters": "Muted words",
+  "navigation_bar.follow_requests": "Follow requests",
+  "navigation_bar.follows_and_followers": "Follows and followers",
+  "navigation_bar.info": "About this server",
+  "navigation_bar.keyboard_shortcuts": "Hotkeys",
+  "navigation_bar.lists": "Lists",
+  "navigation_bar.logout": "Logout",
+  "navigation_bar.mutes": "Muted users",
+  "navigation_bar.personal": "Personal",
+  "navigation_bar.pins": "Pinned toots",
+  "navigation_bar.preferences": "Preferences",
+  "navigation_bar.public_timeline": "Federated timeline",
+  "navigation_bar.security": "Security",
+  "notification.favourite": "{name} favourited your status",
+  "notification.follow": "{name} followed you",
+  "notification.follow_request": "{name} has requested to follow you",
+  "notification.mention": "{name} mentioned you",
+  "notification.own_poll": "Your poll has ended",
+  "notification.poll": "A poll you have voted in has ended",
+  "notification.reblog": "{name} boosted your status",
+  "notifications.clear": "Clear notifications",
+  "notifications.clear_confirmation": "Are you sure you want to permanently clear all your notifications?",
+  "notifications.column_settings.alert": "Desktop notifications",
+  "notifications.column_settings.favourite": "Favourites:",
+  "notifications.column_settings.filter_bar.advanced": "Display all categories",
+  "notifications.column_settings.filter_bar.category": "Quick filter bar",
+  "notifications.column_settings.filter_bar.show": "Show",
+  "notifications.column_settings.follow": "New followers:",
+  "notifications.column_settings.follow_request": "New follow requests:",
+  "notifications.column_settings.mention": "Mentions:",
+  "notifications.column_settings.poll": "Poll results:",
+  "notifications.column_settings.push": "Push notifications",
+  "notifications.column_settings.reblog": "Boosts:",
+  "notifications.column_settings.show": "Show in column",
+  "notifications.column_settings.sound": "Play sound",
+  "notifications.filter.all": "All",
+  "notifications.filter.boosts": "Boosts",
+  "notifications.filter.favourites": "Favourites",
+  "notifications.filter.follows": "Follows",
+  "notifications.filter.mentions": "Mentions",
+  "notifications.filter.polls": "Poll results",
+  "notifications.group": "{count} notifications",
+  "poll.closed": "Closed",
+  "poll.refresh": "Refresh",
+  "poll.total_people": "{count, plural, one {# person} other {# people}}",
+  "poll.total_votes": "{count, plural, one {# vote} other {# votes}}",
+  "poll.vote": "Vote",
+  "poll.voted": "You voted for this answer",
+  "poll_button.add_poll": "Add a poll",
+  "poll_button.remove_poll": "Remove poll",
+  "privacy.change": "Adjust status privacy",
+  "privacy.direct.long": "Post to mentioned users only",
+  "privacy.direct.short": "Direct",
+  "privacy.private.long": "Post to followers only",
+  "privacy.private.short": "Followers-only",
+  "privacy.public.long": "Post to public timelines",
+  "privacy.public.short": "Public",
+  "privacy.unlisted.long": "Do not show in public timelines",
+  "privacy.unlisted.short": "Unlisted",
+  "refresh": "Refresh",
+  "regeneration_indicator.label": "Loading…",
+  "regeneration_indicator.sublabel": "Your home feed is being prepared!",
+  "relative_time.days": "{number}d",
+  "relative_time.hours": "{number}h",
+  "relative_time.just_now": "now",
+  "relative_time.minutes": "{number}m",
+  "relative_time.seconds": "{number}s",
+  "reply_indicator.cancel": "Cancel",
+  "report.forward": "Forward to {target}",
+  "report.forward_hint": "The account is from another server. Send an anonymized copy of the report there as well?",
+  "report.hint": "The report will be sent to your server moderators. You can provide an explanation of why you are reporting this account below:",
+  "report.placeholder": "Additional comments",
+  "report.submit": "Submit",
+  "report.target": "Report {target}",
+  "search.placeholder": "Search",
+  "search_popout.search_format": "Advanced search format",
+  "search_popout.tips.full_text": "Simple text returns statuses you have written, favourited, boosted, or have been mentioned in, as well as matching usernames, display names, and hashtags.",
+  "search_popout.tips.hashtag": "hashtag",
+  "search_popout.tips.status": "status",
+  "search_popout.tips.text": "Simple text returns matching display names, usernames and hashtags",
+  "search_popout.tips.user": "user",
+  "search_results.accounts": "People",
+  "search_results.hashtags": "Hashtags",
+  "search_results.statuses": "Toots",
+  "search_results.statuses_fts_disabled": "Searching toots by their content is not enabled on this Mastodon server.",
+  "search_results.total": "{count, number} {count, plural, one {result} other {results}}",
+  "status.admin_account": "Open moderation interface for @{name}",
+  "status.admin_status": "Open this status in the moderation interface",
+  "status.block": "Block @{name}",
+  "status.bookmark": "Bookmark",
+  "status.cancel_reblog_private": "Unboost",
+  "status.cannot_reblog": "This post cannot be boosted",
+  "status.copy": "Copy link to status",
+  "status.delete": "Delete",
+  "status.detailed_status": "Detailed conversation view",
+  "status.direct": "Direct message @{name}",
+  "status.embed": "Embed",
+  "status.favourite": "Favourite",
+  "status.filtered": "Filtered",
+  "status.load_more": "Load more",
+  "status.media_hidden": "Media hidden",
+  "status.mention": "Mention @{name}",
+  "status.more": "More",
+  "status.mute": "Mute @{name}",
+  "status.mute_conversation": "Mute conversation",
+  "status.open": "Expand this status",
+  "status.pin": "Pin on profile",
+  "status.pinned": "Pinned toot",
+  "status.read_more": "Read more",
+  "status.reblog": "Boost",
+  "status.reblog_private": "Boost to original audience",
+  "status.reblogged_by": "{name} boosted",
+  "status.reblogs.empty": "No one has boosted this toot yet. When someone does, they will show up here.",
+  "status.redraft": "Delete & re-draft",
+  "status.remove_bookmark": "Remove bookmark",
+  "status.reply": "Reply",
+  "status.replyAll": "Reply to thread",
+  "status.report": "Report @{name}",
+  "status.sensitive_warning": "Sensitive content",
+  "status.share": "Share",
+  "status.show_less": "Show less",
+  "status.show_less_all": "Show less for all",
+  "status.show_more": "Show more",
+  "status.show_more_all": "Show more for all",
+  "status.show_thread": "Show thread",
+  "status.uncached_media_warning": "Not available",
+  "status.unmute_conversation": "Unmute conversation",
+  "status.unpin": "Unpin from profile",
+  "suggestions.dismiss": "Dismiss suggestion",
+  "suggestions.header": "You might be interested in…",
+  "tabs_bar.federated_timeline": "Federated",
+  "tabs_bar.home": "Home",
+  "tabs_bar.local_timeline": "Local",
+  "tabs_bar.notifications": "Notifications",
+  "tabs_bar.search": "Search",
+  "time_remaining.days": "{number, plural, one {# day} other {# days}} left",
+  "time_remaining.hours": "{number, plural, one {# hour} other {# hours}} left",
+  "time_remaining.minutes": "{number, plural, one {# minute} other {# minutes}} left",
+  "time_remaining.moments": "Moments remaining",
+  "time_remaining.seconds": "{number, plural, one {# second} other {# seconds}} left",
+  "trends.count_by_accounts": "{count} {rawCount, plural, one {person} other {people}} talking",
+  "trends.trending_now": "Trending now",
+  "ui.beforeunload": "Your draft will be lost if you leave Mastodon.",
+  "upload_area.title": "Drag & drop to upload",
+  "upload_button.label": "Add media ({formats})",
+  "upload_error.limit": "File upload limit exceeded.",
+  "upload_error.poll": "File upload not allowed with polls.",
+  "upload_form.audio_description": "Describe for people with hearing loss",
+  "upload_form.description": "Describe for the visually impaired",
+  "upload_form.edit": "Edit",
+  "upload_form.undo": "Delete",
+  "upload_form.video_description": "Describe for people with hearing loss or visual impairment",
+  "upload_modal.analyzing_picture": "Analyzing picture…",
+  "upload_modal.apply": "Apply",
+  "upload_modal.description_placeholder": "A quick brown fox jumps over the lazy dog",
+  "upload_modal.detect_text": "Detect text from picture",
+  "upload_modal.edit_media": "Edit media",
+  "upload_modal.hint": "Click or drag the circle on the preview to choose the focal point which will always be in view on all thumbnails.",
+  "upload_modal.preview_label": "Preview ({ratio})",
+  "upload_progress.label": "Uploading…",
+  "video.close": "Close video",
+  "video.download": "Download file",
+  "video.exit_fullscreen": "Exit full screen",
+  "video.expand": "Expand video",
+  "video.fullscreen": "Full screen",
+  "video.hide": "Hide video",
+  "video.mute": "Mute sound",
+  "video.pause": "Pause",
+  "video.play": "Play",
+  "video.unmute": "Unmute sound"
+}
diff --git a/app/javascript/mastodon/locales/vi.json b/app/javascript/mastodon/locales/vi.json
new file mode 100644
index 0000000000000000000000000000000000000000..d94be9f5bb4371e6750f6bae7a89452177bda1b6
--- /dev/null
+++ b/app/javascript/mastodon/locales/vi.json
@@ -0,0 +1,438 @@
+{
+  "account.add_or_remove_from_list": "Thêm hoặc Xóa khỏi danh sách",
+  "account.badges.bot": "Robot",
+  "account.badges.group": "Nhóm",
+  "account.block": "Chặn @{name}",
+  "account.block_domain": "Ẩn mọi thứ từ {domain}",
+  "account.blocked": "Đã chặn",
+  "account.cancel_follow_request": "Hủy theo yêu cầu",
+  "account.direct": "Nhắn riêng @{name}",
+  "account.domain_blocked": "Miền đã ẩn",
+  "account.edit_profile": "Sửa hồ sơ",
+  "account.endorse": "Đưa lên hồ sơ",
+  "account.follow": "Quan tâm",
+  "account.followers": "Người quan tâm",
+  "account.followers.empty": "Chưa có ai quan tâm",
+  "account.follows": "Đang quan tâm",
+  "account.follows.empty": "Chưa quan tâm ai",
+  "account.follows_you": "Đã quan tâm bạn",
+  "account.hide_reblogs": "Ẩn loan tin từ @{name}",
+  "account.last_status": "Hoạt động lần cuối",
+  "account.link_verified_on": "Quyền sở hữu của liên kết này đã được kiểm tra vào {date}",
+  "account.locked_info": "Tài khoản này đã mở chế độ ẩn. Người sở hữu tài khoản này sẽ tự mình chấp nhận các yêu cầu quan tâm.",
+  "account.media": "Ảnh và video",
+  "account.mention": "Nhắc đến @{name}",
+  "account.moved_to": "{name} đã chuyển đến:",
+  "account.mute": "Ẩn @{name}",
+  "account.mute_notifications": "Tắt thông báo từ @{name}",
+  "account.muted": "Đã ẩn",
+  "account.never_active": "Không bao giờ",
+  "account.posts": "Tút",
+  "account.posts_with_replies": "Tút và trả lời",
+  "account.report": "Báo cáo @{name}",
+  "account.requested": "Đang chờ chấp nhận. Nhấn vào đây để hủy bỏ yêu cầu sau",
+  "account.share": "Chia sẻ hồ sơ @{name}",
+  "account.show_reblogs": "Hiện loan tin các từ @{name}",
+  "account.unblock": "Mở chặn @{name}",
+  "account.unblock_domain": "Bỏ ẩn {domain}",
+  "account.unendorse": "Không đưa lên nổi bật",
+  "account.unfollow": "Ngưng quan tâm",
+  "account.unmute": "Huỷ bỏ qua @{name}",
+  "account.unmute_notifications": "Hiển thị thông báo từ @{name}",
+  "alert.rate_limited.message": "Vui lòng thử lại sau {retry_time, time, Medium}.",
+  "alert.rate_limited.title": "Tỷ lệ giới hạn",
+  "alert.unexpected.message": "Đã xảy ra lỗi không mong muốn.",
+  "alert.unexpected.title": "Ốiii!",
+  "autosuggest_hashtag.per_week": "{tính} mỗi tuần",
+  "boost_modal.combo": "Bạn có thể nhấn {combo} để bỏ qua lần sau",
+  "bundle_column_error.body": "Có gì đó sai sai trong khi tải nội dung này",
+  "bundle_column_error.retry": "Thử lại",
+  "bundle_column_error.title": "Lỗi mạng",
+  "bundle_modal_error.close": "Tắt",
+  "bundle_modal_error.message": "Có gì đó sai sai trong khi tải nội dung này",
+  "bundle_modal_error.retry": "Thử lại",
+  "column.blocks": "Người bị chặn",
+  "column.bookmarks": "Đã lưu",
+  "column.community": "Dòng thời gian của miền",
+  "column.direct": "Tin nhắn",
+  "column.directory": "Duyệt hồ sơ",
+  "column.domain_blocks": "Miền đã ẩn",
+  "column.favourites": "Đã thích",
+  "column.follow_requests": "Yêu cầu quan tâm",
+  "column.home": "Bảng tin",
+  "column.lists": "Danh sách",
+  "column.mutes": "Đã ẩn",
+  "column.notifications": "Thông báo",
+  "column.pins": "Tút được ghim",
+  "column.public": "Dòng thời gian liên kết",
+  "column_back_button.label": "Quay lại",
+  "column_header.hide_settings": "Ẩn các thiết lập",
+  "column_header.moveLeft_settings": "Di chuyển cột sang trái",
+  "column_header.moveRight_settings": "Di chuyển cột sang phải",
+  "column_header.pin": "Ghim",
+  "column_header.show_settings": "Hiển thị cài đặt",
+  "column_header.unpin": "Bỏ ghim",
+  "column_subheading.settings": "Cài đặt",
+  "community.column_settings.media_only": "Chỉ tút có media",
+  "compose_form.direct_message_warning": "Tút này sẽ chỉ gửi cho người được nhắc đến.",
+  "compose_form.direct_message_warning_learn_more": "Tìm hiểu thêm",
+  "compose_form.hashtag_warning": "Tút này sẽ không được xuất hiện khi tìm kiếm theo hashtag vì nó không công khai. Chỉ Tút công khai có thể được tìm kiếm theo hashtag.",
+  "compose_form.lock_disclaimer": "Tài khoản của bạn không được {locked}. Bất cứ ai cũng có thể quan tâm bạn và xem bài viết đi bạn đăng cho người quan tâm",
+  "compose_form.lock_disclaimer.lock": "khóa",
+  "compose_form.placeholder": "Bạn đang nghĩ gì?",
+  "compose_form.poll.add_option": "Thêm lựa chọn",
+  "compose_form.poll.duration": "Thời hạn",
+  "compose_form.poll.option_placeholder": "Lựa chọn {number}",
+  "compose_form.poll.remove_option": "Xóa lựa chọn này",
+  "compose_form.poll.switch_to_multiple": "Sửa thăm dò để cho phép nhiều lựa chọn",
+  "compose_form.poll.switch_to_single": "Sửa thăm dò để cho phép một lựa chọn",
+  "compose_form.publish": "Tút",
+  "compose_form.publish_loud": "{publish}!",
+  "compose_form.sensitive.hide": "Đánh dấu hình ảnh nhạy cảm",
+  "compose_form.sensitive.marked": "Media đã được đánh dấu nhạy cảm",
+  "compose_form.sensitive.unmarked": "Media đã không được đánh dấu nhạy cảm",
+  "compose_form.spoiler.marked": "Văn bản ẩn dấu sau lời cảnh báo",
+  "compose_form.spoiler.unmarked": "Văn bản không bị ẩn",
+  "compose_form.spoiler_placeholder": "Viết cảnh báo của bạn ở đây",
+  "confirmation_modal.cancel": "Hủy bỏ",
+  "confirmations.block.block_and_report": "Chặn và Báo cáo",
+  "confirmations.block.confirm": "Chặn",
+  "confirmations.block.message": "Bạn có chắc chắn muốn chặn {name}?",
+  "confirmations.delete.confirm": "Xóa bỏ",
+  "confirmations.delete.message": "Bạn có chắc chắn muốn xóa tút này?",
+  "confirmations.delete_list.confirm": "Xóa bỏ",
+  "confirmations.delete_list.message": "Bạn có chắc chắn muốn xóa vĩnh viễn danh sách này?",
+  "confirmations.domain_block.confirm": "Ẩn toàn bộ miền",
+  "confirmations.domain_block.message": "Bạn có thực sự, thực sự chắc chắn rằng bạn muốn ẩn toàn bộ từ {domain}? Hầu hết các trường hợp, bạn chỉ cần chặn hoặc ẩn một vài tài khoản thì phù hợp hơn. Ẩn toàn bộ miền khiến bạn sẽ không thấy nội dung từ miền đó trong bất kỳ nơi nào kể cả thông báo. người quan tâm bạn từ miền đó sẽ bị xóa luôn.",
+  "confirmations.logout.confirm": "Đăng xuất",
+  "confirmations.logout.message": "Bạn có chắc chắn bạn muốn thoát?",
+  "confirmations.mute.confirm": "Ẩn",
+  "confirmations.mute.explanation": "Điều này sẽ ẩn bài đăng từ họ và bài viết đề cập đến họ, nhưng nó vẫn sẽ cho phép họ xem bài đăng của bạn và quan tâm bạn.",
+  "confirmations.mute.message": "Bạn có chắc chắn muốn ẩn {name}?",
+  "confirmations.redraft.confirm": "Xóa & đưa vào nháp",
+  "confirmations.redraft.message": "Bạn có chắc chắn muốn xóa tút này và đưa nó vào nháp? Những lượt thích và loan tin tút sẽ bị mất, và những tút trả lời tút này sẽ mất đầu mối.",
+  "confirmations.reply.confirm": "Trả lời",
+  "confirmations.reply.message": "Nội dung bạn đang soạn thảo sẽ bị ghi đè, bạn có tiếp tục?",
+  "confirmations.unfollow.confirm": "Ngưng quan tâm",
+  "confirmations.unfollow.message": "Bạn có chắc chắn muốn ngưng quan tâm {name}?",
+  "conversation.delete": "Xóa cuộc hội thoại",
+  "conversation.mark_as_read": "đánh dấu là đã đọc",
+  "conversation.open": "Xem cuộc hội thoại",
+  "conversation.with": "Với {tên}",
+  "directory.federated": "Từ fediverse được biết đến",
+  "directory.local": "Chỉ từ {domain}",
+  "directory.new_arrivals": "Điểm đến mới",
+  "directory.recently_active": "Mới hoạt động",
+  "embed.instructions": "Nhúng tút này trên trang web của bạn bằng cách sao chép đoạn mã dưới đây.",
+  "embed.preview": "Nó sẽ hiển thị như dưới đây:",
+  "emoji_button.activity": "Hoạt động",
+  "emoji_button.custom": "Riêng",
+  "emoji_button.flags": "Cờ",
+  "emoji_button.food": "Ăn uống",
+  "emoji_button.label": "Chèn biểu emoj",
+  "emoji_button.nature": "Thiên nhiên",
+  "emoji_button.not_found": "Không emojos !! (╯ ° □ °) ╯( ┻━┻",
+  "emoji_button.objects": "Đối tượng",
+  "emoji_button.people": "Người",
+  "emoji_button.recent": "Hay dùng",
+  "emoji_button.search": "Tìm kiếm...",
+  "emoji_button.search_results": "Kết quả tìm kiếm",
+  "emoji_button.symbols": "Biểu tượng",
+  "emoji_button.travel": "Du lịch",
+  "empty_column.account_timeline": "Chưa có tút nào",
+  "empty_column.account_unavailable": "Hồ sơ không truy cập được",
+  "empty_column.blocks": "Bạn chưa chặn ai cả.",
+  "empty_column.bookmarked_statuses": "Bạn chưa lưu tút nào, nếu có sẽ thấy ở đây.",
+  "empty_column.community": "Chưa có gì trong dòng thời gian chung của miền cả, bạn hãy tút gì đó đi!",
+  "empty_column.direct": "Bạn không có bất kỳ tin nhắn trực tiếp nêu ra. Khi bạn gửi hoặc nhận một, nó sẽ hiển thị ở đây.",
+  "empty_column.domain_blocks": "Chưa ẩn miền nào",
+  "empty_column.favourited_statuses": "Bạn chưa thích tút nào, nếu có sẽ thấy ở đây.",
+  "empty_column.favourites": "Chưa ai thích tút này, nếu có bạn sẽ thấy ở đây.",
+  "empty_column.follow_requests": "Bạn chưa có yêu cầu nào. Khi bạn nhận được yêu cầu, nó sẽ hiển ở đây.",
+  "empty_column.hashtag": "Chưa có bài đăng nào sử dụng hashtag này.",
+  "empty_column.home": "Bảng tin của bạn đang trống! Truy cập {public} hoặc sử dụng tìm kiếm để quan tâm và trao đổi với những người khác đi.",
+  "empty_column.home.public_timeline": "Dòng thời gian công khai",
+  "empty_column.list": "Không có gì trong danh sách này là nêu ra. Khi các thành viên của danh sách này gửi trạng thái mới, họ sẽ xuất hiện ở đây.",
+  "empty_column.lists": "Bạn không có bất kỳ danh sách được nêu ra. Khi bạn tạo một, nó sẽ hiển thị ở đây.",
+  "empty_column.mutes": "Bạn chưa tắt bất kỳ người dùng nào.",
+  "empty_column.notifications": "Bạn không có thông báo nào. Tương tác với những người khác để bắt đầu trao đổi.",
+  "empty_column.public": "Chưa có gì cả, bạn hãy đăng gì đó đi đừng để nó trắng trơn",
+  "error.unexpected_crash.explanation": "Do lỗi trong mã của chúng tôi hoặc sự cố tương thích trình duyệt, trang này không thể được hiển thị chính xác.",
+  "error.unexpected_crash.next_steps": "Hãy thử làm mới trang. Nếu điều đó không có ích, bạn vẫn có thể sử dụng Mastodon thông qua một trình duyệt hoặc ứng dụng gốc khác.",
+  "errors.unexpected_crash.copy_stacktrace": "Sao chép stacktrace vào clipboard",
+  "errors.unexpected_crash.report_issue": "Báo cáo phát hành",
+  "follow_request.authorize": "Cho phép",
+  "follow_request.reject": "Từ chối",
+  "getting_started.developers": "Nhà phát triển",
+  "getting_started.directory": "Danh mục thành viên",
+  "getting_started.documentation": "Tài liệu",
+  "getting_started.heading": "Bắt đầu",
+  "getting_started.invite": "Mời bạn bè",
+  "getting_started.open_source_notice": "Mastodon là phần mềm mã nguồn mở. Bạn có thể đóng góp hoặc báo cáo vấn đề gặp phải trên GitHub tại {github}.",
+  "getting_started.security": "Bảo mật",
+  "getting_started.terms": "Điều khoản dịch vụ",
+  "hashtag.column_header.tag_mode.all": "Và {additional} thêm",
+  "hashtag.column_header.tag_mode.any": "Hoặc {additional} thêm",
+  "hashtag.column_header.tag_mode.none": "Mà không {additional} thêm",
+  "hashtag.column_settings.select.no_options_message": "Không tìm thấy đề xuất nào",
+  "hashtag.column_settings.select.placeholder": "Nhập hashtags ...",
+  "hashtag.column_settings.tag_mode.all": "Tất cả những cái này",
+  "hashtag.column_settings.tag_mode.any": "Bất kỳ trong số này",
+  "hashtag.column_settings.tag_mode.none": "Không ai trong số những",
+  "hashtag.column_settings.tag_toggle": "Bao gồm thêm thẻ cho cột này",
+  "home.column_settings.basic": "Cơ bản",
+  "home.column_settings.show_reblogs": "Hiện tút được loan tin",
+  "home.column_settings.show_replies": "Hiện trả lời",
+  "intervals.full.days": "{number} days",
+  "intervals.full.hours": "{number} hours",
+  "intervals.full.minutes": "{number} minutes",
+  "introduction.federation.action": "Tiếp",
+  "introduction.federation.federated.headline": "Miền liên kết",
+  "introduction.federation.federated.text": "Bài đăng công khai từ các miền khác có liên hệ với miền của bạn sẽ xuất hiện ở Dòng thời gian liên kết",
+  "introduction.federation.home.headline": "Bảng tin",
+  "introduction.federation.home.text": "Bài đăng từ những người bạn quan tâm sẽ xuất hiện ở bảng tin của bạn. Bạn có thể quan tâm bất cứ ai trên bất cứ miền nào!",
+  "introduction.federation.local.headline": "Cùng miền",
+  "introduction.federation.local.text": "Bài đăng công khai từ những người trên cùng một miền như bạn sẽ xuất hiện trong Dòng thời gian cùng miền.",
+  "introduction.interactions.action": "Hoàn thành hướng dẫn!",
+  "introduction.interactions.favourite.headline": "Thích",
+  "introduction.interactions.favourite.text": "Bạn có thể lưu tút để sau này xem lại, và để cho các tác giả biết rằng bạn thích tút của họ bằng cách bấm thích tút đó.",
+  "introduction.interactions.reblog.headline": "Loan tin",
+  "introduction.interactions.reblog.text": "Bạn có thể chia sẻ Tút của người khác với những người quan tâm bạn bằng cách loan tin.",
+  "introduction.interactions.reply.headline": "Trả lời",
+  "introduction.interactions.reply.text": "Bạn có thể trả lời tút của những người khác và tút riêng của bạn, từ đó tạo nên những cuộc hội thoại.",
+  "introduction.welcome.action": "Ok đi thôi!",
+  "introduction.welcome.headline": "Bước đầu tiên",
+  "introduction.welcome.text": "Chào mừng bạn đến mạng xã hội đa liên kết! Trong vài phút tới, bạn sẽ có thể phát đi những nội dung và trao đổi với bạn bè của bạn trên một loạt các trang hay còn gọi là các miền. Đặc biệt ở là {domain}, là nơi lưu trữ hồ sơ của bạn, vì vậy đừng quên miền này.",
+  "keyboard_shortcuts.back": "để trở lại",
+  "keyboard_shortcuts.blocked": "để mở danh sách người dùng bị chặn",
+  "keyboard_shortcuts.boost": "để loan tin",
+  "keyboard_shortcuts.column": "để tập trung một tút cụ thể từ một trong các cột",
+  "keyboard_shortcuts.compose": "để vào khung soạn tút",
+  "keyboard_shortcuts.description": "Mô tả",
+  "keyboard_shortcuts.direct": "để mở thư cột trực tiếp",
+  "keyboard_shortcuts.down": "để di chuyển xuống trong danh sách",
+  "keyboard_shortcuts.enter": "để mở trạng thái",
+  "keyboard_shortcuts.favourite": "để thích",
+  "keyboard_shortcuts.favourites": "để mở danh sách yêu thích",
+  "keyboard_shortcuts.federated": "để mở dòng thời gian liên kết",
+  "keyboard_shortcuts.heading": "Các phím tắt",
+  "keyboard_shortcuts.home": "để mở bảng tin",
+  "keyboard_shortcuts.hotkey": "Phím tắt",
+  "keyboard_shortcuts.legend": "để hiển thị bảng hướng dẫn này",
+  "keyboard_shortcuts.local": "để mở dòng thời gian của miền",
+  "keyboard_shortcuts.mention": "để nhắc đến tác giả",
+  "keyboard_shortcuts.muted": "để mở danh sách người dùng tắt tiếng",
+  "keyboard_shortcuts.my_profile": "để mở hồ sơ của bạn",
+  "keyboard_shortcuts.notifications": "để mở thông báo cột",
+  "keyboard_shortcuts.open_media": "để mở media",
+  "keyboard_shortcuts.pinned": "để mở danh sách tút được ghim",
+  "keyboard_shortcuts.profile": "để mở hồ sơ của tác giả",
+  "keyboard_shortcuts.reply": "để trả lời",
+  "keyboard_shortcuts.requests": "để mở danh sách các yêu cầu",
+  "keyboard_shortcuts.search": "để vào ô tìm kiếm",
+  "keyboard_shortcuts.start": "để mở cột \"Bắt đầu\"",
+  "keyboard_shortcuts.toggle_hidden": "để ẩn/hiện đằng sau văn bản CW",
+  "keyboard_shortcuts.toggle_sensitivity": "để hiển thị / ẩn media",
+  "keyboard_shortcuts.toot": "để viết tút mới",
+  "keyboard_shortcuts.unfocus": "để đưa con trỏ ra khỏi ô soạn thảo hoặc ô tìm kiếm",
+  "keyboard_shortcuts.up": "để di chuyển lên trong danh sách",
+  "lightbox.close": "Tắt",
+  "lightbox.next": "Tiếp",
+  "lightbox.previous": "Trước",
+  "lightbox.view_context": "Xem bối cảnh",
+  "lists.account.add": "Thêm vào danh sách",
+  "lists.account.remove": "Xóa khỏi danh sách",
+  "lists.delete": "Xóa danh sách",
+  "lists.edit": "Sửa danh sách",
+  "lists.edit.submit": "Thay đổi tiêu đề",
+  "lists.new.create": "Thêm vào danh sách",
+  "lists.new.title_placeholder": "Tên danh sách mới",
+  "lists.search": "Tìm kiếm trong số những người bạn quan tâm",
+  "lists.subheading": "Danh sách của bạn",
+  "load_pending": "{count, plural, other {}}",
+  "loading_indicator.label": "Đang tải...",
+  "media_gallery.toggle_visible": "Bật/tắt",
+  "missing_indicator.label": "Không tìm thấy",
+  "missing_indicator.sublabel": "Tài liệu này không thể được tìm thấy",
+  "mute_modal.hide_notifications": "Ẩn thông báo từ thành viên này?",
+  "navigation_bar.apps": "Ứng dụng di động",
+  "navigation_bar.blocks": "Người dùng bị chặn",
+  "navigation_bar.bookmarks": "Đã lưu",
+  "navigation_bar.community_timeline": "Dòng thời gian của miền",
+  "navigation_bar.compose": "Soạn tút mới",
+  "navigation_bar.direct": "Tin nhắn trực tiếp",
+  "navigation_bar.discover": "Khám phá",
+  "navigation_bar.domain_blocks": "Miền đã ẩn",
+  "navigation_bar.edit_profile": "Sửa hồ sơ cá nhân",
+  "navigation_bar.favourites": "Đã thích",
+  "navigation_bar.filters": "Nói cách tắt tiếng",
+  "navigation_bar.follow_requests": "Yêu cầu quan tâm",
+  "navigation_bar.follows_and_followers": "Đang quan tâm và được quan tâm",
+  "navigation_bar.info": "Giới thiệu",
+  "navigation_bar.keyboard_shortcuts": "Phím tắt",
+  "navigation_bar.lists": "Danh sách",
+  "navigation_bar.logout": "Đăng xuất",
+  "navigation_bar.mutes": "Người sử dụng tắt tiếng",
+  "navigation_bar.personal": "Cá nhân",
+  "navigation_bar.pins": "Tút được ghim",
+  "navigation_bar.preferences": "Tùy chỉnh",
+  "navigation_bar.public_timeline": "Dòng thời gian liên kết",
+  "navigation_bar.security": "Bảo mật",
+  "notification.favourite": "{name} favourited trạng thái của bạn",
+  "notification.follow": "{name} đã quan tâm bạn",
+  "notification.follow_request": "{name} đã yêu cầu theo dõi bạn",
+  "notification.mention": "{name} nhắc đến bạn",
+  "notification.own_poll": "Cuộc thăm dò của bạn đã kết thúc",
+  "notification.poll": "Một cuộc thăm dò bạn đã bỏ phiếu tại đã kết thúc",
+  "notification.reblog": "{name} loan tin tút của bạn",
+  "notifications.clear": "Xóa thông báo",
+  "notifications.clear_confirmation": "Bạn có chắc chắn muốn xóa vĩnh viễn tất cả các thông báo của mình?",
+  "notifications.column_settings.alert": "Thông báo trên máy tính",
+  "notifications.column_settings.favourite": "Đã thích:",
+  "notifications.column_settings.filter_bar.advanced": "Hiển thị tất cả các loại",
+  "notifications.column_settings.filter_bar.category": "Lọc nhanh",
+  "notifications.column_settings.filter_bar.show": "Hiện",
+  "notifications.column_settings.follow": "Người mới quan tâm :",
+  "notifications.column_settings.follow_request": "Yêu cầu theo dõi mới:",
+  "notifications.column_settings.mention": "Nhắc đến:",
+  "notifications.column_settings.poll": "Kết quả cuộc thăm dò:",
+  "notifications.column_settings.push": "Thông báo đẩy",
+  "notifications.column_settings.reblog": "Loan tin:",
+  "notifications.column_settings.show": "Hiện trong cột",
+  "notifications.column_settings.sound": "Mở tiếng",
+  "notifications.filter.all": "Toàn bộ",
+  "notifications.filter.boosts": "Loan tin",
+  "notifications.filter.favourites": "Đã thích",
+  "notifications.filter.follows": "Quan tâm",
+  "notifications.filter.mentions": "Nhắc đến",
+  "notifications.filter.polls": "Kết quả cuộc thăm dò",
+  "notifications.group": "{count} thông báo",
+  "poll.closed": "Đóng",
+  "poll.refresh": "Làm mới",
+  "poll.total_people": "{count, plural, other {}}",
+  "poll.total_votes": "{count, plural, other {}}",
+  "poll.vote": "Bỏ phiếu",
+  "poll.voted": "Bạn đã bình chọn cho câu trả lời này",
+  "poll_button.add_poll": "Tạo thăm dò",
+  "poll_button.remove_poll": "Bỏ thăm dò",
+  "privacy.change": "Điều chỉnh chế độ của tút",
+  "privacy.direct.long": "Chỉ gửi cho người được nhắc đến",
+  "privacy.direct.short": "Nhắn riêng",
+  "privacy.private.long": "Chỉ người quan tâm mới xem được",
+  "privacy.private.short": "Chỉ người quan tâm",
+  "privacy.public.long": "Đăng lên các dòng thời gian công khai",
+  "privacy.public.short": "Công khai",
+  "privacy.unlisted.long": "Không đăng lên các dòng thời gian công khai",
+  "privacy.unlisted.short": "Không công khai",
+  "refresh": "Làm tươi",
+  "regeneration_indicator.label": "Đang tải…",
+  "regeneration_indicator.sublabel": "Bảng tin của bạn đang được cập nhật!",
+  "relative_time.days": "{number} ngày",
+  "relative_time.hours": "{number} giờ",
+  "relative_time.just_now": "vừa xong",
+  "relative_time.minutes": "{number} phút",
+  "relative_time.seconds": "{number} giây",
+  "reply_indicator.cancel": "Hủy bỏ",
+  "report.forward": "Chuyển đến {target}",
+  "report.forward_hint": "Tài khoản này từ miền khác. Gửi thêm một báo cáo ẩn danh tới miền của tài khoản này?",
+  "report.hint": "Báo cáo này sẽ được gửi đến điều hành viên miền của bạn. Bạn có thể cung cấp lý do tại sao bạn lại báo cáo tài khoản vào này dưới đây:",
+  "report.placeholder": "Ý kiến ​​khác",
+  "report.submit": "Gửi đi",
+  "report.target": "Báo xấu {target}",
+  "search.placeholder": "Tìm kiếm",
+  "search_popout.search_format": "Tìm kiếm nâng cao theo cú pháp",
+  "search_popout.tips.full_text": "Không dùng ký tự đặc biệt sẽ trả về tút của bạn, tút bạn thích, tút bạn loan tin hoặc bạn được nhắc đến, kể cả tên tài khoản, tên hiển thị và hashtag.",
+  "search_popout.tips.hashtag": "hashtag",
+  "search_popout.tips.status": "tút",
+  "search_popout.tips.text": "không dùng ký tự đặc biệt sẽ trả về nội dung tương ứng, tên tài khoản và các hashtag.",
+  "search_popout.tips.user": "thành viên",
+  "search_results.accounts": "Người",
+  "search_results.hashtags": "Hashtags",
+  "search_results.statuses": "Tút",
+  "search_results.statuses_fts_disabled": "Tìm kiếm các tút theo nội dung của chúng không được kích hoạt trên trang Mastodon này.",
+  "search_results.total": "{đếm, số} {đếm, số nhiều, một {kết quả} khác {kết quả}}",
+  "status.admin_account": "Mở giao diện quản trị @{name}",
+  "status.admin_status": "Mở tút này trong giao diện quản trị",
+  "status.block": "Chặn @{name}",
+  "status.bookmark": "Lưu",
+  "status.cancel_reblog_private": "Há»§y loan tin",
+  "status.cannot_reblog": "Không thể loan tin tút này",
+  "status.copy": "Sao chép liên kết đến tút",
+  "status.delete": "Xóa bỏ",
+  "status.detailed_status": "Chi tiết xem cuộc hội thoại",
+  "status.direct": "Nhắn riêng @{name}",
+  "status.embed": "Nhúng",
+  "status.favourite": "Thích",
+  "status.filtered": "Lọc qua",
+  "status.load_more": "Tải thêm",
+  "status.media_hidden": "Media đã ẩn",
+  "status.mention": "Nhắc đến @{name}",
+  "status.more": "Thêm nữa",
+  "status.mute": "Ẩn @{name}",
+  "status.mute_conversation": "Ẩn trao đổi",
+  "status.open": "Mở rộng tút này",
+  "status.pin": "Ghim trong hồ sơ",
+  "status.pinned": "Tút được ghim",
+  "status.read_more": "Đọc thêm",
+  "status.reblog": "Loan tin",
+  "status.reblog_private": "Loan tin đến những người có thể xem",
+  "status.reblogged_by": "{name} loan tin",
+  "status.reblogs.empty": "Chưa ai loan tin tút này, nếu có bạn sẽ thấy ở đây.",
+  "status.redraft": "Xóa & nháp lại",
+  "status.remove_bookmark": "Xóa",
+  "status.reply": "Trả lời",
+  "status.replyAll": "Trả lời chủ đề",
+  "status.report": "Báo cáo @{name}",
+  "status.sensitive_warning": "Nội dung nhạy cảm",
+  "status.share": "Chia sẻ",
+  "status.show_less": "Hiện ít hơn",
+  "status.show_less_all": "Hiển thị ít hơn cho tất cả",
+  "status.show_more": "Xem nhiều hơn",
+  "status.show_more_all": "Hiển thị thêm cho tất cả",
+  "status.show_thread": "Xem chủ đề",
+  "status.uncached_media_warning": "Không có sẵn",
+  "status.unmute_conversation": "Bỏ ẩn hội thoại",
+  "status.unpin": "Bỏ ghim khỏi hồ sơ",
+  "suggestions.dismiss": "Tắt đề xuất",
+  "suggestions.header": "Có thể bạn quan tâm…",
+  "tabs_bar.federated_timeline": "Miền liên kết",
+  "tabs_bar.home": "Bảng tin",
+  "tabs_bar.local_timeline": "Cùng miền",
+  "tabs_bar.notifications": "Thông báo",
+  "tabs_bar.search": "Tìm kiếm",
+  "time_remaining.days": "{number, plural, other {}} left",
+  "time_remaining.hours": "{number, plural, other {}} left",
+  "time_remaining.minutes": "{number, plural, other {}} left",
+  "time_remaining.moments": "Còn lại",
+  "time_remaining.seconds": "{number, plural, other {}} left",
+  "trends.count_by_accounts": "{Count} {rawCount, số nhiều, một {người} khác {người}} nói chuyện",
+  "trends.trending_now": "Đang là xu hướng",
+  "ui.beforeunload": "Bản nháp của bạn sẽ bị mất nếu bạn rời của Mastodon.",
+  "upload_area.title": "Kéo và thả để tải lên",
+  "upload_button.label": "Thêm media (JPEG, PNG, GIF, WebM, MP4, MOV)",
+  "upload_error.limit": "Giới hạn tải lên tập tin vượt quá.",
+  "upload_error.poll": "Không thể tải file lên cùng với thăm dò",
+  "upload_form.audio_description": "Mô tả cho người có vấn đề về thính giác",
+  "upload_form.description": "Mô tả cho người khiếm thị",
+  "upload_form.edit": "Biên tập",
+  "upload_form.undo": "Xóa bỏ",
+  "upload_form.video_description": "Mô tả cho người có vấn đề về thính giác",
+  "upload_modal.analyzing_picture": "Phân tích hình ảnh",
+  "upload_modal.apply": "Ứng dụng",
+  "upload_modal.description_placeholder": "Một con cáo nâu nhanh nhẹn nhảy qua con chó lười",
+  "upload_modal.detect_text": "Phát hiện văn bản từ hình ảnh",
+  "upload_modal.edit_media": "Chỉnh sửa phương tiện truyền thông",
+  "upload_modal.hint": "Nhấp hoặc kéo vòng tròn trên bản xem trước để chọn tiêu điểm sẽ luôn được xem trên tất cả các hình thu nhỏ.",
+  "upload_modal.preview_label": "Xem trước ({tỷ lệ})",
+  "upload_progress.label": "Đang tải lên ...",
+  "video.close": "Đóng video",
+  "video.download": "Download file",
+  "video.exit_fullscreen": "Thoát toàn màn hình",
+  "video.expand": "Mở rộng video",
+  "video.fullscreen": "Toàn màn hình",
+  "video.hide": "Ẩn video",
+  "video.mute": "Tắt tiếng",
+  "video.pause": "Pause",
+  "video.play": "Play",
+  "video.unmute": "Mở tiếng"
+}
diff --git a/app/javascript/mastodon/locales/whitelist_is.json b/app/javascript/mastodon/locales/whitelist_is.json
new file mode 100644
index 0000000000000000000000000000000000000000..0d4f101c7a37a4c875e6999bee1a287fdb733380
--- /dev/null
+++ b/app/javascript/mastodon/locales/whitelist_is.json
@@ -0,0 +1,2 @@
+[
+]
diff --git a/app/javascript/mastodon/locales/whitelist_kab.json b/app/javascript/mastodon/locales/whitelist_kab.json
new file mode 100644
index 0000000000000000000000000000000000000000..0d4f101c7a37a4c875e6999bee1a287fdb733380
--- /dev/null
+++ b/app/javascript/mastodon/locales/whitelist_kab.json
@@ -0,0 +1,2 @@
+[
+]
diff --git a/app/javascript/mastodon/locales/whitelist_kn.json b/app/javascript/mastodon/locales/whitelist_kn.json
new file mode 100644
index 0000000000000000000000000000000000000000..0d4f101c7a37a4c875e6999bee1a287fdb733380
--- /dev/null
+++ b/app/javascript/mastodon/locales/whitelist_kn.json
@@ -0,0 +1,2 @@
+[
+]
diff --git a/app/javascript/mastodon/locales/whitelist_ml.json b/app/javascript/mastodon/locales/whitelist_ml.json
new file mode 100644
index 0000000000000000000000000000000000000000..0d4f101c7a37a4c875e6999bee1a287fdb733380
--- /dev/null
+++ b/app/javascript/mastodon/locales/whitelist_ml.json
@@ -0,0 +1,2 @@
+[
+]
diff --git a/app/javascript/mastodon/locales/whitelist_mr.json b/app/javascript/mastodon/locales/whitelist_mr.json
new file mode 100644
index 0000000000000000000000000000000000000000..0d4f101c7a37a4c875e6999bee1a287fdb733380
--- /dev/null
+++ b/app/javascript/mastodon/locales/whitelist_mr.json
@@ -0,0 +1,2 @@
+[
+]
diff --git a/app/javascript/mastodon/locales/whitelist_ur.json b/app/javascript/mastodon/locales/whitelist_ur.json
new file mode 100644
index 0000000000000000000000000000000000000000..0d4f101c7a37a4c875e6999bee1a287fdb733380
--- /dev/null
+++ b/app/javascript/mastodon/locales/whitelist_ur.json
@@ -0,0 +1,2 @@
+[
+]
diff --git a/app/javascript/mastodon/locales/whitelist_vi.json b/app/javascript/mastodon/locales/whitelist_vi.json
new file mode 100644
index 0000000000000000000000000000000000000000..0d4f101c7a37a4c875e6999bee1a287fdb733380
--- /dev/null
+++ b/app/javascript/mastodon/locales/whitelist_vi.json
@@ -0,0 +1,2 @@
+[
+]
diff --git a/app/javascript/mastodon/locales/zh-CN.json b/app/javascript/mastodon/locales/zh-CN.json
index 0e53f8ffad9930c2521bf6db635498d941973ebd..8081c3485bcee382bd036e296b39654f33808c97 100644
--- a/app/javascript/mastodon/locales/zh-CN.json
+++ b/app/javascript/mastodon/locales/zh-CN.json
@@ -1,6 +1,7 @@
 {
   "account.add_or_remove_from_list": "从列表中添加或删除",
   "account.badges.bot": "机器人",
+  "account.badges.group": "Group",
   "account.block": "屏蔽 @{name}",
   "account.block_domain": "隐藏来自 {domain} 的内容",
   "account.blocked": "已屏蔽",
@@ -16,7 +17,7 @@
   "account.follows.empty": "此用户目前尚未关注任何人。",
   "account.follows_you": "关注了你",
   "account.hide_reblogs": "隐藏来自 @{name} 的转嘟",
-  "account.last_status": "Last active",
+  "account.last_status": "最近活动",
   "account.link_verified_on": "此链接的所有权已在 {date} 检查",
   "account.locked_info": "此账户已锁嘟。账户的主人会手动审核关注者。",
   "account.media": "媒体",
@@ -25,7 +26,7 @@
   "account.mute": "隐藏 @{name}",
   "account.mute_notifications": "隐藏来自 @{name} 的通知",
   "account.muted": "已隐藏",
-  "account.never_active": "Never",
+  "account.never_active": "从未活跃",
   "account.posts": "嘟文",
   "account.posts_with_replies": "嘟文和回复",
   "account.report": "举报 @{name}",
@@ -38,8 +39,8 @@
   "account.unfollow": "取消关注",
   "account.unmute": "不再隐藏 @{name}",
   "account.unmute_notifications": "不再隐藏来自 @{name} 的通知",
-  "alert.rate_limited.message": "Please retry after {retry_time, time, medium}.",
-  "alert.rate_limited.title": "Rate limited",
+  "alert.rate_limited.message": "请在{retry_time, time, medium}后重试。",
+  "alert.rate_limited.title": "频率受限",
   "alert.unexpected.message": "发生了意外错误。",
   "alert.unexpected.title": "哎呀!",
   "autosuggest_hashtag.per_week": "每星期 {count} 条",
@@ -51,11 +52,12 @@
   "bundle_modal_error.message": "载入这个组件时发生了错误。",
   "bundle_modal_error.retry": "重试",
   "column.blocks": "已屏蔽的用户",
+  "column.bookmarks": "书签",
   "column.community": "本站时间轴",
   "column.direct": "私信",
-  "column.directory": "Browse profiles",
+  "column.directory": "浏览用户资料",
   "column.domain_blocks": "已屏蔽的网站",
-  "column.favourites": "收藏",
+  "column.favourites": "喜欢",
   "column.follow_requests": "关注请求",
   "column.home": "主页",
   "column.lists": "列表",
@@ -82,6 +84,8 @@
   "compose_form.poll.duration": "投票持续时间",
   "compose_form.poll.option_placeholder": "选项 {number}",
   "compose_form.poll.remove_option": "移除这个选项",
+  "compose_form.poll.switch_to_multiple": "Change poll to allow multiple choices",
+  "compose_form.poll.switch_to_single": "Change poll to allow for a single choice",
   "compose_form.publish": "嘟嘟",
   "compose_form.publish_loud": "{publish}!",
   "compose_form.sensitive.hide": "标记媒体为敏感内容",
@@ -100,25 +104,25 @@
   "confirmations.delete_list.message": "你确定要永久删除这个列表吗?",
   "confirmations.domain_block.confirm": "隐藏整个网站的内容",
   "confirmations.domain_block.message": "你真的确定要隐藏所有来自 {domain} 的内容吗?多数情况下,屏蔽或隐藏几个特定的用户就已经足够了。来自该网站的内容将不再出现在你的任何公共时间轴或通知列表里。来自该网站的关注者将会被移除。",
-  "confirmations.logout.confirm": "Log out",
-  "confirmations.logout.message": "Are you sure you want to log out?",
+  "confirmations.logout.confirm": "登出",
+  "confirmations.logout.message": "您确定要登出吗?",
   "confirmations.mute.confirm": "隐藏",
-  "confirmations.mute.explanation": "This will hide posts from them and posts mentioning them, but it will still allow them to see your posts and follow you.",
+  "confirmations.mute.explanation": "这将隐藏他们的嘟文以及提到他们的嘟文,但他们仍可以看到你的嘟文并关注你。",
   "confirmations.mute.message": "你确定要隐藏 {name} 吗?",
   "confirmations.redraft.confirm": "删除并重新编辑",
-  "confirmations.redraft.message": "你确定要删除这条嘟文并重新编辑它吗?所有相关的转嘟和收藏都会被清除,回复将会失去关联。",
+  "confirmations.redraft.message": "你确定要删除这条嘟文并重新编辑它吗?所有相关的转嘟和喜欢都会被清除,回复将会失去关联。",
   "confirmations.reply.confirm": "回复",
   "confirmations.reply.message": "回复此消息将会覆盖当前正在编辑的信息。确定继续吗?",
   "confirmations.unfollow.confirm": "取消关注",
   "confirmations.unfollow.message": "你确定要取消关注 {name} 吗?",
-  "conversation.delete": "Delete conversation",
-  "conversation.mark_as_read": "Mark as read",
-  "conversation.open": "View conversation",
-  "conversation.with": "With {names}",
-  "directory.federated": "From known fediverse",
-  "directory.local": "From {domain} only",
-  "directory.new_arrivals": "New arrivals",
-  "directory.recently_active": "Recently active",
+  "conversation.delete": "删除对话",
+  "conversation.mark_as_read": "标记为已读",
+  "conversation.open": "查看对话",
+  "conversation.with": "与 {names}",
+  "directory.federated": "来自联邦宇宙的已知部分",
+  "directory.local": "仅来自 {domain}",
+  "directory.new_arrivals": "新来者",
+  "directory.recently_active": "最近活跃",
   "embed.instructions": "要在你的网站上嵌入这条嘟文,请复制以下代码。",
   "embed.preview": "它会像这样显示出来:",
   "emoji_button.activity": "活动",
@@ -138,11 +142,12 @@
   "empty_column.account_timeline": "这里没有嘟文!",
   "empty_column.account_unavailable": "个人资料不可用",
   "empty_column.blocks": "你目前没有屏蔽任何用户。",
+  "empty_column.bookmarked_statuses": "你还没有给任何嘟文添加过书签。在你添加书签后,嘟文就会显示在这里。",
   "empty_column.community": "本站时间轴暂时没有内容,快写点什么让它动起来吧!",
   "empty_column.direct": "你还没有使用过私信。当你发出或者收到私信时,它会在这里显示。",
   "empty_column.domain_blocks": "目前没有被隐藏的站点。",
-  "empty_column.favourited_statuses": "你还没有收藏过任何嘟文。收藏过的嘟文会显示在这里。",
-  "empty_column.favourites": "没有人收藏过这条嘟文。如果有人收藏了,就会显示在这里。",
+  "empty_column.favourited_statuses": "你还没有喜欢过任何嘟文。喜欢过的嘟文会显示在这里。",
+  "empty_column.favourites": "没有人喜欢过这条嘟文。如果有人喜欢了,就会显示在这里。",
   "empty_column.follow_requests": "你没有收到新的关注请求。收到了之后就会显示在这里。",
   "empty_column.hashtag": "这个话题标签下暂时没有内容。",
   "empty_column.home": "你还没有关注任何用户。快看看{public},向其他人问个好吧。",
@@ -152,10 +157,10 @@
   "empty_column.mutes": "你没有隐藏任何用户。",
   "empty_column.notifications": "你还没有收到过任何通知,快和其他用户互动吧。",
   "empty_column.public": "这里什么都没有!写一些公开的嘟文,或者关注其他服务器的用户后,这里就会有嘟文出现了",
-  "error.unexpected_crash.explanation": "Due to a bug in our code or a browser compatibility issue, this page could not be displayed correctly.",
-  "error.unexpected_crash.next_steps": "Try refreshing the page. If that does not help, you may still be able to use Mastodon through a different browser or native app.",
-  "errors.unexpected_crash.copy_stacktrace": "Copy stacktrace to clipboard",
-  "errors.unexpected_crash.report_issue": "Report issue",
+  "error.unexpected_crash.explanation": "此页面无法正确现实,这可能是因为我们的代码中有错误,也可能是因为浏览器兼容问题。",
+  "error.unexpected_crash.next_steps": "刷新一下页面试试。如果没用,您可以换个浏览器或者用本地应用。",
+  "errors.unexpected_crash.copy_stacktrace": "把堆栈跟踪信息复制到剪贴板",
+  "errors.unexpected_crash.report_issue": "报告问题",
   "federation.change": "Adjust status federation",
   "federation.federated.long": "Allow toot to reach other instances",
   "federation.federated.short": "Federated",
@@ -194,8 +199,8 @@
   "introduction.federation.local.headline": "本站",
   "introduction.federation.local.text": "你所关注的用户的动态会显示在主页里,你可以关注任何服务器上的任何人。",
   "introduction.interactions.action": "教程结束!",
-  "introduction.interactions.favourite.headline": "收藏",
-  "introduction.interactions.favourite.text": "你可以保存嘟文以便以后阅读。或者通过收藏功能告诉作者你点了个赞。",
+  "introduction.interactions.favourite.headline": "喜欢",
+  "introduction.interactions.favourite.text": "通过喜欢一条嘟文,你可以保存它以便以后阅读,并且告诉作者你喜欢它。",
   "introduction.interactions.reblog.headline": "转嘟",
   "introduction.interactions.reblog.text": "通过转嘟,你可以向你的关注者分享其他人的嘟文。",
   "introduction.interactions.reply.headline": "回复",
@@ -212,8 +217,8 @@
   "keyboard_shortcuts.direct": "打开私信栏",
   "keyboard_shortcuts.down": "在列表中让光标下移",
   "keyboard_shortcuts.enter": "展开嘟文",
-  "keyboard_shortcuts.favourite": "收藏嘟文",
-  "keyboard_shortcuts.favourites": "打开收藏列表",
+  "keyboard_shortcuts.favourite": "喜欢嘟文",
+  "keyboard_shortcuts.favourites": "打开喜欢的嘟文列表",
   "keyboard_shortcuts.federated": "打开跨站时间轴",
   "keyboard_shortcuts.heading": "快捷键列表",
   "keyboard_shortcuts.home": "打开主页时间轴",
@@ -224,6 +229,7 @@
   "keyboard_shortcuts.muted": "打开隐藏用户列表",
   "keyboard_shortcuts.my_profile": "打开你的个人资料",
   "keyboard_shortcuts.notifications": "打开通知栏",
+  "keyboard_shortcuts.open_media": "打开媒体",
   "keyboard_shortcuts.pinned": "打开置顶嘟文列表",
   "keyboard_shortcuts.profile": "打开作者的个人资料",
   "keyboard_shortcuts.reply": "回复嘟文",
@@ -256,13 +262,14 @@
   "mute_modal.hide_notifications": "同时隐藏来自这个用户的通知?",
   "navigation_bar.apps": "移动应用",
   "navigation_bar.blocks": "已屏蔽的用户",
+  "navigation_bar.bookmarks": "书签",
   "navigation_bar.community_timeline": "本站时间轴",
   "navigation_bar.compose": "撰写新嘟文",
   "navigation_bar.direct": "私信",
   "navigation_bar.discover": "发现",
   "navigation_bar.domain_blocks": "已屏蔽的网站",
   "navigation_bar.edit_profile": "修改个人资料",
-  "navigation_bar.favourites": "收藏的内容",
+  "navigation_bar.favourites": "喜欢",
   "navigation_bar.filters": "屏蔽关键词",
   "navigation_bar.follow_requests": "关注请求",
   "navigation_bar.follows_and_followers": "关注管理",
@@ -276,19 +283,22 @@
   "navigation_bar.preferences": "首选项",
   "navigation_bar.public_timeline": "跨站公共时间轴",
   "navigation_bar.security": "安全",
-  "notification.favourite": "{name} 收藏了你的嘟文",
+  "notification.favourite": "{name} 喜欢了你的嘟文",
   "notification.follow": "{name} 开始关注你",
+  "notification.follow_request": "{name} 向你发送了关注请求",
   "notification.mention": "{name} 提及了你",
+  "notification.own_poll": "您的投票已经结束",
   "notification.poll": "你参与的一个投票已经结束",
   "notification.reblog": "{name} 转嘟了你的嘟文",
   "notifications.clear": "清空通知列表",
   "notifications.clear_confirmation": "你确定要永久清空通知列表吗?",
   "notifications.column_settings.alert": "桌面通知",
-  "notifications.column_settings.favourite": "当你的嘟文被收藏时:",
+  "notifications.column_settings.favourite": "当你的嘟文被喜欢时:",
   "notifications.column_settings.filter_bar.advanced": "显示所有类别",
   "notifications.column_settings.filter_bar.category": "快速过滤栏",
   "notifications.column_settings.filter_bar.show": "显示",
   "notifications.column_settings.follow": "当有人关注你时:",
+  "notifications.column_settings.follow_request": "新的关注请求:",
   "notifications.column_settings.mention": "当有人在嘟文中提及你时:",
   "notifications.column_settings.poll": "投票结果:",
   "notifications.column_settings.push": "推送通知",
@@ -297,17 +307,17 @@
   "notifications.column_settings.sound": "播放音效",
   "notifications.filter.all": "全部",
   "notifications.filter.boosts": "转嘟",
-  "notifications.filter.favourites": "收藏",
+  "notifications.filter.favourites": "喜欢",
   "notifications.filter.follows": "关注",
   "notifications.filter.mentions": "提及",
   "notifications.filter.polls": "投票结果",
   "notifications.group": "{count} 条通知",
   "poll.closed": "已关闭",
   "poll.refresh": "刷新",
-  "poll.total_people": "{count, plural, one {# person} other {# people}}",
+  "poll.total_people": "{count}人",
   "poll.total_votes": "{count} 票",
   "poll.vote": "投票",
-  "poll.voted": "You voted for this answer",
+  "poll.voted": "您已经对这个答案投过票了",
   "poll_button.add_poll": "发起投票",
   "poll_button.remove_poll": "移除投票",
   "privacy.change": "设置嘟文可见范围",
@@ -319,16 +329,16 @@
   "privacy.public.short": "公开",
   "privacy.unlisted.long": "所有人可见,但不会出现在公共时间轴上",
   "privacy.unlisted.short": "不公开",
-  "refresh": "Refresh",
+  "refresh": "刷新",
   "regeneration_indicator.label": "加载中……",
-  "regeneration_indicator.sublabel": "你的主页时间轴正在准备中!",
+  "regeneration_indicator.sublabel": "你的主页动态正在准备中!",
   "relative_time.days": "{number}天",
   "relative_time.hours": "{number}æ—¶",
   "relative_time.just_now": "刚刚",
   "relative_time.minutes": "{number}分",
   "relative_time.seconds": "{number}ç§’",
   "reply_indicator.cancel": "取消",
-  "report.forward": "发送举报至 {target}",
+  "report.forward": "转发举报至 {target}",
   "report.forward_hint": "这名用户来自另一个服务器。是否要向那个服务器发送一条匿名的举报?",
   "report.hint": "举报将会发送给你所在服务器的监察员。你可以在下面填写举报该用户的理由:",
   "report.placeholder": "备注",
@@ -336,7 +346,7 @@
   "report.target": "举报 {target}",
   "search.placeholder": "搜索",
   "search_popout.search_format": "高级搜索格式",
-  "search_popout.tips.full_text": "输入关键词检索所有你发送、收藏、转嘟过或提及到你的嘟文,以及其他用户公开的用户名、昵称和话题标签。",
+  "search_popout.tips.full_text": "输入关键词检索所有你发送、喜欢、转嘟过或提及到你的嘟文,以及其他用户公开的用户名、昵称和话题标签。",
   "search_popout.tips.hashtag": "话题标签",
   "search_popout.tips.status": "嘟文",
   "search_popout.tips.text": "输入关键词检索昵称、用户名和话题标签",
@@ -349,6 +359,7 @@
   "status.admin_account": "打开 @{name} 的管理界面",
   "status.admin_status": "打开这条嘟文的管理界面",
   "status.block": "屏蔽 @{name}",
+  "status.bookmark": "添加到书签",
   "status.cancel_reblog_private": "取消转嘟",
   "status.cannot_reblog": "这条嘟文不允许被转嘟",
   "status.copy": "复制嘟文链接",
@@ -356,7 +367,7 @@
   "status.detailed_status": "对话详情",
   "status.direct": "发送私信给 @{name}",
   "status.embed": "嵌入",
-  "status.favourite": "收藏",
+  "status.favourite": "喜欢",
   "status.filtered": "已过滤",
   "status.load_more": "加载更多",
   "status.local_only": "This post is only visible by other users of your instance",
@@ -374,6 +385,7 @@
   "status.reblogged_by": "{name} 转嘟了",
   "status.reblogs.empty": "没有人转嘟过此条嘟文。如果有人转嘟了,就会显示在这里。",
   "status.redraft": "删除并重新编辑",
+  "status.remove_bookmark": "移除书签",
   "status.reply": "回复",
   "status.replyAll": "回复所有人",
   "status.report": "举报 @{name}",
@@ -384,7 +396,7 @@
   "status.show_more": "显示内容",
   "status.show_more_all": "显示所有内容",
   "status.show_thread": "显示全部对话",
-  "status.uncached_media_warning": "Not available",
+  "status.uncached_media_warning": "不可用",
   "status.unmute_conversation": "不再隐藏此对话",
   "status.unpin": "在个人资料页面取消置顶",
   "suggestions.dismiss": "关闭建议",
@@ -406,9 +418,11 @@
   "upload_button.label": "上传媒体文件 (JPEG, PNG, GIF, WebM, MP4, MOV)",
   "upload_error.limit": "文件大小超过限制。",
   "upload_error.poll": "投票中不允许上传文件。",
+  "upload_form.audio_description": "为听障人士添加文字描述",
   "upload_form.description": "为视觉障碍人士添加文字说明",
   "upload_form.edit": "编辑",
   "upload_form.undo": "删除",
+  "upload_form.video_description": "为听障人士和视障人士添加文字描述",
   "upload_modal.analyzing_picture": "分析图片…",
   "upload_modal.apply": "应用",
   "upload_modal.description_placeholder": "天地玄黄 宇宙洪荒 日月盈仄 辰宿列张",
@@ -418,6 +432,7 @@
   "upload_modal.preview_label": "预览 ({ratio})",
   "upload_progress.label": "上传中……",
   "video.close": "关闭视频",
+  "video.download": "下载文件",
   "video.exit_fullscreen": "退出全屏",
   "video.expand": "展开视频",
   "video.fullscreen": "全屏",
diff --git a/app/javascript/mastodon/locales/zh-HK.json b/app/javascript/mastodon/locales/zh-HK.json
index 49993cb52053fa5b68a9c53172a0c06bb78cddac..ecf5b8da4a182c53da879ddc7a6e8fdc85be7e35 100644
--- a/app/javascript/mastodon/locales/zh-HK.json
+++ b/app/javascript/mastodon/locales/zh-HK.json
@@ -1,31 +1,32 @@
 {
-  "account.add_or_remove_from_list": "Add or Remove from lists",
+  "account.add_or_remove_from_list": "從名單中新增或移除",
   "account.badges.bot": "機械人",
+  "account.badges.group": "Group",
   "account.block": "封鎖 @{name}",
   "account.block_domain": "隱藏來自 {domain} 的一切文章",
   "account.blocked": "封鎖",
-  "account.cancel_follow_request": "Cancel follow request",
+  "account.cancel_follow_request": "取消關注請求",
   "account.direct": "私訊 @{name}",
   "account.domain_blocked": "服務站被隱藏",
   "account.edit_profile": "修改個人資料",
-  "account.endorse": "Feature on profile",
+  "account.endorse": "在個人資料推薦對方",
   "account.follow": "關注",
   "account.followers": "關注的人",
-  "account.followers.empty": "No one follows this user yet.",
+  "account.followers.empty": "尚沒有人關注這位使用者。",
   "account.follows": "正關注",
-  "account.follows.empty": "This user doesn't follow anyone yet.",
+  "account.follows.empty": "這位使用者尚未關注任何使用者。",
   "account.follows_you": "關注你",
   "account.hide_reblogs": "隱藏 @{name} 的轉推",
-  "account.last_status": "Last active",
-  "account.link_verified_on": "Ownership of this link was checked on {date}",
-  "account.locked_info": "This account privacy status is set to locked. The owner manually reviews who can follow them.",
+  "account.last_status": "上次活躍時間",
+  "account.link_verified_on": "此連結的所有權已在 {date} 檢查過",
+  "account.locked_info": "這隻帳戶的隱私狀態被設成鎖定。該擁有者會手動審核能關注這隻帳號的人。",
   "account.media": "媒體",
   "account.mention": "提及 @{name}",
   "account.moved_to": "{name} 已經遷移到:",
   "account.mute": "將 @{name} 靜音",
   "account.mute_notifications": "將來自 @{name} 的通知靜音",
   "account.muted": "靜音",
-  "account.never_active": "Never",
+  "account.never_active": "永不",
   "account.posts": "文章",
   "account.posts_with_replies": "包含回覆的文章",
   "account.report": "舉報 @{name}",
@@ -34,15 +35,15 @@
   "account.show_reblogs": "顯示 @{name} 的推文",
   "account.unblock": "解除對 @{name} 的封鎖",
   "account.unblock_domain": "不再隱藏 {domain}",
-  "account.unendorse": "Don't feature on profile",
+  "account.unendorse": "不再於個人資料頁面推薦對方",
   "account.unfollow": "取消關注",
   "account.unmute": "取消 @{name} 的靜音",
   "account.unmute_notifications": "取消來自 @{name} 通知的靜音",
-  "alert.rate_limited.message": "Please retry after {retry_time, time, medium}.",
-  "alert.rate_limited.title": "Rate limited",
+  "alert.rate_limited.message": "請在 {retry_time, time, medium} 過後重試",
+  "alert.rate_limited.title": "已限速",
   "alert.unexpected.message": "發生不可預期的錯誤。",
   "alert.unexpected.title": "噢!",
-  "autosuggest_hashtag.per_week": "{count} per week",
+  "autosuggest_hashtag.per_week": "{count} / 週",
   "boost_modal.combo": "如你想在下次路過這顯示,請按{combo},",
   "bundle_column_error.body": "加載本組件出錯。",
   "bundle_column_error.retry": "重試",
@@ -51,9 +52,10 @@
   "bundle_modal_error.message": "加載本組件出錯。",
   "bundle_modal_error.retry": "重試",
   "column.blocks": "封鎖用戶",
+  "column.bookmarks": "書籤",
   "column.community": "本站時間軸",
   "column.direct": "個人訊息",
-  "column.directory": "Browse profiles",
+  "column.directory": "瀏覽個人資料",
   "column.domain_blocks": "隱藏的服務站",
   "column.favourites": "最愛的文章",
   "column.follow_requests": "關注請求",
@@ -78,20 +80,22 @@
   "compose_form.lock_disclaimer": "你的用戶狀態為「{locked}」,任何人都能立即關注你,然後看到「只有關注者能看」的文章。",
   "compose_form.lock_disclaimer.lock": "公共",
   "compose_form.placeholder": "你在想甚麼?",
-  "compose_form.poll.add_option": "Add a choice",
-  "compose_form.poll.duration": "Poll duration",
-  "compose_form.poll.option_placeholder": "Choice {number}",
-  "compose_form.poll.remove_option": "Remove this choice",
+  "compose_form.poll.add_option": "新增選擇",
+  "compose_form.poll.duration": "投票期限",
+  "compose_form.poll.option_placeholder": "第 {number} 個選擇",
+  "compose_form.poll.remove_option": "移除此選擇",
+  "compose_form.poll.switch_to_multiple": "Change poll to allow multiple choices",
+  "compose_form.poll.switch_to_single": "Change poll to allow for a single choice",
   "compose_form.publish": "發文",
   "compose_form.publish_loud": "{publish}!",
-  "compose_form.sensitive.hide": "Mark media as sensitive",
+  "compose_form.sensitive.hide": "標記媒體為敏感內容",
   "compose_form.sensitive.marked": "媒體被標示為敏感",
   "compose_form.sensitive.unmarked": "媒體沒有被標示為敏感",
   "compose_form.spoiler.marked": "文字被警告隱藏",
   "compose_form.spoiler.unmarked": "文字沒有被隱藏",
   "compose_form.spoiler_placeholder": "敏感警告訊息",
   "confirmation_modal.cancel": "取消",
-  "confirmations.block.block_and_report": "Block & Report",
+  "confirmations.block.block_and_report": "封鎖並檢舉",
   "confirmations.block.confirm": "封鎖",
   "confirmations.block.message": "你確定要封鎖{name}嗎?",
   "confirmations.delete.confirm": "刪除",
@@ -100,25 +104,25 @@
   "confirmations.delete_list.message": "你確定要永久刪除這列表嗎?",
   "confirmations.domain_block.confirm": "隱藏整個網站",
   "confirmations.domain_block.message": "你真的真的確定要隱藏整個 {domain} ?多數情況下,比較推薦封鎖或靜音幾個特定目標就好。你從此將不會再看到該站的內容和通知。來自該站的關注者亦會被移除。",
-  "confirmations.logout.confirm": "Log out",
-  "confirmations.logout.message": "Are you sure you want to log out?",
+  "confirmations.logout.confirm": "登出",
+  "confirmations.logout.message": "確定要登出嗎?",
   "confirmations.mute.confirm": "靜音",
-  "confirmations.mute.explanation": "This will hide posts from them and posts mentioning them, but it will still allow them to see your posts and follow you.",
+  "confirmations.mute.explanation": "這將會隱藏來自他們的貼文與通知,但是他們還是可以查閱你的貼文與關注你。",
   "confirmations.mute.message": "你確定要將{name}靜音嗎?",
   "confirmations.redraft.confirm": "刪除並編輯",
   "confirmations.redraft.message": "你確定要刪除並重新編輯嗎?所有相關的回覆、轉推與最愛都會被刪除。",
-  "confirmations.reply.confirm": "Reply",
-  "confirmations.reply.message": "Replying now will overwrite the message you are currently composing. Are you sure you want to proceed?",
+  "confirmations.reply.confirm": "回覆",
+  "confirmations.reply.message": "現在回覆將蓋掉您目前正在撰寫的訊息。是否仍要回覆?",
   "confirmations.unfollow.confirm": "取消關注",
   "confirmations.unfollow.message": "真的不要繼續關注 {name} 了嗎?",
-  "conversation.delete": "Delete conversation",
-  "conversation.mark_as_read": "Mark as read",
-  "conversation.open": "View conversation",
-  "conversation.with": "With {names}",
-  "directory.federated": "From known fediverse",
-  "directory.local": "From {domain} only",
-  "directory.new_arrivals": "New arrivals",
-  "directory.recently_active": "Recently active",
+  "conversation.delete": "刪除對話",
+  "conversation.mark_as_read": "標為已讀",
+  "conversation.open": "檢視對話",
+  "conversation.with": "與 {names}",
+  "directory.federated": "來自已知聯邦宇宙",
+  "directory.local": "僅來自 {domain}",
+  "directory.new_arrivals": "新貨",
+  "directory.recently_active": "最近活躍",
   "embed.instructions": "要內嵌此文章,請將以下代碼貼進你的網站。",
   "embed.preview": "看上去會是這樣:",
   "emoji_button.activity": "活動",
@@ -135,27 +139,28 @@
   "emoji_button.search_results": "搜尋結果",
   "emoji_button.symbols": "符號",
   "emoji_button.travel": "旅遊景物",
-  "empty_column.account_timeline": "No toots here!",
-  "empty_column.account_unavailable": "Profile unavailable",
-  "empty_column.blocks": "You haven't blocked any users yet.",
+  "empty_column.account_timeline": "這裡還沒有嘟文!",
+  "empty_column.account_unavailable": "無法取得個人資料",
+  "empty_column.blocks": "你還沒有封鎖任何使用者。",
+  "empty_column.bookmarked_statuses": "你還沒建立任何書籤。這裡將會顯示你建立的書籤。",
   "empty_column.community": "本站時間軸暫時未有內容,快寫一點東西來搶頭香啊!",
   "empty_column.direct": "你沒有個人訊息。當你發出或接收個人訊息,就會在這裡出現。",
-  "empty_column.domain_blocks": "There are no hidden domains yet.",
-  "empty_column.favourited_statuses": "You don't have any favourite toots yet. When you favourite one, it will show up here.",
-  "empty_column.favourites": "No one has favourited this toot yet. When someone does, they will show up here.",
-  "empty_column.follow_requests": "You don't have any follow requests yet. When you receive one, it will show up here.",
+  "empty_column.domain_blocks": "尚未隱藏任何網域。",
+  "empty_column.favourited_statuses": "你還沒收藏任何嘟文。這裡將會顯示你收藏的嘟文。",
+  "empty_column.favourites": "還沒有人收藏這則嘟文。這裡將會顯示被收藏的嘟文。",
+  "empty_column.follow_requests": "您尚未收到任何關注請求。這裡將會顯示收到的關注請求。",
   "empty_column.hashtag": "這個標籤暫時未有內容。",
   "empty_column.home": "你還沒有關注任何用戶。快看看{public},向其他用戶搭訕吧。",
   "empty_column.home.public_timeline": "公共時間軸",
   "empty_column.list": "這個列表暫時未有內容。",
-  "empty_column.lists": "You don't have any lists yet. When you create one, it will show up here.",
-  "empty_column.mutes": "You haven't muted any users yet.",
+  "empty_column.lists": "你還沒有建立任何名單。這裡將會顯示你所建立的名單。",
+  "empty_column.mutes": "你尚未靜音任何使用者。",
   "empty_column.notifications": "你沒有任何通知紀錄,快向其他用戶搭訕吧。",
   "empty_column.public": "跨站時間軸暫時沒有內容!快寫一些公共的文章,或者關注另一些服務站的用戶吧!你和本站、友站的交流,將決定這裏出現的內容。",
-  "error.unexpected_crash.explanation": "Due to a bug in our code or a browser compatibility issue, this page could not be displayed correctly.",
-  "error.unexpected_crash.next_steps": "Try refreshing the page. If that does not help, you may still be able to use Mastodon through a different browser or native app.",
-  "errors.unexpected_crash.copy_stacktrace": "Copy stacktrace to clipboard",
-  "errors.unexpected_crash.report_issue": "Report issue",
+  "error.unexpected_crash.explanation": "由於發生系統故障或瀏覽器相容性問題,故無法正常顯示頁面。",
+  "error.unexpected_crash.next_steps": "請嘗試重新整理頁面。如果狀況沒有進展,你可以使用不同的瀏覽器或 Mastodon 應用程式來檢視。",
+  "errors.unexpected_crash.copy_stacktrace": "複製到剪貼簿",
+  "errors.unexpected_crash.report_issue": "舉報問題",
   "federation.change": "Adjust status federation",
   "federation.federated.long": "Allow toot to reach other instances",
   "federation.federated.short": "Federated",
@@ -164,152 +169,157 @@
   "follow_request.authorize": "批准",
   "follow_request.reject": "拒絕",
   "getting_started.developers": "開發者",
-  "getting_started.directory": "Profile directory",
-  "getting_started.documentation": "Documentation",
+  "getting_started.directory": "個人資料目錄",
+  "getting_started.documentation": "文件",
   "getting_started.heading": "開始使用",
   "getting_started.invite": "邀請使用者",
   "getting_started.open_source_notice": "Mastodon(萬象)是一個開放源碼的軟件。你可以在官方 GitHub ({github}) 貢獻或者回報問題。",
   "getting_started.security": "帳戶安全",
   "getting_started.terms": "服務條款",
-  "hashtag.column_header.tag_mode.all": "and {additional}",
-  "hashtag.column_header.tag_mode.any": "or {additional}",
-  "hashtag.column_header.tag_mode.none": "without {additional}",
-  "hashtag.column_settings.select.no_options_message": "No suggestions found",
-  "hashtag.column_settings.select.placeholder": "Enter hashtags…",
-  "hashtag.column_settings.tag_mode.all": "All of these",
-  "hashtag.column_settings.tag_mode.any": "Any of these",
-  "hashtag.column_settings.tag_mode.none": "None of these",
+  "hashtag.column_header.tag_mode.all": "以及{additional}",
+  "hashtag.column_header.tag_mode.any": "或是{additional}",
+  "hashtag.column_header.tag_mode.none": "而無需{additional}",
+  "hashtag.column_settings.select.no_options_message": "找不到建議",
+  "hashtag.column_settings.select.placeholder": "輸入主題標籤…",
+  "hashtag.column_settings.tag_mode.all": "全部",
+  "hashtag.column_settings.tag_mode.any": "任一",
+  "hashtag.column_settings.tag_mode.none": "全不",
   "hashtag.column_settings.tag_toggle": "Include additional tags in this column",
   "home.column_settings.basic": "基本",
   "home.column_settings.show_reblogs": "顯示被轉推的文章",
   "home.column_settings.show_replies": "顯示回應文章",
-  "intervals.full.days": "{number, plural, one {# day} other {# days}}",
-  "intervals.full.hours": "{number, plural, one {# hour} other {# hours}}",
-  "intervals.full.minutes": "{number, plural, one {# minute} other {# minutes}}",
-  "introduction.federation.action": "Next",
-  "introduction.federation.federated.headline": "Federated",
-  "introduction.federation.federated.text": "Public posts from other servers of the fediverse will appear in the federated timeline.",
-  "introduction.federation.home.headline": "Home",
-  "introduction.federation.home.text": "Posts from people you follow will appear in your home feed. You can follow anyone on any server!",
-  "introduction.federation.local.headline": "Local",
-  "introduction.federation.local.text": "Public posts from people on the same server as you will appear in the local timeline.",
+  "intervals.full.days": "{number, plural, one {# 天} other {# 天}}",
+  "intervals.full.hours": "{number, plural, one {# 小時} other {# 小時}}",
+  "intervals.full.minutes": "{number, plural, one {# 分鐘} other {# 分鐘}}",
+  "introduction.federation.action": "下一步",
+  "introduction.federation.federated.headline": "站台聯盟",
+  "introduction.federation.federated.text": "來自聯盟宇宙中其他站台的公開嘟文將會在站點聯盟時間軸中顯示。",
+  "introduction.federation.home.headline": "首頁",
+  "introduction.federation.home.text": "你關注使用者的嘟文將會在首頁動態中顯示。你可以關注任何伺服器上的任何人!",
+  "introduction.federation.local.headline": "本機",
+  "introduction.federation.local.text": "跟您同伺服器之使用者所發的公開嘟文將會顯示在本機時間軸中。",
   "introduction.interactions.action": "Finish toot-orial!",
-  "introduction.interactions.favourite.headline": "Favourite",
-  "introduction.interactions.favourite.text": "You can save a toot for later, and let the author know that you liked it, by favouriting it.",
-  "introduction.interactions.reblog.headline": "Boost",
-  "introduction.interactions.reblog.text": "You can share other people's toots with your followers by boosting them.",
-  "introduction.interactions.reply.headline": "Reply",
-  "introduction.interactions.reply.text": "You can reply to other people's and your own toots, which will chain them together in a conversation.",
-  "introduction.welcome.action": "Let's go!",
-  "introduction.welcome.headline": "First steps",
-  "introduction.welcome.text": "Welcome to the fediverse! In a few moments, you'll be able to broadcast messages and talk to your friends across a wide variety of servers. But this server, {domain}, is special—it hosts your profile, so remember its name.",
+  "introduction.interactions.favourite.headline": "關注",
+  "introduction.interactions.favourite.text": "您能儲存嘟文供稍候觀看,或者收藏嘟文,讓作者知道您喜歡這則嘟文。",
+  "introduction.interactions.reblog.headline": "轉嘟",
+  "introduction.interactions.reblog.text": "您能藉由轉嘟他人嘟文來分享給您的關注者。",
+  "introduction.interactions.reply.headline": "回覆",
+  "introduction.interactions.reply.text": "您能回覆其他人或自己的嘟文,這麼做會把這些回覆串成一串對話。",
+  "introduction.welcome.action": "開始旅程吧!",
+  "introduction.welcome.headline": "第一步",
+  "introduction.welcome.text": "歡迎來到聯盟宇宙!等等你就可以廣播訊息及跨越各種各式各樣的伺服器與朋友聊天。但這台伺服器,{domain},非常特別 - 它寄管了你的個人資料,所以請記住它的名字。",
   "keyboard_shortcuts.back": "後退",
-  "keyboard_shortcuts.blocked": "to open blocked users list",
+  "keyboard_shortcuts.blocked": "開啟「封鎖使用者」名單",
   "keyboard_shortcuts.boost": "轉推",
   "keyboard_shortcuts.column": "把標示移動到其中一列",
   "keyboard_shortcuts.compose": "把標示移動到文字輸入區",
   "keyboard_shortcuts.description": "描述",
-  "keyboard_shortcuts.direct": "to open direct messages column",
+  "keyboard_shortcuts.direct": "開啟私訊欄",
   "keyboard_shortcuts.down": "在列表往下移動",
   "keyboard_shortcuts.enter": "打開文章",
   "keyboard_shortcuts.favourite": "收藏",
-  "keyboard_shortcuts.favourites": "to open favourites list",
-  "keyboard_shortcuts.federated": "to open federated timeline",
+  "keyboard_shortcuts.favourites": "開啟收藏名單",
+  "keyboard_shortcuts.federated": "開啟站點聯盟時間軸",
   "keyboard_shortcuts.heading": "鍵盤快速鍵",
-  "keyboard_shortcuts.home": "to open home timeline",
+  "keyboard_shortcuts.home": "開啟首頁時間軸",
   "keyboard_shortcuts.hotkey": "快速鍵",
   "keyboard_shortcuts.legend": "顯示這個說明",
-  "keyboard_shortcuts.local": "to open local timeline",
+  "keyboard_shortcuts.local": "開啟本機時間軸",
   "keyboard_shortcuts.mention": "提及作者",
-  "keyboard_shortcuts.muted": "to open muted users list",
-  "keyboard_shortcuts.my_profile": "to open your profile",
-  "keyboard_shortcuts.notifications": "to open notifications column",
-  "keyboard_shortcuts.pinned": "to open pinned toots list",
-  "keyboard_shortcuts.profile": "to open author's profile",
+  "keyboard_shortcuts.muted": "開啟靜音使用者名單",
+  "keyboard_shortcuts.my_profile": "開啟個人資料頁面",
+  "keyboard_shortcuts.notifications": "開啟通知欄",
+  "keyboard_shortcuts.open_media": "開啟媒體",
+  "keyboard_shortcuts.pinned": "開啟釘選的嘟文名單",
+  "keyboard_shortcuts.profile": "開啟作者的個人資料頁面",
   "keyboard_shortcuts.reply": "回覆",
-  "keyboard_shortcuts.requests": "to open follow requests list",
+  "keyboard_shortcuts.requests": "開啟關注請求名單",
   "keyboard_shortcuts.search": "把標示移動到搜索",
-  "keyboard_shortcuts.start": "to open \"get started\" column",
+  "keyboard_shortcuts.start": "開啟「開始使用」欄位",
   "keyboard_shortcuts.toggle_hidden": "顯示或隱藏被標為敏感的文字",
-  "keyboard_shortcuts.toggle_sensitivity": "to show/hide media",
+  "keyboard_shortcuts.toggle_sensitivity": "顯示 / 隱藏媒體",
   "keyboard_shortcuts.toot": "新的推文",
   "keyboard_shortcuts.unfocus": "把標示移離文字輸入和搜索",
   "keyboard_shortcuts.up": "在列表往上移動",
   "lightbox.close": "關閉",
   "lightbox.next": "繼續",
   "lightbox.previous": "回退",
-  "lightbox.view_context": "View context",
+  "lightbox.view_context": "檢視內文",
   "lists.account.add": "新增到列表",
   "lists.account.remove": "從列表刪除",
   "lists.delete": "刪除列表",
   "lists.edit": "編輯列表",
-  "lists.edit.submit": "Change title",
+  "lists.edit.submit": "變更標題",
   "lists.new.create": "新增列表",
   "lists.new.title_placeholder": "新列表標題",
   "lists.search": "從你關注的用戶中搜索",
   "lists.subheading": "列表",
-  "load_pending": "{count, plural, one {# new item} other {# new items}}",
+  "load_pending": "{count, plural, other {# 個新項目}}",
   "loading_indicator.label": "載入中...",
   "media_gallery.toggle_visible": "打開或關上",
   "missing_indicator.label": "找不到內容",
   "missing_indicator.sublabel": "無法找到內容",
   "mute_modal.hide_notifications": "隱藏來自這用戶的通知嗎?",
-  "navigation_bar.apps": "Mobile apps",
+  "navigation_bar.apps": "封鎖的使用者",
   "navigation_bar.blocks": "被你封鎖的用戶",
+  "navigation_bar.bookmarks": "書籤",
   "navigation_bar.community_timeline": "本站時間軸",
-  "navigation_bar.compose": "Compose new toot",
+  "navigation_bar.compose": "撰寫新嘟文",
   "navigation_bar.direct": "個人訊息",
   "navigation_bar.discover": "探索",
   "navigation_bar.domain_blocks": "隱藏的服務站",
   "navigation_bar.edit_profile": "修改個人資料",
   "navigation_bar.favourites": "最愛的內容",
-  "navigation_bar.filters": "Muted words",
+  "navigation_bar.filters": "靜音詞彙",
   "navigation_bar.follow_requests": "關注請求",
-  "navigation_bar.follows_and_followers": "Follows and followers",
+  "navigation_bar.follows_and_followers": "關注及關注者",
   "navigation_bar.info": "關於本服務站",
   "navigation_bar.keyboard_shortcuts": "鍵盤快速鍵",
   "navigation_bar.lists": "列表",
   "navigation_bar.logout": "登出",
   "navigation_bar.mutes": "被你靜音的用戶",
-  "navigation_bar.personal": "Personal",
+  "navigation_bar.personal": "個人",
   "navigation_bar.pins": "置頂文章",
   "navigation_bar.preferences": "偏好設定",
   "navigation_bar.public_timeline": "跨站時間軸",
   "navigation_bar.security": "安全",
   "notification.favourite": "{name} 收藏了你的文章",
   "notification.follow": "{name} 開始關注你",
+  "notification.follow_request": "{name} 要求關注你",
   "notification.mention": "{name} 提及你",
-  "notification.poll": "A poll you have voted in has ended",
+  "notification.own_poll": "您的投票已結束",
+  "notification.poll": "您投過的投票已經結束",
   "notification.reblog": "{name} 轉推你的文章",
   "notifications.clear": "清空通知紀錄",
   "notifications.clear_confirmation": "你確定要清空通知紀錄嗎?",
   "notifications.column_settings.alert": "顯示桌面通知",
   "notifications.column_settings.favourite": "收藏了你的文章:",
-  "notifications.column_settings.filter_bar.advanced": "Display all categories",
-  "notifications.column_settings.filter_bar.category": "Quick filter bar",
-  "notifications.column_settings.filter_bar.show": "Show",
+  "notifications.column_settings.filter_bar.advanced": "顯示所有分類",
+  "notifications.column_settings.filter_bar.category": "快速過濾欄",
+  "notifications.column_settings.filter_bar.show": "顯示",
   "notifications.column_settings.follow": "關注你:",
+  "notifications.column_settings.follow_request": "新的關注請求:",
   "notifications.column_settings.mention": "提及你:",
-  "notifications.column_settings.poll": "Poll results:",
+  "notifications.column_settings.poll": "投票結果:",
   "notifications.column_settings.push": "推送通知",
   "notifications.column_settings.reblog": "轉推你的文章:",
   "notifications.column_settings.show": "在通知欄顯示",
   "notifications.column_settings.sound": "播放音效",
-  "notifications.filter.all": "All",
-  "notifications.filter.boosts": "Boosts",
-  "notifications.filter.favourites": "Favourites",
-  "notifications.filter.follows": "Follows",
-  "notifications.filter.mentions": "Mentions",
-  "notifications.filter.polls": "Poll results",
+  "notifications.filter.all": "全部",
+  "notifications.filter.boosts": "轉嘟",
+  "notifications.filter.favourites": "最愛",
+  "notifications.filter.follows": "關注的使用者",
+  "notifications.filter.mentions": "提及",
+  "notifications.filter.polls": "投票結果",
   "notifications.group": "{count} 條通知",
-  "poll.closed": "Closed",
-  "poll.refresh": "Refresh",
-  "poll.total_people": "{count, plural, one {# person} other {# people}}",
-  "poll.total_votes": "{count, plural, one {# vote} other {# votes}}",
-  "poll.vote": "Vote",
-  "poll.voted": "You voted for this answer",
-  "poll_button.add_poll": "Add a poll",
-  "poll_button.remove_poll": "Remove poll",
+  "poll.closed": "已關閉",
+  "poll.refresh": "重新整理",
+  "poll.total_people": "{count, plural, one {# 個投票} other {# 個投票}}",
+  "poll.total_votes": "{count, plural, one {# 個投票} other {# 個投票}}",
+  "poll.vote": "投票",
+  "poll.voted": "你已對此問題投票",
+  "poll_button.add_poll": "建立投票",
+  "poll_button.remove_poll": "移除投票",
   "privacy.change": "調整私隱設定",
   "privacy.direct.long": "只有提及的用戶能看到",
   "privacy.direct.short": "私人訊息",
@@ -319,7 +329,7 @@
   "privacy.public.short": "公共",
   "privacy.unlisted.long": "公開,但不在公共時間軸顯示",
   "privacy.unlisted.short": "公開",
-  "refresh": "Refresh",
+  "refresh": "重新整理",
   "regeneration_indicator.label": "載入中……",
   "regeneration_indicator.sublabel": "你的主頁時間軸正在準備中!",
   "relative_time.days": "{number}æ—¥",
@@ -344,20 +354,21 @@
   "search_results.accounts": "使用者",
   "search_results.hashtags": "標籤",
   "search_results.statuses": "文章",
-  "search_results.statuses_fts_disabled": "Searching toots by their content is not enabled on this Mastodon server.",
+  "search_results.statuses_fts_disabled": "「依內容搜尋嘟文」未在此 Mastodon 伺服器啟用。",
   "search_results.total": "{count, number} 項結果",
-  "status.admin_account": "Open moderation interface for @{name}",
-  "status.admin_status": "Open this status in the moderation interface",
+  "status.admin_account": "開啟 @{name} 的管理介面",
+  "status.admin_status": "在管理介面開啟此嘟文",
   "status.block": "封鎖 @{name}",
+  "status.bookmark": "書籤",
   "status.cancel_reblog_private": "取消轉推",
   "status.cannot_reblog": "這篇文章無法被轉推",
-  "status.copy": "Copy link to status",
+  "status.copy": "將連結複製到嘟文中",
   "status.delete": "刪除",
-  "status.detailed_status": "Detailed conversation view",
+  "status.detailed_status": "對話的詳細內容",
   "status.direct": "私訊 @{name}",
   "status.embed": "鑲嵌",
   "status.favourite": "收藏",
-  "status.filtered": "Filtered",
+  "status.filtered": "已過濾",
   "status.load_more": "載入更多",
   "status.local_only": "This post is only visible by other users of your instance",
   "status.media_hidden": "隱藏媒體內容",
@@ -368,12 +379,13 @@
   "status.open": "展開文章",
   "status.pin": "置頂到資料頁",
   "status.pinned": "置頂文章",
-  "status.read_more": "Read more",
+  "status.read_more": "閱讀更多",
   "status.reblog": "轉推",
   "status.reblog_private": "轉推到原讀者",
   "status.reblogged_by": "{name} 轉推",
-  "status.reblogs.empty": "No one has boosted this toot yet. When someone does, they will show up here.",
+  "status.reblogs.empty": "還沒有人轉嘟。如果有,會顯示在這裡。",
   "status.redraft": "刪除並編輯",
+  "status.remove_bookmark": "移除書籤",
   "status.reply": "回應",
   "status.replyAll": "回應所有人",
   "status.report": "舉報 @{name}",
@@ -383,41 +395,44 @@
   "status.show_less_all": "減少顯示這類文章",
   "status.show_more": "顯示更多",
   "status.show_more_all": "顯示更多這類文章",
-  "status.show_thread": "Show thread",
-  "status.uncached_media_warning": "Not available",
+  "status.show_thread": "顯示討論串",
+  "status.uncached_media_warning": "無法使用",
   "status.unmute_conversation": "解禁對話",
   "status.unpin": "解除置頂",
-  "suggestions.dismiss": "Dismiss suggestion",
-  "suggestions.header": "You might be interested in…",
+  "suggestions.dismiss": "關閉建議",
+  "suggestions.header": "您可能對這些東西有興趣…",
   "tabs_bar.federated_timeline": "跨站",
   "tabs_bar.home": "主頁",
   "tabs_bar.local_timeline": "本站",
   "tabs_bar.notifications": "通知",
   "tabs_bar.search": "搜尋",
-  "time_remaining.days": "{number, plural, one {# day} other {# days}} left",
-  "time_remaining.hours": "{number, plural, one {# hour} other {# hours}} left",
-  "time_remaining.minutes": "{number, plural, one {# minute} other {# minutes}} left",
-  "time_remaining.moments": "Moments remaining",
-  "time_remaining.seconds": "{number, plural, one {# second} other {# seconds}} left",
+  "time_remaining.days": "剩餘{number, plural, one {# 天數} other {# 天數}}",
+  "time_remaining.hours": "剩餘{number, plural, one {# 小時} other {# 小時}}",
+  "time_remaining.minutes": "剩餘{number, plural, one {# 分鐘} other {# 分鐘}}",
+  "time_remaining.moments": "剩餘時間",
+  "time_remaining.seconds": "剩餘 {number, plural, one {# 秒} other {# 秒}}",
   "trends.count_by_accounts": "{count} 位用戶在討論",
-  "trends.trending_now": "Trending now",
+  "trends.trending_now": "目前趨勢",
   "ui.beforeunload": "如果你現在離開 Mastodon,你的草稿內容將會被丟棄。",
   "upload_area.title": "將檔案拖放至此上載",
   "upload_button.label": "上載媒體檔案",
-  "upload_error.limit": "File upload limit exceeded.",
-  "upload_error.poll": "File upload not allowed with polls.",
+  "upload_error.limit": "已達到檔案上傳限制。",
+  "upload_error.poll": "不允許在投票上傳檔案。",
+  "upload_form.audio_description": "簡單描述內容給聽障人士",
   "upload_form.description": "為視覺障礙人士添加文字說明",
-  "upload_form.edit": "Edit",
+  "upload_form.edit": "編輯",
   "upload_form.undo": "刪除",
-  "upload_modal.analyzing_picture": "Analyzing picture…",
-  "upload_modal.apply": "Apply",
-  "upload_modal.description_placeholder": "A quick brown fox jumps over the lazy dog",
-  "upload_modal.detect_text": "Detect text from picture",
-  "upload_modal.edit_media": "Edit media",
-  "upload_modal.hint": "Click or drag the circle on the preview to choose the focal point which will always be in view on all thumbnails.",
-  "upload_modal.preview_label": "Preview ({ratio})",
+  "upload_form.video_description": "簡單描述給聽障或視障人士",
+  "upload_modal.analyzing_picture": "正在分析圖片…",
+  "upload_modal.apply": "套用",
+  "upload_modal.description_placeholder": "A quick brown fox 跳過那隻懶狗",
+  "upload_modal.detect_text": "從圖片偵測文字",
+  "upload_modal.edit_media": "編輯媒體",
+  "upload_modal.hint": "點擊或拖曳圓圈以選擇預覽縮圖。",
+  "upload_modal.preview_label": "預覽 ({ratio})",
   "upload_progress.label": "上載中……",
   "video.close": "關閉影片",
+  "video.download": "下載檔案",
   "video.exit_fullscreen": "退出全熒幕",
   "video.expand": "展開影片",
   "video.fullscreen": "全熒幕",
diff --git a/app/javascript/mastodon/locales/zh-TW.json b/app/javascript/mastodon/locales/zh-TW.json
index e6080011ee8ef9dc758ade4c3a3a329ec57ac506..7a9bfa00c28c7814ec5dc98a9d02a55d868ddf8d 100644
--- a/app/javascript/mastodon/locales/zh-TW.json
+++ b/app/javascript/mastodon/locales/zh-TW.json
@@ -1,6 +1,7 @@
 {
   "account.add_or_remove_from_list": "從名單中新增或移除",
   "account.badges.bot": "機器人",
+  "account.badges.group": "Group",
   "account.block": "封鎖 @{name}",
   "account.block_domain": "隱藏來自 {domain} 的所有內容",
   "account.blocked": "已封鎖",
@@ -51,6 +52,7 @@
   "bundle_modal_error.message": "載入此元件時發生錯誤。",
   "bundle_modal_error.retry": "重試",
   "column.blocks": "封鎖的使用者",
+  "column.bookmarks": "書籤",
   "column.community": "本機時間軸",
   "column.direct": "私訊",
   "column.directory": "瀏覽個人資料",
@@ -82,6 +84,8 @@
   "compose_form.poll.duration": "投票期限",
   "compose_form.poll.option_placeholder": "第 {number} 個選擇",
   "compose_form.poll.remove_option": "移除此選擇",
+  "compose_form.poll.switch_to_multiple": "Change poll to allow multiple choices",
+  "compose_form.poll.switch_to_single": "Change poll to allow for a single choice",
   "compose_form.publish": "嘟出去",
   "compose_form.publish_loud": "{publish}!",
   "compose_form.sensitive.hide": "標記媒體為敏感內容",
@@ -103,7 +107,7 @@
   "confirmations.logout.confirm": "登出",
   "confirmations.logout.message": "確定要登出嗎?",
   "confirmations.mute.confirm": "靜音",
-  "confirmations.mute.explanation": "This will hide posts from them and posts mentioning them, but it will still allow them to see your posts and follow you.",
+  "confirmations.mute.explanation": "這將會隱藏來自他們的貼文與通知,但是他們還是可以查閱你的貼文與關注你。",
   "confirmations.mute.message": "確定靜音 {name} ?",
   "confirmations.redraft.confirm": "刪除並重新編輯",
   "confirmations.redraft.message": "確定刪掉這則嘟文並重新編輯嗎?將會失去這則嘟文的轉嘟及收藏,且回覆這則的嘟文將會變成獨立的嘟文。",
@@ -138,6 +142,7 @@
   "empty_column.account_timeline": "這裡還沒有嘟文!",
   "empty_column.account_unavailable": "無法取得個人資料",
   "empty_column.blocks": "你還沒有封鎖任何使用者。",
+  "empty_column.bookmarked_statuses": "你還沒建立任何書籤。這裡將會顯示你建立的書籤。",
   "empty_column.community": "本地時間軸是空的。快公開嘟些文搶頭香啊!",
   "empty_column.direct": "您還沒有任何私訊。當您私訊別人或收到私訊時,它將於此顯示。",
   "empty_column.domain_blocks": "尚未隱藏任何網域。",
@@ -152,10 +157,10 @@
   "empty_column.mutes": "你尚未靜音任何使用者。",
   "empty_column.notifications": "您尚未收到任何通知,和別人互動開啟對話吧。",
   "empty_column.public": "這裡什麼都沒有!嘗試寫些公開的嘟文,或著自己關注其他伺服器的使用者後就會有嘟文出現了",
-  "error.unexpected_crash.explanation": "Due to a bug in our code or a browser compatibility issue, this page could not be displayed correctly.",
-  "error.unexpected_crash.next_steps": "Try refreshing the page. If that does not help, you may still be able to use Mastodon through a different browser or native app.",
-  "errors.unexpected_crash.copy_stacktrace": "Copy stacktrace to clipboard",
-  "errors.unexpected_crash.report_issue": "Report issue",
+  "error.unexpected_crash.explanation": "由於發生系統故障或瀏覽器相容性問題,故無法正常顯示頁面。",
+  "error.unexpected_crash.next_steps": "請嘗試重新整理頁面。如果狀況沒有進展,你可以使用不同的瀏覽器或 Mastodon 應用程式來檢視。",
+  "errors.unexpected_crash.copy_stacktrace": "複製到剪貼簿",
+  "errors.unexpected_crash.report_issue": "舉報問題",
   "federation.change": "Adjust status federation",
   "federation.federated.long": "Allow toot to reach other instances",
   "federation.federated.short": "Federated",
@@ -224,6 +229,7 @@
   "keyboard_shortcuts.muted": "開啟靜音使用者名單",
   "keyboard_shortcuts.my_profile": "開啟個人資料頁面",
   "keyboard_shortcuts.notifications": "開啟通知欄",
+  "keyboard_shortcuts.open_media": "開啟媒體",
   "keyboard_shortcuts.pinned": "開啟釘選的嘟文名單",
   "keyboard_shortcuts.profile": "開啟作者的個人資料頁面",
   "keyboard_shortcuts.reply": "回覆",
@@ -256,6 +262,7 @@
   "mute_modal.hide_notifications": "隱藏來自這位使用者的通知?",
   "navigation_bar.apps": "封鎖的使用者",
   "navigation_bar.blocks": "封鎖使用者",
+  "navigation_bar.bookmarks": "書籤",
   "navigation_bar.community_timeline": "本機時間軸",
   "navigation_bar.compose": "撰寫新嘟文",
   "navigation_bar.direct": "私訊",
@@ -278,7 +285,9 @@
   "navigation_bar.security": "安全性",
   "notification.favourite": "{name} 把你的嘟文加入了最愛",
   "notification.follow": "{name} 關注了你",
+  "notification.follow_request": "{name} 要求關注你",
   "notification.mention": "{name} 提到了你",
+  "notification.own_poll": "您的投票已結束",
   "notification.poll": "您投過的投票已經結束",
   "notification.reblog": "{name}轉嘟了你的嘟文",
   "notifications.clear": "清除通知",
@@ -289,6 +298,7 @@
   "notifications.column_settings.filter_bar.category": "快速過濾欄",
   "notifications.column_settings.filter_bar.show": "顯示",
   "notifications.column_settings.follow": "新關注者:",
+  "notifications.column_settings.follow_request": "新的關注請求:",
   "notifications.column_settings.mention": "提及:",
   "notifications.column_settings.poll": "投票結果:",
   "notifications.column_settings.push": "推送通知",
@@ -304,7 +314,7 @@
   "notifications.group": "{count} 條通知",
   "poll.closed": "已關閉",
   "poll.refresh": "重新整理",
-  "poll.total_people": "{count, plural, one {# person} other {# people}}",
+  "poll.total_people": "{count, plural, one {# 個投票} other {# 個投票}}",
   "poll.total_votes": "{count, plural, one {# 個投票} other {# 個投票}}",
   "poll.vote": "投票",
   "poll.voted": "你已對此問題投票",
@@ -319,7 +329,7 @@
   "privacy.public.short": "公開",
   "privacy.unlisted.long": "公開,但不會顯示在公開時間軸",
   "privacy.unlisted.short": "不公開",
-  "refresh": "Refresh",
+  "refresh": "重新整理",
   "regeneration_indicator.label": "載入中…",
   "regeneration_indicator.sublabel": "你的主頁時間軸正在準備中!",
   "relative_time.days": "{number} 天",
@@ -349,6 +359,7 @@
   "status.admin_account": "開啟 @{name} 的管理介面",
   "status.admin_status": "在管理介面開啟此嘟文",
   "status.block": "封鎖 @{name}",
+  "status.bookmark": "書籤",
   "status.cancel_reblog_private": "取消轉嘟",
   "status.cannot_reblog": "這篇嘟文無法被轉嘟",
   "status.copy": "將連結複製到嘟文中",
@@ -374,6 +385,7 @@
   "status.reblogged_by": "{name} 轉嘟了",
   "status.reblogs.empty": "還沒有人轉嘟。如果有,會顯示在這裡。",
   "status.redraft": "刪除 & 編輯",
+  "status.remove_bookmark": "移除書籤",
   "status.reply": "回覆",
   "status.replyAll": "回覆所有人",
   "status.report": "檢舉 @{name}",
@@ -406,18 +418,21 @@
   "upload_button.label": "上傳媒體檔案 (JPEG, PNG, GIF, WebM, MP4, MOV)",
   "upload_error.limit": "已達到檔案上傳限制。",
   "upload_error.poll": "不允許在投票上傳檔案。",
+  "upload_form.audio_description": "簡單描述內容給聽障人士",
   "upload_form.description": "為視障人士增加文字說明",
   "upload_form.edit": "編輯",
   "upload_form.undo": "刪除",
+  "upload_form.video_description": "簡單描述給聽障或視障人士",
   "upload_modal.analyzing_picture": "正在分析圖片…",
   "upload_modal.apply": "套用",
   "upload_modal.description_placeholder": "A quick brown fox 跳過那隻懶狗",
   "upload_modal.detect_text": "從圖片偵測文字",
   "upload_modal.edit_media": "編輯媒體",
-  "upload_modal.hint": "Click or drag the circle on the preview to choose the focal point which will always be in view on all thumbnails.",
+  "upload_modal.hint": "點擊或拖曳圓圈以選擇預覽縮圖。",
   "upload_modal.preview_label": "預覽 ({ratio})",
   "upload_progress.label": "上傳中...",
   "video.close": "關閉影片",
+  "video.download": "下載檔案",
   "video.exit_fullscreen": "退出全螢幕",
   "video.expand": "展開影片",
   "video.fullscreen": "全螢幕",
diff --git a/app/javascript/mastodon/reducers/accounts.js b/app/javascript/mastodon/reducers/accounts.js
index 530ed8e6077ebc50d9cf2329733cf4a0c778ed49..a5853b7893f9c41998dc95e2aadfc0217c5f865f 100644
--- a/app/javascript/mastodon/reducers/accounts.js
+++ b/app/javascript/mastodon/reducers/accounts.js
@@ -8,6 +8,7 @@ const normalizeAccount = (state, account) => {
 
   delete account.followers_count;
   delete account.following_count;
+  delete account.subscribing_count;
   delete account.statuses_count;
 
   return state.set(account.id, fromJS(account));
diff --git a/app/javascript/mastodon/reducers/accounts_counters.js b/app/javascript/mastodon/reducers/accounts_counters.js
index 9ebf72af9b68487a2aea743b6ab08c958c3d9db2..9a89544ef6f1bc059dac76452917169fe00ab917 100644
--- a/app/javascript/mastodon/reducers/accounts_counters.js
+++ b/app/javascript/mastodon/reducers/accounts_counters.js
@@ -8,6 +8,7 @@ import { Map as ImmutableMap, fromJS } from 'immutable';
 const normalizeAccount = (state, account) => state.set(account.id, fromJS({
   followers_count: account.followers_count,
   following_count: account.following_count,
+  subscribing_count: account.subscribing_count,
   statuses_count: account.statuses_count,
 }));
 
diff --git a/app/javascript/mastodon/reducers/compose.js b/app/javascript/mastodon/reducers/compose.js
index 8692cb25467a2e45c3039d12ac7e73ab90381847..f3894551b07fb96a2a5c6dae7c9d29e6f27b1faf 100644
--- a/app/javascript/mastodon/reducers/compose.js
+++ b/app/javascript/mastodon/reducers/compose.js
@@ -5,6 +5,8 @@ import {
   COMPOSE_REPLY,
   COMPOSE_REPLY_CANCEL,
   COMPOSE_DIRECT,
+  COMPOSE_QUOTE,
+  COMPOSE_QUOTE_CANCEL,
   COMPOSE_MENTION,
   COMPOSE_SUBMIT_REQUEST,
   COMPOSE_SUBMIT_SUCCESS,
@@ -57,12 +59,15 @@ const initialState = ImmutableMap({
   caretPosition: null,
   preselectDate: null,
   in_reply_to: null,
+  quote_from: null,
+  quote_from_url: null,
   is_composing: false,
   is_submitting: false,
   is_changing_upload: false,
   is_uploading: false,
   progress: 0,
   media_attachments: ImmutableList(),
+  pending_media_attachments: 0,
   poll: null,
   suggestion_token: null,
   suggestions: ImmutableList(),
@@ -98,6 +103,7 @@ function clearAll(state) {
     map.set('is_submitting', false);
     map.set('is_changing_upload', false);
     map.set('in_reply_to', null);
+    map.set('quote_from', null);
     map.set('privacy', state.get('default_privacy'));
     map.set('federation', state.get('default_federation'));
     map.set('sensitive', false);
@@ -118,6 +124,7 @@ function appendMedia(state, media, file) {
     map.set('is_uploading', false);
     map.set('resetFileKey', Math.floor((Math.random() * 0x10000)));
     map.set('idempotencyKey', uuid());
+    map.update('pending_media_attachments', n => n - 1);
 
     if (prevSize === 0 && (state.get('default_sensitive') || state.get('spoiler'))) {
       map.set('sensitive', true);
@@ -243,6 +250,17 @@ const updateSuggestionTags = (state, token) => {
   });
 };
 
+const rejectQuoteAltText = html => {
+  const fragment = domParser.parseFromString(html, 'text/html').documentElement;
+
+  const quote_inline = fragment.querySelector('span.quote-inline');
+  if (quote_inline) {
+    quote_inline.remove();
+  }
+
+  return fragment.innerHTML;
+};
+
 export default function compose(state = initialState, action) {
   switch(action.type) {
   case STORE_HYDRATE:
@@ -293,6 +311,8 @@ export default function compose(state = initialState, action) {
   case COMPOSE_REPLY:
     return state.withMutations(map => {
       map.set('in_reply_to', action.status.get('id'));
+      map.set('quote_from', null);
+      map.set('quote_from_url', null);
       map.set('text', statusToTextMentions(state, action.status));
       map.set('privacy', privacyPreference(action.status.get('visibility'), state.get('default_privacy')));
       map.set('federation', !action.status.get('local_only'));
@@ -301,6 +321,25 @@ export default function compose(state = initialState, action) {
       map.set('preselectDate', new Date());
       map.set('idempotencyKey', uuid());
 
+      if (action.status.get('spoiler_text').length > 0) {
+        map.set('spoiler', true);
+        map.set('spoiler_text', action.status.get('spoiler_text'));
+      } else {
+        map.set('spoiler', false);
+        map.set('spoiler_text', '');
+      }
+    });
+  case COMPOSE_QUOTE:
+    return state.withMutations(map => {
+      map.set('in_reply_to', null);
+      map.set('quote_from', action.status.get('id'));
+      map.set('quote_from_url', action.status.get('url'));
+      map.set('text', '');
+      map.set('privacy', privacyPreference(action.status.get('visibility'), state.get('default_privacy')));
+      map.set('focusDate', new Date());
+      map.set('preselectDate', new Date());
+      map.set('idempotencyKey', uuid());
+
       if (action.status.get('spoiler_text').length > 0) {
         map.set('spoiler', true);
         map.set('spoiler_text', action.status.get('spoiler_text'));
@@ -310,9 +349,12 @@ export default function compose(state = initialState, action) {
       }
     });
   case COMPOSE_REPLY_CANCEL:
+  case COMPOSE_QUOTE_CANCEL:
   case COMPOSE_RESET:
     return state.withMutations(map => {
       map.set('in_reply_to', null);
+      map.set('quote_from', null);
+      map.set('quote_from_url', null);
       map.set('text', '');
       map.set('spoiler', false);
       map.set('spoiler_text', '');
@@ -332,11 +374,11 @@ export default function compose(state = initialState, action) {
   case COMPOSE_UPLOAD_CHANGE_FAIL:
     return state.set('is_changing_upload', false);
   case COMPOSE_UPLOAD_REQUEST:
-    return state.set('is_uploading', true);
+    return state.set('is_uploading', true).update('pending_media_attachments', n => n + 1);
   case COMPOSE_UPLOAD_SUCCESS:
     return appendMedia(state, fromJS(action.media), action.file);
   case COMPOSE_UPLOAD_FAIL:
-    return state.set('is_uploading', false);
+    return state.set('is_uploading', false).update('pending_media_attachments', n => n - 1);
   case COMPOSE_UPLOAD_UNDO:
     return removeMedia(state, action.media_id);
   case COMPOSE_UPLOAD_PROGRESS:
@@ -386,8 +428,10 @@ export default function compose(state = initialState, action) {
       }));
   case REDRAFT:
     return state.withMutations(map => {
-      map.set('text', action.raw_text || unescapeHTML(expandMentions(action.status)));
+      map.set('text', action.raw_text || unescapeHTML(rejectQuoteAltText(expandMentions(action.status))));
       map.set('in_reply_to', action.status.get('in_reply_to_id'));
+      map.set('quote_from', action.status.getIn(['quote', 'id']));
+      map.set('quote_from_url', action.status.getIn(['quote', 'url']));
       map.set('privacy', action.status.get('visibility'));
       map.set('federation', !action.status.get('local_only'));
       map.set('media_attachments', action.status.get('media_attachments'));
diff --git a/app/javascript/mastodon/reducers/favourite_tags.js b/app/javascript/mastodon/reducers/favourite_tags.js
new file mode 100644
index 0000000000000000000000000000000000000000..ca27107fd0cd6dc0cd4b9e3b90e28aa24c49d4af
--- /dev/null
+++ b/app/javascript/mastodon/reducers/favourite_tags.js
@@ -0,0 +1,31 @@
+import {
+  FAVOURITE_TAG_FETCH_SUCCESS,
+  FAVOURITE_TAG_FETCH_FAIL,
+  FAVOURITE_TAGS_FETCH_SUCCESS,
+} from '../actions/favourite_tags';
+import { Map as ImmutableMap, fromJS } from 'immutable';
+
+const initialState = ImmutableMap();
+
+const normalizeFavouriteTag = (state, favourite_tag) => state.set(favourite_tag.id, fromJS(favourite_tag));
+
+const normalizeFavouriteTags = (state, favourite_tags) => {
+  favourite_tags.forEach(favourite_tag => {
+    state = normalizeFavouriteTag(state, favourite_tag);
+  });
+
+  return state;
+};
+
+export default function favourite_tags(state = initialState, action) {
+  switch(action.type) {
+  case FAVOURITE_TAG_FETCH_SUCCESS:
+    return normalizeFavouriteTag(state, action.favourite_tag);
+  case FAVOURITE_TAGS_FETCH_SUCCESS:
+    return normalizeFavouriteTags(state, action.favourite_tags);
+  case FAVOURITE_TAG_FETCH_FAIL:
+    return state.set(action.id, false);
+  default:
+    return state;
+  }
+};
diff --git a/app/javascript/mastodon/reducers/index.js b/app/javascript/mastodon/reducers/index.js
index b8d60888815471295d95a174bca4212bb2c5e73c..b34d6ebdfb5875ab982a11f1465a69b2e8a0410b 100644
--- a/app/javascript/mastodon/reducers/index.js
+++ b/app/javascript/mastodon/reducers/index.js
@@ -34,6 +34,7 @@ import polls from './polls';
 import identity_proofs from './identity_proofs';
 import trends from './trends';
 import missed_updates from './missed_updates';
+import favourite_tags from './favourite_tags';
 
 const reducers = {
   dropdown_menu,
@@ -71,6 +72,7 @@ const reducers = {
   polls,
   trends,
   missed_updates,
+  favourite_tags,
 };
 
 export default combineReducers(reducers);
diff --git a/app/javascript/mastodon/reducers/notifications.js b/app/javascript/mastodon/reducers/notifications.js
index 6ba80bd6a5741118a2528cfbe1c07ffd60c2750d..60e901e39e67ddae176958b860d27b61df15e305 100644
--- a/app/javascript/mastodon/reducers/notifications.js
+++ b/app/javascript/mastodon/reducers/notifications.js
@@ -13,6 +13,8 @@ import {
 import {
   ACCOUNT_BLOCK_SUCCESS,
   ACCOUNT_MUTE_SUCCESS,
+  FOLLOW_REQUEST_AUTHORIZE_SUCCESS,
+  FOLLOW_REQUEST_REJECT_SUCCESS,
 } from '../actions/accounts';
 import { DOMAIN_BLOCK_SUCCESS } from 'mastodon/actions/domain_blocks';
 import { TIMELINE_DELETE, TIMELINE_DISCONNECT } from '../actions/timelines';
@@ -89,8 +91,8 @@ const expandNormalizedNotifications = (state, notifications, next, isLoadingRece
   });
 };
 
-const filterNotifications = (state, accountIds) => {
-  const helper = list => list.filterNot(item => item !== null && accountIds.includes(item.get('account')));
+const filterNotifications = (state, accountIds, type) => {
+  const helper = list => list.filterNot(item => item !== null && accountIds.includes(item.get('account')) && (type === undefined || type === item.get('type')));
   return state.update('items', helper).update('pendingItems', helper);
 };
 
@@ -129,6 +131,11 @@ export default function notifications(state = initialState, action) {
     return action.relationship.muting_notifications ? filterNotifications(state, [action.relationship.id]) : state;
   case DOMAIN_BLOCK_SUCCESS:
     return filterNotifications(state, action.accounts);
+  case FOLLOW_REQUEST_AUTHORIZE_SUCCESS:
+  case FOLLOW_REQUEST_REJECT_SUCCESS:
+    return filterNotifications(state, [action.id], 'follow_request');
+  case ACCOUNT_MUTE_SUCCESS:
+    return action.relationship.muting_notifications ? filterNotifications(state, [action.relationship.id]) : state;
   case NOTIFICATIONS_CLEAR:
     return state.set('items', ImmutableList()).set('pendingItems', ImmutableList()).set('hasMore', false);
   case TIMELINE_DELETE:
diff --git a/app/javascript/mastodon/reducers/push_notifications.js b/app/javascript/mastodon/reducers/push_notifications.js
index 317352b79065b1dac77e5d79125e49fc4b96791b..c48cfb705acfd1c11a06730697aa2990d07c1a46 100644
--- a/app/javascript/mastodon/reducers/push_notifications.js
+++ b/app/javascript/mastodon/reducers/push_notifications.js
@@ -6,6 +6,7 @@ const initialState = Immutable.Map({
   subscription: null,
   alerts: new Immutable.Map({
     follow: false,
+    follow_request: false,
     favourite: false,
     reblog: false,
     mention: false,
diff --git a/app/javascript/mastodon/reducers/relationships.js b/app/javascript/mastodon/reducers/relationships.js
index 8322780de569d68c26f88dcac12b90d716d4d61e..3a4ed2034f09da9381376edbeedc93ce4211de94 100644
--- a/app/javascript/mastodon/reducers/relationships.js
+++ b/app/javascript/mastodon/reducers/relationships.js
@@ -5,6 +5,12 @@ import {
   ACCOUNT_UNFOLLOW_SUCCESS,
   ACCOUNT_UNFOLLOW_REQUEST,
   ACCOUNT_UNFOLLOW_FAIL,
+  ACCOUNT_SUBSCRIBE_SUCCESS,
+  ACCOUNT_SUBSCRIBE_REQUEST,
+  ACCOUNT_SUBSCRIBE_FAIL,
+  ACCOUNT_UNSUBSCRIBE_SUCCESS,
+  ACCOUNT_UNSUBSCRIBE_REQUEST,
+  ACCOUNT_UNSUBSCRIBE_FAIL,
   ACCOUNT_BLOCK_SUCCESS,
   ACCOUNT_UNBLOCK_SUCCESS,
   ACCOUNT_MUTE_SUCCESS,
@@ -49,8 +55,18 @@ export default function relationships(state = initialState, action) {
     return state.setIn([action.id, 'following'], false);
   case ACCOUNT_UNFOLLOW_FAIL:
     return state.setIn([action.id, 'following'], true);
+  case ACCOUNT_SUBSCRIBE_REQUEST:
+    return state.setIn([action.id, 'subscribing'], true);
+  case ACCOUNT_SUBSCRIBE_FAIL:
+    return state.setIn([action.id, 'subscribing'], false);
+  case ACCOUNT_UNSUBSCRIBE_REQUEST:
+    return state.setIn([action.id, 'subscribing'], false);
+  case ACCOUNT_UNSUBSCRIBE_FAIL:
+    return state.setIn([action.id, 'subscribing'], true);
   case ACCOUNT_FOLLOW_SUCCESS:
   case ACCOUNT_UNFOLLOW_SUCCESS:
+  case ACCOUNT_SUBSCRIBE_SUCCESS:
+  case ACCOUNT_UNSUBSCRIBE_SUCCESS:
   case ACCOUNT_BLOCK_SUCCESS:
   case ACCOUNT_UNBLOCK_SUCCESS:
   case ACCOUNT_MUTE_SUCCESS:
diff --git a/app/javascript/mastodon/reducers/search.js b/app/javascript/mastodon/reducers/search.js
index 875b2d92b39d4ba6cd6ad2d9ca091c55729ac411..f139a124bd1f0cad59f56a1456c9321a4522e716 100644
--- a/app/javascript/mastodon/reducers/search.js
+++ b/app/javascript/mastodon/reducers/search.js
@@ -9,6 +9,7 @@ import {
   COMPOSE_MENTION,
   COMPOSE_REPLY,
   COMPOSE_DIRECT,
+  COMPOSE_QUOTE,
 } from '../actions/compose';
 import { Map as ImmutableMap, List as ImmutableList, fromJS } from 'immutable';
 
@@ -36,6 +37,7 @@ export default function search(state = initialState, action) {
   case COMPOSE_REPLY:
   case COMPOSE_MENTION:
   case COMPOSE_DIRECT:
+  case COMPOSE_QUOTE:
     return state.set('hidden', true);
   case SEARCH_FETCH_SUCCESS:
     return state.set('results', ImmutableMap({
diff --git a/app/javascript/mastodon/reducers/settings.js b/app/javascript/mastodon/reducers/settings.js
index 793a99f8f56f6beb069e2c2aad0f4766fe994b9d..f0461eedd19e1dce492a9027ebec301cf1b8d5aa 100644
--- a/app/javascript/mastodon/reducers/settings.js
+++ b/app/javascript/mastodon/reducers/settings.js
@@ -30,6 +30,7 @@ const initialState = ImmutableMap({
   notifications: ImmutableMap({
     alerts: ImmutableMap({
       follow: true,
+      follow_request: false,
       favourite: true,
       reblog: true,
       mention: true,
@@ -44,6 +45,7 @@ const initialState = ImmutableMap({
 
     shows: ImmutableMap({
       follow: true,
+      follow_request: false,
       favourite: true,
       reblog: true,
       mention: true,
@@ -52,6 +54,7 @@ const initialState = ImmutableMap({
 
     sounds: ImmutableMap({
       follow: true,
+      follow_request: false,
       favourite: true,
       reblog: true,
       mention: true,
@@ -65,6 +68,12 @@ const initialState = ImmutableMap({
     }),
   }),
 
+  domain: ImmutableMap({
+    regex: ImmutableMap({
+      body: '',
+    }),
+  }),
+
   public: ImmutableMap({
     regex: ImmutableMap({
       body: '',
diff --git a/app/javascript/mastodon/reducers/status_lists.js b/app/javascript/mastodon/reducers/status_lists.js
index 6c5f33557427ec10bf73aadb7e3477ebe3f193a7..9f8f28deed42368f0e217a9cf3b656c064162f2d 100644
--- a/app/javascript/mastodon/reducers/status_lists.js
+++ b/app/javascript/mastodon/reducers/status_lists.js
@@ -6,6 +6,14 @@ import {
   FAVOURITED_STATUSES_EXPAND_SUCCESS,
   FAVOURITED_STATUSES_EXPAND_FAIL,
 } from '../actions/favourites';
+import {
+  BOOKMARKED_STATUSES_FETCH_REQUEST,
+  BOOKMARKED_STATUSES_FETCH_SUCCESS,
+  BOOKMARKED_STATUSES_FETCH_FAIL,
+  BOOKMARKED_STATUSES_EXPAND_REQUEST,
+  BOOKMARKED_STATUSES_EXPAND_SUCCESS,
+  BOOKMARKED_STATUSES_EXPAND_FAIL,
+} from '../actions/bookmarks';
 import {
   PINNED_STATUSES_FETCH_SUCCESS,
 } from '../actions/pin_statuses';
@@ -13,6 +21,8 @@ import { Map as ImmutableMap, List as ImmutableList } from 'immutable';
 import {
   FAVOURITE_SUCCESS,
   UNFAVOURITE_SUCCESS,
+  BOOKMARK_SUCCESS,
+  UNBOOKMARK_SUCCESS,
   PIN_SUCCESS,
   UNPIN_SUCCESS,
 } from '../actions/interactions';
@@ -23,6 +33,11 @@ const initialState = ImmutableMap({
     loaded: false,
     items: ImmutableList(),
   }),
+  bookmarks: ImmutableMap({
+    next: null,
+    loaded: false,
+    items: ImmutableList(),
+  }),
   pins: ImmutableMap({
     next: null,
     loaded: false,
@@ -71,10 +86,24 @@ export default function statusLists(state = initialState, action) {
     return normalizeList(state, 'favourites', action.statuses, action.next);
   case FAVOURITED_STATUSES_EXPAND_SUCCESS:
     return appendToList(state, 'favourites', action.statuses, action.next);
+  case BOOKMARKED_STATUSES_FETCH_REQUEST:
+  case BOOKMARKED_STATUSES_EXPAND_REQUEST:
+    return state.setIn(['bookmarks', 'isLoading'], true);
+  case BOOKMARKED_STATUSES_FETCH_FAIL:
+  case BOOKMARKED_STATUSES_EXPAND_FAIL:
+    return state.setIn(['bookmarks', 'isLoading'], false);
+  case BOOKMARKED_STATUSES_FETCH_SUCCESS:
+    return normalizeList(state, 'bookmarks', action.statuses, action.next);
+  case BOOKMARKED_STATUSES_EXPAND_SUCCESS:
+    return appendToList(state, 'bookmarks', action.statuses, action.next);
   case FAVOURITE_SUCCESS:
     return prependOneToList(state, 'favourites', action.status);
   case UNFAVOURITE_SUCCESS:
     return removeOneFromList(state, 'favourites', action.status);
+  case BOOKMARK_SUCCESS:
+    return prependOneToList(state, 'bookmarks', action.status);
+  case UNBOOKMARK_SUCCESS:
+    return removeOneFromList(state, 'bookmarks', action.status);
   case PINNED_STATUSES_FETCH_SUCCESS:
     return normalizeList(state, 'pins', action.statuses, action.next);
   case PIN_SUCCESS:
diff --git a/app/javascript/mastodon/reducers/statuses.js b/app/javascript/mastodon/reducers/statuses.js
index 885cc221cd4d29ddb5dabffa4c207f276efa5e90..4d75ca8866747c0c5c53bd8194e438cbb87d0e13 100644
--- a/app/javascript/mastodon/reducers/statuses.js
+++ b/app/javascript/mastodon/reducers/statuses.js
@@ -3,12 +3,18 @@ import {
   REBLOG_FAIL,
   FAVOURITE_REQUEST,
   FAVOURITE_FAIL,
+  UNFAVOURITE_SUCCESS,
+  BOOKMARK_REQUEST,
+  BOOKMARK_FAIL,
 } from '../actions/interactions';
 import {
   STATUS_MUTE_SUCCESS,
   STATUS_UNMUTE_SUCCESS,
   STATUS_REVEAL,
   STATUS_HIDE,
+  STATUS_COLLAPSE,
+  QUOTE_REVEAL,
+  QUOTE_HIDE,
 } from '../actions/statuses';
 import { TIMELINE_DELETE } from '../actions/timelines';
 import { STATUS_IMPORT, STATUSES_IMPORT } from '../actions/importer';
@@ -37,8 +43,15 @@ export default function statuses(state = initialState, action) {
     return importStatuses(state, action.statuses);
   case FAVOURITE_REQUEST:
     return state.setIn([action.status.get('id'), 'favourited'], true);
+  case UNFAVOURITE_SUCCESS:
+    const favouritesCount = action.status.get('favourites_count');
+    return state.setIn([action.status.get('id'), 'favourites_count'], favouritesCount - 1);
   case FAVOURITE_FAIL:
     return state.get(action.status.get('id')) === undefined ? state : state.setIn([action.status.get('id'), 'favourited'], false);
+  case BOOKMARK_REQUEST:
+    return state.get(action.status.get('id')) === undefined ? state : state.setIn([action.status.get('id'), 'bookmarked'], true);
+  case BOOKMARK_FAIL:
+    return state.get(action.status.get('id')) === undefined ? state : state.setIn([action.status.get('id'), 'bookmarked'], false);
   case REBLOG_REQUEST:
     return state.setIn([action.status.get('id'), 'reblogged'], true);
   case REBLOG_FAIL:
@@ -63,6 +76,16 @@ export default function statuses(state = initialState, action) {
         }
       });
     });
+  case STATUS_COLLAPSE:
+    return state.setIn([action.id, 'collapsed'], action.isCollapsed);
+  case QUOTE_REVEAL:
+    return state.withMutations(map => {
+      action.ids.forEach(id => map.setIn([id, 'quote_hidden'], false));
+    });
+  case QUOTE_HIDE:
+    return state.withMutations(map => {
+      action.ids.forEach(id => map.setIn([id, 'quote_hidden'], true));
+    });
   case TIMELINE_DELETE:
     return deleteStatus(state, action.id, action.references);
   default:
diff --git a/app/javascript/mastodon/reducers/timelines.js b/app/javascript/mastodon/reducers/timelines.js
index 0d7222e10a884267056367733ecf78c62babe48d..8f712020aeaa32b245a78bc21e885749cb89ed94 100644
--- a/app/javascript/mastodon/reducers/timelines.js
+++ b/app/javascript/mastodon/reducers/timelines.js
@@ -14,6 +14,7 @@ import {
   ACCOUNT_BLOCK_SUCCESS,
   ACCOUNT_MUTE_SUCCESS,
   ACCOUNT_UNFOLLOW_SUCCESS,
+  ACCOUNT_UNSUBSCRIBE_SUCCESS,
 } from '../actions/accounts';
 import { Map as ImmutableMap, List as ImmutableList, fromJS } from 'immutable';
 import compareId from '../compare_id';
@@ -157,6 +158,7 @@ export default function timelines(state = initialState, action) {
   case ACCOUNT_MUTE_SUCCESS:
     return filterTimelines(state, action.relationship, action.statuses);
   case ACCOUNT_UNFOLLOW_SUCCESS:
+  case ACCOUNT_UNSUBSCRIBE_SUCCESS:
     return filterTimeline('home', state, action.relationship, action.statuses);
   case TIMELINE_SCROLL_TOP:
     return updateTop(state, action.timeline, action.top);
diff --git a/app/javascript/mastodon/reducers/user_lists.js b/app/javascript/mastodon/reducers/user_lists.js
index 08e94022f1ce63ffe7de9f750539d97de61da590..31602bc333b9935997cfb6ed7a071dc3f65a5458 100644
--- a/app/javascript/mastodon/reducers/user_lists.js
+++ b/app/javascript/mastodon/reducers/user_lists.js
@@ -1,8 +1,13 @@
+import {
+  NOTIFICATIONS_UPDATE,
+} from '../actions/notifications';
 import {
   FOLLOWERS_FETCH_SUCCESS,
   FOLLOWERS_EXPAND_SUCCESS,
   FOLLOWING_FETCH_SUCCESS,
   FOLLOWING_EXPAND_SUCCESS,
+  SUBSCRIBING_FETCH_SUCCESS,
+  SUBSCRIBING_EXPAND_SUCCESS,
   FOLLOW_REQUESTS_FETCH_SUCCESS,
   FOLLOW_REQUESTS_EXPAND_SUCCESS,
   FOLLOW_REQUEST_AUTHORIZE_SUCCESS,
@@ -33,6 +38,7 @@ import { Map as ImmutableMap, List as ImmutableList } from 'immutable';
 const initialState = ImmutableMap({
   followers: ImmutableMap(),
   following: ImmutableMap(),
+  subscribing: ImmutableMap(),
   reblogged_by: ImmutableMap(),
   favourited_by: ImmutableMap(),
   follow_requests: ImmutableMap(),
@@ -53,6 +59,12 @@ const appendToList = (state, type, id, accounts, next) => {
   });
 };
 
+const normalizeFollowRequest = (state, notification) => {
+  return state.updateIn(['follow_requests', 'items'], list => {
+    return list.filterNot(item => item === notification.account.id).unshift(notification.account.id);
+  });
+};
+
 export default function userLists(state = initialState, action) {
   switch(action.type) {
   case FOLLOWERS_FETCH_SUCCESS:
@@ -63,10 +75,16 @@ export default function userLists(state = initialState, action) {
     return normalizeList(state, 'following', action.id, action.accounts, action.next);
   case FOLLOWING_EXPAND_SUCCESS:
     return appendToList(state, 'following', action.id, action.accounts, action.next);
+  case SUBSCRIBING_FETCH_SUCCESS:
+    return normalizeList(state, 'subscribing', action.id, action.accounts, action.next);
+  case SUBSCRIBING_EXPAND_SUCCESS:
+    return appendToList(state, 'subscribing', action.id, action.accounts, action.next);
   case REBLOGS_FETCH_SUCCESS:
     return state.setIn(['reblogged_by', action.id], ImmutableList(action.accounts.map(item => item.id)));
   case FAVOURITES_FETCH_SUCCESS:
     return state.setIn(['favourited_by', action.id], ImmutableList(action.accounts.map(item => item.id)));
+  case NOTIFICATIONS_UPDATE:
+    return action.notification.type === 'follow_request' ? normalizeFollowRequest(state, action.notification) : state;
   case FOLLOW_REQUESTS_FETCH_SUCCESS:
     return state.setIn(['follow_requests', 'items'], ImmutableList(action.accounts.map(item => item.id))).setIn(['follow_requests', 'next'], action.next);
   case FOLLOW_REQUESTS_EXPAND_SUCCESS:
diff --git a/app/javascript/mastodon/selectors/index.js b/app/javascript/mastodon/selectors/index.js
index 6f1ce9602a4986beee09fa21bbc5c5ad60f8771f..01d914b923ce27eef0aaf8790d233109d9075923 100644
--- a/app/javascript/mastodon/selectors/index.js
+++ b/app/javascript/mastodon/selectors/index.js
@@ -89,15 +89,28 @@ export const makeGetStatus = () => {
       (state, { id }) => state.getIn(['statuses', state.getIn(['statuses', id, 'reblog'])]),
       (state, { id }) => state.getIn(['accounts', state.getIn(['statuses', id, 'account'])]),
       (state, { id }) => state.getIn(['accounts', state.getIn(['statuses', state.getIn(['statuses', id, 'reblog']), 'account'])]),
+      (state, { id }) => state.getIn(['relationships', state.getIn(['statuses', id, 'account'])]),
+      (state, { id }) => state.getIn(['relationships', state.getIn(['statuses', state.getIn(['statuses', id, 'reblog']), 'account'])]),
+      (state, { id }) => state.getIn(['accounts', state.getIn(['accounts', state.getIn(['statuses', id, 'account']), 'moved'])]),
+      (state, { id }) => state.getIn(['accounts', state.getIn(['accounts', state.getIn(['statuses', state.getIn(['statuses', id, 'reblog']), 'account']), 'moved'])]),
       getFiltersRegex,
     ],
 
-    (statusBase, statusReblog, accountBase, accountReblog, filtersRegex) => {
+    (statusBase, statusReblog, accountBase, accountReblog, relationship, reblogRelationship, moved, reblogMoved, filtersRegex) => {
       if (!statusBase) {
         return null;
       }
 
+      accountBase = accountBase.withMutations(map => {
+        map.set('relationship', relationship);
+        map.set('moved', moved);
+      });
+
       if (statusReblog) {
+        accountReblog = accountReblog.withMutations(map => {
+          map.set('relationship', reblogRelationship);
+          map.set('moved', reblogMoved);
+        });
         statusReblog = statusReblog.set('account', accountReblog);
       } else {
         statusReblog = null;
diff --git a/app/javascript/mastodon/service_worker/web_push_locales.js b/app/javascript/mastodon/service_worker/web_push_locales.js
index 5ce8c7b50a1ff4bfab4ec0c527164fba47913276..1265f3cfafb902769bb9bcaf9730bf738139b3fb 100644
--- a/app/javascript/mastodon/service_worker/web_push_locales.js
+++ b/app/javascript/mastodon/service_worker/web_push_locales.js
@@ -16,6 +16,7 @@ filenames.forEach(filename => {
   filtered[locale] = {
     'notification.favourite': full['notification.favourite'] || '',
     'notification.follow': full['notification.follow'] || '',
+    'notification.follow_request': full['notification.follow_request'] || '',
     'notification.mention': full['notification.mention'] || '',
     'notification.reblog': full['notification.reblog'] || '',
     'notification.poll': full['notification.poll'] || '',
diff --git a/app/javascript/mastodon/stream.js b/app/javascript/mastodon/stream.js
index c4642344fc1191b2bbcea028228fe6b4e0c081d6..fe965bcb0e90f22e81e4ce66c2520610abb49640 100644
--- a/app/javascript/mastodon/stream.js
+++ b/app/javascript/mastodon/stream.js
@@ -1,7 +1,15 @@
-import WebSocketClient from 'websocket.js';
+import WebSocketClient from '@gamestdio/websocket';
 
 const randomIntUpTo = max => Math.floor(Math.random() * Math.floor(max));
 
+const knownEventTypes = [
+  'update',
+  'delete',
+  'notification',
+  'conversation',
+  'filters_changed',
+];
+
 export function connectStream(path, pollingRefresh = null, callbacks = () => ({ onConnect() {}, onDisconnect() {}, onReceive() {} })) {
   return (dispatch, getState) => {
     const streamingAPIBaseURL = getState().getIn(['meta', 'streaming_api_base_url']);
@@ -69,14 +77,42 @@ export function connectStream(path, pollingRefresh = null, callbacks = () => ({
 
 
 export default function getStream(streamingAPIBaseURL, accessToken, stream, { connected, received, disconnected, reconnected }) {
-  const params = [ `stream=${stream}` ];
-
-  const ws = new WebSocketClient(`${streamingAPIBaseURL}/api/v1/streaming/?${params.join('&')}`, accessToken);
-
-  ws.onopen      = connected;
-  ws.onmessage   = e => received(JSON.parse(e.data));
-  ws.onclose     = disconnected;
-  ws.onreconnect = reconnected;
+  const params = stream.split('&');
+  stream = params.shift();
+
+  if (streamingAPIBaseURL.startsWith('ws')) {
+    params.unshift(`stream=${stream}`);
+    const ws = new WebSocketClient(`${streamingAPIBaseURL}/api/v1/streaming/?${params.join('&')}`, accessToken);
+
+    ws.onopen      = connected;
+    ws.onmessage   = e => received(JSON.parse(e.data));
+    ws.onclose     = disconnected;
+    ws.onreconnect = reconnected;
+
+    return ws;
+  }
+
+  params.push(`access_token=${accessToken}`);
+  const es = new EventSource(`${streamingAPIBaseURL}/api/v1/streaming/${stream}?${params.join('&')}`);
+
+  let firstConnect = true;
+  es.onopen = () => {
+    if (firstConnect) {
+      firstConnect = false;
+      connected();
+    } else {
+      reconnected();
+    }
+  };
+  for (let type of knownEventTypes) {
+    es.addEventListener(type, (e) => {
+      received({
+        event: e.type,
+        payload: e.data,
+      });
+    });
+  }
+  es.onerror = disconnected;
 
-  return ws;
+  return es;
 };
diff --git a/app/javascript/mastodon/utils/numbers.js b/app/javascript/mastodon/utils/numbers.js
index f7e4ceb9354e50ca340f3a20ca7750de1acb76aa..af18dcfddb2a80cb552206d553938a03d9a53d4b 100644
--- a/app/javascript/mastodon/utils/numbers.js
+++ b/app/javascript/mastodon/utils/numbers.js
@@ -4,9 +4,13 @@ import { FormattedNumber } from 'react-intl';
 export const shortNumberFormat = number => {
   if (number < 1000) {
     return <FormattedNumber value={number} />;
-  } else if (number < 1000000) {
+  } else if (number < 10000) {
     return <Fragment><FormattedNumber value={number / 1000} maximumFractionDigits={1} />K</Fragment>;
-  } else {
+  } else if (number < 1000000) {
+    return <Fragment><FormattedNumber value={number / 1000} maximumFractionDigits={0} />K</Fragment>;
+  } else if (number < 10000000) {
     return <Fragment><FormattedNumber value={number / 1000000} maximumFractionDigits={1} />M</Fragment>;
+  } else {
+    return <Fragment><FormattedNumber value={number / 1000000} maximumFractionDigits={0} />M</Fragment>;
   }
 };
diff --git a/app/javascript/mastodon/utils/resize_image.js b/app/javascript/mastodon/utils/resize_image.js
index 7196dc96b1e9b26ab3db09072188f294529e4249..b0f2fd565971d2e33949fe12fa63775e5d87e2a0 100644
--- a/app/javascript/mastodon/utils/resize_image.js
+++ b/app/javascript/mastodon/utils/resize_image.js
@@ -95,8 +95,10 @@ const resizeImage = (img, type = 'image/png') => new Promise((resolve, reject) =
     .catch(reject);
 });
 
+const WITHOUT_RESIZING_FORMATS = ['image/gif', 'image/heic', 'image/heif'];
+
 export default inputFile => new Promise((resolve, reject) => {
-  if (!inputFile.type.match(/image.*/) || inputFile.type === 'image/gif') {
+  if (!inputFile.type.match(/image.*/) || WITHOUT_RESIZING_FORMATS.indexOf(inputFile.type) >= 0) {
     resolve(inputFile);
     return;
   }
diff --git a/app/javascript/mastodon/utils/uniq.js b/app/javascript/mastodon/utils/uniq.js
new file mode 100644
index 0000000000000000000000000000000000000000..00f1804a19e07d60eb7540798f7962d57bb31c51
--- /dev/null
+++ b/app/javascript/mastodon/utils/uniq.js
@@ -0,0 +1,3 @@
+export const uniq = array => {
+  return array.filter((x, i, self) => self.indexOf(x) === i)
+};
diff --git a/app/javascript/packs/admin.js b/app/javascript/packs/admin.js
index 42c747d2efc50e379edee125c2717fdf5dbfb5d8..b318cadc66c54f79089384a97ad4ad61196b13ad 100644
--- a/app/javascript/packs/admin.js
+++ b/app/javascript/packs/admin.js
@@ -45,7 +45,25 @@ const onDomainBlockSeverityChange = (target) => {
 
 delegate(document, '#domain_block_severity', 'change', ({ target }) => onDomainBlockSeverityChange(target));
 
+const onEnableBootstrapTimelineAccountsChange = (target) => {
+  const bootstrapTimelineAccountsField = document.querySelector('#form_admin_settings_bootstrap_timeline_accounts');
+
+  if (bootstrapTimelineAccountsField) {
+    bootstrapTimelineAccountsField.disabled = !target.checked;
+    if (target.checked) {
+      bootstrapTimelineAccountsField.parentElement.classList.remove('disabled');
+    } else {
+      bootstrapTimelineAccountsField.parentElement.classList.add('disabled');
+    }
+  }
+};
+
+delegate(document, '#form_admin_settings_enable_bootstrap_timeline_accounts', 'change', ({ target }) => onEnableBootstrapTimelineAccountsChange(target));
+
 ready(() => {
-  const input = document.getElementById('domain_block_severity');
-  if (input) onDomainBlockSeverityChange(input);
+  const domainBlockSeverityInput = document.getElementById('domain_block_severity');
+  if (domainBlockSeverityInput) onDomainBlockSeverityChange(domainBlockSeverityInput);
+
+  const enableBootstrapTimelineAccounts = document.getElementById('form_admin_settings_enable_bootstrap_timeline_accounts');
+  if (enableBootstrapTimelineAccounts) onEnableBootstrapTimelineAccountsChange(enableBootstrapTimelineAccounts);
 });
diff --git a/app/javascript/packs/public.js b/app/javascript/packs/public.js
index ed713f335ae7ac6d685ae9a66e5799aca4f0f223..bb5048cb8f2d0e141642aaa95079d3785a142a19 100644
--- a/app/javascript/packs/public.js
+++ b/app/javascript/packs/public.js
@@ -2,6 +2,7 @@ import escapeTextContentForBrowser from 'escape-html';
 import loadPolyfills from '../mastodon/load_polyfills';
 import ready from '../mastodon/ready';
 import { start } from '../mastodon/common';
+import loadKeyboardExtensions from '../mastodon/load_keyboard_extensions';
 
 start();
 
@@ -141,15 +142,6 @@ function main() {
     return false;
   });
 
-  delegate(document, '.blocks-table button.icon-button', 'click', function(e) {
-    e.preventDefault();
-
-    const classList = this.firstElementChild.classList;
-    classList.toggle('fa-chevron-down');
-    classList.toggle('fa-chevron-up');
-    this.parentElement.parentElement.nextElementSibling.classList.toggle('hidden');
-  });
-
   delegate(document, '.modal-button', 'click', e => {
     e.preventDefault();
 
@@ -257,8 +249,24 @@ function main() {
       target.style.display = 'block';
     }
   });
+  
+  delegate(document, '.quote-status', 'click', ({ target }) => {
+    if (target.closest('.status__content__spoiler-link') ||
+      target.closest('.media-gallery'))
+      return false;
+    const url = target.closest('.status__display-name') ? target.closest('.status__display-name').getAttribute('href') : target.closest('.quote-status').getAttribute('dataurl');
+    if (window.location.hostname === url.split('/')[2].split(':')[0]) {
+      window.location.href = url;
+    } else {
+      window.open(url, 'blank');
+    }
+    return false;
+  });
 }
 
-loadPolyfills().then(main).catch(error => {
-  console.error(error);
-});
+loadPolyfills()
+  .then(main)
+  .then(loadKeyboardExtensions)
+  .catch(error => {
+    console.error(error);
+  });
diff --git a/app/javascript/styles/instance-ticker-type-0-contrast.scss b/app/javascript/styles/instance-ticker-type-0-contrast.scss
new file mode 100644
index 0000000000000000000000000000000000000000..14f7075c151ab7aa089ddefc188c44ae0121230d
--- /dev/null
+++ b/app/javascript/styles/instance-ticker-type-0-contrast.scss
@@ -0,0 +1,4 @@
+@import 'contrast/variables';
+@import 'application';
+@import 'contrast/diff';
+@import url("https://wee.jp/css/0.css");
diff --git a/app/javascript/styles/instance-ticker-type-0-light.scss b/app/javascript/styles/instance-ticker-type-0-light.scss
new file mode 100644
index 0000000000000000000000000000000000000000..39d1af8790b9f1baea47ca1e84f1cf79de963636
--- /dev/null
+++ b/app/javascript/styles/instance-ticker-type-0-light.scss
@@ -0,0 +1,4 @@
+@import 'mastodon-light/variables';
+@import 'application';
+@import 'mastodon-light/diff';
+@import url("https://wee.jp/css/0.css");
diff --git a/app/javascript/styles/instance-ticker-type-0.scss b/app/javascript/styles/instance-ticker-type-0.scss
new file mode 100644
index 0000000000000000000000000000000000000000..21da905c6dedba1d1390df78a60b4d30ab0978e3
--- /dev/null
+++ b/app/javascript/styles/instance-ticker-type-0.scss
@@ -0,0 +1,2 @@
+@import 'application';
+@import url("https://wee.jp/css/0.css");
diff --git a/app/javascript/styles/instance-ticker-type-1-contrast.scss b/app/javascript/styles/instance-ticker-type-1-contrast.scss
new file mode 100644
index 0000000000000000000000000000000000000000..795ed9feb8408b425df6151202525e6df1129fa3
--- /dev/null
+++ b/app/javascript/styles/instance-ticker-type-1-contrast.scss
@@ -0,0 +1,4 @@
+@import 'contrast/variables';
+@import 'application';
+@import 'contrast/diff';
+@import url("https://wee.jp/css/1.css");
diff --git a/app/javascript/styles/instance-ticker-type-1-light.scss b/app/javascript/styles/instance-ticker-type-1-light.scss
new file mode 100644
index 0000000000000000000000000000000000000000..81c072865db79d3fe1240e9ea97e811bfb1b77cb
--- /dev/null
+++ b/app/javascript/styles/instance-ticker-type-1-light.scss
@@ -0,0 +1,4 @@
+@import 'mastodon-light/variables';
+@import 'application';
+@import 'mastodon-light/diff';
+@import url("https://wee.jp/css/1.css");
diff --git a/app/javascript/styles/instance-ticker-type-1.scss b/app/javascript/styles/instance-ticker-type-1.scss
new file mode 100644
index 0000000000000000000000000000000000000000..c149484e40bd7706c97889e4293781ebaa3b3eda
--- /dev/null
+++ b/app/javascript/styles/instance-ticker-type-1.scss
@@ -0,0 +1,2 @@
+@import 'application';
+@import url("https://wee.jp/css/1.css");
diff --git a/app/javascript/styles/instance-ticker-type-10-contrast.scss b/app/javascript/styles/instance-ticker-type-10-contrast.scss
new file mode 100644
index 0000000000000000000000000000000000000000..dbe5a7e900779d19632d80c755f52495c61b3af4
--- /dev/null
+++ b/app/javascript/styles/instance-ticker-type-10-contrast.scss
@@ -0,0 +1,4 @@
+@import 'contrast/variables';
+@import 'application';
+@import 'contrast/diff';
+@import url("https://wee.jp/css/10.css");
diff --git a/app/javascript/styles/instance-ticker-type-10-light.scss b/app/javascript/styles/instance-ticker-type-10-light.scss
new file mode 100644
index 0000000000000000000000000000000000000000..bf1d19d8af9842a7b8d92d51af3e79eff430c403
--- /dev/null
+++ b/app/javascript/styles/instance-ticker-type-10-light.scss
@@ -0,0 +1,4 @@
+@import 'mastodon-light/variables';
+@import 'application';
+@import 'mastodon-light/diff';
+@import url("https://wee.jp/css/10.css");
diff --git a/app/javascript/styles/instance-ticker-type-10.scss b/app/javascript/styles/instance-ticker-type-10.scss
new file mode 100644
index 0000000000000000000000000000000000000000..011a0f148c711b99d205f83ab57863143366bea4
--- /dev/null
+++ b/app/javascript/styles/instance-ticker-type-10.scss
@@ -0,0 +1,2 @@
+@import 'application';
+@import url("https://wee.jp/css/10.css");
diff --git a/app/javascript/styles/instance-ticker-type-11-contrast.scss b/app/javascript/styles/instance-ticker-type-11-contrast.scss
new file mode 100644
index 0000000000000000000000000000000000000000..d0e298f1a016511a49756022a813c3348f571dfc
--- /dev/null
+++ b/app/javascript/styles/instance-ticker-type-11-contrast.scss
@@ -0,0 +1,4 @@
+@import 'contrast/variables';
+@import 'application';
+@import 'contrast/diff';
+@import url("https://wee.jp/css/11.css");
diff --git a/app/javascript/styles/instance-ticker-type-11-light.scss b/app/javascript/styles/instance-ticker-type-11-light.scss
new file mode 100644
index 0000000000000000000000000000000000000000..0a8878c408435179e4dd706a955e1c8b00a14162
--- /dev/null
+++ b/app/javascript/styles/instance-ticker-type-11-light.scss
@@ -0,0 +1,4 @@
+@import 'mastodon-light/variables';
+@import 'application';
+@import 'mastodon-light/diff';
+@import url("https://wee.jp/css/11.css");
diff --git a/app/javascript/styles/instance-ticker-type-11.scss b/app/javascript/styles/instance-ticker-type-11.scss
new file mode 100644
index 0000000000000000000000000000000000000000..0fb343092987f6828c5620b76bd35a0032331f4d
--- /dev/null
+++ b/app/javascript/styles/instance-ticker-type-11.scss
@@ -0,0 +1,2 @@
+@import 'application';
+@import url("https://wee.jp/css/11.css");
diff --git a/app/javascript/styles/instance-ticker-type-12-contrast.scss b/app/javascript/styles/instance-ticker-type-12-contrast.scss
new file mode 100644
index 0000000000000000000000000000000000000000..b9f8690ea4fb4f6aa73096cdcfd0efb561c0e9dc
--- /dev/null
+++ b/app/javascript/styles/instance-ticker-type-12-contrast.scss
@@ -0,0 +1,4 @@
+@import 'contrast/variables';
+@import 'application';
+@import 'contrast/diff';
+@import url("https://wee.jp/css/12.css");
diff --git a/app/javascript/styles/instance-ticker-type-12-light.scss b/app/javascript/styles/instance-ticker-type-12-light.scss
new file mode 100644
index 0000000000000000000000000000000000000000..e9bf151e3d9319237fc004aed1267e928b590a0f
--- /dev/null
+++ b/app/javascript/styles/instance-ticker-type-12-light.scss
@@ -0,0 +1,4 @@
+@import 'mastodon-light/variables';
+@import 'application';
+@import 'mastodon-light/diff';
+@import url("https://wee.jp/css/12.css");
diff --git a/app/javascript/styles/instance-ticker-type-12.scss b/app/javascript/styles/instance-ticker-type-12.scss
new file mode 100644
index 0000000000000000000000000000000000000000..b60b38945d76b941f751b2a09b493481e5fe0428
--- /dev/null
+++ b/app/javascript/styles/instance-ticker-type-12.scss
@@ -0,0 +1,2 @@
+@import 'application';
+@import url("https://wee.jp/css/12.css");
diff --git a/app/javascript/styles/instance-ticker-type-2-contrast.scss b/app/javascript/styles/instance-ticker-type-2-contrast.scss
new file mode 100644
index 0000000000000000000000000000000000000000..05293d613a38f30a67d1d51e9999f13d4d0415d8
--- /dev/null
+++ b/app/javascript/styles/instance-ticker-type-2-contrast.scss
@@ -0,0 +1,4 @@
+@import 'contrast/variables';
+@import 'application';
+@import 'contrast/diff';
+@import url("https://wee.jp/css/2.css");
diff --git a/app/javascript/styles/instance-ticker-type-2-light.scss b/app/javascript/styles/instance-ticker-type-2-light.scss
new file mode 100644
index 0000000000000000000000000000000000000000..8004154d21540bedf67bae191068564dab512945
--- /dev/null
+++ b/app/javascript/styles/instance-ticker-type-2-light.scss
@@ -0,0 +1,4 @@
+@import 'mastodon-light/variables';
+@import 'application';
+@import 'mastodon-light/diff';
+@import url("https://wee.jp/css/2.css");
diff --git a/app/javascript/styles/instance-ticker-type-2.scss b/app/javascript/styles/instance-ticker-type-2.scss
new file mode 100644
index 0000000000000000000000000000000000000000..efd49c1b8cd1f50a36bcdb61960972e8fb60f8ba
--- /dev/null
+++ b/app/javascript/styles/instance-ticker-type-2.scss
@@ -0,0 +1,2 @@
+@import 'application';
+@import url("https://wee.jp/css/2.css");
diff --git a/app/javascript/styles/mastodon/_mixins.scss b/app/javascript/styles/mastodon/_mixins.scss
index 68cad0fde31787b36485cb645bc1b0c29d87e547..4e3e1434a0258f2326e29e4c8c7f3f8c29722746 100644
--- a/app/javascript/styles/mastodon/_mixins.scss
+++ b/app/javascript/styles/mastodon/_mixins.scss
@@ -34,9 +34,8 @@
   box-shadow: 2px 4px 15px rgba($base-shadow-color, 0.4);
 
   h4 {
-    text-transform: uppercase;
     color: $light-text-color;
-    font-size: 13px;
+    font-size: 14px;
     font-weight: 500;
     margin-bottom: 10px;
   }
diff --git a/app/javascript/styles/mastodon/about.scss b/app/javascript/styles/mastodon/about.scss
index cf16b54ac179acac973d9d4e654f0f8f6476e03e..20123518739cae58fbeb91e01b8d0d5a3c812783 100644
--- a/app/javascript/styles/mastodon/about.scss
+++ b/app/javascript/styles/mastodon/about.scss
@@ -719,9 +719,8 @@ $small-breakpoint: 960px;
 
     h4 {
       padding: 10px;
-      text-transform: uppercase;
       font-weight: 700;
-      font-size: 13px;
+      font-size: 14px;
       color: $darker-text-color;
     }
 
diff --git a/app/javascript/styles/mastodon/accounts.scss b/app/javascript/styles/mastodon/accounts.scss
index 5dc067f0e8f6805d5f2c8a6eed3d45a6669c3b06..a1681afe65026c5f36d5d7924c031eacd66465fe 100644
--- a/app/javascript/styles/mastodon/accounts.scss
+++ b/app/javascript/styles/mastodon/accounts.scss
@@ -129,7 +129,6 @@
 
   .older,
   .newer {
-    text-transform: uppercase;
     color: $secondary-text-color;
   }
 
diff --git a/app/javascript/styles/mastodon/admin.scss b/app/javascript/styles/mastodon/admin.scss
index dde1d69ba0a54cf44b8a6c84aa7feb72b55dc26f..5468b337074937c347bd0cbef7c195ed0eaa2a63 100644
--- a/app/javascript/styles/mastodon/admin.scss
+++ b/app/javascript/styles/mastodon/admin.scss
@@ -181,18 +181,44 @@ $content-width: 840px;
       padding-top: 30px;
     }
 
+    &-heading {
+      display: flex;
+
+      padding-bottom: 40px;
+      border-bottom: 1px solid lighten($ui-base-color, 8%);
+
+      margin: -15px -15px 40px 0;
+
+      flex-wrap: wrap;
+      align-items: center;
+      justify-content: space-between;
+
+      & > * {
+        margin-top: 15px;
+        margin-right: 15px;
+      }
+
+      &-actions {
+        display: inline-flex;
+
+        & > :not(:first-child) {
+          margin-left: 5px;
+        }
+      }
+
+      @media screen and (max-width: $no-columns-breakpoint) {
+        border-bottom: 0;
+        padding-bottom: 0;
+      }
+    }
+
     h2 {
       color: $secondary-text-color;
       font-size: 24px;
       line-height: 28px;
       font-weight: 400;
-      padding-bottom: 40px;
-      border-bottom: 1px solid lighten($ui-base-color, 8%);
-      margin-bottom: 40px;
 
       @media screen and (max-width: $no-columns-breakpoint) {
-        border-bottom: 0;
-        padding-bottom: 0;
         font-weight: 700;
       }
     }
@@ -206,8 +232,7 @@ $content-width: 840px;
     }
 
     h4 {
-      text-transform: uppercase;
-      font-size: 13px;
+      font-size: 14px;
       font-weight: 700;
       color: $darker-text-color;
       padding-bottom: 8px;
@@ -382,8 +407,7 @@ body,
 
     strong {
       font-weight: 500;
-      text-transform: uppercase;
-      font-size: 12px;
+      font-size: 13px;
 
       @each $lang in $cjk-langs {
         &:lang(#{$lang}) {
@@ -396,8 +420,7 @@ body,
       display: inline-block;
       color: $darker-text-color;
       text-decoration: none;
-      text-transform: uppercase;
-      font-size: 12px;
+      font-size: 13px;
       font-weight: 500;
       border-bottom: 2px solid $ui-base-color;
 
@@ -731,7 +754,6 @@ a.name-tag,
       flex: 0 0 auto;
       font-weight: 500;
       color: $darker-text-color;
-      text-transform: uppercase;
       text-align: right;
 
       a {
@@ -857,3 +879,11 @@ a.name-tag,
     color: $primary-text-color;
   }
 }
+
+.center-text {
+  text-align: center;
+}
+
+.exclude-keyword {
+  color: $error-value-color;
+}
diff --git a/app/javascript/styles/mastodon/components.scss b/app/javascript/styles/mastodon/components.scss
index 86425c47c4ac42f841a77fb3da2fb3b741bd146f..087e433b206a03ec45fa56a243bce5ed0bec1b25 100644
--- a/app/javascript/styles/mastodon/components.scss
+++ b/app/javascript/styles/mastodon/components.scss
@@ -33,7 +33,7 @@
   cursor: pointer;
   display: inline-block;
   font-family: inherit;
-  font-size: 14px;
+  font-size: 15px;
   font-weight: 500;
   height: 36px;
   letter-spacing: 0;
@@ -42,7 +42,6 @@
   padding: 0 16px;
   position: relative;
   text-align: center;
-  text-transform: uppercase;
   text-decoration: none;
   text-overflow: ellipsis;
   transition: all 100ms ease-in;
@@ -392,6 +391,7 @@
   .autosuggest-input,
   .spoiler-input {
     position: relative;
+    width: 100%;
   }
 
   .spoiler-input {
@@ -723,26 +723,37 @@
 }
 
 .reply-indicator {
+  background: $ui-primary-color;
+}
+
+.quote-indicator {
+  background: $success-green;
+}
+
+.reply-indicator,
+.quote-indicator {
   border-radius: 4px;
   margin-bottom: 10px;
-  background: $ui-primary-color;
   padding: 10px;
   min-height: 23px;
   overflow-y: auto;
   flex: 0 2 auto;
 }
 
-.reply-indicator__header {
+.reply-indicator__header,
+.quote-indicator__header {
   margin-bottom: 5px;
   overflow: hidden;
 }
 
-.reply-indicator__cancel {
+.reply-indicator__cancel,
+.quote-indicator__cancel {
   float: right;
   line-height: 24px;
 }
 
-.reply-indicator__display-name {
+.reply-indicator__display-name,
+.quote-indicator__display-name {
   color: $inverted-text-color;
   display: block;
   max-width: 100%;
@@ -752,7 +763,8 @@
   text-decoration: none;
 }
 
-.reply-indicator__display-avatar {
+.reply-indicator__display-avatar,
+.quote-indicator__display-avatar {
   float: left;
   margin-right: 5px;
 }
@@ -762,7 +774,8 @@
 }
 
 .status__content,
-.reply-indicator__content {
+.reply-indicator__content,
+.quote-indicator__content {
   position: relative;
   font-size: 15px;
   line-height: 20px;
@@ -886,9 +899,8 @@
   border: 0;
   color: $inverted-text-color;
   font-weight: 700;
-  font-size: 11px;
+  font-size: 12px;
   padding: 0 6px;
-  text-transform: uppercase;
   line-height: 20px;
   cursor: pointer;
   vertical-align: middle;
@@ -908,6 +920,56 @@
   border-bottom: 1px solid lighten($ui-base-color, 8%);
 }
 
+.quote-inline {
+  display: none;
+}
+
+.quote-status {
+  border: solid 1px $ui-base-lighter-color;
+  border-radius: 4px;
+  padding: 5px;
+  margin-top: 8px;
+  position: relative;
+
+  & > .unlisted-quote {
+    color: $dark-text-color;
+    font-weight: 500;
+  }
+
+  .status__avatar {
+    height: 18px;
+    width: 18px;
+    position: absolute;
+    top: 5px;
+    left: 5px;
+    cursor: pointer;
+
+    & > div {
+      width: 18px;
+      height: 18px;
+    }
+  }
+
+  .display-name__account {
+    color: $ui-base-lighter-color;
+  }
+
+  .display-name {
+    padding-left: 20px;
+  }
+}
+
+@media screen and (min-width: 630px) {
+  .columns-area--mobile .quote-status .status__avatar {
+    top: 5px;
+    left: 5px;
+  }
+}
+
+.muted .quote-status .display-name {
+  color: $ui-base-lighter-color;
+}
+
 .status__prepend-icon-wrapper {
   left: -26px;
   position: absolute;
@@ -1001,6 +1063,29 @@
       }
     }
   }
+
+  &-unlisted time::after,
+  &-private time::after,
+  &-direct time::after {
+      display: inline-block;
+      text-align: center;
+      width: 14px;
+      height: 14px;
+      font: 14px/1 FontAwesome;
+      margin-left: 4px;
+  }
+
+  &-unlisted time::after {
+      content: "\f09C";
+  }
+
+  &-private time::after {
+      content: "\F023";
+  }
+
+  &-direct time::after {
+      content: "\F0E0";
+  }
 }
 
 .notification-favourite {
@@ -1134,6 +1219,7 @@
 .detailed-status {
   background: lighten($ui-base-color, 4%);
   padding: 14px 10px;
+  position: relative;
 
   &--flex {
     display: flex;
@@ -1147,6 +1233,37 @@
     }
   }
 
+  &-unlisted::before,
+  &-private::before,
+  &-direct::before {
+    display: block;
+    position: absolute;
+    width: 14px;
+    height: 14px;
+    right: 10px;
+    top: 20px;
+    font: 14px/1 FontAwesome;
+    color: #606984;
+  }
+
+  &-unlisted .display-name,
+  &-private .display-name,
+  &-direct .display-name {
+    padding-right: 10px;
+  }
+
+  &-unlisted::before {
+      content: "\f09C";
+  }
+
+  &-private::before {
+      content: "\F023";
+  }
+
+  &-direct::before {
+      content: "\F0E0";
+  }
+
   .status__content {
     font-size: 19px;
     line-height: 24px;
@@ -1198,7 +1315,8 @@
   margin-left: 6px;
 }
 
-.reply-indicator__content {
+.reply-indicator__content,
+.quote-indicator__content {
   color: $inverted-text-color;
   font-size: 14px;
 
@@ -1358,77 +1476,6 @@ a .account__avatar {
   }
 }
 
-.account__action-bar {
-  border-top: 1px solid lighten($ui-base-color, 8%);
-  border-bottom: 1px solid lighten($ui-base-color, 8%);
-  line-height: 36px;
-  overflow: hidden;
-  flex: 0 0 auto;
-  display: flex;
-}
-
-.account__action-bar-dropdown {
-  padding: 10px;
-
-  .icon-button {
-    vertical-align: middle;
-  }
-
-  .dropdown--active {
-    .dropdown__content.dropdown__right {
-      left: 6px;
-      right: initial;
-    }
-
-    &::after {
-      bottom: initial;
-      margin-left: 11px;
-      margin-top: -7px;
-      right: initial;
-    }
-  }
-}
-
-.account__action-bar-links {
-  display: flex;
-  flex: 1 1 auto;
-  line-height: 18px;
-  text-align: center;
-}
-
-.account__action-bar__tab {
-  text-decoration: none;
-  overflow: hidden;
-  flex: 0 1 100%;
-  border-right: 1px solid lighten($ui-base-color, 8%);
-  padding: 10px 0;
-  border-bottom: 4px solid transparent;
-
-  &.active {
-    border-bottom: 4px solid $ui-highlight-color;
-  }
-
-  & > span {
-    display: block;
-    text-transform: uppercase;
-    font-size: 11px;
-    color: $darker-text-color;
-  }
-
-  strong {
-    display: block;
-    font-size: 15px;
-    font-weight: 500;
-    color: $primary-text-color;
-
-    @each $lang in $cjk-langs {
-      &:lang(#{$lang}) {
-        font-weight: 700;
-      }
-    }
-  }
-}
-
 .account-authorize {
   padding: 14px 10px;
 
@@ -1515,6 +1562,15 @@ a.account__display-name {
   margin-right: 10px;
 }
 
+.account__action-bar {
+  position: absolute;
+  height: 24px;
+  width: 48px;
+  top: 60px;
+  left: 10px;
+  z-index: 1;
+}
+
 .status__avatar {
   height: 48px;
   left: 10px;
@@ -1591,6 +1647,24 @@ a.account__display-name {
   color: $gold-star;
 }
 
+.bookmark-icon.active {
+  color: $red-bookmark;
+}
+
+.no-reduce-motion .icon-button.star-icon {
+  &.activate {
+    & > .fa-star {
+      animation: spring-rotate-in 1s linear;
+    }
+  }
+
+  &.deactivate {
+    & > .fa-star {
+      animation: spring-rotate-out 1s linear;
+    }
+  }
+}
+
 .notification__display-name {
   color: inherit;
   font-weight: 500;
@@ -2251,6 +2325,11 @@ a.account__display-name {
         margin-right: 15px;
       }
     }
+
+    .account__action-bar {
+      top: 67px;
+      left: 15px;
+    }
   }
 }
 
@@ -2493,7 +2572,6 @@ a.account__display-name {
   overflow-x: hidden;
   flex: 1 1 auto;
   -webkit-overflow-scrolling: touch;
-  will-change: transform; // improves perf in mobile Chrome
 
   &.optionally-scrollable {
     overflow-y: auto;
@@ -2742,9 +2820,8 @@ a.account__display-name {
   background: $ui-base-color;
   color: $dark-text-color;
   padding: 8px 20px;
-  font-size: 12px;
+  font-size: 13px;
   font-weight: 500;
-  text-transform: uppercase;
   cursor: default;
 }
 
@@ -2809,8 +2886,7 @@ a.account__display-name {
     margin-top: 10px;
 
     h4 {
-      font-size: 12px;
-      text-transform: uppercase;
+      font-size: 13px;
       color: $darker-text-color;
       padding: 10px;
       font-weight: 500;
@@ -3332,9 +3408,8 @@ a.status-card.compact:hover {
 
 .loading-indicator {
   color: $dark-text-color;
-  font-size: 12px;
+  font-size: 13px;
   font-weight: 400;
-  text-transform: uppercase;
   overflow: visible;
   position: absolute;
   top: 50%;
@@ -3373,6 +3448,50 @@ a.status-card.compact:hover {
   animation: loader-figure 1.15s infinite cubic-bezier(0.215, 0.61, 0.355, 1);
 }
 
+@keyframes spring-rotate-in {
+  0% {
+    transform: rotate(0deg);
+  }
+
+  30% {
+    transform: rotate(-484.8deg);
+  }
+
+  60% {
+    transform: rotate(-316.7deg);
+  }
+
+  90% {
+    transform: rotate(-375deg);
+  }
+
+  100% {
+    transform: rotate(-360deg);
+  }
+}
+
+@keyframes spring-rotate-out {
+  0% {
+    transform: rotate(-360deg);
+  }
+
+  30% {
+    transform: rotate(124.8deg);
+  }
+
+  60% {
+    transform: rotate(-43.27deg);
+  }
+
+  90% {
+    transform: rotate(15deg);
+  }
+
+  100% {
+    transform: rotate(0deg);
+  }
+}
+
 @keyframes loader-figure {
   0% {
     width: 0;
@@ -3654,8 +3773,7 @@ a.status-card.compact:hover {
   display: block;
   vertical-align: top;
   background-color: $base-overlay-background;
-  text-transform: uppercase;
-  font-size: 11px;
+  font-size: 12px;
   font-weight: 500;
   padding: 4px;
   border-radius: 4px;
@@ -3907,8 +4025,7 @@ a.status-card.compact:hover {
   }
 
   span {
-    font-size: 12px;
-    text-transform: uppercase;
+    font-size: 13px;
     font-weight: 500;
     display: block;
   }
@@ -4507,8 +4624,7 @@ a.status-card.compact:hover {
     font-weight: 500;
     color: $inverted-text-color;
     margin-bottom: 5px;
-    text-transform: uppercase;
-    font-size: 12px;
+    font-size: 13px;
   }
 
   &__case {
@@ -5194,6 +5310,7 @@ a.status-card.compact:hover {
       max-height: 100% !important;
       width: 100% !important;
       height: 100% !important;
+      outline: 0;
     }
   }
 
@@ -5271,6 +5388,10 @@ a.status-card.compact:hover {
     display: flex;
     justify-content: space-between;
     padding-bottom: 10px;
+
+    .video-player__download__icon {
+      color: inherit;
+    }
   }
 
   &__buttons {
@@ -5503,7 +5624,7 @@ a.status-card.compact:hover {
       }
 
       &__relationship {
-        width: 23px;
+        width: 46px;
         min-height: 1px;
         flex: 0 0 auto;
       }
@@ -6263,6 +6384,7 @@ noscript {
 
     &__name {
       padding: 5px;
+      display: flex;
 
       .account-role {
         vertical-align: top;
@@ -6281,6 +6403,7 @@ noscript {
         overflow: hidden;
         white-space: nowrap;
         text-overflow: ellipsis;
+        flex: 1 1 auto;
 
         small {
           display: block;
@@ -6291,6 +6414,9 @@ noscript {
           text-overflow: ellipsis;
         }
       }
+      &__relationship {
+        flex: 0 0 auto;
+      }
     }
 
     .spacer {
@@ -6332,13 +6458,13 @@ noscript {
     &__links {
       font-size: 14px;
       color: $darker-text-color;
+      padding: 10px 0;
 
       a {
         display: inline-block;
         color: $darker-text-color;
         text-decoration: none;
-        padding: 10px;
-        padding-top: 20px;
+        padding: 5px 10px;
         font-weight: 500;
 
         strong {
@@ -6449,6 +6575,16 @@ noscript {
     flex: 0 0 auto;
     padding: 10px;
     padding-top: 12px;
+    position: relative;
+  }
+
+  &__unread {
+    display: inline-block;
+    background: $highlight-text-color;
+    border-radius: 50%;
+    width: 0.625rem;
+    height: 0.625rem;
+    margin: -.1ex .15em .1ex;
   }
 
   &__content {
@@ -6496,4 +6632,20 @@ noscript {
       word-break: break-word;
     }
   }
+
+  &--unread {
+    background: lighten($ui-base-color, 2%);
+
+    &:focus {
+      background: lighten($ui-base-color, 4%);
+    }
+
+    .conversation__content__info {
+      font-weight: 700;
+    }
+
+    .conversation__content__relative-time {
+      color: $primary-text-color;
+    }
+  }
 }
diff --git a/app/javascript/styles/mastodon/containers.scss b/app/javascript/styles/mastodon/containers.scss
index 319f8c94dad549384f284442d8b3bf38975777fc..51d9b46b0f34fd0de7b7eba43c76b82710d75f6c 100644
--- a/app/javascript/styles/mastodon/containers.scss
+++ b/app/javascript/styles/mastodon/containers.scss
@@ -646,7 +646,7 @@
         }
 
         .counter {
-          width: 33.3%;
+          min-width: 33.3%;
           box-sizing: border-box;
           flex: 0 0 auto;
           color: $darker-text-color;
diff --git a/app/javascript/styles/mastodon/footer.scss b/app/javascript/styles/mastodon/footer.scss
index 00d2908832fbca0a8cfe18715c3ab4b6381c586c..f016248ba16c75f711fa0b91410f14dc887d7576 100644
--- a/app/javascript/styles/mastodon/footer.scss
+++ b/app/javascript/styles/mastodon/footer.scss
@@ -94,7 +94,6 @@
     }
 
     h4 {
-      text-transform: uppercase;
       font-weight: 700;
       margin-bottom: 8px;
       color: $darker-text-color;
diff --git a/app/javascript/styles/mastodon/forms.scss b/app/javascript/styles/mastodon/forms.scss
index b729d912e539394bc47452d1464515818d6b4092..8965ce67515bde5b032d26f55860eab92789160a 100644
--- a/app/javascript/styles/mastodon/forms.scss
+++ b/app/javascript/styles/mastodon/forms.scss
@@ -414,7 +414,6 @@ code {
     line-height: inherit;
     height: auto;
     padding: 10px;
-    text-transform: uppercase;
     text-decoration: none;
     text-align: center;
     box-sizing: border-box;
@@ -513,6 +512,10 @@ code {
   &__overlay-area {
     position: relative;
 
+    &__blurred form {
+      filter: blur(2px);
+    }
+
     &__overlay {
       position: absolute;
       top: 0;
@@ -523,8 +526,10 @@ code {
       justify-content: center;
       align-items: center;
       background: rgba($ui-base-color, 0.65);
-      backdrop-filter: blur(2px);
       border-radius: 4px;
+      margin-left: -4px;
+      margin-top: -4px;
+      padding: 4px;
 
       &__content {
         text-align: center;
@@ -651,7 +656,6 @@ code {
 
   a {
     color: $highlight-text-color;
-    text-transform: uppercase;
     text-decoration: none;
     font-weight: 700;
 
diff --git a/app/javascript/styles/mastodon/polls.scss b/app/javascript/styles/mastodon/polls.scss
index f59a9d693a07ab5bd35f455644c03f41b7b1dbb4..d7d850a1e996ea166a23ddb2fe290f7528a322c8 100644
--- a/app/javascript/styles/mastodon/polls.scss
+++ b/app/javascript/styles/mastodon/polls.scss
@@ -91,6 +91,23 @@
       border-color: $valid-value-color;
       background: $valid-value-color;
     }
+
+    &:active,
+    &:focus,
+    &:hover {
+      border-width: 4px;
+      background: none;
+    }
+
+    &::-moz-focus-inner {
+      outline: 0 !important;
+      border: 0;
+    }
+
+    &:focus,
+    &:active {
+      outline: 0 !important;
+    }
   }
 
   &__number {
@@ -160,6 +177,10 @@
     button,
     select {
       flex: 1 1 50%;
+
+      &:focus {
+        border-color: $highlight-text-color;
+      }
     }
   }
 
diff --git a/app/javascript/styles/mastodon/statuses.scss b/app/javascript/styles/mastodon/statuses.scss
index 19ce0ab8f06924409caa904f2df8b42151d6e2a1..2558c99b300bb2a9f7fdef01c6a0049f9e555b41 100644
--- a/app/javascript/styles/mastodon/statuses.scss
+++ b/app/javascript/styles/mastodon/statuses.scss
@@ -63,6 +63,28 @@
       }
     }
 
+    .status.quote-status {
+      border: solid 1px $ui-base-lighter-color;
+      border-radius: 4px;
+      padding: 5px;
+      margin-top: 15px;
+      cursor: pointer;
+      width: 100%;
+
+      .status__avatar {
+        height: 18px;
+        width: 18px;
+        position: absolute;
+        top: 5px;
+        left: 5px;
+
+        & > div {
+          width: 18px;
+          height: 18px;
+        }
+      }
+    }
+
     @media screen and (max-width: 740px) {
       .detailed-status,
       .status,
diff --git a/app/javascript/styles/mastodon/tables.scss b/app/javascript/styles/mastodon/tables.scss
index 5a6e10aa4908cdb95b207cb230aa1ac762859543..eb070e0d86937254e7a500eb43294b84e7c8b13c 100644
--- a/app/javascript/styles/mastodon/tables.scss
+++ b/app/javascript/styles/mastodon/tables.scss
@@ -49,6 +49,11 @@
     }
   }
 
+  th.nowrap,
+  td.nowrap {
+    white-space: nowrap;
+  }
+
   &.inline-table {
     & > tbody > tr:nth-child(odd) {
       & > td,
@@ -149,10 +154,6 @@ a.table-action-link {
           margin-top: 0;
         }
       }
-
-      @media screen and (max-width: $no-gap-breakpoint) {
-        display: none;
-      }
     }
 
     &__actions,
@@ -174,10 +175,6 @@ a.table-action-link {
       text-align: right;
       padding-right: 16px - 5px;
     }
-
-    @media screen and (max-width: $no-gap-breakpoint) {
-      display: none;
-    }
   }
 
   &__form {
@@ -198,7 +195,7 @@ a.table-action-link {
     background: darken($ui-base-color, 4%);
 
     @media screen and (max-width: $no-gap-breakpoint) {
-      &:first-child {
+      .optional &:first-child {
         border-top: 1px solid darken($ui-base-color, 8%);
       }
     }
@@ -264,6 +261,13 @@ a.table-action-link {
     }
   }
 
+  &.optional .batch-table__toolbar,
+  &.optional .batch-table__row__select {
+    @media screen and (max-width: $no-gap-breakpoint) {
+      display: none;
+    }
+  }
+
   .status__content {
     padding-top: 0;
 
diff --git a/app/javascript/styles/mastodon/variables.scss b/app/javascript/styles/mastodon/variables.scss
index a82c44229639dac104e53e8f11452f094a1c8e96..8602c3dde9d5a38103805d77de5c76187a8892c2 100644
--- a/app/javascript/styles/mastodon/variables.scss
+++ b/app/javascript/styles/mastodon/variables.scss
@@ -6,6 +6,8 @@ $error-red: #df405a !default;        // Cerise
 $warning-red: #ff5050 !default;      // Sunset Orange
 $gold-star: #ca8f04 !default;        // Dark Goldenrod
 
+$red-bookmark: $warning-red;
+
 // Values from the classic Mastodon UI
 $classic-base-color: #282c37;         // Midnight Express
 $classic-primary-color: #9baec8;      // Echo Blue
diff --git a/app/javascript/styles/mastodon/widgets.scss b/app/javascript/styles/mastodon/widgets.scss
index ca050a8d9931d4ba2de070689a364e0810f5945d..90e1581bbea25df75724d4018feafb6c6b7d2b49 100644
--- a/app/javascript/styles/mastodon/widgets.scss
+++ b/app/javascript/styles/mastodon/widgets.scss
@@ -76,9 +76,8 @@
 
   h4 {
     padding: 10px;
-    text-transform: uppercase;
     font-weight: 700;
-    font-size: 13px;
+    font-size: 14px;
     color: $darker-text-color;
   }
 
@@ -139,9 +138,8 @@
 
   h4 {
     padding: 10px;
-    text-transform: uppercase;
     font-weight: 700;
-    font-size: 13px;
+    font-size: 14px;
     color: $darker-text-color;
   }
 
@@ -408,7 +406,6 @@
 
   thead th {
     text-align: center;
-    text-transform: uppercase;
     color: $darker-text-color;
     font-weight: 700;
     padding: 10px;
diff --git a/app/javascript/styles/mobile-small.scss b/app/javascript/styles/mobile-small.scss
new file mode 100644
index 0000000000000000000000000000000000000000..3569be3339bb7c4d964d5d1086c1efe69fa0cc1b
--- /dev/null
+++ b/app/javascript/styles/mobile-small.scss
@@ -0,0 +1,24 @@
+@import 'application';
+
+.columns-area--mobile {
+  .status {
+    &__content {
+      font-size: 13px;
+      line-height: 16px;
+    }
+    &__prepend {
+      font-size: 13px;
+    }
+  }
+  .display-name {
+    font-size: 13px;
+    &__account {
+      font-size: 13px;
+    }
+  }
+  .notification {
+    &__message {
+      font-size: 13px;
+    }
+  }
+}
diff --git a/app/lib/activitypub/activity.rb b/app/lib/activitypub/activity.rb
index a4a9baaee40e568c239b752835b80b0f720cbcb1..ee35e1e8da299f169b1bd6ad0d3aa61459378160 100644
--- a/app/lib/activitypub/activity.rb
+++ b/app/lib/activitypub/activity.rb
@@ -5,7 +5,7 @@ class ActivityPub::Activity
   include Redisable
 
   SUPPORTED_TYPES = %w(Note Question).freeze
-  CONVERTED_TYPES = %w(Image Audio Video Article Page).freeze
+  CONVERTED_TYPES = %w(Image Audio Video Article Page Event).freeze
 
   def initialize(json, account, **options)
     @json    = json
@@ -21,7 +21,7 @@ class ActivityPub::Activity
   class << self
     def factory(json, account, **options)
       @json = json
-      klass&.new(json, account, options)
+      klass&.new(json, account, **options)
     end
 
     private
@@ -89,7 +89,7 @@ class ActivityPub::Activity
   def distribute(status)
     crawl_links(status)
 
-    notify_about_reblog(status) if reblog_of_local_account?(status)
+    notify_about_reblog(status) if reblog_of_local_account?(status) && !reblog_by_following_group_account?(status)
     notify_about_mentions(status)
 
     # Only continue if the status is supposed to have arrived in real-time.
@@ -105,6 +105,10 @@ class ActivityPub::Activity
     status.reblog? && status.reblog.account.local?
   end
 
+  def reblog_by_following_group_account?(status)
+    status.reblog? && status.account.group? && status.reblog.account.following?(status.account)
+  end
+
   def notify_about_reblog(status)
     NotifyService.new.call(status.reblog.account, status)
   end
@@ -153,6 +157,14 @@ class ActivityPub::Activity
     fetch_remote_original_status
   end
 
+  def follow_request_from_object
+    @follow_request ||= FollowRequest.find_by(target_account: @account, uri: object_uri) unless object_uri.nil?
+  end
+
+  def follow_from_object
+    @follow ||= ::Follow.find_by(target_account: @account, uri: object_uri) unless object_uri.nil?
+  end
+
   def fetch_remote_original_status
     if object_uri.start_with?('http')
       return if ActivityPub::TagManager.instance.local_uri?(object_uri)
diff --git a/app/lib/activitypub/activity/accept.rb b/app/lib/activitypub/activity/accept.rb
index 348ee0d1cb3ef27ea9ccc559c18fc2ac8dadb3a7..7010ff43e8e4f8a4d4b97e19d48c209e0d49c93e 100644
--- a/app/lib/activitypub/activity/accept.rb
+++ b/app/lib/activitypub/activity/accept.rb
@@ -2,17 +2,18 @@
 
 class ActivityPub::Activity::Accept < ActivityPub::Activity
   def perform
+    return accept_follow_for_relay if relay_follow?
+    return follow_request_from_object.authorize! unless follow_request_from_object.nil?
+
     case @object['type']
     when 'Follow'
-      accept_follow
+      accept_embedded_follow
     end
   end
 
   private
 
-  def accept_follow
-    return accept_follow_for_relay if relay_follow?
-
+  def accept_embedded_follow
     target_account = account_from_uri(target_uri)
 
     return if target_account.nil? || !target_account.local?
diff --git a/app/lib/activitypub/activity/create.rb b/app/lib/activitypub/activity/create.rb
index 76bf9b2e55b244ffe687a017c23f3556d414e555..a68ef003e56170b8fc5f41c9ba1e9d9a342fda39 100644
--- a/app/lib/activitypub/activity/create.rb
+++ b/app/lib/activitypub/activity/create.rb
@@ -25,11 +25,20 @@ class ActivityPub::Activity::Create < ActivityPub::Activity
 
   private
 
+  def audience_to
+    @object['to'] || @json['to']
+  end
+
+  def audience_cc
+    @object['cc'] || @json['cc']
+  end
+
   def process_status
     @tags     = []
     @mentions = []
     @params   = {}
 
+    process_quote
     process_status_params
     process_tags
     process_audience
@@ -70,12 +79,13 @@ class ActivityPub::Activity::Create < ActivityPub::Activity
         conversation: conversation_from_uri(@object['conversation']),
         media_attachment_ids: process_attachments.take(4).map(&:id),
         poll: process_poll,
+        quote: quote,
       }
     end
   end
 
   def process_audience
-    (as_array(@object['to']) + as_array(@object['cc'])).uniq.each do |audience|
+    (as_array(audience_to) + as_array(audience_cc)).uniq.each do |audience|
       next if audience == ActivityPub::TagManager::COLLECTIONS[:public]
 
       # Unlike with tags, there is no point in resolving accounts we don't already
@@ -149,7 +159,7 @@ class ActivityPub::Activity::Create < ActivityPub::Activity
     return if tag['name'].blank?
 
     Tag.find_or_create_by_names(tag['name']) do |hashtag|
-      @tags << hashtag unless @tags.include?(hashtag)
+      @tags << hashtag unless @tags.include?(hashtag) || !hashtag.valid?
     end
   rescue ActiveRecord::RecordInvalid
     nil
@@ -159,7 +169,7 @@ class ActivityPub::Activity::Create < ActivityPub::Activity
     return if tag['href'].blank?
 
     account = account_from_uri(tag['href'])
-    account = ::FetchRemoteAccountService.new.call(tag['href']) if account.nil?
+    account = ActivityPub::FetchRemoteAccountService.new.call(tag['href']) if account.nil?
 
     return if account.nil?
 
@@ -291,11 +301,11 @@ class ActivityPub::Activity::Create < ActivityPub::Activity
   end
 
   def visibility_from_audience
-    if equals_or_includes?(@object['to'], ActivityPub::TagManager::COLLECTIONS[:public])
+    if equals_or_includes?(audience_to, ActivityPub::TagManager::COLLECTIONS[:public])
       :public
-    elsif equals_or_includes?(@object['cc'], ActivityPub::TagManager::COLLECTIONS[:public])
+    elsif equals_or_includes?(audience_cc, ActivityPub::TagManager::COLLECTIONS[:public])
       :unlisted
-    elsif equals_or_includes?(@object['to'], @account.followers_url)
+    elsif equals_or_includes?(audience_to, @account.followers_url)
       :private
     else
       :direct
@@ -304,7 +314,7 @@ class ActivityPub::Activity::Create < ActivityPub::Activity
 
   def audience_includes?(account)
     uri = ActivityPub::TagManager.instance.uri_for(account)
-    equals_or_includes?(@object['to'], uri) || equals_or_includes?(@object['cc'], uri)
+    equals_or_includes?(audience_to, uri) || equals_or_includes?(audience_cc, uri)
   end
 
   def replied_to_status
@@ -326,7 +336,9 @@ class ActivityPub::Activity::Create < ActivityPub::Activity
   def text_from_content
     return Formatter.instance.linkify([[text_from_name, text_from_summary.presence].compact.join("\n\n"), object_url || @object['id']].join(' ')) if converted_object_type?
 
-    if @object['content'].present?
+    if @object['quoteUrl'].blank? && @object['_misskey_quote'].present?
+      Formatter.instance.linkify(@object['_misskey_content'])
+    elsif @object['content'].present?
       @object['content']
     elsif content_language_map?
       @object['contentMap'].values.first
@@ -415,7 +427,7 @@ class ActivityPub::Activity::Create < ActivityPub::Activity
   def addresses_local_accounts?
     return true if @options[:delivered_to_account_id]
 
-    local_usernames = (as_array(@object['to']) + as_array(@object['cc'])).uniq.select { |uri| ActivityPub::TagManager.instance.local_uri?(uri) }.map { |uri| ActivityPub::TagManager.instance.uri_to_local_id(uri, :username) }
+    local_usernames = (as_array(audience_to) + as_array(audience_cc)).uniq.select { |uri| ActivityPub::TagManager.instance.local_uri?(uri) }.map { |uri| ActivityPub::TagManager.instance.uri_to_local_id(uri, :username) }
 
     return false if local_usernames.empty?
 
@@ -449,4 +461,23 @@ class ActivityPub::Activity::Create < ActivityPub::Activity
   def poll_lock_options
     { redis: Redis.current, key: "vote:#{replied_to_status.poll_id}:#{@account.id}" }
   end
+
+  def quote
+    @quote ||= quote_from_url(@object['quoteUrl'] || @object['_misskey_quote'])
+  end
+
+  def process_quote
+    if quote.nil? && md = @object['content'].match(/QT:\s*\[<a href=\"([^\"]+).*?\]/)
+      @quote = quote_from_url(md[1])
+      @object['content'] = @object['content'].sub(/QT:\s*\[.*?\]/, '<span class="quote-inline"><br/>\1</span>')
+    end
+  end
+
+  def quote_from_url(url)
+    return nil if url.nil?
+    quote = ResolveURLService.new.call(url)
+    status_from_uri(quote.uri) if quote
+  rescue
+    nil
+  end
 end
diff --git a/app/lib/activitypub/activity/reject.rb b/app/lib/activitypub/activity/reject.rb
index dba21fb9a7d896c23a7a385f935b72f34fb31b40..8d771ed81753b311d77403128bd71d1594f1f55d 100644
--- a/app/lib/activitypub/activity/reject.rb
+++ b/app/lib/activitypub/activity/reject.rb
@@ -2,17 +2,19 @@
 
 class ActivityPub::Activity::Reject < ActivityPub::Activity
   def perform
+    return reject_follow_for_relay if relay_follow?
+    return follow_request_from_object.reject! unless follow_request_from_object.nil?
+    return UnfollowService.new.call(follow_from_object.target_account, @account) unless follow_from_object.nil?
+
     case @object['type']
     when 'Follow'
-      reject_follow
+      reject_embedded_follow
     end
   end
 
   private
 
-  def reject_follow
-    return reject_follow_for_relay if relay_follow?
-
+  def reject_embedded_follow
     target_account = account_from_uri(target_uri)
 
     return if target_account.nil? || !target_account.local?
diff --git a/app/lib/activitypub/adapter.rb b/app/lib/activitypub/adapter.rb
index 2a8f723334652590055949839a6e17654a77b437..b40eb072d61adaf0aaabb92feaf19763b2c2b5a5 100644
--- a/app/lib/activitypub/adapter.rb
+++ b/app/lib/activitypub/adapter.rb
@@ -22,6 +22,7 @@ class ActivityPub::Adapter < ActiveModelSerializers::Adapter::Base
     blurhash: { 'toot' => 'http://joinmastodon.org/ns#', 'blurhash' => 'toot:blurhash' },
     discoverable: { 'toot' => 'http://joinmastodon.org/ns#', 'discoverable' => 'toot:discoverable' },
     voters_count: { 'toot' => 'http://joinmastodon.org/ns#', 'votersCount' => 'toot:votersCount' },
+    quoteUrl: { 'quoteUrl' => 'as:quoteUrl' },
   }.freeze
 
   def self.default_key_transform
@@ -35,6 +36,7 @@ class ActivityPub::Adapter < ActiveModelSerializers::Adapter::Base
   def serializable_hash(options = nil)
     named_contexts     = {}
     context_extensions = {}
+
     options         = serialization_options(options)
     serialized_hash = serializer.serializable_hash(options.merge(named_contexts: named_contexts, context_extensions: context_extensions))
     serialized_hash = serialized_hash.select { |k, _| options[:fields].include?(k) } if options[:fields]
diff --git a/app/lib/activitypub/case_transform.rb b/app/lib/activitypub/case_transform.rb
index 7f716f86243ef83353d15683273b173a8a72f7f7..ef0c6e1f91f4f1bbe331ac7552d178765adda820 100644
--- a/app/lib/activitypub/case_transform.rb
+++ b/app/lib/activitypub/case_transform.rb
@@ -14,6 +14,8 @@ module ActivityPub::CaseTransform
       when String
         camel_lower_cache[value] ||= if value.start_with?('_:')
                                        '_:' + value.gsub(/\A_:/, '').underscore.camelize(:lower)
+                                     elsif value.start_with?('_')
+                                       value
                                      else
                                        value.underscore.camelize(:lower)
                                      end
diff --git a/app/lib/activitypub/tag_manager.rb b/app/lib/activitypub/tag_manager.rb
index 512272dbebe3bcc7b4647c2396ac07b789494c11..ed680d762c2ce6ea61edfdb1d4d47d69f3d0cb22 100644
--- a/app/lib/activitypub/tag_manager.rb
+++ b/app/lib/activitypub/tag_manager.rb
@@ -68,10 +68,19 @@ class ActivityPub::TagManager
       if status.account.silenced?
         # Only notify followers if the account is locally silenced
         account_ids = status.active_mentions.pluck(:account_id)
-        to = status.account.followers.where(id: account_ids).map { |account| uri_for(account) }
-        to.concat(FollowRequest.where(target_account_id: status.account_id, account_id: account_ids).map { |request| uri_for(request.account) })
+        to = status.account.followers.where(id: account_ids).each_with_object([]) do |account, result|
+          result << uri_for(account)
+          result << account.followers_url if account.group?
+        end
+        to.concat(FollowRequest.where(target_account_id: status.account_id, account_id: account_ids).each_with_object([]) do |request, result|
+          result << uri_for(request.account)
+          result << request.account.followers_url if request.account.group?
+        end)
       else
-        status.active_mentions.map { |mention| uri_for(mention.account) }
+        status.active_mentions.each_with_object([]) do |mention, result|
+          result << uri_for(mention.account)
+          result << mention.account.followers_url if mention.account.group?
+        end
       end
     end
   end
@@ -97,10 +106,19 @@ class ActivityPub::TagManager
       if status.account.silenced?
         # Only notify followers if the account is locally silenced
         account_ids = status.active_mentions.pluck(:account_id)
-        cc.concat(status.account.followers.where(id: account_ids).map { |account| uri_for(account) })
-        cc.concat(FollowRequest.where(target_account_id: status.account_id, account_id: account_ids).map { |request| uri_for(request.account) })
+        cc.concat(status.account.followers.where(id: account_ids).each_with_object([]) do |account, result|
+          result << uri_for(account)
+          result << account.followers_url if account.group?
+        end)
+        cc.concat(FollowRequest.where(target_account_id: status.account_id, account_id: account_ids).each_with_object([]) do |request, result|
+          result << uri_for(request.account)
+          result << request.account.followers_url if request.account.group?
+        end)
       else
-        cc.concat(status.active_mentions.map { |mention| uri_for(mention.account) })
+        cc.concat(status.active_mentions.each_with_object([]) do |mention, result|
+          result << uri_for(mention.account)
+          result << mention.account.followers_url if mention.account.group?
+        end)
       end
     end
 
diff --git a/app/lib/feed_manager.rb b/app/lib/feed_manager.rb
index d8b486b6094ef770ee458332625d5d3e809dad60..a598e7d500a136d9b2e8a0ee08ed76a950a96c0c 100644
--- a/app/lib/feed_manager.rb
+++ b/app/lib/feed_manager.rb
@@ -6,7 +6,7 @@ class FeedManager
   include Singleton
   include Redisable
 
-  MAX_ITEMS = 400
+  MAX_ITEMS = 2000
 
   # Must be <= MAX_ITEMS or the tracking sets will grow forever
   REBLOG_FALLOFF = 40
@@ -88,10 +88,10 @@ class FeedManager
     end
   end
 
-  def merge_into_timeline(from_account, into_account)
+  def merge_into_timeline(from_account, into_account, public_only = false)
     timeline_key = key(:home, into_account.id)
     aggregate    = into_account.user&.aggregates_reblogs?
-    query        = from_account.statuses.where(visibility: [:public, :unlisted, :private]).includes(:preloadable_poll, reblog: :account).limit(FeedManager::MAX_ITEMS / 4)
+    query        = from_account.statuses.where(visibility: public_only ? :public : [:public, :unlisted, :private]).includes(:preloadable_poll, reblog: :account).limit(FeedManager::MAX_ITEMS / 4)
 
     if redis.zcard(timeline_key) >= FeedManager::MAX_ITEMS / 4
       oldest_home_score = redis.zrange(timeline_key, 0, 0, with_scores: true).first.last.to_i
@@ -153,7 +153,7 @@ class FeedManager
       crutches = build_crutches(account.id, statuses)
 
       statuses.each do |status|
-        next if filter_from_home?(status, account, crutches)
+        next if filter_from_home?(status, account.id, crutches)
 
         add_to_feed(:home, account.id, status, aggregate)
       end
@@ -188,21 +188,32 @@ class FeedManager
 
     return true if check_for_blocks.any? { |target_account_id| crutches[:blocking][target_account_id] || crutches[:muting][target_account_id] }
 
-    if status.reply? && !status.in_reply_to_account_id.nil?                                                                      # Filter out if it's a reply
-      should_filter   = !crutches[:following][status.in_reply_to_account_id]                                                     # and I'm not following the person it's a reply to
-      should_filter &&= receiver_id != status.in_reply_to_account_id                                                             # and it's not a reply to me
-      should_filter &&= status.account_id != status.in_reply_to_account_id                                                       # and it's not a self-reply
-
-      return !!should_filter
-    elsif status.reblog?                                                                                                         # Filter out a reblog
+    if status.reblog?                                                                                                            # Filter out a reblog
       should_filter   = crutches[:hiding_reblogs][status.account_id]                                                             # if the reblogger's reblogs are suppressed
+      should_filter ||= crutches[:domain_blocking][status.account.domain]                                                        # or the reblogger's domain is blocked
       should_filter ||= crutches[:blocked_by][status.reblog.account_id]                                                          # or if the author of the reblogged status is blocking me
-      should_filter ||= crutches[:domain_blocking][status.reblog.account.domain]                                                 # or the author's domain is blocked
+      should_filter ||= crutches[:domain_blocking_r][status.reblog.account.domain]                                               # or the author's domain is blocked
 
       return !!should_filter
-    end
+    else
+      if status.reply?                                                                                                           # Filter out a reply
+        should_filter   = !crutches[:following][status.in_reply_to_account_id]                                                   # and I'm not following the person it's a reply to
+        should_filter &&= receiver_id != status.in_reply_to_account_id                                                           # and it's not a reply to me
+        should_filter &&= status.account_id != status.in_reply_to_account_id                                                     # and it's not a self-reply
+        should_filter &&= !status.tags.any? { |tag| crutches[:following_tag_by][tag.id] }                                        # and It's not follow tag
+        should_filter &&= !KeywordSubscribe.match?(status.index_text, account_id: receiver_id)                                   # and It's not subscribe keywords
+        should_filter &&= !crutches[:domain_subscribe][status.account.domain]                                                    # and It's not domain subscribes
+        
+        return true if should_filter
+      end
 
-    false
+      should_filter   = crutches[:domain_blocking][status.account.domain]
+      should_filter &&= !crutches[:following][status.account_id]
+      should_filter &&= !crutches[:account_subscribe][status.account_id]
+      should_filter &&= !KeywordSubscribe.match?(status.index_text, account_id: receiver_id, as_ignore_block: true)
+
+      return !!should_filter
+    end
   end
 
   def filter_from_mentions?(status, receiver_id)
@@ -349,13 +360,16 @@ class FeedManager
       arr
     end
 
-    crutches[:following]       = Follow.where(account_id: receiver_id, target_account_id: statuses.map(&:in_reply_to_account_id).compact).pluck(:target_account_id).each_with_object({}) { |id, mapping| mapping[id] = true }
-    crutches[:hiding_reblogs]  = Follow.where(account_id: receiver_id, target_account_id: statuses.map { |s| s.account_id if s.reblog? }.compact, show_reblogs: false).pluck(:target_account_id).each_with_object({}) { |id, mapping| mapping[id] = true }
-    crutches[:blocking]        = Block.where(account_id: receiver_id, target_account_id: check_for_blocks).pluck(:target_account_id).each_with_object({}) { |id, mapping| mapping[id] = true }
-    crutches[:muting]          = Mute.where(account_id: receiver_id, target_account_id: check_for_blocks).pluck(:target_account_id).each_with_object({}) { |id, mapping| mapping[id] = true }
-    crutches[:domain_blocking] = AccountDomainBlock.where(account_id: receiver_id, domain: statuses.map { |s| s.reblog&.account&.domain }.compact).pluck(:domain).each_with_object({}) { |domain, mapping| mapping[domain] = true }
-    crutches[:blocked_by]      = Block.where(target_account_id: receiver_id, account_id: statuses.map { |s| s.reblog&.account_id }.compact).pluck(:account_id).each_with_object({}) { |id, mapping| mapping[id] = true }
-
+    crutches[:following]         = Follow.where(account_id: receiver_id, target_account_id: statuses.map(&:in_reply_to_account_id).compact).pluck(:target_account_id).each_with_object({}) { |id, mapping| mapping[id] = true }
+    crutches[:hiding_reblogs]    = Follow.where(account_id: receiver_id, target_account_id: statuses.map { |s| s.account_id if s.reblog? }.compact, show_reblogs: false).pluck(:target_account_id).each_with_object({}) { |id, mapping| mapping[id] = true }
+    crutches[:blocking]          = Block.where(account_id: receiver_id, target_account_id: check_for_blocks).pluck(:target_account_id).each_with_object({}) { |id, mapping| mapping[id] = true }
+    crutches[:muting]            = Mute.where(account_id: receiver_id, target_account_id: check_for_blocks).pluck(:target_account_id).each_with_object({}) { |id, mapping| mapping[id] = true }
+    crutches[:domain_blocking]   = AccountDomainBlock.where(account_id: receiver_id, domain: statuses.map { |s| s.account&.domain }.compact).pluck(:domain).each_with_object({}) { |domain, mapping| mapping[domain] = true }
+    crutches[:domain_blocking_r] = AccountDomainBlock.where(account_id: receiver_id, domain: statuses.map { |s| s.reblog&.account&.domain }.compact).pluck(:domain).each_with_object({}) { |domain, mapping| mapping[domain] = true }
+    crutches[:blocked_by]        = Block.where(target_account_id: receiver_id, account_id: statuses.map { |s| s.reblog&.account_id }.compact).pluck(:account_id).each_with_object({}) { |id, mapping| mapping[id] = true }
+    crutches[:following_tag_by]  = FollowTag.where(account_id: receiver_id, tag: statuses.map { |s| s.tags }.flatten.uniq.compact).pluck(:tag_id).each_with_object({}) { |tag_id, mapping| mapping[tag_id] = true }
+    crutches[:domain_subscribe]  = DomainSubscribe.where(account_id: receiver_id, list_id: nil, domain: statuses.map { |s| s&.account&.domain }.compact).pluck(:domain).each_with_object({}) { |domain, mapping| mapping[domain] = true }
+    crutches[:account_subscribe] = AccountSubscribe.where(account_id: receiver_id, target_account_id: statuses.map(&:account_id).compact).pluck(:target_account_id).each_with_object({}) { |id, mapping| mapping[id] = true }
     crutches
   end
 end
diff --git a/app/lib/formatter.rb b/app/lib/formatter.rb
index 990b9f63ed809b31ee43090a6c238a662d1f9ca8..c5fa072d2b68c4e0aa38f78ff11ebbe5fec55ff2 100644
--- a/app/lib/formatter.rb
+++ b/app/lib/formatter.rb
@@ -39,11 +39,24 @@ class Formatter
     html = encode_and_link_urls(html, linkable_accounts)
     html = encode_custom_emojis(html, status.emojis, options[:autoplay]) if options[:custom_emojify]
     html = simple_format(html, {}, sanitize: false)
+    html = quotify(html, status, options) if status.quote? && !options[:escape_quotify]
     html = html.delete("\n")
 
     html.html_safe # rubocop:disable Rails/OutputSafety
   end
 
+  def format_in_quote(status, **options)
+    html = format(status)
+    return '' if html.empty?
+    doc = Nokogiri::HTML.parse(html, nil, 'utf-8')
+    doc.search('span.invisible').remove
+    html = doc.css('body')[0].inner_html
+    html.sub!(/^<p>(.+)<\/p>$/, '\1')
+    html = Sanitize.clean(html).delete("\n").truncate(150)
+    html = encode_custom_emojis(html, status.emojis) if options[:custom_emojify]
+    html.html_safe
+  end
+
   def reformat(html)
     sanitize(html, Sanitize::Config::MASTODON_STRICT)
   end
@@ -188,6 +201,15 @@ class Formatter
     html
   end
 
+  def quotify(html, status, options)
+    #options[:escape_quotify] = true
+    #quote_content = format_in_quote(status.quote, options)
+    url = ActivityPub::TagManager.instance.url_for(status.quote)
+    link = encode_and_link_urls(url)
+    #html.sub(/(<[^>]+>)\z/, "<span class=\"quote-inline\"><br/>QT: #{quote_content} [#{link}]</span>\\1")
+    html.sub(/(<[^>]+>)\z/, "<span class=\"quote-inline\"><br/>QT: [#{link}]</span>\\1")
+  end
+
   def rewrite(text, entities)
     text = text.to_s
 
@@ -245,13 +267,14 @@ class Formatter
     end
 
     standard = Extractor.extract_entities_with_indices(text, options)
+    xmpp = Extractor.extract_xmpp_uris_with_indices(text, options)
 
-    Extractor.remove_overlapping_entities(special + standard)
+    Extractor.remove_overlapping_entities(special + standard + xmpp)
   end
 
   def link_to_url(entity, options = {})
     url        = Addressable::URI.parse(entity[:url])
-    html_attrs = { target: '_blank', rel: 'nofollow noopener' }
+    html_attrs = { target: '_blank', rel: 'nofollow noopener noreferrer' }
 
     html_attrs[:rel] = "me #{html_attrs[:rel]}" if options[:me]
 
@@ -284,7 +307,7 @@ class Formatter
 
   def link_html(url)
     url    = Addressable::URI.parse(url).to_s
-    prefix = url.match(/\Ahttps?:\/\/(www\.)?/).to_s
+    prefix = url.match(/\A(https?:\/\/(www\.)?|xmpp:)/).to_s
     text   = url[prefix.length, 30]
     suffix = url[prefix.length + 30..-1]
     cutoff = url[prefix.length..-1].length > 30
diff --git a/app/lib/language_detector.rb b/app/lib/language_detector.rb
index 6f9511a54192a70cbb646ec371f6d7e2102e36f2..302072bccbce087be60e5b6592dcfc84c2dcb15f 100644
--- a/app/lib/language_detector.rb
+++ b/app/lib/language_detector.rb
@@ -44,7 +44,7 @@ class LanguageDetector
     words = text.scan(RELIABLE_CHARACTERS_RE)
 
     if words.present?
-      words.reduce(0) { |acc, elem| acc + elem.size }.to_f / text.size.to_f > 0.3
+      words.reduce(0) { |acc, elem| acc + elem.size }.to_f / text.size > 0.3
     else
       false
     end
diff --git a/app/lib/request.rb b/app/lib/request.rb
index 42ccc6513d175136fb2008585deecd0d2ce24c76..43c59c962c86c4fd2819374ad28abccde74afe10 100644
--- a/app/lib/request.rb
+++ b/app/lib/request.rb
@@ -59,7 +59,7 @@ class Request
     begin
       response = http_client.public_send(@verb, @url.to_s, @options.merge(headers: headers))
     rescue => e
-      raise e.class, "#{e.message} on #{@url}", e.backtrace
+      raise e.class, "#{e.message} on #{@url}", e.backtrace[0]
     end
 
     begin
@@ -73,6 +73,8 @@ class Request
       response.body_with_limit if http_client.persistent?
 
       yield response if block_given?
+    rescue => e
+      raise e.class, e.message, e.backtrace[0]
     ensure
       http_client.close unless http_client.persistent?
     end
@@ -94,7 +96,7 @@ class Request
     end
 
     def http_client
-      HTTP.use(:auto_inflate).timeout(:per_operation, TIMEOUT.dup).follow(max_hops: 2)
+      HTTP.use(:auto_inflate).timeout(TIMEOUT.dup).follow(max_hops: 2)
     end
   end
 
@@ -102,10 +104,16 @@ class Request
 
   def set_common_headers!
     @headers[REQUEST_TARGET]    = "#{@verb} #{@url.path}"
-    @headers['User-Agent']      = Mastodon::Version.user_agent
+    @headers['User-Agent']      = smuggling? ? Mastodon::Version.pseudo_user_agent : Mastodon::Version.user_agent
     @headers['Host']            = @url.host
     @headers['Date']            = Time.now.utc.httpdate
     @headers['Accept-Encoding'] = 'gzip' if @verb != :head
+    @headers['Referer']         = "https://#{@url.host}" if smuggling?
+  end
+
+  def smuggling?
+    should = @url.host.end_with?('mstdn.jp')
+    return !!should
   end
 
   def set_digest!
diff --git a/app/lib/sanitize_config.rb b/app/lib/sanitize_config.rb
index aba8ce9f615cbb611b8f70ec3f6599918b2ce0df..2c96454dff8e1bb0af0c5ae2b552d81913e2db9e 100644
--- a/app/lib/sanitize_config.rb
+++ b/app/lib/sanitize_config.rb
@@ -2,7 +2,7 @@
 
 class Sanitize
   module Config
-    HTTP_PROTOCOLS ||= ['http', 'https', 'dat', 'dweb', 'ipfs', 'ipns', 'ssb', 'gopher', :relative].freeze
+    HTTP_PROTOCOLS ||= ['http', 'https', 'dat', 'dweb', 'ipfs', 'ipns', 'ssb', 'gopher', 'xmpp', :relative].freeze
 
     CLASS_WHITELIST_TRANSFORMER = lambda do |env|
       node = env[:node]
@@ -14,6 +14,7 @@ class Sanitize
         next true if e =~ /^(h|p|u|dt|e)-/ # microformats classes
         next true if e =~ /^(mention|hashtag)$/ # semantic classes
         next true if e =~ /^(ellipsis|invisible)$/ # link formatting classes
+        next true if e =~ /^quote-inline$/ # quote inline classes
       end
 
       node['class'] = class_list.join(' ')
@@ -45,7 +46,7 @@ class Sanitize
 
       add_attributes: {
         'a' => {
-          'rel' => 'nofollow noopener',
+          'rel' => 'nofollow noopener noreferrer',
           'target' => '_blank',
         },
       },
diff --git a/app/lib/search_query_transformer.rb b/app/lib/search_query_transformer.rb
index 6a299f59d8a27d9565659b0627cc43f3bc74c919..e07ebfffed76d341042a05dcc788650e42e4eed1 100644
--- a/app/lib/search_query_transformer.rb
+++ b/app/lib/search_query_transformer.rb
@@ -78,7 +78,7 @@ class SearchQueryTransformer < Parslet::Transform
     elsif clause[:shortcode]
       TermClause.new(prefix, operator, ":#{clause[:term]}:")
     elsif clause[:phrase]
-      PhraseClause.new(prefix, operator, clause[:phrase].map { |p| p[:term].to_s }.join(' '))
+      PhraseClause.new(prefix, operator, clause[:phrase].is_a?(Array) ? clause[:phrase].map { |p| p[:term].to_s }.join(' ') : clause[:phrase].to_s)
     else
       raise "Unexpected clause type: #{clause}"
     end
diff --git a/app/lib/spam_check.rb b/app/lib/spam_check.rb
index 5b40514fd064017422d35b25d2291adfe162f227..652d036150f7ec9f0604ffd2b3c099caad444421 100644
--- a/app/lib/spam_check.rb
+++ b/app/lib/spam_check.rb
@@ -143,7 +143,7 @@ class SpamCheck
   end
 
   def trusted?
-    @account.trust_level > Account::TRUST_LEVELS[:untrusted]
+    @account.trust_level > Account::TRUST_LEVELS[:untrusted] || (@account.local? && @account.user_staff?)
   end
 
   def no_unsolicited_mentions?
diff --git a/app/lib/user_settings_decorator.rb b/app/lib/user_settings_decorator.rb
index 52249f940111fd9c652f1985380e82b18e824427..bf4de7b3488dbb3bf4a28e0127b3f6724c5cb1a5 100644
--- a/app/lib/user_settings_decorator.rb
+++ b/app/lib/user_settings_decorator.rb
@@ -15,29 +15,34 @@ class UserSettingsDecorator
   private
 
   def process_update
-    user.settings['notification_emails'] = merged_notification_emails if change?('notification_emails')
-    user.settings['interactions']        = merged_interactions if change?('interactions')
-    user.settings['default_privacy']     = default_privacy_preference if change?('setting_default_privacy')
-    user.settings['default_sensitive']   = default_sensitive_preference if change?('setting_default_sensitive')
-    user.settings['default_language']    = default_language_preference if change?('setting_default_language')
+    user.settings['notification_emails']               = merged_notification_emails if change?('notification_emails')
+    user.settings['interactions']                      = merged_interactions if change?('interactions')
+    user.settings['default_privacy']                   = default_privacy_preference if change?('setting_default_privacy')
+    user.settings['default_sensitive']                 = default_sensitive_preference if change?('setting_default_sensitive')
+    user.settings['default_language']                  = default_language_preference if change?('setting_default_language')
     user.settings['default_federation']  = default_federation_preference if change?('setting_default_federation')
-    user.settings['unfollow_modal']      = unfollow_modal_preference if change?('setting_unfollow_modal')
-    user.settings['boost_modal']         = boost_modal_preference if change?('setting_boost_modal')
-    user.settings['delete_modal']        = delete_modal_preference if change?('setting_delete_modal')
-    user.settings['auto_play_gif']       = auto_play_gif_preference if change?('setting_auto_play_gif')
-    user.settings['display_media']       = display_media_preference if change?('setting_display_media')
-    user.settings['expand_spoilers']     = expand_spoilers_preference if change?('setting_expand_spoilers')
-    user.settings['reduce_motion']       = reduce_motion_preference if change?('setting_reduce_motion')
-    user.settings['system_font_ui']      = system_font_ui_preference if change?('setting_system_font_ui')
-    user.settings['noindex']             = noindex_preference if change?('setting_noindex')
-    user.settings['theme']               = theme_preference if change?('setting_theme')
-    user.settings['hide_network']        = hide_network_preference if change?('setting_hide_network')
-    user.settings['aggregate_reblogs']   = aggregate_reblogs_preference if change?('setting_aggregate_reblogs')
-    user.settings['show_application']    = show_application_preference if change?('setting_show_application')
-    user.settings['advanced_layout']     = advanced_layout_preference if change?('setting_advanced_layout')
-    user.settings['use_blurhash']        = use_blurhash_preference if change?('setting_use_blurhash')
-    user.settings['use_pending_items']   = use_pending_items_preference if change?('setting_use_pending_items')
-    user.settings['trends']              = trends_preference if change?('setting_trends')
+    user.settings['unfollow_modal']                    = unfollow_modal_preference if change?('setting_unfollow_modal')
+    user.settings['unsubscribe_modal']                 = unsubscribe_modal_preference if change?('setting_unsubscribe_modal')
+    user.settings['boost_modal']                       = boost_modal_preference if change?('setting_boost_modal')
+    user.settings['delete_modal']                      = delete_modal_preference if change?('setting_delete_modal')
+    user.settings['auto_play_gif']                     = auto_play_gif_preference if change?('setting_auto_play_gif')
+    user.settings['display_media']                     = display_media_preference if change?('setting_display_media')
+    user.settings['expand_spoilers']                   = expand_spoilers_preference if change?('setting_expand_spoilers')
+    user.settings['reduce_motion']                     = reduce_motion_preference if change?('setting_reduce_motion')
+    user.settings['system_font_ui']                    = system_font_ui_preference if change?('setting_system_font_ui')
+    user.settings['noindex']                           = noindex_preference if change?('setting_noindex')
+    user.settings['theme']                             = theme_preference if change?('setting_theme')
+    user.settings['hide_network']                      = hide_network_preference if change?('setting_hide_network')
+    user.settings['aggregate_reblogs']                 = aggregate_reblogs_preference if change?('setting_aggregate_reblogs')
+    user.settings['show_application']                  = show_application_preference if change?('setting_show_application')
+    user.settings['advanced_layout']                   = advanced_layout_preference if change?('setting_advanced_layout')
+    user.settings['use_blurhash']                      = use_blurhash_preference if change?('setting_use_blurhash')
+    user.settings['use_pending_items']                 = use_pending_items_preference if change?('setting_use_pending_items')
+    user.settings['trends']                            = trends_preference if change?('setting_trends')
+    user.settings['crop_images']                       = crop_images_preference if change?('setting_crop_images')
+    user.settings['show_follow_button_on_timeline']    = show_follow_button_on_timeline_preference if change?('setting_show_follow_button_on_timeline')
+    user.settings['show_subscribe_button_on_timeline'] = show_subscribe_button_on_timeline_preference if change?('setting_show_subscribe_button_on_timeline')
+    user.settings['show_target']                       = show_target_preference if change?('setting_show_target')
   end
 
   def merged_notification_emails
@@ -64,6 +69,10 @@ class UserSettingsDecorator
     boolean_cast_setting 'setting_unfollow_modal'
   end
 
+  def unsubscribe_modal_preference
+    boolean_cast_setting 'setting_unsubscribe_modal'
+  end
+
   def boost_modal_preference
     boolean_cast_setting 'setting_boost_modal'
   end
@@ -132,6 +141,22 @@ class UserSettingsDecorator
     boolean_cast_setting 'setting_trends'
   end
 
+  def crop_images_preference
+    boolean_cast_setting 'setting_crop_images'
+  end
+
+  def show_follow_button_on_timeline_preference
+    boolean_cast_setting 'setting_show_follow_button_on_timeline'
+  end
+
+  def show_subscribe_button_on_timeline_preference
+    boolean_cast_setting 'setting_show_subscribe_button_on_timeline'
+  end
+
+  def show_target_preference
+    boolean_cast_setting 'setting_show_target'
+  end
+
   def boolean_cast_setting(key)
     ActiveModel::Type::Boolean.new.cast(settings[key])
   end
diff --git a/app/mailers/admin_mailer.rb b/app/mailers/admin_mailer.rb
index 8abce5f055d568648a9546f039329eb87438ef99..11fd09e30e8de3953db89c8ddde2748c2973df2e 100644
--- a/app/mailers/admin_mailer.rb
+++ b/app/mailers/admin_mailer.rb
@@ -3,7 +3,7 @@
 class AdminMailer < ApplicationMailer
   layout 'plain_mailer'
 
-  helper :statuses
+  helper :accounts
 
   def new_report(recipient, report)
     @report   = report
diff --git a/app/mailers/notification_mailer.rb b/app/mailers/notification_mailer.rb
index 723d901fc6e4d2803aa45236a2766b1353415873..9d8a7886c2732c174ffb5a1ece1ac9bc83601eb6 100644
--- a/app/mailers/notification_mailer.rb
+++ b/app/mailers/notification_mailer.rb
@@ -1,6 +1,7 @@
 # frozen_string_literal: true
 
 class NotificationMailer < ApplicationMailer
+  helper :accounts
   helper :statuses
 
   add_template_helper RoutingHelper
diff --git a/app/mailers/user_mailer.rb b/app/mailers/user_mailer.rb
index 6b81f68739c8811e0a5dccc1a2b478e241f017d4..c30bec80b90417a026612004775fabdb0d3f1874 100644
--- a/app/mailers/user_mailer.rb
+++ b/app/mailers/user_mailer.rb
@@ -3,9 +3,9 @@
 class UserMailer < Devise::Mailer
   layout 'mailer'
 
+  helper :accounts
   helper :application
   helper :instance
-  helper :statuses
 
   add_template_helper RoutingHelper
 
diff --git a/app/middleware/handle_bad_encoding_middleware.rb b/app/middleware/handle_bad_encoding_middleware.rb
new file mode 100644
index 0000000000000000000000000000000000000000..6fce84b15220cb2b81cfb75ca9dd92878931f13a
--- /dev/null
+++ b/app/middleware/handle_bad_encoding_middleware.rb
@@ -0,0 +1,18 @@
+# frozen_string_literal: true
+# See: https://jamescrisp.org/2018/05/28/fixing-invalid-query-parameters-invalid-encoding-in-a-rails-app/
+
+class HandleBadEncodingMiddleware
+  def initialize(app)
+    @app = app
+  end
+
+  def call(env)
+    begin
+      Rack::Utils.parse_nested_query(env['QUERY_STRING'].to_s)
+    rescue Rack::Utils::InvalidParameterError
+      env['QUERY_STRING'] = ''
+    end
+
+    @app.call(env)
+  end
+end
diff --git a/app/models/account.rb b/app/models/account.rb
index b61e0d53aff65211d6e58264907659e2ace1e098..1fb97cca9b0203c438dd96e5178a560020945b37 100644
--- a/app/models/account.rb
+++ b/app/models/account.rb
@@ -50,7 +50,7 @@
 
 class Account < ApplicationRecord
   USERNAME_RE = /[a-z0-9_]+([a-z0-9_\.-]+[a-z0-9_]+)?/i
-  MENTION_RE  = /(?<=^|[^\/[:word:]])@((#{USERNAME_RE})(?:@[a-z0-9\.\-]+[a-z0-9]+)?)/i
+  MENTION_RE  = /(?<=^|[^\/[:word:]])@((#{USERNAME_RE})(?:@[[:word:]\.\-]+[a-z0-9]+)?)/i
 
   include AccountAssociations
   include AccountAvatar
@@ -93,6 +93,7 @@ class Account < ApplicationRecord
   scope :without_silenced, -> { where(silenced_at: nil) }
   scope :recent, -> { reorder(id: :desc) }
   scope :bots, -> { where(actor_type: %w(Application Service)) }
+  scope :groups, -> { where(actor_type: 'Group') }
   scope :alphabetic, -> { order(domain: :asc, username: :asc) }
   scope :by_domain_accounts, -> { group(:domain).select(:domain, 'COUNT(*) AS accounts_count').order('accounts_count desc') }
   scope :matches_username, ->(value) { where(arel_table[:username].matches("#{value}%")) }
@@ -153,10 +154,20 @@ class Account < ApplicationRecord
     self.actor_type = ActiveModel::Type::Boolean.new.cast(val) ? 'Service' : 'Person'
   end
 
+  def group?
+    actor_type == 'Group'
+  end
+
+  alias group group?
+
   def acct
     local? ? username : "#{username}@#{domain}"
   end
 
+  def pretty_acct
+    local? ? username : "#{username}@#{Addressable::IDNA.to_unicode(domain)}"
+  end
+
   def local_username_and_domain
     "#{username}@#{Rails.configuration.x.local_domain}"
   end
@@ -303,10 +314,6 @@ class Account < ApplicationRecord
     self.fields = tmp
   end
 
-  def subscription(webhook_url)
-    @subscription ||= OStatus2::Subscription.new(remote_url, secret: secret, webhook: webhook_url, hub: hub_url)
-  end
-
   def save_with_optional_media!
     save!
   rescue ActiveRecord::RecordInvalid
@@ -429,12 +436,14 @@ class Account < ApplicationRecord
             SELECT target_account_id
             FROM follows
             WHERE account_id = ?
+            UNION ALL
+            SELECT ?
           )
           SELECT
             accounts.*,
             (count(f.id) + 1) * ts_rank_cd(#{textsearch}, #{query}, 32) AS rank
           FROM accounts
-          LEFT OUTER JOIN follows AS f ON (accounts.id = f.account_id AND f.target_account_id = ?) OR (accounts.id = f.target_account_id AND f.account_id = ?)
+          LEFT OUTER JOIN follows AS f ON (accounts.id = f.account_id AND f.target_account_id = ?)
           WHERE accounts.id IN (SELECT * FROM first_degree)
             AND #{query} @@ #{textsearch}
             AND accounts.suspended_at IS NULL
diff --git a/app/models/account_filter.rb b/app/models/account_filter.rb
index c3b1fe08d8f59c6b7a9a5dfe4379e4c27f9073b4..c7bf0778748c5863c07392a3e0437f05bfe587ed 100644
--- a/app/models/account_filter.rb
+++ b/app/models/account_filter.rb
@@ -1,6 +1,21 @@
 # frozen_string_literal: true
 
 class AccountFilter
+  KEYS = %i(
+    local
+    remote
+    by_domain
+    active
+    pending
+    silenced
+    suspended
+    username
+    display_name
+    email
+    ip
+    staff
+  ).freeze
+
   attr_reader :params
 
   def initialize(params)
@@ -50,7 +65,7 @@ class AccountFilter
     when 'email'
       accounts_with_users.merge User.matches_email(value)
     when 'ip'
-      valid_ip?(value) ? accounts_with_users.where('users.current_sign_in_ip <<= ?', value) : Account.none
+      valid_ip?(value) ? accounts_with_users.merge(User.matches_ip(value)) : Account.none
     when 'staff'
       accounts_with_users.merge User.staff
     else
diff --git a/app/models/account_stat.rb b/app/models/account_stat.rb
index c84e4217c8c6b11d5a0770ff443a6de39db1afd6..373fb362976ac9e7ebd0b993d5f843ac12eaedfa 100644
--- a/app/models/account_stat.rb
+++ b/app/models/account_stat.rb
@@ -3,15 +3,16 @@
 #
 # Table name: account_stats
 #
-#  id              :bigint(8)        not null, primary key
-#  account_id      :bigint(8)        not null
-#  statuses_count  :bigint(8)        default(0), not null
-#  following_count :bigint(8)        default(0), not null
-#  followers_count :bigint(8)        default(0), not null
-#  created_at      :datetime         not null
-#  updated_at      :datetime         not null
-#  last_status_at  :datetime
-#  lock_version    :integer          default(0), not null
+#  id                :bigint(8)        not null, primary key
+#  account_id        :bigint(8)        not null
+#  statuses_count    :bigint(8)        default(0), not null
+#  following_count   :bigint(8)        default(0), not null
+#  followers_count   :bigint(8)        default(0), not null
+#  subscribing_count :bigint(8)        default(0), not null
+#  created_at        :datetime         not null
+#  updated_at        :datetime         not null
+#  last_status_at    :datetime
+#  lock_version      :integer          default(0), not null
 #
 
 class AccountStat < ApplicationRecord
diff --git a/app/models/account_subscribe.rb b/app/models/account_subscribe.rb
new file mode 100644
index 0000000000000000000000000000000000000000..46776feac8722b88edad8019ff95b798d717f422
--- /dev/null
+++ b/app/models/account_subscribe.rb
@@ -0,0 +1,60 @@
+# == Schema Information
+#
+# Table name: account_subscribes
+#
+#  id                :bigint(8)        not null, primary key
+#  account_id        :bigint(8)
+#  target_account_id :bigint(8)
+#  show_reblogs      :boolean          default(TRUE), not null
+#  created_at        :datetime         not null
+#  updated_at        :datetime         not null
+#  list_id           :bigint(8)
+#
+
+class AccountSubscribe < ApplicationRecord
+  include Paginable
+  include RelationshipCacheable
+
+  belongs_to :account
+  belongs_to :target_account, class_name: 'Account'
+  belongs_to :list, optional: true
+
+  validates :account_id, uniqueness: { scope: [:target_account_id, :list_id] }
+
+  scope :recent, -> { reorder(id: :desc) }
+  scope :subscribed_lists, ->(account) { AccountSubscribe.where(target_account_id: account.id).where.not(list_id: nil).select(:list_id).uniq }
+  scope :home, -> { where(list_id: nil) }
+  scope :list, -> { where.not(list_id: nil) }
+  scope :with_reblog, ->(reblog) { where(show_reblogs: true) if reblog }
+
+  after_create :increment_cache_counters
+  after_destroy :decrement_cache_counters
+
+  attr_accessor :acct
+
+  def acct=(val)
+    return if val.nil?
+
+    target_account = ResolveAccountService.new.call(acct, skip_webfinger: true)
+    target_account ||= ResolveAccountService.new.call(acct, skip_webfinger: false)
+  end
+
+  def acct
+    target_account&.acct
+  end
+
+  private
+
+  def home?
+    list_id.nil?
+  end
+
+  def increment_cache_counters
+    account&.increment_count!(:subscribing_count)
+  end
+
+  def decrement_cache_counters
+    account&.decrement_count!(:subscribing_count)
+  end
+
+end
diff --git a/app/models/backup.rb b/app/models/backup.rb
index c2651313b16a0f0e079f27803ca7c3085cca40f5..8eeb1748aad1049b7e5d083dc752715f2c9c027d 100644
--- a/app/models/backup.rb
+++ b/app/models/backup.rb
@@ -7,7 +7,7 @@
 #  user_id           :bigint(8)
 #  dump_file_name    :string
 #  dump_content_type :string
-#  dump_file_size    :integer
+#  dump_file_size    :bigint
 #  dump_updated_at   :datetime
 #  processed         :boolean          default(FALSE), not null
 #  created_at        :datetime         not null
diff --git a/app/models/bookmark.rb b/app/models/bookmark.rb
new file mode 100644
index 0000000000000000000000000000000000000000..01dc48ee70e2ec144d33da58854726af44beb2a7
--- /dev/null
+++ b/app/models/bookmark.rb
@@ -0,0 +1,26 @@
+# frozen_string_literal: true
+# == Schema Information
+#
+# Table name: bookmarks
+#
+#  id         :integer          not null, primary key
+#  created_at :datetime         not null
+#  updated_at :datetime         not null
+#  account_id :integer          not null
+#  status_id  :integer          not null
+#
+
+class Bookmark < ApplicationRecord
+  include Paginable
+
+  update_index('statuses#status', :status) if Chewy.enabled?
+
+  belongs_to :account, inverse_of: :bookmarks
+  belongs_to :status,  inverse_of: :bookmarks
+
+  validates :status_id, uniqueness: { scope: :account_id }
+
+  before_validation do
+    self.status = status.reblog if status&.reblog?
+  end
+end
diff --git a/app/models/concerns/account_associations.rb b/app/models/concerns/account_associations.rb
index c9cc5c610b8e522cdebfbd1022e784c11b3a1b9f..3dc2f0a18e0b77da6594a2232015705caf78562b 100644
--- a/app/models/concerns/account_associations.rb
+++ b/app/models/concerns/account_associations.rb
@@ -13,6 +13,7 @@ module AccountAssociations
     # Timelines
     has_many :statuses, inverse_of: :account, dependent: :destroy
     has_many :favourites, inverse_of: :account, dependent: :destroy
+    has_many :bookmarks, inverse_of: :account, dependent: :destroy
     has_many :mentions, inverse_of: :account, dependent: :destroy
     has_many :notifications, inverse_of: :account, dependent: :destroy
     has_many :conversations, class_name: 'AccountConversation', dependent: :destroy, inverse_of: :account
@@ -57,6 +58,14 @@ module AccountAssociations
 
     # Hashtags
     has_and_belongs_to_many :tags
+    has_many :favourite_tags, -> { includes(:tag) }, dependent: :destroy, inverse_of: :account
     has_many :featured_tags, -> { includes(:tag) }, dependent: :destroy, inverse_of: :account
+    has_many :follow_tags, -> { includes(:tag) }, dependent: :destroy, inverse_of: :account
+
+    # KeywordSubscribes
+    has_many :keyword_subscribes, inverse_of: :account, dependent: :destroy
+
+    # DomainSubscribes
+    has_many :domain_subscribes, inverse_of: :account, dependent: :destroy
   end
 end
diff --git a/app/models/concerns/account_avatar.rb b/app/models/concerns/account_avatar.rb
index 2d5ebfca35aea67c09a2d5bb1862e2ee5cb8a1d1..753531a78f5f4cb2b72095a73ea53a9711c25c0d 100644
--- a/app/models/concerns/account_avatar.rb
+++ b/app/models/concerns/account_avatar.rb
@@ -18,7 +18,7 @@ module AccountAvatar
 
   included do
     # Avatar upload
-    has_attached_file :avatar, styles: ->(f) { avatar_styles(f) }, convert_options: { all: '-strip' }, processors: [:lazy_thumbnail]
+    has_attached_file :avatar, styles: ->(f) { avatar_styles(f) }, convert_options: { all: '+profile exif' }, processors: [:lazy_thumbnail]
     validates_attachment_content_type :avatar, content_type: IMAGE_MIME_TYPES
     validates_attachment_size :avatar, less_than: LIMIT
     remotable_attachment :avatar, LIMIT
diff --git a/app/models/concerns/account_counters.rb b/app/models/concerns/account_counters.rb
index 6e25e1905e4d6919ed91c3fda3497ffb2933d04a..1ba9f5b64c84673867ad341ef99da200e9c61874 100644
--- a/app/models/concerns/account_counters.rb
+++ b/app/models/concerns/account_counters.rb
@@ -14,6 +14,8 @@ module AccountCounters
            :following_count=,
            :followers_count,
            :followers_count=,
+           :subscribing_count,
+           :subscribing_count=,
            :increment_count!,
            :decrement_count!,
            :last_status_at,
diff --git a/app/models/concerns/account_header.rb b/app/models/concerns/account_header.rb
index 067e166eb6ce5e340a86489c1c12d525c2c24dfd..aed2baddc22469cb422beff8f9b2ab2134f677d6 100644
--- a/app/models/concerns/account_header.rb
+++ b/app/models/concerns/account_header.rb
@@ -19,7 +19,7 @@ module AccountHeader
 
   included do
     # Header upload
-    has_attached_file :header, styles: ->(f) { header_styles(f) }, convert_options: { all: '-strip' }, processors: [:lazy_thumbnail]
+    has_attached_file :header, styles: ->(f) { header_styles(f) }, convert_options: { all: '+profile exif' }, processors: [:lazy_thumbnail]
     validates_attachment_content_type :header, content_type: IMAGE_MIME_TYPES
     validates_attachment_size :header, less_than: LIMIT
     remotable_attachment :header, LIMIT
diff --git a/app/models/concerns/account_interactions.rb b/app/models/concerns/account_interactions.rb
index ad2909d9183aec8ba03dbc12e8589c462b08ef3d..44a2060b15e73971c40d0cbc8a97da8d606786fc 100644
--- a/app/models/concerns/account_interactions.rb
+++ b/app/models/concerns/account_interactions.rb
@@ -16,6 +16,10 @@ module AccountInteractions
       follow_mapping(Follow.where(account_id: target_account_ids, target_account_id: account_id), :account_id)
     end
 
+    def subscribing_map(target_account_ids, account_id)
+      follow_mapping(AccountSubscribe.where(target_account_id: target_account_ids, account_id: account_id), :target_account_id)
+    end
+
     def blocking_map(target_account_ids, account_id)
       follow_mapping(Block.where(target_account_id: target_account_ids, account_id: account_id), :target_account_id)
     end
@@ -84,6 +88,13 @@ module AccountInteractions
     has_many :muted_by, -> { order('mutes.id desc') }, through: :muted_by_relationships, source: :account
     has_many :conversation_mutes, dependent: :destroy
     has_many :domain_blocks, class_name: 'AccountDomainBlock', dependent: :destroy
+
+    # Subscribers
+    has_many :active_subscribes,  class_name: 'AccountSubscribe', foreign_key: 'account_id',        dependent: :destroy
+    has_many :passive_subscribes, class_name: 'AccountSubscribe', foreign_key: 'target_account_id', dependent: :destroy
+
+    has_many :subscribing, through: :active_subscribes,  source: :target_account
+    has_many :subscribers, through: :passive_subscribes, source: :account
   end
 
   def follow!(other_account, reblogs: nil, uri: nil)
@@ -150,6 +161,14 @@ module AccountInteractions
     block&.destroy
   end
 
+  def subscribe!(other_account, show_reblogs = true, list_id = nil)
+    rel = active_subscribes.find_or_create_by!(target_account: other_account, show_reblogs: show_reblogs, list_id: list_id)
+
+    remove_potential_friendship(other_account)
+
+    rel
+  end
+
   def following?(other_account)
     active_relationships.where(target_account: other_account).exists?
   end
@@ -186,6 +205,10 @@ module AccountInteractions
     status.proper.favourites.where(account: self).exists?
   end
 
+  def bookmarked?(status)
+    status.proper.bookmarks.where(account: self).exists?
+  end
+
   def reblogged?(status)
     status.proper.reblogs.where(account: self).exists?
   end
@@ -198,17 +221,35 @@ module AccountInteractions
     account_pins.where(target_account: account).exists?
   end
 
+  def subscribing?(other_account, list_id = nil)
+    active_subscribes.where(target_account: other_account, list_id:  list_id).exists?
+  end
+
   def followers_for_local_distribution
     followers.local
              .joins(:user)
              .where('users.current_sign_in_at > ?', User::ACTIVE_DURATION.ago)
   end
 
+  def subscribers_for_local_distribution
+    AccountSubscribe.home
+                    .joins(account: :user)
+                    .where(target_account_id: id)
+                    .where('users.current_sign_in_at > ?', User::ACTIVE_DURATION.ago)
+  end
+
   def lists_for_local_distribution
     lists.joins(account: :user)
          .where('users.current_sign_in_at > ?', User::ACTIVE_DURATION.ago)
   end
 
+  def list_subscribers_for_local_distribution
+    AccountSubscribe.list
+                    .joins(account: :user)
+                    .where(target_account_id: id)
+                    .where('users.current_sign_in_at > ?', User::ACTIVE_DURATION.ago)
+  end
+
   private
 
   def remove_potential_friendship(other_account, mutual = false)
diff --git a/app/models/concerns/attachmentable.rb b/app/models/concerns/attachmentable.rb
index 3bbc6453c7f5575937352fb4c5b0f224a6d3dfbf..43ff8ac12e042ea41b649c3649e720707a0c2b50 100644
--- a/app/models/concerns/attachmentable.rb
+++ b/app/models/concerns/attachmentable.rb
@@ -9,6 +9,7 @@ module Attachmentable
   GIF_MATRIX_LIMIT = 921_600    # 1280x720px
 
   included do
+    before_post_process :obfuscate_file_name
     before_post_process :set_file_extensions
     before_post_process :check_image_dimensions
     before_post_process :set_file_content_type
@@ -68,4 +69,14 @@ module Attachmentable
   rescue Terrapin::CommandLineError
     ''
   end
+
+  def obfuscate_file_name
+    self.class.attachment_definitions.each_key do |attachment_name|
+      attachment = send(attachment_name)
+
+      next if attachment.blank? || attachment.queued_for_write[:original].blank?
+
+      attachment.instance_write :file_name, SecureRandom.hex(8) + File.extname(attachment.instance_read(:file_name))
+    end
+  end
 end
diff --git a/app/models/concerns/ldap_authenticable.rb b/app/models/concerns/ldap_authenticable.rb
index 1179939478454401bf220317a718c0db6b27efcb..e3f94bb6ceb12e6e066a30ad57c6f5f6bb770e65 100644
--- a/app/models/concerns/ldap_authenticable.rb
+++ b/app/models/concerns/ldap_authenticable.rb
@@ -6,7 +6,7 @@ module LdapAuthenticable
   class_methods do
     def authenticate_with_ldap(params = {})
       ldap   = Net::LDAP.new(ldap_options)
-      filter = format(Devise.ldap_search_filter, uid: Devise.ldap_uid, email: params[:email])
+      filter = format(Devise.ldap_search_filter, uid: Devise.ldap_uid, mail: Devise.ldap_mail, email: params[:email])
 
       if (user_info = ldap.bind_as(base: Devise.ldap_base, filter: filter, password: params[:password]))
         ldap_get_user(user_info.first)
@@ -14,10 +14,18 @@ module LdapAuthenticable
     end
 
     def ldap_get_user(attributes = {})
-      resource = joins(:account).find_by(accounts: { username: attributes[Devise.ldap_uid.to_sym].first })
+      safe_username = attributes[Devise.ldap_uid.to_sym].first
+      if Devise.ldap_uid_conversion_enabled
+        keys = Regexp.union(Devise.ldap_uid_conversion_search.chars)
+        replacement = Devise.ldap_uid_conversion_replace
+
+        safe_username = safe_username.gsub(keys, replacement)
+      end
+
+      resource = joins(:account).find_by(accounts: { username: safe_username })
 
       if resource.blank?
-        resource = new(email: attributes[:mail].first, agreement: true, account_attributes: { username: attributes[Devise.ldap_uid.to_sym].first }, admin: false, external: true, confirmed_at: Time.now.utc)
+        resource = new(email: attributes[Devise.ldap_mail.to_sym].first, agreement: true, account_attributes: { username: safe_username }, admin: false, external: true, confirmed_at: Time.now.utc)
         resource.save!
       end
 
diff --git a/app/models/concerns/status_threading_concern.rb b/app/models/concerns/status_threading_concern.rb
index 15eb695cd04aaa9d43f975ba891d15860fb99963..a19da2c2c3e662023c7ac82a84629b9b5f8563c5 100644
--- a/app/models/concerns/status_threading_concern.rb
+++ b/app/models/concerns/status_threading_concern.rb
@@ -81,12 +81,12 @@ module StatusThreadingConcern
   end
 
   def find_statuses_from_tree_path(ids, account, promote: false)
-    statuses    = statuses_with_accounts(ids).to_a
+    statuses    = Status.with_accounts(ids).to_a
     account_ids = statuses.map(&:account_id).uniq
     domains     = statuses.map(&:account_domain).compact.uniq
     relations   = relations_map_for_account(account, account_ids, domains)
 
-    statuses.reject! { |status| filter_from_context?(status, account, relations) }
+    statuses.reject! { |status| StatusFilter.new(status, account, relations).filtered? }
 
     # Order ancestors/descendants by tree path
     statuses.sort_by! { |status| ids.index(status.id) }
@@ -122,15 +122,8 @@ module StatusThreadingConcern
       blocked_by: Account.blocked_by_map(account_ids, account.id),
       muting: Account.muting_map(account_ids, account.id),
       following: Account.following_map(account_ids, account.id),
+      subscribing: Account.subscribing_map(account_ids, account.id),
       domain_blocking_by_domain: Account.domain_blocking_map_by_domain(domains, account.id),
     }
   end
-
-  def statuses_with_accounts(ids)
-    Status.where(id: ids).includes(:account)
-  end
-
-  def filter_from_context?(status, account, relations)
-    StatusFilter.new(status, account, relations).filtered?
-  end
 end
diff --git a/app/models/custom_emoji.rb b/app/models/custom_emoji.rb
index 0dacaf654bc7c4f78cf074a9b592fc271aba6d59..b42fac1044fa83ebb41feef2ad86c63832992992 100644
--- a/app/models/custom_emoji.rb
+++ b/app/models/custom_emoji.rb
@@ -33,7 +33,7 @@ class CustomEmoji < ApplicationRecord
   belongs_to :category, class_name: 'CustomEmojiCategory', optional: true
   has_one :local_counterpart, -> { where(domain: nil) }, class_name: 'CustomEmoji', primary_key: :shortcode, foreign_key: :shortcode
 
-  has_attached_file :image, styles: { static: { format: 'png', convert_options: '-coalesce -strip' } }
+  has_attached_file :image, styles: { static: { format: 'png', convert_options: '-coalesce +profile exif' } }
 
   before_validation :downcase_domain
 
diff --git a/app/models/custom_emoji_filter.rb b/app/models/custom_emoji_filter.rb
index 15b8da1d12f54ff6d62548dc5d33d1abd3868cc7..414e1fcddd2bac7ad14d5e0e25af5ce51c05bd3f 100644
--- a/app/models/custom_emoji_filter.rb
+++ b/app/models/custom_emoji_filter.rb
@@ -1,6 +1,13 @@
 # frozen_string_literal: true
 
 class CustomEmojiFilter
+  KEYS = %i(
+    local
+    remote
+    by_domain
+    shortcode
+  ).freeze
+
   attr_reader :params
 
   def initialize(params)
diff --git a/app/models/domain_block.rb b/app/models/domain_block.rb
index 4e865b850a970145d39ea27aaeb6033b6134d0da..f0a5bd296bcabcee05686819cad16297a9635ce2 100644
--- a/app/models/domain_block.rb
+++ b/app/models/domain_block.rb
@@ -54,7 +54,7 @@ class DomainBlock < ApplicationRecord
       segments = uri.normalized_host.split('.')
       variants = segments.map.with_index { |_, i| segments[i..-1].join('.') }
 
-      where(domain: variants[0..-2]).order(Arel.sql('char_length(domain) desc')).first
+      where(domain: variants).order(Arel.sql('char_length(domain) desc')).first
     end
   end
 
diff --git a/app/models/domain_subscribe.rb b/app/models/domain_subscribe.rb
new file mode 100644
index 0000000000000000000000000000000000000000..48eef4fb51ebc9e803166eebf0c776c352f5dbae
--- /dev/null
+++ b/app/models/domain_subscribe.rb
@@ -0,0 +1,24 @@
+# == Schema Information
+#
+# Table name: domain_subscribes
+#
+#  id             :bigint(8)        not null, primary key
+#  account_id     :bigint(8)
+#  list_id        :bigint(8)
+#  domain         :string           default(""), not null
+#  created_at     :datetime         not null
+#  updated_at     :datetime         not null
+#  exclude_reblog :boolean          default(TRUE)
+#
+
+class DomainSubscribe < ApplicationRecord
+  belongs_to :account
+  belongs_to :list, optional: true
+
+  validates :domain, presence: true
+  validates :account_id, uniqueness: { scope: [:domain, :list_id] }
+
+  scope :domain_to_home, ->(domain) { where(domain: domain).where(list_id: nil) }
+  scope :domain_to_list, ->(domain) { where(domain: domain).where.not(list_id: nil) }
+  scope :with_reblog, ->(reblog) { where(exclude_reblog: false) if reblog }
+end
diff --git a/app/models/export.rb b/app/models/export.rb
index cab01f11ad004c7e3e76b72dc3769eb25ce994bd..ffda4c26d157fcc4789eac07c61a978c19ff86fd 100644
--- a/app/models/export.rb
+++ b/app/models/export.rb
@@ -59,6 +59,10 @@ class Export
     account.following_count
   end
 
+  def total_subscribes
+    account.subscribing_count
+  end
+
   def total_lists
     account.owned_lists.count
   end
diff --git a/app/models/favourite_tag.rb b/app/models/favourite_tag.rb
new file mode 100644
index 0000000000000000000000000000000000000000..c23719d9c0fadd12a4d86fcd7edbd2de3fbf3fb1
--- /dev/null
+++ b/app/models/favourite_tag.rb
@@ -0,0 +1,32 @@
+# frozen_string_literal: true
+# == Schema Information
+#
+# Table name: favourite_tags
+#
+#  id         :bigint(8)        not null, primary key
+#  account_id :bigint(8)
+#  tag_id     :bigint(8)
+#  created_at :datetime         not null
+#  updated_at :datetime         not null
+#
+
+class FavouriteTag < ApplicationRecord
+  belongs_to :account, inverse_of: :favourite_tags, required: true
+  belongs_to :tag, inverse_of: :favourite_tags, required: true
+
+  delegate :name, to: :tag, allow_nil: true
+
+  validates_associated :tag, on: :create
+  validates :name, presence: true, on: :create
+  validate :validate_favourite_tags_limit, on: :create
+
+  def name=(str)
+    self.tag = Tag.find_or_create_by_names(str.strip)&.first
+  end
+
+  private
+
+  def validate_favourite_tags_limit
+    errors.add(:base, I18n.t('favourite_tags.errors.limit')) if account.favourite_tags.count >= 10
+  end
+end
diff --git a/app/models/follow.rb b/app/models/follow.rb
index 87fa114253b4e6b4b454cfd53d9f65c937646e23..7f2d3e5b671929483f5036be60cdd105e506c0e8 100644
--- a/app/models/follow.rb
+++ b/app/models/follow.rb
@@ -10,6 +10,7 @@
 #  target_account_id :bigint(8)        not null
 #  show_reblogs      :boolean          default(TRUE), not null
 #  uri               :string
+#  private           :boolean          default(TRUE), not null
 #
 
 class Follow < ApplicationRecord
diff --git a/app/models/follow_request.rb b/app/models/follow_request.rb
index 96ac7eaa593d9fac53f30d3a9444c7ba3d30ea99..23ade6215378d6217309e1f762744121eb119794 100644
--- a/app/models/follow_request.rb
+++ b/app/models/follow_request.rb
@@ -26,6 +26,7 @@ class FollowRequest < ApplicationRecord
 
   def authorize!
     account.follow!(target_account, reblogs: show_reblogs, uri: uri)
+    UnsubscribeAccountService.new.call(account, target_account) if account.subscribing?(target_account)
     MergeWorker.perform_async(target_account.id, account.id) if account.local?
     destroy!
   end
diff --git a/app/models/follow_tag.rb b/app/models/follow_tag.rb
new file mode 100644
index 0000000000000000000000000000000000000000..25ed799f9898669b02b703bcbdb028fb5ffb4234
--- /dev/null
+++ b/app/models/follow_tag.rb
@@ -0,0 +1,30 @@
+# == Schema Information
+#
+# Table name: follow_tags
+#
+#  id         :bigint(8)        not null, primary key
+#  account_id :bigint(8)
+#  tag_id     :bigint(8)
+#  created_at :datetime         not null
+#  updated_at :datetime         not null
+#  list_id    :bigint(8)
+#
+
+class FollowTag < ApplicationRecord
+  belongs_to :account, inverse_of: :follow_tags, required: true
+  belongs_to :tag, inverse_of: :follow_tags, required: true
+  belongs_to :list, optional: true
+
+  delegate :name, to: :tag, allow_nil: true
+
+  validates_associated :tag, on: :create
+  validates :name, presence: true, on: :create
+  validates :account_id, uniqueness: { scope: [:tag_id, :list_id] }
+
+  scope :home, -> { where(list_id: nil) }
+  scope :list, -> { where.not(list_id: nil) }
+
+  def name=(str)
+    self.tag = Tag.find_or_create_by_names(str.strip)&.first
+  end
+end
diff --git a/app/models/form/account_subscribe.rb b/app/models/form/account_subscribe.rb
new file mode 100644
index 0000000000000000000000000000000000000000..664ac914edc855d7def1f96e144a46ab8535e457
--- /dev/null
+++ b/app/models/form/account_subscribe.rb
@@ -0,0 +1,13 @@
+class Form::AccountSubscribe
+  include ActiveModel::Model
+  include ActiveModel::Attributes
+
+  attribute :id, :integer
+  attribute :acct, :string
+  attribute :show_reblogs, :boolean, default: true
+  attribute :list_id, :integer
+
+  def acct=(val)
+    super(val.to_s.strip.gsub(/\A@/, ''))
+  end
+end
diff --git a/app/models/form/admin_settings.rb b/app/models/form/admin_settings.rb
index 70e9c21f166613626d4eb279971749c6d4876b18..390836f287fae9b79f6f3ae013430d725fc1be5c 100644
--- a/app/models/form/admin_settings.rb
+++ b/app/models/form/admin_settings.rb
@@ -16,6 +16,7 @@ class Form::AdminSettings
     open_deletion
     timeline_preview
     show_staff_badge
+    enable_bootstrap_timeline_accounts
     bootstrap_timeline_accounts
     theme
     min_invite_role
@@ -40,6 +41,7 @@ class Form::AdminSettings
     open_deletion
     timeline_preview
     show_staff_badge
+    enable_bootstrap_timeline_accounts
     activity_api_enabled
     peers_api_enabled
     show_known_fediverse_at_about_page
diff --git a/app/models/form/custom_emoji_batch.rb b/app/models/form/custom_emoji_batch.rb
index 076e8c9e39aebd7b620c473cc11d6d0af7b93e04..6b7ea5355dd1dcbd6c14fc0f77a7e02761a1acca 100644
--- a/app/models/form/custom_emoji_batch.rb
+++ b/app/models/form/custom_emoji_batch.rb
@@ -40,7 +40,7 @@ class Form::CustomEmojiBatch
       if category_id.present?
         CustomEmojiCategory.find(category_id)
       elsif category_name.present?
-        CustomEmojiCategory.create!(name: category_name)
+        CustomEmojiCategory.find_or_create_by!(name: category_name)
       end
     end
 
diff --git a/app/models/instance_filter.rb b/app/models/instance_filter.rb
index 8bfab826d7393685c8d0e3a545698c37015ad68d..9c467bc276c55d97aa7c3c27606fdefa49e9dc77 100644
--- a/app/models/instance_filter.rb
+++ b/app/models/instance_filter.rb
@@ -1,6 +1,11 @@
 # frozen_string_literal: true
 
 class InstanceFilter
+  KEYS = %i(
+    limited
+    by_domain
+  ).freeze
+
   attr_reader :params
 
   def initialize(params)
diff --git a/app/models/invite_filter.rb b/app/models/invite_filter.rb
index 7d89bad4a8470373e697b93cd95084c6b0288af4..9685d4abb5ff1b09acdb102c875f4b4dfac70f5d 100644
--- a/app/models/invite_filter.rb
+++ b/app/models/invite_filter.rb
@@ -1,6 +1,11 @@
 # frozen_string_literal: true
 
 class InviteFilter
+  KEYS = %i(
+    available
+    expired
+  ).freeze
+
   attr_reader :params
 
   def initialize(params)
diff --git a/app/models/keyword_subscribe.rb b/app/models/keyword_subscribe.rb
new file mode 100644
index 0000000000000000000000000000000000000000..1df016eecc19f51fa9927739158557fd53b90c6f
--- /dev/null
+++ b/app/models/keyword_subscribe.rb
@@ -0,0 +1,107 @@
+# == Schema Information
+#
+# Table name: keyword_subscribes
+#
+#  id              :bigint(8)        not null, primary key
+#  account_id      :bigint(8)
+#  keyword         :string           not null
+#  ignorecase      :boolean          default(TRUE)
+#  regexp          :boolean          default(FALSE)
+#  created_at      :datetime         not null
+#  updated_at      :datetime         not null
+#  name            :string           default(""), not null
+#  ignore_block    :boolean          default(FALSE)
+#  disabled        :boolean          default(FALSE)
+#  exclude_keyword :string           default(""), not null
+#  list_id         :bigint(8)
+#
+
+class KeywordSubscribe < ApplicationRecord
+  belongs_to :account, inverse_of: :keyword_subscribes, required: true
+  belongs_to :list, optional: true
+
+  validates :keyword, presence: true
+  validate :validate_subscribes_limit, on: :create
+  validate :validate_keyword_regexp_syntax
+  validate :validate_exclude_keyword_regexp_syntax
+  validate :validate_uniqueness_in_account, on: :create
+
+  scope :active, -> { where(disabled: false) }
+  scope :ignore_block, -> { where(ignore_block: true) }
+  scope :home, -> { where(list_id: nil) }
+  scope :list, -> { where.not(list_id: nil) }
+  scope :without_local_followed_home, ->(account) { home.where.not(account: account.followers.local).where.not(account: account.subscribers.local) }
+  scope :without_local_followed_list, ->(account) { list.where.not(list_id: ListAccount.followed_lists(account)).where.not(list_id: AccountSubscribe.subscribed_lists(account)) }
+
+  def keyword=(val)
+    super(regexp ? val : keyword_normalization(val))
+  end
+
+  def exclude_keyword=(val)
+    super(regexp ? val : keyword_normalization(val))
+  end
+
+  def match?(text)
+    keyword_regexp.match?(text) && (exclude_keyword.empty? || !exclude_keyword_regexp.match?(text))
+  end
+
+  def keyword_regexp
+    to_regexp keyword
+  end
+
+  def exclude_keyword_regexp
+    to_regexp exclude_keyword
+  end
+
+  class << self
+    def match?(text, account_id: account_id = nil, as_ignore_block: as_ignore_block = false)
+      target = KeywordSubscribe.active
+      target = target.where(account_id: account_id) if account_id.present?
+      target = target.ignore_block                  if as_ignore_block
+      !target.find{ |t| t.match?(text) }.nil?
+    end
+  end
+
+  private
+
+  def keyword_normalization(val)
+    val.to_s.strip.gsub(/\s{2,}/, ' ').split(/\s*,\s*/).reject(&:blank?).uniq.join(',')
+  end
+
+  def to_regexp(words)
+    Regexp.new(regexp ? words : "(?<![#])(#{words.split(',').map do |k|
+      sb = k =~ /\A[A-Za-z0-9]/ ? '\b' : k !~ /\A[\/\.]/ ? '(?<![\/\.])' : ''
+      eb = k =~ /[A-Za-z0-9]\z/ ? '\b' : k !~ /[\/\.]\z/ ? '(?![\/\.])' : ''
+
+      /(?m#{ignorecase ? 'i': ''}x:#{sb}#{Regexp.quote(k).gsub("\\ ", "[[:space:]]+")}#{eb})/
+    end.join('|')})", ignorecase)
+  end
+
+  def validate_keyword_regexp_syntax
+    return unless regexp
+
+    begin
+      Regexp.compile(keyword, ignorecase)
+    rescue RegexpError => exception
+      errors.add(:base, I18n.t('keyword_subscribes.errors.regexp', message: exception.message))
+    end
+  end
+
+  def validate_exclude_keyword_regexp_syntax
+    return unless regexp
+
+    begin
+      Regexp.compile(exclude_keyword, ignorecase)
+    rescue RegexpError => exception
+      errors.add(:base, I18n.t('keyword_subscribes.errors.regexp', message: exception.message))
+    end
+  end
+
+  def validate_subscribes_limit
+    errors.add(:base, I18n.t('keyword_subscribes.errors.limit')) if account.keyword_subscribes.count >= 100
+  end
+
+  def validate_uniqueness_in_account
+    errors.add(:base, I18n.t('keyword_subscribes.errors.duplicate')) if account.keyword_subscribes.find_by(keyword: keyword, exclude_keyword: exclude_keyword, list_id: list_id)
+  end
+end
diff --git a/app/models/list_account.rb b/app/models/list_account.rb
index 87b498224c1f0e17cdca7bd97691d449abe6a4bd..0cb4339be1c91394c591570e9c020c4d9ecd1207 100644
--- a/app/models/list_account.rb
+++ b/app/models/list_account.rb
@@ -6,21 +6,23 @@
 #  id         :bigint(8)        not null, primary key
 #  list_id    :bigint(8)        not null
 #  account_id :bigint(8)        not null
-#  follow_id  :bigint(8)        not null
+#  follow_id  :bigint(8)
 #
 
 class ListAccount < ApplicationRecord
   belongs_to :list
   belongs_to :account
-  belongs_to :follow
+  belongs_to :follow, optional: true
 
   validates :account_id, uniqueness: { scope: :list_id }
 
   before_validation :set_follow
 
+  scope :followed_lists, ->(account) { ListAccount.includes(:follow).where(follows: { account_id: account.id }).select(:list_id).uniq }
+
   private
 
   def set_follow
-    self.follow = Follow.find_by(account_id: list.account_id, target_account_id: account.id)
+    self.follow = Follow.find_by!(account_id: list.account_id, target_account_id: account.id) unless list.account_id == account.id
   end
 end
diff --git a/app/models/media_attachment.rb b/app/models/media_attachment.rb
index 9c6c04556e282e971b6dd87e3f4b520b5bc936b9..b2602860c314a40bd7af638eb4681381b9ce94d4 100644
--- a/app/models/media_attachment.rb
+++ b/app/models/media_attachment.rb
@@ -26,11 +26,14 @@ class MediaAttachment < ApplicationRecord
 
   enum type: [:image, :gifv, :video, :unknown, :audio]
 
-  IMAGE_FILE_EXTENSIONS = %w(.jpg .jpeg .png .gif).freeze
+  MAX_DESCRIPTION_LENGTH = 1_500
+
+  IMAGE_FILE_EXTENSIONS = %w(.jpg .jpeg .png .gif .webp .heif .heic).freeze
   VIDEO_FILE_EXTENSIONS = %w(.webm .mp4 .m4v .mov).freeze
   AUDIO_FILE_EXTENSIONS = %w(.ogg .oga .mp3 .wav .flac .opus .aac .m4a .3gp .wma).freeze
 
-  IMAGE_MIME_TYPES             = %w(image/jpeg image/png image/gif).freeze
+  IMAGE_MIME_TYPES             = %w(image/jpeg image/png image/gif image/webp image/heif image/heic).freeze
+  IMAGE_CONVERTIBLE_MIME_TYPES = %w(image/webp image/heif image/heic).freeze
   VIDEO_MIME_TYPES             = %w(video/webm video/mp4 video/quicktime video/ogg).freeze
   VIDEO_CONVERTIBLE_MIME_TYPES = %w(video/webm video/quicktime).freeze
   AUDIO_MIME_TYPES             = %w(audio/wave audio/wav audio/x-wav audio/x-pn-wave audio/ogg audio/mpeg audio/mp3 audio/webm audio/flac audio/aac audio/m4a audio/x-m4a audio/mp4 audio/3gpp video/x-ms-asf).freeze
@@ -87,6 +90,7 @@ class MediaAttachment < ApplicationRecord
       convert_options: {
         output: {
           'loglevel' => 'fatal',
+          'map_metadata' => '-1',
           'q:a' => 2,
         },
       },
@@ -128,7 +132,7 @@ class MediaAttachment < ApplicationRecord
   has_attached_file :file,
                     styles: ->(f) { file_styles f },
                     processors: ->(f) { file_processors f },
-                    convert_options: { all: '-quality 90 -strip +set modify-date +set create-date' }
+                    convert_options: { all: '-quality 90 +profile exif +set modify-date +set create-date' }
 
   validates_attachment_content_type :file, content_type: IMAGE_MIME_TYPES + VIDEO_MIME_TYPES + AUDIO_MIME_TYPES
   validates_attachment_size :file, less_than: IMAGE_LIMIT, unless: :larger_media_format?
@@ -138,7 +142,7 @@ class MediaAttachment < ApplicationRecord
   include Attachmentable
 
   validates :account, presence: true
-  validates :description, length: { maximum: 1_500 }, if: :local?
+  validates :description, length: { maximum: MAX_DESCRIPTION_LENGTH }, if: :local?
 
   scope :attached,   -> { where.not(status_id: nil).or(where.not(scheduled_status_id: nil)) }
   scope :unattached, -> { where(status_id: nil, scheduled_status_id: nil) }
@@ -164,6 +168,18 @@ class MediaAttachment < ApplicationRecord
     audio? || video?
   end
 
+  def variant?(other_file_name)
+    return true if file_file_name == other_file_name
+
+    formats = file.styles.values.map(&:format).compact
+
+    return false if formats.empty?
+
+    extension = File.extname(other_file_name)
+
+    formats.include?(extension.delete('.')) && File.basename(other_file_name, extension) == File.basename(file_file_name, File.extname(file_file_name))
+  end
+
   def to_param
     shortcode
   end
@@ -187,9 +203,12 @@ class MediaAttachment < ApplicationRecord
   end
 
   after_commit :reset_parent_cache, on: :update
+
   before_create :prepare_description, unless: :local?
   before_create :set_shortcode
+
   before_post_process :set_type_and_extension
+
   before_save :set_meta
 
   class << self
@@ -222,6 +241,8 @@ class MediaAttachment < ApplicationRecord
         [:video_transcoder, :blurhash_transcoder, :type_corrector]
       elsif AUDIO_MIME_TYPES.include?(f.file_content_type)
         [:transcoder, :type_corrector]
+      elsif IMAGE_CONVERTIBLE_MIME_TYPES.include?(f.file_content_type)
+        [:img_converter, :lazy_thumbnail, :blurhash_transcoder, :type_corrector]
       else
         [:lazy_thumbnail, :blurhash_transcoder, :type_corrector]
       end
@@ -242,7 +263,7 @@ class MediaAttachment < ApplicationRecord
   end
 
   def prepare_description
-    self.description = description.strip[0...420] unless description.nil?
+    self.description = description.strip[0...MAX_DESCRIPTION_LENGTH] unless description.nil?
   end
 
   def set_type_and_extension
@@ -284,7 +305,7 @@ class MediaAttachment < ApplicationRecord
       width:  width,
       height: height,
       size: "#{width}x#{height}",
-      aspect: width.to_f / height.to_f,
+      aspect: width.to_f / height,
     }
   end
 
diff --git a/app/models/notification.rb b/app/models/notification.rb
index 498673ff13d8630437b2391f3577874098f9a88d..ad7528f505c035f8702fe9e7fdf53af2f5c18ac4 100644
--- a/app/models/notification.rb
+++ b/app/models/notification.rb
@@ -42,7 +42,7 @@ class Notification < ApplicationRecord
   validates :activity_type, inclusion: { in: TYPE_CLASS_MAP.values }
 
   scope :browserable, ->(exclude_types = [], account_id = nil) {
-    types = TYPE_CLASS_MAP.values - activity_types_from_types(exclude_types + [:follow_request])
+    types = TYPE_CLASS_MAP.values - activity_types_from_types(exclude_types)
     if account_id.nil?
       where(activity_type: types)
     else
@@ -50,7 +50,7 @@ class Notification < ApplicationRecord
     end
   }
 
-  cache_associated :from_account, status: STATUS_INCLUDES, mention: [status: STATUS_INCLUDES], favourite: [:account, status: STATUS_INCLUDES], follow: :account, poll: [status: STATUS_INCLUDES]
+  cache_associated :from_account, status: STATUS_INCLUDES, mention: [status: STATUS_INCLUDES], favourite: [:account, status: STATUS_INCLUDES], follow: :account, follow_request: :account, poll: [status: STATUS_INCLUDES]
 
   def type
     @type ||= TYPE_CLASS_MAP.invert[activity_type].to_sym
@@ -69,10 +69,6 @@ class Notification < ApplicationRecord
     end
   end
 
-  def browserable?
-    type != :follow_request
-  end
-
   class << self
     def cache_ids
       select(:id, :updated_at, :activity_type, :activity_id)
diff --git a/app/models/poll.rb b/app/models/poll.rb
index 5427368fd04401cc963be90972ebe4dba62a5a36..b5deafcc21fbe442f54b86fb3a0c7bb592c7aac9 100644
--- a/app/models/poll.rb
+++ b/app/models/poll.rb
@@ -36,7 +36,7 @@ class Poll < ApplicationRecord
   scope :attached, -> { where.not(status_id: nil) }
   scope :unattached, -> { where(status_id: nil) }
 
-  before_validation :prepare_options
+  before_validation :prepare_options, if: :local?
   before_validation :prepare_votes_count
 
   after_initialize :prepare_cached_tallies
diff --git a/app/models/preview_card.rb b/app/models/preview_card.rb
index 4e89fbf8510f9a33783aca9aa695d4b1580eb0c3..107ba433c383838998871c2a4a05cc5317eeba8c 100644
--- a/app/models/preview_card.rb
+++ b/app/models/preview_card.rb
@@ -34,7 +34,7 @@ class PreviewCard < ApplicationRecord
 
   has_and_belongs_to_many :statuses
 
-  has_attached_file :image, styles: ->(f) { image_styles(f) }, convert_options: { all: '-quality 80 -strip' }
+  has_attached_file :image, styles: ->(f) { image_styles(f) }, convert_options: { all: '-quality 80 +profile exif' }
 
   include Attachmentable
 
@@ -66,7 +66,7 @@ class PreviewCard < ApplicationRecord
         original: {
           geometry: '400x400>',
           file_geometry_parser: FastGeometryParser,
-          convert_options: '-coalesce -strip',
+          convert_options: '-coalesce +profile exif',
         },
       }
 
diff --git a/app/models/relationship_filter.rb b/app/models/relationship_filter.rb
new file mode 100644
index 0000000000000000000000000000000000000000..51640f494ca53ece0f168c95c8b2dcf7f66993a7
--- /dev/null
+++ b/app/models/relationship_filter.rb
@@ -0,0 +1,11 @@
+# frozen_string_literal: true
+
+class RelationshipFilter
+  KEYS = %i(
+    relationship
+    status
+    by_domain
+    activity
+    order
+  ).freeze
+end
diff --git a/app/models/report_filter.rb b/app/models/report_filter.rb
index a392d60c3c0b4b927634ee9b45868405b9efeffd..c32d4359e7f02e7359a2635cc9eef78d30bcfd64 100644
--- a/app/models/report_filter.rb
+++ b/app/models/report_filter.rb
@@ -1,6 +1,13 @@
 # frozen_string_literal: true
 
 class ReportFilter
+  KEYS = %i(
+    resolved
+    account_id
+    target_account_id
+    by_target_domain
+  ).freeze
+
   attr_reader :params
 
   def initialize(params)
@@ -19,6 +26,8 @@ class ReportFilter
 
   def scope_for(key, value)
     case key.to_sym
+    when :by_target_domain
+      Report.where(target_account: Account.where(domain: value))
     when :resolved
       Report.resolved
     when :account_id
diff --git a/app/models/status.rb b/app/models/status.rb
index 8dd50e40c45756d1cf4b2a49be9aeb93285aeb0b..53a4fb5af9a779cc8834700db884f4710f52e9a9 100644
--- a/app/models/status.rb
+++ b/app/models/status.rb
@@ -24,6 +24,7 @@
 #  poll_id                :bigint(8)
 #  deleted_at             :datetime
 #  local_only             :boolean
+#  quote_id               :bigint(8)
 #
 
 class Status < ApplicationRecord
@@ -53,13 +54,16 @@ class Status < ApplicationRecord
 
   belongs_to :thread, foreign_key: 'in_reply_to_id', class_name: 'Status', inverse_of: :replies, optional: true
   belongs_to :reblog, foreign_key: 'reblog_of_id', class_name: 'Status', inverse_of: :reblogs, optional: true
+  belongs_to :quote, foreign_key: 'quote_id', class_name: 'Status', inverse_of: :quoted, optional: true
 
   has_many :favourites, inverse_of: :status, dependent: :destroy
+  has_many :bookmarks, inverse_of: :status, dependent: :destroy
   has_many :reblogs, foreign_key: 'reblog_of_id', class_name: 'Status', inverse_of: :reblog, dependent: :destroy
   has_many :replies, foreign_key: 'in_reply_to_id', class_name: 'Status', inverse_of: :thread
   has_many :mentions, dependent: :destroy, inverse_of: :status
   has_many :active_mentions, -> { active }, class_name: 'Mention', inverse_of: :status
   has_many :media_attachments, dependent: :nullify
+  has_many :quoted, foreign_key: 'quote_id', class_name: 'Status', inverse_of: :quote
 
   has_and_belongs_to_many :tags
   has_and_belongs_to_many :preview_cards
@@ -83,6 +87,7 @@ class Status < ApplicationRecord
   scope :remote, -> { where(local: false).where.not(uri: nil) }
   scope :local,  -> { where(local: true).or(where(uri: nil)) }
 
+  scope :with_accounts, ->(ids) { where(id: ids).includes(:account) }
   scope :without_replies, -> { where('statuses.reply = FALSE OR statuses.in_reply_to_account_id = statuses.account_id') }
   scope :without_reblogs, -> { where('statuses.reblog_of_id IS NULL') }
   scope :without_local_only, -> { where(local_only: [false, nil]) }
@@ -139,10 +144,12 @@ class Status < ApplicationRecord
       ids += mentions.where(account: Account.local).pluck(:account_id)
       ids += favourites.where(account: Account.local).pluck(:account_id)
       ids += reblogs.where(account: Account.local).pluck(:account_id)
+      ids += bookmarks.where(account: Account.local).pluck(:account_id)
     else
       ids += preloaded.mentions[id] || []
       ids += preloaded.favourites[id] || []
       ids += preloaded.reblogs[id] || []
+      ids += preloaded.bookmarks[id] || []
     end
 
     ids.uniq
@@ -164,6 +171,10 @@ class Status < ApplicationRecord
     !reblog_of_id.nil?
   end
 
+  def quote?
+    !quote_id.nil? && quote
+  end
+
   def within_realtime_window?
     created_at >= REAL_TIME_WINDOW.ago
   end
@@ -199,8 +210,12 @@ class Status < ApplicationRecord
   def title
     if destroyed?
       "#{account.acct} deleted status"
+    elsif reblog?
+      preview = sensitive ? '<sensitive>' : text.slice(0, 10).split("\n")[0]
+      "#{account.acct} shared #{reblog.account.acct}'s: #{preview}"
     else
-      reblog? ? "#{account.acct} shared a status by #{reblog.account.acct}" : "New status by #{account.acct}"
+      preview = sensitive ? '<sensitive>' : text.slice(0, 20).split("\n")[0]
+      "#{account.acct}: #{preview}"
     end
   end
 
@@ -232,7 +247,11 @@ class Status < ApplicationRecord
     fields  = [spoiler_text, text]
     fields += preloadable_poll.options unless preloadable_poll.nil?
 
-    @emojis = CustomEmoji.from_text(fields.join(' '), account.domain)
+    @emojis = CustomEmoji.from_text(fields.join(' '), account.domain) + (quote? ? CustomEmoji.from_text([quote.spoiler_text, quote.text].join(' '), quote.account.domain) : [])
+  end
+
+  def index_text
+    @index_text ||= [spoiler_text, Formatter.instance.plaintext(self)].concat(media_attachments.map(&:description)).concat(preloadable_poll ? preloadable_poll.options : []).join("\n\n")
   end
 
   def mark_for_mass_destruction!
@@ -296,6 +315,16 @@ class Status < ApplicationRecord
       apply_timeline_filters(query, account, local_only)
     end
 
+    def as_domain_timeline(account = nil, domain)
+      query = Status.includes(:account)
+        .where(accounts: {domain: domain}).select('statuses.*, accounts.*')
+        .with_public_visibility
+        .without_reblogs
+        .without_replies
+
+      apply_timeline_filters(query, account, false)
+    end
+
     def as_tag_timeline(tag, account = nil, local_only = false)
       query = timeline_scope(local_only).tagged_with(tag)
 
@@ -310,6 +339,10 @@ class Status < ApplicationRecord
       Favourite.select('status_id').where(status_id: status_ids).where(account_id: account_id).each_with_object({}) { |f, h| h[f.status_id] = true }
     end
 
+    def bookmarks_map(status_ids, account_id)
+      Bookmark.select('status_id').where(status_id: status_ids).where(account_id: account_id).map { |f| [f.status_id, true] }.to_h
+    end
+
     def reblogs_map(status_ids, account_id)
       unscoped.select('reblog_of_id').where(reblog_of_id: status_ids).where(account_id: account_id).each_with_object({}) { |s, h| h[s.reblog_of_id] = true }
     end
@@ -367,7 +400,7 @@ class Status < ApplicationRecord
     private
 
     def timeline_scope(local_only = false)
-      starting_scope = local_only ? Status.local : Status
+      starting_scope = local_only ? Status.none : Status
       starting_scope
         .with_public_visibility
         .without_reblogs
diff --git a/app/models/tag.rb b/app/models/tag.rb
index d3a7e1e6d4e2d8f1c6cf47a1609b03d47ac8d3bc..29891e0c53200f3398afa5cb045f3ead3fc94a60 100644
--- a/app/models/tag.rb
+++ b/app/models/tag.rb
@@ -22,7 +22,9 @@ class Tag < ApplicationRecord
   has_and_belongs_to_many :accounts
   has_and_belongs_to_many :sample_accounts, -> { local.discoverable.popular.limit(3) }, class_name: 'Account'
 
+  has_many :favourite_tags, dependent: :destroy, inverse_of: :tag
   has_many :featured_tags, dependent: :destroy, inverse_of: :tag
+  has_many :follow_tags, dependent: :destroy, inverse_of: :tag
   has_one :account_tag_stat, dependent: :destroy
 
   HASHTAG_SEPARATORS = "_\u00B7\u200c"
@@ -117,7 +119,7 @@ class Tag < ApplicationRecord
   class << self
     def find_or_create_by_names(name_or_names)
       Array(name_or_names).map(&method(:normalize)).uniq { |str| str.mb_chars.downcase.to_s }.map do |normalized_name|
-        tag = matching_name(normalized_name).first || create!(name: normalized_name)
+        tag = matching_name(normalized_name).first || create(name: normalized_name)
 
         yield tag if block_given?
 
diff --git a/app/models/tag_filter.rb b/app/models/tag_filter.rb
index 8921e186b05b498184cdcb77e2a9ddc7a795f574..a9ff5b703c0cee3b8fe1a4f22e3658805f648a20 100644
--- a/app/models/tag_filter.rb
+++ b/app/models/tag_filter.rb
@@ -1,6 +1,16 @@
 # frozen_string_literal: true
 
 class TagFilter
+  KEYS = %i(
+    directory
+    reviewed
+    unreviewed
+    pending_review
+    popular
+    active
+    name
+  ).freeze
+
   attr_reader :params
 
   def initialize(params)
diff --git a/app/models/user.rb b/app/models/user.rb
index b34546ab98447d67a13ce94f8057346a3ae923eb..838af34d18d309e9386dfa8260cc53e056de0eb8 100644
--- a/app/models/user.rb
+++ b/app/models/user.rb
@@ -93,6 +93,7 @@ class User < ApplicationRecord
   scope :inactive, -> { where(arel_table[:current_sign_in_at].lt(ACTIVE_DURATION.ago)) }
   scope :active, -> { confirmed.where(arel_table[:current_sign_in_at].gteq(ACTIVE_DURATION.ago)).joins(:account).where(accounts: { suspended_at: nil }) }
   scope :matches_email, ->(value) { where(arel_table[:email].matches("#{value}%")) }
+  scope :matches_ip, ->(value) { left_joins(:session_activations).where('users.current_sign_in_ip <<= ?', value).or(left_joins(:session_activations).where('users.last_sign_in_ip <<= ?', value)).or(left_joins(:session_activations).where('session_activations.ip <<= ?', value)) }
   scope :emailable, -> { confirmed.enabled.joins(:account).merge(Account.searchable) }
 
   before_validation :sanitize_languages
@@ -105,10 +106,12 @@ class User < ApplicationRecord
 
   has_many :session_activations, dependent: :destroy
 
-  delegate :auto_play_gif, :default_sensitive, :unfollow_modal, :boost_modal, :delete_modal,
+  delegate :auto_play_gif, :default_sensitive, :unfollow_modal, :unsubscribe_modal, :boost_modal, :delete_modal,
            :reduce_motion, :system_font_ui, :noindex, :theme, :display_media, :hide_network,
            :expand_spoilers, :default_language, :aggregate_reblogs, :show_application,
            :advanced_layout, :use_blurhash, :use_pending_items, :trends, :default_federation,
+           :advanced_layout, :use_blurhash, :use_pending_items, :trends, :default_federation, :crop_images,
+           :show_follow_button_on_timeline, :show_subscribe_button_on_timeline, :show_target,
            to: :settings, prefix: :setting, allow_nil: false
 
   attr_reader :invite_code
@@ -289,6 +292,21 @@ class User < ApplicationRecord
     setting_display_media == 'hide_all'
   end
 
+  def recent_ips
+    @recent_ips ||= begin
+      arr = []
+
+      session_activations.each do |session_activation|
+        arr << [session_activation.updated_at, session_activation.ip]
+      end
+
+      arr << [current_sign_in_at, current_sign_in_ip] if current_sign_in_ip.present?
+      arr << [last_sign_in_at, last_sign_in_ip] if last_sign_in_ip.present?
+
+      arr.sort_by(&:first).uniq(&:last).reverse!
+    end
+  end
+
   protected
 
   def send_devise_notification(notification, *args)
diff --git a/app/presenters/account_relationships_presenter.rb b/app/presenters/account_relationships_presenter.rb
index b05673a3d46103d6966708b948cccbedb9754869..917bbac19826f69a897f4b5f6e68a60139c39c4c 100644
--- a/app/presenters/account_relationships_presenter.rb
+++ b/app/presenters/account_relationships_presenter.rb
@@ -1,16 +1,17 @@
 # frozen_string_literal: true
 
 class AccountRelationshipsPresenter
-  attr_reader :following, :followed_by, :blocking, :blocked_by,
+  attr_reader :following, :followed_by, :subscribing, :blocking, :blocked_by,
               :muting, :requested, :domain_blocking,
               :endorsed
 
   def initialize(account_ids, current_account_id, **options)
-    @account_ids        = account_ids.map { |a| a.is_a?(Account) ? a.id : a }
+    @account_ids        = account_ids.map { |a| a.is_a?(Account) ? a.id : a.to_i }
     @current_account_id = current_account_id
 
     @following       = cached[:following].merge(Account.following_map(@uncached_account_ids, @current_account_id))
     @followed_by     = cached[:followed_by].merge(Account.followed_by_map(@uncached_account_ids, @current_account_id))
+    @subscribing     = cached[:subscribing].merge(Account.subscribing_map(@uncached_account_ids, @current_account_id))
     @blocking        = cached[:blocking].merge(Account.blocking_map(@uncached_account_ids, @current_account_id))
     @blocked_by      = cached[:blocked_by].merge(Account.blocked_by_map(@uncached_account_ids, @current_account_id))
     @muting          = cached[:muting].merge(Account.muting_map(@uncached_account_ids, @current_account_id))
@@ -22,6 +23,7 @@ class AccountRelationshipsPresenter
 
     @following.merge!(options[:following_map] || {})
     @followed_by.merge!(options[:followed_by_map] || {})
+    @subscribing.merge!(options[:subscribing_map] || {})
     @blocking.merge!(options[:blocking_map] || {})
     @blocked_by.merge!(options[:blocked_by_map] || {})
     @muting.merge!(options[:muting_map] || {})
@@ -38,6 +40,7 @@ class AccountRelationshipsPresenter
     @cached = {
       following: {},
       followed_by: {},
+      subscribing: {},
       blocking: {},
       blocked_by: {},
       muting: {},
@@ -66,6 +69,7 @@ class AccountRelationshipsPresenter
       maps_for_account = {
         following:       { account_id => following[account_id] },
         followed_by:     { account_id => followed_by[account_id] },
+        subscribing:     { account_id => subscribing[account_id] },
         blocking:        { account_id => blocking[account_id] },
         blocked_by:      { account_id => blocked_by[account_id] },
         muting:          { account_id => muting[account_id] },
diff --git a/app/presenters/status_relationships_presenter.rb b/app/presenters/status_relationships_presenter.rb
index b04e10e2f6d6e0de7fb3b5a800d6d6c0d74981bb..3cc905a75eeb5291875be55d9ad636e61bc0e6f8 100644
--- a/app/presenters/status_relationships_presenter.rb
+++ b/app/presenters/status_relationships_presenter.rb
@@ -1,12 +1,14 @@
 # frozen_string_literal: true
 
 class StatusRelationshipsPresenter
-  attr_reader :reblogs_map, :favourites_map, :mutes_map, :pins_map
+  attr_reader :reblogs_map, :favourites_map, :mutes_map, :pins_map,
+              :bookmarks_map
 
   def initialize(statuses, current_account_id = nil, **options)
     if current_account_id.nil?
       @reblogs_map    = {}
       @favourites_map = {}
+      @bookmarks_map  = {}
       @mutes_map      = {}
       @pins_map       = {}
     else
@@ -17,6 +19,7 @@ class StatusRelationshipsPresenter
 
       @reblogs_map     = Status.reblogs_map(status_ids, current_account_id).merge(options[:reblogs_map] || {})
       @favourites_map  = Status.favourites_map(status_ids, current_account_id).merge(options[:favourites_map] || {})
+      @bookmarks_map   = Status.bookmarks_map(status_ids, current_account_id).merge(options[:bookmarks_map] || {})
       @mutes_map       = Status.mutes_map(conversation_ids, current_account_id).merge(options[:mutes_map] || {})
       @pins_map        = Status.pins_map(pinnable_status_ids, current_account_id).merge(options[:pins_map] || {})
     end
diff --git a/app/serializers/activitypub/actor_serializer.rb b/app/serializers/activitypub/actor_serializer.rb
index 17df85de31a6fbc60dee5324ab5570b7d6ac4522..aa64936a734f6001ebb674d9470c482464982811 100644
--- a/app/serializers/activitypub/actor_serializer.rb
+++ b/app/serializers/activitypub/actor_serializer.rb
@@ -49,6 +49,8 @@ class ActivityPub::ActorSerializer < ActivityPub::Serializer
       'Application'
     elsif object.bot?
       'Service'
+    elsif object.group?
+      'Group'
     else
       'Person'
     end
diff --git a/app/serializers/activitypub/note_serializer.rb b/app/serializers/activitypub/note_serializer.rb
index 110621a28bf88ec6498b776368bac696bfa0fdc5..2776e9ac47ab7db5fb8449ecf0305cd39f0b1a70 100644
--- a/app/serializers/activitypub/note_serializer.rb
+++ b/app/serializers/activitypub/note_serializer.rb
@@ -9,6 +9,9 @@ class ActivityPub::NoteSerializer < ActivityPub::Serializer
              :atom_uri, :in_reply_to_atom_uri,
              :conversation
 
+  attribute :quote_url, if: -> { object.quote? }
+  attribute :misskey_quote, key: :_misskey_quote, if: -> { object.quote? }
+  attribute :misskey_content, key: :_misskey_content, if: -> { object.quote? }
   attribute :content
   attribute :content_map, if: :language?
 
@@ -121,6 +124,16 @@ class ActivityPub::NoteSerializer < ActivityPub::Serializer
     end
   end
 
+  def quote_url
+    ActivityPub::TagManager.instance.uri_for(object.quote) if object.quote?
+  end
+
+  alias misskey_quote quote_url
+
+  def misskey_content
+    object.text if object.quote?
+  end
+
   def local?
     object.account.local?
   end
diff --git a/app/serializers/initial_state_serializer.rb b/app/serializers/initial_state_serializer.rb
index e473d4a09413a2cc88d6df0a52979f0cc839b3b2..ac94d08ac80adbb97add17dab72c056660eb94a7 100644
--- a/app/serializers/initial_state_serializer.rb
+++ b/app/serializers/initial_state_serializer.rb
@@ -29,24 +29,30 @@ class InitialStateSerializer < ActiveModel::Serializer
     }
 
     if object.current_account
-      store[:me]                = object.current_account.id.to_s
-      store[:unfollow_modal]    = object.current_account.user.setting_unfollow_modal
-      store[:boost_modal]       = object.current_account.user.setting_boost_modal
-      store[:delete_modal]      = object.current_account.user.setting_delete_modal
-      store[:auto_play_gif]     = object.current_account.user.setting_auto_play_gif
-      store[:display_media]     = object.current_account.user.setting_display_media
-      store[:expand_spoilers]   = object.current_account.user.setting_expand_spoilers
-      store[:reduce_motion]     = object.current_account.user.setting_reduce_motion
-      store[:advanced_layout]   = object.current_account.user.setting_advanced_layout
-      store[:use_blurhash]      = object.current_account.user.setting_use_blurhash
-      store[:use_pending_items] = object.current_account.user.setting_use_pending_items
-      store[:is_staff]          = object.current_account.user.staff?
-      store[:trends]            = Setting.trends && object.current_account.user.setting_trends
-    else
+      store[:me]                                = object.current_account.id.to_s
+      store[:unfollow_modal]                    = object.current_account.user.setting_unfollow_modal
+      store[:unsubscribe_modal]                 = object.current_account.user.setting_unsubscribe_modal
+      store[:boost_modal]                       = object.current_account.user.setting_boost_modal
+      store[:delete_modal]                      = object.current_account.user.setting_delete_modal
+      store[:auto_play_gif]                     = object.current_account.user.setting_auto_play_gif
+      store[:display_media]                     = object.current_account.user.setting_display_media
+      store[:expand_spoilers]                   = object.current_account.user.setting_expand_spoilers
+      store[:reduce_motion]                     = object.current_account.user.setting_reduce_motion
+      store[:advanced_layout]                   = object.current_account.user.setting_advanced_layout
+      store[:use_blurhash]                      = object.current_account.user.setting_use_blurhash
+      store[:use_pending_items]                 = object.current_account.user.setting_use_pending_items
+      store[:is_staff]                          = object.current_account.user.staff?
+      store[:trends]                            = Setting.trends && object.current_account.user.setting_trends
+      store[:crop_images]                       = object.current_account.user.setting_crop_images
+      store[:show_follow_button_on_timeline]    = object.current_account.user.setting_show_follow_button_on_timeline
+      store[:show_subscribe_button_on_timeline] = object.current_account.user.setting_show_subscribe_button_on_timeline
+      store[:show_target]                       = object.current_account.user.setting_show_target
+      else
       store[:auto_play_gif] = Setting.auto_play_gif
       store[:display_media] = Setting.display_media
       store[:reduce_motion] = Setting.reduce_motion
       store[:use_blurhash]  = Setting.use_blurhash
+      store[:crop_images]   = Setting.crop_images
     end
 
     store
diff --git a/app/serializers/rest/account_featured_tag_serializer.rb b/app/serializers/rest/account_featured_tag_serializer.rb
new file mode 100644
index 0000000000000000000000000000000000000000..d8d5fd68c5c5ba70c0c4e32e5bda1b17e76f4224
--- /dev/null
+++ b/app/serializers/rest/account_featured_tag_serializer.rb
@@ -0,0 +1,19 @@
+# frozen_string_literal: true
+
+class REST::AccountFeaturedTagSerializer < ActiveModel::Serializer
+  include RoutingHelper
+
+  attributes :id, :name, :url
+
+  def id
+    object.tag.id.to_s
+  end
+
+  def name
+    "##{object.name}"
+  end
+
+  def url
+    short_account_tag_url(object.account, object.tag)
+  end
+end
diff --git a/app/serializers/rest/account_serializer.rb b/app/serializers/rest/account_serializer.rb
index 75b6cf13bb7b74e96229838fdcef4aefd39d0cff..3684647b0de5b1135c26b2429057067bf4da5934 100644
--- a/app/serializers/rest/account_serializer.rb
+++ b/app/serializers/rest/account_serializer.rb
@@ -3,9 +3,9 @@
 class REST::AccountSerializer < ActiveModel::Serializer
   include RoutingHelper
 
-  attributes :id, :username, :acct, :display_name, :locked, :bot, :created_at,
+  attributes :id, :username, :acct, :display_name, :locked, :bot, :discoverable, :group, :created_at,
              :note, :url, :avatar, :avatar_static, :header, :header_static,
-             :followers_count, :following_count, :statuses_count, :last_status_at
+             :followers_count, :following_count, :subscribing_count, :statuses_count, :last_status_at
 
   has_one :moved_to_account, key: :moved, serializer: REST::AccountSerializer, if: :moved_and_not_nested?
   has_many :emojis, serializer: REST::CustomEmojiSerializer
@@ -24,6 +24,10 @@ class REST::AccountSerializer < ActiveModel::Serializer
     object.id.to_s
   end
 
+  def acct
+    object.pretty_acct
+  end
+
   def note
     Formatter.instance.simplified_format(object)
   end
diff --git a/app/serializers/rest/account_subscribe_serializer.rb b/app/serializers/rest/account_subscribe_serializer.rb
new file mode 100644
index 0000000000000000000000000000000000000000..50ef86ae344ccc088bbb64aa5c4126d160eedd6d
--- /dev/null
+++ b/app/serializers/rest/account_subscribe_serializer.rb
@@ -0,0 +1,9 @@
+# frozen_string_literal: true
+
+class REST::AccountSubscribeSerializer < ActiveModel::Serializer
+  attributes :id, :target_account, :updated_at
+
+  def id
+    object.id.to_s
+  end
+end
diff --git a/app/serializers/rest/domain_subscribe_serializer.rb b/app/serializers/rest/domain_subscribe_serializer.rb
new file mode 100644
index 0000000000000000000000000000000000000000..fef4e3b83acd4fdd75047c2d4967cddba06c1269
--- /dev/null
+++ b/app/serializers/rest/domain_subscribe_serializer.rb
@@ -0,0 +1,9 @@
+# frozen_string_literal: true
+
+class REST::DomainSubscribeSerializer < ActiveModel::Serializer
+  attributes :id, :list_id, :domain, :updated_at
+
+  def id
+    object.id.to_s
+  end
+end
diff --git a/app/serializers/rest/favourite_tag_serializer.rb b/app/serializers/rest/favourite_tag_serializer.rb
new file mode 100644
index 0000000000000000000000000000000000000000..07940434d4c4f8e718c78aae21d9b31357050ea8
--- /dev/null
+++ b/app/serializers/rest/favourite_tag_serializer.rb
@@ -0,0 +1,9 @@
+# frozen_string_literal: true
+
+class REST::FavouriteTagSerializer < ActiveModel::Serializer
+  attributes :id, :name, :updated_at
+
+  def id
+    object.id.to_s
+  end
+end
diff --git a/app/serializers/rest/follow_tag_serializer.rb b/app/serializers/rest/follow_tag_serializer.rb
new file mode 100644
index 0000000000000000000000000000000000000000..ea9db960135ff24adb6238389baabc30179e7d0f
--- /dev/null
+++ b/app/serializers/rest/follow_tag_serializer.rb
@@ -0,0 +1,9 @@
+# frozen_string_literal: true
+
+class REST::FollowTagSerializer < ActiveModel::Serializer
+  attributes :id, :name, :updated_at
+
+  def id
+    object.id.to_s
+  end
+end
diff --git a/app/serializers/rest/keyword_subscribes_serializer.rb b/app/serializers/rest/keyword_subscribes_serializer.rb
new file mode 100644
index 0000000000000000000000000000000000000000..4253d02308da548abb036c8b96e19c65e5a6f231
--- /dev/null
+++ b/app/serializers/rest/keyword_subscribes_serializer.rb
@@ -0,0 +1,9 @@
+ # frozen_string_literal: true
+
+class REST::KeywordSubscribeSerializer < ActiveModel::Serializer
+  attributes :id, :name, :keyword, :exclude_keyword, :ignorecase, :regexp, :ignore_block, :disabled, :exclude_home
+
+  def id
+    object.id.to_s
+  end
+end
diff --git a/app/serializers/rest/relationship_serializer.rb b/app/serializers/rest/relationship_serializer.rb
index 1a3fd915cbcd738b10fb65091a1fc33b6fd3d10b..5b05e60b172fb60f72bd8da01866672456493c33 100644
--- a/app/serializers/rest/relationship_serializer.rb
+++ b/app/serializers/rest/relationship_serializer.rb
@@ -1,7 +1,7 @@
 # frozen_string_literal: true
 
 class REST::RelationshipSerializer < ActiveModel::Serializer
-  attributes :id, :following, :showing_reblogs, :followed_by, :blocking, :blocked_by,
+  attributes :id, :following, :showing_reblogs, :followed_by, :subscribing, :blocking, :blocked_by,
              :muting, :muting_notifications, :requested, :domain_blocking,
              :endorsed
 
@@ -23,6 +23,10 @@ class REST::RelationshipSerializer < ActiveModel::Serializer
     instance_options[:relationships].followed_by[object.id] || false
   end
 
+  def subscribing
+    instance_options[:relationships].subscribing[object.id] ? true : false
+  end
+
   def blocking
     instance_options[:relationships].blocking[object.id] || false
   end
diff --git a/app/serializers/rest/status_serializer.rb b/app/serializers/rest/status_serializer.rb
index ad0287a91c9cdfc93dc7d1ed73282ce6e82f6c16..7b6b48140e72792ddfda0880b3e9a667b5869fd5 100644
--- a/app/serializers/rest/status_serializer.rb
+++ b/app/serializers/rest/status_serializer.rb
@@ -9,6 +9,7 @@ class REST::StatusSerializer < ActiveModel::Serializer
   attribute :favourited, if: :current_user?
   attribute :reblogged, if: :current_user?
   attribute :muted, if: :current_user?
+  attribute :bookmarked, if: :current_user?
   attribute :pinned, if: :pinnable?
 
   attribute :content, unless: :source_requested?
@@ -17,6 +18,7 @@ class REST::StatusSerializer < ActiveModel::Serializer
   belongs_to :reblog, serializer: REST::StatusSerializer
   belongs_to :application, if: :show_application?
   belongs_to :account, serializer: REST::AccountSerializer
+  belongs_to :quote, serializer: REST::StatusSerializer
 
   has_many :media_attachments, serializer: REST::MediaAttachmentSerializer
   has_many :ordered_mentions, key: :mentions
@@ -93,6 +95,14 @@ class REST::StatusSerializer < ActiveModel::Serializer
     end
   end
 
+  def bookmarked
+    if instance_options && instance_options[:relationships]
+      instance_options[:relationships].bookmarks_map[object.id] || false
+    else
+      current_user.account.bookmarked?(object)
+    end
+  end
+
   def pinned
     if instance_options && instance_options[:relationships]
       instance_options[:relationships].pins_map[object.id] || false
diff --git a/app/serializers/rss/account_serializer.rb b/app/serializers/rss/account_serializer.rb
index e39b2b3720ebdeafa6ebb5187d55a9c59171ea9c..ee972ff9614ab7c967afd18e467f196d351d619c 100644
--- a/app/serializers/rss/account_serializer.rb
+++ b/app/serializers/rss/account_serializer.rb
@@ -2,7 +2,7 @@
 
 class RSS::AccountSerializer
   include ActionView::Helpers::NumberHelper
-  include StatusesHelper
+  include AccountsHelper
   include RoutingHelper
 
   def render(account, statuses, tag)
diff --git a/app/serializers/rss/tag_serializer.rb b/app/serializers/rss/tag_serializer.rb
index 6737fb2c90088eef2550c615988c4062ec2e47c3..ea26189a26a72a1fa32ff21813f6b2c7a1464131 100644
--- a/app/serializers/rss/tag_serializer.rb
+++ b/app/serializers/rss/tag_serializer.rb
@@ -3,7 +3,6 @@
 class RSS::TagSerializer
   include ActionView::Helpers::NumberHelper
   include ActionView::Helpers::SanitizeHelper
-  include StatusesHelper
   include RoutingHelper
 
   def render(tag, statuses)
diff --git a/app/services/account_search_service.rb b/app/services/account_search_service.rb
index 40c5f8590c9888a5278adf7ca1485b4c35a3ca56..d217dabb37f4857a692e4cb6c277091ba2b47ec8 100644
--- a/app/services/account_search_service.rb
+++ b/app/services/account_search_service.rb
@@ -4,8 +4,8 @@ class AccountSearchService < BaseService
   attr_reader :query, :limit, :offset, :options, :account
 
   def call(query, account = nil, options = {})
-    @acct_hint = query.start_with?('@')
-    @query     = query.strip.gsub(/\A@/, '')
+    @acct_hint = query&.start_with?('@')
+    @query     = query&.strip&.gsub(/\A@/, '')
     @limit     = options[:limit].to_i
     @offset    = options[:offset].to_i
     @options   = options
@@ -127,7 +127,7 @@ class AccountSearchService < BaseService
   end
 
   def following_ids
-    @following_ids ||= account.active_relationships.pluck(:target_account_id)
+    @following_ids ||= account.active_relationships.pluck(:target_account_id) + [account.id]
   end
 
   def limit_for_non_exact_results
diff --git a/app/services/account_subscribe_service.rb b/app/services/account_subscribe_service.rb
new file mode 100644
index 0000000000000000000000000000000000000000..d70f62789011a3383932e2207e5613b5ca4a620e
--- /dev/null
+++ b/app/services/account_subscribe_service.rb
@@ -0,0 +1,32 @@
+# frozen_string_literal: true
+
+class AccountSubscribeService < BaseService
+  # Subscribe a remote user
+  # @param [Account] source_account From which to subscribe
+  # @param [String, Account] uri User URI to subscribe in the form of username@domain (or account record)
+  def call(source_account, target_acct, show_reblogs = true, list_id = nil)
+    if target_acct.class.name == 'Account'
+      target_account = target_acct
+    else
+      begin
+        target_account = ResolveAccountService.new.call(target_acct, skip_webfinger: true)
+        target_account ||= ResolveAccountService.new.call(target_acct, skip_webfinger: false)
+      rescue
+        target_account = nil
+      end
+    end
+
+    raise ActiveRecord::RecordNotFound if target_account.nil? || target_account.id == source_account.id || target_account.suspended?
+    raise Mastodon::NotPermittedError  if target_account.blocking?(source_account) || source_account.blocking?(target_account) || (!target_account.local? && target_account.ostatus?) || source_account.domain_blocking?(target_account.domain)
+
+    if source_account.subscribing?(target_account, list_id)
+      return
+    end
+
+    ActivityTracker.increment('activity:interactions')
+
+    subscribe = source_account.subscribe!(target_account, show_reblogs, list_id)
+    MergeWorker.perform_async(target_account.id, source_account.id, true) if list_id.nil?
+    subscribe
+  end
+end
diff --git a/app/services/activitypub/process_collection_service.rb b/app/services/activitypub/process_collection_service.rb
index a2a2e7071545aae129896eac2102a9317cb23aaa..e6ccaccc90f3e61cbdf27ab095c59e82330e7213 100644
--- a/app/services/activitypub/process_collection_service.rb
+++ b/app/services/activitypub/process_collection_service.rb
@@ -37,7 +37,7 @@ class ActivityPub::ProcessCollectionService < BaseService
   end
 
   def process_item(item)
-    activity = ActivityPub::Activity.factory(item, @account, @options)
+    activity = ActivityPub::Activity.factory(item, @account, **@options)
     activity&.perform
   end
 
diff --git a/app/services/activitypub/process_poll_service.rb b/app/services/activitypub/process_poll_service.rb
index cb4a0d46025a82153142860d7c3b87edeb3353a8..903b6a78adf5327ec7ceda21cc221f6624696c5e 100644
--- a/app/services/activitypub/process_poll_service.rb
+++ b/app/services/activitypub/process_poll_service.rb
@@ -30,7 +30,7 @@ class ActivityPub::ProcessPollService < BaseService
 
     voters_count = @json['votersCount']
 
-    latest_options = items.map { |item| item['name'].presence || item['content'] }
+    latest_options = items.map { |item| item['name'].presence || item['content'] }.compact
 
     # If for some reasons the options were changed, it invalidates all previous
     # votes, so we need to remove them
diff --git a/app/services/backup_service.rb b/app/services/backup_service.rb
index 12e4fa8b441ccccac5dfd91a6422239421b87655..d1090dff1b8577154fc9cc2371b5c657ca151a3f 100644
--- a/app/services/backup_service.rb
+++ b/app/services/backup_service.rb
@@ -3,6 +3,8 @@
 require 'rubygems/package'
 
 class BackupService < BaseService
+  include Payloadable
+
   attr_reader :account, :backup, :collection
 
   def call(backup)
@@ -20,7 +22,7 @@ class BackupService < BaseService
 
     account.statuses.with_includes.reorder(nil).find_in_batches do |statuses|
       statuses.each do |status|
-        item = serialize(status, ActivityPub::ActivitySerializer)
+        item = serialize_payload(status, ActivityPub::ActivitySerializer, signer: @account)
         item.delete(:'@context')
 
         unless item[:type] == 'Announce' || item[:object][:attachment].blank?
@@ -45,6 +47,7 @@ class BackupService < BaseService
           dump_media_attachments!(tar)
           dump_outbox!(tar)
           dump_likes!(tar)
+          dump_bookmarks!(tar)
           dump_actor!(tar)
         end
       end
@@ -85,6 +88,7 @@ class BackupService < BaseService
     actor[:image][:url] = 'header' + File.extname(actor[:image][:url]) if actor[:image]
     actor[:outbox]      = 'outbox.json'
     actor[:likes]       = 'likes.json'
+    actor[:bookmarks]   = 'bookmarks.json'
 
     download_to_tar(tar, account.avatar, 'avatar' + File.extname(account.avatar.path)) if account.avatar.exists?
     download_to_tar(tar, account.header, 'header' + File.extname(account.header.path)) if account.header.exists?
@@ -115,6 +119,25 @@ class BackupService < BaseService
     end
   end
 
+  def dump_bookmarks!(tar)
+    collection = serialize(ActivityPub::CollectionPresenter.new(id: 'bookmarks.json', type: :ordered, size: 0, items: []), ActivityPub::CollectionSerializer)
+
+    Status.reorder(nil).joins(:bookmarks).includes(:account).merge(account.bookmarks).find_in_batches do |statuses|
+      statuses.each do |status|
+        collection[:totalItems] += 1
+        collection[:orderedItems] << ActivityPub::TagManager.instance.uri_for(status)
+      end
+
+      GC.start
+    end
+
+    json = Oj.dump(collection)
+
+    tar.add_file_simple('bookmarks.json', 0o444, json.bytesize) do |io|
+      io.write(json)
+    end
+  end
+
   def collection_presenter
     ActivityPub::CollectionPresenter.new(
       id: 'outbox.json',
@@ -142,7 +165,7 @@ class BackupService < BaseService
         io.write(buffer)
       end
     end
-  rescue Errno::ENOENT
+  rescue Errno::ENOENT, Seahorse::Client::NetworkingError
     Rails.logger.warn "Could not backup file #{filename}: file not found"
   end
 end
diff --git a/app/services/batched_remove_status_service.rb b/app/services/batched_remove_status_service.rb
index 3638134be76447612ded2a6fcc9e6766aef8ee58..fcf20d1c5f75dd43a284d98b46e7a28a08b75bb3 100644
--- a/app/services/batched_remove_status_service.rb
+++ b/app/services/batched_remove_status_service.rb
@@ -16,6 +16,7 @@ class BatchedRemoveStatusService < BaseService
 
     @mentions = statuses.each_with_object({}) { |s, h| h[s.id] = s.active_mentions.includes(:account).to_a }
     @tags     = statuses.each_with_object({}) { |s, h| h[s.id] = s.tags.pluck(:name) }
+    @domains  = statuses.each_with_object({}) { |s, h| h[s.id] = s.account.domain unless s.local? }
 
     @json_payloads = statuses.each_with_object({}) { |s, h| h[s.id] = Oj.dump(event: :delete, payload: s.id.to_s) }
 
@@ -74,9 +75,16 @@ class BatchedRemoveStatusService < BaseService
       redis.publish('timeline:public', payload)
       redis.publish('timeline:public:local', payload) if status.local?
 
+      @domains[status.id].each do |domain|
+        redis.publish("timeline:public:remote:#{domain.mb_chars.downcase}", payload)
+      end
+
       if status.media_attachments.any?
         redis.publish('timeline:public:media', payload)
         redis.publish('timeline:public:local:media', payload) if status.local?
+        @domains[status.id].each do |domain|
+          redis.publish("timeline:public:remote:media:#{domain.mb_chars.downcase}", payload)
+        end
       end
 
       @tags[status.id].each do |hashtag|
diff --git a/app/services/block_domain_service.rb b/app/services/block_domain_service.rb
index ae461abf248e89e5502ba5e5fc21d057f9223442..9f0860674760baaebf06a0b11dc33cd6de6ff22a 100644
--- a/app/services/block_domain_service.rb
+++ b/app/services/block_domain_service.rb
@@ -20,13 +20,13 @@ class BlockDomainService < BaseService
   end
 
   def process_domain_block!
-    clear_media! if domain_block.reject_media?
-
     if domain_block.silence?
       silence_accounts!
     elsif domain_block.suspend?
       suspend_accounts!
     end
+
+    clear_media! if domain_block.reject_media?
   end
 
   def invalidate_association_caches!
diff --git a/app/services/bootstrap_timeline_service.rb b/app/services/bootstrap_timeline_service.rb
index c489601c155b72ce40d07fdb6aad1ff544d61945..8412aa7e78b2695a24d0131cedd2a067cd7b78c3 100644
--- a/app/services/bootstrap_timeline_service.rb
+++ b/app/services/bootstrap_timeline_service.rb
@@ -5,7 +5,7 @@ class BootstrapTimelineService < BaseService
     @source_account = source_account
 
     autofollow_inviter!
-    autofollow_bootstrap_timeline_accounts!
+    autofollow_bootstrap_timeline_accounts! if Setting.enable_bootstrap_timeline_accounts
   end
 
   private
diff --git a/app/services/fan_out_on_write_service.rb b/app/services/fan_out_on_write_service.rb
index 95336ef45023586f33640e1ccc763b29f0e265bd..e03ed4ab787430137bfc0b7baaab1656ff7b7459 100644
--- a/app/services/fan_out_on_write_service.rb
+++ b/app/services/fan_out_on_write_service.rb
@@ -18,14 +18,22 @@ class FanOutOnWriteService < BaseService
       deliver_to_lists(status)
     end
 
-    return if status.account.silenced? || !status.public_visibility? || status.reblog?
+    return if status.account.silenced? || !status.public_visibility?
 
-    deliver_to_hashtags(status)
+    if !status.reblog? && (!status.reply? || status.in_reply_to_account_id == status.account_id)
+      deliver_to_public(status)
+      deliver_to_media(status) if status.media_attachments.any?
+    end
 
-    return if status.reply? && status.in_reply_to_account_id != status.account_id
+    deliver_to_domain_subscribers(status)
+    deliver_to_subscribers(status)
+    deliver_to_subscribers_lists(status)
 
-    deliver_to_public(status)
-    deliver_to_media(status) if status.media_attachments.any?
+    return if status.reblog?
+
+    deliver_to_hashtags(status)
+    deliver_to_hashtag_followers(status)
+    deliver_to_keyword_subscribers(status)
   end
 
   private
@@ -45,6 +53,82 @@ class FanOutOnWriteService < BaseService
     end
   end
 
+  def deliver_to_subscribers(status)
+    Rails.logger.debug "Delivering status #{status.id} to subscribers"
+
+    status.account.subscribers_for_local_distribution.with_reblog(status.reblog?).select(:id, :account_id).reorder(nil).find_in_batches do |subscribings|
+      FeedInsertWorker.push_bulk(subscribings) do |subscribing|
+        [status.id, subscribing.account_id, :home]
+      end
+    end
+  end
+
+  def deliver_to_subscribers_lists(status)
+    Rails.logger.debug "Delivering status #{status.id} to subscribers lists"
+
+    status.account.list_subscribers_for_local_distribution.with_reblog(status.reblog?).select(:id, :list_id).reorder(nil).find_in_batches do |subscribings|
+      FeedInsertWorker.push_bulk(subscribings) do |subscribing|
+        [status.id, subscribing.list_id, :list]
+      end
+    end
+  end
+
+  def deliver_to_domain_subscribers(status)
+    Rails.logger.debug "Delivering status #{status.id} to domain subscribers"
+
+    deliver_to_domain_subscribers_home(status)
+    deliver_to_domain_subscribers_list(status)
+  end
+
+  def deliver_to_domain_subscribers_home(status)
+    DomainSubscribe.domain_to_home(status.account.domain).with_reblog(status.reblog?).select(:id, :account_id).find_in_batches do |subscribes|
+      FeedInsertWorker.push_bulk(subscribes) do |subscribe|
+        [status.id, subscribe.account_id, :home]
+      end
+    end
+  end
+
+  def deliver_to_domain_subscribers_list(status)
+    DomainSubscribe.domain_to_list(status.account.domain).with_reblog(status.reblog?).select(:id, :list_id).find_in_batches do |subscribes|
+      FeedInsertWorker.push_bulk(subscribes) do |subscribe|
+        [status.id, subscribe.list_id, :list]
+      end
+    end
+  end
+
+  def deliver_to_keyword_subscribers(status)
+    Rails.logger.debug "Delivering status #{status.id} to keyword subscribers"
+
+    deliver_to_keyword_subscribers_home(status)
+    deliver_to_keyword_subscribers_list(status)
+  end
+
+  def deliver_to_keyword_subscribers_home(status)
+    match_accounts = []
+
+    KeywordSubscribe.active.without_local_followed_home(status.account).order(:account_id).each do |keyword_subscribe|
+      next if match_accounts[-1] == keyword_subscribe.account_id
+      match_accounts << keyword_subscribe.account_id if keyword_subscribe.match?(status.index_text)
+    end
+
+    FeedInsertWorker.push_bulk(match_accounts) do |match_account|
+      [status.id, match_account, :home]
+    end
+  end
+
+  def deliver_to_keyword_subscribers_list(status)
+    match_lists = []
+
+    KeywordSubscribe.active.without_local_followed_list(status.account).order(:list_id).each do |keyword_subscribe|
+      next if match_lists[-1] == keyword_subscribe.list_id
+      match_lists << keyword_subscribe.list_id if keyword_subscribe.match?(status.index_text)
+    end
+
+    FeedInsertWorker.push_bulk(match_lists) do |match_list|
+      [status.id, match_list, :list]
+    end
+  end
+
   def deliver_to_lists(status)
     Rails.logger.debug "Delivering status #{status.id} to lists"
 
@@ -74,6 +158,30 @@ class FanOutOnWriteService < BaseService
     status.tags.pluck(:name).each do |hashtag|
       Redis.current.publish("timeline:hashtag:#{hashtag.mb_chars.downcase}", @payload)
       Redis.current.publish("timeline:hashtag:#{hashtag.mb_chars.downcase}:local", @payload) if status.local?
+      List.where('title ILIKE ?', "%##{hashtag}%").select(:id).reorder(nil).find_in_batches do |lists|
+        FeedInsertWorker.push_bulk(lists) do |list|
+          [status.id, list.id, :list]
+        end
+      end
+    end
+  end
+
+  def deliver_to_hashtag_followers(status)
+    Rails.logger.debug "Delivering status #{status.id} to hashtag followers"
+
+    deliver_to_hashtag_followers_home(status)
+    deliver_to_hashtag_followers_list(status)
+  end
+
+  def deliver_to_hashtag_followers_home(status)
+    FeedInsertWorker.push_bulk(FollowTag.home.where(tag: status.tags).pluck(:account_id).uniq) do |follower|
+      [status.id, follower, :home]
+    end
+  end
+
+  def deliver_to_hashtag_followers_list(status)
+    FeedInsertWorker.push_bulk(FollowTag.list.where(tag: status.tags).pluck(:list_id).uniq) do |list_id|
+      [status.id, list_id, :list]
     end
   end
 
@@ -81,14 +189,14 @@ class FanOutOnWriteService < BaseService
     Rails.logger.debug "Delivering status #{status.id} to public timeline"
 
     Redis.current.publish('timeline:public', @payload)
-    Redis.current.publish('timeline:public:local', @payload) if status.local?
+    Redis.current.publish("timeline:public:remote:#{status.account.domain.mb_chars.downcase}", @payload) unless status.local?
   end
 
   def deliver_to_media(status)
     Rails.logger.debug "Delivering status #{status.id} to media timeline"
 
     Redis.current.publish('timeline:public:media', @payload)
-    Redis.current.publish('timeline:public:local:media', @payload) if status.local?
+    Redis.current.publish("timeline:public:remote:media:#{status.account.domain.mb_chars.downcase}", @payload) unless status.local?
   end
 
   def deliver_to_own_conversation(status)
diff --git a/app/services/fetch_link_card_service.rb b/app/services/fetch_link_card_service.rb
index f0b1169db8516ebf17a21b4df2e3e764a1bab4f2..59ccead789c6e8c347a957a66336689f85b23fbb 100644
--- a/app/services/fetch_link_card_service.rb
+++ b/app/services/fetch_link_card_service.rb
@@ -39,7 +39,13 @@ class FetchLinkCardService < BaseService
   def process_url
     @card ||= PreviewCard.new(url: @url)
 
-    Request.new(:get, @url).perform do |res|
+    attempt_oembed || attempt_opengraph
+  end
+
+  def html
+    return @html if defined?(@html)
+
+    Request.new(:get, @url).add_headers('Accept' => 'text/html').perform do |res|
       if res.code == 200 && res.mime_type == 'text/html'
         @html = res.body_with_limit
         @html_charset = res.charset
@@ -48,10 +54,6 @@ class FetchLinkCardService < BaseService
         @html_charset = nil
       end
     end
-
-    return if @html.nil?
-
-    attempt_oembed || attempt_opengraph
   end
 
   def attach_card
@@ -64,8 +66,8 @@ class FetchLinkCardService < BaseService
       urls = @status.text.scan(URL_PATTERN).map { |array| Addressable::URI.parse(array[0]).normalize }
     else
       html  = Nokogiri::HTML(@status.text)
-      links = html.css('a')
-      urls  = links.map { |a| Addressable::URI.parse(a['href']).normalize unless skip_link?(a) }.compact
+      links = html.css(':not(.quote-inline) > a')
+      urls  = links.map { |a| Addressable::URI.parse(a['href']) unless skip_link?(a) }.compact.map(&:normalize).compact
     end
 
     urls.reject { |uri| bad_url?(uri) }.first
@@ -84,16 +86,21 @@ class FetchLinkCardService < BaseService
 
   def skip_link?(a)
     # Avoid links for hashtags and mentions (microformats)
-    a['rel']&.include?('tag') || a['class']&.include?('u-url') || mention_link?(a)
+    a['rel']&.include?('tag') || a['class']&.match?(/u-url|h-card/) || mention_link?(a)
   end
 
   def attempt_oembed
-    service = FetchOEmbedService.new
-    embed   = service.call(@url, html: @html)
-    url     = Addressable::URI.parse(service.endpoint_url)
+    service         = FetchOEmbedService.new
+    url_domain      = Addressable::URI.parse(@url).normalized_host
+    cached_endpoint = Rails.cache.read("oembed_endpoint:#{url_domain}")
+
+    embed   = service.call(@url, cached_endpoint: cached_endpoint) unless cached_endpoint.nil?
+    embed ||= service.call(@url, html: html) unless html.nil?
 
     return false if embed.nil?
 
+    url = Addressable::URI.parse(service.endpoint_url)
+
     @card.type          = embed[:type]
     @card.title         = embed[:title]         || ''
     @card.author_name   = embed[:author_name]   || ''
@@ -127,6 +134,8 @@ class FetchLinkCardService < BaseService
   end
 
   def attempt_opengraph
+    return if html.nil?
+
     detector = CharlockHolmes::EncodingDetector.new
     detector.strip_tags = true
 
diff --git a/app/services/fetch_oembed_service.rb b/app/services/fetch_oembed_service.rb
index 10176cfb99466bef0f56dd29fe521f1c2f606a6a..67e33875c68fda51523447995ac5a9e89fb24f27 100644
--- a/app/services/fetch_oembed_service.rb
+++ b/app/services/fetch_oembed_service.rb
@@ -1,13 +1,20 @@
 # frozen_string_literal: true
 
 class FetchOEmbedService
+  ENDPOINT_CACHE_EXPIRES_IN = 24.hours.freeze
+
   attr_reader :url, :options, :format, :endpoint_url
 
   def call(url, options = {})
     @url     = url
     @options = options
 
-    discover_endpoint!
+    if @options[:cached_endpoint]
+      parse_cached_endpoint!
+    else
+      discover_endpoint!
+    end
+
     fetch!
   end
 
@@ -32,10 +39,32 @@ class FetchOEmbedService
     return if @endpoint_url.blank?
 
     @endpoint_url = (Addressable::URI.parse(@url) + @endpoint_url).to_s
+
+    cache_endpoint!
   rescue Addressable::URI::InvalidURIError
     @endpoint_url = nil
   end
 
+  def parse_cached_endpoint!
+    cached = @options[:cached_endpoint]
+
+    return if cached[:endpoint].nil? || cached[:format].nil?
+
+    @endpoint_url = Addressable::Template.new(cached[:endpoint]).expand(url: @url).to_s
+    @format       = cached[:format]
+  end
+
+  def cache_endpoint!
+    url_domain = Addressable::URI.parse(@url).normalized_host
+
+    endpoint_hash = {
+      endpoint: @endpoint_url.gsub(/(=(http[s]?(%3A|:)(\/\/|%2F%2F)))([^&]*)/i, '={url}'),
+      format: @format,
+    }
+
+    Rails.cache.write("oembed_endpoint:#{url_domain}", endpoint_hash, expires_in: ENDPOINT_CACHE_EXPIRES_IN)
+  end
+
   def fetch!
     return if @endpoint_url.blank?
 
@@ -64,7 +93,7 @@ class FetchOEmbedService
   def html
     return @html if defined?(@html)
 
-    @html = @options[:html] || Request.new(:get, @url).perform do |res|
+    @html = @options[:html] || Request.new(:get, @url).add_headers('Accept' => 'text/html').perform do |res|
       res.code != 200 || res.mime_type != 'text/html' ? nil : res.body_with_limit
     end
   end
diff --git a/app/services/fetch_remote_account_service.rb b/app/services/fetch_remote_account_service.rb
deleted file mode 100644
index 3cd06e30f6ea75d9884b16e786143105221dd967..0000000000000000000000000000000000000000
--- a/app/services/fetch_remote_account_service.rb
+++ /dev/null
@@ -1,17 +0,0 @@
-# frozen_string_literal: true
-
-class FetchRemoteAccountService < BaseService
-  def call(url, prefetched_body = nil, protocol = :ostatus)
-    if prefetched_body.nil?
-      resource_url, resource_options, protocol = FetchResourceService.new.call(url)
-    else
-      resource_url     = url
-      resource_options = { prefetched_body: prefetched_body }
-    end
-
-    case protocol
-    when :activitypub
-      ActivityPub::FetchRemoteAccountService.new.call(resource_url, **resource_options)
-    end
-  end
-end
diff --git a/app/services/fetch_remote_status_service.rb b/app/services/fetch_remote_status_service.rb
index 208dc7809c1082d5f8c9b6dc438f2f6eede3952e..eafde4d4a5d6de56072529c4a3a30d7158f6f066 100644
--- a/app/services/fetch_remote_status_service.rb
+++ b/app/services/fetch_remote_status_service.rb
@@ -1,17 +1,14 @@
 # frozen_string_literal: true
 
 class FetchRemoteStatusService < BaseService
-  def call(url, prefetched_body = nil, protocol = :ostatus)
+  def call(url, prefetched_body = nil)
     if prefetched_body.nil?
-      resource_url, resource_options, protocol = FetchResourceService.new.call(url)
+      resource_url, resource_options = FetchResourceService.new.call(url)
     else
       resource_url     = url
       resource_options = { prefetched_body: prefetched_body }
     end
 
-    case protocol
-    when :activitypub
-      ActivityPub::FetchRemoteStatusService.new.call(resource_url, **resource_options)
-    end
+    ActivityPub::FetchRemoteStatusService.new.call(resource_url, **resource_options) unless resource_url.nil?
   end
 end
diff --git a/app/services/fetch_resource_service.rb b/app/services/fetch_resource_service.rb
index 3676d899d254bc25d692fa392169c3b00fab0307..abe7766d4f74681fef466b2f52b25ac32bddc6b8 100644
--- a/app/services/fetch_resource_service.rb
+++ b/app/services/fetch_resource_service.rb
@@ -3,7 +3,7 @@
 class FetchResourceService < BaseService
   include JsonLdHelper
 
-  ACCEPT_HEADER = 'application/activity+json, application/ld+json; profile="https://www.w3.org/ns/activitystreams", text/html'
+  ACCEPT_HEADER = 'application/activity+json, application/ld+json; profile="https://www.w3.org/ns/activitystreams", text/html;q=0.1'
 
   def call(url)
     return if url.blank?
@@ -33,7 +33,7 @@ class FetchResourceService < BaseService
       body = response.body_with_limit
       json = body_to_json(body)
 
-      [json['id'], { prefetched_body: body, id: true }, :activitypub] if supported_context?(json) && (equals_or_includes_any?(json['type'], ActivityPub::FetchRemoteAccountService::SUPPORTED_TYPES) || expected_type?(json))
+      [json['id'], { prefetched_body: body, id: true }] if supported_context?(json) && (equals_or_includes_any?(json['type'], ActivityPub::FetchRemoteAccountService::SUPPORTED_TYPES) || expected_type?(json))
     elsif !terminal
       link_header = response['Link'] && parse_link_header(response)
 
diff --git a/app/services/follow_service.rb b/app/services/follow_service.rb
index 1941c2e2d8864a352e2de04239391ea2ee5bdee2..dc47804c05bc4b1e6dd385356aa8d43ad807a8ed 100644
--- a/app/services/follow_service.rb
+++ b/app/services/follow_service.rb
@@ -8,7 +8,7 @@ class FollowService < BaseService
   # @param [Account] source_account From which to follow
   # @param [String, Account] uri User URI to follow in the form of username@domain (or account record)
   # @param [true, false, nil] reblogs Whether or not to show reblogs, defaults to true
-  def call(source_account, target_account, reblogs: nil)
+  def call(source_account, target_account, reblogs: nil, bypass_locked: false)
     reblogs = true if reblogs.nil?
     target_account = ResolveAccountService.new.call(target_account, skip_webfinger: true)
 
@@ -30,7 +30,7 @@ class FollowService < BaseService
 
     ActivityTracker.increment('activity:interactions')
 
-    if target_account.locked? || source_account.silenced? || target_account.activitypub?
+    if (target_account.locked? && !bypass_locked) || source_account.silenced? || target_account.activitypub?
       request_follow(source_account, target_account, reblogs: reblogs)
     elsif target_account.local?
       direct_follow(source_account, target_account, reblogs: reblogs)
diff --git a/app/services/notify_service.rb b/app/services/notify_service.rb
index b5c721589505b3b834a9ef33ebaa7ca2e2fa0c4f..9364a6ae87933f3c4caae2421c3f596d9c2a8ef2 100644
--- a/app/services/notify_service.rb
+++ b/app/services/notify_service.rb
@@ -9,7 +9,7 @@ class NotifyService < BaseService
     return if recipient.user.nil? || blocked?
 
     create_notification!
-    push_notification! if @notification.browserable?
+    push_notification!
     push_to_conversation! if direct_message?
     send_email! if email_enabled?
   rescue ActiveRecord::RecordInvalid
diff --git a/app/services/post_status_service.rb b/app/services/post_status_service.rb
index b59982d84531c2369e6e94ec79933c0abb824176..df0d88b34dbdd6fc6ea11732a145dc2d750e63ab 100644
--- a/app/services/post_status_service.rb
+++ b/app/services/post_status_service.rb
@@ -46,12 +46,28 @@ class PostStatusService < BaseService
 
   private
 
+  def status_from_uri(uri)
+    ActivityPub::TagManager.instance.uri_to_resource(uri, Status)
+  end
+
+  def quote_from_url(url)
+    return nil if url.nil?
+    quote = ResolveURLService.new.call(url)
+    status_from_uri(quote.uri) if quote
+  rescue
+    nil
+  end
+
   def preprocess_attributes!
     @text         = @options.delete(:spoiler_text) if @text.blank? && @options[:spoiler_text].present?
     @visibility   = @options[:visibility] || @account.user&.setting_default_privacy
     @visibility   = :unlisted if @visibility == :public && @account.silenced?
     @scheduled_at = @options[:scheduled_at]&.to_datetime
     @scheduled_at = nil if scheduled_in_the_past?
+    if @options[:quote_id].nil? && md = @text.match(/QT:\s*\[\s*(https:\/\/.+?)\s*\]/)
+      @options[:quote_id] = quote_from_url(md[1])&.id
+      @text.sub!(/QT:\s*\[.*?\]/, '')
+    end
   rescue ArgumentError
     raise ActiveRecord::RecordInvalid
   end
@@ -169,6 +185,7 @@ class PostStatusService < BaseService
       language: language_from_option(@options[:language]) || @account.user&.setting_default_language&.presence || LanguageDetector.instance.detect(@text, @account),
       application: @options[:application],
       local_only: local_only_option(@options[:local_only], @in_reply_to, @account.user&.setting_default_federation),
+      quote_id: @options[:quote_id],
     }.compact
   end
 
diff --git a/app/services/process_mentions_service.rb b/app/services/process_mentions_service.rb
index 19de377174a724897466c95a1d7720c95d6d1900..3c257451c9bb57636b183d8a04843b181f866dac 100644
--- a/app/services/process_mentions_service.rb
+++ b/app/services/process_mentions_service.rb
@@ -14,7 +14,16 @@ class ProcessMentionsService < BaseService
     mentions = []
 
     status.text = status.text.gsub(Account::MENTION_RE) do |match|
-      username, domain  = Regexp.last_match(1).split('@')
+      username, domain = Regexp.last_match(1).split('@')
+
+      domain = begin
+        if TagManager.instance.local_domain?(domain)
+          nil
+        else
+          TagManager.instance.normalize_domain(domain)
+        end
+      end
+
       mentioned_account = Account.find_remote(username, domain)
 
       if mention_undeliverable?(mentioned_account)
diff --git a/app/services/remove_status_service.rb b/app/services/remove_status_service.rb
index f9352ed3d319f8ed030af066baf2e065bf5eb182..887566b9e8146a7d6063042347f9d1fa03d7c842 100644
--- a/app/services/remove_status_service.rb
+++ b/app/services/remove_status_service.rb
@@ -141,6 +141,7 @@ class RemoveStatusService < BaseService
 
     redis.publish('timeline:public', @payload)
     redis.publish('timeline:public:local', @payload) if @status.local?
+    redis.publish("timeline:public:remote:#{@account.domain.mb_chars.downcase}", @payload) unless @status.local?
   end
 
   def remove_from_media
@@ -148,6 +149,7 @@ class RemoveStatusService < BaseService
 
     redis.publish('timeline:public:media', @payload)
     redis.publish('timeline:public:local:media', @payload) if @status.local?
+    redis.publish("timeline:public:remote:media:#{@account.domain.mb_chars.downcase}", @payload) unless @status.local?
   end
 
   def remove_media
diff --git a/app/services/resolve_url_service.rb b/app/services/resolve_url_service.rb
index aa883597a467e3d133cc2627cff34aaac785ee0a..1a2b0d60cbc61c4eba037b2d903cbbe8d67a2a48 100644
--- a/app/services/resolve_url_service.rb
+++ b/app/services/resolve_url_service.rb
@@ -12,6 +12,8 @@ class ResolveURLService < BaseService
       process_local_url
     elsif !fetched_resource.nil?
       process_url
+    elsif @on_behalf_of.present?
+      process_url_from_db
     end
   end
 
@@ -19,14 +21,24 @@ class ResolveURLService < BaseService
 
   def process_url
     if equals_or_includes_any?(type, ActivityPub::FetchRemoteAccountService::SUPPORTED_TYPES)
-      FetchRemoteAccountService.new.call(resource_url, body, protocol)
+      ActivityPub::FetchRemoteAccountService.new.call(resource_url, prefetched_body: body)
     elsif equals_or_includes_any?(type, ActivityPub::Activity::Create::SUPPORTED_TYPES + ActivityPub::Activity::Create::CONVERTED_TYPES)
-      status = FetchRemoteStatusService.new.call(resource_url, body, protocol)
+      status = FetchRemoteStatusService.new.call(resource_url, body)
       authorize_with @on_behalf_of, status, :show? unless status.nil?
       status
     end
   end
 
+  def process_url_from_db
+    # It may happen that the resource is a private toot, and thus not fetchable,
+    # but we can return the toot if we already know about it.
+    status = Status.find_by(uri: @url) || Status.find_by(url: @url)
+    authorize_with @on_behalf_of, status, :show? unless status.nil?
+    status
+  rescue Mastodon::NotPermittedError
+    nil
+  end
+
   def fetched_resource
     @fetched_resource ||= FetchResourceService.new.call(@url)
   end
@@ -39,12 +51,8 @@ class ResolveURLService < BaseService
     fetched_resource.second[:prefetched_body]
   end
 
-  def protocol
-    fetched_resource.third
-  end
-
   def type
-    return json_data['type'] if protocol == :activitypub
+    json_data['type']
   end
 
   def json_data
diff --git a/app/services/search_service.rb b/app/services/search_service.rb
index 3a498dcf4757afb1bbf296ec0a49c8623fbfba96..bde6f4f5b5245a26408ce13bafab5a4fdf3199d2 100644
--- a/app/services/search_service.rb
+++ b/app/services/search_service.rb
@@ -2,7 +2,7 @@
 
 class SearchService < BaseService
   def call(query, account, limit, options = {})
-    @query   = query.strip
+    @query   = query&.strip
     @account = account
     @options = options
     @limit   = limit.to_i
@@ -10,6 +10,8 @@ class SearchService < BaseService
     @resolve = options[:resolve] || false
 
     default_results.tap do |results|
+      next if @query.blank?
+
       if url_query?
         results.merge!(url_resource_results) unless url_resource.nil? || (@options[:type].present? && url_resource_symbol != @options[:type].to_sym)
       elsif @query.present?
@@ -117,6 +119,7 @@ class SearchService < BaseService
       blocked_by: Account.blocked_by_map(account_ids, account.id),
       muting: Account.muting_map(account_ids, account.id),
       following: Account.following_map(account_ids, account.id),
+      subscribing: Account.subscribing_map(account_ids, account.id),
       domain_blocking_by_domain: Account.domain_blocking_map_by_domain(domains, account.id),
     }
   end
diff --git a/app/services/suspend_account_service.rb b/app/services/suspend_account_service.rb
index ecc893931d596d9fd00a8a0911ce910be7bf9f95..4ff9111264faae7704afb64026ff0223e8fd22a5 100644
--- a/app/services/suspend_account_service.rb
+++ b/app/services/suspend_account_service.rb
@@ -20,6 +20,7 @@ class SuspendAccountService < BaseService
     notifications
     owned_lists
     passive_relationships
+    passive_subscribes
     report_notes
     scheduled_statuses
     status_pins
@@ -113,19 +114,20 @@ class SuspendAccountService < BaseService
 
     return unless @options[:reserve_username]
 
-    @account.silenced_at      = nil
-    @account.suspended_at     = @options[:suspended_at] || Time.now.utc
-    @account.locked           = false
-    @account.memorial         = false
-    @account.discoverable     = false
-    @account.display_name     = ''
-    @account.note             = ''
-    @account.fields           = []
-    @account.statuses_count   = 0
-    @account.followers_count  = 0
-    @account.following_count  = 0
-    @account.moved_to_account = nil
-    @account.trust_level      = :untrusted
+    @account.silenced_at       = nil
+    @account.suspended_at      = @options[:suspended_at] || Time.now.utc
+    @account.locked            = false
+    @account.memorial          = false
+    @account.discoverable      = false
+    @account.display_name      = ''
+    @account.note              = ''
+    @account.fields            = []
+    @account.statuses_count    = 0
+    @account.followers_count   = 0
+    @account.following_count   = 0
+    @account.subscribing_count = 0
+    @account.moved_to_account  = nil
+    @account.trust_level       = :untrusted
     @account.avatar.destroy
     @account.header.destroy
     @account.save!
diff --git a/app/services/unsubscribe_account_service.rb b/app/services/unsubscribe_account_service.rb
new file mode 100644
index 0000000000000000000000000000000000000000..534f5d366802f79196289ce4044ebcd003610ccf
--- /dev/null
+++ b/app/services/unsubscribe_account_service.rb
@@ -0,0 +1,16 @@
+# frozen_string_literal: true
+
+class UnsubscribeAccountService < BaseService
+  # UnsubscribeAccount
+  # @param [Account] source_account Where to unsubscribe from
+  # @param [Account] target_account Which to unsubscribe
+  def call(source_account, target_account)
+    subscribe = AccountSubscribe.find_by(account: source_account, target_account: target_account)
+
+    return unless subscribe
+
+    subscribe.destroy!
+    UnmergeWorker.perform_async(target_account.id, source_account.id)
+    subscribe
+  end
+end
diff --git a/app/services/vote_service.rb b/app/services/vote_service.rb
index cb7dce6e8a41caa51d9ff49c363e063a854d69db..19e4533321de0f0640052fc9a0e2fe50355711b8 100644
--- a/app/services/vote_service.rb
+++ b/app/services/vote_service.rb
@@ -20,7 +20,7 @@ class VoteService < BaseService
 
         ApplicationRecord.transaction do
           @choices.each do |choice|
-            @votes << @poll.votes.create!(account: @account, choice: choice)
+            @votes << @poll.votes.create!(account: @account, choice: Integer(choice))
           end
         end
       else
diff --git a/app/validators/vote_validator.rb b/app/validators/vote_validator.rb
index 2e1818bdb94d3b557efaf726b02f0a6d7f03a90f..b1692562d41598a6aaa93668e9c0d9e1b1527f64 100644
--- a/app/validators/vote_validator.rb
+++ b/app/validators/vote_validator.rb
@@ -4,10 +4,18 @@ class VoteValidator < ActiveModel::Validator
   def validate(vote)
     vote.errors.add(:base, I18n.t('polls.errors.expired')) if vote.poll.expired?
 
+    vote.errors.add(:base, I18n.t('polls.errors.invalid_choice')) if invalid_choice?(vote)
+
     if vote.poll.multiple? && vote.poll.votes.where(account: vote.account, choice: vote.choice).exists?
       vote.errors.add(:base, I18n.t('polls.errors.already_voted'))
     elsif !vote.poll.multiple? && vote.poll.votes.where(account: vote.account).exists?
       vote.errors.add(:base, I18n.t('polls.errors.already_voted'))
     end
   end
+
+  private
+
+  def invalid_choice?(vote)
+    vote.choice.negative? || vote.choice >= vote.poll.options.size
+  end
 end
diff --git a/app/views/about/_registration.html.haml b/app/views/about/_registration.html.haml
index 1333c68c4f1c7aaa1eb6ea07b536f4cbf94d79ef..af28e21749133aec80e1826bf9f38d84ddadd60c 100644
--- a/app/views/about/_registration.html.haml
+++ b/app/views/about/_registration.html.haml
@@ -1,5 +1,5 @@
-= simple_form_for(new_user, url: user_registration_path, namespace: 'registration') do |f|
-  .simple_form__overlay-area
+.simple_form__overlay-area{ class: (closed_registrations? && @instance_presenter.closed_registrations_message.present?) ? 'simple_form__overlay-area__blurred' : '' }
+  = simple_form_for(new_user, url: user_registration_path, namespace: 'registration') do |f|
     %p.lead= t('about.federation_hint_html', instance: content_tag(:strong, site_hostname))
 
     .fields-group
@@ -21,8 +21,8 @@
     .actions
       = f.button :button, sign_up_message, type: :submit, class: 'button button-primary', disabled: closed_registrations?
 
-    - if closed_registrations? && @instance_presenter.closed_registrations_message.present?
-      .simple_form__overlay-area__overlay
-        .simple_form__overlay-area__overlay__content.rich-formatting
-          .block-icon= fa_icon 'warning'
-          = @instance_presenter.closed_registrations_message.html_safe
+  - if closed_registrations? && @instance_presenter.closed_registrations_message.present?
+    .simple_form__overlay-area__overlay
+      .simple_form__overlay-area__overlay__content.rich-formatting
+        .block-icon= fa_icon 'warning'
+        = @instance_presenter.closed_registrations_message.html_safe
diff --git a/app/views/about/show.html.haml b/app/views/about/show.html.haml
index 80f4cd8287279a9b236b27a1ecf0e4b2a90ba51b..e0ec98ec975460fb826f8e6a6f97de8ba9ce2df4 100644
--- a/app/views/about/show.html.haml
+++ b/app/views/about/show.html.haml
@@ -38,7 +38,7 @@
                 %small= t('about.browse_public_posts')
 
         .directory__tag
-          = link_to 'https://joinmastodon.org/apps', target: '_blank', rel: 'noopener' do
+          = link_to 'https://joinmastodon.org/apps', target: '_blank', rel: 'noopener noreferrer' do
             %h4
               = fa_icon 'tablet fw'
               = t('about.get_apps')
diff --git a/app/views/accounts/_moved.html.haml b/app/views/accounts/_moved.html.haml
index 02fd7bf429d7f0c152a79c9ad84c88aa3d3db51f..a82f277b16cd87ab96047461d22fcc3aa6d9b50f 100644
--- a/app/views/accounts/_moved.html.haml
+++ b/app/views/accounts/_moved.html.haml
@@ -6,7 +6,7 @@
     = t('accounts.moved_html', name: content_tag(:bdi, content_tag(:strong, display_name(account, custom_emojify: true), class: :emojify)), new_profile_link: link_to(content_tag(:strong, safe_join(['@', content_tag(:span, moved_to_account.acct)])), ActivityPub::TagManager.instance.url_for(moved_to_account), class: 'mention'))
 
   .moved-account-widget__card
-    = link_to ActivityPub::TagManager.instance.url_for(moved_to_account), class: 'detailed-status__display-name p-author h-card', target: '_blank', rel: 'me noopener' do
+    = link_to ActivityPub::TagManager.instance.url_for(moved_to_account), class: 'detailed-status__display-name p-author h-card', target: '_blank', rel: 'me noopener noreferrer' do
       .detailed-status__display-avatar
         .account__avatar-overlay
           .account__avatar-overlay-base{ style: "background-image: url('#{moved_to_account.avatar.url(:original)}')" }
diff --git a/app/views/admin/accounts/index.html.haml b/app/views/admin/accounts/index.html.haml
index 7e9adb3fff3fd8fc8e8e77edcea3929aa9e49dd4..3a85324c9a0d066b19769d987ed960f4306f72ab 100644
--- a/app/views/admin/accounts/index.html.haml
+++ b/app/views/admin/accounts/index.html.haml
@@ -22,7 +22,7 @@
 
 = form_tag admin_accounts_url, method: 'GET', class: 'simple_form' do
   .fields-group
-    - Admin::FilterHelper::ACCOUNT_FILTERS.each do |key|
+    - AccountFilter::KEYS.each do |key|
       - if params[key].present?
         = hidden_field_tag key, params[key]
 
diff --git a/app/views/admin/accounts/show.html.haml b/app/views/admin/accounts/show.html.haml
index 40a936e86933babae3a98d24d46a63c7fcd03e67..1429f56d5680bc82542f2492f62764c8e0f5d2bb 100644
--- a/app/views/admin/accounts/show.html.haml
+++ b/app/views/admin/accounts/show.html.haml
@@ -139,16 +139,19 @@
               %time.formatted{ datetime: @account.created_at.iso8601, title: l(@account.created_at) }= l @account.created_at
             %td
 
-          %tr
-            %th= t('admin.accounts.most_recent_ip')
-            %td= @account.user_current_sign_in_ip
-            %td
+          - @account.user.recent_ips.each_with_index do |(_, ip), i|
+            %tr
+              - if i.zero?
+                %th{ rowspan: @account.user.recent_ips.size }= t('admin.accounts.most_recent_ip')
+              %td= ip
+              %td= table_link_to 'search', t('admin.accounts.search_same_ip'), admin_accounts_path(ip: ip)
 
           %tr
             %th= t('admin.accounts.most_recent_activity')
             %td
               - if @account.user_current_sign_in_at
                 %time.formatted{ datetime: @account.user_current_sign_in_at.iso8601, title: l(@account.user_current_sign_in_at) }= l @account.user_current_sign_in_at
+            %td
 
           - if @account.user&.invited?
             %tr
diff --git a/app/views/admin/custom_emojis/index.html.haml b/app/views/admin/custom_emojis/index.html.haml
index 7320ce1bbda7db07c9b2203131aaaaf4acda1ce4..69aa5ae41371e24cae2ea023e87100d3507efaf6 100644
--- a/app/views/admin/custom_emojis/index.html.haml
+++ b/app/views/admin/custom_emojis/index.html.haml
@@ -4,6 +4,9 @@
 - content_for :header_tags do
   = javascript_pack_tag 'admin', integrity: true, async: true, crossorigin: 'anonymous'
 
+- content_for :heading_actions do
+  = link_to t('admin.custom_emojis.upload'), new_admin_custom_emoji_path, class: 'button'
+
 .filters
   .filter-subset
     %strong= t('admin.accounts.location.title')
@@ -22,7 +25,7 @@
 
 = form_tag admin_custom_emojis_url, method: 'GET', class: 'simple_form' do
   .fields-group
-    - Admin::FilterHelper::CUSTOM_EMOJI_FILTERS.each do |key|
+    - CustomEmojiFilter::KEYS.each do |key|
       = hidden_field_tag key, params[key] if params[key].present?
 
     - %i(shortcode by_domain).each do |key|
@@ -36,7 +39,7 @@
 = form_for(@form, url: batch_admin_custom_emojis_path) do |f|
   = hidden_field_tag :page, params[:page] || 1
 
-  - Admin::FilterHelper::CUSTOM_EMOJI_FILTERS.each do |key|
+  - CustomEmojiFilter::KEYS.each do |key|
     = hidden_field_tag key, params[key] if params[key].present?
 
   .batch-table
@@ -81,6 +84,3 @@
 
 = paginate @custom_emojis
 
-%hr.spacer/
-
-= link_to t('admin.custom_emojis.upload'), new_admin_custom_emoji_path, class: 'button'
diff --git a/app/views/admin/email_domain_blocks/index.html.haml b/app/views/admin/email_domain_blocks/index.html.haml
index 7bb204e52900a8fa9e992c39cf91764a4232c32d..6015cfac0ae9e224dc9cd90d40deade035c0c091 100644
--- a/app/views/admin/email_domain_blocks/index.html.haml
+++ b/app/views/admin/email_domain_blocks/index.html.haml
@@ -1,14 +1,19 @@
 - content_for :page_title do
   = t('admin.email_domain_blocks.title')
 
-.table-wrapper
-  %table.table
-    %thead
-      %tr
-        %th= t('admin.email_domain_blocks.domain')
-        %th
-    %tbody
-      = render @email_domain_blocks
+- content_for :heading_actions do
+  = link_to t('admin.email_domain_blocks.add_new'), new_admin_email_domain_block_path, class: 'button'
+
+- if @email_domain_blocks.empty?
+  %div.muted-hint.center-text=t 'admin.email_domain_blocks.empty'
+- else
+  .table-wrapper
+    %table.table
+      %thead
+        %tr
+          %th= t('admin.email_domain_blocks.domain')
+          %th
+      %tbody
+        = render @email_domain_blocks
 
 = paginate @email_domain_blocks
-= link_to t('admin.email_domain_blocks.add_new'), new_admin_email_domain_block_path, class: 'button'
diff --git a/app/views/admin/instances/index.html.haml b/app/views/admin/instances/index.html.haml
index 1d85aa75e018d5c08321c76e74987466930408dd..0b299acc5285c2b205720e9c1273cb4f3469d441 100644
--- a/app/views/admin/instances/index.html.haml
+++ b/app/views/admin/instances/index.html.haml
@@ -19,9 +19,8 @@
 - unless whitelist_mode?
   = form_tag admin_instances_url, method: 'GET', class: 'simple_form' do
     .fields-group
-      - Admin::FilterHelper::INSTANCES_FILTERS.each do |key|
-        - if params[key].present?
-          = hidden_field_tag key, params[key]
+      - InstanceFilter::KEYS.each do |key|
+        = hidden_field_tag key, params[key] if params[key].present?
 
       - %i(by_domain).each do |key|
         .input.string.optional
diff --git a/app/views/admin/instances/show.html.haml b/app/views/admin/instances/show.html.haml
index 294c9495db8096797329ed3866ada2f51b1e2f02..49a666a5a2dc1215b8ac8facd7fb5d3770719a7e 100644
--- a/app/views/admin/instances/show.html.haml
+++ b/app/views/admin/instances/show.html.haml
@@ -19,7 +19,7 @@
       .dashboard__counters__num= number_with_delimiter @blocks_count
       .dashboard__counters__label= t 'admin.instances.total_blocked_by_us'
   %div
-    %div
+    = link_to admin_reports_path(by_target_domain: @instance.domain) do
       .dashboard__counters__num= number_with_delimiter @reports_count
       .dashboard__counters__label= t 'admin.instances.total_reported'
   %div
diff --git a/app/views/admin/reports/_status.html.haml b/app/views/admin/reports/_status.html.haml
index 6640f30e0fa661d3670f067ce58c01f3acc9deb4..58fe636d048fff73435291a22df5e3f7b9cdcf2e 100644
--- a/app/views/admin/reports/_status.html.haml
+++ b/app/views/admin/reports/_status.html.haml
@@ -14,12 +14,15 @@
     - unless status.proper.media_attachments.empty?
       - if status.proper.media_attachments.first.video?
         - video = status.proper.media_attachments.first
-        = react_component :video, src: video.file.url(:original), preview: video.file.url(:small), sensitive: !current_account&.user&.show_all_media? && status.proper.sensitive? || current_account&.user&.hide_all_media?, width: 610, height: 343, inline: true, alt: video.description
+        = react_component :video, src: video.file.url(:original), preview: video.file.url(:small), blurhash: video.blurhash, sensitive: status.proper.sensitive?, visible: false, width: 610, height: 343, inline: true, alt: video.description
+      - elsif status.proper.media_attachments.first.audio?
+        - audio = status.proper.media_attachments.first
+        = react_component :audio, src: audio.file.url(:original), height: 110, alt: audio.description, duration: audio.file.meta.dig(:original, :duration)
       - else
-        = react_component :media_gallery, height: 343, sensitive: !current_account&.user&.show_all_media? && status.proper.sensitive? || current_account&.user&.hide_all_media?, 'autoPlayGif': current_account&.user&.setting_auto_play_gif, media: status.proper.media_attachments.map { |a| ActiveModelSerializers::SerializableResource.new(a, serializer: REST::MediaAttachmentSerializer).as_json }
+        = react_component :media_gallery, height: 343, sensitive: status.proper.sensitive?, visible: false, media: status.proper.media_attachments.map { |a| ActiveModelSerializers::SerializableResource.new(a, serializer: REST::MediaAttachmentSerializer).as_json }
 
     .detailed-status__meta
-      = link_to ActivityPub::TagManager.instance.url_for(status), class: 'detailed-status__datetime', target: stream_link_target, rel: 'noopener' do
+      = link_to ActivityPub::TagManager.instance.url_for(status), class: 'detailed-status__datetime', target: stream_link_target, rel: 'noopener noreferrer' do
         %time.formatted{ datetime: status.created_at.iso8601, title: l(status.created_at) }= l(status.created_at)
       - if status.discarded?
         ·
diff --git a/app/views/admin/reports/index.html.haml b/app/views/admin/reports/index.html.haml
index bfbd32108e468e725aa31fe052cb1248b51cce70..0263b80fb7241480ce0360fe0a1d17b3fd320cf7 100644
--- a/app/views/admin/reports/index.html.haml
+++ b/app/views/admin/reports/index.html.haml
@@ -8,13 +8,26 @@
       %li= filter_link_to t('admin.reports.unresolved'), resolved: nil
       %li= filter_link_to t('admin.reports.resolved'), resolved: '1'
 
+= form_tag admin_reports_url, method: 'GET', class: 'simple_form' do
+  .fields-group
+    - ReportFilter::KEYS.each do |key|
+      = hidden_field_tag key, params[key] if params[key].present?
+
+    - %i(by_target_domain).each do |key|
+      .input.string.optional
+        = text_field_tag key, params[key], class: 'string optional', placeholder: I18n.t("admin.reports.#{key}")
+
+    .actions
+      %button= t('admin.accounts.search')
+      = link_to t('admin.accounts.reset'), admin_reports_path, class: 'button negative'
+
 - @reports.group_by(&:target_account_id).each do |target_account_id, reports|
   - target_account = reports.first.target_account
   .report-card
     .report-card__profile
       = account_link_to target_account, '', size: 36, path: admin_account_path(target_account.id)
       .report-card__profile__stats
-        = link_to pluralize(target_account.targeted_moderation_notes.count, t('admin.reports.account.note')), admin_account_path(target_account.id)
+        = link_to t('admin.reports.account.notes', count: target_account.targeted_moderation_notes.count), admin_account_path(target_account.id)
         %br/
         - if target_account.suspended?
           %span.red= t('admin.accounts.suspended')
diff --git a/app/views/admin/reports/show.html.haml b/app/views/admin/reports/show.html.haml
index bbe83c979a0fe88ab6f431054b24bee6ce0b599f..af8fce2a7600b80d0400f5d7c404462af6f88cb3 100644
--- a/app/views/admin/reports/show.html.haml
+++ b/app/views/admin/reports/show.html.haml
@@ -4,37 +4,28 @@
 - content_for :page_title do
   = t('admin.reports.report', id: @report.id)
 
-%div{ style: 'overflow: hidden; margin-bottom: 20px' }
+- content_for :heading_actions do
   - if @report.unresolved?
-    %div{ style: 'float: right' }
-      - if @report.target_account.local?
-        = link_to t('admin.accounts.warn'), new_admin_account_action_path(@report.target_account_id, type: 'none', report_id: @report.id), class: 'button'
-        = link_to t('admin.accounts.disable'), new_admin_account_action_path(@report.target_account_id, type: 'disable', report_id: @report.id), class: 'button button--destructive'
-      = link_to t('admin.accounts.silence'), new_admin_account_action_path(@report.target_account_id, type: 'silence', report_id: @report.id), class: 'button button--destructive'
-      = link_to t('admin.accounts.perform_full_suspension'), new_admin_account_action_path(@report.target_account_id, type: 'suspend', report_id: @report.id), class: 'button button--destructive'
-    %div{ style: 'float: left' }
-      = link_to t('admin.reports.mark_as_resolved'), resolve_admin_report_path(@report), method: :post, class: 'button'
+    = link_to t('admin.reports.mark_as_resolved'), resolve_admin_report_path(@report), method: :post, class: 'button'
   - else
     = link_to t('admin.reports.mark_as_unresolved'), reopen_admin_report_path(@report), method: :post, class: 'button'
 
-%hr.spacer
-
 .table-wrapper
   %table.table.inline-table
     %tbody
       %tr
         %th= t('admin.reports.reported_account')
         %td= admin_account_link_to @report.target_account
-        %td= table_link_to 'flag', pluralize(@report.target_account.targeted_reports.count, t('admin.reports.account.report')), admin_reports_path(target_account_id: @report.target_account.id)
-        %td= table_link_to 'file', pluralize(@report.target_account.targeted_moderation_notes.count, t('admin.reports.account.note')), admin_reports_path(target_account_id: @report.target_account.id)
+        %td= table_link_to 'flag', t('admin.reports.account.reports', count: @report.target_account.targeted_reports.count), admin_reports_path(target_account_id: @report.target_account.id)
+        %td= table_link_to 'file', t('admin.reports.account.notes', count: @report.target_account.targeted_moderation_notes.count), admin_reports_path(target_account_id: @report.target_account.id)
       %tr
         %th= t('admin.reports.reported_by')
         - if @report.account.instance_actor?
           %td{ colspan: 3 }= site_hostname
         - elsif @report.account.local?
           %td= admin_account_link_to @report.account
-          %td= table_link_to 'flag', pluralize(@report.account.targeted_reports.count, t('admin.reports.account.report')), admin_reports_path(target_account_id: @report.account.id)
-          %td= table_link_to 'file', pluralize(@report.account.targeted_moderation_notes.count, t('admin.reports.account.note')), admin_reports_path(target_account_id: @report.account.id)
+          %td= table_link_to 'flag', t('admin.reports.account.reports', count: @report.account.targeted_reports.count), admin_reports_path(target_account_id: @report.account.id)
+          %td= table_link_to 'file', t('admin.reports.account.notes', count: @report.account.targeted_moderation_notes.count), admin_reports_path(target_account_id: @report.account.id)
         - else
           %td{ colspan: 3 }= @report.account.domain
       %tr
@@ -77,6 +68,17 @@
 
 %hr.spacer
 
+%div{ style: 'overflow: hidden; margin-bottom: 20px; clear: both' }
+  - if @report.unresolved?
+    %div{ style: 'float: right' }
+      - if @report.target_account.local?
+        = link_to t('admin.accounts.warn'), new_admin_account_action_path(@report.target_account_id, type: 'none', report_id: @report.id), class: 'button'
+        = link_to t('admin.accounts.disable'), new_admin_account_action_path(@report.target_account_id, type: 'disable', report_id: @report.id), class: 'button button--destructive'
+      = link_to t('admin.accounts.silence'), new_admin_account_action_path(@report.target_account_id, type: 'silence', report_id: @report.id), class: 'button button--destructive'
+      = link_to t('admin.accounts.perform_full_suspension'), new_admin_account_action_path(@report.target_account_id, type: 'suspend', report_id: @report.id), class: 'button button--destructive'
+
+%hr.spacer
+
 .speech-bubble
   .speech-bubble__bubble= simple_format(@report.comment.presence || t('admin.reports.comment.none'))
   .speech-bubble__owner
diff --git a/app/views/admin/settings/edit.html.haml b/app/views/admin/settings/edit.html.haml
index 6282bb39c0a1a9b736bc2800c5e88a5a9d564378..d7b4930512cd325414fc5df24f50387309b01ae1 100644
--- a/app/views/admin/settings/edit.html.haml
+++ b/app/views/admin/settings/edit.html.haml
@@ -1,3 +1,6 @@
+- content_for :header_tags do
+  = javascript_pack_tag 'admin', integrity: true, async: true, crossorigin: 'anonymous'
+
 - content_for :page_title do
   = t('admin.settings.title')
 
@@ -38,7 +41,9 @@
   %hr.spacer/
 
   .fields-group
-    = f.input :bootstrap_timeline_accounts, wrapper: :with_block_label, label: t('admin.settings.bootstrap_timeline_accounts.title'), hint: t('admin.settings.bootstrap_timeline_accounts.desc_html')
+    = f.input :enable_bootstrap_timeline_accounts, as: :boolean, wrapper: :with_label, label: t('admin.settings.enable_bootstrap_timeline_accounts.title')
+  .fields-group
+    = f.input :bootstrap_timeline_accounts, wrapper: :with_block_label, label: t('admin.settings.bootstrap_timeline_accounts.title'), hint: t('admin.settings.bootstrap_timeline_accounts.desc_html'), disabled: !Setting.enable_bootstrap_timeline_accounts
 
   %hr.spacer/
 
diff --git a/app/views/admin/tags/_tag.html.haml b/app/views/admin/tags/_tag.html.haml
index 670f3bc0598ddfc0cdf39f72bf38189def0fd099..287d28e53b6e018c9ecf1f63ad30e422ed67ef84 100644
--- a/app/views/admin/tags/_tag.html.haml
+++ b/app/views/admin/tags/_tag.html.haml
@@ -1,6 +1,7 @@
 .batch-table__row
-  %label.batch-table__row__select.batch-table__row__select--aligned.batch-checkbox
-    = f.check_box :tag_ids, { multiple: true, include_hidden: false }, tag.id
+  - if batch_available
+    %label.batch-table__row__select.batch-table__row__select--aligned.batch-checkbox
+      = f.check_box :tag_ids, { multiple: true, include_hidden: false }, tag.id
 
   .directory__tag
     = link_to admin_tag_path(tag.id) do
diff --git a/app/views/admin/tags/index.html.haml b/app/views/admin/tags/index.html.haml
index 8b1182dbb11f70954bc5ce03f07b6dd3bff5966e..1ff538ba36dfeb4c956bef487576a957edee2347 100644
--- a/app/views/admin/tags/index.html.haml
+++ b/app/views/admin/tags/index.html.haml
@@ -28,7 +28,7 @@
 
 = form_tag admin_tags_url, method: 'GET', class: 'simple_form' do
   .fields-group
-    - Admin::FilterHelper::TAGS_FILTERS.each do |key|
+    - TagFilter::KEYS.each do |key|
       = hidden_field_tag key, params[key] if params[key].present?
 
     - %i(name).each do |key|
@@ -43,32 +43,32 @@
 
 = form_for(@form, url: batch_admin_tags_path) do |f|
   = hidden_field_tag :page, params[:page] || 1
-  = hidden_field_tag :name, params[:name] if params[:name].present?
 
-  - Admin::FilterHelper::TAGS_FILTERS.each do |key|
+  - TagFilter::KEYS.each do |key|
     = hidden_field_tag key, params[key] if params[key].present?
 
-  .batch-table
+  .batch-table.optional
     .batch-table__toolbar
-      %label.batch-table__toolbar__select.batch-checkbox-all
-        = check_box_tag :batch_checkbox_all, nil, false
-      .batch-table__toolbar__actions
-        - if params[:pending_review] == '1'
+      - if params[:pending_review] == '1' || params[:unreviewed] == '1'
+        %label.batch-table__toolbar__select.batch-checkbox-all
+          = check_box_tag :batch_checkbox_all, nil, false
+        .batch-table__toolbar__actions
           = f.button safe_join([fa_icon('check'), t('admin.accounts.approve')]), name: :approve, class: 'table-action-link', type: :submit, data: { confirm: t('admin.reports.are_you_sure') }
 
           = f.button safe_join([fa_icon('times'), t('admin.accounts.reject')]), name: :reject, class: 'table-action-link', type: :submit, data: { confirm: t('admin.reports.are_you_sure') }
-        - else
+      - else
+        .batch-table__toolbar__actions
           %span.neutral-hint= t('generic.no_batch_actions_available')
 
     .batch-table__body
       - if @tags.empty?
         = nothing_here 'nothing-here--under-tabs'
       - else
-        = render partial: 'tag', collection: @tags, locals: { f: f }
+        = render partial: 'tag', collection: @tags, locals: { f: f, batch_available: params[:pending_review] == '1' || params[:unreviewed] == '1' }
 
 = paginate @tags
 
-- if params[:pending_review] == '1'
+- if params[:pending_review] == '1' || params[:unreviewed] == '1'
   %hr.spacer/
 
   %div{ style: 'overflow: hidden' }
diff --git a/app/views/admin/tags/show.html.haml b/app/views/admin/tags/show.html.haml
index 5799e5973d9fbc095c4ae9637f9d973b654949fc..c9a147587c64a00b7814b06933c90182a5ae49cf 100644
--- a/app/views/admin/tags/show.html.haml
+++ b/app/views/admin/tags/show.html.haml
@@ -3,7 +3,7 @@
 
 .dashboard__counters
   %div
-    = link_to tag_url(@tag), target: '_blank', rel: 'noopener' do
+    = link_to tag_url(@tag), target: '_blank', rel: 'noopener noreferrer' do
       .dashboard__counters__num= number_with_delimiter @accounts_today
       .dashboard__counters__label= t 'admin.tags.accounts_today'
   %div
diff --git a/app/views/application/_card.html.haml b/app/views/application/_card.html.haml
index 8719ce48444048f138ff9f762efbe7d2062c65b9..808dce5144bf5c515b132b886c7691fa8d367ecf 100644
--- a/app/views/application/_card.html.haml
+++ b/app/views/application/_card.html.haml
@@ -1,7 +1,7 @@
 - account_url = local_assigns[:admin] ? admin_account_path(account.id) : ActivityPub::TagManager.instance.url_for(account)
 
 .card.h-card
-  = link_to account_url, target: '_blank', rel: 'noopener' do
+  = link_to account_url, target: '_blank', rel: 'noopener noreferrer' do
     .card__img
       = image_tag account.header.url, alt: ''
     .card__bar
diff --git a/app/views/filters/index.html.haml b/app/views/filters/index.html.haml
index 18ebee57076c278dc299ade29960b40803717eae..b4d5333aa10debb832e0487efc0a2a730886ca58 100644
--- a/app/views/filters/index.html.haml
+++ b/app/views/filters/index.html.haml
@@ -1,20 +1,24 @@
 - content_for :page_title do
   = t('filters.index.title')
 
-.table-wrapper
-  %table.table
-    %thead
-      %tr
-        %th= t('simple_form.labels.defaults.phrase')
-        %th= t('simple_form.labels.defaults.context')
-        %th
-    %tbody
-      - @filters.each do |filter|
-        %tr
-          %td= filter.phrase
-          %td= filter.context.map { |context| I18n.t("filters.contexts.#{context}") }.join(', ')
-          %td
-            = table_link_to 'pencil', t('filters.edit.title'), edit_filter_path(filter)
-            = table_link_to 'times', t('filters.index.delete'), filter_path(filter), method: :delete
+- content_for :heading_actions do
+  = link_to t('filters.new.title'), new_filter_path, class: 'button'
 
-= link_to t('filters.new.title'), new_filter_path, class: 'button'
+- if @filters.empty?
+  %div.muted-hint.center-text= t 'filters.index.empty'
+- else
+  .table-wrapper
+    %table.table
+      %thead
+        %tr
+          %th= t('simple_form.labels.defaults.phrase')
+          %th= t('simple_form.labels.defaults.context')
+          %th
+      %tbody
+        - @filters.each do |filter|
+          %tr
+            %td= filter.phrase
+            %td= filter.context.map { |context| I18n.t("filters.contexts.#{context}") }.join(', ')
+            %td
+              = table_link_to 'pencil', t('filters.edit.title'), edit_filter_path(filter)
+              = table_link_to 'times', t('filters.index.delete'), filter_path(filter), method: :delete
diff --git a/app/views/layouts/admin.html.haml b/app/views/layouts/admin.html.haml
index 57bda45e23ac42a551fceb4d8200c0be2aab6701..b1a2d0617ff23e1b401a344e9a158f7a34aa19ec 100644
--- a/app/views/layouts/admin.html.haml
+++ b/app/views/layouts/admin.html.haml
@@ -1,4 +1,5 @@
 - content_for :header_tags do
+  = render_initial_state
   = javascript_pack_tag 'public', integrity: true, crossorigin: 'anonymous'
 
 - content_for :content do
@@ -21,7 +22,12 @@
 
     .content-wrapper
       .content
-        %h2= yield :page_title
+        .content-heading
+          %h2= yield :page_title
+
+          - if :heading_actions
+            .content-heading-actions
+              = yield :heading_actions
 
         = render 'application/flashes'
 
diff --git a/app/views/layouts/embedded.html.haml b/app/views/layouts/embedded.html.haml
index ecd1ed4383f2873fd41cdfce615248588481c2dd..b6ca66239ee76a2091c12a574c161515b79af851 100644
--- a/app/views/layouts/embedded.html.haml
+++ b/app/views/layouts/embedded.html.haml
@@ -14,7 +14,11 @@
     = stylesheet_pack_tag Setting.default_settings['theme'], media: 'all'
     = javascript_pack_tag 'common', integrity: true, crossorigin: 'anonymous'
     = javascript_pack_tag "locale_#{I18n.locale}", integrity: true, crossorigin: 'anonymous'
+    = render_initial_state
     = javascript_pack_tag 'public', integrity: true, crossorigin: 'anonymous'
     %script{:src => "/MathJax/MathJax.js?config=TeX-AMS-MML_HTMLorMML"}
   %body.embed
     = yield
+
+    %div{ style: 'display: none'}
+      = render file: Rails.root.join('app', 'javascript', 'images', 'logo_transparent.svg')
diff --git a/app/views/oauth/authorized_applications/index.html.haml b/app/views/oauth/authorized_applications/index.html.haml
index 7203d758da4e90cfc3549538599da4fcc62455cd..7b77108a93c959295405638bacef7126c43a641b 100644
--- a/app/views/oauth/authorized_applications/index.html.haml
+++ b/app/views/oauth/authorized_applications/index.html.haml
@@ -16,7 +16,7 @@
             - if application.website.blank?
               = application.name
             - else
-              = link_to application.name, application.website, target: '_blank', rel: 'noopener'
+              = link_to application.name, application.website, target: '_blank', rel: 'noopener noreferrer'
           %th!= application.scopes.map { |scope| t(scope, scope: [:doorkeeper, :scopes]) }.join(', ')
           %td= l application.created_at
           %td
diff --git a/app/views/public_timelines/show.html.haml b/app/views/public_timelines/show.html.haml
index 07215efdfdf389dab83c03d409fcac9e3e06223f..0e4ba877df61efbcec51b7de64a0f4fef7b92552 100644
--- a/app/views/public_timelines/show.html.haml
+++ b/app/views/public_timelines/show.html.haml
@@ -7,7 +7,11 @@
 
 .page-header
   %h1= t('about.see_whats_happening')
-  %p= t('about.browse_public_posts')
+
+  - if Setting.show_known_fediverse_at_about_page
+    %p= t('about.browse_public_posts')
+  - else
+    %p= t('about.browse_local_posts')
 
 #mastodon-timeline{ data: { props: Oj.dump(default_props) }}
 #modal-container
diff --git a/app/views/relationships/show.html.haml b/app/views/relationships/show.html.haml
index e6fff0ad68e94d0156d27e93365c0964262566ea..099bb32024d111701a6bf497a1715f76b9bcb5e3 100644
--- a/app/views/relationships/show.html.haml
+++ b/app/views/relationships/show.html.haml
@@ -8,8 +8,8 @@
   .filter-subset
     %strong= t 'relationships.relationship'
     %ul
-      %li= filter_link_to t('accounts.following', count: current_account.following_count), relationship: nil
-      %li= filter_link_to t('accounts.followers', count: current_account.followers_count), relationship: 'followed_by'
+      %li= filter_link_to t('relationships.following'), relationship: nil
+      %li= filter_link_to t('relationships.followers'), relationship: 'followed_by'
       %li= filter_link_to t('relationships.mutual'), relationship: 'mutual'
 
   .filter-subset
@@ -33,10 +33,9 @@
 
 = form_for(@form, url: relationships_path, method: :patch) do |f|
   = hidden_field_tag :page, params[:page] || 1
-  = hidden_field_tag :relationship, params[:relationship]
-  = hidden_field_tag :status, params[:status]
-  = hidden_field_tag :activity, params[:activity]
-  = hidden_field_tag :order, params[:order]
+
+  - RelationshipFilter::KEYS.each do |key|
+    = hidden_field_tag key, params[key] if params[key].present?
 
   .batch-table
     .batch-table__toolbar
diff --git a/app/views/settings/account_subscribes/_fields.html.haml b/app/views/settings/account_subscribes/_fields.html.haml
new file mode 100644
index 0000000000000000000000000000000000000000..1662dc86c6d81c38da4533302671cc095dede96f
--- /dev/null
+++ b/app/views/settings/account_subscribes/_fields.html.haml
@@ -0,0 +1,11 @@
+.fields-group
+  = f.input :acct, wrapper: :with_label
+
+.fields-group
+  = f.input :show_reblogs, as: :boolean, wrapper: :with_label
+
+.fields-group
+  = f.label :list_id
+  = f.collection_select :list_id, home_list_new(@lists), :first, :last
+
+%hr.spacer/
diff --git a/app/views/settings/account_subscribes/edit.html.haml b/app/views/settings/account_subscribes/edit.html.haml
new file mode 100644
index 0000000000000000000000000000000000000000..25a329099e171cdabd8d0f1bdf795c800defdf8e
--- /dev/null
+++ b/app/views/settings/account_subscribes/edit.html.haml
@@ -0,0 +1,9 @@
+- content_for :page_title do
+  = t('account_subscribes.edit.title')
+
+= simple_form_for @form_account_subscribing, url: settings_account_subscribe_path(@form_account_subscribing.id), method: :put do |f|
+  = render 'shared/error_messages', object: @form_account_subscribing
+  = render 'fields', f: f
+
+  .actions
+    = f.button :button, t('generic.save_changes'), type: :submit
diff --git a/app/views/settings/account_subscribes/index.html.haml b/app/views/settings/account_subscribes/index.html.haml
new file mode 100644
index 0000000000000000000000000000000000000000..e3bf6af8f20dd01ffa615d55fec2c57ad6847a41
--- /dev/null
+++ b/app/views/settings/account_subscribes/index.html.haml
@@ -0,0 +1,36 @@
+- content_for :page_title do
+  = t('settings.account_subscribes')
+
+%p= t('account_subscribes.hint_html')
+
+%hr.spacer/
+
+.table-wrapper
+  %table.table
+    %thead
+      %tr
+        %th= t('simple_form.labels.form_account_subscribe.acct')
+        %th.nowrap= t('simple_form.labels.form_account_subscribe.reblog')
+        %th.nowrap= t('simple_form.labels.form_account_subscribe.timeline')
+        %th.nowrap
+    %tbody
+      - @account_subscribings.each do |account_subscribe|
+        %tr
+          %td
+            = fa_icon 'user'
+            = account_subscribe.target_account.acct
+          %td.nowrap
+            - if account_subscribe.show_reblogs
+              = fa_icon('check')
+          %td.nowrap
+            - if account_subscribe.list_id
+              = fa_icon 'list-ul'
+              = account_subscribe.list&.title
+            - else
+              = fa_icon 'home'
+              = t 'lists.home'
+          %td.nowrap
+            = table_link_to 'pencil', t('account_subscribes.edit.title'), edit_settings_account_subscribe_path(account_subscribe)
+            = table_link_to 'trash', t('filters.index.delete'), settings_account_subscribe_path(account_subscribe), method: :delete, data: { confirm: t('admin.accounts.are_you_sure') }
+
+= link_to t('account_subscribes.new.title'), new_settings_account_subscribe_path, class: 'button'
diff --git a/app/views/settings/account_subscribes/new.html.haml b/app/views/settings/account_subscribes/new.html.haml
new file mode 100644
index 0000000000000000000000000000000000000000..194da0dac48c92dba8b004cffbfc66d505988cd2
--- /dev/null
+++ b/app/views/settings/account_subscribes/new.html.haml
@@ -0,0 +1,9 @@
+- content_for :page_title do
+  = t('account_subscribes.new.title')
+
+= simple_form_for @form_account_subscribing, url: settings_account_subscribes_path do |f|
+  = render 'shared/error_messages', object: @form_account_subscribing
+  = render 'fields', f: f
+
+  .actions
+    = f.button :button, t('account_subscribes.new.title'), type: :submit
diff --git a/app/views/settings/applications/_fields.html.haml b/app/views/settings/applications/_fields.html.haml
index 6a2863b200b00ce3d2e6a1cd12b7e31120a23fb0..ffd2491d29cd2998ded97d5fd9d2a219f5ecff1a 100644
--- a/app/views/settings/applications/_fields.html.haml
+++ b/app/views/settings/applications/_fields.html.haml
@@ -7,7 +7,7 @@
 .fields-group
   = f.input :redirect_uri, wrapper: :with_block_label, label: t('activerecord.attributes.doorkeeper/application.redirect_uri'), hint: t('doorkeeper.applications.help.redirect_uri')
 
-  %p.hint= t('doorkeeper.applications.help.native_redirect_uri', native_redirect_uri: Doorkeeper.configuration.native_redirect_uri)
+  %p.hint= t('doorkeeper.applications.help.native_redirect_uri', native_redirect_uri: content_tag(:code, Doorkeeper.configuration.native_redirect_uri)).html_safe
 
 .field-group
   .input.with_block_label
diff --git a/app/views/settings/applications/index.html.haml b/app/views/settings/applications/index.html.haml
index 919472c2e8babc0cc9ec5e605574b499a1f8eb77..a1f904a3a8c33b0d5f619f6dc0898bdd474034aa 100644
--- a/app/views/settings/applications/index.html.haml
+++ b/app/views/settings/applications/index.html.haml
@@ -1,20 +1,25 @@
 - content_for :page_title do
   = t('doorkeeper.applications.index.title')
 
-.table-wrapper
-  %table.table
-    %thead
-      %tr
-        %th= t('doorkeeper.applications.index.application')
-        %th= t('doorkeeper.applications.index.scopes')
-        %th
-    %tbody
-      - @applications.each do |application|
+- content_for :heading_actions do
+  = link_to t('doorkeeper.applications.index.new'), new_settings_application_path, class: 'button'
+
+- if @applications.empty?
+  %div.muted-hint.center-text=t 'doorkeeper.applications.index.empty'
+- else
+  .table-wrapper
+    %table.table
+      %thead
         %tr
-          %td= link_to application.name, settings_application_path(application)
-          %th= application.scopes
-          %td
-            = table_link_to 'times', t('doorkeeper.applications.index.delete'), settings_application_path(application), method: :delete, data: { confirm: t('doorkeeper.applications.confirmations.destroy') }
+          %th= t('doorkeeper.applications.index.application')
+          %th= t('doorkeeper.applications.index.scopes')
+          %th
+      %tbody
+        - @applications.each do |application|
+          %tr
+            %td= link_to application.name, settings_application_path(application)
+            %th= application.scopes
+            %td
+              = table_link_to 'times', t('doorkeeper.applications.index.delete'), settings_application_path(application), method: :delete, data: { confirm: t('doorkeeper.applications.confirmations.destroy') }
 
 = paginate @applications
-= link_to t('doorkeeper.applications.index.new'), new_settings_application_path, class: 'button'
diff --git a/app/views/settings/domain_subscribes/_fields.html.haml b/app/views/settings/domain_subscribes/_fields.html.haml
new file mode 100644
index 0000000000000000000000000000000000000000..30c5b566d77c305730169d3e99940ca4912f43a2
--- /dev/null
+++ b/app/views/settings/domain_subscribes/_fields.html.haml
@@ -0,0 +1,11 @@
+.fields-group
+  = f.input :domain, wrapper: :with_label
+
+.fields-group
+  = f.input :exclude_reblog, wrapper: :with_label
+
+.fields-group
+  = f.label :list_id
+  = f.collection_select :list_id, home_list_new(@lists), :first, :last
+
+%hr.spacer/
diff --git a/app/views/settings/domain_subscribes/edit.html.haml b/app/views/settings/domain_subscribes/edit.html.haml
new file mode 100644
index 0000000000000000000000000000000000000000..12e3c0a1b0a391db197389bfb381c97f4e2d4db4
--- /dev/null
+++ b/app/views/settings/domain_subscribes/edit.html.haml
@@ -0,0 +1,9 @@
+- content_for :page_title do
+  = t('domain_subscribes.edit.title')
+
+= simple_form_for @domain_subscribe, url: settings_domain_subscribe_path(@domain_subscribe), method: :put do |f|
+  = render 'shared/error_messages', object: @domain_subscribe
+  = render 'fields', f: f
+
+  .actions
+    = f.button :button, t('generic.save_changes'), type: :submit
diff --git a/app/views/settings/domain_subscribes/index.html.haml b/app/views/settings/domain_subscribes/index.html.haml
new file mode 100644
index 0000000000000000000000000000000000000000..762cf89d6594bbde625befa89f982ace11c9c20d
--- /dev/null
+++ b/app/views/settings/domain_subscribes/index.html.haml
@@ -0,0 +1,35 @@
+- content_for :page_title do
+  = t('settings.domain_subscribes')
+
+%p= t('domain_subscribes.hint_html')
+
+%hr.spacer/
+
+.table-wrapper
+  %table.table
+    %thead
+      %tr
+        %th= t('simple_form.labels.domain_subscribe.domain')
+        %th.nowrap= t('simple_form.labels.domain_subscribe.reblog')
+        %th.nowrap= t('simple_form.labels.domain_subscribe.timeline')
+        %th.nowrap
+    %tbody
+      - @domain_subscribes.each do |domain_subscribe|
+        %tr
+          %td
+            = domain_subscribe.domain
+          %td.nowrap
+            - if domain_subscribe.exclude_reblog
+              = fa_icon('times')
+          %td.nowrap
+            - if domain_subscribe.list_id
+              = fa_icon 'list-ul'
+              = domain_subscribe.list&.title
+            - else
+              = fa_icon 'home'
+              = t 'lists.home'
+          %td.nowrap
+            = table_link_to 'pencil', t('domain_subscribes.edit.title'), edit_settings_domain_subscribe_path(domain_subscribe)
+            = table_link_to 'trash', t('filters.index.delete'), settings_domain_subscribe_path(domain_subscribe), method: :delete, data: { confirm: t('admin.accounts.are_you_sure') }
+
+= link_to t('domain_subscribes.new.title'), new_settings_domain_subscribe_path, class: 'button'
diff --git a/app/views/settings/domain_subscribes/new.html.haml b/app/views/settings/domain_subscribes/new.html.haml
new file mode 100644
index 0000000000000000000000000000000000000000..023a9888dd2a2846b35954f502a461a6a3db28bb
--- /dev/null
+++ b/app/views/settings/domain_subscribes/new.html.haml
@@ -0,0 +1,9 @@
+- content_for :page_title do
+  = t('domain_subscribes.new.title')
+
+= simple_form_for @domain_subscribe, url: settings_domain_subscribes_path do |f|
+  = render 'shared/error_messages', object: @domain_subscribe
+  = render 'fields', f: f
+
+  .actions
+    = f.button :button, t('domain_subscribes.new.title'), type: :submit
diff --git a/app/views/settings/exports/show.html.haml b/app/views/settings/exports/show.html.haml
index 76ff76bd9c6550c08f4aab80bbdd9bf8d0abbc19..0bb80e93726f2ca43eea12c5b0c4149e46ba594e 100644
--- a/app/views/settings/exports/show.html.haml
+++ b/app/views/settings/exports/show.html.haml
@@ -9,11 +9,11 @@
         %td= number_to_human_size @export.total_storage
         %td
       %tr
-        %th= t('accounts.posts', count: @export.total_statuses)
+        %th= t('accounts.posts_tab_heading')
         %td= number_with_delimiter @export.total_statuses
         %td
       %tr
-        %th= t('exports.follows')
+        %th= t('admin.accounts.follows')
         %td= number_with_delimiter @export.total_follows
         %td= table_link_to 'download', t('exports.csv'), settings_exports_follows_path(format: :csv)
       %tr
@@ -21,7 +21,7 @@
         %td= number_with_delimiter @export.total_lists
         %td= table_link_to 'download', t('exports.csv'), settings_exports_lists_path(format: :csv)
       %tr
-        %th= t('accounts.followers', count: @export.total_followers)
+        %th= t('admin.accounts.followers')
         %td= number_with_delimiter @export.total_followers
         %td
       %tr
diff --git a/app/views/settings/favourite_tags/index.html.haml b/app/views/settings/favourite_tags/index.html.haml
new file mode 100644
index 0000000000000000000000000000000000000000..47044fe8066e0d4a0eda05003a5ef91bec254dda
--- /dev/null
+++ b/app/views/settings/favourite_tags/index.html.haml
@@ -0,0 +1,26 @@
+- content_for :page_title do
+  = t('settings.favourite_tags')
+
+%p= t('favourite_tags.hint_html')
+
+%hr.spacer/
+
+= simple_form_for @favourite_tag, url: settings_favourite_tags_path do |f|
+  = render 'shared/error_messages', object: @favourite_tag
+
+  .fields-group
+    = f.input :name, wrapper: :with_block_label, hint: false
+
+  .actions
+    = f.button :button, t('favourite_tags.add_new'), type: :submit
+
+%hr.spacer/
+
+- @favourite_tags.each do |favourite_tag|
+  .directory__tag{ class: params[:tag] == favourite_tag.name ? 'active' : nil }
+    %div
+      %h4
+        = fa_icon 'hashtag'
+        = favourite_tag.name
+        %small
+          = table_link_to 'trash', t('filters.index.delete'), settings_favourite_tag_path(favourite_tag), method: :delete, data: { confirm: t('admin.accounts.are_you_sure') }
diff --git a/app/views/settings/follow_tags/_fields.html.haml b/app/views/settings/follow_tags/_fields.html.haml
new file mode 100644
index 0000000000000000000000000000000000000000..a6612fc5e31f9cdf68dc6aa9e583e6008f2f96b5
--- /dev/null
+++ b/app/views/settings/follow_tags/_fields.html.haml
@@ -0,0 +1,8 @@
+.fields-group
+  = f.input :name, wrapper: :with_label
+
+.fields-group
+  = f.label :list_id
+  = f.collection_select :list_id, home_list_new(@lists), :first, :last
+
+%hr.spacer/
diff --git a/app/views/settings/follow_tags/edit.html.haml b/app/views/settings/follow_tags/edit.html.haml
new file mode 100644
index 0000000000000000000000000000000000000000..3b3c73d949fa520ada4aba817ee36a5de963e872
--- /dev/null
+++ b/app/views/settings/follow_tags/edit.html.haml
@@ -0,0 +1,9 @@
+- content_for :page_title do
+  = t('follow_tags.edit.title')
+
+= simple_form_for @follow_tag, url: settings_follow_tag_path(@follow_tag), method: :put do |f|
+  = render 'shared/error_messages', object: @follow_tag
+  = render 'fields', f: f
+
+  .actions
+    = f.button :button, t('generic.save_changes'), type: :submit
diff --git a/app/views/settings/follow_tags/index.html.haml b/app/views/settings/follow_tags/index.html.haml
new file mode 100644
index 0000000000000000000000000000000000000000..c26bc7e370556028d8ab6ed6060c0adff0157497
--- /dev/null
+++ b/app/views/settings/follow_tags/index.html.haml
@@ -0,0 +1,32 @@
+- content_for :page_title do
+  = t('settings.follow_tags')
+
+%p= t('follow_tags.hint_html')
+
+%hr.spacer/
+
+.table-wrapper
+  %table.table
+    %thead
+      %tr
+        %th= t('simple_form.labels.follow_tag.name')
+        %th.nowrap= t('simple_form.labels.follow_tag.timeline')
+        %th.nowrap
+    %tbody
+      - @follow_tags.each do |follow_tag|
+        %tr
+          %td
+            = fa_icon 'hashtag'
+            = follow_tag.name
+          %td.nowrap
+            - if follow_tag.list_id
+              = fa_icon 'list-ul'
+              = follow_tag.list&.title
+            - else
+              = fa_icon 'home'
+              = t 'lists.home'
+          %td.nowrap
+            = table_link_to 'pencil', t('follow_tags.edit.title'), edit_settings_follow_tag_path(follow_tag)
+            = table_link_to 'trash', t('filters.index.delete'), settings_follow_tag_path(follow_tag), method: :delete, data: { confirm: t('admin.accounts.are_you_sure') }
+
+= link_to t('follow_tags.new.title'), new_settings_follow_tag_path, class: 'button'
diff --git a/app/views/settings/follow_tags/new.html.haml b/app/views/settings/follow_tags/new.html.haml
new file mode 100644
index 0000000000000000000000000000000000000000..095ab4ed2399ae6045050af7d0481be53a835873
--- /dev/null
+++ b/app/views/settings/follow_tags/new.html.haml
@@ -0,0 +1,9 @@
+- content_for :page_title do
+  = t('follow_tags.new.title')
+
+= simple_form_for @follow_tag, url: settings_follow_tags_path do |f|
+  = render 'shared/error_messages', object: @follow_tag
+  = render 'fields', f: f
+
+  .actions
+    = f.button :button, t('follow_tags.new.title'), type: :submit
diff --git a/app/views/settings/keyword_subscribes/_fields.html.haml b/app/views/settings/keyword_subscribes/_fields.html.haml
new file mode 100644
index 0000000000000000000000000000000000000000..c40939e1bd6f5db031783db3d1e8b0d8e01f461e
--- /dev/null
+++ b/app/views/settings/keyword_subscribes/_fields.html.haml
@@ -0,0 +1,24 @@
+.fields-group
+  = f.input :name, as: :string, wrapper: :with_label
+
+.fields-group
+  = f.input :keyword, as: :string, wrapper: :with_label
+
+.fields-group
+  = f.input :exclude_keyword, as: :string, wrapper: :with_label
+
+.fields-group
+  = f.input :ignorecase, wrapper: :with_label
+
+.fields-group
+  = f.input :regexp, wrapper: :with_label
+
+.fields-group
+  = f.input :ignore_block, wrapper: :with_label
+
+.fields-group
+  = f.label :list_id
+  = f.collection_select :list_id, home_list_new(@lists), :first, :last
+
+.fields-group
+  = f.input :disabled, wrapper: :with_label
diff --git a/app/views/settings/keyword_subscribes/edit.html.haml b/app/views/settings/keyword_subscribes/edit.html.haml
new file mode 100644
index 0000000000000000000000000000000000000000..d11d94e2d3542abf5c8e0a5806ef3500bd92ef10
--- /dev/null
+++ b/app/views/settings/keyword_subscribes/edit.html.haml
@@ -0,0 +1,9 @@
+- content_for :page_title do
+  = t('keyword_subscribes.edit.title')
+
+= simple_form_for @keyword_subscribe, url: settings_keyword_subscribe_path(@keyword_subscribe), method: :put do |f|
+  = render 'shared/error_messages', object: @keyword_subscribe
+  = render 'fields', f: f
+
+  .actions
+    = f.button :button, t('generic.save_changes'), type: :submit
diff --git a/app/views/settings/keyword_subscribes/index.html.haml b/app/views/settings/keyword_subscribes/index.html.haml
new file mode 100644
index 0000000000000000000000000000000000000000..750a816a4b7126596586e9ab0c7991b7f2cadf3f
--- /dev/null
+++ b/app/views/settings/keyword_subscribes/index.html.haml
@@ -0,0 +1,66 @@
+- content_for :page_title do
+  = t('keyword_subscribes.index.title')
+
+%p= t('keyword_subscribes.hint_html')
+
+%hr.spacer/
+
+= render 'shared/error_messages', object: @keyword_subscribe
+
+.table-wrapper
+  %table.table
+    %thead
+      %tr
+        %th.nowrap= t('simple_form.labels.keyword_subscribes.name')
+        %th.nowrap= t('simple_form.labels.keyword_subscribes.regexp')
+        %th= t('simple_form.labels.keyword_subscribes.keyword')
+        %th.nowrap= t('simple_form.labels.keyword_subscribes.ignorecase')
+        %th.nowrap= t('simple_form.labels.keyword_subscribes.ignore_block')
+        %th.nowrap= t('simple_form.labels.keyword_subscribes.timeline')
+        %th.nowrap= t('simple_form.labels.keyword_subscribes.disabled')
+        %th.nowrap
+    %tbody
+      - @keyword_subscribes.each do |keyword_subscribe|
+        %tr
+          %td.nowrap= keyword_subscribe.name
+          %td.nowrap
+            - if keyword_subscribe.regexp
+              = t 'keyword_subscribes.regexp.enabled'
+            - else
+              = t 'keyword_subscribes.regexp.disabled'
+          %td
+            .include-keyword
+              = keyword_subscribe.keyword
+            .exclude-keyword
+              = keyword_subscribe.exclude_keyword
+          %td.nowrap
+            - if keyword_subscribe.ignorecase
+              = t 'keyword_subscribes.ignorecase.enabled'
+            - else
+              = t 'keyword_subscribes.ignorecase.disabled'
+          %td.nowrap
+            - if keyword_subscribe.ignore_block
+              = t 'keyword_subscribes.ignore_block'
+          %td.nowrap
+            - if keyword_subscribe.list_id
+              = fa_icon 'list-ul'
+              = keyword_subscribe.list&.title
+            - else
+              = fa_icon 'home'
+              = t 'keyword_subscribe.home'
+          %td.nowrap
+            - if !keyword_subscribe.disabled
+              %span.positive-hint
+                = fa_icon('check')
+                = ' '
+                = t 'keyword_subscribes.enabled'
+            - else
+              %span.negative-hint
+                = fa_icon('times')
+                = ' '
+                = t 'keyword_subscribes.disabled'
+          %td.nowrap
+            = table_link_to 'pencil', t('keyword_subscribes.edit.title'), edit_settings_keyword_subscribe_path(keyword_subscribe)
+            = table_link_to 'times', t('keyword_subscribes.index.delete'), settings_keyword_subscribe_path(keyword_subscribe), method: :delete
+
+= link_to t('keyword_subscribes.new.title'), new_settings_keyword_subscribe_path, class: 'button'
diff --git a/app/views/settings/keyword_subscribes/new.html.haml b/app/views/settings/keyword_subscribes/new.html.haml
new file mode 100644
index 0000000000000000000000000000000000000000..b6e97912760e9c3c8b7fef9a45c2af9f64da9407
--- /dev/null
+++ b/app/views/settings/keyword_subscribes/new.html.haml
@@ -0,0 +1,9 @@
+- content_for :page_title do
+  = t('keyword_subscribes.new.title')
+
+= simple_form_for @keyword_subscribe, url: settings_keyword_subscribes_path do |f|
+  = render 'shared/error_messages', object: @keyword_subscribe
+  = render 'fields', f: f
+
+  .actions
+    = f.button :button, t('keyword_subscribes.new.title'), type: :submit
diff --git a/app/views/settings/preferences/appearance/show.html.haml b/app/views/settings/preferences/appearance/show.html.haml
index d6ee1933f86dbefcfaf96b35c8f86de725d18c45..a5ebf908dc8d0d897aad2c721582df943874abdd 100644
--- a/app/views/settings/preferences/appearance/show.html.haml
+++ b/app/views/settings/preferences/appearance/show.html.haml
@@ -8,6 +8,10 @@
     .fields-group.fields-row__column.fields-row__column-6
       = f.input :setting_theme, collection: Themes.instance.names, label_method: lambda { |theme| I18n.t("themes.#{theme}", default: theme) }, wrapper: :with_label, include_blank: false, hint: false
 
+  - unless I18n.locale == :en
+    .flash-message{ style: "text-align: unset; color: unset" }
+      #{t 'appearance.localization.body'} #{content_tag(:a, t('appearance.localization.guide_link_text'), href: t('appearance.localization.guide_link'), target: "_blank", rel: "noopener", style: "text-decoration: underline")}
+
   %h4= t 'appearance.advanced_web_interface'
 
   %p.hint= t 'appearance.advanced_web_interface_hint'
@@ -25,6 +29,11 @@
     = f.input :setting_reduce_motion, as: :boolean, wrapper: :with_label
     = f.input :setting_system_font_ui, as: :boolean, wrapper: :with_label
 
+  %h4= t 'appearance.toot_layout'
+
+  .fields-group
+    = f.input :setting_crop_images, as: :boolean, wrapper: :with_label
+
   %h4= t 'appearance.discovery'
 
   .fields-group
@@ -34,6 +43,7 @@
 
   .fields-group
     = f.input :setting_unfollow_modal, as: :boolean, wrapper: :with_label
+    = f.input :setting_unsubscribe_modal, as: :boolean, wrapper: :with_label
     = f.input :setting_boost_modal, as: :boolean, wrapper: :with_label
     = f.input :setting_delete_modal, as: :boolean, wrapper: :with_label
 
diff --git a/app/views/settings/preferences/notifications/show.html.haml b/app/views/settings/preferences/notifications/show.html.haml
index f666ae4ff6b1551b2c45d25f0ea2a38a6325f8f3..a496be21b239cd2e17f4699ff1223731f048b3f7 100644
--- a/app/views/settings/preferences/notifications/show.html.haml
+++ b/app/views/settings/preferences/notifications/show.html.haml
@@ -4,6 +4,10 @@
 = simple_form_for current_user, url: settings_preferences_notifications_path, html: { method: :put } do |f|
   = render 'shared/error_messages', object: current_user
 
+  %h4= t 'notifications.email_events'
+
+  %p.hint= t 'notifications.email_events_hint'
+
   .fields-group
     = f.simple_fields_for :notification_emails, hash_to_object(current_user.settings.notification_emails) do |ff|
       = ff.input :follow, as: :boolean, wrapper: :with_label
@@ -21,6 +25,8 @@
     = f.simple_fields_for :notification_emails, hash_to_object(current_user.settings.notification_emails) do |ff|
       = ff.input :digest, as: :boolean, wrapper: :with_label
 
+  %h4= t 'notifications.other_settings'
+
   .fields-group
     = f.simple_fields_for :interactions, hash_to_object(current_user.settings.interactions) do |ff|
       = ff.input :must_be_follower, as: :boolean, wrapper: :with_label
diff --git a/app/views/settings/preferences/other/show.html.haml b/app/views/settings/preferences/other/show.html.haml
index 4f15ed0164d740a35835f921996421f1d1950ce1..6028244eaf3485f77a837f5c818fa635ca269ec9 100644
--- a/app/views/settings/preferences/other/show.html.haml
+++ b/app/views/settings/preferences/other/show.html.haml
@@ -31,6 +31,17 @@
   .fields-group
     = f.input :setting_show_application, as: :boolean, wrapper: :with_label, recommended: true
 
+  %h4= t 'preferences.fedibird_features'
+
+  .fields-group
+    = f.input :setting_show_follow_button_on_timeline, as: :boolean, wrapper: :with_label
+
+  .fields-group
+    = f.input :setting_show_subscribe_button_on_timeline, as: :boolean, wrapper: :with_label
+
+  -# .fields-group
+  -#   = f.input :setting_show_target, as: :boolean, wrapper: :with_label
+
   %h4= t 'preferences.public_timelines'
 
   .fields-group
diff --git a/app/views/shared/_error_messages.html.haml b/app/views/shared/_error_messages.html.haml
index 28becd6c4482da59d232e33a93894b9e4279ed91..cc88dfbfcff3ce43ee1e84064face2bcac079ff5 100644
--- a/app/views/shared/_error_messages.html.haml
+++ b/app/views/shared/_error_messages.html.haml
@@ -1,3 +1,6 @@
 - if object.errors.any?
   .flash-message.alert#error_explanation
     %strong= t('generic.validation_errors', count: object.errors.count)
+    %ul
+      - object.errors.full_messages.each do |error|
+        %li= error
diff --git a/app/views/statuses/_detailed_status.html.haml b/app/views/statuses/_detailed_status.html.haml
index 6367f4eddf40199b7d18884b9d7638569d8b332a..e6fb226fbfa88aae2a6c051260f080e24688de5d 100644
--- a/app/views/statuses/_detailed_status.html.haml
+++ b/app/views/statuses/_detailed_status.html.haml
@@ -26,17 +26,20 @@
         = react_component :poll, disabled: true, poll: ActiveModelSerializers::SerializableResource.new(status.preloadable_poll, serializer: REST::PollSerializer, scope: current_user, scope_name: :current_user).as_json do
           = render partial: 'statuses/poll', locals: { status: status, poll: status.preloadable_poll, autoplay: autoplay }
 
+  - if status.quote?
+    = render partial: "statuses/quote_status", locals: {status: status.quote}
+
   - if !status.media_attachments.empty?
     - if status.media_attachments.first.video?
       - video = status.media_attachments.first
-      = react_component :video, src: video.file.url(:original), preview: video.file.url(:small), blurhash: video.blurhash, sensitive: !current_account&.user&.show_all_media? && status.sensitive? || current_account&.user&.hide_all_media?, width: 670, height: 380, detailed: true, inline: true, alt: video.description do
+      = react_component :video, src: video.file.url(:original), preview: video.file.url(:small), blurhash: video.blurhash, sensitive: status.sensitive?, width: 670, height: 380, detailed: true, inline: true, alt: video.description do
         = render partial: 'statuses/attachment_list', locals: { attachments: status.media_attachments }
     - elsif status.media_attachments.first.audio?
       - audio = status.media_attachments.first
       = react_component :audio, src: audio.file.url(:original), height: 130, alt: audio.description, preload: true, duration: audio.file.meta.dig(:original, :duration) do
         = render partial: 'statuses/attachment_list', locals: { attachments: status.media_attachments }
     - else
-      = react_component :media_gallery, height: 380, sensitive: !current_account&.user&.show_all_media? && status.sensitive? || current_account&.user&.hide_all_media?, standalone: true, 'autoPlayGif': current_account&.user&.setting_auto_play_gif || autoplay, 'reduceMotion': current_account&.user&.setting_reduce_motion, media: status.media_attachments.map { |a| ActiveModelSerializers::SerializableResource.new(a, serializer: REST::MediaAttachmentSerializer).as_json } do
+      = react_component :media_gallery, height: 380, sensitive: status.sensitive?, standalone: true, autoplay: autoplay, media: status.media_attachments.map { |a| ActiveModelSerializers::SerializableResource.new(a, serializer: REST::MediaAttachmentSerializer).as_json } do
         = render partial: 'statuses/attachment_list', locals: { attachments: status.media_attachments }
   - elsif status.preview_card
     = react_component :card, 'maxDescription': 65535, card: ActiveModelSerializers::SerializableResource.new(status.preview_card, serializer: REST::PreviewCardSerializer).as_json
@@ -44,14 +47,14 @@
   .detailed-status__meta
     %data.dt-published{ value: status.created_at.to_time.iso8601 }
 
-    = link_to ActivityPub::TagManager.instance.url_for(status), class: 'detailed-status__datetime u-url u-uid', target: stream_link_target, rel: 'noopener' do
+    = link_to ActivityPub::TagManager.instance.url_for(status), class: 'detailed-status__datetime u-url u-uid', target: stream_link_target, rel: 'noopener noreferrer' do
       %time.formatted{ datetime: status.created_at.iso8601, title: l(status.created_at) }= l(status.created_at)
     ·
     - if status.application && @account.user&.setting_show_application
       - if status.application.website.blank?
         %strong.detailed-status__application= status.application.name
       - else
-        = link_to status.application.name, status.application.website, class: 'detailed-status__application', target: '_blank', rel: 'noopener'
+        = link_to status.application.name, status.application.website, class: 'detailed-status__application', target: '_blank', rel: 'noopener noreferrer'
       ·
     = link_to remote_interaction_path(status, type: :reply), class: 'modal-button detailed-status__link' do
       - if status.in_reply_to_id.nil?
diff --git a/app/views/statuses/_quote_status.html.haml b/app/views/statuses/_quote_status.html.haml
new file mode 100644
index 0000000000000000000000000000000000000000..7c9cb3c925a9158e74d579f2b017078d52ff36d2
--- /dev/null
+++ b/app/views/statuses/_quote_status.html.haml
@@ -0,0 +1,18 @@
+.status.quote-status{ dataurl:  ActivityPub::TagManager.instance.url_for(status) }
+  = link_to ActivityPub::TagManager.instance.url_for(status.account), class: 'status__display-name p-author h-card', target: stream_link_target, rel: 'noopener' do
+    .status__avatar
+      %div
+        = image_tag status.account.avatar(:original), width: 18, height: 18, alt: '', class: 'account__avatar u-photo'
+    %span.display-name
+      %strong.p-name.emojify= display_name(status.account, custom_emojify: true)
+      %span= acct(status.account)
+
+  .status__content.p-name.emojify<
+    - if status.spoiler_text?
+      %p{ style: 'margin-bottom: 0' }<
+        %span.p-summary> #{Formatter.instance.format_spoiler(status)}&nbsp;
+        %a.status__content__spoiler-link{ href: '#' }= t('statuses.show_more')
+    .e-content{ lang: status.language, style: "display: #{status.spoiler_text? ? 'none' : 'block'}; direction: #{rtl_status?(status) ? 'rtl' : 'ltr'}" }>
+      %p>= Formatter.instance.format_in_quote(status, custom_emojify: true)
+    - unless status.media_attachments.empty?
+      %div{ data: { component: 'MediaGallery', props: Oj.dump(height: 343, sensitive: status.sensitive? && !current_account&.user&.setting_display_sensitive_media, 'autoPlayGif': current_account&.user&.setting_auto_play_gif, media: status.media_attachments.map { |a| ActiveModelSerializers::SerializableResource.new(a, serializer: REST::MediaAttachmentSerializer).as_json }, quote: true) }}
diff --git a/app/views/statuses/_simple_status.html.haml b/app/views/statuses/_simple_status.html.haml
index 9b89e30a92db5b6bf02865b01ea54ee81ea4242e..d6a79b4f9d21432a6278f49401962ffef8cf4710 100644
--- a/app/views/statuses/_simple_status.html.haml
+++ b/app/views/statuses/_simple_status.html.haml
@@ -1,11 +1,11 @@
 .status
   .status__info
-    = link_to ActivityPub::TagManager.instance.url_for(status), class: 'status__relative-time u-url u-uid', target: stream_link_target, rel: 'noopener' do
+    = link_to ActivityPub::TagManager.instance.url_for(status), class: 'status__relative-time u-url u-uid', target: stream_link_target, rel: 'noopener noreferrer' do
       %time.time-ago{ datetime: status.created_at.iso8601, title: l(status.created_at) }= l(status.created_at)
     %data.dt-published{ value: status.created_at.to_time.iso8601 }
 
     .p-author.h-card
-      = link_to ActivityPub::TagManager.instance.url_for(status.account), class: 'status__display-name u-url', target: stream_link_target, rel: 'noopener' do
+      = link_to ActivityPub::TagManager.instance.url_for(status.account), class: 'status__display-name u-url', target: stream_link_target, rel: 'noopener noreferrer' do
         .status__avatar
           %div
             - if current_account&.user&.setting_auto_play_gif || autoplay
@@ -30,17 +30,20 @@
         = react_component :poll, disabled: true, poll: ActiveModelSerializers::SerializableResource.new(status.preloadable_poll, serializer: REST::PollSerializer, scope: current_user, scope_name: :current_user).as_json do
           = render partial: 'statuses/poll', locals: { status: status, poll: status.preloadable_poll, autoplay: autoplay }
 
+  - if status.quote?
+    = render partial: "statuses/quote_status", locals: {status: status.quote}
+
   - if !status.media_attachments.empty?
     - if status.media_attachments.first.video?
       - video = status.media_attachments.first
-      = react_component :video, src: video.file.url(:original), preview: video.file.url(:small), blurhash: video.blurhash, sensitive: !current_account&.user&.show_all_media? && status.sensitive? || current_account&.user&.hide_all_media?, width: 610, height: 343, inline: true, alt: video.description do
+      = react_component :video, src: video.file.url(:original), preview: video.file.url(:small), blurhash: video.blurhash, sensitive: status.sensitive?, width: 610, height: 343, inline: true, alt: video.description do
         = render partial: 'statuses/attachment_list', locals: { attachments: status.media_attachments }
     - elsif status.media_attachments.first.audio?
       - audio = status.media_attachments.first
       = react_component :audio, src: audio.file.url(:original), height: 110, alt: audio.description, duration: audio.file.meta.dig(:original, :duration) do
         = render partial: 'statuses/attachment_list', locals: { attachments: status.media_attachments }
     - else
-      = react_component :media_gallery, height: 343, sensitive: !current_account&.user&.show_all_media? && status.sensitive? || current_account&.user&.hide_all_media?, 'autoPlayGif': current_account&.user&.setting_auto_play_gif || autoplay, media: status.media_attachments.map { |a| ActiveModelSerializers::SerializableResource.new(a, serializer: REST::MediaAttachmentSerializer).as_json } do
+      = react_component :media_gallery, height: 343, sensitive: status.sensitive?, autoplay: autoplay, media: status.media_attachments.map { |a| ActiveModelSerializers::SerializableResource.new(a, serializer: REST::MediaAttachmentSerializer).as_json } do
         = render partial: 'statuses/attachment_list', locals: { attachments: status.media_attachments }
   - elsif status.preview_card
     = react_component :card, 'maxDescription': 160, card: ActiveModelSerializers::SerializableResource.new(status.preview_card, serializer: REST::PreviewCardSerializer).as_json
diff --git a/app/views/statuses/embed.html.haml b/app/views/statuses/embed.html.haml
index 6f2ec646fe66704529189e126fcb338e17791094..2f111f53fccd2fc7992ae470aaa76fdafaaa6c6b 100644
--- a/app/views/statuses/embed.html.haml
+++ b/app/views/statuses/embed.html.haml
@@ -1,3 +1,2 @@
-- cache @status do
-  .activity-stream.activity-stream--headless
-    = render 'status', status: @status, centered: true, autoplay: @autoplay
+.activity-stream.activity-stream--headless
+  = render 'status', status: @status, centered: true, autoplay: @autoplay
diff --git a/app/views/user_mailer/welcome.html.haml b/app/views/user_mailer/welcome.html.haml
index 1f75ff48ae453457002a0df887749e569d00ff66..6f5cfb6932644d95ff4594dcaaf8990a34ff62a1 100644
--- a/app/views/user_mailer/welcome.html.haml
+++ b/app/views/user_mailer/welcome.html.haml
@@ -138,7 +138,5 @@
                                   %span= t 'user_mailer.welcome.tip_mobile_webapp'
                                 %li
                                   %span= t 'user_mailer.welcome.tip_following'
-                                %li
-                                  %span= t 'user_mailer.welcome.tip_local_timeline', instance: @instance
                                 %li
                                   %span= t 'user_mailer.welcome.tip_federated_timeline'
diff --git a/app/views/user_mailer/welcome.text.erb b/app/views/user_mailer/welcome.text.erb
index e310d7ca6f963a1e6e431b847defbe5fdb5d1c0a..1bf7fbf450d2e83156365078be034ce5247a6d88 100644
--- a/app/views/user_mailer/welcome.text.erb
+++ b/app/views/user_mailer/welcome.text.erb
@@ -25,5 +25,4 @@
 
 * <%= t 'user_mailer.welcome.tip_mobile_webapp' %>
 * <%= t 'user_mailer.welcome.tip_following' %>
-* <%= t 'user_mailer.welcome.tip_local_timeline', instance: @instance %>
 * <%= t 'user_mailer.welcome.tip_federated_timeline' %>
diff --git a/app/workers/activitypub/delivery_worker.rb b/app/workers/activitypub/delivery_worker.rb
index 5457d9d4b05a8aab344ebaa4eed248c3530bd226..196af4af16af76b1bb31dd0e9df1ec931a659f45 100644
--- a/app/workers/activitypub/delivery_worker.rb
+++ b/app/workers/activitypub/delivery_worker.rb
@@ -50,9 +50,13 @@ class ActivityPub::DeliveryWorker
       end
     end
 
-    light.with_threshold(STOPLIGHT_FAILURE_THRESHOLD)
-         .with_cool_off_time(STOPLIGHT_COOLDOWN)
-         .run
+    begin
+      light.with_threshold(STOPLIGHT_FAILURE_THRESHOLD)
+           .with_cool_off_time(STOPLIGHT_COOLDOWN)
+           .run
+    rescue Stoplight::Error::RedLight => e
+      raise e.class, e.message, e.backtrace.first(3)
+    end
   end
 
   def failure_tracker
diff --git a/app/workers/merge_worker.rb b/app/workers/merge_worker.rb
index d745cb99c7b9aada475223d9250a0315dc0c6c5b..0de0acc9a977b180f1881c0bb6af0feec852cca4 100644
--- a/app/workers/merge_worker.rb
+++ b/app/workers/merge_worker.rb
@@ -5,7 +5,7 @@ class MergeWorker
 
   sidekiq_options queue: 'pull'
 
-  def perform(from_account_id, into_account_id)
-    FeedManager.instance.merge_into_timeline(Account.find(from_account_id), Account.find(into_account_id))
+  def perform(from_account_id, into_account_id, public_only = false)
+    FeedManager.instance.merge_into_timeline(Account.find(from_account_id), Account.find(into_account_id), public_only)
   end
 end
diff --git a/app/workers/move_worker.rb b/app/workers/move_worker.rb
index 83f7090eec1198f0d1d9472524304e769171cadb..59573022633e026c0786347cd3c8117871512a95 100644
--- a/app/workers/move_worker.rb
+++ b/app/workers/move_worker.rb
@@ -7,7 +7,7 @@ class MoveWorker
     @source_account = Account.find(source_account_id)
     @target_account = Account.find(target_account_id)
 
-    if @target_account.local?
+    if @target_account.local? && @source_account.local?
       rewrite_follows!
     else
       queue_follow_unfollows!
@@ -21,13 +21,17 @@ class MoveWorker
   def rewrite_follows!
     @source_account.passive_relationships
                    .where(account: Account.local)
+                   .where.not(account: @target_account.followers.local)
+                   .where.not(account_id: @target_account.id)
                    .in_batches
                    .update_all(target_account_id: @target_account.id)
   end
 
   def queue_follow_unfollows!
+    bypass_locked = @target_account.local?
+
     @source_account.followers.local.select(:id).find_in_batches do |accounts|
-      UnfollowFollowWorker.push_bulk(accounts.map(&:id)) { |follower_id| [follower_id, @source_account.id, @target_account.id] }
+      UnfollowFollowWorker.push_bulk(accounts.map(&:id)) { |follower_id| [follower_id, @source_account.id, @target_account.id, bypass_locked] }
     end
   end
 end
diff --git a/app/workers/refollow_worker.rb b/app/workers/refollow_worker.rb
index 12f2bf671b83f9f9520f226e08ae169aa70013f9..9b07ce1b56a13ea5aa7b7045ab25a58492d914e9 100644
--- a/app/workers/refollow_worker.rb
+++ b/app/workers/refollow_worker.rb
@@ -7,15 +7,18 @@ class RefollowWorker
 
   def perform(target_account_id)
     target_account = Account.find(target_account_id)
-    return unless target_account.protocol == :activitypub
+    return unless target_account.activitypub?
+
+    target_account.passive_relationships.where(account: Account.where(domain: nil)).includes(:account).reorder(nil).find_each do |follow|
+      reblogs = follow.show_reblogs?
 
-    target_account.followers.where(domain: nil).reorder(nil).find_each do |follower|
       # Locally unfollow remote account
+      follower = follow.account
       follower.unfollow!(target_account)
 
       # Schedule re-follow
       begin
-        FollowService.new.call(follower, target_account)
+        FollowService.new.call(follower, target_account, reblogs: reblogs)
       rescue Mastodon::NotPermittedError, ActiveRecord::RecordNotFound, Mastodon::UnexpectedResponseError, HTTP::Error, OpenSSL::SSL::SSLError
         next
       end
diff --git a/app/workers/unfollow_follow_worker.rb b/app/workers/unfollow_follow_worker.rb
index 95549e107ad70c760ea04d492e71574f8d2bad51..b6e665a41fbd67bceb6ce00b14f3fdfa6cca1a62 100644
--- a/app/workers/unfollow_follow_worker.rb
+++ b/app/workers/unfollow_follow_worker.rb
@@ -5,12 +5,15 @@ class UnfollowFollowWorker
 
   sidekiq_options queue: 'pull'
 
-  def perform(follower_account_id, old_target_account_id, new_target_account_id)
+  def perform(follower_account_id, old_target_account_id, new_target_account_id, bypass_locked = false)
     follower_account   = Account.find(follower_account_id)
     old_target_account = Account.find(old_target_account_id)
     new_target_account = Account.find(new_target_account_id)
 
-    FollowService.new.call(follower_account, new_target_account)
+    follow = follower_account.active_relationships.find_by(target_account: old_target_account)
+    reblogs = follow&.show_reblogs?
+
+    FollowService.new.call(follower_account, new_target_account, reblogs: reblogs, bypass_locked: bypass_locked)
     UnfollowService.new.call(follower_account, old_target_account, skip_unmerge: true)
   rescue ActiveRecord::RecordNotFound, Mastodon::NotPermittedError
     true
diff --git a/babel.config.js b/babel.config.js
index 3f7ff84dbd13f5e8294109115ce599579d0823b2..9be5b547a63bc7ad4cc95a264ea12e024a296490 100644
--- a/babel.config.js
+++ b/babel.config.js
@@ -1,36 +1,39 @@
 module.exports = (api) => {
   const env = api.env();
 
+  const reactOptions = {
+    development: false,
+  };
+
   const envOptions = {
-    debug: false,
     loose: true,
     modules: false,
+    debug: false,
   };
 
   const config = {
     presets: [
-      '@babel/react',
+      ['@babel/react', reactOptions],
       ['@babel/env', envOptions],
     ],
     plugins: [
-      '@babel/syntax-dynamic-import',
-      ['@babel/proposal-object-rest-spread', { useBuiltIns: true }],
       ['@babel/proposal-decorators', { legacy: true }],
       '@babel/proposal-class-properties',
       ['react-intl', { messagesDir: './build/messages' }],
       'preval',
     ],
-    overrides: [{
-      test: /tesseract\.js/,
-      presets: [
-        ['@babel/env', { ...envOptions, modules: 'commonjs' }],
-      ],
-    }],
+    overrides: [
+      {
+        test: /tesseract\.js/,
+        presets: [
+          ['@babel/env', { ...envOptions, modules: 'commonjs' }],
+        ],
+      },
+    ],
   };
 
   switch (env) {
   case 'production':
-    envOptions.debug = false;
     config.plugins.push(...[
       'lodash',
       [
@@ -55,11 +58,8 @@ module.exports = (api) => {
     ]);
     break;
   case 'development':
+    reactOptions.development = true;
     envOptions.debug = true;
-    config.plugins.push(...[
-      '@babel/transform-react-jsx-source',
-      '@babel/transform-react-jsx-self',
-    ]);
     break;
   case 'test':
     envOptions.modules = 'commonjs';
diff --git a/boxfile.yml b/boxfile.yml
index 1bc3929c86d2feff4fc640461ccc0335b765b3a6..c4fd19ce6039a2c3264f0ae8d923a70c1826cc46 100644
--- a/boxfile.yml
+++ b/boxfile.yml
@@ -60,16 +60,15 @@ deploy.config:
     - touch /app/log/production.log
   before_live:
     web.web:
+      - bin/tootctl cache clear
       - bundle exec rake db:migrate:setup
+  after_live:
+    worker.sidekiq:
       - |-
           if [[ "${ES_ENABLED}" != "false" ]]
           then
             bin/tootctl search deploy
           fi
-      - bin/tootctl cache clear
-  after_live:
-    worker.sidekiq:
-      - bin/tootctl search deploy
 
 
 web.web:
diff --git a/config/application.rb b/config/application.rb
index 9be41b1a75c0fdf84bf2d8832d3ec33aef6e465a..c1bc18a3033d63ad947cbfe1c56c30bb25626307 100644
--- a/config/application.rb
+++ b/config/application.rb
@@ -7,6 +7,7 @@ require 'rails/all'
 Bundler.require(*Rails.groups)
 
 require_relative '../app/lib/exceptions'
+require_relative '../app/middleware/handle_bad_encoding_middleware'
 require_relative '../lib/paperclip/lazy_thumbnail'
 require_relative '../lib/paperclip/gif_transcoder'
 require_relative '../lib/paperclip/video_transcoder'
@@ -69,14 +70,18 @@ module Mastodon
       :hy,
       :id,
       :io,
+      :is,
       :it,
       :ja,
       :ka,
       :kk,
+      :kn,
       :ko,
       :lt,
       :lv,
       :mk,
+      :ml,
+      :mr,
       :ms,
       :nl,
       :nn,
@@ -98,6 +103,7 @@ module Mastodon
       :th,
       :tr,
       :uk,
+      :ur,
       :'zh-CN',
       :'zh-HK',
       :'zh-TW',
@@ -114,6 +120,7 @@ module Mastodon
 
     config.active_job.queue_adapter = :sidekiq
 
+    config.middleware.insert_before Rack::Runtime, HandleBadEncodingMiddleware
     config.middleware.use Rack::Attack
     config.middleware.use Rack::Deflater
 
diff --git a/config/brakeman.ignore b/config/brakeman.ignore
index 7e3828f7e017d2e6fba0b18fb1399f0a819a9433..c20766c3a456694a101cc56a2425dafbd20184de 100644
--- a/config/brakeman.ignore
+++ b/config/brakeman.ignore
@@ -125,14 +125,14 @@
       "fingerprint": "67afc0d5f7775fa5bd91d1912e1b5505aeedef61876347546fa20f92fd6915e6",
       "check_name": "Render",
       "message": "Render path contains parameter value",
-      "file": "app/views/stream_entries/embed.html.haml",
+      "file": "app/views/statuses/embed.html.haml",
       "line": 3,
       "link": "https://brakemanscanner.org/docs/warning_types/dynamic_render_path/",
-      "code": "render(action => \"stream_entries/#{Account.find_local!(params[:account_username]).statuses.find(params[:id]).stream_entry.activity_type.downcase}\", { Account.find_local!(params[:account_username]).statuses.find(params[:id]).stream_entry.activity_type.downcase.to_sym => Account.find_local!(params[:account_username]).statuses.find(params[:id]).stream_entry.activity, :centered => true, :autoplay => ActiveModel::Type::Boolean.new.cast(params[:autoplay]) })",
-      "render_path": [{"type":"controller","class":"StatusesController","method":"embed","line":63,"file":"app/controllers/statuses_controller.rb","rendered":{"name":"stream_entries/embed","file":"/home/eugr/Projects/mastodon/app/views/stream_entries/embed.html.haml"}}],
+      "code": "render(action => \"statuses/#{Account.find_local!(params[:account_username]).statuses.find(params[:id]).stream_entry.activity_type.downcase}\", { Account.find_local!(params[:account_username]).statuses.find(params[:id]).stream_entry.activity_type.downcase.to_sym => Account.find_local!(params[:account_username]).statuses.find(params[:id]).stream_entry.activity, :centered => true, :autoplay => ActiveModel::Type::Boolean.new.cast(params[:autoplay]) })",
+      "render_path": [{"type":"controller","class":"StatusesController","method":"embed","line":63,"file":"app/controllers/statuses_controller.rb","rendered":{"name":"statuses/embed","file":"/home/eugr/Projects/mastodon/app/views/statuses/embed.html.haml"}}],
       "location": {
         "type": "template",
-        "template": "stream_entries/embed"
+        "template": "statuses/embed"
       },
       "user_input": "params[:id]",
       "confidence": "Weak",
@@ -282,14 +282,14 @@
       "fingerprint": "fbd0fc59adb5c6d44b60e02debb31d3af11719f534c9881e21435bbff87404d6",
       "check_name": "Render",
       "message": "Render path contains parameter value",
-      "file": "app/views/stream_entries/show.html.haml",
+      "file": "app/views/statuses/show.html.haml",
       "line": 23,
       "link": "https://brakemanscanner.org/docs/warning_types/dynamic_render_path/",
-      "code": "render(partial => \"stream_entries/#{Account.find_local!(params[:account_username]).statuses.find(params[:id]).stream_entry.activity_type.downcase}\", { :locals => ({ Account.find_local!(params[:account_username]).statuses.find(params[:id]).stream_entry.activity_type.downcase.to_sym => Account.find_local!(params[:account_username]).statuses.find(params[:id]).stream_entry.activity, :include_threads => true }) })",
-      "render_path": [{"type":"controller","class":"StatusesController","method":"show","line":34,"file":"app/controllers/statuses_controller.rb","rendered":{"name":"stream_entries/show","file":"/home/eugr/Projects/mastodon/app/views/stream_entries/show.html.haml"}}],
+      "code": "render(partial => \"stat/#{Account.find_local!(params[:account_username]).statuses.find(params[:id]).stream_entry.activity_type.downcase}\", { :locals => ({ Account.find_local!(params[:account_username]).statuses.find(params[:id]).stream_entry.activity_type.downcase.to_sym => Account.find_local!(params[:account_username]).statuses.find(params[:id]).stream_entry.activity, :include_threads => true }) })",
+      "render_path": [{"type":"controller","class":"StatusesController","method":"show","line":34,"file":"app/controllers/statuses_controller.rb","rendered":{"name":"statuses/show","file":"/home/eugr/Projects/mastodon/app/views/statuses/show.html.haml"}}],
       "location": {
         "type": "template",
-        "template": "stream_entries/show"
+        "template": "statuses/show"
       },
       "user_input": "params[:id]",
       "confidence": "Weak",
diff --git a/config/i18n-tasks.yml b/config/i18n-tasks.yml
index bc5a05f4a57b7afaff35d9ec70102f96fc54d618..c2d6a78382802c1d1d1011d3538002c2c6338658 100644
--- a/config/i18n-tasks.yml
+++ b/config/i18n-tasks.yml
@@ -60,3 +60,6 @@ ignore_unused:
   - 'admin.accounts.roles.*'
   - 'admin.action_logs.actions.*'
   - 'statuses.attached.*'
+
+ignore_inconsistent_interpolations:
+  - '*.one'
diff --git a/config/initializers/content_security_policy.rb b/config/initializers/content_security_policy.rb
index af7d16aafc521f39556012e185b8af3e865b2761..0ee7c7262bad4444fcdb8f45c01cc60c75493d2a 100644
--- a/config/initializers/content_security_policy.rb
+++ b/config/initializers/content_security_policy.rb
@@ -16,13 +16,17 @@ media_host ||= host_to_url(ENV['S3_CLOUDFRONT_HOST'])
 media_host ||= host_to_url(ENV['S3_HOSTNAME']) if ENV['S3_ENABLED'] == 'true'
 media_host ||= assets_host
 
+instance_ticker_host     = 'https://wee.jp'
+instance_ticker_img_host = 'https://res.cloudinary.com'
+bootstrap_cdn_host       = 'https://maxcdn.bootstrapcdn.com'
+
 Rails.application.config.content_security_policy do |p|
   p.base_uri        :none
   p.default_src     :none
   p.frame_ancestors :none
-  p.font_src        :self, assets_host
-  p.img_src         :self, :https, :data, :blob, assets_host
-  p.style_src       :self, :unsafe_inline, assets_host
+  p.font_src        :self, :data, assets_host, bootstrap_cdn_host
+  p.img_src         :self, :https, :data, :blob, assets_host, instance_ticker_img_host
+  p.style_src       :self, :unsafe_inline, assets_host, instance_ticker_host, bootstrap_cdn_host
   p.media_src       :self, :https, :data, assets_host
   p.frame_src       :self, :https
   p.manifest_src    :self, assets_host
@@ -31,11 +35,11 @@ Rails.application.config.content_security_policy do |p|
     webpacker_urls = %w(ws http).map { |protocol| "#{protocol}#{Webpacker.dev_server.https? ? 's' : ''}://#{Webpacker.dev_server.host_with_port}" }
 
     p.connect_src :self, :data, :blob, assets_host, media_host, Rails.configuration.x.streaming_api_base_url, *webpacker_urls
-    p.script_src  :self, :unsafe_inline, :unsafe_eval, assets_host
+    p.script_src  :self, :unsafe_inline, :unsafe_eval, assets_host, bootstrap_cdn_host
     p.worker_src  :self, :blob, assets_host
   else
     p.connect_src :self, :data, :blob, assets_host, media_host, Rails.configuration.x.streaming_api_base_url
-    p.script_src  :self, assets_host
+    p.script_src  :self, assets_host, bootstrap_cdn_host
     p.worker_src  :self, :blob, assets_host
   end
 end
diff --git a/config/initializers/devise.rb b/config/initializers/devise.rb
index fd9a5a8b9b96f14663fe38ddce0e990dcd3a6623..59e69ad375feeb25d42038eb6b447f0702eb1d33 100644
--- a/config/initializers/devise.rb
+++ b/config/initializers/devise.rb
@@ -53,6 +53,8 @@ module Devise
   @@ldap_base = nil
   mattr_accessor :ldap_uid
   @@ldap_uid = nil
+  mattr_accessor :ldap_mail
+  @@ldap_mail = nil
   mattr_accessor :ldap_bind_dn
   @@ldap_bind_dn = nil
   mattr_accessor :ldap_password
@@ -61,6 +63,12 @@ module Devise
   @@ldap_tls_no_verify = false
   mattr_accessor :ldap_search_filter
   @@ldap_search_filter = nil
+  mattr_accessor :ldap_uid_conversion_enabled
+  @@ldap_uid_conversion_enabled = false
+  mattr_accessor :ldap_uid_conversion_search
+  @@ldap_uid_conversion_search = nil
+  mattr_accessor :ldap_uid_conversion_replace
+  @@ldap_uid_conversion_replace = nil
 
   class Strategies::PamAuthenticatable
     def valid?
@@ -363,7 +371,11 @@ Devise.setup do |config|
     config.ldap_bind_dn        = ENV.fetch('LDAP_BIND_DN')
     config.ldap_password       = ENV.fetch('LDAP_PASSWORD')
     config.ldap_uid            = ENV.fetch('LDAP_UID', 'cn')
+    config.ldap_mail           = ENV.fetch('LDAP_MAIL', 'mail')
     config.ldap_tls_no_verify  = ENV['LDAP_TLS_NO_VERIFY'] == 'true'
-    config.ldap_search_filter  = ENV.fetch('LDAP_SEARCH_FILTER', '%{uid}=%{email}')
+    config.ldap_search_filter  = ENV.fetch('LDAP_SEARCH_FILTER', '(|(%{uid}=%{email})(%{mail}=%{email}))')
+    config.ldap_uid_conversion_enabled  = ENV['LDAP_UID_CONVERSION_ENABLED'] == 'true'
+    config.ldap_uid_conversion_search   = ENV.fetch('LDAP_UID_CONVERSION_SEARCH', '.,- ')
+    config.ldap_uid_conversion_replace  = ENV.fetch('LDAP_UID_CONVERSION_REPLACE', '_')
   end
 end
diff --git a/config/initializers/doorkeeper.rb b/config/initializers/doorkeeper.rb
index 914b3c0010d34be00ffcf07a1c500b633b1b3920..e03380cec11f048db8ce4b1a525668a4fe3ae54f 100644
--- a/config/initializers/doorkeeper.rb
+++ b/config/initializers/doorkeeper.rb
@@ -8,8 +8,15 @@ Doorkeeper.configure do
   end
 
   resource_owner_from_credentials do |_routes|
-    user = User.find_by(email: request.params[:username])
-    user if !user&.otp_required_for_login? && user&.valid_password?(request.params[:password])
+    user   = User.authenticate_with_ldap(email: request.params[:username], password: request.params[:password]) if Devise.ldap_authentication
+    user ||= User.authenticate_with_pam(email: request.params[:username], password: request.params[:password]) if Devise.pam_authentication
+
+    if user.nil?
+      user = User.find_by(email: request.params[:username])
+      user = nil unless user&.valid_password?(request.params[:password])
+    end
+
+    user unless user&.otp_required_for_login?
   end
 
   # If you want to restrict access to the web interface for adding oauth authorized applications, you need to declare the block below.
@@ -58,6 +65,7 @@ Doorkeeper.configure do
   optional_scopes :write,
                   :'write:accounts',
                   :'write:blocks',
+                  :'write:bookmarks',
                   :'write:conversations',
                   :'write:favourites',
                   :'write:filters',
@@ -71,6 +79,7 @@ Doorkeeper.configure do
                   :read,
                   :'read:accounts',
                   :'read:blocks',
+                  :'read:bookmarks',
                   :'read:favourites',
                   :'read:filters',
                   :'read:follows',
diff --git a/config/initializers/http_client_proxy.rb b/config/initializers/http_client_proxy.rb
index 9d7b16e69c87a671b53cf57440e0b5cfcaceeadd..8b5ba050629d32757fe53ed8724d0255bc2a0d43 100644
--- a/config/initializers/http_client_proxy.rb
+++ b/config/initializers/http_client_proxy.rb
@@ -18,7 +18,7 @@ module Goldfinger
     to_hidden = /\.(onion|i2p)(:\d+)?$/.match(uri)
     raise Mastodon::HostValidationError, 'Instance does not support hidden service connections' if !Rails.configuration.x.access_to_hidden_service && to_hidden
     opts = { ssl: !to_hidden, headers: {} }.merge(Rails.configuration.x.http_client_proxy).merge(opts)
-    opts[:headers]['User-Agent'] ||= Mastodon::Version.user_agent
+    opts[:headers]['User-Agent'] ||= uri.match?(/mstdn\.jp/) ? Mastodon::Version.pseudo_user_agent : Mastodon::Version.user_agent
     Goldfinger::Client.new(uri, opts).finger
   end
 end
diff --git a/config/initializers/paperclip.rb b/config/initializers/paperclip.rb
index d3602e655e6083d74d14143c3afd52a898d8a921..8909678d65364bf6f768e885bd4151d94daf8976 100644
--- a/config/initializers/paperclip.rb
+++ b/config/initializers/paperclip.rb
@@ -1,5 +1,7 @@
 # frozen_string_literal: true
 
+Paperclip::DataUriAdapter.register
+
 Paperclip.interpolates :filename do |attachment, style|
   if style == :original
     attachment.original_filename
@@ -42,7 +44,7 @@ if ENV['S3_ENABLED'] == 'true'
 
     s3_options: {
       signature_version: ENV.fetch('S3_SIGNATURE_VERSION') { 'v4' },
-      http_open_timeout: 5,
+      http_open_timeout: ENV.fetch('S3_OPEN_TIMEOUT'){ '5' }.to_i,
       http_read_timeout: 5,
       http_idle_timeout: 5,
       retry_limit: 0,
@@ -52,7 +54,7 @@ if ENV['S3_ENABLED'] == 'true'
   if ENV.has_key?('S3_ENDPOINT')
     Paperclip::Attachment.default_options[:s3_options].merge!(
       endpoint: ENV['S3_ENDPOINT'],
-      force_path_style: true
+      force_path_style: ENV['S3_OVERRIDE_PATH_STYLE'] != 'true',
     )
 
     Paperclip::Attachment.default_options[:url] = ':s3_path_url'
@@ -89,7 +91,7 @@ else
   Paperclip::Attachment.default_options.merge!(
     storage: :filesystem,
     use_timestamp: true,
-    path: ENV.fetch('PAPERCLIP_ROOT_PATH', ':rails_root/public/system') + '/:class/:attachment/:id_partition/:style/:filename',
+    path: File.join(ENV.fetch('PAPERCLIP_ROOT_PATH', File.join(':rails_root', 'public', 'system')), ':class', ':attachment', ':id_partition', ':style', ':filename'),
     url: ENV.fetch('PAPERCLIP_ROOT_URL', '/system') + '/:class/:attachment/:id_partition/:style/:filename',
   )
 end
diff --git a/config/initializers/rack_attack.rb b/config/initializers/rack_attack.rb
index 273cac9ca3d437c3108deeaf75a38095cf214d39..3cd7ea3a6b1a8277aeb98d08022f948fd8030c21 100644
--- a/config/initializers/rack_attack.rb
+++ b/config/initializers/rack_attack.rb
@@ -46,10 +46,7 @@ class Rack::Attack
 
   PROTECTED_PATHS_REGEX = Regexp.union(PROTECTED_PATHS.map { |path| /\A#{Regexp.escape(path)}/ })
 
-  # Always allow requests from localhost
-  # (blocklist & throttles are skipped)
   Rack::Attack.safelist('allow from localhost') do |req|
-    # Requests are allowed if the return value is truthy
     req.remote_ip == '127.0.0.1' || req.remote_ip == '::1'
   end
 
diff --git a/config/initializers/twitter_regex.rb b/config/initializers/twitter_regex.rb
index 0ddbbee9828bfdcfefb1e28964d27df3ab28bef9..87815d45801c6a7bb8127c2020b4257830511484 100644
--- a/config/initializers/twitter_regex.rb
+++ b/config/initializers/twitter_regex.rb
@@ -29,7 +29,7 @@ module Twitter
       (                                                                                     #   $1 total match
         (#{REGEXEN[:valid_url_preceding_chars]})                                            #   $2 Preceding character
         (                                                                                   #   $3 URL
-          ((https?|dat|dweb|ipfs|ipns|ssb|gopher):\/\/)?                                    #   $4 Protocol (optional)
+          ((?:https?|dat|dweb|ipfs|ipns|ssb|gopher):\/\/)?                                  #   $4 Protocol (optional)
           (#{REGEXEN[:valid_domain]})                                                       #   $5 Domain(s)
           (?::(#{REGEXEN[:valid_port_number]}))?                                            #   $6 Port number (optional)
           (/#{REGEXEN[:valid_url_path]}*)?                                                  #   $7 URL Path and anchor
@@ -37,5 +37,54 @@ module Twitter
         )
       )
     }iox
+    REGEXEN[:validate_nodeid] = /(?:
+      #{REGEXEN[:validate_url_unreserved]}|
+      #{REGEXEN[:validate_url_pct_encoded]}|
+      [!$()*+,;=]
+    )/iox
+    REGEXEN[:validate_resid] = /(?:
+      #{REGEXEN[:validate_url_unreserved]}|
+      #{REGEXEN[:validate_url_pct_encoded]}|
+      #{REGEXEN[:validate_url_sub_delims]}
+    )/iox
+    REGEXEN[:valid_xmpp_uri] = %r{
+      (                                                                                     #   $1 total match
+        (#{REGEXEN[:valid_url_preceding_chars]})                                            #   $2 Preceding character
+        (                                                                                   #   $3 URL
+          ((?:xmpp):)                                                                       #   $4 Protocol
+          (//#{REGEXEN[:validate_nodeid]}+@#{REGEXEN[:valid_domain]}/)?                     #   $5 Authority (optional)
+          (#{REGEXEN[:validate_nodeid]}+@)?                                                 #   $6 Username in path (optional)
+          (#{REGEXEN[:valid_domain]})                                                       #   $7 Domain in path
+          (/#{REGEXEN[:validate_resid]}+)?                                                  #   $8 Resource in path (optional)
+          (\?#{REGEXEN[:valid_url_query_chars]}*#{REGEXEN[:valid_url_query_ending_chars]})? #   $9 Query String
+        )
+      )
+    }iox
+  end
+
+  module Extractor
+    # Extracts a list of all XMPP URIs included in the Tweet <tt>text</tt> along
+    # with the indices. If the <tt>text</tt> is <tt>nil</tt> or contains no
+    # XMPP URIs an empty array will be returned.
+    #
+    # If a block is given then it will be called for each XMPP URI.
+    def extract_xmpp_uris_with_indices(text, options = {}) # :yields: uri, start, end
+      return [] unless text && text.index(":")
+      urls = []
+
+      text.to_s.scan(Twitter::Regex[:valid_xmpp_uri]) do
+        valid_uri_match_data = $~
+
+        start_position = valid_uri_match_data.char_begin(3)
+        end_position = valid_uri_match_data.char_end(3)
+
+        urls << {
+          :url => valid_uri_match_data[3],
+          :indices => [start_position, end_position]
+        }
+      end
+      urls.each{|url| yield url[:url], url[:indices].first, url[:indices].last} if block_given?
+      urls
+    end
   end
 end
diff --git a/config/locales/activerecord.ast.yml b/config/locales/activerecord.ast.yml
index de95817c1fb9c1e83a059f38e355d5ada5bba2dc..4dfa507fc6010635885c20ee22f60a10de6bfa8a 100644
--- a/config/locales/activerecord.ast.yml
+++ b/config/locales/activerecord.ast.yml
@@ -1,6 +1,9 @@
 ---
 ast:
   activerecord:
+    attributes:
+      poll:
+        options: Escoyetes
     errors:
       models:
         account:
diff --git a/config/locales/activerecord.ca.yml b/config/locales/activerecord.ca.yml
index 2795a6b33815a0916805a97b5c4d8a778da86a9a..67dd9a09495606c8401abf42d2956c8cc7d3582d 100644
--- a/config/locales/activerecord.ca.yml
+++ b/config/locales/activerecord.ca.yml
@@ -14,4 +14,4 @@ ca:
         status:
           attributes:
             reblog:
-              taken: de l'estat ja existeix
+              taken: del tut ja existeix
diff --git a/config/locales/activerecord.fi.yml b/config/locales/activerecord.fi.yml
index 2b2ffd121a27f6e62e1563903674e54944859ce3..305042c42be8e8af01320e22105862a78e889c9c 100644
--- a/config/locales/activerecord.fi.yml
+++ b/config/locales/activerecord.fi.yml
@@ -10,4 +10,4 @@ fi:
         account:
           attributes:
             username:
-              invalid: Vain kirjaimia, numeroita ja alleviivoja
+              invalid: vain kirjaimia, numeroita ja alaviivoja
diff --git a/config/locales/activerecord.hi.yml b/config/locales/activerecord.hi.yml
new file mode 100644
index 0000000000000000000000000000000000000000..d758a5b5357d76effdf363eeb2c8e0dfb231c4aa
--- /dev/null
+++ b/config/locales/activerecord.hi.yml
@@ -0,0 +1 @@
+hi:
diff --git a/config/locales/activerecord.is.yml b/config/locales/activerecord.is.yml
new file mode 100644
index 0000000000000000000000000000000000000000..b5d656130fdbffa5ce89527e116fd9d5a5dce7b1
--- /dev/null
+++ b/config/locales/activerecord.is.yml
@@ -0,0 +1,17 @@
+---
+is:
+  activerecord:
+    attributes:
+      poll:
+        expires_at: Lokadagur
+        options: Valkostir
+    errors:
+      models:
+        account:
+          attributes:
+            username:
+              invalid: aðeins bókstafir, tölur og undirstrik
+        status:
+          attributes:
+            reblog:
+              taken: af stöðu er þegar fyrirliggjandi
diff --git a/config/locales/activerecord.kab.yml b/config/locales/activerecord.kab.yml
new file mode 100644
index 0000000000000000000000000000000000000000..21007347c498261a20be619f392392c5ad65a658
--- /dev/null
+++ b/config/locales/activerecord.kab.yml
@@ -0,0 +1,12 @@
+---
+kab:
+  activerecord:
+    attributes:
+      poll:
+        options: Tifranin
+    errors:
+      models:
+        account:
+          attributes:
+            username:
+              invalid: isekkilen, uá¹­á¹­unen d yijerriden n wadda kan
diff --git a/config/locales/activerecord.kn.yml b/config/locales/activerecord.kn.yml
new file mode 100644
index 0000000000000000000000000000000000000000..d094088d881ae4c57c4e2fa08b5d098293b0efde
--- /dev/null
+++ b/config/locales/activerecord.kn.yml
@@ -0,0 +1 @@
+kn:
diff --git a/config/locales/activerecord.ml.yml b/config/locales/activerecord.ml.yml
new file mode 100644
index 0000000000000000000000000000000000000000..baecb9e8234bd592d9cfd4ffea4dc3611a03ff25
--- /dev/null
+++ b/config/locales/activerecord.ml.yml
@@ -0,0 +1,12 @@
+---
+ml:
+  activerecord:
+    attributes:
+      poll:
+        expires_at: സമയപരിധി
+    errors:
+      models:
+        account:
+          attributes:
+            username:
+              invalid: അക്ഷരങ്ങളും, അക്കങ്ങളും, പിന്നെ അടിവരയും മാത്രം
diff --git a/config/locales/activerecord.mr.yml b/config/locales/activerecord.mr.yml
new file mode 100644
index 0000000000000000000000000000000000000000..6e4ffece9c6f4da209840052b6498e5f6f32c865
--- /dev/null
+++ b/config/locales/activerecord.mr.yml
@@ -0,0 +1,13 @@
+---
+mr:
+  activerecord:
+    attributes:
+      poll:
+        expires_at: संपण्याची वेळ
+        options: पर्याय
+    errors:
+      models:
+        account:
+          attributes:
+            username:
+              invalid: फक्त अक्षरे, अंक आणि अंडरस्कोर चिन्ह
diff --git a/config/locales/activerecord.nn.yml b/config/locales/activerecord.nn.yml
index 777f4e600f65daa6a550f2cf0f04551a49cf4fcd..31f1682bd0c61771aeff8bca31334d4149ee17f7 100644
--- a/config/locales/activerecord.nn.yml
+++ b/config/locales/activerecord.nn.yml
@@ -1 +1,17 @@
+---
 nn:
+  activerecord:
+    attributes:
+      poll:
+        expires_at: Frist
+        options: Val
+    errors:
+      models:
+        account:
+          attributes:
+            username:
+              invalid: bare bokstaver, tall og understreker
+        status:
+          attributes:
+            reblog:
+              taken: av status eksisterer allerede
diff --git a/config/locales/activerecord.no.yml b/config/locales/activerecord.no.yml
index 3676b953ca1dc6982f3005148c15aee1ae66ef95..553bd65bfcbdab77499b255d6039ba9024b755e9 100644
--- a/config/locales/activerecord.no.yml
+++ b/config/locales/activerecord.no.yml
@@ -1,6 +1,10 @@
 ---
 'no':
   activerecord:
+    attributes:
+      poll:
+        expires_at: Tidsfrist
+        options: Valg
     errors:
       models:
         account:
diff --git a/config/locales/activerecord.pt-BR.yml b/config/locales/activerecord.pt-BR.yml
index 3f2b6aaaa4edd7ab6de5244615366414a169df50..5a7d48bc32e3da7fa50d7129420413723dae0d3e 100644
--- a/config/locales/activerecord.pt-BR.yml
+++ b/config/locales/activerecord.pt-BR.yml
@@ -4,13 +4,13 @@ pt-BR:
     attributes:
       poll:
         expires_at: Expira em
-        options: Escolhas
+        options: Opções
     errors:
       models:
         account:
           attributes:
             username:
-              invalid: apenas letras, números e '_' são permitidos
+              invalid: apenas letras, números e underlines ( "_" )
         status:
           attributes:
             reblog:
diff --git a/config/locales/activerecord.pt-PT.yml b/config/locales/activerecord.pt-PT.yml
index cbb053a9005979179c92c95980dcf562558ba5f0..884b79fa1b9dbe6c9ea373d47de43880c2e6df17 100644
--- a/config/locales/activerecord.pt-PT.yml
+++ b/config/locales/activerecord.pt-PT.yml
@@ -1,6 +1,10 @@
 ---
 pt-PT:
   activerecord:
+    attributes:
+      poll:
+        expires_at: Expira em
+        options: Escolhas
     errors:
       models:
         account:
diff --git a/config/locales/activerecord.ta.yml b/config/locales/activerecord.ta.yml
index 4320953ce2ab23ded9cc319b3002dfc1bc13903a..781fbd2d96459e4617586c781ac473da00290742 100644
--- a/config/locales/activerecord.ta.yml
+++ b/config/locales/activerecord.ta.yml
@@ -1 +1,17 @@
+---
 ta:
+  activerecord:
+    attributes:
+      poll:
+        expires_at: காலக்கெடு
+        options: தேர்வுகள்
+    errors:
+      models:
+        account:
+          attributes:
+            username:
+              invalid: எழுத்துகள், எண்கள் மற்றும் அடிக்கோடுகள் மட்டுமே
+        status:
+          attributes:
+            reblog:
+              taken: ஏற்கனவே பதியப்பட்டது
diff --git a/config/locales/activerecord.ur.yml b/config/locales/activerecord.ur.yml
new file mode 100644
index 0000000000000000000000000000000000000000..2cace5883d37506345d4879a61f6f3692bc2e7c0
--- /dev/null
+++ b/config/locales/activerecord.ur.yml
@@ -0,0 +1 @@
+ur:
diff --git a/config/locales/activerecord.vi.yml b/config/locales/activerecord.vi.yml
new file mode 100644
index 0000000000000000000000000000000000000000..61d64b6c693993b31771b6fd27dd645f83cc92bc
--- /dev/null
+++ b/config/locales/activerecord.vi.yml
@@ -0,0 +1,17 @@
+---
+vi:
+  activerecord:
+    attributes:
+      poll:
+        expires_at: Hạn chót
+        options: Lựa chọn
+    errors:
+      models:
+        account:
+          attributes:
+            username:
+              invalid: chỉ chấp nhận số, ký tự, và dấu gạch dưới
+        status:
+          attributes:
+            reblog:
+              taken: của trạng thái đã tồn tại
diff --git a/config/locales/ar.yml b/config/locales/ar.yml
index 2bf6789be1d7a65968e0c3b1b15fd35a97974501..1519be44bf273ec384748ddb8dfd03603abd6655 100644
--- a/config/locales/ar.yml
+++ b/config/locales/ar.yml
@@ -9,7 +9,7 @@ ar:
     administered_by: 'يُديره:'
     api: واجهة برمجة التطبيقات
     apps: تطبيقات الأجهزة المحمولة
-    apps_platforms: إستخدم ماستودون في iOS، أندرويد وأنظمة أخرى
+    apps_platforms: استخدم ماستدون على iOS وأندرويد وأنظمة أخرى
     browse_directory: تصفح دليل الصفحات التعريفية وصفّي بحسب الإهتمام
     browse_public_posts: تصفح تيارًا مباشرًا مِن منشورات عامة على ماستدون
     contact: للتواصل معنا
@@ -39,6 +39,7 @@ ar:
     unavailable_content_description:
       domain: الخادم
       reason: 'السبب:'
+      silenced: 'سيتم إخفاء المنشورات القادمة من هذه الخوادم في الخيوط الزمنية والمحادثات العامة، ولن يتم إنشاء أي إخطارات من جراء تفاعلات مستخدميها، ما لم تُتَابعهم:'
     user_count_after:
       few: مستخدمين
       many: مستخدمين
@@ -50,6 +51,7 @@ ar:
     what_is_mastodon: ما هو ماستدون ؟
   accounts:
     choices_html: 'توصيات %{name}:'
+    endorsements_hint: يمكنك التوصية بالأشخاص الذين تتابعهم من واجهة الويب، وسيظهرون هنا.
     follow: اتبع
     followers:
       few: متابِعون
@@ -124,9 +126,7 @@ ar:
       email_status: حالة البريد الإلكتروني
       enable: تفعيل
       enabled: مفعَّل
-      feed_url: عنوان رابط التغذية
       followers: المتابِعون
-      followers_url: عنوان رابط المتابِعين
       follows: يتابع
       header: الرأسية
       inbox_url: رابط صندوق الوارد
@@ -154,10 +154,8 @@ ar:
       no_account_selected: لم يطرأ أي تغيير على أي حساب بما أنه لم يتم اختيار أي واحد
       no_limits_imposed: مِن دون حدود مشروطة
       not_subscribed: غير مشترك
-      outbox_url: رابط صندوق الصادر
       pending: في انتظار المراجعة
       perform_full_suspension: تعليق الحساب
-      profile_url: رابط الصفحة التعريفية
       promote: ترقية
       protocol: البروتوكول
       public: عمومي
@@ -180,8 +178,8 @@ ar:
         moderator: مشرف
         staff: الفريق
         user: مستخدِم
-      salmon_url: عنوان رابط سالمون Salmon
       search: البحث
+      search_same_ip: مستخدِمون آخرون بنفس الـ IP
       shared_inbox_url: رابط الصندوق المُشترَك للبريد الوارد
       show:
         created_reports: البلاغات التي أنشأها هذا الحساب
@@ -208,10 +206,12 @@ ar:
         confirm_user: "%{name} قد قام بتأكيد عنوان البريد الإلكتروني لـ %{target}"
         create_account_warning: قام %{name} بإرسال تحذير إلى %{target}
         create_custom_emoji: "%{name} قام برفع إيموجي جديد %{target}"
+        create_domain_allow: قام %{name} بإضافة النطاق %{target} إلى القائمة البيضاء
         create_domain_block: "%{name} قام بحجب نطاق %{target}"
         create_email_domain_block: "%{name} قد قام بحظر نطاق البريد الإلكتروني %{target}"
         demote_user: "%{name} قد قام بإنزال الرتبة الوظيفية لـ %{target}"
         destroy_custom_emoji: قام %{name} بحذف الإيموجي %{target}
+        destroy_domain_allow: قام %{name} بإزالة النطاق %{target} مِن القائمة البيضاء
         destroy_domain_block: "%{name} قام بإلغاء الحجب عن النطاق %{target}"
         destroy_email_domain_block: قام %{name} بإضافة نطاق البريد الإلكتروني %{target} إلى اللائحة البيضاء
         destroy_status: لقد قام %{name} بحذف منشور %{target}
@@ -326,9 +326,9 @@ ar:
         affected_accounts:
           few: "%{count} حسابات معنية في قاعدة البيانات"
           many: "%{count} حسابات معنية في قاعدة البيانات"
-          one: حساب واحد معني في قاعدة البيانات
+          one: حساب واحد %{count} معني في قاعدة البيانات
           other: "%{count} حسابات معنية في قاعدة البيانات"
-          two: "%{count} حسابات معنية في قاعدة البيانات"
+          two: حسابين %{count} معنيين في قاعدة البيانات
           zero: "%{count} حسابات معنية في قاعدة البيانات"
         retroactive:
           silence: إلغاء الكتم عن كافة الحسابات المتواجدة على هذا النطاق
@@ -342,6 +342,7 @@ ar:
       delete: حذف
       destroyed_msg: تم حذف نطاق البريد الإلكتروني من اللائحة السوداء بنجاح
       domain: النطاق
+      empty: ليس هناك أية نطاقات للبريد الإلكتروني مُدرَجة في القائمة السوداء.
       new:
         create: إضافة نطاق
         title: إضافة نطاق بريد جديد إلى اللائحة السوداء
@@ -393,15 +394,13 @@ ar:
       pending: في انتظار تسريح المُرحِّل
       save_and_enable: حفظ وتشغيل
       setup: إعداد اتصال بمُرحّل
+      signatures_not_enabled: لن تعمل المُرحِّلات بشكل صحيح إن تم تنشيط الوضع الآمن أو وضع القائمة البيضاء
       status: الحالة
       title: المُرحّلات
     report_notes:
       created_msg: تم إنشاء ملاحظة الشكوى بنجاح!
       destroyed_msg: تم حذف ملاحظة الشكوى بنجاح!
     reports:
-      account:
-        note: ملحوظة
-        report: تقرير
       action_taken_by: تم اتخاذ الإجراء مِن طرف
       are_you_sure: هل أنت متأكد ؟
       assign_to_self: عين لي
@@ -441,8 +440,12 @@ ar:
       custom_css:
         desc_html: يقوم بتغيير المظهر بواسطة سي أس أس يُحمَّل على كافة الصفحات
         title: سي أس أس مخصص
+      default_noindex:
+        title: عدم السماح مبدئيا لمحركات البحث بفهرسة الملفات التعريفية للمستخدمين
       domain_blocks:
         all: للجميع
+        disabled: لا أحد
+        title: اظهر خاصية حجب النطاقات
       domain_blocks_rationale:
         title: اظهر السبب
       hero:
@@ -500,6 +503,8 @@ ar:
         desc_html: عرض الخيط العمومي على صفحة الاستقبال
         title: مُعاينة الخيط العام
       title: إعدادات الموقع
+      trendable_by_default:
+        title: السماح للوسوم بالظهور على المتداوَلة بدون مراجعة مسبقة
       trends:
         title: الوسوم المتداولة
     statuses:
@@ -517,6 +522,8 @@ ar:
       title: منشورات الحساب
       with_media: تحتوي على وسائط
     tags:
+      accounts_today: استخدامات هذا اليوم
+      accounts_week: استخدامات هذا الأسبوع
       context: السياق
       directory: في دليل حسابات المستخدمين
       in_directory: "%{count} في سجل حسابات المستخدمين"
@@ -545,16 +552,26 @@ ar:
       body: قام %{reporter} بالإبلاغ عن %{target}
       body_remote: أبلغ شخص ما من %{domain} عن %{target}
       subject: تقرير جديد ل%{instance} (#%{id})
+  aliases:
+    add_new: أنشئ كُنية
+    created_msg: تم إنشاء الكُنية الجديدة بنجاح. يمكنكم الآن الشروع في الإنتقال مِن حسابكم القديم.
+    remove: إلغاء ربط الكنية
   appearance:
     advanced_web_interface: واجهة الويب المتقدمة
     animations_and_accessibility: الإتاحة والحركة
     confirmation_dialogs: نوافذ التأكيد
     discovery: استكشاف
+    localization:
+      body: ماستدون يُترجِمه متطوّعون.
+      guide_link: https://crowdin.com/project/mastodon
+      guide_link_text: يمكن للجميع المساهمة.
     sensitive_content: محتوى حساس
+    toot_layout: تصميم التبويق
   application_mailer:
     notification_preferences: تعديل خيارات البريد الإلكتروني
     salutation: "%{name}،"
     settings: 'تغيير تفضيلات البريد الإلكتروني: %{link}'
+    view: 'اعرض:'
     view_profile: اعرض الصفحة التعريفية
     view_status: عرض المنشور
   applications:
@@ -575,6 +592,7 @@ ar:
     description:
       prefix_invited_by_user: يدعوك @%{name} للاتحاق بخادم ماستدون هذا!
       prefix_sign_up: أنشئ حسابًا على ماستدون اليوم!
+      suffix: بفضل حساب ، ستكون قادرا على متابعة الأشخاص ونشر تحديثات وتبادل رسائل مع مستخدمين مِن أي خادم Mastodon وأكثر!
     didnt_get_confirmation: لم تتلق تعليمات التأكيد ؟
     forgot_password: نسيت كلمة المرور ؟
     invalid_reset_password_token: رمز إعادة تعيين كلمة المرور غير صالح أو منتهي الصلاحية. يرجى طلب واحد جديد.
@@ -593,9 +611,11 @@ ar:
     security: الأمان
     set_new_password: إدخال كلمة مرور جديدة
     setup:
+      email_below_hint_html: إذا كان عنوان البريد الإلكتروني التالي غير صحيح، فيمكنك تغييره هنا واستلام بريد إلكتروني جديد للتأكيد.
       title: الضبط
     status:
       account_status: حالة الحساب
+      confirming: في انتظار اكتمال تأكيد البريد الإلكتروني.
       functional: حسابك جاهز.
       redirecting_to: حسابك غير نشط لأنه تم تحويله حاليا إلى %{acct}.
     trouble_logging_in: هل صادفتكم مشكلة في الولوج؟
@@ -612,6 +632,7 @@ ar:
     title: إتباع %{acct}
   challenge:
     confirm: واصل
+    hint_html: "<strong>توصية:</strong> لن نطلب منك ثانية كلمتك السرية في غضون الساعة اللاحقة."
     invalid_password: الكلمة السرية خاطئة
     prompt: أكِّد الكلمة السرية للمواصلة
   datetime:
@@ -652,7 +673,7 @@ ar:
     '400': The request you submitted was invalid or malformed.
     '403': ليس لك الصلاحيات الكافية لعرض هذه الصفحة.
     '404': إنّ الصفحة التي تبحث عنها لا وجود لها أصلا.
-    '406': This page is not available in the requested format.
+    '406': إنّ هذه الصفحة غير متوفّرة في النسق المطلوب.
     '410': إنّ الصفحة التي تبحث عنها لم تعد موجودة.
     '422':
       content: فشل التحقق الآمن. ربما منعتَ كعكات الكوكيز؟
@@ -661,22 +682,22 @@ ar:
     '500':
       content: نحن متأسفون، لقد حدث خطأ ما مِن جانبنا.
       title: هذه الصفحة خاطئة
-    '503': The page could not be served due to a temporary server failure.
+    '503': تعذر تحميل الصفحة بسبب فشل مؤقت في الخادم.
     noscript_html: يرجى تفعيل الجافا سكريبت لاستخدام تطبيق الويب لماستدون، أو عِوض ذلك قوموا بتجريب إحدى <a href="%{apps_path}">التطبيقات الأصلية</a> الدّاعمة لماستدون على منصّتكم.
   existing_username_validator:
+    not_found: لم نتمكّن مِن العثور على مستخدم محلي باسم المستخدم هذا
     not_found_multiple: تعذر العثور على %{usernames}
   exports:
     archive_takeout:
       date: التاريخ
       download: تنزيل نسخة لحسابك
       hint_html: بإمكانك طلب نسخة كاملة لـ <strong>كافة تبويقاتك و الوسائط التي قمت بنشرها</strong>. البيانات المُصدَّرة ستكون محفوظة على شكل نسق ActivityPub و باستطاعتك قراءتها بأي برنامج يدعم هذا النسق. يُمكنك طلب نسخة كل 7 أيام.
-      in_progress: عملية جمع نسخة لبيانات حسابك جارية...
-      request: طلب نسخة لحسابك
+      in_progress: جارٍ انشاء نسخة لبيانات حسابك…
+      request: اطلب نسخة مِن حسابك
       size: الحجم
     blocks: قمت بحظر
     csv: CSV
     domain_blocks: النطاقات المحظورة
-    follows: أنت تتبع
     lists: القوائم
     mutes: قُمتَ بكتم
     storage: ذاكرة التخزين
@@ -780,11 +801,13 @@ ar:
     cancel: ألغِ التوجيه
     cancelled_msg: تم إلغاء التوجيه بنجاح.
     errors:
+      already_moved: هو نفسه نفس الحساب الذي قمت بالإنتقال إليه
       move_to_self: لا يمكنه أن يكون الحساب الحالي
       not_found: تعذر العثور عليه
       on_cooldown: إنّك في مرحلة الجمود
     followers_count: المتابِعين عند الإنتقال
     incoming_migrations: الانتقال مِن حساب آخر
+    incoming_migrations_html: قصد الإنتقال من حساب آخَر إلى هذا يجب عليك أوّلًا <a href="%{path}">إنشاء كُنية حساب</a>.
     not_redirecting: حاليا ، حسابك لا يقوم بالتحويل إلى أي حساب آخر.
     past_migrations: التهجيرات السابقة
     proceed_with_move: انقل مشارِكيك
@@ -792,6 +815,7 @@ ar:
     set_redirect: تعين إعادة التوجيه
     warning:
       before: 'يرجى قراءة هذه الملاحظات بتأنّي قبل المواصلة:'
+      other_data: لن يتم نقل أية بيانات أخرى تلقائيا
   moderation:
     title: الإشراف
   notification_mailer:
@@ -836,6 +860,10 @@ ar:
       body: 'قام %{name} بترقية منشورك:'
       subject: قام %{name} بترقية منشورك
       title: ترقية جديدة
+  notifications:
+    email_events: الأحداث للإشعارات عبر البريد الإلكتروني
+    email_events_hint: 'اختر الأحداث التي تريد أن تصِلَك اشعارات عنها:'
+    other_settings: إعدادات أخرى للإشعارات
   number:
     human:
       decimal_units:
@@ -859,6 +887,7 @@ ar:
       duration_too_long: بعيد جدا في المستقبَل
       duration_too_short: مبكّر جدا
       expired: لقد انتهى استطلاع الرأي
+      too_many_options: لا يمكنه أن يحتوي أكثر مِن %{max} عناصر
   preferences:
     other: إعدادات أخرى
     posting_defaults: التفضيلات الافتراضية لنشر التبويقات
@@ -866,6 +895,8 @@ ar:
   relationships:
     activity: نشاط الحساب
     dormant: في سبات
+    followers: المتابِعون
+    following: يُتابِع
     last_active: آخر نشاط
     most_recent: الأحدث
     moved: هاجر
@@ -939,6 +970,7 @@ ar:
   settings:
     account: الحساب
     account_settings: إعدادات الحساب
+    aliases: كُنيات الحساب
     appearance: المظهر
     authorized_apps: التطبيقات المرخص لها
     back: عودة إلى ماستدون
@@ -993,6 +1025,13 @@ ar:
       private: لا يمكن تدبيس تبويق لم يُنشر للعامة
       reblog: لا يمكن تثبيت ترقية
     poll:
+      total_people:
+        few: "%{count} أشخاص"
+        many: "%{count} أشخاص"
+        one: "%{count} شخص واحد"
+        other: "%{count} شخصا"
+        two: "%{count} شخصين"
+        zero: "%{count} شخص"
       total_votes:
         few: "%{count} أصوات"
         many: "%{count} أصوات"
@@ -1046,11 +1085,13 @@ ar:
       subject: نسخة بيانات حسابك جاهزة للتنزيل
       title: المغادرة بأرشيف الحساب
     warning:
+      get_in_touch: يمكنك الرد على هذا البريد الإلكتروني للاتصال بفريق %{instance}.
       review_server_policies: مراجعة شروط السيرفر
       statuses: 'خصيصا لـ:'
       subject:
         disable: تم تجميد حسابك %{acct}
         none: تحذير إلى %{acct}
+        silence: إنّ حسابك %{acct} محدود
         suspend: لقد تم تعليق حسابك %{acct}
       title:
         disable: الحساب مُجمَّد
@@ -1068,10 +1109,12 @@ ar:
       full_handle: عنوانك الكامل
       full_handle_hint: هذا هو ما يجب تقديمه لأصدقائك قصد أن يكون بإمكانهم متابَعتك أو مُراسَلتك حتى و إن كانت حساباتهم على خوادم أخرى.
       review_preferences_action: تعديل التفضيلات
+      review_preferences_step: تأكد من ضبط تفضيلاتك ، مثلًا أية رسائل بريد إلكترونية ترغب في تلقيها أو أي مستوى للخصوصية ترغب في اسناده افتراضيًا لمنشوراتك. إن كانت الحركة لا تُعكّر مزاجك فيمكنك إختيار تفعيل التشغيل التلقائي لوسائط GIF المتحركة.
       subject: أهلًا بك على ماستدون
       tip_federated_timeline: الخيط الزمني الفديرالي هو بمثابة شبه نظرة شاملة على شبكة ماستدون. غير أنه لا يشمل إلا على الأشخاص المتابَعين مِن طرف جيرانك و جاراتك، لذا فهذا الخيط لا يعكس كافة الشبكة برُمّتها.
       tip_following: أنت تتبع تلقائيا مديري و مديرات الخادم. للعثور على أشخاص مميزين أو قد تهمك حساباتهم بإمكانك الإطلاع على الخيوط العامة المحلية و كذا الفدرالية.
       tip_local_timeline: الخيط العام المحلي هو بمثابة نظرة سريعة على الأشخاص المتواجدين على %{instance} يمكن اعتبارهم كجيرانك وجاراتك الأقرب إليك!
+      tip_mobile_webapp: إن كان متصفحك على جهازك المحمول يُتيح ميزة إضافة Mastodon على شاشتك الرئيسية ، فيمكنك تلقي الإشعارات المدفوعة. إنه يعمل كتطبيق أصلي بحت!
       tips: نصائح
       title: أهلاً بك، %{name}!
   users:
diff --git a/config/locales/ast.yml b/config/locales/ast.yml
index ed8aef235433dc643b604981dc2de8cf48c7fb5e..6c757558efd0366c5d5c3f669943f97924e602d9 100644
--- a/config/locales/ast.yml
+++ b/config/locales/ast.yml
@@ -1,18 +1,29 @@
 ---
 ast:
   about:
-    about_mastodon_html: Mastodon ye una rede social basada en protocolos abiertos y software de códigu llibre. Ye descentralizada, como'l corréu electrónicu.
+    about_hashtag_html: Estos son los barritos públicos etiquetaos con <strong>#%{hashtag}</strong>. Pues interactuar con ellos si tienes una cuenta en cualesquier parte del fediversu.
+    about_mastodon_html: 'La rede social del futuru: ¡ensin anuncios nin vixilancia, con un diseñu éticu y descentralizáu! Controla los tos datos con Mastodon.'
     about_this: Tocante a
     administered_by: 'Alministráu por:'
+    api: API
+    browse_directory: Restola nun direutoriu de perfiles y peñera polos intereses
     contact: Contautu
     contact_missing: Nun s'afitó
     contact_unavailable: N/D
+    discover_users: Descubri usuarios
     documentation: Documentación
+    federation_hint_html: Con una cuenta en %{instance} vas ser a siguir a persones de cualesquier sirvidor de Mastodon y más.
     hosted_on: Mastodon ta agospiáu en %{domain}
-    learn_more: Deprendi más
+    learn_more: Deprender más
+    privacy_policy: Política de privacidá
+    server_stats: 'Estadístiques del sirvidor:'
     source_code: Códigu fonte
     status_count_before: Que crearon
+    tagline: Sigui a persones y conoz a más
     terms: Términos del serviciu
+    unavailable_content_description:
+      domain: Sirvidor
+      reason: Razón
     user_count_after:
       one: usuariu
       other: usuarios
@@ -20,29 +31,39 @@ ast:
     what_is_mastodon: "¿Qué ye Mastodon?"
   accounts:
     followers:
-      one: Xente que te sigue
+      one: Siguidor
       other: Siguidores
     joined: Xunióse en %{date}
+    last_active: última actividá
     moved_html: "%{name} mudóse a %{new_profile_link}:"
     network_hidden: Esta información nun ta disponible
+    never_active: Enxamás
     nothing_here: "¡Equí nun hai nada!"
     people_followed_by: Persones a les que sigue %{name}
     people_who_follow: Persones que siguen a %{name}
-    posts_with_replies: Toots y rempuestes
+    posts:
+      one: Barritu
+      other: Barritos
+    posts_tab_heading: Barritos
+    posts_with_replies: Barritos y rempuestes
     reserved_username: El nome d'usuariu ta acutáu
     roles:
       bot: Robó
   admin:
     accounts:
+      approve_all: Aprobar too
       are_you_sure: "¿De xuru?"
+      avatar: Avatar
       by_domain: Dominiu
       domain: Dominiu
       email: Corréu
       followers: Siguidores
+      ip: IP
       location:
         local: Llocal
         title: Allugamientu
       protocol: Protocolu
+      reject_all: Refugar too
       resend_confirmation:
         already_confirmed: Esti usuariu yá ta confirmáu
       role: Permisos
@@ -53,11 +74,21 @@ ast:
       statuses: Estaos
       title: Cuentes
       username: Nome d'usuariu
+      web: Web
     action_logs:
       actions:
+        create_account_warning: "%{name} unvió una alvertencia a %{target}"
         create_domain_block: "%{name} bloquió'l dominiu %{target}"
         disable_custom_emoji: "%{name} desactivó'l fustaxe %{target}"
         disable_user: "%{name} desactivó l'aniciu de sesión del usuariu %{target}"
+        enable_custom_emoji: "%{name} activó'l fustaxe %{target}"
+        promote_user: "%{name} ascendió al usuariu %{target}"
+        remove_avatar_user: "%{name} desanició l'avatar de %{target}"
+        reopen_report: "%{name} reabrió l'informe de %{target}"
+        reset_password_user: "%{name} reafitó la contraseña del usuariu %{target}"
+        resolve_report: "%{name} resolvió l'informe de %{target}"
+        silence_account: "%{name} silenció la cuenta de %{target}"
+        suspend_account: "%{name} suspendió la cuenta de %{target}"
     custom_emojis:
       by_domain: Dominiu
       copy_failed_msg: Nun pudo facese una copia llocal d'esi fustaxe
@@ -68,8 +99,10 @@ ast:
       feature_registrations: Rexistros
       features: Carauterístiques
       hidden_service: Federación con servicios anubríos
-      recent_users: Usuarios recientes
+      recent_users: Usuarios de recién
+      software: Software
       total_users: usuarios en total
+      trends: Tendencies
       week_interactions: interaiciones d'esta selmana
       week_users_new: usuarios d'esta selmana
     domain_blocks:
@@ -77,7 +110,8 @@ ast:
     email_domain_blocks:
       domain: Dominiu
     instances:
-      title: Instancies conocíes
+      by_domain: Dominiu
+      title: Federación
     invites:
       filter:
         available: Disponible
@@ -85,6 +119,7 @@ ast:
       title: Invitaciones
     relays:
       save_and_enable: Guardar y activar
+      status: Estáu
     reports:
       are_you_sure: "¿De xuru?"
       status: Estáu
@@ -93,28 +128,54 @@ ast:
         min_invite_role:
           disabled: Naide
       site_description:
-        title: Descipción de la instancia
-      site_title: Nome de la instancia
+        title: Descripción del sirvidor
+      site_title: Nome del sirvidor
       title: Axustes del sitiu
     statuses:
       failed_to_execute: Fallu al executar
+    tags:
+      context: Contestu
+      most_recent: Lo más recién
+      name: Etiqueta
+      title: Etiquetes
     title: Alministración
   admin_mailer:
+    new_pending_account:
+      body: Los detalles de la cuenta nueva tán embaxo. Pues aprobar o refugar esta aplicación.
     new_report:
       body_remote: Daquién dende %{domain} informó de %{target}
+    new_trending_tag:
+      body: 'Güei la etiqueta #%{name} ye tendencia pero nun se revisó anteriormente. Nun va amosase públicamente a nun ser que lo permitas o guardes el formulariu como ta pa nun saber más d''ello.'
+  appearance:
+    advanced_web_interface: Interfaz web avanzada
+    confirmation_dialogs: Diálogos de confirmación
+    discovery: Descubrición
+    localization:
+      body: Mastodon tradúcenlu voluntarios,
+      guide_link: https://crowdin.com/project/mastodon
+      guide_link_text: tol mundu pue collaborar.
+    toot_layout: Distribución de los barritos
   applications:
     invalid_url: La URL apurrida nun ye válida
-    warning: Ten curiáu con estos datos, ¡enxamás nun los compartas con naide!
+    warning: Ten munchu curiáu con estos datos, ¡enxamás nun los compartas con naide!
   auth:
     change_password: Contraseña
+    checkbox_agreement_html: Aceuto les <a href="%{rules_path}" target="_blank">regles del sirvidor</a> y los <a href="%{terms_path}" target="_blank">términos del serviciu</a>
+    checkbox_agreement_without_rules_html: Aceuto los <a href="%{terms_path}" target="_blank"> términos del serviciu</a>
     delete_account: Desaniciu de la cuenta
     delete_account_html: Si deseyes desaniciar la to cuenta, pues <a href="%{path}">siguir equí</a>. Va pidísete la confirmación.
+    description:
+      suffix: "¡Con una cuenta, vas ser a siguir a persones, espublizar anovamientos ya intercambiar mensaxes con usuarios de cualesquier sirvidor de Mastodon y más!"
     forgot_password: "¿Escaeciesti la contraseña?"
     login: Aniciar sesión
     migrate_account: Mudase a otra cuenta
-    migrate_account_html: Si deseyes redirixir esta cuenta a otra, pues <a href="%{path}"> configuralo equí</a>.
+    migrate_account_html: Si deseyes redirixir esta cuenta a otra, pues <a href="%{path}">configuralo equí</a>.
+    providers:
+      cas: CAS
+      saml: SAML
     register: Rexistrase
     security: Seguranza
+    trouble_logging_in: "¿Problemes col aniciu de sesión?"
   authorize_follow:
     already_following: Yá tas siguiendo a esta cuenta
     error: Desafortunadamente, hebo un fallu guetando la cuenta remota
@@ -129,10 +190,13 @@ ast:
       less_than_x_seconds: Púramente agora
   deletes:
     confirm_password: Introduz la contraseña pa verificar la to identidá
+    warning:
+      email_contact_html: Si entá nun aportó, pues unviar un corréu a<a href="mailto:%{email}">%{email}</a> pa más ayuda
+      more_details_html: Pa más detalles, mira la <a href="%{terms_path}">política de privacidá</a>.
   errors:
     '400': The request you submitted was invalid or malformed.
     '403': Nun tienes permisu pa ver esta páxina.
-    '404': La páxina que tabes guetando nun esiste.
+    '404': La páxina que tabes guetando nun ta equí.
     '406': This page is not available in the requested format.
     '410': La páxina que tabes guetando yá nun esiste.
     '422':
@@ -144,26 +208,39 @@ ast:
   exports:
     archive_takeout:
       date: Data
-      hint_html: Pues solicitar un archivu colos tos <strong>toots y ficheros xubíos</strong>. Los datos esportaos van tar nel formatu ActivityPub, llexible pa cualesquier software que seya compatible. Pues solicitar un archivu cada 7 díes.
+      hint_html: Pues solicitar un archivu colos tos <strong>barritos y ficheros xubíos</strong>. Los datos esportaos van tar nel formatu ActivityPub, llexible pa cualesquier software que seya compatible. Pues solicitar un archivu cada 7 díes.
       request: Solicitar l'archivu
       size: Tamañu
     blocks: Xente que bloquiesti
-    follows: Xente que sigues
+    csv: CSV
+    lists: Llistes
     mutes: Xente que silenciesti
+  featured_tags:
+    add_new: Amestar
   filters:
     contexts:
       notifications: Avisos
       public: Llinies temporales públiques
       thread: Conversaciones
     index:
+      empty: Nun tienes peñeres.
       title: Peñeres
     new:
       title: Amestar una peñera nueva
+  footer:
+    developers: Desendolcadores
+    more: Más…
+    resources: Recursos
   generic:
+    all: Too
     changes_saved_msg: "¡Los cambeos guardáronse con ésitu!"
     save_changes: Guardar cambeos
+  identity_proofs:
+    authorize: Sí, autorizar
+    i_am_html: Soi %{username} de %{service}.
+    identity: Identidá
   imports:
-    preface: Pues importar los datos qu'esportares dende otra instancia, como por exemplu la llista de persones que bloquiares o tubieres siguiendo.
+    preface: Pues importar los datos qu'esportares dende otra instancia, como por exemplu la llista de persones que bloquiares o tuvieres siguiendo.
     types:
       blocking: Llista de xente bloquiao
       following: Llista de siguidores
@@ -180,13 +257,16 @@ ast:
       '604800': 1 selmana
       '86400': 1 día
     expires_in_prompt: Enxamás
+    generate: Xenerar un enllaz d'invitación
     invited_by: 'Convidóte:'
     max_uses:
       one: 1 usu
       other: "%{count} usos"
+    prompt: Xenera y comparti enllaces con otros pa da-yos accesu a esti sirividor
     table:
       expires_at: Data de caducidá
       uses: Usos
+    title: Convidar a persones
   lists:
     errors:
       limit: Algamesti la cantidá máxima de llistes
@@ -196,6 +276,8 @@ ast:
       too_many: Nun puen axuntase más de 4 ficheros
   migrations:
     acct: nome_usuariu@dominiu de la cuenta nueva
+    warning:
+      followers: Esta aición va mover tolos siguidores de la cuenta actual a la nueva
   notification_mailer:
     digest:
       body: Equí hai un resume de los mensaxes que nun viesti dende la última visita'l %{since}
@@ -213,31 +295,83 @@ ast:
     reblog:
       body: "%{name} compartió'l to estáu:"
       subject: "%{name} compartió'l to estáu"
-      title: Compartición nueva de toot
+      title: Compartición nueva de barritu
+  notifications:
+    email_events_hint: 'Esbilla los eventos de los que quies recibir avisos:'
+    other_settings: Otros axustes
   pagination:
     next: Siguiente
+  polls:
+    errors:
+      already_voted: Yá votesti nesta encuesta
+      expired: La encuesta yá finó
+  preferences:
+    public_timelines: Llinies temporales públiques
+  relationships:
+    followers: Siguidores
+    most_recent: Lo más recién
+    relationship: Rellación
+    remove_selected_follows: Dexar de siguir a los usuarios esbillaos
   remote_follow:
     acct: Introduz el nome_usuariu@dominiu dende'l que lo quies facer
     no_account_html: "¿Nun tienes una cuenta? Pues <a href='%{sign_up_path}' target='_blank'>rexistrate equí</a>"
     proceed: Siguir
     prompt: 'Vas siguir a:'
+  remote_interaction:
+    reblog:
+      prompt: 'Quies compartir esti barritu:'
+    reply:
+      prompt: 'Quies responder a esti barritu:'
   sessions:
     browser: Restolador
     browsers:
+      alipay: Alipay
+      blackberry: Blackberry
+      chrome: Chrome
+      edge: Microsoft Edge
+      electron: Electron
+      firefox: Firefox
       generic: Restolador desconocíu
+      ie: Internet Explorer
+      micro_messenger: MicroMessenger
+      opera: Opera
+      otter: Otter
+      phantom_js: PhantomJS
+      qq: QQ Browser
+      safari: Safari
+      uc_browser: UCBrowser
+      weibo: Weibo
     current_session: Sesión actual
     description: "%{browser} en %{platform}"
+    ip: IP
     platforms:
+      adobe_air: Adobe Air
+      android: Android
+      blackberry: Blackberry
+      chrome_os: ChromeOS
+      firefox_os: Firefox OS
+      ios: iOS
+      linux: Linux
+      mac: Mac
       other: plataforma desconocida
+      windows: Windows
+      windows_mobile: Windows Mobile
+      windows_phone: Windows Phone
     title: Sesiones
   settings:
+    account: Cuenta
+    appearance: Aspeutu
     authorized_apps: Aplicaciones autorizaes
     back: Volver a Mastodon
-    edit_profile: Edición del perfil
+    development: Desendolcu
+    edit_profile: Editar el perfil
     export: Esportación de datos
+    featured_tags: Etiquetes destacaes
     import: Importación
+    import_and_export: Importación y esportación
     notifications: Avisos
     preferences: Preferencies
+    profile: Perfil
     two_factor_authentication: Autenticación en dos pasos
   statuses:
     attached:
@@ -247,20 +381,34 @@ ast:
       video:
         one: "%{count} videu"
         other: "%{count} vídeos"
-    boosted_from_html: Compartióse'l toot dende %{acct_link}
+    boosted_from_html: Compartióse'l barritu dende %{acct_link}
     language_detection: Deteutala automáticamente
     pin_errors:
-      limit: Yá fixesti'l númberu máxiumu de toots
-      ownership: Nun pue fixase'l toot d'otra persona
-      private: Nun puen fixase los toots que nun seyan públicos
-      reblog: Nun pue fixase un toot compartíu
+      limit: Yá fixesti'l númberu máximu de barritos
+      ownership: Nun pue fixase'l barritu d'otra persona
+      private: Nun puen fixase los barritos que nun seyan públicos
+      reblog: Nun pue fixase un barritu compartíu
+    poll:
+      total_people:
+        one: "%{count} persona"
+        other: "%{count} persones"
+      total_votes:
+        one: "%{count} votu"
+        other: "%{count} votos"
     show_more: Amosar más
     title: "%{name}: «%{quote}»"
     visibilities:
       private: Namái siguidores
+      private_long: Namái s'amuesen a los siguidores
+      public_long: Tol mundu los puen ver
+      unlisted: Nun llistar
+      unlisted_long: Tol mundu puen velos pero nun se llisten nes llinies temporales públiques
   stream_entries:
-    reblogged: compartióse
+    pinned: Barritu fixáu
+    reblogged: compartió
     sensitive_content: Conteníu sensible
+  tags:
+    does_not_match_previous_name: nun concasa col nome anterior
   themes:
     default: Mastodon
   two_factor_authentication:
@@ -269,17 +417,27 @@ ast:
     enabled: L'autenticación en dos pasos ta activada
     enabled_success: L'autenticación en dos pasos activóse con ésitu
     generate_recovery_codes: Xenerar códigos de recuperación
-    lost_recovery_codes: Los códigos de recuperación permítente recuperar l'accesu a la cuenta si pierdes el teléfonu. Si tamién pierdes esos códigos, pues xeneralos de nueves equí. Los códigos de recuperación vieyos van invalidase.
+    lost_recovery_codes: Los códigos de recuperación permítente recuperar l'accesu a la cuenta si pierdes el teléfonu. Si tamién pierdes estos códigos, pues rexeneralos equí. Los códigos de recuperación vieyos van invalidase.
     manual_instructions: 'Si nun pues escaniar el códigu QR y precises introducilu a mano, equí ta''l secretu en testu planu:'
     recovery_codes: Códigos de recuperación
     recovery_codes_regenerated: Los códigos de recuperación rexeneráronse con ésitu
   user_mailer:
+    warning:
+      explanation:
+        suspend: La to cuenta suspendióse y tolos espublizamientos qu'espublizares desaniciáronse de mou irreversible d'esti sirvidor y sirvidores onde teníes siguidores.
+      subject:
+        suspend: Suspendióse la cuenta %{acct}
+      title:
+        none: Alvertencia
+        suspend: Cuenta suspendida
     welcome:
       full_handle_hint: Esto ye lo que-yos diríes a los collacios pa que puean unviate mensaxes o siguite dende otra instancia.
       subject: Afáyate en Mastodon
       tips: Conseyos
   users:
     invalid_email: La direición de corréu nun ye válida
+    invalid_otp_token: El códigu nun ye válidu
+    otp_lost_help_html: Si pierdes l'accesu, contauta con %{email}
     seamless_external_login: Aniciesti sesión pente un serviciu esternu, polo que los axustes de la contraseña y corréu nun tán disponibles.
   verification:
     verification: Verificación
diff --git a/config/locales/bg.yml b/config/locales/bg.yml
index 85431bc8dfd0cbd6f9f34d820e7ba9cc569a0052..07149f51ffa45e104c111c0efaa01fb17f5aee91 100644
--- a/config/locales/bg.yml
+++ b/config/locales/bg.yml
@@ -59,7 +59,6 @@ bg:
     '503': The page could not be served due to a temporary server failure.
   exports:
     blocks: Вашите блокирания
-    follows: Вашите следвания
     storage: Съхранение на мултимедия
   generic:
     changes_saved_msg: Успешно запазване на промените!
diff --git a/config/locales/bn.yml b/config/locales/bn.yml
index 9fdc3ed297f70e3263b7dde61413bf5513c60110..7dd49ff966f831000581501eb1bae4e4e090662f 100644
--- a/config/locales/bn.yml
+++ b/config/locales/bn.yml
@@ -11,6 +11,7 @@ bn:
     apps: মোবাইল অ্যাপ
     apps_platforms: মাস্টাডন আইওএস, এন্ড্রোইড বা অন্য মাধ্যমে ব্যবহার করুন
     browse_directory: একটি ব্যবহারকারীদের তালিকা দেখুন এবং পছন্দ অনুসারে খুজুন
+    browse_local_posts: এই সার্ভার থেকে সর্বজনীন পোস্টগুলির একটি লাইভ স্ট্রিম ব্রাউজ করুন
     browse_public_posts: মাস্টাডনে নতুন প্রকাশ্য লেখাগুলো সরাসরি দেখুন
     contact: যোগাযোগ
     contact_missing: নেই
@@ -20,6 +21,9 @@ bn:
     federation_hint_html: "%{instance}তে একটা নিবন্ধন থাকলে আপনি যেকোনো মাস্টাডন বা এধরণের অন্যান্য সার্ভারের মানুষের সাথে যুক্ত হতে পারবেন ।"
     get_apps: মোবাইল এপ্প একটা ব্যবহার করতে পারেন
     hosted_on: এই মাস্টাডনটি আছে %{domain} এ
+    instance_actor_flash: 'এই অ্যাকাউন্টটি ভার্চুয়াল এক্টর যা নিজে কোনও সার্ভারের প্রতিনিধিত্ব করতে ব্যবহৃত হয় এবং কোনও পৃথক ব্যবহারকারী নয়। এটি ফেডারেশনের উদ্দেশ্যে ব্যবহৃত হয় এবং আপনি যদি পুরো ইনস্ট্যান্স ব্লক করতে না চান তবে অবরুদ্ধ করা উচিত নয়, সেক্ষেত্রে আপনার ডোমেন ব্লক ব্যবহার করা উচিত।
+
+'
     learn_more: বিস্তারিত জানুন
     privacy_policy: গোপনীয়তা নীতি
     see_whats_happening: কী কী হচ্ছে দেখুন
@@ -31,6 +35,14 @@ bn:
     status_count_before: কে লিখেছে
     tagline: পরিচিতজনদের সাথে যুক্ত হন এবং নতুনদের সাথে পরিচিত হন
     terms: ব্যবহারের শর্তাবলী
+    unavailable_content: অনুপলব্ধ সামগ্রী
+    unavailable_content_description:
+      domain: সার্ভার
+      reason: কারণ
+      rejecting_media: 'এই সার্ভারগুলি থেকে মিডিয়া ফাইলগুলি প্রক্রিয়া করা বা সংরক্ষণ করা হবে না এবং কোনও থাম্বনেইল প্রদর্শিত হবে না, মূল ফাইলটিতে ম্যানুয়াল ক্লিক-মাধ্যমে প্রয়োজন:'
+      silenced: 'এই সার্ভারগুলির পোস্টগুলি জনসাধারণের টাইমলাইন এবং কথোপকথনে লুকানো থাকবে এবং আপনি যদি তাদের অনুসরণ না করেন তবে তাদের ব্যবহারকারীর ইন্টারঅ্যাকশন থেকে কোনও বিজ্ঞপ্তি উত্পন্ন হবে না:'
+      suspended: 'এই সার্ভারগুলি থেকে কোনও ডেটা প্রক্রিয়াজাতকরণ, সংরক্ষণ বা আদান-প্রদান করা হবে না, এই সার্ভারগুলির ব্যবহারকারীদের সাথে কোনও মিথস্ক্রিয়া বা যোগাযোগকে অসম্ভব করে তুলেছে:'
+    unavailable_content_html: ম্যাস্টোডন সাধারণত আপনাকে ফেদিভার্স এ অন্য কোনও সার্ভারের ব্যবহারকারীদের থেকে সামগ্রী দেখতে এবং তাদের সাথে আলাপচারিতা করার অনুমতি দেয়। এই ব্যতিক্রম যে এই বিশেষ সার্ভারে তৈরি করা হয়েছে।
     user_count_after:
       one: ব্যবহারকারী
       other: জনের
@@ -38,6 +50,8 @@ bn:
     what_is_mastodon: মাস্টাডনটি কি ?
   accounts:
     choices_html: "%{name} বাছাই:"
+    endorsements_hint: আপনি ওয়েব ইন্টারফেস থেকে অনুসরণ করা লোকেদের প্রচার করতে পারেন এবং তারা এখানে প্রদর্শিত হবে।
+    featured_tags_hint: আপনি এখানে নির্দিষ্ট হ্যাশট্যাগগুলি বৈশিষ্ট্যযুক্ত করতে পারেন যেটা এখানে প্রদর্শিত হবে।
     follow: যুক্ত
     followers:
       one: যুক্ত আছে
@@ -49,6 +63,7 @@ bn:
     media: ছবি বা ভিডিও
     moved_html: "%{name} চলে গেছে %{new_profile_link} তে:"
     network_hidden: এই তথ্যটি নেই
+    never_active: কখনও না
     nothing_here: এখানে কিছুই নেই!
     people_followed_by: "%{name} যাদেরকে অনুসরণ করে"
     people_who_follow: যারা %{name} কে অনুসরণ করে
@@ -103,9 +118,7 @@ bn:
       email_status: ইমেইলের অবস্থা
       enable: চালু করুন
       enabled: চালু করুন
-      feed_url: সম্মিলিত(feed) লিংক
       followers: অনুসরকারীরা
-      followers_url: অনুসরণকারীদের লিংক
       follows: অনুসরণ করে
       header: শিরোলেখা
       inbox_url: চিঠি পাওয়ার বক্স লিংক
@@ -130,11 +143,57 @@ bn:
       moderation_notes: প্রশাসনের কিছু লেখা
       most_recent_activity: সর্বশেষ কার্যক্রম
       most_recent_ip: সর্বশেষ আইপি(IP)
+      no_account_selected: কোনও অ্যাকাউন্টই নির্বাচন করা হয়নি বলে কোনও অ্যাকাউন্ট পরিবর্তন করা হয়নি
       no_limits_imposed: কোন সীমা আরোপ করা নেই
       not_subscribed: সাবস্ক্রাইব নেই
-      outbox_url: চিঠি পাঠানোর বাক্স লিংক
       pending: পয্র্যবেক্ষণের অপেক্ষায় আছে
       perform_full_suspension: বাতিল করা
+      promote: প্রচার
+      protocol: প্রোটোকল
+      public: সর্বজনীন
+      push_subscription_expires: PuSH সাবস্ক্রিপশনের মেয়াদ শেষ হয়ে গেছে
+      redownload: প্রোফাইল সতেজ করুন
+      reject: প্রত্যাখ্যান করুন
+      reject_all: সব প্রত্যাখ্যান করুন
+      remove_avatar: অবতার অপসারণ করুন
+      remove_header: হেডার এর ছবি অপসারণ করুন
+      resend_confirmation:
+        already_confirmed: এই ব্যবহারকারী ইতিমধ্যে নিশ্চিত করা আছে
+        send: নিশ্চিতকরণ ইমেল পুনরায় পাঠান
+        success: নিশ্চিতকরণের ইমেল সফলভাবে পাঠানো হয়েছে!
+      reset: পুনরায় সেট করুন
+      reset_password: পাসওয়ার্ড পুনঃস্থাপন করুন
+      resubscribe: পুনরায় সদস্যতা নিন
+      role: অনুমতিসমূহ
+      roles:
+        admin: পরিচালক
+        moderator: নিয়ামক
+        staff: কর্মী
+        user: ব্যবহারকারী
+      search: অনুসন্ধান
+      search_same_ip: একই IP সহ অন্যান্য ব্যবহারকারীরা
+      shared_inbox_url: ভাগ করা ইনবক্স URL
+      show:
+        created_reports: তৈরি করা রিপোর্টগুলি
+        targeted_reports: অন্যদের দ্বারা প্রতিবেদনগুলি
+      silence: নীরব
+      silenced: নীরব করা হয়েছে
+      statuses: স্থিতিগুলি
+      subscribe: সদস্যতা
+      suspended: স্থগিত করা হয়েছে
+      time_in_queue: কাতারে অপেক্ষা করছে %{time}
+      title: একাউন্ট সমূহ
+      unconfirmed_email: অনিশ্চিত ইমেল
+      undo_silenced: নীরবতা পূর্বাবস্থা
+      undo_suspension: স্থগিতকরণ পূর্বাবস্থায় ফেরাও
+      unsubscribe: সদস্যতা ত্যাগ করুন
+      username: ব্যবহারকারীর নাম
+      warn: সতর্ক
+      web: ওয়েব
+      whitelisted: সাদাতালিকাযুক্ত
+    action_logs:
+      actions:
+        assigned_to_self_report: "%{name} তাদের জন্য %{target} রিপোর্ট অর্পণ করেছিলেন"
   errors:
     '400': The request you submitted was invalid or malformed.
     '403': You don't have permission to view this page.
diff --git a/config/locales/br.yml b/config/locales/br.yml
index 3710084e7df2f382222859c0539bc7c83bdf9cb0..7d15639ee0acf0f29050b94ec83c34cf3a14bd64 100644
--- a/config/locales/br.yml
+++ b/config/locales/br.yml
@@ -1,5 +1,10 @@
 ---
 br:
+  about:
+    about_this: Diàr-benn
+    active_count_after: oberiant
+    apps: Arloadoù pellgomz
+    apps_platforms: Ober get Mastodoñ àr iOS, Android ha savennoù arall
   errors:
     '400': The request you submitted was invalid or malformed.
     '403': You don't have permission to view this page.
diff --git a/config/locales/ca.yml b/config/locales/ca.yml
index 1d815adcfb2d2157005875d4304a1276e7821db3..e25172d6b2878a9a1e143d0ce100cd85120cbddc 100644
--- a/config/locales/ca.yml
+++ b/config/locales/ca.yml
@@ -1,36 +1,37 @@
 ---
 ca:
   about:
-    about_hashtag_html: Aquests són toots públics etiquetats amb <strong>#%{hashtag}</strong>. Pots interactuar amb ells si tens un compte a qualsevol lloc del fediverse.
-    about_mastodon_html: Mastodon és una xarxa social basada en protocols web oberts i en programari lliure i de codi obert. Està descentralitzat com el correu electrònic.
+    about_hashtag_html: Aquests són tuts públics etiquetats amb <strong>#%{hashtag}</strong>. Pots interactuar amb elles si tens un compte a qualsevol lloc del fedivers.
+    about_mastodon_html: 'La xarxa social del futur: sense anuncis, sense vigilància corporativa, disseny ètic i descentralització. Posseeix les teves dades amb Mastodon!'
     about_this: Quant a
     active_count_after: actiu
     active_footnote: Usuaris actius mensuals (UAM)
     administered_by: 'Administrat per:'
     api: API
     apps: Apps mòbils
-    apps_platforms: Utilitza Mastodon des de iOS, Android i altres plataformes
+    apps_platforms: Utilitza Mastodont des de iOS, Android i altres plataformes
     browse_directory: Navega per el directori de perfils i filtra segons interessos
-    browse_public_posts: Navega per una transmissió en directe de publicacions públiques a Mastodon
+    browse_local_posts: Navega un flux en directe de publicacions d’aquest servidor
+    browse_public_posts: Navega per una transmissió en directe de publicacions públiques a Mastodont
     contact: Contacte
     contact_missing: No configurat
     contact_unavailable: N/D
     discover_users: Descobreix usuaris
     documentation: Documentació
-    federation_hint_html: Amb un compte de %{instance} podràs seguir persones de qualsevol servidor Mastodon i altres.
+    federation_hint_html: Amb un compte de %{instance} podràs seguir persones de qualsevol servidor Mastodont i altres.
     get_apps: Prova una aplicació mòbil
-    hosted_on: Mastodon allotjat a %{domain}
+    hosted_on: Mastodont allotjat a %{domain}
     instance_actor_flash: |
       Aquest compte és un actor virtual utilitzat per a representar al propi servidor i no cap usuari individual.
       S'utilitza per a propòsits de federació i no ha de ser bloquejat si no voleu bloquejar tota la instància, en aquest cas hauríeu d'utilitzar un bloqueig de domini.
     learn_more: Més informació
-    privacy_policy: Política de privacitat
+    privacy_policy: Política de privadesa
     see_whats_happening: Mira què està passant
     server_stats: 'Estadístiques del servidor:'
     source_code: Codi font
     status_count_after:
-      one: toot
-      other: toots
+      one: estat
+      other: estats
     status_count_before: Que han escrit
     tagline: Segueix els teus amics i descobreix-ne de nous
     terms: Termes del servei
@@ -39,14 +40,14 @@ ca:
       domain: Servidor
       reason: Raó
       rejecting_media: 'Els arxius multimèdia d''aquests servidors no seran processats o emmagatzemats i cap miniatura serà mostrada, requerint clic manual a través de l''arxiu original:'
-      silenced: 'Les publicacions d''aquests servidors seran amagades en les línies de temps públiques i converses, i cap notificació serà generada de les interaccions dels seus usuaris, llevat que estiguis seguint-los:'
+      silenced: 'Les publicacions d''aquests servidors seran amagades en les cronologíes públiques i converses, i cap notificació serà generada de les interaccions dels seus usuaris, llevat que estiguis seguint-los:'
       suspended: 'Cap dada d''aquests servidors serà processada, emmagatzemada o intercanviada, fent impossible qualsevol interacció o comunicació amb els usuaris d''aquests servidors:'
-    unavailable_content_html: Mastodon generalment et permet per veure contingut i interaccionar amb usuaris de qualsevol altre servidor en el fedivers. Aquestes són les excepcions que s'han fet en aquest servidor particular.
+    unavailable_content_html: Mastodont generalment et permet per veure contingut i interaccionar amb usuaris de qualsevol altre servidor en el fedivers. Aquestes són les excepcions que s'han fet en aquest servidor particular.
     user_count_after:
       one: usuari
       other: usuaris
     user_count_before: Tenim
-    what_is_mastodon: Què és Mastodon?
+    what_is_mastodon: Què és Mastodont?
   accounts:
     choices_html: 'Eleccions de %{name}:'
     endorsements_hint: Pots recomanar persones que segueixes a l'interfície de web, que apareixeran aquí.
@@ -69,14 +70,15 @@ ca:
     pin_errors:
       following: Has d'estar seguint la persona que vulguis avalar
     posts:
-      one: Toot
-      other: Toots
-    posts_tab_heading: Toots
-    posts_with_replies: Toots i respostes
+      one: Barrita
+      other: Tuts
+    posts_tab_heading: Tuts
+    posts_with_replies: Tuts i respostes
     reserved_username: El nom d'usuari està reservat
     roles:
       admin: Administrador
       bot: Bot
+      group: Grup
       moderator: Moderador
     unavailable: Perfil inaccessible
     unfollow: Deixa de seguir
@@ -96,12 +98,12 @@ ca:
       avatar: Avatar
       by_domain: Domini
       change_email:
-        changed_msg: El correu electrònic del compte s'ha canviat correctament!
-        current_email: Correu electrònic actual
-        label: Canviar l'adreça de correu
-        new_email: Nova adreça de correu
-        submit: Canviar adreça de correu
-        title: Canviar adreça de correu de %{username}
+        changed_msg: L'adreça electrònica del compte s'ha canviat correctament!
+        current_email: Adreça electrònica actual
+        label: Canvia l'adreça electrònica
+        new_email: Adreça electrònica nova
+        submit: Canvia l'adreça electrònica
+        title: Canvia l'adreça electrònica de %{username}
       confirm: Confirma
       confirmed: Confirmat
       confirming: Confirmant
@@ -110,16 +112,14 @@ ca:
       disable: Inhabilita
       disable_two_factor_authentication: Desactiva 2FA
       disabled: Inhabilitat
-      display_name: Nom de visualització
+      display_name: Nom visible
       domain: Domini
       edit: Edita
-      email: Correu electrònic
-      email_status: Estat del correu electrònic
+      email: Adreça electrònica
+      email_status: Estat de l'adreça electrònica
       enable: Habilita
       enabled: Habilitat
-      feed_url: URL del canal
       followers: Seguidors
-      followers_url: URL dels seguidors
       follows: Segueix
       header: Capçalera
       inbox_url: URL de la safata d'entrada
@@ -147,10 +147,8 @@ ca:
       no_account_selected: No s'han canviat els comptes perque no s'han seleccionat
       no_limits_imposed: Sense límits imposats
       not_subscribed: No subscrit
-      outbox_url: URL de la bústia de sortida
       pending: Revisió pendent
       perform_full_suspension: Suspèn
-      profile_url: URL del perfil
       promote: Promociona
       protocol: Protocol
       public: Públic
@@ -173,8 +171,8 @@ ca:
         moderator: Moderador
         staff: Personal
         user: Usuari
-      salmon_url: URL Salmon
       search: Cerca
+      search_same_ip: Altres usuaris amb la mateixa IP
       shared_inbox_url: URL de la safata d'entrada compartida
       show:
         created_reports: Informes creats
@@ -201,10 +199,12 @@ ca:
         confirm_user: "%{name} ha confirmat l'adreça de correu electrònic de l'usuari %{target}"
         create_account_warning: "%{name} ha enviat un avís a %{target}"
         create_custom_emoji: "%{name} ha pujat un nou emoji %{target}"
+        create_domain_allow: "%{name} ha afegit a la llista blanca el domini %{target}"
         create_domain_block: "%{name} ha blocat el domini %{target}"
         create_email_domain_block: "%{name} ha afegit a la llista negra el domini del correu electrònic %{target}"
         demote_user: "%{name} ha degradat l'usuari %{target}"
         destroy_custom_emoji: "%{name} ha destruït l'emoji %{target}"
+        destroy_domain_allow: "%{name} ha eliminat el domini %{target} de la llista blanca"
         destroy_domain_block: "%{name} ha desblocat el domini %{target}"
         destroy_email_domain_block: "%{name} ha afegit a la llista negra el domini de correu electrònic %{target}"
         destroy_status: "%{name} eliminat l'estat per %{target}"
@@ -226,7 +226,7 @@ ca:
         unsuspend_account: "%{name} ha llevat la suspensió del compte de %{target}"
         update_custom_emoji: "%{name} ha actualitzat l'emoji %{target}"
         update_status: "%{name} estat actualitzat per %{target}"
-      deleted_status: "(toot suprimit)"
+      deleted_status: "(estat esborrat)"
       title: Registre d'auditoria
     custom_emojis:
       assign_category: Assigna una categoria
@@ -270,7 +270,7 @@ ca:
       feature_registrations: Registres
       feature_relay: Relay de la Federació
       feature_spam_check: Anti-spam
-      feature_timeline_preview: Vista previa de línia de temps
+      feature_timeline_preview: Vista previa de la cronología
       features: Característiques
       hidden_service: Federació amb serveis ocults
       open_reports: informes oberts
@@ -339,12 +339,13 @@ ca:
       delete: Suprimeix
       destroyed_msg: S'ha eliminat correctament el bloc del domini de correu
       domain: Domini
+      empty: Cap domini de correu a la llista negre.
       new:
         create: Afegeix un domini
         title: Nova adreça de correu en la llista negra
       title: Llista negra de correus electrònics
     followers:
-      back_to_account: Tornar al compte
+      back_to_account: Torna al compte
       title: Seguidors de %{acct}
     instances:
       by_domain: Domini
@@ -377,11 +378,11 @@ ca:
     relays:
       add_new: Afegiu un nou relay
       delete: Esborra
-      description_html: Un <strong>relay de federació</strong> és un servidor intermediari que intercanvia grans volums de toots públics entre servidors que es subscriuen i publiquen en ell. <strong>Pot ajudar a servidors petits i mitjans a descobrir contingut del fedivers</strong>, no fent necessari que els usuaris locals manualment segueixin altres persones de servidors remots.
+      description_html: Un <strong>relay de federació</strong> és un servidor intermediari que intercanvia grans volums de barritades públiquess entre servidors que es subscriuen i publiquen en ell. <strong>Pot ajudar a servidors petits i mitjans a descobrir contingut del fedivers</strong>, no fent necessari que els usuaris locals manualment segueixin altres persones de servidors remots.
       disable: Inhabilita
       disabled: Desactivat
       enable: Activat
-      enable_hint: Una vegada habilitat el teu servidor es subscriurà a tots els toots públics d'aquest relay i començarà a enviar-hi tots els toots públics d'aquest servidor.
+      enable_hint: Una vegada habilitat el teu servidor es subscriurà a totes les barritades públiques d'aquesta ristra i començarà a enviar-hi totes les barritades públiques d'aquest servidor.
       enabled: Activat
       inbox_url: URL del Relay
       pending: S'està esperant l'aprovació del relay
@@ -395,24 +396,29 @@ ca:
       destroyed_msg: La nota del informe s'ha esborrat correctament!
     reports:
       account:
-        note: nota
-        report: informe
+        notes:
+          one: "%{count} nota"
+          other: "%{count} notes"
+        reports:
+          one: "%{count} informe"
+          other: "%{count} informes"
       action_taken_by: Mesures adoptades per
       are_you_sure: N'estàs segur?
       assign_to_self: Assignar-me
       assigned: Moderador assignat
+      by_target_domain: Domini del compte reportat
       comment:
         none: Cap
       created_at: Reportat
       mark_as_resolved: Marca com a resolt
-      mark_as_unresolved: Marcar sense resoldre
+      mark_as_unresolved: Marcar com a sense resoldre
       notes:
-        create: Afegir nota
-        create_and_resolve: Resoldre amb nota
-        create_and_unresolve: Reobrir amb nota
-        delete: Esborrar
+        create: Afegeix una nota
+        create_and_resolve: Resol amb una nota
+        create_and_unresolve: Reobre amb una nota
+        delete: Esborra
         placeholder: Descriu les accions que s'han pres o qualsevol altra actualització relacionada…
-      reopen: Reobrir informe
+      reopen: Reobre l'informe
       report: 'Informe #%{id}'
       reported_account: Compte reportat
       reported_by: Reportat per
@@ -420,25 +426,25 @@ ca:
       resolved_msg: Informe resolt amb èxit!
       status: Estat
       title: Informes
-      unassign: Treure assignació
+      unassign: Treu l'assignació
       unresolved: No resolt
       updated_at: Actualitzat
     settings:
       activity_api_enabled:
-        desc_html: Compte d'estatus publicats localment, usuaris actius i registres nous en períodes setmanals
+        desc_html: Nombre d'estats publicats localment, usuaris actius i registres nous en períodes setmanals
         title: Publica estadístiques agregades sobre l'activitat de l'usuari
       bootstrap_timeline_accounts:
         desc_html: Separa diversos noms d'usuari amb comes. Només funcionaran els comptes locals i desblocats. El valor predeterminat quan està buit és tots els administradors locals.
         title: El seguiment per defecte per als usuaris nous
       contact_information:
-        email: Introdueix una adreça de correu electrònic pública
+        email: Adreça electrònica d'empresa
         username: Nom d'usuari del contacte
       custom_css:
         desc_html: Modifica l'aspecte amb CSS carregat a cada pàgina
         title: CSS personalitzat
       default_noindex:
         desc_html: Afecta a tots els usuaris que no han canviat aquest ajustament ells mateixos
-        title: Configurar per defecte als usuaris fora de l'indexació dels motor de cerca
+        title: Configura per defecte als usuaris fora de la indexació del motor de cerca
       domain_blocks:
         all: Per a tothom
         disabled: Per a ningú
@@ -446,6 +452,8 @@ ca:
         users: Per als usuaris locals en línia
       domain_blocks_rationale:
         title: Mostra el raonament
+      enable_bootstrap_timeline_accounts:
+        title: Activa els seguiments per defecte per els usuaris nous
       hero:
         desc_html: Es mostra en pàgina frontal. Recomanat al menys 600x100px. Si no es configura es mostrarà el del servidor
         title: Imatge d’heroi
@@ -478,8 +486,8 @@ ca:
           open: Qualsevol pot registrar-se
         title: Mode de registres
       show_known_fediverse_at_about_page:
-        desc_html: Quan s'activa, mostrarà tots els toots de tot el fedivers conegut en vista prèvia. En cas contrari, només es mostraran toots locals.
-        title: Mostra el fedivers conegut en vista prèvia de la línia de temps
+        desc_html: Quan s'activa, mostrarà tots els brams del fedivers conegut en vista prèvia. En cas contrari, només es mostraran els locals
+        title: Mostra el fedivers conegut en vista prèvia de la cronología
       show_staff_badge:
         desc_html: Mostra una insígnia de personal en la pàgina d'usuari
         title: Mostra insígnia de personal
@@ -490,21 +498,21 @@ ca:
         desc_html: Un bon lloc per al codi de conducta, regles, directrius i altres coses que distingeixen el teu servidor. Pots utilitzar etiquetes HTML
         title: Descripció ampliada del lloc
       site_short_description:
-        desc_html: Es mostra a la barra lateral i a metaetiquetes. Descriu en un únic paràgraf què és Mastodon i què fa que aquest servidor sigui especial. Si està buit, s'estableix per defecte la descripció del servidor.
+        desc_html: Es mostra a la barra lateral i a metaetiquetes. Descriu en un únic paràgraf què és Mastodont i què fa que aquest servidor sigui especial. Si està buit, s'estableix per defecte la descripció del servidor.
         title: Descripció curta del servidor
       site_terms:
         desc_html: Pots escriure la teva pròpia política de privadesa, els termes del servei o d'altres normes legals. Pots utilitzar etiquetes HTML
         title: Termes del servei personalitzats
       site_title: Nom del servidor
       spam_check_enabled:
-        desc_html: Mastodon pot auto-silenciar i informar automàticament de comptes basat en mesures com ara la detecció de comptes que envien missatges repetits no sol·licitats. Pot haver-hi falsos positius.
+        desc_html: Mastodont pot auto-silenciar i informar automàticament de comptes basat en mesures com ara la detecció de comptes que envien missatges repetits no sol·licitats. Pot haver-hi falsos positius.
         title: Anti-spam
       thumbnail:
         desc_html: S'utilitza per obtenir visualitzacions prèvies a través d'OpenGraph i API. Es recomana 1200x630px
         title: Miniatura del servidor
       timeline_preview:
-        desc_html: Mostra la línia de temps pública a la pàgina inicial
-        title: Vista prèvia de la línia de temps
+        desc_html: Mostra la cronología pública a la pàgina inicial
+        title: Vista prèvia de la cronología
       title: Configuració del lloc
       trendable_by_default:
         desc_html: Afecta a les etiquetes que no s'havien rebutjat prèviament
@@ -546,7 +554,7 @@ ca:
       updated_msg: Ajustaments d'etiquetes actualitzats amb èxit
     title: Administració
     warning_presets:
-      add_new: Afegir nou
+      add_new: Afegeix-ne un de nou
       delete: Esborra
       edit: Edita
       edit_preset: Edita l'avís predeterminat
@@ -563,18 +571,23 @@ ca:
       body: 'La etiqueta #%{name} està actualment en tendència però no s''ha revisat prèviament. No es mostrarà públicament tret que ho permetis o guardis el formulari tal com està per a no tornar a escoltar res al respecte.'
       subject: Nova etiqueta pendent de revisió a %{instance} (#%{name})
   aliases:
-    add_new: Crear àlies
+    add_new: Crea un àlies
     created_msg: Nou àlies creat amb èxit. Ara pots iniciar el moviment des de'l compte vell.
     deleted_msg: Àlies eliminat amb èxit. Moure't des d'aquell compte a aquests ja no serà possible.
     hint_html: Si et vols moure des d'un altre compte a aquest, aquí pots crear un àlies, el qual és requerit abans que puguis procedir a moure els seguidors del compte vell a aquest. Aquesta acció és per si mateixa <strong>inofensiva i reversible</strong>. <strong>La migració del compte és iniciada des de'l compte vell</strong>.
-    remove: Desvincular l'àlies
+    remove: Desvincula l'àlies
   appearance:
     advanced_web_interface: Interfície web avançada
-    advanced_web_interface_hint: 'Si vols fer ús de tota l''amplada de la teva pantalla, l''interfície web avançada et permet configurar diverses columnes per a veure molta més informació al mateix temps: Inici, notificacions, línia de temps federada i qualsevol número de llistes i etiquetes.'
+    advanced_web_interface_hint: 'Si vols fer ús de tota l''amplada de la teva pantalla, l''interfície web avançada et permet configurar diverses columnes per a veure molta més informació al mateix temps: Inici, notificacions, cronología federada i qualsevol número de llistes i etiquetes.'
     animations_and_accessibility: Animacions i accessibilitat
     confirmation_dialogs: Diàlegs de confirmació
     discovery: Descobriment
+    localization:
+      body: Mastodon és traduït per voluntaris.
+      guide_link: https://crowdin.com/project/mastodon
+      guide_link_text: Tothom hi pot contribuir.
     sensitive_content: Contingut sensible
+    toot_layout: Disseny del tut
   application_mailer:
     notification_preferences: Canvia les preferències de correu
     salutation: "%{name},"
@@ -598,14 +611,14 @@ ca:
     delete_account: Suprimeix el compte
     delete_account_html: Si vols suprimir el compte pots <a href="%{path}">fer-ho aquí</a>. Se't demanarà confirmació.
     description:
-      prefix_invited_by_user: "@%{name} t'ha invitat a unir-te a aquest servidor de Mastodon!"
-      prefix_sign_up: Registra't avui a Mastodon!
-      suffix: Amb un compte seràs capaç de seguir persones, publicar i intercanviar missatges amb usuaris de qualsevol servidor de Mastodon i més!
+      prefix_invited_by_user: "@%{name} t'ha invitat a unir-te a aquest servidor de Mastodont!"
+      prefix_sign_up: Registra't avui a Mastodont!
+      suffix: Amb un compte seràs capaç de seguir persones, publicar i intercanviar missatges amb usuaris de qualsevol servidor de Mastodont i més!
     didnt_get_confirmation: No has rebut el correu de confirmació?
     forgot_password: Has oblidat la contrasenya?
     invalid_reset_password_token: L'enllaç de restabliment de la contrasenya no és vàlid o ha caducat. Torna-ho a provar.
     login: Inicia sessió
-    logout: Tanca sessió
+    logout: Surt
     migrate_account: Mou a un compte diferent
     migrate_account_html: Si vols redirigir aquest compte a un altre diferent, el pots <a href="%{path}">configurar aquí</a>.
     or_log_in_with: O inicia sessió amb
@@ -696,22 +709,21 @@ ca:
       content: Ho sentim, però alguna cosa ha fallat a la nostra banda.
       title: Aquesta pàgina no es correcta
     '503': La pàgina no podria ser servida a causa d'un error temporal del servidor.
-    noscript_html: Per a utilitzar Mastodon, activa el JavaScript. També pots provar una de les <a href="%{apps_path}"> aplicacions natives</a> de Mastodon per a la vostra plataforma.
+    noscript_html: Per a utilitzar Mastodont, activa el JavaScript. També pots provar una de les <a href="%{apps_path}"> aplicacions natives</a> de Mastodont per a la vostra plataforma.
   existing_username_validator:
     not_found: no s'ha pogut trobar cap usuari local amb aquest nom d'usuari
     not_found_multiple: no s'ha pogut trobar %{usernames}
   exports:
     archive_takeout:
       date: Data
-      download: Descarrega l’arxiu
-      hint_html: Pots sol·licitar un arxiu dels teus <strong>toots i dels fitxers multimèdia pujats</strong>. Les dades exportades tindran el format ActivityPub, llegible per qualsevol programari compatible. Pots sol·licitar un arxiu cada 7 dies.
-      in_progress: Compilant el teu arxiu...
+      download: Baixa l’arxiu
+      hint_html: Pots sol·licitar un arxiu de les teves <strong>barritades i dels fitxers multimèdia pujats</strong>. Les dades exportades tindran el format ActivityPub, llegible per qualsevol programari compatible. Pots sol·licitar un arxiu cada 7 dies.
+      in_progress: S'està compilant el teu arxiu...
       request: Sol·licita el teu arxiu
-      size: Tamany
+      size: Mida
     blocks: Persones que has blocat
     csv: CSV
     domain_blocks: Bloquejos de dominis
-    follows: Persones que segueixes
     lists: Llistes
     mutes: Persones silenciades
     storage: Emmagatzematge
@@ -722,9 +734,9 @@ ca:
     hint_html: "<strong>Què son les etiquetes destacades?</strong> Es mostren de manera destacada en el teu perfil públic i permeten a les persones navegar per les teves publicacions amb aquestes etiquetes. Són una gran eina per fer un seguiment de treballs creatius o de projectes a llarg termini."
   filters:
     contexts:
-      home: Línia de temps Inici
+      home: Cronología d'inici
       notifications: Notificacions
-      public: Línies de temps públiques
+      public: Cronologíes públiques
       thread: Converses
     edit:
       title: Editar filtre
@@ -733,9 +745,10 @@ ca:
       invalid_irreversible: El filtratge irreversible només funciona amb el contextos inici o notificacions
     index:
       delete: Esborra
+      empty: No hi tens cap filtre.
       title: Filtres
     new:
-      title: Afegir nou filtre
+      title: Afegeix un filtre
   footer:
     developers: Desenvolupadors
     more: Més…
@@ -767,7 +780,7 @@ ca:
     i_am_html: Sóc %{username} a %{service}.
     identity: Identitat
     inactive: Inactiu
-    publicize_checkbox: 'I tooteja això:'
+    publicize_checkbox: 'I barrita això:'
     publicize_toot: 'Està provat! Sóc %{username} a %{service}: %{url}'
     status: Estat de verificació
     view_proof: Veure la prova
@@ -784,7 +797,7 @@ ca:
       domain_blocking: Llistat de dominis bloquejats
       following: Llista de seguits
       muting: Llista de silenciats
-    upload: Carregar
+    upload: Carrega
   in_memoriam_html: En Memòria.
   invites:
     delete: Desactivar
@@ -849,7 +862,7 @@ ca:
     title: Moderació
   notification_mailer:
     digest:
-      action: Veure totes les notificacions
+      action: Mostra totes les notificacions
       body: Un resum del que et vas perdre desde la darrera visita el %{since}
       mention: "%{name} t'ha mencionat en:"
       new_followers_summary:
@@ -881,6 +894,10 @@ ca:
       body: "%{name} ha impulsat el teu estat:"
       subject: "%{name} ha impulsat el teu estat"
       title: Nou impuls
+  notifications:
+    email_events: Esdeveniments per a notificacions per correu electrònic
+    email_events_hint: 'Selecciona els esdeveniments per als quals vols rebre notificacions:'
+    other_settings: Altres opcions de notificació
   number:
     human:
       decimal_units:
@@ -904,16 +921,19 @@ ca:
       duration_too_long: està massa lluny en el futur
       duration_too_short: és massa aviat
       expired: L'enquesta ja ha finalitzat
+      invalid_choice: L’opció de vot escollida no existeix
       over_character_limit: no pot ser superior a %{max} caràcters cadascun
       too_few_options: ha de tenir més d'una opció
       too_many_options: no pot contenir més de %{max} opcions
   preferences:
     other: Altre
     posting_defaults: Valors predeterminats de publicació
-    public_timelines: Línies de temps públiques
+    public_timelines: Cronologíes públiques
   relationships:
     activity: Activitat del compte
     dormant: Inactiu
+    followers: Seguidors
+    following: Seguint
     last_active: Darrer actiu
     most_recent: Més recent
     moved: Mogut
@@ -934,16 +954,16 @@ ca:
   remote_interaction:
     favourite:
       proceed: Procedir a afavorir
-      prompt: 'Vols marcar com a favorit aquest toot:'
+      prompt: 'Vols marcar com a favorit aquesta barritada:'
     reblog:
       proceed: Procedir a impulsar
-      prompt: 'Vols impulsar aquest toot:'
+      prompt: 'Vols impulsar aquesta barritada:'
     reply:
       proceed: Procedir a respondre
-      prompt: 'Vols respondre a aquest toot:'
+      prompt: 'Vols respondre a aquesta barritada:'
   scheduled_statuses:
-    over_daily_limit: Has superat el límit de %{limit} toots programats per a aquell dia
-    over_total_limit: Has superat el limit de %{limit} toots programats
+    over_daily_limit: Has superat el límit de %{limit} barritades programades per a aquell dia
+    over_total_limit: Has superat el limit de %{limit} barritades programades
     too_soon: La data programada ha de ser futura
   sessions:
     activity: Última activitat
@@ -968,7 +988,7 @@ ca:
       weibo: Weibo
     current_session: Sessió actual
     description: "%{browser} de %{platform}"
-    explanation: Aquests són els navegadors web que actualment han iniciat la sessió amb el teu compte de Mastodon.
+    explanation: Aquests són els navegadors web que actualment han iniciat la sessió amb el teu compte de Mastodont.
     ip: IP
     platforms:
       adobe_air: Adobe Air
@@ -990,23 +1010,25 @@ ca:
     account: Compte
     account_settings: Ajustos del compte
     aliases: Àlies de compte
-    appearance: Aparènça
+    appearance: Aparença
     authorized_apps: Aplicacions autoritzades
-    back: Torna a Mastodon
+    back: Torna a Mastodont
     delete: Eliminació del compte
     development: Desenvolupament
-    edit_profile: Editar perfil
-    export: Exportar dades
+    edit_profile: Edita el perfil
+    export: Exportació de dades
     featured_tags: Etiquetes destacades
     identity_proofs: Proves d'identitat
-    import: Importar
-    import_and_export: Importar i exportar
+    import: Importació
+    import_and_export: Importació i exportació
     migrate: Migració del compte
     notifications: Notificacions
     preferences: Preferències
     profile: Perfil
     relationships: Seguits i seguidors
     two_factor_authentication: Autenticació de dos factors
+  spam_check:
+    spam_detected: Aquest és un informe automàtic. S'ha detectat spam.
   statuses:
     attached:
       description: 'Adjunt: %{attached}'
@@ -1025,9 +1047,9 @@ ca:
     open_in_web: Obre en la web
     over_character_limit: Límit de caràcters de %{max} superat
     pin_errors:
-      limit: Ja has fixat el màxim nombre de toots
-      ownership: No es pot fixar el toot d'algú altre
-      private: No es pot fixar el toot no públic
+      limit: Ja has fixat el màxim nombre de barritades
+      ownership: No es pot fixar la barritada d'altra persona
+      private: No es pot fixar la barritada no pública
       reblog: No es pot fixar un impuls
     poll:
       total_people:
@@ -1037,7 +1059,7 @@ ca:
         one: "%{count} vot"
         other: "%{count} vots"
       vote: Vota
-    show_more: Mostrar més
+    show_more: Mostra'n més
     sign_in_to_participate: Inicia la sessió per participar a la conversa
     title: '%{name}: "%{quote}"'
     visibilities:
@@ -1046,9 +1068,9 @@ ca:
       public: Públic
       public_long: Tothom pot veure-ho
       unlisted: No llistat
-      unlisted_long: Tothom ho pot veure, però no es mostra en la història federada
+      unlisted_long: Tothom ho pot veure, però no es mostra en la cronología federada
   stream_entries:
-    pinned: Toot fixat
+    pinned: Tut fixat
     reblogged: ha impulsat
     sensitive_content: Contingut sensible
   tags:
@@ -1137,9 +1159,9 @@ ca:
       <p>Originalment adaptat des del <a href="https://github.com/discourse/discourse">Discourse privacy policy</a>.</p>
     title: "%{instance} Condicions del servei i política de privadesa"
   themes:
-    contrast: Mastodon (Alt contrast)
-    default: Mastodon (Fosc)
-    mastodon-light: Mastodon (Clar)
+    contrast: Mastodon (alt contrast)
+    default: Mastodon (fosc)
+    mastodon-light: Mastodon (clar)
   time:
     formats:
       default: "%b %d, %Y, %H:%M"
@@ -1162,14 +1184,14 @@ ca:
     wrong_code: El codi introduït no és vàlid! És correcta l'hora del servidor i del dispositiu?
   user_mailer:
     backup_ready:
-      explanation: Has sol·licitat una copia completa del teu compte Mastodon. Ara ja està a punt per descàrrega!
+      explanation: Has sol·licitat una copia completa del teu compte Mastodont. Ara ja està a punt per descàrrega!
       subject: El teu arxiu està preparat per a descàrrega
       title: Recollida del arxiu
     warning:
       explanation:
         disable: Mentre el teu compte estigui congelat les dades romandran intactes però no pots dur a terme cap acció fins que no estigui desbloquejat.
         silence: Mentre el teu compte estigui limitat només les persones que ja et segueixen veuen les teves dades en aquest servidor i pots ser exclòs de diverses llistes públiques. No obstant això, d'altres encara poden seguir-te manualment.
-        suspend: El teu compte s'ha suspès i tots els teus toots i fitxers multimèdia penjats s'han eliminat irreversiblement d'aquest servidor i dels servidors on tenies seguidors.
+        suspend: El teu compte s'ha suspès i totes les teves barritades i fitxers multimèdia penjats s'han eliminat irreversiblement d'aquest servidor i dels servidors on tenies seguidores.
       get_in_touch: Pots respondre a aquest correu electrònic per a contactar amb el personal de %{instance}.
       review_server_policies: Revisa les polítiques del servidor
       statuses: 'Concretament, per:'
@@ -1184,7 +1206,7 @@ ca:
         silence: Compte limitat
         suspend: Compte suspès
     welcome:
-      edit_profile_action: Configurar perfil
+      edit_profile_action: Configura el perfil
       edit_profile_step: Pots personalitzar el teu perfil penjant un avatar, un encapçalament, canviant el teu nom de visualització i molt més. Si prefereixes revisar els seguidors nous abans de que et puguin seguir, pots blocar el teu compte.
       explanation: Aquests són alguns consells per a començar
       final_action: Comença a publicar
@@ -1193,11 +1215,11 @@ ca:
       full_handle_hint: Això és el que has de dir als teus amics perquè puguin enviar-te missatges o seguir-te des d'un altre servidor.
       review_preferences_action: Canviar preferències
       review_preferences_step: Assegura't d'establir les teves preferències, com ara els correus electrònics que vols rebre o el nivell de privadesa per defecte que t'agradaria que tinguin les teves entrades. Si no tens malaltia de moviment, pots optar per habilitar la reproducció automàtica de GIF.
-      subject: Benvingut/da a Mastodon
-      tip_federated_timeline: La línia de temps federada és el cabal principal de la xarxa Mastodon. Però només inclou les persones a les quals els teus veïns estan subscrits, de manera que no està complet.
+      subject: Et donem la benvinguda a Mastodont
+      tip_federated_timeline: La cronología federada és el cabal principal de la xarxa Mastodont. Però només inclou les persones a les quals els teus veïns estan subscrits, de manera que no està complet.
       tip_following: Per defecte segueixes als administradors del servidor. Per trobar més persones interessants, consulta les línies de temps local i federada.
       tip_local_timeline: La línia de temps local és la vista del flux de publicacions dels usuaris de %{instance}. Aquests usuaris són els teus veïns més propers!
-      tip_mobile_webapp: Si el teu navegador del mòbil t'ofereix afegir Mastodon a la teva pantalla d'inici, podràs rebre notificacions "push". Es comporta com una aplicació nativa en molts aspectes!
+      tip_mobile_webapp: Si el teu navegador del mòbil t'ofereix afegir Mastodont a la teva pantalla d'inici, podràs rebre notificacions d'empènyer "push". Es comporta com una aplicació nativa en molts aspectes!
       tips: Consells
       title: Benvingut a bord, %{name}!
   users:
@@ -1208,5 +1230,5 @@ ca:
     seamless_external_login: Has iniciat sessió via un servei extern per tant els ajustos de contrasenya i correu electrònic no estan disponibles.
     signed_in_as: 'Sessió iniciada com a:'
   verification:
-    explanation_html: 'Pots <strong>verificar-te com a propietari dels enllaços a les metadades del teu perfil</strong>. Per això, el lloc web enllaçat ha de contenir un enllaç al teu perfil de Mastodon. El vincle <strong>ha de</strong> tenir l''atribut <code>rel="me"</code>. El contingut del text de l''enllaç no importa. Aquí tens un exemple:'
+    explanation_html: 'Pots <strong>verificar-te com a propietari dels enllaços a les metadades del teu perfil</strong>. Per això, el lloc web enllaçat ha de contenir un enllaç al teu perfil de Mastodont. El vincle <strong>ha de</strong> tenir l''atribut <code>rel="me"</code>. El contingut del text de l''enllaç no importa. Aquí tens un exemple:'
     verification: Verificació
diff --git a/config/locales/co.yml b/config/locales/co.yml
index 41e2ccfbbf58312dc6093ba48842799cc174745d..4cc1ed5fb26b5a77c428098987b88d476d236ba4 100644
--- a/config/locales/co.yml
+++ b/config/locales/co.yml
@@ -2,7 +2,7 @@
 co:
   about:
     about_hashtag_html: Quessi sò statuti pubblichi taggati cù <strong>#%{hashtag}</strong>. Pudete interagisce cù elli sì voi avete un contu in qualche parte di u fediverse.
-    about_mastodon_html: Mastodon ghjè una rete suciale custruita incù prutucolli web aperti è lugiziali liberi. Hè decentralizatu cumu l’e-mail.
+    about_mastodon_html: 'A rete suciale di u futuru: micca pubblicità, micca surveglianza, cuncezzione etica, è dicentralizazione! Firmate in cuntrollu di i vostri dati cù Mastodon!'
     about_this: À prupositu
     active_count_after: attivi
     active_footnote: Utilizatori Attivi Mensili (UAM)
@@ -11,7 +11,8 @@ co:
     apps: Applicazione per u telefuninu
     apps_platforms: Utilizà Mastodon dapoi à iOS, Android è altre piattaforme
     browse_directory: Navigà un'annuariu di i prufili è filtra per interessi
-    browse_public_posts: Navigà un flussu di i statuti publichi nant'à Mastodon
+    browse_local_posts: Navigà un flussu di statuti pubblichi da stu servore
+    browse_public_posts: Navigà un flussu di i statuti pubblichi nant'à Mastodon
     contact: Cuntattu
     contact_missing: Mancante
     contact_unavailable: Micca dispunibule
@@ -50,7 +51,7 @@ co:
   accounts:
     choices_html: "%{name} ricumanda:"
     endorsements_hint: Pudete appughjà i conti chì siguitate dapoi l'interfaccia web, è saranu mustrati quì.
-    featured_tags_hint: Pudete mette in mostra qualchì hashtag chì saranu affissatu quì.
+    featured_tags_hint: Pudete mette in mostra qualchì hashtag chì saranu affissati quì.
     follow: Siguità
     followers:
       one: Abbunatu·a
@@ -77,6 +78,7 @@ co:
     roles:
       admin: Amministratore
       bot: Bot
+      group: Gruppu
       moderator: Muderatore
     unavailable: Prufile micca dispunibule
     unfollow: Ùn siguità più
@@ -117,9 +119,7 @@ co:
       email_status: Statutu di l’e-mail
       enable: Attivà
       enabled: Attivatu
-      feed_url: URL di u flussu
       followers: Abbunati
-      followers_url: URL di l’abbunati
       follows: Abbunamenti
       header: Intistatura
       inbox_url: URL di l’inbox
@@ -147,10 +147,8 @@ co:
       no_account_selected: Nisun contu hè statu cambiatu postu ch'ùn c'eranu micca selezziunati
       no_limits_imposed: Nisuna limita imposta
       not_subscribed: Micca abbunatu
-      outbox_url: URL di l’outbox
       pending: In attesa di rivista
       perform_full_suspension: Suspende
-      profile_url: URL di u prufile
       promote: Prumove
       protocol: Prutucollu
       public: Pubblicu
@@ -173,8 +171,8 @@ co:
         moderator: Muderatore
         staff: Squadra
         user: Utilizatore
-      salmon_url: URL di Salmon
       search: Cercà
+      search_same_ip: Altri utilizatori cù listessa IP
       shared_inbox_url: URL di l’inbox spartuta
       show:
         created_reports: Signalamenti fatti
@@ -201,10 +199,12 @@ co:
         confirm_user: "%{name} hà cunfirmatu l’indirizzu e-mail di %{target}"
         create_account_warning: "%{name} hà mandatu un'avertimentu à %{target}"
         create_custom_emoji: "%{name} hà caricatu una nov’emoji %{target}"
+        create_domain_allow: "%{name} hà messu u duminiu %{target} nant’a lista bianca"
         create_domain_block: "%{name} hà bluccatu u duminiu %{target}"
         create_email_domain_block: "%{name} hà messu u duminiu e-mail %{target} nant’a lista nera"
         demote_user: "%{name} hà ritrugradatu l’utilizatore %{target}"
         destroy_custom_emoji: "%{name} hà sguassatu l'emoji %{target}"
+        destroy_domain_allow: "%{name} hà sguassatu u duminiu %{target} da a lista bianca"
         destroy_domain_block: "%{name} hà sbluccatu u duminiu %{target}"
         destroy_email_domain_block: "%{name} hà messu u duminiu e-mail %{target} nant’a lista bianca"
         destroy_status: "%{name} hà toltu u statutu di %{target}"
@@ -315,7 +315,7 @@ co:
       public_comment_hint: Cummentariu nant'à a limitazione di stu duminiu per u pubblicu generale, s'ella hè attivata a rivelazione di a lista di limitazione di duminiu.
       reject_media: Righjittà i fugliali media
       reject_media_hint: Sguassa tutti i media caricati è ricusa caricamenti futuri. Inutile per una suspensione
-      reject_reports: Righjittà i rapporti
+      reject_reports: Righjittà i riporti
       reject_reports_hint: Ignurà tutti i signalamenti chì venenu d'issu duminiu. Senz'oghjettu pè e suspensione
       rejecting_media: righjettu di i fugliali media
       rejecting_reports: righjettu di i signalamenti
@@ -339,6 +339,7 @@ co:
       delete: Toglie
       destroyed_msg: U blucchime di u duminiu d’e-mail ùn hè più attivu
       domain: Duminiu
+      empty: Ùn c'hè manc'un duminiu d'email in lista nera.
       new:
         create: Creà un blucchime
         title: Nova iscrizzione nant’a lista nera e-mail
@@ -362,7 +363,7 @@ co:
       total_blocked_by_us: Bluccati da noi
       total_followed_by_them: Siguitati da elli
       total_followed_by_us: Siguitati da noi
-      total_reported: Rapporti nant'à elli
+      total_reported: Riporti nant'à elli
       total_storage: Media aghjunti
     invites:
       deactivate_all: Disattivà tuttu
@@ -395,12 +396,17 @@ co:
       destroyed_msg: Nota di signalamentu sguassata!
     reports:
       account:
-        note: nota
-        report: palisà
+        notes:
+          one: "%{count} nota"
+          other: "%{count} note"
+        reports:
+          one: "%{count} riportu"
+          other: "%{count} riporti"
       action_taken_by: Intervenzione di
       are_you_sure: Site sicuru·a?
       assign_to_self: Assignallu à mè
       assigned: Muderatore assignatu
+      by_target_domain: Duminiu di u contu signalatu
       comment:
         none: Nisunu
       created_at: Palisatu
@@ -446,6 +452,8 @@ co:
         users: À l'utilizatori lucali cunnettati
       domain_blocks_rationale:
         title: Vede ragiò
+      enable_bootstrap_timeline_accounts:
+        title: Attivà l'abbunamenti predefiniti per l'utilizatori novi
       hero:
         desc_html: Affissatu nant’a pagina d’accolta. Ricumandemu almenu 600x100px. S’ellu ùn hè micca definiti, a vignetta di u servore sarà usata
         title: Ritrattu di cuprendula
@@ -574,7 +582,12 @@ co:
     animations_and_accessibility: Animazione è accessibilità
     confirmation_dialogs: Pop-up di cunfirmazione
     discovery: Scuperta
+    localization:
+      body: Mastodon hè tradottu da una squadra di vuluntari.
+      guide_link: https://fr.crowdin.com/project/mastodon
+      guide_link_text: Tuttu u mondu pò participà.
     sensitive_content: Cuntinutu sensibile
+    toot_layout: Urganizazione
   application_mailer:
     notification_preferences: Cambià e priferenze e-mail
     salutation: "%{name},"
@@ -711,7 +724,6 @@ co:
     blocks: Bluccate
     csv: CSV
     domain_blocks: Blucchime di duminiu
-    follows: Seguitate
     lists: Liste
     mutes: Piattate
     storage: I vostri media
@@ -733,6 +745,7 @@ co:
       invalid_irreversible: A filtrazione irreversibile marchja solu per l'accolta è e nutificazione
     index:
       delete: Toglie
+      empty: Ùn avete manc'un filtru.
       title: Filtri
     new:
       title: Aghjunghje un novu filtru
@@ -881,6 +894,10 @@ co:
       body: 'U vostru statutu hè statu spartutu da %{name}:'
       subject: "%{name} hà spartutu u vostru statutu"
       title: Nova spartera
+  notifications:
+    email_events: Avvenimenti da nutificà cù l'e-mail
+    email_events_hint: 'Selezziunate l''avvenimenti per quelli vulete riceve nutificazione:'
+    other_settings: Altri parametri di nutificazione
   number:
     human:
       decimal_units:
@@ -904,6 +921,7 @@ co:
       duration_too_long: hè troppu luntanu indè u futuru
       duration_too_short: hè troppu prossimu
       expired: U scandagliu hè digià finitu
+      invalid_choice: L'uzzione di votu scelta ùn esista micca
       over_character_limit: ùn ponu micca esse più longhi chè %{max} caratteri
       too_few_options: deve avè più d'un'uzzione
       too_many_options: ùn pò micca avè più di %{max} uzzione
@@ -914,6 +932,8 @@ co:
   relationships:
     activity: Attività di u contu
     dormant: Inattivu
+    followers: Abbunati
+    following: Abbunamenti
     last_active: Ultima attività
     most_recent: Più ricente
     moved: Spiazzatu
@@ -1007,6 +1027,8 @@ co:
     profile: Prufile
     relationships: Abbunamenti è abbunati
     two_factor_authentication: Identificazione à dui fattori
+  spam_check:
+    spam_detected: Quessu ghjè un riportu automaticu. Un spam hè statu ditettatu.
   statuses:
     attached:
       description: 'Aghjuntu: %{attached}'
diff --git a/config/locales/cs.yml b/config/locales/cs.yml
index 8a3669a6c1a8b1714dbf557ed3c0ccfb07c569aa..a9b101758aadf3fdcfca3babb0397ee5338c221d 100644
--- a/config/locales/cs.yml
+++ b/config/locales/cs.yml
@@ -9,22 +9,23 @@ cs:
     administered_by: 'Server spravuje:'
     api: API
     apps: Mobilní aplikace
-    apps_platforms: Používejte Mastodon z iOS, Androidu a jiných platforem
+    apps_platforms: Používejte Mastodon na iOS, Androidu a dalších platformách
     browse_directory: Prozkoumejte adresář profilů a filtrujte dle zájmů
+    browse_local_posts: Prozkoumejte živý proud veřejných příspěvků z tohoto serveru
     browse_public_posts: Prozkoumejte živý proud veřejných příspěvků na Mastodonu
     contact: Kontakt
     contact_missing: Nenastaveno
     contact_unavailable: Neuvedeno
     discover_users: Objevujte uživatele
     documentation: Dokumentace
-    federation_hint_html: S účtem na %{instance} můžete sledovat lidi na jakémkoliv serveru Mastodon a jiných službách.
+    federation_hint_html: S účtem na serveru %{instance} můžete sledovat lidi na jakémkoliv ze serverů Mastodon a dalších službách.
     get_apps: Vyzkoušejte mobilní aplikaci
-    hosted_on: Mastodon na adrese %{domain}
+    hosted_on: Mastodon na doméně %{domain}
     instance_actor_flash: |
-      Tento účet je virtuální aktér, který představuje server samotný a ne jedotlivého uživatele.
-      Používá se pro účely federace a nesmí být blokován, pokud nechcete blokovat celý server. V tomto případě použijte doménovou blokaci.
+      Tento účet je virtuální aktér, který představuje server samotný, nikoliv účet jednotlivého uživatele.
+      Používá se pro účely federace a nesmí být blokován, pokud nechcete blokovat celý server. V takovém případě použijte blokaci domény.
     learn_more: Zjistit více
-    privacy_policy: Zásady soukromí
+    privacy_policy: Zásady ochrany osobních údajů
     see_whats_happening: Podívejte se, co se děje
     server_stats: 'Statistika serveru:'
     source_code: Zdrojový kód
@@ -61,19 +62,19 @@ cs:
       many: Sledujících
       one: Sledující
       other: Sledujících
-    following: Sledovaných
-    joined: Připojil/a se v %{date}
+    following: Sledovaní
+    joined: Uživatelem od %{date}
     last_active: naposledy aktivní
     link_verified_on: Vlastnictví tohoto odkazu bylo zkontrolováno %{date}
     media: Média
     moved_html: "%{name} se přesunul/a na %{new_profile_link}:"
     network_hidden: Tato informace není k dispozici
     never_active: Nikdy
-    nothing_here: Tady nic není!
+    nothing_here: Nic tu není!
     people_followed_by: Lidé, které sleduje %{name}
     people_who_follow: Lidé, kteří sledují uživatele %{name}
     pin_errors:
-      following: Musíte již sledovat osobu, kterou chcete podpořit
+      following: Osobu, kterou chcete podpořit, už musíte sledovat
     posts:
       few: Tooty
       many: Tootů
@@ -85,8 +86,9 @@ cs:
     roles:
       admin: Administrátor
       bot: Robot
+      group: Skupina
       moderator: Moderátor
-    unavailable: Profil nedostupný
+    unavailable: Profil není dostupný
     unfollow: Přestat sledovat
   admin:
     account_actions:
@@ -100,7 +102,7 @@ cs:
     accounts:
       approve: Schválit
       approve_all: Schválit vše
-      are_you_sure: Jste si jistý/á?
+      are_you_sure: Opravdu?
       avatar: Avatar
       by_domain: Doména
       change_email:
@@ -116,7 +118,7 @@ cs:
       deleted: Smazáno
       demote: Degradovat
       disable: Zablokovat
-      disable_two_factor_authentication: Zakázat 2FA
+      disable_two_factor_authentication: Vypnout 2FA
       disabled: Blokováno
       display_name: Zobrazované jméno
       domain: Doména
@@ -125,15 +127,13 @@ cs:
       email_status: Stav e-mailu
       enable: Povolit
       enabled: Povoleno
-      feed_url: URL proudu
       followers: Sledující
-      followers_url: URL sledujících
-      follows: Sledovaní
+      follows: Sleduje
       header: Záhlaví
       inbox_url: URL příchozí schránky
       invited_by: Pozván/a uživatelem
       ip: IP adresa
-      joined: Připojil/a se
+      joined: Uživatelem od
       location:
         all: Všechny
         local: Místní
@@ -146,19 +146,17 @@ cs:
         active: Aktivní
         all: Vše
         pending: Čekající
-        silenced: Utišen/a
-        suspended: Pozastaven/a
+        silenced: Uživatel ztišen
+        suspended: Uživatel pozastaven
         title: Moderování
       moderation_notes: Moderátorské poznámky
       most_recent_activity: Nejnovější aktivita
-      most_recent_ip: Nejnovější IP
+      most_recent_ip: Nejnovější IP adresa
       no_account_selected: Nebyl změněn žádný účet, neboť žádný nebyl zvolen
       no_limits_imposed: Nejsou nastavena žádná omezení
       not_subscribed: Neodebírá
-      outbox_url: URL odchozí schránky
       pending: Čeká na posouzení
       perform_full_suspension: Pozastavit
-      profile_url: URL profilu
       promote: Povýšit
       protocol: Protokol
       public: Veřejný
@@ -181,21 +179,21 @@ cs:
         moderator: Moderátor
         staff: Člen personálu
         user: Uživatel
-      salmon_url: URL Salmon
       search: Hledat
+      search_same_ip: Další uživatelé se stejnou IP adresou
       shared_inbox_url: URL sdílené příchozí schránky
       show:
-        created_reports: Vytvořená nahlášení
+        created_reports: Vytvořená hlášení
         targeted_reports: Nahlášeni ostatními
-      silence: Utišit
-      silenced: Utišen/a
+      silence: Ztišit
+      silenced: Uživatel ztišen
       statuses: Tooty
       subscribe: Odebírat
-      suspended: Pozastaven/a
+      suspended: Uživatel pozastaven
       time_in_queue: Čeká ve frontě %{time}
       title: Účty
       unconfirmed_email: Nepotvrzený e-mail
-      undo_silenced: Zrušit utišení
+      undo_silenced: Zrušit ztišení
       undo_suspension: Zrušit pozastavení
       unsubscribe: Přestat odebírat
       username: Uživatelské jméno
@@ -204,44 +202,46 @@ cs:
       whitelisted: Na bílé listině
     action_logs:
       actions:
-        assigned_to_self_report: "%{name} přidělil/a hlášení %{target} sobě"
-        change_email_user: "%{name} změnil/a e-mailovou adresu uživatele %{target}"
-        confirm_user: "%{name} potvrdil/a e-mailovou adresu uživatele %{target}"
-        create_account_warning: "%{name} poslal/a varování uživateli %{target}"
-        create_custom_emoji: "%{name} nahrál/a nové emoji %{target}"
-        create_domain_block: "%{name} zablokoval/a doménu %{target}"
-        create_email_domain_block: "%{name} přidal/a e-mailovou doménu %{target} na černou listinu"
-        demote_user: "%{name} degradoval/a uživatele %{target}"
-        destroy_custom_emoji: "%{name} zničil/a emoji %{target}"
-        destroy_domain_block: "%{name} odblokoval/a doménu %{target}"
-        destroy_email_domain_block: "%{name} odebral/a e-mailovou doménu %{target} z černé listiny"
-        destroy_status: "%{name} odstranil/a toot uživatele %{target}"
-        disable_2fa_user: "%{name} vypnul/a dvoufázové ověřování pro uživatele %{target}"
-        disable_custom_emoji: "%{name} zakázal/a emoji %{target}"
-        disable_user: "%{name} zakázal/a přihlašování pro uživatele %{target}"
-        enable_custom_emoji: "%{name} povolil/a emoji %{target}"
-        enable_user: "%{name} povolil/a přihlašování pro uživatele %{target}"
-        memorialize_account: "%{name} změnil/a účet %{target} na stránku „in memoriam“"
-        promote_user: "%{name} povýšil/a uživatele %{target}"
-        remove_avatar_user: "%{name} odstranil/a avatar uživatele %{target}"
-        reopen_report: "%{name} znovuotevřel/a nahlášení %{target}"
-        reset_password_user: "%{name} obnovil/a heslo uživatele %{target}"
-        resolve_report: "%{name} vyřešil/a nahlášení %{target}"
-        silence_account: "%{name} utišil/a účet uživatele %{target}"
-        suspend_account: "%{name} pozastavil/a účet uživatele %{target}"
-        unassigned_report: "%{name} odebral/a nahlášení %{target}"
-        unsilence_account: "%{name} odtišil/a účet uživatele %{target}"
-        unsuspend_account: "%{name} zrušil/a pozastavení účtu uživatele %{target}"
-        update_custom_emoji: "%{name} aktualizoval/a emoji %{target}"
-        update_status: "%{name} aktualizoval/a toot uživatele %{target}"
+        assigned_to_self_report: Uživatel %{name} si přidělil hlášení %{target}
+        change_email_user: Uživatel %{name} změnil e-mailovou adresu uživatele %{target}
+        confirm_user: Uživatel %{name} potvrdil e-mailovou adresu uživatele %{target}
+        create_account_warning: Uživatel %{name} poslal varování uživateli %{target}
+        create_custom_emoji: Uživatel %{name} nahrál nové emoji %{target}
+        create_domain_allow: Uživatel %{name} přidal doménu %{target} na bílou listinu
+        create_domain_block: Uživatel %{name} zablokoval doménu %{target}
+        create_email_domain_block: Uživatel %{name} přidal e-mailovou doménu %{target} na černou listinu
+        demote_user: Uživatel %{name} degradoval uživatele %{target}
+        destroy_custom_emoji: Uživatel %{name} zničil emoji %{target}
+        destroy_domain_allow: Uživatel %{name} odebral doménu %{target} z bílé listiny
+        destroy_domain_block: Uživatel %{name} odblokoval doménu %{target}
+        destroy_email_domain_block: Uživatel %{name} odebral e-mailovou doménu %{target} z černé listiny
+        destroy_status: Uživatel %{name} odstranil toot uživatele %{target}
+        disable_2fa_user: Uživatel %{name} vypnul dvoufázové ověřování pro uživatele %{target}
+        disable_custom_emoji: Uživatel %{name} zakázal emoji %{target}
+        disable_user: Uživatel %{name} zakázal přihlašování pro uživatele %{target}
+        enable_custom_emoji: Uživatel %{name} povolil emoji %{target}
+        enable_user: Uživatel %{name} povolil přihlašování pro uživatele %{target}
+        memorialize_account: Uživatel %{name} změnil účet %{target} na „in memoriam“ stránku
+        promote_user: Uživatel %{name} povýšil uživatele %{target}
+        remove_avatar_user: Uživatel %{name} odstranil avatar uživatele %{target}
+        reopen_report: Uživatel %{name} znovu otevřel hlášení %{target}
+        reset_password_user: Uživatel %{name} obnovil heslo uživatele %{target}
+        resolve_report: Uživatel %{name} vyřešil hlášení %{target}
+        silence_account: Uživatel %{name} ztišil uživatele %{target}
+        suspend_account: Uživatel %{name} pozastavil účet uživatele %{target}
+        unassigned_report: Uživatel %{name} odebral hlášení %{target}
+        unsilence_account: Uživatel %{name} zrušil ztišení uživatele %{target}
+        unsuspend_account: Uživatel %{name} zrušil pozastavení účtu uživatele %{target}
+        update_custom_emoji: Uživatel %{name} aktualizoval emoji %{target}
+        update_status: Uživatel %{name} aktualizoval toot uživatele %{target}
       deleted_status: "(smazaný toot)"
-      title: Záznam auditu
+      title: Auditovací protokol
     custom_emojis:
       assign_category: Přiřadit kategorii
       by_domain: Doména
       copied_msg: Místní kopie emoji byla úspěšně vytvořena
       copy: Kopírovat
-      copy_failed_msg: Nebylo možné vytvořit místní kopii tohoto emoji
+      copy_failed_msg: Místní kopii tohoto emoji nebylo možné vytvořit
       create_new_category: Vytvořit novou kategorii
       created_msg: Emoji úspěšně vytvořeno!
       delete: Smazat
@@ -262,15 +262,15 @@ cs:
       shortcode: Zkratka
       shortcode_hint: Alespoň 2 znaky, pouze alfanumerické znaky a podtržítka
       title: Vlastní emoji
-      uncategorized: Nezařazená
+      uncategorized: Nezařazeno
       unlist: Neuvést
       unlisted: Neuvedeno
-      update_failed_msg: Nebylo možné aktualizovat toto emoji
+      update_failed_msg: Toto emoji nebylo možné aktualizovat
       updated_msg: Emoji úspěšně aktualizováno!
       upload: Nahrát
     dashboard:
       authorized_fetch_mode: Zabezpečený režim
-      backlog: opožděné úlohy
+      backlog: nevyřízené úlohy
       config: Konfigurace
       feature_deletions: Smazání účtů
       feature_invites: Odkazy pozvánek
@@ -282,8 +282,8 @@ cs:
       features: Vlastnosti
       hidden_service: Federace se skrytými službami
       open_reports: otevřená hlášení
-      pending_tags: hashtagů čeká na posouzení
-      pending_users: uživatelů
+      pending_tags: hashtagy čekající na posouzení
+      pending_users: uživatelé čekající na posouzení
       recent_users: Nedávní uživatelé
       search: Fulltextové vyhledávání
       single_user_mode: Režim jednoho uživatele
@@ -307,28 +307,28 @@ cs:
       destroyed_msg: Blokace domény byla zrušena
       domain: Doména
       edit: Upravit doménovou blokaci
-      existing_domain_block_html: Pro účet %{name} jste již nastavil/a přísnější omezení, musíte jej nejdříve <a href="%{unblock_url}">odblokovat</a>.
+      existing_domain_block_html: Pro účet %{name} jste už nastavili přísnější omezení, nejprve jej <a href="%{unblock_url}">odblokujte</a>.
       new:
         create: Vytvořit blokaci
         hint: Blokace domény nezakáže vytváření záznamů účtů v databázi, ale bude na tyto účty zpětně a automaticky aplikovat specifické metody moderování.
         severity:
-          desc_html: Funkce <strong>Utišit</strong> zneviditelní příspěvky z účtu komukoliv, kdo jej nesleduje. Funkce <strong>Pozastavit</strong> odstraní všechen obsah, média a profilová data účtu. Pro pouhé odmítnutí mediálních souborů použijte funkci <strong>Žádné</strong>.
+          desc_html: "<strong>Ztišení</strong> skryje příspěvky z účtu komukoliv, kdo jej nesleduje. <strong>Pozastavení</strong> odstraní všechen obsah, média a profilová data účtu. Pro pouhé odmítnutí mediálních souborů použijte funkci <strong>Žádné</strong>."
           noop: Žádné
-          silence: Utišit
+          silence: Ztišit
           suspend: Pozastavit
-        title: Nová doménová blokace
+        title: Nová blokace domény
       private_comment: Soukromý komentář
       private_comment_hint: Komentář o tomto omezení domény pro vnitřní použití moderátory.
       public_comment: Veřejný komentář
-      public_comment_hint: Komentář o tomto omezení domény pro obecnou veřejnost, pokud je povoleno zobrazování seznamu omezení domén.
+      public_comment_hint: Komentář o tomto omezení domény pro obecnou veřejnost, pokud je povoleno zobrazování seznamu omezených domén.
       reject_media: Odmítat mediální soubory
       reject_media_hint: Odstraní lokálně uložené mediální soubory a odmítne jejich stahování v budoucnosti. Nepodstatné pro pozastavení
-      reject_reports: Odmítat nahlášení
-      reject_reports_hint: Ignorovat všechna nahlášení pocházející z této domény. Nepodstatné pro pozastavení
+      reject_reports: Odmítat hlášení
+      reject_reports_hint: Ignorovat všechna hlášení pocházející z této domény. Nepodstatné pro pozastavení
       rejecting_media: odmítají se mediální soubory
-      rejecting_reports: odmítají se nahlášení
+      rejecting_reports: odmítají se hlášení
       severity:
-        silence: utišeno
+        silence: ztišeno
         suspend: pozastaveno
       show:
         affected_accounts:
@@ -337,18 +337,19 @@ cs:
           one: Jeden účet v databázi byl ovlivněn
           other: "%{count} účtů v databázi bylo ovlivněno"
         retroactive:
-          silence: Odtišit existující ovlivněné účty z této domény
+          silence: Zrušit ztišení existujících ovlivněných účtů z této domény
           suspend: Zrušit pozastavení existujících ovlivněných účtů z této domény
         title: Zrušit blokaci domény %{domain}
         undo: Odvolat
       undo: Odvolat blokaci domény
-      view: Zobrazit doménovou blokaci
+      view: Zobrazit blokaci domény
     email_domain_blocks:
-      add_new: Přidat nový
+      add_new: Přidat
       created_msg: E-mailová doména úspěšně přidána na černou listinu
       delete: Smazat
       destroyed_msg: E-mailová doména úspěšně odstraněna z černé listiny
       domain: Doména
+      empty: Na černé listině aktuálně nejsou žádné e-mailové domény.
       new:
         create: Přidat doménu
         title: Nová položka pro černou listinu e-mailů
@@ -374,14 +375,14 @@ cs:
       total_blocked_by_us: Blokované námi
       total_followed_by_them: Sledované jimi
       total_followed_by_us: Sledované námi
-      total_reported: Nahlášení o nich
+      total_reported: Hlášení o nich
       total_storage: Mediální přílohy
     invites:
       deactivate_all: Deaktivovat vše
       filter:
         all: Všechny
         available: Dostupné
-        expired: Vypršelé
+        expired: Vypršené
         title: Filtrovat
       title: Pozvánky
     pending_accounts:
@@ -389,30 +390,39 @@ cs:
     relays:
       add_new: Přidat nový most
       delete: Smazat
-      description_html: "<strong>Federovací most</strong> je přechodný server, který vyměňuje velká množství veřejných tootů mezi servery, které z něj odebírají a publikují na něj. <strong>Může pomoci malým a středně velkým serverům objevovat obsah z fedivesmíru</strong>, což by jinak vyžadovalo, aby místní uživatelé manuálně sledovali jiné lidi na vzdálených serverech."
+      description_html: "<strong>Federovací most</strong> je přechodový server, který vyměňuje velká množství veřejných tootů mezi servery, které je z něj odebírají a publikují na něj. <strong>Může pomoci malým a středně velkým serverům objevovat obsah z fedivesmíru</strong>, což by jinak vyžadovalo, aby místní uživatelé manuálně sledovali jiné lidi na vzdálených serverech."
       disable: Zakázat
       disabled: Zakázáno
       enable: Povolit
-      enable_hint: Je-li tohle povoleno, začne váš server odebírat všechny veřejné tooty z tohoto mostu a odesílat na něj své vlastní veřejné tooty.
+      enable_hint: Po zapnutí začne váš server odebírat všechny veřejné tooty z tohoto mostu a odesílat na něj své vlastní veřejné tooty.
       enabled: Povoleno
       inbox_url: URL mostu
-      pending: Čekám na souhlas mostu
+      pending: Čeká na souhlas mostu
       save_and_enable: Uložit a povolit
       setup: Nastavit připojení k mostu
-      signatures_not_enabled: Mosty nebudou fungovat správně, dokud je povolen zabezpečený režim nebo režim bílé listiny
+      signatures_not_enabled: Dokud je povolen zabezpečený režim nebo režim bílé listiny, nebudou mosty správně fungovat
       status: Stav
       title: Mosty
     report_notes:
-      created_msg: Poznámka o nahlášení úspěšně vytvořena!
-      destroyed_msg: Poznámka o nahlášení úspěšně smazána!
+      created_msg: Poznámka o hlášení úspěšně vytvořena!
+      destroyed_msg: Poznámka o hlášení úspěšně smazána!
     reports:
       account:
-        note: poznámka
-        report: nahlášení
-      action_taken_by: Akci vykonal/a
-      are_you_sure: Jste si jistý/á?
+        notes:
+          few: "%{count} poznámky"
+          many: "%{count} poznámek"
+          one: "%{count} poznámka"
+          other: "%{count} poznámek"
+        reports:
+          few: "%{count} hlášení"
+          many: "%{count} hlášení"
+          one: "%{count} hlášení"
+          other: "%{count} hlášení"
+      action_taken_by: Akci vykonal uživatel
+      are_you_sure: Opravu?
       assign_to_self: Přidělit ke mně
       assigned: Přiřazený moderátor
+      by_target_domain: Doména nahlášeného účtu
       comment:
         none: Žádné
       created_at: Nahlášené
@@ -424,14 +434,14 @@ cs:
         create_and_unresolve: Znovu otevřít s poznámkou
         delete: Smazat
         placeholder: Popište, jaké akce byly vykonány, nebo jakékoliv jiné související aktuality…
-      reopen: Znovu otevřít nahlášení
+      reopen: Znovu otevřít hlášení
       report: 'Nahlásit #%{id}'
       reported_account: Nahlášený účet
       reported_by: Nahlášeno uživatelem
       resolved: Vyřešeno
-      resolved_msg: Nahlášení úspěšně vyřešeno!
+      resolved_msg: Hlášení úspěšně vyřešeno!
       status: Stav
-      title: Nahlášení
+      title: Hlášení
       unassign: Odebrat
       unresolved: Nevyřešeno
       updated_at: Aktualizováno
@@ -440,29 +450,31 @@ cs:
         desc_html: Počty lokálně publikovaných tootů, aktivních uživatelů a nových registrací, v týdenních intervalech
         title: Publikovat hromadné statistiky o uživatelské aktivitě
       bootstrap_timeline_accounts:
-        desc_html: Je-li uživatelských jmen více, oddělujte je čárkami. Lze zadat pouze místní a odemknuté účty. Je-li tohle prázdné, jsou výchozí hodnotou všichni místní administrátoři.
+        desc_html: Je-li uživatelských jmen více, oddělte je čárkami. Lze zadat pouze místní a odemčené účty. Je-li seznam prázdný, jsou výchozí hodnotou všichni místní administrátoři.
         title: Výchozí sledovaní pro nové uživatele
       contact_information:
         email: Pracovní e-mail
         username: Uživatelské jméno pro kontaktování
       custom_css:
-        desc_html: Pozměnit vzhled pomocí šablony CSS načtené na každé stránce
+        desc_html: Pozměnit vzhled pomocí CSS šablony načítané na každé stránce
         title: Vlastní CSS
       default_noindex:
         desc_html: Ovlivňuje všechny uživatele, kteří toto nastavení sami nezměnili
-        title: Odhlásit uživatele z indexování vyhledávačemi ve výchozím stavu
+        title: Ve výchozím stavu odhlásit uživatele z indexování vyhledávači
       domain_blocks:
         all: Všem
         disabled: Nikomu
-        title: Zobrazit doménové blokace
+        title: Zobrazit blokované domény
         users: Přihlášeným místním uživatelům
       domain_blocks_rationale:
         title: Zobrazit odůvodnění
+      enable_bootstrap_timeline_accounts:
+        title: Povolit výchozí sledování pro nové uživatele
       hero:
-        desc_html: Zobrazuje se na hlavní stránce. Doporučuje se rozlišení alespoň 600x100 px. Pokud toto není nastaveno, bude zobrazena miniatura serveru
+        desc_html: Zobrazuje se na hlavní stránce. Doporučujeme rozlišení alespoň 600x100 px. Pokud toto není nastaveno, bude zobrazena miniatura serveru
         title: Hlavní obrázek
       mascot:
-        desc_html: Zobrazuje se na několika stránkách. Doporučuje se rozlišení alespoň 293x205 px. Pokud toto není nastaveno, bude zobrazen výchozí maskot
+        desc_html: Zobrazuje se na několika stránkách. Doporučujeme rozlišení alespoň 293x205 px. Pokud toto není nastaveno, bude zobrazen výchozí maskot
         title: Obrázek maskota
       peers_api_enabled:
         desc_html: Domény, na které tento server narazil ve fedivesmíru
@@ -478,7 +490,7 @@ cs:
           desc_html: Zobrazí se na hlavní stránce, jsou-li registrace uzavřeny. Můžete použít i HTML značky
           title: Zpráva o uzavřených registracích
         deletion:
-          desc_html: Dovolit každému smazání svého účtu
+          desc_html: Povolit komukoliv smazat svůj účet
           title: Zpřístupnit smazání účtu
         min_invite_role:
           disabled: Nikdo
@@ -496,33 +508,33 @@ cs:
         desc_html: Zobrazit na stránce uživatele odznak člena personálu
         title: Zobrazit odznak personálu
       site_description:
-        desc_html: Úvodní odstavec v API. Popište, díky čemu je tento server Mastodon zvláštní, a cokoliv jiného, co je důležité. Můžete zde používat HTML značky, hlavně <code>&lt;a&gt;</code> a <code>&lt;em&gt;</code>.
+        desc_html: Úvodní odstavec v API. Popište, čím se tento server Mastodon odlišuje od ostatních, a cokoliv jiného, co je důležité. Můžete zde používat HTML značky, hlavně <code>&lt;a&gt;</code> a <code>&lt;em&gt;</code>.
         title: Popis serveru
       site_description_extended:
         desc_html: Dobré místo pro vaše pravidla, pokyny a jiné věci, které váš server odlišují od ostatních. Lze použít HTML značky
         title: Vlastní rozšířené informace
       site_short_description:
-        desc_html: Zobrazen v postranním panelu a meta značkách. Popište, co je Mastodon a díky čemu je tento server zvláštní, v jediném odstavci.
+        desc_html: Zobrazeno v postranním panelu a meta značkách. V jednom odstavci popište, co je Mastodon a čím se tento server odlišuje od ostatních.
         title: Krátký popis serveru
       site_terms:
-        desc_html: Můžete si napsat vlastní zásady soukromí, podmínky používání či jiné legality. Můžete použít HTML značky
+        desc_html: Můžete si napsat vlastní zásady ochrany osobních údajů, podmínky používání či jiné právní dokumenty. Můžete použít HTML značky
         title: Vlastní podmínky používání
       site_title: Název serveru
       spam_check_enabled:
         desc_html: Mastodon může automaticky nahlašovat účty, které opakovaně odesílají nevyžádané zprávy. Mohou se najít špatné shody.
         title: Antispamová automatizace
       thumbnail:
-        desc_html: Používáno pro náhledy přes OpenGraph a API. Doporučuje se rozlišení 1200x630px
+        desc_html: Používáno pro náhledy přes OpenGraph a API. Doporučujeme rozlišení 1200x630px
         title: Miniatura serveru
       timeline_preview:
-        desc_html: Zobrazit na hlavní straně odkaz na veřejnou časovou osu a povolit přístup na veřejnou časovou osu pomocí API bez autentizace
+        desc_html: Zobrazit na hlavní stránce odkaz na veřejnou časovou osu a povolit přístup na veřejnou časovou osu pomocí API bez autentizace
         title: Povolit neautentizovaný přístup k časové ose
       title: Nastavení stránky
       trendable_by_default:
         desc_html: Ovlivňuje hashtagy, které nebyly dříve zakázány
-        title: Dovolit hashtagům zobrazit se na trendech bez předchozího posouzení
+        title: Povolit zobrazení hashtagů v trendech i bez předchozího posouzení
       trends:
-        desc_html: Veřejně zobrazit předtím schválené hashtagy, které jsou aktuálně populární
+        desc_html: Veřejně zobrazit populární hashtagy, které byly předtím schváleny
         title: Populární hashtagy
     statuses:
       back_to_account: Zpět na stránku účtu
@@ -539,7 +551,7 @@ cs:
       title: Tooty účtu
       with_media: S médii
     tags:
-      accounts_today: Jedinečná použití dnes
+      accounts_today: Dnešní jedinečná použití
       accounts_week: Jedinečná použití tento týden
       breakdown: Přehled dnešního používání podle zdroje
       context: Kontext
@@ -552,10 +564,10 @@ cs:
       review: Stav schválení
       reviewed: Schválen
       title: Hashtagy
-      trending_right_now: Aktuální trendy
-      unique_uses_today: "%{count} dnes píše"
-      unreviewed: Neposouzeno
-      updated_msg: Nastavení hashtagu bylo úspěšně aktualizováno
+      trending_right_now: Právě je trendy
+      unique_uses_today: Dnes použilo %{count} uživatelů
+      unreviewed: Nezkontrolováno
+      updated_msg: Nastavení hashtagů bylo úspěšně aktualizováno
     title: Administrace
     warning_presets:
       add_new: Přidat nové
@@ -565,61 +577,66 @@ cs:
       title: Spravovat předlohy pro varování
   admin_mailer:
     new_pending_account:
-      body: Detaily nového účtu jsou uvedeny níže. Můžete tento požadavek schválit nebo zamítnout.
-      subject: Nový účet čekající na posouzení na %{instance} (%{username})
+      body: Detaily nového účtu jsou uvedeny níže. Tuto žádost můžete schválit nebo zamítnout.
+      subject: Nový účet na serveru %{instance} čekající na posouzení (%{username})
     new_report:
-      body: "%{reporter} nahlásil/a uživatele %{target}"
-      body_remote: Někdo z %{domain} nahlásil uživatele %{target}
-      subject: Nové nahlášení pro %{instance} (#%{id})
+      body: Uživatel %{reporter} nahlásil uživatele %{target}
+      body_remote: Někdo z domény %{domain} nahlásil uživatele %{target}
+      subject: Nové hlášení pro %{instance} (#%{id})
     new_trending_tag:
-      body: 'Hashtag #%{name} je dnes populární, nebyl však dříve schválen. Nebude zobrazen veřejně, pokud to nedovolíte. Můžete také pouze uložit formulář tak, jak je, a nikdy o něm opět neslyšet.'
+      body: 'Hashtag #%{name} je dnes populární, ale nebyl dříve schválen. Pokud to nedovolíte, nebude veřejně zobrazen. Pokud tento formulář uložíte jak je, už o něm opět neuslyšíte.'
       subject: Nový hashtag ke schválení na %{instance} (#%{name})
   aliases:
     add_new: Vytvořit alias
     created_msg: Nový alias byl úspěšně vytvořen. Nyní můžete zahájit přesun ze starého účtu.
-    deleted_msg: Alias byl úspěšně odstraněn. Přesun z tamtoho účtu na tento již nebude možný.
+    deleted_msg: Alias byl úspěšně odstraněn. Přesun z jiného účtu na tento již nebude možný.
     hint_html: Chcete-li se přesunout z jiného účtu na tento, můžete si zde vytvořit alias, který je vyžadován předtím, než můžete pokračovat přesunem sledujících ze starého účtu na tento. Tato akce sama o sobě je <strong>neškodná a vratná</strong>. <strong>Přesun účtu se zahajuje ze starého účtu</strong>.
     remove: Odpojit alias
   appearance:
     advanced_web_interface: Pokročilé webové rozhraní
-    advanced_web_interface_hint: 'Chcete-li využít celé šířky vaší obrazovky, dovolí vám pokročilé webové rozhraní nastavit si mnoho různých sloupců, takže můžete vidět ve stejnou chvíli tolik informací, kolik chcete: domovskou časovou osu, oznámení, federovanou časovou osu a libovolný počet seznamů a hashtagů.'
+    advanced_web_interface_hint: 'Chcete-li využít celé šířky vaší obrazovky, dovolí vám pokročilé webové rozhraní nastavit si mnoho různých sloupců, takže ve stejnou chvíli uvidíte tolik informací, kolik chcete: domovskou časovou osu, oznámení, federovanou časovou osu a libovolný počet seznamů a hashtagů.'
     animations_and_accessibility: Animace a přístupnost
     confirmation_dialogs: Potvrzovací dialogy
     discovery: Objevování
+    localization:
+      body: Mastodon je přeložen do češtiny díky dobrovolníkům.
+      guide_link: https://cs.crowdin.com/project/mastodon
+      guide_link_text: Každý může pomoci.
     sensitive_content: Citlivý obsah
+    toot_layout: Rozložení tootů
   application_mailer:
-    notification_preferences: Změnit volby e-mailu
+    notification_preferences: Změnit předvolby e-mailů
     salutation: "%{name},"
-    settings: 'Změnit volby e-mailu: %{link}'
+    settings: 'Změnit předvolby e-mailů: %{link}'
     view: 'Zobrazit:'
     view_profile: Zobrazit profil
     view_status: Zobrazit toot
   applications:
     created: Aplikace úspěšně vytvořena
     destroyed: Aplikace úspěšně smazána
-    invalid_url: Zadaná adresa URL je neplatná
+    invalid_url: Zadaná URL adresa je neplatná
     regenerate_token: Znovu vygenerovat přístupový token
     token_regenerated: Přístupový token byl úspěšně vygenerován
-    warning: Buďte s těmito daty velmi opatrní. Nikdy je s nikým nesdílejte!
+    warning: Zacházejte s těmito daty opatrně. Nikdy je s nikým nesdílejte!
     your_token: Váš přístupový token
   auth:
-    apply_for_account: Vyžádat si pozvánku
+    apply_for_account: Požádat o pozvánku
     change_password: Heslo
     checkbox_agreement_html: Souhlasím s <a href="%{rules_path}" target="_blank">pravidly serveru</a> a <a href="%{terms_path}" target="_blank">podmínkami používání</a>
     checkbox_agreement_without_rules_html: Souhlasím s <a href="%{terms_path}" target="_blank">podmínkami používání</a>
     delete_account: Odstranit účet
-    delete_account_html: Chcete-li odstranit svůj účet, <a href="%{path}">pokračujte zde</a>. Budete požádán/a o potvrzení.
+    delete_account_html: Chcete-li odstranit svůj účet, <a href="%{path}">pokračujte zde</a>. Budete požádáni o potvrzení.
     description:
-      prefix_invited_by_user: "@%{name} vás zve, abyste se přidal/a na tento server Mastodon!"
+      prefix_invited_by_user: "@%{name} vás zve na tento server Mastodon!"
       prefix_sign_up: Registrujte se na Mastodonu již dnes!
       suffix: S účtem budete moci sledovat lidi, psát příspěvky a vyměňovat si zprávy s uživateli z kteréhokoliv serveru Mastodon a dalších služeb!
-    didnt_get_confirmation: Neobdržel/a jste pokyny pro potvrzení?
-    forgot_password: Zapomněl/a jste heslo?
-    invalid_reset_password_token: Token pro obnovení hesla je buď neplatný, nebo vypršel. Prosím vyžádejte si nový.
+    didnt_get_confirmation: Neobdrželi jste pokyny pro potvrzení?
+    forgot_password: Zapomněli jste heslo?
+    invalid_reset_password_token: Token pro obnovení hesla je buď neplatný, nebo vypršel. Vyžádejte si prosím nový.
     login: Přihlásit
     logout: Odhlásit
     migrate_account: Přesunout se na jiný účet
-    migrate_account_html: Chcete-li přesměrovat tento účet na jiný, můžete to <a href="%{path}">nastavit zde</a>.
+    migrate_account_html: Zde můžete <a href="%{path}">nastavit přesměrování tohoto účtu na jiný</a>.
     or_log_in_with: Nebo se přihlaste pomocí
     providers:
       cas: CAS
@@ -631,21 +648,21 @@ cs:
     security: Zabezpečení
     set_new_password: Nastavit nové heslo
     setup:
-      email_below_hint_html: Pokud je níže uvedená e-mailová adresa nesprávná, můžete ji změnit zde a obdržet nový potvrzovací e-mail.
+      email_below_hint_html: Pokud je níže uvedená e-mailová adresa nesprávná, můžete ji změnit zde a nechat si poslat nový potvrzovací e-mail.
       email_settings_hint_html: Potvrzovací e-mail byl odeslán na %{email}. Pokud je tato adresa nesprávná, můžete ji změnit v nastavení účtu.
       title: Nastavení
     status:
       account_status: Stav účtu
-      confirming: Čekám na dokončení potvrzení e-mailu.
+      confirming: Čeká na dokončení potvrzení e-mailu.
       functional: Váš účet je zcela funkční.
-      pending: Váš požadavek čeká na schválení naším personálem. To může nějakou dobu trvat. Pokud bude váš požadavek schválen, obdržíte e-mail.
-      redirecting_to: Váš účet je neaktivní, protože právě přesměrovává na účet %{acct}.
-    trouble_logging_in: Problémy s přihlašováním?
+      pending: Vaše žádost čeká na schválení naším personálem. To může nějakou dobu trvat. Pokud bude váš požadavek schválen, obdržíte e-mail.
+      redirecting_to: Váš účet je neaktivní, protože je právě přesměrován na účet %{acct}.
+    trouble_logging_in: Problémy s přihlášením?
   authorize_follow:
     already_following: Tento účet již sledujete
     error: Při hledání vzdáleného účtu bohužel nastala chyba
     follow: Sledovat
-    follow_request: 'Poslal/a jste požadavek o sledování uživateli:'
+    follow_request: 'Poslali jste žádost o sledování uživateli:'
     following: 'Podařilo se! Nyní sledujete uživatele:'
     post_follow:
       close: Nebo můžete toto okno klidně zavřít.
@@ -654,7 +671,7 @@ cs:
     title: Sledovat uživatele %{acct}
   challenge:
     confirm: Pokračovat
-    hint_html: "<strong>Tip:</strong> Po dobu hodiny vás nebudeme znovu žádat o heslo."
+    hint_html: "<strong>Tip:</strong> Po dobu jedné hodiny vás o heslo nebudeme znovu žádat."
     invalid_password: Neplatné heslo
     prompt: Pokračujte potvrzením hesla
   datetime:
@@ -672,22 +689,22 @@ cs:
       x_months: "%{count} mesíců"
       x_seconds: "%{count} s"
   deletes:
-    challenge_not_passed: Informace, které jste zadal/a, nejsou správné
-    confirm_password: Zadejte svoje současné heslo pro ověření vaší identity
-    confirm_username: Zadáním svého uživatelského jména potvrdíte proces
+    challenge_not_passed: Zadané informace nejsou správné
+    confirm_password: Pro ověření vaší identity zadejte své současné heslo
+    confirm_username: Zadáním svého uživatelského jména proces potvrdíte
     proceed: Odstranit účet
     success_msg: Váš účet byl úspěšně odstraněn
     warning:
       before: 'Před pokračováním si prosím pečlivě přečtěte tyto poznámky:'
       caches: Obsah, který byl uložen do cache jiných serverů, nemusí být smazán
       data_removal: Vaše příspěvky a další data budou trvale smazána
-      email_change_html: Můžete si <a href="%{path}">změnit svou e-mailovou adresu</a> bez smazání účtu
+      email_change_html: Svou e-mailovou adresu můžete <a href="%{path}">změnit</a> i bez mazání účtu
       email_contact_html: Pokud stále nepřijde, můžete požádat o pomoc zasláním e-mailu na <a href="mailto:%{email}">%{email}</a>
       email_reconfirmation_html: Pokud neobdržíte potvrzovací e-mail, můžete si ho <a href="%{path}">vyžádat znovu</a>
-      irreversible: Nebudete moci obnovit nebo znovu aktivovat váš účet
-      more_details_html: Více detailů najdete v <a href="%{terms_path}">zásadách soukromí</a>.
+      irreversible: Váš účet nebude možné obnovit ani znovu aktivovat
+      more_details_html: Podrobnosti najdete v <a href="%{terms_path}">zásadách ochrany osobních údajů</a>.
       username_available: Vaše uživatelské jméno bude opět dostupné
-      username_unavailable: Vaše uživatelské jméno zůstane nedostupným
+      username_unavailable: Vaše uživatelské jméno zůstane nedostupné
   directories:
     directory: Adresář profilů
     explanation: Objevujte uživatele podle jejich zájmů
@@ -695,11 +712,11 @@ cs:
   domain_validator:
     invalid_domain: není platné doménové jméno
   errors:
-    '400': Požadavek, který jste odeslal/a, byl neplatný nebo poškozený.
+    '400': Žádost, kterou jste odeslali, byla neplatná nebo poškozená.
     '403': Nemáte povolení zobrazit tuto stránku.
     '404': Stránka, kterou hledáte, tu není.
-    '406': Tato stránka není dostupná v požadovaném formátu.
-    '410': Stránka, kterou hledáte, tu již neexistuje.
+    '406': Tato stránka není v požadovaném formátu dostupná.
+    '410': Stránka, kterou hledáte, tu již není.
     '422':
       content: Bezpečnostní ověření selhalo. Neblokujete cookies?
       title: Bezpečnostní ověření selhalo
@@ -715,22 +732,21 @@ cs:
   exports:
     archive_takeout:
       date: Datum
-      download: Stáhnout svůj archiv
+      download: Stáhnout váš archiv
       hint_html: Můžete si vyžádat archiv vašich <strong>tootů a nahraných médií</strong>. Exportovaná data budou ve formátu ActivityPub a budou čitelná kterýmkoliv kompatibilním softwarem. Archiv si můžete vyžádat každých 7 dní.
       in_progress: Kompiluji váš archiv…
-      request: Vyžádat svůj archiv
+      request: Vyžádat váš archiv
       size: Velikost
     blocks: Blokujete
     csv: CSV
-    domain_blocks: Blokace domén
-    follows: Sledujete
+    domain_blocks: Blokování domén
     lists: Seznamy
-    mutes: Skryl/a jste
+    mutes: Skryli jste
     storage: Paměť médií
   featured_tags:
     add_new: Přidat nový
     errors:
-      limit: Již jste zvýraznil/a maximální počet hashtagů
+      limit: Již jste zvýraznili maximální počet hashtagů
     hint_html: "<strong>Co jsou zvýrazněné hashtagy?</strong> Zobrazují se prominentně na vašem veřejném profilu a dovolují lidem prohlížet si vaše veřejné příspěvky konkrétně pod těmi hashtagy. Je to skvělý nástroj pro sledování kreativních děl nebo dlouhodobých projektů."
   filters:
     contexts:
@@ -741,10 +757,11 @@ cs:
     edit:
       title: Upravit filtr
     errors:
-      invalid_context: Nebylo poskytnuto nic, nebo má neplatný kontext
+      invalid_context: Nebyl poskytnut žádný nebo jen neplatný kontext
       invalid_irreversible: Nezvratné filtrování funguje pouze v souvislosti s domovskou osou či oznámeními
     index:
       delete: Smazat
+      empty: Nemáte žádný filtr.
       title: Filtry
     new:
       title: Přidat nový filtr
@@ -757,14 +774,14 @@ cs:
     all: Všechny
     changes_saved_msg: Změny byly úspěšně uloženy!
     copy: Kopírovat
-    no_batch_actions_available: Pro tuto stránku nejsou dostupny žádné souhrnné akce
-    order_by: Seřadit od
+    no_batch_actions_available: Pro tuto stránku nejsou dostupné žádné souhrnné akce
+    order_by: Seřadit podle
     save_changes: Uložit změny
     validation_errors:
-      few: Něco ještě není úplně v pořádku! Prosím zkontrolujte %{count} chyby níže
-      many: Něco ještě není úplně v pořádku! Prosím zkontrolujte %{count} chyb níže
-      one: Něco ještě není úplně v pořádku! Prosím zkontrolujte chybu níže
-      other: Něco ještě není úplně v pořádku! Prosím zkontrolujte %{count} chyb níže
+      few: Něco ještě není úplně v pořádku! Zkontrolujte prosím %{count} chyby uvedené níže
+      many: Něco ještě není úplně v pořádku! Zkontrolujte prosím %{count} chyb uvedených níže
+      one: Něco ještě není úplně v pořádku! Zkontrolujte prosím chybu uvedenou níže
+      other: Něco ještě není úplně v pořádku! Zkontrolujte prosím %{count} chyb uvedených níže
   html_validator:
     invalid_markup: 'obsahuje neplatný HTML kód: %{error}'
   identity_proofs:
@@ -772,11 +789,11 @@ cs:
     authorize: Ano, autorizovat
     authorize_connection_prompt: Autorizovat toto kryptografické spojení?
     errors:
-      failed: Kryptografické spojení selhalo. Prosím zkuste to znovu z %{provider}.
+      failed: Kryptografické spojení selhalo. Zkuste to prosím znovu z %{provider}.
       keybase:
-        invalid_token: Tokeny Keybase jsou hashe podpisů a musí být 66 znaků dlouhé
-        verification_failed: Keybase nerozpoznává tento token jako podpis uživatele %{kb_username} na Keybase. Prosím zkuste to znovu z Keybase.
-      wrong_user: Nelze vytvořit důkaz pro uživatele %{proving}, zatímco jste přihlášen/a jako %{current}. Přihlaste se jako %{proving} a zkuste to znovu.
+        invalid_token: Keybase tokeny jsou hashe podpisů a musí být dlouhé 66 hexadecimálních znaků
+        verification_failed: Keybase nerozpoznává tento token jako podpis uživatele %{kb_username} na Keybase. Zkuste to prosím znovu z Keybase.
+      wrong_user: Nelze vytvořit důkaz pro uživatele %{proving}, zatímco jste přihlášeni jako %{current}. Přihlaste se jako %{proving} a zkuste to znovu.
     explanation_html: Zde můžete kryptograficky připojit vaše ostatní identity, například profil Keybase. To dovolí jiným lidem vám posílat šifrované zprávy a důvěřovat obsahu, který jim pošlete.
     i_am_html: Na %{service} jsem %{username}.
     identity: Identita
@@ -791,7 +808,7 @@ cs:
       merge_long: Ponechat existující záznamy a přidat nové
       overwrite: Přepsat
       overwrite_long: Nahradit aktuální záznamy novými
-    preface: Můžete importovat data, která jste exportoval/a z jiného serveru, jako například seznam lidí, které sledujete či blokujete.
+    preface: Můžete importovat data, která jste exportovali z jiného serveru, jako například seznam lidí, které sledujete či blokujete.
     success: Vaše data byla úspěšně nahrána a nyní budou zpracována v daný čas
     types:
       blocking: Seznam blokovaných
@@ -799,26 +816,26 @@ cs:
       following: Seznam sledovaných
       muting: Seznam ignorovaných
     upload: Nahrát
-  in_memoriam_html: Navždy budeme vzpomínat.
+  in_memoriam_html: In Memoriam.
   invites:
     delete: Deaktivovat
-    expired: Vypršelé
+    expired: Expirováno
     expires_in:
       '1800': 30 minut
       '21600': 6 hodin
-      '3600': 1 hodinu
+      '3600': 1 hodina
       '43200': 12 hodin
       '604800': 1 týden
       '86400': 1 den
     expires_in_prompt: Nikdy
     generate: Vygenerovat pozvánku
-    invited_by: 'Byl/a jste pozván/a uživatelem:'
+    invited_by: 'Pozval váš uživatel:'
     max_uses:
       few: "%{count} použití"
       many: "%{count} použití"
       one: 1 použití
       other: "%{count} použití"
-    max_uses_prompt: Bez limitu
+    max_uses_prompt: Bez omezení
     prompt: Vygenerujte a sdílejte s ostatními odkazy a umožněte jim přístup na tento server
     table:
       expires_at: Vyprší
@@ -826,7 +843,7 @@ cs:
     title: Pozvat lidi
   lists:
     errors:
-      limit: Dosáhl/a jste maximálního počtu seznamů
+      limit: Dosáhli jste maximálního počtu seznamů
   media_attachments:
     validations:
       images_and_video: K tootu, který již obsahuje obrázky, nelze připojit video
@@ -837,42 +854,42 @@ cs:
     cancel_explanation: Zrušením přesměrování znovu aktivujete svůj aktuální účet, ale nevrátí se vám sledující, kteří byli přesměrováni na druhý účet.
     cancelled_msg: Přesměrování bylo úspěšně zrušeno.
     errors:
-      already_moved: je stejný účet, na který jste se již přesunul/a
+      already_moved: je stejný účet, na který jste se již přesunuli
       missing_also_known_as: neodkazuje na tento účet
       move_to_self: nemůže být aktuální účet
-      not_found: nemohl být nalezen
+      not_found: nebyl nalezen
       on_cooldown: Probíhá období odpočinku
     followers_count: Sledující v době přesunu
     incoming_migrations: Přesun z jiného účtu
     incoming_migrations_html: Chcete-li se přesunout z jiného účtu na tento, potřebujete si nejprve <a href="%{path}">vytvořit alias účtu</a>.
-    moved_msg: Váš účet nyní přesměrovává na účet %{acct} a vaši sledující se na něj přesouvají.
-    not_redirecting: Váš účet aktuálně nepřesměrovává na žádný jiný účet.
-    on_cooldown: Nedávno jste přesunul/a svůj účet. Tato funkce bude opět dostupná za %{count} dní.
+    moved_msg: Váš účet se nyní přesměrovává na účet %{acct} a vaši sledující se na něj přesouvají.
+    not_redirecting: Váš účet se aktuálně nepřesměrovává na žádný jiný účet.
+    on_cooldown: Nedávno jste svůj účet přesunuli. Tato funkce bude opět dostupná za %{count} dní.
     past_migrations: Předchozí přesuny
     proceed_with_move: Přesunout sledující
-    redirecting_to: Váš účet přesměrovává na účet %{acct}.
+    redirecting_to: Váš účet se přesměrovává na účet %{acct}.
     set_redirect: Nastavit přesměrování
     warning:
       backreference_required: Nový účet musí být nejprve nastaven, aby odkazoval zpátky na tento
       before: 'Před pokračováním si prosím pečlivě přečtěte tyto poznámky:'
       cooldown: Po přesunu nastane období odpočinku, kdy se nebudete moci opět přesunout
       disabled_account: Váš aktuální účet nebude poté zcela použitelný. Budete však mít přístup k datovým exportům a budete ho moci znovu aktivovat.
-      followers: Touto akcí přesunete všechny sledující z aktuálního účtu na nový účet
+      followers: Touto akcí přesunete všechny sledující z aktuálního účtu na nový
       only_redirect_html: Alternativně můžete <a href="%{path}">nastavit pouze přesměrování na váš profil</a>.
       other_data: Žádná další data nebudou přesunuta automaticky
-      redirect: Profil vašeho aktuálního účtu bude aktualizován s oznámením o přesměrování a bude vyloučen z hledání
+      redirect: Profil vašeho aktuálního účtu bude aktualizován s oznámením o přesměrování a bude vyloučen z výsledků hledání
   moderation:
     title: Moderování
   notification_mailer:
     digest:
       action: Zobrazit všechna oznámení
-      body: Zde najdete stručný souhrn zpráv, které jste zmeškal/a od vaší poslední návštěvy %{since}
-      mention: "%{name} vás zmínil/a v:"
+      body: Zde najdete stručný souhrn zpráv, které jste zmeškali od vaší poslední návštěvy %{since}
+      mention: 'Uživatel %{name} vás zmínil v:'
       new_followers_summary:
-        few: Navíc jste získal/a %{count} nové sledující, zatímco jste byl/a pryč! Skvělé!
-        many: Navíc jste získal/a %{count} nových sledujících, zatímco jste byl/a pryč! Úžasné!
-        one: Navíc jste získal/a jednoho nového sledujícího, zatímco jste byl/a pryč! Hurá!
-        other: Navíc jste získal/a %{count} nových sledujících, zatímco jste byl/a pryč! Úžasné!
+        few: Zatímco jste byli pryč jste navíc získali %{count} nové sledující! Skvělé!
+        many: Zatímco jste byli pryč jste navíc získali %{count} nových sledujících! Úžasné!
+        one: Zatímco jste byli pryč jste navíc získali jednoho nového sledujícího! Hurá!
+        other: Zatímco jste byli pryč jste navíc získali %{count} nových sledujících! Úžasné!
       subject:
         few: "%{count} nová oznámení od vaší poslední návštěvy \U0001F418"
         many: "%{count} nových oznámení od vaší poslední návštěvy \U0001F418"
@@ -880,27 +897,31 @@ cs:
         other: "%{count} nových oznámení od vaší poslední návštěvy \U0001F418"
       title: Ve vaší nepřítomnosti…
     favourite:
-      body: 'Váš toot si oblíbil/a %{name}:'
-      subject: "%{name} si oblíbil/a váš toot"
+      body: 'Váš toot si oblíbil uživatel %{name}:'
+      subject: Uživatel %{name} si oblíbil váš toot
       title: Nové oblíbení
     follow:
-      body: "%{name} vás nyní sleduje!"
-      subject: "%{name} vás nyní sleduje"
+      body: Uživatel %{name} vás nyní sleduje!
+      subject: Uživatel %{name} vás nyní sleduje
       title: Nový sledující
     follow_request:
-      action: Spravovat požadavky o sledování
-      body: "%{name} požádal/a o povolení vás sledovat"
+      action: Spravovat žádosti o sledování
+      body: Uživatel %{name} požádal o povolení vás sledovat
       subject: 'Čekající sledující: %{name}'
-      title: Nový požadavek o sledování
+      title: Nová žádost o sledování
     mention:
       action: Odpovědět
-      body: 'Byl/a jste zmíněn/a uživatelem %{name} v:'
-      subject: Byl/a jste zmíněn/a uživatelem %{name}
+      body: 'Uživatel %{name} vás zmínil v:'
+      subject: Uživatel %{name} vás zmínil
       title: Nová zmínka
     reblog:
-      body: 'Váš toot byl boostnutý uživatelem %{name}:'
-      subject: "%{name} boostnul/a váš toot"
+      body: 'Uživatel %{name} boostnul váš toot:'
+      subject: Uživatel %{name} boostnul váš toot
       title: Nový boost
+  notifications:
+    email_events: Události pro e-mailová oznámení
+    email_events_hint: 'Vyberte události, pro které chcete dostávat oznámení:'
+    other_settings: Další nastavení oznámení
   number:
     human:
       decimal_units:
@@ -915,18 +936,19 @@ cs:
     newer: Novější
     next: Další
     older: Starší
-    prev: Před
+    prev: Předchozí
     truncate: "&hellip;"
   polls:
     errors:
-      already_voted: V této anketě jste již hlasoval/a
+      already_voted: V této anketě jste již hlasovali
       duplicate_options: obsahuje duplicitní položky
       duration_too_long: je příliš daleko v budoucnosti
       duration_too_short: je příliš brzy
       expired: Anketa již skončila
-      over_character_limit: nesmí být každá delší než %{max} znaků
+      invalid_choice: Zvolená možnost hlasování neexistuje
+      over_character_limit: nesmí být žádná delší než %{max} znaků
       too_few_options: musí mít více než jednu položku
-      too_many_options: nesmí obsahovat více než %{max} položky
+      too_many_options: nesmí obsahovat více než %{max} položek
   preferences:
     other: Ostatní
     posting_defaults: Výchozí možnosti psaní
@@ -934,23 +956,25 @@ cs:
   relationships:
     activity: Aktivita účtu
     dormant: Nečinné
-    last_active: Naposledy aktivních
-    most_recent: Naposledy přidaných
+    followers: Sledující
+    following: Sledovaní
+    last_active: Naposledy aktivní
+    most_recent: Nejnovější
     moved: Přesunuté
     mutual: Vzájemné
     primary: Primární
     relationship: Vztah
-    remove_selected_domains: Odstranit všechny sledující ze zvolených domén
-    remove_selected_followers: Odstranit zvolené sledující
-    remove_selected_follows: Přestat sledovat zvolené uživatele
+    remove_selected_domains: Odstranit všechny sledující z vybraných domén
+    remove_selected_followers: Odstranit vybrané sledující
+    remove_selected_follows: Přestat sledovat vybrané uživatele
     status: Stav účtu
   remote_follow:
     acct: Napište svou přezdívku@doménu, ze které chcete jednat
-    missing_resource: Nemůžeme najít požadované přesměrovací URL pro váš účet
-    no_account_html: Ještě nemáte účet? Můžete se <a href='%{sign_up_path}' target='_blank'>registrovat zde</a>
+    missing_resource: Nemůžeme najít požadovanou přesměrovávací URL adresu pro váš účet
+    no_account_html: Ještě nemáte účet? Tady se můžete <a href='%{sign_up_path}' target='_blank'>zaregistrovat</a>
     proceed: Pokračovat ke sledování
     prompt: 'Budete sledovat:'
-    reason_html: "<strong>Proč je tento krok nutný?</strong> <code>%{instance}</code> nemusí být serverem, na kterém jste registrován/a, proto vás musíme nejdříve přesměrovat na váš domovský server."
+    reason_html: "<strong>Proč je tento krok nutný?</strong> <code>%{instance}</code> nemusí být serverem, na kterém jste registrováni, a proto vás musíme nejdříve přesměrovat na váš domovský server."
   remote_interaction:
     favourite:
       proceed: Pokračovat k oblíbení
@@ -959,11 +983,11 @@ cs:
       proceed: Pokračovat k boostnutí
       prompt: 'Chcete boostnout tento toot:'
     reply:
-      proceed: Pokračovat k odpovězení
+      proceed: Pokračovat k odpovědi
       prompt: 'Chcete odpovědět na tento toot:'
   scheduled_statuses:
-    over_daily_limit: Překročil/a jste limit %{limit} plánovaných tootů pro tento den
-    over_total_limit: Překročil/a jste limit %{limit} plánovaných tootů
+    over_daily_limit: Překročili jste limit %{limit} tootů naplánovaných na tento den
+    over_total_limit: Překročili jste limit %{limit} naplánovaných tootů
     too_soon: Plánované datum musí být v budoucnosti
   sessions:
     activity: Nejnovější aktivita
@@ -987,24 +1011,24 @@ cs:
       uc_browser: UCBrowser
       weibo: Weibo
     current_session: Aktuální relace
-    description: "%{browser} na %{platform}"
+    description: "%{browser} na systému %{platform}"
     explanation: Tohle jsou webové prohlížeče aktuálně přihlášené na váš účet Mastodon.
     ip: IP adresa
     platforms:
       adobe_air: Adobe Air
-      android: Androidu
+      android: Android
       blackberry: Blackberry
       chrome_os: Chrome OS
       firefox_os: Firefox OS
       ios: iOS
-      linux: Linuxu
-      mac: Macu
-      other: neznámé platformě
+      linux: Linux
+      mac: Mac
+      other: neznámá platforma
       windows: Windows
       windows_mobile: Windows Mobile
       windows_phone: Windows Phone
-    revoke: Zamítnout
-    revoke_success: Relace úspěšně zamítnuta
+    revoke: Zrušit
+    revoke_success: Relace úspěšně zrušena
     title: Relace
   settings:
     account: Účet
@@ -1028,7 +1052,7 @@ cs:
     relationships: Sledovaní a sledující
     two_factor_authentication: Dvoufázové ověřování
   spam_check:
-    spam_detected: Tohle je automatizované nahlášení. Byl detekován spam.
+    spam_detected: Tohle je automatizované hlášení. Byl detekován spam.
   statuses:
     attached:
       description: 'Přiloženo: %{attached}'
@@ -1051,12 +1075,12 @@ cs:
       other: 'obsahoval nepovolené hashtagy: %{tags}'
     language_detection: Zjistit jazyk automaticky
     open_in_web: Otevřít na webu
-    over_character_limit: limit %{max} znaků byl překročen
+    over_character_limit: byl překročen limit %{max} znaků
     pin_errors:
-      limit: Už jste si připnul/a maximální počet tootů
+      limit: Už jste si připnuli maximální počet tootů
       ownership: Nelze připnout toot někoho jiného
-      private: Nelze připnout neveřejné tooty
-      reblog: Nelze připnout boost
+      private: Neveřejné tooty nelze připnout
+      reblog: Boosty nelze připnout
     poll:
       total_people:
         few: "%{count} lidé"
@@ -1070,15 +1094,15 @@ cs:
         other: "%{count} hlasů"
       vote: Hlasovat
     show_more: Zobrazit více
-    sign_in_to_participate: Chcete-li se účastnit této konverzace, přihlaste se
+    sign_in_to_participate: Chcete-li se zúčastnit této konverzace, přihlaste se
     title: "%{name}: „%{quote}“"
     visibilities:
       private: Pouze pro sledující
       private_long: Zobrazit pouze sledujícím
       public: Veřejné
-      public_long: Všichni mohou vidět
+      public_long: Uvidí kdokoliv
       unlisted: Neuvedené
-      unlisted_long: Všichni mohou vidět, ale nebudou zahrnuty ve veřejných časových osách
+      unlisted_long: Uvidí kdokoliv, ale nebude zahrnut ve veřejných časových osách
   stream_entries:
     pinned: Připnutý toot
     reblogged: boostnul/a
@@ -1087,33 +1111,33 @@ cs:
     does_not_match_previous_name: se neshoduje s předchozím názvem
   terms:
     body_html: |
-      <h2>Zásady soukromí</h2>
+      <h2>Zásady ochrany osobních údajů</h2>
       <h3 id="collect">Jaké informace sbíráme?</h3>
 
       <ul>
-      <li><em>Základní informace o účtu</em>: Pokud se na tomto serveru zaregistrujete, můžeme vás požádat o zadání uživatelského jména, e-mailové adresy a hesla. Můžete také zadat dodatečné profilové informace, jako například zobrazované jméno a krátký životopis, a nahrát si profilovou fotografii a obrázek záhlaví. Uživatelské i zobrazované jméno, životopis, profilová fotografie a obrázek záhlaví jsou vždy uvedeny veřejně.</li>
-      <li><em>Příspěvky, sledující a další veřejné informace</em>: Seznam lidí, které sledujete, je uveden veřejně, totéž platí i pro vaše sledující. Když sem nahrajete zprávu, bude uloženo datum a čas, společně s aplikací, ze které jste zprávu odeslali. Zprávy mohou obsahovat mediální přílohy, jako jsou obrázky a videa. Veřejné a neuvedené příspěvky jsou dostupné veřejně. Pokud na vašem profilu uvedete příspěvek, je to také veřejně dostupná informace. Vaše příspěvky jsou doručeny vašim sledujícím, což v některých případech znamená, že budou doručeny na různé servery, na kterých budou ukládány kopie. Pokud příspěvky smažete, bude tohle taktéž doručeno vašim sledujícím. Akce znovusdílení nebo oblíbení jiného příspěvku je vždy veřejná.</li>
-      <li><em>Příspěvky přímé a pouze pro sledující</em>: Všechny příspěvky jsou uloženy a zpracovány na serveru. Příspěvky pouze pro sledující jsou doručeny vašim sledujícím a uživatelům v nich zmíněným a přímé příspěvky jsou doručeny pouze uživatelům v nich zmíněným. V některých případech tohle znamená, že budou doručeny na různé servery, na kterých budou ukládány kopie. Upřímně se snažíme omezit přístup k těmto příspěvkům pouze na autorizované uživatele, ovšem jiné servery tak nemusejí učinit. Proto je důležité posoudit servery, ke kterým vaši sledující patří. V nastavení si můžete zapnout volbu pro manuální schvalování či odmítnutí nových sledujících. <em>Prosím mějte na paměti, že operátoři tohoto serveru a kteréhokoliv přijímacího serveru mohou tyto zprávy vidět</em> a příjemci mohou vytvořit jejich snímek, zkopírovat je, nebo je jinak sdílet. <em>Nesdílejte přes Mastodon jakékoliv nebezpečné informace.</em></li>
-      <li><em>IP adresy a další metadata</em>: Když se přihlásíte, zaznamenáváme IP adresu, ze které se přihlašujete, jakožto i název vašeho webového prohlížeče. Všechny vaše webové relace jsou v nastavení přístupné k vašemu posouzení a odvolání. Nejpozdější IP adresa použita je uložena maximálně do 12 měsíců. Můžeme také uchovávat serverové záznamy, které obsahují IP adresy každého požadavku odeslaného na náš server.</li>
+      <li><em>Základní informace o účtu</em>: Pokud se na tomto serveru zaregistrujete, můžeme vás požádat o zadání uživatelského jména, e-mailové adresy a hesla. Můžete také zadat dodatečné profilové informace, jako například zobrazované jméno, krátký životopis, nebo si nahrát profilovou fotografii a obrázek záhlaví. Uživatelské i zobrazované jméno, životopis, profilová fotografie a obrázek záhlaví jsou vždy veřejně dostupné.</li>
+      <li><em>Příspěvky, sledující a další veřejné informace</em>: Seznam lidí, které sledujete, je uveden veřejně, totéž platí i pro uživatele sledující vás. Pro každou vámi napsanou zprávu, bude uloženo datum a čas a informace o aplikaci, ze které jste zprávu odeslali. Zprávy mohou obsahovat mediální přílohy, jako jsou obrázky a videa. Veřejné a neuvedené příspěvky jsou dostupné veřejně. Pokud na vašem profilu uvedete příspěvek, bude také dostupný veřejně. Vaše příspěvky jsou doručeny uživatelům, kteří vás sledují, což v některých případech znamená, že budou příspěvky doručeny na různé servery, na kterých budou ukládány jejich kopie. Pokud příspěvky smažete, bude tato akce taktéž doručeno vašim sledujícím. Akce opětovného sdílení nebo oblíbení jiného příspěvku je vždy veřejná.</li>
+      <li><em>Příspěvky přímé a pouze pro sledující</em>: Všechny příspěvky jsou na serveru uloženy a zpracovány. Příspěvky pouze pro sledující jsou doručeny uživatelům, kteří vás sledují, a uživatelům v příspěvcích zmíněným. Přímé příspěvky jsou doručeny pouze uživatelům v nich zmíněným. V některých případech to znamená, že budou příspěvky doručeny na různé servery, na kterých budou ukládány jejich kopie. Upřímně se snažíme omezit přístup k těmto příspěvkům pouze na autorizované uživatele, ovšem ostatní servery tak činit nemusí. Proto je důležité posoudit servery, ke kterým uživatelé, kteří vás sledují patří. V nastavení si můžete zapnout volbu pro manuální schvalování či odmítnutí nových sledujících. <em>Mějte prosím na paměti, že správci tohoto serveru a kteréhokoliv přijímacího serveru mohou tyto zprávy vidět</em> a příjemci mohou vytvořit jejich snímek, zkopírovat je, nebo je jinak sdílet. <em>Nesdílejte přes Mastodon žádné nebezpečné informace.</em></li>
+      <li><em>IP adresy a další metadata</em>: Při vašem přihlášení zaznamenáváme IP adresu, ze které se přihlašujete, a název vašeho webového prohlížeče. Všechny vaše webové relace jsou v nastavení přístupné k vašemu posouzení a odvolání. Poslední použitá IP adresa je uložena maximálně po dobu 12 měsíců. Můžeme také uchovávat serverové záznamy, které obsahují IP adresy každého požadavku odeslaného na náš server.</li>
       </ul>
 
       <hr class="spacer" />
 
-      <h3 id="use">Na co používáme vaše informace?</h3>
+      <h3 id="use">Na co vaše údaje používáme?</h3>
 
-      <p>Jakékoliv informace, které sbíráme, mohou být použity následujícími způsoby:</p>
+      <p>Všechna data, která sbíráme, mohou být použita následujícími způsoby:</p>
 
       <ul>
-      <li>K poskytnutí základních funkcí Mastodonu. Interagovat s obsahem od jiných lidí a přispívat svým vlastním obsahem můžete pouze, pokud jste přihlášeni. Můžete například sledovat jiné lidi a zobrazit si jejich kombinované příspěvky ve vaší vlastní personalizované časové ose.</li>
-      <li>Pro pomoc moderování komunity, například porovnáním vaší IP adresy s dalšími známými adresami pro určení vyhýbání se zákazům či jiných přestupků.</li>
-      <li>E-mailová adresa, kterou nám poskytnete, může být použita pro zasílání informací, oznámení o interakcích jiných uživatelů s vaším obsahem nebo přijatých zprávách a k odpovědím na dotazy a/nebo další požadavky či otázky.</li>
+      <li>K poskytnutí základních funkcí Mastodonu. K interakci s obsahem od jiných lidí a přispívat svým vlastním obsahem můžete pouze, pokud jste přihlášeni. Můžete například sledovat jiné lidi a zobrazit si jejich kombinované příspěvky ve vaší vlastní personalizované časové ose.</li>
+      <li>Pro pomoc moderování komunity, například porovnáním vaší IP adresy s dalšími známými adresami pro detekci obcházení zákazů či jiných přestupků.</li>
+      <li>E-mailová adresa, kterou nám poskytnete, může být použita pro zasílání informací, oznámení o interakcích jiných uživatelů s vaším obsahem nebo přijatých zprávách, a k odpovědím na dotazy a/nebo další požadavky či otázky.</li>
       </ul>
 
       <hr class="spacer" />
 
-      <h3 id="protect">Jak vaše informace chráníme?</h3>
+      <h3 id="protect">Jak vaše data chráníme?</h3>
 
-      <p>Implenentujeme různá bezpečnostní opatření pro udržování bezpečnosti vašich osobních dat, když zadáváte, odesíláte, či přistupujete k vašim osobním datům. Mimo jiné je vaše relace v prohlížeči, jakož i provoz mezi vašimi aplikacemi a API, zabezpečena pomocí SSL, a vaše heslo je hashováno pomocí silného jednosměrného algoritmu. Pro větší zabezpečení vašeho účtu můžete povolit dvoufázové ověřování.</p>
+      <p>Když zadáváte, odesíláte, či přistupujete k vašim osobním datům, implementujeme různá bezpečnostní opatření pro udržování bezpečnosti vašich osobních dat. Mimo jiné je vaše relace v prohlížeči, jakož i provoz mezi vašimi aplikacemi a API, zabezpečena pomocí SSL, a vaše heslo je hashováno pomocí silného jednosměrného algoritmu. Pro větší zabezpečení vašeho účtu můžete povolit dvoufázové ověřování.</p>
 
       <hr class="spacer" />
 
@@ -1122,19 +1146,19 @@ cs:
       <p>Budeme se upřímně snažit:</p>
 
       <ul>
-      <li>Uchovávat serverové záznamy obsahující IP adresy všech požadavků pro tento server, pokud se takové záznamy uchovávají, maximálně 90 dní.</li>
+      <li>Uchovávat serverové záznamy obsahující IP adresy všech požadavků na tento server, pokud se takové záznamy uchovávají, maximálně 90 dní.</li>
       <li>Uchovávat IP adresy související s registrovanými uživateli maximálně 12 měsíců.</li>
       </ul>
 
-      <p>Kdykoliv si můžete vyžádat a stáhnout archiv vašeho obsahu, včetně vašich příspěvků, mediálních příloh, profilové fotografie a obrázku záhlaví.</p>
+      <p>Kdykoliv si můžete vyžádat a stáhnout archiv svého obsahu, včetně příspěvků, mediálních příloh, profilové fotografie a obrázku záhlaví.</p>
 
-      <p>Kdykoliv můžete nenávratně smazat váš účet.</p>
+      <p>Kdykoliv můžete nenávratně smazat svůj účet.</p>
 
       <hr class="spacer"/>
 
       <h3 id="cookies">Používáme cookies?</h3>
 
-      <p>Ano. Cookies jsou malé soubory, které stránka nebo její poskytovatel uloží na pevný disk vašeho počítače (pokud to dovolíte). Tyto cookies umožňují stránce rozpoznat váš prohlížeč, a pokud máte registrovaný účet, přidružit ho s vaším registrovaným účtem.</p>
+      <p>Ano. Cookies jsou malé soubory, které stránka nebo její poskytovatel uloží do vašeho počítače (pokud to dovolíte). Tyto cookies umožňují stránce rozpoznat váš prohlížeč, a pokud máte registrovaný účet, přidružit ho s vaším registrovaným účtem.</p>
 
       <p>Používáme cookies pro pochopení a ukládání vašich předvoleb pro budoucí návštěvy.</p>
 
@@ -1142,32 +1166,32 @@ cs:
 
       <h3 id="disclose">Zveřejňujeme jakékoliv informace třetím stranám?</h3>
 
-      <p>Vaše osobně identifikovatelné informace neprodáváme, neobchodujeme s nimi, ani je nijak nepřenášíme vnějším stranám. Do tohoto se nepočítají důvěryhodné třetí strany, které nám pomáhají provozovat naši stránku, podnikat, nebo vás obsluhovat, pokud tyto strany souhlasí se zachováním důvěrnosti těchto informací. Můžeme také uvolnit vaše informace, pokud věříme, že je to nutné pro soulad se zákonem, prosazování našich zásad, nebo ochranu práv, majetku, či bezpečnost nás či ostatních.</p>
+      <p>Vaše osobně identifikovatelné informace neprodáváme, neobchodujeme s nimi, ani je nijak nepřenášíme vnějším stranám. Nepočítáme do toho důvěryhodné třetí strany, které nám pomáhají provozovat naši stránku, podnikat, nebo vás obsluhovat, pokud tyto strany souhlasí se zachováním důvěrnosti těchto informací. Vaše informace můžete uvolnit, pokud věříme, že je to nutné pro soulad se zákonem, prosazování našich zásad, nebo ochranu práv, majetku, či bezpečnost nás či ostatních.</p>
 
-      <p>Váš veřejný obsah může být stažen jinými servery na síti. Vaše příspěvky veřejné a pouze pro sledující budou doručeny na servery vašich sledujících a přímé zprávy budou doručeny na servery příjemců, pokud jsou tito sledující nebo příjemci zaregistrováni na jiném serveru, než je tento.</p>
+      <p>Váš veřejný obsah může být stažen jinými servery na síti. Vaše příspěvky veřejné a pouze pro sledující budou doručeny na servery uživatelů, kteří vás sledují, a přímé zprávy budou doručeny na servery příjemců, pokud jsou tito sledující nebo příjemci zaregistrováni na jiném serveru, než je tento.</p>
 
-      <p>Když autorizujete aplikaci, aby používala váš účet, může, v závislosti na rozsahu oprávnění, které jí udělíte, přistupovat k vašim veřejným profilovým informacím, seznamu lidí, které sledujete, vašim sledujícím, vašim seznamům, všem vašim příspěvkům a příspěvkům, které jste si oblíbili. Aplikace nikdy nemohou získat vaši e-mailovou adresu či heslo.</p>
+      <p>Při autorizaci aplikace k používání vašeho účtu může, v závislosti na rozsahu udělených oprávnění, přistupovat k vašim veřejným profilovým informacím, seznamu lidí, které sledujete, vašim sledujícím, vašim seznamům, všem vašim příspěvkům a příspěvkům, které jste si oblíbili. Aplikace nikdy nemohou získat vaši e-mailovou adresu ani heslo.</p>
 
       <hr class="spacer" />
 
       <h3 id="children">Používání stránky dětmi</h3>
 
-      <p>Pokud se tento server nachází v EU nebo EHP: Naše stránka, produkty a služby jsou všechny směřovány na lidi, kterým je alespoň 16 let. Pokud je vám méně než 16, dle požadavků nařízení GDPR (<a href="https://cs.wikipedia.org/wiki/Obecn%C3%A9_na%C5%99%C3%ADzen%C3%AD_o_ochran%C4%9B_osobn%C3%ADch_%C3%BAdaj%C5%AF">Obecné nařízení o ochraně osobních údajů</a>) tuto stránku nepoužívejte.</p>
+      <p>Pokud se tento server nachází v EU nebo EHP: Naše stránka, produkty a služby jsou určeny lidem, kterým je alespoň 16 let. Pokud je vám méně než 16 let, dle požadavků nařízení GDPR (<a href="https://cs.wikipedia.org/wiki/Obecn%C3%A9_na%C5%99%C3%ADzen%C3%AD_o_ochran%C4%9B_osobn%C3%ADch_%C3%BAdaj%C5%AF">Obecné nařízení o ochraně osobních údajů</a>) tuto stránku nepoužívejte.</p>
 
-      <p>Pokud se tento server nachází v USA: Naše stránka, produkty a služby jsou všechny směřovány na lidi, kterým je alespoň 13 let. Pokud je vám méně než 13, dle požadavků zákona COPPA (<a href="https://cs.wikipedia.org/wiki/Children%27s_online_privacy_protection_act">Children's Online Privacy Protection Act</a>) tuto stránku nepoužívejte.</p>
+      <p>Pokud se tento server nachází v USA: Naše stránka, produkty a služby jsou učeny lidem, kterým je alespoň 13 let. Pokud je vám méně než 13 let, dle požadavků zákona COPPA (<a href="https://cs.wikipedia.org/wiki/Children%27s_online_privacy_protection_act">Children's Online Privacy Protection Act</a>) tuto stránku nepoužívejte.</p>
 
       <p>Právní požadavky mohou být jiné, pokud se tento server nachází v jiné jurisdikci.</p>
 
       <hr class="spacer" />
 
-      <h3 id="changes">Změny v našich zásadách soukromí</h3>
+      <h3 id="changes">Změny v našich zásadách ochrany osobních údajů</h3>
 
-      <p>Rozhodneme-li se naše zásady soukromí změnit, zveřejníme tyto změny na této stránce.</p>
+      <p>Rozhodneme-li se naše zásady ochrany osobních údajů změnit, zveřejníme tyto změny na této stránce.</p>
 
       <p>Tento dokument je dostupný pod licencí CC-BY-SA. Byl naposledy aktualizován 7. března 2018.</p>
 
-      <p>Původně adaptováno ze <a href="https://github.com/discourse/discourse">zásad soukromí Discourse</a>.</p>
-    title: Podmínky používání a zásady soukromí %{instance}
+      <p>Původně adaptováno ze <a href="https://github.com/discourse/discourse">zásad ochrna osobních údajů projektem Discourse</a>.</p>
+    title: Podmínky používání a zásady ochrany osobních údajů na serveru %{instance}
   themes:
     contrast: Mastodon (vysoký kontrast)
     default: Mastodon (tmavý)
@@ -1178,57 +1202,57 @@ cs:
       month: "%b %Y"
   two_factor_authentication:
     code_hint: Pro potvrzení zadejte kód vygenerovaný vaší ověřovací aplikací
-    description_html: Povolíte-li <strong>dvoufázové ověřování</strong>, budete při přihlášení potřebovat telefon, který vám vygeneruje přístupové tokeny, které musíte zadat.
-    disable: Zakázat
-    enable: Povolit
-    enabled: Dvoufázové ověřování je povoleno
-    enabled_success: Dvoufázové ověřování bylo úspěšně povoleno
+    description_html: Zapnete-li <strong>dvoufázové ověřování</strong>, budete pro přihlašování potřebovat telefon, který vám vygeneruje přístupové tokeny, které musíte zadat.
+    disable: Vypnout
+    enable: Zapnout
+    enabled: Dvoufázové ověřování je zapnuto
+    enabled_success: Dvoufázové ověřování bylo úspěšně zapnuto
     generate_recovery_codes: Vygenerovat záložní kódy
-    instructions_html: "<strong>Naskenujte tento QR kód Google Authenticatorem nebo jinou TOTP aplikací na vašem telefonu</strong>. Od teď bude tato aplikace generovat tokeny, které budete muset zadat při přihlášení."
+    instructions_html: "<strong>Naskenujte tento QR kód Google Authenticatorem nebo jinou TOTP aplikací na svém telefonu</strong>. Od teď bude tato aplikace generovat tokeny, které budete muset zadat při přihlášení."
     lost_recovery_codes: Záložní kódy vám dovolí dostat se k vašemu účtu, pokud ztratíte telefon. Ztratíte-li záložní kódy, můžete je zde znovu vygenerovat. Vaše staré záložní kódy budou zneplatněny.
-    manual_instructions: 'Nemůžete-li oskenovat QR kód a je potřeba ho zadat ručně, zde je tajemství v prostém textu:'
+    manual_instructions: 'Nemůžete-li QR kód naskenovat a je potřeba ho zadat ručně, zde je secret v prostém textu:'
     recovery_codes: Záložní kódy pro obnovu
     recovery_codes_regenerated: Záložní kódy byly úspěšně znovu vygenerovány
-    recovery_instructions_html: Ztratíte-li někdy přístup k vašemu telefonu, můžete k získání přístupu k účtu použít jeden ze záložních kódů. <strong>Uchovávejte tyto kódy v bezpečí</strong>. Můžete si je například vytisknout a uložit je mezi jiné důležité dokumenty.
+    recovery_instructions_html: Ztratíte-li někdy přístup ke svému telefonu, můžete k získání přístupu k účtu použít jeden ze záložních kódů. <strong>Uchovejte tyto kódy v bezpečí</strong>. Můžete si je například vytisknout a uložit je mezi jiné důležité dokumenty.
     setup: Nastavit
     wrong_code: Zadaný kód byl neplatný! Je čas na serveru a na zařízení správný?
   user_mailer:
     backup_ready:
-      explanation: Vyžádal/a jste si úplnou zálohu svého účtu Mastodon. Nyní je připravena ke stažení!
+      explanation: Vyžádali jste si úplnou zálohu svého účtu Mastodon. Nyní je připravena ke stažení!
       subject: Váš archiv je připraven ke stažení
       title: Stažení archivu
     warning:
       explanation:
-        disable: Zatímco je váš účet zmražen, zůstávají data vašeho účtu nedotčená, ale nemůžete vykonávat žádné akce, dokud nebude odemčen.
-        silence: Zatímco je váš účet omezen, mohou vaše tooty na tomto serveru vidět pouze lidé, kteří váš již sledují, a můžete být vyloučen/a z různých veřejných výpisů. Ostatní vás však pořád mohou manuálně sledovat.
-        suspend: Váš účet byl pozastaven a všechny vaše tooty a vaše nahrané mediální soubory byly nenávratně odstraněny z tohoto serveru a serverů, na kterých jste měl/a sledující.
+        disable: Zatímco je váš účet zmrazen, zůstávají data vašeho účtu nedotčena. Dokud ale nebude odemčen, nemůžete vykonávat žádné akce.
+        silence: Zatímco je váš účet omezen, mohou vaše tooty na tomto serveru vidět pouze lidé, kteří váš již sledují, a můžete být vyloučeni z různých veřejných seznamů. Ostatní vás však pořád mohou manuálně sledovat.
+        suspend: Váš účet byl pozastaven a všechny vaše tooty a nahrané mediální soubory byly nenávratně odstraněny z tohoto serveru a serverů, na kterých jste měli sledující.
       get_in_touch: Můžete odpovědět na tento e-mail a spojit se s personálem serveru %{instance}.
-      review_server_policies: Posoudit politiku serveru
+      review_server_policies: Zkontrolujte pravidla serveru
       statuses: 'Konkrétně kvůli:'
       subject:
-        disable: Váš účet %{acct} byl zmražen
+        disable: Váš účet %{acct} byl zmrazen
         none: Varování pro uživatele %{acct}
         silence: Váš účet %{acct} byl omezen
         suspend: Váš účet %{acct} byl pozastaven
       title:
-        disable: Účet zmražen
+        disable: Účet zmrazen
         none: Varování
         silence: Účet omezen
         suspend: Účet pozastaven
     welcome:
       edit_profile_action: Nastavit profil
-      edit_profile_step: Můžete si přizpůsobit svůj profil nahráním avataru a obrázku záhlaví, změnou zobrazovaného jména a dalších. Chcete-li posoudit nové sledující předtím, než vás mohou sledovat, můžete svůj účet uzamknout.
-      explanation: Zde je pár tipů na začátek
+      edit_profile_step: Svůj profil si můžete přizpůsobit nahráním avataru a obrázku záhlaví, změnou zobrazovaného jména a další. Chcete-li posoudit nové sledující předtím, než vás mohou sledovat, můžete svůj účet uzamknout.
+      explanation: Zde je pár tipů do začátku
       final_action: Začít psát
       final_step: 'Začněte psát! I když nemáte sledující, mohou vaše zprávy vidět jiní lidé, například na místní časové ose a v hashtazích. Můžete se ostatním představit pomocí hashtagu #introductions.'
       full_handle: Vaše celá adresa profilu
-      full_handle_hint: Tohle je, co byste řekl/a svým přátelům, aby vám mohli posílat zprávy nebo vás sledovat z jiného serveru.
-      review_preferences_action: Změnit nastavení
-      review_preferences_step: Nezapomeňte si nastavit své volby, například jaké e-maily chcete přijímat či jak soukromé mají být vaše příspěvky ve výchozím stavu. Nemáte-li epilepsii, můžete si nastavit automatické přehrávání obrázků GIF.
+      full_handle_hint: Tohle je, co byste řekli svým přátelům, aby vám mohli posílat zprávy nebo vás sledovat z jiného serveru.
+      review_preferences_action: Změnit předvolby
+      review_preferences_step: Nezapomeňte si nastavit například jaké e-maily chcete přijímat či jak soukromé mají ve výchozím stavu být vaše příspěvky. Nemáte-li epilepsii, můžete si nastavit automatické přehrávání obrázků GIF.
       subject: Vítejte na Mastodonu
       tip_federated_timeline: Federovaná časová osa je náhled celé sítě Mastodon. Zahrnuje ovšem pouze lidi, které sledují vaši sousedé, takže není úplná.
-      tip_following: Administrátora/y serveru sledujete automaticky. Chcete-li najít další zajímavé lidi, podívejte se na místní a federované časové osy.
-      tip_local_timeline: Místní časová osa je náhled lidí na %{instance}. Tohle jsou vaši nejbližší sousedé!
+      tip_following: Administrátory serveru sledujete automaticky. Chcete-li najít další zajímavé lidi, podívejte se do místní a federované časové osy.
+      tip_local_timeline: Místní časová osa je náhled lidí na serveru %{instance}. Jsou to vaši nejbližší sousedé!
       tip_mobile_webapp: Pokud vám váš mobilní prohlížeč nabídne přidat si Mastodon na vaši domovskou obrazovku, můžete dostávat oznámení. V mnoha ohledech to funguje jako nativní aplikace!
       tips: Tipy
       title: Vítejte na palubě, %{name}!
@@ -1236,9 +1260,9 @@ cs:
     follow_limit_reached: Nemůžete sledovat více než %{limit} lidí
     invalid_email: E-mailová adresa je neplatná
     invalid_otp_token: Neplatný kód pro dvoufázové ověřování
-    otp_lost_help_html: Pokud jste ztratil/a přístup k oběma, můžete se spojit %{email}
-    seamless_external_login: Jste přihlášen/a přes externí službu, nastavení hesla a e-mailu proto nejsou dostupná.
-    signed_in_as: 'Přihlášen/a jako:'
+    otp_lost_help_html: Pokud jste ztratili přístup k oběma, spojte se s %{email}
+    seamless_external_login: Jste přihlášeni přes externí službu, nastavení hesla a e-mailu proto nejsou dostupná.
+    signed_in_as: 'Přihlášeni jako:'
   verification:
     explanation_html: 'Můžete se <strong>ověřit jako vlastník odkazů v metadatech profilu</strong>. Pro tento účel musí stránka v odkazu obsahovat odkaz zpět na váš profil na Mastodonu. Odkaz zpět <strong>musí</strong> mít atribut <code>rel="me"</code>. Na textu odkazu nezáleží. Zde je příklad:'
     verification: Ověření
diff --git a/config/locales/cy.yml b/config/locales/cy.yml
index 202e5de6ca63bb51f30d914b0b5412e3a3aef1d8..5e63f1702c2312447e961daec9e045d6456bec68 100644
--- a/config/locales/cy.yml
+++ b/config/locales/cy.yml
@@ -11,6 +11,7 @@ cy:
     apps: Apiau symudol
     apps_platforms: Defnyddio Mastodon o iOS, Android a phlatfformau eraill
     browse_directory: Pori cyfeiriadur proffil a hidlo wrth diddordebau
+    browse_local_posts: Pori ffrwd byw o byst cyhoeddus o'r gweinydd hyn
     browse_public_posts: Pori ffrwd byw o byst cyhoeddus ar Fastodon
     contact: Cyswllt
     contact_missing: Heb ei osod
@@ -40,6 +41,7 @@ cy:
     terms: Telerau gwasanaeth
     unavailable_content: Cynnwys nad yw ar gael
     unavailable_content_description:
+      domain: Gweinydd
       reason: 'Rheswm:'
       rejecting_media: Ni fydd ffeiliau cyfryngau o'r gweinydd hwn yn cael eu prosesu ac ni fydd unrhyw fawd yn cael eu harddangos, sy'n gofyn am glicio â llaw i'r gweinydd arall.
       silenced: Ni fydd swyddi o'r gweinydd hwn yn ymddangos yn unman heblaw eich porthiant cartref os dilynwch yr awdur.
@@ -92,6 +94,7 @@ cy:
     roles:
       admin: Gweinyddwr
       bot: Bot
+      group: Grŵp
       moderator: Safonwr
     unavailable: Proffil ddim ar gael
     unfollow: Dad-ddilyn
@@ -132,9 +135,7 @@ cy:
       email_status: Statws E-bost
       enable: Galluogi
       enabled: Wedi ei alluogi
-      feed_url: Ffrwd URL
       followers: Dilynwyr
-      followers_url: URL Dilynwyr
       follows: Yn dilyn
       header: Pennawd
       inbox_url: URL Mewnflwch
@@ -162,10 +163,8 @@ cy:
       no_account_selected: Ni newidwyd dim cyfrif achos ni ddewiswyd dim un
       no_limits_imposed: Dim terfynau wedi'i gosod
       not_subscribed: Heb danysgrifio
-      outbox_url: Allflwch URL
       pending: Yn aros am adolygiad
       perform_full_suspension: Atal
-      profile_url: URL proffil
       promote: Hyrwyddo
       protocol: Protocol
       public: Cyhoeddus
@@ -188,8 +187,8 @@ cy:
         moderator: Aroglygydd
         staff: Staff
         user: Defnyddiwr
-      salmon_url: URL Eog
       search: Chwilio
+      search_same_ip: Defnyddwyr eraill gyda'r un IP
       shared_inbox_url: URL Mewnflwch wedi ei rannu
       show:
         created_reports: Adroddiadau a wnaed
@@ -216,10 +215,12 @@ cy:
         confirm_user: Cadarnhaodd %{name} gyfeiriad e-bost y defnyddiwr %{target}
         create_account_warning: Anfonwyd rhybudd i %{target} gan %{name}
         create_custom_emoji: Uwchlwythodd %{name} emoji newydd %{target}
+        create_domain_allow: Gwynrestrodd %{name} y parth %{target}
         create_domain_block: Blociodd %{name} y parth %{target}
         create_email_domain_block: Cosbrestrwyd parth e-bost %{target} gan %{name}
         demote_user: Diraddiodd %{name} y defnyddiwr %{target}
         destroy_custom_emoji: Dinistriodd %{name} emoji %{target}
+        destroy_domain_allow: Tynnodd %{name} parth %{target} o'r gwynrestr
         destroy_domain_block: Dadflociodd %{name} y parth %{target}
         destroy_email_domain_block: Gwynrestrodd %{name} parth e-bost %{target}
         destroy_status: Cafodd %{name} wared ar statws gan %{target}
@@ -254,11 +255,14 @@ cy:
       delete: Dileu
       destroyed_msg: Llwyddwyd i ddinistrio emojo!
       disable: Diffodd
+      disabled: Wedi'i ddiffodd
       disabled_msg: Llwyddwyd i ddiffodd yr emoji hwnnw
       emoji: Emoji
       enable: Galluogi
+      enabled: Wedi ei alluogi
       enabled_msg: Llwyddwyd i alluogi yr emoji hwnnw
       image_hint: PNG hyd at 50KB
+      list: Rhestr
       listed: Rhestredig
       new:
         title: Ychwanegu emoji personol newydd
@@ -267,6 +271,7 @@ cy:
       shortcode_hint: O leiaf 2 nodyn, dim ond nodau alffaniwmerig a tanlinellau
       title: Emoji unigryw
       uncategorized: Heb gategori
+      unlist: Dad-restru
       unlisted: Heb eu rhestru
       update_failed_msg: Methwyd a diweddaru'r emoji hwnnw
       updated_msg: Llwyddwyd i ddiweddaru'r emoji!
@@ -321,7 +326,9 @@ cy:
           suspend: Atal
         title: Blocio parth newydd
       private_comment: Sylw preifat
+      private_comment_hint: Sylw am gyfyngiadau y barth ar gyfer defnydd mewnol gan y cymedrolwyr.
       public_comment: Sylw cyhoeddus
+      public_comment_hint: Sylw am gyfyngiadau y parth hon ar gyfer y cyhoedd, os mae hysbysu'r rhestr o gyfyngiadau parth wedi'i alluogi.
       reject_media: Gwrthod dogfennau cyfryngau
       reject_media_hint: Dileu dogfennau cyfryngau wedi eu cadw yn lleol ac yn gwrthod i lawrlwytho unrhyw rai yn y dyfodol. Amherthnasol i ataliadau
       reject_reports: Gwrthod adroddiadau
@@ -404,6 +411,7 @@ cy:
       pending: Aros am gymeradywaeth i'r relái
       save_and_enable: Cadw a galluogi
       setup: Sefydlu cysylltiad relái
+      signatures_not_enabled: Ni fydd cyfnewidau yn gweithio'n iawn pan mae modd diogel neu restr gwyn wedi'i alluogi
       status: Statws
       title: Cyfnewidwyr
     report_notes:
@@ -411,12 +419,25 @@ cy:
       destroyed_msg: Llwyddwyd i ddileu nodyn adroddiad!
     reports:
       account:
-        note: nodyn
-        report: adroddiad
+        notes:
+          few: "%{count} o nodiadau"
+          many: "%{count} o nodiadau"
+          one: "%{count} nodyn"
+          other: "%{count} o nodiadau"
+          two: "%{count} o nodiadau"
+          zero: "%{count} nodyn"
+        reports:
+          few: "%{count} o adroddiadau"
+          many: "%{count} o adroddiadau"
+          one: "%{count} adroddiad"
+          other: "%{count} o adroddiadau"
+          two: "%{count} o adroddiadau"
+          zero: "%{count} adroddiad"
       action_taken_by: Gwnaethpwyd hyn gan
       are_you_sure: Ydych chi'n sicr?
       assign_to_self: Aseinio i mi
       assigned: Arolygwr wedi'i aseinio
+      by_target_domain: Parth cyfrif a adroddir
       comment:
         none: Dim
       created_at: Adroddwyd
@@ -452,8 +473,18 @@ cy:
       custom_css:
         desc_html: Addasu gwedd gyda CSS wedi lwytho ar bob tudalen
         title: CSS wedi'i addasu
+      default_noindex:
+        desc_html: Yn effeithio pob defnyddwr sydd heb newid y gosodiad ei hun
+        title: Eithrio defnyddwyr o fynegai peiriannau chwilio yn rhagosodiedig
       domain_blocks:
         all: I bawb
+        disabled: I neb
+        title: Dangos rhwystriadau parth
+        users: I ddefnyddwyr lleol mewngofnodadwy
+      domain_blocks_rationale:
+        title: Dangos rhesymwaith
+      enable_bootstrap_timeline_accounts:
+        title: Alluogi dilyn diofyn i ddefnyddwyr newydd
       hero:
         desc_html: Yn cael ei arddangos ar y dudadlen flaen. Awgrymir 600x100px oleia. Pan nad yw wedi ei osod, mae'n ymddangos fel mân-lun yr achos
         title: Delwedd arwr
@@ -504,6 +535,9 @@ cy:
         desc_html: Mae modd i chi ysgrifennu polisi preifatrwydd, termau gwasanaeth a cyfreitheg arall eich hun. Mae modd defnyddio tagiau HTML
         title: Termau gwasanaeth wedi eu haddasu
       site_title: Enw'r achos
+      spam_check_enabled:
+        desc_html: Gall Mastodon adrodd cyrfifau sy'n anfon negeseuon niferus na chrefwyd yn awtomatig. Efallai fydd yna positifau anwir.
+        title: Awtomeiddiad gwrth-sbam
       thumbnail:
         desc_html: Ceith ei ddefnyddio ar gyfer rhagolygon drwy OpenGraph a'r API. Argymhellir 1200x630px
         title: Mân-lun yr achos
@@ -511,6 +545,12 @@ cy:
         desc_html: Dangos ffrwd gyhoeddus ar y dudalen lanio
         title: Rhagolwg o'r ffrwd
       title: Gosodiadau'r wefan
+      trendable_by_default:
+        desc_html: Yn ddylanwadu ar hashnodau sydd heb ei rhwystro yn y gorffenol
+        title: Gadael hashnodau i dueddu heb adolygiad cynt
+      trends:
+        desc_html: Arddangos hashnodau a adolygwyd yn gynt yn gyhoeddus sydd yn tueddu yn bresennol
+        title: Hashnodau tueddig
     statuses:
       back_to_account: Yn ôl i dudalen y cyfrif
       batch:
@@ -526,13 +566,23 @@ cy:
       title: Statysau cyfrif
       with_media: A chyfryngau
     tags:
+      accounts_today: Defyddau unigol heddiw
+      accounts_week: Defnyddau unigol yr wythnos hon
+      breakdown: Ymddatodiad o ddefnyddiaeth heddiw wrth ffynhonnell
       context: Cyd-destun
+      directory: O fewn y gyfeiriadur
+      in_directory: "%{count} yn y gyfeiriadur"
       last_active: Yn weithredol ddiwethaf
+      most_popular: Mwyaf poblogaidd
+      most_recent: Mwyaf diweddar
       name: Hashnod
+      review: Adolygu statws
       reviewed: Wedi'i adolygu
       title: Hashnodau
       trending_right_now: Yn tueddu nawr
+      unique_uses_today: "%{count} yn postio heddiw"
       unreviewed: Heb ei adolygu
+      updated_msg: Gosodiadau hashnodau wedi'i diweddaru'n llwyddiannus
     title: Gweinyddiaeth
     warning_presets:
       add_new: Ychwanegu newydd
@@ -548,12 +598,27 @@ cy:
       body: Mae %{reporter} wedi cwyno am %{target}
       body_remote: Mae rhywun o %{domain} wedi cwyno am %{target}
       subject: Cwyn newydd am %{instance} (#%{id})
+    new_trending_tag:
+      body: 'Mae''r hashnod #%{name} yn tueddu heddiw, ond nid yw''r hashnod wedi''i adolygu''n gynt. Ni fydd o''n cael ei arddangos yn gyhoeddus oni bai bod chi''n ei ganiataú, neu arbedwch y ffurflen fel y mae i fyth clywed amdano eto.'
+      subject: Hashnod newydd i fynnu ar gyfer adolygiad ar %{instance} (%{name})
+  aliases:
+    add_new: Creu enw arall
+    created_msg: Wedi creu enw arall yn llwyddianus. Gallwch nawr dechrau'r symudiad o'r hen gyfrif.
+    deleted_msg: Wedi tynnu enw arall yn llwyddianus. Ni fydd symud o'r cyfrif hynny i'r cyfrif hon yn bosib.
+    hint_html: Os hoffech symyd o gyfrif arall i'r cyfrif hon, gallwch creu enw arall fama, sydd yn angenrheidiol cyn i chi dechrau symyd ddilynwyr o'r hen gyfrif i'r cyfrif hon. Mae'r gweithred hon yn <strong>ddiniwed ac yn gildroadwy</strong>. <strong>Caiff symudiad y cyfrif ei dechrau o'r hen gyfrif</strong>.
+    remove: Dadgysylltu'r enw arall
   appearance:
     advanced_web_interface: Rhyngwyneb gwe uwch
     advanced_web_interface_hint: 'Os hoffech gwneud defnydd o gyd o''ch lled sgrin, mae''r rhyngwyneb gwe uwch yn gadael i chi ffurfweddu sawl colofn wahanol i weld cymaint o wybodaeth â hoffech: Catref, hysbysiadau, ffrwd y ffedysawd, unrhyw nifer o rhestrau ac hashnodau.'
     animations_and_accessibility: Animeiddiau ac hygyrchedd
     confirmation_dialogs: Deialog cadarnhau
+    discovery: Darganfyddiad
+    localization:
+      body: Caiff Mastodon ei gyfieithu gan wirfoddolwyr.
+      guide_link: https://crowdin.com/project/mastodon
+      guide_link_text: Gall pawb gyfrannu.
     sensitive_content: Cynnwys sensitif
+    toot_layout: Gosodiad tŵt
   application_mailer:
     notification_preferences: Newid gosodiadau e-bost
     salutation: "%{name},"
@@ -573,8 +638,13 @@ cy:
     apply_for_account: Gofyn am wahoddiad
     change_password: Cyfrinair
     checkbox_agreement_html: Rydw i'n cytuno i'r <a href="%{rules_path}" target="_blank">rheolau'r gweinydd</a> a'r <a href="%{terms_path}" target="_blank">telerau gwasanaeth</a>
+    checkbox_agreement_without_rules_html: Rydw i'n cytuno i <a href="%{terms_path}" target="_blank">Delerau y Gwasanaeth</a>
     delete_account: Dileu cyfrif
     delete_account_html: Os hoffech chi ddileu eich cyfrif, mae modd <a href="%{path}">parhau yma</a>. Bydd gofyn i chi gadarnhau.
+    description:
+      prefix_invited_by_user: Mae @%{name} yn eich wahodd i ymuno â'r gweinidd Mastodon hon!
+      prefix_sign_up: Cofrestru ar Fastodon heddiw!
+      suffix: Gyda cyfrif, byddwch yn gallu dilyn pobl, postio dilysiadau a chyfnewid negeseuon gyda defnyddwyr o unrhyw gweinydd Mastodon ac mwy!
     didnt_get_confirmation: Heb dderbyn cyfarwyddiadau cadarnhau?
     forgot_password: Wedi anghofio'ch cyfrinair?
     invalid_reset_password_token: Tocyn ailosod cyfrinair yn annilys neu wedi dod i ben. Gwnewch gais am un newydd os gwelwch yn dda.
@@ -593,6 +663,8 @@ cy:
     security: Diogelwch
     set_new_password: Gosod cyfrinair newydd
     setup:
+      email_below_hint_html: Os mae'r ebost isod yn anghywir, gallwch ei newid fama a derbyn ebost cadarnhad newydd.
+      email_settings_hint_html: Caiff yr ebost cadarnhad ei anfon i %{email}. Os nad yw'r ebost hon yn gywir, gallwch ei newid yn ngosodiadau'r cyfrif.
       title: Gosodiad
     status:
       account_status: Statws cyfrif
@@ -639,7 +711,13 @@ cy:
     success_msg: Llwyddwyd i ddileu eich cyfrif
     warning:
       before: 'Cyn bwrw ymlaen, darllenwch y nodiadau hyn yn ofalus:'
+      caches: Efallai bydd cynnwys sydd wedi'i storio dros dro gan weinyddau eraill yn barhau
+      data_removal: Bydd eich pyst a'ch data arall yn cael ei ddileu am fyth
+      email_change_html: Gallwch <a href="%{path}">newid eich cyfeiriad ebost</a> heb ddileu eich cyfrif
+      email_contact_html: Os nad yw hi'n cyrraedd, gallwch ebostio <a href="mailto:%{email}">%{email}</a> am gymorth
+      email_reconfirmation_html: Os nad ydych yn derbyn yr ebost cadarnhad, gallwch <a href="%{path}">ceisio amdani eto</a>
       irreversible: Ni fyddwch yn gallu adfer nac ail-greu eich cyfrif
+      more_details_html: Am fwy o fanylion, gwelwch y <a href="%{terms_path}">polisi preifatrwydd</a>.
       username_available: Bydd eich enw defnyddiwr ar gael eto
       username_unavailable: Ni fydd eich enw defnyddiwr ar gael
   directories:
@@ -649,10 +727,10 @@ cy:
   domain_validator:
     invalid_domain: ddim yn enw parth dilys
   errors:
-    '400': The request you submitted was invalid or malformed.
+    '400': Roedd y cais wnaethoch cyflwyno yn annilys neu'n gamffurfiedig.
     '403': Nid oes gennych ganiatad i weld y dudalen hon.
     '404': Nid yw'r dudalen yr oeddech yn chwilio amdani'n bodoli.
-    '406': This page is not available in the requested format.
+    '406': Nid yw'r dudalen ar gael yn y fformat ceisiedig.
     '410': Nid yw'r dudalen yr oeddech yn chwilio amdani'n bodoli mwyach.
     '422':
       content: Methwyd i ddilysu diogelwch. A ydych chi'n blocio cwcîs?
@@ -661,7 +739,7 @@ cy:
     '500':
       content: Mae'n ddrwg gennym ni, ond fe aeth rhywbeth o'i le ar ein rhan ni.
       title: Nid yw'r dudalen hon yn gywir
-    '503': The page could not be served due to a temporary server failure.
+    '503': Ni chaiff y dudalen ei weini oherwydd gwall gweinydd dros dro.
     noscript_html: I ddefnyddio ap gwe Mastodon, galluogwch JavaScript os gwlwch yn dda. Fel arall, gallwch drio un o'r <a href="%{apps_path}">apiau cynhenid</a> ar gyfer Mastodon ar eich platfform.
   existing_username_validator:
     not_found: ni ddarganfwyd defnyddiwr lleol gyda'r enw cyfrif hynny
@@ -677,7 +755,6 @@ cy:
     blocks: Yr ydych yn blocio
     csv: CSV
     domain_blocks: Blociau parth
-    follows: Yr ydych yn dilyn
     lists: Rhestrau
     mutes: Yr ydych yn tawelu
     storage: Storio cyfryngau
@@ -685,6 +762,7 @@ cy:
     add_new: Ychwanegu
     errors:
       limit: Yr ydych yn barod wedi cynnwys yr uchafswm o hashnodau
+    hint_html: "<strong>Beth yw hashnodau nodedig?</strong> Mae'r rhain yn cael ei arddangos yn amlwg ar eich proffil cyhoeddus ac yn gadael i bobl pori eich pyst cyhoeddus o dan y hashnodau rhain yn benodol. Rydynt yn declyn grêt ar gyfer tracio gweithiau creadigol neu brosiectau hir-dymor."
   filters:
     contexts:
       home: Ffrwd gartref
@@ -710,6 +788,7 @@ cy:
     all: Popeth
     changes_saved_msg: Llwyddwyd i gadw y newidiadau!
     copy: Copïo
+    no_batch_actions_available: Dim gweithredau llwyth ar gael ar y dudalen hon
     order_by: Trefnu wrth
     save_changes: Cadw newidiadau
     validation_errors:
@@ -790,11 +869,33 @@ cy:
   migrations:
     acct: enwdefnyddiwr@parth y cyfrif newydd
     cancel: Canslo ailgyfeirio
+    cancel_explanation: Bydd diddymu'r ailgyfeiriad yn ail-actifadu eich cyfrif bresennol, ond ni fydd hi'n dychwelyd dilynwyr sydd wedi'i symud i'r cyfrif hynny.
+    cancelled_msg: Wedi diddymu'r ailgyfeiriad yn llwyddiannus.
     errors:
+      already_moved: yw'r un cyfrif rydych barod wedi symud i
+      missing_also_known_as: yn olgyfeirio at y gyfrif hon
+      move_to_self: dim ym gallu bod y cyfrif presennol
       not_found: ni ellid dod o hyd iddo
+      on_cooldown: Rydych ar oeriad
+    followers_count: Dilynwyr at amser y symudiad
+    incoming_migrations: Symud o gyfrif wahanol
+    incoming_migrations_html: I symud o gyfrif arall i'r un hon, yn gyntaf mae'n rhaid i chi greu <a href="%{path}">enw arall ar gyfer y cyfrif</a>.
+    moved_msg: Mae eich cyfrif nawr yn ailgyfeirio at %{acct} ac mae eich dilynwyr yn cael ei symud ar draws.
+    not_redirecting: Nid yw eich cyfrif yn ailgyfeirio at gyfrif arall yn bresennol.
+    on_cooldown: Rydych wedi mudo eich cyfrif yn diweddar. Bydd y swyddogaeth hon ar gael eto mewn %{count} diwrnod.
     past_migrations: Ymfudiadau yn y gorffennol
+    proceed_with_move: Symud dilynwyr
+    redirecting_to: Mae eich cyfrif yn ailgyfeirio at %{acct}.
+    set_redirect: Gosod ailgyfeiriad
     warning:
+      backreference_required: Bydd rhaid i'r cyfrif newydd olgyfeirio at y cyfrif hon yn gyntaf
       before: 'Cyn bwrw ymlaen, darllenwch y nodiadau hyn yn ofalus:'
+      cooldown: Ar ôl symud, bydd yna cyfnod oeriad trwy pa ystod ni fyddwch yn gallu symud eto
+      disabled_account: Ni fydd eich cyfrif presennol yn gwbl ddefyddiedig ar ôl hyn. Er hynny, byddwch dal gyda fynediad at allforiad data ac hefyd ail-actifadu.
+      followers: Bydd y gweithred hon yn symud pob un o'ch dilynwyr o'r cyfrif presennol i'r cyfrif newydd
+      only_redirect_html: Fel arall, gallwch <a href="%{path}">dim ond ychwanegu ailgyfeiriad ar eich proffil</a>.
+      other_data: Ni fydd unrhyw data arall yn cael ei symud yn awtomatig
+      redirect: Bydd proffil eich cyfrif presennol yn cael ei diweddaru gyda hysbysiad ailgyfeirio ac yn cael ei eithrio o chwiliadau
   moderation:
     title: Goruwchwyliad
   notification_mailer:
@@ -839,6 +940,10 @@ cy:
       body: 'Cafodd eich statws ei fŵstio gan %{name}:'
       subject: Bŵstiodd %{name} eich statws
       title: Hwb newydd
+  notifications:
+    email_events: Digwyddiadau ar gyfer hysbysiadau e-bost
+    email_events_hint: 'Dewis digwyddiadau hoffech derbyn hysbysiadau ar eu cyfer:'
+    other_settings: Gosodiadau hysbysiadau arall
   number:
     human:
       decimal_units:
@@ -872,6 +977,8 @@ cy:
   relationships:
     activity: Gweithgareddau cyfrif
     dormant: Segur
+    followers: Dilynwyr
+    following: Yn dilyn
     last_active: Gweithred ddiwethaf
     most_recent: Yn diweddaraf
     moved: Wedi symud
@@ -967,6 +1074,8 @@ cy:
     profile: Proffil
     relationships: Dilynion a dilynwyr
     two_factor_authentication: Awdurdodi dau-gam
+  spam_check:
+    spam_detected: Mae hyn yn adrodd awtomatig. Caiff sbam ei ganfod.
   statuses:
     attached:
       description: 'Ynghlwm: %{attached}'
@@ -1002,6 +1111,13 @@ cy:
       private: Ni ellir pinio tŵt nad yw'n gyhoeddus
       reblog: Ni ellir pinio bŵstiau
     poll:
+      total_people:
+        few: "%{count} o bobl"
+        many: "%{count} o bobl"
+        one: "%{count} berson"
+        other: "%{count} o bobl"
+        two: "%{count} o bobl"
+        zero: "%{count} berson"
       total_votes:
         few: "%{count} o bleidleisiau"
         many: "%{count} o bleidleisiau"
diff --git a/config/locales/da.yml b/config/locales/da.yml
index 5e291154a80c2d376f522a063c119972cfd270db..e20496918c39acc2eea19ad0ec78e06a0ed834cf 100644
--- a/config/locales/da.yml
+++ b/config/locales/da.yml
@@ -5,27 +5,44 @@ da:
     about_mastodon_html: Mastodon er et socialt netværk der er baseret på åbne web protokoller og frit, open-source source software. Der er decentraliseret ligesom e-mail tjenester.
     about_this: Om
     active_count_after: aktive
+    active_footnote: MÃ¥nedligt Aktive Brugere (MAU)
     administered_by: 'Administreret af:'
     api: API
     apps: Apps til mobilen
     apps_platforms: Brug Mastodon på iOS, Android og andre platformer
+    browse_directory: Gennemse en profils indholdsfortegnelse og filtrer efter interesser
+    browse_local_posts: Gennemse en live stream af offentlige indlæg fra denne server
+    browse_public_posts: Gennemse en live stream af offentlige indlæg fra Mastodon
     contact: Kontakt
     contact_missing: Ikke sat
     contact_unavailable: Ikke tilgængeligt
     discover_users: Opdag brugere
     documentation: Dokumentation
+    federation_hint_html: Med en konto på %{instance} har du har mulighed for at følge andre på en hvilken som helst Mastodon server.
     get_apps: Prøv en mobil app
     hosted_on: Mostodon hostet på %{domain}
+    instance_actor_flash: |
+      Denne konto er en virtuel aktør, der bruges til at repræsentere selve serveren og ikke nogen individuel bruger.
+      Det bruges til Federation formål og bør ikke blokeres, medmindre du vil blokere hele Instance, i hvilket tilfælde du skal bruge en domæne blokering.
     learn_more: Lær mere
     privacy_policy: Privatlivspolitik
     see_whats_happening: Se hvad der sker
+    server_stats: 'Server statstik:'
     source_code: Kildekode
     status_count_after:
       one: status
       other: statusser
     status_count_before: Som har skrevet
+    tagline: Følg venner og find nye
     terms: Vilkår for service
     unavailable_content: Utilgængeligt indhold
+    unavailable_content_description:
+      domain: Server
+      reason: Ã…rsag
+      rejecting_media: 'Medie filer fra disse servere vil ikke blive behandlet eller gemt, og ingen miniaturebilleder vil blive vist, som kræver tilgang til den originale fil:'
+      silenced: 'Posteringer fra disse servere vil være skjulte i den offentlige tidslinje feed eller beskeder og ingen notifikationer vil blive genereret fra brugere du ikke følger:'
+      suspended: 'Ingen date fra disse servere vil blive behandlet, gemt eller udvekslet, at interagere eller kommunikere med brugere fra disse servere er ikke muligt:'
+    unavailable_content_html: Mastodon tillader dig generelt at se indhold og interagere med brugere fra enhver anden server i fediverset. Dette er undtagelser der er foretaget på netop denne server.
     user_count_after:
       one: bruger
       other: brugere
@@ -33,6 +50,7 @@ da:
     what_is_mastodon: Hvad er Mastodon?
   accounts:
     choices_html: "%{name}s valg:"
+    featured_tags_hint: Du kan tilføje specifikke hashtags der vil blive vist her.
     follow: Følg
     followers:
       one: Følger
@@ -59,12 +77,14 @@ da:
     roles:
       admin: Administrator
       bot: Robot
+      group: Gruppe
       moderator: Moderator
     unavailable: Profil utilgængelig
     unfollow: Følg ikke længere
   admin:
     account_actions:
       action: Udfør handling
+      title: Udfør moderator handlinger på %{acct}
     account_moderation_notes:
       create: Læg en note
       created_msg: Moderator notat succesfuldt oprettet!
@@ -94,12 +114,13 @@ da:
       display_name: Visningsnavn
       domain: Domæne
       edit: Rediger
+      email: Email
+      email_status: Email status
       enable: Aktiver
       enabled: Aktiveret
-      feed_url: Link til feed
       followers: Følgere
-      followers_url: Link til følgere
       follows: Følger
+      header: Overskrift/billede
       inbox_url: Link til indbakke
       invited_by: Inviteret af
       ip: IP-adresse
@@ -122,10 +143,11 @@ da:
       moderation_notes: Moderator notater
       most_recent_activity: Seneste aktivitet
       most_recent_ip: Senest IP
+      no_account_selected: Ingen konti blev ændret da ingen var valgt
+      no_limits_imposed: Ingen ændringer gennemført
       not_subscribed: Ikke abonneret
-      outbox_url: Link til udgående
+      pending: Afventende anmeldelser
       perform_full_suspension: Udeluk
-      profile_url: Link til profil
       promote: Forfrem
       protocol: Protokol
       public: Offentligt
@@ -134,6 +156,7 @@ da:
       reject: Afvis
       reject_all: Afvis alle
       remove_avatar: Fjern profilbillede
+      remove_header: Fjern overskrift/billede
       resend_confirmation:
         already_confirmed: Denne bruger er allerede blevet bekræftet
         send: Gensend bekræftelsesmail
@@ -147,8 +170,8 @@ da:
         moderator: Mod
         staff: Personale
         user: Bruger
-      salmon_url: Salmon-URL
       search: Søg
+      search_same_ip: Andre brugere med den samme IP-adresse
       shared_inbox_url: Link til delt indbakke
       show:
         created_reports: Anmeldelser oprettet
@@ -158,6 +181,7 @@ da:
       statuses: Statusser
       subscribe: Abonner
       suspended: Udelukket
+      time_in_queue: Venter i køen %{time}
       title: Konti
       unconfirmed_email: Ikke-bekræftet email
       undo_silenced: Fortryd dæmpning
@@ -165,6 +189,7 @@ da:
       unsubscribe: Abonner ikke længere
       username: Brugernavn
       warn: Advar
+      web: Web
       whitelisted: Hvidlistet
     action_logs:
       actions:
@@ -173,9 +198,12 @@ da:
         confirm_user: "%{name} bekræftede %{target}s email adresse"
         create_account_warning: "%{name} sendte en advarsel til %{target}"
         create_custom_emoji: "%{name} uploadede humørikonet %{target}"
+        create_domain_allow: "%{name} godkendte domænet %{target}"
         create_domain_block: "%{name} blokerede domænet %{target}"
         create_email_domain_block: "%{name} sortlistede email domænet %{target}"
         demote_user: "%{name} degraderede %{target}"
+        destroy_custom_emoji: "%{name} fjernede emoji %{target}"
+        destroy_domain_allow: "%{name} fjernede godkendelsen af domænet %{target}"
         destroy_domain_block: "%{name} fjernede blokeringen af domænet %{target}"
         destroy_email_domain_block: "%{name} hvid-listede email domænet %{target}"
         destroy_status: "%{name} fjernede statussen fra %{target}"
@@ -200,6 +228,7 @@ da:
       deleted_status: "(slettet status)"
       title: Revisionslog
     custom_emojis:
+      assign_category: Vælg kategori
       by_domain: Domæne
       copied_msg: Succesfuldt oprettede en lokal kopi af humørikonet
       copy: Kopier
@@ -209,11 +238,14 @@ da:
       delete: Slet
       destroyed_msg: Emojo succesfuldt destrueret!
       disable: Deaktiver
+      disabled: Deaktiveret
       disabled_msg: Succesfuldt deaktiverede det humørikon
       emoji: Humørikon
       enable: Aktiver
+      enabled: Aktiveret
       enabled_msg: Succesfuldt aktiverede det humørikon
       image_hint: PNG op til 50KB
+      list: Listet
       listed: Listet
       new:
         title: Tilføj nyt brugerdefineret humørikon
@@ -221,11 +253,14 @@ da:
       shortcode: Kortkode
       shortcode_hint: Mindst 2 tegn, kun alfabetiske tegn og understreger
       title: Brugerdefinerede humørikoner
+      uncategorized: Uden kategori
+      unlist: Ulistet
       unlisted: Ikke listet
       update_failed_msg: Kunne ikke opdatere det humørikon
       updated_msg: Humørikon succesfuldt opdateret!
       upload: Læg op
     dashboard:
+      authorized_fetch_mode: Sikker tilstand
       backlog: ophobede jobs
       config: Konfiguration
       feature_deletions: Konto sletninger
@@ -233,12 +268,17 @@ da:
       feature_profile_directory: Profilliste
       feature_registrations: Registreringer
       feature_relay: Føderations relæ
+      feature_spam_check: Anti-spam
+      feature_timeline_preview: Tidslinje eksempelvisning
       features: Funktioner
       hidden_service: Føderation med skjulte tjenester
       open_reports: åbne anmeldelser
+      pending_tags: hastags der afventer gennemgang
+      pending_users: brugere der afventer gennemgang
       recent_users: Seneste brugere
       search: Søg på fuld tekst
       single_user_mode: Enkelt bruger mode
+      software: Software
       space: Brugt lagerplads
       title: Betjeningspanel
       total_users: samlede antal brugere
@@ -246,13 +286,18 @@ da:
       week_interactions: interaktioner denne uge
       week_users_active: aktive denne uge
       week_users_new: brugere denne uge
+      whitelist_mode: Whitelist tilstand
     domain_allows:
+      add_new: Whitelist domæne
+      created_msg: Domænet er tilføjet whitelist
+      destroyed_msg: Domænet er fjernet fra whitelist
       undo: Fjern fra hvidliste
     domain_blocks:
       add_new: Tilføj ny domain block
       created_msg: Domæne blokade bliver nu behandlet
       destroyed_msg: Domæne blokade er blevet annulleret
       domain: Domæne
+      edit: Rediger domæne blokering
       new:
         create: Opret blokering
         hint: Domæne blokeringen vil ikke forhindre oprettelse af konto opslag i databasen, men vil retroaktivt og automatisk benytte specifikke moderator metoder på disse konti.
@@ -267,6 +312,8 @@ da:
       reject_media: Afvis medie filer
       reject_media_hint: Fjerner lokalt lagrede multimedie filer og nægter at hente nogen i fremtiden. Irrelevant for udelukkelser
       reject_reports: Afvis anmeldelser
+      rejecting_media: afviser mediefiler
+      rejecting_reports: afviser anmeldelser
       show:
         affected_accounts:
           one: En konto i databasen påvirket
@@ -277,6 +324,7 @@ da:
         title: Annuller domæne blokeringen for domænet %{domain}
         undo: Fortryd
       undo: Fortryd domain block
+      view: Vis domæne blokering
     email_domain_blocks:
       add_new: Tilføj ny
       created_msg: Tilføjede succesfuldt email domænet til sortliste
@@ -292,6 +340,7 @@ da:
       title: "%{acct}'s følgere"
     instances:
       by_domain: Domæne
+      delivery_available: Levering er tilgængelig
       moderation:
         all: Alle
         limited: Begrænset
@@ -328,9 +377,6 @@ da:
       created_msg: Anmeldelse note blev oprettet!
       destroyed_msg: Anmeldelse note blev slettet!
     reports:
-      account:
-        note: notat
-        report: anmeld
       action_taken_by: Handling udført af
       are_you_sure: Er du sikker?
       assign_to_self: Tildel til mig
@@ -373,6 +419,7 @@ da:
       domain_blocks:
         all: Til alle
         disabled: Til ingen
+        title: Vis domæne blokeringer
       hero:
         desc_html: Vist på forsiden. Mindst 600x100px anbefales. Hvis ikke sat, vil dette falde tilbage til billedet fra serveren
         title: Billede af helt
@@ -440,6 +487,9 @@ da:
       accounts_today: Unikke brug i dag
       accounts_week: Unikke brug denne uge
       context: Kontekst
+      last_active: Sidst aktiv
+      most_popular: Mest populære
+      most_recent: Seneste
     warning_presets:
       delete: Slet
       edit: Rediger
@@ -448,8 +498,15 @@ da:
       body: "%{reporter} har anmeldt %{target}"
       body_remote: Nogen fra %{domain} har anmeldt %{target}
       subject: Ny anmeldelse for %{instance} (#%{id})
+  aliases:
+    add_new: Opret alias
   appearance:
+    animations_and_accessibility: Animationer og tilgængelighed
     discovery: Opdagelse
+    localization:
+      body: Mastodon oversættes af frivillige.
+      guide_link: https://da.crowdin.com/project/mastodon
+      guide_link_text: Alle kan bidrage.
     sensitive_content: Følsomt indhold
   application_mailer:
     notification_preferences: Ændre email præferencer
@@ -501,6 +558,10 @@ da:
       return: Vis brugerens profil
       web: GÃ¥ til web
     title: Følg %{acct}
+  challenge:
+    confirm: Fortsæt
+    invalid_password: Ugyldig adgangskode
+    prompt: Bekræft din adgangskode for at fortsætte
   datetime:
     distance_in_words:
       about_x_hours: "%{count}t"
@@ -521,6 +582,8 @@ da:
   directories:
     directory: Profilliste
     explore_mastodon: Uforsk %{title}
+  domain_validator:
+    invalid_domain: er ikke et gyldigt domænenavn
   errors:
     '400': The request you submitted was invalid or malformed.
     '403': Du har ikke tilladelse til at se denne side.
@@ -549,7 +612,7 @@ da:
       size: Størrelse
     blocks: Du blokerer
     csv: CSV
-    follows: Du følger
+    domain_blocks: Domæne blokeringer
     lists: Lister
     mutes: Du dæmper
     storage: Medie lager
@@ -628,6 +691,9 @@ da:
       too_many: Kan ikke vedhæfte mere en 4 filer
   migrations:
     acct: username@domain af den nye konto
+    errors:
+      not_found: kunne ikke bive fundet
+    proceed_with_move: Flyt følgere
   moderation:
     title: Moderatering
   notification_mailer:
@@ -678,6 +744,7 @@ da:
     truncate: "...&hellip;"
   polls:
     errors:
+      already_voted: Du har allerede stemt i denne afstemning
       duration_too_long: er for langt ude i fremtiden
       duration_too_short: er for tidligy
       expired: Denne afstemning er allerede afsluttet
@@ -685,10 +752,16 @@ da:
     other: Andet
     public_timelines: Offentlige tidslinjer
   relationships:
+    activity: Aktivitet for konto
+    followers: Følgere
+    following: Følger
     last_active: Sidst aktiv
+    most_recent: Seneste
     moved: Flyttet
     mutual: Fælles
     primary: Primær
+    relationship: Relation
+    status: Status for konto
   remote_follow:
     acct: Indtast dit brugernavn@domæne du vil handle fra
     missing_resource: Kunne ikke finde det påkrævede omdirigerings link for din konto
@@ -821,7 +894,10 @@ da:
       title: Udpluk af arkiv
     warning:
       title:
+        disable: Konto frosset
         none: Advarsel
+        silence: Konto begrænset
+        suspend: Konto suspenderet
     welcome:
       edit_profile_action: Opsæt profil
       edit_profile_step: Du kan skræddersy din profil ved at uploade et profilbillede, overskrift, ændre dit visningsnavn og mere. Hvis du kunne tænke dig at gennemse nye følgere før de må følge dig, kan du låse din konto.
@@ -840,6 +916,7 @@ da:
       tips: RÃ¥d
       title: Velkommen ombord, %{name}!
   users:
+    follow_limit_reached: Du kan ikke følge mere end %{limit} personer
     invalid_email: E-mail adressen er ugyldig
     invalid_otp_token: Ugyldig to-faktor kode
     otp_lost_help_html: Hvis du har mistet adgang til begge, kan du få kontakt via %{email}
diff --git a/config/locales/de.yml b/config/locales/de.yml
index 77c66fb713c9d3a7221957e18424683904104d6e..9361ad4f312dd41f7903631c03e55214449fe327 100644
--- a/config/locales/de.yml
+++ b/config/locales/de.yml
@@ -11,6 +11,7 @@ de:
     apps: Mobile Apps
     apps_platforms: Benutze Mastodon auf iOS, Android und anderen Plattformen
     browse_directory: Durchsuche das Profilverzeichnis und filtere nach Interessen
+    browse_local_posts: Durchsuche einen Live-Stream von öffentlichen Beiträgen von diesem Server
     browse_public_posts: Stöbere durch öffentliche Beiträge auf Mastodon
     contact: Kontakt
     contact_missing: Nicht angegeben
@@ -77,6 +78,7 @@ de:
     roles:
       admin: Administrator
       bot: Bot
+      group: Gruppe
       moderator: Moderator
     unavailable: Profil nicht verfügbar
     unfollow: Entfolgen
@@ -117,9 +119,7 @@ de:
       email_status: E-Mail-Status
       enable: Freischalten
       enabled: Freigegeben
-      feed_url: Feed-URL
       followers: Folgende
-      followers_url: URL des Folgenden
       follows: Folgt
       header: Titelbild
       inbox_url: Posteingangs-URL
@@ -147,10 +147,8 @@ de:
       no_account_selected: Keine Konten wurden geändert, da keine ausgewählt wurden
       no_limits_imposed: Keine Beschränkungen
       not_subscribed: Nicht abonniert
-      outbox_url: Postausgangs-URL
       pending: In Warteschlange
       perform_full_suspension: Verbannen
-      profile_url: Profil-URL
       promote: Befördern
       protocol: Protokoll
       public: Öffentlich
@@ -173,8 +171,8 @@ de:
         moderator: Moderator_in
         staff: Mitarbeiter
         user: Nutzer
-      salmon_url: Salmon-URL
       search: Suche
+      search_same_ip: Andere Benutzer mit derselben IP
       shared_inbox_url: Geteilte Posteingang-URL
       show:
         created_reports: Erstellte Meldungen
@@ -201,10 +199,12 @@ de:
         confirm_user: "%{name} hat die E-Mail-Adresse von %{target} bestätigt"
         create_account_warning: "%{name} hat eine Warnung an %{target} gesendet"
         create_custom_emoji: "%{name} hat neues Emoji %{target} hochgeladen"
+        create_domain_allow: "%{name} hat die Domain %{target} gewhitelistet"
         create_domain_block: "%{name} hat die Domain %{target} blockiert"
         create_email_domain_block: "%{name} hat die E-Mail-Domain %{target} geblacklistet"
         demote_user: "%{name} stufte Benutzer_in %{target} herunter"
         destroy_custom_emoji: "%{name} zerstörte Emoji %{target}"
+        destroy_domain_allow: "%{name} hat die Domain %{target} von der Whitelist entfernt"
         destroy_domain_block: "%{name} hat die Domain %{target} entblockt"
         destroy_email_domain_block: "%{name} hat die E-Mail-Domain %{target} gewhitelistet"
         destroy_status: "%{name} hat einen Beitrag von %{target} entfernt"
@@ -339,6 +339,7 @@ de:
       delete: Löschen
       destroyed_msg: E-Mail-Domain-Blockade erfolgreich gelöscht
       domain: Domain
+      empty: Keine E-Mail-Domains sind momentan auf der Blacklist.
       new:
         create: Blockade erstellen
         title: Neue E-Mail-Domain-Blockade
@@ -395,12 +396,17 @@ de:
       destroyed_msg: Meldungs-Kommentar erfolgreich gelöscht!
     reports:
       account:
-        note: Notiz
-        report: Meldung
+        notes:
+          one: "%{count} Notiz"
+          other: "%{count} Notizen"
+        reports:
+          one: "%{count} Bericht"
+          other: "%{count} Berichte"
       action_taken_by: Maßnahme ergriffen durch
       are_you_sure: Bist du dir sicher?
       assign_to_self: Mir zuweisen
       assigned: Zugewiesener Moderator
+      by_target_domain: Domain des gemeldeten Kontos
       comment:
         none: Kein
       created_at: Gemeldet
@@ -446,6 +452,8 @@ de:
         users: Für angemeldete lokale Benutzer
       domain_blocks_rationale:
         title: Rationale anzeigen
+      enable_bootstrap_timeline_accounts:
+        title: Aktiviere die Option "Konten, denen Neu-Angemeldete automatisch folgen"
       hero:
         desc_html: Wird auf der Startseite angezeigt. Mindestens 600x100px sind empfohlen. Wenn es nicht gesetzt wurde, wird das Server-Thumbnail dafür verwendet
         title: Bild für Einstiegsseite
@@ -574,7 +582,12 @@ de:
     animations_and_accessibility: Animationen und Barrierefreiheit
     confirmation_dialogs: Bestätigungsfenster
     discovery: Entdecken
+    localization:
+      body: Mastodon wurde von Freiwilligen übersetzt.
+      guide_link: https://de.crowdin.com/project/mastodon
+      guide_link_text: Jeder kann etwas dazu beitragen.
     sensitive_content: Heikle Inhalte
+    toot_layout: Beitragslayout
   application_mailer:
     notification_preferences: Ändere E-Mail-Einstellungen
     salutation: "%{name},"
@@ -711,7 +724,6 @@ de:
     blocks: Du hast blockiert
     csv: CSV
     domain_blocks: Domainblockaden
-    follows: Du folgst
     lists: Listen
     mutes: Du hast stummgeschaltet
     storage: Medienspeicher
@@ -733,6 +745,7 @@ de:
       invalid_irreversible: Unwiderrufliche Filterung funktioniert nur mit Heim- oder Benachrichtigungskontext
     index:
       delete: Löschen
+      empty: Du hast keine Filter.
       title: Filter
     new:
       title: Neuen Filter hinzufügen
@@ -881,6 +894,10 @@ de:
       body: "%{name} hat deinen Beitrag geteilt:"
       subject: "%{name} hat deinen Beitrag geteilt"
       title: Dein Beitrag wurde geteilt
+  notifications:
+    email_events: Ereignisse für E-Mail-Benachrichtigungen
+    email_events_hint: 'Wähle Ereignisse, für die du Benachrichtigungen erhalten möchtest:'
+    other_settings: Weitere Benachrichtigungseinstellungen
   number:
     human:
       decimal_units:
@@ -914,6 +931,8 @@ de:
   relationships:
     activity: Kontoaktivität
     dormant: Inaktiv
+    followers: Folgende
+    following: Folgt
     last_active: Zuletzt aktiv
     most_recent: Neuste
     moved: Umgezogen
diff --git a/config/locales/devise.ar.yml b/config/locales/devise.ar.yml
index 4662cd030b7ad8659cedd95de15ba642b1eb748a..ca0b657e8910e512dd3992db65dcbccf1591e5ff 100644
--- a/config/locales/devise.ar.yml
+++ b/config/locales/devise.ar.yml
@@ -51,6 +51,9 @@ ar:
       two_factor_enabled:
         subject: 'ماستدون: تم تفعيل نظام المصادقة بخطوتين'
         title: إنّ 2FA نشِط
+      two_factor_recovery_codes_changed:
+        subject: 'ماستدون: تم إعادة توليد رموز استرجاع المصادقة بخطوتين'
+        title: تم استبدال رموز استرجاع 2FA
       unlock_instructions:
         subject: 'ماستدون: تعليمات فك القفل'
     omniauth_callbacks:
diff --git a/config/locales/devise.ast.yml b/config/locales/devise.ast.yml
index 49b0c8daf4d133d9f0c3a6e2f7b5adff56308e4e..29fde39410c5e27aff3ff2a2ef2de4076f4a1119 100644
--- a/config/locales/devise.ast.yml
+++ b/config/locales/devise.ast.yml
@@ -1,21 +1,45 @@
 ---
 ast:
   devise:
+    confirmations:
+      confirmed: La direición de corréu confirmóse con ésitu.
+      send_instructions: Nunos minutos, vas recibir un corréu coles instrucciones pa cómo confirmar la direición de corréu. Comprueba la carpeta Puxarra si nun lu recibiesti, por favor.
+      send_paranoid_instructions: Si la direición de corréu esiste na nuesa base de datos, nunos minutos vas recibir un corréu coles instrucciones pa cómo confirmala. Comprueba la carpeta Puxarra si nun lu recibiesti.
     failure:
       already_authenticated: Yá aniciesti sesión.
       inactive: Entá nun s'activó la cuenta.
       last_attempt: Tienes un intentu más enantes de bloquiar la cuenta.
       locked: La cuenta ta bloquiada.
+      pending: La cuenta ta entá en revisión.
       timeout: La sesión caducó. Volvi aniciar sesión pa siguir, por favor.
       unauthenticated: Precises aniciar sesión o rexistrate enantes de siguir.
     mailer:
       confirmation_instructions:
-        explanation: Creesti una cuenta en %{host} con esta direición de corréu. Tas a un clic d'activala. Si nun fuisti tu, inora esti corréu.
+        explanation: Creesti una cuenta en %{host} con esta direición de corréu. Tas a un calcu d'activala. Si nun fuisti tu, inora esti corréu.
       email_changed:
-        title: Direición de corréu nueva
+        explanation: 'La direición de corréu de la cuenta camudó a:'
+        subject: 'Mastodón: Camudó la direición de corréu'
+        title: Direición nueva de corréu
+      password_change:
+        explanation: Camudó la contraseña de la cuenta.
+        subject: 'Mastodon: Camudó la contraseña'
       reset_password_instructions:
         explanation: Solicitesti una contraseña nueva pa la cuenta.
         extra: Si nun solicitesti esto, inora esti corréu. La contraseña nun va camudar hasta que nun accedas al enllaz d'enriba y crees una nueva.
+        subject: 'Mastodon: Instrucciones pa reafitar la contraseña'
+      two_factor_disabled:
+        subject: 'Mastodon: Desactivóse l''autenticación en dos pasos'
+      two_factor_enabled:
+        subject: 'Mastodon: Activóse l''autenticación en dos pasos'
+      two_factor_recovery_codes_changed:
+        subject: 'Mastodon: Rexeneráronse los códigos de l''autenticación en dos pasos'
+      unlock_instructions:
+        subject: 'Mastodon: Instrucciones de desbloquéu'
+    passwords:
+      send_instructions: Si la direición de corréu esiste na base de datos, nunos minutos vas recibir un enllaz pa recuperar la contraseña a esi corréu. Comprueba la carpeta Puxarra si nun lu recibiesti.
+      send_paranoid_instructions: Si la direición de corréu esiste na base de datos, nunos minutos vas recibir un enllaz pa recuperar la contraseña a esi corréu. Comprueba la carpeta Puxarra si nun lu recibiesti.
+      updated: La contraseña camudó con ésitu. Agora aniciesti sesión.
+      updated_not_active: La contraseña camudó con ésitu.
     registrations:
       signed_up: "¡Afáyate! Rexistréstite con ésitu."
       signed_up_but_unconfirmed: Unvióse un mensaxe de confirmación a la direición de corréu. Sigui l'enllaz p'activar la cuenta. Comprueba la carpeta Puxarra si nun recibiesti esti corréu, por favor.
@@ -28,3 +52,6 @@ ast:
     messages:
       already_confirmed: yá se confirmó, volvi aniciar sesión
       not_found: nun s'alcontró
+      not_saved:
+        one: '1 fallu torgó que %{resource} se guardare:'
+        other: "%{count} fallos torgó que %{resource} se guardaren:"
diff --git a/config/locales/devise.bn.yml b/config/locales/devise.bn.yml
index cb7179da6fccabd52906838ac6754646a5a0b665..e0d83613e8aacf95ccbd30a026e5277f85887ef5 100644
--- a/config/locales/devise.bn.yml
+++ b/config/locales/devise.bn.yml
@@ -21,7 +21,17 @@ bn:
         action: ইমেইলটি নিশ্চিত করুন
         action_with_app: নিশ্চিত করুন এবং %{app} তে ফিরে যান
         explanation: "%{host} তে এই ইমেইল ব্যবহার করে নিবন্ধন করতে হবে। আর একটা ক্লিক করলেই এটা চালু হয়ে যাবে। যদি আপনি এটা না পাঠিয়ে থাকেন, তাহলে অনুগ্রহ করে এই ইমেইলটি উপেক্ষা করুন।"
+        explanation_when_pending: আপনি %{host} এ এই ইমেল দ্বারা আমন্ত্রনের জন্যে যোগদান করেছেন। যখনই আপনি আপনার ইমেল নিশ্চিত করবেন, আমরা আপনার আবেদন বিবেচনা করব। আপনি আপনার বিবরণ সমূহ এডিট অথবা ডিলিট করার জন্যে লগিন করতে পারবেন, কিন্তু আপনার আবেদন অনুমোদন করার আগ পর্যন্ত আপনি প্রায় সুবিধাসমূহ ভোগ করতে পারবেন না। যদি আপনার আবেদন বাতিল করা হয়, আপনার সকল তথ্য মুছে ফেলা হবে, আপনার নিজের কোন পদক্ষেপ নেয়ার প্রয়োজন হবে না। আপনি যদি এই আবেদনটি না করে থাকেন, তাহলে ইমেইলটি উপেক্ষা করুন.
+        extra_html: এছাড়াও দয়া করে <a href="%{terms_path}">সার্ভারের নিয়ম</a> এবং <a href="%{policy_path}">আমাদের পরিষেবার শর্তাদি</a> দেখুন।
+        subject: 'মস্তোডন: %{instance} সম্পর্কিত নিশ্চিতকরণের নির্দেশাবলী'
+        title: ইমেইলটি নিশ্চিত করুন
+      email_changed:
+        explanation: 'আপনার অ্যাকাউন্টের ইমেল ঠিকানা এতে পরিবর্তন করা হচ্ছে:'
+        extra: আপনি যদি নিজের ইমেলটি পরিবর্তন না করেন তবে সম্ভবত আপনার অ্যাকাউন্টে কেউ অ্যাক্সেস পেয়েছে। দয়া করে আপনার পাসওয়ার্ডটি অবিলম্বে পরিবর্তন করুন বা আপনি যদি আপনার অ্যাকাউন্ট লক করে ফেলেন তবে সার্ভার প্রশাসকের সাথে যোগাযোগ করুন।
+        subject: 'মস্তোডোন: ইমেল পরিবর্তিত হয়েছে'
+        title: নতুন ইমেইল ঠিকানা
       password_change:
+        explanation: আপনার অ্যাকাউন্টের পাসওয়ার্ড পরিবর্তন করা হয়েছে।
         extra: আপনি নিজে যদি পাসওয়ার্ডটি না বদলে থাকেন, খুব সম্ভব অন্যকেও আপনার  নিবন্ধনে প্রবেশ করে এটা করেছে। অনুগ্রহ করে যত দ্রুত সম্ভব আপনার পাসওয়ার্ডটি বদলান অথবা যদি  আপনি আপনার নিবন্ধনে আর না ঢুকতে পারেন, এই সার্ভারের পরিচালককে জানান।
         subject: 'মাস্টাডন: পাসওয়ার্ড বদলানো হয়েছে'
         title: পাসওয়ার্ড বদলানো হয়েছে
@@ -36,5 +46,53 @@ bn:
         extra: আপনি যদি এটা না চেয়ে থাকেন, এই ইমেইলটি উপেক্ষা করুন। উপরের লিংকটিতে না গেলে আপনার পাসওয়ার্ড বদলাবে না।
         subject: 'মাস্টাডন: পাসওয়ার্ড বদলানোর নির্দেশনা'
         title: পাসওয়ার্ড বদলানো
+      two_factor_disabled:
+        explanation: আপনার অ্যাকাউন্টের জন্য দ্বি-ফ্যাক্টর প্রমাণীকরণ অক্ষম করা হয়েছে। লগইন এখন কেবলমাত্র ইমেল ঠিকানা এবং পাসওয়ার্ড ব্যবহার করে সম্ভব।
+        subject: 'মস্তোডন: দ্বি-গুণক প্রমাণীকরণ অক্ষম'
+        title: 2FA অক্ষম
+      two_factor_enabled:
+        explanation: আপনার অ্যাকাউন্টের জন্য দ্বি-ফ্যাক্টর প্রমাণীকরণ সক্ষম করা হয়েছে। জোড়যুক্ত TOTP অ্যাপ্লিকেশন দ্বারা উত্পাদিত একটি টোকেন লগইনের জন্য প্রয়োজন হবে।
+        subject: 'মস্তোডন: দ্বি-গুণক প্রমাণীকরণ সক্ষম হয়েছে'
+        title: 2FA সক্ষম
+      two_factor_recovery_codes_changed:
+        explanation: পূর্ববর্তী পুনরুদ্ধার কোডগুলি অবৈধ করা হয়েছে এবং নতুন পুনরুদ্ধার কোডগুলি উত্পন্ন হয়েছে।
+        subject: 'মাস্টোডন: দ্বি-গুণক পুনরুদ্ধার কোডগুলি পুনরায় উত্পন্ন করা হয়েছে'
+        title: 2FA পুনরুদ্ধার কোড পরিবর্তন করা হয়েছে
+      unlock_instructions:
+        subject: 'মাস্টোডন: আনলক এর নির্দেশাবলী'
+    omniauth_callbacks:
+      failure: '%{kind} থেকে আপনাকে প্রমাণীকরণ করতে পারেনি কারণ "%{reason}"।'
+      success: সফলভাবে %{kind} অ্যাকাউন্ট থেকে প্রমাণীকৃত।
+    passwords:
+      no_token: পাসওয়ার্ড পুনরায় সেট করার ইমেল না পেয়ে আপনি এই পৃষ্ঠাটি অ্যাক্সেস করতে পারবেন না। আপনি যদি কোনও পাসওয়ার্ড পুনরায় সেট করার ইমেল থেকে এসেছেন তবে দয়া করে নিশ্চিত হয়ে নিন যে আপনি ইমেইল এ দেয়া পুরো URL টি ব্যবহার করেছেন।
+      send_instructions: যদি আপনার ইমেল ঠিকানাটি আমাদের ডাটাবেসে উপস্থিত থাকে তবে আপনি কয়েক মিনিটের মধ্যে আপনার ইমেল ঠিকানায় একটি পাসওয়ার্ড পুনরুদ্ধার লিঙ্ক পাবেন। আপনি এই ইমেলটি না পেলে দয়া করে আপনার স্প্যাম ফোল্ডারটি পরীক্ষা করুন।
+      send_paranoid_instructions: যদি আপনার ইমেল ঠিকানাটি আমাদের ডাটাবেসে উপস্থিত থাকে তবে আপনি কয়েক মিনিটের মধ্যে আপনার ইমেল ঠিকানায় একটি পাসওয়ার্ড পুনরুদ্ধার লিঙ্ক পাবেন। আপনি এই ইমেলটি না পেলে দয়া করে আপনার স্প্যাম ফোল্ডারটি পরীক্ষা করুন।
+      updated: আপনার পাসওয়ার্ড সফলভাবে পরিবর্তন করা হয়েছে। আপনি এখন সাইন ইন হয়েছেন।
+      updated_not_active: আপনার পাসওয়ার্ড সফলভাবে পরিবর্তন করা হয়েছে।
     registrations:
+      destroyed: টাটা! আপনার অ্যাকাউন্ট সফলভাবে বাতিল করা হয়েছে। আশা করি শীঘ্রই আবার দেখা হবে তোমার সাথে।
       signed_up: স্বাগতম! আপনার নিবন্ধনটি সঠিকভাবে হয়েছে।
+      signed_up_but_inactive: আপনি সফলভাবে সাইন আপ করেছেন। তবে আপনার অ্যাকাউন্টটি এখনও সক্রিয় না হওয়ার কারণে আমরা আপনাকে সাইন ইন করতে পারি নি।
+      signed_up_but_locked: আপনি সফলভাবে সাইন আপ করেছেন। তবে আপনার অ্যাকাউন্টটি লক থাকায় আমরা আপনাকে সাইন ইন করতে পারিনি।
+      signed_up_but_pending: আপনার ইমেল ঠিকানায় একটি নিশ্চিতকরণ লিঙ্ক সহ একটি বার্তা প্রেরণ করা হয়েছে। আপনি লিঙ্কটি ক্লিক করার পরে, আমরা আপনার আবেদন পর্যালোচনা করব। এটি অনুমোদিত হলে আপনাকে অবহিত করা হবে।
+      signed_up_but_unconfirmed: আপনার ইমেল ঠিকানায় একটি নিশ্চিতকরণ লিঙ্ক সহ একটি বার্তা প্রেরণ করা হয়েছে। আপনার অ্যাকাউন্টটি সক্রিয় করতে লিংকটি অনুসরণ করুন। আপনি এই ইমেলটি না পেলে দয়া করে আপনার স্প্যাম ফোল্ডারটি পরীক্ষা করুন।
+      update_needs_confirmation: আপনি আপনার অ্যাকাউন্টটি সফলভাবে আপডেট করেছেন, তবে আমাদের আপনার নতুন ইমেল ঠিকানা যাচাই করা দরকার। আপনার নতুন ইমেল ঠিকানাটি নিশ্চিত করতে দয়া করে আপনার ইমেলটি দেখুন এবং নিশ্চিত লিঙ্কটি অনুসরণ করুন। আপনি এই ইমেলটি না পেয়ে দয়া করে আপনার স্প্যাম ফোল্ডারটি পরীক্ষা করুন।
+      updated: আপনার অ্যাকাউন্ট সফলভাবে আপডেট করা হয়েছে।
+    sessions:
+      already_signed_out: সফলভাবে সাইন আউট হয়েছে।
+      signed_in: সফলভাবে সাইন ইন হয়েছে।
+      signed_out: সফলভাবে সাইন আউট হয়েছে।
+    unlocks:
+      send_instructions: আপনি কয়েক মিনিটের মধ্যে আপনার অ্যাকাউন্টটি কীভাবে আনলক করবেন তার নির্দেশাবলী সহ আপনি একটি ইমেল পাবেন। আপনি এই ইমেলটি না পেলে দয়া করে আপনার স্প্যাম ফোল্ডারটি পরীক্ষা করুন।
+      send_paranoid_instructions: যদি আপনার অ্যাকাউন্টটি বিদ্যমান থাকে তবে আপনি কীভাবে কয়েক মিনিটের মধ্যে এটি আনলক করবেন তার নির্দেশাবলী সহ একটি ইমেল পাবেন। আপনি এই ইমেলটি না পেলে দয়া করে আপনার স্প্যাম ফোল্ডারটি পরীক্ষা করুন।
+      unlocked: আপনার অ্যাকাউন্টটি সফলভাবে আনলক করা হয়েছে। চালিয়ে যেতে দয়া করে সাইন ইন করুন।
+  errors:
+    messages:
+      already_confirmed: " ইতিমধ্যে নিশ্চিত হয়ে গেছে, দয়া করে সাইন ইন করার চেষ্টা করুন"
+      confirmation_period_expired: "%{period}'এর মধ্যে নিশ্চিত হওয়া দরকার, দয়া করে একটি নতুন অনুরোধ করুন"
+      expired: এর মেয়াদ শেষ হয়ে গেছে, দয়া করে একটি নতুন অনুরোধ করুন
+      not_found: পাওয়া যাচ্ছে না
+      not_locked: এটি লক করা হয়নি
+      not_saved:
+        one: "%{resource} টি ১ টি ত্রুটির কারনে সেভ করা যাচ্ছে না:"
+        other: "%{count} টি ত্রুটির কারনে %{resource} টি সেভ করা যাচ্ছে না।:"
diff --git a/config/locales/devise.ca.yml b/config/locales/devise.ca.yml
index eb176c7bde4a59c324ba0e6ce863b5434113c73f..573d055defe00dcacc454b5f2a29949696e8f06c 100644
--- a/config/locales/devise.ca.yml
+++ b/config/locales/devise.ca.yml
@@ -3,15 +3,15 @@ ca:
   devise:
     confirmations:
       confirmed: L'adreça de correu s'ha confirmat correctament.
-      send_instructions: "En pocs minuts rebràs un correu electrònic amb instruccions sobre com confirmar l'adreça de correu. \nSi us plau verifica la carpeta de corrreu brossa si no has rebut aquest correu."
+      send_instructions: "En pocs minuts rebràs un correu electrònic amb instruccions sobre com confirmar l'adreça de correu. \nSi us plau verifica la teva carpeta de correu brossa si no has rebut aquest correu."
       send_paranoid_instructions: |-
         Si l'adreça de correu electrònic existeix en la nostra base de dades, en pocs minuts rebràs un correu electrònic amb instruccions sobre com confirmar l'adreça de correu.
-        Si us plau verifica la carpeta de corrreu brossa si no has rebut aquest correu.
+        Si us plau verifica la teva carpeta de correu brossa si no has rebut aquest correu.
     failure:
       already_authenticated: Ja estàs registrat.
       inactive: El teu compte encara no s'ha activat.
       invalid: "%{authentication_keys} o contrasenya no són vàlids."
-      last_attempt: Tens un intent més, abans que es bloqueji el compte.
+      last_attempt: Tens un intent més, abans que es bloquegi el compte.
       locked: El compte s'ha bloquejat.
       not_found_in_database: "%{authentication_keys} o contrasenya no són vàlids."
       pending: El teu compte encara està en revisió.
@@ -25,7 +25,7 @@ ca:
         explanation: Has creat un compte a %{host} amb aquesta adreça de correu electrònic. Estàs a un sol clic de l'activació. Si no fos així, ignora aquest correu electrònic.
         explanation_when_pending: Has sol·licitat una invitació a %{host} amb aquesta adreça de correu electrònic. Un cop confirmis la teva adreça de correu electrònic revisarem la teva sol·licitud. No es pot iniciar la sessió fins llavors. Si la teva sol·licitud és rebutjada les teves dades s’eliminaran, de manera que no s’exigirà cap altra acció. Si no has estat tu qui ha fet aquest sol·licitud si us plau ignora aquest correu electrònic.
         extra_html: Si us plau consulta també <a href="%{terms_path}"> les regles del servidor</a> i <a href="%{policy_path}"> les nostres condicions de servei</a>.
-        subject: 'Mastodon: Instruccions de confirmació %{instance}'
+        subject: 'Mastodont: Instruccions de confirmació %{instance}'
         title: Verifica l'adreça de correu
       email_changed:
         explanation: 'L''adreça de correu del teu compte s''està canviant a:'
@@ -40,13 +40,13 @@ ca:
       reconfirmation_instructions:
         explanation: Confirma la nova adreça per canviar el teu correu electrònic.
         extra: Si no has iniciat aquest canvi, ignora aquest correu electrònic. L'adreça electrònica del compte de Mastodon no canviarà fins que accedeixis a l'enllaç de dalt.
-        subject: 'Mastodon: Confirma el correu electrònic per a %{instance}'
+        subject: 'Mastodon: confirma l''adreça electrònica per a %{instance}'
         title: Verifica l'adreça de correu electrònic
       reset_password_instructions:
         action: Canviar contrasenya
         explanation: Has sol·licitat una contrasenya nova per al teu compte.
         extra: Si no ho has sol·licitat, ignora aquest correu electrònic. La teva contrasenya no canviarà fins que accedeixis a l'enllaç de dalt i creis un de nou.
-        subject: 'Mastodon: Instruccions per a reiniciar contrassenya'
+        subject: 'Mastodon: Instruccions per a reiniciar contrasenya'
         title: Contrasenya restablerta
       two_factor_disabled:
         explanation: L´autenticació de dos factors pel teu compte ha estat desactivat. L'inici de sessió és ara possible utilitzant només l'adreça de correu electrònic i la contrasenya.
@@ -61,23 +61,23 @@ ca:
         subject: 'Mastodon: codis de recuperació de Dos factors regenerats'
         title: 2FA codis de recuperació canviats
       unlock_instructions:
-        subject: 'Mastodon: Instruccions per a desblocar'
+        subject: 'Mastodon: Instruccions per a desbloquejar'
     omniauth_callbacks:
-      failure: No podem autentificar-te desde %{kind} degut a "%{reason}".
+      failure: No podem autentificar-te des de %{kind} degut a "%{reason}".
       success: Autentificat amb èxit des del compte %{kind}.
     passwords:
       no_token: No pots accedir a aquesta pàgina sense provenir des del correu de restabliment de la contrasenya. Si vens des del correu de restabliment de contrasenya, assegura't que estàs emprant l'adreça completa proporcionada.
-      send_instructions: Rebràs un correu electrònic amb instruccions sobre com reiniciar la contrasenya en pocs minuts.
+      send_instructions: Si el teu correu electrònic existeix en la nostra base de dades, rebràs en pocs minuts un enllaç de restabliment de contrasenya en l'adreça de correu. Si us plau verifica la teva carpeta de correu brossa if no rebut aquest correu.
       send_paranoid_instructions: Si el seu correu electrònic existeix en la nostra base de dades, rebràs un enllaç de restabliment de contrasenya en l'adreça de correu en pocs minuts.
-      updated: La contrassenya s'ha canviat correctament. Ara ja estàs registrat.
-      updated_not_active: La contrassenya s'ha canviat correctament.
+      updated: La contrasenya s'ha canviat correctament. Ara ja estàs registrat.
+      updated_not_active: La contrasenya s'ha canviat correctament.
     registrations:
       destroyed: Adéu! el compte s'ha cancel·lat amb èxit. Desitgem veure't de nou aviat.
       signed_up: Benvingut! T'has registrat amb èxit.
       signed_up_but_inactive: T´has registrat amb èxit. No obstant, no podem identificar-te perquè el compte encara no s'ha activat.
       signed_up_but_locked: T´has registrat amb èxit. No obstant, no podem identificar-te perquè el compte està blocat.
-      signed_up_but_pending: S'ha enviat un missatge amb un enllaç de confirmació a la teva adreça de correu electrònic. Després de que hagis fet clic a l'enllaç, revisarem la teva sol·licitud. Se't notificarà si s'aprova.
-      signed_up_but_unconfirmed: Un missatge amb un enllaç de confirmació ha estat enviat per correu electrònic. Si us plau segueixi l'enllaç per activar el seu compte.
+      signed_up_but_pending: S'ha enviat un missatge amb un enllaç de confirmació a la teva adreça de correu electrònic. Després que hagis fet clic a l'enllaç, revisarem la sol·licitud. Se't notificarà si s'aprova.
+      signed_up_but_unconfirmed: S'ha enviat per correu electrònic un missatge amb un enllaç de confirmació. Fes clic a l'enllaç per a activar el compte.
       update_needs_confirmation: Ha actualitzat el seu compte amb èxit, però necessitem verificar la nova adreça de correu. Si us plau comprovi el correu i segueixi l'enllaç per confirmar la nova adreça de correu.
       updated: El seu compte ha estat actualitzat amb èxit.
     sessions:
@@ -85,16 +85,16 @@ ca:
       signed_in: T'has registrat amb èxit.
       signed_out: Has tancat la sessió amb èxit.
     unlocks:
-      send_instructions: Rebràs un correu electrònic amb instruccions sobre com desblocar el compte en pocs minuts.
-      send_paranoid_instructions: Si el compte existeix, rebràs un correu electrònic amb instruccions sobre com desblocar-lo en pocs minuts.
-      unlocked: El compte s'ha blocat correctament. Inicia sessió per a continuar.
+      send_instructions: En pocs minuts rebràs un correu electrònic amb instruccions sobre com desbloquejar el teu compte. Si us plau verifica la teva carpeta de correu brossa si no has rebut aquest correu.
+      send_paranoid_instructions: Si el compte existeix, rebràs en pocs minuts un correu electrònic amb instruccions sobre com desbloquejar-lo. Verifica la carpeta de correu brossa si no has rebut aquest correu.
+      unlocked: El compte s'ha desblocat correctament. Inicia sessió per a continuar.
   errors:
     messages:
       already_confirmed: ja està confirmat. Intenta d'iniciar sessió
       confirmation_period_expired: calia fer la confirmació dins de %{period}, torna a sol·licitar-la
       expired: ha expirat, demana'n una altra
       not_found: no s'ha trobat
-      not_locked: no està blocada
+      not_locked: no està bloquejada
       not_saved:
         one: '1 error ha impedit desar aquest %{resource}:'
         other: "%{count} errors hab impedit desar aquest %{resource}:"
diff --git a/config/locales/devise.cs.yml b/config/locales/devise.cs.yml
index 25be731d03b72e67bc372188dfe32992821ad21c..743a1bfd5b679e8450d08ff0069bb5ba933c35c6 100644
--- a/config/locales/devise.cs.yml
+++ b/config/locales/devise.cs.yml
@@ -3,10 +3,10 @@ cs:
   devise:
     confirmations:
       confirmed: Vaše e-mailová adresa byla úspěšně ověřena.
-      send_instructions: Za několik minut obdržíte e-mail s instrukcemi pro potvrzení vašeho účtu. Pokud tento e-mail neobdržíte, prosím zkontrolujte si složku „spam“.
-      send_paranoid_instructions: Pokud vaše e-mailová adresa existuje v naší databázi, obdržíte za několik minut e-mail s instrukcemi pro potvrzení vaší e-mailové adresy. Pokud tento e-mail neobdržíte, prosím zkontrolujte si složku „spam“.
+      send_instructions: Za několik minut obdržíte e-mail s instrukcemi pro potvrzení vašeho účtu. Pokud tento e-mail neobdržíte, podívejte se prosím také do složky „spam“.
+      send_paranoid_instructions: Pokud je vaše e-mailová adresa v naší databázi, obdržíte za několik minut e-mail s instrukcemi pro potvrzení vaší e-mailové adresy. Pokud tento e-mail neobdržíte, podívejte se prosím také do složky „spam“.
     failure:
-      already_authenticated: Již jste přihlášen/a.
+      already_authenticated: Již jste přihlášeni.
       inactive: Váš účet ještě není aktivován.
       invalid: Neplatné %{authentication_keys} nebo heslo.
       last_attempt: Máte ještě jeden pokus, než bude váš účet uzamčen.
@@ -14,46 +14,46 @@ cs:
       not_found_in_database: Neplatné %{authentication_keys} nebo heslo.
       pending: Váš účet je stále posuzován.
       timeout: Vaše relace vypršela. Pro pokračování se prosím přihlaste znovu.
-      unauthenticated: Před pokračováním se musíte přihlásit nebo registrovat.
+      unauthenticated: Před pokračováním se musíte přihlásit nebo zaregistrovat.
       unconfirmed: Před pokračováním musíte potvrdit svůj e-mail.
     mailer:
       confirmation_instructions:
         action: Potvrdit e-mailovou adresu
-        action_with_app: Potvrdit a navrátit se do %{app}
-        explanation: S touto e-mailovou adresou jste si vytvořil/a účet na %{host}. K jeho aktivaci vám zbývá jedno kliknutí. Pokud jste to nebyl/a vy, prosím ignorujte tento e-mail.
-        explanation_when_pending: S touto e-mailovou adresou jste si vyžádal/a pozvánku na %{host}. Jakmile svou e-mailovou adresu potvrdíte, posoudíme váš poadavek. Můžete se přihlásit, změnit si své detaily či smazat svůj účet, ale do schválení účtu nemáte přístup ke většině funkcí. Pokud bude váš požadavek zamítnut, budou vaše data odstraněna, takže od vás nebude vyžadována žádná další akce. Pokud jste to nebyl/a vy, prosím ignorujte tento e-mail.
-        extra_html: Prosím podívejte se také na <a href="%{terms_path}">pravidla tohoto serveru</a> a <a href="%{policy_path}">naše podmínky používání</a>.
-        subject: 'Mastodon: Potvrzovací instrukce pro %{instance}'
+        action_with_app: Potvrdit a vrátit se do %{app}
+        explanation: S touto e-mailovou adresou jste si již účet na serveru %{host} vytvořili. K jeho aktivaci vám zbývá jedno kliknutí. Pokud jste to nebyli vy, považujte tento e-mail za bezpředmětný.
+        explanation_when_pending: S touto e-mailovou adresou jste si již pozvánku na server %{host} vyžádali. Jakmile svou e-mailovou adresu potvrdíte, vaši žádost posoudíme. Můžete se přihlásit, změnit podrobnosti svého účtu nebo ho smazat, ale do schválení účtu nebudete mít k většině funkcí přístup. Pokud bude vaše žádost zamítnuta, vaše data budou odstraněna, a nebude od vás vyžadována žádná další akce. Pokud jste to nebyli vy, považujte tento e-mail za bezpředmětný.
+        extra_html: Přečtěte si prosím také <a href="%{terms_path}">pravidla tohoto serveru</a> a <a href="%{policy_path}">naše podmínky používání</a>.
+        subject: 'Mastodon: Potvrzení účtu na serveru %{instance}'
         title: Potvrďte e-mailovou adresu
       email_changed:
         explanation: 'E-mailová adresa vašeho účtu byla změněna na:'
-        extra: Pokud jste si e-mail nezměnil/a, je pravděpodobné, že někdo jiný získal přístup k vašemu účtu. Prosím změňte si okamžitě heslo, nebo, pokud se nemůžete na účet přihlásit, kontaktujte administrátora serveru.
-        subject: 'Mastodon: E-mail byl změněn'
+        extra: Pokud jste si e-mailovou adresu neměnili, je pravděpodobné, že někdo jiný získal přístup k vašemu účtu. Změňte si prosím okamžitě heslo, nebo, pokud se nemůžete na účet přihlásit, kontaktujte administrátora serveru.
+        subject: 'Mastodon: E-mailová adresa změněna'
         title: Nová e-mailová adresa
       password_change:
         explanation: Heslo k vašemu účtu bylo změněno.
-        extra: Pokud jste si heslo nezměnil/a, je pravděpodobné, že někdo jiný získal přístup k vašemu účtu. Prosím změňte si okamžitě heslo, nebo, pokud se nemůžete na účet přihlásit, kontaktujte administrátora serveru.
+        extra: Pokud jste si heslo neměnili, je pravděpodobné, že někdo jiný získal přístup k vašemu účtu. Změňte si prosím okamžitě heslo, nebo, pokud se nemůžete na účet přihlásit, kontaktujte administrátora serveru.
         subject: 'Mastodon: Heslo bylo změněno'
         title: Heslo bylo změněno
       reconfirmation_instructions:
         explanation: Potvrďte novou adresu pro změnu e-mailu.
-        extra: Pokud jste tuto změnu nevyžádal/a vy, prosím ignorujte tento e-mail. E-mailová adresa nebude změněna, dokud nepřejdete na výše uvedenou adresu.
+        extra: Pokud jste si tuto změnu nevyžádali vy, považujte tento e-mail za bezpředmětný. Pokud výše uvedenou adresu nenavštívíte, e-mailová adresa změněna nebude.
         subject: 'Mastodon: Potvrďte e-mail pro %{instance}'
         title: Ověřit e-mailovou adresu
       reset_password_instructions:
         action: Změnit heslo
-        explanation: Vyžádal/a jste si pro svůj účet nové heslo.
-        extra: Pokud jste tohle nevyžádal/a, prosím ignorujte tento e-mail. Vaše heslo nebude změněno, dokud nepřejdete na výše uvedenou adresu a nevytvoříte si nové.
+        explanation: Pro svůj účet jste si vyžádali nové heslo.
+        extra: Pokud jste si tuto změnu nevyžádali vy, považujte tento e-mail za bezpředmětný. Pokud výše uvedenou adresu nenavštívíte, vaše heslo změněno nebude.
         subject: 'Mastodon: Instrukce pro obnovení hesla'
         title: Obnovení hesla
       two_factor_disabled:
-        explanation: Dvoufázové ověřování bylo pr váš účet zakázáno. Přihlašování je nyní možné pouze pomocí e-mailové adresy a hesla.
-        subject: 'Mastodon: Dvoufázové ověřování zakázáno'
-        title: 2FA zakázáno
+        explanation: Dvoufázové ověřování bylo pro váš účet vypnuto. Pro přihlášení je nyní stačí pouze e-mailová adresa a heslo.
+        subject: 'Mastodon: Dvoufázové ověřování vypnuto'
+        title: 2FA vypnuto
       two_factor_enabled:
-        explanation: Dvoufázové ověřování bylo pr váš účet povoleno. Pro přihlášení bude vyžadován token vygenerovaný spárovanou TOTP aplikací.
-        subject: 'Mastodon: Dvoufázové ověřování povoleno'
-        title: 2FA povoleno
+        explanation: Dvoufázové ověřování bylo pro váš účet zapnuto. Pro přihlášení bude vyžadován token vygenerovaný spárovanou TOTP aplikací.
+        subject: 'Mastodon: Dvoufázové ověřování zapnuto'
+        title: 2FA zapnuto
       two_factor_recovery_codes_changed:
         explanation: Předchozí záložní kódy byly zrušeny a byly vygenerovány nové.
         subject: 'Mastodon: Dvoufázové záložní kódy znovu vygenerovány'
@@ -64,37 +64,37 @@ cs:
       failure: Nelze vás ověřit z %{kind}, protože „%{reason}“.
       success: Úspěšně ověřeno z účtu %{kind}.
     passwords:
-      no_token: Tuto stránku nemůžete navštívit, pokud nepřicházíte z e-mailu pro obnovení hesla. Pokud z něj přicházíte, ujistěte se, že jste použil/a celé URL z e-mailu.
-      send_instructions: Pokud vaše e-mailová adresa existuje v naší databázi, obdržíte za několik minut ve vašem e-mailu odkaz pro obnovení hesla. Pokud tento e-mail neobdržíte, prosím zkontrolujte si složku „spam“.
-      send_paranoid_instructions: Pokud vaše e-mailová adresa existuje v naší databázi, obdržíte za několik minut ve vašem e-mailu odkaz pro obnovení hesla. Pokud tento e-mail neobdržíte, prosím zkontrolujte si složku „spam“.
-      updated: Vaše heslo bylo úspěšně změněno. Nyní jste přihlášen/a.
+      no_token: Tuto stránku nemůžete navštívit, pokud nepřicházíte z e-mailu pro obnovení hesla. Pokud z něj přicházíte, ujistěte se, že jste použili celou URL adresu z e-mailu.
+      send_instructions: Pokud je vaše e-mailová adresa v naší databázi, obdržíte za několik minut e-mail s odkazem pro obnovení vašeho hesla. Pokud tento e-mail neobdržíte, podívejte se prosím také do složky „spam“.
+      send_paranoid_instructions: Pokud je vaše e-mailová adresa v naší databázi, obdržíte za několik minut e-mail s odkazem pro obnovení vašeho hesla. Pokud tento e-mail neobdržíte, podívejte se prosím také do složky „spam“.
+      updated: Vaše heslo bylo úspěšně změněno. Nyní jste přihlášeni.
       updated_not_active: Vaše heslo bylo úspěšně změněno.
     registrations:
       destroyed: Sbohem! Váš účet byl úspěšně zrušen. Doufáme, že vás opět brzy uvidíme.
-      signed_up: Vítejte! Registroval/a jste se úspěšně.
-      signed_up_but_inactive: Registroval/a jste se úspěšně. Nemohli jsme vás však přihlásit, protože váš účet ještě není aktivován.
-      signed_up_but_locked: Registroval/a jste se úspěšně. Nemohli jsme vás však přihlásit, protože váš účet je uzamčen.
-      signed_up_but_pending: Na vaši e-mailovou adresu byla poslána zpráva s potvrzovacím odkazem. Poté, co kliknete na odkaz, posoudíme váš požadavek. Pokud bude schválen, budete informován/a.
-      signed_up_but_unconfirmed: Na vaši e-mailovou adresu byla poslána zpráva s potvrzovacím odkazem. Pro aktivaci účtu přejděte na danou adresu. Pokud jste tento e-mail neobdržel/a, prosím zkontrolujte si složku spam.
-      update_needs_confirmation: Váš účet byl úspěšně aktualizován, ale je potřeba ověřit vaši novou e-mailovou adresu. Pokud tento e-mail neobdržíte, prosím zkontrolujte si složku „spam“.
+      signed_up: Vítejte! Vaše registrace proběhla úspěšně.
+      signed_up_but_inactive: Vaše registrace proběhla úspěšně. Nemohli jsme vás však přihlásit, protože váš účet ještě není aktivován.
+      signed_up_but_locked: Vaše registrace proběhla úspěšně. Nemohli jsme vás však přihlásit, protože váš účet je uzamčen.
+      signed_up_but_pending: Na vaši e-mailovou adresu byla poslána zpráva s odkazem pro potvrzení. Poté, co na odkaz kliknete, vaši žádost posoudíme. Pokud bude schválena, budeme vás informovat.
+      signed_up_but_unconfirmed: Na vaši e-mailovou adresu byla poslána zpráva s odkazem pro potvrzení. Pro aktivaci vašeho účtu prosím klepněte na v něm uvedený odkaz. Pokud tento e-mail neobdržíte, podívejte se prosím také do složky „spam“.
+      update_needs_confirmation: Váš účet byl úspěšně aktualizován, ale je potřeba ověřit vaši novou e-mailovou adresu. Pokud tento e-mail neobdržíte, podívejte se prosím také do složky „spam“.
       updated: Váš účet byl úspěšně aktualizován.
     sessions:
       already_signed_out: Odhlášení proběhlo úspěšně.
       signed_in: Přihlášení proběhlo úspěšně.
       signed_out: Odhlášení proběhlo úspěšně.
     unlocks:
-      send_instructions: Za několik minut obdržíte e-mail s instrukcemi pro odemčení vašeho účtu. Pokud tento e-mail neobdržíte, prosím zkontrolujte si složku „spam“.
-      send_paranoid_instructions: Pokud váš účet existuje, obdržíte za několik minut e-mail s instrukcemi pro odemčení vašeho účtu. Pokud tento e-mail neobdržíte, prosím zkontrolujte si složku „spam“.
+      send_instructions: Za několik minut obdržíte e-mail s instrukcemi pro odemčení vašeho účtu. Pokud tento e-mail neobdržíte, podívejte se prosím také do složky „spam“.
+      send_paranoid_instructions: Pokud váš účet existuje, obdržíte za několik minut e-mail s instrukcemi pro odemčení vašeho účtu. Pokud tento e-mail neobdržíte, podívejte se prosím také do složky „spam“.
       unlocked: Váš účet byl úspěšně odemčen. Pro pokračování se prosím přihlaste.
   errors:
     messages:
-      already_confirmed: byl již potvrzen, prosím zkuste se přihlásit
-      confirmation_period_expired: musí být potvrzen do %{period}, prosím vyžádejte si nový
-      expired: vypršel, prosím vyžádejte si nový
+      already_confirmed: byl již potvrzen, zkuste se prosím přihlásit
+      confirmation_period_expired: musí být potvrzen do %{period}, vyžádejte si prosím nový
+      expired: vypršel, vyžádejte si prosím nový
       not_found: nenalezen
       not_locked: nebyl uzamčen
       not_saved:
         few: "%{count} chyby zabránily uložení tohoto %{resource}:"
         many: "%{count} chyb zabránilo uložení tohoto %{resource}:"
-        one: '1 chyba zabránila uložení tohoto %{resource}:'
+        one: 'Jedna chyba zabránila uložení tohoto %{resource}:'
         other: "%{count} chyb zabránilo uložení tohoto %{resource}:"
diff --git a/config/locales/devise.da.yml b/config/locales/devise.da.yml
index 1b05d77c1d6e847c375f8558b3c9e0102eab9ac2..2cfd24658656ea57518053eee759cd7d5c0f3472 100644
--- a/config/locales/devise.da.yml
+++ b/config/locales/devise.da.yml
@@ -8,8 +8,8 @@ da:
     failure:
       already_authenticated: Du er allerede logget ind.
       inactive: Din konto er endnu ikke aktiveret.
-      invalid: Ugyldig %{authentication_keys} eller ugyldigt kodeord.
-      last_attempt: Du har et forsøg tilbage før din konto låses.
+      invalid: Ugyldig %{authentication_keys} eller adgangskode.
+      last_attempt: Du har ét forsøg mere, før din konto bliver låst.
       locked: Din konto er låst.
       not_found_in_database: Ugyldig %{authentication_keys} eller ugyldigt kodeord.
       pending: Din konto er stadig under bedømmelse.
@@ -46,6 +46,18 @@ da:
         extra: Hvis du ikke har anmodet om dette, ignorer denne email. Din adgangskode vil ikke blive ændret før du har fulgt linket foroven og oprettet en ny.
         subject: 'Mastodon: Instrukser for nulstilling af adgangskode'
         title: Kodeordet er blevet nulstillet
+      two_factor_disabled:
+        explanation: To-trins godkendelse for din konto er blevet deaktiveret. Det nu kun muligt at logge ind med email og kodeord.
+        subject: 'Mastodon: To-trins godkendelse er deaktiveret'
+        title: 2FA deaktiveret
+      two_factor_enabled:
+        explanation: To-trins godkendelse er blevet aktiveret for din konto. En token fra den parrede TOTP app vil være påkrævet for at logge ind.
+        subject: 'Mastodon: To-trins godkendelse er nu aktiveret'
+        title: 2FA aktiveret
+      two_factor_recovery_codes_changed:
+        explanation: De tidligere gendannelseskoder er ugyldige og nye genereret.
+        subject: 'Mastodan: To-trins gendannelseskoder er fornyet'
+        title: 2FA gendannelseskoder er ændret
       unlock_instructions:
         subject: 'Mastodon: Instruktioner for oplåsning'
     omniauth_callbacks:
diff --git a/config/locales/devise.de.yml b/config/locales/devise.de.yml
index 372090515f2152a75083fc762cd9326cf65d2351..c2eb057f53ba8cd7db6855439cd727c15a50b404 100644
--- a/config/locales/devise.de.yml
+++ b/config/locales/devise.de.yml
@@ -20,7 +20,7 @@ de:
       confirmation_instructions:
         action: E-Mail-Adresse verifizieren
         action_with_app: Bestätigen und zu %{app} zurückkehren
-        explanation: Du hast einen Account auf %{host} mit dieser E-Mail-Adresse erstellt. Du bist nun einen Klick entfernt vor der Aktivierung. Wenn du das nicht warst, kannst du diese E-Mail ignorieren.
+        explanation: Du hast einen Account auf %{host} mit dieser E-Mail-Adresse erstellt. Du bist nur noch einen Klick weit entfernt von der Aktivierung. Wenn du das nicht warst, kannst du diese E-Mail ignorieren.
         explanation_when_pending: Du hast dich für eine Einladung bei %{host} mit dieser E-Mailadresse beworben. Sobald du deine E-Mailadresse bestätigst werden wir deine Anfrage überprüfen. Du kannst dich in dieser Zeit nicht anmelden. Wenn deine Anfrage abgelehnt wird, werden deine Daten entfernt, also wird keine weitere Handlung benötigt. Wenn du das nicht warst kannst du diese E-Mail ignorieren.
         extra_html: Bitte lies auch die <a href="%{terms_path}">Regeln des Servers</a> und <a href="%{policy_path}">unsere Nutzungsbedingungen</a>.
         subject: 'Mastodon: Bestätigung deines Kontos bei %{instance}'
@@ -37,7 +37,7 @@ de:
         title: Passwort geändert
       reconfirmation_instructions:
         explanation: Bestätige deine neue E-Mail-Adresse, um sie zu ändern.
-        extra: Wenn diese Änderung nicht von dir angestoßen wurde, dann solltest du diese E-Mail ignorieren. Die E-Mail-Adresse für deinen Mastodon-Account wird sich nicht ändern, bis du den obigen Link anklickst.
+        extra: Wenn diese Änderung nicht von dir ausgeführt wurde, dann solltest du diese E-Mail ignorieren. Die E-Mail-Adresse für deinen Mastodon-Account wird sich nicht ändern, bis du den obigen Link anklickst.
         subject: 'Mastodon: Bestätige E-Mail-Adresse für %{instance}'
         title: Verifiziere E-Mail-Adresse
       reset_password_instructions:
diff --git a/config/locales/devise.es.yml b/config/locales/devise.es.yml
index 80d4380923339e75cf59b583431585a61f02e8f8..7cd806b05389ad62fbd13482dc19060529999312 100644
--- a/config/locales/devise.es.yml
+++ b/config/locales/devise.es.yml
@@ -23,43 +23,43 @@ es:
         explanation: Has creado una cuenta en %{host} con esta dirección de correo electrónico. Estas a un clic de activarla. Si no fue usted, por favor ignore este correo electrónico.
         explanation_when_pending: Usted ha solicitado una invitación a %{host} con esta dirección de correo electrónico. Una vez que confirme su dirección de correo electrónico, revisaremos su aplicación. No puede iniciar sesión hasta que su aplicación sea revisada. Si su solicitud está rechazada, sus datos serán eliminados, así que no será necesaria ninguna acción adicional por ti. Si no fuera usted, por favor ignore este correo electrónico.
         extra_html: Por favor revise <a href="%{terms_path}">las reglas de la instancia</a> y <a href="%{policy_path}">nuestros términos de servicio</a>.
-        subject: 'Mastodon: Instrucciones de confirmación para %{instance}'
+        subject: 'Mastodonte: Instrucciones de confirmación para %{instance}'
         title: Verificar dirección de correo electrónico
       email_changed:
         explanation: 'El correo electrónico para su cuenta esta siendo cambiada a:'
         extra: Si usted no ha cambiado su correo electrónico, es probable que alguien haya conseguido acceso a su cuenta. Por favor cambie su contraseña inmediatamente o contacte al administrador de la instancia si usted no puede iniciar sesión.
-        subject: 'Mastodon: Correo electrónico cambiado'
+        subject: 'Mastodonte: Correo electrónico cambiado'
         title: Nueva dirección de correo electrónico
       password_change:
         explanation: La contraseña de su cuenta a sido cambiada.
         extra: Si usted no a cambiado su contraseña. es probable que alguien a conseguido acceso a su cuenta. Por favor cambie su contraseña inmediatamente o contacte a el administrador de la instancia si usted esta bloqueado de su cuenta.
-        subject: 'Mastodon: Contraseña cambiada'
+        subject: 'Mastodonte: Contraseña cambiada'
         title: Contraseña cambiada
       reconfirmation_instructions:
         explanation: Confirme la nueva dirección para cambiar su coreo electrónico.
-        extra: Si no iniciaste este cambio, por favor ignora este correo. Esta dirección de correo para la cuenta de Mastodon no cambiará hasta que accedas al vinculo arriba.
-        subject: 'Mastodon: Confirme correo electrónico para %{instance}'
+        extra: Si no iniciaste este cambio, por favor ignora este correo. Esta dirección de correo para la cuenta de Mastodonte no cambiará hasta que accedas al vinculo arriba.
+        subject: 'Mastodonte: Confirme correo electrónico para %{instance}'
         title: Verifique dirección de correo electrónico
       reset_password_instructions:
         action: Cambiar contraseña
         explanation: Solicitaste una nueva contraseña para tu cuenta.
         extra: Si no solicitaste esto, por favor ignora este correo. Tu contraseña no cambiará hasta que tu accedas al vinculo arriba y crees una nueva.
-        subject: 'Mastodon: Instrucciones para reiniciar contraseña'
+        subject: 'Mastodonte: Instrucciones para reiniciar contraseña'
         title: Reiniciar contraseña
       two_factor_disabled:
         explanation: La autenticación de dos factores para tu cuenta ha sido deshabilitada. Ahora puedes conectarte solamente usando la dirección de correo electrónico y la contraseña.
-        subject: 'Mastodon: La autenticación de dos factores está deshabilitada'
+        subject: 'Mastodonte: La autenticación de dos factores está deshabilitada'
         title: 2FA desactivada
       two_factor_enabled:
         explanation: La autenticación de dos factores para tu cuenta ha sido habilitada. Se requiere un token generado por la aplicación TOTP emparejada para ingresar.
-        subject: 'Mastodon: La autenticación de dos factores está habilitada'
+        subject: 'Mastodonte: La autenticación de dos factores está habilitada'
         title: 2FA activada
       two_factor_recovery_codes_changed:
         explanation: Los códigos de recuperación previos han sido invalidados y se generaron códigos nuevos.
-        subject: 'Mastodon: Los códigos de recuperación de dos factores fueron regenerados'
+        subject: 'Mastodonte: Los códigos de recuperación de dos factores fueron regenerados'
         title: Códigos de recuperación 2FA cambiados
       unlock_instructions:
-        subject: 'Mastodon: Instrucciones para desbloquear'
+        subject: 'Mastodonte: Instrucciones para desbloquear'
     omniauth_callbacks:
       failure: No podemos autentificarle desde %{kind} debido a "%{reason}".
       success: Autentificado con éxito desde la cuenta %{kind} .
diff --git a/config/locales/devise.et.yml b/config/locales/devise.et.yml
index 3c1b75f6cd75b80b978bc2f07f113dedee2ee4f6..6772443b0ca9c36b2ce7d6ae188092dc0394ea12 100644
--- a/config/locales/devise.et.yml
+++ b/config/locales/devise.et.yml
@@ -2,7 +2,7 @@
 et:
   devise:
     confirmations:
-      confirmed: Sinu e-postiaadress on edukalt kinnitatud.
+      confirmed: Teie e-postiaadress on edukalt kinnitatud.
       send_instructions: Te saate paari minuti pärast e-kirja juhistega, kuidas oma e-posti aadressit kinnitada. Palun kontrollige oma rämpsposti kausta juhul, kui Te ei saanud seda e-kirja.
       send_paranoid_instructions: Kui Teie e-postiaadress eksisteerib meie andmebaasis, saate paari minuti pärast e-kirja juhistega, kuidas oma e-posti aadressit kinnitada. Palun kontrollige oma rämpsposti kausta juhul, kui Te ei saanud seda e-kirja.
     failure:
@@ -10,7 +10,7 @@ et:
       inactive: Teie konto pole veel aktiveeritud.
       invalid: Valed %{authentication_keys} või parool.
       last_attempt: Teil on veel üks katse kuni teie konto on lukustatud.
-      locked: Sinu konto on lukustatud.
+      locked: Teie konto on lukustatud.
       not_found_in_database: Valed %{authentication_keys} või parool.
       pending: Teie konto on siiani läbivaatlusel.
       timeout: Teie sessioon on aegunud. Jätkamiseks palun sisenege uuesti.
@@ -46,6 +46,18 @@ et:
         extra: Kui Te ei soovinud seda, palun eirake seda kirja. Teie salasõna ei muutu, kuni Te vajutate üleval olevale lingile ning loote uue.
         subject: 'Mastodon: Salasõna lähtestamisjuhendid'
         title: Salasõna lähtestamine
+      two_factor_disabled:
+        explanation: Kaheastmeline autentimine on teie konto jaoks välja lülitatud. Sisselogimine on nüüd ainult võimalik kasutades e-postiaadressit ja salasõna.
+        subject: 'Mastodon: Kaheastmeline autentimine välja lülitatud'
+        title: 2FA väljas
+      two_factor_enabled:
+        explanation: Kaheastmeline autentimine on Teie kontole sisse lülitatud. Teie TOTP rakenduse poolt loodud võtit läheb vaja igal sisselogimisel.
+        subject: 'Mastodon: Kaheastmeline autentimine sisse lülitatud'
+        title: 2FA sees
+      two_factor_recovery_codes_changed:
+        explanation: Eelmised taastuskoodid on kehtetuks tehtud ning uued loodud.
+        subject: 'Mastodon: Kaheastmelise autentimise taastuskoodid taasloodud'
+        title: 2FA taastuskoodid muudetud
       unlock_instructions:
         subject: 'Mastodon: Lahti lukustamis juhendid'
     omniauth_callbacks:
diff --git a/config/locales/devise.eu.yml b/config/locales/devise.eu.yml
index 2160f224314869a6bf289b9e17adc5a6635f9706..473246d8a5e07e1d5e9cf6595c8afdbbcf313dac 100644
--- a/config/locales/devise.eu.yml
+++ b/config/locales/devise.eu.yml
@@ -47,9 +47,17 @@ eu:
         subject: 'Mastodon: Pasahitza berrezartzeko argibideak'
         title: Pasahitza berrezartzea
       two_factor_disabled:
+        explanation: Bi faktoreetako autentifikazioa desgaitu da zure kontuan. Orain saioa hasi daiteke e-mail helbidea eta pasahitza bakarrik erabilita.
+        subject: 'Mastodon: Bi faktoreetako autentifikazioa desgaituta'
         title: 2FA desgaituta
       two_factor_enabled:
+        explanation: Bi faktoreetako autentifikazioa gaitu da zure kontuan. Token bat sortu du lotutako TOTP aplikazioak eta saioa hasteko eskatuko da.
+        subject: 'Mastodon: Bi faktoreetako autentifikazioa gaituta'
         title: 2FA gaituta
+      two_factor_recovery_codes_changed:
+        explanation: Aurreko kodeak baliogabetu dira eta berriak sortu dira.
+        subject: 'Mastodon: Bi faktoreetako berreskuratze kodeak birsortuta'
+        title: 2FA berreskuratze kodeak aldatuta
       unlock_instructions:
         subject: 'Mastodon: Desblokeatzeko argibideak'
     omniauth_callbacks:
diff --git a/config/locales/devise.fi.yml b/config/locales/devise.fi.yml
index 12ab0f3ab9d2270a81cfd7386ffbd0ab8ea3ed83..84a47145940014c31cf2651e2aa6d1d0bfec6ca5 100644
--- a/config/locales/devise.fi.yml
+++ b/config/locales/devise.fi.yml
@@ -2,34 +2,36 @@
 fi:
   devise:
     confirmations:
-      confirmed: Sähköpostiosoitteen vahvistus onnistui.
-      send_instructions: Saat kohta sähköpostitse ohjeet, kuinka vahvistat sähköpostiosoitteen. Jos et saa viestiä, tarkista roskapostikansio.
-      send_paranoid_instructions: Jos sähköpostiosoite on tietokannassamme, saat pian ohjeet, kuinka vahvistat osoitteen. Jos et saa viestiä, tarkista roskapostikansio.
+      confirmed: Sähköpostiosoitteesi vahvistus onnistui.
+      send_instructions: Saat pian sähköpostitse ohjeet sähköpostiosoitteesi vahvistamiseen. Jos et saanut viestiä, tarkista roskapostikansiosi.
+      send_paranoid_instructions: Jos sähköpostiosoitteesi on tietokannassamme, saat pian ohjeet osoitteesi vahvistamiseen. Jos et saanut viestiä, tarkista roskapostikansiosi.
     failure:
       already_authenticated: Olet jo kirjautunut sisään.
       inactive: Tiliäsi ei ole vielä aktivoitu.
       invalid: Virheellinen %{authentication_keys} tai salasana.
-      last_attempt: Voit yrittää enää kerran, ennen kuin tili lukitaan.
-      locked: Tili on lukittu.
+      last_attempt: Sinulla on vielä yksi yritys ennen kuin tunnuksesi lukitaan.
+      locked: Tilisi on lukittu.
       not_found_in_database: Virheellinen %{authentication_keys} tai salasana.
-      timeout: Istunto on umpeutunut. Jatka kirjautumalla sisään.
-      unauthenticated: Kirjaudu sisään tai rekisteröidy, jos haluat jatkaa.
+      pending: Tämä tili on vielä tarkistamatta.
+      timeout: Istuntosi on umpeutunut. Jatka kirjautumalla uudelleen sisään.
+      unauthenticated: Sinun pitää kirjautua sisään tai rekisteröityä ennen kuin voit jatkaa.
       unconfirmed: Vahvista sähköpostiosoitteesi, ennen kuin jatkat.
     mailer:
       confirmation_instructions:
-        action: Vahvista sähköpostiosoite
+        action: Vahvista sähköpostiosoitteesi
         action_with_app: Vahvista ja palaa %{app}
         explanation: Olet luonut tilin palvelimelle %{host} käyttäen tätä sähköpostiosoitetta. Aktivoi tili yhdellä klikkauksella. Jos et luonut tiliä itse, voit jättää tämän viestin huomiotta.
-        extra_html: Katso myös <a href="%{terms_path}">instanssin säännöt</a> ja <a href="%{policy_path}">käyttöehdot</a>.
-        subject: 'Mastodon: Vahvistusohjeet - %{instance}'
-        title: Vahvista sähköpostiosoite
+        explanation_when_pending: Teit hakemuksen kutsusta palvelimelle %{host} tällä sähköpostiosoitteella. Kun olet vahvistanut sähköpostiosoitteesi, tarkistamme hakemuksesi. Voit kirjautua sisään muuttaaksesi hakemuksen sisältöä tai poistaaksesi tilin, mutta et voi käyttää suurinta osaa toiminnallisuudesta ennen kuin hakemuksesi on hyväksytty. Jos hakemuksesi hylätään, tietosi poistetaan eikä sinulta tarvita enempää toimia. Jos sinä et tehnyt hakemusta, voit jättää tämän viestin huomiotta.
+        extra_html: Katso myös <a href="%{terms_path}">palvelimen säännöt</a> ja <a href="%{policy_path}">käyttöehdot</a>.
+        subject: 'Mastodon: Vahvistusohjeet palvelimelle %{instance}'
+        title: Vahvista sähköpostiosoitteesi
       email_changed:
         explanation: 'Tilin sähköpostiosoitteeksi vaihdetaan:'
         extra: Jos et vaihtanut sähköpostiosoitettasi, joku muu on todennäköisesti päässyt käyttämään tiliäsi. Vaihda salasanasi viipymättä. Jos et pääse kirjautumaan tilillesi, ota yhteyttä instanssin ylläpitäjään.
         subject: 'Mastodon: Sähköpostiosoite vaihdettu'
         title: Uusi sähköpostiosoite
       password_change:
-        explanation: Tilin salasana on vaihdettu.
+        explanation: Tilisi salasana on vaihdettu.
         extra: Jos et vaihtanut salasanaasi, joku muu on todennäköisesti päässyt käyttämään tiliäsi. Vaihda salasanasi viipymättä. Jos et pääse kirjautumaan tilillesi, ota yhteyttä instanssin ylläpitäjään.
         subject: 'Mastodon: Salasana vaihdettu'
         title: Salasana vaihdettu
@@ -44,6 +46,18 @@ fi:
         extra: Jos et tehnyt pyyntöä itse, voit jättää tämän viestin huomiotta. Salasanaasi ei vaihdeta, ennen kuin klikkaat yllä olevaa linkkiä ja luot uuden salasanan.
         subject: 'Mastodon: Ohjeet salasanan vaihtoon'
         title: Salasanan vaihto
+      two_factor_disabled:
+        explanation: Kaksivaiheinen tunnistus tilillesi on otettu pois käytöstä. Kirjautuminen onnistuu nyt pelkällä sähköpostiosoitteella ja salasanalla.
+        subject: 'Mastodon: Kaksivaiheinen tunnistut otettu pois käytöstä'
+        title: 2FA poistettu käytöstä
+      two_factor_enabled:
+        explanation: Kaksivaiheinen tunnistus on otettu käyttöön tilillesi. Koodi kaksivaiheisen tunnistuksen sovelluksesta tarvitaan kirjautumiseen.
+        subject: 'Mastodon: Kaksivaiheinen tunnistus otettu käyttöön'
+        title: 2FA käytössä
+      two_factor_recovery_codes_changed:
+        explanation: Aiemmat palautuskoodi on poistettu käytöstä ja uudet on luotu.
+        subject: 'Mastodon: Kaksivaiheisen tunnistuksen palautuskoodit uudelleenluotu'
+        title: 2FA palautuskoodit vaihdettu
       unlock_instructions:
         subject: 'Mastodon: Ohjeet lukituksen poistoon'
     omniauth_callbacks:
@@ -60,6 +74,7 @@ fi:
       signed_up: Tervetuloa! Rekisteröityminen onnistui.
       signed_up_but_inactive: Rekisteröityminen onnistui. Emme kuitenkaan voi kirjata sinua sisään, sillä tiliäsi ei ole vielä aktivoitu.
       signed_up_but_locked: Rekisteröityminen onnistui. Emme kuitenkaan voi kirjata sinua sisään, sillä tilisi on lukittu.
+      signed_up_but_pending: Sähköpostiosoitteeseesi on lähetetty vahvistuslinkki. Kun olet klikannut linkkiä, tarkistamme hakemuksesi. Sinulle tiedotetaan jos se hyväksytään.
       signed_up_but_unconfirmed: Sähköpostiosoitteeseesi on lähetetty vahvistuslinkki. Aktivoi tili seuraamalla linkkiä. Jos et saanut viestiä, tarkista roskapostikansio.
       update_needs_confirmation: Tilin päivitys onnistui, mutta uusi sähköpostiosoite on vahvistettava. Tarkista sähköpostisi ja vahvista uusi sähköpostiosoite seuraamalla vahvistuslinkkiä. Jos et saanut viestiä, tarkista roskapostikansio.
       updated: Tilin päivitys onnistui.
diff --git a/config/locales/devise.fr.yml b/config/locales/devise.fr.yml
index 37ebdaa0721ad7efc55ed2e5a72d6540d27cc195..71c647f2b977c9e34943b2c2c013f684c5491376 100644
--- a/config/locales/devise.fr.yml
+++ b/config/locales/devise.fr.yml
@@ -2,8 +2,8 @@
 fr:
   devise:
     confirmations:
-      confirmed: Votre compte a été validé.
-      send_instructions: Vous allez recevoir les instructions nécessaires à la confirmation de votre compte dans quelques minutes. Veuillez, dans le cas où vous ne recevriez pas ce message, vérifier votre dossier d’indésirables.
+      confirmed: Votre adresse courriel a été validée.
+      send_instructions: Vous allez recevoir par courriel les instructions nécessaires à la confirmation de votre compte dans quelques minutes. Veuillez, dans le cas où vous ne recevriez pas ce message, vérifier votre dossier d’indésirables.
       send_paranoid_instructions: Si votre adresse électronique existe dans notre base de données, vous allez bientôt recevoir un courriel contenant les instructions de confirmation de votre compte. Veuillez, dans le cas où vous ne recevriez pas ce message, vérifier votre dossier d’indésirables.
     failure:
       already_authenticated: Vous êtes déjà connecté⋅e.
@@ -15,7 +15,7 @@ fr:
       pending: Votre compte est toujours en cours d'approbation.
       timeout: Votre session a expiré. Veuillez vous reconnecter pour continuer.
       unauthenticated: Vous devez vous connecter ou vous inscrire pour continuer.
-      unconfirmed: Vous devez valider votre compte pour continuer.
+      unconfirmed: Vous devez valider votre adresse courriel pour continuer.
     mailer:
       confirmation_instructions:
         action: Vérifier l’adresse courriel
@@ -38,7 +38,7 @@ fr:
       reconfirmation_instructions:
         explanation: Confirmez la nouvelle adresse pour changer votre courriel.
         extra: Si ce changement n’a pas été initié par vous, veuillez ignorer ce courriel. L’adresse courriel du compte Mastodon ne changera pas tant que vous n’aurez pas cliqué sur le lien ci-dessus.
-        subject: 'Mastodon : Confirmez l’adresse pour %{instance}'
+        subject: 'Mastodon : Confirmez l’adresse courriel pour %{instance}'
         title: Vérifier l’adresse courriel
       reset_password_instructions:
         action: Modifier le mot de passe
@@ -51,11 +51,11 @@ fr:
         subject: 'Mastodon : authentification à deux facteurs désactivée'
         title: 2FA désactivée
       two_factor_enabled:
-        explanation: L'authentification à deux facteurs a été activée pour votre compte. Un jeton généré par l'application appariée TOTP sera nécessaire pour vous connecter.
+        explanation: L'authentification à deux facteurs a été activée pour votre compte. Un jeton généré par l'application appairée TOTP sera nécessaire pour vous connecter.
         subject: 'Mastodon : authentification à deux facteurs activée'
         title: A2F activée
       two_factor_recovery_codes_changed:
-        explanation: Les codes de récupération précédents ont été invalidés et de nouveaux sont générés.
+        explanation: Les codes de récupération précédents ont été invalidés et de nouveaux ont été générés.
         subject: 'Mastodon : codes de récupération à deux facteurs ré-générés'
         title: Codes de récupération 2FA modifiés
       unlock_instructions:
diff --git a/config/locales/devise.gl.yml b/config/locales/devise.gl.yml
index 0ce335576b71416c8f26ead14cff9c68bfdb68ea..71439573b7a036eb9a6bee5614d6fbe6c85411fc 100644
--- a/config/locales/devise.gl.yml
+++ b/config/locales/devise.gl.yml
@@ -2,97 +2,97 @@
 gl:
   devise:
     confirmations:
-      confirmed: O seu enderezo de email foi confirmado con éxito.
-      send_instructions: Nuns minutos recibirá un correo electrónico con instruccións sobre como confirmar o seu enderezo de correo.  Comprobe por favor o cartafol de spam se non recibe este correo.
-      send_paranoid_instructions: Si o seu enderezo existe na nosa base de datos, recibirá nuns minutos un correo con instruccións sobre como confirmar o enderezo de correo. Por favor comprobe o cartafol de spam si non recibe este correo.
+      confirmed: O teu enderezo de email foi confirmado.
+      send_instructions: Vas recibir un email coas instrucións para confirmar o teu enderezo de email dentro dalgúns minutos. Por favor, comproba o cartafol de spam se non recibiches o correo.
+      send_paranoid_instructions: Se o teu enderezo de email xa existira na nosa base de datos, vas recibir un correo coas instrucións de confirmación dentro dalgúns minutos. Por favor, comproba o cartafol de spam se non recibiches o correo.
     failure:
-      already_authenticated: Xa está conectada.
-      inactive: A súa conta aínda non foi activada.
-      invalid: Contrasinal ou %{authentication_keys} non válidos.
-      last_attempt: Quédalle un intento antes de que a conta sexa bloqueada.
-      locked: A súa conta foi bloqueada.
-      not_found_in_database: Contrasinal ou %{authentication_keys} non válidos.
-      pending: A súa conta está en proceso de revisión.
-      timeout: Caducou a sesión. Por favor conéctese de novo para seguir.
-      unauthenticated: Precisa rexistrarse ou conectarse para continuar.
-      unconfirmed: Debe confirmar o seu enderezo de correo antes de continuar.
+      already_authenticated: Xa estás rexistrado.
+      inactive: A túa conta aínda non está activada.
+      invalid: "%{authentication_keys} ou contrasinal non validos."
+      last_attempt: Tes máis dun intento antes de que a túa conta fique bloqueada.
+      locked: A túa conta está bloqueada.
+      not_found_in_database: "%{authentication_keys} ou contrasinal non válidos."
+      pending: A túa conta aínda está baixo revisión.
+      timeout: A túa sesión expirou. Por favor, entra de novo para continuares.
+      unauthenticated: Precisas de entrar na túa conta ou rexistrarte antes de continuar.
+      unconfirmed: Tes que confirmar o teu enderezo de email antes de continuar.
     mailer:
       confirmation_instructions:
-        action: Validar enderezo de correo-e
+        action: Verificar o enderezo de email
         action_with_app: Confirmar e voltar a %{app}
-        explanation: Creou unha conta en %{host} con este enderezo de correo. Está a punto de activalo, si non foi vostede quen fixo a petición, por favor ignore este correo.
-        explanation_when_pending: Vostede solicitou un convite para %{host} con este enderezo de correo. Unha vez confirme o enderezo de correo revisaremos a solicitude. Non pode conectarse ata entón. Si a solicitude fose rexeitada, os seus datos eliminaranse, así que non precisaría facer nada máis. Se non fixo vostede unha solicitude por favor ignore este correo.
-        extra_html: Por favor, lea tamén <a href="%{terms_path}">as normas do sevidor</a> e <a href="%{policy_path}">os termos do servizo</a>.
-        subject: 'Mastodon: Instruccións de confirmación para %{instance}'
-        title: Verificar enderezo de correo-e
+        explanation: Creaches unha conta en %{host} con este enderezo de email. Estás a un clic de activala. Se non foches ti o que fixeches este rexisto, por favor ignora esta mensaxe.
+        explanation_when_pending: Solicitaches un convite para %{host} com este enderezo de email. Logo de que confirmes o teu enderezo de email, imos revisar a túa inscrición. Podes iniciar sesión para mudar os teus datos ou eliminar a túa conta, mais non poderás aceder á meirande parte das funcións até que a túa conta sexa aprobada. Se a túa inscrición for rexeitada, os teus datos serán eliminados, polo que non será necesaria calquera acción adicional da túa parte. Se non solicitaches este convite, por favor, ignora este correo.
+        extra_html: Por favor, le <a href="%{terms_path}">as regras do servidor</a> e os <a href="%{policy_path}">nosos termos do servizo</a>.
+        subject: 'Mastodon: Instrucións de confirmación para %{instance}'
+        title: Verificar o enderezo de email
       email_changed:
-        explanation: 'O seu enderezo de correo para esta conta foi cambiado a:'
-        extra: Se non fixo a petición de cambio de correo-e é probable que alguén obtivese acceso a súa conta. Por favor, cambie o contrasinal inmediatamente ou contacte coa administración do servidor se non ten acceso a súa conta.
-        subject: 'Mastodon: email cambiado'
-        title: Novo enderezo de correo
+        explanation: 'O email asociado á túa conta será mudado a:'
+        extra: Se non mudaches o teu email é posíbel que alguén teña conseguido acceder á túa conta. Por favor muda o teu contrasinal de xeito imediato ou entra en contacto cun administrador do servidor se ficaste sen acceso á túa conta.
+        subject: 'Mastodon: Email mudado'
+        title: Novo enderezo de email
       password_change:
-        explanation: Cambiouse o contrasinal da súa conta.
-        extra: Se non cambiou o contrasinal, é probable que alguén obtivese acceso a súa conta. Por favor cambie o contrasinal inmediatamente ou contacte coa administración do servidor se non ten acceso a súa conta.
-        subject: 'Mastodon: contrasinal cambiado'
-        title: Contrainal cambiado
+        explanation: O contrasinal da túa conta foi mudado.
+        extra: Se non mudaches o teu contrasinal, é posíbel que alguén teña conseguido acceder á túa conta. Por favor muda o teu contrasinal de xeito imediato ou entra en contato cun administrador do servidor se ficaste sen acesso á túa conta.
+        subject: 'Mastodon: Contrasinal mudado'
+        title: Contrainal mudado
       reconfirmation_instructions:
-        explanation: Confirme o novo enderezo para cambiar o correo-e.
-        extra: Si vostede non fixo esta petición, ignore este correo por favor. Este enderezo de correo-e para a conta Mastodon non cambiará ate que acceda a ligazón superior.
-        subject: 'Mastodon: Confirme email para %{instance}'
-        title: Verificación do enderezo de correo-e
+        explanation: Confirma o teu novo enderezo para mudar o email.
+        extra: Se esta mudanza non foi comezada por ti, por favor ignora este email. O enderezo de email para a túa conta do Mastodon non mudará mentres non accedas á ligazón de enriba.
+        subject: 'Mastodon: Confirmar email para %{instance}'
+        title: Verificar o enderezo de email
       reset_password_instructions:
-        action: Cambiar contrasinal
-        explanation: Solicitou un novo contrasinal para a súa conta.
-        extra: Si non fixo esta solicitude, por favor ignore este correo. O seu contrasinal non cambiará ate que acceda a ligazón superior e cree unha nova.
-        subject: 'Mastodon: Instruccións para restablecer o contrasinal'
-        title: Restablecer contrasinal
+        action: Mudar contrasinal
+        explanation: Solicitaches un novo contrasinal para a túa conta.
+        extra: Se non fixeches esta solicitude, por favor ignora este email. O teu contrasinal non mudará se non accedes á ligazón de enriba e creas unha nova.
+        subject: 'Mastodon: Instrucións para restabelecer o contrasinal'
+        title: Restabelecer contrasinal
       two_factor_disabled:
-        explanation: Desactivouse o segundo factor de autenticación para túa conta. Agora xa podes conectarte utilizando só o correo-e e contrasinal.
-        subject: 'Mastodon: Autenticación con dobre factor desactivada'
-        title: 2FA desactivada
+        explanation: A autenticación de dobre factor para a túa conta foi desactivada. É agora posíbel acceder só co teu enderezo de email e contrasinal.
+        subject: 'Mastodon: Autenticación de dobre factor desactivada'
+        title: 2FA desactivado
       two_factor_enabled:
-        explanation: A autenticación con dobre factor foi activada para a túa conta. Pedirase o testemuño xerado pola aplicación TOTP emparellada.
-        subject: 'Mastodon: Activouse o dobre factor de autenticación'
+        explanation: A autenticación de dobre factor foi activada para a túa conta. Un token, xerado pola aplicación TOTP emparellada, será necesario para acceder.
+        subject: 'Mastodon: Activouse a autenticación de dobre factor'
         title: 2FA activado
       two_factor_recovery_codes_changed:
-        explanation: Os códigos de recuperación anteriores quedan anulados e os novos foron creados.
-        subject: 'Mastodon: Código de recuperación do dobre factor rexenerados'
-        title: Códigos de recuperación 2FA cambiados
+        explanation: Os códigos de recuperación anteriores fican anulados e os novos foron xerados.
+        subject: 'Mastodon: Xerados novos códigos de recuperación de dobre factor'
+        title: Códigos de recuperación 2FA mudados
       unlock_instructions:
-        subject: 'Mastodon: Instruccións para desbloquear'
+        subject: 'Mastodon: Instrucións para desbloquear'
     omniauth_callbacks:
-      failure: Non podemos autenticala desde %{kind} porque "%{reason}".
-      success: Autenticouse con éxito desde a conta %{kind}.
+      failure: Non foi posíbel autenticar %{kind} porque "%{reason}".
+      success: Autenticado con éxito na conta %{kind}.
     passwords:
-      no_token: Non pode acceder a esta páxina vindo desde un correo de restablecemento de contrasinal. Si vostede chega desde un correo de restablecemento de contrasinal, por favor asegúrese de que utiliza o URL completo proporcionado.
-      send_instructions: Si o seu enderezo de correo existe na nosa base de datos,  nuns minutos recibirá unha ligazón para recuperar o contrasinal. Por favor comprobe o seu cartafol de spam si non recibe este correo.
-      send_paranoid_instructions: Si o seu enderezo de correo existe na nosa base de datos, recibirá nuns minutos unha ligazón para recuperar o contrasinal. Por favor comprobe o seu cartafol de spam si non recibe este correo.
-      updated: Cambiou o contrasinal con éxito. Agora xa está conectada.
-      updated_not_active: Cambiouse o seu contrasinal correctamente.
+      no_token: Non podes acceder a esta páxina se non vés a través da ligazón enviada por email para o mudado do teu contrasinal. Se empregaches esa ligazón para chegar aquí, por favor verifica que o enderezo URL actual é o mesmo do que foi enviado no email.
+      send_instructions: Se o teu enderezo de email existe na nosa base de datos, vas recibir un email coas instrucións para mudar o contrasinal dentro duns minutos. Por favor, comproba o teu cartafol de correo lixo (spam) se ves que non recibiches o email.
+      send_paranoid_instructions: Se o teu enderezo de email existe na nosa base de datos, vas recibir unha ligazón para recuperar o contrasinal dentro duns minutos. Por favor, comproba o teu cartafol de correo lixo (spam) se ves que non recibiches o email.
+      updated: O teu contrasinal foi mudado. Estás xa autenticado na túa conta.
+      updated_not_active: O teu contrasinal foi mudado de xeito correcto.
     registrations:
-      destroyed: Adeus! A súa conta cancelouse con éxito. Agardamos vela de novo.
-      signed_up: Ben vida! Rexistrouse con éxito.
-      signed_up_but_inactive: Rexistrouse correctamente. Porén, aínda non podemos conectala porque a súa conta aínda non foi activada.
-      signed_up_but_locked: Rexistrouse correctamente. Porén, non podemos conectala porque a conta está bloqueada.
-      signed_up_but_pending: Enviouselle unha mensaxe de correo que contén unha ligazón de confirmación. Tras pulsar na ligazón, revisaremos a súa solicitude. Notificarémoslle se está aprobada.
-      signed_up_but_unconfirmed: Foi enviada unha mensaxe con unha ligazón de confirmación ao seu enderezo electrónico. Por favor siga a ligazón para activar a súa conta. Por favor comprobe o cartafol de spam si non recibe este correo.
-      update_needs_confirmation: Actualizou a súa conta correctamente, pero precisamos verificar o seu enderezo. Por favor comprobe o seu email e siga a ligazón de confirmación para confirmar o seu novo enderezo. Por favor comprobe o cartafol de spam si non recibe este correo.
-      updated: A súa conta foi actualizada correctamente.
+      destroyed: Adeus! A túa conta foi cancelada de xeito correcto. Agardamos verte de novo.
+      signed_up: Benvido! Rexistrácheste de xeito correcto.
+      signed_up_but_inactive: A túa conta foi rexistada. Porén aínda non está activada.
+      signed_up_but_locked: A túa conta foi rexistada. Porén está bloqueada.
+      signed_up_but_pending: Unha mensaxe cunha ligazón de confirmación foi enviada ó teu enderezo de email. Após premer na ligazón, revisaremos a túa aplicación. Serás notificado se a túa conta é aprobada.
+      signed_up_but_unconfirmed: Unha mensaxe cunha ligazón de confirmación foi enviada ó teu email. Por favor, segue esa ligazón para activar a túa conta. Comproba o teu cartafol de correo lixo (spam) se ves que non recibiches o correo.
+      update_needs_confirmation: Actualizaches a túa conta de xeito correcto, pero precisamos verificar o teu novo enderezo de email. Por favor, revisa o teu email e segue a ligazón para confirmar o teu novo enderezo de email. Comproba o teu cartafol de correo lixo (spam) se ves que non recibiches o correo.
+      updated: A túa conta foi actualizada de xeito correcto.
     sessions:
-      already_signed_out: Desconectouse con éxito.
-      signed_in: Conectouse correctamente.
-      signed_out: Desconectouse correctamente.
+      already_signed_out: Pechouse a sesión de xeito correcto.
+      signed_in: Iniciouse a sesión de xeito correcto.
+      signed_out: Pechouse a sesión de xeito correcto.
     unlocks:
-      send_instructions: Recibirá nuns minutos un correo con instrucións sobre como desbloquear a súa conta. Por favor comprobe o cartafol de spam si non recibe este correo.
-      send_paranoid_instructions: Si a conta existe, recibirá un correo nuns minutos sobre como desbloquear a súa conta. Por favor comprobe o cartafol de spam si non recibe este correo.
-      unlocked: A súa conta foi desbloqueada correctamente. Por favor, conéctese para continuar.
+      send_instructions: Vas recibir un email coas instrucións para desbloquear a túa conta dentro duns minutos. Por favor, comproba o teu cartafol de correo lixo (spam) se ves que non recibiches o correo.
+      send_paranoid_instructions: Se a túa conta existe, vas recibir un email coas instrucións detalladas de como desbloqueala dentro duns minutos. Por favor, comproba o teu cartafol de correo lixo (spam) se ves que non recibiches o correo.
+      unlocked: A túa conta foi desbloqueada. Por favor, inicia a sesión para continuar.
   errors:
     messages:
-      already_confirmed: xa foi confirmada, por favor intente conectarse
-      confirmation_period_expired: precisa ser confirmada en %{period}, por favor solicite unha nova
-      expired: caducou, por favor solicite unha nova
-      not_found: non se atopou
+      already_confirmed: xa confirmado, tenta iniciar a sesión
+      confirmation_period_expired: ten que ser confirmado dentro de %{period}, solicita unha nova
+      expired: expirou, solicita unha nova
+      not_found: non atopado
       not_locked: non foi bloqueada
       not_saved:
-        one: '1 erro evitou que %{resource} fose gardada:'
-        other: "%{count} erros evitaron que %{resource} fose gardada:"
+        one: '1 erro impediu este %{resource} de ser gardado:'
+        other: "%{count} erros impediron este %{resource} de ser gardado:"
diff --git a/config/locales/devise.hi.yml b/config/locales/devise.hi.yml
new file mode 100644
index 0000000000000000000000000000000000000000..d758a5b5357d76effdf363eeb2c8e0dfb231c4aa
--- /dev/null
+++ b/config/locales/devise.hi.yml
@@ -0,0 +1 @@
+hi:
diff --git a/config/locales/devise.is.yml b/config/locales/devise.is.yml
new file mode 100644
index 0000000000000000000000000000000000000000..288617be8405c673d5c1b01bd90689df8b0b2b2b
--- /dev/null
+++ b/config/locales/devise.is.yml
@@ -0,0 +1,98 @@
+---
+is:
+  devise:
+    confirmations:
+      confirmed: Tölvupóstfang þitt hefur verið staðfest.
+      send_instructions: Þú munt innan nokkurra mínútna fá tölvupóst með leiðbeiningunum um hvernig eigi að staðfesta tölvupóstfangið þitt. Skoðaðu í ruslpóstmöppuna þína ef þú færð ekki þennan tölvupóst.
+      send_paranoid_instructions: Ef tölvupóstfangið þitt fyrirfinnst í gagnagrunninum okkar, munt þú innan nokkurra mínútna fá tölvupóst með leiðbeiningunum um hvernig eigi að staðfesta tölvupóstfangið þitt. Skoðaðu í ruslpóstmöppuna þína ef þú færð ekki þennan tölvupóst.
+    failure:
+      already_authenticated: Þú ert nú þegar skráð(ur) inn.
+      inactive: Aðgangur þinn hefur ekki enn verið virkjaður.
+      invalid: Ógildur %{authentication_keys} eða lykilorð.
+      last_attempt: Þú getur reynt einu sinni í viðbót áður en aðgangnum þínum verður læst.
+      locked: Notandaaðgangurinn þinn er læstur.
+      not_found_in_database: Ógildur %{authentication_keys} eða lykilorð.
+      pending: Notandaaðgangurinn þinn er enn til yfirferðar.
+      timeout: Setan þín er útrunnin. Skráðu þig aftur inn til að halda áfram.
+      unauthenticated: Þú þarft að skrá þig inn eða nýskrá þig áður en lengra er haldið.
+      unconfirmed: Þú verður að staðfesta tölvupóstfangið þitt áður en lengra er haldið.
+    mailer:
+      confirmation_instructions:
+        action: Staðfestu tölvupóstfang
+        action_with_app: Staðfestu og snúðu aftur í %{app}
+        explanation: Þú hefur búið til notandaaðgang á %{host} með þessu tölvupóstfangi. Þú ert einn smell frá því að virkja hann. Ef það varst ekki þú sem baðst um þetta, geturðu hunsað þennan tölvupóst.
+        explanation_when_pending: Þú sóttir um að vera boðinn á %{host} með þessu tölvupóstfangi. Þegar þú hefur staðfest tölvupóstfangið, munum við fara yfir umsóknina þína. Þú getur skrá þig inn og breytt ýmsum upplýsingum um þig eða jafnvel eytt aðgangnum þínum, en þú getur hinsvegar ekki nýtt þér flesta eiginleika hans fyrr en búið er að samþykkja aðganginn. Ef umsókninni er hafnað, verður öllum gögnum um þig eytt, þannig að ekki verður krafist frekari aðgerða af þinni hálfu. Ef það varst ekki þú sem baðst um þetta, geturðu hunsað þennan tölvupóst.
+        extra_html: Skoðaðu líka <a href="%{terms_path}">gildandi reglur vefþjónsins</a> og <a href="%{policy_path}">þjónustuskilmálana okkar</a>.
+        subject: 'Mastodon: Leiðbeiningar vegna staðfestingar á %{instance}'
+        title: Staðfestu tölvupóstfang
+      email_changed:
+        explanation: 'Tölvupóstfanginu fyrir notandaaðganginn þinn verður breytt í:'
+        extra: Ef það varst ekki þú sem breyttir tölvupóstfanginu þínu, þá er líklegt að einhver hafi komist inn í notandaaðganginn þinn. Skiptu núna strax um lykilorð eða hafðu samband við kerfisstjóra netþjónsins ef þú hefur verið læst/ur úti af notandaaðgangnum þínum.
+        subject: 'Mastodon: Tölvupóstfang breyttist'
+        title: Nýtt tölvupóstfang
+      password_change:
+        explanation: Lykilorðinu á notandaaðgangnum þínum hefur verið breytt.
+        extra: Ef það varst ekki þú sem breyttir lykilorðinu þínu, þá er líklegt að einhver hafi komist inn í notandaaðganginn þinn. Skiptu núna strax um lykilorð eða hafðu samband við kerfisstjóra netþjónsins ef þú hefur verið læst/ur úti af notandaaðgangnum þínum.
+        subject: 'Mastodon: Lykilorð breyttist'
+        title: Lykilorð breyttist
+      reconfirmation_instructions:
+        explanation: Staðfestu nýja vistfangið til að skipta um tölvupóstfang.
+        extra: Ef það varst ekki þú sem baðst um þessa breytingu, geturðu hunsað þennan tölvupóst. Tölvupóstfangið fyrir Mastodon-aðganginn mun ekki breytast fyrr en þú hefur fylgt tenglinum hér fyrir ofan.
+        subject: 'Mastodon: Staðfestu tölvupóst fyrir %{instance}'
+        title: Staðfestu tölvupóstfang
+      reset_password_instructions:
+        action: Breyta lykilorði
+        explanation: Þú baðst um nýtt lykilorð fyrir notandaaðganginn þinn.
+        extra: Ef það varst ekki þú sem baðst um þetta, geturðu hunsað þennan tölvupóst. Lykilorðið þitt mun ekki breytast fyrr en þú hefur fylgt tenglinum hér fyrir ofan og búið til nýtt lykilorð.
+        subject: 'Mastodon: Leiðbeiningar til að endurstilla lykilorð'
+        title: Endurstilling lykilorðs
+      two_factor_disabled:
+        explanation: Tveggja-þátta auðkenning fyrir aðganginn þinn hefur verið gerð óvirk. Núna er einungis hægt að skrá inn með tölvupóstfangi og lykilorði.
+        subject: 'Mastodon: Tveggja-þátta auðkenning er óvirk'
+        title: 2FA tveggja-þátta auðkenning er óvirk
+      two_factor_enabled:
+        explanation: Tveggja-þátta auðkenning hefur verið gerð virk fyrir aðganginn þinn. Krafist er teikns útbúnu af paraða TOTP-forritinu til að skrá inn.
+        subject: 'Mastodon: Tveggja-þátta auðkenning er virk'
+        title: 2FA tveggja-þátta auðkenning er virk
+      two_factor_recovery_codes_changed:
+        explanation: Fyrri endurheimtukóðar tveggja-þátta auðkenningar voru ógiltir og nýir útbúnir í staðinn.
+        subject: 'Mastodon: Endurheimtukóðar tveggja-þátta auðkenningar voru endurnýjaðir'
+        title: Endurheimtukóðar tveggja-þátta auðkenningar breyttust
+      unlock_instructions:
+        subject: 'Mastodon: Leiðbeiningar til að aflæsa'
+    omniauth_callbacks:
+      failure: Gat ekki auðkennt þig frá %{kind} vegna "%{reason}".
+      success: Tókst að auðkenna frá %{kind} notandaaðgangnum.
+    passwords:
+      no_token: Þú getur ekki séð þessa síðu án þess að koma á slóð úr tölvupósti fyrir endurstillingu lykilorðs. Ef svo er skaltu ganga úr skugga um að að þú hafir notað alla slóðina sem var gefin.
+      send_instructions: Ef tölvupóstfangið þitt fyrirfinnst í gagnagrunninum okkar, munt þú innan nokkurra mínútna fá tölvupóst með tengli til að endurheimta lykilorðið þitt. Skoðaðu í ruslpóstmöppuna þína ef þú færð ekki þennan tölvupóst.
+      send_paranoid_instructions: Ef tölvupóstfangið þitt fyrirfinnst í gagnagrunninum okkar, munt þú innan nokkurra mínútna fá tölvupóst með tengli til að endurheimta lykilorðið þitt. Skoðaðu í ruslpóstmöppuna þína ef þú færð ekki þennan tölvupóst.
+      updated: Það tókst að breyta lykilorðinu þínu. Þú ert núna skráð/ur inn.
+      updated_not_active: Það tókst að breyta lykilorðinu þínu.
+    registrations:
+      destroyed: Bless! Hætt hefur verið við notandaaðganginn þinn. Við vonumst samt eftir að sjá þig fljótt aftur.
+      signed_up: Velkonin/n! Það tókst að nýskrá þig.
+      signed_up_but_inactive: Þér hefur tekist að nýskrá þig. Hinsvegar gátum við ekki skráð þig inn því notandaaðgangurinn þinn hefur ekki enn verið virkjaður.
+      signed_up_but_locked: Þér hefur tekist að nýskrá þig. Hinsvegar gátum við ekki skráð þig inn því notandaaðgangurinn þinn er læstur.
+      signed_up_but_pending: Skilaboð með staðfestingartengli hafa verið send á tölvupóstfangið þitt. Þegar þú smellir á þennan tengil munum við yfirfara og staðfesta umsóknina þína. Þú færð svo að vita hvort hún verður samþykkt.
+      signed_up_but_unconfirmed: Skilaboð með staðfestingartengli hafa verið send á tölvupóstfangið þitt. Smelltu á þennan tengil til að virkja notandaaðganginn þinn. Skoðaðu í ruslpóstmöppuna þína ef þú færð ekki þessi skilaboð.
+      update_needs_confirmation: Þú uppfærðir notandaaðganginn þinn, en við þurfum að sannreyna nýja tölvupóstfangið þitt. Skoðaðu tölvupóstinn þinn og fylgdu tenglinum sem þangað á að berast til að staðfesta tölvupóstfangið þitt. Skoðaðu í ruslpóstmöppuna þína ef þú færð ekki þennan tölvupóst.
+      updated: Það tókst að uppfæra notandaaðganginn þinn.
+    sessions:
+      already_signed_out: Tókst að skrá út.
+      signed_in: Tókst að skrá inn.
+      signed_out: Tókst að skrá út.
+    unlocks:
+      send_instructions: Þú munt innan nokkurra mínútna fá tölvupóst með leiðbeiningunum um hvernig eigi að aflæsa notandaaðgangnum þínum. Skoðaðu í ruslpóstmöppuna þína ef þú færð ekki þennan tölvupóst.
+      send_paranoid_instructions: Ef notandaaðgangurinn þinn er til, munt þú innan nokkurra mínútna fá tölvupóst með leiðbeiningunum um hvernig eigi að aflæsa honum. Skoðaðu í ruslpóstmöppuna þína ef þú færð ekki þennan tölvupóst.
+      unlocked: Það tókst að aflæsa notandaaðgangnum þínum. Skráðu þig inn til að halda áfram.
+  errors:
+    messages:
+      already_confirmed: var þegar staðfest, prófaðu að skrá þig inn
+      confirmation_period_expired: þarf að staðfesta inna %{period}, biddu um nýtt
+      expired: er útrunnið, biddu um nýtt
+      not_found: fannst ekki
+      not_locked: var ekki læst
+      not_saved:
+        one: '1 villa kom í veg fyrir að þessi %{resource} væri vistað:'
+        other: "%{count} villur komu í veg fyrir að þessi %{resource} væri vistað:"
diff --git a/config/locales/devise.it.yml b/config/locales/devise.it.yml
index dca5e3caa3d88b224b94353829dcdddb5638cd7f..85c0104952143d0c62c89d79a07b85abb908451b 100644
--- a/config/locales/devise.it.yml
+++ b/config/locales/devise.it.yml
@@ -55,6 +55,7 @@ it:
         subject: 'Mastodon: Autenticazione a due fattori attivata'
         title: 2FA abilitata
       two_factor_recovery_codes_changed:
+        explanation: I precedenti codici di recupero sono stati annullati e ne sono stati generati di nuovi.
         subject: 'Mastodon: codici di recupero a due fattori ri-generati'
         title: Codici di recupero 2FA modificati
       unlock_instructions:
diff --git a/config/locales/devise.ja.yml b/config/locales/devise.ja.yml
index 5f32b23815b9bf2aa02a9b2009e61ef48a7a6d38..e697e290de7246dafd8b71d33bb99d6aa3820a4d 100644
--- a/config/locales/devise.ja.yml
+++ b/config/locales/devise.ja.yml
@@ -20,19 +20,19 @@ ja:
       confirmation_instructions:
         action: メールアドレスの確認
         action_with_app: 確認し %{app} に戻る
-        explanation: このメールアドレスで%{host}にアカウントを作成しました。有効にするまであと一歩です。もし心当たりがない場合、申し訳ありませんがこのメールを無視してください。
+        explanation: このメールアドレスで%{host}にアカウントを作成しました。アカウントの有効化まであと一歩です。なお、もし心当たりがない場合は、申し訳ありませんがこのメールを無視してください。
         explanation_when_pending: このメールアドレスで %{host} への登録を申請しました。あなたがメールアドレスを確認したら、サーバー管理者が申請を審査します。ログインして一部設定を変更したりアカウントを削除できますが、ほとんどの機能は申請が承認されるまで利用できません。申請が却下された場合、あなたのデータは削除されますので以降の操作は必要ありません。もし心当たりがない場合、申し訳ありませんがこのメールを無視してください。
-        extra_html: また <a href="%{terms_path}">サーバーのルール</a> と <a href="%{policy_path}">利用規約</a> もお読みください。
+        extra_html: あわせて、<a href="%{terms_path}">サーバーのルール</a> と <a href="%{policy_path}">利用規約</a> もお読みください。
         subject: 'Mastodon: メールアドレスの確認 %{instance}'
         title: メールアドレスの確認
       email_changed:
         explanation: 'アカウントのメールアドレスは以下のように変更されます:'
-        extra: メールアドレスの変更を行っていない場合、他の誰かがあなたのアカウントにアクセスした可能性があります。すぐにパスワードを変更するか、アカウントがロックされている場合はサーバー管理者に連絡してください。
+        extra: メールアドレスの変更をご自身で行っていない場合、他の誰かがあなたのアカウントにアクセスした可能性があります。すぐにパスワードを変更するか、アカウントがロックされている場合はサーバー管理者に連絡してください。
         subject: 'Mastodon: メールアドレスの変更'
         title: 新しいメールアドレス
       password_change:
         explanation: パスワードが変更されました。
-        extra: パスワードの変更を行っていない場合、他の誰かがあなたのアカウントにアクセスした可能性があります。すぐにパスワードを変更するか、アカウントがロックされている場合はサーバー管理者に連絡してください。
+        extra: パスワードの変更をご自身で行っていない場合、他の誰かがあなたのアカウントにアクセスした可能性があります。すぐにパスワードを再変更するか、アカウントがロックされている場合はサーバー管理者に連絡してください。
         subject: 'Mastodon: パスワードが変更されました'
         title: パスワードの変更
       reconfirmation_instructions:
diff --git a/config/locales/devise.kab.yml b/config/locales/devise.kab.yml
new file mode 100644
index 0000000000000000000000000000000000000000..ccfd78ca9ab3001d0aaa13103b705ae7d5455a84
--- /dev/null
+++ b/config/locales/devise.kab.yml
@@ -0,0 +1,58 @@
+---
+kab:
+  devise:
+    confirmations:
+      confirmed: Tansa-ik imayl tettwasentem.
+      send_instructions: Deg kra n tesdatin, ad n-teṭṭfeḍ imayl deg-s iwellihen i ilaqen i usentem n umiḍan-ik. Ma yella ur tufiḍ ara izen-agi, ttxil-k ẓer deg ukaram spam.
+      send_paranoid_instructions: Ma yella tansa-ik imayl tella deg uzadur-nneɣ n yisefka, ad n-teṭṭfeḍ imayl deg tesdatin i d-iteddun, deg-s iwellihen i ilaqen i usentem n umiḍan-ik. Ma yella ur tufiḍ ara izen-agi, ttxil-k ẓer deg ukaram spam.
+    failure:
+      already_authenticated: Aqla-k teqqneḍ yakan.
+      inactive: Amiḍan-inek mazal ur yermed ara.
+      invalid: Tella tuccḍa deg %{authentication_keys} neɣ deg wawal uffir.
+      last_attempt: Ɣur-k yiwen n uɛraḍ-nniḍen kan qbel ad yettucekkel umiḍan-ik.
+      locked: Amiḍan-ik yewḥel.
+      not_found_in_database: Tella tuccḍa deg %{authentication_keys} neɣ deg wawal uffir.
+      pending: Amiḍan-inek mazal-it deg ɛiwed n tmuɣli.
+      timeout: Tiɣimit n tuqqna tezri. Ma ulac aɣilif ɛiwed tuqqna akken ad tkemmleḍ.
+      unauthenticated: Ilaq ad teqqneḍ neɣ ad tjerrḍeḍ akken ad tkemmelḍ.
+      unconfirmed: Ilaq ad wekdeḍ tansa-inek imayl akken ad tkemmelḍ.
+    mailer:
+      confirmation_instructions:
+        action: Senqed tansa-inek imayl
+        action_with_app: Wekked sakkin uɣal ɣer %{app}
+        explanation: Aqla-k terniḍ amiḍan deg %{host} s tansa imayl-agi. Mazal-ak yiwen utekki akken ad t-tremdeḍ. Ma mačči d kečč i yessutren ay-agi, ttxil-k ssinef izen-a.
+        explanation_when_pending: Tsutreḍ-d ajerred deg %{host} s tansa-agi imayl. Ad nɣeṛ asuter-ik ticki tsentmeḍ tansa-ik imayl. Send asentem, ur tezmireḍ ara ad teqqneḍ ɣer umiḍan-ik. Ma yella nugi asuter-ik, isefka-ik ad ttwakksen seg uqeddac, ihi ulac tigawt-nniḍen ara k-d-yettuqeblen. Ma mačči d kečč i yellan deffir n usuter-agi, ttxil-k ssinef izen-agi.
+        extra_html: Ttxil-k ẓer daɣen <a href="%{terms_path}">ilugan n uqeddac</a> akked <a href="%{policy_path}">twetlin n useqdec</a>.
+        subject: 'Mastudun: Asentem n ujerred deg uqeddac %{instance}'
+        title: Senqed tansa-inek imayl
+      email_changed:
+        extra: Ma mačči d kečč i ibeddlen tansa imayl, ihi yezmer d alebɛaḍ i ikecmen ɣer umiḍan-ik. Ttxil-k beddel awal-ik uffir tura neɣ siwel i unedbal n uqeddac ma tḥesleḍ berra n umiḍan-ik.
+        subject: 'Masá¹­udun: Imayl-ik yettubeddel'
+        title: Tansa imayl tamaynut
+      password_change:
+        explanation: Awal uffir n umiḍan-ik yettubeddel.
+        extra: Ma mačči d kečč i ibeddlen awal uffir, ihi yezmer d alebɛaḍ i ikecmen ɣer umiḍan-ik. Ttxil-k beddel awal-ik uffir tura neɣ siwel i unedbal n uqeddac ma tḥesleḍ berra n umiḍan-ik.
+        subject: 'Masá¹­udun: Yettubeddel wawal-ik uffir'
+        title: Awal uffir yettubeddel
+      reconfirmation_instructions:
+        explanation: Sentem tansa imayl tamaynut akken ad tbeddleḍ imayl-inek.
+        subject: 'Mastudun: Sentem tansa imayl n %{instance}'
+        title: Senqed tansa-inek imayl
+      reset_password_instructions:
+        action: Beddel awal uffir
+        explanation: Tessutreḍ awal uffir amaynut i umiḍan-ik.
+        title: Aɛiwed n wawal uffir
+    passwords:
+      send_paranoid_instructions: Ma nufa tansa-inek imayl tella deg uzadur-nneɣ n yisefka, ad n-teṭṭfeḍ izen deg kra n tesdatin, deg-s assaɣ i uɛawed n wawal uffir. Ma ur k-in-yewwiḍ ara yizen, ttxil-k ẓer deg ukaram spam.
+      updated: Awal-ik uffir yettwabeddel mebla ugur. Aqla-k tura tjerrḍeḍ.
+      updated_not_active: Awal-ik uffir yettwabeddel mebla ugur.
+    registrations:
+      destroyed: Ar timlilit! Amiḍan-ik yettwakkes mebla ugur. Nessaram ad k-nwali tikelt-nniḍen.
+      signed_up: Anṣuf! Aqla-k tkecmeḍ.
+    sessions:
+      signed_in: Aqla-k teqqneḍ.
+      signed_out: Aqla-k teffɣeḍ.
+  errors:
+    messages:
+      not_found: ulac-it
+      not_locked: ur yettucekkel ara
diff --git a/config/locales/devise.kk.yml b/config/locales/devise.kk.yml
index d99116c7f0b49a8ea7cec365393d0b73575e1504..7ddeb86047e8c06ec0c164652f3a34dc31553047 100644
--- a/config/locales/devise.kk.yml
+++ b/config/locales/devise.kk.yml
@@ -12,6 +12,7 @@ kk:
       last_attempt: Аккаунтыңыз құлыпталғанға дейін тағы бір әрекет жасаңыз.
       locked: Аккаунтыңыз құлыпталған.
       not_found_in_database: Қате %{authentication_keys} немесе құпиясөз.
+      pending: Аккаунтыңыз әлі тексеріліп жатыр.
       timeout: Сессияңыз аяқталды. Қайтадан кіріңіз жалғастыру үшін.
       unauthenticated: Жалғастыру үшін тіркеліңіз немесе логиніңізбен кіріңіз.
       unconfirmed: Жалғастыру үшін email адресіңізді құптауыңыз керек.
@@ -20,6 +21,7 @@ kk:
         action: Email адресіңізді растаңыз
         action_with_app: Растау және оралу - %{app}
         explanation: Сіз %{host} сайтына тіркелгенсіз осы email адресімен. Активация жасауға бір адам қалды. Егер тіркелмеген болсаңыз, бұл хатты елемеңіз.
+        explanation_when_pending: Сіз осы электрондық пошта мекенжайымен %{host} сайтына шақыру туралы өтініш бердіңіз. Электрондық пошта мекенжайын растағаннан кейін біз сіздің өтінішіңізді қарастырамыз. Сіз өзіңіздің мәліметтеріңізді өзгертуге немесе есептік жазбаңызды жою үшін жүйеге кіре аласыз, бірақ есептік жазбаңыз мақұлданғанша көптеген функцияларды пайдалана алмайсыз. Егер сіздің өтінішіңіз қабылданбаса, сіздің деректеріңіз жойылады, сондықтан сізден бұдан әрі ешқандай әрекет қажет болмайды. Егер бұл сіз болмасаңыз, осы электрондық поштаны елемеңіз.
         extra_html: Сондай-ақ <a href="%{terms_path}">шарттар мен ережелерді</a> және <a href="%{policy_path}">құпиялылық саясатын</a> оқыңыз.
         subject: 'Mastodon: Растау туралы нұсқаулық %{instance}'
         title: Email адресін растау
@@ -44,6 +46,18 @@ kk:
         extra: Егер сіз мұны сұрамаған болсаңыз, бұл хатты елемеңіз. Жоғарыдағы сілтемені ашып, жаңасын жасағанша құпия сөзіңіз өзгермейді.
         subject: 'Mastodon: Құпиясөзді қалпына келтіру нұсқаулықтары'
         title: Құпиясөзді қалпына келтіру
+      two_factor_disabled:
+        explanation: Екі факторлы аутентификация сіздің аккаунтыңыз үшін жабық. Email адресіңіз және құпиясөзіңіз арқылы кіруіңізге болады.
+        subject: 'Mastodon: Екі факторлы аутентификация жабық'
+        title: 2FA жабық
+      two_factor_enabled:
+        explanation: Екі факторлы аутентификация аккаунтыңызға қосылды. TOTP арқылы жасалған токен міндетті кіруіңіз үшін.
+        subject: 'Mastodon: Екі факторлы аутентификация ашық'
+        title: 2FA ашық
+      two_factor_recovery_codes_changed:
+        explanation: Алдыңғы кодтар жарамсыз болып қалды, енді жаңасы құрылды.
+        subject: 'Mastodon: Екі факторлы кіру коды қайтадан жасақталды'
+        title: 2FA кодтары өзгертілді
       unlock_instructions:
         subject: 'Mastodon: Құлыптан шешу нұсқаулықтары'
     omniauth_callbacks:
@@ -60,6 +74,7 @@ kk:
       signed_up: Қош келдіңіз! Тіркелу сәтті өтті.
       signed_up_but_inactive: Тіркелу сәтті аяқталды. Дегенмен, аккаунтыңыз әлі белсендірілмегендіктен, сізге сайтқа кіру мүмкін болмайды.
       signed_up_but_locked: Тіркелу сәтті аяқталды. Дегенмен, аккаунтыңыз құлыпталғандықтан, сізге сайтқа кіру мүмкін болмайды.
+      signed_up_but_pending: Электрондық пошта мекенжайыңызға растау сілтемесі бар хабарлама жіберілді. Сілтемені басқаннан кейін біз сіздің өтінішіңізді қарастырамыз. Егер ол мақұлданса, сізге хабарланады.
       signed_up_but_unconfirmed: Растау сілтемесі бар хат электрондық поштаыңызға жіберілді. Аккаунтыңызды белсендіру үшін сілтеме бойынша өтіңіз. Бұл хат келмесе, спам құтысын тексеріңіз.
       update_needs_confirmation: Аккаунтыыызды сәтті жаңарттыңыз, бірақ жаңа электрондық поштаны тексеру қажет. Электрондық поштаңызды тексеріп, жаңа электрондық пошта мекенжайыңызды растаңыз. Бұл электрондық поштаны алмасаңыз, спам қалтаңызды тексеріңіз.
       updated: Аккаунтыңыз сәтті жаңартылды.
diff --git a/config/locales/devise.kn.yml b/config/locales/devise.kn.yml
new file mode 100644
index 0000000000000000000000000000000000000000..323889e42c8b31c35ee7e87fd76ad2db84a86ef0
--- /dev/null
+++ b/config/locales/devise.kn.yml
@@ -0,0 +1,5 @@
+---
+kn:
+  devise:
+    confirmations:
+      confirmed: '"ಸಂದರ್ಭ"'
diff --git a/config/locales/devise.ko.yml b/config/locales/devise.ko.yml
index 89dd12f1d7f994a5c0362ddd58eef3edac66c58c..fbe036875e593ba18117f4335d813c5755edc533 100644
--- a/config/locales/devise.ko.yml
+++ b/config/locales/devise.ko.yml
@@ -22,7 +22,7 @@ ko:
         action_with_app: 확인하고 %{app}으로 돌아가기
         explanation: 당신은 %{host}에서 이 이메일로 가입하셨습니다. 클릭만 하시면 계정이 활성화 됩니다. 만약 당신이 가입한 게 아니라면 이 메일을 무시해 주세요.
         explanation_when_pending: 당신은 %{host}에 가입 요청을 하셨습니다. 이 이메일이 확인 되면 우리가 가입 요청을 리뷰하고 승인할 수 있습니다. 그 전까지는 로그인을 할 수 없습니다. 당신의 가입 요청이 거부 될 경우 당신에 대한 정보는 모두 삭제 되며 따로 요청 할 필요는 없습니다. 만약 당신이 가입 요청을 한 게 아니라면 이 메일을 무시해 주세요.
-        extra_html: <a href="%{terms_path}">서버의 룰</a>과 <a href="%{policy_path}">이용 약관</a>도 확인해 주세요.
+        extra_html: <a href="%{terms_path}">서버의 규칙</a>과 <a href="%{policy_path}">이용 약관</a>도 확인해 주세요.
         subject: '마스토돈: %{instance}에 대한 확인 메일'
         title: 이메일 주소 확인
       email_changed:
diff --git a/config/locales/devise.ml.yml b/config/locales/devise.ml.yml
new file mode 100644
index 0000000000000000000000000000000000000000..08db402243a91350c6587ab30ef29724f24c5e92
--- /dev/null
+++ b/config/locales/devise.ml.yml
@@ -0,0 +1,32 @@
+---
+ml:
+  devise:
+    confirmations:
+      confirmed: നിങ്ങളുടെ ഇലക്ട്രോണിക് കത്തിന്റെ മേൽവിലാസം വിജയകരമായി സ്ഥിരീകരിക്കപ്പെട്ടിരിക്കുന്നു.
+      send_instructions: ഏതാനും നിമിഷങ്ങൾക്കുള്ളിൽ നിങ്ങൾക്ക് നിങ്ങളുടെ ഇലക്ട്രോണിക് കത്തിന്റെ വിലാസം എങ്ങനെ സ്ഥിരീകരിക്കാം എന്നുള്ള നിർദ്ദേശങ്ങൾ അതെ വിലാസത്തിൽ ലഭിക്കുന്നതാണ്. അത് ലഭിച്ചില്ലെങ്കിൽ അസംബന്ധമായ കത്തുകൾ ശേഖരിക്കപ്പെടുന്ന സ്ഥലത്ത് എത്തപ്പെട്ടോ എന്ന് പരിശോധിക്കുക.
+      send_paranoid_instructions: ഞങ്ങളുടെ വിവരശേഖരണത്തിൽ നിങ്ങളുടെ ഇലക്ട്രോണിക് കത്തിന്റെ വിലാസം ഉൾപെട്ടിട്ടുണ്ടെങ്കിൽ ഏതാനും നിമിഷങ്ങൾക്കുള്ളിൽ നിങ്ങൾക്ക് അത് എങ്ങനെ സ്ഥിരീകരിക്കാം എന്നുള്ള നിർദ്ദേശങ്ങൾ അതെ വിലാസത്തിൽ ലഭിക്കുന്നതാണ്. കത്ത് ലഭിച്ചില്ലെങ്കിൽ അസംബന്ധമായ കത്തുകൾ ശേഖരിക്കപ്പെടുന്ന സ്ഥലത്ത് എത്തപ്പെട്ടോ എന്ന് പരിശോധിക്കുക.
+    failure:
+      already_authenticated: നിങ്ങൾ മുൻപേതന്നെ പ്രവേശിച്ചിരുന്നു.
+      inactive: നിങ്ങളുടെ അംഗത്വം ഇതുവരെ സജീവമാക്കപ്പെട്ടിട്ടില്ല.
+      invalid: "%{authentication_keys} അല്ലെങ്കിൽ സൂത്രവാക്യം പ്രാബല്യത്തിലില്ല."
+      last_attempt: നിങ്ങളുടെ അംഗത്വം ബന്ധിക്കപ്പെടുന്നതിന് മുൻപ് ഒരു അവസരം കൂടി ബാക്കിയുണ്ട്.
+      locked: നിങ്ങളുടെ അംഗത്വം ബന്ധിക്കപ്പെട്ടിരിക്കുന്നു.
+      not_found_in_database: "%{authentication_keys} അല്ലെങ്കിൽ സൂത്രവാക്യം പ്രാബല്യത്തിലില്ല."
+      pending: നിങ്ങളുടെ അംഗത്വം ഇപ്പോഴും അവലോകനയിലാണ്.
+      timeout: നിങ്ങളുടെ വിഹരണസമയം കാലഹരണപ്പെട്ടിരിക്കുന്നു. തുടരാൻ ദയവായി വീണ്ടും പ്രവേശിക്കുക.
+      unauthenticated: തുടരുന്നതിന് മുൻപ് നിങ്ങൾ അംഗത്വത്തോടെ പ്രവേശിക്കുകയോ അംഗത്വം എടുക്കുകയോ ചെയ്യേണ്ടതാണ്.
+      unconfirmed: തുടരുന്നതിന് മുൻപ് നിങ്ങൾ നിങ്ങളുടെ ഇലക്ട്രോണിക് കത്തിന്റെ മേൽവിലാസം സ്ഥിരീകരിക്കേണ്ടതാണ്.
+    mailer:
+      confirmation_instructions:
+        action: ഇലക്ട്രോണിക് കത്തിന്റെ മേൽവിലാസം നേരാണെന്നു തെളിയിക്കുക
+        action_with_app: സ്ഥിരീകരിക്കുകയും, %{app} ലേക്ക് തിരികെ പോകുകയും ചെയ്യുക
+        title: ഇമെയിൽ മേൽവിലാസം നേരാണെന്നു തെളിയിക്കുക
+      email_changed:
+        explanation: 'നിങ്ങളുടെ അംഗത്വത്തിനായുള്ള ഇമെയിൽ വിലാസം ഇതിലേക്ക് മാറ്റുകയാണ്:'
+        subject: 'മാസ്റ്റോഡോൺ: ഇമെയിൽ മാറ്റം വരുത്തി'
+        title: പുതിയ ഇ-മെയിൽ വിലാസം
+      password_change:
+        explanation: താങ്കളുടെ അംഗത്വത്തിന്റെ പാസ്സ് വേഡ് മാറ്റം വരുത്തി.
+        title: പാസ് വേഡ് മാറ്റി
+      reset_password_instructions:
+        action: പാസ്‌വേഡ് മാറ്റുക
diff --git a/config/locales/devise.mr.yml b/config/locales/devise.mr.yml
new file mode 100644
index 0000000000000000000000000000000000000000..fe1639c6a39e69e289af5356c4ec41e9f12b802b
--- /dev/null
+++ b/config/locales/devise.mr.yml
@@ -0,0 +1 @@
+mr:
diff --git a/config/locales/devise.nn.yml b/config/locales/devise.nn.yml
index 777f4e600f65daa6a550f2cf0f04551a49cf4fcd..d578b8dc5d64e26f3bd1b91c1ad7605a360d4e12 100644
--- a/config/locales/devise.nn.yml
+++ b/config/locales/devise.nn.yml
@@ -1 +1,94 @@
+---
 nn:
+  devise:
+    confirmations:
+      confirmed: E-posten din er stadefesta.
+      send_instructions: Om nokre få minutt får du ein e-post som fortel deg korleis du skal stadfesta e-postadressa di. Sjekk søppelpostmappa di om du ikkje fekk e-posten.
+      send_paranoid_instructions: Om vi har e-postadressa di i databasen vår, får du ein e-post som fortel deg korleis du skal stadfesta e-postadressa om nokre få minutt. Ver venleg og sjekk søppelpostmappa di om du ikkje fekk denne e-posten.
+    failure:
+      already_authenticated: Du er allereie logga inn.
+      inactive: Kontoen din er ikkje aktiv enno.
+      invalid: Ugyldig %{authentication_keys} eller passord.
+      last_attempt: Du har eitt forsøk igjen før kontoen din vert låst.
+      locked: Kontoen din er låst.
+      not_found_in_database: Ugyldig %{authentication_keys} eller passord.
+      pending: Kontoen din er fortsatt under gjennomgang.
+      timeout: Økten din løp ut på tid. Logg inn på nytt for å fortsette.
+      unauthenticated: Du må logge inn eller registrere deg før du kan fortsette.
+      unconfirmed: Du må stadfesta e-postadressa di før du kan gå vidare.
+    mailer:
+      confirmation_instructions:
+        action: Stadfest e-postadresse
+        action_with_app: Stadfest og gå tilbake til %{app}
+        explanation: Du har laget en konto på %{host} med denne e-postadressen. Du er ett klikk unna å aktivere den. Hvis dette ikke var deg, vennligst se bort fra denne e-posten.
+        extra_html: Vennligst også sjekk ut <a href="%{terms_path}">instansens regler </a> og <a href="%{policy_path}">våre bruksvilkår</a>.
+        subject: 'Mastodon: Instruksjoner for å bekrefte e-postadresse %{instance}'
+        title: Stadfest e-postadresse
+      email_changed:
+        explanation: 'E-postadressa til kontoen din vert endra til:'
+        extra: Hvis du ikke endret din e-postadresse, er det sannsynlig at noen har fått tilgang til din konto. Vennligst endre ditt passord umiddelbart eller kontakt instansens administrator dersom du er utestengt fra kontoen din.
+        subject: 'Mastodon: E-postadressa er endra'
+        title: Ny e-postadresse
+      password_change:
+        explanation: Passordet til kontoen din er endra.
+        extra: Om du ikkje har endra passordet er det sannsynleg at nokon har fått tilgang til kontoen din. Ver venleg og skift passordet ditt med det same eller tak kontakt med tenaradministratoren om du er sperra ute av kontoen din.
+        subject: 'Mastodon: Passord endra'
+        title: Passord endra
+      reconfirmation_instructions:
+        explanation: Stadfest den nye adressa for å byta e-postadressa di.
+        extra: Se bort fra denne e-posten dersom du ikke gjorde denne endringen. E-postadressen for Mastadon-kontoen blir ikke endret før du trykker på lenken over.
+        subject: 'Mastodon: Bekreft e-postadresse for %{instance}'
+        title: Stadfest e-postadresse
+      reset_password_instructions:
+        action: Endr passord
+        explanation: Du har bedt om eit nytt passord til kontoen din.
+        extra: Om du ikkje bad om dette, ignorer denne e-posten. Passordet ditt vert ikkje endra før du går inn på lenkja ovanfor og lagar eit nytt.
+        subject: 'Mastodon: Instuksjonar for å endra passord'
+        title: Attstilling av passord
+      two_factor_disabled:
+        subject: 'Mastodon: To-faktor autentisering deaktivert'
+        title: 2FA deaktivert
+      two_factor_enabled:
+        explanation: To-faktor autentisering er aktivert for kontoen din. Et symbol som er generert av den sammenkoblede TOTP-appen vil være påkrevd for innlogging.
+        subject: 'Mastodon: To-faktor autentisering aktivert'
+        title: 2FA aktivert
+      two_factor_recovery_codes_changed:
+        explanation: De forrige gjenopprettingskodene er ugyldig og nye generert.
+      unlock_instructions:
+        subject: 'Mastodon: Instruksjoner for å gjenåpne konto'
+    omniauth_callbacks:
+      failure: Kunne ikke autentisere deg fra %{kind} fordi "%{reason}".
+      success: Vellykket autentisering fra %{kind}.
+    passwords:
+      no_token: Du har ingen tilgang til denne siden hvis ikke klikket på en e-post om nullstilling av passord. Hvis du kommer fra en sådan bør du dobbelsjekke at du limte inn hele URLen.
+      send_instructions: Du vil motta en e-post med instruksjoner om nullstilling av passord om noen få minutter.
+      send_paranoid_instructions: Om vi har e-postadressa di i databasen vår, får du ei lenkje til å endra passordet om nokre få minutt. Ver venleg og sjekk søppelpostmappa om du ikkje fekk denne e-posten.
+      updated: Passordet ditt er endra. No er du logga inn.
+      updated_not_active: Passordet ditt er endra.
+    registrations:
+      destroyed: Ha det! Kontoen din er sletta. Vi vonar å sjå deg igjen snart.
+      signed_up: Velkomen! No er du registrert.
+      signed_up_but_inactive: Du har registrert deg inn, men vi kunne ikkje logga deg inn fordi kontoen din er ikkje aktivert enno.
+      signed_up_but_locked: Du har registrert deg inn, men vi kunne ikkje logga deg inn fordi kontoen din er låst.
+      signed_up_but_pending: Ei melding med ei stadfestingslenkje er vorten send til e-postadressa di. Når du klikkar på lenkja skal vi sjå gjennom søknaden din. Du får ei melding om han vert godkjend.
+      signed_up_but_unconfirmed: En e-post med en bekreftelseslenke har blitt sendt til din innboks. Klikk på lenken i e-posten for å aktivere kontoen din.
+      update_needs_confirmation: Du har oppdatert kontoen din, men vi må bekrefte din nye e-postadresse. Sjekk e-posten din og følg bekreftelseslenken for å bekrefte din nye e-postadresse.
+      updated: Kontoen din ble oppdatert.
+    sessions:
+      already_signed_out: Logga ut.
+      signed_in: Logga inn.
+      signed_out: Logga ut.
+    unlocks:
+      send_instructions: Du vil motta en e-post med instruksjoner for å åpne kontoen din om noen få minutter.
+      send_paranoid_instructions: Hvis kontoen din eksisterer vil du motta en e-post med instruksjoner for å åpne kontoen din om noen få minutter.
+      unlocked: Kontoen din ble åpnet uten problemer. Logg på for å fortsette.
+  errors:
+    messages:
+      already_confirmed: har allerede blitt bekreftet, prøv å logge på istedet
+      confirmation_period_expired: må bekreftes innen %{period}. Spør om en ny e-post for bekreftelse istedet
+      expired: er utgått, ver venleg å beda om ein ny ein
+      not_found: ikkje funne
+      not_locked: var ikkje låst
+      not_saved:
+        one: '1 feil hindret denne %{resource} i å bli lagret:'
+        other: "%{count} feil hindret denne %{resource} i å bli lagret:"
diff --git a/config/locales/devise.no.yml b/config/locales/devise.no.yml
index 222a91aa30ee070d1b3042e67efb83c590d44fe3..de651f6ca4efbc073ba0e28001bebf9840203144 100644
--- a/config/locales/devise.no.yml
+++ b/config/locales/devise.no.yml
@@ -12,13 +12,16 @@
       last_attempt: Du har ett forsøk igjen før kontoen din låses.
       locked: Din konto er låst.
       not_found_in_database: Ugyldig %{authentication_keys} eller passord.
+      pending: Kontoen din er fortsatt under gjennomgang.
       timeout: Økten din løp ut på tid. Logg inn på nytt for å fortsette.
       unauthenticated: Du må logge inn eller registrere deg før du kan fortsette.
       unconfirmed: Du må bekrefte e-postadressen din før du kan fortsette.
     mailer:
       confirmation_instructions:
         action: Bekreft e-postadresse
+        action_with_app: Bekreft og gå tilbake til %{app}
         explanation: Du har laget en konto på %{host} med denne e-postadressen. Du er ett klikk unna å aktivere den. Hvis dette ikke var deg, vennligst se bort fra denne e-posten.
+        explanation_when_pending: Du søkte om en invitasjon til %{host} med denne E-postadressen. Når du har bekreftet E-postadressen din, vil vi gå gjennom søknaden din. Du kan logge på for å endre dine detaljer eller slette kontoen din, men du har ikke tilgang til de fleste funksjoner før kontoen din er akseptert. Dersom søknaden din blir avslått, vil dataene dine bli fjernet, så ingen ytterligere handlinger fra deg vil være nødvendige. Dersom dette ikke var deg, vennligst ignorer denne E-posten.
         extra_html: Vennligst også sjekk ut <a href="%{terms_path}">instansens regler </a> og <a href="%{policy_path}">våre bruksvilkår</a>.
         subject: 'Mastodon: Instruksjoner for å bekrefte e-postadresse %{instance}'
         title: Bekreft e-postadresse
@@ -43,6 +46,18 @@
         extra: Se bort fra denne e-posten dersom du ikke ba om dette. Ditt passord blir ikke endret før du trykker på lenken over og lager et nytt.
         subject: 'Mastodon: Hvordan nullstille passord'
         title: Nullstill passord
+      two_factor_disabled:
+        explanation: 2-trinnsinnlogging for kontoen din har blitt skrudd av. PÃ¥logging er mulig gjennom kun E-postadresse og passord.
+        subject: 'Mastodon: To-faktor autentisering deaktivert'
+        title: 2FA deaktivert
+      two_factor_enabled:
+        explanation: To-faktor autentisering er aktivert for kontoen din. Et symbol som er generert av den sammenkoblede TOTP-appen vil være påkrevd for innlogging.
+        subject: 'Mastodon: To-faktor autentisering aktivert'
+        title: 2FA aktivert
+      two_factor_recovery_codes_changed:
+        explanation: De forrige gjenopprettingskodene er ugyldig og nye generert.
+        subject: 'Mastodon: 2-trinnsgjenopprettingskoder har blitt generert på nytt'
+        title: 2FA-gjenopprettingskodene ble endret
       unlock_instructions:
         subject: 'Mastodon: Instruksjoner for å gjenåpne konto'
     omniauth_callbacks:
@@ -59,6 +74,7 @@
       signed_up: Velkommen! Registreringen var vellykket.
       signed_up_but_inactive: Registreringen var vellykket. Vi kunne dessverre ikke logge deg inn fordi kontoen din ennå ikke har blitt aktivert.
       signed_up_but_locked: Registreringen var vellykket. Vi kunne dessverre ikke logge deg inn fordi kontoen din har blitt låst.
+      signed_up_but_pending: En melding med en bekreftelseslink er sendt til din e-postadresse. Etter at du har klikket på koblingen, vil vi gjennomgå søknaden din. Du vil bli varslet hvis den er godkjent.
       signed_up_but_unconfirmed: En e-post med en bekreftelseslenke har blitt sendt til din innboks. Klikk på lenken i e-posten for å aktivere kontoen din.
       update_needs_confirmation: Du har oppdatert kontoen din, men vi må bekrefte din nye e-postadresse. Sjekk e-posten din og følg bekreftelseslenken for å bekrefte din nye e-postadresse.
       updated: Kontoen din ble oppdatert.
diff --git a/config/locales/devise.pt-BR.yml b/config/locales/devise.pt-BR.yml
index 0b6d361876ac8d1e9135f9bdc0c1478593a5c7cf..92ac2948e88c9dfa6815b125d3b50e9c84fa23b3 100644
--- a/config/locales/devise.pt-BR.yml
+++ b/config/locales/devise.pt-BR.yml
@@ -46,6 +46,18 @@ pt-BR:
         extra: Se você não fez esse pedido, por favor ignore esse e-mail. Sua senha não irá mudar até que você acesse o link acima e crie uma nova.
         subject: 'Mastodon: Instruções para mudança de senha'
         title: Redefinir a senha
+      two_factor_disabled:
+        explanation: A autenticação de dois fatores para sua conta foi desativada. Agora é possível acessar apenas com seu endereço de e-mail e senha.
+        subject: 'Mastodon: Autenticação de dois fatores desativada'
+        title: 2FA desativada
+      two_factor_enabled:
+        explanation: A autenticação de dois fatores foi habilitada para sua conta. Um token gerado pelo app TOTP pareado será necessário para o login.
+        subject: 'Mastodon: Autenticação de dois fatores desativada'
+        title: 2FA ativada
+      two_factor_recovery_codes_changed:
+        explanation: Os códigos de recuperação anteriores foram invalidados e novos códigos foram gerados.
+        subject: 'Mastodon: códigos de recuperação de dois fatores gerados novamente'
+        title: Códigos de recuperação de 2FA alterados
       unlock_instructions:
         subject: 'Mastodon: Instruções de desbloqueio'
     omniauth_callbacks:
diff --git a/config/locales/devise.pt-PT.yml b/config/locales/devise.pt-PT.yml
index 7d3f8fc5523818cd8f6768883ebcc883b33d09a9..9689b01f5fe784b26184cf65485c9b88adc12201 100644
--- a/config/locales/devise.pt-PT.yml
+++ b/config/locales/devise.pt-PT.yml
@@ -12,6 +12,7 @@ pt-PT:
       last_attempt: Tens mais uma tentativa antes de a tua conta ficar bloqueada.
       locked: A tua conta está bloqueada.
       not_found_in_database: "%{authentication_keys} ou palavra-passe inválida."
+      pending: A sua conta está ainda a aguardar revisão.
       timeout: A tua sessão expirou. Por favor, entra de novo para continuares.
       unauthenticated: Precisas de entrar na tua conta ou de te registares antes de continuar.
       unconfirmed: Tens de confirmar o teu endereço de email antes de continuar.
@@ -20,6 +21,7 @@ pt-PT:
         action: Verificar o endereço de e-mail
         action_with_app: Confirmar e regressar a %{app}
         explanation: Criaste uma conta em %{host} com este endereço de e-mail. Estás a um clique de activá-la. Se não foste tu que fizeste este registo, por favor ignora esta mensagem.
+        explanation_when_pending: Você solicitou um convite para %{host} com este endereço de e-mail. Logo que confirme o seu endereço de e-mail, iremos rever a sua inscrição. Pode iniciar sessão para alterar os seus dados ou eliminar a sua conta, mas não poderá aceder à maioria das funções até que a sua conta seja aprovada. Se a sua inscrição for rejeitada, os seus dados serão removidos, pelo que não será necessária qualquer acção adicional da sua parte. Se não solicitou este convite, por favor, ignore este e-mail.
         extra_html: Por favor lê <a href="%{terms_path}">as regras da instância</a> e os <a href="%{policy_path}"> nossos termos de serviço</a>.
         subject: 'Mastodon: Instruções de confirmação %{instance}'
         title: Verificar o endereço de e-mail
@@ -44,6 +46,18 @@ pt-PT:
         extra: Se não fizeste este pedido, por favor ignora este e-mail. A tua palavra-passe não irá mudar se não acederes ao link acima e criares uma nova.
         subject: 'Mastodon: Instruções para alterar a palavra-passe'
         title: Solicitar nova palavra-passe
+      two_factor_disabled:
+        explanation: A autenticação de dois fatores para sua conta foi desativada. É agora possível aceder apenas com seu endereço de e-mail e senha.
+        subject: 'Mastodon: Autenticação de dois fatores desativada'
+        title: 2FA desativado
+      two_factor_enabled:
+        explanation: A autenticação de dois fatores foi ativada para sua conta. Um token, gerado pela aplicação TOTP emparelhada, será necessário para aceder.
+        subject: 'Mastodon: Autenticação de dois fatores ativada'
+        title: 2FA ativado
+      two_factor_recovery_codes_changed:
+        explanation: Os códigos de recuperação anteriores foram invalidados e novos foram gerados.
+        subject: 'Mastodonte: Gerados novos códigos de recuperação de dois fatores'
+        title: Códigos de recuperação 2FA alterados
       unlock_instructions:
         subject: 'Mastodon: Instruções para desbloquear a tua conta'
     omniauth_callbacks:
@@ -60,6 +74,7 @@ pt-PT:
       signed_up: Bem-vindo! A tua conta foi registada com sucesso.
       signed_up_but_inactive: A tua conta foi registada. No entanto ainda não está activa.
       signed_up_but_locked: A tua conta foi registada. No entanto está bloqueada.
+      signed_up_but_pending: Uma mensagem com um link de confirmação foi enviada para o seu endereço de e-mail. Depois de clicar no link, iremos rever a sua inscrição. Será notificado se a sua conta é aprovada.
       signed_up_but_unconfirmed: Uma mensagem com um link de confirmação foi enviada para o teu email. Por favor segue esse link para activar a tua conta.
       update_needs_confirmation: Alteraste o teu endereço de email ou palavra-passe, mas é necessário confirmar essa alteração. Por favor vai ao teu email e segue link que te enviámos.
       updated: A tua conta foi actualizada com sucesso.
diff --git a/config/locales/devise.ru.yml b/config/locales/devise.ru.yml
index 65441f24b717b6b1f1e2196384414b08b518cf65..5d7e334229273449673a7099e0ca887f80f072f2 100644
--- a/config/locales/devise.ru.yml
+++ b/config/locales/devise.ru.yml
@@ -7,10 +7,10 @@ ru:
       send_paranoid_instructions: Если Ваш адрес e-mail есть в нашей базе данных, вы получите e-mail с инструкцией по подтверждению вашего адреса в течение нескольких минут.
     failure:
       already_authenticated: Вы уже авторизованы.
-      inactive: Ваш аккаунт еще не активирован.
+      inactive: Ваша учётная запись ещё не активирована.
       invalid: Неверно введены %{authentication_keys} или пароль.
       last_attempt: У Вас есть последняя попытка, после чего вход будет заблокирован.
-      locked: Ваш аккаунт заблокирован.
+      locked: Ваша учётная запись заблокирована.
       not_found_in_database: Неверно введены %{authentication_keys} или пароль.
       pending: Ваша заявка на вступление всё ещё рассматривается.
       timeout: Ваша сессия истекла. Пожалуйста, войдите снова, чтобы продолжить.
@@ -27,12 +27,12 @@ ru:
         title: Подтвердите e-mail адрес
       email_changed:
         explanation: 'E-mail адрес вашей учётной записи будет изменён на:'
-        extra: Если Вы не меняли адрес e-mail, возможно кто-то получил доступ к вашей учётной записи. Пожалуйста, срочно смените пароль или свяжитесь с администратором узла, если у вас нет доступа к учётной записи.
-        subject: 'Mastodon: Адрес e-mail изменён'
+        extra: Если вы не меняли e-mail адрес, возможно кто-то получил доступ к вашей учётной записи. Пожалуйста, немедленно смените пароль или свяжитесь с администратором узла, если вы уже потеряли доступ к ней.
+        subject: 'Mastodon: изменён e-mail адрес'
         title: Новый адрес e-mail
       password_change:
         explanation: Пароль Вашей учётной записи был изменён.
-        extra: Если Вы не меняли пароль, возможно кто-то получил доступ к вашей учётной записи. Пожалуйста, срочно смените пароль или свяжитесь с администратором узла, если у вас нет доступа к учётной записи.
+        extra: Если вы не меняли пароль, возможно кто-то получил доступ к вашей учётной записи. Пожалуйста, немедленно смените пароль или свяжитесь с администратором узла, если вы уже потеряли доступ к ней.
         subject: 'Mastodon: Пароль изменен'
         title: Пароль изменён
       reconfirmation_instructions:
@@ -46,11 +46,23 @@ ru:
         extra: Если это сделали не вы, пожалуйста, игнорируйте письмо. Ваш пароль не будет изменён, пока вы не перейдёте по ссылке выше и не создадите новый пароль.
         subject: 'Mastodon: инструкция по смене пароля'
         title: Сброс пароля
+      two_factor_disabled:
+        explanation: Для вашей учётной записи была отключена двухфакторная авторизация. Выполнить вход теперь можно используя лишь e-mail и пароль.
+        subject: 'Mastodon: двухфакторная авторизация отключена'
+        title: Двухфакторная авторизация отключена
+      two_factor_enabled:
+        explanation: Для вашей учётной записи была настроена двухфакторная авторизация. Отныне для входа потребуется также временный код из приложения-аутентификатора.
+        subject: 'Mastodon: настроена двухфакторная авторизация'
+        title: Двухфакторная авторизация включена
+      two_factor_recovery_codes_changed:
+        explanation: Предыдущие резервные коды были аннулированы и созданы новые.
+        subject: 'Mastodon: резервные коды двуфакторной авторизации обновлены'
+        title: Резервные коды двухфакторной авторизации изменены
       unlock_instructions:
         subject: 'Mastodon: Инструкция по разблокировке'
     omniauth_callbacks:
       failure: Не получилось аутентифицировать вас с помощью %{kind} по следующей причине - "%{reason}".
-      success: Аутентификация с помощью аккаунта %{kind} прошла успешно.
+      success: Аутентификация с помощью учётной записи %{kind} прошла успешно.
     passwords:
       no_token: Вы можете получить доступ к этой странице, только перейдя по ссылке в e-mail для сброса пароля. Если вы действительно перешли по такой ссылке, пожалуйста, удостоверьтесь, что ссылка была введена полностью и без изменений.
       send_instructions: Вы получите e-mail с инструкцией по сбросу пароля в течение нескольких минут.
@@ -58,22 +70,22 @@ ru:
       updated: Ваш пароль был успешно изменен. Вход выполнен.
       updated_not_active: Ваш пароль был успешно изменен.
     registrations:
-      destroyed: До свидания! Ваш аккаунт был успешно удален. Мы надеемся скоро увидеть вас снова.
+      destroyed: До свидания! Ваша учётная запись была успешно удалена. Мы надеемся скоро увидеть вас снова.
       signed_up: Добро пожаловать! Вы успешно зарегистрировались.
-      signed_up_but_inactive: Вы успешно зарегистрировались. Тем не менее, мы не можем авторизовать вас, поскольку ваш аккаунт еще не активирован.
-      signed_up_but_locked: Вы успешно зарегистрировались. Тем не менее, мы не можем авторизовать вас, поскольку ваш аккаунт заблокирован.
+      signed_up_but_inactive: Вы успешно зарегистрировались. Тем не менее, мы не можем авторизовать вас, поскольку ваша учётная запись еще не активирована.
+      signed_up_but_locked: Вы успешно зарегистрировались. Тем не менее, мы не можем авторизовать вас, поскольку ваша учётная запись заблокирована.
       signed_up_but_pending: На ваш e-mail адрес было отправлено письмо с ссылкой для подтверждения. После перехода по ней, мы начнём рассматривать вашу заявку. В случае подтверждения, мы вас оповестим.
-      signed_up_but_unconfirmed: Сообщение со ссылкой для подтверждения было выслано на ваш адрес e-mail. Пожалуйста, пройдите по ссылке для активации вашего аккаунта.
-      update_needs_confirmation: Вы успешно обновили данные учётной записи, но нам нужно подтвердить ваш новый адрес e-mail. Пожалуйста, проверьте почту и перейдите по ссылке из письма для подтверждения вашего нового адреса.
-      updated: Ваш аккаунт был успешно обновлен.
+      signed_up_but_unconfirmed: Сообщение со ссылкой для подтверждения было выслано на ваш адрес e-mail. Пожалуйста, пройдите по ссылке для активации вашей учётной записи.
+      update_needs_confirmation: Данные учётной записи обновлены, но нам необходимо подтвердить ваш новый e-mail адрес. Проверьте почту и перейдите по ссылке из письма. Если оно не приходит, проверьте папку «спам».
+      updated: Ваша учётная запись успешно обновлена.
     sessions:
       already_signed_out: Выход прошел успешно.
       signed_in: Вход прошел успешно.
       signed_out: Выход прошел успешно.
     unlocks:
-      send_instructions: Вы получите e-mail с инструкцией по разблокировке вашего аккаунта в течение нескольких минут.
-      send_paranoid_instructions: Если Ваш аккаунт существует, вы получите e-mail с инструкцией по его разблокировке в течение нескольких минут.
-      unlocked: Ваш аккаунт был успешно разблокирован. пожалуйста, войдите для продолжения.
+      send_instructions: Вы получите e-mail с инструкцией по разблокировке вашей учётной записи в течение нескольких минут.
+      send_paranoid_instructions: Если ваша учётная запись существует, вы получите e-mail с инструкцией по её разблокировке в течение нескольких минут.
+      unlocked: Ваша учётная запись был успешно разблокирована. Пожалуйста, войдите для продолжения.
   errors:
     messages:
       already_confirmed: уже подтвержден, пожалуйста, попробуйте войти
diff --git a/config/locales/devise.sk.yml b/config/locales/devise.sk.yml
index 759d4874b7549b3294617866c871c837f6acd619..ba2a64ed054de6931edfbe655954d92746e5123a 100644
--- a/config/locales/devise.sk.yml
+++ b/config/locales/devise.sk.yml
@@ -45,6 +45,18 @@ sk:
         extra: Ak si túto akciu nevyžiadal/a, prosím ignoruj tento email. Tvoje heslo nebude zmenené pokiaľ nepostúpiš na adresu uvedenú vyššie a vytvoríš si nové.
         subject: 'Mastodon: Pokyny pre obnovu hesla'
         title: Nastav nové heslo
+      two_factor_disabled:
+        explanation: Dvojfázové overovanie tvojho účtu bolo vypnuté. Teraz sa môžeš prihlásiť len pomocou emailu a hesla.
+        subject: 'Mastodon: Dvojfázové overovanie vypnuté'
+        title: 2FA vypnuté
+      two_factor_enabled:
+        explanation: Dvojfázové overovanie bolo zapnuté pre tvoj účet. Pre prihlásenie budeš potrebovať token vygenerovaný pre TOTP aplikáciu, ktorá je spárovaná.
+        subject: 'Mastodon: Dvojfázové overovanie zapnuté'
+        title: 2FA zapnuté
+      two_factor_recovery_codes_changed:
+        explanation: Predošlé obnovovacie kódy boli urobené neplatnými a boli vygenerované nové.
+        subject: 'Mastodon: dvojfázové zálohové kódy boli znovu vygenerované'
+        title: Obnovovacie kódy 2FA zmenené
       unlock_instructions:
         subject: 'Mastodon: Pokyny na odomknutie účtu'
     omniauth_callbacks:
diff --git a/config/locales/devise.sv.yml b/config/locales/devise.sv.yml
index 456e38581deb2451519885148fe1a080844a8fae..9dfdde8e5610388aef3005376dccf2559fa8103e 100644
--- a/config/locales/devise.sv.yml
+++ b/config/locales/devise.sv.yml
@@ -12,12 +12,14 @@ sv:
       last_attempt: Du har ytterligare ett försök innan ditt konto blir låst.
       locked: Ditt konto är låst.
       not_found_in_database: Ogiltigt %{authentication_keys} eller lösenord.
+      pending: Ditt konto granskas fortfarande.
       timeout: Din session löpte ut. Vänligen logga in igen för att fortsätta.
       unauthenticated: Du måste logga in eller registrera dig innan du fortsätter.
       unconfirmed: Du måste bekräfta din e-postadress innan du fortsätter.
     mailer:
       confirmation_instructions:
         action: Verifiera e-postadress
+        action_with_app: Bekräfta och återgå till %{app}
         explanation: Du har skapat ett konto på %{host} med den här e-postadressen. Du är ett klick bort från att aktivera det. Om det inte var du ignorerar det här e-postmeddelandet.
         extra_html: Kolla gärna också <a href="%{terms_path}">instansens regler</a> och <a href="%{policy_path}">våra användarvillkor</a>.
         subject: 'Mastodon: Bekräftelsesinstruktioner för %{instance}'
@@ -36,13 +38,25 @@ sv:
         explanation: Bekräfta den nya adressen för att ändra din e-postadress.
         extra: Om den här ändringen inte initierades av dig kan du ignorerar det här e-postmeddelandet. E-postadressen för Mastodon-kontot ändras inte förrän du kommer åt länken ovan.
         subject: 'Mastodon: Bekräfta e-post för %{instance}'
-        title: Verifiera e-postadressen
+        title: Verifiera e-postadress
       reset_password_instructions:
         action: Ändra lösenord
         explanation: Du begärde ett nytt lösenord för ditt konto.
         extra: Om du inte begärt detta kan du ignorerar det här e-postmeddelandet. Ditt lösenord ändras inte förrän du öppnar länken ovan och skapar ett nytt.
         subject: 'Mastodon: Instruktioner för återställning av lösenord'
         title: Lösenordsåterställning
+      two_factor_disabled:
+        explanation: Tvåfaktorsautentisering för ditt konto har inaktiverats. Det är nu möjligt att logga in med enbart e-postadress och lösenord.
+        subject: 'Mastodon: Tvåfaktorsautentisering inaktiverad'
+        title: 2FA inaktiverad
+      two_factor_enabled:
+        explanation: Tvåfaktorsautentisering har aktiverats för ditt konto. En token som genereras av en kopplad TOTP-app kommer att krävas vid inloggning.
+        subject: 'Mastodon: Tvåfaktorsautentisering aktiverad'
+        title: 2FA aktiverad
+      two_factor_recovery_codes_changed:
+        explanation: De tidigare återställningskoderna har ogiltigförklarats och nya har genererats.
+        subject: Mastodon Tvåfaktors-återställningskoder genererades på nytt
+        title: 2FA-återställningskoder ändrades
       unlock_instructions:
         subject: 'Mastodon: LÃ¥s upp instruktioner'
     omniauth_callbacks:
@@ -59,7 +73,7 @@ sv:
       signed_up: Välkommen! Du har nu registrerat dig.
       signed_up_but_inactive: Du har nu registrerat dig. Vi kunde dock inte logga in dig eftersom ditt konto ännu inte är aktiverat.
       signed_up_but_locked: Du har nu registrerat dig. Vi kunde dock inte logga in eftersom ditt konto är låst.
-      signed_up_but_unconfirmed: Ett meddelande med en bekräftelse länk har skickats till din e-postadress. Vänligen följ länken för att aktivera ditt konto. Kontrollera din spammapp om du inte fick det här e-postmeddelandet.
+      signed_up_but_unconfirmed: Ett meddelande med en bekräftelselänk har skickats till din e-postadress. Vänligen följ länken för att aktivera ditt konto. Kontrollera din skräppostmapp om du inte fick det här e-postmeddelandet.
       update_needs_confirmation: Du har uppdaterat ditt konto med framgång, men vi måste verifiera din nya e-postadress. Vänligen kolla din email och följ bekräfta länken för att bekräfta din nya e-postadress. Kontrollera din spammapp om du inte fick det här e-postmeddelandet.
       updated: Ditt konto har uppdaterats utan problem.
     sessions:
diff --git a/config/locales/devise.ta.yml b/config/locales/devise.ta.yml
index 4320953ce2ab23ded9cc319b3002dfc1bc13903a..e653f0581348d8fe3972df3f7ada585573827bcb 100644
--- a/config/locales/devise.ta.yml
+++ b/config/locales/devise.ta.yml
@@ -1 +1,50 @@
+---
 ta:
+  devise:
+    confirmations:
+      confirmed: தங்கள் மின்னஞ்சல் முகவரி வெற்றிகரமாக உறுதி செய்யப்பட்டது.
+      send_instructions: இன்னும் சற்று நேரத்தில் உங்கள் இணைய முகவரியை உறுதி செய்வது எப்படி என்று விளக்கும் இணைய செய்தி ஒன்று வந்தடையும். வரவில்லை எனில், தயவு செய்து உங்கள் ஸ்பாம் பெட்டியைப் பார்க்கவும்.
+      send_paranoid_instructions: உங்கள் இணைய முகவரி எங்கள் தகவல்ப் பெட்டகத்தில் இருந்தால், இன்னும் சற்று நேரத்தில் உங்கள் இணைய முகவரியை உறுதி செய்வது எப்படி என்று விளக்கும் இணைய செய்தி ஒன்று வந்தடையும். வரவில்லை எனில், தயவு செய்து உங்கள் ஸ்பாம் பெட்டியைப் பார்க்கவும்.
+    failure:
+      already_authenticated: நீங்கள் ஏற்கனவே நுழைந்து விட்டீர்கள்.
+      inactive: உங்கள் கணக்கும் இன்னும் செயல்முறைக்கு வரவில்லை.
+      invalid: தவறான %{authentication_keys} அல்லது கடவுச்சொல்.
+      last_attempt: உங்கள் கணக்கு பூட்டப்படும் முன் உங்களுக்கு ஓரே ஒரு வாய்ப்பு உள்ளது.
+      locked: உங்கள் கணக்கு பூட்டப்பட்டது.
+      not_found_in_database: தவறான %{authentication_keys} அல்லது கடவுச்சொல்.
+      pending: உங்கள் கணக்கு இன்னும் பரிசீலிக்கப்படுகிறது.
+      timeout: உங்கள் அமர்வு காலாவதியாகிவிட்டது. தயவு செய்து மீண்டும் உள்நுழையவும்.
+      unauthenticated: மேலும் செல்வதற்கு முன் நீங்கள் உள்நுழையவோ அல்லது கணக்கை உருவாக்கவோ வேண்டும்.
+      unconfirmed: முன்னேறுவதற்கு முன்னர் நீங்கள் உங்கள் இணைய முகவரியை உறுதி செய்ய வேண்டும்.
+    mailer:
+      confirmation_instructions:
+        action: மின்னஞ்சல் முகவரியை உறுதிபடுத்தவும்
+        action_with_app: உறுதிசெய்துவிட்டு %{app}-க்குத் திரும்பவும்
+        explanation: இந்த இணைய முகவரி கொண்டு %{host}-இல் நீங்கள் ஒரு கணக்கை உருவாக்கியுள்ளீர்கள். அதை செயல்படுத்துவதில் இருந்து ஒரு சொடக்கு தூரத்தில் உள்ளீர்கள். நீங்கள் அதை செய்யவில்லை என்றால், இந்த செய்தியை கண்டுகொள்ள வேண்டாம்.
+        title: மின்னஞ்சல் முகவரியை உறுதிபடுத்தவும்
+      email_changed:
+        subject: 'மாஸ்டோடான்: மின்னஞ்சல் மாற்றப்பட்டது'
+        title: புதிய மின்னஞ்சல் முகவரி
+      password_change:
+        explanation: உங்கள் கணக்கிற்கான கடவுச்சொல் மாற்றப்பட்டது.
+        subject: 'மாஸ்டோடான்: கடவுச்சொல் மாற்றப்பட்டது'
+        title: கடவுச்சொல் மாற்றப்பட்டது
+      reconfirmation_instructions:
+        explanation: உங்கள் மின்னஞ்சல் முகவரியை மாற்ற மீண்டும் ஒரு முறை உறுதி செய்யவும்.
+        subject: 'மாஸ்டோடான்: %{instance}-கான மின்னஞ்சலை உறுதிசெய்யவும்'
+        title: மின்னஞ்சல் முகவரியை உறுதிபடுத்தவும்
+      reset_password_instructions:
+        action: கடவுச்சொல்லை மாற்றவும்
+        explanation: உங்கள் கணக்கிற்குப் புதிய கடவுச்சொல்லைக் கோரியிருக்கிறீர்கள்.
+        subject: 'மாஸ்டோடான்: கடவுச்சொல்லை மீட்டமைப்பதற்கான வழிமுறைகள்'
+        title: கடவுச்சொல் மீட்டமைப்பு
+      two_factor_disabled:
+        title: 2FA உபயோகத்தில் இல்லை
+    registrations:
+      destroyed: நன்றி! தங்கள் கணக்கு வெற்றிகரமாக ரத்து செய்யப்பட்டது. தங்கள் வருகையை மீண்டும் எதிர்நோக்கியிருக்கிறோம்.
+      signed_up: வருக! நீங்கள் வெற்றிகரமாகப் பதிவுசெய்துவிட்டீர்கள்.
+    unlocks:
+      send_instructions: இன்னும் சற்று நேரத்தில் மின்னஞ்சல் முகவரியை உறுதி செய்வதற்கான விளக்கம், உங்கள் மின்னஞ்சலை வந்தடையும். வரவில்லை எனில், தயவு செய்து உங்கள் Spam பெட்டியைப் பார்க்கவும்.
+  errors:
+    messages:
+      not_found: காணப்படவில்லை
diff --git a/config/locales/devise.th.yml b/config/locales/devise.th.yml
index 383c515138f9638d64d669b62130fb802e0a1313..c88577a9703c2559a385b097cfde4c3cd5b197a2 100644
--- a/config/locales/devise.th.yml
+++ b/config/locales/devise.th.yml
@@ -3,43 +3,95 @@ th:
   devise:
     confirmations:
       confirmed: ยืนยันที่อยู่อีเมลของคุณสำเร็จ
-      send_instructions: You will receive an email with instructions for how to confirm your email address in a few minutes.
-      send_paranoid_instructions: If your email address exists in our database, you will receive an email with instructions for how to confirm your email address in a few minutes.
+      send_instructions: คุณจะได้รับอีเมลพร้อมคำแนะนำวิธีการยืนยันที่อยู่อีเมลของคุณในไม่กี่นาที โปรดตรวจสอบโฟลเดอร์สแปมของคุณหากคุณไม่ได้รับอีเมลนี้
+      send_paranoid_instructions: หากมีที่อยู่อีเมลของคุณอยู่ในฐานข้อมูลของเรา คุณจะได้รับอีเมลพร้อมคำแนะนำวิธีการยืนยันที่อยู่อีเมลของคุณในไม่กี่นาที โปรดตรวจสอบโฟลเดอร์สแปมของคุณหากคุณไม่ได้รับอีเมลนี้
     failure:
       already_authenticated: คุณได้ลงชื่อเข้าอยู่แล้ว
       inactive: ยังไม่ได้เปิดใช้งานบัญชีของคุณ
       invalid: "%{authentication_keys} หรือรหัสผ่านไม่ถูกต้อง"
-      locked: บัญชีของคุณถูกล็อก
+      last_attempt: คุณลองได้อีกหนึ่งครั้งก่อนที่บัญชีของคุณจะถูกล็อค
+      locked: มีการล็อคบัญชีของคุณอยู่
       not_found_in_database: "%{authentication_keys} หรือรหัสผ่านไม่ถูกต้อง"
-      pending: บัญชีของคุณกำลังถูกตรวจสอบ
+      pending: บัญชีของคุณยังอยู่ระหว่างการตรวจทาน
       timeout: เซสชันของคุณหมดอายุแล้ว โปรดลงชื่อเข้าอีกครั้งเพื่อดำเนินการต่อ
+      unauthenticated: คุณต้องลงชื่อเข้าหรือลงทะเบียนก่อนดำเนินการต่อ
+      unconfirmed: คุณต้องยืนยันที่อยู่อีเมลของคุณก่อนดำเนินการต่อ
     mailer:
+      confirmation_instructions:
+        action: ยืนยันที่อยู่อีเมล
+        action_with_app: ยืนยันแล้วกลับไปยัง %{app}
+        explanation: คุณได้สร้างบัญชีใน %{host} ด้วยที่อยู่อีเมลนี้ คุณเหลืออีกคลิกเดียวเพื่อเปิดใช้งานบัญชี หากนี่ไม่ใช่คุณ โปรดเพิกเฉยต่ออีเมลนี้
+        explanation_when_pending: คุณได้สมัครเพื่อขอคำเชิญสู่ %{host} ด้วยที่อยู่อีเมลนี้ เมื่อคุณยืนยันที่อยู่อีเมลของคุณ เราจะตรวจทานใบสมัครของคุณ คุณสามารถเข้าสู่ระบบเพื่อเปลี่ยนรายละเอียดของคุณหรือลบบัญชีของคุณ แต่คุณไม่สามารถเข้าถึงฟังก์ชันส่วนใหญ่ได้จนกว่าจะมีการอนุมัติบัญชีของคุณ หากมีการปฏิเสธใบสมัครของคุณ จะเอาข้อมูลของคุณออก ดังนั้นจึงไม่ต้องมีการกระทำเพิ่มเติมจากคุณ หากนี่ไม่ใช่คุณ โปรดเพิกเฉยต่ออีเมลนี้
+        extra_html: นอกจากนี้โปรดตรวจสอบ <a href="%{terms_path}">กฎของเซิร์ฟเวอร์</a> และ <a href="%{policy_path}">เงื่อนไขการให้บริการของเรา</a>
+        subject: 'Mastodon: คำแนะนำการยืนยันสำหรับ %{instance}'
+        title: ยืนยันที่อยู่อีเมล
       email_changed:
+        explanation: 'กำลังเปลี่ยนที่อยู่อีเมลสำหรับบัญชีของคุณเป็น:'
+        extra: หากคุณไม่ได้เปลี่ยนอีเมลของคุณ อาจเป็นไปได้ว่ามีใครสักคนได้รับสิทธิเข้าถึงบัญชีของคุณ โปรดเปลี่ยนรหัสผ่านของคุณทันทีหรือติดต่อผู้ดูแลเซิร์ฟเวอร์หากคุณถูกล็อคออกจากบัญชีของคุณ
+        subject: 'Mastodon: เปลี่ยนอีเมลแล้ว'
         title: ที่อยู่อีเมลใหม่
       password_change:
+        explanation: เปลี่ยนรหัสผ่านสำหรับบัญชีของคุณแล้ว
+        extra: หากคุณไม่ได้เปลี่ยนรหัสผ่านของคุณ อาจเป็นไปได้ว่ามีใครสักคนได้รับสิทธิเข้าถึงบัญชีของคุณ โปรดเปลี่ยนรหัสผ่านของคุณทันทีหรือติดต่อผู้ดูแลเซิร์ฟเวอร์หากคุณถูกล็อคออกจากบัญชีของคุณ
         subject: 'Mastodon: เปลี่ยนรหัสผ่านแล้ว'
         title: เปลี่ยนรหัสผ่านแล้ว
+      reconfirmation_instructions:
+        explanation: ยืนยันที่อยู่ใหม่เพื่อเปลี่ยนอีเมลของคุณ
+        extra: หากการเปลี่ยนแปลงนี้ไม่ได้ทำโดยคุณ โปรดเพิกเฉยต่ออีเมลนี้ ที่อยู่อีเมลสำหรับบัญชี Mastodon จะไม่เปลี่ยนแปลงจนกว่าคุณจะเข้าถึงลิงก์ด้านบน
+        subject: 'Mastodon: ยืนยันอีเมลสำหรับ %{instance}'
+        title: ยืนยันที่อยู่อีเมล
       reset_password_instructions:
         action: เปลี่ยนรหัสผ่าน
+        explanation: คุณได้ขอรหัสผ่านใหม่สำหรับบัญชีของคุณ
+        extra: หากคุณไม่ได้ขอสิ่งนี้ โปรดเพิกเฉยต่ออีเมลนี้ รหัสผ่านของคุณจะไม่เปลี่ยนแปลงจนกว่าคุณจะเข้าถึงลิงก์ด้านบนและสร้างรหัสผ่านใหม่
+        subject: 'Mastodon: คำแนะนำการตั้งรหัสผ่านใหม่'
+        title: การตั้งรหัสผ่านใหม่
       two_factor_disabled:
+        explanation: ปิดใช้งานการรับรองความถูกต้องด้วยสองปัจจัยสำหรับบัญชีของคุณแล้ว การเข้าสู่ระบบสามารถทำได้โดยใช้ที่อยู่อีเมลและรหัสผ่านเท่านั้น
+        subject: 'Mastodon: ปิดใช้งานการรับรองความถูกต้องด้วยสองปัจจัยแล้ว'
         title: ปิดใช้งาน 2FA แล้ว
       two_factor_enabled:
+        explanation: เปิดใช้งานการรับรองความถูกต้องด้วยสองปัจจัยสำหรับบัญชีของคุณแล้ว จะต้องใช้โทเคนที่สร้างโดยแอป TOTP ที่จับคู่สำหรับการเข้าสู่ระบบ
+        subject: 'Mastodon: เปิดใช้งานการรับรองความถูกต้องด้วยสองปัจจัยแล้ว'
         title: เปิดใช้งาน 2FA แล้ว
+      two_factor_recovery_codes_changed:
+        explanation: ยกเลิกรหัสกู้คืนก่อนหน้าและสร้างรหัสใหม่แล้ว
+        subject: 'Mastodon: สร้างรหัสกู้คืนสองปัจจัยใหม่แล้ว'
+        title: เปลี่ยนรหัสกู้คืน 2FA แล้ว
+      unlock_instructions:
+        subject: 'Mastodon: คำแนะนำการปลดล็อค'
+    omniauth_callbacks:
+      failure: ไม่สามารถรับรองความถูกต้องของคุณจาก %{kind} เนื่องจาก "%{reason}"
+      success: รับรองความถูกต้องจากบัญชี %{kind} สำเร็จ
     passwords:
-      send_instructions: If your email address exists in our database, you will receive a password recovery link at your email address in a few minutes.
-      send_paranoid_instructions: If your email address exists in our database, you will receive a password recovery link at your email address in a few minutes.
+      no_token: คุณไม่สามารถเข้าถึงหน้านี้โดยไม่ได้มาจากอีเมลการตั้งรหัสผ่านใหม่ หากคุณมาจากอีเมลการตั้งรหัสผ่านใหม่ โปรดตรวจสอบให้แน่ใจว่าคุณได้ใช้ URL แบบเต็มที่ให้มา
+      send_instructions: หากมีที่อยู่อีเมลของคุณอยู่ในฐานข้อมูลของเรา คุณจะได้รับลิงก์กู้คืนรหัสผ่านที่ที่อยู่อีเมลของคุณในไม่กี่นาที โปรดตรวจสอบโฟลเดอร์สแปมของคุณหากคุณไม่ได้รับอีเมลนี้
+      send_paranoid_instructions: หากมีที่อยู่อีเมลของคุณอยู่ในฐานข้อมูลของเรา คุณจะได้รับลิงก์กู้คืนรหัสผ่านที่ที่อยู่อีเมลของคุณในไม่กี่นาที โปรดตรวจสอบโฟลเดอร์สแปมของคุณหากคุณไม่ได้รับอีเมลนี้
+      updated: เปลี่ยนรหัสผ่านของคุณสำเร็จ ตอนนี้คุณได้ลงชื่อเข้าแล้ว
+      updated_not_active: เปลี่ยนรหัสผ่านของคุณสำเร็จ
     registrations:
-      signed_up_but_pending: ข้อความที่ได้รับการยืนยันจะถูกส่งไปยังอีเมลของคุณ หลังจากนั้นให้ทำการคลิกลิงก์ เพื่อให้พวกเราตรวจสอบข้อมูลเสร็จเรียบร้อย และหลังจากนั้นคุณจะได้รับการยืนยัน
-      signed_up_but_unconfirmed: A message with a confirmation link has been sent to your email address. Please follow the link to activate your account.
-      update_needs_confirmation: You updated your account successfully, but we need to verify your new email address. Please check your email and follow the confirm link to confirm your new email address.
+      destroyed: ลาก่อน! ยกเลิกบัญชีของคุณสำเร็จ เราหวังว่าจะได้พบคุณอีกในเร็ว ๆ นี้
+      signed_up: ยินดีต้อนรับ! คุณได้ลงทะเบียนสำเร็จ
+      signed_up_but_inactive: คุณได้ลงทะเบียนสำเร็จ อย่างไรก็ตามเราไม่สามารถลงชื่อคุณเข้าเนื่องจากยังไม่ได้เปิดใช้งานบัญชีของคุณ
+      signed_up_but_locked: คุณได้ลงทะเบียนสำเร็จ อย่างไรก็ตามเราไม่สามารถลงชื่อคุณเข้าเนื่องจากมีการล็อคบัญชีของคุณอยู่
+      signed_up_but_pending: ส่งข้อความพร้อมลิงก์ยืนยันไปยังที่อยู่อีเมลของคุณแล้ว หลังจากคุณคลิกลิงก์ เราจะตรวจทานใบสมัครของคุณ คุณจะได้รับการแจ้งเตือนหากมีการอนุมัติใบสมัคร
+      signed_up_but_unconfirmed: ส่งข้อความพร้อมลิงก์ยืนยันไปยังที่อยู่อีเมลของคุณแล้ว โปรดไปตามลิงก์เพื่อเปิดใช้งานบัญชีของคุณ โปรดตรวจสอบโฟลเดอร์สแปมของคุณหากคุณไม่ได้รับอีเมลนี้
+      update_needs_confirmation: คุณได้อัปเดตบัญชีของคุณสำเร็จ แต่เราจำเป็นต้องยืนยันที่อยู่อีเมลใหม่ของคุณ โปรดตรวจสอบอีเมลของคุณแล้วไปตามลิงก์ยืนยันเพื่อยืนยันที่อยู่อีเมลใหม่ของคุณ โปรดตรวจสอบโฟลเดอร์สแปมของคุณหากคุณไม่ได้รับอีเมลนี้
+      updated: อัปเดตบัญชีของคุณสำเร็จ
     sessions:
       already_signed_out: ลงชื่อออกสำเร็จ
       signed_in: ลงชื่อเข้าสำเร็จ
       signed_out: ลงชื่อออกสำเร็จ
     unlocks:
-      send_instructions: You will receive an email with instructions for how to unlock your account in a few minutes.
-      send_paranoid_instructions: If your account exists, you will receive an email with instructions for how to unlock it in a few minutes.
+      send_instructions: คุณจะได้รับอีเมลพร้อมคำแนะนำวิธีการปลดล็อคบัญชีของคุณในไม่กี่นาที โปรดตรวจสอบโฟลเดอร์สแปมของคุณหากคุณไม่ได้รับอีเมลนี้
+      send_paranoid_instructions: หากมีบัญชีของคุณอยู่ คุณจะได้รับอีเมลพร้อมคำแนะนำวิธีการปลดล็อคบัญชีในไม่กี่นาที โปรดตรวจสอบโฟลเดอร์สแปมของคุณหากคุณไม่ได้รับอีเมลนี้
+      unlocked: ปลดล็อคบัญชีของคุณสำเร็จ โปรดลงชื่อเข้าเพื่อดำเนินการต่อ
   errors:
     messages:
+      already_confirmed: ยืนยันอยู่แล้ว โปรดลองลงชื่อเข้า
+      confirmation_period_expired: ต้องได้รับการยืนยันภายใน %{period} โปรดขออีเมลใหม่
+      expired: หมดอายุแล้ว โปรดขออีเมลใหม่
       not_found: ไม่พบ
       not_locked: ไม่ได้ล็อคอยู่
+      not_saved:
+        other: "%{count} ข้อผิดพลาดได้ห้ามไม่ให้บันทึก %{resource} นี้:"
diff --git a/config/locales/devise.uk.yml b/config/locales/devise.uk.yml
index e1eb2d1ae4333c4db15603171922334aee1d5c87..eebeb106cd4461f35730e1222d4c527fe91cdec0 100644
--- a/config/locales/devise.uk.yml
+++ b/config/locales/devise.uk.yml
@@ -21,6 +21,7 @@ uk:
         action: Підтвердити адресу електронної пошти
         action_with_app: Підтвердити та повернутися до %{app}
         explanation: Ви створили обліковий запис на %{host} з цією адресою електронної пошти, і зараз на відстані одного кліку від його активації. Якщо це були не ви, проігноруйте цього листа, будь ласка.
+        explanation_when_pending: Ви подали заявку на запрошення до %{host} з цією адресою електронної пошти. Після підтвердження адреси ми розглянемо вашу заявку. Ви можете увійти, щоб змінити ваші дані або видалити свій обліковий запис, але Ви не зможете отримати доступ до більшості функцій, поки Ваш обліковий запис не буде схвалено. Якщо вашу заявку буде відхилено, ваші дані будуть видалені, тож вам не потрібно буде нічого робити. Якщо це були не ви, просто проігноруйте цей лист.
         extra_html: Також перегляньте <a href="%{terms_path}">правила серверу</a> та <a href="%{policy_path}">умови використання</a>.
         subject: 'Mastodon: Інструкції для підтвердження %{instance}'
         title: Підтвердити адресу електронної пошти
@@ -46,9 +47,17 @@ uk:
         subject: 'Mastodon: Інструкції для скидання паролю'
         title: Скидання пароля
       two_factor_disabled:
+        explanation: Двофакторну аутентифікацію для вашого облікового запису відключено. Тепер ви можете увійти за допомогою лише адреси електронної пошти та пароля.
+        subject: 'Mastodon: двофакторну авторизацію вимкнено'
         title: Двофакторна автентифікація вимкнена
       two_factor_enabled:
+        explanation: Двофакторну аутентифікацію для вашого облікового запису було увімкнено. Для входу до системи буде потрібний токен, згенерований спареним застосунком TOTP.
+        subject: 'Mastodon: двофакторну авторизацію увімкнено'
         title: Двофакторна автентифікація увімкнена
+      two_factor_recovery_codes_changed:
+        explanation: Попередні коди відновлення були анульовані і генеруються нові.
+        subject: 'Mastodon: коди двофакторного відновлення повторно згенеровано'
+        title: Коди двофакторного відновлення змінено
       unlock_instructions:
         subject: 'Mastodon: Інструкції для розблокування'
     omniauth_callbacks:
diff --git a/config/locales/devise.ur.yml b/config/locales/devise.ur.yml
new file mode 100644
index 0000000000000000000000000000000000000000..5edf8e9b9d6db5915e61e4aec66bddac87b8c543
--- /dev/null
+++ b/config/locales/devise.ur.yml
@@ -0,0 +1,5 @@
+---
+ur:
+  devise:
+    confirmations:
+      confirmed: آپکے ایمیل اڈرش (email address) کی تصدیق کر لی گئی ہے.
diff --git a/config/locales/devise.vi.yml b/config/locales/devise.vi.yml
new file mode 100644
index 0000000000000000000000000000000000000000..b01fa066e4a883866557fa88fabf6b1ce4aef28b
--- /dev/null
+++ b/config/locales/devise.vi.yml
@@ -0,0 +1,97 @@
+---
+vi:
+  devise:
+    confirmations:
+      confirmed: Địa chỉ email của bạn đã được xác nhận thành công.
+      send_instructions: Bạn sẽ nhận được một email với các hướng dẫn về cách xác nhận địa chỉ email của bạn trong vài phút. Vui lòng kiểm tra thư mục thư rác nếu bạn không nhận được email này.
+      send_paranoid_instructions: Nếu địa chỉ email của bạn tồn tại trong cơ sở dữ liệu của chúng tôi, bạn sẽ nhận được email có hướng dẫn cách xác nhận địa chỉ email của bạn trong vài phút. Vui lòng kiểm tra thư mục thư rác nếu bạn không nhận được email này.
+    failure:
+      already_authenticated: Bạn đã đăng nhập.
+      inactive: Tài khoản của bạn chưa được kich hoạt.
+      invalid: "%{authentication_keys} hoặc mật khẩu không hợp lệ."
+      last_attempt: Bạn có thêm một lần thử trước khi tài khoản của bạn bị khóa.
+      locked: Tài khoản của bạn bị khóa.
+      not_found_in_database: "%{authentication_keys} hoặc mật khẩu không hợp lệ."
+      pending: Tài khoản của bạn vẫn đang được xem xét.
+      timeout: Phiên của bạn đã hết hạn. Vui lòng đăng nhập lại để tiếp tục.
+      unauthenticated: Bạn cần đăng nhập hoặc đăng ký trước khi tiếp tục.
+      unconfirmed: Bạn phải xác nhận địa chỉ email của bạn trước khi tiếp tục.
+    mailer:
+      confirmation_instructions:
+        action: Xác nhận địa chỉ email
+        action_with_app: Xác nhận và quay lại %{app}
+        explanation: Bạn đã tạo một tài khoản trên %{host} với địa chỉ email này. Bạn chỉ cần một cú nhấp chuột để kích hoạt nó. Nếu đây không phải là bạn, xin vui lòng bỏ qua email này.
+        explanation_when_pending: Bạn đã đăng ký lời mời đến %{host} với địa chỉ email này. Khi bạn xác nhận địa chỉ e-mail của mình, chúng tôi sẽ xem xét đơn đăng ký của bạn. Bạn có thể đăng nhập để thay đổi chi tiết hoặc xóa tài khoản của mình, nhưng bạn không thể truy cập hầu hết các chức năng cho đến khi tài khoản của bạn được chấp thuận. Nếu ứng dụng của bạn bị từ chối, dữ liệu của bạn sẽ bị xóa, do đó bạn sẽ không cần phải thực hiện thêm hành động nào nữa. Nếu đây không phải là bạn, xin vui lòng bỏ qua email này.
+        extra_html: Vui lòng kiểm tra <a href="%{terms_path}">các quy tắc của máy chủ</a> và <a href="%{policy_path}">điều khoản dịch vụ của chúng tôi</a> .
+        subject: 'Mastodon: Hướng dẫn xác nhận cho %{instance}'
+        title: Xác nhận địa chỉ email
+      email_changed:
+        explanation: 'Địa chỉ email cho tài khoản của bạn đang được thay đổi thành:'
+        extra: Nếu bạn không thay đổi email của mình, có khả năng ai đó đã truy cập được vào tài khoản của bạn. Vui lòng thay đổi mật khẩu của bạn ngay lập tức hoặc liên hệ với quản trị viên máy chủ nếu bạn bị khóa khỏi tài khoản của bạn.
+        subject: 'Mastodon: Email đã thay đổi'
+        title: Địa chỉ thư điện tử mới
+      password_change:
+        explanation: Mật khẩu cho tài khoản của bạn đã được thay đổi.
+        extra: Nếu bạn không thay đổi mật khẩu, có khả năng ai đó đã truy cập được vào tài khoản của bạn. Vui lòng thay đổi mật khẩu của bạn ngay lập tức hoặc liên hệ với quản trị viên máy chủ nếu bạn bị khóa khỏi tài khoản của bạn.
+        subject: 'Mastodon: Mật khẩu đã thay đổi'
+        title: mật khẩu đã được thay đổi
+      reconfirmation_instructions:
+        explanation: Xác nhận địa chỉ mới để thay đổi email của bạn.
+        extra: Nếu thay đổi này không phải do bạn khởi xướng, vui lòng bỏ qua email này. Địa chỉ email cho tài khoản Mastodon sẽ không thay đổi cho đến khi bạn truy cập vào liên kết ở trên.
+        subject: 'Mastodon: Xác nhận email cho %{instance}'
+        title: Xác nhận địa chỉ email
+      reset_password_instructions:
+        action: Đổi mật khẩu
+        explanation: Bạn đã yêu cầu một mật khẩu mới cho tài khoản của bạn.
+        extra: Nếu bạn không yêu cầu điều này, xin vui lòng bỏ qua email này. Mật khẩu của bạn sẽ không thay đổi cho đến khi bạn truy cập vào liên kết ở trên và tạo một mật khẩu mới.
+        subject: 'Mastodon: Đặt lại hướng dẫn mật khẩu'
+        title: Đặt lại mật khẩu
+      two_factor_disabled:
+        explanation: Xác thực hai yếu tố cho tài khoản của bạn đã bị vô hiệu hóa. Đăng nhập bây giờ có thể chỉ bằng địa chỉ e-mail và mật khẩu.
+        subject: 'Mastodon: Xác thực hai yếu tố bị vô hiệu hóa'
+        title: Vô hiệu hóa 2FA
+      two_factor_enabled:
+        explanation: Xác thực hai yếu tố đã được kích hoạt cho tài khoản của bạn. Mã thông báo được tạo bởi ứng dụng TOTP được ghép nối sẽ được yêu cầu để đăng nhập.
+        subject: 'Mastodon: Kích hoạt xác thực hai yếu tố'
+        title: Đã bật 2FA
+      two_factor_recovery_codes_changed:
+        explanation: Các mã khôi phục trước đó đã bị vô hiệu và các mã mới được tạo.
+        subject: 'Mastodon: Mã phục hồi hai yếu tố được tạo lại'
+        title: Mã khôi phục 2FA đã thay đổi
+      unlock_instructions:
+        subject: 'Mastodon: Hướng dẫn mở khóa'
+    omniauth_callbacks:
+      failure: Không thể xác thực bạn từ %{kind} vì &quot;%{reason}&quot;.
+      success: Xác thực thành công từ tài khoản %{kind}.
+    passwords:
+      no_token: Bạn không thể truy cập trang này mà không đến từ email đặt lại mật khẩu. Nếu bạn đến từ một email đặt lại mật khẩu, vui lòng đảm bảo rằng bạn đã sử dụng URL đầy đủ được cung cấp.
+      send_instructions: Nếu địa chỉ email của bạn tồn tại trong cơ sở dữ liệu của chúng tôi, bạn sẽ nhận được liên kết khôi phục mật khẩu tại địa chỉ email của bạn sau vài phút. Vui lòng kiểm tra thư mục thư rác nếu bạn không nhận được email này.
+      send_paranoid_instructions: Nếu địa chỉ email của bạn tồn tại trong cơ sở dữ liệu của chúng tôi, bạn sẽ nhận được liên kết khôi phục mật khẩu tại địa chỉ email của bạn sau vài phút. Vui lòng kiểm tra thư mục thư rác nếu bạn không nhận được email này.
+      updated: Mật khẩu của bạn đã được thay đổi thành công. Bây giờ bạn đã đăng nhập.
+      updated_not_active: Mật khẩu của bạn đã được thay đổi thành công.
+    registrations:
+      destroyed: Tạm biệt! Tài khoản của bạn đã bị hủy thành công. Mong rằng chúng tôi sẽ sớm gặp lại bạn.
+      signed_up: Chào mừng bạn Bạn đã đăng ký thành công.
+      signed_up_but_inactive: Bạn đã đăng ký thành công. Tuy nhiên, chúng tôi không thể đăng nhập cho bạn vì tài khoản của bạn chưa được kích hoạt.
+      signed_up_but_locked: Bạn đã đăng ký thành công. Tuy nhiên, chúng tôi không thể đăng nhập cho bạn vì tài khoản của bạn bị khóa.
+      signed_up_but_pending: Một tin nhắn với một liên kết xác nhận đã được gửi đến địa chỉ email của bạn. Sau khi bạn nhấp vào liên kết, chúng tôi sẽ xem xét ứng dụng của bạn. Bạn sẽ được thông báo nếu nó được chấp thuận.
+      signed_up_but_unconfirmed: Một tin nhắn với một liên kết xác nhận đã được gửi đến địa chỉ email của bạn. Vui lòng theo liên kết để kích hoạt tài khoản của bạn. Vui lòng kiểm tra thư mục thư rác nếu bạn không nhận được email này.
+      update_needs_confirmation: Bạn đã cập nhật tài khoản thành công, nhưng chúng tôi cần xác minh địa chỉ email mới của bạn. Vui lòng kiểm tra email của bạn và theo liên kết xác nhận để xác nhận địa chỉ email mới của bạn. Vui lòng kiểm tra thư mục thư rác nếu bạn không nhận được email này.
+      updated: Tài khoản của bạn đã được cập nhật thành công.
+    sessions:
+      already_signed_out: Đăng xuất thành công.
+      signed_in: Đã đăng nhập thành công.
+      signed_out: Đăng xuất thành công.
+    unlocks:
+      send_instructions: Bạn sẽ nhận được một email với các hướng dẫn về cách mở khóa tài khoản của bạn trong vài phút. Vui lòng kiểm tra thư mục thư rác nếu bạn không nhận được email này.
+      send_paranoid_instructions: Nếu tài khoản của bạn tồn tại, bạn sẽ nhận được email có hướng dẫn cách mở khóa trong vài phút. Vui lòng kiểm tra thư mục thư rác nếu bạn không nhận được email này.
+      unlocked: Tài khoản của bạn đã được mở khóa thành công. Vui lòng đăng nhập để tiếp tục.
+  errors:
+    messages:
+      already_confirmed: đã được xác nhận, vui lòng thử đăng nhập
+      confirmation_period_expired: cần được xác nhận trong vòng %{period}, vui lòng yêu cầu một cái mới
+      expired: đã hết hạn, vui lòng yêu cầu một cái mới
+      not_found: không tìm thấy
+      not_locked: không bị khóa
+      not_saved:
+        other: "%{count} lỗi đã cấm %{resource} này được lưu:"
diff --git a/config/locales/devise.zh-CN.yml b/config/locales/devise.zh-CN.yml
index f9943238e3360e99ea6e804474b95eac20a4a702..4c75a881672898e28d4960a894f969b066178de9 100644
--- a/config/locales/devise.zh-CN.yml
+++ b/config/locales/devise.zh-CN.yml
@@ -2,7 +2,7 @@
 zh-CN:
   devise:
     confirmations:
-      confirmed: 成功验证你的邮箱地址。
+      confirmed: 已成功确认你的邮箱地址。
       send_instructions: 你的电子邮箱将在几分钟后收到一封确认邮件。如果没有,请检查你的垃圾邮箱。
       send_paranoid_instructions: 如果你的邮箱存在于我们的数据库中,你将收到一封确认注册的邮件。如果没有,请检查你的垃圾邮箱。
     failure:
@@ -12,7 +12,7 @@ zh-CN:
       last_attempt: 你还有最后一次尝试机会,再次失败你的帐户将被锁定。
       locked: 你的帐户已被锁定。
       not_found_in_database: "%{authentication_keys}或密码错误。"
-      pending: 你的账户仍在审核中。
+      pending: 你的帐号仍在审核中。
       timeout: 你已登录超时,请重新登录。
       unauthenticated: 继续操作前请注册或者登录。
       unconfirmed: 继续操作前请先确认你的帐户。
@@ -46,6 +46,18 @@ zh-CN:
         extra: 如果你并没有请求本次变更,请忽略此邮件。你的密码只有在你点击上面的链接并输入新密码后才会更改。
         subject: Mastodon:重置密码信息
         title: 重置密码
+      two_factor_disabled:
+        explanation: 帐号的双重认证已禁用。现在仅使用邮箱和密码登录即可登录。
+        subject: Mastodon:双重认证已禁用。
+        title: 双重认证已禁用
+      two_factor_enabled:
+        explanation: 账号双重认证已启用。登录时将需要来自已配对的 TOTP 应用生成的验证码。
+        subject: Mastodon:双重验证已开启
+        title: 已启用双重认证
+      two_factor_recovery_codes_changed:
+        explanation: 之前的恢复码已失效,现已生成了新的恢复码。
+        subject: Mastodon:重新生成双重认证的恢复码
+        title: 双重验证的恢复码已更改
       unlock_instructions:
         subject: Mastodon:帐户解锁信息
     omniauth_callbacks:
diff --git a/config/locales/devise.zh-TW.yml b/config/locales/devise.zh-TW.yml
index 895405f4a7151fb3a2ea94f0bd7ff7ac2fb0418b..77472042d173af61b3a1dcfe820b00d3f2de80c9 100644
--- a/config/locales/devise.zh-TW.yml
+++ b/config/locales/devise.zh-TW.yml
@@ -4,17 +4,17 @@ zh-TW:
     confirmations:
       confirmed: 您的電子信箱位址已確認成功。
       send_instructions: 幾分鐘後您將收到確認信件。若未收到此信件,請檢查垃圾郵件資料夾。
-      send_paranoid_instructions: 如果您的電子信箱存在於我們的資料庫,將會在幾分鐘內收到確認信。若未收到請檢查垃圾郵件資料夾。
+      send_paranoid_instructions: 如果您的電子信箱存在於我們的資料庫,您將會在幾分鐘內收到確認信。若未收到請檢查垃圾郵件資料夾。
     failure:
       already_authenticated: 您已登入。
       inactive: 您的帳戶尚未啟用。
       invalid: 無效的 %{authentication_keys} 或密碼。
-      last_attempt: 在帳號遭封鎖前您還有最後一次嘗試機會。
-      locked: 您的帳戶已被鎖定。
+      last_attempt: 在帳號鎖定前,您還有最後一次嘗試機會。
+      locked: 已鎖定您的帳戶。
       not_found_in_database: 無效的 %{authentication_keys} 或密碼。
       pending: 您的帳戶仍在審核中。
       timeout: 登入階段逾時。請重新登入以繼續。
-      unauthenticated: 您必須先登入或註冊以繼續使用。
+      unauthenticated: 您必須先登入或註冊才能繼續使用。
       unconfirmed: 您必須先確認電子信箱才能繼續使用。
     mailer:
       confirmation_instructions:
@@ -22,7 +22,7 @@ zh-TW:
         action_with_app: 確認並返回 %{app}
         explanation: 您已經在 %{host} 上以此電子信箱位址建立了一支帳戶。您距離啟用它只剩一點之遙了。若這不是您,請忽略此信件。
         explanation_when_pending: 您使用此電子信箱位址申請了 %{host} 的邀請。當您確認電子信箱後我們將審核您的申請,而直到核准前您都無法登入。當您的申請遭拒絕,您的資料將被移除而不必做後續動作。如果這不是您,請忽略此信件。
-        extra_html: 同時也請看看<a href="%{terms_path}">該伺服器的規則</a>與<a href="%{policy_path}">服務條款</a>。
+        extra_html: 同時也請看看<a href="%{terms_path}">伺服器規則</a>與<a href="%{policy_path}">服務條款</a>。
         subject: Mastodon:%{instance} 確認說明
         title: 驗證電子信箱位址
       email_changed:
@@ -42,7 +42,7 @@ zh-TW:
         title: 驗證電子信箱位址
       reset_password_instructions:
         action: 變更密碼
-        explanation: 您已請求設定帳號的新密碼。
+        explanation: 您已請求帳戶的新密碼。
         extra: 若您並未請求,請忽略此信件。您的密碼在存取上方連結並建立新連結前不會變更。
         subject: Mastodon:重設密碼指引
         title: 重設密碼
@@ -55,14 +55,14 @@ zh-TW:
         subject: Mastodon:已啟用兩步驟驗證
         title: 已啟用 2FA
       two_factor_recovery_codes_changed:
-        explanation: 上一次的復原碼已經失效,且已產生新的復原碼。
+        explanation: 上一次的復原碼已經失效,且已產生新的。
         subject: Mastodon:兩步驟驗證復原碼已經重新產生
         title: 2FA 復原碼已變更
       unlock_instructions:
-        subject: Mastodon:帳戶解鎖指引
+        subject: Mastodon:解鎖指引
     omniauth_callbacks:
       failure: 無法透過 %{kind} 認證是否為您,因為「%{reason}」。
-      success: 成功透過 %{kind} 登入帳戶。
+      success: 成功透過 %{kind} 帳戶登入。
     passwords:
       no_token: 您必須透過密碼重設信件才能存取此頁面。若確實如此,請確定輸入的網址是完整的。
       send_instructions: 若電子信箱位址存在於資料庫,幾分鐘後您將在信箱中收到密碼復原連結。若未收到請檢查垃圾郵件資料夾。
@@ -92,6 +92,6 @@ zh-TW:
       confirmation_period_expired: 需要在 %{period} 內完成驗證。請重新申請
       expired: 已經過期,請重新請求
       not_found: 找不到
-      not_locked: 並未被鎖定
+      not_locked: 並未鎖定
       not_saved:
         other: 因 %{count} 錯誤導致 %{resource} 無法儲存:
diff --git a/config/locales/doorkeeper.ar.yml b/config/locales/doorkeeper.ar.yml
index 51d8b76b434c2368a0c0f18fa4e1df170af2e917..204ac429bf159e9053818b273082663337aa7a56 100644
--- a/config/locales/doorkeeper.ar.yml
+++ b/config/locales/doorkeeper.ar.yml
@@ -123,6 +123,7 @@ ar:
       read: قراءة كافة بيانات حسابك
       read:accounts: معاينة معلومات الحساب
       read:blocks: رؤية الحسابات التي قمت بحجبها
+      read:bookmarks: اطّلع على فواصلك المرجعية
       read:favourites: رؤية مفضلاتك
       read:filters: رؤية عوامل التصفية الخاصة بك
       read:follows: رؤية متابِعيك
@@ -135,6 +136,7 @@ ar:
       write: تغيير كافة بيانات حسابك
       write:accounts: تعديل صفحتك التعريفية
       write:blocks: حجب الحسابات و النطاقات
+      write:bookmarks: الإحتفاظ بالمنشورات في الفواصل المرجعية
       write:favourites: الإعجاب بمنشورات
       write:filters: إنشاء عوامل تصفية
       write:follows: متابَعة الأشخاص
diff --git a/config/locales/doorkeeper.ast.yml b/config/locales/doorkeeper.ast.yml
index ce88af797046e3690ae58b9c14d888805576183e..db6eb1e515172a0e56a841cfe0888b05c8880180 100644
--- a/config/locales/doorkeeper.ast.yml
+++ b/config/locales/doorkeeper.ast.yml
@@ -4,6 +4,7 @@ ast:
     attributes:
       doorkeeper/application:
         name: Nome de l'aplicación
+        scopes: Ámbitos
         website: Sitiu web de l'aplicación
     errors:
       models:
@@ -19,10 +20,21 @@ ast:
         destroy: Destruyir
         edit: Editar
         submit: Unviar
+      confirmations:
+        destroy: "¿De xuru?"
+      form:
+        error: "¡Meca! Comprueba los fallos posibles del formulariu"
+      help:
+        native_redirect_uri: Usa %{native_redirect_uri} pa pruebes llocales
       index:
         name: Nome
+        new: Aplicación nueva
+        scopes: Ámbitos
+      new:
+        title: Aplicación nueva
       show:
         actions: Aiciones
+        scopes: Ámbitos
         title: 'Aplicación: %{name}'
     authorizations:
       error:
@@ -31,19 +43,27 @@ ast:
         able_to: Va ser a
         prompt: L'aplicación %{client_name} solicitó l'accesu a la to cuenta
       show:
-        title: Copia esti códigu d'autorización y apégalu na aplicación.
+        title: Copia esti códigu d'autorización y apiégalu na aplicación.
     authorized_applications:
       buttons:
         revoke: Revocar
+      confirmations:
+        revoke: "¿De xuru?"
       index:
+        application: Aplicación
+        created_at: Data d'autorización
         date_format: "%H:%M:%S %d-%m-%Y"
+        scopes: Ámbitos
         title: Les aplicaciones qu'autoricesti
     errors:
       messages:
+        access_denied: El dueñu del recursu o'l sirvidor d'autorización ñegó la solicitú.
         invalid_token:
           expired: Caducó'l pase d'accesu
           revoked: Revocóse'l pase d'accesu
           unknown: El pase d'accesu nun ye válidu
+        server_error: El sirvidor d'autorizaciones alcontró una condición inesperada qu'evitó que cumpliera la solicitú.
+        temporarily_unavailable: Anguaño'l sirvidor d'autorizaciones nun ye a remanar la solicitú pola mor d'una sobrecarga temporal o caltenimientu del sirvidor.
         unauthorized_client: El veceru nun ta autorizáu pa facer esta solicitú usando esti métodu.
         unsupported_response_type: El sirvidor d'autorización nun sofita esta triba de rempuesta.
     layouts:
@@ -52,13 +72,21 @@ ast:
           applications: Aplicaciones
           oauth2_provider: Fornidor d'OAuth2
     scopes:
+      admin:read: lleer tolos datos del sirvidor
+      admin:read:accounts: lleer la información sensible de toles cuentes
+      admin:read:reports: lleer la información sensible de tolos informe y cuentes informaes
+      admin:write: modificar tolos datos del sirvidor
+      read: lleer tolos datos de la to cuenta
       read:accounts: ver información de cuentes
       read:blocks: ver quién bloquies
+      read:bookmarks: ver los tos marcadores
+      read:favourites: ver los tos favoritos
       read:filters: ver les tos peñeres
       read:follows: ver quién sigues
       read:lists: ver les tos llistes
       read:mutes: ver quién silencies
       read:notifications: ver los tos avisos
+      read:reports: ver los tos informes
       read:statuses: ver tolos estaos
       write: modificar los datos de la to cuenta
       write:accounts: modificar el to perfil
@@ -66,7 +94,7 @@ ast:
       write:filters: crear peñeres
       write:follows: siguir a xente
       write:lists: crear llistes
-      write:media: xubir ficheros de medios
+      write:media: xubir ficheros multimedia
       write:mutes: silenciar xente y conversaciones
       write:notifications: llimpiar los tos avisos
       write:statuses: espublizar estaos
diff --git a/config/locales/doorkeeper.ca.yml b/config/locales/doorkeeper.ca.yml
index dde70f47a393b8e71aad4738abb28b61a0f91b35..3c69cf8e7e3f1e92245a9612b62a449f2c9307fb 100644
--- a/config/locales/doorkeeper.ca.yml
+++ b/config/locales/doorkeeper.ca.yml
@@ -63,18 +63,18 @@ ca:
         prompt: L'aplicació %{client_name} sol⋅licita tenir accés al teu compte
         title: Cal autorizació
       show:
-        title: Copia aquest coddi d'autorització i enganxa'l en l'aplicació.
+        title: Copia aquest codi d'autorització i enganxa'l en l'aplicació.
     authorized_applications:
       buttons:
         revoke: Revoca
       confirmations:
-        revoke: Estàs segur?
+        revoke: N'estàs segur?
       index:
         application: Aplicació
         created_at: Creat el
         date_format: "%A-%m-%d %H:%M:%S"
         scopes: Àmbits
-        title: Les teves aplicacions autoritzades
+        title: Les aplicacions autoritzades
     errors:
       messages:
         access_denied: El propietari del recurs o servidor d'autorizació ha denegat la petició.
@@ -124,7 +124,8 @@ ca:
       push: rebre notificacions push del teu compte
       read: llegir les dades del teu compte
       read:accounts: veure informació dels comptes
-      read:blocks: veure els teus bloqueijos
+      read:blocks: veure els teus bloqueigs
+      read:bookmarks: veure els teus marcadors
       read:favourites: veure els teus favorits
       read:filters: veure els teus filtres
       read:follows: veure els teus seguiments
@@ -133,11 +134,12 @@ ca:
       read:notifications: veure les teves notificacions
       read:reports: veure els teus informes
       read:search: cerca en nom teu
-      read:statuses: veure tots els toots
+      read:statuses: veure tots els tuts
       write: publicar en el teu nom
       write:accounts: modifica el teu perfil
       write:blocks: bloqueja comptes i dominis
-      write:favourites: afavoreix toots
+      write:bookmarks: publicacions a marcadors
+      write:favourites: afavoreix tuts
       write:filters: crear filtres
       write:follows: seguir usuaris
       write:lists: crear llistes
@@ -145,4 +147,4 @@ ca:
       write:mutes: silencia usuaris i converses
       write:notifications: esborra les teves notificacions
       write:reports: informe d’altres persones
-      write:statuses: publicar toots
+      write:statuses: publicar tuts
diff --git a/config/locales/doorkeeper.co.yml b/config/locales/doorkeeper.co.yml
index d45041a4e1bcadc688a3a21b72ce0f4a229bd38c..a64a0793182a27c92c065bf090f547b41e544a61 100644
--- a/config/locales/doorkeeper.co.yml
+++ b/config/locales/doorkeeper.co.yml
@@ -125,6 +125,7 @@ co:
       read: leghje tutte l’infurmazioni di u vostru contu
       read:accounts: Vede l'infurmazione di i conti
       read:blocks: vede i vostri blucchimi
+      read:bookmarks: vede i vostri segnalibri
       read:favourites: vede i vostri favuriti
       read:filters: vede i vostri filtri
       read:follows: vede i vostri abbunamenti
@@ -137,6 +138,7 @@ co:
       write: mudificà i dati di u vostru contu
       write:accounts: mudificà u prufile
       write:blocks: bluccà conti è dumini
+      write:bookmarks: segnà statuti
       write:favourites: aghjustà statuti à i favuriti
       write:filters: creà filtri
       write:follows: siguità conti
diff --git a/config/locales/doorkeeper.cs.yml b/config/locales/doorkeeper.cs.yml
index cb5cd147c5a88fbc6a3f44addccd7fe13a70e7d1..8c5c175f5d3997785a1e8bc78fd88bfc280b09f1 100644
--- a/config/locales/doorkeeper.cs.yml
+++ b/config/locales/doorkeeper.cs.yml
@@ -14,8 +14,8 @@ cs:
             redirect_uri:
               fragment_present: nesmí obsahovat fragment.
               invalid_uri: musí být platné URI.
-              relative_uri: musí být apsolutní URI.
-              secured_uri: musí být URI HTTPS/SSL.
+              relative_uri: musí být absolutní URI.
+              secured_uri: musí být HTTPS/SSL URI.
   doorkeeper:
     applications:
       buttons:
@@ -25,15 +25,15 @@ cs:
         edit: Upravit
         submit: Odeslat
       confirmations:
-        destroy: Jste si jistý/á?
+        destroy: Opravdu?
       edit:
         title: Upravit aplikaci
       form:
-        error: A jéje! Zkontrolujte svůj formulář kvůli případným chybám
+        error: A jéje! Zkontrolujte ve formuláři případné chyby
       help:
         native_redirect_uri: Pro místní testy použijte %{native_redirect_uri}
         redirect_uri: Jedno URI na každý řádek
-        scopes: Oddělujte rozsahy mezerami. Pro použití výchozích rozsahů zanechte prázdné.
+        scopes: Oddělujte rozsahy mezerami. Pro použití výchozích rozsahů ponechte prázdné.
       index:
         application: Aplikace
         callback_url: Zpáteční URL
@@ -50,7 +50,7 @@ cs:
         application_id: Klientský klíč
         callback_urls: Zpáteční URL
         scopes: Rozsahy
-        secret: Klientské tajemství
+        secret: Klientský secret
         title: 'Aplikace: %{name}'
     authorizations:
       buttons:
@@ -68,7 +68,7 @@ cs:
       buttons:
         revoke: Zamítnout
       confirmations:
-        revoke: Jste si jistý/á?
+        revoke: Opravdu?
       index:
         application: Aplikace
         created_at: Autorizováno
@@ -77,14 +77,14 @@ cs:
         title: Vaše autorizované aplikace
     errors:
       messages:
-        access_denied: Vlastník zdroje či autorizační server zamítl požadavek.
+        access_denied: Vlastník zdroje či autorizační server žádost zamítl.
         credential_flow_not_configured: Proud Resource Owner Password Credentials selhal, protože Doorkeeper.configure.resource_owner_from_credentials nebylo nakonfigurováno.
         invalid_client: Ověření klienta selhalo kvůli neznámému klientovi, chybějící klientské autentizaci či nepodporované autentizační metodě.
-        invalid_grant: Poskytnuté oprávnění je neplatné, vypršelé, zamítnuté, neshoduje se s URI přesměrování použitým v požadavku o autorizaci, nebo bylo uděleno jinému klientu.
-        invalid_redirect_uri: Přesměrovací URI není platné.
-        invalid_request: Požadavku chybí pžadovaný parametr, obsahuje nepodporovanou hodnotu parametru, či je jinak malformovaný.
+        invalid_grant: Poskytnuté oprávnění je neplatné, vypršela jeho platnost, bylo zamítnuto, neshoduje se s URI přesměrování použitým v požadavku o autorizaci, nebo bylo uděleno jinému klientu.
+        invalid_redirect_uri: URI pro přesměrování není platné.
+        invalid_request: Požadavku chybí povinný parametr, obsahuje nepodporovanou hodnotu parametru, či je jinak špatné formulovaný.
         invalid_resource_owner: Poskytnuté přihlašovací údaje vlastníka zdroje nejsou platné, nebo vlastník zdroje nemůže být nalezen
-        invalid_scope: Požadovaný rozsah je neplatný, neznámý, nebo malformovaný.
+        invalid_scope: Požadovaný rozsah je neplatný, neznámý, nebo špatně formulovaný.
         invalid_token:
           expired: Přístupový token vypršel
           revoked: Přístupový token byl zamítnut
@@ -93,8 +93,8 @@ cs:
         server_error: Autorizační server se setkal s neočekávanou chybou, která mu zabránila ve vykonání požadavku.
         temporarily_unavailable: Autorizační server vás nyní nemůže obsloužit kvůli dočasnému přetížení či údržbě serveru.
         unauthorized_client: Klient není autorizován k vykonání tohoto požadavku touto metodou.
-        unsupported_grant_type: Tento typ oprávnění není podporován autorizačním serverem.
-        unsupported_response_type: Autorizační server nepodporuje tento typ odpovědi.
+        unsupported_grant_type: Tento typ oprávnění není autorizačním serverem podporován.
+        unsupported_response_type: Autorizační server tento typ odpovědi nepodporuje.
     flash:
       applications:
         create:
@@ -119,30 +119,32 @@ cs:
       admin:read:reports: číst citlivé informace všech nahlášení a nahlášených účtů
       admin:write: měnit všechna data na serveru
       admin:write:accounts: provádět moderátorské akce s účty
-      admin:write:reports: provádět moderátorské akce s nahlášeními
+      admin:write:reports: provádět moderátorské akce s hlášeními
       follow: upravovat vztahy mezi profily
       push: přijímat vaše push oznámení
       read: vidět všechna data vašeho účtu
       read:accounts: vidět informace o účtech
       read:blocks: vidět vaše blokace
-      read:favourites: vidět vaše oblíbení
+      read:bookmarks: vidět vaše záložky
+      read:favourites: vidět vaše oblíbené příspěvky
       read:filters: vidět vaše filtry
       read:follows: vidět vaše sledování
       read:lists: vidět vaše seznamy
       read:mutes: vidět vaše skrytí
       read:notifications: vidět vaše oznámení
-      read:reports: vidět vaše nahlášení
+      read:reports: vidět vaše hlášení
       read:search: vyhledávat za vás
       read:statuses: vidět všechny tooty
       write: měnit všechna data vašeho účtu
       write:accounts: měnit váš profil
       write:blocks: blokovat účty a domény
-      write:favourites: oblibovat si tooty
+      write:bookmarks: přidávat tooty do záložek
+      write:favourites: označovat tooty jako oblíbené
       write:filters: vytvářet filtry
       write:follows: sledovat lidi
       write:lists: vytvářet seznamy
       write:media: nahrávat mediální soubory
       write:mutes: skrývat lidi a konverzace
-      write:notifications: vymazávat vaše oznámení
+      write:notifications: mazat vaše oznámení
       write:reports: nahlašovat jiné uživatele
-      write:statuses: publikovat tooty
+      write:statuses: zvařejňovat tooty
diff --git a/config/locales/doorkeeper.cy.yml b/config/locales/doorkeeper.cy.yml
index e29043e86ffc3bfeadd16c03de03f584990ad98f..08e4baaff3150c58cdd8a38df14acd5dcdde3949 100644
--- a/config/locales/doorkeeper.cy.yml
+++ b/config/locales/doorkeeper.cy.yml
@@ -125,6 +125,7 @@ cy:
       read: darllen holl ddata eich cyfrif
       read:accounts: gweld gwybodaeth y cyfrif
       read:blocks: gweld eich blociau
+      read:bookmarks: gweld eich tudalnodau
       read:favourites: gweld eich ffefrynnau
       read:filters: gweld eich hidlwyr
       read:follows: gweld eich dilynwyr
@@ -137,6 +138,7 @@ cy:
       write: addasu holl ddata eich cyfri
       write:accounts: addasu eich proffil
       write:blocks: blocio cyfrifon a parthau
+      write:bookmarks: statwsau tudalnod
       write:favourites: hoff dŵtiau
       write:filters: creu hidlwyr
       write:follows: dilyn pobl
diff --git a/config/locales/doorkeeper.da.yml b/config/locales/doorkeeper.da.yml
index 4d2c95affed6b3acf725cfe5c0e2c535f6dd742f..04f524c0a102eaef63c618316c44e29f810f7525 100644
--- a/config/locales/doorkeeper.da.yml
+++ b/config/locales/doorkeeper.da.yml
@@ -61,7 +61,7 @@ da:
       new:
         able_to: Den vil være i stand til
         prompt: Applikationen %{client_name} anmoder om adgang til din konto
-        title: Godkendelse påkræves
+        title: Godkendelse påkrævet
       show:
         title: Kopiere denne godkendelseskode og indsæt den i applikationen.
     authorized_applications:
@@ -125,6 +125,7 @@ da:
       read: læse alle din kontos data
       read:accounts: se konto oplysninger
       read:blocks: se dine blokeringer
+      read:bookmarks: se dine bogmærker
       read:favourites: se dine favoritter
       read:filters: se dine filtre
       read:follows: se hvem du følger
@@ -137,6 +138,7 @@ da:
       write: ændre din kontos data
       write:accounts: ændre din profil
       write:blocks: bloker konti og domæner
+      write:bookmarks: bogmærk statusser
       write:favourites: favoriser statusser
       write:filters: opret filtre
       write:follows: følg folk
diff --git a/config/locales/doorkeeper.de.yml b/config/locales/doorkeeper.de.yml
index c41a847b2d6652d992b6f32d5a1ae0232f5a098f..65fb2de88a56f1482de2ff93c45e7bfd3fc519bf 100644
--- a/config/locales/doorkeeper.de.yml
+++ b/config/locales/doorkeeper.de.yml
@@ -125,6 +125,7 @@ de:
       read: all deine Daten lesen
       read:accounts: deine Konteninformationen einsehen
       read:blocks: deine Blockaden einsehen
+      read:bookmarks: deine Lesezeichen lesen
       read:favourites: deine Favoriten ansehen
       read:filters: deine Filter ansehen
       read:follows: sehen, wem du folgst
@@ -137,6 +138,7 @@ de:
       write: all deine Benutzerdaten verändern
       write:accounts: dein Profil bearbeiten
       write:blocks: Domains und Konten blockieren
+      write:bookmarks: Lesezeichen hinzufügen
       write:favourites: Beiträge favorisieren
       write:filters: Filter erstellen
       write:follows: Leuten folgen
diff --git a/config/locales/doorkeeper.el.yml b/config/locales/doorkeeper.el.yml
index 66bee0b0d835beec7beb3f38aa6951ff4712d08d..d4bf0ae7752dd17154bdb150f6894d65b79d009b 100644
--- a/config/locales/doorkeeper.el.yml
+++ b/config/locales/doorkeeper.el.yml
@@ -125,6 +125,7 @@ el:
       read: να διαβάζει όλα τα στοιχεία του λογαριασμού σου
       read:accounts: να βλέπει τα στοιχεία λογαριασμών
       read:blocks: να βλέπει τους αποκλεισμένους σου
+      read:bookmarks: εμφάνιση των σελιδοδεικτών σας
       read:favourites: να βλέπει τα αγαπημένα σου
       read:filters: να βλέπει τα φίλτρα σου
       read:follows: να βλέπει ποιους ακολουθείς
@@ -137,6 +138,7 @@ el:
       write: να αλλάζει όλα τα στοιχεία του λογαριασμού σου
       write:accounts: να αλλάζει το προφίλ σου
       write:blocks: να μπλοκάρει λογαριασμούς και τομείς
+      write:bookmarks: προσθήκη σελιδοδεικτών
       write:favourites: να σημειώνει δημοσιεύσεις ως αγαπημένες
       write:filters: να δημιουργεί φίλτρα
       write:follows: να ακολουθεί ανθρώπους
diff --git a/config/locales/doorkeeper.en.yml b/config/locales/doorkeeper.en.yml
index d9b7c2c8ebe56bcfdd8a655370f3d42e74267db1..2be2ef0364d4b9a49a2ccea21c976881743b89f2 100644
--- a/config/locales/doorkeeper.en.yml
+++ b/config/locales/doorkeeper.en.yml
@@ -38,6 +38,7 @@ en:
         application: Application
         callback_url: Callback URL
         delete: Delete
+        empty: You have no applications.
         name: Name
         new: New application
         scopes: Scopes
@@ -125,6 +126,7 @@ en:
       read: read all your account's data
       read:accounts: see accounts information
       read:blocks: see your blocks
+      read:bookmarks: see your bookmarks
       read:favourites: see your favourites
       read:filters: see your filters
       read:follows: see your follows
@@ -137,6 +139,7 @@ en:
       write: modify all your account's data
       write:accounts: modify your profile
       write:blocks: block accounts and domains
+      write:bookmarks: bookmark statuses
       write:favourites: favourite statuses
       write:filters: create filters
       write:follows: follow people
diff --git a/config/locales/doorkeeper.eo.yml b/config/locales/doorkeeper.eo.yml
index 171e7d40464b46a4c9d6bba72490ecb8a1e834e5..cb12d0e8212cd67157513dafdb2a503ca0964d65 100644
--- a/config/locales/doorkeeper.eo.yml
+++ b/config/locales/doorkeeper.eo.yml
@@ -116,13 +116,16 @@ eo:
     scopes:
       admin:read: legu ĉiujn datumojn en la servilo
       admin:read:accounts: legas senteman informacion de ĉiuj kontoj
-      admin:read:reports: legas senteman informacion de ĉiuj raportoj kun raportis kontojn
+      admin:read:reports: legas konfidencajn informojn de ĉiuj signaloj kaj signalitaj kontoj
       admin:write: modifu ĉiujn datumojn en la servilo
+      admin:write:accounts: plenumi agojn de kontrolo sur kontoj
+      admin:write:reports: plenumi agojn de kontrolo sur signaloj
       follow: ŝanĝi rilatojn al aliaj kontoj
       push: ricevi viajn puŝ-sciigojn
       read: legi ĉiujn datumojn de via konto
       read:accounts: vidi la informojn de la konto
       read:blocks: vidi viajn blokojn
+      read:bookmarks: vidi viajn legosignojn
       read:favourites: vidi viajn stelumojn
       read:filters: vidi viajn filtrilojn
       read:follows: vidi viajn sekvatojn
@@ -135,6 +138,7 @@ eo:
       write: ŝanĝi ĉiujn datumojn de via konto
       write:accounts: ŝanĝi vian profilon
       write:blocks: bloki kontojn kaj domajnojn
+      write:bookmarks: aldoni mesaĝojn al la legosignoj
       write:favourites: stelumitaj mesaĝoj
       write:filters: krei filtrilojn
       write:follows: sekvi homojn
diff --git a/config/locales/doorkeeper.es-AR.yml b/config/locales/doorkeeper.es-AR.yml
index 515d5c1ed90e1b9725f1a1648a82ee512d0575ea..61b14ba16c74f63d3a3e64fae988209775f8cb61 100644
--- a/config/locales/doorkeeper.es-AR.yml
+++ b/config/locales/doorkeeper.es-AR.yml
@@ -1 +1,150 @@
+---
 es-AR:
+  activerecord:
+    attributes:
+      doorkeeper/application:
+        name: Nombre de la aplicación
+        redirect_uri: Dirección web de redireccionamiento
+        scopes: Ámbitos
+        website: Sitio web de la aplicación
+    errors:
+      models:
+        doorkeeper/application:
+          attributes:
+            redirect_uri:
+              fragment_present: no puede contener un fragmento.
+              invalid_uri: debe ser una dirección web válida.
+              relative_uri: debe ser una dirección web absoluta.
+              secured_uri: debe ser una dirección web HTTPS/SSL.
+  doorkeeper:
+    applications:
+      buttons:
+        authorize: Autorizar
+        cancel: Cancelar
+        destroy: Destruir
+        edit: Editar
+        submit: Enviar
+      confirmations:
+        destroy: "¿Estás seguro?"
+      edit:
+        title: Editar aplicación
+      form:
+        error: "¡Epa! Comprobá tu formulario por posibles errores"
+      help:
+        native_redirect_uri: Usá %{native_redirect_uri} para pruebas locales
+        redirect_uri: Usá una línea por dirección web
+        scopes: Separá los ámbitos con espacios. Dejalo en blanco para usar los ámbitos predeterminados.
+      index:
+        application: Aplicación
+        callback_url: Dirección web de respuesta ("callback")
+        delete: Eliminar
+        name: Nombre
+        new: Nueva aplicación
+        scopes: Ámbitos
+        show: Mostrar
+        title: Tus aplicaciones
+      new:
+        title: Nueva aplicación
+      show:
+        actions: Acciones
+        application_id: Clave del cliente
+        callback_urls: Direcciones web de respuesta ("callback")
+        scopes: Ámbitos
+        secret: Secreto del cliente
+        title: 'Aplicación: %{name}'
+    authorizations:
+      buttons:
+        authorize: Autorizar
+        deny: Denegar
+      error:
+        title: Ocurrió un error
+      new:
+        able_to: Será capaz de
+        prompt: La aplicación %{client_name} solicita acceso a tu cuenta
+        title: Autorización requerida
+      show:
+        title: Copiá este código de autorización y pegalo en la aplicación.
+    authorized_applications:
+      buttons:
+        revoke: Revocar
+      confirmations:
+        revoke: "¿Estás seguro?"
+      index:
+        application: Aplicación
+        created_at: Autorizada
+        date_format: "%Y-%m-%d %H:%M:%S"
+        scopes: Ámbitos
+        title: Tus aplicaciones autorizadas
+    errors:
+      messages:
+        access_denied: El propietario del recurso o servidor de autorización denegó la petición.
+        credential_flow_not_configured: Las credenciales de contraseña del propietario del recurso falló debido a que Doorkeeper.configure.resource_owner_from_credentials está sin configurar.
+        invalid_client: La autenticación del cliente falló debido a que es un cliente desconocido, o no está incluída la autenticación del cliente, o el método de autenticación no está soportado.
+        invalid_grant: La concesión de autorización ofrecida no es válida, venció, se revocó, no coincide con la dirección web de redireccionamiento usada en la petición de autorización, o fue emitida para otro cliente.
+        invalid_redirect_uri: La dirección web de redireccionamiento incluida no es válida.
+        invalid_request: En la solicitud falta un parámetro requerido, o incluye un valor de parámetro no soportado, o está corrompida.
+        invalid_resource_owner: Las credenciales proporcionadas del propietario del recurso no son válidas, o no se puede encontrar al propietario del recurso.
+        invalid_scope: El ámbito solicitado no es válido, o conocido, o está corrompido.
+        invalid_token:
+          expired: Venció la clave de acceso
+          revoked: Se revocó la clave de acceso
+          unknown: La clave de acceso no es válida
+        resource_owner_authenticator_not_configured: El propietario del recurso falló debido a que "Doorkeeper.configure.resource_owner_authenticator" está sin configurar.
+        server_error: El servidor de la autorización encontró una condición inesperada que le impidió cumplir con la solicitud.
+        temporarily_unavailable: El servidor de la autorización es actualmente incapaz de manejar la solicitud debido a una sobrecarga temporal o un trabajo de mantenimiento del servidor.
+        unauthorized_client: El cliente no está autorizado a realizar esta solicitud usando este método.
+        unsupported_grant_type: El tipo de concesión de autorización no está soportado por el servidor de autorización.
+        unsupported_response_type: El servidor de autorización no soporta este tipo de respuesta.
+    flash:
+      applications:
+        create:
+          notice: Aplicación creada.
+        destroy:
+          notice: Aplicación eliminada.
+        update:
+          notice: Aplicación actualizada.
+      authorized_applications:
+        destroy:
+          notice: Aplicación revocada.
+    layouts:
+      admin:
+        nav:
+          applications: Aplicaciones
+          oauth2_provider: Proveedor OAuth2
+      application:
+        title: Autorización de OAuth requerida
+    scopes:
+      admin:read: leer todos los datos en el servidor
+      admin:read:accounts: leer información sensible de todas las cuentas
+      admin:read:reports: leer información sensible de todos los informes y cuentas denunciadas
+      admin:write: modificar todos los datos en el servidor
+      admin:write:accounts: ejecutar acciones de moderación en cuentas
+      admin:write:reports: ejecutar acciones de moderación en informes
+      follow: modificar relaciones de cuenta
+      push: recibir tus notificaciones PuSH
+      read: leer todos los datos de tu cuenta
+      read:accounts: ver información de cuentas
+      read:blocks: ver qué cuentas bloqueaste
+      read:bookmarks: mirá tus marcadores
+      read:favourites: ver tus favoritos
+      read:filters: ver tus filtros
+      read:follows: ver qué cuentas seguís
+      read:lists: ver tus listas
+      read:mutes: ver qué cuentas silenciaste
+      read:notifications: ver tus notificaciones
+      read:reports: ver tus informes
+      read:search: buscar en tu nombre
+      read:statuses: ver todos los estados
+      write: modificar todos los datos de tu cuenta
+      write:accounts: modificar tu perfil
+      write:blocks: bloquear cuentas y dominios
+      write:bookmarks: estados del marcador
+      write:favourites: toots favoritos
+      write:filters: crear filtros
+      write:follows: seguir cuentas
+      write:lists: crear listas
+      write:media: subir archivos de medios
+      write:mutes: silenciar usuarios y conversaciones
+      write:notifications: limpiá tus notificaciones
+      write:reports: denunciar otras cuentas
+      write:statuses: publicar estados
diff --git a/config/locales/doorkeeper.es.yml b/config/locales/doorkeeper.es.yml
index 1b03e33f2f086e82272a4829eab109ea89338920..75a04eccf24958230f0e8f49faa8b8f70b679a21 100644
--- a/config/locales/doorkeeper.es.yml
+++ b/config/locales/doorkeeper.es.yml
@@ -125,6 +125,7 @@ es:
       read: leer los datos de tu cuenta
       read:accounts: ver información de cuentas
       read:blocks: ver a quién has bloqueado
+      read:bookmarks: ver tus marcadores
       read:favourites: ver tus favoritos
       read:filters: ver tus filtros
       read:follows: ver a quién sigues
@@ -137,7 +138,8 @@ es:
       write: publicar en tu nombre
       write:accounts: modifica tu perfil
       write:blocks: bloquear cuentas y dominios
-      write:favourites: toots favoritos
+      write:bookmarks: guardar estados como marcadores
+      write:favourites: estados favoritos
       write:filters: crear filtros
       write:follows: seguir usuarios
       write:lists: crear listas
diff --git a/config/locales/doorkeeper.et.yml b/config/locales/doorkeeper.et.yml
index f2a33ad0a85f859399509b4ab66ab2599529a04a..8fb9446317872b8b432bd76190764ddbea0f113a 100644
--- a/config/locales/doorkeeper.et.yml
+++ b/config/locales/doorkeeper.et.yml
@@ -125,6 +125,7 @@ et:
       read: lugeda kogu Teie konto andmeid
       read:accounts: näha konto informatsiooni
       read:blocks: näha Teie blokeeringuid
+      read:bookmarks: näha järjehoidjaid
       read:favourites: näha Teie lemmikuid
       read:filters: näha Teie filtreid
       read:follows: näha Teie jälgimisi
@@ -137,6 +138,7 @@ et:
       write: redigeerida kogu Teie konto andmeid
       write:accounts: redigeerida Teie profiili
       write:blocks: blokeerida kontosid ja domeene
+      write:bookmarks: lisada staatusele järjehoidjaid
       write:favourites: lisada staatuseid lemmikuks
       write:filters: luua filtreid
       write:follows: jälgida inimesi
diff --git a/config/locales/doorkeeper.eu.yml b/config/locales/doorkeeper.eu.yml
index 70e52e8ad90133319d265120ca203eb489720f05..19cc4099281da94fe9d8d964c736496b89fa2987 100644
--- a/config/locales/doorkeeper.eu.yml
+++ b/config/locales/doorkeeper.eu.yml
@@ -125,6 +125,7 @@ eu:
       read: irakurri zure kontuko datu guztiak
       read:accounts: ikusi kontuaren informazioa
       read:blocks: ikusi zure blokeoak
+      read:bookmarks: ikusi zure laster-markak
       read:favourites: ikusi zure gogokoak
       read:filters: ikusi zure iragazkiak
       read:follows: ikusi zuk jarraitutakoak
@@ -137,6 +138,7 @@ eu:
       write: kontuaren datu guztiak aldatzea
       write:accounts: zure profila aldatzea
       write:blocks: kontuak eta domeinuak blokeatzea
+      write:bookmarks: mezuen laster-marka
       write:favourites: gogoko mezuak
       write:filters: sortu iragazkiak
       write:follows: jarraitu jendea
diff --git a/config/locales/doorkeeper.fa.yml b/config/locales/doorkeeper.fa.yml
index b677c334676c7b7364868c9e0dd170318e2dc2af..03a8d7963e5ab21e925b3e6c3efcd2fd894b59a3 100644
--- a/config/locales/doorkeeper.fa.yml
+++ b/config/locales/doorkeeper.fa.yml
@@ -5,8 +5,8 @@ fa:
       doorkeeper/application:
         name: نام برنامه
         redirect_uri: نشانی تغییرمسیر
-        scopes: محدوده
-        website: وبگاه برنامه
+        scopes: حوزه‌ها
+        website: پایگاه وب برنامه
     errors:
       models:
         doorkeeper/application:
@@ -23,6 +23,7 @@ fa:
         cancel: لغو
         destroy: پاک کردن
         edit: ویرایش
+        submit: ثبت
       confirmations:
         destroy: آیا مطمئن هستید؟
       edit:
@@ -45,6 +46,7 @@ fa:
       new:
         title: برنامهٔ تازه
       show:
+        actions: کنش‌ها
         application_id: کلید کلاینت
         callback_urls: نشانی‌های Callabck
         scopes: دامنه‌ها
@@ -70,17 +72,29 @@ fa:
       index:
         application: برنامه
         created_at: مجازشده از
+        date_format: "%Y-%m-%d%H:%M:%S"
         scopes: اجازه‌ها
         title: برنامه‌های مجاز
     errors:
       messages:
         access_denied: دارندهٔ منبع یا سرور اجازه دهنده درخواست را نپذیرفت.
+        credential_flow_not_configured: جریان اعتبارنامهٔ گذرواژهٔ مالک منبع به دلیل پیکربندی نشده بودن Doorkeeper.configure.resource_owner_from_credentials شکست خورد.
+        invalid_client: تأیید هویت کارخواه به دلیل کارخواه ناشناخته، عدم وجود تأیید هویت کاره یا روش تأیید هویت پشتیبانی‌نشده شکست خورد.
+        invalid_grant: اعطای دسترسی فراهم ‌شده نامعتبر، منقضی یا نامطابق با نشانی بازگشت استفاده‌شده در درخواست تأیید هویت بوده و یا برای کارخواهی دیگر صادر شده است.
+        invalid_redirect_uri: نشانی بازگشت موجود، معتبر نیست.
+        invalid_request: درخواست فاقد یک پارامتر ضروری، شامل یک پارامتر پشتیبانی‌نشده یا به‌هم ریخته است.
+        invalid_resource_owner: اعتبارنامهٔ مالک منبع فراهم‌شده نامعتبر بوده یا مالک منبع نتوانست پیدا شود
+        invalid_scope: حوزهٔ درخواستی نامعتبر، ناشناخته یا دستکاری‌شده است.
         invalid_token:
           expired: کد دسترسی منقضی شده است
           revoked: کد دسترسی فسخ شده است
           unknown: کد دسترسی معتبر نیست
+        resource_owner_authenticator_not_configured: یافتن مالک منبع به دلیل پیکربندی‌نشده بودن Doorkeeper.configure.resource_owner_authenticator شکست خورد.
         server_error: خطای پیش‌بینی‌نشده‌ای برای سرور اجازه‌دهنده رخ داد که جلوی اجرای این درخواست را گرفت.
         temporarily_unavailable: سرور اجازه‌دهنده به دلیل بار زیاد یا تعمیرات سرور هم‌اینک نمی‌تواند درخواست شما را بررسی کند.
+        unauthorized_client: کارخواه مجاز نیست این درخواست را با استفاده از این روش انجام دهد.
+        unsupported_grant_type: گونهٔ اعطای تأیید هویت توسّط کارساز تأیید هویتپشتیبانی نمی‌شود.
+        unsupported_response_type: کارساز تأیید هویت این گونه از پاسخ را پشتیبانی نمی‌کند.
     flash:
       applications:
         create:
@@ -100,7 +114,37 @@ fa:
       application:
         title: درخواست اجازهٔ OAuth
     scopes:
+      admin:read: خواندن تمام داده‌ها روی کارساز
+      admin:read:accounts: خواندن اطّلاعات حساس از همهٔ حساب‌ها
+      admin:read:reports: خواندن اطّلاعات حساس از همهٔ گزارش‌ها و حساب‌های گزارش‌شده
+      admin:write: تغییر تمام داده‌ها روی کارساز
+      admin:write:accounts: انجام کنش مدیریتی روی حساب‌ها
+      admin:write:reports: انجام کنش مدیریتی روی گزارش‌ها
       follow: پیگیری، مسدودسازی، لغو مسدودسازی، و لغو پیگیری حساب‌ها
       push: برای حساب خود اعلان‌های لحظه‌ای دریافت کنید
       read: خواندن اطلاعات حساب شما
+      read:accounts: دیدن اطّلاعات حساب
+      read:blocks: دیدن انسدادهایتان
+      read:bookmarks: دیدن نشانک‌هایتان
+      read:favourites: دیدن برگزیده‌هایتان
+      read:filters: دیدن پالایه‌هایتان
+      read:follows: دیدن پی‌گیری‌هایتان
+      read:lists: دیدن فهرست‌هایتان
+      read:mutes: دیدن خموشی‌هایتان
+      read:notifications: دیدن آگاهی‌هایتان
+      read:reports: دیدن گزارش‌هایتان
+      read:search: حست‌وجو از سمت خودتان
+      read:statuses: دیدن همهٔ وضعیت‌ها
       write: انتشار مطالب از طرف شما
+      write:accounts: تغییر نمایه‌تان
+      write:blocks: انسداد حساب‌ها و دامنه‌ها
+      write:bookmarks: نشانک‌گذاری وضعیت‌ها
+      write:favourites: برگزیدن وضعیت‌ها
+      write:filters: ایحاد پالایش‌ها
+      write:follows: پی‌گیری افراد
+      write:lists: ایجاد فهرست‌ها
+      write:media: بارگذاری پرونده‌های رسانه
+      write:mutes: خموش کردن افراد و گفت‌وگوها
+      write:notifications: پام‌سازی آگاهی‌هایتان
+      write:reports: گزارش دیگر افراد
+      write:statuses: انتشار وضعیت‌ها
diff --git a/config/locales/doorkeeper.fi.yml b/config/locales/doorkeeper.fi.yml
index 10613d435df8f33fad75960815f9c8579aad2706..abe1a96b2b3a45ad47128c0ea36d81ca9aa1816c 100644
--- a/config/locales/doorkeeper.fi.yml
+++ b/config/locales/doorkeeper.fi.yml
@@ -72,6 +72,7 @@ fi:
       index:
         application: Sovellus
         created_at: Valtuutettu
+        date_format: "%d/%m/%Y %H:%M:%S"
         scopes: Oikeudet
         title: Valtuutetut sovellukset
     errors:
@@ -113,6 +114,17 @@ fi:
       application:
         title: OAuth-valtuutus tarvitaan
     scopes:
+      admin:read: lukea kaikkia tietoja palvelimelta
+      admin:read:accounts: lukea arkaluontoista sisältöä kaikista tileistä
+      admin:write: muokata kaikkia tietoja palvelimella
       follow: seurata, estää, perua eston ja lopettaa tilien seuraaminen
+      push: vastaanottaa push-ilmoituksesi
       read: lukea tilin tietoja
+      read:accounts: nähdä tilin tiedot
       write: julkaista puolestasi
+      write:accounts: muokata profiiliasi
+      write:filters: luoda suodattimia
+      write:follows: seurata ihmisiä
+      write:lists: luoda listoja
+      write:media: lähettää mediatiedostoja
+      write:notifications: tyhjentää ilmoituksesi
diff --git a/config/locales/doorkeeper.fr.yml b/config/locales/doorkeeper.fr.yml
index 09908b89aab2de8ae764d5e71a35a66fac7d90d3..11bbe8cf1d93d389940fbf60439e67a1a15592da 100644
--- a/config/locales/doorkeeper.fr.yml
+++ b/config/locales/doorkeeper.fr.yml
@@ -33,14 +33,14 @@ fr:
       help:
         native_redirect_uri: Utiliser %{native_redirect_uri} pour les tests locaux
         redirect_uri: Utiliser une ligne par URL
-        scopes: Séparer les portées avec des espaces. Laisser vide pour utiliser les portées par défaut.
+        scopes: Séparer les permissions avec des espaces. Laisser vide pour utiliser les portées par défaut.
       index:
         application: Application
         callback_url: URL de retour d’appel
         delete: Effacer
         name: Nom
         new: Nouvelle application
-        scopes: Portées
+        scopes: Permissions
         show: Voir
         title: Vos applications
       new:
@@ -49,7 +49,7 @@ fr:
         actions: Actions
         application_id: ID de l’application
         callback_urls: URL du retour d’appel
-        scopes: Portées
+        scopes: Permissions
         secret: Secret
         title: 'Application : %{name}'
     authorizations:
@@ -73,7 +73,7 @@ fr:
         application: Application
         created_at: Créé le
         date_format: "%d-%m-%Y %H:%M:%S"
-        scopes: permissions
+        scopes: Permissions
         title: Vos applications autorisées
     errors:
       messages:
@@ -84,7 +84,7 @@ fr:
         invalid_redirect_uri: L’URL de redirection n’est pas valide.
         invalid_request: La requête omet un paramètre requis, inclut une valeur de paramètre non prise en charge ou est autrement mal formée.
         invalid_resource_owner: Les identifiants fournis par le propriétaire de la ressource ne sont pas valides ou le propriétaire de la ressource ne peut être trouvé
-        invalid_scope: La portée demandée n’est pas valide, est inconnue ou mal formée.
+        invalid_scope: La permission demandée est invalide, inconnue ou mal formée.
         invalid_token:
           expired: Le jeton d’accès a expiré
           revoked: Le jeton d’accès a été révoqué
@@ -119,30 +119,32 @@ fr:
       admin:read:reports: lire les informations sensibles de tous les signalements et des comptes signalés
       admin:write: modifier toutes les données sur le serveur
       admin:write:accounts: effectuer des actions de modération sur les comptes
-      admin:write:reports: effectuer des actions de modération sur les singnalements
-      follow: modifier les relations avec les comptes
-      push: recevoir vos notifications
+      admin:write:reports: effectuer des actions de modération sur les signalements
+      follow: modifier les relations du compte
+      push: recevoir vos notifications poussées
       read: lire toutes les données de votre compte
-      read:accounts: voir les informations du compte
-      read:blocks: voir vos bloquages
+      read:accounts: voir les informations des comptes
+      read:blocks: voir vos blocages
+      read:bookmarks: voir vos marque-pages
       read:favourites: voir vos favoris
       read:filters: voir vos filtres
-      read:follows: voir vos suivis
+      read:follows: voir vos abonnements
       read:lists: voir vos listes
       read:mutes: voir vos masquages
       read:notifications: voir vos notifications
-      read:reports: voir vos rapports
+      read:reports: voir vos signalements
       read:search: rechercher en votre nom
       read:statuses: voir tous les statuts
       write: modifier toutes les données de votre compte
       write:accounts: modifier votre profil
       write:blocks: bloquer des comptes et des domaines
-      write:favourites: statuts favoris
+      write:bookmarks: statuts des marque-pages
+      write:favourites: mettre des statuts en favori
       write:filters: créer des filtres
-      write:follows: suivre les gens
+      write:follows: suivre des personnes
       write:lists: créer des listes
-      write:media: téléverser des fichiers-média
+      write:media: téléverser des fichiers média
       write:mutes: masquer des gens et des conversations
       write:notifications: nettoyer vos notifications
-      write:reports: rapporter d’autres personnes
+      write:reports: signaler d’autres personnes
       write:statuses: publier des statuts
diff --git a/config/locales/doorkeeper.gl.yml b/config/locales/doorkeeper.gl.yml
index 90cbd9b38d1817d0e62d88e382550db32741d16d..9cb5d754c8f03ad6a452a4e40dc7ad02a08763d6 100644
--- a/config/locales/doorkeeper.gl.yml
+++ b/config/locales/doorkeeper.gl.yml
@@ -125,6 +125,7 @@ gl:
       read: ler todos os datos da súa conta
       read:accounts: ver información das contas
       read:blocks: ver a quen bloquea
+      read:bookmarks: aquí tes os marcadores
       read:favourites: ver as súas favoritas
       read:filters: ver os seus filtros
       read:follows: ver a quen segue
@@ -137,6 +138,7 @@ gl:
       write: modificar todos os datos da súa conta
       write:accounts: modificar o seu perfil
       write:blocks: bloquear contas e dominios
+      write:bookmarks: marca os estados
       write:favourites: estados favoritos
       write:filters: crear filtros
       write:follows: seguir usuarias
diff --git a/config/locales/doorkeeper.hi.yml b/config/locales/doorkeeper.hi.yml
new file mode 100644
index 0000000000000000000000000000000000000000..d758a5b5357d76effdf363eeb2c8e0dfb231c4aa
--- /dev/null
+++ b/config/locales/doorkeeper.hi.yml
@@ -0,0 +1 @@
+hi:
diff --git a/config/locales/doorkeeper.hu.yml b/config/locales/doorkeeper.hu.yml
index 92b4e6839bb7a7d4284c80cecb6cdab42bd9c2bf..61e7dd5f127f4cf9b62a3ff860db7e56729639e0 100644
--- a/config/locales/doorkeeper.hu.yml
+++ b/config/locales/doorkeeper.hu.yml
@@ -125,6 +125,7 @@ hu:
       read: fiókod adatainak olvasása
       read:accounts: fiók adatainak megtekintése
       read:blocks: letiltások megtekintése
+      read:bookmarks: könyvjelzőid megtekintése
       read:favourites: kedvencek megtekintése
       read:filters: szűrök megtekintése
       read:follows: követések megtekintése
@@ -137,6 +138,7 @@ hu:
       write: fiókod adatainak megváltoztatása
       write:accounts: profilod megváltoztatása
       write:blocks: fiókok és domainek letiltása
+      write:bookmarks: könyvjelzők állapota
       write:favourites: tülkök kedvencnek jelölése
       write:filters: szűrők létrehozása
       write:follows: mások követése
diff --git a/config/locales/doorkeeper.id.yml b/config/locales/doorkeeper.id.yml
index 08d2470f054061d4bfbadb16e411809910af1bfe..efaeaae16990b8cf7d063a9c291f16d2158a32f0 100644
--- a/config/locales/doorkeeper.id.yml
+++ b/config/locales/doorkeeper.id.yml
@@ -125,6 +125,7 @@ id:
       read: membaca data pada akun anda
       read:accounts: lihat informasi akun
       read:blocks: lihat blokiran Anda
+      read:bookmarks: lihat markah Anda
       read:favourites: lihat favorit Anda
       read:filters: lihat saringan Anda
       read:follows: lihat yang Anda ikuti
@@ -137,6 +138,7 @@ id:
       write: memposting sebagai anda
       write:accounts: ubah profil Anda
       write:blocks: blokir akun dan domain
+      write:bookmarks: status markah
       write:favourites: status favorit
       write:filters: buat saringan
       write:follows: ikuti orang
diff --git a/config/locales/doorkeeper.is.yml b/config/locales/doorkeeper.is.yml
new file mode 100644
index 0000000000000000000000000000000000000000..31c4bca9f96c8158ce928538b0a89526ddb5ff06
--- /dev/null
+++ b/config/locales/doorkeeper.is.yml
@@ -0,0 +1,140 @@
+---
+is:
+  activerecord:
+    attributes:
+      doorkeeper/application:
+        name: Heiti forrits
+        redirect_uri: Slóð endurbeiningar
+        scopes: Gildissvið
+        website: Vefsvæði forrits
+    errors:
+      models:
+        doorkeeper/application:
+          attributes:
+            redirect_uri:
+              fragment_present: má ekki innihalda brot.
+              invalid_uri: verður að vera gild URI-slóð.
+              relative_uri: verður að vera algild URI-slóð.
+              secured_uri: verður að vera HTTPS/SSL URI-slóð.
+  doorkeeper:
+    applications:
+      buttons:
+        authorize: Heimila
+        cancel: Hætta við
+        destroy: Eyðileggja
+        edit: Breyta
+        submit: Senda inn
+      confirmations:
+        destroy: Ertu viss?
+      edit:
+        title: Breyta forriti
+      form:
+        error: Úbbs! Athugaðu með mögulegar villur í útfyllingarreitum
+      help:
+        native_redirect_uri: Notaðu %{native_redirect_uri} fyrir staðværar prófanir
+        redirect_uri: Nota eina línu á hverja URI-slóð
+        scopes: Aðgreindu gildissviðin með bilum. Skildu þetta eftir autt til að nota sjálfgefin gildissvið.
+      index:
+        application: Forrit
+        callback_url: URL-slóð baksvörunar (callback)
+        delete: Eyða
+        name: Heiti
+        new: Nýtt forrit
+        scopes: Gildissvið
+        show: Sýna
+        title: Forritin þín
+      new:
+        title: Nýtt forrit
+      show:
+        actions: Aðgerðir
+        application_id: Lykill biðlara
+        callback_urls: URL-slóðir baksvörunar (callback)
+        scopes: Gildissvið
+        secret: Leynilykill biðlara
+        title: 'Forrit: %{name}'
+    authorizations:
+      buttons:
+        authorize: Heimila
+        deny: Neita
+      error:
+        title: Villa kom upp
+      new:
+        able_to: Það mun geta
+        prompt: Forritið %{client_name} biður um aðgang að notandaaðgangnum þínum
+        title: Auðkenning er nauðsynleg
+      show:
+        title: Afritaðu þennan auðkenningarkóða og límdu hann inn hjá forritinu.
+    authorized_applications:
+      buttons:
+        revoke: Afturkalla
+      confirmations:
+        revoke: Ertu viss?
+      index:
+        application: Forrit
+        created_at: Heimilað
+        date_format: "%Y-%m-%d %H:%M:%S"
+        scopes: Gildissvið
+        title: Heimiluðu forritin þín
+    errors:
+      messages:
+        access_denied: Eigandi tilfangs eða auðkenningarþjónn höfnuðu beininni.
+        invalid_redirect_uri: Endurbeiningarslóðin sem fylgdi er ekki gild.
+        invalid_scope: Umbeðið gildissvið er ógilt, óþekkt eða rangt uppsett.
+        invalid_token:
+          expired: Auðkenningarteiknið er útrunnið
+          revoked: Auðkenningarteiknið var aturkallað
+          unknown: Auðkenningarteiknið er ógilt
+        unsupported_response_type: Auðkenningarþjónninn styður ekki þessa tegund svars.
+    flash:
+      applications:
+        create:
+          notice: Forrit útbúið.
+        destroy:
+          notice: Forriti eytt.
+        update:
+          notice: Forrit uppfært.
+      authorized_applications:
+        destroy:
+          notice: Forrit afturkallað.
+    layouts:
+      admin:
+        nav:
+          applications: Forrit
+          oauth2_provider: OAuth þjónusta
+      application:
+        title: Krafist er OAuth auðkenningar við að
+    scopes:
+      admin:read: lesa öll gögn á netþjóninum
+      admin:read:accounts: lesa viðkvæmar upplýsingar á öllum notendaaðgöngum
+      admin:read:reports: lesa viðkvæmar upplýsingar í öllum skýrslum og kærðum notendaaðgöngum
+      admin:write: breyta öllum gögnum á netþjóninum
+      admin:write:accounts: framkvæma umsjónaraðgerðir á notendaaðganga
+      admin:write:reports: framkvæma umsjónaraðgerðir á kærur
+      follow: breyta venslum aðgangs
+      push: taka á móti ýti-tilkynningum til þín
+      read: lesa öll gögn á notandaaðgangnum þínum
+      read:accounts: sjá upplýsingar í notendaaðgöngum
+      read:blocks: skoða útilokanirnar þínar
+      read:bookmarks: skoða bókamerki
+      read:favourites: skoða eftirlætin þín
+      read:filters: skoða síurnar þínar
+      read:follows: sjá hverjum þú fylgist með
+      read:lists: skoða listana þína
+      read:mutes: skoða hverja þú þaggar
+      read:notifications: sjá tilkynningarnar þínar
+      read:reports: skoða skýrslurnar þína
+      read:search: leita fyrir þína hönd
+      read:statuses: sjá allar stöðufærslur
+      write: breyta öllum gögnum á notandaaðgangnum þínum
+      write:accounts: breyta notandasniðinu þínu
+      write:blocks: útiloka notandaaðganga og lén
+      write:bookmarks: bókamerkja stöðufærslur
+      write:favourites: setja stöðufærslur í eftirlæti
+      write:filters: útbúa síur
+      write:follows: fylgjast með fólki
+      write:lists: búa til lista
+      write:media: senda inn myndefnisskrár
+      write:mutes: þagga niður í fólki og samtölum
+      write:notifications: hreinsa tilkynningarnar þínar
+      write:reports: kæra annað fólk
+      write:statuses: gefa út stöður
diff --git a/config/locales/doorkeeper.it.yml b/config/locales/doorkeeper.it.yml
index 361d0bd75ce50cfee705319e07d74a8d9889738c..122b38c04a6f20d6f167a8bda655e9d0610232b2 100644
--- a/config/locales/doorkeeper.it.yml
+++ b/config/locales/doorkeeper.it.yml
@@ -125,6 +125,7 @@ it:
       read: leggere tutte le informazioni del tuo account
       read:accounts: vedere informazioni sull'account
       read:blocks: vedere i tuoi blocchi
+      read:bookmarks: vedi i tuoi preferiti
       read:favourites: vedere i tuoi preferiti
       read:filters: vedere i tuoi filtri
       read:follows: vedere i tuoi seguiti
@@ -137,6 +138,7 @@ it:
       write: modificare tutti i dati del tuo account
       write:accounts: modificare il tuo profilo
       write:blocks: bloccare account e domini
+      write:bookmarks: aggiungi post ai preferiti
       write:favourites: segnare status come preferiti
       write:filters: creare filtri
       write:follows: seguire persone
diff --git a/config/locales/doorkeeper.ja.yml b/config/locales/doorkeeper.ja.yml
index d80212f82fa87883358499a0d99e47bd648e60dc..67eadbf2d28d37d8d8d54776123369e9730e3892 100644
--- a/config/locales/doorkeeper.ja.yml
+++ b/config/locales/doorkeeper.ja.yml
@@ -125,6 +125,7 @@ ja:
       read: アカウントのすべてのデータの読み取り
       read:accounts: アカウント情報の読み取り
       read:blocks: ブロックの読み取り
+      read:bookmarks: ブックマークを見る
       read:favourites: お気に入りの読み取り
       read:filters: フィルターの読み取り
       read:follows: フォローの読み取り
@@ -137,6 +138,7 @@ ja:
       write: アカウントのすべてのデータの変更
       write:accounts: プロフィールの変更
       write:blocks: ユーザーのブロックやドメインの非表示
+      write:bookmarks: トゥートのブックマーク登録
       write:favourites: トゥートのお気に入り登録
       write:filters: フィルターの変更
       write:follows: あなたの代わりにフォロー、アンフォロー
diff --git a/config/locales/doorkeeper.kab.yml b/config/locales/doorkeeper.kab.yml
new file mode 100644
index 0000000000000000000000000000000000000000..376c86d81f7ddab1d06b823c03a412a0f633a10c
--- /dev/null
+++ b/config/locales/doorkeeper.kab.yml
@@ -0,0 +1,104 @@
+---
+kab:
+  activerecord:
+    attributes:
+      doorkeeper/application:
+        name: Isem n usnas
+        redirect_uri: URI n uwelleh
+        website: Asmel web n usnas
+    errors:
+      models:
+        doorkeeper/application:
+          attributes:
+            redirect_uri:
+              fragment_present: ur yezmir ad yegber afrur.
+              invalid_uri: ilaq ad tili d tansa URL tameɣtut.
+              relative_uri: ilaq ad yili d URI amagdaz.
+              secured_uri: ilaq URI ad yili HTTPS/SSL.
+  doorkeeper:
+    applications:
+      buttons:
+        authorize: Ssireg
+        cancel: Sefsex
+        destroy: Hudd
+        edit: Ẓreg
+        submit: Azen
+      confirmations:
+        destroy: Tetḥeqqeḍ?
+      edit:
+        title: Ẓreg asnas
+      form:
+        error: Ay ay! Senqed tiferkit-inek ma ulac deg-s tuccḍiwin
+      help:
+        native_redirect_uri: Seqdec %{native_redirect_uri} i yisekyaden idiganen
+        redirect_uri: Seqdec yiwen n ujerrid i yal URI
+      index:
+        application: Asnas
+        callback_url: URL n tririt n wawal
+        delete: Kkes
+        name: Isem
+        new: Asnas amaynut
+        show: Ẓer
+        title: Isnasen-ik
+      new:
+        title: Asnas amaynut
+      show:
+        actions: Tigawin
+        application_id: ID n usnas
+        callback_urls: URL n tririt n wawal
+        title: 'Asnas: %{name}'
+    authorizations:
+      buttons:
+        authorize: Ssireg
+        deny: Ggami
+      error:
+        title: Tella-d tuccḍa
+      new:
+        able_to: Asnas-agi yezmer
+        prompt: Eǧǧ i %{client_name} ad yekcem ɣer umiḍan-ik
+      show:
+        title: Nɣel tangalt n wurag sakkin senteḍ-itt deg usnas.
+    authorized_applications:
+      confirmations:
+        revoke: Tetḥeqqeḍ?
+      index:
+        application: Asnas
+        created_at: Yettussireg
+        date_format: "%d-%m-%Y %H:%M:%S"
+    errors:
+      messages:
+        invalid_redirect_uri: URI n uwelleh mačči d ameɣtu.
+    flash:
+      applications:
+        create:
+          notice: Asnas yettwarna-d.
+        destroy:
+          notice: Asnan yettwakkes.
+        update:
+          notice: Asnan yettwalqem.
+    layouts:
+      admin:
+        nav:
+          applications: Isnasen
+    scopes:
+      admin:read: ɣeṛ akk isefka ɣef uqeddac
+      admin:write: ẓreg akk isefka ɣef uqeddac
+      follow: beddel assaɣen n umiḍan
+      push: ṭṭef-d tilɣa-ik yettwademren
+      read: ɣeṛ akk isefka n umiḍan-ik
+      read:accounts: ẓer isallen n yimiḍanen
+      read:blocks: ẓer imiḍanen i tesḥebseḍ
+      read:bookmarks: ẓer ticraḍ-ik
+      read:favourites: ẓer ismenyifen-ik
+      read:filters: ẓer imsizedgen-ik
+      read:follows: ẓer imeḍfaṛen-ik
+      read:lists: ẓer tibdarin-ik
+      read:mutes: ẓer wid i tesgugmeḍ
+      read:notifications: ẓer tilɣa-ik
+      read:statuses: ẓer meṛṛa tisuffaɣ
+      write: beddel meṛṛa isefka n umiḍan-ik
+      write:accounts: ẓreg amaɣnu-ik
+      write:blocks: seḥbes imiḍanen d tɣula
+      write:filters: rnu-d imsizedgen
+      write:follows: ḍfeṛ imdanen
+      write:lists: rnu-d tibdarin
diff --git a/config/locales/doorkeeper.kk.yml b/config/locales/doorkeeper.kk.yml
index 97897cdcbecf25aa4c242aa4988ef19f258a2a95..2c3346b6eb4db8842201e18ba78c5f7a72d43d5e 100644
--- a/config/locales/doorkeeper.kk.yml
+++ b/config/locales/doorkeeper.kk.yml
@@ -72,6 +72,7 @@ kk:
       index:
         application: Қосымша
         created_at: Авторизацияланды
+        date_format: "%Y-%m-%d %H:%M:%S"
         scopes: Scopеs
         title: Your authorized applicаtions
     errors:
@@ -113,11 +114,18 @@ kk:
       application:
         title: OAuth authorizatiоn required
     scopes:
+      admin:read: сервердегі барлық деректерді оқыңыз
+      admin:read:accounts: барлық аккаунттардың құпия ақпаратын оқыңыз
+      admin:read:reports: барлық есептер мен есептік жазбалардың құпия ақпаратын оқыңыз
+      admin:write: сервердегі барлық деректерді өзгертіңіз
+      admin:write:accounts: аккаунттардағы модерациялық әрекеттерді орындау
+      admin:write:reports: есептер бойынша модерация әрекеттерін орындау
       follow: modify accоunt relationships
       push: receive your push nоtifications
       read: read all your accоunt's data
       read:accounts: see accounts infоrmation
       read:blocks: see your blоcks
+      read:bookmarks: белгілегендерді қарау
       read:favourites: see your favоurites
       read:filters: see yоur filters
       read:follows: see your follоws
@@ -130,6 +138,7 @@ kk:
       write: modify all your accоunt's data
       write:accounts: modify your prоfile
       write:blocks: block accounts and dоmains
+      write:bookmarks: белгілер статусы
       write:favourites: favourite stаtuses
       write:filters: creаte filters
       write:follows: follow peоple
diff --git a/config/locales/doorkeeper.kn.yml b/config/locales/doorkeeper.kn.yml
new file mode 100644
index 0000000000000000000000000000000000000000..d094088d881ae4c57c4e2fa08b5d098293b0efde
--- /dev/null
+++ b/config/locales/doorkeeper.kn.yml
@@ -0,0 +1 @@
+kn:
diff --git a/config/locales/doorkeeper.ko.yml b/config/locales/doorkeeper.ko.yml
index 8337325e24579045c9c8bd0ac7a5f89bccf983bc..3f9e1285743c77a98c68a095216572fe8bb9e6e8 100644
--- a/config/locales/doorkeeper.ko.yml
+++ b/config/locales/doorkeeper.ko.yml
@@ -125,6 +125,7 @@ ko:
       read: 계정의 모든 데이터를 읽기
       read:accounts: 계정의 정보를 보기
       read:blocks: 차단을 보기
+      read:bookmarks: 내 갈무리 보기
       read:favourites: 관심글을 보기
       read:filters: 필터를 보기
       read:follows: 팔로우를 보기
@@ -137,6 +138,7 @@ ko:
       write: 계정 정보 수정
       write:accounts: 프로필 수정
       write:blocks: 계정이나 도메인 차단
+      write:bookmarks: 게시글을 갈무리하기
       write:favourites: 관심글 지정
       write:filters: 필터 만들기
       write:follows: 사람을 팔로우
diff --git a/config/locales/doorkeeper.ml.yml b/config/locales/doorkeeper.ml.yml
new file mode 100644
index 0000000000000000000000000000000000000000..80a749b042988a6c2a0360d19a76c44831243a59
--- /dev/null
+++ b/config/locales/doorkeeper.ml.yml
@@ -0,0 +1,29 @@
+---
+ml:
+  activerecord:
+    errors:
+      models:
+        doorkeeper/application:
+          attributes:
+            redirect_uri:
+              invalid_uri: URI സാധുവായിരിക്കണം.
+              relative_uri: URI വിപുലീകരിച്ചതായിരിക്കണം.
+              secured_uri: URI HTTPS/SSL ആയിരിക്കണം.
+  doorkeeper:
+    applications:
+      buttons:
+        authorize: ചുമതലപ്പെടുത്തുക
+        cancel: റദ്ദാക്കുക
+        destroy: നശിപ്പിക്കുക
+        edit: തിരുത്തുക
+        submit: സമർപ്പിക്കുക
+      confirmations:
+        destroy: നിങ്ങൾക്ക് ഉറപ്പാണോ?
+      index:
+        delete: മായ്ക്കുക
+        name: പേര്
+    authorized_applications:
+      buttons:
+        revoke: പിൻവലിക്കുക
+      confirmations:
+        revoke: നിങ്ങൾക്ക് ഉറപ്പാണോ?
diff --git a/config/locales/doorkeeper.mr.yml b/config/locales/doorkeeper.mr.yml
new file mode 100644
index 0000000000000000000000000000000000000000..a6f59fbd4c189f5a2f50defdf03ef6b7d0674c5e
--- /dev/null
+++ b/config/locales/doorkeeper.mr.yml
@@ -0,0 +1,34 @@
+---
+mr:
+  activerecord:
+    attributes:
+      doorkeeper/application:
+        name: अर्जाचं नाव
+  doorkeeper:
+    applications:
+      buttons:
+        authorize: मान्यता द्या
+        cancel: रद्द करा
+        destroy: नष्ट करा
+        edit: संपादन करा
+        submit: दाखल करा
+      confirmations:
+        destroy: नक्की?
+      edit:
+        title: अर्जाचं संपादन करा
+      index:
+        application: अर्ज
+        delete: हटवा
+        name: नाव
+        new: नवीन अर्ज
+        show: दाखवा
+        title: तुमचे अर्ज
+      show:
+        actions: कृती
+        title: 'अर्ज: %{name}'
+    authorizations:
+      buttons:
+        authorize: संमती द्या
+        deny: नाकारा
+      new:
+        title: संमतीची आवश्यकता आहे
diff --git a/config/locales/doorkeeper.nl.yml b/config/locales/doorkeeper.nl.yml
index 1fabfc1239276d6455c1411a18f2d24907950ca0..3b1d10d1fcb2ab54106f26cd3af21df3a8c0bd00 100644
--- a/config/locales/doorkeeper.nl.yml
+++ b/config/locales/doorkeeper.nl.yml
@@ -114,29 +114,31 @@ nl:
       application:
         title: OAuth-autorisatie vereist
     scopes:
-      admin:read: lees alle gegevens op de server
-      admin:read:accounts: lees gevoelige informatie van alle accounts
-      admin:read:reports: lees gevoelige informatie van alle rapportages en gerapporteerde accounts
+      admin:read: alle gegevens op de server lezen
+      admin:read:accounts: gevoelige informatie van alle accounts lezen
+      admin:read:reports: gevoelige informatie van alle rapportages en gerapporteerde accounts lezen
       admin:write: wijzig alle gegevens op de server
       admin:write:accounts: moderatieacties op accounts uitvoeren
       admin:write:reports: moderatieacties op rapportages uitvoeren
       follow: relaties tussen accounts bewerken
-      push: ontvang jouw pushmeldingen
+      push: jouw pushmeldingen ontvangen
       read: alle gegevens van jouw account lezen
-      read:accounts: zie informatie accounts
-      read:blocks: zie jouw geblokkeerde gebruikers
-      read:favourites: zie jouw favorieten
-      read:filters: zie jouw filters
-      read:follows: zie de accounts die jij volgt
-      read:lists: zie jouw lijsten
-      read:mutes: zie jouw genegeerde gebruikers
-      read:notifications: zie jouw meldingen
-      read:reports: zie jouw gerapporteerde toots
+      read:accounts: informatie accounts bekijken
+      read:blocks: jouw geblokkeerde gebruikers bekijken
+      read:bookmarks: jouw bladwijzers bekijken
+      read:favourites: jouw favorieten bekijken
+      read:filters: jouw filters bekijken
+      read:follows: de accounts die jij volgt bekijken
+      read:lists: jouw lijsten bekijken
+      read:mutes: jouw genegeerde gebruikers bekijken
+      read:notifications: jouw meldingen bekijken
+      read:reports: jouw gerapporteerde toots bekijken
       read:search: namens jou zoeken
-      read:statuses: zie alle toots
+      read:statuses: alle toots bekijken
       write: alle gegevens van jouw account bewerken
       write:accounts: jouw profiel bewerken
       write:blocks: accounts en domeinen blokkeren
+      write:bookmarks: toots aan bladwijzers toevoegen
       write:favourites: toots als favoriet markeren
       write:filters: filters aanmaken
       write:follows: mensen volgen
diff --git a/config/locales/doorkeeper.nn.yml b/config/locales/doorkeeper.nn.yml
index 777f4e600f65daa6a550f2cf0f04551a49cf4fcd..b31e69b3bdb2f28f8169c3d388668ca404b1e303 100644
--- a/config/locales/doorkeeper.nn.yml
+++ b/config/locales/doorkeeper.nn.yml
@@ -1 +1,150 @@
+---
 nn:
+  activerecord:
+    attributes:
+      doorkeeper/application:
+        name: Applikasjonsnamn
+        redirect_uri: Omdirigerings-URI
+        scopes: Omfang
+        website: Applikasjonsnettside
+    errors:
+      models:
+        doorkeeper/application:
+          attributes:
+            redirect_uri:
+              fragment_present: kan ikkje innehalde eit fragment.
+              invalid_uri: må vere ein gyldig URI.
+              relative_uri: må vere ein absolutt URI.
+              secured_uri: må vere ein HTTPS/SSL URI.
+  doorkeeper:
+    applications:
+      buttons:
+        authorize: Autoriser
+        cancel: Avbryt
+        destroy: Utslett
+        edit: Rediger
+        submit: Send inn
+      confirmations:
+        destroy: Er du sikker?
+      edit:
+        title: Rediger søknad
+      form:
+        error: Oi sann! Sjekk skjemaet for eventuelle mistak
+      help:
+        native_redirect_uri: Bruk %{native_redirect_uri} for lokale testar
+        redirect_uri: Bruk ei linjer per URI
+        scopes: Adskill omfang med mellomrom. La det være blankt for å bruke standard omfang.
+      index:
+        application: Applikasjon
+        callback_url: Callback-URL
+        delete: Slett
+        name: Namn
+        new: Ny applikasjon
+        scopes: Omfang
+        show: Vis
+        title: Dine applikasjonar
+      new:
+        title: Ny applikasjon
+      show:
+        actions: Handlingar
+        application_id: Klientnøkkel
+        callback_urls: Callback-URLer
+        scopes: Omfang
+        secret: Klienthemmelegheit
+        title: 'Applikasjon: %{name}'
+    authorizations:
+      buttons:
+        authorize: Autoriser
+        deny: Avslå
+      error:
+        title: Ein feil har oppstått
+      new:
+        able_to: Den vil ha mulighet til
+        prompt: Applikasjon %{client_name} spør om tilgang til din konto
+        title: Autorisasjon nødvendig
+      show:
+        title: Kopier denne autorisasjonskoden og lim den inn i applikasjonen.
+    authorized_applications:
+      buttons:
+        revoke: Opphev
+      confirmations:
+        revoke: Er du sikker?
+      index:
+        application: Applikasjon
+        created_at: Autorisert
+        date_format: "%Y-%m-%d %H:%M:%S"
+        scopes: Omfang
+        title: Dine autoriserte applikasjonar
+    errors:
+      messages:
+        access_denied: Ressurseieren eller autoriseringstjeneren avviste forespørslen.
+        credential_flow_not_configured: Ressurseiers passordflyt feilet fordi Doorkeeper.configure.resource_owner_from_credentials ikke var konfigurert.
+        invalid_client: Klientautentisering feilet på grunn av ukjent klient, ingen autentisering inkludert, eller autentiseringsmetode er ikke støttet.
+        invalid_grant: Autoriseringen er ugyldig, utløpt, opphevet, stemmer ikke overens med omdirigerings-URIen eller var utstedt til en annen klient.
+        invalid_redirect_uri: Den inkluderte omdirigerings-URLen er ikke gyldig.
+        invalid_request: Forespørslen mangler en eller flere parametere, inkluderte en parameter som ikke støttes eller har feil struktur.
+        invalid_resource_owner: Ressurseierens detaljer er ikke gyldige, eller så er det ikke mulig å finne eieren
+        invalid_scope: Det etterspurte omfanget er ugyldig, ukjent eller har feil struktur.
+        invalid_token:
+          expired: Tilgangsbeviset har utløpt
+          revoked: Tilgangsbeviset har blitt opphevet
+          unknown: Tilgangsbeviset er ugyldig
+        resource_owner_authenticator_not_configured: Ressurseier kunne ikke finnes fordi Doorkeeper.configure.resource_owner_authenticator ikke er konfigurert.
+        server_error: Autoriseringstjeneren støtte på en uventet hendelse som hindret den i å svare på forespørslen.
+        temporarily_unavailable: Autoriseringstjeneren kan ikke håndtere forespørslen grunnet en midlertidig overbelastning eller tjenervedlikehold.
+        unauthorized_client: Klienten har ikke autorisasjon for å utføre denne forespørslen med denne metoden.
+        unsupported_grant_type: Autorisasjonstildelingstypen er ikke støttet av denne autoriseringstjeneren.
+        unsupported_response_type: Autorisasjonsserveren støtter ikke denne typen av forespørsler.
+    flash:
+      applications:
+        create:
+          notice: App laga.
+        destroy:
+          notice: Appen er sletta.
+        update:
+          notice: App oppdatert.
+      authorized_applications:
+        destroy:
+          notice: App avvist.
+    layouts:
+      admin:
+        nav:
+          applications: Appar
+          oauth2_provider: OAuth2-tilbyder
+      application:
+        title: OAuth-autorisering påkrevet
+    scopes:
+      admin:read: lese alle data på tjeneren
+      admin:read:accounts: lese sensitiv informasjon om alle kontoer
+      admin:read:reports: lese sensitiv informasjon om alle rapporter og rapporterte kontoer
+      admin:write: modifisere alle data på tjeneren
+      admin:write:accounts: utføre moderatorhandlinger på kontoer
+      admin:write:reports: utføre moderatorhandlinger på rapporter
+      follow: følg, blokkér, avblokkér, avfølg brukere
+      push: motta dine varsler
+      read: lese dine data
+      read:accounts: se informasjon om kontoer
+      read:blocks: se dine blokkeringer
+      read:bookmarks: sjå bokmerka dine
+      read:favourites: sjå favorittane dine
+      read:filters: sjå filtera dine
+      read:follows: sjå fylgjarane dine
+      read:lists: sjå listene dine
+      read:mutes: sjå kven du har målbunde
+      read:notifications: sjå varsla dine
+      read:reports: sjå rapportane dine
+      read:search: søke på dine vegne
+      read:statuses: sjå alle statusar
+      write: poste på dine vegne
+      write:accounts: rediger profilen din
+      write:blocks: blokker kontoar og domene
+      write:bookmarks: bokmerk statusar
+      write:favourites: merk statusar som favoritt
+      write:filters: lag filter
+      write:follows: fylg folk
+      write:lists: lag lister
+      write:media: last opp mediefiler
+      write:mutes: målbind folk og samtalar
+      write:notifications: tøm varsla dine
+      write:reports: rapporter andre folk
+      write:statuses: legg ut statusar
diff --git a/config/locales/doorkeeper.no.yml b/config/locales/doorkeeper.no.yml
index 263fef15ebd6ac8064238d28068cbfb00e2f48e4..a1970f3eaead8ad01d1507a9c8091c9587110917 100644
--- a/config/locales/doorkeeper.no.yml
+++ b/config/locales/doorkeeper.no.yml
@@ -72,6 +72,7 @@
       index:
         application: Applikasjon
         created_at: Autorisert
+        date_format: "%Y-%m-%d %H:%M:%S"
         scopes: Omfang
         title: Dine autoriserte applikasjoner
     errors:
@@ -113,6 +114,37 @@
       application:
         title: OAuth-autorisering påkrevet
     scopes:
+      admin:read: lese alle data på tjeneren
+      admin:read:accounts: lese sensitiv informasjon om alle kontoer
+      admin:read:reports: lese sensitiv informasjon om alle rapporter og rapporterte kontoer
+      admin:write: modifisere alle data på tjeneren
+      admin:write:accounts: utføre moderatorhandlinger på kontoer
+      admin:write:reports: utføre moderatorhandlinger på rapporter
       follow: følg, blokkér, avblokkér, avfølg brukere
+      push: motta dine varsler
       read: lese dine data
+      read:accounts: se informasjon om kontoer
+      read:blocks: se dine blokkeringer
+      read:bookmarks: se dine bokmerker
+      read:favourites: se dine likinger
+      read:filters: se dine filtre
+      read:follows: se dine følginger
+      read:lists: se listene dine
+      read:mutes: se dine dempinger
+      read:notifications: se dine varslinger
+      read:reports: se dine rapporter
+      read:search: søke på dine vegne
+      read:statuses: se alle statuser
       write: poste på dine vegne
+      write:accounts: endre på profilen din
+      write:blocks: blokkere kontoer og domener
+      write:bookmarks: bokmerke statuser
+      write:favourites: like statuser
+      write:filters: opprett filtre
+      write:follows: følg personer
+      write:lists: opprett lister
+      write:media: last opp mediafiler
+      write:mutes: dempe folk og samtaler
+      write:notifications: tømme dine varsler
+      write:reports: rapportere andre folk
+      write:statuses: legg ut statuser
diff --git a/config/locales/doorkeeper.oc.yml b/config/locales/doorkeeper.oc.yml
index e715cc7d52d8da36cab5a54f5a6b6eb40df0abfa..749a49a4c0717e757271a67723754343a85bfe0c 100644
--- a/config/locales/doorkeeper.oc.yml
+++ b/config/locales/doorkeeper.oc.yml
@@ -125,6 +125,7 @@ oc:
       read: legir totas las donadas de vòstre compte
       read:accounts: veire las informacions del compte
       read:blocks: veire vòstres blocatges
+      read:bookmarks: veire vòstres marcadors
       read:favourites: veire vòstres favorits
       read:filters: veire vòstres filtres
       read:follows: veire vòstres abonaments
@@ -137,6 +138,7 @@ oc:
       write: modificar totas las donadas de vòstre compte
       write:accounts: modificar vòstre perfil
       write:blocks: blocar de comptes e de domenis
+      write:bookmarks: ajustar als marcadors
       write:favourites: metre en favorit
       write:filters: crear de filtres
       write:follows: sègre de monde
diff --git a/config/locales/doorkeeper.pt-BR.yml b/config/locales/doorkeeper.pt-BR.yml
index dfab853c64cee908143b17064cb7acb9b3ae4b08..215c8795d0915b269605c35c6c90c45b07f6eddf 100644
--- a/config/locales/doorkeeper.pt-BR.yml
+++ b/config/locales/doorkeeper.pt-BR.yml
@@ -4,18 +4,18 @@ pt-BR:
     attributes:
       doorkeeper/application:
         name: Nome do aplicativo
-        redirect_uri: URI de redirecionamento
+        redirect_uri: Link de redirecionamento
         scopes: Autorizações
-        website: Website do aplicativo
+        website: Site do aplicativo
     errors:
       models:
         doorkeeper/application:
           attributes:
             redirect_uri:
               fragment_present: não pode conter um fragmento.
-              invalid_uri: precisa ser uma URI válida.
-              relative_uri: precisa ser uma URI absoluta.
-              secured_uri: precisa ser uma URI HTTPS/SSL.
+              invalid_uri: precisa ser um link válido.
+              relative_uri: precisa ser um link absoluto.
+              secured_uri: precisa ser um link HTTPS/SSL.
   doorkeeper:
     applications:
       buttons:
@@ -29,14 +29,14 @@ pt-BR:
       edit:
         title: Editar aplicativo
       form:
-        error: Oops! Verifique o seu formulário para saber de possíveis erros
+        error: Eita! Verifique o seu formulário para saber de possíveis erros
       help:
         native_redirect_uri: Use %{native_redirect_uri} para testes locais
-        redirect_uri: Use uma linha para cada URI
+        redirect_uri: Use uma linha para cada link
         scopes: Separe autorizações com espaços. Deixe em branco para usar autorizações padrões.
       index:
         application: Aplicativos
-        callback_url: URL de retorno
+        callback_url: Link de retorno
         delete: Excluir
         name: Nome
         new: Novo aplicativo
@@ -44,11 +44,11 @@ pt-BR:
         show: Mostrar
         title: Seus aplicativos
       new:
-        title: Novos aplicativos
+        title: Novo aplicativo
       show:
         actions: Ações
         application_id: Chave do cliente
-        callback_urls: URLs de retorno
+        callback_urls: Links de retorno
         scopes: Autorizações
         secret: Segredo do cliente
         title: 'Aplicativo: %{name}'
@@ -59,7 +59,7 @@ pt-BR:
       error:
         title: Ocorreu um erro
       new:
-        able_to: Será capaz de
+        able_to: Poderá
         prompt: O aplicativo %{client_name} solicita acesso à sua conta
         title: Autorização necessária
       show:
@@ -79,28 +79,28 @@ pt-BR:
       messages:
         access_denied: O proprietário ou servidor de autorização negou a solicitação.
         credential_flow_not_configured: Cadeira de Credenciais de Senha do Proprietário falhou porque Doorkeeper.configure.resource_owner_from_credentials não foram configuradas.
-        invalid_client: Autenticação do cliente falhou por causa de um cliente desconhecido, nenhum cliente de autenticação incluído ou método de autenticação não suportado.
-        invalid_grant: A garantia de autorização é inválida, expirou, foi revogada, não é equivalente à URI de redirecionamento usada da solicitação de autorização ou foi emitida por outro cliente.
-        invalid_redirect_uri: A URI de redirecionamento incluída não é válida.
-        invalid_request: A solicitação não possui um parâmetro obrigatório, inclui um valor não suportado ou está mal formatada.
+        invalid_client: Autenticação do cliente falhou por causa de um cliente desconhecido, nenhum cliente de autenticação foi incluído ou o método de autenticação não é suportado.
+        invalid_grant: A garantia de autorização está inválida, expirou ou foi revogada, não é equivalente ao link de redirecionamento usado na solicitação de autorização ou foi emitido por outro cliente.
+        invalid_redirect_uri: O link de redirecionamento não é válido.
+        invalid_request: A solicitação não possui um parâmetro obrigatório, inclui um valor não suportado ou está mal formatado.
         invalid_resource_owner: As credenciais do proprietário informadas não são válidas ou o proprietário não pôde ser encontrado
         invalid_scope: A autorização requirida é inválida, desconhecida ou está mal formatada.
         invalid_token:
-          expired: O token de acesso expirou
-          revoked: O token de acesso foi revogado
-          unknown: O token de acesso é inválido
-        resource_owner_authenticator_not_configured: Procura pelo proprietário falhou porque Doorkeeper.configure.resource_owner_authenticator não foi configurado.
+          expired: O código de acesso expirou
+          revoked: O código de acesso foi revogado
+          unknown: O código de acesso é inválido
+        resource_owner_authenticator_not_configured: A procura pelo Proprietário do Recurso falhou porque Doorkeeper.configure.resource_owner_authenticator não foi configurado.
         server_error: O servidor de autorização encontrou uma condição inesperada que preveniu a solicitação de ser respondida.
-        temporarily_unavailable: O servidor de autorização é incapaz de lidar com a solicitação no momento por causa d múltiplas requisições ou manutenção programada.
-        unauthorized_client: O cliente não possui autorização para performar esta solicitação usando este método.
-        unsupported_grant_type: O tipo de garantia de autorização não é suportada pelo servidor de autorização.
+        temporarily_unavailable: O servidor de autorização é incapaz de lidar com a solicitação no momento devido à múltiplas requisições ou manutenção programada.
+        unauthorized_client: O cliente não possui autorização para executar esta solicitação usando este método.
+        unsupported_grant_type: O tipo de garantia de autorização não é suportado pelo servidor de autorização.
         unsupported_response_type: O servidor de autorização não suporta este tipo de resposta.
     flash:
       applications:
         create:
           notice: Aplicativo criado.
         destroy:
-          notice: Aplicativo deletado.
+          notice: Aplicativo excluído.
         update:
           notice: Aplicativo atualizado.
       authorized_applications:
@@ -109,34 +109,42 @@ pt-BR:
     layouts:
       admin:
         nav:
-          applications: Aplicativo
+          applications: Aplicativos
           oauth2_provider: Provedor de OAuth2
       application:
         title: Autorização OAuth obrigatória
     scopes:
-      follow: modificar as relações com outras contas
-      push: receber suas notificações push
+      admin:read: ler todos os dados no servidor
+      admin:read:accounts: ler informações sensíveis de todas as contas
+      admin:read:reports: ler informações sensíveis de todas as denúncias e contas denunciadas
+      admin:write: alterar todos os dados no servidor
+      admin:write:accounts: executar ações de moderação em contas
+      admin:write:reports: executar ações de moderação em denúncias
+      follow: alterar o relacionamento das contas
+      push: receber notificações push
       read: ler todos os dados da sua conta
-      read:accounts: ver as informações da conta
+      read:accounts: ver informações das contas
       read:blocks: ver seus bloqueios
+      read:bookmarks: ver seus salvos
       read:favourites: ver seus favoritos
       read:filters: ver seus filtros
       read:follows: ver quem você segue
       read:lists: ver suas listas
-      read:mutes: ver seus usuários silenciados
+      read:mutes: ver seus silenciamentos
       read:notifications: ver suas notificações
       read:reports: ver suas denúncias
-      read:search: buscar em seu nome
-      read:statuses: ver todos os status
-      write: modificar todos os dados da sua conta
-      write:accounts: modificar seu perfil
+      read:search: pesquisar em seu nome
+      read:statuses: ver todos os toots
+      write: alterar todos os dados da sua conta
+      write:accounts: alterar seu perfil
       write:blocks: bloquear contas e domínios
-      write:favourites: status favoritos
+      write:bookmarks: salvar toots
+      write:favourites: favoritar toots
       write:filters: criar filtros
       write:follows: seguir pessoas
       write:lists: criar listas
       write:media: enviar arquivos de mídia
       write:mutes: silenciar pessoas e conversas
-      write:notifications: limpar suas notificações
-      write:reports: reportar outras pessoas
-      write:statuses: publicar status
+      write:notifications: limpar notificações
+      write:reports: denunciar outras pessoas
+      write:statuses: postar toots
diff --git a/config/locales/doorkeeper.pt-PT.yml b/config/locales/doorkeeper.pt-PT.yml
index 42068e0a0b1b6b05fcf11a714b636afcb17c756a..e23310a187b645d06e4a97bf8625d2f0e3ecddef 100644
--- a/config/locales/doorkeeper.pt-PT.yml
+++ b/config/locales/doorkeeper.pt-PT.yml
@@ -72,6 +72,7 @@ pt-PT:
       index:
         application: Aplicação
         created_at: Criada em
+        date_format: "%d-%m-%Y %H:%M:%S"
         scopes: Autorizações
         title: As tuas aplicações autorizadas
     errors:
@@ -113,6 +114,37 @@ pt-PT:
       application:
         title: Autorização OAuth necessária
     scopes:
+      admin:read: ler todos os dados no servidor
+      admin:read:accounts: ler informações sensíveis de todas as contas
+      admin:read:reports: ler informações sensíveis de todos os relatórios e contas reportadas
+      admin:write: modificar todos os dados no servidor
+      admin:write:accounts: executar ações de moderação em contas
+      admin:write:reports: executar ações de moderação em relatórios
       follow: siga, bloqueie, desbloqueie, e deixa de seguir contas
+      push: receber as suas notificações push
       read: tenha acesso aos dados da tua conta
+      read:accounts: ver as informações da conta
+      read:blocks: ver os seus bloqueios
+      read:bookmarks: ver os seus favoritos
+      read:favourites: ver os seus favoritos
+      read:filters: ver os seus filtros
+      read:follows: ver quem você segue
+      read:lists: ver as suas listas
+      read:mutes: ver os utilizadores que silenciou
+      read:notifications: ver as suas notificações
+      read:reports: ver as suas denúncias
+      read:search: pesquisar em seu nome
+      read:statuses: ver todos os estados
       write: publique por ti
+      write:accounts: modificar o seu perfil
+      write:blocks: bloquear contas e domínios
+      write:bookmarks: estado dos favoritos
+      write:favourites: estado dos favoritos
+      write:filters: criar filtros
+      write:follows: seguir pessoas
+      write:lists: criar listas
+      write:media: carregar arquivos de média
+      write:mutes: silenciar pessoas e conversas
+      write:notifications: limpar as suas notificações
+      write:reports: reportar outras pessoas
+      write:statuses: publicar estado
diff --git a/config/locales/doorkeeper.ru.yml b/config/locales/doorkeeper.ru.yml
index bd493f793b9b2ff256cd46015018d0c54e776717..f04a1306d4d71bbc0e0fe501498acf24d2b0c678 100644
--- a/config/locales/doorkeeper.ru.yml
+++ b/config/locales/doorkeeper.ru.yml
@@ -5,7 +5,7 @@ ru:
       doorkeeper/application:
         name: Название
         redirect_uri: URI перенаправления
-        scopes: Права
+        scopes: Разрешения
         website: Веб-сайт приложения
     errors:
       models:
@@ -40,11 +40,11 @@ ru:
         delete: Удалить
         name: Название
         new: Новое приложение
-        scopes: Права
+        scopes: Разрешения
         show: Показывать
         title: Ваши приложения
       new:
-        title: Новое Приложение
+        title: Создание приложения
       show:
         actions: Действия
         application_id: Id приложения
@@ -60,7 +60,7 @@ ru:
         title: Произошла ошибка
       new:
         able_to: Оно сможет
-        prompt: Приложение %{client_name} запрашивает доступ к Вашему аккаунту
+        prompt: Приложение %{client_name} запрашивает доступ к Вашей учётной записи
         title: Требуется авторизация
       show:
         title: Скопируйте этот код авторизации и вставьте его в приложении.
@@ -115,34 +115,36 @@ ru:
         title: Требуется авторизация OAuth
     scopes:
       admin:read: читать все данные на сервере
-      admin:read:accounts: читать конфиденциальную информацию всех аккаунтов
-      admin:read:reports: читать конфиденциальную информацию о всех жалобах и аккаунтах с жалобами
+      admin:read:accounts: читать конфиденциальную информацию всех учётных записей
+      admin:read:reports: читать конфиденциальную информацию о всех жалобах и учётных записях с жалобами
       admin:write: модифицировать все данные на сервере
-      admin:write:accounts: производить модерацию аккаунтов
+      admin:write:accounts: производить модерацию учётных записей
       admin:write:reports: производить модерацию жалоб
-      follow: подписываться, отписываться, блокировать и разблокировать аккаунты
-      push: принимать push-уведомления для Вашего аккаунта
-      read: читать данные Вашего аккаунта
-      read:accounts: видеть информацию об аккаунтах
-      read:blocks: видеть ваших заблокированных
+      follow: управлять подписками и списком блокировок
+      push: получать push-уведомления
+      read: просматривать данные вашей учётной записи
+      read:accounts: видеть информацию об учётных записях
+      read:blocks: видеть ваши блокировки
+      read:bookmarks: видеть ваши закладки
       read:favourites: видеть ваше избранное
       read:filters: видеть ваши фильтры
-      read:follows: видеть, на кого вы подписаны
+      read:follows: видеть ваши подписки
       read:lists: видеть ваши списки
-      read:mutes: видеть список заглушенных
-      read:notifications: видеть ваши уведомления
+      read:mutes: видеть список игнорируемых
+      read:notifications: получать уведомления
       read:reports: видеть ваши жалобы
       read:search: использовать поиск
-      read:statuses: видеть все статусы
-      write: изменять все данные вашего аккаунта
+      read:statuses: видеть все ваши посты
+      write: изменять все данные вашей учётной записи
       write:accounts: редактировать ваш профиль
-      write:blocks: блокировать аккаунты и домены
-      write:favourites: отмечать статусы как избранные
+      write:blocks: блокировать учётные записи и домены
+      write:bookmarks: добавлять посты в закладки
+      write:favourites: отмечать посты как избранные
       write:filters: создавать фильтры
       write:follows: подписываться на людей
       write:lists: создавать списки
-      write:media: выкладывать медиаконтент
-      write:mutes: заглушать людей и обсуждения
+      write:media: загружать файлы
+      write:mutes: добавлять в игнорируемое людей и обсуждения
       write:notifications: очищать список уведомлений
       write:reports: отправлять жалобы на других
-      write:statuses: публиковать статусы
+      write:statuses: публиковать посты
diff --git a/config/locales/doorkeeper.sk.yml b/config/locales/doorkeeper.sk.yml
index a08a386f2c247ef44fdd22fa72134cb99febf1c6..4cd80a4e0cdbcda914fbb98da4a30c1d4df8b296 100644
--- a/config/locales/doorkeeper.sk.yml
+++ b/config/locales/doorkeeper.sk.yml
@@ -79,7 +79,7 @@ sk:
         access_denied: Prístup zamietnutý.
         credential_flow_not_configured: Resource Owner Password Credentials zlyhal lebo Doorkeeper.configure.resource_owner_from_credentials nebol nakonfigurovaný.
         invalid_client: Overenie klienta zlyhalo. Neznámy klient, chýbajú údaje o klientovi alebo nepodporovaná metóda overovania.
-        invalid_grant: Poslané oprávnenie je neplatné, expirované, zrušené, nesúhlasí s presmerovacou URI použitou v autorizačnej požiadavke alebo bolo vydané niekomu inému.
+        invalid_grant: Dané oprávnenie je neplatné, vypršané, zrušené, nesúhlasí s presmerovacou URI použitou v autorizačnej požiadavke, alebo bolo vydané pre iný klient.
         invalid_redirect_uri: Presmerovacia URI je neplatná.
         invalid_request: Požiadavke chýba povinný parameter alebo obsahuje nepodporovanú hodnotu niektorého parametra alebo je nejako inak poškodená.
         invalid_resource_owner: Uvedené prihlasovacie údaje sú neplatné alebo nenájdené
@@ -93,7 +93,7 @@ sk:
         temporarily_unavailable: Autorizačný server ťa teraz nemôže obslúžiť, pretože prebieha údržba alebo je dočasne preťažený.
         unauthorized_client: Klient nie je autorizovaný vykonať danú požiadavku týmto spôsobom.
         unsupported_grant_type: Tento typ oprávnenia nie je podporovaný autorizačným serverom.
-        unsupported_response_type: Autorizačný server nepodporuje typ tejto odpovede.
+        unsupported_response_type: Overovací server nepodporuje tento druh odpovede.
     flash:
       applications:
         create:
@@ -124,6 +124,7 @@ sk:
       read: prezri si všetky dáta ohľadom svojho účetu
       read:accounts: prezri si informácie o účte
       read:blocks: prezri svoje bloky
+      read:bookmarks: pozri svoje záložky
       read:favourites: prezri svoje obľúbené
       read:filters: prezri svoje filtrovanie
       read:follows: prezri si svoje sledovania
@@ -136,6 +137,7 @@ sk:
       write: upraviť všetky dáta tvojho účtu
       write:accounts: uprav svoj profil
       write:blocks: blokuj účty a domény
+      write:bookmarks: pridaj si príspevky k záložkám
       write:favourites: obľúbené príspevky
       write:filters: vytvor roztriedenie
       write:follows: následuj ľudí
diff --git a/config/locales/doorkeeper.sv.yml b/config/locales/doorkeeper.sv.yml
index 47b11b7fde8ae6937efa0e4ab559eb06be8e8094..af98020c1ad7751152297d2a85cb67826c055a7e 100644
--- a/config/locales/doorkeeper.sv.yml
+++ b/config/locales/doorkeeper.sv.yml
@@ -25,7 +25,7 @@ sv:
         edit: Redigera
         submit: Skicka
       confirmations:
-        destroy: Äre du säker?
+        destroy: Är du säker?
       edit:
         title: Redigera applikation
       form:
@@ -120,16 +120,16 @@ sv:
       admin:write:accounts: utför alla aktiviteter för moderering på konton
       admin:write:reports: utför alla aktiviteter för moderering i rapporter
       follow: följa, blockera, ta bort blockerade och sluta följa konton
-      push: ta emot push aviseringar för ditt konto
+      push: ta emot push-aviseringar för ditt konto
       read: läsa dina kontodata
       read:accounts: se kontoinformation
-      read:blocks: se dina block
+      read:blocks: se dina blockeringar
       read:favourites: se dina favoriter
       read:filters: se dina filter
       read:follows: se vem du följer
       read:lists: se dina listor
       read:mutes: se dina tystningar
-      read:notifications: se dina notifieringar
+      read:notifications: se dina aviseringar
       read:reports: se dina rapporter
       read:search: sök å dina vägnar
       read:statuses: se alla statusar
@@ -142,6 +142,6 @@ sv:
       write:lists: skapa listor
       write:media: ladda upp mediafiler
       write:mutes: tysta människor och konversationer
-      write:notifications: rensa dina notifieringar
+      write:notifications: rensa dina aviseringar
       write:reports: rapportera andra människor
       write:statuses: publicera statusar
diff --git a/config/locales/doorkeeper.ta.yml b/config/locales/doorkeeper.ta.yml
index 4320953ce2ab23ded9cc319b3002dfc1bc13903a..879b6ab213b8e009338469bd5757f1e7c155f3b1 100644
--- a/config/locales/doorkeeper.ta.yml
+++ b/config/locales/doorkeeper.ta.yml
@@ -1 +1,27 @@
+---
 ta:
+  doorkeeper:
+    applications:
+      buttons:
+        authorize: அனுமதியளி
+        cancel: தவிர்
+        destroy: அழி
+        edit: திருத்து
+        submit: சமர்ப்பி
+      confirmations:
+        destroy: உறுதியாகவா?
+      edit:
+        title: பயன்பாட்டைத் திருத்து
+      form:
+        error: அய்யோ! உள்ளீடுகளில் உள்ள தவறுகளைச் சரி செய்யுங்கள்
+      index:
+        application: பயன்பாடு
+        title: உங்களது பயன்பாடுகள்
+      new:
+        title: புதிய பயன்பாடு
+    authorized_applications:
+      confirmations:
+        revoke: உறுதியாகவா?
+      index:
+        application: பயன்பாடு
+        title: அனுமதியளிக்கப்பட்டுள்ள பயன்பாடுகள்/செயலிகள்
diff --git a/config/locales/doorkeeper.th.yml b/config/locales/doorkeeper.th.yml
index 5866baa43b2108ffa871d7a3a3d4f916afaeb411..33d6944f0b63688a3558e04288acc591e7034a40 100644
--- a/config/locales/doorkeeper.th.yml
+++ b/config/locales/doorkeeper.th.yml
@@ -70,11 +70,16 @@ th:
       index:
         application: แอปพลิเคชัน
         created_at: อนุญาตเมื่อ
+        date_format: "%Y-%m-%d %H:%M:%S"
         scopes: ขอบเขต
         title: แอปพลิเคชันที่ได้รับอนุญาตของคุณ
     errors:
       messages:
         access_denied: เจ้าของทรัพยากรหรือเซิร์ฟเวอร์การอนุญาตปฏิเสธคำขอ
+        invalid_token:
+          expired: โทเคนการเข้าถึงหมดอายุแล้ว
+          revoked: เพิกถอนโทเคนการเข้าถึงแล้ว
+          unknown: โทเคนการเข้าถึงไม่ถูกต้อง
     flash:
       applications:
         create:
@@ -94,11 +99,16 @@ th:
       application:
         title: ต้องมีการอนุญาต OAuth
     scopes:
+      admin:read: อ่านข้อมูลทั้งหมดในเซิร์ฟเวอร์
+      admin:read:accounts: อ่านข้อมูลที่ละเอียดอ่อนของบัญชีทั้งหมด
+      admin:read:reports: อ่านข้อมูลที่ละเอียดอ่อนของรายงานและบัญชีที่ได้รับการรายงานทั้งหมด
+      admin:write: ปรับเปลี่ยนข้อมูลทั้งหมดในเซิร์ฟเวอร์
       follow: ปรับเปลี่ยนความสัมพันธ์ของบัญชี
       push: รับการแจ้งเตือนแบบผลักของคุณ
       read: อ่านข้อมูลบัญชีทั้งหมดของคุณ
       read:accounts: ดูข้อมูลบัญชี
       read:blocks: ดูการปิดกั้นของคุณ
+      read:bookmarks: ดูที่คั่นหน้าของคุณ
       read:favourites: ดูรายการโปรดของคุณ
       read:filters: ดูตัวกรองของคุณ
       read:follows: ดูการติดตามของคุณ
@@ -111,6 +121,7 @@ th:
       write: ปรับเปลี่ยนข้อมูลบัญชีทั้งหมดของคุณ
       write:accounts: ปรับเปลี่ยนโปรไฟล์ของคุณ
       write:blocks: ปิดกั้นบัญชีและโดเมน
+      write:bookmarks: เพิ่มที่คั่นหน้าสถานะ
       write:favourites: ชื่นชอบสถานะ
       write:filters: สร้างตัวกรอง
       write:follows: ติดตามผู้คน
diff --git a/config/locales/doorkeeper.tr.yml b/config/locales/doorkeeper.tr.yml
index 120689a3a8009fe82e023bb6dbe2f4d8383a13bb..b4362f2a27e04ced835858e29a29a6412cff22c3 100644
--- a/config/locales/doorkeeper.tr.yml
+++ b/config/locales/doorkeeper.tr.yml
@@ -125,6 +125,7 @@ tr:
       read: hesabınızın tüm verilerini okuyun
       read:accounts: hesap bilgilerini gör
       read:blocks: engellemelerinizi görün
+      read:bookmarks: yer imlerinizi görün
       read:favourites: favorilerini gör
       read:filters: filtrelerinizi görün
       read:follows: izlerini gör
@@ -137,6 +138,7 @@ tr:
       write: hesabınızın tüm verilerini değiştirin
       write:accounts: profilini deÄŸiÅŸtir
       write:blocks: hesapları ve alan adlarını engelleyin
+      write:bookmarks: durumları yer imlerine ekle
       write:favourites: favori durumlar
       write:filters: filtre oluÅŸtur
       write:follows: insanları takip et
diff --git a/config/locales/doorkeeper.uk.yml b/config/locales/doorkeeper.uk.yml
index 6e5dc1e426ac34094233d8a297fcb8da263f0850..274784b5844eaa74ac8f546375b50035be95fb07 100644
--- a/config/locales/doorkeeper.uk.yml
+++ b/config/locales/doorkeeper.uk.yml
@@ -132,6 +132,7 @@ uk:
       read:mutes: бачити ваші заглушення
       read:notifications: бачити Ваші сповіщення
       read:reports: бачити Ваші скарги
+      read:search: шукати від вашого імені
       read:statuses: бачити всі статуси
       write: змінювати усі дані вашого облікового запису
       write:accounts: змінювати ваш профіль
diff --git a/config/locales/doorkeeper.ur.yml b/config/locales/doorkeeper.ur.yml
new file mode 100644
index 0000000000000000000000000000000000000000..2cace5883d37506345d4879a61f6f3692bc2e7c0
--- /dev/null
+++ b/config/locales/doorkeeper.ur.yml
@@ -0,0 +1 @@
+ur:
diff --git a/config/locales/doorkeeper.vi.yml b/config/locales/doorkeeper.vi.yml
new file mode 100644
index 0000000000000000000000000000000000000000..7df1d089234d0c24742c9eaf8a28a870a007904d
--- /dev/null
+++ b/config/locales/doorkeeper.vi.yml
@@ -0,0 +1,150 @@
+---
+vi:
+  activerecord:
+    attributes:
+      doorkeeper/application:
+        name: Tên ứng dụng
+        redirect_uri: Chuyển hướng URI
+        scopes: Phạm vi
+        website: Trang web ứng dụng
+    errors:
+      models:
+        doorkeeper/application:
+          attributes:
+            redirect_uri:
+              fragment_present: không thể chứa một mảnh.
+              invalid_uri: phải là một URI hợp lệ.
+              relative_uri: phải là một URI tuyệt đối.
+              secured_uri: phải là URI HTTPS / SSL.
+  doorkeeper:
+    applications:
+      buttons:
+        authorize: Ủy quyền
+        cancel: Hủy bỏ
+        destroy: Xoá bỏ
+        edit: Sá»­a
+        submit: Gửi đi
+      confirmations:
+        destroy: Bạn có chắc không?
+      edit:
+        title: Chỉnh sửa ứng dụng
+      form:
+        error: Rất tiếc! Hãy kiểm tra thông tin của bạn vì có thể nó có lỗi
+      help:
+        native_redirect_uri: Sử dụng %{native_redirect_uri} khi kiểm thử ở máy nội bộ
+        redirect_uri: Sử dụng một dòng trên mỗi URI
+        scopes: Phạm vi riêng biệt với không gian. Để trống để sử dụng phạm vi mặc định.
+      index:
+        application: Ứng dụng
+        callback_url: gọi lại URL
+        delete: Xóa bỏ
+        name: Tên
+        new: Ứng dụng mới
+        scopes: Phạm vi
+        show: Xem
+        title: Ứng dụng của bạn
+      new:
+        title: Ứng dụng mới
+      show:
+        actions: Hành động
+        application_id: Khóa khách
+        callback_urls: URL gọi lại
+        scopes: Phạm vi
+        secret: Bí mật khách hàng
+        title: 'Ứng dụng: %{name}'
+    authorizations:
+      buttons:
+        authorize: Ủy quyền
+        deny: Từ chối
+      error:
+        title: một lỗi đã xảy ra
+      new:
+        able_to: Nó sẽ có thể
+        prompt: Ứng dụng %{client_name} yêu cầu quyền truy cập vào tài khoản của bạn
+        title: Cần được ủy quyền
+      show:
+        title: Sao chép mã ủy quyền này và dán nó vào ứng dụng.
+    authorized_applications:
+      buttons:
+        revoke: Thu hồi
+      confirmations:
+        revoke: Bạn có chắc không?
+      index:
+        application: Ứng dụng
+        created_at: Được ủy quyền
+        date_format: "% Y-% m-%d% H:% M:% S"
+        scopes: Phạm vi
+        title: Các ứng dụng đã được cấp phép
+    errors:
+      messages:
+        access_denied: Chủ sở hữu tài nguyên hoặc máy chủ ủy quyền từ chối yêu cầu.
+        credential_flow_not_configured: Resource Owner Password Credentials không thành công do Doorkeeper.configure.resource_owner_from_credentials không được định cấu hình.
+        invalid_client: Xác thực ứng dụng khách không thành công do máy khách không xác định, không bao gồm xác thực ứng dụng khách hoặc phương thức xác thực không được hỗ trợ.
+        invalid_grant: Cấp quyền được cung cấp không hợp lệ, hết hạn, bị thu hồi, không khớp với URI chuyển hướng được sử dụng trong yêu cầu ủy quyền hoặc được cấp cho một khách hàng khác.
+        invalid_redirect_uri: Uri chuyển hướng bao gồm không hợp lệ.
+        invalid_request: Yêu cầu thiếu tham số bắt buộc, bao gồm giá trị tham số không được hỗ trợ hoặc không đúng định dạng.
+        invalid_resource_owner: Thông tin xác thực chủ sở hữu tài nguyên được cung cấp không hợp lệ hoặc không thể tìm thấy chủ sở hữu tài nguyên
+        invalid_scope: Phạm vi yêu cầu không hợp lệ, không xác định hoặc không đúng định dạng.
+        invalid_token:
+          expired: Mã thông báo truy cập đã hết hạn
+          revoked: Mã thông báo truy cập đã bị thu hồi
+          unknown: Mã thông báo truy cập không hợp lệ
+        resource_owner_authenticator_not_configured: Chủ sở hữu tài nguyên tìm thấy thất bại do Doorkeeper.configure.resource_owner_authenticator không được định cấu hình.
+        server_error: Máy chủ ủy quyền đã gặp phải một điều kiện không mong muốn khiến nó không thể thực hiện yêu cầu.
+        temporarily_unavailable: Máy chủ ủy quyền hiện không thể xử lý yêu cầu do quá tải tạm thời hoặc bảo trì máy chủ.
+        unauthorized_client: Khách hàng không được phép thực hiện yêu cầu này bằng phương pháp này.
+        unsupported_grant_type: Loại cấp quyền không được hỗ trợ bởi máy chủ ủy quyền.
+        unsupported_response_type: Máy chủ ủy quyền không hỗ trợ loại phản hồi này.
+    flash:
+      applications:
+        create:
+          notice: Ứng dụng được tạo.
+        destroy:
+          notice: Ứng dụng đã bị xóa.
+        update:
+          notice: Ứng dụng cập nhật.
+      authorized_applications:
+        destroy:
+          notice: Ứng dụng bị thu hồi.
+    layouts:
+      admin:
+        nav:
+          applications: Các ứng dụng
+          oauth2_provider: Nhà cung cấp OAuth2
+      application:
+        title: Yêu cầu ủy quyền OAuth
+    scopes:
+      admin:read: đọc tất cả dữ liệu trên máy chủ
+      admin:read:accounts: đọc thông tin nhạy cảm của tất cả các tài khoản
+      admin:read:reports: đọc thông tin nhạy cảm của tất cả các báo cáo và tài khoản báo cáo
+      admin:write: sửa đổi tất cả dữ liệu trên máy chủ
+      admin:write:accounts: thực hiện các hành động kiểm duyệt trên tài khoản
+      admin:write:reports: thực hiện các hành động kiểm duyệt trên các báo cáo
+      follow: sửa đổi các mối quan hệ tài khoản
+      push: nhận thông báo đẩy của bạn
+      read: đọc tất cả dữ liệu tài khoản của bạn
+      read:accounts: xem thông tin tài khoản
+      read:blocks: xem khối của bạn
+      read:bookmarks: xem các mục đã lưu
+      read:favourites: xem yêu thích của bạn
+      read:filters: xem bộ lọc của bạn
+      read:follows: xem sau của bạn
+      read:lists: xem danh sách của bạn
+      read:mutes: xem những người bạn của bạn
+      read:notifications: xem thông báo của bạn
+      read:reports: xem báo cáo của bạn
+      read:search: thay mặt bạn tìm kiếm
+      read:statuses: xem tất cả các trạng thái
+      write: sửa đổi tất cả dữ liệu tài khoản của bạn
+      write:accounts: sửa đổi hồ sơ của bạn
+      write:blocks: chặn tài khoản và tên miền
+      write:bookmarks: những trạng thái đã lưu
+      write:favourites: trạng thái yêu thích
+      write:filters: tạo bộ lọc
+      write:follows: theo dõi mọi người
+      write:lists: tạo danh sách
+      write:media: tải lên tập tin phương tiện truyền thông
+      write:mutes: người câm và nói chuyện
+      write:notifications: xóa thông báo của bạn
+      write:reports: báo cáo người khác
+      write:statuses: xuất bản trạng thái
diff --git a/config/locales/doorkeeper.zh-CN.yml b/config/locales/doorkeeper.zh-CN.yml
index 015d2c0ce1c9eb92ba89c488a3fa74089f7c9e07..f186a954aa5d1931e9c94b0fcaa14ba573b13184 100644
--- a/config/locales/doorkeeper.zh-CN.yml
+++ b/config/locales/doorkeeper.zh-CN.yml
@@ -4,7 +4,7 @@ zh-CN:
     attributes:
       doorkeeper/application:
         name: 应用名称
-        redirect_uri: 重定向 URI
+        redirect_uri: 跳转 URI
         scopes: 权限范围
         website: 应用网站
     errors:
@@ -115,17 +115,18 @@ zh-CN:
         title: 需要 OAuth 认证
     scopes:
       admin:read: 读取服务器上的所有数据
-      admin:read:accounts: 读取所有账户的敏感信息
-      admin:read:reports: 读取所有举报和被举报账户的敏感信息
+      admin:read:accounts: 读取所有帐号的敏感信息
+      admin:read:reports: 读取所有举报和被举报帐号的敏感信息
       admin:write: 修改服务器上的所有数据
-      admin:write:accounts: 对账户执行管理操作
+      admin:write:accounts: 对帐号执行管理操作
       admin:write:reports: 对举报执行管理操作
       follow: 关注或屏蔽用户
       push: 接收你的帐户的推送通知
       read: 读取你的帐户数据
-      read:accounts: 查看账户信息
+      read:accounts: 查看账号信息
       read:blocks: 查看你的屏蔽列表
-      read:favourites: 查看你的收藏
+      read:bookmarks: 查看您的书签
+      read:favourites: 查看喜欢的嘟文
       read:filters: 查看你的过滤器
       read:follows: 查看你的关注
       read:lists: 查看你的列表
@@ -134,10 +135,11 @@ zh-CN:
       read:reports: 查看你的举报
       read:search: 以你的身份搜索
       read:statuses: 查看所有嘟文
-      write: 修改你的账户数据
+      write: 修改你的账号数据
       write:accounts: 修改你的个人资料
-      write:blocks: 屏蔽账户和域名
-      write:favourites: 收藏嘟文
+      write:blocks: 屏蔽账号和域名
+      write:bookmarks: 为嘟文添加书签
+      write:favourites: 喜欢的嘟文
       write:filters: 创建过滤器
       write:follows: 关注其他人
       write:lists: 创建列表
diff --git a/config/locales/doorkeeper.zh-HK.yml b/config/locales/doorkeeper.zh-HK.yml
index d9c91caf0865aa689ff177e579e16cf223914a05..30971f29fd371dcdd06eeceb701500104b0faf54 100644
--- a/config/locales/doorkeeper.zh-HK.yml
+++ b/config/locales/doorkeeper.zh-HK.yml
@@ -72,6 +72,7 @@ zh-HK:
       index:
         application: 應用程式
         created_at: 授權日期
+        date_format: "%Y-%m-%d %H:%M:%S"
         scopes: 權限範圍
         title: 已獲你授權的程用程式
     errors:
@@ -113,7 +114,37 @@ zh-HK:
       application:
         title: 需要 OAuth 授權
     scopes:
+      admin:read: 讀取伺服器的所有資料
+      admin:read:accounts: 讀取所有帳戶的敏感資訊
+      admin:read:reports: 讀取所有回報 / 被回報之帳戶的敏感資訊
+      admin:write: 修改伺服器的所有資料
+      admin:write:accounts: 對帳戶進行仲裁管理動作
+      admin:write:reports: 對報告進行仲裁管理動作
       follow: 關注、封鎖、解除封鎖及取消關注用戶
       push: 接收你的帳號的推送通知
       read: 閱讀你的用戶資料
+      read:accounts: 檢視帳戶資訊
+      read:blocks: 檢視您的封鎖名單
+      read:bookmarks: 檢視您的書籤
+      read:favourites: 檢視您的收藏項目
+      read:filters: 檢視您的過濾條件
+      read:follows: 檢視您關注的人
+      read:lists: 檢視您的名單
+      read:mutes: 檢視您靜音的人
+      read:notifications: 檢視您的通知
+      read:reports: 檢視您的檢舉
+      read:search: 以你的身份搜尋
+      read:statuses: 檢視所有嘟文
       write: 以你的名義發佈文章
+      write:accounts: 修改您的個人檔案
+      write:blocks: 封鎖帳戶及站台
+      write:bookmarks: 書籤狀態
+      write:favourites: 收藏嘟文
+      write:filters: 建立過濾條件
+      write:follows: 關注其他人
+      write:lists: 建立名單
+      write:media: 上傳媒體檔案
+      write:mutes: 靜音使用者及對話
+      write:notifications: 清除您的通知
+      write:reports: 檢舉其他人
+      write:statuses: 發布嘟文
diff --git a/config/locales/doorkeeper.zh-TW.yml b/config/locales/doorkeeper.zh-TW.yml
index 0b2624aa9582b3bbf620e746c0bf0d11fa5e6a1d..536dd704cd08ba360c86750df843462457e21ae3 100644
--- a/config/locales/doorkeeper.zh-TW.yml
+++ b/config/locales/doorkeeper.zh-TW.yml
@@ -125,6 +125,7 @@ zh-TW:
       read: 讀取您所有的帳號資料
       read:accounts: 檢視帳戶資訊
       read:blocks: 檢視您的封鎖名單
+      read:bookmarks: 檢視您的書籤
       read:favourites: 檢視您的收藏項目
       read:filters: 檢視您的過濾條件
       read:follows: 檢視您關注的人
@@ -137,6 +138,7 @@ zh-TW:
       write: 修改您帳號的所有資料
       write:accounts: 修改您的個人檔案
       write:blocks: 封鎖帳戶及站台
+      write:bookmarks: 書籤狀態
       write:favourites: 收藏嘟文
       write:filters: 建立過濾條件
       write:follows: 關注其他人
diff --git a/config/locales/el.yml b/config/locales/el.yml
index caaab41f870641bb899fb62f53e4051e27758fb2..97ae2bd6cd0aa14846e0e10fa5520a9ba2038a5e 100644
--- a/config/locales/el.yml
+++ b/config/locales/el.yml
@@ -2,7 +2,7 @@
 el:
   about:
     about_hashtag_html: Αυτά είναι κάποια από τα δημόσια τουτ σημειωμένα με <strong>#%{hashtag}</strong>. Μπορείς να αλληλεπιδράσεις με αυτά αν έχεις λογαριασμό οπουδήποτε στο fediverse.
-    about_mastodon_html: Το Mastodon είναι ένα κοινωνικό δίκτυο που βασίζεται σε ανοιχτά δικτυακά πρωτόκολλα και ελεύθερο λογισμικό ανοιχτού κώδικα. Είναι αποκεντρωμένο όπως το e-mail.
+    about_mastodon_html: 'Το κοινωνικό δίκτυο του μέλλοντος: Χωρίς διαφημίσεις, χωρίς εταιρίες να σε κατασκοπεύουν, ηθικά σχεδιασμένο και αποκεντρωμένο! Με το Mastodon τα δεδομένα σου είναι πραγματικά δικά σου!'
     about_this: Σχετικά
     active_count_after: ενεργοί
     active_footnote: Μηνιαίοι Ενεργοί Χρήστες (ΜΕΧ)
@@ -11,17 +11,18 @@ el:
     apps: Εφαρμογές κινητών
     apps_platforms: Χρησιμοποίησε το Mastodon από το iOS, το Android και αλλού
     browse_directory: Ξεφύλλισε τον κατάλογο χρηστών και ψάξε ανά ενδιαφέροντα
+    browse_local_posts: Ξεφύλλισε τη ζωντανή ροή αυτού του διακομιστή
     browse_public_posts: Ξεφύλλισε τη ζωντανή ροή του Mastodon
     contact: Επικοινωνία
     contact_missing: Δεν έχει οριστεί
-    contact_unavailable: Μ/Δ
+    contact_unavailable: Μη διαθέσιμο
     discover_users: Ανακάλυψε χρήστες
     documentation: Τεκμηρίωση
-    federation_hint_html: Με ένα λογαριασμό στο %{instance} θα μπορείς να ακολουθείς ανθρώπους σε οποιοδήποτε κόμβο στο Mastodon αλλά και αλλού.
+    federation_hint_html: Με ένα λογαριασμό στο %{instance} θα μπορείς να ακολουθείς ανθρώπους σε οποιοδήποτε κόμβο Mastodon αλλά και παραπέρα.
     get_apps: Δοκίμασε μια εφαρμογή κινητού
     hosted_on: Το Mastodon φιλοξενείται στο %{domain}
     instance_actor_flash: |
-      Αυτός ο λογαριασμός είναι εικονικός και απεικονίζει τον κόμβο, όχι κάποιο συγκεκριμένο χρήστη.
+      Αυτός ο λογαριασμός είναι εικονικός και απεικονίζει ολόκληρο τον κόμβο, όχι κάποιο συγκεκριμένο χρήστη.
       Χρησιμεύει στη λειτουργία της ομοσπονδίας και δε θα πρέπει να αποκλειστεί, εκτός κι αν είναι επιθυμητός ο αποκλεισμός ολόκληρου του κόμβου. Σε αυτή την περίπτωση θα πρέπει να χρησιμοποιηθεί η λειτουργία αποκλεισμού τομέα.
     learn_more: Μάθε περισσότερα
     privacy_policy: Πολιτική απορρήτου
@@ -77,6 +78,7 @@ el:
     roles:
       admin: Διαχειριστής
       bot: Μποτ (αυτόματος λογαριασμός)
+      group: Ομάδα
       moderator: Μεσολαβητής
     unavailable: Το προφίλ δεν είναι διαθέσιμο
     unfollow: Διακοπή παρακολούθησης
@@ -117,9 +119,7 @@ el:
       email_status: Κατάσταση email
       enable: Ενεργοποίηση
       enabled: Ενεργοποιημένο
-      feed_url: URL ροής
       followers: Ακόλουθοι
-      followers_url: URL ακολούθων
       follows: Ακολουθεί
       header: Επικεφαλίδα
       inbox_url: URL εισερχομένων
@@ -147,10 +147,8 @@ el:
       no_account_selected: Κανείς λογαριασμός δεν ενημερώθηκε αφού κανείς δεν ήταν επιλεγμένος
       no_limits_imposed: Χωρίς όρια
       not_subscribed: Άνευ συνδρομής
-      outbox_url: URL εξερχομένων
       pending: Εκκρεμεί έγκριση
       perform_full_suspension: Αναστολή
-      profile_url: URL προφίλ
       promote: Προβίβασε
       protocol: Πρωτόκολλο
       public: Δημόσιο
@@ -173,8 +171,8 @@ el:
         moderator: Συντονιστής
         staff: Προσωπικό
         user: Χρήστης
-      salmon_url: URL Salmon
       search: Αναζήτηση
+      search_same_ip: Υπόλοιποι χρήστες με την ίδια διεύθυνση IP
       shared_inbox_url: URL κοινόχρηστων εισερχομένων
       show:
         created_reports: Αναφορές από αυτόν το λογαριασμό
@@ -201,10 +199,12 @@ el:
         confirm_user: Ο/Η %{name} επιβεβαίωσε τη διεύθυνση email του χρήστη %{target}
         create_account_warning: Ο/Η %{name} έστειλε προειδοποίηση προς %{target}
         create_custom_emoji: Ο/Η %{name} ανέβασε νέο emoji %{target}
+        create_domain_allow: Ο/Η %{name} έβαλε τον τομέα %{target} σε λευκή λίστα
         create_domain_block: Ο/Η %{name} μπλόκαρε τον τομέα %{target}
         create_email_domain_block: Ο/Η %{name} έβαλε τον τομέα email %{target} σε μαύρη λίστα
         demote_user: Ο/Η %{name} υποβίβασε το χρήστη %{target}
         destroy_custom_emoji: Ο/Η %{name} κατέστρεψε το emoji %{target}
+        destroy_domain_allow: Ο/Η %{name} αφαίρεσε τον τομέα %{target} από λίστα εγκρίσεων
         destroy_domain_block: Ο/Η %{name} ξεμπλόκαρε τον τομέα %{target}
         destroy_email_domain_block: Ο/Η %{name} έβαλε τον τομέα email %{target} σε λευκή λίστα
         destroy_status: Ο/Η %{name} αφαίρεσε την κατάσταση του/της %{target}
@@ -395,12 +395,17 @@ el:
       destroyed_msg: Επιτυχής διαγραφή σημείωσης καταγγελίας!
     reports:
       account:
-        note: σημείωση
-        report: καταγγελία
+        notes:
+          one: "%{count} σημείωση"
+          other: "%{count} σημειώσεις"
+        reports:
+          one: "%{count} αναφορά"
+          other: "%{count} αναφορές"
       action_taken_by: Ενέργεια από τον/την
       are_you_sure: Σίγουρα;
       assign_to_self: Ανάθεση σε μένα
       assigned: Αρμόδιος συντονιστής
+      by_target_domain: Κόμβος του λογαριασμού υπό καταγγελία
       comment:
         none: Κανένα
       created_at: Καταγγέλθηκε
@@ -446,6 +451,8 @@ el:
         users: Προς συνδεδεμένους τοπικούς χρήστες
       domain_blocks_rationale:
         title: Εμφάνιση σκεπτικού
+      enable_bootstrap_timeline_accounts:
+        title: Προεπιλογή παρακολούθησης για τους νέους χρήστες
       hero:
         desc_html: Εμφανίζεται στην μπροστινή σελίδα. Συνίσταται τουλάχιστον 600x100px. Όταν λείπει, χρησιμοποιείται η μικρογραφία του κόμβου
         title: Εικόνα ήρωα
@@ -566,6 +573,7 @@ el:
     add_new: Δημιουργία ψευδώνυμου
     created_msg: Δημιουργήθηκε νέο ψευδώνυμο. Τώρα μπορείς να ξεκινήσεις τη μεταφορά από τον παλιό λογαριασμό.
     deleted_msg: Αφαιρέθηκε το ψευδώνυμο. Η μεταφορά από εκείνον τον λογαριασμό σε αυτόν εδώ δε θα είναι πλέον δυνατή.
+    hint_html: Αν θέλεις να μετακομίσεις από έναν άλλο λογαριασμό σε αυτόν εδώ, μπορείς εδώ να δημιουργήσεις ένα ψευδώνυμο, πράγμα που απαιτείται πριν προχωρήσεις για να μεταφέρεις τους ακολούθους σου από τον παλιό λογαριασμό σε αυτόν εδώ. Η ενέργεια αυτή είναι <strong>ακίνδυνη και αναστρέψιμη</strong>.<strong>Η μετακόμιση του λογαριασμού ξεκινάει από τον παλιό λογαριασμό</strong>.
     remove: Αφαίρεση ψευδώνυμου
   appearance:
     advanced_web_interface: Προηγμένη λειτουργία χρήσης
@@ -573,7 +581,12 @@ el:
     animations_and_accessibility: Κίνηση και προσβασιμότητα
     confirmation_dialogs: Ερωτήσεις επιβεβαίωσης
     discovery: Εξερεύνηση
+    localization:
+      body: Το Mastodon μεταφράζεται από εθελοντές.
+      guide_link: https://crowdin.com/project/mastodon
+      guide_link_text: Μπορεί να συνεισφέρει ο οποιοσδήποτε.
     sensitive_content: Ευαίσθητο περιεχόμενο
+    toot_layout: Διαρρύθμιση τουτ
   application_mailer:
     notification_preferences: Αλλαγή προτιμήσεων email
     salutation: "%{name},"
@@ -594,7 +607,7 @@ el:
     change_password: Συνθηματικό
     checkbox_agreement_html: Συμφωνώ με τους <a href="%{rules_path}" target="_blank">κανονισμούς του κόμβου</a> και <a href="%{terms_path}" target="_blank">τους όρους χρήσης</a>
     checkbox_agreement_without_rules_html: Συμφωνώ με τους <a href="%{terms_path}" target="_blank">όρους χρήσης</a>
-    delete_account: Διαγραφή email
+    delete_account: Διαγραφή λογαριασμού
     delete_account_html: Αν θέλεις να διαγράψεις το λογαριασμό σου, μπορείς <a href="%{path}">να συνεχίσεις εδώ</a>. Θα σου ζητηθεί επιβεβαίωση.
     description:
       prefix_invited_by_user: Ο/Η @%{name} σε προσκαλεί να συνδεθείς με αυτό τον διακομιστή του Mastodon!
@@ -605,7 +618,7 @@ el:
     invalid_reset_password_token: Το διακριτικό επαναφοράς συνθηματικού είναι άκυρο ή ληγμένο. Παρακαλώ αιτήσου νέο.
     login: Σύνδεση
     logout: Αποσύνδεση
-    migrate_account: Μετακόμισε σε διαφορετικό λογαριασμό
+    migrate_account: Μετακόμιση σε διαφορετικό λογαριασμό
     migrate_account_html: Αν θέλεις να ανακατευθύνεις αυτό τον λογαριασμό σε έναν διαφορετικό, μπορείς να το <a href="%{path}">διαμορφώσεις εδώ</a>.
     or_log_in_with: Ή συνδέσου με
     providers:
@@ -626,6 +639,7 @@ el:
       confirming: Αναμονή για ολοκλήρωση επιβεβαίωσης του email.
       functional: Ο λογαριασμός σου είναι πανέτοιμος.
       pending: Η εφαρμογή σας εκκρεμεί έγκρισης, πιθανόν θα διαρκέσει κάποιο χρόνο. Θα λάβετε email αν εγκριθεί.
+      redirecting_to: Ο λογαριασμός σου είναι ανενεργός γιατί επί του παρόντος ανακατευθύνει στον %{acct}.
     trouble_logging_in: Πρόβλημα σύνδεσης;
   authorize_follow:
     already_following: Ήδη ακολουθείς αυτό το λογαριασμό
@@ -640,6 +654,7 @@ el:
     title: Ακολούθησε %{acct}
   challenge:
     confirm: Συνέχεια
+    hint_html: "<strong>Συμβουλή:</strong> Δεν θα σου ζητήσουμε τον κωδικό ασφαλείας σου ξανά για την επόμενη ώρα."
     invalid_password: Μη έγκυρο συνθηματικό
     prompt: Επιβεβαίωση συνθηματικού για συνέχεια
   datetime:
@@ -701,14 +716,13 @@ el:
     archive_takeout:
       date: Ημερομηνία
       download: Κατέβασε το αρχείο σου
-      hint_html: Μπορείς να αιτηθείς ένα αρχείο των <strong>τουτ και των ανεβασμένων πολυμέσων</strong> σου. Τα δεδομένα θα είναι σε μορφή ActivityPub, προσιτά από οποιοδήποτε συμβατό πρόγραμμα. Μπορείς να αιτηθείς αρχείο κάθε 7 μέρες.
+      hint_html: Μπορείς να αιτηθείς ένα αρχείο των <strong>τουτ και των ανεβασμένων πολυμέσων</strong> σου. Τα δεδομένα θα είναι σε μορφή ActivityPub, προσπελάσιμα από οποιοδήποτε συμβατό πρόγραμμα. Μπορείς να αιτηθείς αρχείο κάθε 7 μέρες.
       in_progress: Συγκεντρώνουμε το αρχείο σου...
       request: Αιτήσου το αρχείο σου
       size: Μέγεθος
     blocks: Μπλοκάρεις
     csv: CSV
     domain_blocks: Μπλοκαρίσματα κόμβων
-    follows: Ακολουθείς
     lists: Λίστες
     mutes: Αποσιωπήσεις
     storage: Αποθήκευση πολυμέσων
@@ -730,6 +744,7 @@ el:
       invalid_irreversible: Τα μη αντιστρέψιμα φίλτρα δουλεύουν μόνο στα πλαίσια της αρχικής ροής και των ειδοποιήσεων
     index:
       delete: Διαγραφή
+      empty: Δεν έχεις φίλτρα.
       title: Φίλτρα
     new:
       title: Πρόσθεσε νέο φίλτρο
@@ -815,12 +830,20 @@ el:
   migrations:
     acct: ΌνομαΧρήστη@Τομέας του νέου λογαριασμού
     cancel: Ακύρωση ανακατεύθυνσης
+    cancel_explanation: Ακυρώνοντας την ανακατεύθυνση θα ενεργοποιήσει ξανά τον τρέχοντα λογαριασμό σου, αλλά δεν θα φέρει πίσω τους ακόλουθους που έχουν μεταφερθεί σε εκείνον το λογαριασμό.
+    cancelled_msg: Η ανακατεύθυνση ακυρώθηκε επιτυχώς.
     errors:
+      already_moved: είναι ο ίδιος λογαριασμός στον οποίο έχεις ήδη μεταφερθεί
+      missing_also_known_as: δεν αναφέρει αυτόν τον λογαριασμό
       move_to_self: δεν επιτρέπεται να είναι ο τρέχων λογαριασμός
       not_found: δεν βρέθηκε
       on_cooldown: Είσαι σε περίοδο προσαρμογής
     followers_count: Ακόλουθοι τη στιγμή της μεταφοράς
     incoming_migrations: Μεταφορά από διαφορετικό λογαριασμό
+    incoming_migrations_html: Για να μετακομίσεις από έναν άλλο λογαριασμό σε αυτόν εδώ, πρώτα πρέπει να <a href="%{path}">δημιουργήσεις ένα ψευδώνυμο λογαριασμού</a>.
+    moved_msg: Ο λογαριασμός σου πλέον ανακατευθύνει στον %{acct} και οι ακόλουθοί σου μεταφέρονται εκεί.
+    not_redirecting: Ο λογαριασμός σου δεν ανακατευθύνει σε κανέναν άλλο προς το παρόν.
+    on_cooldown: Έχεις μετακομίσει το λογαριασμό σου πρόσφατα. Η δυνατότητα αυτή θα γίνει πάλι διαθέσιμη σε %{count} μέρες.
     past_migrations: Προηγούμενες μετακινήσεις
     proceed_with_move: Μετακίνηση ακολούθων
     redirecting_to: Ο λογαριασμός σου ανακατευθύνει στο %{acct}.
@@ -870,6 +893,10 @@ el:
       body: 'Η κατάστασή σου προωθήθηκε από τον/την %{name}:'
       subject: Ο/Η %{name} προώθησε την κατάστασή σου
       title: Νέα προώθηση
+  notifications:
+    email_events: Συμβάντα για ειδοποιήσεις μέσω email
+    email_events_hint: 'Επέλεξε συμβάντα για τα οποία θέλεις να λαμβάνεις ειδοποιήσεις μέσω email:'
+    other_settings: Άλλες ρυθμίσεις ειδοποιήσεων
   number:
     human:
       decimal_units:
@@ -902,11 +929,13 @@ el:
     public_timelines: Δημόσιες ροές
   relationships:
     activity: Δραστηριότητα λογαριασμού
-    dormant: Αδρανής
+    dormant: Αδρανείς
+    followers: Σε ακολουθούν
+    following: Ακολουθείς
     last_active: Τελευταία δραστηριότητα
     most_recent: Πιο πρόσφατα
     moved: Μετακόμισε
-    mutual: Αμοιβαίος
+    mutual: Αμοιβαίοι
     primary: Βασικός
     relationship: Σχέση
     remove_selected_domains: Αφαίρεση ακόλουθων που βρίσκονται στους επιλεγμένους κόμβους
@@ -994,8 +1023,10 @@ el:
     notifications: Ειδοποιήσεις
     preferences: Προτιμήσεις
     profile: Προφίλ
-    relationships: Ακολουθεί και ακολουθείται
+    relationships: Ακολουθείς και σε ακολουθούν
     two_factor_authentication: Πιστοποίηση 2 παραγόντων (2FA)
+  spam_check:
+    spam_detected: Αυτή είναι μια αυτόματη αναφορά. Εντοπίστηκε ανεπιθύμητο υλικό (spam).
   statuses:
     attached:
       description: 'Συνημμένα: %{attached}'
@@ -1015,7 +1046,7 @@ el:
     over_character_limit: υπέρβαση μέγιστου ορίου %{max} χαρακτήρων
     pin_errors:
       limit: Έχεις ήδη καρφιτσώσει το μέγιστο αριθμό επιτρεπτών τουτ
-      ownership: Δεν μπορείς να καρφιτσώσεις μη δικό σου τουτ
+      ownership: Δεν μπορείς να καρφιτσώσεις τουτ κάποιου άλλου
       private: Τα μη δημόσια τουτ δεν καρφιτσώνονται
       reblog: Οι προωθήσεις δεν καρφιτσώνονται
     poll:
@@ -1027,7 +1058,7 @@ el:
         other: "%{count} ψήφοι"
       vote: Ψήφισε
     show_more: Δείξε περισσότερα
-    sign_in_to_participate: Εγγράφου για να συμμετάσχεις στη συζήτηση
+    sign_in_to_participate: Συνδέσου για να συμμετάσχεις στη συζήτηση
     title: '%{name}: "%{quote}"'
     visibilities:
       private: Μόνο ακόλουθοι
@@ -1151,7 +1182,7 @@ el:
     wrong_code: Ο κωδικός που έβαλες ήταν άκυρος! Τα ρολόγια στον διακομιστή και τη συσκευή είναι σωστά;
   user_mailer:
     backup_ready:
-      explanation: Ζήτησες ένα εφεδρικό αντίγραφο του λογαριασμού σου στο Mastodon. Είναι έτοιμο για κατέβασμα!
+      explanation: Είχες ζητήσει εφεδρικό αντίγραφο του λογαριασμού σου στο Mastodon. Είναι έτοιμο για κατέβασμα!
       subject: Το εφεδρικό αντίγραφό σου είναι έτοιμο για κατέβασμα
       title: Λήψη εφεδρικού αρχείου
     warning:
@@ -1171,7 +1202,7 @@ el:
         disable: Παγωμένος λογαριασμός
         none: Προειδοποίηση
         silence: Περιορισμένος λογαριασμός
-        suspend: Ανασταλμένος λογαριασμός
+        suspend: Λογαριασμός σε αναστολή
     welcome:
       edit_profile_action: Στήσιμο προφίλ
       edit_profile_step: Μπορείς να προσαρμόσεις το προφίλ σου ανεβάζοντας μια εικόνα εμφάνισης & επικεφαλίδας, αλλάζοντας το εμφανιζόμενο όνομά σου και άλλα. Αν θες να ελέγχεις τους νέου σου ακόλουθους πριν αυτοί σε ακολουθήσουν, μπορείς να κλειδώσεις το λογαριασμό σου.
diff --git a/config/locales/en.yml b/config/locales/en.yml
index c00659a707fd9b04ae5325076049c9249afc2b5c..57eb28f471e81b1e21e9c9046e7a0470c114b506 100644
--- a/config/locales/en.yml
+++ b/config/locales/en.yml
@@ -11,6 +11,7 @@ en:
     apps: Mobile apps
     apps_platforms: Use Mastodon from iOS, Android and other platforms
     browse_directory: Browse a profile directory and filter by interests
+    browse_local_posts: Browse a live stream of public posts from this server
     browse_public_posts: Browse a live stream of public posts on Mastodon
     contact: Contact
     contact_missing: Not set
@@ -77,9 +78,17 @@ en:
     roles:
       admin: Admin
       bot: Bot
+      group: Group
       moderator: Mod
     unavailable: Profile unavailable
     unfollow: Unfollow
+  account_subscribes:
+    add_new: Add
+    edit:
+      title: Edit
+    hint_html: "<strong>What are account subscription?</strong> Insert public posts from the specified account into the home or list timeline. Posts received by the server (federated timeline) are targets."
+    new:
+      title: Add new account subscription
   admin:
     account_actions:
       action: Perform action
@@ -117,9 +126,7 @@ en:
       email_status: Email status
       enable: Enable
       enabled: Enabled
-      feed_url: Feed URL
       followers: Followers
-      followers_url: Followers URL
       follows: Follows
       header: Header
       inbox_url: Inbox URL
@@ -147,10 +154,8 @@ en:
       no_account_selected: No accounts were changed as none were selected
       no_limits_imposed: No limits imposed
       not_subscribed: Not subscribed
-      outbox_url: Outbox URL
       pending: Pending review
       perform_full_suspension: Suspend
-      profile_url: Profile URL
       promote: Promote
       protocol: Protocol
       public: Public
@@ -173,8 +178,8 @@ en:
         moderator: Moderator
         staff: Staff
         user: User
-      salmon_url: Salmon URL
       search: Search
+      search_same_ip: Other users with the same IP
       shared_inbox_url: Shared inbox URL
       show:
         created_reports: Made reports
@@ -201,10 +206,12 @@ en:
         confirm_user: "%{name} confirmed e-mail address of user %{target}"
         create_account_warning: "%{name} sent a warning to %{target}"
         create_custom_emoji: "%{name} uploaded new emoji %{target}"
+        create_domain_allow: "%{name} whitelisted domain %{target}"
         create_domain_block: "%{name} blocked domain %{target}"
         create_email_domain_block: "%{name} blacklisted e-mail domain %{target}"
         demote_user: "%{name} demoted user %{target}"
         destroy_custom_emoji: "%{name} destroyed emoji %{target}"
+        destroy_domain_allow: "%{name} removed domain %{target} from whitelist"
         destroy_domain_block: "%{name} unblocked domain %{target}"
         destroy_email_domain_block: "%{name} whitelisted e-mail domain %{target}"
         destroy_status: "%{name} removed status by %{target}"
@@ -339,6 +346,7 @@ en:
       delete: Delete
       destroyed_msg: Successfully deleted e-mail domain from blacklist
       domain: Domain
+      empty: No e-mail domains currently blacklisted.
       new:
         create: Add domain
         title: New e-mail blacklist entry
@@ -395,12 +403,17 @@ en:
       destroyed_msg: Report note successfully deleted!
     reports:
       account:
-        note: note
-        report: report
+        notes:
+          one: "%{count} note"
+          other: "%{count} notes"
+        reports:
+          one: "%{count} report"
+          other: "%{count} reports"
       action_taken_by: Action taken by
       are_you_sure: Are you sure?
       assign_to_self: Assign to me
       assigned: Assigned moderator
+      by_target_domain: Domain of reported account
       comment:
         none: None
       created_at: Reported
@@ -446,6 +459,8 @@ en:
         users: To logged-in local users
       domain_blocks_rationale:
         title: Show rationale
+      enable_bootstrap_timeline_accounts:
+        title: Enable default follows for new users
       hero:
         desc_html: Displayed on the frontpage. At least 600x100px recommended. When not set, falls back to server thumbnail
         title: Hero image
@@ -574,7 +589,12 @@ en:
     animations_and_accessibility: Animations and accessibility
     confirmation_dialogs: Confirmation dialogs
     discovery: Discovery
+    localization:
+      body: Mastodon is translated by volunteers.
+      guide_link: https://crowdin.com/project/mastodon
+      guide_link_text: Everyone can contribute.
     sensitive_content: Sensitive content
+    toot_layout: Toot layout
   application_mailer:
     notification_preferences: Change e-mail preferences
     salutation: "%{name},"
@@ -680,6 +700,32 @@ en:
     directory: Profile directory
     explanation: Discover users based on their interests
     explore_mastodon: Explore %{title}
+  domain_blocks:
+    blocked_domains: List of limited and blocked domains
+    description: This is the list of servers that %{instance} limits or reject federation with.
+    domain: Domain
+    media_block: Media block
+    no_domain_blocks: "(No domain blocks)"
+    severity: Severity
+    severity_legend:
+      media_block: Media files coming from the server are neither fetched, stored, or displayed to the user.
+      silence: Accounts from silenced servers can be found, followed and interacted with, but their toots will not appear in the public timelines, and notifications from them will not reach local users who are not following them.
+      suspension: No content from suspended servers is stored or displayed, nor is any content sent to them. Interactions from suspended servers are ignored.
+      suspension_disclaimer: Suspended servers may occasionally retrieve public content from this server.
+      title: Severities
+    show_rationale: Show rationale
+    silence: Silence
+    suspension: Suspension
+    title: "%{instance} List of blocked instances"
+  domain_subscribes:
+    add_new: Add
+    edit:
+      title: Edit
+    exclude_reblog: Exclude
+    hint_html: "<strong>What are domain subscription?</strong> Insert public posts from the specified domain into the home or list timeline. Posts received by the server (federated timeline) are targets."
+    include_reblog: Include
+    new:
+      title: Add new domain subscription
   domain_validator:
     invalid_domain: is not a valid domain name
   errors:
@@ -711,10 +757,14 @@ en:
     blocks: You block
     csv: CSV
     domain_blocks: Domain blocks
-    follows: You follow
     lists: Lists
     mutes: You mute
     storage: Media storage
+  favourite_tags:
+    add_new: Add new
+    errors:
+      limit: You have already favourite the maximum amount of hashtags
+    hint_html: "<strong>What are favourite hashtags?</strong> They are used only for you, and are tools to help you browse using hashtags. You can quickly switch between timelines."
   featured_tags:
     add_new: Add new
     errors:
@@ -733,9 +783,17 @@ en:
       invalid_irreversible: Irreversible filtering only works with home or notifications context
     index:
       delete: Delete
+      empty: You have no filters.
       title: Filters
     new:
       title: Add new filter
+  follow_tags:
+    add_new: Add
+    edit:
+      title: Edit
+    hint_html: "<strong>What are follow hashtags?</strong> They are a collection of hashtags you follow. From the posts with hashtags received by the server, the one with the hashtag specified here is inserted into the home or list timeline."
+    new:
+      title: Add new hashtag follow
   footer:
     developers: Developers
     more: More…
@@ -808,9 +866,34 @@ en:
       expires_at: Expires
       uses: Uses
     title: Invite people
+  keyword_subscribes:
+    add_new: Add
+    disabled: Disabled
+    edit:
+      title: Edit
+    enabled: Enabled
+    errors:
+      duplicate: The same content has already been registered
+      limit: You have reached the maximum number of "Keyword subscribes" that can be registered
+      regexp: "Regular expression error: %{message}"
+    hint_html: "<strong>What is a keyword subscribes?</strong> Inserts a public post that matches one of the specified words or a regular expression into the home or list timeline. Posts received by the server (federated timeline) are targets."
+    ignorecase:
+      enabled: Ignore
+      disabled: Sensitive
+    ignore_block: Ignore
+    index:
+      delete: Delete
+      title: Keyword subscribe
+    new:
+      title: Add new keyword subscribe
+    regexp:
+      enabled: Regex
+      disabled: Keyword
   lists:
+    add_new: Add new list
     errors:
       limit: You have reached the maximum amount of lists
+    home: Home
   media_attachments:
     validations:
       images_and_video: Cannot attach a video to a status that already contains images
@@ -881,6 +964,10 @@ en:
       body: 'Your status was boosted by %{name}:'
       subject: "%{name} boosted your status"
       title: New boost
+  notifications:
+    email_events: Events for e-mail notifications
+    email_events_hint: 'Select events that you want to receive notifications for:'
+    other_settings: Other notifications settings
   number:
     human:
       decimal_units:
@@ -905,16 +992,20 @@ en:
       duration_too_long: is too far into the future
       duration_too_short: is too soon
       expired: The poll has already ended
+      invalid_choice: The chosen vote option does not exist
       over_character_limit: cannot be longer than %{max} characters each
       too_few_options: must have more than one item
       too_many_options: can't contain more than %{max} items
   preferences:
+    fedibird_features: Fedibird features
     other: Other
     posting_defaults: Posting defaults
     public_timelines: Public timelines
   relationships:
     activity: Account activity
     dormant: Dormant
+    followers: Followers
+    following: Following
     last_active: Last active
     most_recent: Most recent
     moved: Moved
@@ -990,18 +1081,24 @@ en:
   settings:
     account: Account
     account_settings: Account settings
+    account_subscribes: Account subscribes
     aliases: Account aliases
     appearance: Appearance
     authorized_apps: Authorized apps
     back: Back to Mastodon
     delete: Account deletion
     development: Development
+    domain_subscribes: Domain subscribes
     edit_profile: Edit profile
     export: Data export
+    favourite_tags: Favourite hashtags
     featured_tags: Featured hashtags
+    follow_and_subscriptions: Follows and subscriptions
+    follow_tags: Following hashtags
     identity_proofs: Identity proofs
     import: Import
     import_and_export: Import and export
+    keyword_subscribes: Keyword subscribes
     migrate: Account migration
     notifications: Notifications
     preferences: Preferences
@@ -1150,7 +1247,26 @@ en:
     mastodon-wide-dark: Mastodon Default Theme, Full Width (dark)
     contrast: Mastodon (High contrast)
     default: QOTO Default Theme
+    instance-ticker-type-0-contrast: Mastodon (High contrast / Instance Ticker Type-0 alticon)
+    instance-ticker-type-0-light: Mastodon (Light / Instance Ticker Type-0 alticon)
+    instance-ticker-type-0: Mastodon (Dark / Instance Ticker Type-0 alticon)
+    instance-ticker-type-1-contrast: Mastodon (High contrast / Instance Ticker Type-1 favicon)
+    instance-ticker-type-1-light: Mastodon (Light / Instance Ticker Type-1 favicon)
+    instance-ticker-type-1: Mastodon (Dark / Instance Ticker Type-1 favicon)
+    instance-ticker-type-10-contrast: Mastodon (High contrast / Instance Ticker Type-10 alticon + notification)
+    instance-ticker-type-10-light: Mastodon (Light / Instance Ticker Type-10 alticon + notification)
+    instance-ticker-type-10: Mastodon (Dark / Instance Ticker Type-10 alticon + notification)
+    instance-ticker-type-11-contrast: Mastodon (High contrast / Instance Ticker Type-11 favicon + notification)
+    instance-ticker-type-11-light: Mastodon (Light / Instance Ticker Type-11 favicon + notification)
+    instance-ticker-type-11: Mastodon (Dark / Instance Ticker Type-11 favicon + notification)
+    instance-ticker-type-12-contrast: Mastodon (High contrast / Instance Ticker Type-12 favicon v2+ notification)
+    instance-ticker-type-12-light: Mastodon (Light / Instance Ticker Type-12 favicon v2+ notification)
+    instance-ticker-type-12: Mastodon (Dark / Instance Ticker Type-12 favicon v2+ notification)
+    instance-ticker-type-2-contrast: Mastodon (High contrast / Instance Ticker Type-2 favicon v2)
+    instance-ticker-type-2-light: Mastodon (Light / Instance Ticker Type-2 favicon v2)
+    instance-ticker-type-2: Mastodon (Dark / Instance Ticker Type-2 favicon v2)
     mastodon-light: Mastodon (Light)
+    mobile-small: Mobile Small / Mastodon (Dark)
   time:
     formats:
       default: "%b %d, %Y, %H:%M"
@@ -1199,14 +1315,14 @@ en:
       edit_profile_step: You can customize your profile by uploading an avatar, header, changing your display name and more. If you’d like to review new followers before they’re allowed to follow you, you can lock your account.
       explanation: Here are some tips to get you started
       final_action: Start posting
-      final_step: 'Start posting! Even without followers your public messages may be seen by others, for example on the local timeline and in hashtags. You may want to introduce yourself on the #introductions hashtag.'
+      final_step: 'Start posting! Even without followers your public messages may be seen by others, for example on the federation timeline and in hashtags. You may want to introduce yourself on the #fedibird hashtag.'
       full_handle: Your full handle
       full_handle_hint: This is what you would tell your friends so they can message or follow you from another server.
       review_preferences_action: Change preferences
       review_preferences_step: Make sure to set your preferences, such as which emails you'd like to receive, or what privacy level you’d like your posts to default to. If you don’t have motion sickness, you could choose to enable GIF autoplay.
       subject: Welcome to Mastodon
-      tip_federated_timeline: The federated timeline is a firehose view of the Mastodon network. But it only includes people your neighbours are subscribed to, so it's not complete.
-      tip_following: You follow your server's admin(s) by default. To find more interesting people, check the local and federated timelines.
+      tip_federated_timeline: The federated timeline is a firehose view of the Mastodon network. But it only includes people your neighbors are subscribed to or posts sent via relay, so it's not complete.
+      tip_following: "You follow your server's information account by default. To find more interesting people, check the #fedibird tag and federated timelines."
       tip_local_timeline: The local timeline is a firehose view of people on %{instance}. These are your immediate neighbours!
       tip_mobile_webapp: If your mobile browser offers you to add Mastodon to your homescreen, you can receive push notifications. It acts like a native app in many ways!
       tips: Tips
diff --git a/config/locales/en_GB.yml b/config/locales/en_GB.yml
index d07c7ad3fea0e9fe8e71995ef8f3288426d223f7..834b86a3d41287b094fb1d0863c6150937a07094 100644
--- a/config/locales/en_GB.yml
+++ b/config/locales/en_GB.yml
@@ -105,9 +105,7 @@ en_GB:
       email_status: Email status
       enable: Enable
       enabled: Enabled
-      feed_url: Feed URL
       followers: Followers
-      followers_url: Followers URL
       follows: Follows
       header: Header
       inbox_url: Inbox URL
@@ -134,10 +132,8 @@ en_GB:
       most_recent_ip: Most recent IP
       no_limits_imposed: No limits imposed
       not_subscribed: Not subscribed
-      outbox_url: Outbox URL
       pending: Pending review
       perform_full_suspension: Suspend
-      profile_url: Profile URL
       promote: Promote
       protocol: Protocol
       public: Public
@@ -159,7 +155,6 @@ en_GB:
         moderator: Moderator
         staff: Staff
         user: User
-      salmon_url: Salmon URL
       search: Search
       shared_inbox_url: Shared inbox URL
       show:
diff --git a/config/locales/eo.yml b/config/locales/eo.yml
index dd3ca1079b02eda3dcc5a17ffec2203df4040b05..f9374272f3472a695f538d8bf96c1eabd99222ea 100644
--- a/config/locales/eo.yml
+++ b/config/locales/eo.yml
@@ -71,6 +71,7 @@ eo:
     roles:
       admin: Administranto
       bot: Roboto
+      group: Grupo
       moderator: Kontrolanto
     unavailable: Profilo ne disponebla
     unfollow: Ne plu sekvi
@@ -111,9 +112,7 @@ eo:
       email_status: Retadreso Stato
       enable: Ebligi
       enabled: Ebligita
-      feed_url: URL de la fluo
       followers: Sekvantoj
-      followers_url: URL de la sekvantoj
       follows: Sekvatoj
       header: Kapa bildo
       inbox_url: Enira URL
@@ -141,10 +140,8 @@ eo:
       no_account_selected: Neniu konto estis ŝanĝita ĉar neniu estis selektita
       no_limits_imposed: Neniu limito trudita
       not_subscribed: Ne abonita
-      outbox_url: Elira URL
       pending: Pritraktata recenzo
       perform_full_suspension: Haltigi
-      profile_url: Profila URL
       promote: Plirangigi
       protocol: Protokolo
       public: Publika
@@ -167,8 +164,8 @@ eo:
         moderator: Kontrolanto
         staff: Teamo
         user: Uzanto
-      salmon_url: Salmon-URL
       search: Serĉi
+      search_same_ip: Aliaj uzantoj kun la sama IP
       shared_inbox_url: URL de kunhavigita leterkesto
       show:
         created_reports: Kreitaj signaloj
@@ -195,12 +192,14 @@ eo:
         confirm_user: "%{name} konfirmis retadreson de uzanto %{target}"
         create_account_warning: "%{name} sendis averton al %{target}"
         create_custom_emoji: "%{name} alŝutis novan emoĝion %{target}"
+        create_domain_allow: "%{name} aldonis domajnon %{target} al la blanka listo"
         create_domain_block: "%{name} blokis domajnon %{target}"
         create_email_domain_block: "%{name} metis en nigran liston domajnon %{target}"
         demote_user: "%{name} degradis uzanton %{target}"
         destroy_custom_emoji: "%{name} neniigis la emoĝion %{target}"
+        destroy_domain_allow: "%{name} forigis domajnon %{target} el la blanka listo"
         destroy_domain_block: "%{name} malblokis domajnon %{target}"
-        destroy_email_domain_block: "%{name} metis en blankan liston domajnon %{target}"
+        destroy_email_domain_block: "%{name} aldonis retadresan domajnon %{target} al la blanka listo"
         destroy_status: "%{name} forigis mesaĝojn de %{target}"
         disable_2fa_user: "%{name} malebligis dufaktoran aÅ­tentigon por uzanto %{target}"
         disable_custom_emoji: "%{name} malebligis emoĝion %{target}"
@@ -223,10 +222,12 @@ eo:
       deleted_status: "(forigita mesaĝo)"
       title: Kontrola protokolo
     custom_emojis:
+      assign_category: Atribui kategorion
       by_domain: Domajno
       copied_msg: Loka kopio de la emoĝio sukcese kreita
       copy: Kopii
       copy_failed_msg: Fari lokan kopion de ĉi tiu emoĝio ne eblis
+      create_new_category: Krei novan kategorion
       created_msg: Emoĝio sukcese kreita!
       delete: Forigi
       destroyed_msg: Emoĝio sukcese forigita!
@@ -246,12 +247,14 @@ eo:
       shortcode: Mallonga kodo
       shortcode_hint: AlmenaÅ­ 2 signoj, nur literoj, ciferoj kaj substrekoj
       title: Propraj emoĝioj
+      uncategorized: Nekategoriigita
       unlist: Nelistigi
       unlisted: Nelistigita
       update_failed_msg: Ĝisdatigi tiun emoĝion ne eblis
       updated_msg: Emoĝio sukcese ĝisdatigita!
       upload: Alŝuti
     dashboard:
+      authorized_fetch_mode: Sekura reĝimo
       backlog: postigitaj taskoj
       config: Agordado
       feature_deletions: Forigo de kontoj
@@ -263,7 +266,8 @@ eo:
       feature_timeline_preview: Templinio antaÅ­vidi
       features: Funkcioj
       hidden_service: Federacio kun kaŝitaj servoj
-      open_reports: nefermitaj raportoj
+      open_reports: nesolvitaj signaloj
+      pending_users: uzantoj atendantaj revizion
       recent_users: Lastatempaj uzantoj
       search: Tutteksta serĉado
       single_user_mode: Unuuzanta reĝimo
@@ -277,10 +281,10 @@ eo:
       week_users_new: uzantoj tiusemajne
       whitelist_mode: En la blanka listo
     domain_allows:
-      add_new: En la blanka listo domajno
-      created_msg: Domajno sukcese blanklistigita
-      destroyed_msg: Domajno estis forigita de la blanklisto
-      undo: Forigi de la blanklisto
+      add_new: Aldoni domajnon al la blanka listo
+      created_msg: Domajno estis sukcese aldonita al la blanka listo
+      destroyed_msg: Domajno estis forigita el la blanka listo
+      undo: Forigi el la blanka listo
     domain_blocks:
       add_new: Aldoni novan
       created_msg: Domajna blokado en traktado
@@ -300,11 +304,11 @@ eo:
       private_comment: Privata komento
       public_comment: Publika komento
       reject_media: Malakcepti aÅ­dovidajn dosierojn
-      reject_media_hint: Forigas aŭdovidaĵojn loke konservitajn kaj rifuzas alŝuti ajnan estonte. Senzorge pri haltigoj
-      reject_reports: Malakcepti raportojn
-      reject_reports_hint: Ignori ĉiujn raportojn el tiu domajno. Nur gravas por silentigoj
+      reject_media_hint: Forigas aŭdovidaĵojn loke konservitajn kaj rifuzas alŝuti ajnan estonte. Ne koncernas haltigojn
+      reject_reports: Malakcepti signalojn
+      reject_reports_hint: Ignori ĉiujn signalojn el tiu domajno. Ne koncernas haltigojn
       rejecting_media: aŭdovidaj dosieroj malakceptiĝas
-      rejecting_reports: raportoj malakceptiĝas
+      rejecting_reports: malakceptas signalojn
       severity:
         silence: silentigita
         suspend: haltigita
@@ -348,7 +352,7 @@ eo:
       total_blocked_by_us: Blokitaj de ni
       total_followed_by_them: Sekvataj de ili
       total_followed_by_us: Sekvataj de ni
-      total_reported: Raportoj pri ili
+      total_reported: Signaloj pri ili
       total_storage: Aŭdovidaj kunsendaĵoj
     invites:
       deactivate_all: Malaktivigi ĉion
@@ -380,12 +384,17 @@ eo:
       destroyed_msg: Signala noto sukcese forigita!
     reports:
       account:
-        note: noto
-        report: signalo
+        notes:
+          one: "%{count} noto"
+          other: "%{count} notoj"
+        reports:
+          one: "%{count} signalo"
+          other: "%{count} signaloj"
       action_taken_by: Ago farita de
       are_you_sure: Ĉu vi certas?
       assign_to_self: Asigni al mi
       assigned: Asignita kontrolanto
+      by_target_domain: Domajno de la signalita konto
       comment:
         none: Nenio
       created_at: Signalita
@@ -426,6 +435,10 @@ eo:
         disabled: Al neniu
         title: Vidi domajna blokado
         users: Al ensalutintaj lokaj uzantoj
+      domain_blocks_rationale:
+        title: Montri la kialon
+      enable_bootstrap_timeline_accounts:
+        title: Ebligi dekomencajn sekvantojn por novaj uzantoj
       hero:
         desc_html: Montrata en la ĉefpaĝo. Almenaŭ 600x100px rekomendita. Kiam ne agordita, la bildeto de la servilo estos uzata
         title: Kapbildo
@@ -503,10 +516,12 @@ eo:
       title: Mesaĝoj de la konto
       with_media: Kun aŭdovidaĵoj
     tags:
+      accounts_today: Unikaj uzoj hodiaÅ­
+      accounts_week: Unikaj uzoj je ĉi tiu semajno
       context: Kunteksto
       directory: En la adresaro
       in_directory: "%{count} en adresaro"
-      last_active: Lasta aktiva
+      last_active: Laste aktiva
       most_popular: La plej populara
       most_recent: Plej lasta
       name: Kradvorto
@@ -546,7 +561,12 @@ eo:
     animations_and_accessibility: Animacioj kaj alirebleco
     confirmation_dialogs: Konfirmaj fenestroj
     discovery: Eltrovo
+    localization:
+      body: Mastodon estas tradukita per volontuloj.
+      guide_link: https://crowdin.com/project/mastodon
+      guide_link_text: Ĉiu povas kontribui.
     sensitive_content: Tikla enhavo
+    toot_layout: Mesaĝo aranĝo
   application_mailer:
     notification_preferences: Ŝanĝi retmesaĝajn preferojn
     salutation: "%{name},"
@@ -625,10 +645,16 @@ eo:
       x_months: "%{count}mo"
       x_seconds: "%{count}s"
   deletes:
+    challenge_not_passed: La informaĵo ke vi enigis estis malĝusta
     confirm_password: Enmetu vian nunan pasvorton por konfirmi vian identecon
     confirm_username: Enigi vian uzantnomon por konfirmi la procedo
     proceed: Forigi konton
     success_msg: Via konto estis sukcese forigita
+    warning:
+      email_change_html: Vi povas <a href="%{path}">ŝanĝi vian retadreson</a> sen forigi vian konton
+      more_details_html: Por pli da detaloj, vidi la <a href="%{terms_path}">privatecan politikon</a>.
+      username_available: Via uzantnomo iĝos denove disponebla
+      username_unavailable: Via uzantnomo restos nedisponebla
   directories:
     directory: Profilujo
     explanation: Malkovru uzantojn per iliaj interesoj
@@ -666,7 +692,6 @@ eo:
     blocks: Vi blokas
     csv: CSV
     domain_blocks: Blokoj de domajnoj
-    follows: Vi sekvas
     lists: Listoj
     mutes: Vi silentigas
     storage: Aŭdovidaĵa konservado
@@ -688,6 +713,7 @@ eo:
       invalid_irreversible: Nemalfarebla filtrado funkcias nur por hejma aÅ­ sciiga kuntekstoj
     index:
       delete: Forigi
+      empty: Vi ne havas filtriloj.
       title: Filtriloj
     new:
       title: Aldoni novan filtrilon
@@ -771,7 +797,22 @@ eo:
       too_many: Aldoni pli ol 4 dosierojn ne eblas
   migrations:
     acct: uzantnomo@domajno de la nova konto
+    cancel: Nuligi alidirekton
+    cancelled_msg: Sukcese forigis la alidirekton.
+    errors:
+      already_moved: estas la saman konton vi jam translokiĝis al
+      move_to_self: ne povas esti nuna konto
+      not_found: ne povis trovi
+      on_cooldown: Vi estas ĉe malvarmiĝi
+    followers_count: Sekvantoj en la momento de moviĝo
+    incoming_migrations: Moviĝi el alia konto
+    incoming_migrations_html: Por moviĝi el alia konto al ĉi tiu, vi unue devas <a href="%{path}">krei kromnomo de konto</a>.
+    past_migrations: Pasintaj translokaj
     proceed_with_move: Translokigi sekvantoj
+    redirecting_to: Via konto alidirektas al %{acct}.
+    set_redirect: Agordi alidirekton
+    warning:
+      only_redirect_html: Alie, vi povas <a href="%{path}">nur aldoni alidirekton en via profilo</a>.
   moderation:
     title: Kontrolado
   notification_mailer:
@@ -808,6 +849,10 @@ eo:
       body: "%{name} diskonigis vian mesaĝon:"
       subject: "%{name} diskonigis vian mesaĝon"
       title: Nova diskonigo
+  notifications:
+    email_events: Eventoj por retpoŝtaj sciigoj
+    email_events_hint: 'Elekti la eventojn pri kioj vi volas ricevi sciigojn:'
+    other_settings: Aliaj agordoj de sciigoj
   number:
     human:
       decimal_units:
@@ -831,6 +876,7 @@ eo:
       duration_too_long: estas tro for en la estonteco
       duration_too_short: estas tro frue
       expired: La enketo jam finiĝis
+      invalid_choice: La elektita voĉdono ne ekzistas
       over_character_limit: ne povas esti po pli longa ol %{max} signoj
       too_few_options: devas enhavi pli da unu propono
       too_many_options: ne povas enhavi pli da %{max} proponoj
@@ -839,9 +885,11 @@ eo:
     posting_defaults: Afiŝadoj defaŭltoj
     public_timelines: Publikaj templinioj
   relationships:
-    activity: Konto aktiveco
+    activity: Konta aktiveco
     dormant: Dormanta
-    last_active: Lasta aktiva
+    followers: Sekvantoj
+    following: Sekvatoj
+    last_active: Laste aktiva
     most_recent: Plej lasta
     moved: Moviĝita
     mutual: Reciproka
@@ -849,7 +897,7 @@ eo:
     relationship: Rilato
     remove_selected_domains: Forigi ĉiuj sekvantojn el la selektitajn domajnojn
     remove_selected_followers: Forigi selektitajn sekvantojn
-    remove_selected_follows: Malsekvi selektitajn uzantojn
+    remove_selected_follows: Ne plu sekvi elektitajn uzantojn
     status: Statuso de la konto
   remote_follow:
     acct: Enmetu vian uzantnomo@domajno de kie vi volas agi
@@ -957,6 +1005,9 @@ eo:
       private: Mesaĝo nepublika ne povas esti alpinglita
       reblog: Diskonigo ne povas esti alpinglita
     poll:
+      total_people:
+        one: "%{count} persono"
+        other: "%{count} personoj"
       total_votes:
         one: "%{count} voĉdono"
         other: "%{count} voĉdonoj"
@@ -975,6 +1026,8 @@ eo:
     pinned: Alpinglita
     reblogged: diskonigita
     sensitive_content: Tikla enhavo
+  tags:
+    does_not_match_previous_name: ne kongruas kun la antaÅ­a nomo
   terms:
     title: Uzkondiĉoj kaj privateca politiko de %{instance}
   themes:
diff --git a/config/locales/es-AR.yml b/config/locales/es-AR.yml
index d70007d271b6da125d3da18840fbb4cf96aba5dc..da1ad126f826d91d0c0afaeeb7118b0b21d58f3c 100644
--- a/config/locales/es-AR.yml
+++ b/config/locales/es-AR.yml
@@ -11,6 +11,7 @@ es-AR:
     apps: Aplicaciones móviles
     apps_platforms: Usá Mastodon desde iOS, Android y otras plataformas
     browse_directory: Explorá el directorio de perfiles y filtrá por intereses
+    browse_local_posts: Explorá un flujo en tiempo real de toots públicos en este servidor
     browse_public_posts: Explorá un flujo en tiempo real de toots públicos en Mastodon
     contact: Contacto
     contact_missing: No establecido
@@ -50,14 +51,14 @@ es-AR:
   accounts:
     choices_html: 'Recomendados de %{name}:'
     endorsements_hint: Podés recomendar a gente que seguís desde la interface web, y van a aparecerán acá.
-    featured_tags_hint: Pdés destacar etiquetas específicas que se mostrarán acá.
+    featured_tags_hint: Podés destacar etiquetas específicas que se mostrarán acá.
     follow: Seguir
     followers:
       one: Seguidor
       other: Seguidores
     following: Siguiendo
     joined: Se unió en %{date}
-    last_active: última vez activo
+    last_active: última actividad
     link_verified_on: La propiedad de este enlace fue verificada el %{date}
     media: Medios
     moved_html: "%{name} se mudó a %{new_profile_link}:"
@@ -77,6 +78,7 @@ es-AR:
     roles:
       admin: Administrador
       bot: Bot
+      group: Grupo
       moderator: Moderador
     unavailable: Perfil no disponible
     unfollow: Dejar de seguir
@@ -117,9 +119,8 @@ es-AR:
       email_status: Estado del correo
       enable: Habilitar
       enabled: Habilitada
-      feed_url: Dirección de la fuente web
       followers: Seguidores
-      followers_url: Dirección web de los seguidores
+      follows: Seguidores
       header: Cabecera
       inbox_url: Dirección web de la bandeja de entrada
       invited_by: Invitado por
@@ -146,10 +147,8 @@ es-AR:
       no_account_selected: No se cambió ninguna cuenta ya que ninguna fue seleccionada
       no_limits_imposed: Sin límites impuestos
       not_subscribed: No suscripto
-      outbox_url: Dirección web de la bandeja de salida
       pending: Revisión pendiente
       perform_full_suspension: Suspender
-      profile_url: Dirección web del perfil
       promote: Promocionar
       protocol: Protocolo
       public: Pública
@@ -173,6 +172,7 @@ es-AR:
         staff: Equipo
         user: Usuario
       search: Buscar
+      search_same_ip: Otros usuarios con la misma dirección IP
       shared_inbox_url: Dirección web de la bandeja de entrada compartida
       show:
         created_reports: Informes hechos
@@ -182,6 +182,7 @@ es-AR:
       statuses: Estados
       subscribe: Suscribirse
       suspended: Suspendidas
+      time_in_queue: Esperando en cola %{time}
       title: Cuentas
       unconfirmed_email: Correo electrónico sin confirmar
       undo_silenced: Deshacer silenciado
@@ -198,10 +199,12 @@ es-AR:
         confirm_user: "%{name} confirmó la dirección de correo del usuario %{target}"
         create_account_warning: "%{name} envió una advertencia a %{target}"
         create_custom_emoji: "%{name} subió nuevo emoji %{target}"
+        create_domain_allow: "%{name} aprobó el dominio %{target}"
         create_domain_block: "%{name} bloqueó el dominio %{target}"
         create_email_domain_block: "%{name} desaprobó el dominio de correo electrónico %{target}"
         demote_user: "%{name} bajó de nivel al usuario %{target}"
         destroy_custom_emoji: "%{name} destruyó el emoji %{target}"
+        destroy_domain_allow: "%{name} quitó el dominio %{target} de los permitidos"
         destroy_domain_block: "%{name} desbloqueó el dominio %{target}"
         destroy_email_domain_block: "%{name} aprobó el dominio de correo electrónico %{target}"
         destroy_status: "%{name} eliminó el estado de %{target}"
@@ -211,6 +214,7 @@ es-AR:
         enable_custom_emoji: "%{name} habilitó el emoji %{target}"
         enable_user: "%{name} habilitó el inicio de sesión para el usuario %{target}"
         memorialize_account: "%{name} convirtió la cuenta de %{target} en una página de recordatorio"
+        promote_user: "%{name} promovió al usuario %{target}"
         remove_avatar_user: "%{name} quitó el avatar de %{target}"
         reopen_report: "%{name} reabrió la denuncia %{target}"
         reset_password_user: "%{name} cambió la contraseña del usuario %{target}"
@@ -335,6 +339,7 @@ es-AR:
       delete: Eliminar
       destroyed_msg: Se aprobó dominio de correo electrónico exitosamente
       domain: Dominio
+      empty: Actualmente no hay dominios de correo electrónico desaprobados.
       new:
         create: Agregar dominio
         title: Nueva desaprobación de correo electrónico
@@ -382,21 +387,848 @@ es-AR:
       inbox_url: Dirección web del relé
       pending: Esperando aprobación del relé
       save_and_enable: Guardar y habilitar
+      setup: Configurar una conexión de relé
+      signatures_not_enabled: Los relés no funcionarán correctamente mientras el modo seguro o el de aprobación estén habilitados
+      status: Estado
+      title: Relés
+    report_notes:
+      created_msg: "¡La nota de denuncia fue creada exitosamente!"
+      destroyed_msg: "¡La nota de denuncia fue eliminada exitosamente!"
+    reports:
+      account:
+        notes:
+          one: "%{count} nota"
+          other: "%{count} notas"
+        reports:
+          one: "%{count} denuncia"
+          other: "%{count} denuncias"
+      action_taken_by: Acción tomada por
+      are_you_sure: "¿Estás seguro?"
+      assign_to_self: Asignármela a mí
+      assigned: Moderador asignado
+      by_target_domain: Dominio de la cuenta denunciada
+      comment:
+        none: Ninguno
+      created_at: Denunciado
+      mark_as_resolved: Marcar como resuelta
+      mark_as_unresolved: Marcar como no resuelta
+      notes:
+        create: Agregar nota
+        create_and_resolve: Resolver con nota
+        create_and_unresolve: Reabrir con nota
+        delete: Eliminar
+        placeholder: Describí qué acciones se tomaron, o cualquier otra actualización relacionada…
+      reopen: Reabrir denuncia
+      report: 'Denunciar #%{id}'
+      reported_account: Cuenta denunciada
+      reported_by: Denunciada por
+      resolved: Resuelta
+      resolved_msg: "¡Denuncia exitosamente resuelta!"
+      status: Estado
+      title: Denuncias
+      unassign: Desasignar
+      unresolved: No resuelta
+      updated_at: Actualizada
+    settings:
+      activity_api_enabled:
+        desc_html: Conteos de estados publicados localmente, usuarios activos y nuevos registros en tandas semanales
+        title: Publicar estadísticas agregadas sobre la actividad del usuario
+      bootstrap_timeline_accounts:
+        desc_html: Separar múltiples nombres de usuario con coma. Sólo funcionarán las cuentas locales y desbloqueadas. Predeterminadamente, cuando está vacío todos los administradores locales.
+        title: Seguimientos predeterminados para usuarios nuevos
+      contact_information:
+        email: Correo electrónico de negocios
+        username: Nombre de usuario de contacto
+      custom_css:
+        desc_html: Modificá la apariencia con CSS cargado en cada página
+        title: CSS personalizado
+      default_noindex:
+        desc_html: Afecta a todos los usuarios que no cambiaron esta configuración por sí mismos
+        title: Quitar predeterminadamente a los usuarios de la indexación de los motores de búsqueda
+      domain_blocks:
+        all: A todos
+        disabled: A nadie
+        title: Mostrar dominios bloqueados
+        users: A usuarios locales con sesiones abiertas
+      domain_blocks_rationale:
+        title: Mostrar razonamiento
+      enable_bootstrap_timeline_accounts:
+        title: Habilitar seguimientos predeterminados para nuevas cuentas
+      hero:
+        desc_html: Mostrado en la página principal. Se recomienda un tamaño mínimo de 600x100 píxeles. Predeterminadamente se establece a la miniatura del servidor.
+        title: Imagen de portada
+      mascot:
+        desc_html: Mostrado en múltiples páginas. Se recomienda un tamaño mínimo de 293x205 píxeles. Cuando no se especifica, se muestra la mascota predeterminada.
+        title: Imagen de la mascota
+      peers_api_enabled:
+        desc_html: Nombres de dominio que este servidor encontró en el fediverso
+        title: Publicar lista de servidores descubiertos
+      preview_sensitive_media:
+        desc_html: Los enlaces de previsualizaciones en otros sitios web mostrarán una miniatura incluso si el medio está marcado como contenido sensible
+        title: Mostrar medios sensibles en previsualizaciones de OpenGraph
+      profile_directory:
+        desc_html: Permitir que los usuarios puedan ser descubiertos
+        title: Habilitar directorio de perfiles
+      registrations:
+        closed_message:
+          desc_html: Mostrado en la portada cuando los registros están cerrados. Podés usar etiquetas HTML.
+          title: Mensaje de registro cerrado
+        deletion:
+          desc_html: Permitor que cualquiera elimine su cuenta
+          title: Abrir eliminación de cuenta
+        min_invite_role:
+          disabled: Nadie
+          title: Permitir invitaciones de
+      registrations_mode:
+        modes:
+          approved: Se requiere aprobación para registrarse
+          none: Nadie puede registrarse
+          open: Cualquiera puede registrarse
+        title: Modo de registros
+      show_known_fediverse_at_about_page:
+        desc_html: Cuando está deshabilitado, restringe la línea temporal pública enlazada desde la página de inicio para mostrar sólo contenido local
+        title: Incluir contenido federado en la página de línea temporal pública no autenticada
+      show_staff_badge:
+        desc_html: Mostrar una insignia de equipo en la página de un usuario
+        title: Mostrar insignia de equipo
+      site_description:
+        desc_html: Párrafo introductorio en la API. Describe qué hace especial a este servidor de Mastodon y todo lo demás que sea importante. Podés usar etiquetas HTML, en particular <code>&lt;a&gt;</code> y <code>&lt;em&gt;</code>.
+        title: Descripción del servidor
+      site_description_extended:
+        desc_html: Un buen lugar para tu código de conducta, reglas, guías y otras cosas que definen tu servidor. Podés usar etiquets HTML.
+        title: Información extendida personalizada
+      site_short_description:
+        desc_html: Mostrado en la barra lateral y las etiquetas de metadatos. Describe lo que es Mastodon y qué hace especial a este servidor en un solo párrafo.
+        title: Descripción corta del servidor
+      site_terms:
+        desc_html: Podés escribir tus propias políticas de privacidad, términos de servicio u otras legalidades. Podés usar etiquetas HTML.
+        title: Términos de servicio personalizados
+      site_title: Nombre del servidor
+      spam_check_enabled:
+        desc_html: Mastodon puede denunciar automáticamente cuentas que envían mensajes no solicitados de forma repetida. Podrían haber falsos positivos.
+        title: Automatización antispam
+      thumbnail:
+        desc_html: Usado para previsualizaciones vía OpenGraph y APIs. Se recomienda 1200x630 píxeles.
+        title: Miniatura del servidor
+      timeline_preview:
+        desc_html: Mostrar enlace a la línea temporal pública en la página de inicio y permitir el acceso a la API a la línea temporal pública sin autenticación
+        title: Permitir acceso no autorizado a la línea temporal pública
+      title: Configuración del sitio
+      trendable_by_default:
+        desc_html: Afecta a etiquetas que no fueron rechazadas previamente
+        title: Permitir que las etiquetas sean tendencia sin revisión previa
+      trends:
+        desc_html: Mostrar públicamente etiquetas previamente revisadas que son tendencia actualmente
+        title: Etiquetas tendencias
+    statuses:
+      back_to_account: Volver a la página de la cuenta
+      batch:
+        delete: Eliminar
+        nsfw_off: Marcar contenido como no sensible
+        nsfw_on: Marcar contenido como sensible
+      deleted: Eliminado
+      failed_to_execute: Falló al ejecutar
+      media:
+        title: Medios
+      no_media: Sin medios
+      no_status_selected: No se cambió ningún estado ya que ninguno fue seleccionado
+      title: Estados de la cuenta
+      with_media: Con medios
+    tags:
+      accounts_today: Usos únicos de hoy
+      accounts_week: Usos únicos esta semana
+      breakdown: Desglose del consumo de hoy por fuentes
+      context: Contexto
+      directory: En el directorio
+      in_directory: "%{count} en el directorio"
+      last_active: Última actividad
+      most_popular: Lo más popular
+      most_recent: Lo más reciente
+      name: Etiqueta
+      review: Estado de revisión
+      reviewed: Revisado
+      title: Etiquetas
+      trending_right_now: En tendencia ahora mismo
+      unique_uses_today: "%{count} toots hoy"
+      unreviewed: No revisado
+      updated_msg: La configuración de la etiqueta se actualizó exitosamente
+    title: Administración
+    warning_presets:
+      add_new: Agregar nuevo
+      delete: Eliminar
+      edit: Editar
+      edit_preset: Editar preajuste de advertencia
+      title: Administrar preajustes de advertencia
+  admin_mailer:
+    new_pending_account:
+      body: Abajo están los detalles de la nueva cuenta. Podés aprobar o rechazar esta aplicación.
+      subject: Nueva cuenta para revisión en %{instance} (%{username})
+    new_report:
+      body: "%{reporter} denunció a %{target}"
+      body_remote: Alguien de %{domain} denunció a %{target}
+      subject: Nueva denuncia para %{instance} (#%{id})
+    new_trending_tag:
+      body: 'La etiqueta #%{name} está en tendencia hoy, pero no fue revisada previamente. No se mostrará públicamente a menos que lo permitas, o si no simplemente guardá el formulario como está para no volver a ver esto.'
+      subject: Nueva etiqueta para revisión en %{instance} (#%{name})
+  aliases:
+    add_new: Crear alias
+    created_msg: El nuevo alias se creó exitosamente. Ahora podés empezar la mudanza desde la cuenta vieja.
+    deleted_msg: Eliminaste el alias exitosamente. La mudanza de esa cuenta a esta ya no será posible.
+    hint_html: Si querés mudarte desde otra cuenta a esta, acá podés crear un alias, el cual es necesario antes de empezar a mudar seguidores de la cuenta vieja a esta. Esta acción por sí misma es <strong>inofensiva y reversible</strong>. <strong>La migración de la cuenta se inicia desde la cuenta anterior</strong>.
+    remove: Desenlazar alias
+  appearance:
+    advanced_web_interface: Interface web avanzada
+    advanced_web_interface_hint: 'Si querés hacer uso de todo el ancho de tu pantalla, la interface web avanzada te permite configurar varias columnas diferentes para ver tanta información al mismo tiempo como quieras: "Principal", "Notificaciones", "Línea temporal federada", y cualquier número de listas y etiquetas.'
+    animations_and_accessibility: Animaciones y accesibilidad
+    confirmation_dialogs: Diálogos de confirmación
+    discovery: Descubrimiento
+    localization:
+      body: Mastodon es localizado por voluntarios.
+      guide_link: https://es.crowdin.com/project/mastodon
+      guide_link_text: Todos pueden contribuir.
+    sensitive_content: Contenido sensible
+    toot_layout: Diseño del toot
+  application_mailer:
+    notification_preferences: Cambiar configuración de correo electrónico
+    salutation: "%{name}:"
+    settings: 'Cambiar configuración de correo electrónico: %{link}'
+    view: 'Vista:'
+    view_profile: Ver perfil
+    view_status: Ver estado
+  applications:
+    created: Aplicación creada exitosamente
+    destroyed: Apicación eliminada exitosamente
+    invalid_url: La dirección web ofrecida no es válida
+    regenerate_token: Regenerar clave de acceso
+    token_regenerated: Clave de acceso regenerada exitosamente
+    warning: Ojo con estos datos. ¡Nunca los compartas con nadie!
+    your_token: Tu clave de acceso
+  auth:
+    apply_for_account: Solicitar una invitación
+    change_password: Contraseña
+    checkbox_agreement_html: Acepto las <a href="%{rules_path}" target="_blank">reglas del servidor</a> y los <a href="%{terms_path}" target="_blank">términos del servicio</a>
+    checkbox_agreement_without_rules_html: Acepto los <a href="%{terms_path}" target="_blank">términos del servicio</a>
+    delete_account: Eliminar cuenta
+    delete_account_html: Si querés eliminar tu cuenta, podés <a href="%{path}">seguí por acá</a>. Se te va a pedir una confirmación.
+    description:
+      prefix_invited_by_user: "¡@%{name} te invita para que te unás a este servidor de Mastodon!"
+      prefix_sign_up: "¡Unite a Mastodon hoy!"
+      suffix: Con una cuenta vas a poder seguir gente, escribir estados e intercambiar mensajes ¡con usuarios de cualquier servidor de Mastodon y más!
+    didnt_get_confirmation: "¿No recibiste el correo electrónico de confirmación?"
+    forgot_password: "¿Te olvidaste la contraseña?"
+    invalid_reset_password_token: La clave para cambiar la contraseña no es válida o venció. Por favor, solicitá una nueva.
+    login: Iniciar sesión
+    logout: Cerrar sesión
+    migrate_account: Mudarse a otra cuenta
+    migrate_account_html: Si querés redireccionar esta cuenta a otra distinta, podés <a href="%{path}">configurar eso acá</a>.
+    or_log_in_with: O iniciar sesión con
+    providers:
+      cas: CAS
+      saml: SAML
+    register: Registrarse
+    registration_closed: "%{instance} no está aceptando nuevos miembros"
+    resend_confirmation: Reenviar correo electrónico de confirmación
+    reset_password: Cambiar contraseña
+    security: Seguridad
+    set_new_password: Establecer nueva contraseña
+    setup:
+      email_below_hint_html: Si la dirección de correo electrónico que aparece a continuación es incorrecta, podés cambiarla acá y recibir un nuevo correo electrónico de confirmación.
+      email_settings_hint_html: Se envió el correo electrónico de confirmación a %{email}. Si esa dirección de correo electrónico no es correcta, podés cambiarla en la configuración de la cuenta.
+      title: Configuración
+    status:
+      account_status: Estado de la cuenta
+      confirming: Esperando confirmación de correo electrónico.
+      functional: Tu cuenta está totalmente operativa.
+      pending: Tu solicitud está pendiente de revisión por nuestro equipo. Eso puede tardar algún tiempo. Si se aprueba tu solicitud, vas a recibir un correo electrónico.
+      redirecting_to: Tu cuenta se encuentra inactiva porque está siendo redirigida a %{acct}.
+    trouble_logging_in: "¿Tenés problemas para iniciar sesión?"
+  authorize_follow:
+    already_following: Ya estás siguiendo a esta cuenta
+    error: Lamentablemente, ocurrió un error buscando la cuenta remota
+    follow: Seguir
+    follow_request: 'Enviaste una solicitud de seguimiento a:'
+    following: "¡Listo! Ahora estás siguiendo a:"
+    post_follow:
+      close: O simplemente podés cerrar esta ventana.
+      return: Mostrar el perfil del usuario
+      web: Ir a la web
+    title: Seguir a %{acct}
+  challenge:
+    confirm: Continuar
+    hint_html: "<strong>Dato:</strong> No volveremos a preguntarte por la contraseña durante la siguiente hora."
+    invalid_password: Contraseña no válida
+    prompt: Confirmar contraseña para seguir
+  datetime:
+    distance_in_words:
+      about_x_hours: "%{count}h"
+      about_x_months: "%{count}m"
+      about_x_years: "%{count}a"
+      almost_x_years: "%{count}a"
+      half_a_minute: Recién
+      less_than_x_minutes: "%{count}m"
+      less_than_x_seconds: Recién
+      over_x_years: "%{count}a"
+      x_days: "%{count}d"
+      x_minutes: "%{count}m"
+      x_months: "%{count}m"
+      x_seconds: "%{count}s"
+  deletes:
+    challenge_not_passed: La información que ingresaste no es correcta
+    confirm_password: Ingresa tu contraseña actual para verificar tu identidad
+    confirm_username: Ingresá tu nombre de usuario para confirmar el procedimiento
+    proceed: Eliminar cuenta
+    success_msg: Tu cuenta fue eliminada exitosamente
+    warning:
+      before: 'Antes de proceder, por favor, leé estas notas cuidadosamente:'
+      caches: El contenido que fue almacenado en caché por otros servidores puede persistir
+      data_removal: Tus toots y el resto de los datos se eliminarán definitivamente
+      email_change_html: Podés <a href="%{path}">cambiar tu dirección de correo electrónico</a> sin eliminar tu cuenta
+      email_contact_html: Si todavía no llegó, podés escribir a <a href="mailto:%{email}">%{email}</a> para pedir ayuda
+      email_reconfirmation_html: Si no te llegó el correo de confirmación, podés <a href="%{path}">solicitarlo de nuevo</a>
+      irreversible: No podrás restaurar ni reactivar tu cuenta
+      more_details_html: Para más detalles, leé la <a href="%{terms_path}">política de privacidad</a>.
+      username_available: Tu nombre de usuario volverá a estar disponible
+      username_unavailable: Tu nombre de usuario no estará disponible
+  directories:
+    directory: Directorio de perfiles
+    explanation: Descubrí usuarios basados en sus intereses
+    explore_mastodon: Navegá %{title}
+  domain_validator:
+    invalid_domain: no es un nombre de dominio válido
   errors:
-    '400': The request you submitted was invalid or malformed.
-    '403': You don't have permission to view this page.
-    '404': The page you are looking for isn't here.
-    '406': This page is not available in the requested format.
-    '410': The page you were looking for doesn't exist here anymore.
-    '422': 
-    '429': Throttled
-    '500': 
-    '503': The page could not be served due to a temporary server failure.
+    '400': La solicitud que enviaste no era válida o estaba corrompida.
+    '403': No tenés permiso para ver esta página.
+    '404': La página que estabas buscando no está acá.
+    '406': Esta página no está disponible en el formato solicitado.
+    '410': La página que estabas buscando no existe más.
+    '422':
+      content: Falló la verificación de seguridad. ¿Estás bloqueando cookies?
+      title: Falló la verificación de seguridad
+    '429': Asfixiado
+    '500':
+      content: Lo sentimos, pero algo salió mal en nuestro lado.
+      title: Esta página no es correcta
+    '503': La página no se pudo cargar debido a un fallo temporal del servidor.
+    noscript_html: Para usar la aplicación web de Mastodon, por favor, activá Javascript. Alternativamente, probá alguna de las <a href="%{apps_path}">aplicaciones nativas</a> de Mastodon para tu plataforma.
+  existing_username_validator:
+    not_found: no pudo encontrar un usuario local con ese nombre de usuario
+    not_found_multiple: no se pudo encontrar a %{usernames}
+  exports:
+    archive_takeout:
+      date: Fecha
+      download: Descargá tu archivo historial
+      hint_html: Podés solicitar un archivo historial de tus <strong>toots y medios subidos</strong>. Los datos exportados estarán en formato "ActivityPub", legibles por cualquier software compatible. Podés solicitar un archivo historial cada 7 días.
+      in_progress: Compilando tu archivo historial…
+      request: Solicitá tu archivo historial
+      size: Tamaño
+    blocks: Tus bloqueos
+    csv: CSV
+    domain_blocks: Dominios bloqueados
+    lists: Listas
+    mutes: Quienes silenciaste
+    storage: Almacenamiento de medios
+  featured_tags:
+    add_new: Agregar nueva
+    errors:
+      limit: Alcanzaste el máximo de etiquetas destacadas
+    hint_html: "<strong>¿Qué son las etiquetas destacadas?</strong> Se muestran de forma prominente en tu perfil público y permiten a los usuarios navegar por tus toots públicos específicamente bajo esas etiquetas. Son una gran herramienta para hacer un seguimiento de trabajos creativos o proyectos a largo plazo."
+  filters:
+    contexts:
+      home: Línea temporal principal
+      notifications: Notificaciones
+      public: Líneas temporales públicas
+      thread: Conversaciones
+    edit:
+      title: Editar filtro
+    errors:
+      invalid_context: Se suministró un contexto no válido o vacío
+      invalid_irreversible: El filtrado irreversible sólo funciona con los contextos de "Principal" o de notificaciones
+    index:
+      delete: Eliminar
+      empty: No tenés filtros.
+      title: Filtros
+    new:
+      title: Agregar nuevo filtro
+  footer:
+    developers: Desarrolladores
+    more: Más…
+    resources: Recursos
+    trending_now: Tendencia ahora
+  generic:
+    all: Todas
+    changes_saved_msg: "¡Cambios guardados exitosamente!"
+    copy: Copiar
+    no_batch_actions_available: No hay acciones por lotes disponibles en esta página
+    order_by: Ordenar por
+    save_changes: Guardar cambios
+    validation_errors:
+      one: "¡Falta algo! Por favor, revisá el error abajo"
+      other: "¡Falta algo! Por favor, revisá los %{count} errores abajo"
+  html_validator:
+    invalid_markup: 'contiene markup HTML no válido: %{error}'
+  identity_proofs:
+    active: Activa
+    authorize: Sí, autorizar
+    authorize_connection_prompt: "¿Autorizar esta conexión criptográfica?"
+    errors:
+      failed: Falló la conexión criptográfica. Por favor, intentá de nuevo desde %{provider}.
+      keybase:
+        invalid_token: Las claves de Keybase son hashes de firmas y deben tener 66 caracteres hexadecimales
+        verification_failed: Keybase no reconoce esta clave como una firma del usuario de Keybase %{kb_username}. Por favor, intentá de nuevo desde Keybase.
+      wrong_user: No se puede crear una prueba para %{proving} mientras se haya iniciado sesión como %{current}. Iniciá sesión como %{proving} e intentá de nuevo.
+    explanation_html: Acá podés conectar criptográficamente tus otras identidades, como un perfil de Keybase. Esto permite a otras personas enviarte mensajes cifrados y confiar en el contenido que les envías.
+    i_am_html: Soy %{username} en %{service}.
+    identity: Identidad
+    inactive: Inactiva
+    publicize_checkbox: 'Y tooteá esto:'
+    publicize_toot: "¡Comprobado! Soy %{username} en %{service}: %{url}"
+    status: Estado de verificación
+    view_proof: Ver prueba
+  imports:
+    modes:
+      merge: Combinar
+      merge_long: Mantener registros existentes y agregar nuevos
+      overwrite: Sobrescribir
+      overwrite_long: Reemplazar registros actuales con los nuevos
+    preface: Podés importar ciertos datos que exportaste desde otro servidor, como una lista de las personas que estás siguiendo o bloqueando.
+    success: Tus datos se subieron exitosamente y serán procesados en brevedad
+    types:
+      blocking: Lista de bloqueados
+      domain_blocking: Lista de dominios bloqueados
+      following: Lista de seguidos
+      muting: Lista de silenciados
+    upload: Subir
+  in_memoriam_html: Como recordatorio.
   invites:
+    delete: Desactivar
+    expired: Vencidas
     expires_in:
-      '1800': 30 minutes
-      '21600': 6 hours
-      '3600': 1 hour
-      '43200': 12 hours
-      '604800': 1 week
-      '86400': 1 day
+      '1800': 30 minutos
+      '21600': 6 horas
+      '3600': 1 hora
+      '43200': 12 horas
+      '604800': 1 semana
+      '86400': 1 día
+    expires_in_prompt: Nunca
+    generate: Generar enlace de invitación
+    invited_by: 'Fuiste invitado por:'
+    max_uses:
+      one: 1 uso
+      other: "%{count} usos"
+    max_uses_prompt: Sin límite
+    prompt: Generar y compartir enlaces con otros para ofrecer acceso a este servidor
+    table:
+      expires_at: Vence
+      uses: Usos
+    title: Invitar a gente
+  lists:
+    errors:
+      limit: Alcanzaste el máximo de listas
+  media_attachments:
+    validations:
+      images_and_video: No se puede adjuntar un video a un estado que ya contenga imágenes
+      too_many: No se pueden adjuntar más de 4 archivos
+  migrations:
+    acct: Mudada a
+    cancel: Cancelar redireccionamiento
+    cancel_explanation: Al cancelar el redireccionamiento se reactivará tu cuenta actual, pero no recuperarás los seguidores que hayan sido mudados a la otra cuenta.
+    cancelled_msg: Se canceló exitosamente el redireccionamiento.
+    errors:
+      already_moved: es la misma cuenta a la que ya te mudaste
+      missing_also_known_as: no está haciendo referencia a esta cuenta
+      move_to_self: no puede ser la cuenta actual
+      not_found: no se pudo encontrar
+      on_cooldown: Estás en receso intermedio
+    followers_count: Seguidores al momento de mudarse
+    incoming_migrations: Mudarse desde una cuenta diferente
+    incoming_migrations_html: Para mudarte de otra cuenta a esta, primero necesitás <a href="%{path}">crear un alias de la cuenta</a>.
+    moved_msg: Ahora tu cuenta está siendo redirigida a %{acct} y tus seguidores se están mudando.
+    not_redirecting: Actualmente, tu cuenta no está siendo redirigida a ninguna otra cuenta.
+    on_cooldown: Recientemente mudaste tu cuenta. Esta función estará disponible de nuevo en %{count} días.
+    past_migrations: Mudanzas pasadas
+    proceed_with_move: Mudar seguidores
+    redirecting_to: Tu cuenta está siendo redirigida a %{acct}.
+    set_redirect: Establecer redireccionamiento
+    warning:
+      backreference_required: La nueva cuenta debe ser configurada primero para hacer referencia a esta
+      before: 'Antes de proceder, por favor, leé estas notas cuidadosamente:'
+      cooldown: Después de mudarte hay un período de receso intermedio durante el cual no podrás volver a mudarte
+      disabled_account: Tu cuenta actual no será completamente utilizable luego de esto. Sin embargo, tendrás acceso a la exportación de datos así como a la reactivación.
+      followers: Esta acción mudará a todos los seguidores de la cuenta actual a la nueva cuenta
+      only_redirect_html: Alternativamente, podés <a href="%{path}">poner solamente un redireccionamiento en tu perfil</a>.
+      other_data: No se mudarán otros datos automáticamente
+      redirect: El perfil de tu cuenta actual se actualizará con un aviso de redireccionamiento y será excluido de las búsquedas
+  moderation:
+    title: Moderación
+  notification_mailer:
+    digest:
+      action: Ver todas las notificaciones
+      body: Acá tenés un resumen de los mensajes que te perdiste desde tu última visita, el %{since}
+      mention: "%{name} te mencionó en:"
+      new_followers_summary:
+        one: Además, ¡ganaste un nuevo seguidor mientras estabas ausente! ¡Esa!
+        other: Además, ¡ganaste %{count} nuevos seguidores mientras estabas ausente! ¡Esssa!
+      subject:
+        one: "1 nueva notificación desde tu última visita \U0001F418"
+        other: "%{count} nuevas notificaciones desde tu última visita \U0001F418"
+      title: En tu ausencia…
+    favourite:
+      body: 'Tu estado fue marcado como favorito por %{name}:'
+      subject: "%{name} marcó como favorito tu estado"
+      title: Nuevo favorito
+    follow:
+      body: "¡%{name} te está siguiendo!"
+      subject: "%{name} te está siguiendo"
+      title: Nuevo seguidor
+    follow_request:
+      action: Administrar solicitudes de seguimiento
+      body: "%{name} solicitó seguirte"
+      subject: 'Seguidor pendiente: %{name}'
+      title: Nueva solicitud de seguimiento
+    mention:
+      action: Responder
+      body: 'Fuiste mencionado por %{name} en:'
+      subject: Fuiste mencionado por %{name}
+      title: Nueva mención
+    reblog:
+      body: "%{name} retooteó tu estado:"
+      subject: "%{name} retooteó tu estado"
+      title: Nuevo retoot
+  notifications:
+    email_events: Eventos para notificaciones por correo electrónico
+    email_events_hint: 'Seleccioná los eventos para los que querés recibir notificaciones:'
+    other_settings: Configuración de otras notificaciones
+  number:
+    human:
+      decimal_units:
+        format: "%n%u"
+        units:
+          billion: B
+          million: M
+          quadrillion: Q
+          thousand: m
+          trillion: T
+  pagination:
+    newer: Más recientes
+    next: Siguiente
+    older: Más antiguos
+    prev: Anterior
+    truncate: "&hellip;"
+  polls:
+    errors:
+      already_voted: Ya votaste en esta encuesta
+      duplicate_options: contiene elementos duplicados
+      duration_too_long: está demasiado lejos en el futuro
+      duration_too_short: es demasiado pronto
+      expired: La encuesta ya finalizó
+      invalid_choice: La opción elegida no existe
+      over_character_limit: no puede ser más largo de %{max} caracteres, cada uno
+      too_few_options: debe tener más de un elemento
+      too_many_options: no puede contener más de %{max} elementos
+  preferences:
+    other: Otros
+    posting_defaults: Configuración predeterminada de publicaciones
+    public_timelines: Líneas temporales públicas
+  relationships:
+    activity: Actividad de la cuenta
+    dormant: Inactivas
+    followers: Seguidores
+    following: Siguiendo
+    last_active: Última actividad
+    most_recent: Más reciente
+    moved: Mudada
+    mutual: Mutuo
+    primary: Principal
+    relationship: Relación
+    remove_selected_domains: Quitar todos los seguidores de los dominios seleccionados
+    remove_selected_followers: Quitar los seguidores seleccionados
+    remove_selected_follows: Dejar de seguir a los usuarios seleccionados
+    status: Estado de la cuenta
+  remote_follow:
+    acct: Ingresá tu usuario@dominio desde el que querés seguir
+    missing_resource: No se pudo encontrar la dirección web de redireccionamiento requerida para tu cuenta
+    no_account_html: "¿No tenés cuenta? Podés <a href='%{sign_up_path}' target='_blank'>registrarte acá</a>."
+    proceed: Proceder para seguir
+    prompt: 'Vas a seguir a:'
+    reason_html: "¿<strong>¿Por qué es necesario este paso?</strong> <code>%{instance}</code> puede que no sea el servidor donde estás registrado, así que necesitamos redirigirte primero a tu servidor de origen."
+  remote_interaction:
+    favourite:
+      proceed: Proceder para marcar como favorito
+      prompt: 'Vas a marcar este toot como favorito:'
+    reblog:
+      proceed: Proceder para retootear
+      prompt: 'Vas a retootear este toot:'
+    reply:
+      proceed: Proceder para responder
+      prompt: 'Vas a responder a este toot:'
+  scheduled_statuses:
+    over_daily_limit: Superaste el límite de %{limit} toots programados para ese día
+    over_total_limit: Superaste el límite de %{limit} toots programados
+    too_soon: La fecha programada debe estar en el futuro
+  sessions:
+    activity: Última actividad
+    browser: Navegador web
+    browsers:
+      alipay: Alipay
+      blackberry: BlackBerry
+      chrome: Chrome
+      edge: Edge
+      electron: Electron
+      firefox: Firefox
+      generic: Navegador web desconocido
+      ie: Internet Explorer
+      micro_messenger: MicroMessenger
+      nokia: Navegador web de Nokia S40 Ovi
+      opera: Opera
+      otter: Otter
+      phantom_js: PhantomJS
+      qq: Navegador QQ
+      safari: Safari
+      uc_browser: UC Browser
+      weibo: Weibo
+    current_session: Sesión actual
+    description: "%{browser} en %{platform}"
+    explanation: Estos son los navegadores web en los que actualmente iniciaste sesión en tu cuenta de Mastodon.
+    ip: Dirección IP
+    platforms:
+      adobe_air: Adobe Air
+      android: Android
+      blackberry: BlackBerry
+      chrome_os: ChromeOS
+      firefox_os: Firefox OS
+      ios: iOS
+      linux: GNU/Linux
+      mac: macOS
+      other: plataforma desconocida
+      windows: Windows
+      windows_mobile: Windows Mobile
+      windows_phone: Windows Phone
+    revoke: Revocar
+    revoke_success: Sesión revocada exitosamente
+    title: Sesiones
+  settings:
+    account: Cuenta
+    account_settings: Configuración de la cuenta
+    aliases: Alias de la cuenta
+    appearance: Apariencia
+    authorized_apps: Aplicaciones autorizadas
+    back: Volver a Mastodon
+    delete: Eliminación de la cuenta
+    development: Desarrollo
+    edit_profile: Editar perfil
+    export: Exportar datos
+    featured_tags: Etiquetas destacadas
+    identity_proofs: Pruebas de identidad
+    import: Importar
+    import_and_export: Importación y exportación
+    migrate: Migración de la cuenta
+    notifications: Notificaciones
+    preferences: Configuración
+    profile: Perfil
+    relationships: Seguimientos
+    two_factor_authentication: Autenticación de dos factores
+  spam_check:
+    spam_detected: Este es un informe automatizado. Se detectó spam.
+  statuses:
+    attached:
+      description: 'Adjunto: %{attached}'
+      image:
+        one: "%{count} imagen"
+        other: "%{count} imágenes"
+      video:
+        one: "%{count} video"
+        other: "%{count} videos"
+    boosted_from_html: Retooteado desde %{acct_link}
+    content_warning: 'Advertencia de contenido: %{warning}'
+    disallowed_hashtags:
+      one: 'contenía una etiqueta no permitida: %{tags}'
+      other: 'contenía las etiquetas no permitidas: %{tags}'
+    language_detection: Detectar idioma automáticamente
+    open_in_web: Abrir en web
+    over_character_limit: se excedió el límite de %{max} caracteres
+    pin_errors:
+      limit: Ya fijaste el número máximo de toots
+      ownership: No se puede fijar el toot de otra persona
+      private: Los toots no públicos no se pueden fijar
+      reblog: No se puede fijar un retoot
+    poll:
+      total_people:
+        one: "%{count} persona"
+        other: "%{count} personas"
+      total_votes:
+        one: "%{count} voto"
+        other: "%{count} votos"
+      vote: Votar
+    show_more: Mostrar más
+    sign_in_to_participate: Iniciá sesión para participar en la conversación
+    title: '%{name}: "%{quote}"'
+    visibilities:
+      private: Sólo a seguidores
+      private_long: Sólo mostrar a seguidores
+      public: Pública
+      public_long: Todos pueden ver
+      unlisted: No listado
+      unlisted_long: Todos pueden ver, pero no está listado en las líneas temporales públicas
+  stream_entries:
+    pinned: Toot fijado
+    reblogged: retooteado
+    sensitive_content: Contenido sensible
+  tags:
+    does_not_match_previous_name: no coincide con el nombre anterior
+  terms:
+    body_html: |
+      <h2>Política de privacidad</h2>
+      <h3 id="collect">¿Qué información recolectamos?</h3>
+
+      <ul>
+      <li><em>Información básica de la cuenta</em>: Si te registrás en este servidor, se te va a pedir un nombre de usuario, una dirección de correo electrónico y una contraseña. También podés ingresar información adicional de perfil como un nombre para mostrar y una biografía, y subir un avatar y una imagen de cabecera. El nombre de usuario, nombre para mostrar, biografía, avatar e imagen de cabecera siempre son visibles públicamente.</li>
+      <li><em>Toots, seguimiento y otra información pública</em>: La lista de gente a la que seguís es mostrada públicamente, al igual que la de tus seguidores. Cuando enviás un mensaje, se almacenan la fecha y hora, así como la aplicación desde la cual enviaste el mensaje. Los mensajes pueden contener archivos adjuntos de medios, como imágenes y videos. Los toots públicos y no listados están técnicamente disponibles para todos. Cuando destacás un toot en tu perfil, eso también se considera información disponible públicamente. Tus toots son entregados a tus seguidores, en algunos casos significa que son entregados a diferentes servidores y las copias son almacenadas allí. Cuando eliminás toots, esto también afecta a tus seguidores. La acción de retootear o marcar como favorito otro toot es siempre pública.</li>
+      <li><em>Toots directos y sólo para seguidores</em>: Todos los toots se almacenan y procesan en el servidor. Los toots sólo para seguidores se entregan a los seguidores y usuarios que se mencionan en ellos, y los mensajes directos se entregan sólo a los usuarios que se mencionan en ellos. En algunos casos significa que se entregan a diferentes servidores y que las copias se almacenan allí. Hacemos un esfuerzo de buena fe para limitar el acceso a esos toots sólo a las personas autorizadas, pero otros servidores pueden no hacerlo. Por lo tanto, es importante revisar los servidores a los que pertenecen tus seguidores. Podés cambiar una opción para aprobar y rechazar nuevos seguidores manualmente en la configuración. <em>Por favor, tené en cuenta que los operadores del servidor y de cualquier servidor receptor pueden ver dichos mensajes</em>, y que los destinatarios pueden tomar capturas de pantalla, copiarlos o volver a compartirlos de alguna otra manera. <em>No compartas ninguna información peligrosa en Mastodon.</em></li>
+      <li><em>Direcciones IP y otros metadatos</em>: Cuando iniciás sesión, registramos la dirección IP desde dónde lo estás haciendo, así como el nombre de tu navegador web. Todos los inicios de sesiones están disponibles para tu revisión y revocación en la configuración. La última dirección IP usada se almacena hasta por 12 meses. También podemos conservar los registros del servidor que incluyen la dirección IP de cada solicitud a nuestro servidor.</li>
+      </ul>
+
+      <hr class="spacer" />
+
+      <h3 id="use">¿Para qué usamos tu información?</h3>
+
+      <p>Toda la información que recolectamos de vos puede ser usada de las siguientes maneras:</p>
+
+      <ul>
+      <li>Para proporcionar la funcionalidad principal de Mastodon. Sólo puedes interactuar con el contenido de otras personas y publicar tu propio contenido cuando hayás iniciado sesión. Por ejemplo, podés seguir a otras personas para ver sus mensajes combinados en tu propia línea temporal personalizada.</li>
+      <li>Para ayudar a la moderación de la comunidad, por ejemplo, comparando tu dirección IP con otras conocidas para determinar la evasión de prohibiciones u otras violaciones.</li>
+      <li>La dirección de correo electrónico que nos proporcionés podría usarse para enviarte información, notificaciones sobre otras personas que interactúen con tu contenido o para enviarte mensajes, así como para responder a consultas y/u otras solicitudes o preguntas.</li>
+      </ul>
+
+      <hr class="spacer" />
+
+      <h3 id="protect">¿Cómo protegemos tu información?</h3>
+
+      <p>Implementamos una variedad de medidas de seguridad para mantener la seguridad de tu información personal cuando ingresás, enviás o accedés a tu información personal. Entre otras cosas, la sesión de tu navegador web, así como el tráfico entre sus aplicaciones y la API, están protegidos con SSL; y tu contraseña está protegida mediante un algoritmo unidireccional fuerte. Podés habilitar la autenticación de dos factores para un acceso más seguro a tu cuenta.</p>
+
+      <hr class="spacer" />
+
+      <h3 id="data-retention">¿Cuál es nuestra política de retención de datos?</h3>
+
+      <p>Haremos un esfuerzo de buena fe para:</p>
+
+      <ul>
+      <li>Conservar los registros del servidor que contengan la dirección IP de todas las solicitudes a este servidor, en la medida en que se mantengan dichos registros, por no más de 90 días.</li>
+      <li>Conservar las direcciones IP asociadas a los usuarios registrados, por no más de 12 meses.</li>
+      </ul>
+
+      <p>Podé solicitar y descargar un archivo historial de tu contenido, incluyendo tus toots, archivos adjuntos de medios, avatar e imagen de cabecera.</p>
+
+      <p>Podés eliminar tu cuenta de forma irreversible en cualquier momento.</p>
+
+      <hr class="spacer"/>
+
+      <h3 id="cookies">¿Usamos cookies?</h3>
+
+      <p>Sí. Las cookies son pequeños archivos que un sitio o su proveedor de servicios transfiere a la unidad de almacenamiento de tu computadora a través de tu navegador web (si lo permitís). Estas cookies permiten al sitio reconocer tu navegador web y, si tenés una cuenta registrada, asociarla con la misma.</p>
+
+      <p>Usamos cookies para entender y guardar tu configuración para futuras visitas.</p>
+
+      <hr class="spacer" />
+
+      <h3 id="disclose">¿Revelamos alguna información a terceros?</h3>
+
+      <p>No vendemos, comercializamos ni transferimos de ninguna otra manera a terceros tu información personal identificable. Esto no incluye a los terceros de confianza que nos asisten en la operación de nuestro sitio, en la realización de nuestros negocios o en la prestación de servicios, siempre y cuando dichas partes acuerden mantener la confidencialidad de esta información. También podríamos liberar tu información cuando creamos que es apropiado para cumplir con la ley, hacer cumplir las políticas de nuestro sitio web, o proteger derechos, propiedad o seguridad, nuestros o de otros.</p>
+
+      <p>Tu contenido público puede ser descargado por otros servidores de la red. Tus mensajes públicos y sólo para seguidores se envían a los servidores donde residen tus seguidores, y los mensajes directos se envían a los servidores de los destinatarios, en la medida en que dichos seguidores o destinatarios residan en un servidor diferente.</p>
+
+      <p>Cuando autorizás a una aplicación a usar tu cuenta, dependiendo del alcance de los permisos que aprobés, puede acceder a la información de tu perfil público, tu lista de seguimiento, tus seguidores, tus listas, todos tus mensajes y tus favoritos. Las aplicaciones nunca podrán acceder a tu dirección de correo electrónico o contraseña.</p>
+
+      <hr class="spacer" />
+
+      <h3 id="children">Uso del sitio web por parte de niños</h3>
+
+      <p>Si este servidor está en la UE o en el EEE: Nuestro sitio web, productos y servicios están dirigidos a personas mayores de 16 años. Si tenés menos de 16 años, según los requisitos de la GDPR (<a href="https://es.wikipedia.org/wiki/Reglamento_General_de_Protecci%C3%B3n_de_Datos">Reglamento General de Protección de Datos</a>) no usés este sitio.</p>
+
+      <p>Si este servidor está en los EE.UU.: Nuestro sitio web, productos y servicios están todos dirigidos a personas que tienen al menos 13 años de edad. Si tenés menos de 13 años, según los requisitos de COPPA (<a href="https://en.wikipedia.org/wiki/Children%27s_Online_Privacy_Protection_Act">Acta de Protección de la Privacidad en Línea de Niños [en inglés]</a>) no usés este sitio.</p>
+
+      <p>Los requisitos legales pueden ser diferentes si este servidor está en otra jurisdicción.</p>
+
+      <hr class="spacer" />
+
+      <h3 id="changes">Cambios a nuestra Política de privacidad</h3>
+
+      <p>Si decidimos cambiar nuestra política de privacidad, publicaremos dichos cambios en esta página.</p>
+
+      <p>Este documento es CC-BY-SA. Fue actualizado por última vez el 7 de marzo de 2018.</p>
+
+      <p>Adaptado originalmente desde <a href="https://github.com/discourse/discourse">la política de privacidad de Discourse</a>.</p>
+    title: Términos del servicio y Políticas de privacidad de %{instance}
+  themes:
+    contrast: Alto contraste
+    default: Oscuro
+    mastodon-light: Claro
+  time:
+    formats:
+      default: "%Y.%b.%d, %H:%M"
+      month: "%b %Y"
+  two_factor_authentication:
+    code_hint: Ingresá el código generado por tu aplicación de autenticación para confirmar
+    description_html: Si habilitás la <strong>autenticación de dos factores</strong>, se requerirá estar en posesión de tu dispositivo móvil, lo que generará claves para que las ingresés.
+    disable: Deshabilitar
+    enable: Habilitar
+    enabled: La autenticación de dos factores está activada
+    enabled_success: Se habilitó exitosamente la autenticación de dos factores
+    generate_recovery_codes: Generar códigos de recuperación
+    instructions_html: <strong>Escaneá este código QR con Authy, FreeOTP, Google Authenticator, Microsoft Authenticator o cualquier otra aplicación de generación de contraseñas por única vez basada en el tiempo ("TOTP") en tu dispositivo móvil</strong>. Desde ahora, esta aplicación va a generar claves que tenés que ingresar cuando quieras iniciar sesión.
+    lost_recovery_codes: Los códigos de recuperación te permiten recuperar el acceso a tu cuenta, si perdés tu dispositivo móvil. Si perdiste tus códigos de recuperación, podés regenerarlos acá. Tus antiguos códigos de recuperación serán invalidados.
+    manual_instructions: 'Si no podés escanear el código QR y necesitás introducirlo manualmente, este es el secreto en texto plano:'
+    recovery_codes: Resguardar códigos de recuperación
+    recovery_codes_regenerated: Los códigos de recuperación se regeneraron exitosamente
+    recovery_instructions_html: Si alguna vez perdés el acceso a tu dispositivo móvil, podés usar uno de los siguientes códigos de recuperación para recuperar el acceso a tu cuenta. <strong>Mantenelos a salvo</strong>. Por ejemplo, podés imprimirlos y guardarlos con otros documentos importantes.
+    setup: Configurar
+    wrong_code: "¡El código ingresado no es válido! ¿La hora en el dispositivo y en el servidor es correcta?"
+  user_mailer:
+    backup_ready:
+      explanation: Solicitado un resguardo completo de tu cuenta de Mastodon. ¡Ya está listo para descargar!
+      subject: Tu archivo historial está listo para descargar
+      title: Descargar archivo historial
+    warning:
+      explanation:
+        disable: Mientras tu cuenta esté congelada, la información de la misma permanecerá intacta, pero no podés realizar ninguna acción hasta que se desbloquee.
+        silence: Mientras tu cuenta esté limitada, sólo las personas que ya te estén siguiendo verán tus toots en este servidor, y puede que se te excluya de varios listados públicos. Sin embargo, otras personas pueden seguirte manualmente.
+        suspend: Tu cuenta fue suspendida, y todos tus toots y tus archivos de medios subidos fueron irreversiblemente eliminados de este servidor, y de los servidores en donde tenías seguidores.
+      get_in_touch: Podés responder a esta dirección de correo electrónico para ponerte en contacto con el equipo de %{instance}.
+      review_server_policies: Revisar las políticas del servidor
+      statuses: 'Específicamente, para:'
+      subject:
+        disable: Tu cuenta %{acct} fue congelada
+        none: Advertencia para %{acct}
+        silence: Tu cuenta %{acct} fue limitada
+        suspend: Tu cuenta %{acct} fue suspendida
+      title:
+        disable: Cuenta congelada
+        none: Advertencia
+        silence: Cuenta limitada
+        suspend: Cuenta suspendida
+    welcome:
+      edit_profile_action: Configurar perfil
+      edit_profile_step: Podés personalizar tu perfil subiendo un avatar, una cabecera, cambiando tu nombre para mostrar y más cosas. Si querés revisar a tus nuevos seguidores antes de que se les permita seguirte, podés bloquear tu cuenta.
+      explanation: Aquí hay algunos consejos para empezar
+      final_action: Empezar a tootear
+      final_step: ¡Empezá a tootear! Incluso sin seguidores, tus mensajes públicos pueden ser vistos por otros, por ejemplo en la linea temporal local y con etiquetas. Capaz que quieras presentarte al mundo con la etiqueta "#presentación".
+      full_handle: Tu nombre de usuario completo
+      full_handle_hint: Esto es lo que le dirás a tus contactos para que ellos puedan enviarte mensajes o seguirte desde otro servidor.
+      review_preferences_action: Cambiar configuración
+      review_preferences_step: Asegurate de establecer tu configuración, como qué tipo de correos electrónicos te gustaría recibir, o qué nivel de privacidad te gustaría que sea el predeterminado para tus toots. Si no tenés mareos, podrías elegir habilitar la reproducción automática de GIFs.
+      subject: Bienvenido a Mastodon
+      tip_federated_timeline: La línea temporal federada es una línea contínua global de la red de Mastodon. Pero sólo incluye gente que tus vecinos están siguiendo, así que no es completa.
+      tip_following: Predeterminadamente seguís al / a los administrador/es de tu servidor. Para encontrar más gente interesante, revisá las lineas temporales local y federada.
+      tip_local_timeline: La línea temporal local es una línea contínua global de cuentas en %{instance}. ¡Estos son tus vecinos inmediatos!
+      tip_mobile_webapp: Si tu navegador web móvil te ofrece agregar Mastodon a tu página de inicio, podés recibir notificaciones PuSH. ¡Actúa como una aplicación nativa de muchas maneras!
+      tips: Consejos
+      title: "¡Bienvenido a bordo, %{name}!"
+  users:
+    follow_limit_reached: No podés seguir a más de %{limit} personas
+    invalid_email: La dirección de correo electrónico no es correcta
+    invalid_otp_token: Código de dos factores no válido
+    otp_lost_help_html: Si perdiste al acceso a ambos, podés ponerte en contacto con %{email}
+    seamless_external_login: Iniciaste sesión desde un servicio externo, así que la configuración de contraseña y correo electrónico no están disponibles.
+    signed_in_as: 'Iniciaste sesión como:'
+  verification:
+    explanation_html: 'Podés <strong>verificarte a vos mismo como el propietario de los enlaces en los metadatos de tu perfil</strong>. Para eso, el sitio web del enlace debe contener un enlace de vuelta a tu perfil de Mastodon. El enlace en tu sitio <strong>debe</strong> tener un atributo <code>rel="me"</code>. El contenido del texto del enlace no importa. Acá tenés un ejemplo:'
+    verification: Verificación
diff --git a/config/locales/es.yml b/config/locales/es.yml
index 8a194fdc17252405be083c67d7b8e9a072f2efe2..113ea3672446a60d910a033534f92b4352b356f3 100644
--- a/config/locales/es.yml
+++ b/config/locales/es.yml
@@ -1,31 +1,32 @@
 ---
 es:
   about:
-    about_hashtag_html: Estos son toots públicos etiquetados con <strong>#%{hashtag}</strong>. Puedes interactuar con ellos si tienes una cuenta en el fediverso.
-    about_mastodon_html: Mastodon es una red social basada en protocolos web abiertos y software libre y de código abierto. Está descentralizado como correo electrónico.
+    about_hashtag_html: Estos son barritadas públicas etiquetadas con <strong>#%{hashtag}</strong>. Puedes interactuar con ellas si tienes una cuenta en el fediverso.
+    about_mastodon_html: Mastodonte es una red social basada en protocolos web abiertos y Programas Libres y de Código Abierto - Plica/Foss -. Está descentralizado como el correo electrónico!
     about_this: Información
     active_count_after: activo
     active_footnote: Usuarios Activos Mensuales (UAM)
     administered_by: 'Administrado por:'
     api: API
     apps: Aplicaciones móviles
-    apps_platforms: Utiliza Mastodon desde iOS, Android y otras plataformas
+    apps_platforms: Utiliza Mastodonte desde iOS, Android y otras plataformas
     browse_directory: Navega por el directorio de perfiles y filtra por intereses
+    browse_local_posts: Explora en vivo los posts públicos de este servidor
     browse_public_posts: Navega por un transmisión en vivo de publicaciones públicas en Mastodon
     contact: Contacto
     contact_missing: No especificado
-    contact_unavailable: N/A
+    contact_unavailable: No disponible
     discover_users: Descubrir usuarios
     documentation: Documentación
-    federation_hint_html: Con una cuenta en %{instance} usted podrá seguir a las personas en cualquier servidor de Mastodon y más allá.
+    federation_hint_html: Con una cuenta en %{instance} usted podrá seguir a las personas en cualquier servidor de Mastodonte y más allá.
     get_apps: Probar una aplicación móvil
-    hosted_on: Mastodon hosteado en %{domain}
+    hosted_on: Mastodonte huesped en %{domain}
     instance_actor_flash: |
       Esta cuenta es un actor virtual usado para representar al servidor y no a ningún usuario individual.
       Se usa para fines federativos y no debe ser bloqueado a menos que usted quiera bloquear toda la instancia, en cuyo caso se debe utilizar un bloque de dominio.
-    learn_more: Aprende más
+    learn_more: Aprenda más
     privacy_policy: Política de privacidad
-    see_whats_happening: Ver lo que está pasando
+    see_whats_happening: Vea lo que está pasando
     server_stats: 'Datos del servidor:'
     source_code: Código fuente
     status_count_after:
@@ -41,16 +42,16 @@ es:
       rejecting_media: Los archivos multimedia de este servidor no serán procesados y no se mostrarán miniaturas, lo que requiere un clic manual en el otro servidor.
       silenced: Las publicaciones de este servidor no se mostrarán en ningún lugar salvo en el Inicio si sigues al autor.
       suspended: No podrás seguir a nadie de este servidor, y ningún dato de este será procesado o almacenado, y no se intercambiarán datos.
-    unavailable_content_html: Mastodon generalmente le permite ver contenido e interactuar con usuarios de cualquier otro servidor en el fediverso. Estas son las excepciones que se han hecho en este servidor en particular.
+    unavailable_content_html: Mastodonte generalmente le permite ver contenido e interactuar con usuarios de cualquier otro servidor en el fediverso. Estas son las excepciones que se han hecho en este servidor en particular.
     user_count_after:
       one: usuario
       other: usuarios
-    user_count_before: Tenemos
-    what_is_mastodon: "¿Qué es Mastodon?"
+    user_count_before: Inicio de
+    what_is_mastodon: "¿Qué es Mastodonte?"
   accounts:
     choices_html: 'Elecciones de %{name}:'
     endorsements_hint: Puedes recomendar a gente que sigues desde la interfaz web, y aparecerán allí.
-    featured_tags_hint: Puede presentar hashtags específicos que se mostrarán aquí.
+    featured_tags_hint: Puede presentar etiquetas específicas que se mostrarán aquí.
     follow: Seguir
     followers:
       one: Seguidor
@@ -77,6 +78,7 @@ es:
     roles:
       admin: Administrador
       bot: Bot
+      group: Grupo
       moderator: Moderador
     unavailable: Perfil no disponible
     unfollow: Dejar de seguir
@@ -117,9 +119,7 @@ es:
       email_status: E-mail Status
       enable: Habilitar
       enabled: Habilitada
-      feed_url: URL de notificaciones
       followers: Seguidores
-      followers_url: URL de los seguidores
       follows: Sigue
       header: Cabecera
       inbox_url: URL de la bandeja de entrada
@@ -147,10 +147,8 @@ es:
       no_account_selected: Ninguna cuenta se cambió como ninguna fue seleccionada
       no_limits_imposed: Sin límites impuestos
       not_subscribed: No se está suscrito
-      outbox_url: URL de bandeja de salida
       pending: Revisión pendiente
       perform_full_suspension: Suspender
-      profile_url: URL del perfil
       promote: Promocionar
       protocol: Protocolo
       public: Público
@@ -173,8 +171,8 @@ es:
         moderator: Moderador
         staff: Personal
         user: Usuario
-      salmon_url: URL de salmón
       search: Buscar
+      search_same_ip: Otros usuarios con la misma IP
       shared_inbox_url: URL de bandeja compartida
       show:
         created_reports: Reportes hechos por esta cuenta
@@ -183,7 +181,7 @@ es:
       silenced: Silenciado
       statuses: Estados
       subscribe: Suscribir
-      suspended: Susependido
+      suspended: Suspendido
       time_in_queue: Esperando en cola %{time}
       title: Cuentas
       unconfirmed_email: Correo electrónico sin confirmar
@@ -201,10 +199,12 @@ es:
         confirm_user: "%{name} confirmó la dirección de correo del usuario %{target}"
         create_account_warning: "%{name} envió una advertencia a %{target}"
         create_custom_emoji: "%{name} subió un nuevo emoji %{target}"
+        create_domain_allow: "%{name} ha añadido a la lista blanca el dominio %{target}"
         create_domain_block: "%{name} bloqueó el dominio %{target}"
         create_email_domain_block: "%{name} puso en lista negra el dominio de correos %{target}"
         demote_user: "%{name} degradó al usuario %{target}"
         destroy_custom_emoji: "%{name} destruyó el emoji %{target}"
+        destroy_domain_allow: "%{name} ha eliminado el dominio %{target} de la lista blanca"
         destroy_domain_block: "%{name} desbloqueó el dominio %{target}"
         destroy_email_domain_block: "%{name} puso en lista blanca el dominio de correos %{target}"
         destroy_status: "%{name} eliminó el estado de %{target}"
@@ -270,11 +270,11 @@ es:
       feature_registrations: Registros
       feature_relay: Relés de federación
       feature_spam_check: Contra-spam
-      feature_timeline_preview: Vista previa de la línea de tiempo
+      feature_timeline_preview: Vista previa de la cronología
       features: Características
       hidden_service: Federación con servicios ocultos
       open_reports: informes abiertos
-      pending_tags: hashtags esperando revisión
+      pending_tags: etiquetas esperando revisión
       pending_users: usuarios esperando por revisión
       recent_users: Usuarios recientes
       search: Búsqueda por texto completo
@@ -321,7 +321,7 @@ es:
       rejecting_reports: rechazando informes
       severity:
         silence: silenciado
-        suspend: susependido
+        suspend: suspendido
       show:
         affected_accounts:
           one: Una cuenta en la base de datos afectada
@@ -339,6 +339,7 @@ es:
       delete: Borrar
       destroyed_msg: Dominio de correo borrado de la lista negra con éxito
       domain: Dominio
+      empty: Actualmente no hay dominios de correo electrónico en la lista negra.
       new:
         create: Añadir dominio
         title: Nueva entrada en la lista negra de correo
@@ -395,12 +396,17 @@ es:
       destroyed_msg: "¡El registro de la denuncia se ha borrado correctamente!"
     reports:
       account:
-        note: nota
-        report: denuncia
+        notes:
+          one: "%{count} nota"
+          other: "%{count} notas"
+        reports:
+          one: "%{count} informe"
+          other: "%{count} informes"
       action_taken_by: Acción tomada por
       are_you_sure: "¿Estás seguro?"
       assign_to_self: Asignármela a mí
       assigned: Moderador asignado
+      by_target_domain: Dominio de la cuenta reportada
       comment:
         none: Ninguno
       created_at: Denunciado
@@ -428,8 +434,8 @@ es:
         desc_html: Conteo de estados publicados localmente, usuarios activos, y nuevos registros en  periodos semanales
         title: Publicar estadísticas locales acerca de actividad de usuario
       bootstrap_timeline_accounts:
-        desc_html: Separa con comas los nombres de usuario. Solo funcionará para cuentas locales desbloqueadas. Si se deja vacío, se tomará como valor por defecto a todos los administradores locales.
-        title: Seguimientos predeterminados para usuarios nuevos
+        desc_html: Separa con comas los nombres de usuaria. Solo funcionará para cuentas locales desbloqueadas. Si se deja vacia, se tomará como valor por defecto a todas las administradoras locales.
+        title: Seguimientos predeterminados para usuarias nuevas
       contact_information:
         email: Correo de trabajo
         username: Nombre de usuario
@@ -446,6 +452,8 @@ es:
         users: Para los usuarios locales que han iniciado sesión
       domain_blocks_rationale:
         title: Mostrar la razón de ser
+      enable_bootstrap_timeline_accounts:
+        title: Habilitar seguimientos predeterminados para nuevas usuarias
       hero:
         desc_html: Mostrado en la página principal. Recomendable al menos 600x100px. Por defecto se establece a la miniatura de la instancia
         title: Imagen de portada
@@ -478,8 +486,8 @@ es:
           open: Cualquiera puede registrarse
         title: Modo de registros
       show_known_fediverse_at_about_page:
-        desc_html: Cuando esté activado, se mostrarán toots de todo el fediverso conocido en la vista previa. En otro caso, se mostrarán solamente toots locales.
-        title: Mostrar fediverso conocido en la vista previa de la historia
+        desc_html: Cuando esté desactivado, mostrará solamente la cronología local, y no la federada
+        title: Mostrar fediverso conocido en la vista previa de la cronología
       show_staff_badge:
         desc_html: Mostrar un parche de staff en la página de un usuario
         title: Mostrar parche de staff
@@ -490,28 +498,28 @@ es:
         desc_html: Un buen lugar para tu código de conducta, reglas, guías y otras cosas que estén impuestas aparte en tu instancia. Puedes usar tags HTML
         title: Información extendida personalizada
       site_short_description:
-        desc_html: Mostrado en la barra lateral y las etiquetas de metadatos. Describe lo que es Mastodon y qué hace especial a este servidor en un solo párrafo. si está vacío, pone por defecto la descripción de la instancia.
+        desc_html: Mostrado en la barra lateral y las etiquetas de metadatos. Describe lo que es Mastodonte y qué hace especial a este servidor en un solo párrafo. si está vacío, pone por defecto la descripción de la instancia.
         title: Descripción corta de la instancia
       site_terms:
         desc_html: Puedes escribir tus propias políticas de privacidad, términos de servicio u otras legalidades. Puedes usar tags HTML
         title: Términos de servicio personalizados
       site_title: Nombre de instancia
       spam_check_enabled:
-        desc_html: Mastodon puede silenciar y reportar cuentas automáticamente usando medidas como detectar cuentas que envían mensajes no solicitados repetidos. Puede que haya falsos positivos.
+        desc_html: Mastodonte puede silenciar y reportar cuentas automáticamente usando medidas como detectar cuentas que envían mensajes no solicitados repetidos. Puede que haya falsos positivos.
         title: Contra-spam
       thumbnail:
         desc_html: Se usa para muestras con OpenGraph y APIs. Se recomienda 1200x630px
         title: Portada de instancia
       timeline_preview:
-        desc_html: Mostrar línea de tiempo pública en la portada
-        title: Previsualización
+        desc_html: Mostrar cronología pública en la portada
+        title: Permita acceso no autentificado a la cronología pública
       title: Ajustes del sitio
       trendable_by_default:
         desc_html: Afecta a etiquetas que no han sido previamente rechazadas
         title: Permitir que las etiquetas sean tendencia sin revisión previa
       trends:
-        desc_html: Mostrar públicamente hashtags previamente revisados que son tendencia
-        title: Hashtags de tendencia
+        desc_html: Mostrar públicamente etiquetas previamente revisadas que son tendencia
+        title: Etiquetas que son tendencia
     statuses:
       back_to_account: Volver a la cuenta
       batch:
@@ -536,14 +544,14 @@ es:
       last_active: Última actividad
       most_popular: Más popular
       most_recent: Más reciente
-      name: Hashtag
+      name: Etiqueta
       review: Estado de revisión
       reviewed: Revisado
       title: Etiquetas
       trending_right_now: En tendencia ahora mismo
       unique_uses_today: "%{count} publicando hoy"
       unreviewed: No revisado
-      updated_msg: Hashtags actualizados exitosamente
+      updated_msg: Etiquetas actualizadas con éxito
     title: Administración
     warning_presets:
       add_new: Añadir nuevo
@@ -560,7 +568,7 @@ es:
       body_remote: Alguien de %{domain} a reportado a %{target}
       subject: Nuevo reporte para la %{instance} (#%{id})
     new_trending_tag:
-      body: 'El hashtag #%{name} está en tendencia hoy, pero no ha sido revisado previamente. No se mostrará públicamente a menos que lo permita, o simplemente guarde el formulario como para no volver a ver esto.'
+      body: 'La etiqueta #%{name} es tendencia hoy, pero no ha sido revisada previamente. No se mostrará públicamente a menos que lo permita, o simplemente guarde el formulario evitando volver a ver este mensaje.'
       subject: Nuevo hashtag para revisión en %{instance} (#%{name})
   aliases:
     add_new: Crear alias
@@ -570,11 +578,16 @@ es:
     remove: Desvincular alias
   appearance:
     advanced_web_interface: Interfaz web avanzada
-    advanced_web_interface_hint: 'Si desea utilizar todo el ancho de pantalla, la interfaz web avanzada le permite configurar varias columnas diferentes para ver tanta información al mismo tiempo como quiera: Inicio, notificaciones, línea de tiempo federada, cualquier número de listas y etiquetas.'
+    advanced_web_interface_hint: 'Si desea utilizar todo el ancho de pantalla, la interfaz web avanzada le permite configurar varias columnas diferentes para ver tanta información al mismo tiempo como quiera: Inicio, notificaciones, cronología federada, cualquier número de listas y etiquetas.'
     animations_and_accessibility: Animaciones y accesibilidad
     confirmation_dialogs: Diálogos de confirmación
     discovery: Descubrir
+    localization:
+      body: Mastodon es traducido con la ayuda de voluntarios.
+      guide_link: https://es.crowdin.com/project/mastodon
+      guide_link_text: Todos pueden contribuir.
     sensitive_content: Contenido sensible
+    toot_layout: Diseño para barritar
   application_mailer:
     notification_preferences: Cambiar preferencias de correo electrónico
     salutation: "%{name},"
@@ -598,9 +611,9 @@ es:
     delete_account: Borrar cuenta
     delete_account_html: Si desea eliminar su cuenta, puede <a href="%{path}">proceder aquí</a>. Será pedido de una confirmación.
     description:
-      prefix_invited_by_user: "¡@%{name} te invita a unirte a este servidor de Mastodon!"
-      prefix_sign_up: "¡Únete a Mastodon hoy!"
-      suffix: "¡Con una cuenta podrás seguir a gente, publicar novedades e intercambiar mensajes con usuarios de cualquier servidor de Mastodon y más!"
+      prefix_invited_by_user: "¡@%{name} te invita a unirte a este servidor de Mastodonte!"
+      prefix_sign_up: "¡Únete a Mastodonte hoy!"
+      suffix: "¡Con una cuenta podrás seguir a gente, publicar novedades e intercambiar mensajes con usuarios de cualquier servidor de Mastodonte y más!"
     didnt_get_confirmation: "¿No recibió el correo de confirmación?"
     forgot_password: "¿Olvidaste tu contraseña?"
     invalid_reset_password_token: El token de reinicio de contraseña es inválido o expiró. Por favor pide uno nuevo.
@@ -696,7 +709,7 @@ es:
       content: Lo sentimos, algo ha funcionado mal por nuestra parte.
       title: Esta página no es correcta
     '503': La página no se ha podido cargar debido a un fallo temporal del servidor.
-    noscript_html: Para usar la aplicación web de Mastodon, por favor activa Javascript. Alternativamente, prueba alguna de las <a href="%{apps_path}">aplicaciones nativas</a> para Mastodon para tu plataforma.
+    noscript_html: Para usar la aplicación web de Mastodonte, por favor activa Javascript. Alternativamente, prueba alguna de las <a href="%{apps_path}">aplicaciones nativas</a> para Mastodonte para tu plataforma.
   existing_username_validator:
     not_found: no pudo encontrar un usuario local con ese nombre de usuario
     not_found_multiple: no pudo encontrar %{usernames}
@@ -704,27 +717,26 @@ es:
     archive_takeout:
       date: Fecha
       download: Descargar tu archivo
-      hint_html: Puedes solicitar un archivo de tus <strong>toots y materiales subidos</strong>. Los datos exportados estarán en formato ActivityPub, legibles por cualquier software compatible.
+      hint_html: Puedes solicitar un archivo de tus <strong>toots y archivos multimedia subidos</strong>. Los datos exportados estarán en formato ActivityPub, legibles por cualquier software compatible.
       in_progress: Recopilando tu archivo...
       request: Solicitar tu archivo
       size: Tamaño
     blocks: Personas que has bloqueado
     csv: CSV
     domain_blocks: Bloqueos de dominios
-    follows: Personas que sigues
     lists: Listas
     mutes: Tienes en silencio
     storage: Almacenamiento
   featured_tags:
     add_new: Añadir nuevo
     errors:
-      limit: Ya has alcanzado la cantidad máxima de hashtags
-    hint_html: "<strong>¿Qué son las etiquetas destacadas?</strong> Se muestran de forma prominente en tu perfil público y permiten a los usuarios navegar por tus publicaciones públicas específicamente bajo esas etiquetas. Son una gran herramienta para hacer un seguimiento de trabajos creativos o proyectos a largo plazo."
+      limit: Alcanzaste el máximo de etiquetados
+    hint_html: "<strong>¿Qué son las etiquetas destacadas?</strong> Se muestran de forma prominente en tu perfil público y permiten a las personas usuarias navegar por tus publicaciones públicas específicamente bajo esas etiquetas. Son una gran herramienta para hacer un seguimiento de obras creativas o proyectos a largo plazo."
   filters:
     contexts:
-      home: Timeline propio
+      home: Cronología propia
       notifications: Notificaciones
-      public: Timeline público
+      public: Cronología pública
       thread: Conversaciones
     edit:
       title: Editar filtro
@@ -733,6 +745,7 @@ es:
       invalid_irreversible: El filtrado irreversible solo funciona con los contextos propios o de notificaciones
     index:
       delete: Borrar
+      empty: No tienes filtros.
       title: Filtros
     new:
       title: Añadir un nuevo filtro
@@ -742,7 +755,7 @@ es:
     resources: Recursos
     trending_now: Tendencia ahora
   generic:
-    all: Todos
+    all: Todas
     changes_saved_msg: "¡Cambios guardados con éxito!"
     copy: Copiar
     no_batch_actions_available: No hay acciones por lotes disponibles en esta página
@@ -767,7 +780,7 @@ es:
     i_am_html: Soy %{username} en %{service}.
     identity: Identidad
     inactive: Inactivo
-    publicize_checkbox: 'Y tootee esto:'
+    publicize_checkbox: 'Y barrite esto:'
     publicize_toot: "¡Comprobado! Soy %{username} en %{service}: %{url}"
     status: Estado de la verificación
     view_proof: Ver prueba
@@ -881,6 +894,10 @@ es:
       body: "%{name} ha retooteado tu estado:"
       subject: "%{name} ha retooteado tu estado"
       title: Nueva difusión
+  notifications:
+    email_events: Eventos para notificaciones por correo electrónico
+    email_events_hint: 'Selecciona los eventos para los que deseas recibir notificaciones:'
+    other_settings: Otros ajustes de notificaciones
   number:
     human:
       decimal_units:
@@ -904,16 +921,19 @@ es:
       duration_too_long: está demasiado lejos en el futuro
       duration_too_short: es demasiado pronto
       expired: La encuesta ya ha terminado
+      invalid_choice: La opción de voto seleccionada no existe
       over_character_limit: no puede exceder %{max} caracteres cada uno
       too_few_options: debe tener más de un elemento
       too_many_options: no puede contener más de %{max} elementos
   preferences:
     other: Otros
     posting_defaults: Configuración por defecto de publicaciones
-    public_timelines: Líneas de tiempo públicas
+    public_timelines: Cronologías públicas
   relationships:
     activity: Actividad de la cuenta
     dormant: Inactivo
+    followers: Seguidores
+    following: Siguiendo
     last_active: Última actividad
     most_recent: Más reciente
     moved: Movido
@@ -934,16 +954,16 @@ es:
   remote_interaction:
     favourite:
       proceed: Proceder a marcar como favorito
-      prompt: 'Quieres marcar como favorito este toot:'
+      prompt: 'Quieres marcar como favorito este bramido:'
     reblog:
-      proceed: Proceder a retootear
-      prompt: 'Quieres retootear este toot:'
+      proceed: Proceder a rebarritar
+      prompt: 'Quieres rebarritar este bramido:'
     reply:
       proceed: Proceder a responder
-      prompt: 'Quieres responder a este toot:'
+      prompt: 'Quieres responder a este bramido:'
   scheduled_statuses:
-    over_daily_limit: Ha superado el límite de %{limit} toots programados para ese día
-    over_total_limit: Ha superado el límite de %{limit} toots programados
+    over_daily_limit: Ha superado el límite de %{limit} bramidos programados para ese día
+    over_total_limit: Ha superado el límite de %{limit} bramidos programados
     too_soon: La fecha programada debe estar en el futuro
   sessions:
     activity: Última actividad
@@ -968,7 +988,7 @@ es:
       weibo: Weibo
     current_session: Sesión actual
     description: "%{browser} en %{platform}"
-    explanation: Estos son los navegadores web conectados actualmente en tu cuenta de Mastodon.
+    explanation: Estos son los navegadores web conectados actualmente en tu cuenta de Mastodonte.
     ip: IP
     platforms:
       adobe_air: Adobe Air
@@ -997,7 +1017,7 @@ es:
     development: Desarrollo
     edit_profile: Editar perfil
     export: Exportar información
-    featured_tags: Hashtags destacados
+    featured_tags: Etiquetas destacadas
     identity_proofs: Pruebas de identidad
     import: Importar
     import_and_export: Importar y exportar
@@ -1008,7 +1028,7 @@ es:
     relationships: Siguiendo y seguidores
     two_factor_authentication: Autenticación de dos factores
   spam_check:
-    spam_detected: Este es un informe automatizado. Se ha detectado Spam.
+    spam_detected: Este es un informe automatizado. Se ha detectado correo no deseado.
   statuses:
     attached:
       description: 'Adjunto: %{attached}'
@@ -1021,8 +1041,8 @@ es:
     boosted_from_html: Impulsado desde %{acct_link}
     content_warning: 'Alerta de contenido: %{warning}'
     disallowed_hashtags:
-      one: 'contenía un hashtag no permitido: %{tags}'
-      other: 'contenía los hashtags no permitidos: %{tags}'
+      one: 'contenía una etiqueta no permitida: %{tags}'
+      other: 'contenía las etiquetas no permitidas: %{tags}'
     language_detection: Detección automática de idioma
     open_in_web: Abrir en web
     over_character_limit: Límite de caracteres de %{max} superado
@@ -1048,7 +1068,7 @@ es:
       public: Público
       public_long: Todos pueden ver
       unlisted: Público, pero no mostrar en la historia federada
-      unlisted_long: Todos pueden ver, pero no está listado en las líneas de tiempo públicas
+      unlisted_long: Todos pueden ver, pero no está listado en las cronologías públicas
   stream_entries:
     pinned: Toot fijado
     reblogged: retooteado
@@ -1061,9 +1081,9 @@ es:
       <h3 id="collect">¿Qué información recogemos?</h3>
 
       <ul>
-      <li><em>Información básica sobre su cuenta</em>: Si se registra en este servidor, se le requerirá un nombre de usuario, una dirección de correo electrónico y una contraseña. Además puede incluir información adicional en el perfil como un nombre de perfil y una biografía, y subir una foto de perfil y una imagen de cabecera. El nombre de usuario, nombre de perfil, biografía, foto de perfil e imagen de cabecera siempre son visibles públicamente</li>
-      <li><em>Publicaciones, seguimiento y otra información pública</em>: La lista de gente a la que sigue es mostrada públicamente, al igual que sus seguidores. Cuando publica un mensaje, la fecha y hora es almacenada, así como la aplicación desde la cual publicó el mensaje. Los mensajes pueden contener archivos adjuntos multimedia, como imágenes y vídeos. Las publicaciones públicas y no listadas están disponibles públicamente. Cuando destaca una entrada en su perfil, también es información disponible públicamente. Sus publicaciones son entregadas a sus seguidores, en algunos casos significa que son entregadas a diferentes servidores y las copias son almacenadas allí. Cuando elimina publicaciones, esto también se transfiere a sus seguidores. La acción de rebloguear o marcar como favorito otra publicación es siempre pública.</li>
-      <li><em>Publicaciones directas y sólo para seguidores</em>: Todos los mensajes se almacenan y procesan en el servidor. Los mensajes sólo para seguidores se entregan a los seguidores y usuarios que se mencionan en ellos, y los mensajes directos se entregan sólo a los usuarios que se mencionan en ellos. En algunos casos significa que se entregan a diferentes servidores y que las copias se almacenan allí. Hacemos un esfuerzo de buena fe para limitar el acceso a esas publicaciones sólo a las personas autorizadas, pero otros servidores pueden no hacerlo. Por lo tanto, es importante revisar los servidores a los que pertenecen sus seguidores. Puede cambiar una opción para aprobar y rechazar nuevos seguidores manualmente en la configuración <em>Por favor, tenga en cuenta que los operadores del servidor y de cualquier servidor receptor pueden ver dichos mensajes</em>, y que los destinatarios pueden capturarlos, copiarlos o volver a compartirlos de alguna otra manera. <em>No comparta ninguna información peligrosa en Mastodon.</em></li>
+      <li><em>Información básica sobre su cuenta</em>: Si se registra en este servidor, se le requerirá un nombre de persona usuaria, una dirección de correo electrónico y una contraseña. Además puede incluir información adicional en el perfil como un nombre de perfil y una biografía, y subir una foto de perfil y una imagen de cabecera. El nombre de usuaria, nombre de perfil, biografía, foto de perfil e imagen de cabecera siempre son visibles públicamente</li>
+      <li><em>Publicaciones, seguimiento y otra información pública</em>: La lista de gente a la que sigue es mostrada públicamente, al igual que sus seguidores. Cuando publica un mensaje, la fecha y hora es almacenada, así como la aplicación desde la cual publicó el mensaje. Los mensajes pueden contener archivos adjuntos multimedia, como imágenes y vídeos. Las publicaciones públicas y no listadas están disponibles públicamente. Cuando destaca una entrada en su perfil, también es información disponible públicamente. Sus publicaciones son entregadas a sus seguidores, en algunos casos significa que son entregadas a diferentes servidores y las copias son almacenadas allí. Cuando elimina publicaciones, esto también se transfiere a sus seguidores. La acción de reenviar o marcar como favorito otra publicación es siempre pública.</li>
+      <li><em>Publicaciones directas y sólo para seguidoras</em>: Todos los mensajes se almacenan y procesan en el servidor. Las publicaciones sólo para seguidoras se entregan a las seguidoras y usuarias que se mencionan en ellas, y los mensajes directos se entregan sólo a las usuarias que se mencionan en ellos. En algunos casos significa que se entregan a diferentes servidores y que las copias se almacenan allí. Hacemos un esfuerzo de buena fe para limitar el acceso a esas publicaciones sólo a las personas autorizadas, pero otros servidores pueden no hacerlo. Por lo tanto, es importante revisar los servidores a los que pertenecen sus seguidoras. Puede cambiar una opción para aprobar y rechazar nuevas seguidoras manualmente en la configuración <em>Por favor, tenga en cuenta que las operadoras del servidor y de cualquier servidor receptor pueden ver dichos mensajes</em>, y que las destinatarias pueden capturarlos, copiarlos o volver a compartirlos de alguna otra manera. <em>No comparta ninguna información peligrosa en Mastodonte.</em></li>
       <li><em>Direcciones IP y otros metadatos</em>: Al iniciar sesión, registramos la dirección IP desde la que se ha iniciado sesión, así como el nombre de la aplicación de su navegador. Todas las sesiones iniciadas están disponibles para su revisión y revocación en los ajustes. La última dirección IP utilizada se almacena hasta 12 meses. También podemos conservar los registros del servidor que incluyen la dirección IP de cada solicitud a nuestro servidor.</li>
       </ul>
 
@@ -1074,7 +1094,7 @@ es:
       <p>Toda la información que obtenemos de usted puede ser utilizada de las siguientes maneras:</p>
 
       <ul>
-      <li>Para proporcionar la funcionalidad principal de Mastodon. Sólo puedes interactuar con el contenido de otras personas y publicar tu propio contenido cuando estés conectado. Por ejemplo, puedes seguir a otras personas para ver sus mensajes combinados en tu propia línea de tiempo personalizada.</li>
+      <li>Para proporcionar la funcionalidad principal de Mastodonte. Sólo puedes interactuar con el contenido de otras personas y publicar tu propio contenido cuando estés conectado. Por ejemplo, puedes seguir a otras personas para ver sus mensajes combinados en tu propia línea de tiempo personalizada.</li>
       <li>Para ayudar a la moderación de la comunidad, por ejemplo, comparando su dirección IP con otras conocidas para determinar la evasión de prohibiciones u otras violaciones.</li>
       <li>La dirección de correo electrónico que nos proporcione podrá utilizarse para enviarle información, notificaciones sobre otras personas que interactúen con su contenido o para enviarle mensajes, así como para responder a consultas y/u otras solicitudes o preguntas.</li>
       </ul>
@@ -1114,9 +1134,9 @@ es:
 
       <p>No vendemos, comerciamos ni transferimos a terceros su información personal identificable. Esto no incluye a los terceros de confianza que nos asisten en la operación de nuestro sitio, en la realización de nuestros negocios o en la prestación de servicios, siempre y cuando dichas partes acuerden mantener la confidencialidad de esta información. También podemos divulgar su información cuando creamos que es apropiado para cumplir con la ley, hacer cumplir las políticas de nuestro sitio, o proteger nuestros u otros derechos, propiedad o seguridad.</p>
 
-      <p>Su contenido público puede ser descargado por otros servidores de la red. Tus mensajes públicos y sólo para seguidores se envían a los servidores donde residen tus seguidores, y los mensajes directos se envían a los servidores de los destinatarios, en la medida en que dichos seguidores o destinatarios residan en un servidor diferente.</p>
+      <p>Su contenido público puede ser descargado por otros servidores de la red. Tus mensajes públicos y sólo para seguidoras se envían a los servidores donde residen tus seguidoras, y los mensajes directos se envían a los servidores de las destinatarias, en la medida en que dichas seguidoras o destinatarias residan en un servidor diferente.</p>
 
-      <p>Cuando usted autoriza a una aplicación a usar su cuenta, dependiendo del alcance de los permisos que usted apruebe, puede acceder a la información de su perfil público, su lista de seguimiento, sus seguidores, sus listas, todos sus mensajes y sus favoritos. Las aplicaciones nunca podrán acceder a su dirección de correo electrónico o contraseña.</p>
+      <p>Cuando usted autoriza a una aplicación a usar su cuenta, dependiendo del alcance de los permisos que usted apruebe, puede acceder a la información de su perfil público, su lista de seguimiento, sus seguidoras, sus listas, todos sus mensajes y sus favoritas. Las aplicaciones nunca podrán acceder a su dirección de correo electrónico o contraseña.</p>
 
       <hr class="spacer" />
 
@@ -1139,9 +1159,9 @@ es:
       <p>Adaptado originalmente desde <a href="https://github.com/discourse/discourse">la política de privacidad de Discourse</a>.</p>
     title: Términos del Servicio y Políticas de Privacidad de %{instance}
   themes:
-    contrast: Alto contraste
-    default: Mastodon
-    mastodon-light: Mastodon (claro)
+    contrast: Mastodonte (Alto contraste)
+    default: Mastodonte (Oscuro)
+    mastodon-light: Mastodonte (claro)
   time:
     formats:
       default: "%d de %b del %Y, %H:%M"
@@ -1164,14 +1184,14 @@ es:
     wrong_code: "¡El código ingresado es inválido! ¿El dispositivo y tiempo del servidor están correctos?"
   user_mailer:
     backup_ready:
-      explanation: Has solicitado una copia completa de tu cuenta de Mastodon. ¡Ya está preparada para descargar!
+      explanation: Has solicitado una copia completa de tu cuenta de Mastodonte. ¡Ya está preparada para descargar!
       subject: Tu archivo está preparado para descargar
       title: Descargar archivo
     warning:
       explanation:
         disable: Mientras su cuenta esté congelada, la información de su cuenta permanecerá intacta, pero no puede realizar ninguna acción hasta que se desbloquee.
-        silence: Mientras su cuenta está limitada, sólo las personas que ya le están siguiendo verán sus toots en este servidor, y puede que se le excluya de varios listados públicos. Sin embargo, otros pueden seguirle manualmente.
-        suspend: Su cuenta ha sido suspendida, y todos tus toots y tus archivos multimedia subidos han sido irreversiblemente eliminados de este servidor, y de los servidores donde tenías seguidores.
+        silence: Mientras su cuenta está limitada, sólo las personas que ya le están siguiendo verán sus bramidos en este servidor, y puede que se le excluya de varios listados públicos. Sin embargo, otros pueden seguirle manualmente.
+        suspend: Su cuenta ha sido suspendida, y todos tus bramidos y tus archivos multimedia subidos han sido irreversiblemente eliminados de este servidor, y de los servidores donde tenías seguidores.
       get_in_touch: Puede responder a esta dirección de correo electrónico para ponerse en contacto con el personal de %{instance}.
       review_server_policies: Revisar las políticas del servidor
       statuses: 'Específicamente, para:'
@@ -1190,15 +1210,15 @@ es:
       edit_profile_step: Puedes personalizar tu perfil subiendo un avatar, una cabecera, cambiando tu nombre de usuario y más cosas. Si quieres revisar a tus nuevos seguidores antes de que se les permita seguirte, puedes bloquear tu cuenta.
       explanation: Aquí hay algunos consejos para empezar
       final_action: Empezar a publicar
-      final_step: '¡Empieza a publicar! Incluso sin seguidores, tus mensajes públicos pueden ser vistos por otros, por ejemplo en la linea de tiempo local y con "hashtags". Podrías querer introducirte con el "hashtag" #introductions.'
+      final_step: '¡Empieza a publicar! Incluso sin seguidores, tus mensajes públicos pueden ser vistos por otros, por ejemplo en la ristra teporal local y con "etiquetas". Podrías querer presentarte con la "etiqueta" #presentaciones o #nuevascuentas.'
       full_handle: Su sobrenombre completo
       full_handle_hint: Esto es lo que le dirías a tus amigos para que ellos puedan enviarte mensajes o seguirte desde otra instancia.
       review_preferences_action: Cambiar preferencias
       review_preferences_step: Asegúrate de poner tus preferencias, como que correos te gustaría recibir, o que nivel de privacidad te gustaría que tus publicaciones tengan por defecto. Si no tienes mareos, podrías elegir habilitar la reproducción automática de "GIFs".
-      subject: Bienvenido a Mastodon
-      tip_federated_timeline: La línea de tiempo federada es una vista de la red de Mastodon. Pero solo incluye gente que tus vecinos están siguiendo, así que no está completa.
-      tip_following: Sigues a tus administradores de servidor por defecto. Para encontrar más gente interesante, revisa las lineas de tiempo local y federada.
-      tip_local_timeline: La linea de tiempo local is una vista de la gente en %{instance}. Estos son tus vecinos inmediatos!
+      subject: Bienvenido a Mastodonte
+      tip_federated_timeline: La cronología federada es una vista de la red de Mastodonte. Pero solo incluye gente que tus vecinos están siguiendo, así que no está completa.
+      tip_following: Sigues a tus administradores de servidor por defecto. Para encontrar más gente interesante, revisa las cronologías local y federada.
+      tip_local_timeline: La cronología local is una vista de la gente en %{instance}. Estos son tus vecinos inmediatos!
       tip_mobile_webapp: Si el navegador de tu dispositivo móvil ofrece agregar Mastodon a tu página de inicio, puedes recibir notificaciones. Actúa como una aplicación nativa en muchas formas!
       tips: Consejos
       title: Te damos la bienvenida a bordo, %{name}!
@@ -1210,5 +1230,5 @@ es:
     seamless_external_login: Has iniciado sesión desde un servicio externo, así que los ajustes de contraseña y correo no están disponibles.
     signed_in_as: 'Sesión iniciada como:'
   verification:
-    explanation_html: 'Puedes <strong> verificarte a ti mismo como el dueño de los links en los metadatos de tu perfil </strong>. Para eso, el sitio vinculado debe contener un vínculo a tu perfil de Mastodon. El vínculo en tu sitio <strong> debe </strong> tener un atributo <code> rel="me"</code>. El texto del vínculo no importa. Aquí un ejemplo:'
+    explanation_html: 'Puedes <strong> verificarte a ti mismo como el dueño de los links en los metadatos de tu perfil </strong>. Para eso, el sitio vinculado debe contener un vínculo a tu perfil de Mastodonte. El vínculo en tu sitio <strong> debe </strong> tener un atributo <code> rel="me"</code>. El texto del vínculo no importa. Aquí un ejemplo:'
     verification: Verificación
diff --git a/config/locales/et.yml b/config/locales/et.yml
index 6b814a23c8a220b934fd61a7b2bf0092c49a9d35..16e80ae3536aa095b97ee48f575c603d6f6b30b3 100644
--- a/config/locales/et.yml
+++ b/config/locales/et.yml
@@ -2,7 +2,7 @@
 et:
   about:
     about_hashtag_html: Need on avalikud tuututused sildistatud sildiga <strong>#%{hashtag}</strong>. Te saate suhelda nendega, kui Teil on konto üks kõik kus terves fediversumis.
-    about_mastodon_html: Mastodon on sotsiaalvõrgustik, mis põhineb avatud protokollidel ja avatud lähtekoodiga tarkvaral. See on detsentraliseeritud nagu e-post.
+    about_mastodon_html: 'Tuleviku sotsiaalvõrgustik: Reklaamivaba, korporatiivse järelvalveta, eetiline kujundus ning detsentraliseeritus! Oma enda andmeid Mastodonis!'
     about_this: Meist
     active_count_after: aktiivne
     active_footnote: Igakuiselt aktiivseid kasutajaid (MAU)
@@ -11,6 +11,7 @@ et:
     apps: Mobiilrakendused
     apps_platforms: Kasuta Mastodoni iOS-is, Androidis ja teistel platvormidel
     browse_directory: Sirvi profiilide kataloogi ja filtreeri huvide alusel
+    browse_local_posts: Sirvi reaalajas voogu avalikest postitustest sellest serverist
     browse_public_posts: Sirvi reaalajas voogu avalikest postitustest Mastodonis
     contact: Kontakt
     contact_missing: Määramata
@@ -34,6 +35,14 @@ et:
     status_count_before: Kes omavad
     tagline: Jälgi sõpru ja leia uusi
     terms: Kasutustingimused
+    unavailable_content: Sisu pole saadaval
+    unavailable_content_description:
+      domain: Server
+      reason: Põhjus
+      rejecting_media: 'Meedia failid sellelt serverilt ei töödelda ega salvestata ning mitte ühtegi eelvaadet ei kuvata, mis nõuab manuaalselt vajutust originaalfailile:'
+      silenced: 'Postitused nendelt serveritelt peidetakse avalikes ajajoontes ja vestlustes ning mitte ühtegi teavitust ei tehta nende kasutajate tegevustest, välja arvatud juhul, kui Te neid jälgite:'
+      suspended: 'Mitte mingeid andmeid nendelt serveritelt ei töödelda, salvestata ega vahetata, tehes igasuguse interaktsiooni või kirjavahetuse kasutajatega nendelt serveritelt võimatuks:'
+    unavailable_content_html: Mastodon tavaliselt lubab Teil vaadata sisu ning suhelda kasutajatega üks kõik millisest teisest serverist fediversumis. Need on erandid, mis on paika pandud sellel kindlal serveril.
     user_count_after:
       one: kasutajale
       other: kasutajale
@@ -41,6 +50,8 @@ et:
     what_is_mastodon: Mis on Mastodon?
   accounts:
     choices_html: "%{name}-i valikud:"
+    endorsements_hint: Te saate heaks kiita inimesi, keda jälgite, veebiliidesest ning neid kuvatakse siin.
+    featured_tags_hint: Te saate valida kindlaid silte, mida kuvatakse siin.
     follow: Jälgi
     followers:
       one: Jälgija
@@ -52,13 +63,14 @@ et:
     media: Meedia
     moved_html: "%{name} kolis %{new_profile_link}:"
     network_hidden: Neid andmeid pole saadaval
+    never_active: Mitte kunagi
     nothing_here: Siin pole midagi!
     people_followed_by: Inimesed, keda %{name} jälgib
     people_who_follow: Inimesed, kes jälgivad kasutajat %{name}
     pin_errors:
       following: Te peate juba olema selle kasutaja jälgija, keda te heaks kiidate
     posts:
-      one: Tuut
+      one: Tuututus
       other: Tuututused
     posts_tab_heading: Tuututused
     posts_with_replies: Tuututused ja vastused
@@ -66,6 +78,7 @@ et:
     roles:
       admin: Administraator
       bot: Robot
+      group: Grupp
       moderator: Moderaator
     unavailable: Profiil pole saadaval
     unfollow: Lõpeta jälgimine
@@ -106,9 +119,7 @@ et:
       email_status: E-posti staatus
       enable: Luba
       enabled: Lubatud
-      feed_url: Voogu URL
       followers: Jälgijad
-      followers_url: Jälgijate URL
       follows: Jälgib
       header: Päis
       inbox_url: Sisendkausta URL
@@ -136,10 +147,8 @@ et:
       no_account_selected: Mitte ühtegi kontot muudeti sest midagi polnud valitud
       no_limits_imposed: Mitte ühtegi limiiti kehtestatud
       not_subscribed: Ei ole tellitud
-      outbox_url: Väljundkausta URL
       pending: Ootab ülevaatamist
       perform_full_suspension: Peata
-      profile_url: Profiili URL
       promote: Edenda
       protocol: Protokoll
       public: Avalik
@@ -162,8 +171,8 @@ et:
         moderator: Moderaator
         staff: Personal
         user: Kasutaja
-      salmon_url: Salmoni URL
       search: Otsi
+      search_same_ip: Teised kasutajad, kellel on sama IP
       shared_inbox_url: Jagatud sisendkausta URL
       show:
         created_reports: Loodud teated
@@ -190,10 +199,12 @@ et:
         confirm_user: "%{name} kinnitas kasutaja %{target} e-postiaadressi"
         create_account_warning: "%{name} saatis kasutajale %{target} hoiatuse"
         create_custom_emoji: "%{name} laadis üles uue emotikooni %{target}"
+        create_domain_allow: "%{name} lisas domeeni %{target} lubatute nimekirja"
         create_domain_block: "%{name} blokeeris domeeni %{target}"
         create_email_domain_block: "%{name} lisas e-posti domeeni %{target} musta nimekirja"
         demote_user: "%{name} alandas kasutaja %{target}"
         destroy_custom_emoji: "%{name} kustutas emotikooni %{target}"
+        destroy_domain_allow: "%{name} eemaldas domeeni %{target} lubatute nimekirjast"
         destroy_domain_block: "%{name} eemaldas blokeeringu domeenilt %{target}"
         destroy_email_domain_block: "%{name} lisas e-posti domeeni %{target} lubatute nimekirja"
         destroy_status: "%{name} eemaldas %{target} staatuse"
@@ -218,19 +229,24 @@ et:
       deleted_status: "(kustutatud staatus)"
       title: Auditilogi
     custom_emojis:
+      assign_category: Määra kategooria
       by_domain: Domeen
       copied_msg: Kohaliku koopia loomine emotikonist õnnestus
       copy: Kopeeri
       copy_failed_msg: Kohaliku koopia loomine sellest emotikonist ebaõnnestus
+      create_new_category: Loo uus kategooria
       created_msg: Emotikoni loomine õnnestus!
       delete: Kustuta
       destroyed_msg: Emotikoni kustutamine õnnestus!
       disable: Keela
+      disabled: Keelatud
       disabled_msg: Selle emotikoni keelamine õnnestus
       emoji: Emotikonid
       enable: Luba
+      enabled: Lubatud
       enabled_msg: Selle emotikoni lubamine õnnestus
       image_hint: PNG kuni 50KB
+      list: Loend
       listed: Nimekirjastatud
       new:
         title: Lisa uus emotikon
@@ -238,6 +254,8 @@ et:
       shortcode: Lühikood
       shortcode_hint: Vähemalt 2 tähemärki, ainult tähted, numbrid ja alakriipsud
       title: Emotikonid
+      uncategorized: Kategoriseerimata
+      unlist: Kirjendamata
       unlisted: Kirjendamata
       update_failed_msg: Ei saanud seda emotikoni uuendada
       updated_msg: Emotikoni uuendamine õnnestus!
@@ -269,6 +287,7 @@ et:
       week_interactions: interaktsioone see nädal
       week_users_active: aktiivne see nädal
       week_users_new: kasutajaid see nädal
+      whitelist_mode: Lubatud
     domain_allows:
       add_new: Luba domeen
       created_msg: Domeeni lubamine õnnestus
@@ -279,6 +298,7 @@ et:
       created_msg: Domeeni blokeeringut töödeldakse
       destroyed_msg: Domeeniblokeering on tagasi võetud
       domain: Domeen
+      edit: Redigeeri domeeniblokeeringut
       existing_domain_block_html: Te olete juba lisanud domeenile %{name} piiranguid, palun <a href="%{unblock_url}">eemaldage blokeering</a> enne jätkamist.
       new:
         create: Loo blokeering
@@ -292,6 +312,10 @@ et:
           silence: Vaigista
           suspend: Peata
         title: Uus domeeniblokeering
+      private_comment: Privaatne kommentaar
+      private_comment_hint: Kommenteeri selle domeeni limiteerimise kohta moderaatoritele.
+      public_comment: Avalik kommentaar
+      public_comment_hint: Kommenteeri selle domeeni limiteerimise kohta avalikkusele, kui domeenilimitatsioonide loend on kõigile nähtav.
       reject_media: Keela meediafailid
       reject_media_hint: Kustutab kohalikult salvestatud meediafailid ja keeldub tulevikus rohkem allalaadimast. Ei puuduta peatamisi
       reject_reports: Lükka teavitused tagasi
@@ -311,12 +335,14 @@ et:
         title: Eemalda domeeniblokeering %{domain}
         undo: Võta tagasi
       undo: Võta tagasi domeeniblokeering
+      view: Vaata domeeniblokeeringut
     email_domain_blocks:
       add_new: Lisa uus
       created_msg: E-posti aadressi keelunimekirja lisamine õnnestus
       delete: Kustuta
       destroyed_msg: E-posti aadressi keelunimekirjast kustutamine õnnestus
       domain: Domeen
+      empty: Ühtegi e-postidomeeni pole blokeeritud.
       new:
         create: Lisa domeen
         title: Uus e-posti keelunimekirja sisend
@@ -334,6 +360,8 @@ et:
         all: Kõik
         limited: Piiratud
         title: Moderatsioon
+      private_comment: Privaatne kommentaar
+      public_comment: Avalik kommentaar
       title: Föderatsioon
       total_blocked_by_us: Meie poolt blokeeritud
       total_followed_by_them: Nende poolt jälgitud
@@ -357,12 +385,13 @@ et:
       disable: Keela
       disabled: Keelatud
       enable: Luba
-      enable_hint: Kui lubatud, siis sinu server tellib kõik avalikud tuututused sellelt releelt, ning hakkab ka enda avalikke tuututusi sellele saatma.
+      enable_hint: Kui lubatud, siis Teie server tellib kõik avalikud tuututused sellelt releelt ning hakkab ka enda avalikke tuututusi sellele saatma.
       enabled: Lubatud
       inbox_url: Relee URL
       pending: Ootab relee nõusolekut
       save_and_enable: Salvesta ja luba
       setup: Sea üles releeühendus
+      signatures_not_enabled: Releed ei tööta korrektselt kuniks turvarežiim või lubatud nimekirja režiim on sisse lülitatud
       status: Staatus
       title: Releed
     report_notes:
@@ -370,12 +399,17 @@ et:
       destroyed_msg: Teade edukalt kustutatud!
     reports:
       account:
-        note: märkus
-        report: teavita
+        notes:
+          one: "%{count} märkus"
+          other: "%{count} märkust"
+        reports:
+          one: "%{count} teavitus"
+          other: "%{count} teavitust"
       action_taken_by: Meetmeid kasutanud
       are_you_sure: Olete kindel?
       assign_to_self: Määra mulle
       assigned: Määratud moderaator
+      by_target_domain: Teavitatud konto domeen
       comment:
         none: Pole
       created_at: Teavitatud
@@ -411,6 +445,18 @@ et:
       custom_css:
         desc_html: Muuda kujundust CSSi abil, mis laetakse igal lehel
         title: Kohandatud CSS
+      default_noindex:
+        desc_html: Mõjutab kõiki kasutajaid, kes pole seda sätet ise muutnud
+        title: Loobu kasutajate otsingumootoritesse indekseerimisest vaikimisi
+      domain_blocks:
+        all: Kõigile
+        disabled: Mitte kellelegi
+        title: Näita domeeniblokeeringuid
+        users: Sisseloginud kohalikele kasutajatele
+      domain_blocks_rationale:
+        title: Näita põhjendust
+      enable_bootstrap_timeline_accounts:
+        title: Luba vaikimisi jälgimisi uutele kasutajatele
       hero:
         desc_html: Kuvatud kodulehel. Vähemalt 600x100px soovitatud. Kui pole seadistatud, kuvatakse serveri pisililt
         title: Maskotipilt
@@ -471,12 +517,19 @@ et:
         desc_html: Kuva avalikku ajajoont esilehel
         title: Ajajoone eelvaade
       title: Lehe seaded
+      trendable_by_default:
+        desc_html: Puudutab silte, mis pole varem keelatud
+        title: Luba siltide trendimine ilma eelneva ülevaatuseta
+      trends:
+        desc_html: Kuva avalikult eelnevalt üle vaadatud sildid, mis on praegu trendikad
+        title: Populaarsed sildid praegu
     statuses:
       back_to_account: Tagasi konto lehele
       batch:
         delete: Kustuta
         nsfw_off: Märgi kui mitte tundlik
         nsfw_on: Märgi kui tundlik
+      deleted: Kustutatud
       failed_to_execute: Täitmine ebaõnnestus
       media:
         title: Meedia
@@ -485,7 +538,23 @@ et:
       title: Konto staatused
       with_media: Meediaga
     tags:
+      accounts_today: Unikaalseid kasutusi täna
+      accounts_week: Unikaalseid kasutusi see nädal
+      breakdown: Tänane kasutus allikate kohta
+      context: Kontekst
+      directory: Kataloogis
+      in_directory: "%{count} kataloogis"
+      last_active: Viimati aktiivne
+      most_popular: Kõige populaarsemad
+      most_recent: Viimased
+      name: Silt
+      review: Staatuse ülevaade
+      reviewed: Ülevaadatud
       title: Sildid
+      trending_right_now: Praegu populaarsed
+      unique_uses_today: "%{count} inimest postitavad täna"
+      unreviewed: Üle vaatamata
+      updated_msg: Sildi sätted edukalt uuendatud
     title: Administreerimine
     warning_presets:
       add_new: Lisa uus
@@ -501,12 +570,27 @@ et:
       body: "%{reporter} teavitas kasutajast %{target}"
       body_remote: Keegi domeenist %{domain} teavitas kasutajast %{target}
       subject: Uus teavitus %{instance}-ile (#%{id})
+    new_trending_tag:
+      body: Silt %{name} on täna trendikas, aga pole eelnevalt üle vaadatud. Seda ei näidata avalikult, välja arvatud juhul, kui Te ise seda lubate või lihtsalt salvestage vorm nagu see on ning Te ei kuule sellest enam kunagi.
+      subject: Uus silt valmis ülevaatluseks serveril %{instance} (#%{name})
+  aliases:
+    add_new: Loo teine nimi
+    created_msg: Teine nimi on edukalt loodud. Te saate nüüd alustada kolimist vanalt kontolt.
+    deleted_msg: Edukalt kustutasime teise nime. Kolimine sellelt kontolt praegusele on nüüdsest võimatu.
+    hint_html: Kui Te soovite kolida teiselt kontolt praegusele kontole, saate Te siin luua teise nime, mis on kohustuslik, enne kui saate kolida jälgijaid vanalt kontolt praegusele. See tegevus on iseenesest <strong>kahjutu ja taastatav</strong>. <strong>Konto ületoomine alustatakse vanalt kontolt</strong>.
+    remove: Eemalda teine nimi
   appearance:
     advanced_web_interface: Arenenud veebiliides
     advanced_web_interface_hint: 'Kui soovite kasutada terve ekraani laiust, lubab arenenud veebiliides seadistada mitut erinevat veergu, et näha nii palju informatsiooni samal ajal kui võimalik: Kodu, teavitused, föderatsiooni ajajoon ning mis iganes arv nimekirju ja silte.'
     animations_and_accessibility: Animatsioonid ja ligipääs
     confirmation_dialogs: Kinnitusdialoogid
+    discovery: Avastus
+    localization:
+      body: Mastodon on tõlgitud vabatahtlike poolt.
+      guide_link: https://crowdin.com/project/mastodon
+      guide_link_text: Igaüks võib panustada.
     sensitive_content: Tundlik sisu
+    toot_layout: Tuututuse kujundus
   application_mailer:
     notification_preferences: Muuda e-kirjade eelistusi
     salutation: "%{name},"
@@ -521,7 +605,7 @@ et:
     regenerate_token: Loo uus access token
     token_regenerated: Access tokeni loomine õnnestus
     warning: Olge nende andmetega ettevaatlikud. Ärge jagage neid kellegagi!
-    your_token: Sinu access token
+    your_token: Teie access token
   auth:
     apply_for_account: Taotle kutse
     change_password: Salasõna
@@ -529,6 +613,10 @@ et:
     checkbox_agreement_without_rules_html: Ma nõustun <a href="%{terms_path}" target="_blank">kasutustingimustega</a>
     delete_account: Kustuta konto
     delete_account_html: Kui Te soovite oma kontot kustutada, võite <a href="%{path}">jätkata siit</a>. Teilt küsitakse kinnitust.
+    description:
+      prefix_invited_by_user: "@%{name} kutsub Teid liituma selle Mastodoni serveriga!"
+      prefix_sign_up: Loo Mastodoni konto juba täna!
+      suffix: Kasutajakontoga saate jälgida inimesi, postitada uudiseid ning teha kirjavahetust üks kõik millisest Mastodoni serverist kasutajatega ja muud!
     didnt_get_confirmation: Ei saanud kinnituse juhendeid?
     forgot_password: Unustasid oma salasõna?
     invalid_reset_password_token: Salasõna lähtestusvõti on vale või aegunud. Palun taotle uus.
@@ -553,7 +641,9 @@ et:
     status:
       account_status: Konto olek
       confirming: Ootan e-posti kinnitust.
+      functional: Teie konto on täiesti töökorras.
       pending: Teie taotlus ootab ülevaadet meie personali poolt. See võib võtta mõnda aega. Kui Teie taotlus on vastu võetud, saadetakse Teile e-kiri.
+      redirecting_to: Teie konto ei ole aktiivne, kuna hetkel suunatakse ümber kasutajale %{acct}.
     trouble_logging_in: Probleeme sisselogimisega?
   authorize_follow:
     already_following: Te juba jälgite seda kontot
@@ -566,6 +656,11 @@ et:
       return: Näita kasutaja profiili
       web: Mine veebi
     title: Jälgi %{acct}
+  challenge:
+    confirm: Jätka
+    hint_html: "<strong>Nõuanne:</strong> Me ei küsi Teilt uuesti salasõna järgmise tunni jooksul."
+    invalid_password: Vigane salasõna
+    prompt: Jätkamiseks kinnitage salasõna
   datetime:
     distance_in_words:
       about_x_hours: "%{count}t"
@@ -581,18 +676,33 @@ et:
       x_months: "%{count}k"
       x_seconds: "%{count}s"
   deletes:
+    challenge_not_passed: Informatsioon, mida sisestasite, oli vale
     confirm_password: Sisesta oma praegune salasõna, et kinnitada oma identiteet
+    confirm_username: Sisestage oma kasutajanimi protseduuri kinnitamiseks
     proceed: Kustuta konto
     success_msg: Konto kustutamine õnnestus
+    warning:
+      before: 'Enne jätkamist palun lugege neid märkmeid hoolikalt:'
+      caches: Sisu, mis on salvestatud teiste serverite poolt, võib jääda alles
+      data_removal: Teie postitused ning muud andmed kustutatakse jäädavalt
+      email_change_html: Te saate <a href="%{path}">muuta oma e-postiaadressi</a> kontot kustutamata
+      email_contact_html: Kui see ikkagi ei saabu, saatke abi saamiseks kiri aadressile <a href="mailto:%{email}">%{email}</a>
+      email_reconfirmation_html: Kui Te ei saanud kinnituskirja, saate selle <a href="%{path}">uuesti küsida</a>
+      irreversible: Te ei saa taastada ega taasaktiveerida oma kontot
+      more_details_html: Rohkemate detailide jaoks palun lugege <a href="%{terms_path}">privaatsuspoliitikat</a>.
+      username_available: Teie kasutajanimi muutub uuesti kasutatavaks
+      username_unavailable: Teie kasutajanimi jääb mitte kasutatavaks
   directories:
     directory: Profiilikataloog
     explanation: Avasta kasutajaid nende huvide põhjal
     explore_mastodon: Avasta %{title}
+  domain_validator:
+    invalid_domain: ei ole sobiv domeeni nimi
   errors:
-    '400': The request you submitted was invalid or malformed.
+    '400': Toiming oli vale või valesti vormindatud.
     '403': Sul puudub õigus seda lehte vaadata.
     '404': Soovitud lehte ei leitud.
-    '406': This page is not available in the requested format.
+    '406': See lehekülg ei ole soovitavas formaadis saadaval.
     '410': Soovitud lehekülge pole enam siin.
     '422':
       content: Turvalisuse kontroll ebaõnnestus. Kas Te blokeerite küpsiseid?
@@ -601,7 +711,7 @@ et:
     '500':
       content: Palume vabandust, midagi läks valesti meie pool.
       title: See lehekülg pole õige
-    '503': The page could not be served due to a temporary server failure.
+    '503': Lehekülge ei saanud serveerida ajutise serveri vea tõttu.
     noscript_html: Et kasutada Mastodoni veebirakendust, palun lubage JavaScript. Alternatiivselt, proovige mõnda <a href="%{apps_path}">rakendust</a> Teie platvormile.
   existing_username_validator:
     not_found: ei suutnud leida kohalikku kasutajat selle kasutajanimega
@@ -617,7 +727,6 @@ et:
     blocks: Teie blokeerite
     csv: CSV
     domain_blocks: Domeeni blokeeringud
-    follows: Teie jälgite
     lists: Nimistud
     mutes: Teie vaigistate
     storage: Meedia hoidla
@@ -625,6 +734,7 @@ et:
     add_new: Lisa uus
     errors:
       limit: Olete jõudnud maksimum lubatud siltide arvuni
+    hint_html: "<strong>Mis on esile toodud sildid?</strong> Need sildid näidatakse nähtavalt Teie avalikul profiilil ning nad aitavad inimestel leida postitusi, millel on antud sildid. Nad on hea viis kuidas näiteks hoida järge loovtöödel või pikaajalistel projektidel."
   filters:
     contexts:
       home: Kodu ajajoon
@@ -638,6 +748,7 @@ et:
       invalid_irreversible: Taastamatu filter töötab ainult kodu või teavituste kontekstis
     index:
       delete: Kustuta
+      empty: Teil pole filtreid.
       title: Filterid
     new:
       title: Lisa uus filter
@@ -645,10 +756,12 @@ et:
     developers: Arendajad
     more: Rohkem…
     resources: Materjalid
+    trending_now: Praegu trendikad
   generic:
     all: Kõik
     changes_saved_msg: Muudatuste salvestamine õnnestus!
     copy: Kopeeri
+    no_batch_actions_available: Komplekttegevused pole sellel lehel saadaval
     order_by: Järjesta
     save_changes: Salvesta muudatused
     validation_errors:
@@ -720,13 +833,41 @@ et:
       too_many: Ei saa lisada rohkem, kui 4 faili
   migrations:
     acct: uue konto kasutajanimi@domeen
+    cancel: Tühista ümbersuunamine
+    cancel_explanation: Ümbersuunamise tühistamine taasaktiveerib Teie praeguse konto, kuid ei too tagasi jälgijaid, mis on sellele kontole üle viidud.
+    cancelled_msg: Ümbersuunamise tühistamine õnnestus.
+    errors:
+      already_moved: on sama konto, kuhu Te olete juba kolinud
+      missing_also_known_as: ei viita tagasi sellele kontole
+      move_to_self: ei saa olla praegune konto
+      not_found: ei leitud
+      on_cooldown: Te olete hetkel ootel
+    followers_count: Jälgijaid kolimise hetkel
+    incoming_migrations: Kolivad teiselt kontolt
+    incoming_migrations_html: Kui soovite kolida teiselt kontolt praegusele, peate Te esmalt looma <a href="%{path}">kontole teise nime</a>.
+    moved_msg: Teie konto on nüüd ümber suunamas kontole %{acct} ning Teie jälgijaid kolitakse üle.
+    not_redirecting: Teie kontot ei suunata hetkel ümber.
+    on_cooldown: Te olete hiljuti kolinud oma kontot. See funktsioon on jälle kättesaadav %{count} päeva pärast.
+    past_migrations: Eelmiseid kolimisi
+    proceed_with_move: Koli üle jälgijad
+    redirecting_to: Teie konto suunatakse ümber kontole %{acct}.
+    set_redirect: Määra ümbersuunamine
+    warning:
+      backreference_required: Uus konto peab olema esmalt seadistatud tagasi viitama praegusele kontole
+      before: 'Enne jätkamist palun lugege neid märkmeid hoolikalt:'
+      cooldown: Pärast kolimist on ooteperiood, mille kestel ei saa Te uuesti kolida
+      disabled_account: Teie praegune konto ei ole täiesti kasutatav peale seda. Sellest hoolimata on Teil ligipääs andmete ekspordile ja taasaktiveerimisele.
+      followers: See tegevus kolib kõik jälgijad üle praeguselt kontolt uuele kontole
+      only_redirect_html: Alternatiivselt saate Te <a href="%{path}">seadistada ainult ümbersuunamise Teie profiilil</a>.
+      other_data: Muid andmeid ei liigutata automaatselt
+      redirect: Teie praegune konto eemaldatakse otsingutulemustest ning profiilile lisatakse ümbersuunamise märguanne
   moderation:
     title: Moderatsioon
   notification_mailer:
     digest:
       action: Vaata kõiki teateid
       body: Siin on kiire ülevaade sellest, mis sõnumeid Te ei näinud pärast Teie viimast külastust %{since}
-      mention: "%{name} mainis sind postituses:"
+      mention: "%{name} mainis Teid postituses:"
       new_followers_summary:
         one: Ja veel, Te saite ühe uue jälgija kui Te olite eemal! Jee!
         other: Ja veel, Te saite %{count} uut jälgijat kui Te olite eemal! Hämmastav!
@@ -756,6 +897,10 @@ et:
       body: "%{name} upitas Teie staatust:"
       subject: "%{name} upitas su staatust"
       title: Uus upitus
+  notifications:
+    email_events: E-posti teadete sündmused
+    email_events_hint: 'Valige sündmused, millest soovite teavitusi:'
+    other_settings: Muud teadete sätted
   number:
     human:
       decimal_units:
@@ -779,6 +924,7 @@ et:
       duration_too_long: kestab liiga kaua
       duration_too_short: on liiga vara
       expired: See küsitlus on juba lõppenud
+      invalid_choice: Valitud küsitluse valikut pole olemas
       over_character_limit: igaüks ei saa olla rohkem kui %{max} tähemärki
       too_few_options: peab olema rohkem kui üks vastus
       too_many_options: ei saa sisaldada rohkem kui %{max} vastust
@@ -789,6 +935,8 @@ et:
   relationships:
     activity: Konto tegevus
     dormant: Seisev
+    followers: Jälgijad
+    following: Jälgib
     last_active: Viimati aktiivne
     most_recent: Viimased
     moved: Kolinud
@@ -845,7 +993,7 @@ et:
       weibo: Weibo
     current_session: Praegune seanss
     description: "%{browser} platvormil %{platform}"
-    explanation: Need on praegused veebilehitsejad, mis on sisse logitud sinu Mastodoni kontosse.
+    explanation: Need on praegused veebilehitsejad, mis on sisse logitud Teie Mastodoni kontosse.
     ip: IP
     platforms:
       adobe_air: Adobe Air
@@ -866,6 +1014,7 @@ et:
   settings:
     account: Konto
     account_settings: Kontosätted
+    aliases: Konto teised nimed
     appearance: Välimus
     authorized_apps: Lubatud rakendused
     back: Tagasi Mastodoni
@@ -883,6 +1032,8 @@ et:
     profile: Profiil
     relationships: Jälgitud ja jälgijad
     two_factor_authentication: Kahesammuline autentimine
+  spam_check:
+    spam_detected: See on automatiseeritud teavitus. Rämpspost on tuvastatud.
   statuses:
     attached:
       description: 'Manused: %{attached}'
@@ -906,6 +1057,9 @@ et:
       private: Privaatset tuututust ei saa kinnitada
       reblog: Upitust ei saa kinnitada
     poll:
+      total_people:
+        one: "%{count} inimene"
+        other: "%{count} inimest"
       total_votes:
         one: "%{count} hääl"
         other: "%{count} häält"
@@ -924,6 +1078,8 @@ et:
     pinned: Kinnitatud tuut
     reblogged: upitatud
     sensitive_content: Tundlik sisu
+  tags:
+    does_not_match_previous_name: ei ühti eelmise nimega
   terms:
     title: "%{instance} Kasutustingimused ja Privaatsuspoliitika"
   themes:
@@ -960,7 +1116,9 @@ et:
         disable: Kuniks Teie konto on lukus, ei saa Te teha sellega ühtegi tegevust kuni see on lukust lahti tehtud.
         silence: Kuniks Teie konto on limiteeritud, ainult need inimesed, kes Teid juba jälgivad, näevad Teie tuututusi sellel serveril ning Teid jäetakse välja avalikest nimekirjadest. Sellest hoolimata võivad inimesed Teid siiski jälgida.
         suspend: Teie konto on peatatud ning kõik Teie tuututused ja üleslaetud meediafailid on jäädavalt kustutatud sellelt serverilt ning serveritelt, kus Teil oli jälgijad.
+      get_in_touch: Te saate sellele e-kirjale vastata, et võtta ühendust %{instance}-i personaliga.
       review_server_policies: Vaadake üle serveri eeskirju
+      statuses: 'Täpsemalt:'
       subject:
         disable: Teie konto %{acct} on lukustatud
         none: Hoiatus kasutajale %{acct}
@@ -977,7 +1135,7 @@ et:
       explanation: Siin on mõned nõuanded, mis aitavad sul alustada
       final_action: Alusa postitamist
       final_step: 'Alusta postitamist! Isegi ilma jälgijateta näevad teised Teie avalikke postitusi, näiteks kohalikul ajajoonel ning siltidest. Te võite ennast tutvustada kasutades silti #introductions.'
-      full_handle: Sinu täisnimi
+      full_handle: Teie täisnimi
       full_handle_hint: See on mida oma sõpradega jagada, et nad saaksid Teile sõnumeid saata ning Teid jälgida teiselt serverilt.
       review_preferences_action: Muuda eelistusi
       review_preferences_step: Kindlasti seadistage oma sätted Teie maitse järgi, näiteks e-kirju, mida soovite saada, või millist privaatsustaset Te soovite vaikimisi. Kui Teil pole merehaigust, võite Te näiteks lubada GIFide automaatse mängimise.
diff --git a/config/locales/eu.yml b/config/locales/eu.yml
index 1f2ac6644e35899b3575377cac5efc94e65fd2d2..bfa91beb89f364fc79ce6ccc996a7229cf5ca55e 100644
--- a/config/locales/eu.yml
+++ b/config/locales/eu.yml
@@ -11,6 +11,7 @@ eu:
     apps: Aplikazio mugikorrak
     apps_platforms: Erabili Mastodon, iOS, Android eta beste plataformetatik
     browse_directory: Arakatu profilen direktorio bat eta iragazi interesen arabera
+    browse_local_posts: Ikusi zerbitzari honetako mezu publikoen zuzeneko jario bat
     browse_public_posts: Arakatu Mastodoneko mezu publikoen zuzeneko jario bat
     contact: Kontaktua
     contact_missing: Ezarri gabe
@@ -77,6 +78,7 @@ eu:
     roles:
       admin: Administratzailea
       bot: Bot-a
+      group: Taldea
       moderator: Moderatzailea
     unavailable: Profila ez dago eskuragarri
     unfollow: Utzi jarraitzeari
@@ -117,9 +119,7 @@ eu:
       email_status: Posta elektronikoaren egoera
       enable: Gaitu
       enabled: Gaituta
-      feed_url: Jarioaren URL-a
       followers: Jarraitzaileak
-      followers_url: Jarraitzaileen URL-a
       follows: Jarraitzen du
       header: Goiburua
       inbox_url: Sarrera ontziaren URL-a
@@ -147,10 +147,8 @@ eu:
       no_account_selected: Ez da konturik aldatu ez delako bata bera hautatu
       no_limits_imposed: Ez da mugarik ezarri
       not_subscribed: Harpidetu gabe
-      outbox_url: Irteera ontziaren URL-a
       pending: Berrikusketa egiteke
       perform_full_suspension: Kanporatu
-      profile_url: Profilaren URL-a
       promote: Sustatu
       protocol: Protokoloa
       public: Publikoa
@@ -173,8 +171,8 @@ eu:
         moderator: Moderatzailea
         staff: Langilea
         user: Erabiltzailea
-      salmon_url: Salmon URL-a
       search: Bilatu
+      search_same_ip: IP bera duten beste erabiltzaileak
       shared_inbox_url: Partekatutako sarrera ontziaren URL-a
       show:
         created_reports: Sortutako txostenak
@@ -201,10 +199,12 @@ eu:
         confirm_user: "%{name}(e)k %{target}(r)en e-mail helbidea berretsi du"
         create_account_warning: "%{name}-k abisua bidali dio %{target}-ri"
         create_custom_emoji: "%{name}(e)k emoji berria kargatu du %{target}"
+        create_domain_allow: "%{name}(e)k %{target} domeinua zerrenda zurian zartu du"
         create_domain_block: "%{name}(e)k %{target} domeinua blokeatu du"
         create_email_domain_block: "%{name}(e)k %{target} e-mail helbideen domeinua zerrenda beltzean sartu du"
         demote_user: "%{name}(e)k %{target} mailaz jaitsi du"
         destroy_custom_emoji: "%{name} erabiltzaileak %{target} emojia suntsitu du"
+        destroy_domain_allow: "%{name}(e)k %{target} domeinua zerrenda zuritik kendu du"
         destroy_domain_block: "%{name}(e)k %{target} domeinua desblokeatu du"
         destroy_email_domain_block: "%{name}(e)k %{target} e-mail helbideen domeinua zerrenda zurian sartu du"
         destroy_status: "%{name}(e)k %{target}(e)n egoera kendu du"
@@ -268,7 +268,7 @@ eu:
       feature_invites: Gonbidapen estekak
       feature_profile_directory: Profil-direktorioa
       feature_registrations: Izen emateak
-      feature_relay: Federazio haria
+      feature_relay: Federazio errelea
       feature_spam_check: Anti-spam
       feature_timeline_preview: Denbora-lerroaren aurrebista
       features: Ezaugarriak
@@ -339,6 +339,7 @@ eu:
       delete: Ezabatu
       destroyed_msg: Ongi ezabatu da e-mail domeinua zerrenda beltzetik
       domain: Domeinua
+      empty: Ez dago e-mail domeinurik zerrenda beltzean.
       new:
         create: Gehitu domeinua
         title: Sarrera berria e-mail zerrenda beltzean
@@ -375,7 +376,7 @@ eu:
     pending_accounts:
       title: Zain dauden kontuak (%{count})
     relays:
-      add_new: Gehitu hari berria
+      add_new: Gehitu hari errelea
       delete: Ezabatu
       description_html: "<strong>Federazio errele</strong> bat zerbitzari tartekari bat da, bertara harpidetutako eta bertan argitaratzen duten zerbitzarien artean toot publiko kopuru handiak banatzen ditu. <strong>Zerbitzari txiki eta ertainei Fedibertsoko edukia aurkitzen laguntzen die</strong>, bestela erabiltzaile lokalek eskuz jarraitu beharko lituzkete urruneko zerbitzarietako erabiltzaileak."
       disable: Desgaitu
@@ -387,6 +388,7 @@ eu:
       pending: Erreleak onartzearen zain
       save_and_enable: Gorde eta gaitu
       setup: Ezarri errele konexio bat
+      signatures_not_enabled: Erreleek ez dute ongi funtzionatuko modu segurua edo zerrenda zuria gaituta badago
       status: Mezuak
       title: Erreleak
     report_notes:
@@ -394,12 +396,17 @@ eu:
       destroyed_msg: Salaketa oharra ongi ezabatu da!
     reports:
       account:
-        note: oharra
-        report: salaketa
+        notes:
+          one: Ohar %{count}
+          other: "%{count} ohar"
+        reports:
+          one: Txosten %{count}
+          other: "%{count} txosten"
       action_taken_by: Neurrien hartzailea
       are_you_sure: Ziur zaude?
       assign_to_self: Esleitu niri
       assigned: Esleitutako moderatzailea
+      by_target_domain: Jakinarazitako kontuaren domeinua
       comment:
         none: Bat ere ez
       created_at: Salatua
@@ -435,6 +442,9 @@ eu:
       custom_css:
         desc_html: Aldatu itxura orri bakoitzean kargatutako CSS bidez
         title: CSS pertsonala
+      default_noindex:
+        desc_html: Ezarpen hau berez aldatu ez duten erabiltzaile guztiei eragiten die
+        title: Utzi erabiltzaileak bilatzailearen indexaziotik kanpo lehenetsita
       domain_blocks:
         all: Guztiei
         disabled: Inori ez
@@ -442,6 +452,8 @@ eu:
         users: Saioa hasita duten erabiltzaile lokalei
       domain_blocks_rationale:
         title: Erakutsi arrazoia
+      enable_bootstrap_timeline_accounts:
+        title: Gaitu lehenetsitako jarraipena erabiltzaile berrientzat
       hero:
         desc_html: Azaleko orrian bistaratua. Gutxienez 600x100px aholkatzen da. Ezartzen ez bada, zerbitzariaren irudia hartuko du
         title: Azaleko irudia
@@ -502,6 +514,9 @@ eu:
         desc_html: Bistaratu denbora-lerro publikoa hasiera orrian
         title: Denbora-lerroaren aurrebista
       title: Gunearen ezarpenak
+      trendable_by_default:
+        desc_html: Aurretik debekatu ez diren traola guztiei eragiten dio
+        title: Baimendu traolak joera bihurtzea aurretik errebisatu gabe
       trends:
         desc_html: Erakutsi publikoki orain joeran dauden aurretik errebisatutako traolak
         title: Traolak joeran
@@ -522,6 +537,7 @@ eu:
     tags:
       accounts_today: Erabilera bakanak gaur
       accounts_week: Erabilera bakanak aste honetan
+      breakdown: Gaurko erabilera iturriaren arabera
       context: Testuingurua
       directory: Direktorioan
       in_directory: "%{count} direktorioan"
@@ -552,6 +568,7 @@ eu:
       body_remote: "%{domain} domeinuko norbaitek %{target} salatu du"
       subject: Salaketa berria %{instance} instantzian (#%{id})
     new_trending_tag:
+      body: "#%{name} traola joeran dago gaur, baina ez da oraindik errebisatu. Ez da publikoki agertuko baimentzen ez baduzu, edo gorde inprimakia dagoen moduan eta ez duzu berriro honi buruz entzungo."
       subject: Traola berria errebisatzeko %{instance} instantzian (#%{name})
   aliases:
     add_new: Sortu ezizena
@@ -565,7 +582,12 @@ eu:
     animations_and_accessibility: Animazioak eta irisgarritasuna
     confirmation_dialogs: Berrespen dialogoak
     discovery: Aurkitzea
+    localization:
+      body: Mastodon boluntarioek itzultzen dute.
+      guide_link: https://crowdin.com/project/mastodon
+      guide_link_text: Edonork lagundu dezake.
     sensitive_content: Eduki hunkigarria
+    toot_layout: Toot disposizioa
   application_mailer:
     notification_preferences: Aldatu e-mail hobespenak
     salutation: "%{name},"
@@ -638,7 +660,7 @@ eu:
     prompt: Berretsi pasahitza jarraitzeko
   datetime:
     distance_in_words:
-      about_x_hours: "%{count}o"
+      about_x_hours: "%{count}h"
       about_x_months: "%{count} hilabete"
       about_x_years: "%{count} urte"
       almost_x_years: "%{count} urte"
@@ -660,6 +682,10 @@ eu:
       before: 'Jarraitu aurretik, irakurri adi ohar hauek:'
       caches: Beste zerbitzariek cachean duten edukia mantentzea gerta daiteke
       data_removal: Zure mezuak eta beste datuak behin betiko ezabatuko dira
+      email_change_html: <a href="%{path}">Zure e-mail helbidea aldatu dezakezu</a> kontua ezabatu gabe
+      email_contact_html: Oraindik heltzen ez bada, e-mail bai bidali dezakezu <a href="mailto:%{email}">%{email}</a> helbidera laguntza eskatzeko
+      email_reconfirmation_html: Ez baduzu baieztamen e-maila jasotzen, <a href="%{path}">berriro eskatu</a> dezakezu
+      irreversible: Ezin izango duzu kontua berreskuratu edo berraktibatu
       more_details_html: Xehetasun gehiagorako, ikusi <a href="%{terms_path}">pribatutasun politika</a>.
       username_available: Zure erabiltzaile-izena berriro eskuragarri egongo da
       username_unavailable: Zure erabiltzaile-izena ez da eskuragarri egongo
@@ -682,7 +708,7 @@ eu:
     '500':
       content: Sentitzen dugu, zerbait okerra gertatu da gure aldean.
       title: Orri hau ez da zuzena
-    '503': The page could not be served due to a temporary server failure.
+    '503': Orria ezin izan da zerbitzatu zerbitzariaren behin behineko arazo bat dela eta.
     noscript_html: Mastodon web aplikazioa erabiltzeko, gaitu JavaScript. Bestela, probatu Mastodon plataformarako <a href="%{apps_path}">aplikazio natibo</a>ren bat.
   existing_username_validator:
     not_found: ezin izan da izen hori duen kide lokalik aurkitu
@@ -698,7 +724,6 @@ eu:
     blocks: Zuk blokeatutakoak
     csv: CSV
     domain_blocks: Domeinuen blokeoak
-    follows: Zuk jarraitutakoak
     lists: Zerrendak
     mutes: Zuk mututukoak
     storage: Multimedia biltegiratzea
@@ -706,6 +731,7 @@ eu:
     add_new: Gehitu berria
     errors:
       limit: Gehienezko traola kopurua nabarmendu duzu jada
+    hint_html: "<strong>Zer dira nabarmendutako traolak?</strong> Zure profilean toki nabarmendu batean agertzen dira eta jendeari traola hau daukaten mezu publikoak arakatzea ahalbidetzen diote. Sormen lana edo epe luzerako proiektuak jarraitzeko primerakoak dira."
   filters:
     contexts:
       home: Hasierako denbora-lerroa
@@ -719,6 +745,7 @@ eu:
       invalid_irreversible: Behin betiko iragazketa hasiera edo jakinarazpenen testuinguruan besterik ez dabil
     index:
       delete: Ezabatu
+      empty: Ez duzu iragazkirik.
       title: Iragazkiak
     new:
       title: Gehitu iragazki berria
@@ -731,6 +758,7 @@ eu:
     all: Denak
     changes_saved_msg: Aldaketak ongi gorde dira!
     copy: Kopiatu
+    no_batch_actions_available: Ez dago ekintza masiborik orri honetan eskuragarri
     order_by: Ordenatze-irizpidea
     save_changes: Gorde aldaketak
     validation_errors:
@@ -825,6 +853,7 @@ eu:
       backreference_required: Kontu berria honi erreferentzia egiteko konfiguratu behar da
       before: 'Jarraitu aurretik, irakurri adi ohar hauek:'
       cooldown: Migratu eta gero egonaldi tarte bat egongo da eta bitartean ezin izango duzu berriro migratu
+      disabled_account: Zure uneko kontua ezin izango da gero erabili. Hala ere, datua exporatu ahal izango dituzu, eta berriro aktibatu.
       followers: Ekintza honek jarraitzaile guztiak eramango ditu uneko kontutik kontu berrira
       only_redirect_html: Bestela, <a href="%{path}">zure profilean birbideratze soil bat jarri</a> dezakezu.
       other_data: Ez da beste daturik migratuko automatikoki
@@ -865,6 +894,10 @@ eu:
       body: "%{name}(e)k bultzada eman dio zure mezuari:"
       subject: "%{name}(e)k bultzada eman dio zure mezuari"
       title: Bultzada berria
+  notifications:
+    email_events: Gertaerak helbide elektronikoko jakinarazpenentzat
+    email_events_hint: 'Hautatu jaso nahi dituzun gertaeren jakinarazpenak:'
+    other_settings: Bezte jakinarazpen konfigurazioak
   number:
     human:
       decimal_units:
@@ -898,6 +931,8 @@ eu:
   relationships:
     activity: Kontuaren aktibitatea
     dormant: Ez aktiboa
+    followers: Jarraitzaileak
+    following: Jarraitzen
     last_active: Azkenekoz aktiboa
     most_recent: Azkenak
     moved: Lekuz aldatua
@@ -991,6 +1026,8 @@ eu:
     profile: Profila
     relationships: Jarraitutakoak eta jarraitzaileak
     two_factor_authentication: Bi faktoreetako autentifikazioa
+  spam_check:
+    spam_detected: Hau salaketa automatiko bat da. Spam-a antzeman da.
   statuses:
     attached:
       description: 'Erantsita: %{attached}'
@@ -1154,6 +1191,7 @@ eu:
         disable: Zure kontua izoztuta dagoen bitartean, zure kontua bere horretan dirau, baina ezin duzu ekintzarik burutu desblokeatzen den arte.
         silence: Zure kontua murriztua dagoen bitartean, jada zu jarraitzen zaituztenak besterik ez dituzte zure Toot-ak ikusiko zerbitzari honetan, eta agian zerrenda publikoetatik kenduko zaizu. Hala ere besteek oraindik zu jarraitu zaitzakete.
         suspend: Zure kontua kanporatua izan da, zure toot guztiak eta multimedia fitxategiak behin betiko ezabatu dira zerbitzari honetatik, eta zure jarraitzaileen zerbitzarietatik.
+      get_in_touch: "%{instance} instantziako jendearekin harremanetan jartzeko e-mail honi erantzun ahal diozu."
       review_server_policies: Berrikusi zerbitzariko politikak
       statuses: 'Zehazki, honentzat:'
       subject:
diff --git a/config/locales/fa.yml b/config/locales/fa.yml
index ebac705d804820c33b9f4e8312b92673d3d6458e..81c163f7f020c3dfc416e3c45318b70ca2dae438 100644
--- a/config/locales/fa.yml
+++ b/config/locales/fa.yml
@@ -2,45 +2,48 @@
 fa:
   about:
     about_hashtag_html: این‌ها نوشته‌های عمومی هستند که برچسب (هشتگ) <strong>#%{hashtag}</strong> را دارند. اگر شما روی هر سروری حساب داشته باشید می‌توانید به این نوشته‌ها واکنش نشان دهید.
-    about_mastodon_html: 'شبکهٔ اجتماعی آینده: بدون تبلیغات، بدون شنود از طرف شرکت‌ها، طراحی اخلاق‌مدار، و معماری غیرمتمرکز! با ماستدون صاحب داده‌های خودتان باشید!'
+    about_mastodon_html: 'شبکهٔ اجتماعی آینده: بدون تبلیغات، بدون شنود از طرف شرکت‌ها، طراحی اخلاق‌مدار، و معماری غیرمتمرکز! با ماستودون صاحب داده‌های خودتان باشید!'
     about_this: درباره
-    active_count_after: فعال
+    active_count_after: فعّال
     active_footnote: کاربران فعال در ماه گذشته
     administered_by: 'با مدیریت:'
     api: رابط برنامه‌نویسی کاربردی
-    apps: اپ‌های موبایل
+    apps: کاره‌های همراه
     apps_platforms: ماستدون را در iOS، اندروید، و سایر سیستم‌ها داشته باشید
     browse_directory: کاربران این سرور را بر اساس علاقه‌مندی‌هایشان پیدا کنید
+    browse_local_posts: فهرست لحظه‌ای نوشته‌های عمومی در ماستدون را ببینید
     browse_public_posts: فهرست لحظه‌ای نوشته‌های عمومی در ماستدون را ببینید
     contact: تماس
-    contact_missing: تعیین نشده
+    contact_missing: تنظیم نشده
     contact_unavailable: موجود نیست
     discover_users: یافتن کاربران
     documentation: مستندات
-    federation_hint_html: با داشتن حساب روی %{instance} می‌توانید کاربران همهٔ سرورهای دیگر ماستدون (و سایر شبکه‌های سازگار با آن) را پی بگیرید.
-    get_apps: یک اپ موبایل را امتحان کنید
-    hosted_on: ماستدون، میزبانی‌شده روی %{domain}
+    federation_hint_html: با حسابی روی %{instance} می‌توانید افراد روی هر کارساز ماستودون و بیش از آن را پی بگیرید.
+    get_apps: یک کاارهٔ همراه را بیازمایید
+    hosted_on: ماستودون، میزبانی‌شده روی %{domain}
     instance_actor_flash: |
       این حساب یک بازیگر مجازی برای نمایندگی از این سرور است و متعلق به هیچ کاربری نیست.
       این حساب برای ارتباط میان‌سروری به کار می‌رود و نباید مسدود شود، مگر این که شما بخواهید کل سرور را مسدود کنید، که در آن صورت باید از راه مسدودسازی دامین پیش بروید.
     learn_more: بیشتر بدانید
-    privacy_policy: سیاست رازداری
+    privacy_policy: سیاست محرمانگی
     see_whats_happening: ببینید چه خبر است
-    server_stats: 'آمار سرور:'
+    server_stats: 'آمار کارساز:'
     source_code: کدهای منبع
     status_count_after:
       one: چیز نوشته‌اند
       other: چیز نوشته‌اند
     status_count_before: که در کنار هم
-    tagline: با دوستان خود در ارتباط باشید و دوستان تازه پیدا کنید
-    terms: شرایط کاربری
+    tagline: پی‌گیری و یافتن دوستان جدید
+    terms: شرایط خدمت
     unavailable_content: محتوای ناموجود
     unavailable_content_description:
-      domain: سرور
-      reason: 'دلیل:'
-      rejecting_media: تصاویر فرستاده شده از سمت این سرور پردازش نخواهد شد و هیچ تصویر کوچکی از آن‌ها در این‌جا نمایش نخواهد یافت، و آن‌ها را باید مستقیماً در آن سرور ببینید.
-      silenced: هیچ کدام از نوشته‌ها از طرف این سرور این‌جا نمایش نخواهند یافت مگر در فهرست پیگیری‌ها شما، اگر نویسنده‌اش را پی بگیرید.
-      suspended: شما نمی‌توانید هیچ کدام از کاربرهای این سرور را پی بگیرید، و هیچ داده‌ای از طرف این سرور پردازش یا ذخیره یا مبادله نخواهد شد.
+      domain: کارساز
+      reason: دلیل
+      rejecting_media: 'پرونده‌های رسانه از این کارسازها پردازش یا ذخیره نخواهند شد و هیچ بندانگشتی‌ای نمایش نخواهد یافت. نیازمند کلیک دستی برای رسیدن به پروندهٔ اصلی:'
+      silenced: |-
+        هیچ کدام از نوشته‌ها از طرف این سرور این‌جا نمایش نخواهند یافت مگر در فهرست پیگیری‌ها شما، اگر نویسنده‌اش را پی بگیرید.
+        فرسته‌ها از این کارسازها در گفت‌وگوها و خط زمانی عمومی نهفته خواهند بود و تا وقتی پی‌گیرشان نشوید، هیچ آگاهی‌ای از برهم‌کنش‌های کاربرانشان تولید نخواهد شد:
+      suspended: 'هیچ داده‌ای از این کارسازها پردازش، ذخیره یا مبادله نخواهد شد که هرگونه برهم‌کنش یا ارتباط با کاربران این کارسازها را غیرممکن خواهد کرد:'
     unavailable_content_html: ماستدون در حالت کلی اجازه می‌دهد که شما همهٔ مطالب و کاربران در سرورهای دیگر را نیز ببینید و با آن‌ها برهم‌کنش داشته باشید. فهرست زیر ولی استثناهای این ارتباط است که به طور خاص روی این سرور اعمال شده‌اند.
     user_count_after:
       one: کاربر
@@ -77,6 +80,7 @@ fa:
     roles:
       admin: مدیر
       bot: ربات
+      group: گروه
       moderator: ناظم
     unavailable: نمایهٔ ناموجود
     unfollow: پایان پیگیری
@@ -96,40 +100,38 @@ fa:
       avatar: تصویر نمایه
       by_domain: دامین
       change_email:
-        changed_msg: نشانی ایمیل این حساب با موفقیت تغییر کرد!
-        current_email: ایمیل کنونی
-        label: تغییر نشانی ایمیل
-        new_email: ایمیل تازه
-        submit: تغییر ایمیل
-        title: تغییر ایمیل برای %{username}
+        changed_msg: رایانامهٔ حساب با موفقیت تغییر کرد!
+        current_email: رایانامهٔ کنونی
+        label: تغییر رایانامه
+        new_email: رایانامهٔ جدید
+        submit: تغییر رایانامه
+        title: تغییر رایانامه برای %{username}
       confirm: تأیید
       confirmed: تأیید شد
       confirming: تأیید
-      deleted: پاک‌شده
+      deleted: حذف شده
       demote: تنزل‌دادن
-      disable: غیرفعال
-      disable_two_factor_authentication: غیرفعال‌سازی ورود دومرحله‌ای
-      disabled: غیرفعال
-      display_name: نمایش به نام
-      domain: دامین
+      disable: از کار انداختن
+      disable_two_factor_authentication: از کار انداختن 2FA
+      disabled: از کار افتاده
+      display_name: نام نمایشی
+      domain: دامنه
       edit: ویرایش
-      email: ایمیل
-      email_status: وضعیت ایمیل
-      enable: فعال
-      enabled: فعال
-      feed_url: نشانی فید
+      email: رایانامه
+      email_status: وضعیت رایانامه
+      enable: به کار انداختن
+      enabled: به کار افتاده
       followers: پیگیران
-      followers_url: نشانی پیگیران
       follows: پی می‌گیرد
-      header: زمینه
+      header: سرآیند
       inbox_url: نشانی صندوق ورودی
       invited_by: دعوت‌شده از طرف
       ip: IP
-      joined: عضویت از
+      joined: پیوسته در
       location:
         all: همه
-        local: محلی
-        remote: غیرمستقیم
+        local: محلّی
+        remote: دوردست
         title: مکان
       login_status: وضعیت ورود
       media_attachments: ضمیمه‌های تصویری
@@ -147,10 +149,8 @@ fa:
       no_account_selected: هیچ حسابی تغییر نکرد زیرا حسابی انتخاب نشده بود
       no_limits_imposed: بدون محدودیت
       not_subscribed: عضو نیست
-      outbox_url: نشانی صندوق خروجی
       pending: در انتظار بررسی
       perform_full_suspension: تعلیق
-      profile_url: نشانی نمایه
       promote: ترفیع‌دادن
       protocol: پروتکل
       public: عمومی
@@ -173,8 +173,8 @@ fa:
         moderator: ناظم
         staff: کارمند
         user: کاربر
-      salmon_url: نشانی Salmon
       search: جستجو
+      search_same_ip: دیگر کاربران با همان IP
       shared_inbox_url: نشانی صندوق ورودی مشترک
       show:
         created_reports: گزارش‌های ثبت کرده
@@ -201,10 +201,12 @@ fa:
         confirm_user: "%{name} نشانی ایمیل کاربر %{target} را تأیید کرد"
         create_account_warning: "%{name} هشداری برای %{target} فرستاد"
         create_custom_emoji: "%{name} شکلک تازهٔ %{target} را بارگذاشت"
+        create_domain_allow: "%{name} دامنهٔ %{target} را مجاز کرد"
         create_domain_block: "%{name} دامین %{target} را مسدود کرد"
         create_email_domain_block: "%{name} دامین ایمیل %{target} را مسدود کرد"
         demote_user: "%{name} مقام کاربر %{target} را تنزل داد"
         destroy_custom_emoji: "%{name} شکلک %{target} را حذف کرد"
+        destroy_domain_allow: "%{name} دامنهٔ %{target} را فهرست مجاز برداشت"
         destroy_domain_block: "%{name} دامین %{target} را باز کرد"
         destroy_email_domain_block: "%{name} دامین ایمیل %{target} را باز کرد"
         destroy_status: "%{name} نوشته‌ای از %{target} را پاک کرد"
@@ -339,6 +341,7 @@ fa:
       delete: پاک‌کردن
       destroyed_msg: مسدودسازی دامین ایمیل با موفقیت پاک شد
       domain: دامین
+      empty: هیچ دامنه ایمیلی در حال حاضر در لیست‌سیاه قرار نگرفته است.
       new:
         create: ساختن مسدودسازی
         title: مسدودسازی دامین ایمیل تازه
@@ -395,12 +398,17 @@ fa:
       destroyed_msg: یادداشت گزارش با موفقیت حذف شد!
     reports:
       account:
-        note: یادداشت
-        report: گزارش
+        notes:
+          one: "%{count} یادداشت"
+          other: "%{count} یادداشت"
+        reports:
+          one: "%{count} گزارش"
+          other: "%{count} گزارش"
       action_taken_by: انجام‌دهنده
       are_you_sure: آیا مطمئن هستید؟
       assign_to_self: به عهدهٔ من بگذار
       assigned: مدیر عهده‌دار
+      by_target_domain: دامنهٔ حساب گزارش‌شده
       comment:
         none: خالی
       created_at: گزارش‌شده
@@ -446,6 +454,8 @@ fa:
         users: برای کاربران محلی واردشده
       domain_blocks_rationale:
         title: دیدن دلیل
+      enable_bootstrap_timeline_accounts:
+        title: به کار انداختن پیگیری‌های پیش‌گزیده برای کاربران تازه
       hero:
         desc_html: در صفحهٔ آغازین نمایش می‌یابد. دست‌کم ۶۰۰×۱۰۰ پیکسل توصیه می‌شود. اگر تعیین نشود، با تصویر بندانگشتی سرور جایگزین خواهد شد
         title: تصویر سربرگ
@@ -574,7 +584,12 @@ fa:
     animations_and_accessibility: پویانمایی‌های و دسترسی‌پذیری
     confirmation_dialogs: پیغام‌های تأیید
     discovery: کاوش
+    localization:
+      body: ماستودون توسط داوطلبان ترجمه شده است.
+      guide_link: https://crowdin.com/project/mastodon
+      guide_link_text: همه می‌توانند کمک کنند.
     sensitive_content: محتوای حساس
+    toot_layout: آرایش بوق
   application_mailer:
     notification_preferences: تغییر ترجیحات ایمیل
     salutation: "%{name}،"
@@ -711,7 +726,6 @@ fa:
     blocks: حساب‌های مسدودشده
     csv: CSV
     domain_blocks: دامین‌های مسدودشده
-    follows: حساب‌های پی‌گرفته
     lists: فهرست‌ها
     mutes: حساب‌های بی‌صداشده
     storage: تصویرهای ذخیره‌شده
@@ -733,6 +747,7 @@ fa:
       invalid_irreversible: فیلترهای برگشت‌ناپذیر تنها در زمینهٔ پیگیری‌ها یا اعلان‌ها کار می‌کنند
     index:
       delete: پاک‌کردن
+      empty: شما هیچ فیلتری ندارید.
       title: فیلترها
     new:
       title: افزودن فیلتر تازه
@@ -881,6 +896,10 @@ fa:
       body: "%{name} نوشتهٔ شما را بازبوقید:"
       subject: "%{name} نوشتهٔ شما را بازبوقید"
       title: بازبوق تازه
+  notifications:
+    email_events: رویدادها برای آگاهی‌های رایانامه‌ای
+    email_events_hint: 'گزینش رویدادهایی که می‌خواهید برایشان آگاهی بگیرید:'
+    other_settings: تنظیمات دیگر آگاهی‌ها
   number:
     human:
       decimal_units:
@@ -904,6 +923,7 @@ fa:
       duration_too_long: در آیندهٔ خیلی دور است
       duration_too_short: در آیندهٔ خیلی نزدیک است
       expired: این نظرسنجی به پایان رسیده است
+      invalid_choice: گزینه رای دادن وجود ندارد
       over_character_limit: هر کدام نمی‌تواند از %{max} نویسه طولانی‌تر باشد
       too_few_options: حتماً باید بیش از یک گزینه داشته باشد
       too_many_options: نمی‌تواند بیشتر از %{max} گزینه داشته باشد
@@ -914,6 +934,8 @@ fa:
   relationships:
     activity: فعالیت حساب
     dormant: غیرفعال
+    followers: پی‌گیران
+    following: پی‌گیری‌شدگان
     last_active: آخرین فعالیت
     most_recent: تازه‌ترین
     moved: منتقل‌شده
@@ -997,7 +1019,7 @@ fa:
     development: فرابری
     edit_profile: ویرایش نمایه
     export: برون‌سپاری داده‌ها
-    featured_tags: برچسب‌های منتخب
+    featured_tags: برچسب‌های برگزیده
     identity_proofs: مدرک شناسه‌ها
     import: درون‌ریزی
     import_and_export: درون‌ریزی و برون‌بری
diff --git a/config/locales/fi.yml b/config/locales/fi.yml
index 500c2408f29a2df2c9ac34b4c0ec502cc80b5186..063e3bb91dbea4927e047aaed0f3c08b3005bb65 100644
--- a/config/locales/fi.yml
+++ b/config/locales/fi.yml
@@ -5,11 +5,15 @@ fi:
     about_mastodon_html: Mastodon on sosiaalinen verkosto. Se on toteutettu avoimilla verkkoprotokollilla ja vapailla, avoimen lähdekoodin ohjelmistoilla, ja se toimii hajautetusti samaan tapaan kuin sähköposti.
     about_this: Tietoja tästä palvelimesta
     administered_by: 'Ylläpitäjä:'
+    api: API
     apps: Mobiili sovellukset
+    apps_platforms: Käytä Mastodonia iOS:llä, Androidilla tai muilla alustoilla
     contact: Ota yhteyttä
     contact_missing: Ei asetettu
     contact_unavailable: Ei saatavilla
+    discover_users: Löydä käyttäjiä
     documentation: Dokumentaatio
+    get_apps: Kokeile mobiilisovellusta
     hosted_on: Mastodon palvelimella %{domain}
     learn_more: Lisätietoja
     privacy_policy: Tietosuojaseloste
@@ -19,6 +23,9 @@ fi:
       other: tilanne
     status_count_before: He ovat luoneet
     terms: Käyttöehdot
+    unavailable_content_description:
+      domain: Palvelin
+      reason: Syy
     user_count_after:
       one: käyttäjä
       other: käyttäjät
@@ -34,18 +41,26 @@ fi:
     joined: Liittynyt %{date}
     last_active: viimeksi aktiivinen
     link_verified_on: Tämän linkin omistus on tarkastettu %{date}
+    media: Media
     moved_html: "%{name} on muuttanut osoitteeseen %{new_profile_link}:"
     network_hidden: Nämä tiedot eivät ole käytettävissä
+    never_active: Ei koskaan
     nothing_here: Täällä ei ole mitään!
     people_followed_by: Henkilöt, joita %{name} seuraa
     people_who_follow: Käyttäjän %{name} seuraajat
     pin_errors:
       following: Sinun täytyy seurata henkilöä jota haluat tukea
+    posts:
+      one: Tuuttaus
+      other: Tuuttaukset
+    posts_tab_heading: Tuuttaukset
     posts_with_replies: Tuuttaukset ja vastaukset
     reserved_username: Käyttäjänimi on varattu
     roles:
       admin: Ylläpitäjä
+      bot: Botti
       moderator: Moderaattori
+    unavailable: Profiili ei saatavilla
     unfollow: Lopeta seuraaminen
   admin:
     account_moderation_notes:
@@ -54,6 +69,8 @@ fi:
       delete: Poista
       destroyed_msg: Moderointimerkinnän poisto onnistui!
     accounts:
+      approve: Hyväksy
+      approve_all: Hyväksy kaikki
       are_you_sure: Oletko varma?
       avatar: Profiilikuva
       by_domain: Verkkotunnus
@@ -67,6 +84,7 @@ fi:
       confirm: Vahvista
       confirmed: Vahvistettu
       confirming: Vahvistetaan
+      deleted: Poistettu
       demote: Alenna
       disable: Poista käytöstä
       disable_two_factor_authentication: Poista 2FA käytöstä
@@ -78,11 +96,11 @@ fi:
       email_status: Sähköpostin tila
       enable: Ota käyttöön
       enabled: Käytössä
-      feed_url: Syötteen osoite
       followers: Seuraajat
-      followers_url: Seuraajien osoite
       follows: Seuraa
       inbox_url: Saapuvan postilaatikon osoite
+      ip: IP
+      joined: Liittynyt
       location:
         all: Kaikki
         local: Paikalliset
@@ -92,7 +110,9 @@ fi:
       media_attachments: Medialiitteet
       memorialize: Muuta muistosivuksi
       moderation:
+        active: Aktiivinen
         all: Kaikki
+        pending: Odottavat
         silenced: Hiljennetty
         suspended: Jäähyllä
         title: Moderointi
@@ -100,14 +120,14 @@ fi:
       most_recent_activity: Viimeisin toiminta
       most_recent_ip: Viimeisin IP
       not_subscribed: Ei tilaaja
-      outbox_url: Lähtevän postilaatikon osoite
       perform_full_suspension: Siirrä kokonaan jäähylle
-      profile_url: Profiilin osoite
       promote: Ylennä
       protocol: Protokolla
       public: Julkinen
       push_subscription_expires: PuSH-tilaus vanhenee
       redownload: Päivitä profiilikuva
+      reject: Hylkää
+      reject_all: Hylkää kaikki
       remove_avatar: Poista profiilikuva
       resend_confirmation:
         already_confirmed: Tämä käyttäjä on jo vahvistettu
@@ -122,21 +142,24 @@ fi:
         moderator: Moderaattori
         staff: Henkilöstö
         user: Käyttäjä
-      salmon_url: Salmon-URL
       search: Hae
       shared_inbox_url: Jaetun saapuvan postilaatikon osoite
       show:
         created_reports: Tämän tilin luomat raportit
         targeted_reports: Tästä tilistä tehdyt raportit
       silence: Hiljennä
+      silenced: Mykistetty
       statuses: Tilat
       subscribe: Tilaa
+      suspended: Jäähyllä
       title: Tilit
       unconfirmed_email: Sähköpostia ei vahvistettu
       undo_silenced: Peru hiljennys
       undo_suspension: Peru jäähy
       unsubscribe: Lopeta tilaus
       username: Käyttäjänimi
+      warn: Varoita
+      web: Verkko
     action_logs:
       actions:
         assigned_to_self_report: "%{name} otti raportin %{target} tehtäväkseen"
@@ -191,6 +214,8 @@ fi:
       update_failed_msg: Emojin päivitys epäonnistui
       updated_msg: Emojin päivitys onnistui!
       upload: Lähetä
+    dashboard:
+      authorized_fetch_mode: Suojattu tila
     domain_blocks:
       add_new: Lisää uusi
       created_msg: Verkkotunnuksen estoa käsitellään
@@ -240,9 +265,6 @@ fi:
       created_msg: Muistiinpano onnistuneesti lisätty raporttiin!
       destroyed_msg: Muistiinpano onnistuneesti poistettu raportista!
     reports:
-      account:
-        note: muistiinpano
-        report: raportti
       action_taken_by: Toimenpiteen tekijä
       are_you_sure: Oletko varma?
       assign_to_self: Ota tehtäväksi
@@ -277,6 +299,8 @@ fi:
       contact_information:
         email: Työsähköposti
         username: Yhteyshenkilön käyttäjänimi
+      enable_bootstrap_timeline_accounts:
+        title: Uudet käyttäjät seuraavat oletuksena tilejä
       hero:
         desc_html: Näytetään etusivulla. Suosituskoko vähintään 600x100 pikseliä. Jos kuvaa ei aseteta, käytetään instanssin pikkukuvaa
         title: Sankarin kuva
@@ -416,7 +440,6 @@ fi:
       request: Pyydä arkisto
       size: Koko
     blocks: Estot
-    follows: Seurattavat
     mutes: Mykistetyt
     storage: Media-arkisto
   generic:
diff --git a/config/locales/fr.yml b/config/locales/fr.yml
index f44a0893f38854eba22d53372586cfbe75325b1a..9c8f56889eb551d6aecd153f70525653c16a49a1 100644
--- a/config/locales/fr.yml
+++ b/config/locales/fr.yml
@@ -1,25 +1,26 @@
 ---
 fr:
   about:
-    about_hashtag_html: Figurent ci-dessous les pouets tagués avec <strong>#%{hashtag}</strong>. Vous pouvez interagir avec eux si vous avez un compte n’importe où dans le Fediverse.
-    about_mastodon_html: Mastodon est un réseau social utilisant des protocoles Web ouverts et des logiciels libres. Tout comme le courriel, il est décentralisé.
+    about_hashtag_html: Voici les pouets tagués avec <strong>#%{hashtag}</strong>. Vous pouvez interagir avec eux si vous avez un compte n’importe où dans le Fédiverse.
+    about_mastodon_html: 'Le réseau social de l''avenir : Pas d''annonces, pas de surveillance institutionnelle, conception éthique et décentralisation ! Possédez vos données avec Mastodon !'
     about_this: À propos
-    active_count_after: actif·ve·s
+    active_count_after: actif·ve
     active_footnote: Utilisateur·rice·s actif·ve·s mensuels (MAU)
     administered_by: 'Administrée par :'
     api: API
     apps: Applications mobiles
     apps_platforms: Utilisez Mastodon depuis iOS, Android et d’autres plates-formes
-    browse_directory: Parcourir l’annuaire des profils et filtrer par centres d’intérêt
+    browse_directory: Parcourir l’annuaire des profils et filtrer par centres d’intérêts
+    browse_local_posts: Parcourir un flux en direct de messages publics depuis ce serveur
     browse_public_posts: Parcourir un flux en direct de messages publics sur Mastodon
     contact: Contact
-    contact_missing: Manquant
-    contact_unavailable: Non disponible
+    contact_missing: Non défini
+    contact_unavailable: N/D
     discover_users: Découvrez des utilisateur·rice·s
     documentation: Documentation
     federation_hint_html: Avec un compte sur %{instance}, vous pourrez suivre les gens sur n’importe quel serveur Mastodon et au-delà.
     get_apps: Essayez une application mobile
-    hosted_on: Serveur Mastodon hébergée par %{domain}
+    hosted_on: Serveur Mastodon hébergé par %{domain}
     instance_actor_flash: |
       Ce compte est un acteur virtuel utilisé pour représenter le serveur lui-même et non un utilisateur individuel.
       Il est utilisé à des fins de fédération et ne doit pas être bloqué à moins que vous ne vouliez bloquer l’instance entière, dans ce cas vous devriez utiliser un bloqueur de domaine.
@@ -29,18 +30,18 @@ fr:
     server_stats: 'Statistiques du serveur :'
     source_code: Code source
     status_count_after:
-      one: Statut
-      other: Statuts
+      one: statut
+      other: statuts
     status_count_before: Ayant publié
-    tagline: Suivez vos ami·e·s et découvrez en de nouveaux·elles
+    tagline: Suivez vos ami·e·s et découvrez-en de nouveaux·elles
     terms: Conditions d’utilisation
     unavailable_content: Contenu non disponible
     unavailable_content_description:
       domain: Serveur
-      reason: 'Motif :'
-      rejecting_media: Les fichiers média de ce serveur ne seront pas traités et aucune miniature ne sera affichée, nécessitant un clic manuel vers l'autre serveur.
-      silenced: Les messages de ce serveur ne s'afficheront nulle part sauf votre flux personnel si vous suivez l'auteur.
-      suspended: Vous ne pourrez suivre personne de ce serveur, aucune donnée ne sera traitée ou stockée et aucune donnée ne sera échangée.
+      reason: Motif
+      rejecting_media: 'Les fichiers média de ces serveurs ne seront pas traités ou stockés et aucune miniature ne sera affichée, nécessitant un clic vers le fichier d’origine :'
+      silenced: 'Les messages de ces serveurs seront cachés des flux publics et conversations, et les interactions de leurs utilisateur·ice·s ne donneront lieu à aucune notification, à moins que vous ne les suiviez :'
+      suspended: 'Aucune donnée venant de ces serveurs ne sera traitée, stockée ou échangée, rendant toute interaction ou communication avec les utilisateurs de ces serveurs impossible :'
     unavailable_content_html: Mastodon vous permet généralement de visualiser le contenu et d'interagir avec les utilisateurs de n'importe quel autre serveur dans le fédiverse. Voici les exceptions qui ont été faites sur ce serveur en particulier.
     user_count_after:
       one: utilisateur
@@ -49,7 +50,7 @@ fr:
     what_is_mastodon: Qu’est-ce que Mastodon ?
   accounts:
     choices_html: "%{name} recommande :"
-    endorsements_hint: Vous pouvez soutenir les personnes que vous suivez depuis l’interface web, et elles apparaîtront ici.
+    endorsements_hint: Vous pouvez recommander des personnes que vous suivez depuis l’interface web, et elles apparaîtront ici.
     featured_tags_hint: Vous pouvez recommander des hashtags spécifiques qui seront affichés ici.
     follow: Suivre
     followers:
@@ -57,7 +58,7 @@ fr:
       other: Abonné⋅e⋅s
     following: Abonnements
     joined: Inscrit·e en %{date}
-    last_active: actif dernièrement
+    last_active: actif·ve dernièrement
     link_verified_on: La propriété de ce lien a été vérifiée le %{date}
     media: Médias
     moved_html: "%{name} a changé de compte pour %{new_profile_link} :"
@@ -72,11 +73,12 @@ fr:
       one: Pouet
       other: Pouets
     posts_tab_heading: Pouets
-    posts_with_replies: Statuts & réponses
+    posts_with_replies: Pouets & réponses
     reserved_username: Ce nom d’utilisateur⋅ice est réservé
     roles:
       admin: Admin
       bot: Robot
+      group: Groupe
       moderator: Modérateur·trice
     unavailable: Profil non disponible
     unfollow: Ne plus suivre
@@ -114,12 +116,10 @@ fr:
       domain: Domaine
       edit: Éditer
       email: Courriel
-      email_status: État de la messagerie
+      email_status: État du courriel
       enable: Activer
       enabled: Activé
-      feed_url: URL du flux
       followers: Abonné⋅e⋅s
-      followers_url: URL des abonné·e·s
       follows: Abonnements
       header: Entête
       inbox_url: URL d’entrée
@@ -135,7 +135,7 @@ fr:
       media_attachments: Fichiers médias
       memorialize: Convertir en mémorial
       moderation:
-        active: Actif
+        active: Actif·ve·s
         all: Tous
         pending: En cours de traitement
         silenced: Masqués
@@ -147,10 +147,8 @@ fr:
       no_account_selected: Aucun compte n’a été modifié, car aucun n’a été sélectionné
       no_limits_imposed: Aucune limite imposée
       not_subscribed: Non abonné
-      outbox_url: URL de sortie
       pending: En attente d’approbation
       perform_full_suspension: Suspendre
-      profile_url: URL du profil
       promote: Promouvoir
       protocol: Protocole
       public: Publique
@@ -173,8 +171,8 @@ fr:
         moderator: Modérateur
         staff: Équipe
         user: Utilisateur
-      salmon_url: URL Salmon
       search: Rechercher
+      search_same_ip: Autres utilisateur·rice·s avec la même IP
       shared_inbox_url: URL de la boite de réception partagée
       show:
         created_reports: Signalements faits
@@ -186,7 +184,7 @@ fr:
       suspended: Suspendu
       time_in_queue: En file d’attente %{time}
       title: Comptes
-      unconfirmed_email: Courriel non-confirmé
+      unconfirmed_email: Courriel non confirmé
       undo_silenced: Démasquer
       undo_suspension: Annuler la suspension
       unsubscribe: Se désabonner
@@ -199,14 +197,16 @@ fr:
         assigned_to_self_report: "%{name} s’est assigné·e le signalement de %{target}"
         change_email_user: "%{name} a modifié l’adresse de courriel de l’utilisateur·rice %{target}"
         confirm_user: "%{name} adresse courriel confirmée de l’utilisateur·ice %{target}"
-        create_account_warning: "%{name} a envoyé une attention à %{target}"
+        create_account_warning: "%{name} a envoyé un avertissement à %{target}"
         create_custom_emoji: "%{name} a importé de nouveaux émojis %{target}"
+        create_domain_allow: "%{name} a inscrit le domaine %{target} sur liste blanche"
         create_domain_block: "%{name} a bloqué le domaine %{target}"
-        create_email_domain_block: "%{name} a mis le domaine du courriel %{target} sur liste noire"
+        create_email_domain_block: "%{name} a mis le domaine de courriel %{target} sur liste noire"
         demote_user: "%{name} a rétrogradé l’utilisateur·ice %{target}"
         destroy_custom_emoji: "%{name} a détruit l’émoticône %{target}"
+        destroy_domain_allow: "%{name} a supprimé le domaine %{target} de la liste blanche"
         destroy_domain_block: "%{name} a débloqué le domaine %{target}"
-        destroy_email_domain_block: "%{name} a mis le domaine du courriel %{target} sur liste blanche"
+        destroy_email_domain_block: "%{name} a mis le domaine de courriel %{target} sur liste blanche"
         destroy_status: "%{name} a enlevé le statut de %{target}"
         disable_2fa_user: "%{name} a désactivé l’authentification à deux facteurs pour l’utilisateur·ice %{target}"
         disable_custom_emoji: "%{name} a désactivé l’émoji %{target}"
@@ -246,18 +246,18 @@ fr:
       enabled: Activé
       enabled_msg: Émoji activé avec succès
       image_hint: PNG de moins de 50 Ko
-      list: Liste
+      list: Lister
       listed: Listé
       new:
         title: Ajouter un nouvel émoji personnalisé
-      overwrite: Réécrire
+      overwrite: Écraser
       shortcode: Raccourci
       shortcode_hint: Au moins deux caractères, seulement des caractères alphanumériques ou des tirets bas
       title: Émojis personnalisés
       uncategorized: Non catégorisé
-      unlist: Délisté
+      unlist: Délister
       unlisted: Délisté
-      update_failed_msg: N’a pas pu mettre à jour cet émoji
+      update_failed_msg: Cet émoji n'a pas pu être mis à jour
       updated_msg: Émoji mis à jour avec succès !
       upload: Téléverser
     dashboard:
@@ -312,8 +312,8 @@ fr:
       private_comment: Commentaire privé
       private_comment_hint: Commenter sur cette limitation de domaine pour informer les modérateurs internes.
       public_comment: Commentaire public
-      public_comment_hint: Commentaire sur cette limitation de domaine pour le grand public, si la visibilité publique de la liste des limitations de domaine est activée.
-      reject_media: Fichiers média rejetés
+      public_comment_hint: Commentaire sur cette limitation de domaine pour le grand public, si l'affichage publique de la liste des limitations de domaine est activée.
+      reject_media: Rejeter les fichiers média
       reject_media_hint: Supprime localement les fichiers média stockés et refuse d’en télécharger ultérieurement. Ne concerne pas les suspensions
       reject_reports: Rejeter les signalements
       reject_reports_hint: Ignorez tous les signalements provenant de ce domaine. Ne concerne pas les suspensions
@@ -327,8 +327,8 @@ fr:
           one: Un compte affecté dans la base de données
           other: "%{count} comptes affectés dans la base de données"
         retroactive:
-          silence: Annuler le masquage sur tous les comptes existants pour ce domaine
-          suspend: Annuler la suspension sur tous les comptes existants pour ce domaine
+          silence: Annuler le masquage des comptes existants affectés pour ce domaine
+          suspend: Annuler la suspension des comptes existants affectés pour ce domaine
         title: Annuler le blocage de domaine pour %{domain}
         undo: Annuler
       undo: Annuler le bloqueur de domaine
@@ -339,6 +339,7 @@ fr:
       delete: Supprimer
       destroyed_msg: Le blocage de domaine de courriel a été désactivé
       domain: Domaine
+      empty: Aucun domaine de courriel n’est actuellement sur liste noire.
       new:
         create: Créer le blocage
         title: Nouveau blocage de domaine de courriel
@@ -380,10 +381,10 @@ fr:
       description_html: Un <strong>relai de fédération</strong> est un serveur intermédiaire qui échange de grandes quantités de pouets publics entre les serveurs qui publient dessus et ceux qui y sont abonnés. <strong>Il peut aider les petits et moyen serveurs à découvrir du contenu sur le fediverse</strong>, ce qui normalement nécessiterait que les membres locaux suivent des gens inscrits sur des serveurs distants.
       disable: Désactiver
       disabled: Désactivé
-      enable: Activé
+      enable: Activer
       enable_hint: Une fois activé, votre serveur souscrira à tous les pouets publics présents sur ce relais et y enverra ses propres pouets publics.
       enabled: Activé
-      inbox_url: URL de relais
+      inbox_url: URL du relais
       pending: En attente de l’approbation du relai
       save_and_enable: Sauvegarder et activer
       setup: Paramétrer une connexion de relais
@@ -395,12 +396,17 @@ fr:
       destroyed_msg: Note de signalement effacée avec succès !
     reports:
       account:
-        note: note
-        report: signaler
+        notes:
+          one: "%{count} note"
+          other: "%{count} notes"
+        reports:
+          one: "%{count} signalement"
+          other: "%{count} signalements"
       action_taken_by: Intervention de
       are_you_sure: Êtes vous certain⋅e ?
       assign_to_self: Me l’assigner
       assigned: Modérateur assigné
+      by_target_domain: Domaine du compte signalé
       comment:
         none: Aucun
       created_at: Signalé
@@ -425,7 +431,7 @@ fr:
       updated_at: Mis à jour
     settings:
       activity_api_enabled:
-        desc_html: Nombre de statuts affichés localement, d’utilisateur·ice·s actif·ve·s et de nouveaux enregistrements dans les registres hebdomadaires
+        desc_html: Nombre de statuts affichés localement, d’utilisateur·ice·s actif·ve·s et de nouveaux·elles utilisateur·ice·s regroupé·e·s par semaine
         title: Publier des statistiques agrégées sur l’activité des utilisateur·ice·s
       bootstrap_timeline_accounts:
         desc_html: Séparez les noms d’utilisateur·ice par des virgules. Ne fonctionne qu’avec des comptes locaux et non verrouillés. Si laissé vide, tous les administrateur⋅ice⋅s locaux sont sélectionné⋅e⋅s.
@@ -445,7 +451,9 @@ fr:
         title: Afficher les bloqueurs de domaines
         users: Pour les utilisateurs locaux connectés
       domain_blocks_rationale:
-        title: Voir le raisonnement
+        title: Montrer la raison
+      enable_bootstrap_timeline_accounts:
+        title: Activer le suivi par défaut pour les nouveaux·elles utilisateur·ice·s
       hero:
         desc_html: Affichée sur la page d’accueil. Au moins 600x100px recommandé. Lorsqu’elle n’est pas définie, se rabat sur la vignette du serveur
         title: Image d’en-tête
@@ -459,11 +467,11 @@ fr:
         desc_html: Les liens de prévisualisation sur les autres sites web afficheront une vignette même si le média est sensible
         title: Afficher les médias sensibles dans les prévisualisations OpenGraph
       profile_directory:
-        desc_html: Permettre aux utilisateurs d’être découverts
+        desc_html: Permettre aux utilisateur·ice·s d’être découvert·e·s
         title: Activer l’annuaire des profils
       registrations:
         closed_message:
-          desc_html: Affiché sur la page d’accueil lorsque les inscriptions sont fermées<br>Vous pouvez utiliser des balises HTML
+          desc_html: Affiché sur la page d’accueil lorsque les inscriptions sont fermées. Vous pouvez utiliser des balises HTML
           title: Message de fermeture des inscriptions
         deletion:
           desc_html: Permettre à tou·te·s les utilisateur·ice·s de supprimer leur compte
@@ -478,7 +486,7 @@ fr:
           open: N’importe qui peut s’inscrire
         title: Mode d’enregistrement
       show_known_fediverse_at_about_page:
-        desc_html: Lorsque l’option est activée, les pouets provenant de toutes les serveurs connues sont affichés dans la prévisualisation. Sinon, seuls les pouets locaux sont affichés.
+        desc_html: Lorsque l’option est activée, les pouets provenant de toutes les serveurs connus sont affichés dans la prévisualisation. Sinon, seuls les pouets locaux sont affichés
         title: Afficher le fediverse connu dans la prévisualisation du fil
       show_staff_badge:
         desc_html: Montrer un badge de responsable sur une page utilisateur·ice
@@ -493,18 +501,18 @@ fr:
         desc_html: Affichée dans la barre latérale et dans les méta-tags. Décrivez ce qui rend spécifique ce serveur Mastodon en un seul paragraphe. Si laissée vide, la description du serveur sera affiché par défaut.
         title: Description courte du serveur
       site_terms:
-        desc_html: Affichée sur la page des conditions d’utilisation du site<br>Vous pouvez utiliser des balises HTML
+        desc_html: Affichée sur la page des conditions d’utilisation du site. Vous pouvez utiliser des balises HTML
         title: Politique de confidentialité
       site_title: Nom du serveur
       spam_check_enabled:
-        desc_html: Mastodon peut auto-silencer et signaler des comptes qui envoient des messages répétés non sollicités. Il peut y avoir de faux positifs.
+        desc_html: Mastodon peut signaler automatiquement des comptes qui envoient des messages répétés non sollicités. Il peut y avoir de faux positifs.
         title: Automatisation anti-spam
       thumbnail:
         desc_html: Utilisée pour les prévisualisations via OpenGraph et l’API. 1200x630px recommandé
         title: Vignette du serveur
       timeline_preview:
-        desc_html: Afficher le fil public sur la page d’accueil
-        title: Prévisualisation du fil global
+        desc_html: Afficher le fil public sur la page d’accueil et autoriser l'accès anonyme à l'API du fil public
+        title: Autoriser la prévisualisation anonyme du fil global
       title: Paramètres du serveur
       trendable_by_default:
         desc_html: Affecte les hashtags qui n'ont pas été précédemment non autorisés
@@ -524,13 +532,13 @@ fr:
         title: Médias
       no_media: Aucun média
       no_status_selected: Aucun statut n’a été modifié car aucun n’a été sélectionné
-      title: État du compte
+      title: Statuts du compte
       with_media: avec médias
     tags:
       accounts_today: Utilisations uniques aujourd'hui
       accounts_week: Utilisation unique cette semaine
       breakdown: Répartition de l’utilisation actuelle par source
-      context: Contexte 
+      context: Contexte
       directory: Dans le répertoire
       in_directory: "%{count} dans le répertoire"
       last_active: Dernière activité
@@ -543,14 +551,14 @@ fr:
       trending_right_now: Populaire en ce moment
       unique_uses_today: "%{count} posts aujourd'hui"
       unreviewed: Non traité
-      updated_msg: Paramètres Hashtag mis à jour avec succès
+      updated_msg: Paramètres du hashtag mis à jour avec succès
     title: Administration
     warning_presets:
       add_new: Ajouter un nouveau
       delete: Effacer
       edit: Éditer
-      edit_preset: Éditer la présélection d’avertissement
-      title: Gérer les présélections d’avertissement
+      edit_preset: Éditer les avertissements prédéfinis
+      title: Gérer les avertissements prédéfinis
   admin_mailer:
     new_pending_account:
       body: Les détails du nouveau compte se trouvent ci-dessous. Vous pouvez approuver ou rejeter cette demande.
@@ -564,7 +572,7 @@ fr:
       subject: Nouveau hashtag en attente de traitement sur %{instance} (#%{name})
   aliases:
     add_new: Créer un alias
-    created_msg: Un nouvel alias a été créé avec succès. Vous pouvez maintenant lancer le déplacement depuis l'ancien compte.
+    created_msg: Un nouvel alias a été créé avec succès. Vous pouvez maintenant déménager depuis l'ancien compte.
     deleted_msg: Suppression réussie de l'alias. Le déménagement de ce compte vers celui-ci ne sera plus possible.
     hint_html: Si vous voulez déménager d’un autre compte vers celui-ci, vous pouvez créer ici un alias, qui est nécessaire avant de pouvoir migrer les abonné·e·s de l’ancien compte vers celui-ci. Cette action en soi est <strong>inoffensive et réversible</strong>. <strong>La migration du compte est initiée à partir de l’ancien compte</strong>.
     remove: Détacher l'alias
@@ -574,7 +582,12 @@ fr:
     animations_and_accessibility: Animations et accessibilité
     confirmation_dialogs: Dialogues de confirmation
     discovery: Découverte
+    localization:
+      body: Mastodon est traduit par des volontaires.
+      guide_link: https://fr.crowdin.com/project/mastodon
+      guide_link_text: Tout le monde peut y contribuer.
     sensitive_content: Contenu sensible
+    toot_layout: Agencement du pouet
   application_mailer:
     notification_preferences: Modifier les préférences de courriel
     salutation: "%{name},"
@@ -586,8 +599,8 @@ fr:
     created: Application créée avec succès
     destroyed: Application supprimée avec succès
     invalid_url: L’URL fournie est invalide
-    regenerate_token: Regénérer le jeton d’accès
-    token_regenerated: Jeton d’accès regénéré avec succès
+    regenerate_token: Régénérer le jeton d’accès
+    token_regenerated: Jeton d’accès régénéré avec succès
     warning: Soyez prudent⋅e avec ces données. Ne les partagez pas !
     your_token: Votre jeton d’accès
   auth:
@@ -619,12 +632,12 @@ fr:
     security: Sécurité
     set_new_password: Définir le nouveau mot de passe
     setup:
-      email_below_hint_html: Si l’adresse e-mail ci-dessous est incorrecte, vous pouvez la modifier ici et recevoir un nouveau courriel de confirmation.
-      email_settings_hint_html: L’e-mail de confirmation a été envoyé à %{email}. Si cette adresse e-mail n’est pas correcte, vous pouvez la modifier dans les paramètres du compte.
+      email_below_hint_html: Si l’adresse de courriel ci-dessous est incorrecte, vous pouvez la modifier ici et recevoir un nouveau courriel de confirmation.
+      email_settings_hint_html: Le courriel de confirmation a été envoyé à %{email}. Si cette adresse de courriel n’est pas correcte, vous pouvez la modifier dans les paramètres du compte.
       title: Configuration
     status:
-      account_status: Statut du compte
-      confirming: En attente de la confirmation par e-mail à compléter.
+      account_status: État du compte
+      confirming: En attente de la confirmation par courriel à compléter.
       functional: Votre compte est entièrement opérationnel.
       pending: Votre demande est en attente d'examen par notre personnel. Cela peut prendre un certain temps. Vous recevrez un courriel si votre demande est approuvée.
       redirecting_to: Votre compte est inactif car il est actuellement redirigé vers %{acct}.
@@ -661,21 +674,21 @@ fr:
       x_seconds: "%{count} s"
   deletes:
     challenge_not_passed: Les renseignements que vous avez entrés n'étaient pas exacts
-    confirm_password: Entrez votre mot de passe pour vérifier votre identité
+    confirm_password: Entrez votre mot de passe actuel pour vérifier votre identité
     confirm_username: Entrez votre nom d'utilisateur pour confirmer la procédure
-    proceed: Supprimer compte
+    proceed: Supprimer le compte
     success_msg: Votre compte a été supprimé avec succès
     warning:
       before: 'Avant de procéder, veuillez lire attentivement ces notes :'
       caches: Le contenu mis en cache par d'autres serveurs peut persister
       data_removal: Vos messages et autres données seront définitivement supprimés
       email_change_html: Vous pouvez <a href="%{path}">modifier votre adresse courriel</a> sans supprimer votre compte
-      email_contact_html: S'il n'arrive toujours pas, vous pouvez envoyer un courriel à <a href="mailto:%{email}">%{email}</a> pour de l'aide
+      email_contact_html: S'il n'arrive toujours pas, vous pouvez envoyer un courriel à <a href="mailto:%{email}">%{email}</a> pour demander de l'aide
       email_reconfirmation_html: Si vous ne recevez pas le courriel de confirmation, vous pouvez le <a href="%{path}">demander à nouveau</a>
       irreversible: Vous ne pourrez pas restaurer ou réactiver votre compte
       more_details_html: Pour plus de détails, voir la <a href="%{terms_path}">politique de confidentialité</a>.
-      username_available: Votre nom d’utilisateur sera à nouveau disponible
-      username_unavailable: Votre nom d’utilisateur restera indisponible
+      username_available: Votre nom d’utilisateur·ice sera à nouveau disponible
+      username_unavailable: Votre nom d’utilisateur·ice restera indisponible
   directories:
     directory: Annuaire des profils
     explanation: Découvrir des utilisateurs en se basant sur leurs centres d’intérêt
@@ -711,7 +724,6 @@ fr:
     blocks: Vous bloquez
     csv: CSV
     domain_blocks: Bloqueurs de domaine
-    follows: Vous suivez
     lists: Listes
     mutes: Vous masquez
     storage: Médias stockés
@@ -733,6 +745,7 @@ fr:
       invalid_irreversible: Le filtrage irréversible ne fonctionne que pour l’accueil et les notifications
     index:
       delete: Effacer
+      empty: Vous n'avez aucun filtre.
       title: Filtres
     new:
       title: Ajouter un nouveau filtre
@@ -749,12 +762,12 @@ fr:
     order_by: Classer par
     save_changes: Enregistrer les modifications
     validation_errors:
-      one: Quelque chose ne va pas ! Vérifiez l’erreur ci-dessous
-      other: Certaines choses ne vont pas ! Vérifiez les %{count} erreurs ci-dessous
+      one: Quelque chose ne va pas ! Veuillez vérifiez l’erreur ci-dessous
+      other: Certaines choses ne vont pas ! Veuillez vérifiez les %{count} erreurs ci-dessous
   html_validator:
     invalid_markup: 'contient un balisage HTML invalide: %{error}'
   identity_proofs:
-    active: Actif
+    active: Active
     authorize: Oui, autoriser
     authorize_connection_prompt: Autoriser cette connexion chiffrée ?
     errors:
@@ -766,22 +779,22 @@ fr:
     explanation_html: Ici, vous pouvez connecter de manière chiffrée vos autres identités, par exemple un profil Keybase. Cela permet à d’autres personnes de vous envoyer des messages chiffrés et de faire confiance au contenu que vous leur envoyez.
     i_am_html: Je suis %{username} sur %{service}.
     identity: Identité
-    inactive: Inactif
-    publicize_checkbox: 'Et le poueter:'
+    inactive: Inactive
+    publicize_checkbox: 'Et le poueter :'
     publicize_toot: 'C’est prouvé ! Je suis %{username} sur %{service}: %{url}'
-    status: Statut de vérification
+    status: État de la vérification
     view_proof: Voir la preuve
   imports:
     modes:
       merge: Fusionner
       merge_long: Garder les enregistrements existants et ajouter les nouveaux
-      overwrite: Réécrire
+      overwrite: Écraser
       overwrite_long: Remplacer les enregistrements actuels par les nouveaux
     preface: Vous pouvez importer certaines données que vous avez exporté d’un autre serveur, comme une liste des personnes que vous suivez ou bloquez sur votre compte.
     success: Vos données ont été importées avec succès et seront traitées en temps et en heure
     types:
-      blocking: Liste d’utilisateur⋅ice⋅s bloqué⋅e⋅s
-      domain_blocking: Liste des serveurs bloquées
+      blocking: Liste de comptes bloqués
+      domain_blocking: Liste des serveurs bloqués
       following: Liste d’utilisateur⋅ice⋅s suivi⋅e⋅s
       muting: Liste d’utilisateur⋅ice⋅s que vous masquez
     upload: Importer
@@ -797,16 +810,16 @@ fr:
       '604800': 1 semaine
       '86400': 1 jour
     expires_in_prompt: Jamais
-    generate: Générer
+    generate: Générer un lien d'invitation
     invited_by: 'Vous avez été invité·e par :'
     max_uses:
-      one: 1 usage
-      other: "%{count} usages"
+      one: 1 utilisation
+      other: "%{count} utilisations"
     max_uses_prompt: Pas de limite
-    prompt: Générer et partager des liens avec les autres pour donner accès à ce serveur
+    prompt: Générer des liens et les partager avec d'autres personnes pour leur donner accès à ce serveur
     table:
       expires_at: Expire
-      uses: Utilise
+      uses: Utilisations
     title: Inviter des gens
   lists:
     errors:
@@ -816,28 +829,28 @@ fr:
       images_and_video: Impossible de joindre une vidéo à un statut contenant déjà des images
       too_many: Impossible de joindre plus de 4 fichiers
   migrations:
-    acct: profil@domaine du nouveau compte
+    acct: A déménagé vers
     cancel: Annuler la redirection
-    cancel_explanation: Annuler la redirection réactivera votre compte courant, mais ne rapportera pas les abonné·e·s qui ont été déplacé·e·s sur ce compte.
+    cancel_explanation: Annuler la redirection réactivera votre compte actuel, mais ne rapportera pas les abonné·e·s qui ont été déplacé·e·s sur ce compte.
     cancelled_msg: Suppression de la redirection réussie.
     errors:
       already_moved: est le même compte que vous avez déjà déplacé vers
       missing_also_known_as: ne référence pas rétroactivement ce compte
-      move_to_self: ne peut pas être un compte courant
+      move_to_self: ne peut pas être le compte actuel
       not_found: n'a pas été trouvé
-      on_cooldown: Vous êtes en refroidissement
-    followers_count: Abonnés au moment du déplacement
+      on_cooldown: Vous êtes soumis·e à un temps de rechargement
+    followers_count: Abonné·e·s au moment du déménagement
     incoming_migrations: Déplacement d'un compte différent
-    incoming_migrations_html: Pour passer d'un autre compte à celui-ci, vous devez d'abord <a href="%{path}">créer un alias de compte</a>.
-    moved_msg: Votre compte est maintenant redirigé vers %{acct} et vos abonnés sont déplacés.
+    incoming_migrations_html: Pour déménager d'un autre compte à celui-ci, vous devez d'abord <a href="%{path}">créer un alias de compte</a>.
+    moved_msg: Votre compte est maintenant redirigé vers %{acct} et vos abonné·e·s sont en train d'être déplacé·e·s.
     not_redirecting: Votre compte n'est pas redirigé vers un autre compte actuellement.
     on_cooldown: Vous avez récemment migré votre compte. Cette fonction sera à nouveau disponible dans %{count} jours.
     past_migrations: Migrations passées
     proceed_with_move: Migrer les abonné·e·s
     redirecting_to: Votre compte est redirigé vers %{acct}.
-    set_redirect: Définir redirection
+    set_redirect: Définir la redirection
     warning:
-      backreference_required: Le nouveau compte doit d'abord être configuré pour faire référence à celui-ci
+      backreference_required: Le nouveau compte doit d'abord être configuré pour faire référence à celui-ci en définissant un alias
       before: 'Avant de procéder, veuillez lire attentivement ces notes :'
       cooldown: Après le déménagement, il y a une période de gel pendant laquelle vous ne pourrez plus re-déménager
       disabled_account: Votre compte actuel ne sera pas entièrement utilisable par la suite. Cependant, vous aurez accès à l'exportation de données et à la ré-activation.
@@ -850,7 +863,7 @@ fr:
   notification_mailer:
     digest:
       action: Voir toutes les notifications
-      body: Voici un bref résumé des messages que vous auriez raté depuis votre dernière visite le %{since}
+      body: Voici un bref résumé des messages que vous avez raté depuis votre dernière visite le %{since}
       mention: "%{name} vous a mentionné⋅e dans :"
       new_followers_summary:
         one: Vous avez un⋅e nouvel⋅le abonné⋅e ! Youpi !
@@ -861,7 +874,7 @@ fr:
       title: Pendant votre absence…
     favourite:
       body: "%{name} a ajouté votre pouet à ses favoris :"
-      subject: "%{name} a ajouté votre post à ses favoris"
+      subject: "%{name} a ajouté votre pouet à ses favoris"
       title: Nouveau favori
     follow:
       body: "%{name} vous suit !"
@@ -870,7 +883,7 @@ fr:
     follow_request:
       action: Gérer les demandes d’abonnement
       body: "%{name} a demandé à vous suivre"
-      subject: 'Abonné⋅es en attente : %{name}'
+      subject: 'Abonné⋅e·s en attente : %{name}'
       title: Nouvelle demande d’abonnement
     mention:
       action: Répondre
@@ -881,6 +894,10 @@ fr:
       body: "%{name} a partagé votre statut :"
       subject: "%{name} a partagé votre statut"
       title: Nouveau partage
+  notifications:
+    email_events: Événements pour les notifications par courriel
+    email_events_hint: 'Sélectionnez les événements pour lesquels vous souhaitez recevoir des notifications :'
+    other_settings: Autres paramètres de notifications
   number:
     human:
       decimal_units:
@@ -904,9 +921,10 @@ fr:
       duration_too_long: est trop loin dans le futur
       duration_too_short: est trop tôt
       expired: Ce sondage est déjà terminé
+      invalid_choice: L'option de vote choisie n'existe pas
       over_character_limit: ne peuvent être plus long que %{max} caractères chacun
       too_few_options: doit avoir plus qu’une proposition
-      too_many_options: ne peut contenir plus que %{max} propositions
+      too_many_options: ne peut contenir plus de %{max} propositions
   preferences:
     other: Autre
     posting_defaults: Paramètres par défaut des pouets
@@ -914,6 +932,8 @@ fr:
   relationships:
     activity: Activité du compte
     dormant: Dormant
+    followers: Abonné·e·s
+    following: Abonnements
     last_active: Dernière activité
     most_recent: Plus récent
     moved: Déménagé
@@ -923,21 +943,21 @@ fr:
     remove_selected_domains: Supprimer tous les abonné·e·s des domaines sélectionnés
     remove_selected_followers: Supprimer les abonné·e·s sélectionnés
     remove_selected_follows: Cesser de suivre les utilisateur·rice·s sélectionné·e·s
-    status: Statut du compte
+    status: État du compte
   remote_follow:
-    acct: Entrez l’adresse profil@serveur depuis laquelle vous voulez vous abonner
+    acct: Entrez l’adresse profil@serveur depuis laquelle vous voulez effectuer cette action
     missing_resource: L’URL de redirection n’a pas pu être trouvée
     no_account_html: Vous n’avez pas de compte ? Vous pouvez <a href='%{sign_up_path}' target='_blank'>vous inscrire ici</a>
     proceed: Confirmer l’abonnement
     prompt: 'Vous allez suivre :'
-    reason_html: "<strong>Pourquoi cette étape est-elle nécessaire?</strong> <code>%{instance}</code> pourrait ne pas être le serveur où vous vous êtes inscrit, et nous devons donc vous rediriger vers votre serveur de base en premier."
+    reason_html: "<strong>Pourquoi cette étape est-elle nécessaire?</strong> <code>%{instance}</code> pourrait ne pas être le serveur sur lequel vous vous êtes inscrit·e, et nous devons donc vous rediriger vers votre serveur de base en premier."
   remote_interaction:
     favourite:
       proceed: Confirmer l’ajout aux favoris
       prompt: 'Vous souhaitez mettre ce pouet en favori :'
     reblog:
-      proceed: Confirmer le repartage
-      prompt: 'Vous souhaitez repartager ce pouet :'
+      proceed: Confirmer le partage
+      prompt: 'Vous souhaitez partager ce pouet :'
     reply:
       proceed: Confirmer la réponse
       prompt: 'Vous souhaitez répondre à ce pouet :'
@@ -993,7 +1013,7 @@ fr:
     appearance: Apparence
     authorized_apps: Applications autorisées
     back: Retour vers Mastodon
-    delete: Suppression de compte
+    delete: Suppression du compte
     development: Développement
     edit_profile: Modifier le profil
     export: Export de données
@@ -1008,7 +1028,7 @@ fr:
     relationships: Abonnements et abonné·e·s
     two_factor_authentication: Identification à deux facteurs
   spam_check:
-    spam_detected: Ceci est un rapport automatisé. Du spam a été détecté.
+    spam_detected: Ceci est un rapport automatisé. Des pollupostages ont été détectés.
   statuses:
     attached:
       description: 'Attaché : %{attached}'
@@ -1018,14 +1038,14 @@ fr:
       video:
         one: "%{count} vidéo"
         other: "%{count} vidéos"
-    boosted_from_html: Repartagé depuis %{acct_link}
+    boosted_from_html: Partagé depuis %{acct_link}
     content_warning: 'Avertissement sur le contenu : %{warning}'
     disallowed_hashtags:
       one: 'contient un hashtag désactivé : %{tags}'
       other: 'contient les hashtags désactivés : %{tags}'
     language_detection: Détecter automatiquement la langue
     open_in_web: Ouvrir sur le web
-    over_character_limit: limite de caractères dépassée de %{max} caractères
+    over_character_limit: limite de %{max} caractères dépassée
     pin_errors:
       limit: Vous avez déjà épinglé le nombre maximum de pouets
       ownership: Vous ne pouvez pas épingler un statut ne vous appartenant pas
@@ -1033,7 +1053,7 @@ fr:
       reblog: Un partage ne peut pas être épinglé
     poll:
       total_people:
-        one: "%{count} personnes"
+        one: "%{count} personne"
         other: "%{count} personnes"
       total_votes:
         one: "%{count} vote"
@@ -1210,5 +1230,5 @@ fr:
     seamless_external_login: Vous êtes connecté via un service externe, donc les paramètres concernant le mot de passe et le courriel ne sont pas disponibles.
     signed_in_as: 'Connecté·e en tant que :'
   verification:
-    explanation_html: 'Vous pouvez <strong>vérifier vous-même que vous êtes le propriétaire des liens dans les métadonnées de votre profil</strong>. Pour cela, le site Web lié doit contenir un lien vers votre profil Mastodon. Le lien de retour <strong>doit</strong>avoir un attribut <code>rel="me"</code>. Le contenu textuel du lien n’a pas d’importance. En voici un exemple :'
+    explanation_html: 'Vous pouvez <strong>vous vérifier en tant que propriétaire des liens dans les métadonnées de votre profil</strong>. Pour cela, le site web lié doit contenir un lien vers votre profil Mastodon. Le lien de retour <strong>doit</strong> avoir un attribut <code>rel="me"</code> . Le texte du lien n’a pas d’importance. Voici un exemple :'
     verification: Vérification
diff --git a/config/locales/gl.yml b/config/locales/gl.yml
index f325757520fc38133199d5da87b6b33bc3643c91..7e8776a5b0b76d257b537907b3139fe0ce8b54a0 100644
--- a/config/locales/gl.yml
+++ b/config/locales/gl.yml
@@ -1,354 +1,355 @@
 ---
 gl:
   about:
-    about_hashtag_html: Estas son mensaxes públicas etiquetadas con <strong>#%{hashtag}</strong>. Podes interactuar con elas se tes unha conta nalgures do fediverso.
-    about_mastodon_html: Mastodon é unha rede social que se basea en protocolos web abertos e libres, software de código aberto. É descentralizada como o correo electrónico.
+    about_hashtag_html: Estes son toots públicos etiquetados con <strong>#%{hashtag}</strong>. Podes interactuar con eles se tes unha conta nalgures do fediverso.
+    about_mastodon_html: O Mastodon é unha rede social que se basea en protocolos web abertos e libres, software de código aberto. É descentralizada coma o correo electrónico!
     about_this: Acerca de
     active_count_after: activo
-    active_footnote: Usuarias Activas no Mes (UAM)
-    administered_by: 'Administrada por:'
+    active_footnote: Usuarios Activos Mensuais (UAM)
+    administered_by: 'Administrado por:'
     api: API
-    apps: Apps móbiles
-    apps_platforms: Utilice Mastodon desde iOS, Android e outras plataformas
-    browse_directory: Navegue no directorio de perfís e filtre por intereses
-    browse_public_posts: Vexa o fluxo de comentarios públicos en Mastodon
+    apps: Aplicacións móbiles
+    apps_platforms: Emprega o Mastodon dende iOS, Android e outras plataformas
+    browse_directory: Navega polo directorio de perfís e filtra por intereses
+    browse_local_posts: Navega polas publicacións públicas deste servidor en tempo real
+    browse_public_posts: Navega polas publicacións públicas do Mastodon en tempo real
     contact: Contacto
-    contact_missing: Non establecido
-    contact_unavailable: N/A
-    discover_users: Descubra usuarias
+    contact_missing: Non estabelecido
+    contact_unavailable: Non dispoñíbel
+    discover_users: Descobrir usuarios
     documentation: Documentación
-    federation_hint_html: Con unha conta en %{instance} poderá seguir a outras persoas en calquera dos servidores Mastodon e incluso máis.
-    get_apps: Probe cunha app móbil
-    hosted_on: Mastodon aloxado en %{domain}
-    instance_actor_flash: 'Esta conta é un actor virtual utilizado para representar ao servidor e non a unha usuaria individual. Utilízase para propósitos de federación e non debería estar bloqueada a menos que queira bloquear a toda a instancia, en tal caso debería utilizar o bloqueo do dominio.
+    federation_hint_html: Cunha conta en %{instance} poderás seguir ás persoas en calquera servidor do Mastodon e alén.
+    get_apps: Probar unha aplicación móbil
+    hosted_on: O Mastodon está aloxado en %{domain}
+    instance_actor_flash: 'Esta conta é un actor virtual empregado para representar ó servidor e non a un usuario individual. Utilízase para propósitos de federación e non debería estar bloqueada a menos que queiras bloquear a toda a instancia, en tal caso deberías empregar o bloqueo de dominio.
 
 '
-    learn_more: Coñeza máis
-    privacy_policy: Política de intimidade
-    see_whats_happening: Mire o que acontece
-    server_stats: 'Estatísticas:'
+    learn_more: Saber máis
+    privacy_policy: Política de privacidade
+    see_whats_happening: Ver o que está a acontecer
+    server_stats: 'Estatísticas do servidor:'
     source_code: Código fonte
     status_count_after:
       one: estado
       other: estados
-    status_count_before: Que publicaron
-    tagline: Siga as amizades e faga outras novas
+    status_count_before: Que escribiron
+    tagline: Segue ás túas amizades e coñece novas
     terms: Termos do servizo
-    unavailable_content: Contido non dispoñible
+    unavailable_content: Contido non dispoñíbel
     unavailable_content_description:
       domain: Servidor
-      reason: 'Razón:'
-      rejecting_media: Os ficheiros de medios de este servidor non se procesarán e non se mostrarán miniaturas, precisando solicitarse manualmente ao outro servidor.
-      silenced: As publicacións desde este servidor non se mostrarán en ningún lugar excepto no Inicio se segues ao autor.
-      suspended: Non poderás seguir a ninguén desde este servidor, e non se procesarán nin se gardarán datos que procedan del, e non se intercambiarán datos.
-    unavailable_content_html: Normalmente Mastodon permíteche ver contidos de outros servidores do fediverso e interactuar coas súas usuarias. Estas son as excepcións que se estableceron en este servidor particular.
+      reason: Razón
+      rejecting_media: 'Os ficheiros multimedia deste servidor non serán procesados e non se amosarán miniaturas, o que require un clic manual no ficheiro orixinal:'
+      silenced: 'As publicacións deste servidor non se amosarán en ningún lugar agás que as sigas:'
+      suspended: 'Non se procesarán, almacenarán nin intercambiarán datos destes servidores, o que fai imposíbel calquera interacción ou comunicación cos usuarios dende estes servidores:'
+    unavailable_content_html: O Mastodon de xeito xeral permíteche ver contidos doutros servidores do fediverso e interactuar cos seus usuarios. Estas son as excepcións que se estabeleceron neste servidor en particular.
     user_count_after:
-      one: usuaria
-      other: usuarias
+      one: usuario
+      other: usuarios
     user_count_before: Fogar de
-    what_is_mastodon: Qué é Mastodon?
+    what_is_mastodon: Que é o Mastodon?
   accounts:
-    choices_html: 'Eleccións de %{name}:'
-    endorsements_hint: Desde a interface web pode recomendar xente que segue, e aparecerán aquí.
-    featured_tags_hint: Pode destacar determinadas etiquetas que se mostrarán aquí.
+    choices_html: 'Suxestións de %{name}:'
+    endorsements_hint: Podes suxerir a persoas que segues dende a interface web, e amosaranse aquí.
+    featured_tags_hint: Podes destacar determinados cancelos (hashtags) que se amosarán aquí.
     follow: Seguir
     followers:
-      one: Seguidora
-      other: Seguidoras
+      one: Seguidor
+      other: Seguidores
     following: Seguindo
-    joined: Uneuse %{date}
+    joined: Uniuse en %{date}
     last_active: última actividade
-    link_verified_on: A propiedade de esta ligazón foi comprobada en %{date}
-    media: Medios
+    link_verified_on: A propiedade desta ligazón foi verificada en %{date}
+    media: Multimedia
     moved_html: "%{name} mudouse a %{new_profile_link}:"
-    network_hidden: A información non está dispoñible
+    network_hidden: Esta información non está dispoñíbel
     never_active: Nunca
-    nothing_here: Nada por aquí!
-    people_followed_by: Personas que segue %{name}
-    people_who_follow: Personas que seguen a %{name}
+    nothing_here: Non hai nada aquí!
+    people_followed_by: Persoas que segue %{name}
+    people_who_follow: Persoas que seguen a %{name}
     pin_errors:
-      following: Debe seguir a persoa que intenta recomendar
+      following: Tes que seguir á persoa que queres engadir
     posts:
       one: Toot
       other: Toots
     posts_tab_heading: Toots
     posts_with_replies: Toots e respostas
-    reserved_username: O nome de usuaria está reservado
+    reserved_username: O nome de usuario está reservado
     roles:
-      admin: Admin
+      admin: Administrador
       bot: Bot
-      moderator: Mod
-    unavailable: Perfil non dispoñible
+      group: Grupo
+      moderator: Moderador
+    unavailable: Perfil non dispoñíbel
     unfollow: Deixar de seguir
   admin:
     account_actions:
-      action: Realizar acción
-      title: Realizar acción de moderación sobre %{acct}
+      action: Executar acción
+      title: Executar acción de moderación en %{acct}
     account_moderation_notes:
       create: Deixar nota
-      created_msg: Nota a moderación creada con éxito!
+      created_msg: Nota de moderación creada de xeito correcto!
       delete: Eliminar
-      destroyed_msg: Nota a moderación destruída con éxito!
+      destroyed_msg: Nota de moderación eliminada de xeito correcto!
     accounts:
       approve: Aprobar
-      approve_all: Aprobar todo
-      are_you_sure: Está segura?
-      avatar: Avatar
+      approve_all: Aprobar todos
+      are_you_sure: Estás seguro?
+      avatar: Imaxe de perfil
       by_domain: Dominio
       change_email:
-        changed_msg: Cambiouse correctamente o correo-e da conta!
-        current_email: Correo actual
-        label: Cambiar correo
-        new_email: Novo correo
-        submit: Cambiar correo
-        title: Cambiar o correo de %{username}
+        changed_msg: Email da conta mudado de xeito correcto!
+        current_email: Email actual
+        label: Mudar email
+        new_email: Novo email
+        submit: Mudar email
+        title: Mudar email de %{username}
       confirm: Confirmar
       confirmed: Confirmado
-      confirming: Confirmar
+      confirming: Estase a confirmar
       deleted: Eliminado
-      demote: Degradar
-      disable: Deshabilitar
-      disable_two_factor_authentication: Deshabilitar 2FA
-      disabled: Deshabilitado
-      display_name: Mostrar nome
+      demote: Rebaixar
+      disable: Desactivar
+      disable_two_factor_authentication: Desactivar dobre factor
+      disabled: Desactivado
+      display_name: Nome a amosar
       domain: Dominio
       edit: Editar
-      email: Correo-e
-      email_status: Estado do correo
-      enable: Habilitar
-      enabled: Habilitado
-      feed_url: URL fonte
-      followers: Seguidoras
-      followers_url: URL das seguidoras
-      follows: Segue
+      email: Email
+      email_status: Estado do email
+      enable: Activar
+      enabled: Activado
+      followers: Seguidores
+      follows: Seguindo
       header: Cabeceira
-      inbox_url: URL da Caixa de entrada
-      invited_by: Convidada por
+      inbox_url: URL da caixa de entrada
+      invited_by: Convidado por
       ip: IP
-      joined: Uniuse
+      joined: Unido
       location:
         all: Todo
         local: Local
         remote: Remoto
-        title: Lugar
-      login_status: Estado da conexión
-      media_attachments: Anexos de medios
-      memorialize: Convertir a lembranza
+        title: Localización
+      login_status: Estado da sesión
+      media_attachments: Multimedia adxunta
+      memorialize: Converter en lembranza
       moderation:
-        active: Activa
+        active: Activo
         all: Todo
         pending: Pendente
-        silenced: Acalado
-        suspended: Suspendido
+        silenced: Silenciados
+        suspended: Suspendidos
         title: Moderación
       moderation_notes: Notas de moderación
       most_recent_activity: Actividade máis recente
       most_recent_ip: IP máis recente
-      no_account_selected: Non cambiou nada xa que non tiña nada seleccionado
+      no_account_selected: Ningunha conta mudou porque ningunha foi seleccionada
       no_limits_imposed: Sen límites impostos
-      not_subscribed: Non suscrita
-      outbox_url: URL caixa de saída
-      pending: Pendente revisión
+      not_subscribed: Non subscrito
+      pending: Revisión pendente
       perform_full_suspension: Suspender
-      profile_url: URL do perfil
       promote: Promocionar
       protocol: Protocolo
       public: Público
-      push_subscription_expires: A suscrición PuSH caduca
+      push_subscription_expires: A subscrición PuSH expira
       redownload: Actualizar perfil
       reject: Rexeitar
       reject_all: Rexeitar todo
-      remove_avatar: Eliminar avatar
+      remove_avatar: Eliminar imaxe de perfil
       remove_header: Eliminar cabeceira
       resend_confirmation:
-        already_confirmed: Este usuario ya está confirmado
-        send: Reenviar el correo electrónico de confirmación
-        success: "¡Correo electrónico de confirmación enviado con éxito!"
-      reset: Restablecer
-      reset_password: Restablecer contrasinal
-      resubscribe: Voltar a suscribir
+        already_confirmed: Este usuario xa está confirmado
+        send: Reenviar o email de confirmación
+        success: Email de confirmación enviado de xeito correcto!
+      reset: Restabelecer
+      reset_password: Restabelecer contrasinal
+      resubscribe: Resubscribir
       role: Permisos
       roles:
         admin: Administrador
         moderator: Moderador
-        staff: Membresía
-        user: Usuaria
-      salmon_url: URL Salmon
-      search: Busca
+        staff: Persoal (staff)
+        user: Usuario
+      search: Procurar
+      search_same_ip: Outros usuarios co mesmo IP
       shared_inbox_url: URL da caixa de entrada compartida
       show:
-        created_reports: Informes creados
-        targeted_reports: Informes feitos por outros
-      silence: Acalar
-      silenced: Acalada
+        created_reports: Denuncias feitas
+        targeted_reports: Denuncias feitas por outros
+      silence: Silenciar
+      silenced: Silenciado
       statuses: Estados
-      subscribe: Subscribir
-      suspended: Suspendida
-      time_in_queue: Agardando en cola %{time}
+      subscribe: Subscribirse
+      suspended: Suspendido
+      time_in_queue: Agardando na cola %{time}
       title: Contas
-      unconfirmed_email: Correo non confirmado
-      undo_silenced: Desfacer acalar
+      unconfirmed_email: Email non confirmado
+      undo_silenced: Desfacer silencio
       undo_suspension: Desfacer suspensión
-      unsubscribe: Non subscribir
-      username: Nome de usuaria
+      unsubscribe: Desbotar a subscrición
+      username: Nome de usuario
       warn: Aviso
       web: Web
-      whitelisted: Lista branca
+      whitelisted: Listaxe branca
     action_logs:
       actions:
-        assigned_to_self_report: "%{name} asignou o informe %{target} a ela misma"
-        change_email_user: "%{name} cambiou o enderezo de correo-e da usuaria %{target}"
-        confirm_user: "%{name} comfirmou o enderezo de correo da usuaria %{target}"
-        create_account_warning: "%{name} enviou un aviso sobre %{target}"
-        create_custom_emoji: "%{name} subeu un novo emoji %{target}"
+        assigned_to_self_report: "%{name} atribuíu a denuncia %{target} a el mesmo"
+        change_email_user: "%{name} mudou o enderezo de email do usuario %{target}"
+        confirm_user: "%{name} confirmou o enderezo de email do usuario %{target}"
+        create_account_warning: "%{name} enviou un aviso a %{target}"
+        create_custom_emoji: "%{name} subiu unha nova emoticona %{target}"
+        create_domain_allow: "%{name} engadiu á listaxe branca o dominio %{target}"
         create_domain_block: "%{name} bloqueou o dominio %{target}"
-        create_email_domain_block: "%{name} engadeu a lista negra o dominio de correo %{target}"
-        demote_user: "%{name} degradou a usuaria %{target}"
-        destroy_custom_emoji: "%{name} destruíu emoji %{target}"
+        create_email_domain_block: "%{name} engadiu á listaxe negra o dominio de email %{target}"
+        demote_user: "%{name} rebaixou ó usuario %{target}"
+        destroy_custom_emoji: "%{name} eliminou a emoticona %{target}"
+        destroy_domain_allow: "%{name} eliminou o dominio %{target} da listaxe branca"
         destroy_domain_block: "%{name} desbloqueou o dominio %{target}"
-        destroy_email_domain_block: "%{name} meteu na lista blanca de correo o dominio %{target}"
+        destroy_email_domain_block: "%{name} engadiu á lista branca o dominio de email %{target}"
         destroy_status: "%{name} eliminou o estado de %{target}"
-        disable_2fa_user: "%{name} deshabilitou o requerimento 2FA para usuaria %{target}"
-        disable_custom_emoji: "%{name} deshabilitou emoji %{target}"
-        disable_user: "%{name} deshabilitou a conexión para a usuaria  %{target}"
-        enable_custom_emoji: "%{name} habilitou emoji %{target}"
-        enable_user: "%{name} habilitou a conexión para a usuaria %{target}"
-        memorialize_account: "%{name} converteu a conta de  %{target} nunha páxina para a lembranza"
-        promote_user: "%{name} promoveu a usuaria %{target}"
-        remove_avatar_user: "%{name} eliminou o avatar de %{target}"
-        reopen_report: "%{name} voltou abrir informe  %{target}"
-        reset_password_user: "%{name} restableceu o contrasinal da usuaria %{target}"
-        resolve_report: "%{name} solucionou o informe %{target}"
-        silence_account: "%{name} acalou a conta de %{target}"
+        disable_2fa_user: "%{name} desactivou o requirimento de dobre factor para o usuario %{target}"
+        disable_custom_emoji: "%{name} desactivou a emoticona %{target}"
+        disable_user: "%{name} desactivou o acceso á conta para o usuario %{target}"
+        enable_custom_emoji: "%{name} activou a emoticona %{target}"
+        enable_user: "%{name} activou o acceso á conta para o usuario %{target}"
+        memorialize_account: "%{name} converteu a conta de %{target} nunha páxina para a lembranza"
+        promote_user: "%{name} promocionou o usuario %{target}"
+        remove_avatar_user: "%{name} eliminou a imaxe de perfil de %{target}"
+        reopen_report: "%{name} reabriu a denuncia %{target}"
+        reset_password_user: "%{name} restabeleceu o contrasinal do usuario %{target}"
+        resolve_report: "%{name} resolveu a denuncia %{target}"
+        silence_account: "%{name} silenciou a conta de %{target}"
         suspend_account: "%{name} suspendeu a conta de %{target}"
-        unassigned_report: "%{name} non asignou informe %{target}"
-        unsilence_account: "%{name} deulle voz a conta de %{target}"
-        unsuspend_account: "%{name} activou a conta de %{target}"
-        update_custom_emoji: "%{name} actualizou emoji %{target}"
-        update_status: "%{name} actualizou un estado de %{target}"
+        unassigned_report: "%{name} deixou de atribuír a denuncia %{target}"
+        unsilence_account: "%{name} deixou de silenciar a conta de %{target}"
+        unsuspend_account: "%{name} desactivou a suspensión da conta de %{target}"
+        update_custom_emoji: "%{name} actualizou a emoticona %{target}"
+        update_status: "%{name} actualizou o estado de %{target}"
       deleted_status: "(estado eliminado)"
       title: Rexistro de auditoría
     custom_emojis:
-      assign_category: Asignar categoría
+      assign_category: Atribuír categoría
       by_domain: Dominio
-      copied_msg: Creouse con éxito unha copia local dos emoji
+      copied_msg: Creouse unha copia local das emoticonas de xeito correcto
       copy: Copiar
       copy_failed_msg: Non se puido facer copia local de ese emoji
       create_new_category: Crear nova categoría
       created_msg: Creou o emoji con satisfactoriamente!
       delete: Eliminar
-      destroyed_msg: Emojo destruído satisfactoriamente!
-      disable: Deshabilitar
+      destroyed_msg: Emoticona eliminada de xeito correcto!
+      disable: Desactivar
       disabled: Desactivado
-      disabled_msg: Deshabilitouse correctamente ese emoji
-      emoji: Emoji
-      enable: Habilitar
+      disabled_msg: Desactivouse a emoticona de xeito correcto
+      emoji: Emoticona
+      enable: Activar
       enabled: Activado
-      enabled_msg: Habilitouse correctamente ese emoji
-      image_hint: PNG ate 50KB
-      list: A lista
+      enabled_msg: Activouse a emoticona de xeito correcto
+      image_hint: PNG de até 50KB
+      list: Listar
       listed: Listado
       new:
-        title: Engadir novo emoji persoalizado
+        title: Engadir nova emoticona personalizado
       overwrite: Sobrescribir
-      shortcode: Código corto
-      shortcode_hint: Cando menos 2 caracteres, só caracteres alfanuméricos e subliñados
-      title: Emojis persoalizados
-      uncategorized: Sen categorizar
-      unlist: Sacar da lista
-      unlisted: Non listado
-      update_failed_msg: Non se puido actualizar ese emoji
-      updated_msg: Actualizouse correctamente o emoji!
+      shortcode: Código curto
+      shortcode_hint: Polo menos 2 caracteres, só caracteres alfanuméricos e guións baixos
+      title: Emoticonas personalizadas
+      uncategorized: Sen categoría
+      unlist: Non listar
+      unlisted: Sen listar
+      update_failed_msg: Non foi posíbel actualizar a emoticona
+      updated_msg: Actualizouse a emoticona de xeito correcto!
       upload: Subir
     dashboard:
-      authorized_fetch_mode: Modo de obtención autorizado
-      backlog: traballos respaldados
+      authorized_fetch_mode: Modo seguro
+      backlog: traballos en espera
       config: Axustes
-      feature_deletions: Borrado de contas
+      feature_deletions: Eliminacións da conta
       feature_invites: Ligazóns de convite
       feature_profile_directory: Directorio do perfil
       feature_registrations: Rexistros
-      feature_relay: Repetidores de federación
+      feature_relay: Repetidor da federación
       feature_spam_check: Anti-spam
-      feature_timeline_preview: Vista previa da TL
-      features: Características
-      hidden_service: Federación con servizos ocultos
-      open_reports: informes abertos
-      pending_tags: etiquetas agardando revisión
-      pending_users: usuarias agardando revisión
-      recent_users: Usuarias recentes
-      search: Busca de texto completo
-      single_user_mode: Modo de usuario individual
+      feature_timeline_preview: Vista previa da cronoloxía
+      features: Funcións
+      hidden_service: Federación con servizos agochados
+      open_reports: denuncias abertas
+      pending_tags: cancelos agardando revisión
+      pending_users: usuarios agardando revisión
+      recent_users: Usuarios recentes
+      search: Procura por texto completo
+      single_user_mode: Modo de usuario único
       software: Software
-      space: Uso de espazo
+      space: Uso de almacenamento
       title: Taboleiro
-      total_users: total de usuarias
+      total_users: usuarios en total
       trends: Tendencias
-      week_interactions: interaccións en esta semana
-      week_users_active: activas estas semana
-      week_users_new: usuarias esta semana
-      whitelist_mode: Modo de lista branca
+      week_interactions: interaccións desta semana
+      week_users_active: activos desta semana
+      week_users_new: usuarios desta semana
+      whitelist_mode: Modo de listaxe branca
     domain_allows:
-      add_new: Dominio en lista branca
+      add_new: Engadir dominio á listaxe branca
       created_msg: Engadeu o dominio a lista branca
       destroyed_msg: Quitou o dominio da lista branca
-      undo: Eliminar da lista branca
+      undo: Eliminar da listaxe branca
     domain_blocks:
       add_new: Engadir novo bloqueo de dominio
       created_msg: Estase a procesar o bloqueo do dominio
-      destroyed_msg: Desfixose a acción de bloqueo de dominio
+      destroyed_msg: Desfíxose o bloqueo de dominio
       domain: Dominio
       edit: Editar bloqueo de dominio
-      existing_domain_block_html: Xa estableceu límites estrictos para %{name}, precisa <a href="%{unblock_url}">desbloqueala</a> primeiro.
+      existing_domain_block_html: Xa impuxeches límites máis estrictos a %{name}, precisas <a href="%{unblock_url}">desbloquealo</a> primeiro.
       new:
-        create: Crear bloque
+        create: Crear bloqueo
         hint: O bloqueo do dominio non previrá a creación de entradas de contas na base de datos, pero aplicará de xeito retroactivo e automático regras específicas de moderación sobre esas contas.
         severity:
-          desc_html: "<strong>Silenciar</strong> fará invisibles as mensaxes das contas para calquera que non os siga. <strong>Suspender</strong> eliminará todo o contido das contas, ficheiros de medios, e datos de perfil. Utilice <strong>Ningún</strong> si só quere rexeitar ficheiros de medios."
+          desc_html: "<strong>Silenciar</strong> fará invisíbeis as mensaxes das contas para calquera que non os siga. <strong>Suspender</strong> eliminará todo o contido das contas, ficheiros multimedia, e datos de perfil. Emprega a opción de <strong>Ningún</strong> se só queres rexeitar ficheiros multimedia."
           noop: Ningún
           silence: Silenciar
           suspend: Suspender
         title: Novo bloqueo de dominio
       private_comment: Comentario privado
-      private_comment_hint: Comentar entre moderadores para uso interno as limitacións de este dominio.
+      private_comment_hint: Comentar sobre esta limitación de dominio para uso interno polos moderadores.
       public_comment: Comentario público
-      public_comment_hint: Comentar sobre as limitacións de este dominio para o interese público, se o aviso da lista de dominios limitados está activado.
-      reject_media: Rexeitar ficheiros de medios
-      reject_media_hint: Eliminar ficheiros de medios almacenados localmente e rexeita descargalos no futuro. Irrelevante para as suspensións
-      reject_reports: Rexeitar informes
-      reject_reports_hint: Ignorar todos os informes procedentes de este dominio. Irrelevante para as suspensións
-      rejecting_media: rexeitando ficheiros de medios
-      rejecting_reports: rexeitando informes
+      public_comment_hint: Comentar sobre esta limitación de dominio para o público xeral, se está activado o aviso da listaxe de limitacións de dominio.
+      reject_media: Rexeitar ficheiros multimedia
+      reject_media_hint: Eliminar ficheiros multimedia almacenados de xeito local e rexeita descargalos no futuro. Irrelevante para as suspensións
+      reject_reports: Rexeitar denuncias
+      reject_reports_hint: Ignorar todas as denuncias procedentes deste dominio. Irrelevante para as suspensións
+      rejecting_media: rexeitando ficheiros multimedia
+      rejecting_reports: rexeitando denuncias
       severity:
-        silence: acalado
+        silence: silenciado
         suspend: suspendido
       show:
         affected_accounts:
-          one: Afectoulle a unha conta na base de datos
-          other: Afectoulle a %{count} contas na base de datos
+          one: Unha conta na base de datos afectada
+          other: "%{count} contas na base de datos afectadas"
         retroactive:
-          silence: Non silenciar todas as contas existentes de este dominio
-          suspend: Non suspender todas as contas existentes de este dominio
+          silence: Deixar de silenciar todas as contas existentes deste dominio
+          suspend: Desbotar suspenso de todas as contas existentes deste dominio
         title: Desfacer o bloqueo de dominio para %{domain}
         undo: Desfacer
       undo: Desfacer bloqueo de dominio
-      view: Ver dominios bloqueados
+      view: Ollar dominios bloqueados
     email_domain_blocks:
       add_new: Engadir novo
-      created_msg: Engadeuse correctamente o dominio de email a lista negra
+      created_msg: Engadiuse de xeito correcto o dominio de email á listaxe negra
       delete: Eliminar
-      destroyed_msg: Eliminouse correctamente o dominio de e-mail da lista negra
+      destroyed_msg: Eliminouse de xeito correcto o dominio de email da listaxe negra
       domain: Dominio
+      empty: Actualmente non hai dominios de email na listaxe negra.
       new:
         create: Engadir dominio
-        title: Nova entrada la lista negra de e-mail
-      title: Lista negra de E-mail
+        title: Nova entrada na listaxe negra de email
+      title: Listaxe negra de email
     followers:
-      back_to_account: Voltar a Conta
-      title: Seguidoras de %{acct}
+      back_to_account: Voltar á conta
+      title: Seguidores de %{acct}
     instances:
       by_domain: Dominio
-      delivery_available: A entrega está dispoñible
+      delivery_available: Entrega dispoñíbel
       known_accounts:
         one: "%{count} conta coñecida"
         other: "%{count} contas coñecidas"
@@ -360,18 +361,18 @@ gl:
       public_comment: Comentario público
       title: Federación
       total_blocked_by_us: Bloqueado por nós
-      total_followed_by_them: Seguidas por eles
-      total_followed_by_us: Seguidas por nós
-      total_reported: Informes sobre elas
-      total_storage: Anexos de medios
+      total_followed_by_them: Seguidos por eles
+      total_followed_by_us: Seguidos por nós
+      total_reported: Denuncias sobre eles
+      total_storage: Adxuntos multimedia
     invites:
       deactivate_all: Desactivar todo
       filter:
         all: Todo
-        available: Dispoñible
-        expired: Cadudado
+        available: Dispoñíbel
+        expired: Expirado
         title: Filtro
-      title: Convida
+      title: Convites
     pending_accounts:
       title: Contas pendentes (%{count})
     relays:
@@ -395,12 +396,17 @@ gl:
       destroyed_msg: Nota do informe eliminouse con éxito!
     reports:
       account:
-        note: nota
-        report: informe
+        notes:
+          one: "%{count} nota"
+          other: "%{count} notas"
+        reports:
+          one: "%{count} informe"
+          other: "%{count} informes"
       action_taken_by: Acción tomada por
       are_you_sure: Está segura?
       assign_to_self: Asignarmo
       assigned: Moderador asignado
+      by_target_domain: Dominio da conta sobre a que informa
       comment:
         none: Nada
       created_at: Reportado
@@ -435,7 +441,7 @@ gl:
         username: Nome de usuaria de contacto
       custom_css:
         desc_html: Modificar o aspecto con CSS cargado en cada páxina
-        title: CSS persoalizado
+        title: CSS personalizado
       default_noindex:
         desc_html: Aféctalle a todas as usuarias que non cambiaron os axustes elas mesmas
         title: Por omisión exclúe as usuarias do indexado por servidores de busca
@@ -446,6 +452,8 @@ gl:
         users: Para usuarias locais conectadas
       domain_blocks_rationale:
         title: Mostrar razón
+      enable_bootstrap_timeline_accounts:
+        title: Activar seguimentos por omisión para novas usuarias
       hero:
         desc_html: Mostrado na portada. Recoméndase 600x100px como mínimo. Se non se establece, mostrará a imaxe por omisión do servidor
         title: Imáxe Heróe
@@ -488,13 +496,13 @@ gl:
         title: Descrición do servidor
       site_description_extended:
         desc_html: Un bo lugar para o seu código de conducta, regras, guías e outras cousas que distingan ao seu servidor. Pode utilizar etiquetas HTML
-        title: Información extendida da persoalización
+        title: Información extendida da personalización
       site_short_description:
-        desc_html: Mostrado na barra lateral e nas etiquetas meta. Describe o que é Mastodon e que fai especial a este servidor nun só parágrafo. Si está baldeiro, mostrará a descrición do servidor.
+        desc_html: Mostrado na barra lateral e nas etiquetas meta. Describe o que é Mastodon e que fai especial a este servidor nun só parágrafo. Se está baldeiro, mostrará a descrición do servidor.
         title: Descrición curta do servidor
       site_terms:
         desc_html: Pode escribir a súa propia política de intimidade, termos de servizo ou aclaracións legais. Pode utilizar etiquetas HTML
-        title: Termos de servizo persoalizados
+        title: Termos de servizo personalizados
       site_title: Nome do servidor
       spam_check_enabled:
         desc_html: Mastodon pode silenciar e informar automáticamente sobre contas baseándose en medidas como detectar contas que envían mensaxes non solicitadas de xeito repetido. Podería haber falsos positivos.
@@ -553,20 +561,20 @@ gl:
       title: Xestionar avisos preestablecidos
   admin_mailer:
     new_pending_account:
-      body: Abaixo están os detalles da conta. Pode aprobar ou rexeitar esta solicitude.
+      body: Abaixo están os detalles da conta. Podes aprobar ou rexeitar esta solicitude.
       subject: Hai unha conta nova para revisar en %{instance} (%{username})
     new_report:
       body: "%{reporter} informou sobre %{target}"
       body_remote: Alguén desde %{domain} informou sobre %{target}
       subject: Novo informe sobre %{instance} (#%{id})
     new_trending_tag:
-      body: 'A etiqueta #%{name} é tendencia hoxe, pero non foi previamente revisada. Non se mostrará publicamente a menos que vostede o permita, ou garde o formulario para facer que non se lle consulte de novo.'
+      body: 'A etiqueta #%{name} é tendencia hoxe, pero non foi previamente revisada. Non se mostrará publicamente a menos que ti o permitas, ou gardes o formulario para facer que non se che consulte de novo.'
       subject: Unha nova etiqueta que revisar en %{instance} (#%{name})
   aliases:
     add_new: Crear alcume
     created_msg: Creou un novo alcume correctamente. Pode iniciar o movemento desde a conta antiga.
-    deleted_msg: Eliminou correctamente o alias. Xa non será posible mover desde esa conta a esta.
-    hint_html: Se quere mudarse desde outra conta a esta nova, aquí pode crear un alcume, que é requerido antes de poder proceder a mover os seguidores da conta antiga a esta nova. Esta acción por si mesma é <strong>inocua e reversible</strong>. <strong>A migración da conta iníciase desde a conta antiga</strong>.
+    deleted_msg: Eliminou correctamente o alcume. Xa non será posible mover desde esa conta a esta.
+    hint_html: Se queres mudarte desde outra conta a esta nova, aquí podes crear un alcume, que é requerido antes de poder proceder a mover os seguidores da conta antiga a esta nova. Esta acción por si mesma é <strong>inocua e reversible</strong>. <strong>A migración da conta iníciase desde a conta antiga</strong>.
     remove: Desligar alcume
   appearance:
     advanced_web_interface: Interface web avanzada
@@ -574,7 +582,12 @@ gl:
     animations_and_accessibility: Animacións e accesibilidade
     confirmation_dialogs: Diálogos de confirmación
     discovery: Descubrir
+    localization:
+      body: Mastodon tradúceno persoas voluntarias.
+      guide_link: https://crowdin.com/project/mastodon
+      guide_link_text: Todas podemos contribuír.
     sensitive_content: Contido sensible
+    toot_layout: Disposición do toot
   application_mailer:
     notification_preferences: Cambiar os axustes de correo-e
     salutation: "%{name},"
@@ -596,7 +609,7 @@ gl:
     checkbox_agreement_html: Acepto as <a href="%{rules_path}" target="_blank">regras do servidor</a> e os <a href="%{terms_path}" target="_blank">termos do servizo</a>
     checkbox_agreement_without_rules_html: Acepto os <a href="%{terms_path}" target="_blank">termos do servizo</a>
     delete_account: Eliminar conta
-    delete_account_html: Se desexa eliminar a súa conta, pode <a href="%{path}">facelo aquí</a>. Pediráselle confirmación.
+    delete_account_html: Se queres eliminar a túa conta, podes <a href="%{path}">facelo aquí</a>. Deberás confirmar a acción.
     description:
       prefix_invited_by_user: "@%{name} convídate a que te unas a este servidor Mastodon!"
       prefix_sign_up: Rexístrate agora en Mastodon!
@@ -607,7 +620,7 @@ gl:
     login: Conectar
     logout: Desconectar
     migrate_account: Mover a unha conta diferente
-    migrate_account_html: Se desexa redirixir esta conta hacia outra diferente, pode <a href="%{path}">configuralo aquí</a>.
+    migrate_account_html: Se queres redirixir esta conta hacia outra diferente, pode <a href="%{path}">configuralo aquí</a>.
     or_log_in_with: ou conectar con
     providers:
       cas: CAS
@@ -626,7 +639,7 @@ gl:
       account_status: Estado da conta
       confirming: Agardando a confirmación do correo enviado.
       functional: A súa conta está totalmente operativa.
-      pending: A súa aplicación está pendente de revisión. Poderíanos levar algún tempo. Recibirá un correo se a aplicación está aprobada.
+      pending: A túa aplicación está pendente de revisión. Poderíanos levar algún tempo. Recibirás un correo se a aplicación está aprobada.
       redirecting_to: A túa conta está inactiva porque está redirixida a %{acct}.
     trouble_logging_in: Problemas para conectar?
   authorize_follow:
@@ -674,11 +687,11 @@ gl:
       email_reconfirmation_html: Se non recibes o correo de confirmación, podes <a href="%{path}">solicitalo de novo</a>
       irreversible: Non poderás restaurar ou reactivar a conta
       more_details_html: Para máis detalles, mira a <a href="%{terms_path}">política de intimidade</a>.
-      username_available: O nome de usuario estará dispoñible novamente
-      username_unavailable: O nome de usuario non estará dispoñible
+      username_available: O nome de usuaria estará dispoñible novamente
+      username_unavailable: O nome de usuaria non estará dispoñible
   directories:
     directory: Directorio de perfil
-    explanation: Descubra usuarias según o seu interese
+    explanation: Descubre usuarias según o teu interese
     explore_mastodon: Explorar %{title}
   domain_validator:
     invalid_domain: non é un nome de dominio válido
@@ -711,7 +724,6 @@ gl:
     blocks: A bloquear
     csv: CSV
     domain_blocks: Bloqueos de dominio
-    follows: A seguir
     lists: Listas
     mutes: Acalou
     storage: Almacenamento de medios
@@ -733,6 +745,7 @@ gl:
       invalid_irreversible: O filtrado non reversible só funciona con contexto de avisos ou Inicio
     index:
       delete: Eliminar
+      empty: Non tes filtros.
       title: Filtros
     new:
       title: Engadir novo filtro
@@ -762,8 +775,8 @@ gl:
       keybase:
         invalid_token: Os testemuños Keybase son hashes de firma e deben ter 66 caracteres hexadecimais
         verification_failed: Keybase non recoñece este testemuño como firma da usuaria de Keybase %{kb_username}. Por favor inténteo desde Keybase.
-      wrong_user: Non se puido crear a proba para %{proving} mentras está conectada como %{current}. Conéctese como %{proving} e inténteo de novo.
-    explanation_html: Aquí pódese conectar criptográficamente as suas outras identidades, como a un perfil Keybase. Esto permitelle a outras persoas enviarlle mensaxes cifradas e confiar no contido que vostede lle envía.
+      wrong_user: Non se puido crear a proba para %{proving} mentras está conectada como %{current}. Conéctate como %{proving} e inténtao de novo.
+    explanation_html: Aquí podes conectar criptográficamente as tuas outras identidades, como a un perfil Keybase. Esto permítelle a outras persoas enviarche mensaxes cifradas e confiar no contido que ti lles envías.
     i_am_html: Eu son %{username} en %{service}.
     identity: Identidade
     inactive: Inactiva
@@ -798,7 +811,7 @@ gl:
       '86400': 1 día
     expires_in_prompt: Nunca
     generate: Xerar
-    invited_by: 'Vostede foi convidada por:'
+    invited_by: 'Convidoute:'
     max_uses:
       one: 1 uso
       other: "%{count} usos"
@@ -828,7 +841,7 @@ gl:
       on_cooldown: Estas no período de calma
     followers_count: Seguidoras no momento da migración
     incoming_migrations: Movendo desde unha conta diferente
-    incoming_migrations_html: Para migrar doutra conta cara esta, primeiro debes <a href="%{path}">crear un alias da conta</a>.
+    incoming_migrations_html: Para migrar doutra conta cara esta, primeiro debes <a href="%{path}">crear un alcume da conta</a>.
     moved_msg: A túa conta está redirixindo agora a %{acct} e os teus seguidores movéronse alí.
     not_redirecting: Neste momento a túa conta non está redirixindo cara a ningunha outra.
     on_cooldown: Migraches recentemente a conta. Esta función estará dispoñible de novo en %{count} días.
@@ -861,11 +874,11 @@ gl:
       title: Na súa ausencia...
     favourite:
       body: 'O seu estado foi marcado favorito por %{name}:'
-      subject: "%{name} marcou favorito o seu estado"
+      subject: "%{name} marcou favorito o teu estado"
       title: Nova favorita
     follow:
-      body: "%{name} agora está a seguila!"
-      subject: "%{name} agora está a seguila"
+      body: Agora %{name} séguete!
+      subject: Agora %{name} séguete
       title: Nova seguidora
     follow_request:
       action: Xestionar peticións de seguimento
@@ -875,12 +888,16 @@ gl:
     mention:
       action: Respostar
       body: 'Foi mencionada por %{name} en:'
-      subject: Vostede foi mencionada por %{name}
+      subject: Foches mencionada por %{name}
       title: Nova mención
     reblog:
       body: 'O seu estado foi promocionado por %{name}:'
-      subject: "%{name} promoveu o seu estado"
+      subject: "%{name} promoveu o teu estado"
       title: Nova promoción
+  notifications:
+    email_events: Eventos para os correos de notificación
+    email_events_hint: 'Escolle os eventos sobre os que queres recibir notificacións:'
+    other_settings: Outros axustes das notificacións
   number:
     human:
       decimal_units:
@@ -904,6 +921,7 @@ gl:
       duration_too_long: está moi lonxe no futuro
       duration_too_short: é demasiado cedo
       expired: A sondaxe rematou
+      invalid_choice: A opción de voto escollida non existe
       over_character_limit: non poden ter máis de %{max} caracteres cada unha
       too_few_options: debe ter máis de unha opción
       too_many_options: non pode haber máis de %{max} opcións
@@ -914,6 +932,8 @@ gl:
   relationships:
     activity: Actividade da conta
     dormant: En repouso
+    followers: Seguidoras
+    following: Seguindo
     last_active: Último activo
     most_recent: Máis recente
     moved: Movida
@@ -929,18 +949,18 @@ gl:
     missing_resource: Non se puido atopar o URL de redirecionamento requerido para a súa conta
     no_account_html: Non ten unha conta? Pode <a href='%{sign_up_path}' target='_blank'>rexistrarse aquí</a>
     proceed: Proceda para seguir
-    prompt: 'Vostede vai seguir:'
+    prompt: 'Vas seguir a:'
     reason_html: "<strong>Por que é necesario este paso?</strong><code>%{instance}</code> podería non ser o servidor onde se rexistrou, así que precisamo redirixila primeiro ao seu servidor de orixe."
   remote_interaction:
     favourite:
       proceed: Darlle a favorito
-      prompt: 'Vostede quere favorecer este toot:'
+      prompt: 'Vas marcar favorito este toot:'
     reblog:
       proceed: Darlle a promocionar
-      prompt: 'Vostede quere promocionar este toot:'
+      prompt: 'Vas promocionar este toot:'
     reply:
       proceed: Respostar
-      prompt: 'Vostede quere respostar a este toot:'
+      prompt: 'Vas responder a este toot:'
   scheduled_statuses:
     over_daily_limit: Excedeu o límite de %{limit} toots programados para ese día
     over_total_limit: Excedeu o límite de %{limit} toots programados
@@ -983,8 +1003,8 @@ gl:
       windows: Windows
       windows_mobile: Windows Mobile
       windows_phone: Windows Phone
-    revoke: Revocar
-    revoke_success: A sesión revocouse con éxito
+    revoke: Revogar
+    revoke_success: A sesión revogouse con éxito
     title: Sesións
   settings:
     account: Conta
@@ -1007,6 +1027,8 @@ gl:
     profile: Perfil
     relationships: Seguindo e seguidoras
     two_factor_authentication: Validar Dobre Factor
+  spam_check:
+    spam_detected: Esto é un informe automatizado. Detectouse Spam.
   statuses:
     attached:
       description: 'Axenado: %{attached}'
@@ -1059,9 +1081,9 @@ gl:
       <h3 id="collect">Qué información recollemos?</h3>
 
       <ul>
-      <li><em>Información básica da conta</em>: Si se rexistra en este servidor, pediráselle un nome de usuaria, un enderezo de correo electrónico e un contrasinal. De xeito adicional tamén poderá introducir información como un nome público e biografía, tamén subir unha fotografía de perfil e unha imaxe para a cabeceira. O nome de usuaria, o nome público, a biografía e as imaxes de perfil e cabeceira sempre se mostran publicamente.</li>
+      <li><em>Información básica da conta</em>: Se se rexistra en este servidor, pediráselle un nome de usuaria, un enderezo de correo electrónico e un contrasinal. De xeito adicional tamén poderá introducir información como un nome público e biografía, tamén subir unha fotografía de perfil e unha imaxe para a cabeceira. O nome de usuaria, o nome público, a biografía e as imaxes de perfil e cabeceira sempre se mostran publicamente.</li>
       <li><em>Publicacións, seguimento e outra información pública</em>: O listado das persoas que segue é un listado público, o mesmo acontece coas súas seguidoras. Cando evía unha mensaxe, a data e hora gárdanse así como o aplicativo que utilizou para enviar a mensaxe. As publicacións poderían conter ficheiros de medios anexos, como fotografías e vídeos. As publicacións públicas e as non listadas están dispoñibles de xeito público. Cando destaca unha publicación no seu perfil tamén é pública. As publicacións son enviadas as súas seguidoras, en algúns casos pode acontecer que estén en diferentes servidores e gárdanse copias neles. Cando elemina unha publicación tamén se envía as súas seguidoras. A acción de voltar a publicar ou marcar como favorita outra publicación sempre é pública.</li>
-      <li><em>Mensaxes directas e só para seguidoras</em>: Todas as mensaxes gárdanse e procésanse no servidor. As mensaxes só para seguidoras son entregadas as súas seguidoras e as usuarias que son mencionadas en elas, e as mensaxes directas entréganse só as usuarias mencionadas en elas. En algúns casos esto implica que son entregadas a diferentes servidores e gárdanse copias alí. Facemos un esforzo sincero para limitar o acceso a esas publicacións só as persoas autorizadas, pero outros servidores poderían non ser tan escrupulosos. Polo tanto, é importante revisar os servidores onde se hospedan as súas seguidoras. Nos axustes pode activar a opción de aprovar ou rexeitar novas seguidoras de xeito manual.  <em>Teña en conta que a administración do servidor e todos os outros servidores implicados poden ver as mensaxes.</em>, e as destinatarias poderían facer capturas de pantalla, copiar e voltar a compartir as mensaxes. <em>Non comparta información comprometida en Mastodon.</em></li>
+      <li><em>Mensaxes directas e só para seguidoras</em>: Todas as mensaxes gárdanse e procésanse no servidor. As mensaxes só para seguidoras son entregadas as súas seguidoras e as usuarias que son mencionadas en elas, e as mensaxes directas entréganse só as usuarias mencionadas en elas. En algúns casos esto implica que son entregadas a diferentes servidores e gárdanse copias alí. Facemos un esforzo sincero para limitar o acceso a esas publicacións só as persoas autorizadas, pero outros servidores poderían non ser tan escrupulosos. Polo tanto, é importante revisar os servidores onde se hospedan as súas seguidoras. Nos axustes pode activar a opción de aprovar ou rexeitar novas seguidoras de xeito manual. <em>Teña en conta que a administración do servidor e todos os outros servidores implicados poden ver as mensaxes.</em>, e as destinatarias poderían facer capturas de pantalla, copiar e voltar a compartir as mensaxes. <em>Non comparta información comprometida en Mastodon.</em></li>
       <li><em>IPs e outros metadatos</em>: Cando se conecta, gravamos o IP desde onde se conecta, así como o nome do aplicativo desde onde o fai. Todas as sesións conectadas están dispoñibles para revisar e revogar nos axustes. O último enderezo IP utilizado gárdase ate por 12 meses. Tamén poderiamos gardar informes do servidor que inclúan o enderezo IP de cada petición ao servidor.</li>
       </ul>
 
@@ -1072,7 +1094,7 @@ gl:
       <p>Toda a información que recollemos podería ser utilizada dos seguintes xeitos:</p>
 
       <ul>
-      <li>Para proporcionar a funcionabiliade básica de Mastodon. Só pode interactuar co contido de outra xente e publicar o seu propio contido si está conectada. Por exemplo, podería seguir outra xente e ver as súas publicacións combinadas nunha liña temporal inicial persoalizada.</li>
+      <li>Para proporcionar a funcionabiliade básica de Mastodon. Só pode interactuar co contido de outra xente e publicar o seu propio contido se está conectada. Por exemplo, podería seguir outra xente e ver as súas publicacións combinadas nunha liña temporal inicial personalizada.</li>
       <li>Para axudar a moderar a comunidade, por exemplo comparando o seu enderezo IP con outros coñecidos para evitar esquivar os rexeitamentos ou outras infraccións.</li>
       <li>O endero de correo electrónico que nos proporciona podería ser utilizado para enviarlle información, notificacións sobre outra xente que interactúa cos seus contidos ou lle envía mensaxes, e para respostar a consultas, e/ou outras cuestións ou peticións.</li>
       </ul>
@@ -1081,7 +1103,7 @@ gl:
 
       <h3 id="protect">Cómo proxetemos os seus datos?</h3>
 
-      <p>Implementamos varias medidas de seguridade para protexer os seus datos personais cando introduce, envía ou accede a súa información persoal. Entre outras medidas, a súa sesión de navegación, así como o tráfico entre os seus aplicativos e o API están aseguradas mediante SSL, e o seu contrasinal está camuflado utilizando un algoritmo potente de unha sóa vía. Pode habilitar a autenticación de doble factor para protexer o acceso a súa conta aínda máis.</p>
+      <p>Implementamos varias medidas de seguridade para protexer os seus datos persoais cando introduce, envía ou accede a súa información persoal. Entre outras medidas, a súa sesión de navegación, así como o tráfico entre os seus aplicativos e o API están aseguradas mediante SSL, e o seu contrasinal está camuflado utilizando un algoritmo potente de unha sóa vía. Pode habilitar a autenticación de doble factor para protexer o acceso a súa conta aínda máis.</p>
 
       <hr class="spacer" />
 
@@ -1102,7 +1124,7 @@ gl:
 
       <h3 id="cookies">Utilizamos testemuños?</h3>
 
-      <p>Si. Os testemuños son pequenos ficheiros que un sitio web ou o provedor de servizo transfiren ao disco duro da súa computadora a través do navegador web (si vostede o permite). Estos testemuños posibilitan ao sitio web recoñecer o seu navegador e, si ten unha conta rexistrada, asocialo con dita conta.</p>
+      <p>Si. Os testemuños son pequenos ficheiros que un sitio web ou o provedor de servizo transfiren ao disco duro da súa computadora a través do navegador web (se vostede o permite). Estos testemuños posibilitan ao sitio web recoñecer o seu navegador e, se ten unha conta rexistrada, asocialo con dita conta.</p>
 
       <p>Utilizamos testemuños para comprender e gardar as súas preferencias para futuras visitas.</p>
 
@@ -1110,7 +1132,7 @@ gl:
 
       <h3 id="disclose">Entregamos algunha información a terceiras alleas?</h3>
 
-      <p>Non vendemos, negociamos ou transferimos de algún xeito a terceiras partes alleas a súa información identificativa persoal. Esto non inclúe terceiras partes de confianza que nos axudan a operar o sitio web, a xestionar a empresa, ou darlle servizo si esas partes aceptan manter esa información baixo confidencialidade. Poderiamos liberar esa información si cremos que eso da cumplimento axeitado a lei, reforza as políticas do noso sitio ou protexe os nosos, e de outros, dereitos, propiedade ou seguridade.</p>
+      <p>Non vendemos, negociamos ou transferimos de algún xeito a terceiras partes alleas a súa información identificativa persoal. Esto non inclúe terceiras partes de confianza que nos axudan a operar o sitio web, a xestionar a empresa, ou darlle servizo se esas partes aceptan manter esa información baixo confidencialidade. Poderiamos liberar esa información se cremos que eso da cumplimento axeitado a lei, reforza as políticas do noso sitio ou protexe os nosos, e de outros, dereitos, propiedade ou seguridade.</p>
 
       <p>O seu contido público podería ser descargado por outros servidores na rede. As súas publicacións públicas e para só seguidoras son entregadas aos servidores onde residen as súas seguidoras na rede, e as mensaxes directas son entregadas aos servidores das destinatarias sempre que esas seguidoras ou destinatarios residan en servidores distintos de este.</p>
 
@@ -1120,9 +1142,9 @@ gl:
 
       <h3 id="children">Utilización do sitio web por menores</h3>
 
-      <p>Si este servidor está na UE ou no EEE: a nosa web, productos e servizos están dirixidos a persoas de 16 ou máis anos. Si ten menos de 16 anos, a requerimento da GDPR (<a href="https://en.wikipedia.org/wiki/General_Data_Protection_Regulation">General Data Protection Regulation</a>) non utilice esta web.</p>
+      <p>Se este servidor está na UE ou no EEE: a nosa web, productos e servizos están dirixidos a persoas de 16 ou máis anos. Se ten menos de 16 anos, a requerimento da GDPR (<a href="https://en.wikipedia.org/wiki/General_Data_Protection_Regulation">General Data Protection Regulation</a>) non utilice esta web.</p>
 
-      <p>Si este servidor está nos EEUU: a nosa web, productos e servizos están dirixidos a persoas de 13 ou máis anos. Si non ten 13 anos de idade, a requerimento de COPPA (<a href="https://en.wikipedia.org/wiki/Children%27s_Online_Privacy_Protection_Act">Children's Online Privacy Protection Act</a>) non utilice esta web.</p>
+      <p>Se este servidor está nos EEUU: a nosa web, productos e servizos están dirixidos a persoas de 13 ou máis anos. Se non ten 13 anos de idade, a requerimento de COPPA (<a href="https://en.wikipedia.org/wiki/Children%27s_Online_Privacy_Protection_Act">Children's Online Privacy Protection Act</a>) non utilice esta web.</p>
 
       <p>Os requerimentos legais poden ser diferentes si este servidor está baixo outra xurisdición.</p>
 
@@ -1130,7 +1152,7 @@ gl:
 
       <h3 id="changes">Cambios na nosa política de intimidade</h3>
 
-      <p>Si decidimos cambiar a nosa política de intimidade publicaremos os cambios en esta páxina.</p>
+      <p>Se decidimos cambiar a nosa política de intimidade publicaremos os cambios en esta páxina.</p>
 
       <p>Este documento ten licenza CC-BY-SA. Actualizouse o 7 de Marzo de 2018.</p>
 
@@ -1152,7 +1174,7 @@ gl:
     enabled: A autenticación de dobre-factor está activada
     enabled_success: Activouse con éxito a autenticación de dobre-factor
     generate_recovery_codes: Xerar códigos de recuperación
-    instructions_html: "<strong>Escanee este código QR en Google Authenticator ou aplicativo TOTP similar no seu teléfono</strong>. Desde agora, este aplicativo xerará testemuños que vostede deberá introducir ao conectarse."
+    instructions_html: "<strong>Escanea este código QR en Google Authenticator ou aplicación TOTP no teu teléfono</strong>. Desde agora, esta aplicación proporcionará testemuños que debes introducir ao conectarte."
     lost_recovery_codes: Os códigos de recuperación permítenlle recuperar o acceso a súa conta si perde o teléfono. Si perde os códigos de recuperación, pode restauralos aquí. Os seus códigos de recuperación anteriores serán invalidados.
     manual_instructions: 'Si non pode escanear o código QR e precisa introducilo manualmente, aquí está o testemuño secreto en texto plano:'
     recovery_codes: Códigos de recuperación do respaldo
@@ -1168,7 +1190,7 @@ gl:
     warning:
       explanation:
         disable: Cando a súa conta está conxelada, os datos permanecen intactos, pero non pode levar a fin accións ate que se desbloquea.
-        silence: Mentras a conta está limitada, só a xente que actualmente a segue verá os seus toots en este servidor, e vostede podería estar excluída de varias listas públicas. Porén, outras persoas poderíana seguila de xeito manual.
+        silence: Mentras a conta está limitada, só a xente que actualmente te segue verá os teus toots en este servidor, e poderías estar excluída de varias listaxes públicas. Porén, outras persoas poderíante seguir de xeito manual.
         suspend: A súa conta foi suspendida, e todos os seus toots e medios subidos foron eliminados de este servidor de xeito irreversible, e dos servidores onde tivese seguidoras.
       get_in_touch: Pode responder a este correo para contactar coa administración de %{instance}.
       review_server_policies: Revisar políticas do servidor
@@ -1185,7 +1207,7 @@ gl:
         suspend: Conta suspendida
     welcome:
       edit_profile_action: Configurar perfil
-      edit_profile_step: Vostede pode persoalizar o seu perfil subindo un avatar, cabeceira, cambiar o seu nome público e aínda máis. Si restrinxe a súa conta pode revisar a conta das personas que solicitan seguilas antes de permitirlles o acceso aos seus toots.
+      edit_profile_step: Podes personalizar o teu perfil subindo un avatar, cabeceira, cambiar o nome público e aínda máis. Se restrinxes a tua conta podes revisar a conta das persoas que solicitan seguirte antes de permitirlles o acceso aos teus toots.
       explanation: Aquí ten alunhas endereitas para ir aprendendo
       final_action: Comece a publicar
       final_step: 'Publique! Incluso sin seguidoras as súas mensaxes serán vistas por outras, por exemplo na liña temporal local e nas etiquetas. Podería presentarse no #fediverso utilizando a etiqueta #introductions.'
@@ -1194,8 +1216,8 @@ gl:
       review_preferences_action: Cambiar preferencias
       review_preferences_step: Lembre establecer as preferencias, tales como qué correos-e lle querería recibir, ou o nivel de intimidade por omisión para as súas mensaxes. Se non lle molestan as imaxes con movemento, pode escoller que os GIF se reproduzan automáticamente.
       subject: Benvida a Mastodon
-      tip_federated_timeline: A liña temporal federada é unha visión ampla da rede Mastodon. Pero so inclúe xente a que segue xente que vostede segue, así que non é completa.
-      tip_following: Por omisión vostede segue ao Admin do seu servidor. Para atopar máis xente interesante, mire nas liñas temporais local e federada.
+      tip_federated_timeline: A liña temporal federada é unha visión reducida da rede Mastodon. Inclúe xente a que segue xente que ti segues, así que non é completa.
+      tip_following: Por omisión segues a Admin(s) no teu servidor. Para atopar máis xente interesante, mira nas liñas temporais local e federada.
       tip_local_timeline: A liña temporal local é unha ollada xeral sobre a xente en %{instance}. Son as súas veciñas máis próximas!
       tip_mobile_webapp: Si o navegador móbil lle ofrece engadir Mastodon a pantalla de inicio, pode recibir notificacións push. En moitos aspectos comportarase como un aplicativo nativo!
       tips: Consellos
@@ -1208,5 +1230,5 @@ gl:
     seamless_external_login: Está conectado a través de un servizo externo, polo que os axustes de contrasinal e correo-e non están dispoñibles.
     signed_in_as: 'Rexistrada como:'
   verification:
-    explanation_html: 'Pode <strong>validarse a vostede mesma como a dona das ligazóns nos metadatos do seu perfil</strong>. Para esto, o sitio web ligado debe conter unha ligazón de retorno ao perfil de Mastodon. Esta ligazón de retorno <strong>ten que</strong> ter un atributo <code>rel="me"</code>. O texto da ligazón non importa. Aquí ten un exemplo:'
+    explanation_html: 'Podes <strong>validarte a ti mesma como a dona das ligazóns nos metadatos do teu perfil</strong>. Para esto, o sitio web ligado debe conter unha ligazón de retorno ao perfil de Mastodon. Esta ligazón de retorno <strong>ten que</strong> ter un atributo <code>rel="me"</code>. O texto da ligazón non importa. Aquí tes un exemplo:'
     verification: Validación
diff --git a/config/locales/he.yml b/config/locales/he.yml
index 4bedabd7461b19afe5f11aedaed66ddbc140dcfb..ae05c84a0a8e03ce09ea11d56496f92894b0e16c 100644
--- a/config/locales/he.yml
+++ b/config/locales/he.yml
@@ -52,9 +52,7 @@ he:
       email_status: סטטוס דוא"ל
       enable: לאפשר
       enabled: מאופשר
-      feed_url: כתובת פיד
       followers: עוקבים
-      followers_url: כתובת עוקבים
       follows: נעקבים
       inbox_url: כתובת תיבה נכנסת
       ip: כתובת IP
@@ -75,9 +73,7 @@ he:
       most_recent_activity: פעילות עדכנית
       most_recent_ip: כתובות אחרונות
       not_subscribed: לא רשום
-      outbox_url: כתובת תיבת דואר יוצא
       perform_full_suspension: ביצוע השעייה מלאה
-      profile_url: כתובת פרופיל
       promote: להעלות בדרגה
       protocol: פרטיכל
       public: פומבי
@@ -95,7 +91,6 @@ he:
         admin: מנהל מערכת
         moderator: מנחה דיונים
         user: משתמש(ת)
-      salmon_url: כתובת סלמון
       search: חיפוש
       shared_inbox_url: תיבה משותפת לדואר נכנס
       show:
@@ -221,7 +216,6 @@ he:
     '503': The page could not be served due to a temporary server failure.
   exports:
     blocks: רשימת חסימות
-    follows: רשימת נעקבים
     mutes: רשימת השתקות
     storage: אחסון מדיה
   generic:
diff --git a/config/locales/hi.yml b/config/locales/hi.yml
index 0967ef424bce6791893e9a57bb952f80fd536e93..401d07cf6e58bb3da2041a1190919659e3888bb5 100644
--- a/config/locales/hi.yml
+++ b/config/locales/hi.yml
@@ -1 +1,32 @@
-{}
+---
+hi:
+  about:
+    about_this: विवरण
+    active_count_after: सक्रिय
+    contact: संपर्क
+    learn_more: अधिक जानें
+    privacy_policy: गोपनीयता नीति
+    status_count_after:
+      one: स्थिति
+      other: स्थितियां
+    unavailable_content_description:
+      domain: सर्वर
+      reason: कारण
+  errors:
+    '400': The request you submitted was invalid or malformed.
+    '403': You don't have permission to view this page.
+    '404': The page you are looking for isn't here.
+    '406': This page is not available in the requested format.
+    '410': The page you were looking for doesn't exist here anymore.
+    '422': 
+    '429': Throttled
+    '500': 
+    '503': The page could not be served due to a temporary server failure.
+  invites:
+    expires_in:
+      '1800': 30 minutes
+      '21600': 6 hours
+      '3600': 1 hour
+      '43200': 12 hours
+      '604800': 1 week
+      '86400': 1 day
diff --git a/config/locales/hr.yml b/config/locales/hr.yml
index 67d83525b3d80ef26994a78431f1c9e71a13c421..9dd14c1dd77ee8903dd79b4d3d263ec526446e5c 100644
--- a/config/locales/hr.yml
+++ b/config/locales/hr.yml
@@ -55,7 +55,6 @@ hr:
     '503': The page could not be served due to a temporary server failure.
   exports:
     blocks: Blokirao si
-    follows: Slijediš
     storage: Pohrana media zapisa
   generic:
     changes_saved_msg: Izmjene su uspješno sačuvane!
diff --git a/config/locales/hu.yml b/config/locales/hu.yml
index af7048ebb72ec5c93e0fd5d133fb15c3055dbdce..ae3cc479c13427331de7c289104cf6fa36ff477a 100644
--- a/config/locales/hu.yml
+++ b/config/locales/hu.yml
@@ -3,7 +3,7 @@ hu:
   about:
     about_hashtag_html: Ezek a <strong>#%{hashtag}</strong> hashtag-gel ellátott publikus tülkök. Reagálhatsz rájuk, ha már van felhasználói fiókod valahol a föderációban.
     about_mastodon_html: A Mastodon egy szabad webes protokollokat használó, nyílt forráskódú szociális háló. Decentralizált, akár az e-mail.
-    about_this: Rólunk
+    about_this: Névjegy
     active_count_after: aktív
     active_footnote: Havonta aktív felhasználók
     administered_by: 'Adminisztrátor:'
@@ -11,6 +11,9 @@ hu:
     apps: Mobil appok
     apps_platforms: Használd a Mastodont iOS-ről, Androidról vagy más platformról
     browse_directory: Böngészd a profilokat és szűrj érdeklődési körre
+    browse_local_posts: 'Nézz bele a szerver publikus, élő adatfolyamába
+
+'
     browse_public_posts: Nézz bele a Mastodon élő adatfolyamába
     contact: Kapcsolat
     contact_missing: Nincs megadva
@@ -77,6 +80,7 @@ hu:
     roles:
       admin: Adminisztrátor
       bot: Bot
+      group: Csoport
       moderator: Moderátor
     unavailable: Nincs ilyen profil
     unfollow: Követés vége
@@ -117,9 +121,7 @@ hu:
       email_status: E-mail állapot
       enable: Bekapcsolás
       enabled: Bekapcsolva
-      feed_url: Hírcsatorna URL
       followers: Követő
-      followers_url: Követő URL
       follows: Követett
       header: Fejléc
       inbox_url: Beérkezett üzenetek URL
@@ -145,12 +147,10 @@ hu:
       most_recent_activity: Legutóbbi tevékenységek
       most_recent_ip: Legutóbbi IP-cím
       no_account_selected: Nem változott meg egy fiók sem, mert semmi sem volt kiválasztva
-      no_limits_imposed: Nem állítottunk be határértéket
+      no_limits_imposed: Nincs korlátozás
       not_subscribed: Nincs feliratkozás
-      outbox_url: Kimenő üzenetek URL
       pending: Engedélyezés alatt
       perform_full_suspension: Felfüggesztés
-      profile_url: Profil URL
       promote: Előléptetés
       protocol: Protokoll
       public: Nyilvános
@@ -173,8 +173,8 @@ hu:
         moderator: Moderátor
         staff: Stáb
         user: Felhasználó
-      salmon_url: Salmon URL
       search: Keresés
+      search_same_ip: Más felhasználók ugyanezzel az IP-vel
       shared_inbox_url: Megosztott bejövő üzenetek URL
       show:
         created_reports: Létrehozott jelentések
@@ -201,10 +201,12 @@ hu:
         confirm_user: "%{name} megerősítette e-mail címét: %{target}"
         create_account_warning: "%{name} figyelmeztetést küldött %{target} felhasználónak"
         create_custom_emoji: "%{name} új emojit töltött fel: %{target}"
+        create_domain_allow: "%{name} engedélyező listára vette %{target} domaint"
         create_domain_block: "%{name} letiltotta az alábbi domaint: %{target}"
         create_email_domain_block: "%{name} feketelistára tette az alábbi e-mail domaint: %{target}"
         demote_user: "%{name} lefokozta az alábbi felhasználót: %{target}"
         destroy_custom_emoji: "%{name} törölte az emojit: %{target}"
+        destroy_domain_allow: "%{name} leszedte %{target} domaint az engedélyező listáról"
         destroy_domain_block: "%{name} engedélyezte az alábbi domaint: %{target}"
         destroy_email_domain_block: "%{name} fehérlistára tette az alábbi e-mail domaint: %{target}"
         destroy_status: "%{name} eltávolította az alábbi felhasználó tülkjét: %{target}"
@@ -395,12 +397,17 @@ hu:
       destroyed_msg: Bejelentési feljegyzés törölve!
     reports:
       account:
-        note: feljegyzés
-        report: bejelentés
+        notes:
+          one: "%{count} feljegyzés"
+          other: "%{count} feljegyzés"
+        reports:
+          one: "%{count} bejelentés"
+          other: "%{count} bejelentés"
       action_taken_by: 'Kezelte:'
       are_you_sure: Biztos vagy benne?
       assign_to_self: Magamhoz rendelés
       assigned: Hozzárendelt moderátor
+      by_target_domain: A bejelentett fiók domainje
       comment:
         none: Egyik sem
       created_at: Jelentve
@@ -446,6 +453,8 @@ hu:
         users: Bejelentkezett helyi felhasználóknak
       domain_blocks_rationale:
         title: Mutasd meg az indokolást
+      enable_bootstrap_timeline_accounts:
+        title: Alapértelmezett követés engedélyezése új felhasználóknak
       hero:
         desc_html: A kezdőoldalon látszik. Legalább 600x100px méret javasolt. Ha nincs beállítva, a szerver bélyegképet használjuk
         title: Hősi kép
@@ -506,6 +515,9 @@ hu:
         desc_html: Nyilvános idővonal megjelenítése a főoldalon
         title: Idővonal előnézete
       title: Webhely beállításai
+      trendable_by_default:
+        desc_html: Azokra a hashtagekere hat, melyet előzőleg nem tiltottak le
+        title: Hashtagek trendiségének engedélyezése előzetes ellenőrzés nélkül
       trends:
         desc_html: Előzetesen engedélyezett és most trendi hashtagek nyilvános mutatása
         title: Trendi hashtagek
@@ -571,7 +583,12 @@ hu:
     animations_and_accessibility: Animáció és akadálymentesítés
     confirmation_dialogs: Megerősítő párbeszédablakok
     discovery: Felfedezés
+    localization:
+      body: A Mastodont önkéntesek fordítják.
+      guide_link: https://crowdin.com/project/mastodon
+      guide_link_text: Bárki közreműködhet.
     sensitive_content: Szenzitív tartalom
+    toot_layout: Tülkök megjelenése
   application_mailer:
     notification_preferences: E-mail beállítások módosítása
     salutation: "%{name}!"
@@ -708,7 +725,6 @@ hu:
     blocks: Tiltólistádon
     csv: CSV
     domain_blocks: Tiltott domainjeid
-    follows: Követettjeid
     lists: Listáid
     mutes: Némításaid
     storage: Médiatároló
@@ -730,6 +746,7 @@ hu:
       invalid_irreversible: Visszafordíthatatlan szűrést csak saját idővonalon vagy értesítéseken lehet végezni
     index:
       delete: Törlés
+      empty: Nincs szűrés.
       title: Szűrők
     new:
       title: Új szűrő hozzáadása
@@ -878,6 +895,10 @@ hu:
       body: 'A tülködet %{name} megtolta:'
       subject: "%{name} megtolta a tülködet"
       title: Új megtolás
+  notifications:
+    email_events: Események email értesítésekhez
+    email_events_hint: 'Válaszd ki azokat az eseményeket, melyekről értesítést szeretnél:'
+    other_settings: Értesítések egyéb beállításai
   number:
     human:
       decimal_units:
@@ -901,6 +922,7 @@ hu:
       duration_too_long: túl távoli időpont
       duration_too_short: túl közeli időpont
       expired: A szavazásnak már vége
+      invalid_choice: A kiválasztott szavazási lehetőség nem létezik
       over_character_limit: egyik sem lehet %{max} karakternél hosszabb
       too_few_options: több, mint egy opciónak kell lennie
       too_many_options: nem lehet több, mint %{max} opció
@@ -911,6 +933,8 @@ hu:
   relationships:
     activity: Fiók aktivitás
     dormant: Elhagyott
+    followers: Követők
+    following: Követve
     last_active: Utoljára aktív
     most_recent: Legutóbbi
     moved: Átköltöztetve
@@ -1004,6 +1028,8 @@ hu:
     profile: Profil
     relationships: Követések és követők
     two_factor_authentication: Kétlépcsős azonosítás
+  spam_check:
+    spam_detected: Ez egy automatikus jelentés. Spamet érzékeltünk.
   statuses:
     attached:
       description: 'Csatolva: %{attached}'
diff --git a/config/locales/hy.yml b/config/locales/hy.yml
index 203351893d9aa9ce0a6872dc30ac1146c3d69309..2c692235b67d36684f8e7561eb8d9fb4a371a4ee 100644
--- a/config/locales/hy.yml
+++ b/config/locales/hy.yml
@@ -1,14 +1,29 @@
 ---
 hy:
   about:
+    about_this: Õ„Õ¥Ö€ Õ´Õ¡Õ½Õ«Õ¶
     active_count_after: Õ¡Õ¯Õ¿Õ«Õ¾
+    api: API
+    apps: Ô²Õ»Õ»Õ¡ÕµÕ«Õ¶ Õ°Õ¡Õ¾Õ¥Õ¬Õ¾Õ¡Õ®Õ¶Õ¥Ö€
+    contact_unavailable: ÕˆÕ¹Õ«Õ¶Õ¹ Õ¹Õ¯Õ¡
+    learn_more: Ô»Õ´Õ¡Õ¶Õ¡Õ¬ Õ¡Õ¾Õ¥Õ¬Õ«Õ¶
+    privacy_policy: Ô³Õ¡Õ²Õ¿Õ¶Õ«Õ¸Ö‚Õ©ÕµÕ¡Õ¶ Ö„Õ¡Õ²Õ¡Ö„Õ¡Õ¯Õ¡Õ¶Õ¸Ö‚Õ©ÕµÕ¸Ö‚Õ¶
     see_whats_happening: Տես ինչ ա կատարվում
     status_count_after:
       one: Õ½Õ¿Õ¡Õ¿Õ¸Ö‚Õ½
       other: Õ½Õ¿Õ¡Õ¿Õ¸Ö‚Õ½
     what_is_mastodon: Ô»ÕžÕ¶Õ¹ Õ§ Õ„Õ¡Õ½Õ¿Õ¸Õ¤Õ¸Õ¶Õ¨
   accounts:
+    follow: Õ€Õ¥Õ¿Ö‡Õ¥Õ¬
+    followers:
+      one: Õ€Õ¥Õ¿Ö‡Õ¸Ö€Õ¤
+      other: Õ€Õ¥Õ¿Ö‡Õ¸Ö€Õ¤Õ¶Õ¥Ö€
     media: Õ„Õ¥Õ¤Õ«Õ¡
+    never_active: ÔµÖ€Õ¢Õ¥Ö„
+    unfollow: Õ‰Õ°Õ¥Õ¿Ö‡Õ¥Õ¬
+  admin:
+    account_moderation_notes:
+      delete: Õ‹Õ¶Õ»Õ¥Õ¬
   auth:
     login: Õ„Õ¿Õ¶Õ¥Õ¬
   errors:
diff --git a/config/locales/id.yml b/config/locales/id.yml
index 572769a5ae994fddcb5b7cad1dd97f96d65a8725..2a759bc5f676f90d3bb128c624156bfa0c9d5ead 100644
--- a/config/locales/id.yml
+++ b/config/locales/id.yml
@@ -11,6 +11,7 @@ id:
     apps: Aplikasi hp
     apps_platforms: Gunakan Mastodon dari iOS, Android, dan platform lain
     browse_directory: Jelajahi direktori profil dan saring sesuai minat
+    browse_local_posts: Jelajahi siaran langsung dari pos publik server ini
     browse_public_posts: Jelajahi siaran langsung pos publik di Mastodon
     contact: Kontak
     contact_missing: Belum diset
@@ -73,6 +74,7 @@ id:
     roles:
       admin: Admin
       bot: Bot
+      group: Grup
       moderator: Moderator
     unavailable: Profil tidak tersedia
     unfollow: Berhenti mengikuti
@@ -113,9 +115,7 @@ id:
       email_status: Status Email
       enable: Aktifkan
       enabled: Diaktifkan
-      feed_url: URL Feed
       followers: Pengikut
-      followers_url: URL pengikut
       follows: Mengikut
       header: Tajuk
       inbox_url: URL Kotak masuk
@@ -143,10 +143,8 @@ id:
       no_account_selected: Tak ada akun yang diubah sebab tak ada yang dipilih
       no_limits_imposed: Tidak ada batasan
       not_subscribed: Tidak berlangganan
-      outbox_url: URL Kotak keluar
       pending: Tinjauan tertunda
       perform_full_suspension: Lakukan suspen penuh
-      profile_url: URL profil
       promote: Promosikan
       protocol: Protokol
       public: Publik
@@ -169,8 +167,8 @@ id:
         moderator: Moderator
         staff: Staf
         user: Pengguna
-      salmon_url: URL Salmon
       search: Cari
+      search_same_ip: Pengguna lain dengan IP yang sama
       shared_inbox_url: URL kotak masuk bersama
       show:
         created_reports: Laporan yang dibuat oleh akun ini
@@ -197,12 +195,15 @@ id:
         confirm_user: "%{name} mengonfirmasi alamat surel pengguna %{target}"
         create_account_warning: "%{name} mengirim peringatan untuk %{target}"
         create_custom_emoji: "%{name} mengunggah emoji baru %{target}"
+        create_domain_allow: "%{name} memasukkan ke daftar putih domain %{target}"
         create_domain_block: "%{name} memblokir domain %{target}"
         create_email_domain_block: "%{name} memasukkan ke daftar hitam domain surel %{target}"
         demote_user: "%{name} menurunkan pengguna %{target}"
         destroy_custom_emoji: "%{name} menghapus emoji %{target}"
+        destroy_domain_allow: "%{name} menghapus domain %{target} dari daftar putih"
         destroy_domain_block: "%{name} membuka blokir domain %{target}"
         destroy_email_domain_block: "%{name} memasukkan ke daftar putih surel domain %{target}"
+        destroy_status: "%{name} menghapus status %{target}"
         disable_2fa_user: "%{name} mematikan syarat dua faktor utk pengguna %{target}"
         disable_custom_emoji: "%{name} mematikan emoji %{target}"
         disable_user: "%{name} mematikan login untuk pengguna %{target}"
@@ -220,6 +221,7 @@ id:
         unsilence_account: "%{name} menghapus bungkaman akun %{target}"
         unsuspend_account: "%{name} menghapus penangguhan akun %{target}"
         update_custom_emoji: "%{name} memperbarui emoji %{target}"
+        update_status: "%{name} memperbarui status %{target}"
       deleted_status: "(status dihapus)"
       title: Log audit
     custom_emojis:
@@ -304,12 +306,14 @@ id:
           suspend: Suspen
         title: Pemblokiran domain baru
       private_comment: Komentar pribadi
+      private_comment_hint: Komentar tentang pembatasan domain ini untuk penggunaan internal oleh moderator.
       public_comment: Komentar publik
       reject_media: Tolak berkas media
       reject_media_hint: Hapus file media yang tersimpan dan menolak semua unduhan nantinya. Tidak terpengaruh dengan suspen
       reject_reports: Tolak laporan
       reject_reports_hint: Abaikan semua laporan dari domain ini. Tidak relevan untuk penangguhan
       rejecting_media: tolak berkas media
+      rejecting_reports: laporan ditolak
       severity:
         silence: dibungkam
         suspend: ditangguhkan
@@ -329,6 +333,7 @@ id:
       delete: Hapus
       destroyed_msg: Berhasil menghapus domain surel dari daftar hitam
       domain: Domain
+      empty: Tidak ada domain surel yang masuk daftar hitam.
       new:
         create: Tambah domain
         title: Entri daftar hitam surel baru
@@ -339,6 +344,8 @@ id:
     instances:
       by_domain: Domain
       delivery_available: Pengiriman tersedia
+      known_accounts:
+        other: "%{count} akun yang dikenal"
       moderation:
         all: Semua
         limited: Terbatas
@@ -349,6 +356,7 @@ id:
       total_blocked_by_us: Yang kita blokir
       total_followed_by_them: Diikuti mereka
       total_followed_by_us: Diikuti kita
+      total_reported: Laporan tentang mereka
       total_storage: Lampiran media
     invites:
       deactivate_all: Nonaktifkan semua
@@ -363,6 +371,7 @@ id:
     relays:
       add_new: Tambah relai baru
       delete: Hapus
+      description_html: "<strong>Relai gabungan</strong> adalah server perantara yang menukarkan toot publik dalam jumlah besar antara server yang berlangganan dengan yang menerbitkannya. <strong>Ini akan membantu server kecil hingga medium menemukan konten dari fediverse</strong>, yang tentu saja mengharuskan pengguna lokal untuk mengikuti orang lain dari server remot."
       disable: Matikan
       disabled: Dimatikan
       enable: Aktifkan
@@ -380,12 +389,15 @@ id:
       destroyed_msg: Catatan laporan berhasil dihapus!
     reports:
       account:
-        note: catatan
-        report: lapor
+        notes:
+          other: "%{count} catatan"
+        reports:
+          other: "%{count} laporan"
       action_taken_by: Aksi dilakukan oleh
       are_you_sure: Apakah Anda yakin?
       assign_to_self: Tugaskan kpd saya
       assigned: Moderator tertugas
+      by_target_domain: Domain akun yang dilaporkan
       comment:
         none: Tidak ada
       created_at: Dilaporkan
@@ -405,6 +417,7 @@ id:
       resolved_msg: Laporan berhasil diselesaikan!
       status: Status
       title: Laporan
+      unassign: Bebas Tugas
       unresolved: Belum Terseleseikan
       updated_at: Diperbarui
     settings:
@@ -421,24 +434,83 @@ id:
         desc_html: Ubah tampilan dengan CSS yang dimuat di setiap halaman
         title: CSS Kustom
       default_noindex:
+        desc_html: Memengaruhi semua pengguna yang tidak mengubah setelan ini sendiri
         title: Singkirkan pengguna dari pengindeksan mesin pencari scr bawaan
       domain_blocks:
         all: Kepada semua orang
+        disabled: Tidak kepada siapa pun
         title: Lihat blokir domain
+      enable_bootstrap_timeline_accounts:
+        title: Aktifkan opsi ikuti otomatis untuk pengguna baru
+      hero:
+        desc_html: Ditampilkan di halaman depan. Direkomendasikan minimal 600x100px. Jika tidak diatur, kembali ke server gambar kecil
+        title: Gambar pertama
+      mascot:
+        desc_html: Ditampilkan di banyak halaman. Direkomendasikan minimal 293x205px. Jika tidak diatur, kembali ke maskot bawaan
+        title: Gambar maskot
+      peers_api_enabled:
+        desc_html: Nama domain server ini dijumpai di fediverse
+        title: Terbitkan daftar server yang ditemukan
+      preview_sensitive_media:
+        desc_html: Pratinjau tautan pada situsweb lain akan menampilkan gambar kecil meski media ditandai sebagai sensitif
+        title: Tampilkan media sensitif di pratinjau OpenGraph
+      profile_directory:
+        desc_html: Izinkan pengguna untuk ditemukan
+        title: Aktifkan direktori profil
       registrations:
         closed_message:
           desc_html: Ditampilkan pada halaman depan saat pendaftaran ditutup<br>Anda bisa menggunakan tag HTML
           title: Pesan penutupan pendaftaran
+        deletion:
+          desc_html: Izinkan siapapun untuk menghapus akun miliknya
+          title: Buka penghapusan akun
+        min_invite_role:
+          disabled: Tidak ada satu pun
+          title: Izinkan undangan oleh
+      registrations_mode:
+        modes:
+          approved: Persetujuan diperlukan untuk mendaftar
+          none: Tidak ada yang dapat mendaftar
+          open: Siapa pun dapat mendaftar
+        title: Mode registrasi
+      show_known_fediverse_at_about_page:
+        desc_html: Ketika dimatikan, batasi linimasa publik yang ditautkan dari halaman landas untuk menampilkan konten lokal saja
+        title: Masukkan konten gabungan di halaman linimasa publik tanpa autentifikasi
+      show_staff_badge:
+        desc_html: Tampilkan lencana staf pada halaman pengguna
+        title: Tampilkan lencana staf
       site_description:
         desc_html: Ditampilkan sebagai sebuah paragraf di halaman depan dan digunakan sebagai tag meta.<br>Anda bisa menggunakan tag HTML, khususnya <code>&lt;a&gt;</code> dan <code>&lt;em&gt;</code>.
         title: Deskripsi situs
       site_description_extended:
         desc_html: Ditampilkan pada halaman informasi tambahan<br>Anda bisa menggunakan tag HTML
         title: Deskripsi situs tambahan
+      site_short_description:
+        desc_html: Ditampilkan pada bilah samping dan tag meta. Jelaskan apa itu Mastodon dan yang membuat server ini spesial dalam satu paragraf.
+        title: Deskripsi server pendek
+      site_terms:
+        desc_html: Anda dapat menulis kebijakan privasi, ketentuan layanan, atau hal legal lainnya sendiri. Anda dapat menggunakan tag HTML
+        title: Ketentuan layanan kustom
       site_title: Judul Situs
+      spam_check_enabled:
+        title: Automasi anti-spam
+      thumbnail:
+        desc_html: Dipakai sebagai pratinjau via OpenGraph dan API. Direkomendasikan 1200x630px
+        title: Server gambar kecil
+      timeline_preview:
+        desc_html: Tampilkan tautan ke linimasa publik pada halaman landas dan izinkan API mengakses linimasa publik tanpa autentifikasi
+        title: Izinkan akses linimasa publik tanpa autentifikasi
       title: Pengaturan situs
+      trendable_by_default:
+        desc_html: Memengaruhi tagar yang belum pernah diizinkan
+        title: Izinkan tagar masuk tren tanpa peninjauan
+      trends:
+        desc_html: Tampilkan secara publik tagar tertinjau yang kini sedang tren
+        title: Tagar sedang tren
     statuses:
+      back_to_account: Kembali ke halaman akun
       batch:
+        delete: Hapus
         nsfw_off: Tandai sebagai tak sensitif
         nsfw_on: Tandai sebagai sensitif
       deleted: Dihapus
@@ -482,25 +554,97 @@ id:
       body: "%{reporter} telah melaporkan %{target}"
       body_remote: Seseorang dari %{domain} telah melaporkan %{target}
       subject: Laporan baru untuk %{instance} (#%{id})
+    new_trending_tag:
+      body: 'Tagar #%{name} sedang tren hari ini, tetapi belum ditinjau. Itu tidak akan ditampilkan secara publik kecuali Anda mengizinkannya, atau simpan saja borang sebagaimana mestinya untuk tidak mendengarnya lagi.'
+      subject: Tagar baru muncul untuk ditinjau di %{instance} (#%{name})
+  aliases:
+    add_new: Buat alias
+    created_msg: Berhasil membuat alias baru. Sekarang Anda dapat memulai pindah dari akun lama.
+    deleted_msg: Berhasil menghapus alias. Pindah dari akun tersebut ke sini tidak akan lagi bisa dilakukan.
+    hint_html: Jika Anda ingin pindah dari akun lain ke sini, Anda dapat membuat alias, yang dilakukan sebelum Anda setuju dengan memindah pengikut dari akun lama ke akun sini. Aksi ini <strong>tidak berbahaya dan tidak bisa dikembalikan</strong>. <strong>Pemindahan akun dimulai dari akun lama</strong>.
+    remove: Hapus tautan alias
+  appearance:
+    advanced_web_interface: Antar muka web tingkat lanjut
+    advanced_web_interface_hint: 'Jika Anda ingin memanfaatkan seluruh lebar layar Anda, antar muka web tingkat lanjut mengizinkan Anda mengonfigurasi beragam kolom untuk menampilkan informasi sebanyak yang Anda mau: Beranda, notifikasi, linimasa gabungan, daftar, dan tagar.'
+    animations_and_accessibility: Animasi dan aksesibilitas
+    confirmation_dialogs: Dialog konfirmasi
+    discovery: Jelajah
+    localization:
+      body: Mastodon diterjemahkan oleh sukarelawan.
+      guide_link: https://crowdin.com/project/mastodon
+      guide_link_text: Siapa saja bisa berkontribusi.
+    sensitive_content: Konten sensitif
+    toot_layout: Tata letak toot
   application_mailer:
+    notification_preferences: Ubah pilihan email
+    salutation: "%{name},"
     settings: 'Ubah pilihan email: %{link}'
     view: 'Tampilan:'
+    view_profile: Lihat profil
+    view_status: Lihat status
   applications:
+    created: Aplikasi berhasil dibuat
+    destroyed: Aplikasi berhasil dihapus
     invalid_url: URL tidak sesuai
+    regenerate_token: Buat ulang token akses
+    token_regenerated: Token akses berhasil dibuat ulang
+    warning: Hati-hati dengan data ini. Jangan bagikan kepada siapapun!
+    your_token: Token akses Anda
   auth:
+    apply_for_account: Meminta undangan
+    change_password: Kata sandi
+    checkbox_agreement_html: Saya setuju dengan <a href="%{rules_path}" target="_blank">peraturan server</a> dan <a href="%{terms_path}" target="_blank">ketentuan layanan</a>
+    checkbox_agreement_without_rules_html: Saya setuju dengan <a href="%{terms_path}" target="_blank">ketentuan layanan</a>
+    delete_account: Hapus akun
+    delete_account_html: Jika Anda ingin menghapus akun Anda, Anda dapat <a href="%{path}">memproses ini</a>. Anda akan dikonfirmasi.
+    description:
+      prefix_invited_by_user: "@%{name} mengundang Anda untuk bergabung di server Mastodon ini!"
+      prefix_sign_up: Daftar ke Mastodon hari ini!
+      suffix: Dengan sebuah akun, Anda dapat mengikuti orang, mengirim pembaruan, dan bertukar pesan dengan pengguna dari server Mastodon mana pun dan lainnya!
     didnt_get_confirmation: Tidak menerima petunjuk konfirmasi?
     forgot_password: Lupa kata sandi?
+    invalid_reset_password_token: Token reset kata sandi tidak valid atau kedaluwarsa. Silakan minta yang baru.
     login: Masuk
     logout: Keluar
+    migrate_account: Pindah ke akun berbeda
+    migrate_account_html: Jika Anda ingin mengalihkan akun ini ke akun lain, Anda dapat <a href="%{path}">mengaturnya di sini</a>.
+    or_log_in_with: Atau masuk dengan
+    providers:
+      cas: CAS
+      saml: SAML
     register: Daftar
+    registration_closed: "%{instance} tidak menerima anggota baru"
     resend_confirmation: Kirim ulang email konfirmasi
     reset_password: Reset kata sandi
     security: Identitas
     set_new_password: Tentukan kata sandi baru
+    setup:
+      email_below_hint_html: Jika alamat surel di bawah tidak benar, Anda dapat menggantinya di sini dan menerima konfirmasi surel baru.
+      email_settings_hint_html: Konfirmasi surel telah dikirim ke %{email}. Jika alamat surel tidak benar, Anda dapat mengubahnya di setelan akun.
+      title: Atur
+    status:
+      account_status: Status akun
+      confirming: Menunggu konfirmasi surel diselesaikan.
+      functional: Akun Anda kini beroperasi penuh.
+      pending: Lamaran Anda sedang ditinjau oleh staf kami. Ini mungkin butuh beberapa waktu. Anda akan menerima sebuah surel jika lamaran Anda diterima.
+      redirecting_to: Akun Anda tidak aktif karena sekarang dialihkan ke %{acct}.
+    trouble_logging_in: Kesulitan masuk?
   authorize_follow:
+    already_following: Anda sudah mengikuti akun ini
     error: Sayangnya, ada error saat melihat akun remote
     follow: Ikuti
+    follow_request: 'Anda telah mengirim permintaan untuk mengikuti ke:'
+    following: 'Berhasil! Anda sekarang mengikuti:'
+    post_follow:
+      close: Atau Anda dapat menutup jendela ini.
+      return: Tampilkan profil pengguna
+      web: Ke web
     title: Mengikuti %{acct}
+  challenge:
+    confirm: Lanjut
+    hint_html: "<strong>Tip:</strong> Kami tidak akan meminta kata sandi Anda lagi untuk beberapa jam ke depan."
+    invalid_password: Kata sandi tidak valid
+    prompt: Konfirmasi kata sandi untuk melanjutkan
   datetime:
     distance_in_words:
       about_x_hours: "%{count}j"
@@ -515,115 +659,458 @@ id:
       x_minutes: "%{count}mnt"
       x_months: "%{count}bln"
       x_seconds: "%{count}dtk"
+  deletes:
+    challenge_not_passed: Informasi yang Anda masukkan salah
+    confirm_password: Masukkan kata sandi sekarang untuk memverifikasi identitas Anda
+    confirm_username: Masukkan nama pengguna untuk mengonfirmasi prosedur
+    proceed: Hapus akun
+    success_msg: Akun Anda berhasil dihapus
+    warning:
+      before: 'Sebelum melanjutkan, silakan baca catatan ini dengan hati-hati:'
+      caches: Konten yang telah tersimpan di server lain mungkin akan tetap di sana
+      data_removal: Kiriman Anda dan data lainnya akan dihapus secara permanen
+      email_change_html: Anda dapat <a href="%{path}">mengubah alamat surel Anda</a> tanpa perlu menghapus akun
+      email_contact_html: Jika pesan belum diterima, Anda dapat mengirim surel <a href="mailto:%{email}">%{email}</a> sebagai bantuan
+      email_reconfirmation_html: Jika Anda tidak menerima konfirmasi surel, <a href="%{path}">Anda dapat memintanya lagi</a>
+      irreversible: Anda tidak akan bisa lagi mengembalikan atau mengaktifkan kembali akun Anda
+      more_details_html: Lebih detailnya, lihat <a href="%{terms_path}">kebijakan privasi</a>.
+      username_available: Nama pengguna Anda akan tersedia lagi
+      username_unavailable: Nama pengguna Anda tetap tidak akan tersedia
+  directories:
+    directory: Direktori profil
+    explanation: Temukan pengguna berdasarkan minatnya
+    explore_mastodon: Jelajahi %{title}
+  domain_validator:
+    invalid_domain: bukan nama domain yang valid
   errors:
-    '400': The request you submitted was invalid or malformed.
+    '400': Permintaan yang dikirim tidak valid atau cacat.
     '403': Anda tidak mempunyai izin untuk melihat halaman ini.
     '404': Halaman yang anda cari tidak ditemukan
-    '406': This page is not available in the requested format.
+    '406': Halaman ini tidak tersedia dalam format yang diminta.
     '410': Halaman yang anda cari sudah tidak dapat ditemukan lagi.
     '422':
       content: Verifikasi keamanan gagal. Apa anda memblokir cookie?
       title: Verifikasi keamanan gagal
     '429': Throttled
-    '500': 
-    '503': The page could not be served due to a temporary server failure.
+    '500':
+      content: Maaf, ada sesuatu yang salah pada sistem kami.
+      title: Halaman ini tidak benar
+    '503': Halaman ini tidak dapat ditampilkan karena kegagalan server sementara.
+    noscript_html: Untuk menggunakan aplikasi web Mastodon, tolong aktifkan JavaScript. Sebagai alternatif, cobalah <a href="%{apps_path}">aplikasi murni</a> Mastodon untuk platform Anda.
+  existing_username_validator:
+    not_found: tidak dapat menemukan pengguna lokal dengan nama pengguna tersebut
+    not_found_multiple: tidak dapat menemukan %{usernames}
   exports:
+    archive_takeout:
+      date: Tanggal
+      download: Unduh arsip Anda
+      hint_html: Anda dapat meminta arsip <strong>toot dan media yang Anda unggah</strong>. Data yang terekspor akan berformat ActivityPub, dapat dibaca dengan perangkat lunak yang mendukungnya. Anda dapat meminta arsip akun setiap 7 hari.
+      in_progress: Mengompilasi arsip Anda...
+      request: Meminta arsip Anda
+      size: Ukuran
     blocks: Anda blokir
-    follows: Anda ikuti
+    csv: CSV
+    domain_blocks: Blokir domain
+    lists: Daftar
     mutes: Anda bisukan
     storage: Penyimpanan media
+  featured_tags:
+    add_new: Tambah baru
+    errors:
+      limit: Anda sudah menampilkan tagar unggulan dengan jumlah maksimum
+  filters:
+    contexts:
+      home: Beranda
+      notifications: Notifikasi
+      public: Linimasa publik
+      thread: Percakapan
+    edit:
+      title: Ubah saringan
+    errors:
+      invalid_context: Konteks tidak ada atau invalid
+    index:
+      delete: Hapus
+      empty: Anda tidak memiliki filter.
+      title: Saringan
+    new:
+      title: Tambah saringan baru
+  footer:
+    developers: Pengembang
+    more: Lainnya…
+    resources: Sumber daya
+    trending_now: Sedang tren
   generic:
+    all: Semua
     changes_saved_msg: Perubahan berhasil disimpan!
+    copy: Salin
+    order_by: Urut berdasarkan
     save_changes: Simpan perubahan
+    validation_errors:
+      other: Ada yang belum benar! Silakan tinjau %{count} kesalahan di bawah ini
+  html_validator:
+    invalid_markup: 'berisi markup HTML yang tidak valid: %{error}'
+  identity_proofs:
+    active: Aktif
+    authorize: Ya, izinkan
+    authorize_connection_prompt: Izinkan koneksi kriptografi ini?
+    errors:
+      failed: Koneksi kriptografi gagal. Silakan coba lagi dari %{provider}.
+      keybase:
+        invalid_token: Token Keybase adalah sandi tanda tangan dan harus berupa 66 karakter hex
+        verification_failed: Keybase tidak mengenali token ini sebagai tanda tangan pengguna Keybase %{kb_username}. Silakan ulangi lagi dari Keybase.
+      wrong_user: Tidak dapat membuat bukti untuk %{proving} saat masuk sebagai %{current}. Masuk sebagai %{proving} dan coba lagi.
+    explanation_html: Anda dapat mengoneksikan identitas lain secara kriptografi, seperti profil Keybase. Ini mengizinkan orang lain untuk mengirim pesan terenkripsi kepada Anda dan mempercayai konten yang Anda kirim.
+    i_am_html: Saya adalah %{username} di %{service}.
+    identity: Identitas
+    inactive: Tidak aktif
+    publicize_checkbox: 'Dan toot ini:'
+    publicize_toot: 'Terbukti! Saya adalah %{username} di %{service}: %{url}'
+    status: Status verifikasi
+    view_proof: Lihat bukti
   imports:
+    modes:
+      merge: Gabung
+      merge_long: Pertahankan rekaman yang sudah ada dan buat baru
+      overwrite: Timpa
+      overwrite_long: Ganti rekaman sekarang dengan yang baru
     preface: Anda bisa mengimpor data tertentu seperti orang-orang yang anda ikuti atau anda blokir di server ini, dari file yang dibuat oleh fitur expor di server lain.
     success: Data anda berhasil diupload dan akan diproses sesegera mungkin
     types:
       blocking: Daftar diblokir
+      domain_blocking: Daftar blokir domain
       following: Daftar diikuti
       muting: Daftar didiamkan
     upload: Unggah
+  in_memoriam_html: Dalam memori.
   invites:
+    delete: Nonaktifkan
+    expired: Kedaluwarsa
     expires_in:
-      '1800': 30 minutes
-      '21600': 6 hours
-      '3600': 1 hour
-      '43200': 12 hours
-      '604800': 1 week
-      '86400': 1 day
+      '1800': 30 menit
+      '21600': 6 jam
+      '3600': 1 jam
+      '43200': 12 jam
+      '604800': 1 minggu
+      '86400': 1 hari
+    expires_in_prompt: Tak pernah
+    generate: Buat tautan undangan
+    invited_by: 'Anda diundang oleh:'
+    max_uses:
+      other: "%{count} penggunaan"
+    max_uses_prompt: Tanpa batas
+    prompt: Buat dan bagikan tautan dengan yang lain untuk mendapatkan akses ke server ini
+    table:
+      expires_at: Kedaluwarsa
+      uses: Penggunaan
+    title: Undang orang
+  lists:
+    errors:
+      limit: Daftar Anda telah mencapai jumlah maksimum
   media_attachments:
     validations:
       images_and_video: Tidak bisa melampirkan video pada status yang telah memiliki gambar
       too_many: Tidak dapat melampirkan lebih dari 4 file
+  migrations:
+    acct: Pindah ke
+    cancel: Batalkan peralihan
+    cancel_explanation: Membatalkan peralihan akan mengaktivasi ulang akun sekarang, tetapi tidak akan mengembalikan pengikut yang telah pindah ke akun baru.
+    cancelled_msg: Pembatalan peralihan berhasil.
+    errors:
+      already_moved: adalah akun yang sama yang sudah Anda pindahkan ke
+      move_to_self: tidak boleh akun sekarang
+      not_found: tidak dapat ditemukan
+    followers_count: Jumlah pengikut saat migrasi
+    incoming_migrations: Pindah dari akun berbeda
+    incoming_migrations_html: Untuk pindah dari akun lain ke sini, Anda harus <a href="%{path}">membuat alias akun</a> terlebih dahulu.
+    moved_msg: Akun Anda dialihkan ke %{acct} dan pengikut Anda akan ikut dipindahkan.
+    not_redirecting: Saat ini akun Anda tidak dialihkan ke akun lain.
+    on_cooldown: Anda baru saja memindahkan akun Anda. Fungsi ini akan tersedia kembali %{count} hari lagi.
+    proceed_with_move: Pindahkan pengikut
+    redirecting_to: Akun Anda dialihkan ke %{acct}.
+    set_redirect: Atur peralihan
+    warning:
+      before: 'Sebelum lanjut, mohon perhatikan catatan ini:'
+      cooldown: Setelah pindah akun adalah masa tenang, masa Anda tidak dapat pindah akun lagi
+      followers: Tindakan ini akan memindah semua pengikut Anda dari akun sekarang ke akun baru
+      other_data: Tidak akan ada data lagi yang dipindahkan secara otomatis
+      redirect: Pemberitahuan peralihan akan dimunculkan pada akun profil Anda dan akun akan dikecualikan dari pencarian
+  moderation:
+    title: Moderasi
   notification_mailer:
     digest:
+      action: Lihat semua notifikasi
       body: Ini adalah ringkasan singkat yang anda lewatkan pada sejak kunjungan terakhir anda pada %{since}
       mention: "%{name} menyebut anda di:"
       new_followers_summary:
         other: Anda mendapatkan %{count} pengikut baru! Luar biasa!
       subject:
         other: "%{count} notifikasi baru sejak kunjungan terakhir anda pada \U0001F418"
+      title: Saat Anda tidak muncul...
     favourite:
       body: 'Status anda disukai oleh %{name}:'
       subject: "%{name} menyukai status anda"
+      title: Favorit baru
     follow:
       body: "%{name} mengikuti anda!"
       subject: "%{name} menjadi pengikut anda"
+      title: Pengikut baru
     follow_request:
+      action: Kelola permintaan mengikuti
       body: "%{name} meminta untuk mengikuti anda"
       subject: 'Pengikut menunggu: %{name}'
+      title: Permintaan mengikuti baru
     mention:
+      action: Balas
       body: 'Anda disebut oleh %{name} pada:'
       subject: Anda disebut oleh %{name}
+      title: Sebutan baru
     reblog:
       body: 'Status anda di-boost oleh %{name}:'
       subject: "%{name} mem-boost status anda"
+      title: Boost baru
+  notifications:
+    other_settings: Pengaturan notifikasi lain
+  number:
+    human:
+      decimal_units:
+        format: "%n%u"
+        units:
+          billion: M
+          million: Jt
+          quadrillion: Kdt
+          thousand: Rb
+          trillion: T
   pagination:
+    newer: Lebih baru
     next: Selanjutnya
+    older: Lebih lama
     prev: Sebelumnya
+    truncate: "&hellip;"
+  polls:
+    errors:
+      already_voted: Anda sudah mengikuti japat ini
+      duplicate_options: berisi item ganda
+      duration_too_short: terlalu cepat
+      expired: Japat telah berakhir
+      invalid_choice: Opsi pilihan yang dipilih tidak ada
+      over_character_limit: tidak boleh lebih dari %{max} karakter
+      too_few_options: harus punya lebih dari satu item
+      too_many_options: tidak boleh berisi lebih dari %{max} item
+  preferences:
+    other: Lainnya
+    posting_defaults: Kiriman bawaan
+    public_timelines: Linimasa publik
+  relationships:
+    activity: Aktivitas akun
+    dormant: Terbengkalai
+    followers: Pengikut
+    following: Mengikuti
+    last_active: Terakhir aktif
+    most_recent: Terkini
+    moved: Dipindah
+    mutual: Mutual
+    primary: Utama
+    relationship: Hubungan
+    remove_selected_domains: Hapus semua pengikut dari domain yang dipilih
+    remove_selected_followers: Hampus pengikut yang dipilih
+    remove_selected_follows: Batal ikuti pengguna terpilih
+    status: Status akun
   remote_follow:
     acct: Masukkan namapengguna@domain yang akan anda ikuti
     missing_resource: Tidak dapat menemukan URL redirect dari akun anda
+    no_account_html: Tidak memiliki akun? Anda dapat <a href='%{sign_up_path}' target='_blank'>mendaftar di sini</a>
     proceed: Lanjutkan untuk mengikuti
     prompt: 'Anda akan mengikuti:'
+    reason_html: "<strong>Mengapa langkah ini penting?</strong> <code>%{instance}</code> mungkin saja bukan tempat Anda mendaftar, sehingga kami perlu mengalihkan Anda ke server beranda lebih dahulu."
+  remote_interaction:
+    favourite:
+      proceed: Lanjutkan ke favorit
+      prompt: 'Anda ingin memfavoritkan toot ini:'
+    reblog:
+      proceed: Lanjutkan ke boost
+      prompt: 'Anda ingin mem-boost toot ini:'
+    reply:
+      proceed: Lanjutkan ke balasan
+      prompt: 'Anda ingin membalas toot ini:'
+  scheduled_statuses:
+    over_daily_limit: Anda telah melampaui batas %{limit} toot terjadwal untuk sehari
+    over_total_limit: Anda telah melampaui batas %{limit} toot terjadwal
+    too_soon: Tanggal terjadwal haruslah pada hari yang akan datang
+  sessions:
+    activity: Aktivitas terakhir
+    browser: Peramban
+    browsers:
+      alipay: Alipay
+      blackberry: Blackberry
+      chrome: Chrome
+      edge: Microsoft Edge
+      electron: Electron
+      firefox: Firefox
+      generic: Peramban tidak dikenal
+      ie: Internet Explorer
+      micro_messenger: MicroMessenger
+      nokia: Peramban Nokia S40 Ovi
+      opera: Opera
+      otter: Otter
+      phantom_js: PhantomJS
+      qq: QQ Browser
+      safari: Safari
+      uc_browser: UCBrowser
+      weibo: Weibo
+    current_session: Sesi sekarang
+    description: "%{browser} di %{platform}"
+    explanation: Ini peramban yang sedang dalam posisi masuk akun Mastodon Anda.
+    ip: IP
+    platforms:
+      adobe_air: Adobe Air
+      android: Android
+      blackberry: Blackberry
+      chrome_os: ChromeOS
+      firefox_os: Firefox OS
+      ios: iOS
+      linux: Linux
+      mac: Mac
+      other: platform yang tidak diketahui
+      windows: Windows
+      windows_mobile: Windows Mobile
+      windows_phone: Windows Phone
+    revoke: Cabut izin
+    revoke_success: Sesi berhasil dicabut
+    title: Sesi
   settings:
+    account: Akun
+    account_settings: Pengaturan akun
+    aliases: Alias akun
+    appearance: Tampilan
     authorized_apps: Apl yang diizinkan
     back: Kembali ke Mastodon
+    delete: Penghapusan akun
+    development: Pengembangan
     edit_profile: Ubah profil
     export: Expor data
+    featured_tags: Tagar unggulan
+    identity_proofs: Bukti identitas
     import: Impor
+    import_and_export: Impor dan ekspor
+    migrate: Pemindahan akun
+    notifications: Notifikasi
     preferences: Pilihan
+    profile: Profil
+    relationships: Ikuti dan pengikut
     two_factor_authentication: Autentikasi Two-factor
+  spam_check:
+    spam_detected: Ini adalah laporan otomatis. Spam terdeteksi.
   statuses:
+    attached:
+      description: 'Terlampir: %{attached}'
+      image:
+        other: "%{count} gambar"
+      video:
+        other: "%{count} video"
+    boosted_from_html: Boost dari %{acct_link}
+    content_warning: 'Peringatan konten: %{warning}'
+    disallowed_hashtags:
+      other: 'berisi tagar yang tidak diizinkan: %{tags}'
+    language_detection: Deteksi bahasa secara otomatis
     open_in_web: Buka di web
     over_character_limit: melebihi %{max} karakter
+    pin_errors:
+      limit: Anda sudah mencapai jumlah maksimum toot yang dapat disematkan
+      ownership: Toot orang lain tidak bisa disematkan
+      private: Toot privat tidak bisa disematkan
+      reblog: Boost tidak bisa disematkan
+    poll:
+      total_people:
+        other: "%{count} orang"
+      total_votes:
+        other: "%{count} memilih"
+      vote: Memilih
     show_more: Tampilkan selengkapnya
+    sign_in_to_participate: Masuk untuk mengikuti percakapan
+    title: '%{name}: "%{quote}"'
     visibilities:
       private: Khusus pengikut
       private_long: Hanya tampilkan ke pengikut
       public: Publik
       public_long: Bisa dilihat semua orang
       unlisted: Bisa dilihat semua orang, tapi tidak ditampilkan di linimasa publik
+      unlisted_long: Tidak terdaftar di linimasa publik tetapi siapapun dapat melihat
   stream_entries:
+    pinned: Toot tersemat
     reblogged: di-boost-kan
     sensitive_content: Konten sensitif
+  tags:
+    does_not_match_previous_name: tidak cocok dengan nama sebelumnya
+  terms:
+    title: "%{instance} Ketentuan Layanan dan Kebijakan Privasi"
+  themes:
+    contrast: Mastodon (Kontras tinggi)
+    default: Mastodon (Gelap)
+    mastodon-light: Mastodon (Terang)
   time:
     formats:
       default: "%d %b %Y, %H:%M"
+      month: "%b %Y"
   two_factor_authentication:
     code_hint: Masukkan kode yang dibuat oleh app autentikator sebagai konfirmasi
     description_html: Jika anda menaktifkan ototentikasi dua faktor, saat login anda harus menggunakan telepon anda  untuk membuat token supaya anda bisa masuk.
     disable: Matikan
     enable: Aktifkan
+    enabled: Otentifikasi dua faktor aktif
     enabled_success: Ototentikasi dua faktor telah diaktifkan
     generate_recovery_codes: Buat Kode Pemulihan
     instructions_html: "<strong>Pindai kode QR ini pada Otentikator Google anda atau aplikasi TOTP lainnya di telepon anda</strong>. Mulai sekarang, aplikasi tersebut akan membuat token yang bisa anda gunakan untuk login."
     lost_recovery_codes: Kode pemulihan bisa anda gunakan untuk mendapatkan kembali akses pada akun anda jika anda kehilangan handphone anda. Jika anda kehilangan kode pemulihan, anda bisa membuatnya ulang disini. Kode pemulihan anda yang lama tidak akan bisa digunakan lagi.
     manual_instructions: 'Jika anda tidak bisa memindai kode QR dan harus memasukkannya secara manual, ini dia kode yang harus dimasukkan:'
+    recovery_codes: Kode pemulihan cadangan
     recovery_codes_regenerated: Kode Pemulihan berhasil dibuat ulang
     recovery_instructions_html: Jika anda kehilangan akses pada handphone anda, anda bisa menggunakan kode pemulihan dibawah ini untuk mendapatkan kembali akses pada akun anda. Simpan kode pemulihan anda baik-baik, misalnya dengan mencetaknya atau menyimpannya bersama dokumen penting lainnya.
     setup: Persiapan
     wrong_code: Kode yang dimasukkan tidak cocok! Apa waktu server dan waktu di handphone sudah cocok?
+  user_mailer:
+    backup_ready:
+      explanation: Cadangan penuh akun Mastodon Anda sudah dapat diunduh!
+      subject: Arsip Anda sudah siap diunduh
+      title: Ambil arsip
+    warning:
+      explanation:
+        disable: Saat akun Anda beku, data Anda tetap utuh. Anda tidak akan dapat melakukan apa-apa sampai akun Anda tidak lagi dikunci.
+        silence: Saat akun Anda dibatasi, hanya akun yang Anda ikuti yang dapat melihat toot Anda di server ini. Akun Anda mungkin akan dikecualikan dari daftar publik. Akun lain dapat mengikuti akun Anda secara manual.
+        suspend: Akun Anda telah ditangguhkan. Semua toot dan media yang Anda unggah dihapus secara permanen dari server ini, dan server tempat Anda memiliki pengikut.
+      get_in_touch: Anda dapat membalas surel ini untuk menghubungi pengurus %{instance}.
+      review_server_policies: Tinjau kebijakan server
+      statuses: 'Khususnya untuk:'
+      subject:
+        disable: Akun Anda %{acct} telah dibekukan
+        none: Peringatan untuk %{acct}
+        silence: Akun Anda %{acct} telah dibatasi
+        suspend: Akun Anda %{acct} telah ditangguhkan
+      title:
+        disable: Akun dibekukan
+        none: Peringatan
+        silence: Akun dibatasi
+        suspend: Akun ditangguhkan
+    welcome:
+      edit_profile_action: Siapkan profil
+      edit_profile_step: Anda dapat menyesuaikan profil Anda dengan mengunggah avatar, kepala, mengubah tampilan nama dan lainnya. Jika Anda ingin meninjau pengikut baru sebelum Anda terima sebagai pengikut, Anda dapat mengunci akun Anda.
+      explanation: Beberapa tips sebelum Anda memulai
+      final_action: Mulai mengirim
+      final_step: 'Mulai mengirim! Tanpa pengikut, pesan publik Anda akan tetap dapat dilihat oleh akun lain, contohnya di linimasa lokal atau di tagar. Anda mungkin ingin memperkenalkan diri dengan tagar #introductions.'
+      full_handle_hint: Ini yang dapat Anda sampaikan kepada teman agar mereka dapat mengirim pesan atau mengikuti Anda dari server lain.
+      review_preferences_action: Ubah preferensi
+      review_preferences_step: Pastikan Anda telah mengatur preferensi Anda, seperti surel untuk menerima pesan, atau tingkat privasi bawaan untuk kiriman Anda. Jika Anda tidak alergi dengan gerakan gambar, Anda dapat mengaktifkan opsi mainkan otomatis GIF.
+      subject: Selamat datang di Mastodon
+      tip_following: Anda secara otomatis mengikuti admin server. Untuk mencari akun-akun yang menarik, silakan periksa linimasa lokal dan gabungan.
+      tip_mobile_webapp: Jika peramban mobile Anda ingin menambahkan Mastodon ke layar utama, Anda dapat menerima notifikasi dorong. Ia akan berjalan seperti aplikasi asli!
+      tips: Tips
+      title: Selamat datang, %{name}!
   users:
+    follow_limit_reached: Anda tidak dapat mengikuti lebih dari %{limit} orang
     invalid_email: Alamat email tidak cocok
     invalid_otp_token: Kode dua faktor tidak cocok
+    otp_lost_help_html: Jika Anda kehilangan akses keduanya, Anda dapat menghubungi %{email}
+    seamless_external_login: Anda masuk via layanan eksternal, sehingga setelan kata sandi dan surel tidak tersedia.
+    signed_in_as: 'Masuk sebagai:'
+  verification:
+    explanation_html: 'Anda dapat <strong>memverifikasi diri Anda sebagai pemiliki tautan pada metadata profil</strong>. Situsweb yang ditautkan haruslah berisi tautan ke profil Mastodon Anda. Tautan tersebut <strong>harus</strong> memiliki atribut <code>rel="me"</code>. Isi teks tautan tidaklah penting. Ini contohnya:'
+    verification: Verifikasi
diff --git a/config/locales/io.yml b/config/locales/io.yml
index 2b3e5069173f29841aaba51144cc9c59d88f7bb2..4e426e469acb40f6213f3442cd9b15bb1bdbbf6e 100644
--- a/config/locales/io.yml
+++ b/config/locales/io.yml
@@ -84,7 +84,6 @@ io:
     '503': The page could not be served due to a temporary server failure.
   exports:
     blocks: Tu blokusas
-    follows: Tu sequas
     storage: Konservado di kontenajo
   generic:
     changes_saved_msg: Chanji senprobleme konservita!
diff --git a/config/locales/is.yml b/config/locales/is.yml
new file mode 100644
index 0000000000000000000000000000000000000000..a4d21deb260085ad6a6aac3f6a51aafb17b55da1
--- /dev/null
+++ b/config/locales/is.yml
@@ -0,0 +1,1193 @@
+---
+is:
+  about:
+    about_hashtag_html: Þetta eru opinber tíst sem merkt eru með <strong>#%{hashtag}</strong>. Þú getur unnið með þau ef þú ert með skráðan aðgang einhversstaðar í skýjasambandinu.
+    about_mastodon_html: 'Samfélagsnet framtíðarinnar: Engar auglýsingar, ekkert eftirlit stórfyrirtækja, siðleg hönnun og engin miðstýring! Þú átt þín eigin gögn í Mastodon!'
+    about_this: Um hugbúnaðinn
+    active_count_after: virkt
+    active_footnote: Mánaðarlega virkir notendur (MAU)
+    administered_by: 'Stýrt af:'
+    api: API-kerfisviðmót
+    apps: Farsímaforrit
+    apps_platforms: Notaðu Mastodon frá iOS, Android og öðrum stýrikerfum
+    browse_directory: Skoða notandasniðamöppu og sía eftir áhugamálum
+    browse_local_posts: Skoðaðu kvikt streymi af opinberum færslum á þessum vefþjóni
+    browse_public_posts: Skoðaðu kvikt streymi af opinberum færslum á Mastodon
+    contact: Hafa samband
+    contact_missing: Ekki skilgreint
+    contact_unavailable: Ekki til staðar
+    discover_users: Uppgötva notendur
+    documentation: Hjálparskjöl
+    federation_hint_html: Með notandaaðgangi á %{instance} geturðu fylgst með fólki á hvaða Mastodon-þjóni sem er og reyndar víðar.
+    get_apps: Prófaðu farsímaforrit
+    hosted_on: Mastodon hýst á %{domain}
+    instance_actor_flash: |
+      Þessi aðgangur er sýndarnotandi sem er notaður til að tákna sjálfan vefþjóninn en ekki neinn einstakan notanda.
+      Tilgangur hans tengist virkni vefþjónasambandsins og ætti alls ekki að loka á hann nema að þú viljir útiloka allan viðkomandi vefþjón, en þá ætti frekar að útiloka sjálft lénið.
+    learn_more: Kanna nánar
+    privacy_policy: Persónuverndarstefna
+    see_whats_happening: Sjáðu hvað er í gangi
+    server_stats: 'Tölfræði þjóns:'
+    source_code: Grunnkóði
+    status_count_after:
+      one: stöðufærsla
+      other: stöðufærslur
+    status_count_before: Sem stóðu fyrir
+    tagline: Fylgstu með vinum og uppgötvaðu nýja
+    terms: Þjónustuskilmálar
+    unavailable_content: Ekki tiltækt efni
+    unavailable_content_description:
+      domain: Vefþjónn
+      reason: Ástæða
+      rejecting_media: 'Myndefnisskrár frá þessum vefþjónum verða hvorki birtar né geymdar og engar smámyndir frá þeim birtar, sem krefst þess að smellt sé handvirkt til að nálgast upprunalegu skrárnar:'
+      silenced: 'Færslur frá þessum vefþjónum verða faldar í opinberum tímalínum og samtölum, auk þess sem engar tilkynningar verða til þvið aðgerðir notendanna, nema ef þú fylgist með þeim:'
+      suspended: 'Engin gögn frá þessum vefþjónum verða unnin, geymd eða skipst á, sem gerir samskipti við notendur frá þessum vefþjónum ómöguleg:'
+    unavailable_content_html: Mastodon leyfir þér almennt að skoða og eiga við efni frá notendum frá hvaða vefþjóni sem er í vefþjónasambandinu. Þetta eru þær undantekningar sem hafa verið gerðar á þessum tiltekna vefþjóni.
+    user_count_after:
+      one: notanda
+      other: notendur
+    user_count_before: Hýsir
+    what_is_mastodon: Hvað er Mastodon?
+  accounts:
+    choices_html: "%{name} hefur valið:"
+    endorsements_hint: Þú getur auglýst efni frá fólki sem þú fylgir í vefviðmótinu og mun það birtast hér.
+    featured_tags_hint: Þú getur gefið sérstökum myllumerkjum aukið vægi og birtast þau þá hér.
+    follow: Fylgja
+    followers:
+      one: fylgjandi
+      other: fylgjendur
+    following: Fylgist með
+    joined: Gerðist þátttakandi %{date}
+    last_active: síðasta virkni
+    link_verified_on: Eignarhald á þessum tengli var athugað þann %{date}
+    media: Myndskrár
+    moved_html: "%{name} hefur verið færður í %{new_profile_link}:"
+    network_hidden: Þessar upplýsingar ekki tiltækar
+    never_active: Aldrei
+    nothing_here: Það er ekkert hér!
+    people_followed_by: Fólk sem %{name} fylgist með
+    people_who_follow: Fólk sem fylgist með %{name}
+    pin_errors:
+      following: Þú þarft að vera þegar að fylgjast með þeim sem þú ætlar að mæla með
+    posts:
+      one: Tíst
+      other: Tíst
+    posts_tab_heading: Tíst
+    posts_with_replies: Tíst og svör
+    reserved_username: Notandanafnið er frátekið
+    roles:
+      admin: Stjóri
+      bot: Róbót
+      group: Hópur
+      moderator: Umsjón
+    unavailable: Notandasnið ekki tiltækt
+    unfollow: Hætta að fylgja
+  admin:
+    account_actions:
+      action: Framkvæma aðgerð
+      title: Framkvæma umsjónaraðgerð á %{acct}
+    account_moderation_notes:
+      create: Skilja eftir minnispunkt
+      created_msg: Tókst að útbúa minnispunkt umsjónarmanns!
+      delete: Eyða
+      destroyed_msg: Tókst að eyða minnispunkti umsjónarmanns!
+    accounts:
+      approve: Samþykkja
+      approve_all: Samþykkja allt
+      are_you_sure: Ertu viss?
+      avatar: Auðkennismynd
+      by_domain: Lén
+      change_email:
+        changed_msg: Tölvupóstfangi notandaaðgangsins hefur verið breytt!
+        current_email: Núverandi tölvupóstfang
+        label: Breyta tölvupóstfangi
+        new_email: Nýr tölvupóstur
+        submit: Breyta tölvupóstfangi
+        title: Breyta tölvupóstfangi fyrir %{username}
+      confirm: Staðfesta
+      confirmed: Staðfest
+      confirming: Staðfesti
+      deleted: Eytt
+      demote: Lækka í tign
+      disable: Gera óvirkt
+      disable_two_factor_authentication: Gera tveggja-þátta auðkenningu óvirka
+      disabled: Óvirkt
+      display_name: Birtingarnafn
+      domain: Lén
+      edit: Breyta
+      email: Tölvupóstur
+      email_status: Staða tölvupósts
+      enable: Virkja
+      enabled: Virkt
+      followers: Fylgjendur
+      follows: Fylgist með
+      header: Haus
+      inbox_url: Slóð á innhólf
+      invited_by: Boðið af
+      ip: IP-vistfang
+      joined: Gerðist þátttakandi
+      location:
+        all: Allt
+        local: Staðvært
+        remote: Fjartengt
+        title: Staðsetning
+      login_status: Staða innskráningar
+      media_attachments: Myndaviðhengi
+      memorialize: Breya í minningargrein
+      moderation:
+        active: Virkur
+        all: Allt
+        pending: Í bið
+        silenced: Hulið
+        suspended: Í bið
+        title: Umsjón
+      moderation_notes: Minnispunktar umsjónarmanna
+      most_recent_activity: Allra nýjasta virkni
+      most_recent_ip: Nýjasta IP-vistfang
+      no_account_selected: Engum aðgöngum var breytt þar sem engir voru valdir
+      no_limits_imposed: Engra takmarka krafist
+      not_subscribed: Ekki í áskrift
+      pending: Bíður eftir yfirlestri
+      perform_full_suspension: Setja í bið
+      promote: Hækka í tign
+      protocol: Samskiptamáti
+      public: Opinber
+      push_subscription_expires: PuSH-áskrift rennur út
+      redownload: Endurlesa notandasnið
+      reject: Hafna
+      reject_all: Hafna öllu
+      remove_avatar: Fjarlægja auðkennismynd
+      remove_header: Fjarlægja haus
+      resend_confirmation:
+        already_confirmed: Þessi notandi hefur þegar verið staðfestur
+        send: Senda staðfestingartölvupóst aftur
+        success: Það tókst að senda staðfestingartölvupóst!
+      reset: Endurstilla
+      reset_password: Endurstilla lykilorð
+      resubscribe: Gerast áskrifandi aftur
+      role: Heimildir
+      roles:
+        admin: Stjórnandi
+        moderator: Umsjónarmaður
+        staff: Starfsmaður
+        user: Notandi
+      search: Leita
+      search_same_ip: Aðrir notendur með sama IP-vistfang
+      shared_inbox_url: Slóð á sameiginlegt innhólf
+      show:
+        created_reports: Gerðar kærur
+        targeted_reports: Kært af öðrum
+      silence: Hylja
+      silenced: Hulið
+      statuses: Stöðufærslur
+      subscribe: Gerast áskrifandi
+      suspended: Í bið
+      time_in_queue: Bíður í biðröð %{time}
+      title: Notandaaðgangar
+      unconfirmed_email: Óstaðfestur tölvupóstur
+      undo_silenced: Hætta að hylja
+      undo_suspension: Taka úr bið
+      unsubscribe: Taka úr áskrift
+      username: Notandanafn
+      warn: Aðvara
+      web: Vefur
+      whitelisted: Á lista yfir leyft
+    action_logs:
+      actions:
+        assigned_to_self_report: "%{name} úthlutaði skýrslu %{target} til sín"
+        change_email_user: "%{name} breytti tölvupóstfangi fyrir notandann %{target}"
+        confirm_user: "%{name} staðfesti tölvupóstfang fyrir notandann %{target}"
+        create_account_warning: "%{name} sendi aðvörun til %{target}"
+        create_custom_emoji: "%{name} sendi inn nýtt tjáningartákn %{target}"
+        create_domain_allow: "%{name} setti lén %{target} á lista yfir leyft"
+        create_domain_block: "%{name} útilokaði lénið %{target}"
+        create_email_domain_block: "%{name} setti póstlén %{target} á lista yfir bannað"
+        demote_user: "%{name} lækkaði notandann %{target} í tign"
+        destroy_custom_emoji: "%{name} henti út tjáningartákninu %{target}"
+        destroy_domain_allow: "%{name} fjarlægði lén %{target} af lista yfir leyft"
+        destroy_domain_block: "%{name} aflétti útilokun af léninu %{target}"
+        destroy_email_domain_block: "%{name} setti póstlén %{target} á lista yfir leyft"
+        destroy_status: "%{name} fjarlægði stöðufærslu frá %{target}"
+        disable_2fa_user: "%{name} gerði tveggja-þátta auðkenningu óvirka fyrir notandann %{target}"
+        disable_custom_emoji: "%{name} gerði tjáningartáknið %{target} óvirkt"
+        disable_user: "%{name} gerðir innskráningu óvirka fyrir notandann %{target}"
+        enable_custom_emoji: "%{name} gerði tjáningartáknið %{target} virkt"
+        enable_user: "%{name} gerðir innskráningu virka fyrir notandann %{target}"
+        memorialize_account: "%{name} breytti notandaaðgangnum %{target} í minningargreinarsíðu"
+        promote_user: "%{name} hækkaði notandann %{target} í tign"
+        remove_avatar_user: "%{name} fjarlægði auðkennismynd af %{target}"
+        reopen_report: "%{name} enduropnaði skýrslu %{target}"
+        reset_password_user: "%{name} endurstillti lykilorð fyrir notandann %{target}"
+        resolve_report: "%{name} leysti skýrslu %{target}"
+        silence_account: "%{name} gerði notandaaðganginn %{target} hulinn"
+        suspend_account: "%{name} setti notandaaðganginn %{target} í bið"
+        unassigned_report: "%{name} fjarlægði úthlutun af skýrslu %{target}"
+        unsilence_account: "%{name} hætti að hylja notandaaðganginn %{target}"
+        unsuspend_account: "%{name} tók notandaaðganginn %{target} úr bið"
+        update_custom_emoji: "%{name} uppfærði tjáningartákn %{target}"
+        update_status: "%{name} uppfærði stöðufærslu frá %{target}"
+      deleted_status: "(eydd stöðufærsla)"
+      title: Atvikaskrá
+    custom_emojis:
+      assign_category: Úthluta flokki
+      by_domain: Lén
+      copied_msg: Það tókst að búa til afrit af tjáningartákninu
+      copy: Afrita
+      copy_failed_msg: Ekki tókst að gera staðvært afrit af tjáningartákninu
+      create_new_category: Búa til nýjan flokk
+      created_msg: Tókst að búa til tjáningartákn!
+      delete: Eyða
+      destroyed_msg: Tókst að eyða tjáningartákni!
+      disable: Gera óvirkt
+      disabled: Óvirkt
+      disabled_msg: Tókst að gera þetta tjáningartákn óvirkt
+      emoji: Tjáningartákn
+      enable: Virkja
+      enabled: Virkt
+      enabled_msg: Tókst að gera þetta tjáningartákn virkt
+      image_hint: PNG allt að 50KB
+      list: Listi
+      listed: Skráð
+      new:
+        title: Bæta við nýju sérsniðnu tjáningartákni
+      overwrite: Skrifa yfir
+      shortcode: Stuttkóði
+      shortcode_hint: Að minnsta kosti 2 stafir, einungis tölu- og bókstafir ásamt undirstrikum
+      title: Sérsniðin tjáningartákn
+      uncategorized: Óflokkað
+      unlist: Afskrá
+      unlisted: Óskráð
+      update_failed_msg: Gat ekki uppfært þetta tjáningartákn
+      updated_msg: Tókst að uppfæra tjáningartákn!
+      upload: Senda inn
+    dashboard:
+      authorized_fetch_mode: Öruggur hamur
+      backlog: bakskráð verk
+      config: Stillingar
+      feature_deletions: Eyðingar notandaaðganga
+      feature_invites: Boðstenglar
+      feature_profile_directory: Notandasniðamappa
+      feature_registrations: Nýskráningar
+      feature_relay: Sambandsendurvarpi
+      feature_spam_check: Ruslpóstvarnir
+      feature_timeline_preview: Forskoðun tímalínu
+      features: Eiginleikar
+      hidden_service: Skýjasamband með faldar þjónustur
+      open_reports: opnar kærur
+      pending_tags: myllumerki bíða eftir yfirferð
+      pending_users: notendur bíða eftir yfirferð
+      recent_users: Nýlegir notendur
+      search: Leit í öllum texta
+      single_user_mode: Eins-notandahamur
+      software: Hugbúnaður
+      space: Notkun geymslurýmis
+      title: Stjórnborð
+      total_users: notendur alls
+      trends: Tilhneiging
+      week_interactions: aðgerðir í þessari viku
+      week_users_active: virkir í þessari viku
+      week_users_new: notendur þessari viku
+      whitelist_mode: Hamur til að leyfa (whitelist)
+    domain_allows:
+      add_new: Setja lén á lista yfir leyft
+      created_msg: Það tókst að setja lénið á lista yfir leyft
+      destroyed_msg: Lénið hefur verið fjarlægt af lista yfir leyft
+      undo: Fjarlægja af lista yfir leyft
+    domain_blocks:
+      add_new: Bæta við nýrri útilokun á léni
+      created_msg: Útilokun léns er núna í vinnslu
+      destroyed_msg: Útilokun léns hefur verið aflétt
+      domain: Lén
+      edit: Breyta útilokun léns
+      existing_domain_block_html: Þú ert þegar búin/n að setja strangari takmörk á %{name}, þú þarft fyrst að <a href="%{unblock_url}">aflétta útilokun</a> á því.
+      new:
+        create: Búa til útilokun
+        hint: Útilokun lénsins mun ekki koma í veg fyrir gerð aðgangsfærslna í gagnagrunninum, en mun afturvirkt og sjálfvirkt beita sérstökum umsjónaraðferðum á þessa aðganga.
+        severity:
+          desc_html: "<strong>Hylja</strong> mun gera færslur á notandaaðgangnum ósýnilegar öllum þeim sem ekki eru að fylgjast með þeim. <strong>Setja í bið</strong> mun fjarlægja allt efni á notandaaðgangnum, myndgögn og gögn á notandasniði. Notaðu <strong>Ekkert</strong> ef þú ætlar bara að hafna margmiðlunarskrám."
+          noop: Ekkert
+          silence: Hylja
+          suspend: Setja í bið
+        title: Ný útilokun á léni
+      private_comment: Einkaathugasemd
+      private_comment_hint: Athugasemd um þessa útilokun á léni til innanhússnotkunar fyrir umsjónarmenn.
+      public_comment: Opinber athugasemd
+      public_comment_hint: Athugasemd um þessa útilokun á léni til almennings, ef virkt er að auglýsa listann með lénatakmörkunum.
+      reject_media: Hafna myndskrám
+      reject_media_hint: Fjarlægir staðværar myndefnisskrár úr geymslu og neitar framvegis að sækja neinar slíkar. Skiptir ekki máli fyrir biðstöður
+      reject_reports: Hafna kærum
+      reject_reports_hint: Hunsa allar kærur frá þessu léni. Skiptir ekki máli fyrir biðstöður
+      rejecting_media: hafna myndskrám
+      rejecting_reports: hafna kærum
+      severity:
+        silence: hulið
+        suspend: í bið
+      show:
+        affected_accounts:
+          one: Einn notandaaðgangur í gagnagrunninum kemur við sögu
+          other: "%{count} notendaaðgangar í gagnagrunninum koma við sögu"
+        retroactive:
+          silence: Hætta að hylja viðkomandi notendaaðganga frá þessu léni
+          suspend: Taka úr bið viðkomandi notendaaðganga frá þessu léni
+        title: Afturkalla útilokun á léni fyrir %{domain}
+        undo: Afturkalla
+      undo: Afturkalla útilokun á léni
+      view: Skoða útilokun á léni
+    email_domain_blocks:
+      add_new: Bæta við nýju
+      created_msg: Tókst að bæta póstléni á lista yfir bannað
+      delete: Eyða
+      destroyed_msg: Tókst að eyða póstléni af lista yfir bannað
+      domain: Lén
+      empty: Engin tölvupóstlén eru á bannlista.
+      new:
+        create: Bæta við léni
+        title: Ný færsla á bannlista fyrir tölvupóstföng
+      title: Bannlisti yfir tölvupóstföng
+    followers:
+      back_to_account: Til baka í notandaaðgang
+      title: Fylgjast með %{acct}
+    instances:
+      by_domain: Lén
+      delivery_available: Afhending er til taks
+      known_accounts:
+        one: "%{count} þekktur notandaaðgangur"
+        other: "%{count} þekktir notendaaðgangar"
+      moderation:
+        all: Allt
+        limited: Takmarkað
+        title: Umsjón
+      private_comment: Einkaathugasemd
+      public_comment: Opinber athugasemd
+      title: Samband
+      total_blocked_by_us: Útilokaðir af okkur
+      total_followed_by_them: Fylgt af þeim
+      total_followed_by_us: Fylgt af okkur
+      total_reported: Kærur um þá
+      total_storage: Myndaviðhengi
+    invites:
+      deactivate_all: Gera allt óvirkt
+      filter:
+        all: Allt
+        available: Tiltækt
+        expired: Útrunnið
+        title: Sía
+      title: Boðsgestir
+    pending_accounts:
+      title: Notendaaðgangar í bið (%{count})
+    relays:
+      add_new: Bæta við nýjum endurvarpa
+      delete: Eyða
+      description_html: "<strong>Endurvarpi í skýjasambandi</strong> er milliþjónn sem skiptist á miklu magni opinberra tísta við aðra þjóna sem eru áskrifendur að honum og birta sín tíst á honum. <strong>Þetta getur hjálpað litlum og meðalstórum vefþjónum að uppgötva efni úr skýjasambandinu</strong>, sem annars myndi krefjast þess að staðværir notendur fylgist handvirkt með öðru fólki á fjartengdum vefþjónum."
+      disable: Gera óvirkt
+      disabled: Óvirkt
+      enable: Virkja
+      enable_hint: Ef þetta er einu sinni virkjað, mun vefþjónninn þinn gerast áskrifandi að öllum opinberum tístum frá þessum endurvarpa og byrja að senda sín eigin opinberu tíst til hans.
+      enabled: Virkt
+      inbox_url: Slóð endurvarpa
+      pending: Bíð eftir samþykki endurvarpa
+      save_and_enable: Vista og virkja
+      setup: Setja upp endurvarpatengingu
+      signatures_not_enabled: Endurvarpar munu ekki virka rétt þegar verið er í öryggisham eða þegar  hamur til að leyfa (whitelist mode) er virkur
+      status: Staða
+      title: Endurvarpar
+    report_notes:
+      created_msg: Tókst að útbúa minnispunkt skýrslu!
+      destroyed_msg: Tókst að eyða minnispunkti skýrslu!
+    reports:
+      account:
+        notes:
+          one: "%{count} minnispunktur"
+          other: "%{count} minnispunktar"
+        reports:
+          one: "%{count} skýrsla"
+          other: "%{count} skýrslur"
+      action_taken_by: Aðgerð framkvæmd af
+      are_you_sure: Ertu viss?
+      assign_to_self: Úthluta mér
+      assigned: Úthlutaður umsjónarmaður
+      by_target_domain: Lén kærða notandaaðgangsins
+      comment:
+        none: Ekkert
+      created_at: Tilkynnt
+      mark_as_resolved: Merkja sem leyst
+      mark_as_unresolved: Merkja sem óleyst
+      notes:
+        create: Bæta við minnispunkti
+        create_and_resolve: Leysa með minnispunkti
+        create_and_unresolve: Enduropna með minnispunkti
+        delete: Eyða
+        placeholder: Lýstu til hvaða aðgerða hefur verið gripið eða uppfærðu inn aðrar tengdar upplýsingar...
+      reopen: Enduropna kæru
+      report: 'Kæra #%{id}'
+      reported_account: Kærður notandaaðgangur
+      reported_by: Kært af
+      resolved: Leyst
+      resolved_msg: Það tókst að leysa kæruna!
+      status: Staða
+      title: Kærur
+      unassign: Aftengja úthlutun
+      unresolved: Óleyst
+      updated_at: Uppfært
+    settings:
+      activity_api_enabled:
+        desc_html: Fjöldi staðværra stöðufærslna, virkra notenda og nýskráninga í vikulegum skömmtum
+        title: Birta samantektartölfræði um virkni notanda
+      bootstrap_timeline_accounts:
+        desc_html: Aðskildu mörg notendanöfn með kommum. Einungis staðværir og ólæstir aðgangar virka. Þegar þetta er autt er sjálgefið miðað við alla staðværa stjórnendur.
+        title: Sjálfgefnar fylgnistillingar fyrir nýja notendur
+      contact_information:
+        email: Fyrirtækistölvupóstur
+        username: Notandanafn tengiliðar
+      custom_css:
+        desc_html: Breyttu útlitinu með CSS-skilgreiningum sem hlaðið er inn á hverri síðu
+        title: Sérsniðið CSS
+      default_noindex:
+        desc_html: Hefur áhrif á alla þá notendur sem ekki hafa breytt þessum stillingum sjálfir
+        title: Sjálfgefið láta notendur afþakka atriðaskráningu í leitarvélum
+      domain_blocks:
+        all: Til allra
+        disabled: Til engra
+        title: Birta útilokanir á lénum
+        users: Til innskráðra staðværra notenda
+      domain_blocks_rationale:
+        title: Birta röksemdafærslu
+      enable_bootstrap_timeline_accounts:
+        title: Virkja sjálfgefnar fylgnistillingar fyrir nýja notendur
+      hero:
+        desc_html: Birt á forsíðunni. Mælt með að hún sé a.m.k. 600×100 mynddílar. Þegar þetta er ekki stillt, er notuð smámynd netþjónsins
+        title: Aðalmynd
+      mascot:
+        desc_html: Birt á ýmsum síðum. Mælt með að hún sé a.m.k. 293×205 mynddílar. Þegar þetta er ekki stillt, er notuð smámynd netþjónsins
+        title: Mynd af lukkudýri
+      peers_api_enabled:
+        desc_html: Lénaheiti sem þessi netþjónn hefur rekist á í skýjasambandinu (samtengdum vefþjónum - fediverse)
+        title: Birta lista yfir uppgötvaða netþjóna
+      preview_sensitive_media:
+        desc_html: Forskoðun tengla á önnur vefsvæði mun birta smámynd jafnvel þótt myndefnið sé merkt sem viðkvæmt
+        title: Birta viðkvæmt myndefni í OpenGraph-forskoðun
+      profile_directory:
+        desc_html: Leyfa að hægt sé að finna notendur
+        title: Virkja notandasniðamöppu
+      registrations:
+        closed_message:
+          desc_html: Birt á forsíðu þegar lokað er fyrir nýskráningar. Þú getur notað HTML-einindi
+          title: Skilaboð vegna lokunar á nýskráningu
+        deletion:
+          desc_html: Leyfa öllum að eyða aðgangnum sínum
+          title: Opna eyðingu á notandaaðgangi
+        min_invite_role:
+          disabled: Enginn
+          title: Leyfa boð frá
+      registrations_mode:
+        modes:
+          approved: Krafist er samþykkt nýskráningar
+          none: Enginn getur nýskráð sig
+          open: Allir geta nýskráð sig
+        title: Nýskráningarhamur
+      show_known_fediverse_at_about_page:
+        desc_html: Þegar þetta er óvirkt, takmarkast opinbera tímalínan sem tengt er í af upphafssíðunni við að birta einungis staðvært efni (af sama vefþjóni)
+        title: Hafa með efni úr skýjasambandi á síðu fyrir óauðkennda opinbera tímalínu
+      show_staff_badge:
+        desc_html: Sýna starfsmannamerki á síðu notandans
+        title: Sýna starfsmannamerki
+      site_description:
+        desc_html: Kynningarmálsgrein í API. Lýstu því hvað það er sem geri þennan Mastodon-þjón sérstakan, auk annarra mikilvægra upplýsinga. Þú getur notað HTML-einindi, sér í lagi <code>&lt;a&gt;</code> og <code>&lt;em&gt;</code>.
+        title: Lýsing á vefþjóni
+      site_description_extended:
+        desc_html: góður staður fyrir siðareglur, almennt regluverk, leiðbeiningar og annað sem gerir netþjóninni þinn sérstakann. Þú getur notað HTML-einindi
+        title: Sérsniðnar ítarlegar upplýsingar
+      site_short_description:
+        desc_html: Birt á hliðarspjaldi og í lýsigögnum. Lýstu því hvað Mastodon gerir og hvað það er sem geri þennan vefþjón sérstakan, í einni málsgrein.
+        title: Stutt lýsing á netþjóninum
+      site_terms:
+        desc_html: Þú getur skrifað þína eigin persónuverndarstefnu, þjónustuskilmála eða annað lagatæknilegt. Þú getur notað HTML-einindi
+        title: Sérsniðnir þjónustuskilmálar
+      site_title: Heiti vefþjóns
+      spam_check_enabled:
+        desc_html: Mastodon getur tilkynnt sjálfvirkt um aðganga sem senda ítrekað óumbeðin skilaboð. Mögulega geta verið rangar slíkar tilkynningar.
+        title: Sjálfvirkar ruslpóstvarnir
+      thumbnail:
+        desc_html: Notað við forskoðun í gegnum OpenGraph og API-kerfisviðmót. Mælt með 1200×630 mynddílum
+        title: Smámynd vefþjóns
+      timeline_preview:
+        desc_html: Birta tengil í opinbera tímalínu á upphafssíðu og leyfa aðgang API-kerfisviðmóts að opinberri tímalínu án auðkenningar
+        title: Leyfa óauðkenndan aðgang að opinberri tímalínu
+      title: Stillingar vefsvæðis
+      trendable_by_default:
+        desc_html: Hefur áhrif á myllumerki sem ekki hafa áður verið gerð óleyfileg
+        title: Leyfa myllumerkjum að fara í umræðuna án þess að þau séu fyrst yfirfarin
+      trends:
+        desc_html: Birta opinberlega þau áður yfirförnu myllumerki sem eru núna í umræðunni
+        title: Myllumerki í umræðunni
+    statuses:
+      back_to_account: Fara aftur á síðu notandaaðgangsins
+      batch:
+        delete: Eyða
+        nsfw_off: Merkja gögn sem ekki viðkvæm
+        nsfw_on: Merkja sem viðkvæmt
+      deleted: Eytt
+      failed_to_execute: Mistókst að keyra
+      media:
+        title: Myndefni
+      no_media: Ekkert myndefni
+      no_status_selected: Engum stöðufærslum var breytt þar sem engar voru valdar
+      title: Staða notendaaðganga
+      with_media: Með myndefni
+    tags:
+      accounts_today: Einstök afnot í dag
+      accounts_week: Einstök afnot í þessari viku
+      breakdown: Samantekt á notkun dagsins eftir uppruna
+      context: Samhengi
+      directory: Í möppunni
+      in_directory: "%{count} í möppunni"
+      last_active: Síðasta virkni
+      most_popular: Vinsælast
+      most_recent: Nýjast
+      name: Myllumerki
+      review: Yfirfara stöðufærslu
+      reviewed: Yfirfarið
+      title: Myllumerki
+      trending_right_now: Í umræðunni nákvæmlega núna
+      unique_uses_today: "%{count} færslur í dag"
+      unreviewed: Ekki yfirfarið
+      updated_msg: Það tókst að uppfæra stillingar myllumerkja
+    title: Stjórnendur
+    warning_presets:
+      add_new: Bæta við nýju
+      delete: Eyða
+      edit: Breyta
+      edit_preset: Breyta forstilltri aðvörun
+      title: Sýsla með forstilltar aðvaranir
+  admin_mailer:
+    new_pending_account:
+      body: Nákvæmari upplýsingar um nýja notandaaðganginn eru hér fyrir neðan. Þú getur samþykkt eða hafnað þessari umsókn.
+      subject: Nýr notandaaðgangur er kominn til yfirferðar á %{instance} (%{username})
+    new_report:
+      body: "%{reporter} hefur kært %{target}"
+      body_remote: Einhver frá %{domain} hefur kært %{target}
+      subject: Ný kæra vegna %{instance} (#%{id})
+    new_trending_tag:
+      body: 'Myllumerkið #%{name} er í umræðunni í dag, en hefur ekki verið yfirfarið áður. Það mun ekki verða birt opinberlega nema að þú samþykkir það, annars geturðu vistað eyðublaðið óbreytt og aldrei heyrt á þetta minnst framar.'
+      subject: Nýtt myllumerki er komið til yfirferðar á %{instance} (#%{name})
+  aliases:
+    add_new: Búa til samnefni (alias)
+    created_msg: Tókst að búa til samnefni. Þú getur núna byrjað að færa gögn af gamla aðgangnum.
+    deleted_msg: Tókst að fjarlægja samnefnið. Flutningur af þeim notandaaðgangi yfir á þennan er ekki lengur mögulegur.
+    hint_html: Ef þú vilt flytjast af öðrum notandaaðgangi yfir á þennan, þá geturðu búið hér til samnefni, sem er nauðsynlegt áður en þú getur haldið áfram við að flytja fylgjendur af gamla notandaaðgangnum yfir á þennan aðgang. Þessi aðgerð er í sjálfu sér <strong>skaðlaus og afturkræf</strong>. <strong>Yfirfærsla notandaaðgangsins er síðan ræst á gamla notandaaðgangnum</strong>.
+    remove: Aftengja samnefni
+  appearance:
+    advanced_web_interface: Ítarlegt vefviðmót
+    advanced_web_interface_hint: 'Ef þú vilt geta notað alla skjábreiddina gefur ítarlegt vefviðmót þér færi á að stilla marga mismunandi dálka svo hægt sé að sjá eins miklar upplýsingar í einu eins og þér hentar: Heim, tilkynningar, sameiginleg tímalína, ótiltekinn fjöldi lista og myllumerkja.'
+    animations_and_accessibility: Hreyfingar og algilt aðgengi
+    confirmation_dialogs: Staðfestingargluggar
+    discovery: Uppgötvun
+    localization:
+      body: Mastodon er þýtt af sjálfboðaliðum.
+      guide_link: https://crowdin.com/project/mastodon/is
+      guide_link_text: Allir geta tekið þátt.
+    sensitive_content: Viðkvæmt efni
+    toot_layout: Framsetning tísta
+  application_mailer:
+    notification_preferences: Breyta kjörstillingum tölvupósts
+    salutation: "%{name},"
+    settings: 'Breyta kjörstillingum tölvupósts: %{link}'
+    view: 'Skoða:'
+    view_profile: Skoða notandasnið
+    view_status: Skoða stöðufærslu
+  applications:
+    created: Það tókst að búa til forrit
+    destroyed: Það tókst að eyða forriti
+    invalid_url: Slóðin sem þú gafst upp er ógild
+    regenerate_token: Endurgera aðgangsteikn
+    token_regenerated: Það tókst að endurgera aðgangsteiknið
+    warning: Farðu mjög varlega með þessi gögn. Þú skalt aldrei deila þeim með neinum!
+    your_token: Aðgangsteiknið þitt
+  auth:
+    apply_for_account: Beiðni um boð
+    change_password: Lykilorð
+    checkbox_agreement_html: Ég samþykki <a href="%{rules_path}" target="_blank">reglur vefþjónsins</a> og <a href="%{terms_path}" target="_blank">þjónustuskilmálana</a>
+    checkbox_agreement_without_rules_html: Ég samþykki <a href="%{terms_path}" target="_blank">þjónustuskilmálana</a>
+    delete_account: Eyða notandaaðgangi
+    delete_account_html: Ef þú vilt eyða notandaaðgangnum þínum, þá geturðu <a href="%{path}">farið í það hér</a>. Þú verður beðin/n um staðfestingu.
+    description:
+      prefix_invited_by_user: "@%{name} býður þér að taka þátt á þessum Mastodon-vefþjóni!"
+      prefix_sign_up: Skráðu þig á Mastodon strax í dag!
+      suffix: Með notandaaðgangi geturðu fylgst með fólki, sent inn stöðufærslur og skipst á skilaboðum við notendur á hvaða Mastodon-vefþjóni sem er, auk margs fleira!
+    didnt_get_confirmation: Fékkstu ekki leiðbeiningar um hvernig eigi að staðfesta aðganginn?
+    forgot_password: Gleymdirðu lykilorðinu?
+    invalid_reset_password_token: Teikn fyrir endurstillingu lykilorðs er ógilt eða útrunnið. Biddu um nýtt teikn.
+    login: Skrá inn
+    logout: Skrá út
+    migrate_account: Færa á annan notandaaðgang
+    migrate_account_html: Ef þú vilt endurbeina þessum aðgangi á einhvern annan, geturðu <a href="%{path}">stillt það hér</a>.
+    or_log_in_with: Eða skráðu inn með
+    providers:
+      cas: CAS
+      saml: SAML
+    register: Nýskrá
+    registration_closed: "%{instance} samþykkir ekki nýja meðlimi"
+    resend_confirmation: Senda leiðbeiningar vegna staðfestingar aftur
+    reset_password: Endursetja lykilorð
+    security: Öryggi
+    set_new_password: Stilla nýtt lykilorð
+    setup:
+      email_below_hint_html: Ef tölvupóstfangið hér fyrir neðan er rangt, skaltu breyta því hér og fá nýjan staðfestingarpóst.
+      email_settings_hint_html: Staðfestingarpósturinn var sendur til %{email}. Ef það tölvupóstfang er ekki rétt geturðu breytt því í stillingum notandaaðgangsins.
+      title: Uppsetning
+    status:
+      account_status: Staða notandaaðgangs
+      confirming: Bíð eftir að staðfestingu tölvupósts sé lokið.
+      functional: Notandaaðgangurinn þinn er með fulla virkni.
+      pending: Umsóknin þín bíður eftir að starfsfólkið okkar fari yfir hana. Það gæti tekið nokkurn tíma. Þú munt fá tölvupóst ef umsóknin er samþykkt.
+      redirecting_to: Notandaaðgangurinn þinn er óvirkur vegna þess að hann endurbeinist á %{acct}.
+    trouble_logging_in: Vandræði við að skrá inn?
+  authorize_follow:
+    already_following: Þú ert að þegar fylgjast með þessum aðgangi
+    error: Því miður, það kom upp villa við að fletta upp fjartengda notandaaðgangnum
+    follow: Fylgja
+    follow_request: 'Þú sendir beiðni um að fylgjast með til:'
+    following: 'Tókst! Þú ert núna að fylgjast með:'
+    post_follow:
+      close: Eða að þú getur lokað þessum glugga.
+      return: Birta notandasnið notandans
+      web: Fara á vefinn
+    title: Fylgjast með %{acct}
+  challenge:
+    confirm: Halda áfram
+    hint_html: "<strong>Ábending:</strong> Við munum ekki spyrja þig um lykilorðið aftur næstu klukkustundina."
+    invalid_password: Ógilt lykilorð
+    prompt: Staðfestu lykilorðið til að halda áfram
+  datetime:
+    distance_in_words:
+      about_x_hours: "%{count}kl."
+      about_x_months: "%{count}mán"
+      about_x_years: "%{count}ár"
+      almost_x_years: "%{count}ár"
+      half_a_minute: Núna
+      less_than_x_minutes: "%{count}mín"
+      less_than_x_seconds: Núna
+      over_x_years: "%{count}ár"
+      x_days: "%{count}d"
+      x_minutes: "%{count}mín"
+      x_months: "%{count}mán"
+      x_seconds: "%{count}sek"
+  deletes:
+    challenge_not_passed: Upplýsingarnar sem þú settir inn eru ekki réttar
+    confirm_password: Settu inn núverandi lykilorð þitt til að staðfesta auðkennin þín
+    confirm_username: Skrifaðu inn notandanafnið þitt til að halda áfram með ferlið
+    proceed: Eyða notandaaðgangi
+    success_msg: Það tókst að eyða notandaaðgangnum þínum
+    warning:
+      before: 'Áður en haldið er áfram, skaltu lesa þessa minnispunkta gaumgæfilega:'
+      caches: Efni sem aðrir netþjónar hafa sett í skyndiminni gæti verið til staðar áfram
+      data_removal: Færslurnar þínar og önnur gögn verða endanlega fjarlægð
+      email_change_html: Þú getur <a href="%{path}">breytt tölvupóstfanginu þínu</a> án þess að eyða aðgangnum þínum
+      email_contact_html: Ef hann berst ekki geturðu sent póst á <a href="mailto:%{email}">%{email}</a> til að fá aðstoð
+      email_reconfirmation_html: Ef staðfestingarpósturinn berst ekki geturðu <a href="%{path}">beðið um hann aftur</a>
+      irreversible: Þú munt ekki getað endurheimt eða endurvirkjað aðganginn þinn
+      more_details_html: Til að skoða þetta nánar, er gott að líta á <a href="%{terms_path}">persónuverndarstefnuna</a>.
+      username_available: Notandanafnið þitt mun verða tiltækt aftur
+      username_unavailable: Notandanafnið þitt mun verða áfram ótiltækt
+  directories:
+    directory: Notandasniðamappa
+    explanation: Leitaðu að notendum eftir áhugamálum þeirra
+    explore_mastodon: Kannaðu %{title}
+  domain_validator:
+    invalid_domain: er ekki leyfilegt nafn á léni
+  errors:
+    '400': Beiðnin sem þú sendir er ógild eða rangt uppsett.
+    '403': Þú hefur ekki heimildir til að skoða þessari síðu.
+    '404': Síðan sem þú leitar að er ekki þarna.
+    '406': Þessi síða er ekki tiltæk á umbeðna sniðinu.
+    '410': Síðan sem þú leitar að er ekki lengur til hérna.
+    '422':
+      content: Öryggisprófun mistókst. Ertu að loka á vefkökur/fótspor?
+      title: Öryggisprófun mistókst
+    '429': Í hægagangi
+    '500':
+      content: Því miður, en eitthvað fór úrskeiðis á okkar enda.
+      title: Þessi síða er ekki rétt
+    '503': Ekki var hægt að afgreiða síðuna vegna tímabundinnar bilunar á vefþjóni.
+    noscript_html: Til að nota vefútgáfu Mastodon þarftu að virkja JavaScript. Þú getur líka prófað eitt af Mastodon <a href="%{apps_path}">forritunum</a> fyrir stýrikerfið þitt.
+  existing_username_validator:
+    not_found: Fann ekki staðværan notanda með þetta notandanafn
+    not_found_multiple: tókst ekki að finna %{usernames}
+  exports:
+    archive_takeout:
+      date: Dagsetning
+      download: Náðu í safnskrána þína
+      hint_html: Þú getur beðið um safnskrá með <strong>tístunum þínum og innsendu myndefni</strong>. Útfluttu gögnin verða á ActivityPub-sniði, sem allur samhæfður hugbúnaður á að geta lesið. Þú getur beðið um safnskrá á 7 daga fresti.
+      in_progress: Set saman safnskrána þína...
+      request: Biddu um safnskrána þína
+      size: Stærð
+    blocks: Þú útilokar
+    csv: CSV
+    domain_blocks: Útilokanir á lénum
+    lists: Listar
+    mutes: Þú þaggar
+    storage: Geymsla myndefnis
+  featured_tags:
+    add_new: Bæta við nýju
+    errors:
+      limit: Þú ert þegar búin/n að gefa hámarksfjölda myllumerkja aukið vægi
+  filters:
+    contexts:
+      home: Heimatímalína
+      notifications: Tilkynningar
+      public: Opinberar tímalínur
+      thread: Samtöl
+    edit:
+      title: Breyta síu
+    errors:
+      invalid_context: Ekkert eða ógilt samhengi var gefið
+    index:
+      delete: Eyða
+      empty: Þú ert ekki með neinar síur.
+      title: Síur
+    new:
+      title: Bæta við nýrri síu
+  footer:
+    developers: Forritarar
+    more: Meira…
+    resources: Tilföng
+    trending_now: Í umræðunni núna
+  generic:
+    all: Allt
+    changes_saved_msg: Það tókst að vista breytingarnar!
+    copy: Afrita
+    no_batch_actions_available: Engar magnvinnsluaðgerðir tiltækar á þessari síðu
+    order_by: Raða eftir
+    save_changes: Vista breytingar
+    validation_errors:
+      one: Ennþá er ekk alvegi allt í lagi! Skoðaðu vel villuna hér fyrir neðan
+      other: Ennþá er ekki alveg allt í lagi! Skoðaðu vel villurnar %{count} hér fyrir neðan
+  html_validator:
+    invalid_markup: 'inniheldur ógildar HTML-merkingar: %{error}'
+  identity_proofs:
+    active: Virkur
+    authorize: Já, heimila
+    authorize_connection_prompt: Auðkenna dulkóðaða tengingu?
+    errors:
+      failed: Dulrituð tenging mistókst, endilega reyndu aftur frá %{provider}.
+    i_am_html: Ég er %{username} á %{service}.
+    identity: Auðkenni
+    inactive: Óvirkt
+    publicize_checkbox: 'Og tísti þetta:'
+    publicize_toot: 'Það er búið að sanna þetta! Ég er %{username} á %{service}: %{url}'
+    status: Staða sannvottunar
+    view_proof: Skoða sönnun
+  imports:
+    modes:
+      merge: Sameina
+      merge_long: Halda fyrirliggjandi færslum og bæta við nýjum
+      overwrite: Skrifa yfir
+      overwrite_long: Skipta út fyrirliggjandi færslum með þeim nýju
+    types:
+      blocking: Listi yfir útilokanir
+      domain_blocking: Listi yfir útilokanir léna
+      following: Listi yfir fylgjendur
+      muting: Listi yfir þagganir
+    upload: Senda inn
+  in_memoriam_html: Minning.
+  invites:
+    delete: Gera óvirkt
+    expired: Útrunnið
+    expires_in:
+      '1800': 30 mínútur
+      '21600': 6 klukkustundir
+      '3600': 1 klukkustund
+      '43200': 12 klukkustundir
+      '604800': 1 vika
+      '86400': 1 dagur
+    expires_in_prompt: Aldrei
+    generate: Útbúa boðstengil
+    invited_by: 'Þér var boðið af:'
+    max_uses:
+      one: 1 afnot
+      other: "%{count} afnot"
+    max_uses_prompt: Engin takmörk
+    prompt: Útbúðu og deildu tenglum með öðrum til að veita aðgang að þessum vefþjóni
+    table:
+      expires_at: Rennur út
+      uses: Afnot
+    title: Bjóða fólki
+  lists:
+    errors:
+      limit: Þú hefur náð hámarksfjölda lista
+  media_attachments:
+    validations:
+      images_and_video: Ekki er hægt að hengja myndskeið við stöðufærslu sem þegar inniheldur myndir
+      too_many: Ekki er hægt að hengja við fleiri en 4 skrár
+  migrations:
+    acct: Færði í
+    cancel: Hætta við endurbeiningu
+    cancel_explanation: Sé hætt við endurbeiningu verður núverandi aðgangur þinn endurvirkjaður, en það mun ekki ná til baka þeim fylgjendum sem hafa verið fluttir á þann aðgang.
+    cancelled_msg: Tókst að hætta við endurbeiningu.
+    errors:
+      already_moved: er sami aðgangur og þú hefur þegar flutt þig á
+      missing_also_known_as: er ekki að bakvísa í þennan aðgang
+      move_to_self: getur ekki verið núverandi aðgangur
+      not_found: fannst ekki
+      on_cooldown: Þú ert í kælingu
+    followers_count: Fylgjendur þegar flutningur átti sér stað
+    incoming_migrations: Flytjast frá öðrum aðgangi
+    incoming_migrations_html: Til að flytjast af öðrum notandaaðgangi yfir á þennan, þarftu fyrst að <a href="%{path}">útbúa samnefni fyrir aðgang</a>.
+    moved_msg: Notandaaðgangurinn þinn endurbeinist núna á %{acct} og er verið að yfirfæra fylgjendurna þína.
+    not_redirecting: Notandaaðgangurinn þinn er ekki að endurbeinast á neinn annan aðgang.
+    on_cooldown: Þú hefur nýverið yfirfært aðganginn þinn. Þessi aðgerð verður tiltæk aftur eftir %{count} daga.
+    past_migrations: Fyrri yfirfærslur
+    proceed_with_move: Færa fylgjendur
+    redirecting_to: Notandaaðgangurinn þinn endurbeinist á %{acct}.
+    set_redirect: Stilla endurbeiningu
+    warning:
+      backreference_required: Það verður fyrst að stilla nýja aðganginn til að bakvísa á þennan aðgang
+      before: 'Áður en haldið er áfram, skaltu lesa þessa minnispunkta gaumgæfilega:'
+      cooldown: Eftir yfirfærslu/flutning kemur kælingartímabil á meðan þú getur ekki flutt þig aftur
+      followers: Þessi aðgerð mun flytja alla fylgjendur af núverandi aðgangi yfir á nýja aðganginn
+      only_redirect_html: Einnig geturðu <a href="%{path}">einungis sett upp endurbeiningu á notandasniðið þitt</a>.
+      other_data: Engin önnur gögn munu flytjast sjálfvirkt
+  moderation:
+    title: Umsjón
+  notification_mailer:
+    digest:
+      action: Skoða allar tilkynningar
+      body: Hér er stutt yfirlit yfir þau skilaboð sem þú gætir hafa misst af síðan þú leist inn síðast %{since}
+      mention: "%{name} minntist á þig í:"
+      subject:
+        one: "1 ný tilkynning síðan þú leist inn síðast \U0001F418"
+        other: "%{count} nýjar tilkynningar síðan þú leist inn síðast \U0001F418"
+      title: Á meðan þú varst fjarverandi...
+    favourite:
+      body: 'Stöðufærslan þín var sett í eftirlæti af %{name}:'
+      subject: "%{name} setti stöðufærslu þína í eftirlæti"
+      title: Nýtt eftirlæti
+    follow:
+      body: "%{name} er núna að fylgjast með þér!"
+      subject: "%{name} er núna að fylgjast með þér"
+      title: Nýr fylgjandi
+    follow_request:
+      action: Sýsla með fylgjendabeiðnir
+      body: "%{name} hefur beðið um að fylgjast með þér"
+      subject: 'Fylgjandi í bið: %{name}'
+      title: Ný beiðni um að fylgjast með
+    mention:
+      action: Svara
+    reblog:
+      body: "%{name} endurbirti stöðufærsluna þína:"
+      subject: "%{name} endurbirti stöðufærsluna þína"
+      title: Ný endurbirting
+  notifications:
+    email_events: Atburðir fyrir tilkynningar í tölvupósti
+    email_events_hint: 'Veldu þá atburði sem þú vilt fá tilkynningar í tölvupósti þegar þeir koma upp:'
+    other_settings: Aðrar stillingar varðandi tilkynningar
+  number:
+    human:
+      decimal_units:
+        format: "%n%u"
+        units:
+          billion: bi.
+          million: mi.
+          quadrillion: qi.
+          thousand: þús
+          trillion: tr.
+  pagination:
+    newer: Nýrra
+    next: Næsta
+    older: Eldra
+    prev: Fyrra
+    truncate: "&hellip;"
+  polls:
+    errors:
+      already_voted: Þú hefur þegar greitt atkvæði í þessari könnun
+      duplicate_options: innihalda tvítekin atriði
+      duration_too_long: er of langt inn í framtíðina
+      duration_too_short: er of snemma
+      expired: Könnuninni er þegar lokið
+      over_character_limit: geta ekki verið lengri en %{max} stafir hvert
+      too_few_options: verður að vera með fleiri en eitt atriði
+      too_many_options: getur ekki innihaldið meira en %{max} atriði
+  preferences:
+    other: Annað
+    posting_defaults: Sjálfgefin gildi við gerð færslna
+    public_timelines: Opinberar tímalínur
+  relationships:
+    activity: Virkni aðgangs
+    dormant: Sofandi
+    followers: Fylgjendur
+    following: Fylgist með
+    last_active: Síðasta virkni
+    most_recent: Nýjast
+    moved: Fært
+    mutual: Sameiginlegir
+    primary: Aðal
+    relationship: Vensl
+    remove_selected_domains: Fjarlægja alla fylgjendur frá völdum lénum
+    remove_selected_followers: Fjarlægja valda fylgjendur
+    remove_selected_follows: Hætta að fylgjast með völdum notendum
+    status: Staða aðgangs
+  remote_follow:
+    acct: Settu inn notandanafn@lén þaðan sem þú vilt vera virk/ur
+    no_account_html: Ertu ekki með aðgang? Þú getur <a href='%{sign_up_path}' target='_blank'>nýskráð þig hér</a>
+    proceed: Halda áfram í að fylgja
+    prompt: 'Þú ætlar að fara að fylgjast með:'
+    reason_html: "<strong>Hvers vegna er þetta skref nauðsynlegt?</strong> <code>%{instance}</code> er ekki endilega netþjónninn þar sem þú ert skráð/ur, þannig að við verðum að endurbeina þér á heimaþjóninn þinn fyrst."
+  remote_interaction:
+    favourite:
+      proceed: Halda áfram í að setja í eftirlæti
+      prompt: 'Þú ætlar að setja þetta tíst í eftirlæti:'
+    reblog:
+      proceed: Halda áfram í endurbirtingu
+      prompt: 'Þú ætlar að endurbirta þetta tíst:'
+    reply:
+      proceed: Halda áfram í að svara
+      prompt: 'Þú ætlar að svara þessu tísti:'
+  scheduled_statuses:
+    over_daily_limit: Þú hefur farið fram úr hámarkinu með %{limit} áætluð tíst fyrir þennan dag
+    over_total_limit: Þú hefur farið fram úr hámarkinu með %{limit} áætluð tíst
+    too_soon: Áætluð dagsetning verður að vera í framtíðinni
+  sessions:
+    activity: Síðasta virkni
+    browser: Vafri
+    browsers:
+      alipay: Alipay
+      blackberry: Blackberry
+      chrome: Chrome
+      edge: Microsoft Edge
+      electron: Electron
+      firefox: Firefox
+      generic: Óþekktur vafri
+      ie: Internet Explorer
+      micro_messenger: MicroMessenger
+      nokia: Nokia S40 Ovi vafri
+      opera: Opera
+      otter: Otter
+      phantom_js: PhantomJS
+      qq: QQ vafri
+      safari: Safari
+      uc_browser: UCBrowser
+      weibo: Weibo
+    current_session: Núverandi seta
+    description: "%{browser} á %{platform}"
+    explanation: Þetta eru vafrarnir sem núna eru skráðir inn á Mastodon-aðganginn þinn.
+    ip: IP-vistfang
+    platforms:
+      adobe_air: Adobe Air
+      android: Android
+      blackberry: Blackberry
+      chrome_os: ChromeOS
+      firefox_os: Firefox OS
+      ios: iOS
+      linux: Linux
+      mac: Mac
+      other: óþekktu stýrikerfi
+      windows: Windows
+      windows_mobile: Windows Mobile
+      windows_phone: Windows Phone
+    revoke: Afturkalla
+    revoke_success: Tókst að afturkalla setu
+    title: Setur
+  settings:
+    account: Notandaaðgangur
+    account_settings: Stillingar notandaaðgangs
+    aliases: Samheiti notandaaðgangs
+    appearance: Útlit
+    authorized_apps: Leyfð forrit
+    back: Til baka í Mastodon
+    delete: Eyðing notandaaðgangs
+    development: Þróun
+    edit_profile: Breyta notandasniði
+    export: Útflutningur gagna
+    featured_tags: Myllumerki í umræðunni
+    identity_proofs: Sannanir á auðkenni
+    import: Flytja inn
+    import_and_export: Inn- og útflutningur
+    migrate: Yfirfærsla notandaaðgangs
+    notifications: Tilkynningar
+    preferences: Kjörstillingar
+    profile: Notandasnið
+    relationships: Fylgist með og fylgjendur
+    two_factor_authentication: Teggja-þátta auðkenning
+  spam_check:
+    spam_detected: Þetta er sjálfvirk kæra. Ruslpóstur hefur fundist.
+  statuses:
+    attached:
+      description: 'Viðhengt: %{attached}'
+      image:
+        one: "%{count} mynd"
+        other: "%{count} myndir"
+      video:
+        one: "%{count} myndskeið"
+        other: "%{count} myndskeið"
+    boosted_from_html: Endurbirt frá %{acct_link}
+    content_warning: 'Aðvörun vegna efnis (CW): %{warning}'
+    disallowed_hashtags:
+      one: 'innihélt óleyfilegt myllumerki: %{tags}'
+      other: 'innihélt óleyfilegu myllumerkin: %{tags}'
+    language_detection: Greina tungumál sjálfvirkt
+    open_in_web: Opna í vafra
+    over_character_limit: hámarksfjölda stafa (%{max}) náð
+    pin_errors:
+      limit: Þú hefur þegar fest leyfilegan hámarksfjölda tísta
+      ownership: Tíst frá einhverjum öðrum er ekki hægt að festa
+      private: Óopinber tíst er ekki hægt að festa
+      reblog: Ekki er hægt að festa endurbirtingu
+    poll:
+      total_people:
+        one: "%{count} aðili"
+        other: "%{count} aðilar"
+      total_votes:
+        one: "%{count} atkvæði"
+        other: "%{count} atkvæði"
+      vote: Greiða atkvæði
+    show_more: Sýna meira
+    sign_in_to_participate: Skráðu þig inn til að taka þátt í samtalinu
+    title: "%{name}: „%{quote}‟"
+    visibilities:
+      private: Einungis fylgjendur
+      private_long: Aðeins birt fylgjendum
+      public: Opinber
+      public_long: Allir geta séð
+      unlisted: Óskráð
+      unlisted_long: Allir geta skoðað, en er ekki talið upp á opinberum tímalínum
+  stream_entries:
+    pinned: Fest tíst
+    reblogged: endurbirt
+    sensitive_content: Viðkvæmt efni
+  tags:
+    does_not_match_previous_name: samsvarar ekki fyrra nafni
+  terms:
+    body_html: |
+      <h2>Persónuverndarstefna </h2>
+      <h3 id="collect">Hvaða upplýsingum söfnum við?</h3>
+
+      <ul>
+      <li><em>Grunnupplýsingar um notandaaðgang</em>: Ef þú skráir þig á þessum netþjóni gætirðu verið beðinn um að slá inn notandanafn, tölvupóstfang og lykilorð. Þú getur einnig sett inn viðbótarupplýsingar eins og birtingarnafn og æviágrip auk þess að hlaða inn auðkennismynd eða mynd til að birta á síðuhaus. Notandanafn, birtingarnafn, æviágrip, auðkennismynd og hausmynd eru alltaf skráð opinberlega. </li>
+      <li><em>Skilaboð, fylgnigögn og aðrar opinberar upplýsingar</em>: Listinn yfir þá sem þú fylgist með er skráður opinberlega, það sama er að segja um þá sem fylgjast með þér. Þegar þú sendir skilaboð er dagsetning og tími vistaður sem og hvaða forrit þú sendir skilaboðin frá. Skilaboð geta innihaldið viðhengi, svo sem myndir og myndskeið. Opinberar og óskráðar færslur er aðgengilegar opinberlega. Þegar þú birtir færslu á notandasniðinu þínu (forsíðu) eru það einnig opinberar upplýsingar. Færslurnar þínar eru sendar þeim sem fylgjast með þér, í sumum tilvikum þýðir það að þær eru afhentar á aðra netþjóna og afrit geymd þar. Þegar þú eyðir færslum er það sömuleiðis birt fylgjendum þínum. Aðgerðir eins og að endurbirta eða setja færslu í eftirlæti eru ávallt opinberar.</li>
+      <li><em>Beinar færslur og eingöngu til fylgjenda</em>: Öll innlegg eru geymd og unnin á netþjóninum. Færslur sem eingöngu eru til fylgjenda berast til fylgjenda þinna og þeirra notenda sem minnst er á í þeim, beinar færslur berast aðeins til notenda sem getið er um í viðkomandi færslu. Í sumum tilvikum þýðir það að færslurnar eru afhentar á aðra netþjóna og afrit geymd þar. Við leggjum mikla áherslu á að takmarka aðgang að þessum færslum einungis við aðila sem til þess hafa heimild, en aðrir utanaðkomandi netþjónar gætu mögulega ekki gert það. Þess vegna er mikilvægt að skoða vel þá netþjóna sem fylgjendur þínir tilheyra. Þú getur valið að þurfa að samþykkja og hafna nýjum fylgjendum handvirkt í stillingunum.<em>Hafðu í huga að rekstraraðilar netþjónsins og allir viðtakendamiðlarar geta skoðað slík skilaboð</em> og að viðtakendur geta tekið skjámyndir, afritað eða á annan hátt deilt þessum gögnum. <em>Ekki deila hættulegum upplýsingum í gegnum Mastodon.</em></li>
+      <li><em>IP-vistföng og önnur lýsigögn</em>: Þegar þú skráir þig inn skráum við IP-töluna sem þú skráir þig inn af, sem og heiti vafraforritsins þíns. Allar innskráðar setur verða tiltækar til skoðunar og afturköllunar í stillingunum. Síðast notaða IP-talan er geymd í allt að 12 mánuði. Við gætum líka haldið eftir atvikaskrám netþjónsins sem gæti innihaldið IP-tölur allra beiðna til netþjónsins.</li>
+      </ul>
+
+      <hr class="spacer" />
+
+      <h3 id="use">Til hvers notum við upplýsingarnar þínar?</h3>
+
+      <p>Hvað sem er af þeim upplýsingum sem við söfnum frá þér má nota á eftirfarandi vegu:</p>
+
+      <ul>
+      <li>Til að veita grunnvirkni Mastodon. Þú getur aðeins haft samskipti við efni annarra eða sent inn þitt eigið efni þegar þú ert skráð/ur inn. Til dæmis gætirðu fylgst með öðru fólki og skoðað safn færslna þeirra á þinni eigin persónulega sérsniðnu tímalínu.</li>
+      <li>Til að hjálpa til við umsjón og viðhald samfélags/hóps, til dæmis að bera saman IP-tölu þína við aðrar þekktar til að greina frávik frá bönnum eða öðrum brotum.</li>
+      <li>Tölvupóstfangið sem þú gefur upp má nota til að senda þér upplýsingar, tilkynningar um annað fólk sem átt hefur við efnið þitt eða til að senda þér skilaboð eða svara fyrirspurnum og/eða öðrum beiðnum eða spurningum.</li>
+      </ul>
+
+      <hr class="spacer" />
+
+      <h3 id="protect">Hvernig verndum við upplýsingarnar þínar? </h3>
+
+      <p>Við setjum upp margvíslegar öryggisráðstafanir til að viðhalda öryggi persónuupplýsinganna þinna þegar þú setur inn, sendir eða opnar persónulegar upplýsingar. Meðal annars er vafrasetan þín, svo og umferðin milli forritanna þinna og API-kerfisviðmótsins tryggð með SSL, og lykilorðið þitt er varið með tætigildi (hashed) með sterku einhliða reikniriti. Þú gætir virkjað tveggja-þátta auðkenningu til að tryggja enn frekar aðganginn að notandaaðgangnum þínum. </p>
+
+      <hr class="spacer" />
+
+      <h3 id="data-retention">Hver er stefna okkar varðandi varðveislu gagna?</h3>
+
+      <p>Við munum leggja okkur fram um að:</p>
+
+      <ul>
+      <li>Halda eftir atvikaskrám netþjóns sem innihalda IP-tölu allra beiðna til þessa netþjóns, að svo miklu leyti sem slíkar skrár eru geymdar, ekki lengur en í en 90 daga.</li>
+      <li> Halda eftir IP-tölum sem tengjast skráðum notendum ekki lengur en 12 mánuði.</li>
+      </ul>
+
+      <p>Þú getur beðið um og ná í safnskrá með öllu þínu efni, þar með taldar færslur, margmiðlunarviðhengi, auðkennismynd og mynd á síðuhaus. </p>
+
+      <p>Þú getur eytt reikningi þínum óafturkræft hvenær sem er.</p>
+
+      <hr class="spacer"/>
+
+      <h3 id="cookies">Notum við vefkökur?</h3>
+
+      <p>Já. Vefkökur eða fótspor eru litlar skrár sem vefsvæði eða þjónustuveitandi setur á harða diskinn í tölvunni þinni í gegnum vafrann þinn (ef þú leyfir það). Þessar vefkökur gera vefsvæðinu kleift að þekkja vafrann þinn og ef þú ert með skráðan notandaaðgang skaltu tengja vafrann við skráða notandaaðganginn þinn. </p>
+
+      <p>Við notum vafrakökur til að skilja og vista kjörstillingar þínar fyrir næstu heimsóknir.</p>
+
+      <hr class="spacer" />
+
+      <h3 id="disclose">Veitum við upplýsingar til utanaðkomandi aðila?</h3>
+
+      <p>Við seljum ekki, verslum eða flytjum á annan hátt persónulegar upplýsingar þínar til utanaðkomandi aðila. Þetta nær ekki til traustra þriðja aðila sem aðstoða okkur við að reka síðuna okkar, aðstoða við starfsemi okkar eða við að þjónusta þig, svo framarlega sem þessir aðilar eru sammála um að halda þessum gögnum sem trúnaðarupplýsingum. Við gætum einnig átt það til að gefa upp upplýsingar frá þér þegar við teljum að birting þeirra sé viðeigandi til að fara eftir lögum, framfylgja stefnu okkar á vefnum eða vernda réttindi okkar, eignir eða öryggi okkar eða annarra.</p>
+
+      <p>Opinberu efni þínu getur verið hlaðið inn af öðrum netþjónum á netinu. Opinberu skilaboðin þín ásamt færslum eingöngu til fylgjenda berast þeim netþjónum þar sem fylgjendur þínir eru skráðir og bein skilaboð eru send til netþjóna viðtakendanna, að svo miklu leyti sem þeir fylgjendur eða viðtakendur eru skráðir á öðrum netþjónum en þessum.</p>
+
+      <p>Þegar þú leyfir forriti að nota aðganginn þinn, fer það eftir umfangi heimildanna sem þú gefur hvort það getur það fengið aðgang að opinberum notandasniðsupplýsingum þínum, lista yfir þá sem þú fylgist með, lista yfir þá sem fylgjast með þér, öðrum listum þínum, öllum þínum færslum og eftirlætum. Forrit geta aldrei fengið tölvupóstfangið þitt eða lykilorð.</p>
+
+      <hr class="spacer" />
+
+      <h3 id="children">Notkun vefsvæðis fyrir börn</h3>
+
+      <p> Ef þessi netþjónn er innan ESB eða EES: Vefnum okkar, vörum og þjónustu er allri beint að fólki sem er að minnsta kosti 16 ára gamalt. Ef þú ert yngri en 16 ára, þá máttu samkvæmt kröfum GDPR (<a href="https://en.wikipedia.org/wiki/General_Data_Protection_Regulation"> Almenn reglugerð um gagnavernd</a>) ekki nota þessa síðu.</p>
+
+      <p>Ef þessi netþjónn er í Bandaríkjunum: Vefnum okkar, vörum og þjónustu er allri beint að fólki sem er að minnsta kosti 13 ára gamalt. Ef þú ert yngri en 13 ára, þá máttu samkvæmt kröfum COPPA (<a href="https://en.wikipedia.org/wiki/Children%27s_Online_Privacy_Protection_Act">Lög um persónuvernd barna á netinu</a>) ekki nota þessa síðu. </p>
+
+      <p>Lagakröfur geta verið aðrar ef þessi netþjónn er í annarri lögsögu.</p>
+
+      <hr class="spacer" />
+
+      <h3 id="changes">Breytingar á persónuverndarstefnu okkar</h3>
+
+      <p> Ef við ákveðum að breyta persónuverndarstefnu okkar munum við birta þær breytingar á þessari síðu. </p>
+
+      <p> Þetta skjal er með CC-BY-SA notkunarleyfi. Það var síðast uppfært 7. mars 2018.</p>
+
+      <p> Upprunalega aðlagað úr <a href="https://github.com/discourse/discourse">persónuverndarstefnu Discourse</a>.</p>
+    title: "%{instance} - Þjónustuskilmálar og persónuverndarstefna"
+  themes:
+    contrast: Mastodon (mikil birtuskil)
+    default: Mastodon (dökkt)
+    mastodon-light: Mastodon (ljóst)
+  time:
+    formats:
+      default: "%d. %b, %Y, %H:%M"
+      month: "%b %Y"
+  two_factor_authentication:
+    disable: Gera óvirkt
+    enable: Virkja
+    enabled: Tveggja-þátta auðkenning er virk
+    enabled_success: Það tókst að virkja tveggja-þátta auðkenningu
+    generate_recovery_codes: Útbúa endurheimtukóða
+    recovery_codes: Kóðar fyrir endurheimtingu öryggisafrits
+    setup: Setja upp
+    wrong_code: Kóðinn sem þú settir inn er ógildur! Eru klukkur netþjónsins og tækisins réttar?
+  user_mailer:
+    backup_ready:
+      subject: Safnskráin þín er tilbúin til niðurhals
+      title: Taka út í safnskrá
+    warning:
+      explanation:
+        suspend: Aðgangurinn þinn hefur verið settur í biðstöðu, öll þín tíst og innsent myndefni hafa verið óafturkræft fjarlægð af þessum vefþjóni, sem og af þeim vefþjónum þar sem þú áttir þér fylgjendur.
+      review_server_policies: Yfirfara reglur vefþjónsins
+      statuses: 'Sérstaklega fyrir:'
+      subject:
+        disable: Notandaaðgangurinn þinn %{acct} hefur verið frystur
+        none: Aðvörun fyrir %{acct}
+        silence: Notandaaðgangurinn þinn %{acct} hefur verið takmarkaður
+        suspend: Notandaaðgangurinn þinn %{acct} hefur verið settur í bið
+      title:
+        disable: Notandaaðgangur frystur
+        none: Aðvörun
+        silence: Notandaaðgangur takmarkaður
+        suspend: Notandaaðgangur í bið
+    welcome:
+      edit_profile_action: Setja upp notandasnið
+      explanation: Hér eru nokkrar ábendingar til að koma þér í gang
+      final_action: Byrjaðu að skrifa
+      review_preferences_action: Breyta kjörstillingum
+      subject: Velkomin í Mastodon
+      tip_local_timeline: Staðværa tímalínan er færibandasýn á allt fólkið á %{instance}. Þetta eru þínir næstu nágrannar!
+      tips: Ábendingar
+      title: Velkomin/n um borð, %{name}!
+  users:
+    follow_limit_reached: Þú getur ekki fylgst með fleiri en %{limit} aðilum
+    invalid_email: Tölvupóstfangið er ógilt
+    invalid_otp_token: Ógildur tveggja-þátta kóði
+    signed_in_as: 'Skráð inn sem:'
+  verification:
+    verification: Sannprófun
diff --git a/config/locales/it.yml b/config/locales/it.yml
index f35c717a6ded7c456f3c2af45e222ac093d709d0..7bce8d3d6e11dfe52d59f9dd7b6309f4a283cca2 100644
--- a/config/locales/it.yml
+++ b/config/locales/it.yml
@@ -2,7 +2,7 @@
 it:
   about:
     about_hashtag_html: Questi sono i toot pubblici etichettati con <strong>#%{hashtag}</strong>. Puoi interagire con loro se hai un account nel fediverse.
-    about_mastodon_html: Mastodon è un social network <em>gratuito e open-source</em>. Un'alternativa <em>decentralizzata</em> alle piattaforme commerciali che evita che una singola compagnia monopolizzi il tuo modo di comunicare. Scegli un server di cui ti fidi &mdash; qualunque sia la tua scelta, potrai interagire con chiunque altro. Chiunque può sviluppare un suo server Mastodon e partecipare alla vita del <em>social network</em>.
+    about_mastodon_html: 'Il social network del futuro: niente pubblicità, niente controllo da parte di qualche azienda privata, design etico e decentralizzazione! Con Mastodon il proprietario dei tuoi dati sei tu!'
     about_this: A proposito di questo server
     active_count_after: attivo
     active_footnote: Utenti Attivi Mensili (MAU)
@@ -11,6 +11,7 @@ it:
     apps: Applicazioni per dispositivi mobili
     apps_platforms: Usa Mastodon da iOS, Android e altre piattaforme
     browse_directory: Sfoglia la directory dei profili e filtra per interessi
+    browse_local_posts: Sfoglia il flusso in tempo reale di post pubblici su questo server
     browse_public_posts: Sfoglia il flusso in tempo reale di post pubblici su Mastodon
     contact: Contatti
     contact_missing: Non impostato
@@ -36,8 +37,12 @@ it:
     terms: Termini di Servizio
     unavailable_content: Contenuto non disponibile
     unavailable_content_description:
+      domain: Server
       reason: 'Motivo:'
       rejecting_media: I file multimediali di questo server non saranno elaborati e non verranno visualizzate miniature, che richiedono clic manuale sull'altro server.
+      silenced: 'I messaggi da questi server saranno nascosti nelle timeline e nelle conversazioni pubbliche, e nessuna notifica verrà generata dalle interazioni dei loro utenti, a meno che non li stai seguendo:'
+      suspended: 'Nessun dato da questi server sarà elaborato, memorizzato o scambiato, rendendo impossibile qualsiasi interazione o comunicazione con gli utenti di questi server:'
+    unavailable_content_html: Mastodon generalmente permette di visualizzare i contenuti e interagire con gli utenti di qualsiasi altro server nel fediverse. Queste sono le eccezioni che sono state create su questo specifico server.
     user_count_after:
       one: utente
       other: utenti
@@ -45,6 +50,7 @@ it:
     what_is_mastodon: Che cos'è Mastodon?
   accounts:
     choices_html: 'Suggerimenti da %{name}:'
+    endorsements_hint: 'Puoi segnalare persone che segui e che apprezzi dall''interfaccia web: saranno mostrate qui.'
     featured_tags_hint: Puoi mettere in evidenza determinati hashtag che verranno visualizzati qui.
     follow: Segui
     followers:
@@ -72,6 +78,7 @@ it:
     roles:
       admin: Amministratore
       bot: Bot
+      group: Gruppo
       moderator: Moderatore
     unavailable: Profilo non disponibile
     unfollow: Non seguire più
@@ -112,9 +119,7 @@ it:
       email_status: Stato email
       enable: Abilita
       enabled: Abilitato
-      feed_url: URL Feed
       followers: Follower
-      followers_url: URL follower
       follows: Segue
       header: Intestazione
       inbox_url: URL inbox
@@ -142,10 +147,8 @@ it:
       no_account_selected: Nessun account è stato modificato visto che non ne è stato selezionato nessuno
       no_limits_imposed: Nessun limite imposto
       not_subscribed: Non sottoscritto
-      outbox_url: URL outbox
       pending: Revisioni in attesa
       perform_full_suspension: Sospendi
-      profile_url: URL profilo
       promote: Promuovi
       protocol: Protocollo
       public: Pubblico
@@ -168,8 +171,8 @@ it:
         moderator: Moderatore
         staff: Personale
         user: Utente
-      salmon_url: URL Salmone
       search: Cerca
+      search_same_ip: Altri utenti con lo stesso IP
       shared_inbox_url: URL Inbox Condiviso
       show:
         created_reports: Rapporti creati da questo account
@@ -196,10 +199,12 @@ it:
         confirm_user: "%{name} ha confermato l'indirizzo email per l'utente %{target}"
         create_account_warning: "%{name} ha mandato un avvertimento a %{target}"
         create_custom_emoji: "%{name} ha caricato un nuovo emoji %{target}"
+        create_domain_allow: "%{name} ha messo il dominio %{target} nella whitelist"
         create_domain_block: "%{name} ha bloccato il dominio %{target}"
         create_email_domain_block: "%{name} ha messo il dominio email %{target} nella blacklist"
         demote_user: "%{name} ha degradato l'utente %{target}"
         destroy_custom_emoji: "%{name} ha distrutto l'emoji %{target}"
+        destroy_domain_allow: "%{name} ha tolto il dominio %{target} dalla whitelist"
         destroy_domain_block: "%{name} ha sbloccato il dominio %{target}"
         destroy_email_domain_block: "%{name}ha messo il dominio email %{target} nella whitelist"
         destroy_status: "%{name} ha eliminato lo status di %{target}"
@@ -234,12 +239,14 @@ it:
       delete: Elimina
       destroyed_msg: Emoji distrutto con successo!
       disable: Disabilita
+      disabled: Disabilitato
       disabled_msg: Questa emoji è stata disabilitata con successo
       emoji: Emoji
       enable: Abilita
       enabled: Abilitato
       enabled_msg: Questa emoji è stata abilitata con successo
       image_hint: PNG fino a 50 KB
+      list: Includi nell'elenco
       listed: Elencato
       new:
         title: Aggiungi nuovo emoji personalizzato
@@ -248,6 +255,7 @@ it:
       shortcode_hint: Almeno due caratteri, solo caratteri alfanumerici e trattino basso
       title: Emoji personalizzate
       uncategorized: Nessuna categoria
+      unlist: Escludi dall'elenco
       unlisted: Non elencato
       update_failed_msg: Impossibile aggiornare questa emojii
       updated_msg: Emoji aggiornata con successo!
@@ -331,6 +339,7 @@ it:
       delete: Elimina
       destroyed_msg: Dominio email cancellato con successo dalla lista nera
       domain: Dominio
+      empty: Nessun dominio di posta elettronica attualmente in blacklist.
       new:
         create: Aggiungi dominio
         title: Nuova voce della lista nera delle email
@@ -379,6 +388,7 @@ it:
       pending: In attesa dell'approvazione del ripetitore
       save_and_enable: Salva e attiva
       setup: Crea una connessione con un ripetitore
+      signatures_not_enabled: I ripetitori non funzionano correttamente se la modalità sicura o la modalità whitelist è attiva
       status: Stato
       title: Ripetitori
     report_notes:
@@ -386,12 +396,17 @@ it:
       destroyed_msg: Nota rapporto cancellata!
     reports:
       account:
-        note: note
-        report: rapporto
+        notes:
+          one: "%{count} nota"
+          other: "%{count} note"
+        reports:
+          one: "%{count} rapporto"
+          other: "%{count} rapporti"
       action_taken_by: Azione intrapresa da
       are_you_sure: Sei sicuro?
       assign_to_self: Assegna a me
       assigned: Moderatore assegnato
+      by_target_domain: Dominio dell'account segnalato
       comment:
         none: Nessuno
       created_at: Segnalato
@@ -427,6 +442,9 @@ it:
       custom_css:
         desc_html: Modifica l'aspetto con il CSS caricato in ogni pagina
         title: CSS personalizzato
+      default_noindex:
+        desc_html: Interessa tutti gli utenti che non hanno cambiato questa impostazione
+        title: Esclude gli utenti dall'indicizzazione dei motori di ricerca per impostazione predefinita
       domain_blocks:
         all: A tutti
         disabled: A nessuno
@@ -434,6 +452,8 @@ it:
         users: Agli utenti locali connessi
       domain_blocks_rationale:
         title: Mostra motivazione
+      enable_bootstrap_timeline_accounts:
+        title: Abilita seguiti predefiniti per i nuovi utenti
       hero:
         desc_html: Mostrata nella pagina iniziale. Almeno 600x100 px consigliati. Se non impostata, sarà usato il thumbnail del server
         title: Immagine dell'eroe
@@ -494,6 +514,9 @@ it:
         desc_html: Mostra la timeline pubblica sulla pagina iniziale
         title: Anteprima timeline
       title: Impostazioni sito
+      trendable_by_default:
+        desc_html: Interessa gli hashtag che non sono stati precedentemente disattivati
+        title: Permetti agli hashtag di comparire nei trend senza prima controllarli
       trends:
         desc_html: Visualizza pubblicamente gli hashtag precedentemente esaminati che sono attualmente in tendenza
         title: Hashtag di tendenza
@@ -522,9 +545,11 @@ it:
       most_popular: Più popolari
       most_recent: Più recenti
       name: Hashtag
+      review: Esamina status
       reviewed: Controllato
       title: Hashtag
       trending_right_now: Di tendenza ora
+      unique_uses_today: "%{count} post oggi"
       unreviewed: Non controllato
       updated_msg: Impostazioni degli hashtag aggiornate
     title: Amministrazione
@@ -547,6 +572,10 @@ it:
       subject: Nuovo hashtag pronto per essere controllato su %{instance} (%{name})
   aliases:
     add_new: Crea alias
+    created_msg: Hai creato un nuovo alias. Ora puoi iniziare lo spostamento dal vecchio account.
+    deleted_msg: L'alias è stato eliminato. Lo spostamento da quell'account a questo non sarà più possibile.
+    hint_html: Se vuoi trasferirti da un altro account a questo, qui puoi creare un alias, che è necessario prima di poter spostare i seguaci dal vecchio account a questo. Questa azione è <strong>innocua e reversibile</strong>. <strong>La migrazione dell'account è avviata dal vecchio account</strong>.
+    remove: Scollega alias
   appearance:
     advanced_web_interface: Interfaccia web avanzata
     advanced_web_interface_hint: |-
@@ -554,7 +583,12 @@ it:
       Home, notifiche, timeline federata, qualsiasi numero di liste e etichette.
     animations_and_accessibility: Animazioni e accessibiiltà
     confirmation_dialogs: Dialoghi di conferma
+    localization:
+      body: Mastodon è tradotto da volontari.
+      guide_link: https://it.crowdin.com/project/mastodon
+      guide_link_text: Tutti possono contribuire.
     sensitive_content: Contenuto sensibile
+    toot_layout: Layout dei toot
   application_mailer:
     notification_preferences: Cambia preferenze email
     salutation: "%{name},"
@@ -577,6 +611,10 @@ it:
     checkbox_agreement_without_rules_html: Accetto i <a href="%{terms_path}" target="_blank">termini di servizio</a>
     delete_account: Elimina account
     delete_account_html: Se desideri cancellare il tuo account, puoi <a href="%{path}">farlo qui</a>. Ti sarà chiesta conferma.
+    description:
+      prefix_invited_by_user: "@%{name} ti invita a iscriverti a questo server Mastodon!"
+      prefix_sign_up: Iscriviti oggi a Mastodon!
+      suffix: Con un account, sarai in grado di seguire le persone, pubblicare aggiornamenti e scambiare messaggi con gli utenti da qualsiasi server di Mastodon e altro ancora!
     didnt_get_confirmation: Non hai ricevuto le istruzioni di conferma?
     forgot_password: Hai dimenticato la tua password?
     invalid_reset_password_token: Il token di reimpostazione della password non è valido o è scaduto. Per favore richiedine uno nuovo.
@@ -597,11 +635,13 @@ it:
     setup:
       email_below_hint_html: Se l'indirizzo e-mail sottostante non è corretto, puoi cambiarlo qui e ricevere una nuova e-mail di conferma.
       email_settings_hint_html: L'email di conferma è stata inviata a %{email}. Se l'indirizzo e-mail non è corretto, puoi modificarlo nelle impostazioni dell'account.
+      title: Configurazione
     status:
       account_status: Stato dell'account
       confirming: In attesa che la conferma e-mail sia completata.
       functional: Il tuo account è pienamente operativo.
       pending: La tua richiesta è in attesa di esame da parte del nostro staff. Potrebbe richiedere un po' di tempo. Riceverai una e-mail se la richiesta è approvata.
+      redirecting_to: Il tuo account è inattivo perché attualmente reindirizza a %{acct}.
     trouble_logging_in: Problemi di accesso?
   authorize_follow:
     already_following: Stai già seguendo questo account
@@ -641,6 +681,15 @@ it:
     success_msg: Il tuo account è stato cancellato
     warning:
       before: 'Prima di procedere, per favore leggi attentamente queste note:'
+      caches: Il contenuto che è stato memorizzato in cache da altri server può continuare ad esistere
+      data_removal: I tuoi post e altri dati saranno eliminati definitivamente
+      email_change_html: Puoi <a href="%{path}">cambiare il tuo indirizzo e-mail</a> senza cancellare il tuo account
+      email_contact_html: Se ancora non arriva, puoi mandare una mail a <a href="mailto:%{email}">%{email}</a> per chiedere aiuto
+      email_reconfirmation_html: Se non ricevi l'email di conferma, puoi <a href="%{path}">richiederla nuovamente</a>
+      irreversible: Non potrai ripristinare o riattivare il tuo account
+      more_details_html: Per maggiori dettagli, vedi la <a href="%{terms_path}">politica di privacy</a>.
+      username_available: Il tuo nome utente sarà nuovamente disponibile
+      username_unavailable: Il tuo nome utente rimarrà non disponibile
   directories:
     directory: Directory dei profili
     explanation: Scopri utenti in base ai loro interessi
@@ -648,10 +697,10 @@ it:
   domain_validator:
     invalid_domain: non è un nome di dominio valido
   errors:
-    '400': The request you submitted was invalid or malformed.
+    '400': La richiesta che hai inviato non è valida o non è corretta.
     '403': Non sei autorizzato a visualizzare questa pagina.
     '404': La pagina che stavi cercando non esiste.
-    '406': This page is not available in the requested format.
+    '406': Questa pagina non è disponibile nel formato richiesto.
     '410': La pagina che stavi cercando qui non esiste più.
     '422':
       content: Verifica di sicurezza non riuscita. Stai bloccando i cookies?
@@ -660,7 +709,7 @@ it:
     '500':
       content: Siamo spiacenti, ma qualcosa non ha funzionato dal nostro lato.
       title: Questa pagina non è corretta
-    '503': The page could not be served due to a temporary server failure.
+    '503': La pagina non può essere trasmessa a causa di un errore temporaneo del server.
     noscript_html: Per usare l'interfaccia web di Mastodon dovi abilitare JavaScript. In alternativa puoi provare una delle <a href="%{apps_path}">app native</a> per Mastodon per la tua piattaforma.
   existing_username_validator:
     not_found: impossibile trovare un utente locale con quel nome utente
@@ -676,7 +725,6 @@ it:
     blocks: Stai bloccando
     csv: CSV
     domain_blocks: Blocchi di dominio
-    follows: Stai seguendo
     lists: Liste
     mutes: Stai silenziando
     storage: Archiviazione media
@@ -698,6 +746,7 @@ it:
       invalid_irreversible: Il filtraggio irreversibile funziona solo nei contesti di home o notifiche
     index:
       delete: Cancella
+      empty: Non hai alcun filtro.
       title: Filtri
     new:
       title: Aggiungi filtro
@@ -710,6 +759,7 @@ it:
     all: Tutto
     changes_saved_msg: Modifiche effettuate con successo!
     copy: Copia
+    no_batch_actions_available: Nessuna azione batch disponibile su questa pagina
     order_by: Ordina per
     save_changes: Salva modifiche
     validation_errors:
@@ -781,6 +831,34 @@ it:
       too_many: Impossibile allegare più di 4 file
   migrations:
     acct: utente@dominio del nuovo account
+    cancel: Annulla ridirezione
+    cancel_explanation: Se annulli il reindirizzamento sarà riattivato il tuo account attuale, ma i seguaci che sono stati spostati all'altro account non saranno riportati indietro.
+    cancelled_msg: Reindirizzamento annullato.
+    errors:
+      already_moved: è lo stesso account su cui ti sei già trasferito
+      missing_also_known_as: non reinvia a questo account
+      move_to_self: non può essere l'account attuale
+      not_found: non trovato
+      on_cooldown: Ti trovi nel periodo di pausa tra un trasferimento e l'altro
+    followers_count: Seguaci al momento dello spostamento
+    incoming_migrations: In arrivo da un altro account
+    incoming_migrations_html: Per spostarti da un altro account a questo, devi prima creare <a href="%{path}">un alias</a>.
+    moved_msg: Il tuo account è ora reindirizzato a %{acct} e i tuoi follower sono stati spostati.
+    not_redirecting: Il tuo account attualmente non è reindirizzato ad alcun altro account.
+    on_cooldown: Hai recentemente trasferito il tuo account. Questa funzione sarà nuovamente disponibile tra %{count} giorni.
+    past_migrations: Trasferimenti passati
+    proceed_with_move: Sposta seguaci
+    redirecting_to: Il tuo account sta reindirizzando a %{acct}.
+    set_redirect: Imposta ridirezione
+    warning:
+      backreference_required: Il nuovo account deve essere prima configurato per collegarsi a questo
+      before: 'Prima di procedere, leggi attentamente queste avvertenze:'
+      cooldown: Dopo il trasferimento c'è un periodo di pausa durante il quale non potrai trasferirti di nuovo
+      disabled_account: Il tuo account attuale non sarà più pienamente utilizzabile. Tuttavia, avrai accesso all'esportazione dei dati e alla riattivazione.
+      followers: Questa azione sposterà tutti i seguaci dall'account attuale al nuovo account
+      only_redirect_html: In alternativa, puoi solo <a href="%{path}">impostare un redirect sul tuo profilo</a>.
+      other_data: Nessun altro dato verrà spostato automaticamente
+      redirect: Il profilo del tuo account corrente sarà aggiornato con un avviso di ridirezione e sarà escluso dalle ricerche
   moderation:
     title: Moderazione
   notification_mailer:
@@ -817,6 +895,10 @@ it:
       body: 'Il tuo status è stato condiviso da %{name}:'
       subject: "%{name} ha condiviso il tuo status"
       title: Nuova condivisione
+  notifications:
+    email_events: Eventi per notifiche via email
+    email_events_hint: 'Seleziona gli eventi per i quali vuoi ricevere le notifiche:'
+    other_settings: Altre impostazioni per le notifiche
   number:
     human:
       decimal_units:
@@ -850,6 +932,8 @@ it:
   relationships:
     activity: Attività dell'account
     dormant: Dormiente
+    followers: Seguaci
+    following: Seguiti
     last_active: Ultima volta attivo
     most_recent: Più recente
     moved: Trasferito
@@ -925,6 +1009,7 @@ it:
   settings:
     account: Account
     account_settings: Impostazioni dell'account
+    aliases: Alias dell'account
     appearance: Interfaccia
     authorized_apps: Applicazioni autorizzate
     back: Torna a Mastodon
@@ -942,6 +1027,8 @@ it:
     profile: Profilo
     relationships: Follows e followers
     two_factor_authentication: Autenticazione a due fattori
+  spam_check:
+    spam_detected: Questo è un rapporto automatico. È stato rilevato dello spam.
   statuses:
     attached:
       description: 'Allegato: %{attached}'
@@ -965,6 +1052,9 @@ it:
       private: Un toot non pubblico non può essere fissato in cima
       reblog: Un toot condiviso non può essere fissato in cima
     poll:
+      total_people:
+        one: "%{count} persona"
+        other: "%{count} persone"
       total_votes:
         one: "%{count} voto"
         other: "%{count} voti"
diff --git a/config/locales/ja.yml b/config/locales/ja.yml
index 3ff226efe1017adac07fbb47d97b98fd537018e8..c7355f2408b6fd83574f56c7094c40105504539b 100644
--- a/config/locales/ja.yml
+++ b/config/locales/ja.yml
@@ -11,6 +11,7 @@ ja:
     apps: アプリ
     apps_platforms: iOSやAndroidなど、各種環境から利用できます
     browse_directory: ディレクトリから気になる人を探しましょう
+    browse_local_posts: このサーバーの公開タイムラインをご覧ください
     browse_public_posts: Mastodonの公開ライブストリームをご覧ください
     contact: 連絡先
     contact_missing: 未設定
@@ -73,9 +74,17 @@ ja:
     roles:
       admin: Admin
       bot: Bot
+      group: Group
       moderator: Mod
     unavailable: プロフィールは利用できません
     unfollow: フォロー解除
+  account_subscribes:
+    add_new: 追加
+    edit:
+      title: 編集
+    hint_html: "<strong>アカウントの購読とは何ですか?</strong> 指定したアカウントの公開投稿をホームタイムラインまたはリストに挿入します。サーバが受け取っている投稿(連合タイムライン)が対象です。"
+    new:
+      title: 新規アカウント購読を追加
   admin:
     account_actions:
       action: アクションを実行
@@ -113,9 +122,7 @@ ja:
       email_status: メールアドレスの状態
       enable: 有効化
       enabled: 有効
-      feed_url: フィードURL
       followers: フォロワー数
-      followers_url: Followers URL
       follows: フォロー数
       header: ヘッダー
       inbox_url: Inbox URL
@@ -143,10 +150,8 @@ ja:
       no_account_selected: 何も選択されていないため、変更されていません
       no_limits_imposed: 制限なし
       not_subscribed: 購読していない
-      outbox_url: Outbox URL
       pending: 承認待ち
       perform_full_suspension: 活動を完全に停止させる
-      profile_url: プロフィールURL
       promote: 昇格
       protocol: プロトコル
       public: パブリック
@@ -169,8 +174,8 @@ ja:
         moderator: モデレーター
         staff: スタッフ
         user: ユーザー
-      salmon_url: Salmon URL
       search: 検索
+      search_same_ip: 同じ IP のユーザーを検索
       shared_inbox_url: Shared inbox URL
       show:
         created_reports: このアカウントで作られた通報
@@ -197,10 +202,12 @@ ja:
         confirm_user: "%{name} さんが %{target} さんのメールアドレスを確認済みにしました"
         create_account_warning: "%{name} さんが %{target} さんに警告メールを送信しました"
         create_custom_emoji: "%{name} さんがカスタム絵文字 %{target} を追加しました"
+        create_domain_allow: "%{name} さんがドメイン %{target} をドメイン用ホワイトリストに追加しました"
         create_domain_block: "%{name} さんがドメイン %{target} をブロックしました"
         create_email_domain_block: "%{name} さんがドメイン %{target} をメールアドレス用ブラックリストに追加しました"
         demote_user: "%{name} さんが %{target} さんを降格しました"
         destroy_custom_emoji: "%{name} さんがカスタム絵文字 %{target} を削除しました"
+        destroy_domain_allow: "%{name} さんがドメイン %{target} をドメイン用ホワイトリストから外しました"
         destroy_domain_block: "%{name} さんがドメイン %{target} のブロックを外しました"
         destroy_email_domain_block: "%{name} さんがドメイン %{target} をメールアドレス用ブラックリストから外しました"
         destroy_status: "%{name} さんが %{target} さんの投稿を削除しました"
@@ -334,6 +341,7 @@ ja:
       delete: 消去
       destroyed_msg: ブラックリストから外しました
       domain: ドメイン
+      empty: メールブラックリストに登録されたドメインはありません
       new:
         create: ドメインを追加
         title: メールアドレス用ブラックリスト新規追加
@@ -389,12 +397,15 @@ ja:
       destroyed_msg: 通報メモを削除しました!
     reports:
       account:
-        note: メモ
-        report: 通報
+        notes:
+          other: "%{count} 件のメモ"
+        reports:
+          other: "%{count} 件の通報"
       action_taken_by: 通報処理者
       are_you_sure: 本当に実行しますか?
       assign_to_self: 担当になる
       assigned: 担当者
+      by_target_domain: ドメイン
       comment:
         none: なし
       created_at: 通報日時
@@ -440,6 +451,8 @@ ja:
         users: ログイン済みローカルユーザーのみ許可
       domain_blocks_rationale:
         title: コメントを表示
+      enable_bootstrap_timeline_accounts:
+        title: 新規ユーザーの自動フォローを有効にする
       hero:
         desc_html: フロントページに表示されます。サイズは600x100px以上推奨です。未設定の場合、標準のサムネイルが使用されます
         title: ヒーローイメージ
@@ -568,7 +581,12 @@ ja:
     animations_and_accessibility: アニメーションとアクセシビリティー
     confirmation_dialogs: 確認ダイアログ
     discovery: 見つける
+    localization:
+      body: Mastodonは有志によって翻訳されています。
+      guide_link: https://ja.crowdin.com/project/mastodon
+      guide_link_text: 誰でも参加することができます。
     sensitive_content: 閲覧注意コンテンツ
+    toot_layout: トゥートレイアウト
   application_mailer:
     notification_preferences: メール設定の変更
     salutation: "%{name} さん"
@@ -674,6 +692,15 @@ ja:
     directory: ディレクトリ
     explanation: 関心を軸にユーザーを発見しよう
     explore_mastodon: "%{title}を探索"
+  domain_subscribes:
+    add_new: 追加
+    edit:
+      title: 編集
+    exclude_reblog: 含めない
+    hint_html: "<strong>ドメインの購読とは何ですか?</strong> 指定したドメインの公開投稿をホームタイムラインまたはリストに挿入します。サーバが受け取っている投稿(連合タイムライン)が対象です。"
+    include_reblog: 含める
+    new:
+      title: 新規ドメイン購読を追加
   domain_validator:
     invalid_domain: は無効なドメイン名です
   errors:
@@ -705,15 +732,26 @@ ja:
     blocks: ブロック
     csv: CSV
     domain_blocks: 非表示にしたドメイン
-    follows: フォロー
     lists: リスト
     mutes: ミュート
     storage: メディア
+  favourite_tags:
+    add_new: 追加
+    errors:
+      limit: お気に入りハッシュタグの上限に達しました
+    hint_html: "<strong>お気に入りのハッシュタグとは何ですか?</strong> それらはあなた自身のためにだけ使用される、ハッシュタグを活用したブラウジングを助けるためのツールです。すばやくタイムラインを切り替えることができます。"
   featured_tags:
     add_new: 追加
     errors:
       limit: 注目のハッシュタグの上限に達しました
     hint_html: "<strong>注目のハッシュタグとは?</strong>プロフィールページに目立つ形で表示され、そのハッシュタグのついたあなたの公開投稿だけを抽出して閲覧できるようにします。クリエイティブな仕事や長期的なプロジェクトを追うのに優れた機能です。"
+  follow_tags:
+    add_new: 追加
+    edit:
+      title: 編集
+    hint_html: "<strong>ハッシュタグのフォローとは何ですか?</strong> それらはあなたがフォローするハッシュタグのコレクションです。サーバが受け取ったハッシュタグ付きの投稿の中から、ここで指定したハッシュタグのついた投稿をホームタイムラインまたはリストに挿入します。"
+    new:
+      title: ハッシュタグのフォローを追加
   filters:
     contexts:
       home: ホームタイムライン
@@ -727,6 +765,7 @@ ja:
       invalid_irreversible: この機能はホームタイムラインまたは通知と一緒に指定する場合のみ機能します
     index:
       delete: 削除
+      empty: フィルターはありません。
       title: フィルター
     new:
       title: 新規フィルターを追加
@@ -800,9 +839,34 @@ ja:
       expires_at: 有効期限
       uses: 使用
     title: 新規ユーザーの招待
+  keyword_subscribes:
+    add_new: 追加
+    disabled: 無効
+    edit:
+      title: 編集
+    enabled: 有効
+    errors:
+      duplicate: 既に同じ内容が登録されています
+      limit: キーワード購読の登録可能数の上限に達しました
+      regexp: "正規表現に誤りがあります: %{message}"
+    hint_html: "<strong>キーワードの購読とは何ですか?</strong> 指定した単語のいずれか、または正規表現に一致する公開投稿をホームタイムラインまたはリストに挿入します。サーバが受け取っている投稿(連合タイムライン)が対象です。"
+    ignorecase:
+      enabled: 無視
+      disabled: 区別
+    ignore_block: 無視
+    index:
+      delete: 削除
+      title: キーワードの購読
+    new:
+      title: 新規キーワード購読を追加
+    regexp:
+      enabled: 正規表現
+      disabled: キーワード
   lists:
+    add_new: 新しいリストを追加
     errors:
       limit: リストの上限に達しました
+    home: ホーム
   media_attachments:
     validations:
       images_and_video: 既に画像が追加されているため、動画を追加することはできません
@@ -871,6 +935,10 @@ ja:
       body: "%{name} さんにブーストされた、あなたのトゥートがあります:"
       subject: "%{name} さんにブーストされました"
       title: 新たなブースト
+  notifications:
+    email_events: メールによる通知
+    email_events_hint: '受信する通知を選択:'
+    other_settings: その他の通知設定
   number:
     human:
       decimal_units:
@@ -898,12 +966,15 @@ ja:
       too_few_options: は複数必要です
       too_many_options: は%{max}個までです
   preferences:
+    fedibird_features: Fedibirdの機能
     other: その他
     posting_defaults: デフォルトの投稿設定
     public_timelines: 公開タイムライン
   relationships:
     activity: 活動
     dormant: 非アクティブ
+    followers: フォロワー
+    following: フォロー中
     last_active: 最後の活動
     most_recent: 新着
     moved: 引っ越し済み
@@ -979,18 +1050,24 @@ ja:
   settings:
     account: アカウント
     account_settings: アカウント設定
+    account_subscribes: アカウントの購読
     aliases: アカウントエイリアス
     appearance: 外観
     authorized_apps: 認証済みアプリ
     back: Mastodon に戻る
     delete: アカウントの削除
     development: 開発
+    domain_subscribes: ドメインの購読
     edit_profile: プロフィールを編集
     export: データのエクスポート
+    favourite_tags: お気に入りハッシュタグ
     featured_tags: 注目のハッシュタグ
+    follow_and_subscriptions: フォロー・購読
+    follow_tags: ハッシュタグのフォロー
     identity_proofs: Identity proofs
     import: データのインポート
     import_and_export: インポート・エクスポート
+    keyword_subscribes: キーワードの購読
     migrate: アカウントの引っ越し
     notifications: 通知
     preferences: ユーザー設定
@@ -1126,7 +1203,26 @@ ja:
   themes:
     contrast: Mastodon (ハイコントラスト)
     default: Mastodon (ダーク)
+    instance-ticker-type-0-contrast: Mastodon (ハイコントラスト / インスタンス・ティッカー Type-0 代替アイコン)
+    instance-ticker-type-0-light: Mastodon (ライト / インスタンス・ティッカー Type-0 代替アイコン)
+    instance-ticker-type-0: Mastodon (ダーク / インスタンス・ティッカー Type-0 代替アイコン)
+    instance-ticker-type-1-contrast: Mastodon (ハイコントラスト / インスタンス・ティッカー Type-1 Favicon)
+    instance-ticker-type-1-light: Mastodon (ライト / インスタンス・ティッカー Type-1 Favicon)
+    instance-ticker-type-1: Mastodon (ダーク / インスタンス・ティッカー Type-1 Favicon)
+    instance-ticker-type-10-contrast: Mastodon (ハイコントラスト / インスタンス・ティッカー Type-10 代替アイコン+通知)
+    instance-ticker-type-10-light: Mastodon (ライト / インスタンス・ティッカー Type-10 代替アイコン+通知)
+    instance-ticker-type-10: Mastodon (ダーク / インスタンス・ティッカー Type-10 代替アイコン+通知)
+    instance-ticker-type-11-contrast: Mastodon (ハイコントラスト / インスタンス・ティッカー Type-11 Favicon+通知)
+    instance-ticker-type-11-light: Mastodon (ライト / インスタンス・ティッカー Type-11 Favicon+通知)
+    instance-ticker-type-11: Mastodon (ダーク / インスタンス・ティッカー Type-11 Favicon+通知)
+    instance-ticker-type-12-contrast: Mastodon (ハイコントラスト / インスタンス・ティッカー Type-12 Favicon v2+通知)
+    instance-ticker-type-12-light: Mastodon (ライト / インスタンス・ティッカー Type-12 Favicon v2+通知)
+    instance-ticker-type-12: Mastodon (ダーク / インスタンス・ティッカー Type-12 Favicon v2+通知)
+    instance-ticker-type-2-contrast: Mastodon (ハイコントラスト / インスタンス・ティッカー Type-2 Favicon v2)
+    instance-ticker-type-2-light: Mastodon (ライト / インスタンス・ティッカー Type-2 Favicon v2)
+    instance-ticker-type-2: Mastodon (ダーク / インスタンス・ティッカー Type-2 Favicon v2)
     mastodon-light: Mastodon (ライト)
+    mobile-small: Mobile 小 / Mastodon (ダーク)
   time:
     formats:
       default: "%Y年%m月%d日 %H:%M"
@@ -1134,7 +1230,7 @@ ja:
   two_factor_authentication:
     code_hint: 続行するには認証アプリで表示されたコードを入力してください
     description_html: "<strong>二段階認証</strong>を有効にするとログイン時、認証アプリからコードを入力する必要があります。"
-    disable: 無効
+    disable: 無効化
     enable: 有効
     enabled: 二段階認証は有効になっています
     enabled_success: 二段階認証が有効になりました
@@ -1161,10 +1257,10 @@ ja:
       review_server_policies: サーバーのポリシーを確認
       statuses: '特に次のトゥート:'
       subject:
-        disable: あなたのアカウント %{acct} は凍結されています
+        disable: あなたのアカウント %{acct} は凍結されました
         none: "%{acct} に対する警告"
-        silence: あなたのアカウント %{acct} はサイレンスにされています
-        suspend: あなたのアカウント %{acct} は停止されています
+        silence: あなたのアカウント %{acct} はサイレンスにされました
+        suspend: あなたのアカウント %{acct} は停止されました
       title:
         disable: アカウントが凍結されました
         none: 警告
@@ -1175,14 +1271,14 @@ ja:
       edit_profile_step: アイコンやヘッダーの画像をアップロードしたり、表示名を変更したりして、自分のプロフィールをカスタマイズすることができます。また、誰かからの新規フォローを許可する前にその人の様子を見ておきたい場合、アカウントを承認制にすることもできます。
       explanation: 始めるにあたってのアドバイスです
       final_action: 始めましょう
-      final_step: 'さあ、始めましょう! たとえフォロワーがまだいなくても、あなたの公開した投稿はローカルタイムラインやハッシュタグなどを通じて誰かの目にとまるはずです。自己紹介をしたいときには #introductions ハッシュタグが便利かもしれません。'
+      final_step: 'さあ、始めましょう! たとえフォロワーがまだいなくても、あなたの公開した投稿は連合タイムラインやハッシュタグなどを通じて誰かの目にとまるはずです。自己紹介をしたいときには #fedibird ハッシュタグが便利かもしれません。'
       full_handle: あなたの正式なユーザーID
       full_handle_hint: 別のサーバーの友達とフォローやメッセージをやり取りする際には、これを伝えることになります。
       review_preferences_action: 設定の変更
       review_preferences_step: 受け取りたいメールの種類や投稿のデフォルト公開範囲など、ユーザー設定を必ず済ませておきましょう。目が回らない自信があるなら、アニメーション GIF を自動再生する設定もご検討ください。
       subject: Mastodon へようこそ
-      tip_federated_timeline: 連合タイムラインは Mastodon ネットワークの流れを見られるものです。ただしあなたと同じサーバーの人がフォローしている人だけが含まれるので、それが全てではありません。
-      tip_following: 最初は、サーバーの管理者をフォローした状態になっています。もっと興味のある人たちを見つけるには、ローカルタイムラインと連合タイムラインを確認してみましょう。
+      tip_federated_timeline: 連合タイムラインは Mastodon ネットワークの流れを見られるものです。ただしあなたと同じサーバーの人がフォローしている人や、リレーを経由して送られてくる投稿だけが含まれるので、それが全てではありません。
+      tip_following: 最初は、サーバーのインフォメーションアカウントをフォローした状態になっています。もっと興味のある人たちを見つけるには、#fedibird ハッシュタグタイムラインと連合タイムラインを確認してみましょう。
       tip_local_timeline: ローカルタイムラインは %{instance} にいる人々の流れを見られるものです。彼らはあなたと同じサーバーにいる隣人のようなものです!
       tip_mobile_webapp: お使いのモバイル端末で、ブラウザから Mastodon をホーム画面に追加できますか? もし追加できる場合、プッシュ通知の受け取りなど、まるで「普通の」アプリのような機能が楽しめます!
       tips: 豆知識
diff --git a/config/locales/ka.yml b/config/locales/ka.yml
index 0ab1f2d69da1adc37222057e15bb3708c599f454..3a3a338589534e6be09523afdefe58f51cc6947a 100644
--- a/config/locales/ka.yml
+++ b/config/locales/ka.yml
@@ -70,9 +70,7 @@ ka:
       email_status: ელ-ფოსტის სტატუსი
       enable: ჩართვა
       enabled: ჩართულია
-      feed_url: ლენტის ურლ
       followers: მიმდევრები
-      followers_url: მიმდევრების ურლ
       follows: დადევნებები
       inbox_url: ინბოქსის ურლ
       ip: აი-პი
@@ -93,9 +91,7 @@ ka:
       most_recent_activity: უახლესი აქტივობა
       most_recent_ip: უახლესი აი-პი
       not_subscribed: გამოუწერელი
-      outbox_url: აუთბოქსის ურლ
       perform_full_suspension: მოახდინეთ სრული შეჩერება
-      profile_url: პროფილის ურლ
       promote: დაწინაურება
       protocol: პროტოკოლი
       public: საჯარო
@@ -115,7 +111,6 @@ ka:
         moderator: მოდერატორი
         staff: სტაფი
         user: მომხმარებელი
-      salmon_url: სალმონის ურლ
       search: ძებნა
       shared_inbox_url: გაზიარებული ინბოქსის ურლ
       show:
@@ -267,9 +262,6 @@ ka:
       created_msg: რეპორტის ჩანაწერი წარმატებით შეიქმნა!
       destroyed_msg: რეპორტის ჩანაწერი წარმატებით გაუქმდა!
     reports:
-      account:
-        note: ჩანაწერი
-        report: რეპორტი
       action_taken_by: მოქმედება შეასრულა
       are_you_sure: დარწმუნებული ხარ?
       assign_to_self: დანიშნე ჩემზე
@@ -458,7 +450,6 @@ ka:
       size: ზომა
     blocks: თქვენ ბლოკავთ
     csv: ცსვ
-    follows: თქვენ მიჰყვებით
     mutes: თქვენ აჩუმებთ
     storage: მედია საცავი
   filters:
diff --git a/config/locales/kab.yml b/config/locales/kab.yml
new file mode 100644
index 0000000000000000000000000000000000000000..629793736698bee5151e6e5aa58d12a5af0d6620
--- /dev/null
+++ b/config/locales/kab.yml
@@ -0,0 +1,433 @@
+---
+kab:
+  about:
+    about_hashtag_html: Tigi d tiberraḥin tizuyaz, ɣur-sent <strong>#%{hashtag}</strong>. Tzemreḍ ad tesdemreḍ akked yid-sent ma tesɛiḍ amiḍan deg kra n umḍiq deg fediverse.
+    about_mastodon_html: 'Azeṭṭa ametti n uzekka: Ulac deg-s asussen, ulac taɛessast n tsuddiwin fell-ak, yebna ɣef leqder d ttrebga, daɣen d akeslemmas! Akked Mastudun, isefka-inek ad qimen inek!'
+    about_this: Ɣef
+    active_count_after: yekker
+    active_footnote: Imseqdacen yekkren s wayyur (MAU)
+    administered_by: 'Yettwadbel sɣur:'
+    api: API
+    apps: Isnasen izirazen
+    apps_platforms: Seqdec Masṭudun deg iOS, Android d tɣeṛɣṛin-nniḍen
+    browse_directory: Qelleb deg tebdert n yimaɣnuten teǧǧeḍ-d gar-asen widak tebɣiḍ
+    contact: Anermis
+    contact_unavailable: Wlac
+    discover_users: Af-d imseqdacen
+    documentation: Amnir
+    federation_hint_html: S umiḍan deg %{instance} tzemreḍ ad tḍefṛeḍ imdanen deg yal aqeddac Masṭudun d wugar n waya.
+    get_apps: Ɛreḍ asnas aziraz
+    hosted_on: Masá¹­udun yersen deg %{domain}
+    learn_more: Issin ugar
+    privacy_policy: Tasertit tabaḍnit
+    see_whats_happening: Ẓer d acu i iḍerrun
+    server_stats: 'Tidaddanin n uqeddac:'
+    source_code: Tangalt n uɣbalu
+    status_count_after:
+      one: n tsuffeɣt
+      other: n tsuffɣin
+    status_count_before: I d-yessuffɣen
+    tagline: Ḍfeṛ imddukkal-ik tissineḍ-d wiyaḍ
+    terms: Tiwetlin n useqdec
+    unavailable_content: Ulac agbur
+    unavailable_content_description:
+      domain: Aqeddac
+      reason: Taγzent
+      silenced: 'Tisuffɣin ara d-yekken seg yiqeddacen-agi ad ttwaffrent deg tsuddmin tizuyaz d yidiwenniten, daɣen ur ttilin ara telɣa ɣef usedmer n yimseqdacen-nsen, skud ur ten-teḍfiṛeḍ ara:'
+    unavailable_content_html: Mastudun s umata yeḍmen-ak ad teẓreḍ agbur, ad tesdemreḍ akked yimseqdacen-nniḍen seg yal aqeddac deg fedivers. Ha-tent-an ɣur-k tsuraf i yellan deg uqeddac-agi.
+    user_count_after:
+      one: amseqdac
+      other: imseqdacen
+    user_count_before: Amagger n
+    what_is_mastodon: D acu-t Masá¹­udun?
+  accounts:
+    follow: Ḍfeṛ
+    followers:
+      one: Ameḍfaṛ
+      other: Imeḍfaṛen
+    following: Yeá¹­afaá¹›
+    joined: Yettwarna-d deg %{date}
+    last_active: armud aneggaru
+    moved_html: "%{name} ibeddel amiḍan ɣer %{new_profile_link}:"
+    network_hidden: Ulac isalli-agi
+    never_active: Werǧin
+    nothing_here: Ulac kra da!
+    people_followed_by: Imdanen i yeá¹­á¹­afaá¹› %{name}
+    people_who_follow: Imdanen yeá¹­á¹­afaá¹›en %{name}
+    posts:
+      one: Taberraḥt
+      other: Tiberraḥin
+    posts_tab_heading: Tiberraḥin
+    posts_with_replies: Tibarraḥin d tririyin
+    reserved_username: Isem-agi n umseqdac yettwaá¹­á¹­ef yakan
+    roles:
+      admin: Anedbal
+      bot: Aá¹›ubut
+      group: Agraw
+    unavailable: Ur nufi ara amaɣnu-a
+    unfollow: Ur á¹­á¹­afaá¹› ara
+  admin:
+    account_moderation_notes:
+      create: Eǧǧ awennit
+      delete: Kkes
+    accounts:
+      approve: Qbel
+      approve_all: Qbel kullec
+      are_you_sure: Tetḥeqqeḍ?
+      by_domain: Taɣult
+      change_email:
+        changed_msg: Imayl n umiḍan yettwabeddel mebla ugur!
+        current_email: Imayl n tura
+        label: Beddel imayl
+        new_email: Imayl amaynut
+        submit: Beddel imayl
+        title: Beddel imayl-ik s %{username}
+      confirm: Sentem
+      confirmed: Yettwasentem
+      confirming: Asentem
+      deleted: Yettwakkes
+      disable: Gdel
+      disable_two_factor_authentication: Gdel 2FA
+      display_name: Isem ara d-yettwaskanen
+      domain: Taɣult
+      edit: Ẓreg
+      email: Imayl
+      email_status: Addad n imayl
+      enable: Rmed
+      enabled: Yermed
+      followers: Imeḍfaṛen
+      follows: Yeá¹­afaá¹›
+      header: Ixef
+      inbox_url: URL n yinekcam
+      ip: Tansa IP
+      joined: Yettwarna-d
+      location:
+        all: Akk
+        local: Adigan
+        title: Amḍiq
+      login_status: Addad n tuqqna
+      memorialize: Err amiḍan d asebter n usmekti
+      moderation:
+        active: Yermed
+        all: Akk
+        pending: Yettraǧu
+        silenced: Yettwasgugem
+      most_recent_activity: Armud aneggaru
+      most_recent_ip: Tansa IP taneggarut
+      no_account_selected: Ula yiwen n umiḍan ur yettwabeddel acku ula yiwen ur yettwafren
+      no_limits_imposed: War tilisa
+      protocol: Aneggaf
+      public: Azayez
+      redownload: Smiren amaɣnu
+      reject: Ggami
+      reject_all: Ggami-ten akk
+      resend_confirmation:
+        already_confirmed: Amseqdac-agi yettwasentem yakan
+        send: Azen tikelt-nniḍen imayl n usentem
+        success: Imayl n usentem yettwazen mebla ugur!
+      reset: Wennez
+      reset_password: Beddel awal uffir
+      roles:
+        admin: Anedbal
+        staff: Tarbaɛt
+        user: Amseqdac
+      search: Nadi
+      search_same_ip: Imseqdacen-nniḍen s tansa IP am tinn-ik
+      silence: Sgugem
+      silenced: Yettwasgugem
+      statuses: Tisuffɣin
+      time_in_queue: Deg tebdert n uraju %{time}
+      title: Imiḍan
+      unconfirmed_email: Imayl ur yettwasentem ara
+      username: Isem n useqdac
+      web: Web
+      whitelisted: Deg tebdert tamellalt
+    action_logs:
+      actions:
+        change_email_user: "%{name} ibeddel imayl n umseqdac %{target}"
+        confirm_user: "%{name} isentem tansa imayl n umseqdac %{target}"
+        create_account_warning: "%{name} yuzen alɣu i %{target}"
+        create_custom_emoji: "%{name} yessuli-d imujiten imaynuten %{target}"
+        create_domain_allow: "%{name} yerna taɣult %{target} ɣer tebdart tamellalt"
+        create_domain_block: "%{name} yesseḥbes taɣult %{target}"
+        create_email_domain_block: "%{name} yerna taɣult n imayl %{target} ɣer tebdart taberkant"
+        destroy_custom_emoji: "%{name} ihudd imuji %{target}"
+        destroy_domain_allow: "%{name} yekkes taɣult %{target} seg tebdart tamellalt"
+        destroy_domain_block: "%{name} yekkes aseḥbes n taɣult %{target}"
+        destroy_email_domain_block: "%{name} yerna taɣult n imayl %{target} ɣer tebdart tamellalt"
+        destroy_status: "%{name} yekkes tasuffeɣt n %{target}"
+        disable_custom_emoji: "%{name} yessens imuji %{target}"
+        disable_user: "%{name} yessens tuqqna i umseqdac %{target}"
+        enable_custom_emoji: "%{name} yermed imuji %{target}"
+        enable_user: "%{name} yermed tuqqna i umseqdac %{target}"
+        memorialize_account: "%{name} yerra amiḍan n %{target} d asebter n usmekti"
+        silence_account: "%{name} yesgugem amiḍan n %{target}"
+        unsilence_account: "%{name} yekkes asgugem n umiḍan n %{target}"
+        update_custom_emoji: "%{name} yelqem imuji %{target}"
+        update_status: "%{name} yelqem tasuffeɣt n %{target}"
+      deleted_status: "(tasuffeɣt tettwakkes)"
+    custom_emojis:
+      assign_category: Efk taggayt
+      by_domain: Taγult
+      copied_msg: Takna tadigant n imuji yettwarna-d mebla ugur
+      copy: Nγel
+      create_new_category: Rnu-d taggayt tamaynut
+      created_msg: Imuji yettwarna-d mebla ugur!
+      delete: Kkes
+      destroyed_msg: Ahuddu n imuji yeḍra-d mebla ugur!
+      disable: Gdel
+      disabled: Ssens
+      emoji: Emuji
+      enable: Rmed
+      enabled: Yermed
+      enabled_msg: Imuji yermed mebla ugur
+      image_hint: PNG n ddaw n 50KT
+      list: Tabdart
+      new:
+        title: Timerna n imuji udmawan amaynut
+      title: Imujiten udmawanen
+      upload: Sali
+    dashboard:
+      feature_profile_directory: Imaɣnuten
+      features: Timahaltin
+      software: Aseγẓan
+      title: Tafelwit
+      week_users_active: yermed deg yimalas-agi
+      week_users_new: imseqdacen deg yimalas-agi
+    domain_allows:
+      add_new: Timerna n taɣult ɣer tebdart tamellalt
+      created_msg: Taɣult-a tettwarna ɣer tebdart tamellalt mebla ugur
+      destroyed_msg: Taɣult-a tettwakkes seg tebdart tamellalt
+      undo: Kkes seg tebdart tamellalt
+    domain_blocks:
+      domain: Taγult
+      new:
+        severity:
+          noop: Ula yiwen
+          silence: Sgugem
+      severity:
+        silence: yettwasgugem
+    email_domain_blocks:
+      add_new: Rnu amaynut
+      delete: Kkes
+      domain: Taγult
+      new:
+        create: Rnu taγult
+        title: Timerna n taɣult tamaynut n imayl ɣer tebdart taberkant
+      title: Tabdart taberkant n imayl
+    followers:
+      back_to_account: Uγal γer umiḍan
+      title: Imeḍfaṛen n %{acct}
+    instances:
+      by_domain: Taγult
+      delivery_available: Yella usiweḍ
+      known_accounts:
+        one: "%{count} n umiḍan i yettwassen"
+        other: "%{count} n yimiḍanen i yettwassnen"
+      moderation:
+        all: Akk
+      total_blocked_by_us: Ttwasḥebsen sɣur-neɣ
+      total_followed_by_them: Ṭtafaṛen-t
+      total_followed_by_us: Neá¹­á¹­afaá¹›-it
+    invites:
+      filter:
+        all: Akk
+        available: Yella
+        expired: Ifat
+        title: Asizdeg
+      title: Iɛaruḍen
+    relays:
+      delete: Kkes
+      disable: Gdel
+      enable: Rmed
+    reports:
+      are_you_sure: Tetḥaq-eḍ?
+      comment:
+        none: Ula yiwen
+      mark_as_resolved: Creḍ-it yefra
+      mark_as_unresolved: Creḍ-it ur yefra ara
+      notes:
+        create: Rnu tamawt
+        delete: Kkes
+      resolved: Fran
+      unresolved: Ur yefra ara
+    settings:
+      custom_css:
+        desc_html: Beddel aɣan s CSS ara d-yettwasalayen deg yal asebter
+        title: CSS udmawan
+      domain_blocks:
+        all: Ɣef medden akk
+        disabled: Ɣef yiwen ala
+        users: Ɣef yimseqdacen idiganen i yeqqnen
+      title: Iγewwaṛen n usmel
+    statuses:
+      batch:
+        delete: Kkes
+    warning_presets:
+      add_new: Rnu amaynut
+      delete: Kkes
+  appearance:
+    sensitive_content: Agbur amḥulfu
+  application_mailer:
+    salutation: "%{name},"
+  auth:
+    change_password: Awal uffir
+    delete_account: Kkes amiḍan
+    description:
+      prefix_sign_up: Zeddi di Masá¹­udun assa!
+    forgot_password: Tettud awal-ik uffir?
+    login: Qqen
+    logout: Ffeγ
+    security: Taγellist
+    trouble_logging_in: Γur-k uguren n tuqqna?
+  authorize_follow:
+    follow: Ḍfeṛ
+    post_follow:
+      web: Ddu γer Web
+    title: Ḍfeṛ %{acct}
+  challenge:
+    confirm: Kemmel
+    invalid_password: Yir awal uffir
+  datetime:
+    distance_in_words:
+      about_x_months: "%{count}ug"
+      about_x_years: "%{count}i"
+      almost_x_years: "%{count}i"
+      half_a_minute: Tura kan
+      less_than_x_seconds: Tura kan
+      over_x_years: "%{count}i"
+      x_minutes: "%{count}t"
+      x_months: "%{count}ug"
+  deletes:
+    proceed: Kkes amiḍan
+  directories:
+    explore_mastodon: Snirem %{title}
+  errors:
+    '400': The request you submitted was invalid or malformed.
+    '403': You don't have permission to view this page.
+    '404': The page you are looking for isn't here.
+    '406': This page is not available in the requested format.
+    '410': The page you were looking for doesn't exist here anymore.
+    '422': 
+    '429': Throttled
+    '500': 
+    '503': The page could not be served due to a temporary server failure.
+  exports:
+    archive_takeout:
+      date: Azemz
+      size: Teγzi
+    csv: CSV
+    lists: Tibdarin
+  featured_tags:
+    add_new: Rnu amaynut
+  filters:
+    contexts:
+      notifications: Tilγa
+    index:
+      delete: Kkes
+  footer:
+    developers: Ineflayen
+    more: Ugar…
+  generic:
+    all: Akk
+    copy: Nγel
+    save_changes: Sekles ibeddilen
+  identity_proofs:
+    authorize: Ih, ssireg
+    i_am_html: Nekki d %{username} deg %{service}.
+  invites:
+    expires_in:
+      '1800': 30 n tisdatin
+      '21600': 6 n isragen
+      '3600': 1 asrag
+      '43200': 12 n isragen
+      '604800': 1 umalas
+      '86400': 1 wass
+    expires_in_prompt: Werǧin
+  migrations:
+    acct: Ibeddel γer
+  notification_mailer:
+    follow:
+      title: Ameḍfaṛ amaynut
+  preferences:
+    other: Wiyaḍ
+  relationships:
+    followers: Imeḍfaṛen
+    following: Yeá¹­afaá¹›
+  sessions:
+    browser: Iminig
+    browsers:
+      alipay: Alipay
+      blackberry: Blackberry
+      chrome: Chrome
+      edge: Microsoft Edge
+      electron: Electron
+      firefox: Firefox
+      opera: Opera
+      otter: Otter
+      safari: Safari
+      uc_browser: UCBrowser
+      weibo: Weibo
+    current_session: Tiγimit tamirant
+    description: "%{browser} s %{platform}"
+    ip: IP
+    platforms:
+      adobe_air: Adobe Air
+      android: Android
+      blackberry: Blackberry
+      chrome_os: ChromeOS
+      firefox_os: Firefox OS
+      ios: iOS
+      linux: Linux
+      mac: Mac
+      windows: Windows
+      windows_mobile: Windows Mobile
+  settings:
+    account: Amiḍan
+    account_settings: Iγewwaṛen n umiḍan
+    appearance: Udem
+    back: Uγal γer Masṭudun
+    development: Taneflit
+    notifications: Tilγa
+    preferences: Imenyafen
+    profile: Ameγnu
+    relationships: Imeḍfaṛen akked wid i teṭṭafaṛeḍ
+  statuses:
+    attached:
+      image:
+        one: "%{count} tugna"
+        other: "%{count} tugniwin"
+      video:
+        one: "%{count} n tbidyutt"
+        other: "%{count} n tbidyutin"
+    open_in_web: Ldi deg Web
+    show_more: Sken-ed ugar
+    title: '%{name}: "%{quote}"'
+    visibilities:
+      private: Imeḍfaṛen kan
+  stream_entries:
+    sensitive_content: Agbur amḥulfu
+  themes:
+    contrast: Masá¹­udun (agnil awriran)
+    default: Masá¹­udun (Aberkan)
+    mastodon-light: Masṭudun (Aceɛlal)
+  time:
+    formats:
+      default: "%b %d, %Y, %H:%M"
+      month: "%b %Y"
+  two_factor_authentication:
+    disable: Gdel
+    enable: Rmed
+  user_mailer:
+    warning:
+      title:
+        none: Γur-wat
+    welcome:
+      full_handle: Tansa umiḍan-ik takemmalit
+      review_preferences_action: Beddel imenyafen
+      subject: Ansuf γer Masṭudun
+      title: Ansuf yessek·em, %{name}!
+  users:
+    signed_in_as: 'Teqqneḍ amzun d:'
+  verification:
+    verification: Asenqed
diff --git a/config/locales/kk.yml b/config/locales/kk.yml
index 49cc18a4cce8c043418c9248ad4e3f1ebdea64eb..4ef87a5bc525144ff8eaa0eb78f2c46925887e91 100644
--- a/config/locales/kk.yml
+++ b/config/locales/kk.yml
@@ -4,21 +4,45 @@ kk:
     about_hashtag_html: Бұл жерде <strong>#%{hashtag}</strong> хэштегімен жинақталған жазбалар. Желіге тіркеліп, сіз де қосыла аласыз бұл ортаға.
     about_mastodon_html: Mastodon - әлеуметтік желіге негізделген, тегін және веб протоколды, ашық кодты бағдарлама. Ол email сияқты орталығы жоқ құрылым.
     about_this: Туралы
+    active_count_after: актив
+    active_footnote: Соңғы айдағы актив қолданушылар (MAU)
     administered_by: 'Админ:'
+    api: API
     apps: Мобиль қосымшалар
+    apps_platforms: iOS, Android және басқа платформалардағы Mastodon қолданыңыз
+    browse_directory: Профильдер каталогын қажет фильтрлер арқылы қараңыз
+    browse_local_posts: Осы желідегі ашық посттар стримын қараңыз
+    browse_public_posts: Mastodon-дағы ашық посттар стримын қараңыз
     contact: Байланыс
     contact_missing: Бапталмаған
     contact_unavailable: Белгісіз
+    discover_users: Қолданушыларды іздеңіз
     documentation: Құжаттама
+    federation_hint_html: "%{instance} платформасындағы аккаунтыңыз арқылы Mastodon желісіндегі кез келген сервердегі қолданушыларға жазыла аласыз."
+    get_apps: Мобиль қосымшаны қолданып көріңіз
     hosted_on: Mastodon орнатылған %{domain} доменінде
+    instance_actor_flash: |
+      Бұл аккаунт кез-келген жеке пайдаланушыны емес, сервердің өзін көрсету үшін қолданылатын виртуалды актер.
+      Ол федерация мақсаттарында қолданылады және сіз барлығын бұғаттағыңыз келмейінше, бұғатталмауы керек, бұл жағдайда сіз домен блогын қолданған жөн.
     learn_more: Көбірек білу
     privacy_policy: Құпиялылық саясаты
+    see_whats_happening: Не болып жатқанын қараңыз
+    server_stats: 'Сервер статистикасы:'
     source_code: Ашық коды
     status_count_after:
       one: жазба
       other: жазба
     status_count_before: Барлығы
+    tagline: Достарыңызды оқыңыз және жаңа авторларды табыңыз
     terms: Қолдану шарттары
+    unavailable_content: Қолжетімсіз контент
+    unavailable_content_description:
+      domain: Сервер
+      reason: Себеп
+      rejecting_media: 'Бұл серверлердегі медиа файлдар өңделмейді немесе сақталмайды және түпнұсқаға қолмен басуды қажет ететін нобайлар көрсетілмейді:'
+      silenced: 'Осы серверлердегі жазбалар жалпы уақыт кестесінде және сөйлесулерде жасырын болады және егер сіз оларды бақыламасаңыз, олардың пайдаланушыларының өзара әрекеттестігі туралы ешқандай хабарламалар жасалмайды:'
+      suspended: 'Бұл серверлерден ешқандай дерек өңделмейді, сақталмайды немесе алмаспайды, бұл серверлердегі пайдаланушылармен өзара әрекеттесуді немесе байланыс орнатуды мүмкін етпейді:'
+    unavailable_content_html: Мастодон, әдетте, мазмұнды көруге және кез-келген басқа сервердегі пайдаланушылармен қарым-қатынас жасауға мүмкіндік береді. Бұл нақты серверде жасалған ерекше жағдайлар.
     user_count_after:
       one: қолданушы
       other: қолданушы
@@ -26,6 +50,8 @@ kk:
     what_is_mastodon: Mastodon деген не?
   accounts:
     choices_html: "%{name} таңдаулары:"
+    endorsements_hint: Сіз веб-интерфейстен адамдарға қолдау көрсете аласыз және олар осында көрсетіледі.
+    featured_tags_hint: Мұнда көрсетілетін нақты хэштегтерді ұсына аласыз.
     follow: Жазылу
     followers:
       one: Оқырман
@@ -37,6 +63,7 @@ kk:
     media: Медиа
     moved_html: "%{name} мына жерге көшті %{new_profile_link}:"
     network_hidden: Бұл ақпарат қолжетімді емес
+    never_active: Ешқашан
     nothing_here: Бұл жерде ештеңе жоқ!
     people_followed_by: "%{name} жазылған адамдар"
     people_who_follow: "%{name} атты қолданушының оқырмандары"
@@ -51,7 +78,9 @@ kk:
     roles:
       admin: Админ
       bot: Бот
+      group: Топ
       moderator: Мод
+    unavailable: Профиль қолжетімді емес
     unfollow: Оқымау
   admin:
     account_actions:
@@ -63,6 +92,8 @@ kk:
       delete: Өшіру
       destroyed_msg: Модерация жазбасы өшірілді!
     accounts:
+      approve: Құптау
+      approve_all: Бәрін құптау
       are_you_sure: Шынымен бе?
       avatar: Аватар
       by_domain: Домен
@@ -84,16 +115,16 @@ kk:
       display_name: Атын көрсет
       domain: Домен
       edit: Түзету
+      email: Пошта
       email_status: Email статусы
       enable: Қосу
       enabled: Қосылды
-      feed_url: Feеd URL
       followers: Оқырмандар
-      followers_url: Оқырмандар URL
       follows: Жазылғандары
       header: Басы
       inbox_url: Келген хаттар URL
       invited_by: Шақырған
+      ip: ІР
       joined: Қосылды
       location:
         all: Барлығы
@@ -106,22 +137,25 @@ kk:
       moderation:
         active: Актив
         all: Барлығы
+        pending: Күтуде
         silenced: Үнсіз
         suspended: Тоқтатылды
         title: Модерация
       moderation_notes: Модерация жазбалары
       most_recent_activity: Соңғы белсенділіктер
       most_recent_ip: Соңғы ІР
+      no_account_selected: Бірде-бір аккаунт өзгерген жоқ, себебі ештеңе таңдалмады
       no_limits_imposed: Шектеу жоқ
       not_subscribed: Жазылмаған
-      outbox_url: Кеткен хаттар URL
+      pending: Күтудегілерді қарау
       perform_full_suspension: Тоқтат
-      profile_url: Профиль URL
       promote: Жарнамалау
       protocol: Хаттама
       public: Ашық
       push_subscription_expires: PuSH жазылу мерзімі аяқталады
       redownload: Профиль жаңарт
+      reject: Қабылдамау
+      reject_all: Бәрін қабылдамау
       remove_avatar: Аватар өшіру
       remove_header: Мұқаба суретін өшір
       resend_confirmation:
@@ -131,14 +165,14 @@ kk:
       reset: Қалпына келтіру
       reset_password: Құпиясөзді қалпына келтіру
       resubscribe: Resubscribе
-      role: Қайта жазылу
+      role: Рұқсаттар
       roles:
         admin: Админ
         moderator: Модератор
         staff: Қызметкерлер
         user: Қолданушы
-      salmon_url: Ақсерке URL
       search: Іздеу
+      search_same_ip: Осы ІРмен кірген басқа қолданушылар
       shared_inbox_url: Бөлісілген инбокс URL
       show:
         created_reports: Шағымдар жинағы
@@ -148,6 +182,7 @@ kk:
       statuses: Статустар
       subscribe: Жазылу
       suspended: Тоқтатылды
+      time_in_queue: "%{time} күту"
       title: Аккаунттар
       unconfirmed_email: Құпталмаған email
       undo_silenced: Үнсіздікті қайтып алу
@@ -156,6 +191,7 @@ kk:
       username: Логин
       warn: Ескерту
       web: Веб
+      whitelisted: Рұқсат тізімі
     action_logs:
       actions:
         assigned_to_self_report: "%{name} шағым тастады %{target} өздері үшін"
@@ -163,10 +199,12 @@ kk:
         confirm_user: "%{name} e-mail адресін құптады - %{target}"
         create_account_warning: "%{name} ескерту жіберді - %{target}"
         create_custom_emoji: "%{name} жаңа эмодзи қосты %{target}"
+        create_domain_allow: "%{name} ақ тізімдегі домен %{target}"
         create_domain_block: "%{name} домен бұғаттады - %{target}"
         create_email_domain_block: "%{name} e-mail доменін қара тізімге қосты - %{target}"
         demote_user: "%{name} төмендетілген қолданушы - %{target}"
         destroy_custom_emoji: "%{name} эмодзи жойды %{target}"
+        destroy_domain_allow: "%{name} домені %{target} ақ тізімнен шығарылды"
         destroy_domain_block: "%{name} бұғатталмаған домен %{target}"
         destroy_email_domain_block: "%{name} e-mail доменін ақ тізімге кіргізді %{target}"
         destroy_status: "%{name} жазбасын өшірді %{target}"
@@ -191,19 +229,24 @@ kk:
       deleted_status: "(өшірілген жазба)"
       title: Аудит логы
     custom_emojis:
+      assign_category: Санатты тағайындаңыз
       by_domain: Домен
       copied_msg: Жергілікті эмодзидің көшірмесі сәтті жасалды
       copy: Көшіру
       copy_failed_msg: Жергілікті эмодзидің көшірмесі жасалмады
+      create_new_category: Жаңа санат қосу
       created_msg: Эмодзи сәтті жаңартылды!
       delete: Өшіру
       destroyed_msg: Эмодзи сәтті жойылды!
       disable: Ажырату
+      disabled: Ажыратылды
       disabled_msg: Бұл эмодзи сәтті жойылды
       emoji: Эмодзи
       enable: Қосу
+      enabled: Қосылды
       enabled_msg: Эмодзи сәтті қосылды
       image_hint: PNG 50KB
+      list: Тізім
       listed: Тізілді
       new:
         title: Жаңа эмодзи қос
@@ -211,11 +254,14 @@ kk:
       shortcode: Шорткод
       shortcode_hint: Кем дегенде 2 символ, тек латын әріптері мен асты сызылған таңбалар
       title: Таңдаулы эмодзилар
+      uncategorized: Санатсыз
+      unlist: Тізімге енбеген
       unlisted: Тізімде жоқ
       update_failed_msg: Бұл эмодзи жаңартылмады
       updated_msg: Эмодзи сәтті жаңартылды!
       upload: Жүктеу
     dashboard:
+      authorized_fetch_mode: Қауіпсіз режим
       backlog: босатылған тапсырмалар
       config: Конфигурация
       feature_deletions: Аккаунттарды жою
@@ -223,9 +269,13 @@ kk:
       feature_profile_directory: Профиль каталогы
       feature_registrations: Тіркелулер
       feature_relay: Федерация релесі
+      feature_spam_check: Анти-спам
+      feature_timeline_preview: Таймлайн превьюі
       features: Мүмкіндіктер
       hidden_service: Жасырын қызметтер федерациясы
       open_reports: ашық шағымдар
+      pending_tags: хештегтер күтілуде
+      pending_users: қолданушылар күтілуде
       recent_users: Соңғы қолданушылар
       search: Толық мәтінмен іздеу
       single_user_mode: Жалғыз пайдаланушы режимі
@@ -237,11 +287,19 @@ kk:
       week_interactions: осы аптадағы әрекеттер
       week_users_active: осы аптадағы белсенділік
       week_users_new: осы аптадағы қолданушылар
+      whitelist_mode: Рұқсат тізімі
+    domain_allows:
+      add_new: Рұқсат етілген домендер
+      created_msg: Доменге рұқсат берілді
+      destroyed_msg: Домен ақ тізімнен жойылды
+      undo: Ақ тізімнен шығару
     domain_blocks:
       add_new: Жаңа домен блокын қосу
       created_msg: Домендік блок енді өңделуде
       destroyed_msg: Домендік блок қалпына келтірілді
       domain: Домен
+      edit: Домен блокын өңдеу
+      existing_domain_block_html: Сіз %{name} үшін қатаң шектеулер қойдыңыз, алдымен <a href="%{unblock_url}"> бұғаттан босатуыңыз керек </a>.
       new:
         create: Блок құру
         hint: Домендік блок дерекқорда тіркелгі жазбаларын құруға кедергі жасамайды, бірақ сол есептік жазбаларда ретроактивті және автоматты түрде нақты модерация әдістерін қолданады.
@@ -251,6 +309,10 @@ kk:
           silence: Үнсіз
           suspend: Тоқтатылған
         title: Жаңа домен блокы
+      private_comment: Құпия пікір
+      private_comment_hint: Модераторлардың ішкі қолдануы үшін осы доменнің шектеулілігі туралы түсініктеме.
+      public_comment: Ашық пікір
+      public_comment_hint: Егер доменде шектеулер тізімін жарнамалау мүмкіндігі болса, көпшілікке бұл доменнің шектеулілігі туралы түсініктеме беріңіз.
       reject_media: Медиа файлдарды қабылдамау
       reject_media_hint: Жергілікті сақталған мультимедиалық файлдарды жояды және болашақта кез келген жүктеуден бас тартады. Суспензияға байланысты емес
       reject_reports: Шағым қабылдамау
@@ -270,12 +332,14 @@ kk:
         title: "%{domain} доменіндегі блокты алып таста"
         undo: Қайтару
       undo: Домен блокын қайтып алу
+      view: Домен блокын көрсету
     email_domain_blocks:
       add_new: Жаңасын қосу
       created_msg: Қаратізімге email домені қосылды
       delete: Өшіру
       destroyed_msg: Successfully deletеd e-mail domain from blacklist
       domain: Домен
+      empty: Ешқандай e-mail домені қаратізімге алынбапты.
       new:
         create: Add dоmain
         title: New e-mail blаcklist entry
@@ -293,6 +357,8 @@ kk:
         all: Барлығы
         limited: Лимит
         title: Модерация
+      private_comment: Құпия пікір
+      public_comment: Ашық пікір
       title: Федерация
       total_blocked_by_us: Біз бұғаттағандар
       total_followed_by_them: Олар жазылғандар
@@ -307,6 +373,8 @@ kk:
         expired: Уақыты өткен
         title: Фильтр
       title: Шақырулар
+    pending_accounts:
+      title: Күтілген аккаунттар (%{count})
     relays:
       add_new: Жаңа арна қосу
       delete: Өшіру
@@ -320,19 +388,18 @@ kk:
       pending: Жаңа арна құпталуын күту
       save_and_enable: Сақта да қос
       setup: Арна байланысын баптау
+      signatures_not_enabled: Қорғаныс режимі немесе ақ тізім қосылған кезде реле дұрыс жұмыс істемейді
       status: Статус
       title: Арналар
     report_notes:
       created_msg: Шағым жазбасы сәтті құрылды!
       destroyed_msg: Шағым жазбасы сәтті өшірілді!
     reports:
-      account:
-        note: жазба
-        report: шағым
       action_taken_by: Белсенділік жасаған
       are_you_sure: Шынымен бе?
       assign_to_self: Мені тағайындау
       assigned: Модератор тағайындау
+      by_target_domain: Шағымдалған аккаунт домені
       comment:
         none: Ештеңе
       created_at: Шағым тасталды
@@ -368,6 +435,18 @@ kk:
       custom_css:
         desc_html: Әр беттегі өзгерістерді CSS жаңаруымен қарау
         title: Жеке CSS
+      default_noindex:
+        desc_html: Бұл параметрді өзгертпеген барлық пайдаланушыларға әсер етеді
+        title: Әдепкі бойынша іздеу жүйелерін индекстеуден бас тарту
+      domain_blocks:
+        all: Бәріне
+        disabled: Ешкімге
+        title: Домен блоктарын көрсету
+        users: Жергілікті қолданушыларға
+      domain_blocks_rationale:
+        title: Дәлелді көрсету
+      enable_bootstrap_timeline_accounts:
+        title: Жаңа қолданушылар жазылатын адамдарды белгілеу
       hero:
         desc_html: Бастапқы бетінде көрсетіледі. Кем дегенде 600x100px ұсынылады. Орнатылмаған кезде, сервердің нобайына оралады
         title: Қаһарман суреті
@@ -393,6 +472,12 @@ kk:
         min_invite_role:
           disabled: Ешкім
           title: Allow шақырулар by
+      registrations_mode:
+        modes:
+          approved: Тіркелу үшін мақұлдау қажет
+          none: Ешкім тіркеле алмайды
+          open: Бәрі тіркеле алады
+        title: Тіркелулер
       show_known_fediverse_at_about_page:
         desc_html: When toggled, it will show toots from all the known fediverse on preview. Otherwise it will only show жергілікті toots.
         title: Show known fediverse on timeline превью
@@ -412,6 +497,9 @@ kk:
         desc_html: You can write your own privacy policy, terms of service or other legalese. You can use HTML тег
         title: Қолдану шарттары мен ережелер
       site_title: Сервер аты
+      spam_check_enabled:
+        desc_html: Мастодон бірнеше рет қажетсіз хабарламаларды жіберетін есептік жазбаларды автоматты түрде жасай алады. Жалған позитивтер болуы мүмкін.
+        title: Спамға қарсы автоматика
       thumbnail:
         desc_html: Used for previews via OpenGraph and API. 1200x630px рекоменделеді
         title: Сервер суреті
@@ -419,12 +507,19 @@ kk:
         desc_html: Display public timeline on лендинг пейдж
         title: Таймлайн превьюі
       title: Сайт баптаулары
+      trendable_by_default:
+        desc_html: Бұрын тыйым салынбаған хэштегтерге әсер етеді
+        title: Хэштегтерге алдын-ала шолусыз тренд беруге рұқсат етіңіз
+      trends:
+        desc_html: Бұрын қарастырылған хэштегтерді қазіргі уақытта трендте көпшілікке көрсету
+        title: Тренд хештегтер
     statuses:
       back_to_account: Аккаунт бетіне оралы
       batch:
         delete: Delеte
         nsfw_off: Сезімтал емес ретінде белгіле
         nsfw_on: Сезімтал ретінде белгіле
+      deleted: Өшірілді
       failed_to_execute: Орындалмады
       media:
         title: Медиa
@@ -433,7 +528,23 @@ kk:
       title: Аккаунт статустары
       with_media: Медиамен
     tags:
+      accounts_today: Бүгін қолданылғандар
+      accounts_week: Осы аптада қолданылғандар
+      breakdown: Бүгінгі пайдалану көздері бойынша бөлу
+      context: Контекст
+      directory: Бөлім ішінде
+      in_directory: "%{count} бөлім ішінде"
+      last_active: Соңғы белсенділік
+      most_popular: Ең танымал
+      most_recent: Ең соңғы
+      name: Хэштег
+      review: Статусты көрсету
+      reviewed: Көрілген
       title: Hashtаgs
+      trending_right_now: Бұгінгі трендте
+      unique_uses_today: "%{count} бүгін жазылған"
+      unreviewed: Қаралды
+      updated_msg: Хэштег параметрлері сәтті жаңартылды
     title: Administrаtion
     warning_presets:
       add_new: Add nеw
@@ -442,12 +553,33 @@ kk:
       edit_preset: Edit warning prеset
       title: Manage warning presеts
   admin_mailer:
+    new_pending_account:
+      body: Жаңа есептік жазба туралы мәліметтер төменде берілген. Бұл қолданбаны мақұлдауыңызға немесе қабылдамауыңызға болады.
+      subject: Жаңа аккаунт күтілуде %{instance} (#%{username})
     new_report:
       body: "%{reporter} has rеported %{target}"
       body_remote: Someone from %{domain} has rеported %{target}
       subject: New rеport for %{instance} (#%{id})
+    new_trending_tag:
+      body: "#%{name} хэштегі бүгін тренд, бірақ бұрын қарастырылмаған. Егер сіз оған рұқсат бермесеңіз немесе ол туралы ешқашан естімейтін болсаңыз, ол көпшілікке көрсетілмейді."
+      subject: Жаңа хештег күтілуде %{instance} (#%{name})
+  aliases:
+    add_new: Алиас қосу
+    created_msg: Жаңа алиас сәтті жасалды. Енді сіз ескі аккаунттан көшіруді бастай аласыз.
+    deleted_msg: Алиасты сәтті алып тастаңыз. Осы есептік жазбадан екіншіге ауысу мүмкін болмайды.
+    hint_html: If you want to move from another account to this one, here you can create an alias, which is required before you can proceed with moving followers from the old account to this one. This action by itself is <strong>harmless and reversible</strong>. <strong>The account migration is initiated from the old account</strong>.
+    remove: Алиас сілтемесін алып тастау
+  appearance:
+    advanced_web_interface: Кеңейтілген веб-интерфейс
+    advanced_web_interface_hint: 'Егер сіз бүкіл экранның енін пайдаланғыңыз келсе, кеңейтілген веб-интерфейс сізге көптеген ақпаратты бір уақытта қалағанша көру үшін әр түрлі бағандарды конфигурациялауға мүмкіндік береді: негізгі бет, ескертпелер, жаһандық желі, тізім мен хэштегтерді.'
+    animations_and_accessibility: Анимациялар және қолжетімділік
+    confirmation_dialogs: Пікірталас диалогтары
+    discovery: Пікірталас
+    sensitive_content: Нәзік контент
+    toot_layout: Жазба формасы
   application_mailer:
     notification_preferences: Change e-mail prеferences
+    salutation: "%{name},"
     settings: 'Change e-mail preferеnces: %{link}'
     view: 'Viеw:'
     view_profile: Viеw Profile
@@ -461,9 +593,16 @@ kk:
     warning: Be very carеful with this data. Never share it with anyone!
     your_token: Your access tokеn
   auth:
+    apply_for_account: Шақыруды сұрау
     change_password: Құпиясөз
+    checkbox_agreement_html: Мен <a href="%{rules_path}" target="_blank">ережелер</a> мен <a href="%{terms_path}" target="_blank">шарттарды</a> қабылдаймын
+    checkbox_agreement_without_rules_html: Мен <a href="%{terms_path}" target="_blank">шарттармен</a> келісемін
     delete_account: Аккаунт өшіру
     delete_account_html: Аккаунтыңызды жойғыңыз келсе, <a href="%{path}">мына жерді</a> басыңыз. Сізден растау сұралатын болады.
+    description:
+      prefix_invited_by_user: "@%{name} сізді Желіге қосылуға шақырады!"
+      prefix_sign_up: Желіге бүгін қосылыңыз!
+      suffix: Аккаунтыңызбен сіз кез-келген Mastodon серверінен және желідегі басқа адамдарды оқып, пост жаза аласыз және хат алмаса аласыз!
     didnt_get_confirmation: Растау хаты келмеді ме?
     forgot_password: Құпиясөзіңізді ұмытып қалдыңыз ба?
     invalid_reset_password_token: Құпиясөз қайтып алу қолжетімді емес немесе мерзімі аяқталған. Қайтадан сұратыңыз.
@@ -476,10 +615,22 @@ kk:
       cas: САS
       saml: SАML
     register: Тіркелу
+    registration_closed: "%{instance} жаңа мүшелер қабылдамайды"
     resend_confirmation: Растау нұсқаулықтарын жіберу
     reset_password: Құпиясөзді қалпына келтіру
     security: Қауіпсіздік
     set_new_password: Жаңа құпиясөз қою
+    setup:
+      email_below_hint_html: Егер төмендегі электрондық пошта мекенжайы дұрыс болмаса, оны осында өзгертіп, жаңа растау электрондық хатын ала аласыз.
+      email_settings_hint_html: Растау хаты %{email} адресіне жіберілді. Егер бұл электрондық пошта мекенжайы дұрыс болмаса, оны аккаунт параметрлерінде өзгертуге болады.
+      title: Баптау
+    status:
+      account_status: Аккаунт статусы
+      confirming: Электрондық поштаны растау аяқталуын күтуде.
+      functional: Сіздің есептік жазбаңыз толығымен жұмыс істейді.
+      pending: Сіздің өтінішіңіз біздің қызметкерлеріміздің қарауында. Бұл біраз уақыт алуы мүмкін. Өтінішіңіз мақұлданса, сізге электрондық пошта хабарламасы келеді.
+      redirecting_to: Сіздің есептік жазбаңыз белсенді емес, себебі ол %{acct} жүйесіне қайта бағытталуда.
+    trouble_logging_in: Кіру қиын ба?
   authorize_follow:
     already_following: Бұл аккаунтқа жазылғансыз
     error: Өкінішке орай, қашықтағы тіркелгіні іздеуде қате пайда болды
@@ -491,6 +642,11 @@ kk:
       return: Қолданушы профилін көрсет
       web: Вебте ашу
     title: Жазылу %{acct}
+  challenge:
+    confirm: Жалғастыру
+    hint_html: "<strong> Кеңес: </strong> біз келесі сағат ішінде сізден құпия сөзді қайта сұрамаймыз."
+    invalid_password: Құпиясөз қате
+    prompt: Жалғастыру үшін құпия сөзді растаңыз
   datetime:
     distance_in_words:
       about_x_hours: "%{count}сағ"
@@ -506,18 +662,33 @@ kk:
       x_months: "%{count}ай"
       x_seconds: "%{count}сек"
   deletes:
+    challenge_not_passed: Сіз енгізген ақпарат дұрыс емес
     confirm_password: Қазіргі құпиясөзіңізді жазыңыз
+    confirm_username: Процедураны растау үшін логинді енгізіңіз
     proceed: Аккаунт өшіру
     success_msg: Аккаунтыңыз сәтті өшірілді
+    warning:
+      before: 'Жұмысты бастамас бұрын, осы жазбаларды мұқият оқып шығыңыз:'
+      caches: Басқа серверлер кэштеген мазмұн сақталуы мүмкін
+      data_removal: Сіздің жазбаларыңыз және басқа деректеріңіз толығымен жойылады
+      email_change_html: Аккаунтыңызды жоймай-ақ <a href="%{path}"> электрондық пошта мекенжайын өзгертуге болады </a>
+      email_contact_html: Егер әлі келмесе, көмек үшін <a href="mailto:%{email}">%{email} </a> мекен-жайына хат жібере аласыз
+      email_reconfirmation_html: Егер сіз растау электрондық хатын алмасаңыз, сіз <a href="%{path}"> оны қайтадан сұрай аласыз </a>
+      irreversible: Аккаунтты қалпына келтіре немесе қайта белсендіре алмайсыз
+      more_details_html: Қосымша мәліметтер алу үшін <a href="%{terms_path}"> құпиялылық саясатын </a> қараңыз.
+      username_available: Аккаунтыңыз қайтадан қолжетімді болады
+      username_unavailable: Логиніңіз қолжетімді болмайды
   directories:
     directory: Профильдер каталогы
     explanation: Қолданушыларды қызығушылықтарына қарай реттеу
     explore_mastodon: "%{title} шарлау"
+  domain_validator:
+    invalid_domain: жарамды домен атауы емес
   errors:
-    '400': The request you submitted was invalid or malformed.
+    '400': Сіз жіберген сұрау жарамсыз немесе дұрыс емес.
     '403': Бұны көру үшін сізде рұқсат жоқ.
     '404': Сіз іздеген бет бұл жерде емес екен.
-    '406': This page is not available in the requested format.
+    '406': Бұл бет сұралған форматта қол жетімді емес.
     '410': Сіз іздеген бет қазір жоқ екен.
     '422':
       content: Қауіпсіздік растауы қате. кукилерді блоктағансыз ба?
@@ -526,8 +697,11 @@ kk:
     '500':
       content: Кешірерсіз, бірақ қазір бір қате пайда болып тұр.
       title: Бұл бет дұрыс емес екен
-    '503': The page could not be served due to a temporary server failure.
+    '503': Уақытша сервер қатесі себебінен параққа қызмет көрсету мүмкін болмады.
     noscript_html: Mastodon веб қосымшасын қолдану үшін, JavaScript қосыңыз. Болмай жатса, <a href="%{apps_path}">мына қосымшаларды</a> қосып көріңіз, Mastodon қолдану үшін.
+  existing_username_validator:
+    not_found: осындай логині бар бар жергілікті пайдаланушы табылмады
+    not_found_multiple: табылмады %{usernames}
   exports:
     archive_takeout:
       date: Уақыты
@@ -539,7 +713,6 @@ kk:
     blocks: Бұғатталғансыз
     csv: СSV
     domain_blocks: Домен блоктары
-    follows: Оқитындарыңыз
     lists: Тізімдер
     mutes: Үнсіздер
     storage: Медиа жинақ
@@ -547,6 +720,7 @@ kk:
     add_new: Жаңасын қосу
     errors:
       limit: Хэштег лимитинен асып кеттіңіз
+    hint_html: "<strong> Ерекшеліктері бар хэштегтер дегеніміз не? </strong> Олар жалпыға қол жетімді профильде көрсетіледі және адамдарға сіздің жалпы хабарламаларыңызды сол хэштегтердің астына қарауға мүмкіндік береді. Олар шығармашылық жұмыстарды немесе ұзақ мерзімді жобаларды бақылаудың тамаша құралы."
   filters:
     contexts:
       home: Ішкі желі
@@ -560,6 +734,7 @@ kk:
       invalid_irreversible: Қайтарылмайтын сүзгі тек ішкі немесе ескертпелер контекстімен жұмыс істейді
     index:
       delete: Өшіру
+      empty: Сізде ешқандай фильтр жоқ.
       title: Фильтрлер
     new:
       title: Жаңа фильтр қосу
@@ -567,13 +742,37 @@ kk:
     developers: Жасаушылар
     more: Тағы…
     resources: Ресурстар
+    trending_now: Бүгінгі трендтер
   generic:
+    all: Барлығы
     changes_saved_msg: Өзгерістер сәтті сақталды!
     copy: Көшіру
+    no_batch_actions_available: Бұл бетте ешқандай әрекет жоқ
+    order_by: Сұрыптау
     save_changes: Өзгерістерді сақтау
     validation_errors:
       one: Бір нәрсе дұрыс емес! Төмендегі қатені қараңыз
       other: Бір нәрсе дұрыс емес! Төмендегі %{count} қатені қараңыз
+  html_validator:
+    invalid_markup: 'жарамсыз HTML код: %{error}'
+  identity_proofs:
+    active: Актив
+    authorize: Иә, авторластырыңыз
+    authorize_connection_prompt: Осы криптографиялық қосылымға рұқсат бересіз бе?
+    errors:
+      failed: Криптографиялық байланыс сәтсіз аяқталды. %{provider} әрекетті қайталаңыз.
+      keybase:
+        invalid_token: Пернетақтаның таңбалауыштары қолтаңбалар болып табылады және олар 66 таңбадан тұруы керек
+        verification_failed: Keybase бұл белгіні Keybase пайдаланушысының %{kb_username} қолтаңбасы ретінде танымайды. Keybase-тен қайталап көріңіз.
+      wrong_user: "%{current} ретінде кірген кезде %{proving} үшін дәлелдер жасау мүмкін емес. %{proving} ретінде кіріп, әрекетті қайталаңыз."
+    explanation_html: Мұнда сіз өзіңіздің жеке басыңызды, мысалы, Keybase профилі сияқты криптографиялық түрде байланыстыра аласыз. Бұл сізге басқа адамдарға шифрланған хабарламаларды жіберуге және сіз жіберетін мазмұнға сенімді болуға мүмкіндік береді.
+    i_am_html: Мен %{username} атты қолданушымын - %{service}.
+    identity: Жеке бас куәлігі
+    inactive: Инактив
+    publicize_checkbox: 'Түрт мынаны:'
+    publicize_toot: 'Керемет! Мен енді %{username} болып тіркелдім %{service}: %{url}'
+    status: Тексеру күйі
+    view_proof: Пруф көрсету
   imports:
     modes:
       merge: Біріктіру
@@ -620,6 +819,34 @@ kk:
       too_many: 4 файлдан артық қосылмайды
   migrations:
     acct: жаңа аккаунт үшін username@domain
+    cancel: Редайректті қайтару
+    cancel_explanation: Бағыттауды болдырмау сіздің ағымдағы есептік жазбаңызды қайта іске қосады, бірақ сол тіркелгіге көшкен оқырмандарды қайтармайды.
+    cancelled_msg: Редайрект қайтарылды.
+    errors:
+      already_moved: бұл сіз ауысқан есептік жазба
+      missing_also_known_as: бұл тіркелгіге сілтеме жасамайды
+      move_to_self: ағымдағы шот болуы мүмкін емес
+      not_found: табылмады
+      on_cooldown: You are on cooldown
+    followers_count: Көшу кезіндегі оқырмандар
+    incoming_migrations: Moving from a different account
+    incoming_migrations_html: To move from another account to this one, first you need to <a href="%{path}">create an account alias</a>.
+    moved_msg: Your account is now redirecting to %{acct} and your followers are being moved over.
+    not_redirecting: Your account is not redirecting to any other account currently.
+    on_cooldown: You have recently migrated your account. This function will become available again in %{count} days.
+    past_migrations: Past migrations
+    proceed_with_move: Move followers
+    redirecting_to: Your account is redirecting to %{acct}.
+    set_redirect: Set redirect
+    warning:
+      backreference_required: The new account must first be configured to back-reference this one
+      before: 'Жұмысты бастамас бұрын, осы жазбаларды мұқият оқып шығыңыз:'
+      cooldown: After moving there is a cooldown period during which you will not be able to move again
+      disabled_account: Your current account will not be fully usable afterwards. However, you will have access to data export as well as re-activation.
+      followers: This action will move all followers from the current account to the new account
+      only_redirect_html: Alternatively, you can <a href="%{path}">only put up a redirect on your profile</a>.
+      other_data: No other data will be moved automatically
+      redirect: Your current account's profile will be updated with a redirect notice and be excluded from searches
   moderation:
     title: Модерация
   notification_mailer:
@@ -656,12 +883,18 @@ kk:
       body: 'Жазбаңызды бөліскен %{name}:'
       subject: "%{name} жазбаңызды бөлісті"
       title: Жаңа бөлісім
+  notifications:
+    email_events: E-mail ескертпелеріне шаралар
+    email_events_hint: 'Ескертпе болып келетін шараларды таңда:'
+    other_settings: Ескертпелердің басқа баптаулары
   number:
     human:
       decimal_units:
+        format: "%n%u"
         units:
           billion: Ð’
           million: М
+          quadrillion: Q
           thousand: К
           trillion: Т
   pagination:
@@ -669,6 +902,7 @@ kk:
     next: Келесі
     older: Ерте
     prev: Алдыңғы
+    truncate: "&hellip;"
   polls:
     errors:
       already_voted: Бұл сауалнамаға қатысқансыз
@@ -676,11 +910,29 @@ kk:
       duration_too_long: тым ұзақ екен
       duration_too_short: тым аз екен
       expired: Сауалнама уақыты аяқталған
+      invalid_choice: Таңдалған жауап енді жоқ екен
       over_character_limit: "%{max} таңбадан артық болмайды"
       too_few_options: бір жауаптан көп болуы керек
       too_many_options: "%{max} жауаптан көп болмайды"
   preferences:
     other: Басқа
+    posting_defaults: Пост жазу негіздері
+    public_timelines: Ашық таймлайндар
+  relationships:
+    activity: Аккаунт белсенділігі
+    dormant: Ұйқысыз
+    followers: Оқырмандар
+    following: Жазылғандары
+    last_active: Соңғы белсенділік
+    most_recent: Ең соңғы
+    moved: Көшірілді
+    mutual: Өзара
+    primary: Бастапқы
+    relationship: Қарым-қатынас
+    remove_selected_domains: Таңдалған домендерден барлық оқырмандарды алып тастаңыз
+    remove_selected_followers: Таңдалған оқырмандарды өшіру
+    remove_selected_follows: Таңдалған қолданушыларды оқымау
+    status: Аккаунт статусы
   remote_follow:
     acct: Өзіңіздің username@domain теріңіз
     missing_resource: Аккаунтыңызға байланған URL табылмады
@@ -744,6 +996,10 @@ kk:
     revoke_success: Сессиялар сәтті жабылды
     title: Сессиялар
   settings:
+    account: Аккаунт
+    account_settings: Аккаунт баптаулары
+    aliases: Аккаунт алиастары
+    appearance: Сыртқы түрі
     authorized_apps: Authorizеd apps
     back: Желіге оралу
     delete: Аккаунт өшіру
@@ -751,11 +1007,17 @@ kk:
     edit_profile: Профиль өңдеу
     export: Экспорт уақыты
     featured_tags: Таңдаулы хэштегтер
+    identity_proofs: Жеке куәлік
     import: Импорт
+    import_and_export: Импорт/экспорт
     migrate: Аккаунт көшіру
     notifications: Ескертпелер
-    preferences: Таңдаулар
+    preferences: Баптаулар
+    profile: Профиль
+    relationships: Жазылымдар және оқырмандар
     two_factor_authentication: Екі-факторлы авторизация
+  spam_check:
+    spam_detected: Бұл автоматтандырылған есеп. Спам анықталды.
   statuses:
     attached:
       description: 'Жүктелді: %{attached}'
@@ -779,12 +1041,16 @@ kk:
       private: Жабық жазба жабыстырылмайды
       reblog: Бөлісілген жазба жабыстырылмайды
     poll:
+      total_people:
+        one: "%{count} адам"
+        other: "%{count} адам"
       total_votes:
         one: "%{count} дауыс"
         other: "%{count} дауыс"
       vote: Дауыс беру
     show_more: Тағы әкел
     sign_in_to_participate: Сұхбатқа қатысу үшін кіріңіз
+    title: '%{name}: "%{quote}"'
     visibilities:
       private: Тек оқырмандарға
       private_long: Тек оқырмандарға ғана көрінеді
@@ -796,6 +1062,8 @@ kk:
     pinned: Жабыстырылған жазба
     reblogged: бөлісті
     sensitive_content: Нәзік мазмұн
+  tags:
+    does_not_match_previous_name: алдыңғы атқа сәйкес келмейді
   terms:
     body_html: |
       <h2>Құпиялылық шарттары</h2>
@@ -883,6 +1151,10 @@ kk:
     contrast: Mastodon (Жоғары контраст)
     default: Mastodon (Қою)
     mastodon-light: Mastodon (Ашық)
+  time:
+    formats:
+      default: "%b %d, %Y, %H:%M"
+      month: "%b %Y"
   two_factor_authentication:
     code_hint: Растау үшін түпнұсқалықты растау бағдарламасы арқылы жасалған кодты енгізіңіз
     description_html: "<strong>екі факторлы түпнұсқалықты растауды</strong> қоссаңыз, кіру үшін сізге телефонға кіруіңізді талап етеді, сізге арнайы токен беріледі."
@@ -909,7 +1181,9 @@ kk:
         disable: Аккаунтыңыз қатып қалса, сіздің деректеріңіз өзгеріссіз қалады, бірақ ол құлыптан босатылғанша ешқандай әрекетті орындай алмайсыз.
         silence: While your account is limited, only people who are already following you will see your toots on this server, and you may be excluded from various public listings. However, others may still manually follоw you.
         suspend: Сіздің аккаунтыңыз уақытша тоқтатылды және сіздің барлық файлдарыңыз бен жүктеп салынған медиа файлдарыңыз осы серверлерден және оқырманы болған серверлерден қайтарылмайды.
+      get_in_touch: Сіз бұл электронды поштаға %{instance} қызметкерлерімен байланысу үшін жауап бере аласыз.
       review_server_policies: Сервер саясатын қарап шығыңыз
+      statuses: 'Арнайы:'
       subject:
         disable: Аккаунтыңыз %{acct} уақытша тоқтатылды
         none: "%{acct} ескертуі"
diff --git a/config/locales/kn.yml b/config/locales/kn.yml
new file mode 100644
index 0000000000000000000000000000000000000000..d6c1d98eb625a9227700cdaf7fe6a96841994f1d
--- /dev/null
+++ b/config/locales/kn.yml
@@ -0,0 +1,20 @@
+---
+kn:
+  errors:
+    '400': The request you submitted was invalid or malformed.
+    '403': You don't have permission to view this page.
+    '404': The page you are looking for isn't here.
+    '406': This page is not available in the requested format.
+    '410': The page you were looking for doesn't exist here anymore.
+    '422': 
+    '429': Throttled
+    '500': 
+    '503': The page could not be served due to a temporary server failure.
+  invites:
+    expires_in:
+      '1800': 30 minutes
+      '21600': 6 hours
+      '3600': 1 hour
+      '43200': 12 hours
+      '604800': 1 week
+      '86400': 1 day
diff --git a/config/locales/ko.yml b/config/locales/ko.yml
index bae3d69bcac35674e724d21cc36b85686bd8110f..25bb714ef955e6d9fe02dcce2159ac9428d10cae 100644
--- a/config/locales/ko.yml
+++ b/config/locales/ko.yml
@@ -10,7 +10,8 @@ ko:
     api: API
     apps: 모바일 앱
     apps_platforms: 마스토돈을 iOS, 안드로이드, 다른 플랫폼들에서도 사용하세요
-    browse_directory: 프로필 디렉터리를 둘러보고 관심사 찾기
+    browse_directory: 프로필 디렉토리를 둘러보고 관심사 찾기
+    browse_local_posts: 이 서버의 공개글 실시간 스트림을 둘러보기
     browse_public_posts: 마스토돈의 공개 라이브 스트림을 둘러보기
     contact: 연락처
     contact_missing: 미설정
@@ -73,18 +74,19 @@ ko:
     roles:
       admin: 관리자
       bot: ë´‡
-      moderator: 모더레이터
+      group: 그룹
+      moderator: 중재자
     unavailable: 프로필 사용 불가
     unfollow: 팔로우 해제
   admin:
     account_actions:
       action: 조치 취하기
-      title: "%{acct} 계정에 조정 취하기"
+      title: "%{acct} 계정에 중재 취하기"
     account_moderation_notes:
-      create: 모더레이션 노트 작성하기
-      created_msg: 모더레이션 기록이 성공적으로 작성되었습니다!
+      create: 중재 기록 작성하기
+      created_msg: 중재 기록이 성공적으로 작성되었습니다!
       delete: 삭제
-      destroyed_msg: 모더레이션 기록이 성공적으로 삭제되었습니다!
+      destroyed_msg: 중재 기록이 성공적으로 삭제되었습니다!
     accounts:
       approve: 승인
       approve_all: 모두 승인
@@ -113,9 +115,7 @@ ko:
       email_status: 이메일 상태
       enable: 활성화
       enabled: 활성
-      feed_url: 피드 URL
       followers: 팔로워 수
-      followers_url: 팔로워 URL
       follows: 팔로잉 수
       header: 헤더
       inbox_url: 수신함 URL
@@ -136,17 +136,15 @@ ko:
         pending: 대기중
         silenced: 침묵 중
         suspended: 정지 중
-        title: 모더레이션
-      moderation_notes: 모더레이션 기록
+        title: 중재
+      moderation_notes: 중재 기록
       most_recent_activity: 최근 활동
       most_recent_ip: 최근 IP
       no_account_selected: 아무 계정도 선택 되지 않아 아무 것도 변경 되지 않았습니다
       no_limits_imposed: 제한 없음
       not_subscribed: 구독하지 않음
-      outbox_url: 발신함 URL
       pending: 심사 대기
       perform_full_suspension: 정지시키기
-      profile_url: 프로필 URL
       promote: 승급
       protocol: 프로토콜
       public: 전체 공개
@@ -166,11 +164,11 @@ ko:
       role: 권한
       roles:
         admin: 관리자
-        moderator: 모더레이터
+        moderator: 중재자
         staff: 스태프
         user: 사용자
-      salmon_url: Salmon URL
       search: 검색
+      search_same_ip: 같은 IP의 다른 사용자들
       shared_inbox_url: 공유된 inbox URL
       show:
         created_reports: 이 계정에서 제출된 신고
@@ -197,10 +195,12 @@ ko:
         confirm_user: "%{name}이 %{target}의 이메일 주소를 컨펌했습니다"
         create_account_warning: "%{name}가 %{target}에게 경고 보냄"
         create_custom_emoji: "%{name}이 새로운 에모지 %{target}를 추가했습니다"
+        create_domain_allow: "%{name} 님이 %{target} 도메인을 화이트리스트에 넣었습니다"
         create_domain_block: "%{name}이 도메인 %{target}를 차단했습니다"
         create_email_domain_block: "%{name}이 이메일 도메인 %{target}를 차단했습니다"
         demote_user: "%{name}이 %{target}을 강등했습니다"
         destroy_custom_emoji: "%{name}이 %{target} 에모지를 삭제함"
+        destroy_domain_allow: "%{name} 님이 %{target} 도메인을 화이트리스트에서 제거하였습니다"
         destroy_domain_block: "%{name}이 도메인 %{target}의 차단을 해제했습니다"
         destroy_email_domain_block: "%{name}이 이메일 도메인 %{target}을 화이트리스트에 넣었습니다"
         destroy_status: "%{name}이 %{target}의 툿을 삭제했습니다"
@@ -215,10 +215,10 @@ ko:
         reopen_report: "%{name}이 리포트 %{target}을 다시 열었습니다"
         reset_password_user: "%{name}이 %{target}의 암호를 초기화했습니다"
         resolve_report: "%{name}이 %{target} 신고를 처리됨으로 변경하였습니다"
-        silence_account: "%{name}이 %{target}의 계정을 뮤트시켰습니다"
+        silence_account: "%{name}이 %{target}의 계정을 침묵시켰습니다"
         suspend_account: "%{name}이 %{target}의 계정을 정지시켰습니다"
         unassigned_report: "%{name}이 리포트 %{target}을 할당 해제했습니다"
-        unsilence_account: "%{name}이 %{target}에 대한 뮤트를 해제했습니다"
+        unsilence_account: "%{name}이 %{target}에 대한 침묵을 해제했습니다"
         unsuspend_account: "%{name}이 %{target}에 대한 정지를 해제했습니다"
         update_custom_emoji: "%{name}이 에모지 %{target}를 업데이트 했습니다"
         update_status: "%{name}이 %{target}의 상태를 업데이트 했습니다"
@@ -298,7 +298,7 @@ ko:
       existing_domain_block_html: 이미 %{name}에 대한 더 강력한 제한이 걸려 있습니다, <a href="%{unblock_url}">차단 해제</a>를 먼저 해야 합니다.
       new:
         create: 차단 추가
-        hint: 도메인 차단은 내부 데이터베이스에 계정이 생성되는 것까지는 막을 수 없지만, 그 도메인에서 생성된 계정에 자동적으로 특정한 모더레이션을 적용하게 할 수 있습니다.
+        hint: 도메인 차단은 내부 데이터베이스에 계정이 생성되는 것까지는 막을 수 없지만, 그 도메인에서 생성된 계정에 자동적으로 특정한 중재 규칙을 적용하게 할 수 있습니다.
         severity:
           desc_html: |-
             <strong>침묵</strong>은 계정을 팔로우 하지 않고 있는 사람들에겐 계정의 툿을 보이지 않게 합니다. <strong>정지</strong>는 계정의 컨텐츠, 미디어, 프로필 데이터를 삭제합니다.
@@ -308,7 +308,7 @@ ko:
           suspend: ì •ì§€
         title: 새로운 도메인 차단
       private_comment: 비공개 주석
-      private_comment_hint: 이 도메인 제한에 대한 주석은 모더레이터를 위해 내부적으로 사용 됩니다.
+      private_comment_hint: 이 도메인 제한에 대한 주석은 중재자를 위해 내부적으로 사용 됩니다.
       public_comment: 공개 주석
       public_comment_hint: 이 도메인 제한에 대한 공개적인 주석, 도메인 제한 공개를 활성화 한 경우 보여집니다.
       reject_media: 미디어 파일 거부하기
@@ -336,6 +336,7 @@ ko:
       delete: 삭제
       destroyed_msg: 이메일 도메인 차단 규칙을 삭제했습니다
       domain: 도메인
+      empty: 현재 블랙리스트에 등록한 이메일 도메인이 없습니다
       new:
         create: 차단 규칙 생성
         title: 새 이메일 도메인 차단
@@ -351,7 +352,7 @@ ko:
       moderation:
         all: 모두
         limited: 제한됨
-        title: 모더레이션
+        title: 중재
       private_comment: 비공개 주석
       public_comment: 공개 주석
       title: ì—°í•©
@@ -391,12 +392,15 @@ ko:
       destroyed_msg: 리포트 노트가 성공적으로 삭제되었습니다!
     reports:
       account:
-        note: 노트
-        report: 리포트
+        notes:
+          other: "%{count}개의 기록"
+        reports:
+          other: "%{count}개의 신고"
       action_taken_by: 신고 처리자
       are_you_sure: 정말로 실행하시겠습니까?
       assign_to_self: 나에게 할당하기
-      assigned: 할당 된 모더레이터
+      assigned: 할당 된 중재자
+      by_target_domain: 신고된 계정의 도메인
       comment:
         none: 없음
       created_at: 리포트 시각
@@ -442,6 +446,8 @@ ko:
         users: 로그인 한 유저에게
       domain_blocks_rationale:
         title: 사유 보여주기
+      enable_bootstrap_timeline_accounts:
+        title: 새 유저가 팔로우할 계정을 보여주기
       hero:
         desc_html: 프론트페이지에 표시 됩니다. 최소 600x100픽셀을 권장합니다. 만약 설정되지 않았다면, 서버의 썸네일이 사용 됩니다
         title: 히어로 이미지
@@ -503,7 +509,7 @@ ko:
         title: 타임라인 프리뷰
       title: 사이트 설정
       trendable_by_default:
-        desc_html: 이전에 비허용 되지 않은 해시태그들에 영향을 미칩니다
+        desc_html: 이전에 거부되지 않은 해시태그들에 영향을 미칩니다
         title: 해시태그가 사전 리뷰 없이 트렌드에 올라갈 수 있도록 허용
       trends:
         desc_html: 리뷰를 거친 해시태그를 유행하는 해시태그에 공개적으로 보여줍니다
@@ -570,7 +576,12 @@ ko:
     animations_and_accessibility: 애니메이션과 접근성
     confirmation_dialogs: 확인 대화상자
     discovery: 발견하기
+    localization:
+      body: 마스토돈은 자원봉사자들에 의해 번역되었습니다.
+      guide_link: https://crowdin.com/project/mastodon
+      guide_link_text: 누구나 기여할 수 있습니다.
     sensitive_content: 민감한 내용
+    toot_layout: 툿 레이아웃
   application_mailer:
     notification_preferences: 메일 설정 변경
     salutation: "%{name} 님,"
@@ -707,7 +718,6 @@ ko:
     blocks: 차단
     csv: CSV
     domain_blocks: 도메인 차단
-    follows: 팔로우
     lists: 리스트
     mutes: 뮤트
     storage: 미디어
@@ -729,6 +739,7 @@ ko:
       invalid_irreversible: 되돌릴 수 없는 필터링은 홈 타임라인과 알림에서만 동작합니다
     index:
       delete: 삭제
+      empty: 필터가 없습니다.
       title: í•„í„°
     new:
       title: 필터 추가
@@ -819,7 +830,7 @@ ko:
       missing_also_known_as: 이 계정을 역으로 참조하지 않고 있습니다
       move_to_self: 현재 계정은 사용할 수 없습니다
       not_found: 찾을 수 없습니다
-      on_cooldown: 쿨다운 기간입니다
+      on_cooldown: 휴식기간입니다
     followers_count: 이주 될 팔로워들
     incoming_migrations: 다른 계정으로부터 옮기기
     incoming_migrations_html: 다른 계정을 이 계정으로 이주하고 싶은 경우, 먼저 <a href="%{path}">계정 별칭을 만들어야 합니다</a>.
@@ -833,14 +844,14 @@ ko:
     warning:
       backreference_required: 새 계정은 이 계정으로 역참조를 하도록 설정되어 있어야 합니다
       before: '진행하기 전, 주의사항을 꼼꼼히 읽어보세요:'
-      cooldown: 이주 뒤에는 새로운 이주를 하지 못하는 쿨다운 기간이 존재합니다
+      cooldown: 이주 뒤에는 새로운 이주를 하지 못하는 휴식기간이 존재합니다
       disabled_account: 이 계정은 완전한 사용이 불가능하게 됩니다. 하지만, 데이터 내보내기나 재활성화를 위해 접근할 수 있습니다.
       followers: 이 행동은 현재 계정의 모든 팔로워를 새 계정으로 이동시킵니다
       only_redirect_html: 대신, <a href="%{path}">프로필에 리디렉션만 표시</a>할 수 있습니다.
       other_data: 다른 어떤 데이터도 자동적으로 옮겨지지 않을 것입니다
       redirect: 현재 계정 프로필은 리다이렉트 알림과 함께 업데이트 되며 검색에서 제외 됩니다
   moderation:
-    title: 모더레이션
+    title: 중재
   notification_mailer:
     digest:
       action: 모든 알림 보기
@@ -873,6 +884,10 @@ ko:
       body: "%{name} 님이 내 툿을 부스트 했습니다:"
       subject: "%{name} 님이 내 툿을 부스트 했습니다"
       title: 새 부스트
+  notifications:
+    email_events: 이메일 알림에 대한 이벤트
+    email_events_hint: '알림 받을 이벤트를 선택해주세요:'
+    other_settings: 기타 알림 설정
   number:
     human:
       decimal_units:
@@ -896,6 +911,7 @@ ko:
       duration_too_long: 너무 먼 미래입니다
       duration_too_short: 너무 가깝습니다
       expired: 투표가 이미 끝났습니다
+      invalid_choice: 선택한 투표 항목이 존재하지 않습니다
       over_character_limit: 각각 %{max} 글자를 넘을 수 없습니다
       too_few_options: 한가지 이상의 항목을 포함해야 합니다
       too_many_options: 항목은 %{max}개를 넘을 수 없습니다
@@ -906,6 +922,8 @@ ko:
   relationships:
     activity: 계정 활동
     dormant: 휴면
+    followers: 팔로워
+    following: 팔로잉
     last_active: 마지막 활동
     most_recent: 가장 최근
     moved: 이동함
@@ -999,6 +1017,8 @@ ko:
     profile: 프로필
     relationships: 팔로잉과 팔로워
     two_factor_authentication: 2단계 인증
+  spam_check:
+    spam_detected: 이것은 자동화 된 신고입니다. 스팸이 감지되었습니다.
   statuses:
     attached:
       description: '첨부: %{attached}'
@@ -1060,7 +1080,7 @@ ko:
 
       <ul>
       <li>마스토돈의 주요 기능 제공. 다른 사람의 게시물에 상호작용 하거나 자신의 게시물을 작성하기 위해서는 로그인을 해야 합니다. 예를 들어, 다른 사람의 게시물을 자신만의 홈 타임라인에서 모아 보기 위해 팔로우를 할 수 있습니다.</li>
-      <li>커뮤니티의 모더레이션을 위해, 예를 들어 당신의 IP 주소와 기타 사항을 비교하여 금지를 우회하거나 다른 규칙을 위반하는지 판단하는 데에 사용할 수 있습니다.</li>
+      <li>커뮤니티의 중재를 위해, 예를 들어 당신의 IP 주소와 기타 사항을 비교하여 금지를 우회하거나 다른 규칙을 위반하는지 판단하는 데에 사용할 수 있습니다.</li>
       <li>당신이 제공한 이메일 주소를 통해 정보, 다른 사람들의 반응이나 받은 메시지에 대한 알림, 기타 요청 등에 관한 응답 요청 등을 보내는 데에 활용됩니다.</li>
       </ul>
 
diff --git a/config/locales/lt.yml b/config/locales/lt.yml
index 7a09bee594b90dccdbdaed1f51d3522ca5281b05..41f0284d80f8b49bbedcd550f55e66ea6572f685 100644
--- a/config/locales/lt.yml
+++ b/config/locales/lt.yml
@@ -75,9 +75,7 @@ lt:
       email_status: El pašto statusas
       enable: Įjungti
       enabled: Įjungta
-      feed_url: Srauto URL
       followers: SekÄ—jai
-      followers_url: Sekėjų URL
       follows: Seka
       header: Antraštė
       inbox_url: Gautųjų URL
@@ -102,9 +100,7 @@ lt:
       most_recent_ip: Paskutinis IP
       no_limits_imposed: Be limitu
       not_subscribed: Ne prenumeruota
-      outbox_url: Išsiustųjų URL
       perform_full_suspension: Užrakinti
-      profile_url: Profilio URL
       promote: Paaukštinti
       protocol: Protokolas
       public: Viešas
@@ -125,7 +121,6 @@ lt:
         moderator: Moderatorius
         staff: Personalas
         user: Vartotojas
-      salmon_url: Lašišos URL
       search: Ieškoti
       shared_inbox_url: Bendroji gautųjų URL
       show:
@@ -309,9 +304,6 @@ lt:
       created_msg: Skundo žinutė sekmingai sukurta!
       destroyed_msg: Skundo žinutė sekmingai ištrinta!
     reports:
-      account:
-        note: raštelis
-        report: skundas
       action_taken_by: Veiksmo Ä—mÄ—si
       are_you_sure: Ar tu įsitikinęs?
       assign_to_self: Paskirti man
@@ -518,7 +510,6 @@ lt:
       size: Dydis
     blocks: Jūs blokuojate
     domain_blocks: Domeno blokai
-    follows: Jūs sekate
     lists: Sąrašai
     mutes: Jūs tildote
     storage: Medijos sandÄ—lis
diff --git a/config/locales/ml.yml b/config/locales/ml.yml
new file mode 100644
index 0000000000000000000000000000000000000000..960ab95cc105c8ee7ff3a7e67348d744e9b49a77
--- /dev/null
+++ b/config/locales/ml.yml
@@ -0,0 +1,64 @@
+---
+ml:
+  about:
+    contact_missing: സജ്ജമാക്കിയിട്ടില്ല
+    contact_unavailable: ലഭ്യമല്ല
+    discover_users: ഉപയോഗ്‌താക്കളെ കണ്ടെത്തുക
+    learn_more: കൂടുതൽ പഠിക്കുക
+    privacy_policy: സ്വകാര്യതാ നയം
+    see_whats_happening: എന്തൊക്കെ സംഭവിക്കുന്നു എന്ന് കാണുക
+    status_count_before: ആരാൽ എഴുതപ്പെട്ടു
+    tagline: സുഹൃത്തുക്കളെ പിന്തുടരുകയും പുതിയവരെ കണ്ടെത്തുകയും ചെയ്യുക
+    terms: സേവന വ്യവസ്ഥകൾ
+    unavailable_content: ലഭ്യമല്ലാത്ത ഉള്ളടക്കം
+    unavailable_content_description:
+      reason: കാരണം
+    what_is_mastodon: എന്താണ് മാസ്റ്റഡോൺ?
+  accounts:
+    follow: പിന്തുടരുക
+    following: നിങ്ങൾ പിന്തുടരുന്നവർ
+    joined: "%{date} ൽ ചേർന്നു"
+    last_active: അവസാനം സജീവമായിരുന്നത്
+    link_verified_on: സന്ധിയുടെ ഉടമസ്ഥാവസ്‌കാശം %{date} ൽ പരിശോധിക്കപ്പെട്ടു
+    media: മാധ്യമങ്ങൾ
+    moved_html: "%{name}, %{new_profile_link} ലേക്ക് നീങ്ങിയിരിക്കുന്നു:"
+  admin:
+    account_moderation_notes:
+      delete: മായ്ക്കുക
+    accounts:
+      approve: അംഗീകരിക്കുക
+      by_domain: മേഖല
+      change_email:
+        changed_msg: അംഗത്തിന്റെ ഇലക്ട്രോണിക് കത്തിന്റെ മേൽവിലാസം വിജയകരമായി മാറ്റിയിരിക്കുന്നു!
+        current_email: ഇപ്പോഴത്തെ ഇലക്ട്രോണിക് കത്തിന്റെ മേൽവിലാസം
+        label: മാറിയ ഇലക്ട്രോണിക് കത്തിന്റെ മേൽവിലാസം
+        new_email: പുതിയ ഇലക്ട്രോണിക് കത്ത്
+        submit: ഇലക്ട്രോണിക് കത്ത് മേൽവിലാസം മാറ്റുക
+        title: "%{username} ന്റെ ഇലക്ട്രോണിക് കത്ത് മേൽവിലാസം മാറ്റുക"
+      confirm: നിജപ്പെടുത്തുക
+      confirmed: നിജപ്പെടുത്തി
+      deleted: മായിച്ചു
+      demote: തരം താഴ്ത്തുക
+      disable: പ്രവര്‍ത്തന രഹിതമാക്കുക
+      disable_two_factor_authentication: ദ്വിഘടക നിർണ്ണയീകരണം പ്രവർത്തന രഹിതമാക്കുക
+      disabled: പ്രവർത്തന രഹിതമാക്കപ്പെട്ടിരിക്കുന്നു
+      display_name: കാണപ്പെടുന്ന നാമം
+      domain: മേഖല
+  errors:
+    '400': The request you submitted was invalid or malformed.
+    '403': You don't have permission to view this page.
+    '404': The page you are looking for isn't here.
+    '406': This page is not available in the requested format.
+    '410': The page you were looking for doesn't exist here anymore.
+    '422': 
+    '429': Throttled
+    '500': 
+    '503': The page could not be served due to a temporary server failure.
+  invites:
+    expires_in:
+      '1800': 30 minutes
+      '21600': 6 hours
+      '3600': 1 hour
+      '43200': 12 hours
+      '604800': 1 week
+      '86400': 1 day
diff --git a/config/locales/mr.yml b/config/locales/mr.yml
new file mode 100644
index 0000000000000000000000000000000000000000..3f83ed785360fab7888eb7f0db6cad7794e680ad
--- /dev/null
+++ b/config/locales/mr.yml
@@ -0,0 +1,20 @@
+---
+mr:
+  errors:
+    '400': The request you submitted was invalid or malformed.
+    '403': You don't have permission to view this page.
+    '404': The page you are looking for isn't here.
+    '406': This page is not available in the requested format.
+    '410': The page you were looking for doesn't exist here anymore.
+    '422': 
+    '429': Throttled
+    '500': 
+    '503': The page could not be served due to a temporary server failure.
+  invites:
+    expires_in:
+      '1800': 30 minutes
+      '21600': 6 hours
+      '3600': 1 hour
+      '43200': 12 hours
+      '604800': 1 week
+      '86400': 1 day
diff --git a/config/locales/ms.yml b/config/locales/ms.yml
index d824aed60c3ed70bb2ff9b55a474a5c1b4e67eeb..71dc72d9d903cc7f8f884bab74d54cc5772fbedd 100644
--- a/config/locales/ms.yml
+++ b/config/locales/ms.yml
@@ -73,9 +73,7 @@ ms:
       email_status: Status Emel
       enable: Bolehkan
       enabled: Dibolehkan
-      feed_url: Suapan URL
       followers: Pengikut
-      followers_url: URL Pengikut
       follows: Mengikuti
       inbox_url: URL mesej masuk
       ip: Alamat IP
@@ -97,9 +95,7 @@ ms:
       most_recent_ip: IP terbaru
       no_limits_imposed: Tiada had dikuatkuasakan
       not_subscribed: Tiada langganan
-      outbox_url: URL mesej keluar
       perform_full_suspension: Gantung
-      profile_url: URL profil
       promote: Naikkan pangkat
       protocol: Protokol
       public: Awam
@@ -119,7 +115,6 @@ ms:
         moderator: Pengawal
         staff: Kakitangan
         user: Pengguna
-      salmon_url: URL Salmon
       search: Cari
       shared_inbox_url: URL Peti Masuk Berkongsi
       show:
@@ -276,9 +271,6 @@ ms:
       created_msg: Nota laporan berjaya dicipta!
       destroyed_msg: Nota laporan berjaya dipadam!
     reports:
-      account:
-        note: nota
-        report: laporan
       action_taken_by: Tindakan oleh
       are_you_sure: Anda pasti?
       assign_to_self: Berikan pada saya
diff --git a/config/locales/nl.yml b/config/locales/nl.yml
index 2c9e42b33c371a96be0e460b92c7703f4c647641..5975ba68e7df374a63355743faf191b1e00098db 100644
--- a/config/locales/nl.yml
+++ b/config/locales/nl.yml
@@ -11,6 +11,7 @@ nl:
     apps: Mobiele apps
     apps_platforms: Gebruik Mastodon op iOS, Android en op andere platformen
     browse_directory: Gebruikersgids doorbladeren en op interesses filteren
+    browse_local_posts: Livestream van openbare berichten op deze server bekijken
     browse_public_posts: Livestream van openbare Mastodonberichten bekijken
     contact: Contact
     contact_missing: Niet ingesteld
@@ -77,6 +78,7 @@ nl:
     roles:
       admin: Beheerder
       bot: Bot
+      group: Groep
       moderator: Moderator
     unavailable: Profiel niet beschikbaar
     unfollow: Ontvolgen
@@ -117,9 +119,7 @@ nl:
       email_status: E-mailstatus
       enable: Inschakelen
       enabled: Ingeschakeld
-      feed_url: Feed-URL
       followers: Volgers
-      followers_url: Volgers-URL
       follows: Volgt
       header: Omslagfoto
       inbox_url: Inbox-URL
@@ -147,10 +147,8 @@ nl:
       no_account_selected: Er zijn geen accounts veranderd, omdat er geen een was geselecteerd
       no_limits_imposed: Geen limieten ingesteld
       not_subscribed: Niet geabonneerd
-      outbox_url: Outbox-URL
       pending: Moet nog beoordeeld worden
       perform_full_suspension: Opschorten
-      profile_url: Profiel-URL
       promote: Promoveren
       protocol: Protocol
       public: Openbaar
@@ -173,8 +171,8 @@ nl:
         moderator: Moderator
         staff: Medewerkers
         user: Gebruiker
-      salmon_url: Salmon-URL
       search: Zoeken
+      search_same_ip: Andere gebruikers met hetzelfde IP-adres
       shared_inbox_url: Gedeelde inbox-URL
       show:
         created_reports: Aangemaakte rapportages
@@ -201,10 +199,12 @@ nl:
         confirm_user: E-mailadres van gebruiker %{target} is door %{name} bevestigd
         create_account_warning: "%{name} verzond een waarschuwing naar %{target}"
         create_custom_emoji: Nieuwe emoji %{target} is door %{name} geüpload
+        create_domain_allow: "%{name} heeft het domein %{target} aan de witte lijst toegevoegd"
         create_domain_block: Domein %{target} is door %{name} geblokkeerd
         create_email_domain_block: E-maildomein %{target} is door %{name} op de zwarte lijst geplaatst
         demote_user: Gebruiker %{target} is door %{name} gedegradeerd
         destroy_custom_emoji: "%{name} verwijderde emoji %{target}"
+        destroy_domain_allow: "%{name} heeft het domein %{target} van de witte lijst verwijderd"
         destroy_domain_block: Domein %{target} is door %{name} gedeblokkeerd
         destroy_email_domain_block: E-maildomein %{target} is door %{name} op de witte lijst geplaatst
         destroy_status: Toot van %{target} is door %{name} verwijderd
@@ -395,12 +395,17 @@ nl:
       destroyed_msg: Opmerking bij rapportage succesvol verwijderd!
     reports:
       account:
-        note: opmerking
-        report: rapportage
+        notes:
+          one: "%{count} opmerking"
+          other: "%{count} opmerkingen"
+        reports:
+          one: "%{count} rapportage"
+          other: "%{count} rapportages"
       action_taken_by: Actie uitgevoerd door
       are_you_sure: Weet je het zeker?
       assign_to_self: Aan mij toewijzen
       assigned: Toegewezen moderator
+      by_target_domain: Domein van gerapporteerde account
       comment:
         none: Geen
       created_at: Gerapporteerd op
@@ -446,6 +451,8 @@ nl:
         users: Naar ingelogde lokale gebruikers
       domain_blocks_rationale:
         title: Motivering tonen
+      enable_bootstrap_timeline_accounts:
+        title: Standaard te volgen accounts voor nieuwe gebruikers inschakelen
       hero:
         desc_html: Wordt op de voorpagina getoond. Tenminste 600x100px aanbevolen. Wanneer dit niet is ingesteld wordt de thumbnail van de Mastodonserver getoond
         title: Hero-afbeelding
@@ -506,6 +513,9 @@ nl:
         desc_html: Toon een link naar de openbare tijdlijnpagina op de voorpagina en geef de API zonder in te loggen toegang tot de openbare tijdlijn
         title: Toegang tot de openbare tijdlijn zonder in te loggen toestaan
       title: Server-instellingen
+      trendable_by_default:
+        desc_html: Heeft invloed op hashtags die nog niet eerder niet zijn toegestaan
+        title: Hashtags toestaan om trending te worden zonder voorafgaande beoordeling
       trends:
         desc_html: Eerder beoordeelde hashtags die op dit moment trending zijn openbaar tonen
         title: Trending hashtags
@@ -572,6 +582,7 @@ nl:
     confirmation_dialogs: Bevestigingen
     discovery: Ontdekken
     sensitive_content: Gevoelige inhoud
+    toot_layout: Lay-out van toots
   application_mailer:
     notification_preferences: E-mailvoorkeuren wijzigen
     salutation: "%{name},"
@@ -708,7 +719,6 @@ nl:
     blocks: Jij blokkeert
     csv: CSV
     domain_blocks: Domeinblokkades
-    follows: Jij volgt
     lists: Lijsten
     mutes: Jij negeert
     storage: Mediaopslag
@@ -878,6 +888,10 @@ nl:
       body: 'Jouw toot werd door %{name} geboost:'
       subject: "%{name} boostte jouw toot"
       title: Nieuwe boost
+  notifications:
+    email_events: E-mailmeldingen voor gebeurtenissen
+    email_events_hint: 'Selecteer gebeurtenissen waarvoor je meldingen wilt ontvangen:'
+    other_settings: Andere meldingsinstellingen
   number:
     human:
       decimal_units:
@@ -911,6 +925,8 @@ nl:
   relationships:
     activity: Accountactiviteit
     dormant: Sluimerend
+    followers: Volgers
+    following: Volgend
     last_active: Laatst actief
     most_recent: Recentelijk gevolgd
     moved: Verhuisd
@@ -1004,6 +1020,8 @@ nl:
     profile: Profiel
     relationships: Volgers en gevolgden
     two_factor_authentication: Tweestapsverificatie
+  spam_check:
+    spam_detected: Dit is een automatisch gegenereerde rapportage. Er is spam gedetecteerd.
   statuses:
     attached:
       description: 'Bijlagen: %{attached}'
diff --git a/config/locales/nn.yml b/config/locales/nn.yml
index a1b61d6e7db4a8e6cc2c7c85eedf4c5a8315db75..4eb8c69b38e2c736b80f2b7a46cfc8756cda61f8 100644
--- a/config/locales/nn.yml
+++ b/config/locales/nn.yml
@@ -1,20 +1,1161 @@
 ---
 nn:
+  about:
+    about_hashtag_html: Dette er offentlege tut merkt med <strong>#%{hashtag}</strong>. Du kan nytta dei om du har ein konto kvar som helst i fødiverset.
+    about_mastodon_html: 'Framtidas sosiale nettverk: Ingen annonsar, ingen verksemder som overvaker deg, etisk design og desentralisering! Eig idéane dine med Mastodon!'
+    about_this: Om oss
+    active_count_after: aktiv
+    active_footnote: MÃ¥nadlege aktive brukarar (MAB)
+    administered_by: 'Administrert av:'
+    api: API
+    apps: Mobilappar
+    apps_platforms: Bruk Mastodon på iOS, Android og andre plattformer
+    browse_directory: Bla gjennom en profilmappe og filtrer etter interesser
+    browse_local_posts: Bla i en sanntidsstrøm av offentlige innlegg fra denne tjeneren
+    browse_public_posts: Sjå ei direktesending av offentlege innlegg på Mastodon
+    contact: Kontakt
+    contact_missing: Ikkje sett
+    contact_unavailable: I/T
+    discover_users: Oppdag brukarar
+    documentation: Dokumentasjon
+    federation_hint_html: Med ein konto på %{instance} kan du fylgja folk på kva som helst slags Mastod-tenar og meir.
+    get_apps: Prøv ein mobilapp
+    hosted_on: "%{domain} er vert for Mastodon"
+    learn_more: Lær meir
+    privacy_policy: Personvernsreglar
+    see_whats_happening: Sjå kva som skjer
+    server_stats: 'Tenarstatistikk:'
+    source_code: Kjeldekode
+    status_count_after:
+      one: status
+      other: statusar
+    status_count_before: Som skreiv
+    tagline: Fylg vener og oppdag nye
+    terms: Brukarvilkår
+    unavailable_content: Utilgjengeleg innhald
+    unavailable_content_description:
+      domain: Sørvar
+      reason: Grunn
+      rejecting_media: 'Mediafiler fra disse tjenerne vil ikke bli behandlet eller lagret, og ingen miniatyrbilder vil bli vist, noe som vil kreve manuell klikking for å besøke den opprinnelige filen:'
+      silenced: 'Innlegg frå desse tenarane vert gøymde frå offentlege tidsliner og samtalar, og det kjem ingen varsel frå samhandlingane til brukarane deira, med mindre du fylgjer dei:'
+      suspended: 'Ingen data frå desse tenarane vert handsama, lagra eller sende til andre, som gjer det umogeleg å samhandla eller kommunisera med andre brukarar frå desse tenarane:'
+    unavailable_content_html: Mastodon gjev deg som regel lov til å sjå innhald og samhandla med brukarar frå alle andre tenarar i fødiverset. Dette er unnataka som er valde for akkurat denne tenaren.
+    user_count_after:
+      one: brukar
+      other: brukarar
+    user_count_before: Her bur
+    what_is_mastodon: Kva er Mastodon?
+  accounts:
+    choices_html: "%{name} sine val:"
+    endorsements_hint: Du kan fremja folk dy fylgjer frå grensesnittet på nettet, og då visast dei her.
+    featured_tags_hint: Du kan velja emneknaggar som skal visast her.
+    follow: Fylg
+    followers:
+      one: Fylgjar
+      other: Fylgjarar
+    following: Fylgjer
+    joined: Vart med %{date}
+    last_active: sist aktiv
+    link_verified_on: Eigarskap for denne lenkja vart sist sjekka %{date}
+    media: Media
+    moved_html: "%{name} har flytta til %{new_profile_link}:"
+    network_hidden: Denne informasjonen er ikkje tilgjengeleg
+    never_active: Aldri
+    nothing_here: Her er det ingenting!
+    people_followed_by: Folk som %{name} fylgjer
+    people_who_follow: Folk som fylgjer %{name}
+    pin_errors:
+      following: Du må allereie fylgja personen du vil fremja
+    posts:
+      one: Tut
+      other: Tut
+    posts_tab_heading: Tut
+    posts_with_replies: Tut og svar
+    reserved_username: Dette brukarnamnet er oppteke
+    roles:
+      admin: Administrator
+      bot: Robot
+      group: Gruppe
+      moderator: Moderator
+    unavailable: Profil ikkje tilgjengeleg
+    unfollow: Slutt å fylgja
+  admin:
+    account_actions:
+      action: Utfør
+      title: Utfør moderatorhandling på %{acct}
+    account_moderation_notes:
+      create: Legg igjen merknad
+      created_msg: Moderatormerknad er laga!
+      delete: Slett
+      destroyed_msg: Moderatormerknad er utsletta!
+    accounts:
+      approve: Godtak
+      approve_all: Godtak alle
+      are_you_sure: Er du sikker?
+      avatar: Bilete
+      by_domain: Domene
+      change_email:
+        changed_msg: Konto-e-posten er endra!
+        current_email: Noverande e-post
+        label: Byt e-post
+        new_email: Ny e-post
+        submit: Byt e-post
+        title: Byt e-post for %{username}
+      confirm: Stadfest
+      confirmed: Stadfesta
+      confirming: Stadfestar
+      deleted: Sletta
+      demote: Degrader
+      disable: Slå av
+      disable_two_factor_authentication: Slå av 2FA
+      disabled: Slege av
+      display_name: Synleg namn
+      domain: Domene
+      edit: Rediger
+      email: E-post
+      email_status: E-poststatus
+      enable: Slå på
+      enabled: Aktivert
+      followers: Fylgjarar
+      follows: Fylgje
+      header: Overskrift
+      inbox_url: Innbokslenkje
+      invited_by: Innboden av
+      ip: IP
+      joined: Vart med
+      location:
+        all: Alle
+        local: Lokalt
+        remote: Fjernt
+        title: Stad
+      login_status: Innlogginsstatus
+      media_attachments: Medievedlegg
+      memorialize: Gjør om til et minne
+      moderation:
+        active: Aktiv
+        all: Alle
+        pending: Ventar på svar
+        silenced: Dempa
+        suspended: Utvist
+        title: Moderasjon
+      moderation_notes: Moderasjonsmerknader
+      most_recent_activity: Nyligste aktivitet
+      most_recent_ip: Nyast IP
+      no_account_selected: Ingen kontoar vart endra sidan ingen var valde
+      no_limits_imposed: Ingen grenser sett
+      not_subscribed: Ikkje tinga
+      pending: Ventar på gjennomgang
+      perform_full_suspension: Utvis
+      promote: Frem
+      protocol: Protokoll
+      public: Offentleg
+      push_subscription_expires: PuSH-abonnent utløper
+      redownload: Last inn profil på nytt
+      reject: Avvis
+      reject_all: Avvis alle
+      remove_avatar: Fjern bilete
+      remove_header: Fjern overskrift
+      resend_confirmation:
+        already_confirmed: Denne brukaren er allereie stadfesta
+        send: Send stadfestings-e-posten på nytt
+        success: Stadfestings-e-post send!
+      reset: Attstill
+      reset_password: Attstill passord
+      resubscribe: Ting på nytt
+      role: Løyve
+      roles:
+        admin: Administrator
+        moderator: Moderator
+        staff: Personell
+        user: Brukar
+      search: Søk
+      search_same_ip: Andre brukarar med same IP
+      shared_inbox_url: Delt Innboks URL
+      show:
+        created_reports: Rapportar frå denne kontoen
+        targeted_reports: Meldt av andre
+      silence: Togn
+      silenced: Dempa
+      statuses: Statusar
+      subscribe: Ting
+      suspended: Utvist
+      time_in_queue: Ventar i kø %{time}
+      title: Kontoar
+      unconfirmed_email: E-post utan stadfesting
+      undo_silenced: Angr målbinding
+      undo_suspension: Angr utvising
+      unsubscribe: Avmeld
+      username: Brukarnamn
+      warn: Ã…tvar
+      web: Nett
+      whitelisted: Kvitlista
+    action_logs:
+      actions:
+        change_email_user: "%{name} endra e-postadressa til brukaren %{target}"
+        confirm_user: "%{name} stadfesta e-postadressa til brukaren %{target}"
+        create_account_warning: "%{name} sende ei åtvaring til %{target}"
+        create_custom_emoji: "%{name} lasta opp eit nytt kjensleteikn %{target}"
+        create_domain_allow: "%{name} kvitlista domenet %{target}"
+        create_domain_block: "%{name} blokkerte domenet %{target}"
+        create_email_domain_block: "%{name} svartelista e-postdomenet %{target}"
+        demote_user: "%{name} degraderte brukaren %{target}"
+        destroy_custom_emoji: "%{name} utsletta kjensleteiknet %{target}"
+        destroy_domain_allow: "%{name} fjerna domenet %{target} frå kvitliste"
+        destroy_domain_block: "%{name} slutta å blokkera domenet %{target}"
+        destroy_email_domain_block: "%{name} kvitlista e-postdomenet %{target}"
+        destroy_status: "%{name} sletta status av %{target}"
+        disable_2fa_user: "%{name} tok vekk krav om tofaktorautentisering for brukaren %{target}"
+        disable_custom_emoji: "%{name} deaktiverte emojien %{target}"
+        disable_user: "%{name} slo av innlogging for brukaren %{target}"
+        enable_custom_emoji: "%{name} aktiverte emojien %{target}"
+        enable_user: "%{name} aktiverte innlogging for brukaren %{target}"
+        memorialize_account: "%{name} endret %{target}s konto til en minneside"
+        promote_user: "%{name} fremja brukaren %{target}"
+        remove_avatar_user: "%{name} fjerna %{target} sitt profilbilete"
+        reopen_report: "%{name} opna rapporten %{target} på nytt"
+        reset_password_user: "%{name} nullstilte passordet til brukaren %{target}"
+        resolve_report: "%{name} løyste ein rapport %{target}"
+        silence_account: "%{name} målbatt %{target} sin konto"
+        suspend_account: "%{name} utviste %{target} sin konto"
+        unsilence_account: "%{name} fjernet forstummingen av %{target}s konto"
+        unsuspend_account: "%{name} utviste %{target} sin konto"
+        update_custom_emoji: "%{name} oppdaterte kjensleteiknet %{target}"
+        update_status: "%{name} oppdaterte status for %{target}"
+      deleted_status: "(sletta status)"
+      title: Revisionslogg
+    custom_emojis:
+      assign_category: Vel kategori
+      by_domain: Domene
+      copied_msg: Laga ein lokal kopi av kjensleteiknet
+      copy: Kopier
+      copy_failed_msg: Klarte ikkje å kopiera emojien
+      create_new_category: Lag ny kategori
+      created_msg: Laga kjensleteikn!
+      delete: Slett
+      destroyed_msg: Kjensleteikn utsletta!
+      disable: Slå av
+      disabled: Slege av
+      disabled_msg: Deaktiverte emoji
+      emoji: Emoji
+      enable: Slå på
+      enabled: Slege på
+      enabled_msg: Aktiverte kjensleteikn
+      image_hint: PNG opp til 50 kB
+      list: Oppfør
+      listed: Oppført
+      new:
+        title: Legg til eige kjensleteikn
+      overwrite: Skriv over
+      shortcode: Stuttkode
+      shortcode_hint: Minst 2 teikn, berre tal, bokstavar og understrek
+      title: Eigne kjensleteikn
+      uncategorized: Ukategorisert
+      unlist: Uoppfør
+      unlisted: Ikkje oppført
+      update_failed_msg: Klarte ikkje å oppdatera emojien
+      updated_msg: Kjensleteiknet er oppdatert!
+      upload: Last opp
+    dashboard:
+      authorized_fetch_mode: Trygg modus
+      config: Oppsett
+      feature_deletions: Kontoslettingar
+      feature_invites: Innbydingar
+      feature_profile_directory: Profilmappe
+      feature_registrations: Registreringar
+      feature_spam_check: Søppelvern
+      feature_timeline_preview: Førehandsvisning av tidsline
+      features: Eigenskapar
+      open_reports: opne rapportar
+      pending_tags: emneknaggar som ventar på gjennomgang
+      pending_users: brukarar som ventar på gjennomgang
+      recent_users: Nylege brukarar
+      search: Fulltekstsøking
+      single_user_mode: Enkeltbrukarmodus
+      software: Programvare
+      space: Lagrinsplass nytta
+      title: Dashbord
+      total_users: brukarar til saman
+      trends: Populært
+      week_interactions: samhandlingar denne veka
+      week_users_active: aktive denne veka
+      week_users_new: brukarar denne veka
+      whitelist_mode: Kvitlistemodus
+    domain_allows:
+      add_new: Kvitlist domene
+      created_msg: Domene er vorte kvitlista
+      destroyed_msg: Domene er fjerna frå kvitlista
+      undo: Fjern frå kvitliste
+    domain_blocks:
+      add_new: Lag ny
+      created_msg: Domeneblokkering blir nå behandlet
+      destroyed_msg: Domeneblokkering har nå blitt angret
+      domain: Domene
+      existing_domain_block_html: Du har allerede pålagt strengere begrensninger på %{name}, du kan være nødt til <a href="%{unblock_url}">oppheve blokkeringen av den</a> først.
+      new:
+        create: Lag blokkering
+        hint: Domeneblokkeringen vil ikke hindre opprettelse av kontooppføringer i databasen, men vil retroaktivt og automatisk benytte spesifikke moderasjonsmetoder på de kontoene.
+        severity:
+          desc_html: "<strong>Målbind</strong> gjør kontoens poster usynlige for alle som ikke følger den. <strong>Utvis</strong> fjerner alt innhold, media og profildata fra kontoen. Bruk <strong>Ingen</strong> hvis du bare vil fjerne mediafiler."
+          noop: Ingen
+          silence: Togn
+          suspend: Utvis
+        title: Ny domeneblokkering
+      private_comment: Privat kommentar
+      public_comment: Offentleg kommentar
+      reject_media: Avvis mediefiler
+      reject_media_hint: Fjernar mediefiler som er lagra lokalt og nektar å lasta ned andre i framtida. Har ikkje noko å seia for utvisingar
+      reject_reports: Avvis rapportar
+      reject_reports_hint: Ignorer alle rapportar frå dette domenet. Har ikkje noko å seia for utvisingar
+      rejecting_media: avviser mediefiler
+      rejecting_reports: avviser rapportar
+      severity:
+        silence: dempa
+        suspend: utvist
+      show:
+        affected_accounts:
+          one: Éin konto i databasen vert påverka
+          other: "%{count} kontoar i databasen vert påverka"
+        retroactive:
+          silence: Avmålbind alle eksisterende kontoer fre dette domenet
+          suspend: Avutvis alle eksisterende kontoer fra dette domenet
+        title: Angre domeneblokkering for %{domain}
+        undo: Angr
+      undo: Angre
+    email_domain_blocks:
+      add_new: Lag ny
+      created_msg: E-postdomenet ble lagt til i blokkeringslisten uten problemer
+      delete: Slett
+      destroyed_msg: E-postdomenet har blitt fjernet fra blokkeringslisten uten problemer
+      domain: Domene
+      new:
+        create: Legg til domene
+        title: Ny blokkeringsoppføring av e-postdomene
+      title: Blokkerte e-postadresser
+    followers:
+      back_to_account: Tilbake til konto
+      title: "%{acct} sine fylgjarar"
+    instances:
+      by_domain: Domene
+      delivery_available: Levering er tilgjengelig
+      known_accounts:
+        one: "%{count} kjend konto"
+        other: "%{count} kjende kontoar"
+      moderation:
+        all: Alle
+        limited: Avgrensa
+        title: Moderasjon
+      private_comment: Privat kommentar
+      public_comment: Offentleg kommentar
+      title: Samling
+      total_blocked_by_us: Blokkert av oss
+      total_followed_by_them: Fylgd av dei
+      total_followed_by_us: Fylgd av oss
+      total_reported: Rapportar om dei
+      total_storage: Medievedlegg
+    invites:
+      deactivate_all: Slå av alle
+      filter:
+        all: Alle
+        available: Tilgjengeleg
+        expired: Utgått
+        title: Filter
+      title: Innbydingar
+    pending_accounts:
+      title: Kontoar som ventar (%{count})
+    relays:
+      add_new: Legg til ny overgang
+      delete: Slett
+      disable: Slå av
+      disabled: Slege av
+      enable: Slå på
+      enable_hint: Når dette har blitt skrudd på, vil tjeneren din abonnere på alle offentlige tuter fra denne overgangen, og vil begynne å sende denne tjenerens offentlige tuter til den.
+      enabled: Skrudd på
+      inbox_url: Overførings-URL
+      save_and_enable: Lagr og slå på
+      setup: Sett opp en overgangsforbindelse
+      signatures_not_enabled: Overganger vil ikke fungere riktig mens sikkermodus eller hvitelistingsmodus er skrudd på
+      status: Status
+      title: Vidaresendingar
+    report_notes:
+      created_msg: Rapportmerknad laga!
+      destroyed_msg: Rapportmerknad sletta!
+    reports:
+      account:
+        notes:
+          one: "%{count} notis"
+          other: "%{count} notiser"
+        reports:
+          one: "%{count} rapport"
+          other: "%{count} rapporter"
+      action_taken_by: Handling gjort av
+      are_you_sure: Er du sikker?
+      assign_to_self: Tilegn til meg
+      assigned: Tilsett moderator
+      comment:
+        none: Ingen
+      created_at: Rapportert
+      mark_as_resolved: Merk som løyst
+      mark_as_unresolved: Merk som uløyst
+      notes:
+        create: Sett inn merknad
+        create_and_resolve: Løys med merknad
+        create_and_unresolve: Opn på nytt med merknad
+        delete: Slett
+      reopen: Opn rapport igjen
+      report: 'Rapporter #%{id}'
+      reported_account: Rapportert konto
+      reported_by: Rapportert av
+      resolved: Oppløyst
+      resolved_msg: Rapporten er løyst!
+      status: Status
+      title: Rapportar
+      unassign: Avset
+      unresolved: Uløyst
+      updated_at: Oppdatert
+    settings:
+      activity_api_enabled:
+        desc_html: Antall lokale statusposter, aktive brukere og nye registreringer i ukentlige oppdelinger
+        title: Publiser samlet statistikk om brukeraktiviteter
+      bootstrap_timeline_accounts:
+        desc_html: Separer flere brukernavn med komma. Kun lokale og ulåste kontoer vil kunne brukes. Dersom tomt er standarden alle lokale administratorer.
+        title: Standard fylgjer for nye brukarar
+      contact_information:
+        email: Offentleg e-postadresse
+        username: Brukarnamn for kontakt
+      custom_css:
+        title: Eigen CSS
+      default_noindex:
+        desc_html: Påverkar alle brukarar som ikkje har justert denne innstillinga sjølve
+      domain_blocks:
+        all: Til alle
+        disabled: Til ingen
+        title: Vis domeneblokkeringer
+        users: Til lokale brukarar som er logga inn
+      domain_blocks_rationale:
+        title: Vis kvifor
+      hero:
+        desc_html: Vises på forsiden. Minst 600×100px er anbefalt. Dersom dette ikke er valgt, faller det tilbake på tjenerens miniatyrbilde
+        title: Heltebilete
+      mascot:
+        desc_html: Vist på flere sider. Minst 293×205px er anbefalt. Dersom det ikke er valgt, faller det tilbake til standardmaskoten
+        title: Maskotbilete
+      peers_api_enabled:
+        desc_html: Domenenavn denne instansen har truffet på i fediverset
+        title: Publiser liste over oppdaga tenarar
+      preview_sensitive_media:
+        desc_html: Lenkeforhåndsvisninger på andre nettsteder vil vise et miniatyrbilde selv dersom mediet er merket som sensitivt
+      profile_directory:
+        desc_html: Gjer at brukarar kan oppdagast
+        title: Skru på profilmappen
+      registrations:
+        closed_message:
+          desc_html: Vises på forsiden når registreringer er lukket<br>Du kan bruke HTML-tagger
+          title: Melding for lukket registrering
+        deletion:
+          desc_html: Tillat alle å sletta kontoen sin
+          title: Ã…pne kontosletting
+        min_invite_role:
+          disabled: Ingen
+          title: Tillat innbydingar frå
+      registrations_mode:
+        modes:
+          none: Ingen kan melda seg inn
+          open: Kven som helst kan melda seg inn
+      show_staff_badge:
+        desc_html: Vis personalmerke på ei brukarside
+        title: Vis personalmerke
+      site_description:
+        desc_html: Vises som et avsnitt på forsiden og brukes som en meta-tagg. Du kan bruke HTML-tagger, spesielt <code>&lt;a&gt;</code> og <code>&lt;em&gt;</code>.
+        title: Tenarskilding
+      site_description_extended:
+        desc_html: Ein god stad å setja reglar for åtferdskode, reglar, rettningsliner og andre ting som skil din tenar frå andre. Du kan nytta HTML-taggar
+        title: Utvidet nettstedsinformasjon
+      site_short_description:
+        desc_html: Vist i sidelinjen og i metastempler. Beskriv hva Mastodon er og hva som gjør denne tjeneren spesiell i én enkelt paragraf.
+        title: Stutt om tenaren
+      site_terms:
+        desc_html: Du kan skrive din egen personverns-strategi, bruksviklår og andre regler. Du kan bruke HTML tagger
+        title: Eigne brukarvilkår
+      site_title: Tenarnamn
+      spam_check_enabled:
+        desc_html: Mastodon kan auto-rapportere kontoer som sender gjentatte uforespurte meldinger. Det kan oppstå falske positive treff.
+        title: Nettsøppelvern
+      thumbnail:
+        desc_html: Brukes ved forhandsvisning via OpenGraph og API. 1200x630px anbefales
+        title: Småbilete for tenaren
+      timeline_preview:
+        desc_html: Vis offentlig tidslinje på landingssiden
+        title: Tillat uautentisert tilgang til offentleg tidsline
+      title: Sideinnstillingar
+      trendable_by_default:
+        desc_html: PÃ¥verkar emneknaggar som ikkje har vore tillatne tidlegare
+        title: Tillat emneknaggar å verta populære utan gjennomgang på førehand
+      trends:
+        title: Populære emneknaggar
+    statuses:
+      back_to_account: Tilbake til kontosida
+      batch:
+        delete: Slett
+        nsfw_off: NSFW AV
+        nsfw_on: NSFW PÃ…
+      deleted: Sletta
+      failed_to_execute: Lét seg ikkje gjera
+      media:
+        title: Media
+      no_media: Ingen media
+      no_status_selected: Ingen statusar vart endra sidan ingen vart valde
+      title: Kontostatusar
+      with_media: Med media
+    tags:
+      accounts_today: Ulike brukarar i dag
+      accounts_week: Unike brukstilfeller denne uken
+      breakdown: Oversyn over bruk i dag etter kjelde
+      context: Kontekst
+      directory: I mappen
+      in_directory: "%{count} i mappen"
+      last_active: Sist aktiv
+      most_popular: Mest populær
+      most_recent: Nyast
+      name: Emneknagg
+      review: Sjå gjennom status
+      reviewed: Gjennomgått
+      title: Emneknaggar
+      trending_right_now: Populært no
+      unique_uses_today: "%{count} legg ut i dag"
+      unreviewed: Ikkje gjennomgått
+      updated_msg: Emneknagginnstillingane er oppdaterte
+    title: Leiing
+    warning_presets:
+      add_new: Legg til ny
+      delete: Slett
+      edit: Rediger
+      edit_preset: Endr åtvaringsoppsett
+      title: Handsam åtvaringsoppsett
+  admin_mailer:
+    new_report:
+      body: "%{reporter} har rapportert %{target}"
+      body_remote: Nokon frå %{domain} har meldt %{target}
+      subject: Ny rapport for %{instance} (#%{id})
+    new_trending_tag:
+      body: 'Emneknaggen #%{name} trender i dag, men den har ikke blitt gjennomgått tidligere. Den vil ikke bli vist offentlig med mindre du tillater at den blir det, eller du kan bare lagre skjemaet slik det er for å aldri høre om det igjen.'
+      subject: Ny emneknagg ventar gjennomgang på %{instance} (#%{name})
+  aliases:
+    add_new: Lag psevdonym
+    created_msg: Laga eit nytt kallenamn. No kan du setja i gang med flyttinga frå den gamle kontoen.
+    deleted_msg: Fjerna kallenamnet. No vert det ikkje lenger mogeleg å flytta frå den andre kontoen til denne.
+    hint_html: Dersom du vil flytte fra en annen konto til den, kan du lage et alias her, som er påkrevd før du kan gå videre med å flytte følgere fra den gamle kontoen til den nye. Handlingen i seg selv er <strong>harmløs og reversibel</strong>. <strong>Kontoflyttingen har blitt satt i gang fra den gamle kontoen</strong>.
+    remove: Fjern aliaslenking
+  appearance:
+    advanced_web_interface: Avansert nettgrensesnitt
+    advanced_web_interface_hint: 'Hvis du ønsker å bruke hele skjermbredden din, lar det avanserte nettgrensesnittet deg sette opp mange forskjellige kolonner for å se så mye informasjon på én gang som du vil: Hjem, varslinger, fellestidslinjen, og ethvert antall lister og emneknagger.'
+    animations_and_accessibility: Animasjoner og tilgjengelighet
+    confirmation_dialogs: Bekreftelsesdialoger
+    discovery: Oppdaging
+    sensitive_content: Sensitivt innhold
+    toot_layout: Tutoppsett
+  application_mailer:
+    notification_preferences: Endr e-post-innstillingane
+    salutation: "%{name},"
+    settings: 'Endr e-post-innstillingar: %{link}'
+    view: 'Sjå:'
+    view_profile: Sjå profil
+    view_status: Sjå status
+  applications:
+    created: Søknad laga
+    destroyed: Søknad sletta
+    invalid_url: Denne lenkja er ugyldig
+    regenerate_token: Lag tilgangsnykel på nytt
+    token_regenerated: Tilgangsnykel laga på nytt
+    warning: Ver varsam med dette datumet. Aldri del det med nokon!
+    your_token: Tilgangsnykelen din
+  auth:
+    apply_for_account: Bed om innbyding
+    change_password: Passord
+    checkbox_agreement_html: Eg godtek <a href="%{rules_path}" target="_blank">tenarreglane</a> og <a href="%{terms_path}" target="_blank">tenestevilkåra</a>
+    checkbox_agreement_without_rules_html: Eg godtek <a href="%{terms_path}" target="_blank">tenestevilkåra</a>
+    delete_account: Slett konto
+    delete_account_html: Om du vil sletta kontoen din, kan du <a href="%{path}">gå hit</a>. Du vert spurd etter stadfesting.
+    description:
+      prefix_invited_by_user: "@%{name} spør deg om å verta med i ein Mastodon-tenar!"
+      prefix_sign_up: Meld deg på Mastodon i dag!
+      suffix: Med ein konto kan du fylgja folk, skriva innlegg og veksla meldingar med brukarar frå kva som helst annan Mastodon-tenar og meir!
+    didnt_get_confirmation: Fekk du ikkje stadfestingsinstruksjonar?
+    forgot_password: Har du gløymt passordet ditt?
+    invalid_reset_password_token: Tilgangsnykelen er ugyldig eller utgått. Ver venleg å beda om ein ny ein.
+    login: Innlogging
+    logout: Logg ut
+    migrate_account: Flytt til ein annan konto
+    migrate_account_html: Hvis du ønsker å henvise denne kontoen til en annen, kan du <a href="%{path}">konfigurere det her</a>.
+    or_log_in_with: Eller logg inn med
+    providers:
+      cas: CAS
+      saml: SAML
+    register: Registrer deg
+    registration_closed: "%{instance} tek ikkje imot nye medlemmar"
+    resend_confirmation: Send stadfestingsinstruksjonar på nytt
+    reset_password: Attstill passord
+    security: Tryggleik
+    set_new_password: Lag nytt passord
+    setup:
+      email_below_hint_html: Om e-posten nedfor ikkje er rett, kan du endra han her og få ein ny stadfestings-e-post.
+      email_settings_hint_html: Stadfestings-e-posten vart send til %{email}. Om den e-postadressa ikkje er rett, kan du byta adresse i kontoinnstillingane.
+      title: Oppsett
+    status:
+      account_status: Kontostatus
+      confirming: Ventar på stadfesting av e-post.
+      functional: Kontoen din er oppe og går.
+      pending: Søknaden din ventar på gjennomgang frå personalet vårt. Dette kan taka litt tid. Du får ein e-post om søknaden din vert godkjend.
+    trouble_logging_in: FÃ¥r du ikkje logga inn?
+  authorize_follow:
+    already_following: Du fylgjer allereie denne kontoen
+    error: Uheldigvis skjedde det en feil da vi prøvde å få tak i en bruker fra en annen instans
+    follow: Fylg
+    follow_request: 'Du har sendt ein fylgjeførespurnad til:'
+    following: 'Suksess! No fylgjer du:'
+    post_follow:
+      close: Eller så kan du berre lukka att dette vindauget.
+      return: Vis brukarprofilen
+      web: GÃ¥ til nettet
+    title: Fylg %{acct}
+  challenge:
+    confirm: Hald fram
+    hint_html: "<strong>Tips:</strong> Vi skal ikkje spørja deg om passordet ditt igjen i laupet av den neste timen."
+    invalid_password: Ugyldig passord
+    prompt: Stadfest passord for å halda fram
+  datetime:
+    distance_in_words:
+      about_x_hours: "%{count}t"
+      about_x_months: "%{count}md."
+      about_x_years: "%{count} år"
+      almost_x_years: "%{count} år"
+      half_a_minute: No nettopp
+      less_than_x_minutes: "%{count}min"
+      less_than_x_seconds: No nettopp
+      over_x_years: "%{count} år"
+      x_days: "%{count}d"
+      x_minutes: "%{count}min"
+      x_months: "%{count}md"
+      x_seconds: "%{count}s"
+  deletes:
+    challenge_not_passed: Det du skreiv var ikkje rett
+    confirm_password: Skriv det noverande passordet ditt for å stadfesta identiteten din
+    confirm_username: Skriv inn brukarnamnet ditt for å stadfesta
+    proceed: Slett konto
+    success_msg: Kontoen din er sletta
+    warning:
+      before: 'Ver venleg og les desse punkta nøye før du held fram:'
+      caches: Innhold som har blitt mellomlagret av andre tjenere kan kanskje fortsette å eksistere
+      data_removal: Innlegga dine og andre data vert fjerna for alltid
+      email_change_html: Du kan <a href="%{path}">byta e-postadressa di</a> utan å sletta kontoen din
+      email_contact_html: Dersom det fortsatt ikke kommer, kan du sende en E-post til <a href="mailto:%{email}">%{email}</a> og be om hjelp
+      email_reconfirmation_html: Dersom du ikke mottar bekreftelses-E-posten, kan du <a href="%{path}">be om den igjen</a>
+      irreversible: Du kjem ikkje til å kunna gjenoppretta eller aktivera kontoen din på nytt
+      more_details_html: For fleire detaljar, sjå <a href="%{terms_path}">personvernsvilkåra</a>.
+      username_available: Brukarnamnet ditt vert tilgjengeleg igjen
+      username_unavailable: Brukarnamnet ditt kjem til å halda seg utilgjengeleg
+  directories:
+    directory: Profilkatalog
+    explanation: Leit fram brukarar etter interessa deira
+    explore_mastodon: Utforsk %{title}
+  domain_validator:
+    invalid_domain: er ikkje eit gangbart domenenamn
   errors:
-    '400': The request you submitted was invalid or malformed.
-    '403': You don't have permission to view this page.
-    '404': The page you are looking for isn't here.
-    '406': This page is not available in the requested format.
-    '410': The page you were looking for doesn't exist here anymore.
-    '422': 
-    '429': Throttled
-    '500': 
+    '400': Søknaden du sende var ugyldig eller sett opp feil.
+    '403': Du har ikkje løyve til å sjå denne sida.
+    '404': Sida du leitar etter finst ikkje.
+    '406': Denne sida er ikkje tilgjengeleg i dette oppsettet.
+    '410': Sida du leitar etter finst ikkje her lenger.
+    '422':
+      content: Sikkerhetsverifisering feilet. Blokkerer du informasjonskapsler?
+      title: Sikkerhetsverifisering feilet
+    '429': Overfyllt
+    '500':
+      content: Orsak. Vi har gjort noko feil.
+      title: Denne sida er ikkje rett
     '503': The page could not be served due to a temporary server failure.
+    noscript_html: For å bruke Mastodon webapplikasjon må du aktivere JavaScript. Alternativt kan du forsøke en av de mange <a href="%{apps_path}">integrerte appene</a> for Mastodon til din plattform.
+  existing_username_validator:
+    not_found: fann ingen lokalbrukar med det namnet
+    not_found_multiple: fann ikkje %{usernames}
+  exports:
+    archive_takeout:
+      date: Dato
+      download: Last ned arkivet ditt
+      hint_html: Du kan be om et arkiv med dine <strong>tuter og opplastede media</strong>. Den eksporterte dataen vil være i ActivityPub-formatet, som kan leses av programmer som støtter det. Du kan be om et arkiv opptil hver 7. dag.
+      in_progress: Samlar arkivet ditt...
+      request: Bed om arkivet ditt
+      size: Storleik
+    blocks: Du blokkerer
+    csv: CSV
+    domain_blocks: Domeneblokkeringer
+    lists: Lister
+    mutes: Du dempar
+    storage: Medielagring
+  featured_tags:
+    add_new: Legg til ny
+    errors:
+      limit: Du har allereie så mange emneknaggar som det går an å ha
+    hint_html: "<strong>Hva er utvalgte emneknagger?</strong> De vises frem tydelig på din offentlige profil, og lar folk bla i dine offentlige innlegg som spesifikt har de emneknaggene. De er et bra verktøy for å holde styr på kreative verk eller langtidsprosjekter."
+  filters:
+    contexts:
+      home: Heimeside
+      notifications: Varsel
+      public: Offentlege tidsliner
+      thread: Samtalar
+    edit:
+      title: Endr filter
+    index:
+      delete: Slett
+      title: Filter
+    new:
+      title: Legg til nytt filter
+  footer:
+    developers: Utviklarar
+    more: Meir…
+    resources: Ressursar
+    trending_now: Populært no
+  generic:
+    all: Alle
+    changes_saved_msg: Alle endringane vart lagra!
+    copy: Kopier
+    order_by: Sorter etter
+    save_changes: Lagr endringar
+    validation_errors:
+      one: Noe er ikke helt riktig ennå. Vennligst se etter en gang til
+      other: Noe er ikke helt riktig ennå. Det er ennå %{count} feil å rette på
+  identity_proofs:
+    active: Aktiv
+    authorize: Ja, stadfest
+    errors:
+      keybase:
+        verification_failed: Keybase kjenner ikke igjen denne sjetongen som en signatur for Keybase-brukeren %{kb_username}. Vennligst prøv igjen gjennom Keybase.
+      wrong_user: Kan ikke lage et bevis for %{proving} mens du er logget på som %{current}. Logg på som %{proving} og prøv igjen.
+    explanation_html: Her kan du kryptografisk koble til dine andre enheter, f.eks. en Keybase-profil. Dette lar andre folk sende deg krypterte meldinger og stole på innhold som du sender dem.
+    i_am_html: Eg er %{username} på %{service}.
+    identity: Identitet
+    inactive: Uaktiv
+    publicize_checkbox: 'Og tut dette:'
+    publicize_toot: 'Det er prova! Eg er %{username} på %{service}: %{url}'
+    status: Stadfestingsstatus
+    view_proof: Sjå prov
+  imports:
+    modes:
+      merge: Set saman
+      overwrite: Skriv over
+    preface: Du kan henta inn data som du har eksportert frå ein annan tenar, som t.d. ei liste over folka du fylgjer eller blokkerer.
+    success: Dataa dine vart lasta opp og vert no handsama så fort som mogeleg
+    types:
+      blocking: Blokkeringsliste
+      domain_blocking: Liste over blokkerte domene
+      following: Fylgjeliste
+      muting: Dempeliste
+    upload: Last opp
+  in_memoriam_html: Til minne.
   invites:
+    delete: Slå av
+    expired: Utgått
     expires_in:
-      '1800': 30 minutes
-      '21600': 6 hours
-      '3600': 1 hour
-      '43200': 12 hours
-      '604800': 1 week
-      '86400': 1 day
+      '1800': 30 minutt
+      '21600': 6 timar
+      '3600': 1 time
+      '43200': 12 timar
+      '604800': 1 veke
+      '86400': 1 dag
+    expires_in_prompt: Aldri
+    generate: Lag innbydingslenkje
+    invited_by: 'Du vart invitert av:'
+    max_uses:
+      one: 1 bruk
+      other: "%{count} bruk"
+    max_uses_prompt: Inga grense
+    prompt: Generer og del lenker med andre for å gi tilgang til denne instansen
+    table:
+      expires_at: Vert ugyldig
+      uses: Bruk
+    title: By folk inn
+  lists:
+    errors:
+      limit: Du har nådd grensa for kor mange lister du kan ha
+  media_attachments:
+    validations:
+      images_and_video: Kan ikkje leggja ved video til status som allereie inneheld bilete
+      too_many: Kan ikkje leggja til meir enn 4 filer
+  migrations:
+    acct: Flytta til
+    cancel: Avbryt omdirigeringen
+    cancel_explanation: Å avbryte omdirigeringen vil reaktivere din nåværende konto, men vil ikke bringe tilbake følgere som har blitt flyttet til den kontoen.
+    errors:
+      already_moved: er den same kontoen som du allereie har flytta til
+      move_to_self: kan ikkje vera denne kontoen
+      not_found: fann ikkje
+    followers_count: Fylgjarar då kontoen vart flytta
+    incoming_migrations: Flyttar frå ein annan konto
+    incoming_migrations_html: For å flytta frå ein annnan konto til denne må du fyrst <a href="%{path}">laga eit kallenamn til kontoen</a>.
+    past_migrations: Tidlegare vandringar
+    proceed_with_move: Flytt fylgjarar
+    set_redirect: Bestem omdirigering
+    warning:
+      before: 'Før du fortsetter, vennligst les disse notisene nøye:'
+      disabled_account: Din nåværende konto vil ikke være fullt brukbar etterpå. Men du vil ha tilgang til dataeksportering såvel som reaktivering.
+  moderation:
+    title: Moderasjon
+  notification_mailer:
+    digest:
+      action: Sjå alle varsel
+      body: Her er ei kort samanfatting av meldingane du gjekk glepp av sidan siste gong du var innom %{since}
+      mention: "%{name} nemnde deg i:"
+      new_followers_summary:
+        one: Du har forresten fått deg ein ny fylgjar mens du var borte! Hurra!
+        other: Du har forresten fått deg %{count} nye fylgjarar mens du var borte! Hurra!
+      subject:
+        one: "1 nytt varsel sidan siste gong du var innom \U0001F418"
+        other: "%{count} nye varsel sidan siste gong du var innom \U0001F418"
+      title: Mens du var borte...
+    favourite:
+      body: 'Statusen din vart merkt som favoritt av %{name}:'
+      subject: "%{name} merkte statusen din som favoritt"
+      title: Nye favorittar
+    follow:
+      body: "%{name} fylgjer deg!"
+      subject: "%{name} fylgjer deg"
+      title: Ny fylgjar
+    follow_request:
+      action: Gå gjennom førespurnader
+      body: "%{name} har bedt om å fylgja deg"
+      subject: 'Ventande fylgjar: %{name}'
+      title: Ny fylgjeførespurnad
+    mention:
+      action: Svar
+      body: 'Du vart nemnd av %{name} i:'
+      subject: Du vart nemnd av %{name}
+      title: Ny nemning
+    reblog:
+      body: 'Statusen din vart framheva av %{name}:'
+      subject: "%{name} framheva statusen din"
+      title: Ny framheving
+  notifications:
+    email_events: E-postvarslinger for hendelser
+    email_events_hint: 'Velg hendelser som du vil motta varslinger for:'
+    other_settings: Andre varslingsinnstillinger
+  number:
+    human:
+      decimal_units:
+        format: "%n%u"
+        units:
+          billion: Mrd
+          million: Mil
+          quadrillion: Bil
+          thousand: K
+          trillion: Bil
+  pagination:
+    newer: Nyare
+    next: Neste
+    older: Eldre
+    prev: Førre
+    truncate: "&hellip;"
+  polls:
+    errors:
+      already_voted: Du har allereie røysta i denne rundspørjinga
+      duplicate_options: inneheld like element
+      duration_too_long: er for langt fram i tid
+      duration_too_short: er for snart
+      expired: Denne rundspørjinga er allereie ferdig
+      over_character_limit: kan ikkje vera lengre enn %{max} teikn kvar
+      too_few_options: må ha meir enn eitt element
+      too_many_options: kan ikkje ha meir enn %{max} element
+  preferences:
+    other: Anna
+    posting_defaults: Innleggsstandarder
+    public_timelines: Offentlege tidsliner
+  relationships:
+    activity: Kontoaktivitet
+    dormant: I dvale
+    followers: Følgere
+    following: Følginger
+    last_active: Sist aktiv
+    most_recent: Sist
+    moved: Flytta
+    mutual: Felles
+    primary: Primært
+    relationship: Forhold
+    remove_selected_domains: Fjern alle fylgjarar frå dei valde domena
+    remove_selected_followers: Fjern valde fylgjarar
+    remove_selected_follows: Slutt å fylgja desse brukarane
+    status: Kontostatus
+  remote_follow:
+    acct: Tast inn brukernavn@domene som du vil følge fra
+    missing_resource: Kunne ikke finne URLen for din konto
+    no_account_html: Har du ikkje konto? Du kan <a href='%{sign_up_path}' target='_blank'>melda deg inn her</a>
+    proceed: Hald fram med å fylgja
+    prompt: 'Du kjem til å fylgja:'
+    reason_html: "<strong>Hvorfor dette trinnet er nødvendig?</strong><code>%{instance}</code> er kanskje ikke tjeneren som du er registrert på, så vi må omdirigere deg til hjemmetjeneren din først."
+  remote_interaction:
+    favourite:
+      proceed: Merk som favoritt
+      prompt: 'Du vil merkja dette tutet som favoritt:'
+    reblog:
+      proceed: Framhev
+      prompt: 'Du vil framheva dette tutet:'
+    reply:
+      proceed: Svar
+      prompt: 'Du vil svara på dette tutet:'
+  sessions:
+    activity: Siste aktivitet
+    browser: Nettlesar
+    browsers:
+      alipay: Alipay
+      blackberry: Blackberry
+      chrome: Chrome
+      edge: Microsoft Edge
+      electron: Electron
+      firefox: Firefox
+      generic: Ukjend lesar
+      ie: Internet Explorer
+      micro_messenger: Micromessenger
+      nokia: Nokia S40 Ovi-lesar
+      opera: Opera
+      otter: Otter
+      phantom_js: PhantomJS
+      qq: QQ-lesar
+      safari: Safari
+      uc_browser: UC-lesar
+      weibo: Weibo
+    current_session: Noverande økt
+    description: "%{browser} på %{platform}"
+    explanation: Desse nettlesarane er logga inn på Mastodon-kontoen din.
+    ip: IP
+    platforms:
+      adobe_air: Adobe Air
+      android: Android
+      blackberry: Blackberry
+      chrome_os: Chrome OS
+      firefox_os: Firefox OS
+      ios: IOS
+      linux: Linux
+      mac: Mac
+      other: ukjend plattform
+      windows: Windows
+      windows_mobile: Windows Mobile
+      windows_phone: Windows Phone
+    revoke: Tilbakekall
+    revoke_success: Økt tilbakekalt
+    title: Økter
+  settings:
+    account: Konto
+    account_settings: Kontoinnstillingar
+    aliases: Kallenamn til kontoen
+    appearance: Utsjånad
+    authorized_apps: Godkjende appar
+    back: Tilbake til Mastodon
+    delete: Kontosletting
+    development: Utvikling
+    edit_profile: Endr profil
+    export: Dataeksport
+    featured_tags: Utvalgte emneknagger
+    identity_proofs: Identitetsprov
+    import: Hent inn
+    import_and_export: Importer og eksporter
+    migrate: Kontoflytting
+    notifications: Varsel
+    preferences: Innstillingar
+    profile: Profil
+    relationships: Fylgjar og fylgjarar
+    two_factor_authentication: Tostegsautorisering
+  statuses:
+    attached:
+      description: 'Vedlagt: %{attached}'
+      image:
+        one: "%{count} bilete"
+        other: "%{count} bilete"
+      video:
+        one: "%{count} video"
+        other: "%{count} videoar"
+    boosted_from_html: Framheva av %{acct_link}
+    content_warning: 'Innhaldsåtvaring: %{warning}'
+    disallowed_hashtags:
+      one: 'inneheldt ein emneknagg som ikkje var tillaten: %{tags}'
+      other: 'inneheldt emneknaggen som ikkje var tillaten: %{tags}'
+    language_detection: Kjenn att språk automatisk
+    open_in_web: Opn på nett
+    over_character_limit: øvregrensa for teikn, %{max}, er nådd
+    pin_errors:
+      limit: Du har allereie festa så mange tut som det går an å festa
+      ownership: Du kan ikkje festa andre sine tut
+      private: Du kan ikkje festa uoffentlege tut
+      reblog: Ei framheving kan ikkje festast
+    poll:
+      total_people:
+        one: "%{count} person"
+        other: "%{count} folk"
+      total_votes:
+        one: "%{count} røyst"
+        other: "%{count} røyster"
+      vote: Røyst
+    show_more: Vis meir
+    sign_in_to_participate: Logg inn for å verta med i samtalen
+    title: "%{name}: «%{quote}»"
+    visibilities:
+      private: Berre fylgjarar
+      private_long: Vis berre til fylgjarar
+      public: Offentleg
+      public_long: Alle kan sjå
+      unlisted: Ikkje oppført
+      unlisted_long: Alle kan sjå, men ikkje oppført på offentlege tidsliner
+  stream_entries:
+    pinned: Festa tut
+    reblogged: framheva
+    sensitive_content: Følsomt innhold
+  tags:
+    does_not_match_previous_name: stemmar ikkje med det førre namnet
+  terms:
+    body_html: |
+      <h2>Privatlivsretningslinjer</h2>
+      <h3 id="collect">Hva slags informasjon samler vi inn?</h3>
+
+      <ul>
+      <li><em>Grunnleggende kontoinformasjon</em>: Dersom du registrerer deg på denne tjeneren, vil du kanskje bli spurt om å skrive inn et brukernavn, en E-postadresse, og et passord. Du kan også skrive inn ytterligere profilinformasjon som f.eks. et visningsnavn og selvbiografi, og laste opp et profilbilde og toppfeltbilde. Brukernavnet, visningsnavnet, selvbiografien, profilbildet, og toppfeltbildet blir alltid vist offentlig.</li>
+      <li><em>Innlegg, følging, og annen offentlig informasjon</em>: Listen over folk du følger blir vist offentlig, det samme gjelder for følgerne dine. Når du sender inn en melding, blir datoen og tidspunktet lagret såvel som programmet du sendte inn meldingen ifra. Meldinger kan inneholde mediavedlegg, som f.eks. bilder og videoer. Offentlige og uoppførte innlegg er offentlig tilgjengelige. Når du viser frem et innlegg på profilen din, er det også offentlig tilgjengelig informasjon. Dinne innlegg blir levert til dine følgere, og i noen tilfeller betyr det at blir levert til forskjellige tjenere og at kopier blir lagret der. Når du sletter innlegg, blir også det levert til dine følgere. Det å fremheve eller like et annet innlegg er alltid offentlig.</li>
+      <li><em>Direkteinnlegg og innlegg som kun er for følgere</em>: Alle innlegg er lagret og behandlet på tjeneren. Innlegg som kun er for følgere, blir levert til dine følgere, og direkteinnlegg leveres kun til brukere som er nevnt i dem. I noen tilfeller betyr det at de blir levert til forskjellige tjenere og at kopier blir lagret der. Vi gjør et forsøk i god sportsånd for å begrense tilgangen til disse innleggene til kun autoriserte personer, men andre tjenere kan mislykkes med sådan. Derfor er det viktig å gå i gjennom tjenerne som følgerne dine hører til i. I innstillingene kan du veksle på en innstilling for å godkjenne og avslå nye følgere manuelt. <em>Vennligst ha i tankene at operatørene til tjeneren og enhver mottakende tjener kan se slike meldinger</em>, og at mottakere kan ta skjermklipp av, kopiere, eller på annet vis dele dem videre. <em>Ikke del noe farlig informasjon over Mastodon.</em></li>
+      <li><em>IP-er og andre metadata</em>: Når du logger på, lagrer vi IP-adressen som du logget deg på fra, såvel som navnet til nettleserprogrammet ditt. Du kan gå gjennom og tilbakekalle alle påloggede økter i innstillingene. Den seneste IP-adressen du brukte, blir lagret i opptil 12 måneder. Vi vil kanskje også holde på tjenerloggføringer som inkluderer IP-adressen til alle forespørsler til tjeneren vår.</li>
+      </ul>
+
+      <hr class="spacer" />
+
+      <h3 id="use">Hva bruker vi informasjonen din til?</h3>
+
+      <p>Hva som helst av informasjonen som vi samler inn fra deg, kan bli brukt på de følgende måtene:</p>
+
+      <ul>
+      <li>Til å levere grunnfunksjonaliteten til Mastodon. Du kan bare samhandle med andre folks innhold og legge ut ditt eget innhold når du er logget på. For eksempel kan du følge andre folk for å se deres kombinerte innlegg i din egen personliggjorte hjemmetidslinje.</li>
+      <li>Til å bistå i moderasjonen av samfunnet, for eksempel å sammenligne IP-adressen din med andre andre kjente adresser for å avgjøre saker om bannlysningsunngåelse eller andre regelbrudd.</li>
+      <li>E-postadressen du oppgir kan bli brukt til å sende deg informasjon, varsler om at andre folk samhandler med innholdet ditt eller sender deg meldinger, og å svare på brukerstøttespørsmål, og/eller andre forespørsler eller spørsmål.</li>
+      </ul>
+
+      <hr class="spacer" />
+
+      <h3 id="protect">Hvordan beskytter vi informasjonen din?</h3>
+
+      <p>Vi implementer en rekke sikkerhetstiltak for å holde på sikkerheten til din personlige informasjon når du skriver inn, sender inn, eller besøker din personlige informasjon. Blant annet er din nettleserøkt, såvel som trafikken mellom dine apper og API-er, sikret med SSL, og passordet ditt er saltet med en kraftig énveisalgoritme. Du kan skru på 2-trinnsinnlogging for å sikre tilgangen til kontoen din ytterligere.</p>
+
+      <hr class="spacer" />
+
+      <h3 id="data-retention">Hva er våre databeholdingsretningslinjer?</h3>
+
+      <p>Vi vil gjøre en innsats i god sportsånd for å</p>
+
+      <ul>
+      <li>Beholde tjenerloggføringer som inneholder IP-adressen til alle forespørsler til denne tjeneren, dersom det blir loggført i det hele tatt, i ikke mer enn 90 dager.</li>
+      <li>Beholde IP-adressene som er forbundet med registrerte brukere i ikke mer enn 12 måneder.</li>
+      </ul>
+
+      <p>Du kan be om og laste ned et arkiv av innholdet ditt, inkludert dine innlegg, media, mediavedlegg, profilbilde, og toppfeltbilde.</p>
+
+      <p>Du kan ugjenkallelig slette kontoen til enhver tid.</p>
+
+      <hr class="spacer"/>
+
+      <h3 id="cookies">Bruker vi infokapsler?</h3>
+
+      <p>Ja. Infokapsler er små filer som et nettsted eller dens tjenesteleverandør overfører til harddisken på datamaskinen din gjennom nettleseren din (dersom du tillater dette). Disse infokapslene lar nettstedet kjenne igjen nettleseren din og, dersom du har en registrert konto, assosiere den med din registrerte konto.</p>
+
+      <p>Vi benytter infokapsler for å forstå og lagre dinne innstillinger til fremtidige besøk.</p>
+
+      <hr class="spacer" />
+
+      <h3 id="disclose">Forteller vi om noe informasjon til utenforstående parter?</h3>
+
+      <p>Vi hverken selger, bytter, eller på andre måter overfører din personlig identifiserbare informasjon til utenforstående parter. Dette inkluderer ikke tredjeparter som vi stoler på og som hjelper oss med å drifte nettstedet vårt, drifte våre forretninger, eller å yte tjenester til deg, så lenge disse partene sier seg enige i å holde denne informasjonen hemmelig. Vi kan også frigi informasjonen vår dersom vi mener et frigiving er passende for å møte loven, handle i tråd med vår nettstedsretningslinjer, eller å beskytte vår eller andres rettigheter, eiendom, eller trygghet.</p>
+
+      <p>Ditt offentlige innhold kan bli lastet ned av andre tjenere i nettverket. Dine offentlige innlegg og innlegg som kun er for følgere blir levert til tjenerne der følgerne dine holder til, og direktemeldinger blir levert il mottakernes tjenere, i den grad de følgerne eller mottakerne holder på en annen tjener enn denne.</p>
+
+      <p>Når du gir et program autorisasjon til å bruke kontoen din, avhengig av omfanget av tillatelser som du tillater, kan den få tilgang til din offentlige profilinformasjon, din følgingsliste, dine følgere, dine lister, alle dine innlegg, og dine likinger. Programmer kan aldri få tilgang til E-postadressen eller passordet ditt.</p>
+
+      <hr class="spacer" />
+
+      <h3 id="children">Nettstedsbruk av barn</h3>
+
+      <p>Dersom denne tjeneren er i EU eller EØS: Vårt nettsted, produkter og tjenester er alle siktet inn mot folk som er minst 16 år gamle. Dersom du er under 16, sier GDPR (<a href="https://en.wikipedia.org/wiki/General_Data_Protection_Regulation">General Data Protection Regulation</a>) at du ikke kan bruke dette nettstedet.</p>
+
+      <p>Dersom denne tjeneren er i USA: Vårt nettsted, produkter og tjenester er alle siktet inn mot folk som er minst 16 år gamle. Dersom du er under 16, sier COPPA (<a href="https://en.wikipedia.org/wiki/Children%27s_Online_Privacy_Protection_Act">Children's Online Privacy Protection Act</a>) at du ikke kan bruke dette nettstedet.</p>
+
+      <p>Lovmessige krav kan være forskjellige dersom denne tjeneren befinner seg i en annen jurisdiksjon.</p>
+
+      <hr class="spacer" />
+
+      <h3 id="changes">Endringer i våre privatlivsretningslinjer</h3>
+
+      <p>Dersom vi bestemmer oss for å endre våre privatlivsretningslinjer, vil vi legge ut endringene på denne siden.</p>
+
+      <p>Dette dokumentet er lisensiert under CC BY-SA. Den engelske originalversjonen ble sist oppdatert den 7. mars 2018. Den norske oversettelsen ble sist oppdatert den 13. desember 2019.</p>
+
+      <p>Opprinnelig modifisert utifra <a href="https://github.com/discourse/discourse">Discourse sine privatlivsretningslinjer</a>.</p>
+    title: Tenestevilkår og personvernsvilkår for %{instance}
+  themes:
+    contrast: Mastodon (Høg kontrast)
+    default: Mastodon (Mørkt)
+    mastodon-light: Mastodon (Lyst)
+  time:
+    formats:
+      default: "%d.%b %Y, %H:%M"
+      month: "%b %Y"
+  two_factor_authentication:
+    code_hint: Skriv inn koden frå autentiseringsappen for å stadfesta
+    description_html: Hvis du skrur på <strong>tofaktorautentisering</strong> må du ha din telefon for å logge inn. Denne vil generere koder som du må taste inn.
+    disable: Slå av
+    enable: Slå på
+    enabled: Tostegsinnlogging er slege på
+    enabled_success: Aktivering av tofaktorautentisering vellykket
+    generate_recovery_codes: Generér gjenopprettingskoder
+    instructions_html: "<strong>Scan denne QR-koden med Google Authenticator eller en lignende app på telefonen din</strong>. Fra nå av vil denne applikasjonen generere koder for deg som skal brukes under innlogging."
+    lost_recovery_codes: Gjenopprettingskoder lar deg gjenoppnå tilgang til din konto hvis du mister din telefon. Hvis du har mistet gjenopprettingskodene, kan du regenerere dem her. Dine gamle gjenopprettingskoder vil bli ugyldige.
+    manual_instructions: 'Hvis du ikke får scannet QR-koden må du skrive inn følgende kode manuelt:'
+    recovery_codes: Reservekoder
+    recovery_codes_regenerated: Generering av reservekoder fullført
+    recovery_instructions_html: Hvis du skulle miste tilgang til telefonen din, kan du bruke en av gjenopprettingskodene nedenfor til å gjenopprette tilgang til din konto. <strong>Oppbevar gjenopprettingskodene sikkert</strong>, for eksempel ved å skrive dem ut og gjemme dem på et lurt sted bare du vet om.
+    setup: Sett opp
+    wrong_code: Den angitte koden var ugyldig! Stemmer instansens tid overalt med enhetens tid?
+  user_mailer:
+    backup_ready:
+      subject: Arkivet ditt er klart til å lastes ned
+    warning:
+      explanation:
+        disable: Mens kontoen din er fryst, forblir dine kontodata intakt, men du kan ikke utføre noen handlinger før den har blitt tint opp.
+        silence: Mens kontoen din er begrenset, vil bare folk som allerede følger deg se dine tuter på denne tjeneren, og du kan bli ekskludert fra diverse offentlige oppføringer. Men andre kan fortsatt følge deg manuelt.
+        suspend: Kontoen din har blitt suspendert, og alle dine tuter og opplastede media har blitt ugjenkallelig fjernet fra denne tjeneren, og fra tjenere der du hadde følgere.
+      get_in_touch: Du kan svare på denne E-posten for å komme i kontakt med styret i %{instance}.
+      statuses: 'Spesifikt for å:'
+      subject:
+        disable: Kontoen din, %{acct}, har blitt fryst
+        none: Ã…tvaring for %{acct}
+        silence: Kontoen din, %{acct}, er vorten avgrensa
+        suspend: Kontoen din, %{acct}, er vorten utvist
+      title:
+        disable: Konto frosen
+        none: Ã…tvaring
+        silence: Konto avgrensa
+        suspend: Konto utvist
+    welcome:
+      edit_profile_action: Lag til profil
+      edit_profile_step: Du kan tilpasse din profil ved å laste opp en avatar, overskrift, endre ditt visningsnavn med mer. Hvis du vil godkjenne hvilke personer som får lov til å følge deg kan du låse kontoen.
+      explanation: Her er nokre tips for å koma i gang
+      final_action: Kom i gang med å leggja ut
+      final_step: 'Byrj å skriva innlegg! Sjølv utan fylgjarar kan andre sjå dei offentlege meldingane dine, til dømes på den lokale tidslina og i emneknaggar. Du har kanskje lyst til å introdusera deg med emneknaggen #introductions.'
+      full_handle: Det fulle brukarnamnet ditt
+      full_handle_hint: Dette er det du fortel venene dine for at dei skal kunna senda deg meldingar eller fylgja deg frå ein annan tenar.
+      review_preferences_action: Endr innstillingar
+      review_preferences_step: Husk å justere dine innstillinger, som hvilke e-poster du ønsker å motta, eller hvor private du ønsker at dine poster skal være som standard. Hvis du ikke har bevegelsessyke kan du skru på automatisk avspilling av GIF-animasjoner.
+      subject: Velkomen til Mastodon
+      tip_federated_timeline: Den forente tidslinjen blir konstant matet med meldinger fra Mastodon-nettverket. Men den inkluderer bare personer dine naboer abbonerer på, så den er ikke komplett.
+      tip_following: Du fylgjer automatisk tenaradministrator(ane). For å finna fleire forvitnelege folk kan du sjekka den lokale og fødererte tidslina.
+      tip_local_timeline: Den lokale tidslinjen blir kontant matet med meldinger fra personer på %{instance}. Dette er dine nærmeste naboer!
+      tip_mobile_webapp: Hvis din mobile nettleser tilbyr deg å legge Mastadon til din hjemmeskjerm kan du motta push-varslinger. Det er nesten som en integrert app på mange måter!
+      tips: Tips
+      title: Velkomen om bord, %{name}!
+  users:
+    follow_limit_reached: Du kan ikkje fylgja fleire enn %{limit} folk
+    invalid_email: E-mailadressa er ugyldig
+    invalid_otp_token: Ugyldig tostegskode
+    signed_in_as: 'Logga inn som:'
+  verification:
+    explanation_html: 'Du kan <strong>bekrefte at du selv er eieren av lenkene i din profilmetadata</strong>. For å gjøre det, må det tillenkede nettstedet inneholde en lenke som fører tilbake til Mastodon-profilen din. Lenken tilbake <strong>må</strong> ha en <code>rel="me"</code>-attributt. Tekstinnholdet til lenken er irrelevant. Her er et eksempel:'
+    verification: Stadfesting
diff --git a/config/locales/no.yml b/config/locales/no.yml
index fa40975a79856508897977d310cd22f734f7a958..51d0eb1bde042ab39b62b5b6f7b385c575a2b283 100644
--- a/config/locales/no.yml
+++ b/config/locales/no.yml
@@ -4,39 +4,102 @@
     about_hashtag_html: Dette er offentlige toots merket med <strong>#%{hashtag}</strong>. Du kan interagere med dem om du har en konto et sted i fediverset.
     about_mastodon_html: Mastodon er et sosialt nettverk laget med <em>fri programvare</em>. Et <em>desentralisert</em> alternativ til kommersielle plattformer. Slik kan det unngå risikoene ved å ha et enkelt selskap som monopoliserer din kommunikasjon. Velg en tjener du stoler på &mdash; uansett hvilken du velger så kan du kommunisere med alle andre. Alle kan kjøre sin egen Mastodon og delta sømløst i det sosiale nettverket.
     about_this: Om denne instansen
+    active_count_after: aktive
+    active_footnote: MÃ¥nedlige aktive brukere (MAU)
+    administered_by: 'Administrert av:'
+    api: API
+    apps: Mobilapper
+    apps_platforms: Bruk Mastodon gjennom iOS, Android og andre plattformer
+    browse_directory: Bla gjennom en profilmappe og filtrer etter interesser
+    browse_local_posts: Bla i en sanntidsstrøm av offentlige innlegg fra denne tjeneren
+    browse_public_posts: Bla i en sanntidsstrøm av offentlige innlegg på Mastodon
     contact: Kontakt
     contact_missing: Ikke innstilt
     contact_unavailable: Ikke tilgjengelig
+    discover_users: Oppdag brukere
+    documentation: Dokumentasjon
+    federation_hint_html: Med en konto på %{instance} vil du kunne følge folk på enhver Mastodon-tjener, og mer til.
+    get_apps: Prøv en mobilapp
     hosted_on: Mastodon driftet på %{domain}
     learn_more: Lær mer
+    privacy_policy: Privatlivsretningslinjer
+    see_whats_happening: Se hva som skjer
+    server_stats: 'Tjenerstatistikker:'
     source_code: Kildekode
+    status_count_after:
+      one: status
+      other: statuser
     status_count_before: Som skrev
+    tagline: Følg venner og oppdag nye
+    terms: Bruksvilkår
+    unavailable_content: Utilgjengelig innhold
+    unavailable_content_description:
+      domain: Tjener
+      reason: Ã…rsak
+      rejecting_media: 'Mediafiler fra disse tjenerne vil ikke bli behandlet eller lagret, og ingen miniatyrbilder vil bli vist, noe som vil kreve manuell klikking for å besøke den opprinnelige filen:'
+      silenced: 'Innlegg fra disse tjenerne vil bli skjult fra offentlige tidslinjer og samtaler, og ingen varslinger vil bli generert fra disse brukernes samhandlinger, med mindre du følger dem:'
+      suspended: 'Ingen data fra disse tjenerne vil bli behandlet, lagret, eller utvekslet, noe som vil gjøre enhver samhandling eller kommunikasjon med brukere fra disse tjenerne umulig:'
+    unavailable_content_html: Mastodon lar deg vanligvis se innhold fra og samhandle med brukere fra enhver annen tjener i strømiverset. Dette er unntakene som har blitt gjort på denne spesifikke tjeneren.
+    user_count_after:
+      one: bruker
+      other: brukere
     user_count_before: Her bor
     what_is_mastodon: Hva er Mastodon?
   accounts:
+    choices_html: "%{name} sine anbefalte:"
     follow: Følg
+    followers:
+      one: Følger
+      other: Følgere
     following: Følger
+    joined: Ble med den %{date}
+    last_active: senest aktiv
+    media: Media
     moved_html: "%{name} har flyttet til %{new_profile_link}:"
+    network_hidden: Denne informasjonen er ikke tilgjengelig
+    never_active: Aldri
     nothing_here: Det er ingenting her!
     people_followed_by: Folk som %{name} følger
     people_who_follow: Folk som følger %{name}
+    posts:
+      one: Tut
+      other: Tuter
+    posts_tab_heading: Tuter
     posts_with_replies: Tuter med svar
     reserved_username: Brukernavnet er reservert
     roles:
+      admin: Administrator
+      bot: Bot
+      group: Gruppe
       moderator: Moderere
-    unfollow: Slutte følge
+    unavailable: Profilen er utilgjengelig
+    unfollow: Slutt å følge
   admin:
+    account_actions:
+      action: Utfør handling
+      title: Utfør moderatorhandling på %{acct}
     account_moderation_notes:
       create: Lag
       created_msg: Moderasjonsnotat laget uten problem!
       delete: Slett
       destroyed_msg: Moderasjonsnotat slettet uten problem!
     accounts:
+      approve: Godkjenn
+      approve_all: Godkjenn alle
       are_you_sure: Er du sikker?
+      avatar: Profilbilde
       by_domain: Domene
+      change_email:
+        changed_msg: Konto-E-postadressen ble vellykket endret!
+        current_email: Nåværende E-post
+        label: Endre e-post
+        new_email: Ny E-post
+        submit: Endre e-post
+        title: Endre E-postadressen til %{username}
       confirm: Bekreft
       confirmed: Bekreftet
       confirming: Bekrefte
+      deleted: Slettet
       demote: Degrader
       disable: Deaktiver
       disable_two_factor_authentication: Skru av 2FA
@@ -48,12 +111,13 @@
       email_status: E-poststatus
       enable: Aktiver
       enabled: Aktivert
-      feed_url: Feed-URL
       followers: Følgere
-      followers_url: Følgere URL
       follows: Følginger
+      header: Overskrift
       inbox_url: Innboks URL
+      invited_by: Invitert av
       ip: IP-adresse
+      joined: Ble med den
       location:
         all: Alle
         local: Lokalt
@@ -63,22 +127,28 @@
       media_attachments: Mediavedlegg
       memorialize: Gjør om til et minne
       moderation:
+        active: Aktive
         all: Alle
+        pending: Avventer
         silenced: MÃ¥lbundet
         suspended: Utvist
         title: Moderasjon
       moderation_notes: Moderasjonsnotater
       most_recent_activity: Nyligste aktivitet
       most_recent_ip: Nyligste IP
+      no_limits_imposed: Ingen grenser er tatt i bruk
       not_subscribed: Ikke abonnért
-      outbox_url: Utboks URL
+      pending: Avventer gjennomgang
       perform_full_suspension: Utfør full utvisning
-      profile_url: Profil-URL
       promote: Oppgradere
       protocol: Protokoll
       public: Offentlig
       push_subscription_expires: PuSH-abonnent utløper
       redownload: Oppdater avatar
+      reject: Avslå
+      reject_all: Avslå alle
+      remove_avatar: Fjern profilbilde
+      remove_header: Fjern overskrift
       resend_confirmation:
         already_confirmed: Denne brukeren er allerede bekreftet
         send: Send bekreftelses-epost på nytt
@@ -88,29 +158,41 @@
       resubscribe: Abonner på nytt
       role: Rettigheter
       roles:
+        admin: Administrator
+        moderator: Moderator
         staff: Personale
         user: Bruker
-      salmon_url: Salmon-URL
       search: Søk
+      search_same_ip: Andre brukere med den samme IP-en
       shared_inbox_url: Delt Innboks URL
       show:
         created_reports: Rapporter laget av denne kontoen
         targeted_reports: Rapporter laget om denne kontoen
       silence: MÃ¥lbind
+      silenced: Stilnet
       statuses: Statuser
       subscribe: Abonnere
+      suspended: Suspendert
       title: Kontoer
+      unconfirmed_email: Ubekreftet E-postadresse
       undo_silenced: Angre målbinding
       undo_suspension: Angre utvisning
-      unsubscribe: Avslutte abonnementet
+      unsubscribe: Avslutt abonnementet
       username: Brukernavn
+      warn: Advar
+      web: Nett
+      whitelisted: Hvitelistet
     action_logs:
       actions:
         confirm_user: "%{name} bekreftet e-postadresse for bruker %{target}"
+        create_account_warning: "%{name} sendte en advarsel til %{target}"
         create_custom_emoji: "%{name} lastet opp ny emoji %{target}"
+        create_domain_allow: "%{name} hvitelistet domenet %{target}"
         create_domain_block: "%{name} blokkerte domenet %{target}"
         create_email_domain_block: "%{name} svartelistet e-postdomenet %{target}"
         demote_user: "%{name} degraderte bruker %{target}"
+        destroy_custom_emoji: "%{name} ødela emojien %{target}"
+        destroy_domain_allow: "%{name} fjernet domenet %{target} fra hvitelisten"
         destroy_domain_block: "%{name} fjernet blokkeringen av domenet %{target}"
         destroy_email_domain_block: "%{name} hvitelistet e-postdomenet %{target}"
         destroy_status: "%{name} fjernet status av %{target}"
@@ -121,6 +203,8 @@
         enable_user: "%{name} aktiverte innlogging for bruker %{target}"
         memorialize_account: "%{name} endret %{target}s konto til en minneside"
         promote_user: "%{name} oppgraderte bruker %{target}"
+        remove_avatar_user: "%{name} fjernet %{target} sitt profilbilde"
+        reopen_report: "%{name} gjenåpnet rapporten %{target}"
         reset_password_user: "%{name} nullstilte passordet til bruker %{target}"
         resolve_report: "%{name} avviste rapporten %{target}"
         silence_account: "%{name} forstummet %{target}s konto"
@@ -129,20 +213,27 @@
         unsuspend_account: "%{name} opphevde suspenderingen av %{target}s konto"
         update_custom_emoji: "%{name} oppdaterte emoji %{target}"
         update_status: "%{name} oppdaterte status for %{target}"
+      deleted_status: "(statusen er slettet)"
       title: Revisionslogg
     custom_emojis:
+      assign_category: Tilegn kategori
       by_domain: Domene
       copied_msg: Laget en lokal kopi av emoji uten problem
       copy: Kopiere
       copy_failed_msg: Kunne ikke lage en lokal kopi av den emojien
+      create_new_category: Opprett ny kategori
       created_msg: Emoji laget uten problem!
       delete: Slett
       destroyed_msg: Emojo slettet uten problem!
       disable: Deaktivere
+      disabled: Skrudd av
       disabled_msg: Deaktiverte emoji uten problem
+      emoji: Emoji
       enable: Aktivere
+      enabled: Skrudd på
       enabled_msg: Aktiverte emojien uten problem
       image_hint: PNG opp til 50KB
+      list: Før opp
       listed: Oppførte
       new:
         title: Legg til ny egen emoji
@@ -150,15 +241,43 @@
       shortcode: Kortkode
       shortcode_hint: Minst 2 tegn, kun alfanumeriske tegn og understrek
       title: Egenoppførte emojier
+      uncategorized: Ukategorisert
+      unlist: Fjern oppføring
       unlisted: Unoterte
       update_failed_msg: Kunne ikke oppdatere emojien
       updated_msg: Emoji oppdatert uten problemer!
       upload: Last opp
+    dashboard:
+      authorized_fetch_mode: Sikkermodus
+      config: Oppsett
+      feature_deletions: Kontoslettinger
+      feature_invites: Invitasjonslenker
+      feature_profile_directory: Profilmappe
+      feature_registrations: Registreringer
+      feature_spam_check: Anti-spam
+      feature_timeline_preview: Tidslinje-forhåndsvisning
+      features: Egenskaper
+      open_reports: åpne rapporter
+      recent_users: Nylige brukere
+      search: Fulltekstsøk
+      software: Programvare
+      space: Plassbruk
+      title: Kontrollpanel
+      total_users: brukere totalt
+      trends: Trender
+      week_interactions: samhandlinger denne uken
+      week_users_active: aktiv denne uken
+      week_users_new: brukere denne uken
+      whitelist_mode: Hvitelistemodus
+    domain_allows:
+      add_new: Hvitelist domene
+      undo: Fjern fra hvitelisten
     domain_blocks:
       add_new: Lag ny
       created_msg: Domeneblokkering blir nå behandlet
       destroyed_msg: Domeneblokkering har nå blitt angret
       domain: Domene
+      existing_domain_block_html: Du har allerede pålagt strengere begrensninger på %{name}, du kan være nødt til <a href="%{unblock_url}">oppheve blokkeringen av den</a> først.
       new:
         create: Lag blokkering
         hint: Domeneblokkeringen vil ikke hindre opprettelse av kontooppføringer i databasen, men vil retroaktivt og automatisk benytte spesifikke moderasjonsmetoder på de kontoene.
@@ -168,8 +287,16 @@
           silence: MÃ¥lbind
           suspend: Utvis
         title: Ny domeneblokkering
+      private_comment: Privat kommentar
+      public_comment: Offentlig kommentar
       reject_media: Avvis mediefiler
       reject_media_hint: Fjerner lokalt lagrede mediefiler og nekter å laste dem ned i fremtiden. Irrelevant for utvisninger
+      reject_reports: Avslå rapporter
+      rejecting_media: avviser mediafiler
+      rejecting_reports: avslår rapporter
+      severity:
+        silence: stilnet
+        suspend: suspendert
       show:
         affected_accounts:
           one: En konto i databasen påvirket
@@ -190,26 +317,79 @@
         create: Legg til domene
         title: Ny blokkeringsoppføring av e-postdomene
       title: Blokkering av e-postdomene
+    followers:
+      back_to_account: Tilbake til kontoen
+      title: "%{acct} sine følgere"
     instances:
+      by_domain: Domene
+      delivery_available: Levering er tilgjengelig
+      known_accounts:
+        one: "%{count} kjent konto"
+        other: "%{count} kjente kontoer"
+      moderation:
+        all: Alt
+        limited: Begrenset
+        title: Moderasjon
+      private_comment: Privat kommentar
+      public_comment: Offentlig kommentar
       title: Kjente instanser
+      total_blocked_by_us: Blokkert av oss
+      total_followed_by_them: Fulgt av dem
+      total_followed_by_us: Fulgt av oss
+      total_reported: Rapporter om dem
+      total_storage: Mediavedlegg
     invites:
+      deactivate_all: Deaktiver alle
       filter:
         all: Alle
         available: Tilgjengelig
         expired: Utløpt
+        title: Filtrer
       title: Invitasjoner
+    relays:
+      add_new: Legg til ny overgang
+      delete: Slett
+      disable: Skru av
+      disabled: Skrudd av
+      enable: Skru på
+      enable_hint: Når dette har blitt skrudd på, vil tjeneren din abonnere på alle offentlige tuter fra denne overgangen, og vil begynne å sende denne tjenerens offentlige tuter til den.
+      enabled: Skrudd på
+      inbox_url: Overførings-URL
+      save_and_enable: Lagre og skru på
+      setup: Sett opp en overgangsforbindelse
+      signatures_not_enabled: Overganger vil ikke fungere riktig mens sikkermodus eller hvitelistingsmodus er skrudd på
+      status: Status
+      title: Overganger
     reports:
+      account:
+        notes:
+          one: "%{count} notis"
+          other: "%{count} notiser"
+        reports:
+          one: "%{count} rapport"
+          other: "%{count} rapporter"
       action_taken_by: Handling utført av
       are_you_sure: Er du sikker?
+      assign_to_self: Tilegn til meg
+      assigned: Tilegnet moderator
       comment:
         none: Ingen
+      created_at: Rapportert
       mark_as_resolved: Merk som løst
-      report: 'Rapportér #%{id}'
+      mark_as_unresolved: Merk som uoppklart
+      notes:
+        create: Legg til notat
+        delete: Slett
+      reopen: Gjenåpne rapporten
+      report: 'Rapporter #%{id}'
       reported_account: Rapportert konto
       reported_by: Rapportert av
       resolved: Løst
+      status: Status
       title: Rapporter
+      unassign: Fjern tilegning
       unresolved: Uløst
+      updated_at: Oppdatert
     settings:
       activity_api_enabled:
         desc_html: Antall lokale statusposter, aktive brukere og nye registreringer i ukentlige oppdelinger
@@ -220,9 +400,27 @@
       contact_information:
         email: Skriv en offentlig e-postadresse
         username: Skriv brukernavn
+      custom_css:
+        title: Egendefinert CSS
+      domain_blocks:
+        all: Til alle
+        disabled: Til ingen
+        title: Vis domeneblokkeringer
+      domain_blocks_rationale:
+        title: Vis grunnlaget
+      hero:
+        desc_html: Vises på forsiden. Minst 600×100px er anbefalt. Dersom dette ikke er valgt, faller det tilbake på tjenerens miniatyrbilde
+        title: Heltebilde
+      mascot:
+        desc_html: Vist på flere sider. Minst 293×205px er anbefalt. Dersom det ikke er valgt, faller det tilbake til standardmaskoten
+        title: Maskotbilde
       peers_api_enabled:
         desc_html: Domenenavn denne instansen har truffet på i fediverset
         title: Publiser liste over oppdagede instanser
+      preview_sensitive_media:
+        desc_html: Lenkeforhåndsvisninger på andre nettsteder vil vise et miniatyrbilde selv dersom mediet er merket som sensitivt
+      profile_directory:
+        title: Skru på profilmappen
       registrations:
         closed_message:
           desc_html: Vises på forsiden når registreringer er lukket<br>Du kan bruke HTML-tagger
@@ -242,10 +440,16 @@
       site_description_extended:
         desc_html: Vises på side for utvidet informasjon.<br>Du kan bruke HTML-tagger
         title: Utvidet nettstedsinformasjon
+      site_short_description:
+        desc_html: Vist i sidelinjen og i metastempler. Beskriv hva Mastodon er og hva som gjør denne tjeneren spesiell i én enkelt paragraf.
+        title: Kort tjenerbeskrivelse
       site_terms:
         desc_html: Du kan skrive din egen personverns-strategi, bruksviklår og andre regler. Du kan bruke HTML tagger
         title: Skreddersydde bruksvilkår
       site_title: Nettstedstittel
+      spam_check_enabled:
+        desc_html: Mastodon kan auto-rapportere kontoer som sender gjentatte uforespurte meldinger. Det kan oppstå falske positive treff.
+        title: Anti-spam-automatisering
       thumbnail:
         desc_html: Brukes ved forhandsvisning via OpenGraph og API. 1200x630px anbefales
         title: Miniatyrbilde for instans
@@ -253,23 +457,62 @@
         desc_html: Vis offentlig tidslinje på landingssiden
         title: Forhandsvis tidslinjen
       title: Nettstedsinnstillinger
+      trends:
+        title: Trendende emneknagger
     statuses:
       back_to_account: Tilbake til kontosiden
       batch:
         delete: Slett
         nsfw_off: NSFW AV
         nsfw_on: NSFW PÃ…
+      deleted: Slettet
       failed_to_execute: Utføring mislyktes
+      media:
+        title: Media
       no_media: Ingen media
       title: Kontostatuser
       with_media: Med media
+    tags:
+      accounts_week: Unike brukstilfeller denne uken
+      context: Sammenheng
+      directory: I mappen
+      in_directory: "%{count} i mappen"
+      last_active: Senest aktiv
+      most_popular: Mest populært
+      most_recent: Nyligst
+      name: Emneknagg
+      review: Gjennomgangsstatus
+      reviewed: Gjennomgått
+      title: Emneknagger
+      trending_right_now: Trender akkurat nå
+      unique_uses_today: "%{count} legger ut om det i dag"
+      unreviewed: Ikke gjennomgått
     title: Administrasjon
+    warning_presets:
+      add_new: Legg til ny
+      delete: Slett
+      edit: Rediger
   admin_mailer:
     new_report:
       body: "%{reporter} har rapportert %{target}"
       subject: Ny rapport for %{instance} (#%{id})
+    new_trending_tag:
+      body: 'Emneknaggen #%{name} trender i dag, men den har ikke blitt gjennomgått tidligere. Den vil ikke bli vist offentlig med mindre du tillater at den blir det, eller du kan bare lagre skjemaet slik det er for å aldri høre om det igjen.'
+  aliases:
+    add_new: Lag et alias
+    hint_html: Dersom du vil flytte fra en annen konto til den, kan du lage et alias her, som er påkrevd før du kan gå videre med å flytte følgere fra den gamle kontoen til den nye. Handlingen i seg selv er <strong>harmløs og reversibel</strong>. <strong>Kontoflyttingen har blitt satt i gang fra den gamle kontoen</strong>.
+    remove: Fjern aliaslenking
+  appearance:
+    advanced_web_interface: Avansert nettgrensesnitt
+    advanced_web_interface_hint: 'Hvis du ønsker å bruke hele skjermbredden din, lar det avanserte nettgrensesnittet deg sette opp mange forskjellige kolonner for å se så mye informasjon på én gang som du vil: Hjem, varslinger, fellestidslinjen, og ethvert antall lister og emneknagger.'
+    animations_and_accessibility: Animasjoner og tilgjengelighet
+    confirmation_dialogs: Bekreftelsesdialoger
+    discovery: Oppdagelse
+    sensitive_content: Sensitivt innhold
+    toot_layout: Tut-utseende
   application_mailer:
-    notification_preferences: Endre e-post innstillingene
+    notification_preferences: Endre E-postinnstillingene
+    salutation: "%{name},"
     settings: 'Endre foretrukne e-postinnstillinger: %{link}'
     view: 'Se:'
     view_profile: Vis Profil
@@ -283,20 +526,40 @@
     warning: Vær veldig forsiktig med denne data. Aldri del den med noen!
     your_token: Din tilgangsnøkkel
   auth:
+    apply_for_account: Be om en invitasjon
+    change_password: Passord
+    checkbox_agreement_html: Jeg godtar <a href="%{rules_path}" target="_blank">tjenerens regler</a> og <a href="%{terms_path}" target="_blank">bruksvilkår</a>
+    checkbox_agreement_without_rules_html: Jeg godtar <a href="%{terms_path}" target="_blank">bruksvilkårene</a>
     delete_account: Slett konto
-    delete_account_html: Hvis du ønsker å slette din konto kan du <a href="%{path}">fortsette her</a>. Du vil bli spurt om bekreftelse.
+    delete_account_html: Hvis du ønsker å slette kontoen din, kan du <a href="%{path}">gå hit</a>. Du vil bli spurt om bekreftelse.
+    description:
+      prefix_sign_up: Meld deg opp på Mastodon i dag!
+      suffix: Med en konto, vil kunne følge folk, legge ut oppdateringer, og utveksle meldinger med brukere fra enhver Mastodon-tjener, og mer til!
     didnt_get_confirmation: Mottok du ikke instruksjoner om bekreftelse?
     forgot_password: Har du glemt passordet ditt?
     invalid_reset_password_token: Tilbakestillingsnøkkelen for passord er ugyldig eller utløpt. Vennligst be om en ny.
-    login: Innlogging
+    login: Logg på
     logout: Logg ut
     migrate_account: Flytt til en annen konto
     migrate_account_html: Hvis du ønsker å henvise denne kontoen til en annen, kan du <a href="%{path}">konfigurere det her</a>.
+    or_log_in_with: Eller logg på med
+    providers:
+      cas: CAS
+      saml: SAML
     register: Bli med
     resend_confirmation: Send bekreftelsesinstruksjoner på nytt
     reset_password: Nullstill passord
     security: Sikkerhet
     set_new_password: Sett nytt passord
+    setup:
+      email_below_hint_html: Dersom E-postadressen nedenfor er feil, kan du endre det her og motta en ny bekreftelses-E-post.
+      email_settings_hint_html: Bekreftelses-E-posten ble sendt til %{email}. Dersom den E-postadressen ikke var riktig, kan du endre den i kontoinnstillingene.
+      title: Innstillinger
+    status:
+      account_status: Kontostatus
+      functional: Kontoen din er fullt operativt.
+      pending: Søknaden din avventer gjennomgang av styret vårt. Dette kan ta litt tid. Du vil motta en E-post dersom søknaden din blir godkjent.
+    trouble_logging_in: Har du problemer med å logge på?
   authorize_follow:
     error: Uheldigvis skjedde det en feil da vi prøvde å få tak i en bruker fra en annen instans
     follow: Følg
@@ -307,6 +570,10 @@
       return: GÃ¥ tilbake til brukerens profil
       web: GÃ¥ til nettsiden
     title: Følg %{acct}
+  challenge:
+    confirm: Fortsett
+    invalid_password: Ugyldig passord
+    prompt: Bekreft passordet for å fortsette
   datetime:
     distance_in_words:
       about_x_hours: "%{count} timer"
@@ -323,8 +590,26 @@
       x_seconds: "%{count} sek"
   deletes:
     confirm_password: Skriv inn ditt passord for å verifisere din identitet
+    confirm_username: Skriv inn brukernavnet ditt for å bekrefte prosedyren
     proceed: Slett konto
     success_msg: Din konto ble slettet
+    warning:
+      before: 'Før du fortsetter, vennligst les disse notisene nøye:'
+      caches: Innhold som har blitt mellomlagret av andre tjenere kan kanskje fortsette å eksistere
+      data_removal: Dine innlegg og andre data vil bli permanent fjernet
+      email_change_html: Du kan <a href="%{path}">endre E-postadressen din</a> uten å måtte slette kontoen din
+      email_contact_html: Dersom det fortsatt ikke kommer, kan du sende en E-post til <a href="mailto:%{email}">%{email}</a> og be om hjelp
+      email_reconfirmation_html: Dersom du ikke mottar bekreftelses-E-posten, kan du <a href="%{path}">be om den igjen</a>
+      irreversible: Du vil ikke kunne gjenopprette eller reaktivere kontoen din
+      more_details_html: For mere detaljer, se <a href="%{terms_path}">privatlivsretningslinjene</a>.
+      username_available: Brukernavnet ditt vil bli gjort tilgjengelig igjen
+      username_unavailable: Brukernavnet ditt vil forbli utilgjengelig
+  directories:
+    directory: Profilmappe
+    explanation: Oppdag brukere basert på deres interesser
+    explore_mastodon: Utforsk %{title}
+  domain_validator:
+    invalid_domain: er ikke et gyldig domenenavn
   errors:
     '400': The request you submitted was invalid or malformed.
     '403': Du har ikke tillatelse til å vise denne siden.
@@ -340,22 +625,75 @@
       title: Denne siden er ikke korrekt
     '503': The page could not be served due to a temporary server failure.
     noscript_html: For å bruke Mastodon webapplikasjon må du aktivere JavaScript. Alternativt kan du forsøke en av de mange <a href="%{apps_path}">integrerte appene</a> for Mastodon til din plattform.
+  existing_username_validator:
+    not_found_multiple: klarte ikke å finne %{usernames}
   exports:
+    archive_takeout:
+      date: Dato
+      download: Last ned arkivet ditt
+      hint_html: Du kan be om et arkiv med dine <strong>tuter og opplastede media</strong>. Den eksporterte dataen vil være i ActivityPub-formatet, som kan leses av programmer som støtter det. Du kan be om et arkiv opptil hver 7. dag.
+      request: Be om ditt arkiv
+      size: Størrelse
     blocks: Du blokkerer
-    follows: Du følger
+    csv: CSV
+    domain_blocks: Domeneblokkeringer
+    lists: Lister
     mutes: Du demper
     storage: Medialagring
+  featured_tags:
+    add_new: Legg til ny
+    hint_html: "<strong>Hva er utvalgte emneknagger?</strong> De vises frem tydelig på din offentlige profil, og lar folk bla i dine offentlige innlegg som spesifikt har de emneknaggene. De er et bra verktøy for å holde styr på kreative verk eller langtidsprosjekter."
+  filters:
+    contexts:
+      home: Hjemmetidslinje
+      notifications: Varslinger
+      public: Offentlige tidslinjer
+      thread: Samtaler
+    edit:
+      title: Rediger filter
+    index:
+      delete: Slett
+      title: Filtre
+    new:
+      title: Legg til nytt filter
+  footer:
+    developers: Utviklere
+    more: Mer…
+    resources: Ressurser
+    trending_now: Trender nå
   generic:
+    all: Alle
     changes_saved_msg: Vellykket lagring av endringer!
+    copy: Kopier
+    order_by: Sorter etter
     save_changes: Lagre endringer
     validation_errors:
       one: Noe er ikke helt riktig ennå. Vennligst se etter en gang til
       other: Noe er ikke helt riktig ennå. Det er ennå %{count} feil å rette på
+  identity_proofs:
+    active: Aktive
+    authorize: Ja, autoriser
+    errors:
+      keybase:
+        verification_failed: Keybase kjenner ikke igjen denne sjetongen som en signatur for Keybase-brukeren %{kb_username}. Vennligst prøv igjen gjennom Keybase.
+      wrong_user: Kan ikke lage et bevis for %{proving} mens du er logget på som %{current}. Logg på som %{proving} og prøv igjen.
+    explanation_html: Her kan du kryptografisk koble til dine andre enheter, f.eks. en Keybase-profil. Dette lar andre folk sende deg krypterte meldinger og stole på innhold som du sender dem.
+    i_am_html: Jeg er %{username} på %{service}.
+    identity: Identitet
+    inactive: Inaktive
+    publicize_checkbox: 'Og tut ut dette:'
+    publicize_toot: 'Det er bevist! Jeg er %{username} på %{service}: %{url}'
+    status: Verifiseringsstatus
+    view_proof: Se bevis
   imports:
+    modes:
+      merge: Slå sammen
+      overwrite: Overskriv
     preface: Du kan importere data om brukere du følger eller blokkerer til kontoen din på denne instansen med eksportfiler fra andre instanser.
     success: Dine data ble mottatt og vil bli behandlet så fort som mulig
     types:
       blocking: Blokkeringsliste
+      domain_blocking: Domeneblokkeringsliste
       following: Følgeliste
       muting: Dempeliste
     upload: Opplastning
@@ -368,12 +706,13 @@
       '21600': 6 timer
       '3600': 1 time
       '43200': 12 timer
-      '604800': 1 week
+      '604800': 1 uke
       '86400': 1 dag
     expires_in_prompt: Aldri
     generate: Generer
+    invited_by: 'Du ble invitert av:'
     max_uses:
-      one: 1 uke
+      one: 1 bruk
       other: "%{count} bruk"
     max_uses_prompt: Ubegrenset
     prompt: Generer og del lenker med andre for å gi tilgang til denne instansen
@@ -390,6 +729,19 @@
       too_many: Kan ikke legge ved mer enn 4 filer
   migrations:
     acct: brukernavn@domene til den nye kontoen
+    cancel: Avbryt omdirigeringen
+    cancel_explanation: Å avbryte omdirigeringen vil reaktivere din nåværende konto, men vil ikke bringe tilbake følgere som har blitt flyttet til den kontoen.
+    errors:
+      move_to_self: kan ikke være den nåværende kontoen
+      not_found: ble ikke funnet
+    incoming_migrations: Flytte fra en annen konto
+    incoming_migrations_html: For å flytte fra en annen konto til denne, må du først <a href="%{path}">sette opp et kontoalias</a>.
+    past_migrations: Tidligere migreringer
+    proceed_with_move: Flytt følgere
+    set_redirect: Bestem omdirigering
+    warning:
+      before: 'Før du fortsetter, vennligst les disse notisene nøye:'
+      disabled_account: Din nåværende konto vil ikke være fullt brukbar etterpå. Men du vil ha tilgang til dataeksportering såvel som reaktivering.
   moderation:
     title: Moderasjon
   notification_mailer:
@@ -426,43 +778,143 @@
       body: 'Din status ble fremhevd av %{name}:'
       subject: "%{name} fremhevde din status"
       title: Ny fremheving
+  notifications:
+    email_events: E-postvarslinger for hendelser
+    email_events_hint: 'Velg hendelser som du vil motta varslinger for:'
+    other_settings: Andre varslingsinnstillinger
+  number:
+    human:
+      decimal_units:
+        format: "%n %u"
+        units:
+          billion: Mrd
+          million: Mln
+          quadrillion: Kvd
+          thousand: T
+          trillion: Trl
   pagination:
+    newer: Nyere
     next: Neste
+    older: Eldre
     prev: Forrige
+    truncate: "&hellip;"
+  polls:
+    errors:
+      already_voted: Du har allerede stemt i denne avstemningen
+      duration_too_long: er for langt frem i tid
+      duration_too_short: er for snart
+      expired: Denne avstemningen er allerede ferdig
+      too_few_options: må ha mer enn én gjenstand
+      too_many_options: kan ikke ha mer enn %{max} gjenstander
   preferences:
     other: Annet
+    posting_defaults: Innleggsstandarder
+    public_timelines: Offentlige tidslinjer
+  relationships:
+    activity: Kontoaktivitet
+    dormant: Dormende
+    followers: Følgere
+    following: Følginger
+    last_active: Senest aktiv
+    most_recent: Nyligst
+    moved: Flyttet
+    mutual: Gjensidig
+    primary: Primær
+    relationship: Forhold
+    remove_selected_domains: Fjern alle følgere fra de valgte domenene
+    remove_selected_followers: Fjern de valgte følgerne
+    remove_selected_follows: Avfølg de valgte brukerne
+    status: Kontostatus
   remote_follow:
     acct: Tast inn brukernavn@domene som du vil følge fra
     missing_resource: Kunne ikke finne URLen for din konto
+    no_account_html: Har du ikke en konto? Da kan du <a href='%{sign_up_path}' target='_blank'>lage en konto her</a>
     proceed: Fortsett med følging
     prompt: 'Du vil følge:'
+    reason_html: "<strong>Hvorfor dette trinnet er nødvendig?</strong><code>%{instance}</code> er kanskje ikke tjeneren som du er registrert på, så vi må omdirigere deg til hjemmetjeneren din først."
+  remote_interaction:
+    favourite:
+      proceed: Fortsett til likingen
+      prompt: 'Du ønsker å like denne tuten:'
+    reblog:
+      proceed: Fortsett til fremhevingen
+      prompt: 'Du ønsker å fremheve denne tuten:'
+    reply:
+      proceed: Fortsett til svaret
+      prompt: 'Du ønsker å svare på denne tuten:'
   sessions:
     activity: Siste aktivitet
     browser: Nettleser
     browsers:
+      alipay: AliPay
+      blackberry: BlackBerry
+      chrome: Chrome
+      edge: Microsoft Edge
+      electron: Electron
+      firefox: Firefox
       generic: Ukjent nettleser
+      ie: Internet Explorer
+      micro_messenger: MicroMessenger
+      nokia: Nokia S40 Ovi-nettleser
+      opera: Opera
+      otter: Otter
+      phantom_js: PhantomJS
+      qq: QQ Browser
+      safari: Safari
+      uc_browser: UC Browser
+      weibo: Weibo
     current_session: Nåværende økt
     description: "%{browser} på %{platform}"
-    explanation: Dette er nettlesere innlogget på din Mastodon-konto akkurat nå.
+    explanation: Dette er nettlesere som er pålogget på din Mastodon-konto akkurat nå.
     ip: IP-adresse
     platforms:
+      adobe_air: Adobe Air
+      android: Android
+      blackberry: BlackBerry
+      chrome_os: Chrome OS
+      firefox_os: Firefox OS
+      ios: iOS
+      linux: Linux
+      mac: macOS
       other: ukjent plattform
+      windows: Windows
+      windows_mobile: Windows Mobile
+      windows_phone: Windows Phone
     revoke: Tilbakekall
     revoke_success: Økt tilbakekalt
     title: Økter
   settings:
+    account: Konto
+    account_settings: Kontoinnstillinger
+    aliases: Kontoaliaser
+    appearance: Utseende
     authorized_apps: Autoriserte applikasjoner
     back: Tilbake til Mastodon
     delete: Kontosletting
     development: Utvikling
     edit_profile: Endre profil
     export: Dataeksport
+    featured_tags: Utvalgte emneknagger
+    identity_proofs: Identitetsbevis
     import: Importér
+    import_and_export: Importer og eksporter
     migrate: Kontomigrering
     notifications: Varslinger
     preferences: Preferanser
+    profile: Profil
+    relationships: Følginger og følgere
     two_factor_authentication: Tofaktorautentisering
   statuses:
+    attached:
+      description: 'Vedlagt: %{attached}'
+      image:
+        one: "%{count} bilde"
+        other: "%{count} bilder"
+      video:
+        one: "%{count} video"
+        other: "%{count} videoer"
+    content_warning: 'Innholdsadvarsel: %{warning}'
+    language_detection: Oppdag språk automatisk
     open_in_web: Ã…pne i nettleser
     over_character_limit: grense på %{max} tegn overskredet
     pin_errors:
@@ -470,7 +922,16 @@
       ownership: Kun egne tuter kan festes
       private: Kun offentlige tuter kan festes
       reblog: En fremheving kan ikke festes
+    poll:
+      total_people:
+        one: "%{count} person"
+        other: "%{count} personer"
+      total_votes:
+        one: "%{count} stemme"
+        other: "%{count} stemmer"
+      vote: Stem
     show_more: Vis mer
+    title: "%{name}: «%{quote}»"
     visibilities:
       private: Privat
       private_long: Synlig kun for følgere
@@ -482,13 +943,99 @@
     pinned: Festet tut
     reblogged: fremhevde
     sensitive_content: Følsomt innhold
+  tags:
+    does_not_match_previous_name: samsvarer ikke med det forrige navnet
   terms:
+    body_html: |
+      <h2>Privatlivsretningslinjer</h2>
+      <h3 id="collect">Hva slags informasjon samler vi inn?</h3>
+
+      <ul>
+      <li><em>Grunnleggende kontoinformasjon</em>: Dersom du registrerer deg på denne tjeneren, vil du kanskje bli spurt om å skrive inn et brukernavn, en E-postadresse, og et passord. Du kan også skrive inn ytterligere profilinformasjon som f.eks. et visningsnavn og selvbiografi, og laste opp et profilbilde og toppfeltbilde. Brukernavnet, visningsnavnet, selvbiografien, profilbildet, og toppfeltbildet blir alltid vist offentlig.</li>
+      <li><em>Innlegg, følging, og annen offentlig informasjon</em>: Listen over folk du følger blir vist offentlig, det samme gjelder for følgerne dine. Når du sender inn en melding, blir datoen og tidspunktet lagret såvel som programmet du sendte inn meldingen ifra. Meldinger kan inneholde mediavedlegg, som f.eks. bilder og videoer. Offentlige og uoppførte innlegg er offentlig tilgjengelige. Når du viser frem et innlegg på profilen din, er det også offentlig tilgjengelig informasjon. Dinne innlegg blir levert til dine følgere, og i noen tilfeller betyr det at blir levert til forskjellige tjenere og at kopier blir lagret der. Når du sletter innlegg, blir også det levert til dine følgere. Det å fremheve eller like et annet innlegg er alltid offentlig.</li>
+      <li><em>Direkteinnlegg og innlegg som kun er for følgere</em>: Alle innlegg er lagret og behandlet på tjeneren. Innlegg som kun er for følgere, blir levert til dine følgere, og direkteinnlegg leveres kun til brukere som er nevnt i dem. I noen tilfeller betyr det at de blir levert til forskjellige tjenere og at kopier blir lagret der. Vi gjør et forsøk i god sportsånd for å begrense tilgangen til disse innleggene til kun autoriserte personer, men andre tjenere kan mislykkes med sådan. Derfor er det viktig å gå i gjennom tjenerne som følgerne dine hører til i. I innstillingene kan du veksle på en innstilling for å godkjenne og avslå nye følgere manuelt. <em>Vennligst ha i tankene at operatørene til tjeneren og enhver mottakende tjener kan se slike meldinger</em>, og at mottakere kan ta skjermklipp av, kopiere, eller på annet vis dele dem videre. <em>Ikke del noe farlig informasjon over Mastodon.</em></li>
+      <li><em>IP-er og andre metadata</em>: Når du logger på, lagrer vi IP-adressen som du logget deg på fra, såvel som navnet til nettleserprogrammet ditt. Du kan gå gjennom og tilbakekalle alle påloggede økter i innstillingene. Den seneste IP-adressen du brukte, blir lagret i opptil 12 måneder. Vi vil kanskje også holde på tjenerloggføringer som inkluderer IP-adressen til alle forespørsler til tjeneren vår.</li>
+      </ul>
+
+      <hr class="spacer" />
+
+      <h3 id="use">Hva bruker vi informasjonen din til?</h3>
+
+      <p>Hva som helst av informasjonen som vi samler inn fra deg, kan bli brukt på de følgende måtene:</p>
+
+      <ul>
+      <li>Til å levere grunnfunksjonaliteten til Mastodon. Du kan bare samhandle med andre folks innhold og legge ut ditt eget innhold når du er logget på. For eksempel kan du følge andre folk for å se deres kombinerte innlegg i din egen personliggjorte hjemmetidslinje.</li>
+      <li>Til å bistå i moderasjonen av samfunnet, for eksempel å sammenligne IP-adressen din med andre andre kjente adresser for å avgjøre saker om bannlysningsunngåelse eller andre regelbrudd.</li>
+      <li>E-postadressen du oppgir kan bli brukt til å sende deg informasjon, varsler om at andre folk samhandler med innholdet ditt eller sender deg meldinger, og å svare på brukerstøttespørsmål, og/eller andre forespørsler eller spørsmål.</li>
+      </ul>
+
+      <hr class="spacer" />
+
+      <h3 id="protect">Hvordan beskytter vi informasjonen din?</h3>
+
+      <p>Vi implementer en rekke sikkerhetstiltak for å holde på sikkerheten til din personlige informasjon når du skriver inn, sender inn, eller besøker din personlige informasjon. Blant annet er din nettleserøkt, såvel som trafikken mellom dine apper og API-er, sikret med SSL, og passordet ditt er saltet med en kraftig énveisalgoritme. Du kan skru på 2-trinnsinnlogging for å sikre tilgangen til kontoen din ytterligere.</p>
+
+      <hr class="spacer" />
+
+      <h3 id="data-retention">Hva er våre databeholdingsretningslinjer?</h3>
+
+      <p>Vi vil gjøre en innsats i god sportsånd for å</p>
+
+      <ul>
+      <li>Beholde tjenerloggføringer som inneholder IP-adressen til alle forespørsler til denne tjeneren, dersom det blir loggført i det hele tatt, i ikke mer enn 90 dager.</li>
+      <li>Beholde IP-adressene som er forbundet med registrerte brukere i ikke mer enn 12 måneder.</li>
+      </ul>
+
+      <p>Du kan be om og laste ned et arkiv av innholdet ditt, inkludert dine innlegg, media, mediavedlegg, profilbilde, og toppfeltbilde.</p>
+
+      <p>Du kan ugjenkallelig slette kontoen til enhver tid.</p>
+
+      <hr class="spacer"/>
+
+      <h3 id="cookies">Bruker vi infokapsler?</h3>
+
+      <p>Ja. Infokapsler er små filer som et nettsted eller dens tjenesteleverandør overfører til harddisken på datamaskinen din gjennom nettleseren din (dersom du tillater dette). Disse infokapslene lar nettstedet kjenne igjen nettleseren din og, dersom du har en registrert konto, assosiere den med din registrerte konto.</p>
+
+      <p>Vi benytter infokapsler for å forstå og lagre dinne innstillinger til fremtidige besøk.</p>
+
+      <hr class="spacer" />
+
+      <h3 id="disclose">Forteller vi om noe informasjon til utenforstående parter?</h3>
+
+      <p>Vi hverken selger, bytter, eller på andre måter overfører din personlig identifiserbare informasjon til utenforstående parter. Dette inkluderer ikke tredjeparter som vi stoler på og som hjelper oss med å drifte nettstedet vårt, drifte våre forretninger, eller å yte tjenester til deg, så lenge disse partene sier seg enige i å holde denne informasjonen hemmelig. Vi kan også frigi informasjonen vår dersom vi mener et frigiving er passende for å møte loven, handle i tråd med vår nettstedsretningslinjer, eller å beskytte vår eller andres rettigheter, eiendom, eller trygghet.</p>
+
+      <p>Ditt offentlige innhold kan bli lastet ned av andre tjenere i nettverket. Dine offentlige innlegg og innlegg som kun er for følgere blir levert til tjenerne der følgerne dine holder til, og direktemeldinger blir levert il mottakernes tjenere, i den grad de følgerne eller mottakerne holder på en annen tjener enn denne.</p>
+
+      <p>Når du gir et program autorisasjon til å bruke kontoen din, avhengig av omfanget av tillatelser som du tillater, kan den få tilgang til din offentlige profilinformasjon, din følgingsliste, dine følgere, dine lister, alle dine innlegg, og dine likinger. Programmer kan aldri få tilgang til E-postadressen eller passordet ditt.</p>
+
+      <hr class="spacer" />
+
+      <h3 id="children">Nettstedsbruk av barn</h3>
+
+      <p>Dersom denne tjeneren er i EU eller EØS: Vårt nettsted, produkter og tjenester er alle siktet inn mot folk som er minst 16 år gamle. Dersom du er under 16, sier GDPR (<a href="https://en.wikipedia.org/wiki/General_Data_Protection_Regulation">General Data Protection Regulation</a>) at du ikke kan bruke dette nettstedet.</p>
+
+      <p>Dersom denne tjeneren er i USA: Vårt nettsted, produkter og tjenester er alle siktet inn mot folk som er minst 16 år gamle. Dersom du er under 16, sier COPPA (<a href="https://en.wikipedia.org/wiki/Children%27s_Online_Privacy_Protection_Act">Children's Online Privacy Protection Act</a>) at du ikke kan bruke dette nettstedet.</p>
+
+      <p>Lovmessige krav kan være forskjellige dersom denne tjeneren befinner seg i en annen jurisdiksjon.</p>
+
+      <hr class="spacer" />
+
+      <h3 id="changes">Endringer i våre privatlivsretningslinjer</h3>
+
+      <p>Dersom vi bestemmer oss for å endre våre privatlivsretningslinjer, vil vi legge ut endringene på denne siden.</p>
+
+      <p>Dette dokumentet er lisensiert under CC BY-SA. Den engelske originalversjonen ble sist oppdatert den 7. mars 2018. Den norske oversettelsen ble sist oppdatert den 13. desember 2019.</p>
+
+      <p>Opprinnelig modifisert utifra <a href="https://github.com/discourse/discourse">Discourse sine privatlivsretningslinjer</a>.</p>
     title: "%{instance} Personvern og villkår for bruk av nettstedet"
   themes:
+    contrast: Mastodon (Høykontrast)
     default: Mastodon
+    mastodon-light: Mastodon (Lyst)
   time:
     formats:
       default: "%-d. %b %Y, %H:%M"
+      month: "%b %Y"
   two_factor_authentication:
     code_hint: Tast koden som ble generert av din autentiseringsapp for å bekrefte
     description_html: Hvis du skrur på <strong>tofaktorautentisering</strong> må du ha din telefon for å logge inn. Denne vil generere koder som du må taste inn.
@@ -506,6 +1053,25 @@
     setup: Sett opp
     wrong_code: Den angitte koden var ugyldig! Stemmer instansens tid overalt med enhetens tid?
   user_mailer:
+    backup_ready:
+      subject: Arkivet ditt er klart til å lastes ned
+    warning:
+      explanation:
+        disable: Mens kontoen din er fryst, forblir dine kontodata intakt, men du kan ikke utføre noen handlinger før den har blitt tint opp.
+        silence: Mens kontoen din er begrenset, vil bare folk som allerede følger deg se dine tuter på denne tjeneren, og du kan bli ekskludert fra diverse offentlige oppføringer. Men andre kan fortsatt følge deg manuelt.
+        suspend: Kontoen din har blitt suspendert, og alle dine tuter og opplastede media har blitt ugjenkallelig fjernet fra denne tjeneren, og fra tjenere der du hadde følgere.
+      get_in_touch: Du kan svare på denne E-posten for å komme i kontakt med styret i %{instance}.
+      statuses: 'Spesifikt for å:'
+      subject:
+        disable: Kontoen din, %{acct}, har blitt fryst
+        none: Advarsel for %{acct}
+        silence: Kontoen din, %{acct}, har blitt begrenset
+        suspend: Kontoen din, %{acct}, har blitt suspendert
+      title:
+        disable: Kontoen er fryst
+        none: Advarsel
+        silence: Kontoen er begrenset
+        suspend: Kontoen er suspendert
     welcome:
       edit_profile_action: Sett opp profil
       edit_profile_step: Du kan tilpasse din profil ved å laste opp en avatar, overskrift, endre ditt visningsnavn med mer. Hvis du vil godkjenne hvilke personer som får lov til å følge deg kan du låse kontoen.
@@ -521,8 +1087,12 @@
       tip_following: Du følger din tjeners administrator(er) som standard. For å finne mer interessante personer, sjekk den lokale og forente tidslinjen.
       tip_local_timeline: Den lokale tidslinjen blir kontant matet med meldinger fra personer på %{instance}. Dette er dine nærmeste naboer!
       tip_mobile_webapp: Hvis din mobile nettleser tilbyr deg å legge Mastadon til din hjemmeskjerm kan du motta push-varslinger. Det er nesten som en integrert app på mange måter!
+      tips: Tips
       title: Velkommen ombord, %{name}!
   users:
     invalid_email: E-postaddressen er ugyldig
     invalid_otp_token: Ugyldig to-faktorkode
     signed_in_as: 'Innlogget som:'
+  verification:
+    explanation_html: 'Du kan <strong>bekrefte at du selv er eieren av lenkene i din profilmetadata</strong>. For å gjøre det, må det tillenkede nettstedet inneholde en lenke som fører tilbake til Mastodon-profilen din. Lenken tilbake <strong>må</strong> ha en <code>rel="me"</code>-attributt. Tekstinnholdet til lenken er irrelevant. Her er et eksempel:'
+    verification: Bekreftelse
diff --git a/config/locales/oc.yml b/config/locales/oc.yml
index bd19401ed107cdd0bcb87c36adebb6eb1f56ee07..985d2a311fa35ab4fb506676dba0917b1a42f655 100644
--- a/config/locales/oc.yml
+++ b/config/locales/oc.yml
@@ -11,6 +11,7 @@ oc:
     apps: Aplicacions per mobil
     apps_platforms: Utilizatz Mastodon d‘iOS, Android o d’autras plataforma estant
     browse_directory: Navigatz per l’annuari de perfil e filtratz segon çò qu’aimatz
+    browse_local_posts: Percórrer un flux en dirècte de las publicacions publicas d’aqueste servidor
     browse_public_posts: Navigatz pel flux public a Mastodon
     contact: Contacte
     contact_missing: Pas parametrat
@@ -33,6 +34,7 @@ oc:
     terms: Condicions d’utilizacion
     unavailable_content: Contengut pas disponible
     unavailable_content_description:
+      domain: Servidor
       reason: 'Motiu :'
     user_count_after:
       one: utilizaire
@@ -107,9 +109,7 @@ oc:
       email_status: Estat de l’adreça
       enable: Activar
       enabled: Activat
-      feed_url: Flux URL
       followers: Seguidors
-      followers_url: URL dels seguidors
       follows: Abonaments
       header: Bandièra
       inbox_url: URL de recepcion
@@ -137,10 +137,8 @@ oc:
       no_account_selected: Cap de compte pas cambiat estant que cap èra pas seleccionat
       no_limits_imposed: Cap de limit impausat
       not_subscribed: Pas seguidor
-      outbox_url: URL Outbox
       pending: Revision en espèra
       perform_full_suspension: Suspendre
-      profile_url: URL del perfil
       promote: Promòure
       protocol: Protocòl
       public: Public
@@ -163,8 +161,8 @@ oc:
         moderator: Moderador
         staff: Personnal
         user: Uitlizaire
-      salmon_url: URL Salmon
       search: Cercar
+      search_same_ip: Autres utilizaires amb la meteissa IP
       shared_inbox_url: URL de recepcion partejada
       show:
         created_reports: Senhalaments creats
@@ -191,10 +189,12 @@ oc:
         confirm_user: "%{name} confirmèt l’adreça a %{target}"
         create_account_warning: "%{name} mandèt un avertiment a %{target}"
         create_custom_emoji: "%{name} mandèt un nòu emoji %{target}"
+        create_domain_allow: "%{name} botèt a la lista blanca lo domeni %{target}"
         create_domain_block: "%{name} bloquèt lo domeni %{target}"
         create_email_domain_block: "%{name} botèt a la lista nègra lo domeni de corrièl %{target}"
         demote_user: "%{name} retragradèt l‘utilizaire %{target}"
         destroy_custom_emoji: "%{name} destruguèt l’emoji %{target}"
+        destroy_domain_allow: "%{name} levèt lo domeni %{target} de la lista blanca"
         destroy_domain_block: "%{name} desbloquèt lo domeni %{target}"
         destroy_email_domain_block: "%{name} botèt a la lista blanca lo domeni de corrièl %{target}"
         destroy_status: "%{name} levèt l‘estatut a %{target}"
@@ -383,8 +383,9 @@ oc:
       destroyed_msg: Nòta de moderacion corrèctament suprimida !
     reports:
       account:
-        note: nòta
-        report: rapòrt
+        notes:
+          one: "%{count} nòta"
+          other: "%{count} nòtas"
       action_taken_by: Mesura menada per
       are_you_sure: Es segur ?
       assign_to_self: Me l’assignar
@@ -673,7 +674,6 @@ oc:
     blocks: Personas que blocatz
     csv: CSV
     domain_blocks: Blocatge de domenis
-    follows: Personas que seguètz
     lists: Listas
     mutes: Personas rescondudas
     storage: Mèdias gardats
@@ -789,6 +789,7 @@ oc:
     past_migrations: Migracions passadas
     proceed_with_move: Desplaçar los seguidors
     redirecting_to: Vòstre compte manda a %{acct}.
+    set_redirect: Definir redireccion
     warning:
       before: 'Abans de contunhar, volgatz legir aquestas nòtas amb atencion :'
       other_data: Cap d’autra donada serà desplaçada automaticament
@@ -828,6 +829,10 @@ oc:
       body: "%{name} a tornat partejar vòstre estatut :"
       subject: "%{name} a tornat partejar vòstre estatut"
       title: Novèl partatge
+  notifications:
+    email_events: Eveniments per las notificacions per corrièl
+    email_events_hint: 'Seleccionatz los eveniments que volètz recebre :'
+    other_settings: Autres paramètres de notificacion
   number:
     human:
       decimal_units:
@@ -936,6 +941,7 @@ oc:
   settings:
     account: Compte
     account_settings: Paramètres de compte
+    aliases: Alias de compte
     appearance: Aparéncia
     authorized_apps: Aplicacions autorizadas
     back: Tornar a Mastodon
@@ -953,6 +959,8 @@ oc:
     profile: Perfil
     relationships: Abonaments e seguidors
     two_factor_authentication: Autentificacion en dos temps
+  spam_check:
+    spam_detected: Aquò es un senhalament automatic. D’spam es estat detectat.
   statuses:
     attached:
       description: 'Ajustat : %{attached}'
diff --git a/config/locales/pl.yml b/config/locales/pl.yml
index 3c24a18caca7d0acdb01982ee46e4bd256600f07..eec58bc5e543b5fae04d31172620abd26b405b4a 100644
--- a/config/locales/pl.yml
+++ b/config/locales/pl.yml
@@ -20,6 +20,9 @@ pl:
     federation_hint_html: Z kontem na %{instance}, możesz śledzić użytkowników każdego serwera Mastodona i nie tylko.
     get_apps: Spróbuj aplikacji mobilnej
     hosted_on: Mastodon uruchomiony na %{domain}
+    instance_actor_flash: |
+      To konto jest wirtualnym nadawcą, używanym do reprezentacji serwera, a nie jakiegokolwiek użytkownika.
+      Jest używane w celu federowania i nie powinno być blokowane, chyba że chcesz zablokować całą instację, w takim przypadku użyj blokady domeny.
     learn_more: Dowiedz się więcej
     privacy_policy: Polityka prywatności
     see_whats_happening: Zobacz co siÄ™ dzieje
@@ -33,6 +36,14 @@ pl:
     status_count_before: SÄ… autorami
     tagline: Śledź znajomych i poznawaj nowych
     terms: Zasady użytkowania
+    unavailable_content: Niedostępne treści
+    unavailable_content_description:
+      domain: Serwer
+      reason: Powód
+      rejecting_media: 'Pliki multimedialne z tych serwerów nie będą przetwarzane ani przechowywane, ani ich miniaturki nie będą wyświetlane, wymuszając ręczne przejście do oryginalnego pliku:'
+      silenced: 'Posty z tych serwerów będą ukryte na publicznych osiach czasu i konwersacjach, a powiadomienia z interakcji ich użytkowników nie będą generowane, chyba że ich obserwujesz:'
+      suspended: 'Żadne dane z tych serwerów nie będą przetwarzane, przechowywane ani wymieniane, sprawiając że jakakolwiek interakcja czy komunikacja z użytkownikami tych serwerów będzie niemożliwa:'
+    unavailable_content_html: Normalnie Mastodon pozwala ci przeglądać treści od innych użytkowników z jakiegokolwiek serwera w fediwersum. To są wyjątki, które zostały stworzone na tym konkretnym serwerze.
     user_count_after:
       few: użytkowników
       many: użytkowników
@@ -42,6 +53,8 @@ pl:
     what_is_mastodon: Czym jest Mastodon?
   accounts:
     choices_html: 'Polecani przez %{name}:'
+    endorsements_hint: Możesz promować ludzi, których obserwujesz, z poziomu interfejsu webowego - wtedy oni pojawią się w tym miejscu.
+    featured_tags_hint: Możesz przedstawić w tym miejscu kilka wybranych hasztagów.
     follow: Śledź
     followers:
       few: śledzących
@@ -55,6 +68,7 @@ pl:
     media: Zawartość multimedialna
     moved_html: "%{name} korzysta teraz z konta %{new_profile_link}:"
     network_hidden: Ta informacja nie jest dostępna
+    never_active: Nigdy
     nothing_here: Niczego tu nie ma!
     people_followed_by: Konta śledzone przez %{name}
     people_who_follow: Osoby, które śledzą konto %{name}
@@ -111,9 +125,7 @@ pl:
       email_status: Stan e-maila
       enable: Aktywuj
       enabled: Aktywowano
-      feed_url: Adres kanału
       followers: ÅšledzÄ…cy
-      followers_url: Adres śledzących
       follows: Åšledzeni
       header: Nagłówek
       inbox_url: Adres skrzynki
@@ -141,10 +153,8 @@ pl:
       no_account_selected: Żadne konto nie zostało zmienione, bo żadne nie zostało wybrane
       no_limits_imposed: Nie nałożono ograniczeń
       not_subscribed: Nie zasubskrybowano
-      outbox_url: Adres skrzynki nadawczej
       pending: Oczekuje na przeglÄ…d
       perform_full_suspension: ZawieÅ›
-      profile_url: Adres profilu
       promote: PodnieÅ› uprawnienia
       protocol: Protokół
       public: Publiczne
@@ -167,8 +177,8 @@ pl:
         moderator: Moderator
         staff: Ekipa
         user: Użytkownik
-      salmon_url: Adres Salmon
       search: Szukaj
+      search_same_ip: Inni użytkownicy z tym samym IP
       shared_inbox_url: Adres udostępnianej skrzynki
       show:
         created_reports: Zgłoszenia tego użytkownika
@@ -187,6 +197,7 @@ pl:
       username: Nazwa użytkownika
       warn: Ostrzeż
       web: Sieć
+      whitelisted: Na białej liście
     action_logs:
       actions:
         assigned_to_self_report: "%{name} przypisał(a) sobie zgłoszenie %{target}"
@@ -222,10 +233,12 @@ pl:
       deleted_status: "(usunięty wpis)"
       title: Dziennik działań administracyjnych
     custom_emojis:
+      assign_category: Ustaw kategoriÄ™
       by_domain: Domeny
       copied_msg: Pomyślnie utworzono lokalną kopię emoji
       copy: Kopiuj
       copy_failed_msg: Nie udało się utworzyć lokalnej kopii emoji
+      create_new_category: Stwórz nową kategorię
       created_msg: Pomyślnie utworzono emoji!
       delete: Usuń
       destroyed_msg: Pomyślnie usunięto emoji!
@@ -235,6 +248,7 @@ pl:
       enable: Włącz
       enabled_msg: Pomyślnie przywrócono emoji
       image_hint: Plik PNG ważący do 50KB
+      list: Dodaj do listy
       listed: Widoczne
       new:
         title: Dodaj nowe niestandardowe emoji
@@ -242,11 +256,14 @@ pl:
       shortcode: Krótki kod
       shortcode_hint: Co najmniej 2 znaki, tylko znaki alfanumeryczne i podkreślniki
       title: Niestandardowe emoji
+      uncategorized: Bez kategorii
+      unlist: Usuń z listy
       unlisted: Niewidoczne
       update_failed_msg: Nie udało się zaktualizować emoji
       updated_msg: Pomyślnie zaktualizowano emoji!
       upload: Dodaj
     dashboard:
+      authorized_fetch_mode: Tryb bezpieczny
       backlog: zaległe zadania
       config: Konfiguracja
       feature_deletions: Usuwanie kont
@@ -254,10 +271,13 @@ pl:
       feature_profile_directory: Katalog profilów
       feature_registrations: Rejestracja
       feature_relay: Przekazywanie federacji
+      feature_spam_check: Anty-spam
       feature_timeline_preview: PodglÄ…d osi czasu
       features: Możliwości
       hidden_service: Federowanie z ukrytymi usługami
       open_reports: otwarte zgłoszenia
+      pending_tags: hasztagi oczekujÄ…ce na sprawdzenie
+      pending_users: użytkownicy oczekujący na sprawdzenie
       recent_users: Ostatni użytkownicy
       search: Wyszukiwanie pełnego tekstu
       single_user_mode: Tryb jednego użytkownika
@@ -269,11 +289,18 @@ pl:
       week_interactions: interakcje w tym tygodniu
       week_users_active: aktywni w tym tygodniu
       week_users_new: rejestracje w tym tygodniu
+      whitelist_mode: Tryb białej listy
+    domain_allows:
+      add_new: Zatwierdź domenę
+      created_msg: Domena dodana do białej listy
+      destroyed_msg: Domena usunięta z białej listy
+      undo: Usuń z białej listy
     domain_blocks:
       add_new: Dodaj nowÄ…
       created_msg: Blokada domen jest przetwarzana
       destroyed_msg: Blokada domeny nie może zostać odwrócona
       domain: Domena
+      edit: Edytuj blokadÄ™ domeny
       existing_domain_block_html: Już narzuciłeś bardziej rygorystyczne limity na %{name}, musisz najpierw <a href="%{unblock_url}">je odblokować</a>.
       new:
         create: Utwórz blokadę
@@ -284,6 +311,9 @@ pl:
           silence: Wycisz
           suspend: ZawieÅ›
         title: Nowa blokada domen
+      private_comment: Prywatny komentarz
+      private_comment_hint: Komentarz na temat ograniczeń dla tej domeny do wewnętrznej informacji dla moderatorów.
+      public_comment: Publiczny komentarz
       reject_media: Odrzucaj pliki multimedialne
       reject_media_hint: Usuwa przechowywane lokalnie pliki multimedialne i nie pozwala na ich pobieranie. Nieprzydatne przy zawieszeniu
       reject_reports: Odrzucaj zgłoszenia
@@ -305,6 +335,7 @@ pl:
         title: Odwołaj blokadę dla domeny %{domain}
         undo: Cofnij
       undo: Cofnij
+      view: Zobacz blokadÄ™ domeny
     email_domain_blocks:
       add_new: Dodaj nowÄ…
       created_msg: Pomyślnie utworzono blokadę domeny e-mail
@@ -330,6 +361,8 @@ pl:
         all: Wszystkie
         limited: Ograniczone
         title: Moderacja
+      private_comment: Prywatny komentarz
+      public_comment: Publiczny komentarz
       title: Znane instancje
       total_blocked_by_us: Zablokowane przez nas
       total_followed_by_them: Åšledzeni przez nich
@@ -359,15 +392,13 @@ pl:
       pending: Oczekiwanie na przyjęcie przez przekaźnik
       save_and_enable: Zapisz i aktywuj
       setup: Skonfiguruj połączenie z przekaźnikiem
+      signatures_not_enabled: Przekaźniki nie będą funkcjonować poprawnie kiedy tryb bezpieczeństwa lub białej listy są włączone
       status: Stan
       title: Przekaźniki
     report_notes:
       created_msg: Pomyslnie utworzono notatkÄ™ moderacyjnÄ….
       destroyed_msg: Pomyślnie usunięto notatkę moderacyjną.
     reports:
-      account:
-        note: notatka
-        report: zgłoszenie
       action_taken_by: Działanie podjęte przez
       are_you_sure: Czy na pewno?
       assign_to_self: Przypisz do siebie
@@ -478,6 +509,7 @@ pl:
       title: Wpisy konta
       with_media: Z zawartością multimedialną
     tags:
+      name: Hasztag
       title: Hashtagi
     title: Administracja
     warning_presets:
@@ -494,6 +526,8 @@ pl:
       body: Użytkownik %{reporter} zgłosił(a) %{target}
       body_remote: Użytkownik instancji %{domain} zgłosił(a) %{target}
       subject: Nowe zgłoszenie na %{instance} (#%{id})
+  aliases:
+    add_new: Utwórz alias
   appearance:
     advanced_web_interface: Zaawansowany interfejs użytkownika
     advanced_web_interface_hint: Jeśli chcesz użyć pełną szerokość swojego ekranu, zaawansowany interfejs użytkownika pozwala Ci skonfigurować wiele różnych kolumn, by zobaczyć jak najwięcej informacji kiedy tylko chcesz. Strona główna, Powiadomienia, Globalna oś czasu, dowolna ilość list i hasztagów.
@@ -550,6 +584,8 @@ pl:
       return: Pokaż stronę użytkownika
       web: Przejdź do sieci
     title: Śledź %{acct}
+  challenge:
+    confirm: Kontynuuj
   datetime:
     distance_in_words:
       about_x_hours: "%{count}g"
@@ -601,7 +637,6 @@ pl:
     blocks: Zablokowani
     csv: CSV
     domain_blocks: Blokady domen
-    follows: Åšledzeni
     lists: Listy
     mutes: Wyciszeni
     storage: UrzÄ…dzenie przechowujÄ…ce dane
@@ -1052,7 +1087,7 @@ pl:
         suspend: Konto zawieszone
     welcome:
       edit_profile_action: Skonfiguruj profil
-      edit_profile_step: Możesz dostować profil wysyłając awatar, obraz nagłówka, zmieniając wyświetlaną nazwę i wiele więcej. Jeżeli chcesz, możesz zablokować konto, aby kontrolować, kto może Cię śledzić.
+      edit_profile_step: Możesz dostosować profil wysyłając awatar, obraz nagłówka, zmieniając wyświetlaną nazwę i wiele więcej. Jeżeli chcesz, możesz zablokować konto, aby kontrolować, kto może Cię śledzić.
       explanation: Kilka wskazówek, które pomogą Ci rozpocząć
       final_action: Zacznij pisać
       final_step: 'Zacznij tworzyć! Nawet jeżeli nikt Cię nie śledzi, Twoje publiczne wiadomości będą widziane przez innych, na przykład na lokalnej osi czasu i w hashtagach. Możesz też utworzyć wpis wprowadzający używając hashtagu #introductions.'
diff --git a/config/locales/pt-BR.yml b/config/locales/pt-BR.yml
index c21d98063c7e46a1a920e50cd5699b8fb8a682ec..2d65a5591bbc371cc73dc6d26b2b8285bed7ae94 100644
--- a/config/locales/pt-BR.yml
+++ b/config/locales/pt-BR.yml
@@ -2,80 +2,92 @@
 pt-BR:
   about:
     about_hashtag_html: Estes são toots públicos com a hashtag <strong>#%{hashtag}</strong>. Você pode interagir com eles se tiver uma conta em qualquer lugar no fediverso.
-    about_mastodon_html: Mastodon é uma rede social baseada em protocolos abertos e software gratuito e de código aberto. É descentralizada como e-mail.
+    about_mastodon_html: 'A rede social do futuro: Sem anúncios, sem vigilância corporativa, com design ético e muita descentralização! Possua seus próprios dados com o Mastodon!'
     about_this: Sobre
-    active_count_after: Ativo
-    active_footnote: Usuários ativos mensais (UAM)
+    active_count_after: ativo
+    active_footnote: Usuários Ativos Mensalmente (UAM)
     administered_by: 'Administrado por:'
     api: API
-    apps: Apps
-    apps_platforms: Use o Mastodon a partir de iOS, Android e outras plataformas
+    apps: Aplicativos
+    apps_platforms: Use o Mastodon a partir do iOS, Android e outras plataformas
     browse_directory: Navegue pelo diretório de perfis e filtre por interesses
-    browse_public_posts: Navegue pelos posts públicos sendo postados ao vivo no Mastodon
+    browse_local_posts: Navegue pelos toots públicos locais em tempo real
+    browse_public_posts: Navegue pelos toots públicos globais em tempo real
     contact: Contato
     contact_missing: Não definido
     contact_unavailable: Não disponível
     discover_users: Descubra usuários
     documentation: Documentação
-    federation_hint_html: Com uma conta em %{instance} você vai poder seguir pessoas em qualquer servidor Mastodon ou outros do fediverso.
+    federation_hint_html: Com uma conta em %{instance} você vai poder seguir e interagir com pessoas de qualquer canto do fediverso.
     get_apps: Experimente um aplicativo
-    hosted_on: Mastodon hospedado em %{domain}
+    hosted_on: Instância Mastodon em %{domain}
+    instance_actor_flash: |
+      Esta conta é um ator virtual usado para representar a própria instância.
+      É usado para fins de federação e não deve ser bloqueado a menos que você queira bloquear toda a instância, nesse caso é melhor usar um bloqueador de domínios.
     learn_more: Saiba mais
     privacy_policy: Política de Privacidade
     see_whats_happening: Veja o que está acontecendo
-    server_stats: 'Estatísticas do servidor:'
+    server_stats: 'Estatísticas da instância:'
     source_code: Código-fonte
+    status_count_after:
+      one: toot
+      other: toots
     status_count_before: Autores de
-    tagline: Siga amigos e encontre novos
+    tagline: Siga seus amigos e faça novas amizades
     terms: Termos de serviço
     unavailable_content: Conteúdo indisponível
     unavailable_content_description:
+      domain: Instância
       reason: 'Motivo:'
-      suspended: Você não será capaz de seguir ninguém deste servidor, e nenhum dado dele será processado ou armazenado, e nenhum dado trocado.
-    unavailable_content_html: Mastodon geralmente permite que você veja o conteúdo e interaja com usuários de qualquer outro servidor no fediverso. Estas são as exceções deste servidor específico.
+      rejecting_media: 'Arquivos de mídia destas instâncias não serão processados ou armazenados e nenhuma miniatura será exibida, exigindo que o usuário abra o arquivo original manualmente:'
+      silenced: 'Toots destas instâncias serão ocultos em linhas e conversas públicas, e nenhuma notificação será gerada a partir das interações dos seus usuários, a menos que esteja sendo seguido:'
+      suspended: 'Você não será capaz de seguir ninguém destas instâncias, e nenhum dado delas será processado, armazenado ou trocado:'
+    unavailable_content_html: Mastodon geralmente permite que você veja o conteúdo e interaja com usuários de qualquer outra instância no fediverso. Estas são as exceções desta instância em específico.
     user_count_after:
       one: usuário
       other: usuários
     user_count_before: Casa de
     what_is_mastodon: O que é Mastodon?
   accounts:
-    choices_html: 'Escolhas de %{name}:'
-    featured_tags_hint: Você pode destacar hashtags específicas que serão exibidas aqui.
+    choices_html: 'Sugestões de %{name}:'
+    endorsements_hint: Você pode sugerir pessoas que você segue, elas aparecerão aqui.
+    featured_tags_hint: Você pode destacar hashtags específicas, elas aparecerão aqui.
     follow: Seguir
     followers:
       one: Seguidor
       other: Seguidores
     following: Seguindo
-    joined: Participa desde %{date}
+    joined: Entrou em %{date}
     last_active: última atividade
-    link_verified_on: A posse desse link foi checada em %{date}
+    link_verified_on: O link foi verificado em %{date}
     media: Mídia
     moved_html: "%{name} se mudou para %{new_profile_link}:"
-    network_hidden: Esta informação não está disponível
+    network_hidden: Informação indisponível
     never_active: Nunca
-    nothing_here: Não há nada aqui!
+    nothing_here: Nada aqui!
     people_followed_by: Pessoas que %{name} segue
     people_who_follow: Pessoas que seguem %{name}
     pin_errors:
-      following: Você tem que estar seguindo a pessoa que você quer sugerir
+      following: Você deve estar seguindo a pessoa que você deseja sugerir
     posts:
       one: Toot
       other: Toots
     posts_tab_heading: Toots
     posts_with_replies: Toots e respostas
-    reserved_username: Este usuário está reservado
+    reserved_username: Nome de usuário reservado
     roles:
-      admin: Administrador
+      admin: Admin
       bot: Robô
-      moderator: Moderador
+      group: Grupo
+      moderator: Mod
     unavailable: Perfil indisponível
     unfollow: Deixar de seguir
   admin:
     account_actions:
-      action: Tomar uma ação
-      title: Realizar uma ação de moderação em %{acct}
+      action: Tomar uma atitude
+      title: Moderar %{acct}
     account_moderation_notes:
-      create: Criar uma advertência
+      create: Deixar nota
       created_msg: Nota de moderação criada com sucesso!
       delete: Excluir
       destroyed_msg: Nota de moderação excluída com sucesso!
@@ -83,79 +95,75 @@ pt-BR:
       approve: Aprovar
       approve_all: Aprovar tudo
       are_you_sure: Você tem certeza?
-      avatar: Imagem de Perfil
+      avatar: Imagem de perfil
       by_domain: Domínio
       change_email:
-        changed_msg: E-mail da conta modificado com sucesso!
+        changed_msg: E-mail da conta alterado com sucesso!
         current_email: E-mail atual
-        label: Mudar e-mail
+        label: Alterar e-mail
         new_email: Novo e-mail
-        submit: Mudar e-mail
-        title: Mudar e-mail para %{username}
+        submit: Alterar e-mail
+        title: Alterar e-mail para %{username}
       confirm: Confirmar
       confirmed: Confirmado
       confirming: Confirmando
       deleted: Excluído
       demote: Rebaixar
       disable: Desativar
-      disable_two_factor_authentication: Desativar 2FA
+      disable_two_factor_authentication: Desativar autenticação de dois fatores
       disabled: Desativada
       display_name: Nome de exibição
       domain: Domínio
       edit: Editar
       email: E-mail
-      email_status: Estado do e-mail
+      email_status: Status do e-mail
       enable: Ativar
-      enabled: Ativado
-      feed_url: URL do feed
+      enabled: Ativada
       followers: Seguidores
-      followers_url: URL de seguidores
-      follows: Segue
-      header: Cabeçalho
+      follows: Seguindo
+      header: Capa
       inbox_url: URL da caixa de entrada
       invited_by: Convidado por
       ip: IP
-      joined: Se cadastrou
+      joined: Entrou
       location:
         all: Todos
         local: Local
         remote: Remoto
         title: Localização
-      login_status: Situação de login
-      media_attachments: Mídia(s) anexada(s)
-      memorialize: Tornar um memorial
+      login_status: Situação da conta
+      media_attachments: Mídias anexadas
+      memorialize: Converter em memorial
       moderation:
         active: Ativo
         all: Todos
         pending: Pendente
         silenced: Silenciados
-        suspended: Suspensos
+        suspended: Banidos
         title: Moderação
       moderation_notes: Notas de moderação
       most_recent_activity: Atividade mais recente
       most_recent_ip: IP mais recente
-      no_account_selected: Nenhuma conta foi modificada, pois nenhuma conta foi selecionada
+      no_account_selected: Nenhuma conta foi alterada, pois nenhuma conta foi selecionada
       no_limits_imposed: Nenhum limite imposto
-      not_subscribed: Não está inscrito
-      outbox_url: URL da caixa de saída
-      pending: Esperando revisão
-      perform_full_suspension: Suspender
-      profile_url: URL do perfil
+      not_subscribed: Não inscrito
+      pending: Revisão pendente
+      perform_full_suspension: Banir
       promote: Promover
       protocol: Protocolo
       public: Público
       push_subscription_expires: Inscrição PuSH expira
       redownload: Atualizar perfil
-      reject: Rejeitar
-      reject_all: Rejeitar tudo
-      remove_avatar: Remover avatar
-      remove_header: Remover cabeçalho
+      reject: Vetar
+      reject_all: Vetar tudo
+      remove_avatar: Remover imagem de perfil
+      remove_header: Remover capa
       resend_confirmation:
         already_confirmed: Este usuário já está confirmado
-        send: Re-enviar o e-mail de confirmação
+        send: Reenviar o e-mail de confirmação
         success: E-mail de confirmação enviado com sucesso!
-      reset: Anular
-      reset_password: Modificar senha
+      reset: Redefinir
+      reset_password: Redefinir senha
       resubscribe: Reinscrever-se
       role: Permissões
       roles:
@@ -163,103 +171,111 @@ pt-BR:
         moderator: Moderador
         staff: Equipe
         user: Usuário
-      salmon_url: URL Salmon
       search: Pesquisar
-      shared_inbox_url: URL da caixa de entrada compartilhada
+      search_same_ip: Outros usuários com o mesmo IP
+      shared_inbox_url: Link da caixa de entrada compartilhada
       show:
-        created_reports: Denúncias criadas por esta conta
-        targeted_reports: Denúncias feitas sobre esta conta
+        created_reports: Denúncias desta conta
+        targeted_reports: Denúncias sobre esta conta
       silence: Silenciar
       silenced: Silenciado
-      statuses: Postagens
+      statuses: Toots
       subscribe: Inscrever-se
-      suspended: Suspenso
+      suspended: Banido
       time_in_queue: Esperando na fila por %{time}
       title: Contas
       unconfirmed_email: E-mail não confirmado
-      undo_silenced: Retirar silenciamento
-      undo_suspension: Retirar suspensão
-      unsubscribe: Desinscrever-se
+      undo_silenced: Desfazer silêncio
+      undo_suspension: Desbanir
+      unsubscribe: Cancelar inscrição
       username: Nome de usuário
       warn: Notificar
       web: Web
+      whitelisted: Permitido
     action_logs:
       actions:
-        assigned_to_self_report: "%{name} designou a denúncia %{target} para si"
-        change_email_user: "%{name} mudou o endereço de e-mail do usuário %{target}"
+        assigned_to_self_report: "%{name} pegou a denúncia %{target}"
+        change_email_user: "%{name} alterou o endereço de e-mail do usuário %{target}"
         confirm_user: "%{name} confirmou o endereço de e-mail do usuário %{target}"
         create_account_warning: "%{name} enviou um aviso para %{target}"
-        create_custom_emoji: "%{name} enviou o emoji novo %{target}"
+        create_custom_emoji: "%{name} enviou o novo emoji %{target}"
+        create_domain_allow: "%{name} permitiu %{target}"
         create_domain_block: "%{name} bloqueou o domínio %{target}"
-        create_email_domain_block: "%{name} colocou o domínio de e-mail %{target} na lista negra"
+        create_email_domain_block: "%{name} bloqueou o domínio de e-mail %{target}"
         demote_user: "%{name} rebaixou o usuário %{target}"
-        destroy_custom_emoji: "%{name} destruiu emoji %{target}"
+        destroy_custom_emoji: "%{name} excluiu emoji %{target}"
+        destroy_domain_allow: "%{name} bloqueou %{target}"
         destroy_domain_block: "%{name} desbloqueou o domínio %{target}"
-        destroy_email_domain_block: "%{name} retirou o domínio de e-mail %{target} da lista negra"
-        destroy_status: "%{name} removeu postagem feita por %{target}"
-        disable_2fa_user: "%{name} desabilitou a exigência de autenticação em dois passos para o usuário %{target}"
-        disable_custom_emoji: "%{name} desabilitou o emoji %{target}"
-        disable_user: "%{name} desabilitou o acesso para o usuário %{target}"
-        enable_custom_emoji: "%{name} habilitou o emoji %{target}"
-        enable_user: "%{name} habilitou o acesso para o usuário %{target}"
+        destroy_email_domain_block: "%{name} permitiu domínio de e-mail %{target}"
+        destroy_status: "%{name} excluiu toot de %{target}"
+        disable_2fa_user: "%{name} desativou a exigência de autenticação de dois fatores para o usuário %{target}"
+        disable_custom_emoji: "%{name} desativou o emoji %{target}"
+        disable_user: "%{name} desativou o acesso para o usuário %{target}"
+        enable_custom_emoji: "%{name} ativou o emoji %{target}"
+        enable_user: "%{name} ativou o acesso para o usuário %{target}"
         memorialize_account: "%{name} transformou a conta de %{target} em um memorial"
         promote_user: "%{name} promoveu o usuário %{target}"
-        remove_avatar_user: "%{name} removeu o avatar de %{target}"
+        remove_avatar_user: "%{name} removeu a imagem de perfil de %{target}"
         reopen_report: "%{name} reabriu a denúncia %{target}"
         reset_password_user: "%{name} redefiniu a senha do usuário %{target}"
         resolve_report: "%{name} resolveu a denúncia %{target}"
         silence_account: "%{name} silenciou a conta de %{target}"
-        suspend_account: "%{name} suspendeu a conta de %{target}"
-        unassigned_report: "%{name} desatribuiu a denúncia %{target}"
+        suspend_account: "%{name} baniu a conta de %{target}"
+        unassigned_report: "%{name} largou a denúncia %{target}"
         unsilence_account: "%{name} desativou o silêncio de %{target}"
-        unsuspend_account: "%{name} desativou a suspensão de  %{target}"
+        unsuspend_account: "%{name} desbaniu %{target}"
         update_custom_emoji: "%{name} atualizou o emoji %{target}"
-        update_status: "%{name} atualizou o estado de %{target}"
-      deleted_status: "(status deletado)"
-      title: Auditar relatório
+        update_status: "%{name} atualizou o status de %{target}"
+      deleted_status: "(status excluído)"
+      title: Auditar histórico
     custom_emojis:
-      assign_category: Designar Categoria
+      assign_category: Atribuir categoria
       by_domain: Domínio
       copied_msg: Cópia local do emoji criada com sucesso
       copy: Copiar
-      copy_failed_msg: Não foi possível criar uma cópia local deste emoji
+      copy_failed_msg: Não foi possível criar cópia local do emoji
       create_new_category: Criar nova categoria
       created_msg: Emoji criado com sucesso!
       delete: Excluir
-      destroyed_msg: Emoji deletado com sucesso!
-      disable: Desabilitar
-      disabled_msg: Emoji desabilitado com sucesso
+      destroyed_msg: Emoji excluído com sucesso!
+      disable: Desativar
+      disabled: Desativado
+      disabled_msg: Emoji desativado com sucesso
       emoji: Emoji
-      enable: Habilitar
-      enabled_msg: Emoji habilitado com sucesso
+      enable: Ativar
+      enabled: Ativado
+      enabled_msg: Emoji ativado com sucesso
       image_hint: PNG de até 50KB
+      list: Listar
       listed: Listado
       new:
-        title: Adicionar novo emoji customizado
+        title: Adicionar novo emoji personalizado
       overwrite: Sobrescrever
       shortcode: Atalho
-      shortcode_hint: Pelo menos 2 caracteres, apenas caracteres alfanuméricos e underscores
-      title: Emojis customizados
+      shortcode_hint: Pelo menos 2 caracteres, apenas caracteres alfanuméricos e underlines ("_")
+      title: Emojis personalizados
       uncategorized: Não categorizado
-      unlisted: Não listado
+      unlist: Não listar
+      unlisted: Não-listado
       update_failed_msg: Não foi possível atualizar esse emoji
       updated_msg: Emoji atualizado com sucesso!
       upload: Enviar
     dashboard:
+      authorized_fetch_mode: Modo seguro
       backlog: tarefas na fila
       config: Configuração
-      feature_deletions: Remoção de contas
+      feature_deletions: Exclusão de contas
       feature_invites: Convites
       feature_profile_directory: Diretório de perfis
-      feature_registrations: Cadastros
+      feature_registrations: Novas contas
       feature_relay: Repetidor da federação
       feature_spam_check: Anti-spam
-      feature_timeline_preview: pré-visualização da timeline
+      feature_timeline_preview: Prévia da linha
       features: Funcionalidades
       hidden_service: Federação com serviços onion
       open_reports: Denúncias em aberto
-      pending_tags: hashtags aguardando revisão
-      pending_users: usuários aguardando revisão
+      pending_tags: hashtags pendentes
+      pending_users: usuários pendentes
       recent_users: Usuários recentes
       search: Pesquisa em texto
       single_user_mode: Modo de usuário único
@@ -267,70 +283,79 @@ pt-BR:
       space: Uso de espaço em disco
       title: Painel de controle
       total_users: usuários no total
-      trends: Tendências
+      trends: Em alta
       week_interactions: interações essa semana
       week_users_active: ativos essa semana
       week_users_new: usuários essa semana
+      whitelist_mode: Modo lista de permitidos
+    domain_allows:
+      add_new: Permitir
+      created_msg: Domínio foi permitido
+      destroyed_msg: Domínio foi bloqueado
+      undo: Bloquear
     domain_blocks:
-      add_new: Adicionar novo bloqueio de domínio
-      created_msg: Bloqueio de domínio está sendo processado
-      destroyed_msg: Bloqueio de domínio desfeito
+      add_new: Bloquear outro domínio
+      created_msg: Domínio está sendo bloqueado
+      destroyed_msg: Domínio desbloqueado
       domain: Domínio
       edit: Editar bloqueio de domínio
-      existing_domain_block_html: Você já impôs limites mais restritivos a %{name}, é necessário primeiro <a href="%{unblock_url}">desbloqueá-lo</a>.
+      existing_domain_block_html: Você já bloqueou %{name}, é necessário <a href="%{unblock_url}">desbloqueá-lo</a> primeiro.
       new:
         create: Criar bloqueio
-        hint: O bloqueio de domínio não prevenirá a criação de entradas de contas na base de dados, mas vai reatroativa e automaticamente aplicar métodos específicos de moderação nestas contas.
+        hint: O bloqueio de domínio não prevenirá a criação de entradas de contas na base de dados, mas vai retroativamente e automaticamente aplicar métodos específicos de moderação nestas contas.
         severity:
-          desc_html: O <strong>Silêncio</strong> fará com que as postagens da conta fiquem invisíveis para qualquer um que não a esteja seguindo. A <strong>Suspensão</strong> removerá todo o conteúdo da conta, mídia e dados de perfil. Use <strong>Nenhum</strong> se você apenas deseja rejeitar arquivos de mídia.
+          desc_html: "<strong>Silenciar</strong> fará com que os toots da conta fiquem invisíveis para qualquer um que não a esteja seguindo. <strong>Banir</strong> removerá todo o conteúdo da conta, mídia e dados do perfil. Use <strong>Nenhum</strong> se você apenas deseja recusar os arquivos de mídia."
           noop: Nenhum
-          silence: Silêncio
-          suspend: Suspensão
-        title: Novo bloqueio de domínio
+          silence: Silenciar
+          suspend: Banir
+        title: Bloquear domínio
       private_comment: Comentário privado
+      private_comment_hint: Comente sobre essa restrição ao domínio para uso interno dos moderadores.
       public_comment: Comentário público
-      reject_media: Rejeitar arquivos de mídia
-      reject_media_hint: Remove arquivos de mídia armazenados localmente e recusa quaisquer outros no futuro. Irrelevante para suspensões
-      reject_reports: Rejeitar denúncias
-      reject_reports_hint: Ignorar todas as denúncias vindas deste domíno. Irrelevante para suspensões
-      rejecting_media: rejeitando arquivos de mídia
-      rejecting_reports: rejeitando denúncias
+      public_comment_hint: Comente sobre essa restrição ao domínio para o público geral, caso a divulgação da lista de bloqueio esteja ativada.
+      reject_media: Recusar arquivos de mídia
+      reject_media_hint: Remove arquivos de mídia armazenados localmente e recusa quaisquer outros no futuro. Irrelevante para banimentos
+      reject_reports: Recusar denúncias
+      reject_reports_hint: Ignora todas as denúncias vindas deste domínio. Irrelevante para banimentos
+      rejecting_media: recusando arquivos de mídia
+      rejecting_reports: recusando denúncias
       severity:
         silence: silenciado
-        suspend: suspenso
+        suspend: banido
       show:
         affected_accounts:
           one: Uma conta no banco de dados foi afetada
           other: "%{count} contas no banco de dados foram afetadas"
         retroactive:
-          silence: Desativar silêncio de todas as contas existentes desse domínio
-          suspend: Retirar suspensão de todas as contas neste domínio
-        title: Retirar bloqueio de domínio de %{domain}
-        undo: Retirar
-      undo: Retirar bloqueio de domínio
+          silence: Desativar silêncio de todas as contas desse domínio
+          suspend: Desbanir todas as contas deste domínio
+        title: Desbloquear domínio %{domain}
+        undo: Desfazer
+      undo: Desbloquear domínio
       view: Ver domínios bloqueados
     email_domain_blocks:
       add_new: Adicionar novo
-      created_msg: Bloqueio de domínio de e-mail criado com sucesso
+      created_msg: Domínio de e-mail bloqueado
       delete: Excluir
-      destroyed_msg: Bloqueio de domínio de e-mail excluído com sucesso
+      destroyed_msg: Domínio de e-mail desbloqueado
       domain: Domínio
+      empty: Sem domínios de e-mail bloqueados.
       new:
         create: Adicionar domínio
-        title: Novo bloqueio de domínio de e-mail
-      title: Bloqueio de Domínio de E-mail
+        title: Novo domínio de e-mail bloqueado
+      title: Lista de bloqueio de domínios de e-mail
     followers:
       back_to_account: Voltar para a conta
-      title: Pessoas que seguem %{acct}
+      title: Seguidores de %{acct}
     instances:
       by_domain: Domínio
-      delivery_available: Entrega está disponível
+      delivery_available: Envio disponível
       known_accounts:
         one: "%{count} conta conhecida"
         other: "%{count} contas conhecidas"
       moderation:
-        all: Todas
-        limited: Limitado
+        all: Todos
+        limited: Limitados
         title: Moderação
       private_comment: Comentário privado
       public_comment: Comentário público
@@ -344,8 +369,8 @@ pt-BR:
       deactivate_all: Desativar todos
       filter:
         all: Todos
-        available: Disponíveis
-        expired: Expirados
+        available: Disponível
+        expired: Expirado
         title: Filtro
       title: Convites
     pending_accounts:
@@ -353,28 +378,35 @@ pt-BR:
     relays:
       add_new: Adicionar novo repetidor
       delete: Excluir
-      description_html: Um <strong>repetidor de federação</strong> é um servidor intermediário que troca um grande volume de toots públicos entre servidores que se inscrevem e publicam nele. <strong>O repetidor pode ser usado para ajudar servidores pequenos e médios a descobrir conteúdo do fediverso</strong>, que normalmente precisariam que usuários locais manualmente seguissem outras pessoas em servidores remotos.
+      description_html: Um <strong>repetidor de federação</strong> é um servidor intermediário que troca um grande volume de toots públicos entre instâncias que se inscrevem e publicam nele. <strong>O repetidor pode ser usado para ajudar instâncias pequenas e médias a descobrir conteúdo pelo fediverso</strong>, que normalmente precisariam que usuários locais manualmente seguissem outras pessoas em instâncias remotas.
       disable: Desativar
-      disabled: Desabilitar
-      enable: Habilitar
-      enable_hint: Uma vez habilitado, seu servidor vai se inscrever para receber todos os toots públicos desse repetidor; E vai começar a enviar todos os toots públicos desse servidor para o repetidor.
-      enabled: Habilitado
-      inbox_url: URL do repetidor
+      disabled: Desativado
+      enable: Ativar
+      enable_hint: Uma vez ativado, sua instância se inscreverá para receber todos os toots públicos desse repetidor; E vai começar a enviar todos os toots públicos desta instância para o repetidor.
+      enabled: Ativado
+      inbox_url: Link do repetidor
       pending: Esperando pela aprovação do repetidor
-      save_and_enable: Salvar e habilitar
+      save_and_enable: Salvar e ativar
       setup: Configurar uma conexão de repetidor
+      signatures_not_enabled: Repetidores não funcionarão adequadamente enquanto o modo seguro ou o modo lista de permitidos estiverem ativos
+      status: Status
       title: Repetidores
     report_notes:
       created_msg: Nota de denúncia criada com sucesso!
       destroyed_msg: Nota de denúncia excluída com sucesso!
     reports:
       account:
-        note: nota
-        report: denúncia
-      action_taken_by: Ação realizada por
+        notes:
+          one: "%{count} nota"
+          other: "%{count} notas"
+        reports:
+          one: "%{count} denúncia"
+          other: "%{count} denúncias"
+      action_taken_by: Atitude tomada por
       are_you_sure: Você tem certeza?
-      assign_to_self: Designar para mim
-      assigned: Moderador designado
+      assign_to_self: Acatado por mim
+      assigned: Moderador responsável
+      by_target_domain: Domínio da conta denunciada
       comment:
         none: Nenhum
       created_at: Denunciado
@@ -392,13 +424,14 @@ pt-BR:
       reported_by: Denunciada por
       resolved: Resolvido
       resolved_msg: Denúncia resolvida com sucesso!
+      status: Status
       title: Denúncias
-      unassign: Desatribuir
+      unassign: Largar
       unresolved: Não resolvido
       updated_at: Atualizado
     settings:
       activity_api_enabled:
-        desc_html: Contagem de status postados localmente, usuários ativos e novos cadastros filtrados semanalmente
+        desc_html: Contagem de toots locais, usuários ativos e novos usuários semanalmente
         title: Publicar estatísticas agregadas sobre atividade de usuários
       bootstrap_timeline_accounts:
         desc_html: Separe nomes de usuário através de vírgulas. Funciona apenas com contas locais e destrancadas. O padrão quando vazio são todos os administradores locais.
@@ -407,51 +440,54 @@ pt-BR:
         email: E-mail
         username: Usuário de contato
       custom_css:
-        desc_html: Modificar o visual com CSS que é carregado em todas as páginas
-        title: CSS customizado
+        desc_html: Alterar o visual com CSS carregado em todas as páginas
+        title: CSS personalizado
       default_noindex:
-        desc_html: Afeta qualquer usuário que não tenha modificado esta configuração manualmente
+        desc_html: Afeta qualquer usuário que não tenha alterado esta configuração manualmente
+        title: Optar por excluir usuários da indexação de mecanismos de pesquisa por padrão
       domain_blocks:
-        all: Para todo mundo
+        all: Para todos
         disabled: Para ninguém
         title: Mostrar domínios bloqueados
-        users: Para usuários locais logados
+        users: Para usuários locais ativos
       domain_blocks_rationale:
-        title: Visualizar justificativa
+        title: Mostrar motivo
+      enable_bootstrap_timeline_accounts:
+        title: Ativar seguidos por padrão por novas contas
       hero:
-        desc_html: Aparece na página inicial. Ao menos 600x100px é recomendado. Se não estiver definido, o thumbnail da instância é usado no lugar
+        desc_html: Aparece na página inicial. Recomendado ao menos 600x100px. Se não estiver definido, a miniatura da instância é usada no lugar
         title: Imagem de capa
       mascot:
-        desc_html: Mostrado em diversas páginas. Ao menos 293×205px recomendado. Quando não está configurado, o mascote padrão é mostrado
+        desc_html: Mostrado em diversas páginas. Recomendado ao menos 293×205px. Quando não está definido, o mascote padrão é mostrado
         title: Imagem do mascote
       peers_api_enabled:
         desc_html: Nomes de domínio que essa instância encontrou no fediverso
         title: Publicar lista de instâncias descobertas
       preview_sensitive_media:
-        desc_html: A pré-visualização do link em outros sites vai incluir uma miniatura mesmo se a mídia estiver marcada como sensível
-        title: Mostrar mídia sensível em pré-visualizações OpenGraph
+        desc_html: A prévia do link em outros sites vai incluir uma miniatura mesmo se a mídia estiver marcada como sensível
+        title: Mostrar mídia sensível em prévias OpenGraph
       profile_directory:
         desc_html: Permitir que usuários possam ser descobertos
         title: Ativar diretório de perfis
       registrations:
         closed_message:
-          desc_html: Exibido na página inicial quando cadastros estão fechados. Você pode usar tags HTML
-          title: Mensagem de cadastros fechados
+          desc_html: Mostrado na página inicial quando a instância está fechada. Você pode usar tags HTML
+          title: Mensagem de instância fechada
         deletion:
-          desc_html: Permitir que qualquer um delete a sua conta
+          desc_html: Permitir que qualquer um exclua a própria conta
           title: Exclusão aberta de contas
         min_invite_role:
           disabled: Ninguém
           title: Permitir convites de
       registrations_mode:
         modes:
-          approved: Aprovação necessária para cadastro
-          none: Ninguém pode se cadastrar
-          open: Qualquer um pode se cadastrar
-        title: Modo de cadastro
+          approved: Aprovação necessária para criar conta
+          none: Ninguém pode criar conta
+          open: Qualquer um pode criar conta
+        title: Modo de novos usuários
       show_known_fediverse_at_about_page:
-        desc_html: Quando ligado, vai mostrar toots de todo o fediverso conhecido na prévia da timeline. Senão, mostra somente toots locais.
-        title: Mostrar fediverso conhecido na prévia da timeline
+        desc_html: Quando ativado, mostra toots globais na prévia da linha, se não, mostra somente toots locais
+        title: Mostrar toots globais na prévia da linha
       show_staff_badge:
         desc_html: Mostrar uma insígnia de Equipe na página de usuário
         title: Mostrar insígnia de equipe
@@ -460,171 +496,220 @@ pt-BR:
         title: Descrição da instância
       site_description_extended:
         desc_html: Um ótimo lugar para seu código de conduta, regras, diretrizes e outras coisas para diferenciar a sua instância. Você pode usar tags HTML
-        title: Informação estendida customizada
+        title: Informação estendida personalizada
       site_short_description:
-        desc_html: Aparece na barra lateral e nas meta tags. Descreva o que é Mastodon e o que faz esse servidor especial em um único parágrafo. Se não for preenchido, é substituído pela descrição da instância.
+        desc_html: Mostrada na barra lateral e em etiquetas de metadados. Descreve o que é o Mastodon e o que torna esta instância especial num único parágrafo. Se deixada em branco, é substituído pela descrição da instância.
         title: Descrição curta da instância
       site_terms:
-        desc_html: Você pode escrever a sua própria política de privacidade, termos de serviço, entre outras coisas. Você pode usar tags HTML
-        title: Termos de serviço customizados
+        desc_html: Você pode escrever a sua própria Política de Privacidade, Termos de Serviço, entre outras coisas. Você pode usar tags HTML
+        title: Termos de serviço personalizados
       site_title: Nome da instância
       spam_check_enabled:
+        desc_html: Mastodon pode denunciar automaticamente contas que enviem repetidamente toots não solicitados. Pode haver falsos positivos.
         title: Automação anti-spam
       thumbnail:
         desc_html: Usada para prévias via OpenGraph e API. Recomenda-se 1200x630px
         title: Miniatura da instância
       timeline_preview:
-        desc_html: Exibir a timeline pública na página inicial
-        title: Prévia da timeline
+        desc_html: Mostra a linha do tempo pública na página inicial e permite acesso da API à mesma sem autenticação
+        title: Permitir acesso não autenticado à linha pública
       title: Configurações do site
+      trendable_by_default:
+        desc_html: Afeta as hashtags que não foram reprovadas anteriormente
+        title: Permitir que hashtags fiquem em alta sem revisão prévia
       trends:
+        desc_html: Mostrar publicamente hashtags previamente revisadas que estão em alta
         title: Hashtags em alta
     statuses:
       back_to_account: Voltar para página da conta
       batch:
-        delete: Deletar
-        nsfw_off: Marcar como não-sensível
+        delete: Excluir
+        nsfw_off: Desmarcar como sensível
         nsfw_on: Marcar como sensível
       deleted: Excluídos
-      failed_to_execute: Falha em executar
+      failed_to_execute: Falha ao executar
       media:
         title: Mídia
-      no_media: Não há mídia
+      no_media: Sem mídia
       no_status_selected: Nenhum status foi modificado porque nenhum estava selecionado
-      title: Postagens da conta
+      title: Toots da conta
       with_media: Com mídia
     tags:
+      accounts_today: Usos únicos de hoje
+      accounts_week: Usos únicos desta semana
+      breakdown: Descrição do consumo atual por fonte
       context: Contexto
       directory: No diretório
+      in_directory: "%{count} no diretório"
+      last_active: Última atividade
       most_popular: Mais populares
       most_recent: Mais recentes
       name: Hashtag
+      review: Status da revisão
+      reviewed: Revisado
       title: Hashtags
       trending_right_now: Em alta no momento
+      unique_uses_today: "%{count} tootando hoje"
       unreviewed: Não revisadas
       updated_msg: Configurações de hashtag atualizadas com sucesso
     title: Administração
     warning_presets:
-      add_new: Adicionar um novo
+      add_new: Adicionar novo
       delete: Excluir
       edit: Editar
       edit_preset: Editar o aviso pré-definido
       title: Gerenciar os avisos pré-definidos
   admin_mailer:
     new_pending_account:
-      body: Os detalhes da nova conta estão abaixo. Você pode aprovar ou rejeitar essa aplicação.
+      body: Os detalhes da nova conta estão abaixo. Você pode aprovar ou vetar.
       subject: Nova conta para revisão em %{instance} (%{username})
     new_report:
       body: "%{reporter} denunciou %{target}"
       body_remote: Alguém da instância %{domain} reportou %{target}
       subject: Nova denúncia sobre %{instance} (#%{id})
+    new_trending_tag:
+      body: 'A hashtag #%{name} está em alta hoje, mas não foi previamente revisada. Ela não estará visível publicamente a menos que você aprove, ou apenas salve o formulário do jeito que está para nunca mais ouvir falar dela.'
+      subject: Nova hashtag disponível para revisão em %{instance} (#%{name})
+  aliases:
+    add_new: Criar alias
+    created_msg: Um novo alias foi criado com sucesso. Agora você pode se mudar.
+    deleted_msg: Alias excluído com sucesso. Não será mais possível se mudar para esta conta.
+    hint_html: Se você quiser migrar de uma outra conta para esta, você pode criar um alias aqui, o que é necessário antes que você possa migrar os seguidores da conta antiga para esta. Esta ação por si só é <strong>inofensiva e reversível</strong>. <strong>A migração da conta é iniciada pela conta antiga</strong>.
+    remove: Desvincular alias
   appearance:
+    advanced_web_interface: Interface avançada de colunas
+    advanced_web_interface_hint: 'Se você deseja usar toda a sua largura de tela, a interface avançada permite que você configure muitas colunas diferentes para ver tantas informações ao mesmo tempo quanto você deseja: Página inicial, notificações, linha local, linha global, qualquer número de listas e hashtags.'
     animations_and_accessibility: Animações e acessibilidade
-    confirmation_dialogs: Popups de confirmação
+    confirmation_dialogs: Diálogos de confirmação
     discovery: Descobrir
+    localization:
+      body: Mastodon é traduzido por voluntários.
+      guide_link: https://br.crowdin.com/project/mastodon
+      guide_link_text: Todos podem contribuir.
     sensitive_content: Conteúdo sensível
+    toot_layout: Layout do Toot
   application_mailer:
-    notification_preferences: Mudar preferências de e-mail
+    notification_preferences: Alterar preferências de e-mail
     salutation: "%{name},"
-    settings: 'Mudar e-mail de preferência: %{link}'
-    view: 'Visualizar:'
+    settings: 'Alterar e-mail de preferência: %{link}'
+    view: 'Ver:'
     view_profile: Ver perfil
-    view_status: Ver status
+    view_status: Ver toot
   applications:
-    created: Aplicação criada com sucesso
-    destroyed: Aplicação excluída com sucesso
-    invalid_url: A URL provida é inválida
-    regenerate_token: Regenerar token de acesso
-    token_regenerated: Token de acesso renegerado com sucesso
+    created: Aplicativo criado com sucesso
+    destroyed: Aplicativo excluído com sucesso
+    invalid_url: O link fornecido é inválido
+    regenerate_token: Gerar código de acesso
+    token_regenerated: Código de acesso gerado com sucesso
     warning: Tenha cuidado com estes dados. Nunca compartilhe com alguém!
-    your_token: Seu token de acesso
+    your_token: Seu código de acesso
   auth:
-    apply_for_account: Pedir um convite
+    apply_for_account: Solicitar convite
     change_password: Senha
-    checkbox_agreement_html: Eu concordo com <a href="%{rules_path}" target="_blank">as regras do servidor</a> e com <a href="%{terms_path}" target="_blank">os termos de serviço</a>
-    checkbox_agreement_without_rules_html: Concordo com os <a href="%{terms_path}" target="_blank">termos do serviço </a>
+    checkbox_agreement_html: Concordo com <a href="%{rules_path}" target="_blank">as regras da instância</a> e com <a href="%{terms_path}" target="_blank">os termos de serviço</a>
+    checkbox_agreement_without_rules_html: Concordo com os <a href="%{terms_path}" target="_blank">termos do serviço</a>
     delete_account: Excluir conta
-    delete_account_html: Se você deseja excluir a sua conta, você pode <a href="%{path}">prosseguir para cá</a>. Uma confirmação será requisitada.
+    delete_account_html: Se você deseja excluir sua conta, você pode <a href="%{path}">fazer isso aqui</a>. Uma confirmação será solicitada.
     description:
-      prefix_invited_by_user: "@%{name} convidou você para entrar neste servidor do Mastodon!"
-      prefix_sign_up: Cadastre-se no Mastodon hoje!
-      suffix: Com uma conta, você poderá seguir pessoas, postar atualizações, trocar mensagens com usuários de qualquer servidor Mastodon e muito mais!
+      prefix_invited_by_user: "@%{name} convidou você para entrar nesta instância Mastodon!"
+      prefix_sign_up: Crie uma conta no Mastodon hoje!
+      suffix: Com uma conta, você poderá seguir pessoas, postar atualizações, trocar mensagens com usuários de qualquer instância Mastodon e muito mais!
     didnt_get_confirmation: Não recebeu instruções de confirmação?
     forgot_password: Esqueceu a sua senha?
-    invalid_reset_password_token: Token de modificação de senha é inválido ou expirou. Por favor, requisite um novo.
+    invalid_reset_password_token: Código de alteração de senha é inválido ou expirou. Por favor, solicite um novo.
     login: Entrar
     logout: Sair
-    migrate_account: Mudar para uma conta diferente
+    migrate_account: Mudar-se para outra conta
     migrate_account_html: Se você quer redirecionar essa conta para uma outra você pode <a href="%{path}">configurar isso aqui</a>.
-    or_log_in_with: Ou faça login com
+    or_log_in_with: Ou entre com
     providers:
       cas: CAS
       saml: SAML
-    register: Cadastrar-se
+    register: Criar conta
     registration_closed: "%{instance} não está aceitando novos membros"
     resend_confirmation: Reenviar instruções de confirmação
     reset_password: Redefinir senha
     security: Segurança
     set_new_password: Definir uma nova senha
-    trouble_logging_in: Problemas para se conectar?
+    setup:
+      email_below_hint_html: Se o endereço de e-mail abaixo não for seu, você pode alterá-lo aqui e receber um novo e-mail de confirmação.
+      email_settings_hint_html: O e-mail de confirmação foi enviado para %{email}. Se esse endereço de e-mail não estiver correto, você pode alterá-lo nas configurações da conta.
+      title: Configurações
+    status:
+      account_status: Status da conta
+      confirming: Confirmação por e-mail pendente.
+      functional: Sua conta está totalmente operacional.
+      pending: Sua solicitação está com revisão pendente por parte de nossa equipe. Você receberá um e-mail se ela for aprovada.
+      redirecting_to: Sua conta está inativa porque atualmente está redirecionando para %{acct}.
+    trouble_logging_in: Problemas para entrar?
   authorize_follow:
-    already_following: Você já está seguindo esta conta
+    already_following: Você já segue
     error: Infelizmente, ocorreu um erro ao buscar a conta remota
     follow: Seguir
-    follow_request: 'Você mandou uma solicitação de seguidor para:'
+    follow_request: 'Você mandou uma solicitação para seguir para:'
     following: 'Sucesso! Você agora está seguindo:'
     post_follow:
       close: Ou você pode simplesmente fechar esta janela.
-      return: Exibir o perfil do usuário
-      web: Voltar para a página inicial
+      return: Mostrar o perfil do usuário
+      web: Voltar à página inicial
     title: Seguir %{acct}
   challenge:
+    confirm: Continuar
+    hint_html: "<strong>Dica:</strong> Não pediremos novamente sua senha pela próxima hora."
     invalid_password: Senha inválida
     prompt: Confirme sua senha para continuar
   datetime:
     distance_in_words:
       about_x_hours: "%{count}h"
-      about_x_months: "%{count} meses"
-      about_x_years: "%{count} anos"
-      almost_x_years: "%{count} anos"
+      about_x_months: "%{count}m"
+      about_x_years: "%{count}a"
+      almost_x_years: "%{count}a"
       half_a_minute: Agora
-      less_than_x_minutes: "%{count} meses"
+      less_than_x_minutes: "%{count}m"
       less_than_x_seconds: Agora
-      over_x_years: "%{count} anos"
-      x_days: "%{count} dias"
-      x_minutes: "%{count} minutos"
-      x_months: "%{count} meses"
-      x_seconds: "%{count} segundos"
+      over_x_years: "%{count}a"
+      x_days: "%{count}d"
+      x_minutes: "%{count}min"
+      x_months: "%{count}m"
+      x_seconds: "%{count}seg"
   deletes:
     challenge_not_passed: As informações que você inseriu não estão corretas
-    confirm_password: Insira a sua senha atual para verificar a sua identidade
+    confirm_password: Digite a sua senha atual para verificar a sua identidade
     confirm_username: Digite seu nome de usuário para confirmar o procedimento
     proceed: Excluir conta
     success_msg: A sua conta foi excluída com sucesso
     warning:
       before: 'Antes de prosseguir, por favor leia com cuidado:'
-      data_removal: Suas postagens e outros dados serão removidos permanentemente
+      caches: Conteúdo que foi armazenado em cache por outras instâncias pode continuar a existir
+      data_removal: Seus toots e outros dados serão removidos permanentemente
+      email_change_html: Você pode <a href="%{path}">alterar seu endereço de e-mail</a> sem excluir sua conta
+      email_contact_html: Se você ainda não recebeu, você pode enviar um e-mail pedindo ajuda para <a href="mailto:%{email}">%{email}</a>
+      email_reconfirmation_html: Se você não está recebendo o e-mail de confirmação, você pode <a href="%{path}">solicitá-lo novamente</a>
+      irreversible: Você não conseguirá restaurar ou reativar a sua conta
+      more_details_html: Para mais detalhes, consulte a <a href="%{terms_path}">Política de Privacidade</a>.
       username_available: Seu nome de usuário ficará disponível novamente
       username_unavailable: Seu nome de usuário permanecerá indisponível
   directories:
     directory: Diretório de perfis
     explanation: Descobrir usuários baseado em seus interesses
-    explore_mastodon: Explorar %{title}
+    explore_mastodon: Explore o %{title}
+  domain_validator:
+    invalid_domain: não é um nome de domínio válido
   errors:
-    '400': The request you submitted was invalid or malformed.
+    '400': A solicitação enviada é inválida ou incorreta.
     '403': Você não tem permissão para ver esta página.
     '404': A página pela qual você está procurando não existe.
-    '406': This page is not available in the requested format.
-    '410': A página pela qual você está procurando não existe mais.
+    '406': Esta página não está disponível no formato solicitado.
+    '410': A página que você procura não existe mais.
     '422':
-      content: A verificação de segurança falhou. Você desativou o uso de cookies?
-      title: Verificação de segurança falhou
-    '429': Muitas requisições
+      content: Falha na verificação de segurança. Você desativou o uso de cookies?
+      title: Falha na verificação de segurança
+    '429': Muitas solicitações
     '500':
-      content: Desculpe, algo deu errado.
+      content: Desculpe, algo deu errado por aqui.
       title: Esta página não está certa
-    '503': The page could not be served due to a temporary server failure.
-    noscript_html: Para usar o aplicativo web do Mastodon, por favor ative o JavaScript. Ou, se quiser, experimente um dos <a href="%{apps_path}">apps nativos</a> para o Mastodon em sua plataforma.
+    '503': A página não pôde ser carregada devido a uma falha temporária do servidor.
+    noscript_html: Para usar o aplicativo web do Mastodon, por favor ative o JavaScript. Ou, se quiser, experimente um dos <a href="%{apps_path}">aplicativos nativos</a> para o Mastodon em sua plataforma.
   existing_username_validator:
     not_found: não foi possível encontrar um usuário local com esse nome de usuário
     not_found_multiple: não foi possível encontrar %{usernames}
@@ -632,50 +717,53 @@ pt-BR:
     archive_takeout:
       date: Data
       download: Baixe o seu arquivo
-      hint_html: Você pode pedir um arquivo dos seus <strong>toots e mídia enviada</strong>. Os dados exportados estarão no formato ActivityPub, que podem ser lidos por qualquer software compatível. Você pode pedir um arquivo a cada 7 dias.
+      hint_html: Você pode pedir um arquivo dos seus <strong>toots e mídias enviadas</strong>. Os dados exportados estarão no formato ActivityPub, que podem ser lidos por qualquer software compatível. Você pode pedir um arquivo a cada 7 dias.
       in_progress: Preparando o seu arquivo...
       request: Solicitar o seu arquivo
       size: Tamanho
     blocks: Você bloqueou
     csv: CSV
     domain_blocks: Bloqueios de domínio
-    follows: Você segue
     lists: Listas
     mutes: Você silenciou
     storage: Armazenamento de mídia
   featured_tags:
-    add_new: Adicionar uma nova hashtag
+    add_new: Adicionar hashtag
     errors:
       limit: Você atingiu o limite de hashtags em destaque
+    hint_html: "<strong>O que são hashtags em destaque?</strong> Elas são mostradas no seu perfil público e permitem que as pessoas acessem seus toots públicos que contenham especificamente essas hashtags. São uma excelente ferramenta para acompanhar os trabalhos criativos ou os projetos de longo prazo."
   filters:
     contexts:
       home: Página inicial
       notifications: Notificações
-      public: Timelines públicas
+      public: Linhas públicas
       thread: Conversas
     edit:
       title: Editar filtro
     errors:
       invalid_context: Contexto inválido ou nenhum contexto informado
-      invalid_irreversible: O filtro irreversível só funciona com contexto de página inicial ou notificações
+      invalid_irreversible: O filtro irreversível só funciona com os contextos página inicial e notificações
     index:
       delete: Remover
+      empty: Sem filtros.
       title: Filtros
     new:
-      title: Adicionar novo filtro
+      title: Adicionar filtro
   footer:
     developers: Desenvolvedores
     more: Mais…
     resources: Recursos
+    trending_now: Em alta agora
   generic:
     all: Tudo
-    changes_saved_msg: Mudanças salvas com sucesso!
+    changes_saved_msg: Alterações foram salvas com sucesso!
     copy: Copiar
+    no_batch_actions_available: Nenhuma ação em lote disponível nesta página
     order_by: Ordenar por
-    save_changes: Salvar mudanças
+    save_changes: Salvar alterações
     validation_errors:
-      one: Algo não está certo! Por favor, reveja o erro abaixo
-      other: Algo não está certo! Por favor, reveja os %{count} erros abaixo
+      one: Algo errado não está certo! Por favor, analise o erro abaixo
+      other: Algo errado não está certo! Por favor, analise os %{count} erros abaixo
   html_validator:
     invalid_markup: 'contém HTML inválido: %{error}'
   identity_proofs:
@@ -683,24 +771,24 @@ pt-BR:
     authorize: Sim, autorizar
     authorize_connection_prompt: Autorizar essa conexão criptográfica?
     errors:
-      failed: A conexão criptográfica falhou. Por favor tente novamente a partir de %{provider}.
+      failed: Falha na conexão criptográfica. Por favor, tente novamente a partir de %{provider}.
       keybase:
-        invalid_token: Tokens keybase são hashs de assinatura e devem conter 66 caracteres hexa
-        verification_failed: Keybase não reconhece esse token como uma assinatura do usuário keybase %{kb_username}. Por favor tente novamente a partir de Keybase.
-      wrong_user: Não é possível criar uma prova para %{proving} estando logado como %{current}. Faça login como %{proving} e tente novamente.
-    explanation_html: Você pode conectar criptograficamente suas outras identidades, tais quais seu perfil Keybase. Isso permite outras pessoas de lhe enviarem mensagens encriptadas e confiar no conteúdo que você as envia.
+        invalid_token: Tokens keybase são hashes de assinatura e devem conter 66 caracteres hexa
+        verification_failed: Keybase não reconhece esse token como uma assinatura do usuário keybase %{kb_username}. Por favor, tente novamente a partir do Keybase.
+      wrong_user: Não foi possível criar uma prova para %{proving} como %{current}. Entre como %{proving} e tente novamente.
+    explanation_html: Você pode conectar criptograficamente suas outras identidades, tais quais seu perfil Keybase. Isso permite outras pessoas de lhe enviarem mensagens criptografadas e confiar no conteúdo que você as envia.
     i_am_html: Eu sou %{username} em %{service}.
     identity: Identidade
     inactive: Inativo
-    publicize_checkbox: 'E publique isso:'
+    publicize_checkbox: 'E toote isso:'
     publicize_toot: 'Está provado! Eu sou %{username} no %{service}: %{url}'
     status: Status da verificação
     view_proof: Ver prova
   imports:
     modes:
       merge: Juntar
-      merge_long: Manter os registros existentes e adicionar os novos
-      overwrite: Sobreescrever
+      merge_long: Manter os registros existentes e adicionar novos
+      overwrite: Sobrescrever
       overwrite_long: Substituir os registros atuais com os novos
     preface: Você pode importar dados que você exportou de outra instância, como a lista de pessoas que você segue ou bloqueou.
     success: Os seus dados foram enviados com sucesso e serão processados em instantes
@@ -708,7 +796,7 @@ pt-BR:
       blocking: Lista de bloqueio
       domain_blocking: Lista de domínios bloqueados
       following: Pessoas que você segue
-      muting: Lista de silêncio
+      muting: Lista de silenciados
     upload: Enviar
   in_memoriam_html: Em memória.
   invites:
@@ -722,35 +810,54 @@ pt-BR:
       '604800': 1 semana
       '86400': 1 dia
     expires_in_prompt: Nunca
-    generate: Gerar
-    invited_by: 'Você recebeu um convite de:'
+    generate: Gerar convite
+    invited_by: 'Você recebeu convite de:'
     max_uses:
       one: 1 uso
       other: "%{count} usos"
     max_uses_prompt: Sem limite
-    prompt: Gerar e compartilha links com outras pessoas para permitir acesso a essa instância
+    prompt: Gere e compartilhe links para permitir acesso a essa instância
     table:
       expires_at: Expira em
       uses: Usos
     title: Convidar pessoas
   lists:
     errors:
-      limit: Você alcançou o número máximo de listas
+      limit: Você atingiu o máximo de listas
   media_attachments:
     validations:
-      images_and_video: Não é possível anexar um vídeo a uma postagem que já contém imagens
-      too_many: Não é possível anexar mais de 4 imagens
+      images_and_video: Não foi possível anexar um vídeo a um toot que já contém imagens
+      too_many: Não foi possível anexar mais de 4 imagens
   migrations:
-    acct: username@domain da nova conta
+    acct: Mudou-se para
+    cancel: Cancelar redirecionamento
+    cancel_explanation: Cancelar o redirecionamento reativará a sua conta atual, mas não trará de volta os seguidores que não foram migrados para aquela conta.
+    cancelled_msg: Redirecionamento cancelado com sucesso.
+    errors:
+      already_moved: é a mesma conta que você migrou
+      missing_also_known_as: não está referenciando esta conta
+      move_to_self: não pode ser a conta atual
+      not_found: não pôde ser encontrado
+      on_cooldown: Você está no período de espera
+    followers_count: Seguidores no momento da mudança
     incoming_migrations: Migrando de outra conta
+    incoming_migrations_html: Para mover de outra conta para esta, você precisa <a href="%{path}">criar um alias</a>.
     moved_msg: Agora sua conta está redirecionando para %{acct} e seus seguidores estão sendo movidos.
     not_redirecting: Sua conta não está redirecionando para nenhuma outra conta atualmente.
     on_cooldown: Você migrou recentemente sua conta. Esta função ficará disponível novamente em %{count} dias.
     past_migrations: Migrações passadas
     proceed_with_move: Migrar seguidores
     redirecting_to: Sua conta está redirecionando para %{acct}.
+    set_redirect: Definir redirecionamento
     warning:
+      backreference_required: A nova conta deve primeiro ser configurada para que esta seja referenciada
       before: 'Antes de prosseguir, por favor leia com cuidado:'
+      cooldown: Depois de se mudar, há um período de espera para poder efetuar uma nova mudança
+      disabled_account: Sua conta não estará totalmente funcional ao término deste processo. Entretanto, você terá acesso à exportação de dados bem como à reativação.
+      followers: Esta ação moverá todos os seguidores da conta atual para a nova conta
+      only_redirect_html: Alternativamente, você pode <a href="%{path}">apenas colocar um redirecionamento no seu perfil</a>.
+      other_data: Nenhum outro dado será movido automaticamente
+      redirect: O perfil atual da sua conta será atualizado com um aviso de redirecionamento e também será excluído das pesquisas
   moderation:
     title: Moderação
   notification_mailer:
@@ -759,55 +866,75 @@ pt-BR:
       body: Aqui está um breve resumo das mensagens que você perdeu desde o seu último acesso em %{since}
       mention: "%{name} te mencionou em:"
       new_followers_summary:
-        one: Você tem um novo seguidor! Yay!
-        other: Você tem %{count} novos seguidores! Maravilha!
+        one: Você tem um novo seguidor! Uia!
+        other: Você tem %{count} novos seguidores! AÊÊÊ!
       subject:
         one: "Uma nova notificação desde o seu último acesso \U0001F418"
         other: "%{count} novas notificações desde o seu último acesso \U0001F418"
       title: Enquanto você estava ausente...
     favourite:
-      body: 'Sua postagem foi favoritada por %{name}:'
-      subject: "%{name} favoritou a sua postagem"
+      body: "%{name} favoritou seu toot:"
+      subject: "%{name} favoritou seu toot"
       title: Novo favorito
     follow:
-      body: "%{name} está te seguindo!"
-      subject: "%{name} está te seguindo"
+      body: "%{name} te seguiu!"
+      subject: "%{name} te seguiu"
       title: Novo seguidor
     follow_request:
-      action: Gerenciar solicitações para seguir
-      body: "%{name} requisitou autorização para te seguir"
+      action: Gerenciar seguidores pendentes
+      body: "%{name} solicitou autorização para te seguir"
       subject: 'Seguidor pendente: %{name}'
-      title: Nova solicitação de seguidor
+      title: Nova solicitação para seguir
     mention:
       action: Responder
-      body: 'Você foi mencionado por %{name} em:'
-      subject: Você foi mencionado por %{name}
+      body: "%{name} te mencionou em:"
+      subject: "%{name} te mencionou"
       title: Nova menção
     reblog:
-      body: 'Sua postagem foi compartilhada por %{name}:'
-      subject: "%{name} compartilhou a sua postagem"
-      title: Novo compartilhamento
+      body: "%{name} deu boost no seu toot:"
+      subject: "%{name} deu boost no seu toot"
+      title: Novo boost
+  notifications:
+    email_events: Eventos para notificações por e-mail
+    email_events_hint: 'Selecione os eventos que deseja receber notificações:'
+    other_settings: Outras opções para notificações
+  number:
+    human:
+      decimal_units:
+        format: "%n%u"
+        units:
+          billion: BI
+          million: MI
+          quadrillion: QUA
+          thousand: MIL
+          trillion: TRI
   pagination:
     newer: Mais novo
     next: Próximo
     older: Mais antigo
     prev: Anterior
+    truncate: "&hellip;"
   polls:
     errors:
-      already_voted: Você já votou nessa enquete
+      already_voted: Enquete votada
       duplicate_options: contém itens duplicados
-      duration_too_long: está muito longe no futuro
+      duration_too_long: é muito longe no futuro
       duration_too_short: é curto demais
       expired: A enquete já terminou
+      invalid_choice: Opção inválida
       over_character_limit: não pode ter mais que %{max} caracteres em cada
       too_few_options: deve ter mais que um item
       too_many_options: não pode ter mais que %{max} itens
   preferences:
     other: Outro
+    posting_defaults: Padrões de publicação
+    public_timelines: Linhas públicas
   relationships:
     activity: Atividade da conta
     dormant: Inativo
-    last_active: Ativo por último em
+    followers: Seguidores
+    following: Seguindo
+    last_active: Última atividade
     most_recent: Mais recente
     moved: Mudou-se
     mutual: Mútuo
@@ -818,26 +945,26 @@ pt-BR:
     remove_selected_follows: Deixar de seguir usuários selecionados
     status: Status da conta
   remote_follow:
-    acct: Insira o seu usuário@domínio a partir do qual você deseja agir
-    missing_resource: Não foi possível encontrar a URL de direcionamento para a sua conta
-    no_account_html: Não tem uma conta? Você pode <a href='%{sign_up_path}' target='_blank'>cadastrar-se aqui</a>
-    proceed: Prosseguir para seguir
-    prompt: 'Você irá seguir:'
-    reason_html: "<strong>Por que esse passo é necessário?</strong> <code>%{instance}</code> pode não ser o servidor onde você se registrou, então precisamos redirecionar você para o seu servidor primeiro."
+    acct: Digite o seu usuário@domínio para continuar
+    missing_resource: Não foi possível encontrar o link de redirecionamento para sua conta
+    no_account_html: Não tem uma conta? Você pode <a href='%{sign_up_path}' target='_blank'>criar uma aqui</a>
+    proceed: Continue para seguir
+    prompt: 'Você seguirá:'
+    reason_html: "<strong>Por que esse passo é necessário?</strong> <code>%{instance}</code> pode não ser a instância onde você se hospedou, então precisamos redirecionar você para a sua instância primeiro."
   remote_interaction:
     favourite:
-      proceed: Proceder para favoritar
-      prompt: 'Você quer favoritar este toot:'
+      proceed: Continue para favoritar
+      prompt: 'Você favoritará este toot:'
     reblog:
-      proceed: Proceder para compartilhar
-      prompt: 'Você quer compartilhar esse toot:'
+      proceed: Continue para dar boost
+      prompt: 'Você dará boost neste toot:'
     reply:
-      proceed: Proceder para responder
-      prompt: 'Você quer responder à esse toot:'
+      proceed: Continue para responder
+      prompt: 'Você responderá este toot:'
   scheduled_statuses:
-    over_daily_limit: Você excedeu o limite de %{limit} toots planejados para esse dia
-    over_total_limit: Você excedeu o limite de %{limit} toots planejados
-    too_soon: A data planejada precisa ser no futuro
+    over_daily_limit: Você excedeu o limite de %{limit} toots agendados para esse dia
+    over_total_limit: Você excedeu o limite de %{limit} toots agendados
+    too_soon: A data agendada precisa ser no futuro
   sessions:
     activity: Última atividade
     browser: Navegador
@@ -861,7 +988,7 @@ pt-BR:
       weibo: Weibo
     current_session: Sessão atual
     description: "%{browser} em %{platform}"
-    explanation: Estes são os navegadores que estão conectados com a sua conta do Mastodon.
+    explanation: Estes são os navegadores que estão conectados com a sua conta Mastodon.
     ip: IP
     platforms:
       adobe_air: Adobe Air
@@ -871,19 +998,20 @@ pt-BR:
       firefox_os: Firefox OS
       ios: iOS
       linux: Linux
-      mac: Mac
+      mac: MacOS
       other: Plataforma desconhecida
       windows: Windows
       windows_mobile: Windows Mobile
       windows_phone: Windows Phone
-    revoke: Revogar
-    revoke_success: Sessão revogada com sucesso
+    revoke: Fechar
+    revoke_success: Sessão fechada com sucesso
     title: Sessões
   settings:
     account: Conta
     account_settings: Configurações da conta
+    aliases: Alias da conta
     appearance: Aparência
-    authorized_apps: Apps autorizados
+    authorized_apps: Aplicativos autorizados
     back: Voltar para o Mastodon
     delete: Exclusão de conta
     development: Desenvolvimento
@@ -898,7 +1026,9 @@ pt-BR:
     preferences: Preferências
     profile: Perfil
     relationships: Seguindo e seguidores
-    two_factor_authentication: Autenticação em dois passos
+    two_factor_authentication: Autenticação de dois fatores
+  spam_check:
+    spam_detected: Esta é uma denúncia automática. Spam foi detectado.
   statuses:
     attached:
       description: 'Anexado: %{attached}'
@@ -908,21 +1038,24 @@ pt-BR:
       video:
         one: "%{count} vídeo"
         other: "%{count} vídeos"
-    boosted_from_html: Compartilhada de %{acct_link}
-    content_warning: 'Aviso de conteúdo: %{warning}'
+    boosted_from_html: Boost de %{acct_link}
+    content_warning: 'Aviso de Conteúdo: %{warning}'
     disallowed_hashtags:
-      one: 'continha a hashtag não permitida: %{tags}'
-      other: 'continha as hashtags não permitidas: %{tags}'
+      one: 'continha hashtag não permitida: %{tags}'
+      other: 'continha hashtags não permitidas: %{tags}'
     language_detection: Detectar idioma automaticamente
     local_only: Somente local
     open_in_web: Abrir na web
     over_character_limit: limite de caracteres de %{max} excedido
     pin_errors:
-      limit: Você já fixou a quantidade máxima de toots
-      ownership: Toots de outras pessoas não podem ser fixados
-      private: Toot não-público não pode ser fixado
-      reblog: Um compartilhamento não pode ser fixado
+      limit: Quantidade máxima de toots excedida
+      ownership: Toots dos outros não podem ser fixados
+      private: Toots não-públicos não podem ser fixados
+      reblog: Boosts não podem ser fixados
     poll:
+      total_people:
+        one: "%{count} pessoa"
+        other: "%{count} pessoas"
       total_votes:
         one: "%{count} voto"
         other: "%{count} votos"
@@ -931,124 +1064,125 @@ pt-BR:
     sign_in_to_participate: Entre para participar dessa conversa
     title: '%{name}: "%{quote}"'
     visibilities:
-      private: Apenas seguidores
-      private_long: Mostrar apenas para seguidores
+      private: Privado
+      private_long: Posta apenas para seguidores
       public: Público
-      public_long: Todos podem ver
-      unlisted: Não listado
-      unlisted_long: Todos podem ver, porém não será postado nas timelines públicas
+      public_long: Posta em linhas públicas
+      unlisted: Não-listado
+      unlisted_long: Não posta em linhas públicas
   stream_entries:
     pinned: Toot fixado
-    reblogged: compartilhou
+    reblogged: levou boost
     sensitive_content: Conteúdo sensível
   tags:
     does_not_match_previous_name: não corresponde ao nome anterior
   terms:
     body_html: |
-      <h2>Política de privacidade</h2>
-      <h3 id="collect">Que informação nós coletamos?</h3>
+      <h2>Política de Privacidade</h2>
+      <h3 id="collect">Quais dados nós coletamos?</h3>
 
       <ul>
-      <li><em>Informação básica de conta</em>: Se você se registrar nesse servidor, podemos pedir que você utilize um nome de usuário, um e-mail e uma senha. Você também pode adicionar informações extras como um nome de exibição e biografia; enviar uma imagem de perfil e imagem de cabeçalho. O nome de usuário, nome de exibição, biografia, imagem de perfil e imagem de cabeçalho são sempre listadas publicamente.</li>
-      <li><em>Posts, informação de seguidores e outras informações públicas</em>: A lista de pessoas que você segue é listada publicamente, o mesmo é verdade para quem te segue. Quando você envia uma mensagem, a data e o horário são armazenados, assim como a aplicação que você usou para enviar a mensagem. Mensagens podem conter mídias anexadas, como imagens e vídeos. Posts públicos e não-listados estão disponíveis publicamente. Quando você destaca um post no seu perfil, isso também é uma informação pública. Seus posts são entregues aos seus seguidores e em alguns casos isso significa que eles são enviados para servidores diferentes e cópias são armazenadas nesses servidores. Quando você remove posts, essa informação também é entregue aos seus seguidores. O ato de compartilhar ou favoritar um outro post é sempre público.</li>
-      <li><em>Mensagens diretas e posts somente para seguidores</em>: Todos os posts são armazenados e processados no servidor. Posts somente para seguidores são entregues aos seus seguidores e usuários que são mencionados neles; mensagens diretas são entregues somente aos usuários mencionados nelas. Em alguns casos isso significa que as mensagens são entregues para servidores diferentes e cópias são armazenadas nesses servidores. Nós fazemos esforços substanciais para limitar o acesso dessas mensagens somente para as pessoas autorizadas, mas outros servidores podem não fazer o mesmo. É importante portanto revisar os servidores à qual seus seguidores pertencem. Você pode usar uma opção para aprovar ou rejeitar novos seguidores manualmente nas configurações. <em>Por favor tenha em mente que os operadores do servidor e de qualquer servidores do destinatário podem ver tais mensagens</em>, e que os destinatários podem fazer capturas de tela, copiar ou de outra maneira compartilhar as mensagens. <em>Não compartilhe informação confidencial pelo Mastodon.</em></li>
-      <li><em>IPs e outros metadados</em>: Quando você faz se autentica, nos guardamos o endereço de IP que você usou ao se autenticar e o nome do seu navegador da internet. Todas as sessões autenticadas são disponíveis para serem analisadas e revogadas nas configurações. O último endereço de IP usado é guardado por até 12 meses. Nós também podemos reter históricos do servidor que incluem o endereço de IP de todas as requisições ao nosso servidor.</li>
+      <li><em>Dados básicos de conta</em>: Se você criar conta nesta instância, um nome de usuário, um e-mail e uma senha serão exigidos. Você também pode adicionar dados extras como nome de exibição, biografia, imagem de perfil e capa. Com exceção do e-mail e da senha, os dados citados sempre são públicos.</li>
+      <li><em>Toots, seguindo e outros dados públicos</em>: A lista de pessoas que você segue e a sua lista de seguidores são públicas. Ao enviar um toot, a data, a hora e o aplicativo usado são armazenados. Toots podem conter mídias anexadas, como áudios, imagens e vídeos. Toots públicos e não-listados são visíveis publicamente. Os toots fixados no seu perfil são públicos. Seus toots são enviados aos seus seguidores, em alguns casos isso significa que os toots são enviados para instâncias diferentes e cópias são armazenadas lá. Quando você exclui toots, essa informação também é enviada aos seus seguidores. O ato de dar boost ou favoritar outro toot é sempre público.</li></li>
+      <li><em>Mensagens Diretas e toots privados</em>: Todos os toots são armazenados e processados na instância. Toots privados são enviados aos seus seguidores e aos usuários mencionados neles; Mensagens Diretas (ou toots diretos) são enviadas somente aos usuários mencionados nelas. Em alguns casos isso significa que os toots são enviados para instâncias diferentes e cópias são armazenadas lá. Nós trabalhamos constantemente para limitar o acesso a estes toots somente às pessoas autorizadas, porém outras instâncias podem não fazer o mesmo. Portanto, é importante analisar as instâncias dos seus seguidores. Você pode trancar a conta para aprovar ou vetar novos seguidores manualmente nas configurações. <em>Por favor, tenha em mente que os operadores da instância em que se está e das instâncias receptoras podem ver tais toots</em>, e que os destinatários podem fazer capturas de tela, copiar ou usar outra maneira para compartilhar os toots. <em>Não compartilhe informação confidencial pelo Mastodon.</em></li>
+      <li><em>IPs e outros metadados</em>: Ao entrar na sua conta, nós armazenamos o seu endereço de IP e o nome do navegador usado. Todas as sessões abertas estão disponíveis para serem analisadas e revogadas nas configurações. O último endereço de IP usado é armazenado por até 12 meses. Nós também podemos reter históricos da instância que incluem o endereço de IP de todas as conexões à nossa instância.</li>
       </ul>
 
       <hr class="spacer" />
 
-      <h3 id="use">Para que usamos os seus dados?</h3>
+      <h3 id="use">Como usamos os seus dados?</h3>
 
-      <p>Toda informação que coletamos de você pode ser usada das seguintes maneiras:</p>
+      <p>Todo dado que coletamos pode ser usado das seguintes maneiras:</p>
 
       <ul>
-      <li>Para prover a funcionalidade básica do Mastodon. Você só pode interagir com o conteúdo de outras pessoas e postar seu próprio conteúdo estando autenticado. Por exemplo, você pode seguir outras pessoas para ver seus posts combinados na sua linha do tempo personalizada.</li>
+      <li>Para prover a funcionalidade básica do Mastodon. Você só pode interagir com o conteúdo de outras pessoas e postar seu próprio conteúdo usando uma conta. Por exemplo, você pode seguir outras pessoas para ver seus toots na sua própria linha do tempo personalizada.</li>
       <li>Para auxiliar na moderação da comunidade, por exemplo ao comparar o seu endereço de IP com outros endereços de IP conhecidos para determinar evasão de banimento e outras violações.</li>
-      <li>O endereço de email que você prover pode ser usado para lhe enviar informação, notificação sobre outras pessoas interagindo com o seu conteúdo ou lhe enviando mensagens e para responder a questões ou outros pedidos.</li>
+      <li>O endereço de e-mail que você fornecer pode ser usado para te enviar informações, notificações sobre outras pessoas interagindo com o seu conteúdo ou contigo e para responder a questões ou outras solicitações.</li>
       </ul>
 
       <hr class="spacer" />
 
-      <h3 id="protect">Como protegemos as suas informações?</h3>
+      <h3 id="protect">Como protegemos seus dados?</h3>
 
-      <p>Nós implementamos diversas medidas de segurança para manter a segurança das suas informações pessoais quando você as acessa ou as envia. Entre outras coisas, sua sessão do navegador, bem como o tráfego entre as aplicações e a API são asseguradas usando SSL e a sua senha é guardada usando um algoritmo forte de encriptação de mão única. Você pode ativar autenticação em dois fatores como forma de aumentar a segurança no acesso à sua conta.</p>
+      <p>Nós implementamos diversas medidas de segurança para manter suas informações pessoais seguras quando você as acessa ou as envia. Entre outras coisas, sua sessão do navegador, bem como o tráfego entre os aplicativos e a API são asseguradas usando SSL e a sua senha é guardada usando um algoritmo forte de criptografia de mão única. Você pode ativar autenticação em dois fatores como forma de aumentar a segurança no acesso à sua conta.</p>
 
       <hr class="spacer" />
 
       <h3 id="data-retention">Qual é a nossa política de retenção de dados?</h3>
 
-      <p>Nós fazemos esforços substanciais para:</p>
+      <p>Nós trabalhamos constantemente para:</p>
 
       <ul>
-      <li>Reter o histórico do servidor contendo os endereços de IP de todas as requisições feitas à esse servidor, e com respeito a quanto tempo esses logs são retidos, não mais que 90 dias.</li>
-      <li>Reter o endereço de IP associado com usuários registrados não mais que 12 meses.</li>
+      <li>Reter o histórico da instância contendo os endereços de IP de todas as conexões a essa instância. O histórico é mantido por não mais que 90 dias.</li>
+      <li>Reter os endereços de IP associados à usuários da instância por não mais que 12 meses.</li>
       </ul>
 
-      <p>Você pode pedir e fazer o download de um arquivo de todo o conteúdo da sua conta, incluindo as suas mensagens, suas mídias anexadas, imagem de perfil e imagem de topo.</p>
+      <p>Você pode solicitar e baixar um arquivo de todo o conteúdo da sua conta, incluindo seus toots, suas mídias, imagem de perfil e capa.</p>
 
-      <p>Você pode remover irreversivelmente a sua conta a qualquer momento.</p>
+      <p>YVocê pode excluir a sua conta irreversivelmente a qualquer momento.</p>
 
       <hr class="spacer"/>
 
       <h3 id="cookies">Nós usamos cookies?</h3>
 
-      <p>Sim. Cookies são pequenos arquivos que um site ou serviço transfere ao seu disco rígido do seu computador através do seu navegador da web (se você permitir). Esses cookies permitem ao site conhecer seu navegador e, se você tiver uma conta registrada, associá-lo a sua conta.</p>
+      <p>Sim. Cookies são pequenos arquivos que um site ou serviço baixa através do seu navegador (se você permitir). Esses cookies permitem ao site conhecer seu navegador e, se você tiver uma conta, associá-lo a ela.</p>
 
-      <p>Nós usamos cookies para compreender e salvar suas preferências para visitas futuras.</p>
+      <p>Nós usamos cookies para salvar suas preferências para futuras visitas.</p>
 
       <hr class="spacer" />
 
-      <h3 id="disclose">Nós compartilhamos qualquer informação para terceiros?</h3>
+      <h3 id="disclose">Nós compartilhamos algum dado para terceiros?</h3>
 
-      <p>Nós não vendemos, trocamos ou transferimos de qualquer maneira informação que pode lhe identificar à terceiros. Isso não inclui terceiros que podemos nos auxiliam a operar o nosso site, realizar nossos negócios ou lhe prestar serviços, contanto que esses terceiros se comprometam a manter essa informação confidencial. Nós podemos também divulgar informação quando acreditamos que é apropriado para obedecer a lei, para fazer cumprir nossas políticas ou proteger nossos direitos, propriedade ou segurança ou o direito, propriedade e segurança de outrem.</p>
+      <p>Nós não vendemos, trocamos ou compartilhamos de qualquer maneira dados que possam te identificar à terceiros. Isso não inclui terceiros confiáveis que nos auxiliam a operar o nosso site, realizar nosso serviço ou prestar assistência, contanto que esses terceiros se comprometam a manter essa informação confidencial. Nós podemos também divulgar informação quando acreditamos que é apropriado para obedecer a lei, para fazer cumprir nossas políticas ou proteger os nossos direitos, propriedade ou segurança, ou de outrém.</p>
 
-      <p>Seu conteúdo público pode ser descarregado por outros servidores na rede. Suas mensagens públicas e somente para seus seguidores são entregues aos servidores onde seus seguidores resides e as suas mensagens diretas são entregues ao servidor dos usuários mencionados nelas, contanto que esses seguidores ou usuários residam em um servidor diferente deste.</p>
+      <p>Seu conteúdo público pode ser acessado por outras instâncias na rede. Seus toots públicos e privados são enviados às instâncias dos seus seguidores e seus toots diretos são enviados às instâncias dos usuários mencionados neles, contanto que esses seguidores ou usuários estejam em uma instância diferente desta.</p>
 
-      <p>Quando você autoriza uma aplicação a usar sua conta, dependendo do escopo de permissões que você aprovar, a aplicação pode acessar sua informação pública, a lista de usuários que você segue, seus seguidores, suas listas, suas mensagens e suas mensagens favoritas. Aplicações nunca podem acessar o seu endereço de e-mail ou senha.</p>
+      <p>Quando você autoriza um aplicativo a usar sua conta, dependendo do nível de autorização das permissões que você aprovar, o aplicativo pode acessar seus dados públicos, a lista de usuários que você segue, seus seguidores, suas listas, suas Mensagens Diretas e seus toots favoritos. Aplicativos nunca podem acessar o seu endereço de e-mail ou senha.</p>
 
       <hr class="spacer" />
 
       <h3 id="children">Uso desse site por crianças</h3>
 
-      <p>Se este servidor está na UE ou no EEE: Nosso site, produto e serviços são direcionados à pessoas que tem ao menos 16 anos de idade. Se você tem menos de 16 anos, de acordo com os requisitos da RGPD (<a href="https://pt.wikipedia.org/wiki/Regulamento_Geral_sobre_a_Prote%C3%A7%C3%A3o_de_Dados">Regulamento Geral sobre a Proteção de Dados</a>) não use este site.</p>
+      <p>Se a instância está na UE ou no EEE: Nosso site, produto e serviço são direcionados às pessoas que tem ao menos 16 anos de idade. Se você tem menos de 16 anos, de acordo com os requisitos da RGPD (<a href="https://pt.wikipedia.org/wiki/Regulamento_Geral_sobre_a_Prote%C3%A7%C3%A3o_de_Dados">Regulamento Geral sobre Proteção de Dados</a>) não use este site.</p>
 
-      <p>Se este servidor está hospedado nos EUA: Nosso site, produto e serviços são direcionados à pessoas que tem ao menos 13 anos de idade. Se você tem menos de 13 anos, de acordo com os requerimentos da COPPA (<a href="https://en.wikipedia.org/wiki/Children%27s_Online_Privacy_Protection_Act">Children's Online Privacy Protection Act</a>) não use este site</p>
+      <p>Se esta instância está nos EUA: Nosso site, produto e serviço são direcionados às pessoas que tem ao menos 13 anos de idade. Se você tem menos de 13 anos, de acordo com os requerimentos da COPPA (<a href="https://en.wikipedia.org/wiki/Children%27s_Online_Privacy_Protection_Act">Children's Online Privacy Protection Act</a>) não use este site</p>
 
-      <p>Os requisitos da lei podem ser diferentes se esse servidor estiver em outra jurisdição</p>
+      <p>Os requisitos da lei podem ser diferentes em outra jurisdição.</p>
 
       <hr class="spacer" />
 
-      <h3 id="changes">Mudanças à nossa política de privacidade</h3>
+      <h3 id="changes">Alterações na nossa Política de Privacidade</h3>
 
-      <p>Se decidirmos mudar nossa política de privacidade, nós iremos disponibilizar as mudanças nesta página.</p>
+      <p>Se decidirmos mudar nossa Política de Privacidade, iremos disponibilizar as alterações nesta página.</p>
 
-      <p>Este documento é CC-BY-SA. Ele foi atualizado pela última vez em 7 de março de 2018.</p>
+      <p>CC-BY-SA. Atualizado pela última vez em 7 de março de 2018.</p>
 
-      <p>Adaptado originalmente a partir da <a href="https://github.com/discourse/discourse">política de privacidade Discourse</a>.</p>
-    title: "%{instance} Termos de Serviço e Política de Privacidade"
+      <p>Adaptado originalmente de <a href="https://github.com/discourse/discourse">Política de Privacidade Discourse</a>.</p>
+    title: Termos de Serviço e Política de Privacidade de %{instance}
   themes:
     contrast: Mastodon  (Alto contraste)
-    default: Mastodon (Escuro)
-    mastodon-light: Mastodon (claro)
+    default: Mastodon (Noturno)
+    mastodon-light: Mastodon (Diurno)
   time:
     formats:
-      month: "%B de %Y"
+      default: "%H:%M em %d de %b de %Y"
+      month: "%b de %Y"
   two_factor_authentication:
-    code_hint: Insira o código gerado pelo seu aplicativo auteticador para confirmar
-    description_html: Se você ativar a <strong>autenticação em dois passos</strong>, o acesso à sua conta exigirá posse de seu celular, que irá gerar tokens para validação.
+    code_hint: Digite o código de dois fatores gerado pelo aplicativo no seu celular
+    description_html: Se você ativar a <strong>autenticação de dois fatores</strong>, o acesso à sua conta exigirá um celular, que gerará códigos para validação.
     disable: Desativar
     enable: Ativar
-    enabled: A autenticação em dois passos está ativada
-    enabled_success: Autenticação em dois passos ativada com sucesso
+    enabled: Autenticação de dois fatores ativada
+    enabled_success: Autenticação de dois fatores ativada com sucesso
     generate_recovery_codes: Gerar códigos de recuperação
-    instructions_html: "<strong>Escaneie este QR Code no Google Authenticator ou aplicativo TOTP similar com o seu celular</strong>. De agora em diante, este aplicativo irá gerar tokens que você terá que inserir quando desejar acessar a sua conta."
-    lost_recovery_codes: Códigos de recuperação permitem que você recupere acesso à sua conta caso perca o seu celular. Se você perdeu seus códigos de recuperação, você pode gerá-los novamente aqui. Seus códigos de recuperaçãp anteriores serão invalidados.
-    manual_instructions: 'Se você não pode escanear o QR code e precisa inserí-lo manualmente, aqui está o segredo em texto:'
+    instructions_html: "<strong>Escaneie este QR Code no Google Authenticator ou aplicativo TOTP similar no seu celular</strong>. De agora em diante, este aplicativo gerará códigos que você terá que inserir ao entrar na sua conta."
+    lost_recovery_codes: Códigos de recuperação permitem que você recupere o acesso à sua conta caso perca o seu celular. Se você perdeu seus códigos de recuperação, você pode gerá-los novamente aqui. Seus códigos de recuperação anteriores serão invalidados.
+    manual_instructions: 'Se você não consegue escanear o QR code, aqui está o segredo em texto:'
     recovery_codes: Códigos de recuperação de reserva
-    recovery_codes_regenerated: Códigos de recuperação regenerados com sucesso
-    recovery_instructions_html: Se você perder acesso ao seu celular, você pode usar um dos códigos de recuperação abaixo para reganhar acesso à sua conta. <strong>Mantenha os códigos de recuperação em um local seguro</strong>. Por exemplo, você pode imprimi-los e guardá-los com outros documentos importantes.
+    recovery_codes_regenerated: Códigos de recuperação gerados com sucesso
+    recovery_instructions_html: Se você perder acesso ao seu celular, você pode usar um dos códigos de recuperação abaixo para acessar a sua conta. <strong>Mantenha os códigos de recuperação em um local seguro</strong>. Por exemplo, você pode imprimi-los e guardá-los junto com outros documentos importantes.
     setup: Configurar
-    wrong_code: O código inserido é invalido! O horário do servidor e o horário do seu aparelho estão corretos?
+    wrong_code: Código de dois fatores inválido. O horário da instância e o horário do seu celular estão corretos?
   user_mailer:
     backup_ready:
       explanation: Você pediu um backup completo da sua conta no Mastodon. E agora está pronto para ser baixado!
@@ -1056,45 +1190,46 @@ pt-BR:
       title: Baixar arquivo
     warning:
       explanation:
-        disable: Enquanto sua conta está congelada, seus dados estão intactos, mas você não pode realizar nenhuma ação até que sua conta seja desbloqueada.
-        silence: Enquanto sua conta está limitada, somente pessoas que já estão seguindo você poderão ver seus toots nesse servidor, e você pode ser excluído de diversas listagens públicas. No entanto, outros ainda podem seguir você manualmente.
-        suspend: Sua conta está suspensa e todos os seus toots e mídias foram irreversivelmente removidas desse servidor e de servidores onde você tinha seguidores.
+        disable: Enquanto sua conta está bloqueada, seus dados estão intactos, mas você não pode realizar nenhuma ação até que sua conta seja desbloqueada.
+        silence: Enquanto sua conta está silenciada, somente pessoas que já estão seguindo você poderão ver seus toots nessa instância, e você pode ser excluído de várias listas públicas. No entanto, outros ainda podem te seguir manualmente.
+        suspend: Sua conta foi banida e todos os seus toots e mídias foram irreversivelmente excluídos desta instância e das instâncias dos seus seguidores.
       get_in_touch: Você pode responder a este e-mail para entrar em contato com a equipe de %{instance}.
-      review_server_policies: Revisar as políticas do servidor
+      review_server_policies: Revisar as políticas da instância
+      statuses: 'Especificamente, para:'
       subject:
-        disable: Sua conta %{acct} foi congelada
+        disable: Sua conta %{acct} foi bloqueada
         none: Aviso para %{acct}
-        silence: Sua conta %{acct} foi limitada
-        suspend: Sua conta %{acct} foi suspensa
+        silence: Sua conta %{acct} foi silenciada
+        suspend: Sua conta %{acct} foi banida
       title:
-        disable: Conta congelada
+        disable: Conta bloqueada
         none: Aviso
-        silence: Conta limitada
-        suspend: Conta suspensa
+        silence: Conta silenciada
+        suspend: Conta banida
     welcome:
       edit_profile_action: Configurar perfil
-      edit_profile_step: Você pode customizar o seu perfil enviando um avatar, uma imagem de topo, mudando seu nome de exibição, dentre outros. Se você gostaria de aprovar novos seguidores antes que eles possam seguir você, você pode trancar a sua conta.
-      explanation: Aqui estão algumas dicas para te ajudar a começar
-      final_action: Comece a postar
-      final_step: 'Comece a postar! Mesmo sem seguidores, suas mensagens públicas podem ser vistas por outros, por exemplo nas timelines locais e buscando hashtags. Você pode querer fazer uma introdução usando a hashtag #introduções, ou em inglês usando a hashtag #introductions.'
+      edit_profile_step: Você pode personalizar o seu perfil enviando uma imagem de perfil, uma capa, alterando seu nome de exibição e etc. Se você preferir aprovar seus novos seguidores antes de eles verem seus toots, você pode trancar a sua conta.
+      explanation: Aqui estão algumas dicas para você começar
+      final_action: Comece a tootar
+      final_step: 'Comece a tootar! Mesmo sem seguidores, suas mensagens públicas podem ser vistas pelos outros, por exemplo, na linha local e nas hashtags. Você pode querer fazer uma introdução usando a hashtag #introdução, ou em inglês usando a hashtag #introductions.'
       full_handle: Seu nome de usuário completo
-      full_handle_hint: Isso é o que você diz aos seus amigos para que eles possam te mandar mensagens ou te seguir a partir de outra instância.
-      review_preferences_action: Mudar as preferências
-      review_preferences_step: Não se esqueça de configurar suas preferências, como quais e-mails você gostaria de receber, que nível de privacidade você gostaria que seus posts tenham por padrão. Se você não sofre de enjôo com movimento, você pode habilitar GIFs animando automaticamente.
+      full_handle_hint: Isso é o que você compartilha com aos seus amigos para que eles possam te mandar toots ou te seguir a partir de outra instância.
+      review_preferences_action: Alterar preferências
+      review_preferences_step: Não se esqueça de configurar suas preferências, como quais e-mails você gostaria de receber, que nível de privacidade você gostaria que seus toots tenham por padrão. Se você não sofre de enjoo com movimento, você pode habilitar GIFs animado automaticamente.
       subject: Boas-vindas ao Mastodon
-      tip_federated_timeline: A timeline global é uma visão contínua da rede do Mastodon. Mas ela só inclui pessoas que outras pessoas da sua instância estão seguindo, então não é a rede completa.
-      tip_following: Você vai seguir administrador(es) da sua instância por padrão. Para encontrar mais gente interessante, confira as timelines local e global.
-      tip_local_timeline: A timeline local é uma visão contínua das pessoas que estão em %{instance}. Esses são seus vizinhos próximos!
-      tip_mobile_webapp: Se o seu navegador móvel oferecer a opção de adicionar Mastodon à tela inicial, você pode receber notificações push. Vai funcionar quase como um aplicativo nativo!
+      tip_federated_timeline: A linha global é uma visão contínua da rede do Mastodon. Mas ela só inclui pessoas de instâncias que a sua instância conhece, então não é a rede completa.
+      tip_following: Você vai seguir administrador(es) da sua instância por padrão. Para encontrar mais gente interessante, confira as linhas local e global.
+      tip_local_timeline: A linha local é uma visão contínua das pessoas em %{instance}. Estes são seus vizinhos!
+      tip_mobile_webapp: Se o seu navegador móvel oferecer a opção de adicionar Mastodon à tela inicial, você pode receber notificações push. Será como um aplicativo nativo!
       tips: Dicas
-      title: Boas-vindas a bordo, %{name}!
+      title: Boas vindas, %{name}!
   users:
-    follow_limit_reached: Você não pode seguir mais que %{limit} pessoas
-    invalid_email: O endereço de e-mail é inválido
-    invalid_otp_token: Código de autenticação inválido
+    follow_limit_reached: Você não pode seguir mais de %{limit} pessoas
+    invalid_email: Endereço de e-mail inválido
+    invalid_otp_token: Código de dois fatores inválido
     otp_lost_help_html: Se você perder o acesso à ambos, você pode entrar em contato com %{email}
-    seamless_external_login: Você está logado usando um serviço externo, então configurações de e-mail e senha não estão disponíveis.
-    signed_in_as: 'Acesso como:'
+    seamless_external_login: Você entrou usando um serviço externo, então configurações de e-mail e senha não estão disponíveis.
+    signed_in_as: 'Entrou como:'
   verification:
-    explanation_html: 'Você pode <strong>verificar-se como tendo posse dos links nos metadados do seu perfil</strong>. Para isso, o site conectado deve conter um link de volta para o seu perfil do Mastodon. O link de volta <strong>deve</strong> conter um atributo <code>rel="me"</code>. O conteúdo ou texto do link não importa. Aqui está um exemplo:'
+    explanation_html: 'Você pode <strong>verificar os links nos metadados do seu perfil</strong>. Para isso, o site citado deve conter um link de volta para o seu perfil do Mastodon. O link de volta <strong>deve</strong> conter um atributo <code>rel="me"</code>. O conteúdo ou texto do link não importa. Aqui está um exemplo:'
     verification: Verificação
diff --git a/config/locales/pt-PT.yml b/config/locales/pt-PT.yml
index fe23160a2cd980ffd489b981878cf906f0d50adb..8628c5774ddd2b8dadabd978f67a14ad30c16827 100644
--- a/config/locales/pt-PT.yml
+++ b/config/locales/pt-PT.yml
@@ -4,21 +4,45 @@ pt-PT:
     about_hashtag_html: Estes são toots públicos marcados com <strong>#%{hashtag}</strong>. Podes interagir com eles se tiveres uma conta Mastodon.
     about_mastodon_html: Mastodon é uma rede social baseada em protocolos abertos da web e software livre e gratuito. É descentralizado como e-mail.
     about_this: Sobre esta instância
+    active_count_after: activo
+    active_footnote: Utilizadores activos mensais (UAM)
     administered_by: 'Administrado por:'
+    api: API
     apps: Aplicações móveis
+    apps_platforms: Usar o Mastodon a partir do iOS, Android e outras plataformas
+    browse_directory: Navegue pelo directório de perfis e filtre por interesses
+    browse_local_posts: Visualize as publicações públicas deste servidor em tempo real
+    browse_public_posts: Visualize as publicações públicas do Mastodon em tempo real
     contact: Contacto
     contact_missing: Não configurado
     contact_unavailable: n.d.
+    discover_users: Descobrir utilizadores
     documentation: Documentação
+    federation_hint_html: Ter uma conta em %{instance} permitirá seguir pessoas em qualquer servidor Mastodon.
+    get_apps: Experimente uma aplicação
     hosted_on: Mastodon em %{domain}
+    instance_actor_flash: |
+      Esta conta é um actor virtual usado para representar o próprio servidor e não um utilizador individual.
+      É usada para motivos de federação e não deve ser bloqueada a não ser que que queira bloquear a instância por completo. Se for esse o caso, deverá usar o bloqueio de domínio.
     learn_more: Saber mais
     privacy_policy: Política de privacidade
+    see_whats_happening: Veja o que está a acontecer
+    server_stats: 'Estatísticas do servidor:'
     source_code: Código fonte
     status_count_after:
       one: publicação
       other: publicações
     status_count_before: Que fizeram
+    tagline: Siga os seus amigos e descubra novas amizades
     terms: termos de serviço
+    unavailable_content: Conteúdo indisponível
+    unavailable_content_description:
+      domain: Servidor
+      reason: Motivo
+      rejecting_media: 'Arquivos de média destes servidores não serão processados ou armazenados, e nenhuma miniatura será exibida, o que requer que o utilizador clique e abra o arquivo original manualmente:'
+      silenced: 'Publicações destes servidores serão ocultas em linhas do tempo e conversas públicas, e nenhuma notificação será gerada a partir das interações dos seus utilizadores, a menos que você os esteja a seguir:'
+      suspended: 'Nenhum dado desses servidores será processado, armazenado ou trocado, tornando qualquer interação ou comunicação com os utilizadores desses servidores impossível:'
+    unavailable_content_html: Mastodon geralmente permite que você veja o conteúdo e interaja com usuários de qualquer outro servidor no fediverso. Estas são as exceções deste servidor específico.
     user_count_after:
       one: utilizador
       other: utilizadores
@@ -26,6 +50,8 @@ pt-PT:
     what_is_mastodon: O que é o Mastodon?
   accounts:
     choices_html: 'escolhas de %{name}:'
+    endorsements_hint: Você pode, através da interface web, escolher endossar pessoas que segue, e elas aparecerão aqui.
+    featured_tags_hint: Você pode destacar hashtags específicas que serão exibidas aqui.
     follow: Seguir
     followers:
       one: Seguidor
@@ -34,8 +60,10 @@ pt-PT:
     joined: Aderiu %{date}
     last_active: última vez activo
     link_verified_on: A posse deste link foi verificada em %{date}
+    media: Média
     moved_html: "%{name} mudou-se para %{new_profile_link}:"
     network_hidden: Esta informação não está disponível
+    never_active: Nunca
     nothing_here: Não há nada aqui!
     people_followed_by: Pessoas seguidas por %{name}
     people_who_follow: Pessoas que seguem %{name}
@@ -50,7 +78,9 @@ pt-PT:
     roles:
       admin: Administrador
       bot: Robô
+      group: Grupo
       moderator: Moderador
+    unavailable: Perfil indisponível
     unfollow: Deixar de seguir
   admin:
     account_actions:
@@ -62,7 +92,10 @@ pt-PT:
       delete: Eliminar
       destroyed_msg: Nota de moderação excluída com sucesso!
     accounts:
+      approve: Aprovar
+      approve_all: Aprovar todos
       are_you_sure: Tens a certeza?
+      avatar: Imagem de Perfil
       by_domain: Domínio
       change_email:
         changed_msg: E-mail da conta alterado com sucesso!
@@ -86,16 +119,16 @@ pt-PT:
       email_status: Estado do correio electrónico
       enable: Ativar
       enabled: Ativado
-      feed_url: URL do Feed
       followers: Seguidores
-      followers_url: URL dos seguidores
       follows: A seguir
       header: Cabeçalho
       inbox_url: URL da caixa de entrada
       invited_by: Convidado por
+      ip: IP
       joined: Aderiu
       location:
         all: Todos
+        local: Local
         remote: Remoto
         title: Local
       login_status: Estado de início de sessão
@@ -104,23 +137,26 @@ pt-PT:
       moderation:
         active: Activo
         all: Todos
+        pending: Pendente
         silenced: Silenciados
         suspended: Supensos
         title: Moderação
       moderation_notes: Notas de moderação
       most_recent_activity: Actividade mais recente
       most_recent_ip: IP mais recente
+      no_account_selected: Nenhuma conta foi alterada porque nenhuma foi selecionada
       no_limits_imposed: Sem limites impostos
       not_subscribed: Não inscrito
-      outbox_url: URL da caixa de saída
+      pending: Pendente de revisão
       perform_full_suspension: Fazer suspensão completa
-      profile_url: URL do perfil
       promote: Promover
       protocol: Protocolo
       public: Público
       push_subscription_expires: A Inscrição PuSH expira
-      redownload: Atualizar avatar
-      remove_avatar: Remover o avatar
+      redownload: Atualizar perfil
+      reject: Rejeitar
+      reject_all: Rejeitar todas
+      remove_avatar: Remover a imagem de perfil
       remove_header: Remover o cabeçalho
       resend_confirmation:
         already_confirmed: Este usuário já está confirmado
@@ -135,8 +171,8 @@ pt-PT:
         moderator: Moderador
         staff: Equipa
         user: Utilizador
-      salmon_url: URL Salmon
       search: Pesquisar
+      search_same_ip: Outros utilizadores com o mesmo IP
       shared_inbox_url: URL da caixa de entrada compartilhada
       show:
         created_reports: Relatórios gerados por esta conta
@@ -146,6 +182,7 @@ pt-PT:
       statuses: Status
       subscribe: Inscrever-se
       suspended: Suspensa
+      time_in_queue: Aguardando na fila %{time}
       title: Contas
       unconfirmed_email: E-mail não confirmado
       undo_silenced: Desfazer silenciar
@@ -153,6 +190,8 @@ pt-PT:
       unsubscribe: Cancelar inscrição
       username: Usuário
       warn: Aviso
+      web: Web
+      whitelisted: Está na lista branca
     action_logs:
       actions:
         assigned_to_self_report: "%{name} atribuiu o relatório %{target} a si próprios"
@@ -160,12 +199,14 @@ pt-PT:
         confirm_user: "%{name} confirmou o endereço de e-mail do utilizador %{target}"
         create_account_warning: "%{name} enviou um aviso para %{target}"
         create_custom_emoji: "%{name} enviado emoji novo %{target}"
+        create_domain_allow: "%{name} colocou o domínio %{target} na lista branca"
         create_domain_block: "%{name} bloqueou o domínio %{target}"
         create_email_domain_block: "%{name} adicionou na lista negra o domínio de correio electrónico %{target}"
         demote_user: "%{name} rebaixou o utilizador %{target}"
         destroy_custom_emoji: "%{name} destruiu o emoji %{target}"
+        destroy_domain_allow: "%{name} removeu o domínio %{target} da lista branca"
         destroy_domain_block: "%{name} desbloqueou o domínio %{target}"
-        destroy_email_domain_block: "%{name} adicionou na lista branca o domínio de correio electrónico %{target}"
+        destroy_email_domain_block: "%{name} retirou o domínio de e-mail %{target} da lista negra"
         destroy_status: "%{name} removeu o publicação feita por %{target}"
         disable_2fa_user: "%{name} desactivou o requerimento de autenticação em dois passos para o utilizador %{target}"
         disable_custom_emoji: "%{name} desabilitou o emoji %{target}"
@@ -174,7 +215,7 @@ pt-PT:
         enable_user: "%{name} ativou o acesso para o utilizador %{target}"
         memorialize_account: "%{name} transformou a conta de %{target} em um memorial"
         promote_user: "%{name} promoveu o utilizador %{target}"
-        remove_avatar_user: "%{name} removeu o avatar de %{target}"
+        remove_avatar_user: "%{name} removeu a imagem de perfil de %{target}"
         reopen_report: "%{name} reabriu o relatório %{target}"
         reset_password_user: "%{name} restabeleceu a palavra-passe do utilizador %{target}"
         resolve_report: "%{name} recusou o relatório %{target}"
@@ -188,18 +229,24 @@ pt-PT:
       deleted_status: "(apagou a publicação)"
       title: Registo de auditoria
     custom_emojis:
+      assign_category: Atribuir categoria
       by_domain: Domínio
       copied_msg: Cópia local do emoji criada com sucesso
       copy: Copiar
       copy_failed_msg: Não foi possível criar uma cópia local deste emoji
+      create_new_category: Criar nova categoria
       created_msg: Emoji criado com sucesso!
       delete: Apagar
       destroyed_msg: Emoji destruído com sucesso!
       disable: Desativar
+      disabled: Desativado
       disabled_msg: Desativado com sucesso este emoji
+      emoji: Emoji
       enable: Ativar
+      enabled: Ativado
       enabled_msg: Ativado com sucesso este emoji
       image_hint: PNG de até 50KB
+      list: Lista
       listed: Listado
       new:
         title: Adicionar novo emoji customizado
@@ -207,11 +254,14 @@ pt-PT:
       shortcode: Código de atalho
       shortcode_hint: Pelo menos 2 caracteres, apenas caracteres alfanuméricos e underscores
       title: Emojis customizados
+      uncategorized: Sem categoria
+      unlist: Não listar
       unlisted: Não listado
       update_failed_msg: Não foi possível atualizar esse emoji
       updated_msg: Emoji atualizado com sucesso!
       upload: Enviar
     dashboard:
+      authorized_fetch_mode: Modo seguro
       backlog: trabalhos atrasados
       config: Configuração
       feature_deletions: Eliminações da conta
@@ -219,12 +269,17 @@ pt-PT:
       feature_profile_directory: Directório de perfil
       feature_registrations: Registos
       feature_relay: Repetidor da federação
+      feature_spam_check: Anti-spam
+      feature_timeline_preview: Pré-visualização da cronologia
       features: Componentes
       hidden_service: Federação com serviços escondidos
       open_reports: relatórios abertos
+      pending_tags: hashtags a aguardar revisão
+      pending_users: utilizadores a aguardar revisão
       recent_users: Utilizadores recentes
       search: Pesquisa com texto completo
       single_user_mode: Modo de utilizador único
+      software: Software
       space: Utilização do espaço
       title: Painel de controlo
       total_users: total de utilizadores
@@ -232,11 +287,19 @@ pt-PT:
       week_interactions: interacções desta semana
       week_users_active: activo esta semana
       week_users_new: utilizadores nesta semana
+      whitelist_mode: Modo lista branca
+    domain_allows:
+      add_new: Colocar domínio na lista branca
+      created_msg: Domínio foi adicionado à lista branca com sucesso
+      destroyed_msg: Domínio foi removido da lista branca
+      undo: Remover da lista branca
     domain_blocks:
       add_new: Adicionar novo
       created_msg: Bloqueio do domínio está a ser processado
       destroyed_msg: Bloqueio de domínio está a ser removido
       domain: Domínio
+      edit: Editar bloqueio de domínio
+      existing_domain_block_html: Você já impôs limites mais restritivos a %{name}, é necessário primeiro <a href="%{unblock_url}">desbloqueá-lo</a>.
       new:
         create: Criar bloqueio
         hint: O bloqueio de dominio não vai previnir a criação de entradas na base de dados, mas irá retroativamente e automaticamente aplicar métodos de moderação específica nessas contas.
@@ -246,6 +309,10 @@ pt-PT:
           silence: Silenciar
           suspend: Suspender
         title: Novo bloqueio de domínio
+      private_comment: Comentário privado
+      private_comment_hint: Comentário sobre essa limitação de domínio para uso interno pelos moderadores.
+      public_comment: Comentário público
+      public_comment_hint: Comentário sobre essa limitação de domínio para o público geral, se ativada a divulgação da lista de limitações de domínio.
       reject_media: Rejeitar ficheiros de media
       reject_media_hint: Remove localmente arquivos armazenados e rejeita fazer guardar novos no futuro. Irrelevante na suspensão
       reject_reports: Rejeitar relatórios
@@ -265,12 +332,14 @@ pt-PT:
         title: Remover o bloqueio de domínio de %{domain}
         undo: Anular
       undo: Anular
+      view: Ver domínios bloqueados
     email_domain_blocks:
       add_new: Adicionar novo
       created_msg: Bloqueio de domínio de email criado com sucesso
       delete: Eliminar
       destroyed_msg: Bloqueio de domínio de email excluído com sucesso
       domain: Domínio
+      empty: Nenhum domínio de e-mail atualmente na lista negra.
       new:
         create: Adicionar domínio
         title: Novo bloqueio de domínio de email
@@ -288,6 +357,8 @@ pt-PT:
         all: Todas
         limited: Limitadas
         title: Moderação
+      private_comment: Comentários privados
+      public_comment: Comentários públicos
       title: Instâncias conhecidas
       total_blocked_by_us: Bloqueadas por nós
       total_followed_by_them: Seguidas por eles
@@ -302,6 +373,8 @@ pt-PT:
         expired: Expirados
         title: Filtro
       title: Convites
+    pending_accounts:
+      title: Contas pendentes (%{count})
     relays:
       add_new: Adicionar novo repetidor
       delete: Apagar
@@ -315,6 +388,7 @@ pt-PT:
       pending: À espera da aprovação do repetidor
       save_and_enable: Guardar e ativar
       setup: Configurar uma ligação ao repetidor
+      signatures_not_enabled: Relays não funcionarão corretamente enquanto o modo seguro ou o modo lista branca estiverem ativados
       status: Estado
       title: Retransmissores
     report_notes:
@@ -322,12 +396,17 @@ pt-PT:
       destroyed_msg: Relatório apagado com sucesso!
     reports:
       account:
-        note: nota
-        report: relatório
+        notes:
+          one: "%{count} nota"
+          other: "%{count} notas"
+        reports:
+          one: "%{count} relatório"
+          other: "%{count} relatórios"
       action_taken_by: Ação tomada por
       are_you_sure: Tens a certeza?
       assign_to_self: Atribuí-me a mim
       assigned: Atribuído ao moderador
+      by_target_domain: Domínio da conta reportada
       comment:
         none: Nenhum
       created_at: Relatado
@@ -342,11 +421,11 @@ pt-PT:
       reopen: Reabrir relatório
       report: 'Denúncia #%{id}'
       reported_account: Conta denunciada
-      reported_by: Denúnciada por
+      reported_by: Reportado por
       resolved: Resolvido
       resolved_msg: Relatório resolvido com sucesso!
       status: Estado
-      title: Denúncias
+      title: Relatórios
       unassign: Não atribuir
       unresolved: Por resolver
       updated_at: Atualizado
@@ -363,6 +442,18 @@ pt-PT:
       custom_css:
         desc_html: Modificar a aparência com CSS carregado em cada página
         title: CSS personalizado
+      default_noindex:
+        desc_html: Afeta todos os utilizadores que não alteraram esta configuração
+        title: Desactivar, por omissão, a indexação de utilizadores por parte dos motores de pesquisa
+      domain_blocks:
+        all: Para toda a gente
+        disabled: Para ninguém
+        title: Mostrar domínios bloqueados
+        users: Para utilizadores locais que se encontrem autenticados
+      domain_blocks_rationale:
+        title: Mostrar motivo
+      enable_bootstrap_timeline_accounts:
+        title: Habilitar seguidores predefinidos para novos utilizadores
       hero:
         desc_html: Apresentado na primeira página. Pelo menos 600x100px recomendados. Quando não é definido, é apresentado o thumbnail do servidor
         title: Imagem Hero
@@ -388,6 +479,12 @@ pt-PT:
         min_invite_role:
           disabled: Ninguém
           title: Permitir convites de
+      registrations_mode:
+        modes:
+          approved: Registo sujeito a aprovação
+          none: Ninguém se pode registar
+          open: Qualquer pessoa se pode registar
+        title: Modo de registo
       show_known_fediverse_at_about_page:
         desc_html: Quando comutado, irá mostrar a previsualização de publicações de todo o fediverse conhecido. De outro modo só mostrará publicações locais.
         title: Mostrar o fediverse conhecido na previsualização da cronologia
@@ -407,6 +504,9 @@ pt-PT:
         desc_html: Podes escrever a tua própria política de privacidade, termos de serviço, entre outras coisas. Podes usar tags HTML
         title: Termos de serviço customizados
       site_title: Título do site
+      spam_check_enabled:
+        desc_html: O Mastodon pode reportar automaticamente contas que enviem repetidamente mensagens não solicitadas. Poderão ocorrer alguns falso-positivos.
+        title: Automação anti-spam
       thumbnail:
         desc_html: Usada para visualizações via OpenGraph e API. Recomenda-se 1200x630px
         title: Miniatura da instância
@@ -414,12 +514,19 @@ pt-PT:
         desc_html: Exibir a linha temporal pública na página inicial
         title: Visualização da linha temporal
       title: Preferências do site
+      trendable_by_default:
+        desc_html: Afecta as hashtags que ainda não tenham sido proibidas
+        title: Permitir hashtags em tendência sem revisão prévia
+      trends:
+        desc_html: Exibir publicamente hashtags atualmente em destaque que já tenham sido revistas anteriormente
+        title: Hashtags em destaque
     statuses:
       back_to_account: Voltar para página da conta
       batch:
         delete: Eliminar
         nsfw_off: NSFW OFF
         nsfw_on: NSFW ON
+      deleted: Apagado
       failed_to_execute: Falhou ao executar
       media:
         title: Média
@@ -427,6 +534,24 @@ pt-PT:
       no_status_selected: Nenhum estado foi alterado porque nenhum foi selecionado
       title: Estado das contas
       with_media: Com media
+    tags:
+      accounts_today: Usos únicos hoje
+      accounts_week: Usos únicos desta semana
+      breakdown: Descrição do consumo atual por fonte
+      context: Contexto
+      directory: No diretório
+      in_directory: "%{count} no diretório"
+      last_active: Última actividade
+      most_popular: Mais popular
+      most_recent: Mais recente
+      name: Hashtag
+      review: Estado da revisão
+      reviewed: Revista
+      title: Hashtags
+      trending_right_now: Tendências agora
+      unique_uses_today: "%{count} publicando hoje"
+      unreviewed: Não revista
+      updated_msg: Definições de hashtags actualizadas com sucesso
     title: Administração
     warning_presets:
       add_new: Adicionar novo
@@ -435,12 +560,37 @@ pt-PT:
       edit_preset: Editar o aviso predefinido
       title: Gerir os avisos predefinidos
   admin_mailer:
+    new_pending_account:
+      body: Em baixo, estão os detalhes da nova conta. Pode aprovar ou rejeitar esta inscrição.
+      subject: Nova conta para revisão em %{instance} (%{username})
     new_report:
       body: "%{reporter} relatou %{target}"
       body_remote: Alguém de %{domain} relatou %{target}
       subject: Novo relatório sobre %{instance} (#%{id})
+    new_trending_tag:
+      body: 'A hashtag #%{name} está hoje a destacar-se, mas não foi anteriormente revista. Ela não será exibida publicamente a menos que você o permita, ou limite-se a salvar o formulário tal como está, para nunca mais ouvir falar dela.'
+      subject: Nova hashtag para revisão em %{instance} (#%{name})
+  aliases:
+    add_new: Criar pseudónimo
+    created_msg: Criou com sucesso um novo pseudónimo. Pode agora iniciar a migração da conta antiga.
+    deleted_msg: Removido o pseudónimo com sucesso. Migrar dessa conta para esta não será mais possível.
+    hint_html: Se quiser mudar de outra conta para esta, pode criar aqui um pseudónimo, que é necessário antes de poder prosseguir com a migração de seguidores da conta antiga para esta. Esta ação por si só é <strong>inofensiva e reversível</strong>. <strong>A migração da conta é iniciada a partir da conta antiga</strong>.
+    remove: Desvincular pseudónimo
+  appearance:
+    advanced_web_interface: Interface web avançada
+    advanced_web_interface_hint: 'Se quiser utilizar toda a largura do seu ecrã, a interface web avançada permite-lhe configurar várias colunas diferentes para ver tanta informação ao mesmo tempo quanto quiser: Página inicial, notificações, cronologia federada, qualquer número de listas e hashtags.'
+    animations_and_accessibility: Animações e acessibilidade
+    confirmation_dialogs: Caixas de confirmação
+    discovery: Descobrir
+    localization:
+      body: Mastodon é traduzido por voluntários.
+      guide_link: https://crowdin.com/project/mastodon/pt-PT
+      guide_link_text: Todos podem contribuir.
+    sensitive_content: Conteúdo sensível
+    toot_layout: Disposição do Toot
   application_mailer:
     notification_preferences: Alterar preferências de e-mail
+    salutation: "%{name},"
     settings: 'Alterar preferências de email: %{link}'
     view: 'Ver:'
     view_profile: Ver perfil
@@ -454,9 +604,16 @@ pt-PT:
     warning: Cuidado com estes dados. Não partilhar com ninguém!
     your_token: O teu token de acesso
   auth:
+    apply_for_account: Solicitar um convite
     change_password: Palavra-passe
+    checkbox_agreement_html: Concordo com as <a href="%{rules_path}" target="_blank">regras do servidor</a> e com os <a href="%{terms_path}" target="_blank">termos de serviço</a>
+    checkbox_agreement_without_rules_html: Concordo com os <a href="%{terms_path}" target="_blank">termos do serviço</a>
     delete_account: Eliminar conta
     delete_account_html: Se desejas eliminar a conta, podes <a href="%{path}">continua aqui</a>. Uma confirmação será pedida.
+    description:
+      prefix_invited_by_user: "@%{name} convidou-o a juntar-se a este servidor do Mastodon!"
+      prefix_sign_up: Inscreva-se hoje no Mastodon!
+      suffix: Com uma conta, poderá seguir pessoas, publicar atualizações e trocar mensagens com utilizadores de qualquer servidor Mastodon e muito mais!
     didnt_get_confirmation: Não recebeu o email de confirmação?
     forgot_password: Esqueceste a palavra-passe?
     invalid_reset_password_token: Token de modificação da palavra-passe é inválido ou expirou. Por favor, solicita um novo.
@@ -465,11 +622,26 @@ pt-PT:
     migrate_account: Mudar para uma conta diferente
     migrate_account_html: Se desejas redirecionar esta conta para uma outra podes<a href="%{path}">configurar isso aqui</a>.
     or_log_in_with: Ou iniciar sessão com
+    providers:
+      cas: CAS
+      saml: SAML
     register: Registar
+    registration_closed: "%{instance} não está a aceitar novos membros"
     resend_confirmation: Reenviar instruções de confirmação
     reset_password: Criar nova palavra-passe
     security: Alterar palavra-passe
     set_new_password: Editar palavra-passe
+    setup:
+      email_below_hint_html: Se o endereço de e-mail abaixo estiver incorreto, pode alterá-lo aqui e receber um novo e-mail de confirmação.
+      email_settings_hint_html: O e-mail de confirmação foi enviado para %{email}. Se esse endereço de e-mail não estiver correcto, pode alterá-lo nas definições da conta.
+      title: Configuração
+    status:
+      account_status: Estado da conta
+      confirming: A aguardar que conclua a confirmação do e-mail.
+      functional: A sua conta está totalmente operacional.
+      pending: A sua inscrição está pendente de revisão pela nossa equipa. Isso pode demorar algum tempo. Receberá um e-mail se a sua conta for aprovada.
+      redirecting_to: A sua conta está inativa porque está atualmente a ser redirecionada para %{acct}.
+    trouble_logging_in: Problemas em iniciar sessão?
   authorize_follow:
     already_following: Tu já estás a seguir esta conta
     error: Infelizmente, ocorreu um erro ao buscar a conta remota
@@ -481,8 +653,14 @@ pt-PT:
       return: Voltar ao perfil do utilizador
       web: Voltar à página inicial
     title: Seguir %{acct}
+  challenge:
+    confirm: Continuar
+    hint_html: "<strong>Dica:</strong> Não vamos pedir novamente a sua senha durante a próxima hora."
+    invalid_password: Senha inválida
+    prompt: Confirme a sua senha para continuar
   datetime:
     distance_in_words:
+      about_x_hours: "%{count}h"
       about_x_months: "%{count} meses"
       about_x_years: "%{count} anos"
       almost_x_years: "%{count} anos"
@@ -495,18 +673,33 @@ pt-PT:
       x_months: "%{count} meses"
       x_seconds: "%{count} segundos"
   deletes:
+    challenge_not_passed: A informação que introduziu não estava correta
     confirm_password: Introduz a palavra-passe atual para verificar a tua identidade
+    confirm_username: Introduza o seu nome de utilizador para confirmar o procedimento
     proceed: Eliminar conta
     success_msg: A tua conta foi eliminada com sucesso
+    warning:
+      before: 'Antes de continuar, por favor leia cuidadosamente estas notas:'
+      caches: O conteúdo que foi armazenado em cache por outros servidores pode persistir
+      data_removal: As suas publicações e outros dados serão removidos permanentemente
+      email_change_html: Pode <a href="%{path}">alterar o seu endereço de e-mail</a> sem eliminar a sua conta
+      email_contact_html: Se ainda não chegou, pode enviar um e-mail a <a href="mailto:%{email}">%{email}</a> para obter ajuda
+      email_reconfirmation_html: Se não recebeu o e-mail de confirmação, pode <a href="%{path}">pedi-lo novamente</a>
+      irreversible: Não será possível restaurar ou reativar sua conta
+      more_details_html: Para mais detalhes, leia a <a href="%{terms_path}">política de privacidade</a>.
+      username_available: O seu nome de utilizador ficará novamente disponível
+      username_unavailable: O seu nome de utilizador permanecerá indisponível
   directories:
     directory: Dirétorio de perfil
     explanation: Descobre utilizadores com base nos seus interesses
     explore_mastodon: Explorar %{title}
+  domain_validator:
+    invalid_domain: não é um nome de domínio válido
   errors:
-    '400': The request you submitted was invalid or malformed.
+    '400': O pedido que submeteu foi inválido ou mal formulado.
     '403': Não tens a permissão necessária para ver esta página.
     '404': A página que estás a procurar não existe.
-    '406': This page is not available in the requested format.
+    '406': Esta página não está disponível no formato solicitado.
     '410': A página que estás a procurar não existe mais.
     '422':
       content: "A verificação de segurança falhou. \nDesativaste o uso de cookies?"
@@ -515,8 +708,11 @@ pt-PT:
     '500':
       content: Desculpe, mas algo correu mal.
       title: Esta página não está correta
-    '503': The page could not be served due to a temporary server failure.
+    '503': A página não pôde ser apresentada devido a uma falha temporária do servidor.
     noscript_html: Para usar o aplicativo web do Mastodon, por favor ativa o JavaScript. Alternativamente, experimenta um dos <a href="%{apps_path}">apps nativos</a> para o Mastodon na sua plataforma.
+  existing_username_validator:
+    not_found: não foi possível encontrar um utilizador local com esse nome
+    not_found_multiple: não foi possível encontrar %{usernames}
   exports:
     archive_takeout:
       date: Data
@@ -526,8 +722,8 @@ pt-PT:
       request: Pede o teu arquivo
       size: Tamanho
     blocks: Bloqueaste
+    csv: CSV
     domain_blocks: Bloqueios de domínio
-    follows: Segues
     lists: Listas
     mutes: Tens em silêncio
     storage: Armazenamento de média
@@ -535,6 +731,7 @@ pt-PT:
     add_new: Adicionar nova
     errors:
       limit: Já atingiste o limite máximo de hashtags
+    hint_html: "<strong>O que são hashtags em destaque?</strong> Elas são exibidas de forma bem visível no seu perfil público e permitem que as pessoas consultem as suas publicações públicas especificamente sob essas hashtags. São uma ótima ferramenta para manter o controlo de trabalhos criativos ou projetos de longo prazo."
   filters:
     contexts:
       home: Cronologia inicial
@@ -548,6 +745,7 @@ pt-PT:
       invalid_irreversible: Filtragem irreversível só funciona no contexto das notificações ou do início
     index:
       delete: Apagar
+      empty: Não tem filtros.
       title: Filtros
     new:
       title: Adicionar novo filtro
@@ -555,13 +753,37 @@ pt-PT:
     developers: Responsáveis pelo desenvolvimento
     more: Mais…
     resources: Recursos
+    trending_now: Tendências atuais
   generic:
+    all: Tudo
     changes_saved_msg: Alterações guardadas!
     copy: Copiar
+    no_batch_actions_available: Nenhuma ação em lote disponível nesta página
+    order_by: Ordenar por
     save_changes: Guardar alterações
     validation_errors:
       one: Algo não está correcto. Por favor vê o erro abaixo
       other: Algo não está correto. Por favor vê os %{count} erros abaixo
+  html_validator:
+    invalid_markup: 'contém marcação HTML inválida: %{error}'
+  identity_proofs:
+    active: Ativo
+    authorize: Sim, autorizar
+    authorize_connection_prompt: Autorizar esta conexão criptográfica?
+    errors:
+      failed: A conexão criptográfica falhou. Por favor, tente novamente a partir de %{provider}.
+      keybase:
+        invalid_token: Os tokens Keybase são hashes de assinaturas e devem conter 66 caracteres hexadecimais
+        verification_failed: O Keybase não reconhece este token como uma assinatura do utilizador do Keybase %{kb_username}. Por favor, tente novamente a partir do Keybase.
+      wrong_user: Não é possível criar uma prova para %{proving} enquanto estiver conetado como %{current}. Inicie sessão como %{proving} e tente novamente.
+    explanation_html: Aqui pode conetar criptograficamente as suas outras identidades, tais como um perfil Keybase. Isto permite que outras pessoas lhe enviem mensagens encriptadas e confiar em conteúdo que você lhes envia.
+    i_am_html: Sou %{username} em %{service}.
+    identity: Identidade
+    inactive: Inativo
+    publicize_checkbox: 'E publique isso:'
+    publicize_toot: 'Está provado! Eu sou %{username} em %{service}: %{url}'
+    status: Estado da verificação
+    view_proof: Ver prova
   imports:
     modes:
       merge: Juntar
@@ -608,6 +830,34 @@ pt-PT:
       too_many: Não é possível anexar mais de 4 arquivos
   migrations:
     acct: username@domain da nova conta
+    cancel: Cancelar redirecionamento
+    cancel_explanation: Cancelar o redirecionamento irá reativar a sua conta atual, mas não trará de volta os seguidores que foram migrados para essa conta.
+    cancelled_msg: Cancelou com sucesso o redireccionamento.
+    errors:
+      already_moved: é a mesma conta para a qual já migrou
+      missing_also_known_as: não está a referenciar esta conta
+      move_to_self: não pode ser conta atual
+      not_found: não pode ser encontrado
+      on_cooldown: Você está no período de espera
+    followers_count: Seguidores no momento da migração
+    incoming_migrations: A migrar de uma conta diferente
+    incoming_migrations_html: Para migrar de outra conta para esta, primeiro você precisa <a href="%{path}">criar um pseudónimo</a>.
+    moved_msg: A sua conta está agora a ser redireccionada para %{acct} e os seus seguidores estão a ser transferidos.
+    not_redirecting: A sua conta não está atualmente a ser redirecionada para nenhuma outra conta.
+    on_cooldown: Migrou recentemente a sua conta. Esta função ficará disponível novamente em %{count} dias.
+    past_migrations: Migrações anteriores
+    proceed_with_move: Migrar seguidores
+    redirecting_to: A sua conta está a ser redireccionada para %{acct}.
+    set_redirect: Definir redirecionamento
+    warning:
+      backreference_required: A nova conta deve primeiro ser configurada para que esta seja referenciada
+      before: 'Antes de continuar, leia cuidadosamente estas notas:'
+      cooldown: Após a migração, há um período de tempo de espera durante o qual não poderá voltar a migrar
+      disabled_account: Posteriormente, a sua conta atual não será totalmente utilizável. No entanto, continuará a ter acesso à exportação de dados, bem como à reativação.
+      followers: Esta ação irá migrar todos os seguidores da conta atual para a nova conta
+      only_redirect_html: Em alternativa, pode <a href="%{path}">apenas colocar um redireccionamento no seu perfil</a>.
+      other_data: Nenhum outro dado será migrado automaticamente
+      redirect: O perfil da sua conta atual será atualizado com um aviso de redirecionamento e será excluído das pesquisas
   moderation:
     title: Moderação
   notification_mailer:
@@ -644,11 +894,26 @@ pt-PT:
       body: 'O teu post foi partilhado por %{name}:'
       subject: "%{name} partilhou o teu post"
       title: Nova partilha
+  notifications:
+    email_events: Eventos para notificações por e-mail
+    email_events_hint: 'Selecione os eventos para os quais deseja receber notificações:'
+    other_settings: Outras opções de notificações
+  number:
+    human:
+      decimal_units:
+        format: "%n%u"
+        units:
+          billion: MM
+          million: M
+          quadrillion: Q
+          thousand: mil
+          trillion: T
   pagination:
     newer: Mais nova
     next: Seguinte
     older: Mais velha
     prev: Anterior
+    truncate: "&hellip;"
   polls:
     errors:
       already_voted: Tu já votaste nesta sondagem
@@ -656,11 +921,29 @@ pt-PT:
       duration_too_long: está demasiado à frente no futuro
       duration_too_short: é demasiado cedo
       expired: A sondagem já terminou
+      invalid_choice: A opção de voto escolhida não existe
       over_character_limit: não pode ter mais do que %{max} caracteres cada um
       too_few_options: tem de ter mais do que um item
       too_many_options: não pode conter mais do que %{max} itens
   preferences:
     other: Outro
+    posting_defaults: Padrões de publicação
+    public_timelines: Cronologias públicas
+  relationships:
+    activity: Atividade da conta
+    dormant: Inativo
+    followers: Seguidores
+    following: A seguir
+    last_active: Última atividade
+    most_recent: Mais recente
+    moved: Mudou-se
+    mutual: Mútuo
+    primary: Primário
+    relationship: Relação
+    remove_selected_domains: Remover todos os seguidores dos domínios selecionados
+    remove_selected_followers: Remover seguidores selecionados
+    remove_selected_follows: Deixar de seguir os utilizadores selecionados
+    status: Estado da conta
   remote_follow:
     acct: Entre seu usuário@domínio do qual quer seguir
     missing_resource: Não foi possível achar a URL de redirecionamento para sua conta
@@ -686,19 +969,48 @@ pt-PT:
     activity: Última atividade
     browser: Navegador
     browsers:
+      alipay: Alipay
+      blackberry: Blackberry
+      chrome: Chrome
+      edge: Microsoft Edge
+      electron: Electron
+      firefox: Firefox
       generic: Navegador desconhecido
+      ie: Internet Explorer
+      micro_messenger: MicroMessenger
       nokia: Navegador Nokia S40 Ovi
+      opera: Opera
       otter: Lontra
+      phantom_js: PhantomJS
+      qq: QQ Browser
+      safari: Safari
+      uc_browser: UCBrowser
+      weibo: Weibo
     current_session: Sessão atual
     description: "%{browser} em %{platform}"
     explanation: Estes são os navegadores que estão conectados com a tua conta do Mastodon.
+    ip: IP
     platforms:
+      adobe_air: Adobe Air
+      android: Android
+      blackberry: Blackberry
+      chrome_os: ChromeOS
       firefox_os: SO Firefox
+      ios: iOS
+      linux: Linux
+      mac: Mac
       other: Plataforma desconhecida
+      windows: Windows
+      windows_mobile: Windows Mobile
+      windows_phone: Windows Phone
     revoke: Revogar
     revoke_success: Sessão revogada com sucesso
     title: Sessões
   settings:
+    account: Conta
+    account_settings: Definições da conta
+    aliases: Pseudónimos da conta
+    appearance: Aspecto
     authorized_apps: Aplicativos autorizados
     back: Voltar ao Mastodon
     delete: Eliminação da conta
@@ -706,11 +1018,17 @@ pt-PT:
     edit_profile: Editar perfil
     export: Exportar dados
     featured_tags: Hashtags destacadas
+    identity_proofs: Provas de identidade
     import: Importar
+    import_and_export: Importar e exportar
     migrate: Migração de conta
     notifications: Notificações
     preferences: Preferências
+    profile: Perfil
+    relationships: Seguindo e seguidores
     two_factor_authentication: Autenticação em dois passos
+  spam_check:
+    spam_detected: Este é um relatório automatizado. Foi detectado spam.
   statuses:
     attached:
       description: 'Anexadas: %{attached}'
@@ -734,12 +1052,16 @@ pt-PT:
       private: Post não-público não pode ser fixado
       reblog: Não podes fixar uma partilha
     poll:
+      total_people:
+        one: "%{count} pessoa"
+        other: "%{count} pessoas"
       total_votes:
         one: "%{count} voto"
         other: "%{count} votos"
       vote: Votar
     show_more: Mostrar mais
     sign_in_to_participate: Inicie a sessão para participar na conversa
+    title: '%{name}: "%{quote}"'
     visibilities:
       private: Mostrar apenas para seguidores
       private_long: Mostrar apenas para seguidores
@@ -751,6 +1073,8 @@ pt-PT:
     pinned: Toot fixado
     reblogged: partilhado
     sensitive_content: Conteúdo sensível
+  tags:
+    does_not_match_previous_name: não coincide com o nome anterior
   terms:
     body_html: |
       <h2>Política de privacidade</h2>
@@ -838,6 +1162,10 @@ pt-PT:
     contrast: Mastodon (Elevado contraste)
     default: Mastodon
     mastodon-light: Mastodon (Leve)
+  time:
+    formats:
+      default: "%H:%M em %d de %b de %Y"
+      month: "%b de %Y"
   two_factor_authentication:
     code_hint: Entre o código gerado pelo seu aplicativo para confirmar
     description_html: Se ativar a <strong>autenticação em dois passos</strong>, quando logar será necessário o seu telefone que vai gerar os tokens para validação.
@@ -864,7 +1192,9 @@ pt-PT:
         disable: Enquanto a tua conta está congelada, os seus dados permanecem intactos, mas tu não podes executar quaisquer acções até que ela seja desbloqueada.
         silence: Enquanto a tua conta estiver limitada, só pessoas que já estiveres a seguir irão ver as tuas publicações neste servidor e poderás ser excluído de várias listagens públicas. No entanto, outros ainda te poderão seguir de forma manual.
         suspend: A tua conta foi suspensa e todas as tuas publicações e os teus ficheiros de media foram irreversivelmente removidos deste servidor e dos servidores onde tinhas seguidores.
+      get_in_touch: Pode responder a este e-mail para entrar em contacto com a equipa de %{instance}.
       review_server_policies: Revê as políticas do servidor
+      statuses: 'Especificamente, para:'
       subject:
         disable: A tua conta %{acct} foi congelada
         none: Aviso para %{acct}
@@ -877,7 +1207,7 @@ pt-PT:
         suspend: Conta suspensa
     welcome:
       edit_profile_action: Configura o perfil
-      edit_profile_step: Tu podes personalizar o teu perfil por carregar um avatar, cabeçalho, alterar o teu nickname e mais. Se tu preferires rever os novos seguidores antes deles te poderem seguir, podes bloquear a tua conta.
+      edit_profile_step: Podes personalizar o teu perfil carregando uma imagem de perfil e de cabeçalho ou alterando o nome a exibir, entre outras opções. Se preferires rever os novos seguidores antes deles te poderem seguir, podes tornar a tua conta privada.
       explanation: Aqui estão algumas dicas para começares
       final_action: Começa a publicar
       final_step: 'Começa a publicar! Mesmo sem seguidores, as tuas mensagens públicas podem ser vistas por outros, por exemplo, na cronologia local e em hashtags. Tu podes querer apresentar-te na hashtag #introductions.'
diff --git a/config/locales/ro.yml b/config/locales/ro.yml
index 7deab602139c2b16289ad21c472521fb29d158d9..3dc2a944db19b56d6cd692de0e01e4500a953224 100644
--- a/config/locales/ro.yml
+++ b/config/locales/ro.yml
@@ -73,7 +73,6 @@ ro:
       request: Cere arhiva ta
       size: Dimensiune
     blocks: Blocați
-    follows: Tu urmărești
     mutes: Opriți
     storage: Depozitare media
   filters:
diff --git a/config/locales/ru.yml b/config/locales/ru.yml
index df4a040488c7556c993113fae9d5fc24b535e91f..a62995721e18513182946cb37a810a8f0a43a54a 100644
--- a/config/locales/ru.yml
+++ b/config/locales/ru.yml
@@ -1,8 +1,8 @@
 ---
 ru:
   about:
-    about_hashtag_html: Это публичные статусы, отмеченные хэштегом <strong>#%{hashtag}</strong>. Вы можете взаимодействовать с ними при наличии у Вас аккаунта в глобальной сети Mastodon.
-    about_mastodon_html: Mastodon - это <em>свободная</em> социальная сеть с <em>открытым исходным кодом</em>. Как <em>децентрализованная</em> альтернатива коммерческим платформам, Mastodon предотвращает риск монополизации Вашего общения одной компанией. Выберите сервер, которому Вы доверяете &mdash; что бы Вы ни выбрали, Вы сможете общаться со всеми остальными. Любой может запустить свой собственный узел Mastodon и участвовать в <em>социальной сети</em> совершенно бесшовно.
+    about_hashtag_html: Это публичные посты, отмеченные хэштегом <strong>#%{hashtag}</strong>. Вы можете взаимодействовать с ними при наличии у Вас учётной записи в глобальной сети Mastodon.
+    about_mastodon_html: 'Социальная сеть будущего: никакой рекламы, слежки корпорациями, этичный дизайн и децентрализация! С Mastodon ваши данные под вашим контролем.'
     about_this: Об этом узле
     active_count_after: активных
     active_footnote: Ежемесячно активные пользователи (MAU)
@@ -10,27 +10,31 @@ ru:
     api: API
     apps: Приложения
     apps_platforms: Используйте Mastodon на iOS, Android и других платформах
-    browse_directory: Изучайте каталог профилей и ищите по интересам
-    browse_public_posts: Просматривайте в реальном времени новые статусы в Mastodon
+    browse_directory: Изучите каталог и найдите профили по интересам
+    browse_local_posts: Просматривайте в реальном времени новые посты с этого сервера
+    browse_public_posts: Взгляните на новые посты Mastodon в реальном времени
     contact: Связаться
     contact_missing: не указан
     contact_unavailable: неизв.
-    discover_users: Находите пользователей
+    discover_users: Найдите пользователей
     documentation: Документация
     federation_hint_html: С учётной записью на %{instance} вы сможете подписываться на людей с любого сервера Mastodon и не только.
-    get_apps: Попробуйте мобильное приложение
-    hosted_on: Mastodon размещен на %{domain}
+    get_apps: Попробуйте мобильные приложения
+    hosted_on: Вы получили это сообщение, так как зарегистрированы на %{domain}
+    instance_actor_flash: |
+      Эта учетная запись является виртуальным персонажем, используемым для представления самого сервера, а не какого-либо пользователя.
+      Используется для целей федерации и не должен быть заблокирован, если вы не хотите заблокировать всю инстанцию, вместо этого лучше использовать доменную блокировку.
     learn_more: Узнать больше
     privacy_policy: Политика конфиденциальности
-    see_whats_happening: Узнавайте, что происходит вокруг
+    see_whats_happening: Узнайте, что происходит вокруг
     server_stats: 'Статистика сервера:'
     source_code: Исходный код
     status_count_after:
-      few: статуса
-      many: статусов
-      one: статус
-      other: статусов
-    status_count_before: Опубликовано
+      few: поста
+      many: постов
+      one: пост
+      other: поста
+    status_count_before: И опубликовано
     tagline: Подписывайтесь на друзей и заводите новые знакомства
     terms: Условия использования
     unavailable_content: Содержимое недоступно
@@ -38,15 +42,20 @@ ru:
       domain: Сервер
       reason: Причина
       rejecting_media: 'Медиафайлы с этих серверов не будут обработаны или сохранены. Их миниатюры не будут отображаться и вам придётся вручную нажимать на исходный файл:'
+      silenced: 'Посты с этих серверов будут скрыты из публичных лент и обсуждений, как и не будут рассылаться уведомления касательно действий тамошних пользователей, если, конечно, вы не подписаны на них:'
+      suspended: 'Обмен, хранение и обработка данных с этих серверов будут прекращены, что сделает невозможным взаимодействие или общение с пользователями с этих серверов:'
+    unavailable_content_html: 'Mastodon в основном позволяет просматривать содержимое и взаимодействовать с другими пользователями любых серверов в федерации. Вот исключения, сделанные конкретно для этого сервера:'
     user_count_after:
       few: пользователя
       many: пользователей
       one: пользователь
-      other: пользователей
-    user_count_before: Здесь живет
+      other: пользователя
+    user_count_before: Здесь расположились
     what_is_mastodon: Что такое Mastodon?
   accounts:
     choices_html: "%{name} рекомендует:"
+    endorsements_hint: Вы можете рекомендовать людей, которые вы отслеживаете из веб-интерфейса, и они будут показаны здесь.
+    featured_tags_hint: Вы можете указать конкретные хэштеги, которые будут отображаться здесь.
     follow: Подписаться
     followers:
       few: подписчика
@@ -67,23 +76,24 @@ ru:
     pin_errors:
       following: Чтобы порекомендовать кого-то, надо сначала на них подписаться
     posts:
-      few: статуса
+      few: поста
       many: статусов
-      one: статус
+      one: Пост
       other: статусов
-    posts_tab_heading: Статусы
+    posts_tab_heading: Посты
     posts_with_replies: Посты с ответами
     reserved_username: Имя пользователя зарезервировано
     roles:
       admin: Администратор
       bot: Бот
+      group: Группа
       moderator: Модератор
     unavailable: Профиль недоступен
     unfollow: Отписаться
   admin:
     account_actions:
       action: Выполнить действие
-      title: Произвести модерацию аккаунта %{acct}
+      title: Произвести модерацию учётной записи %{acct}
     account_moderation_notes:
       create: Создать
       created_msg: Заметка модератора успешно создана!
@@ -96,7 +106,7 @@ ru:
       avatar: Аватар
       by_domain: Домен
       change_email:
-        changed_msg: E-mail аккаунта успешно изменён!
+        changed_msg: E-mail учётной записи успешно изменён!
         current_email: Текущий e-mail
         label: Сменить e-mail
         new_email: Новый e-mail
@@ -107,7 +117,7 @@ ru:
       confirming: Подтверждение
       deleted: Удалён
       demote: Разжаловать
-      disable: Отключить
+      disable: Заморозка
       disable_two_factor_authentication: Отключить 2FA
       disabled: Отключено
       display_name: Отображаемое имя
@@ -117,9 +127,7 @@ ru:
       email_status: Статус e-mail
       enable: Включить
       enabled: Включен
-      feed_url: URL фида
       followers: Подписчики
-      followers_url: URL подписчиков
       follows: Подписки
       header: Шапка
       inbox_url: URL входящих
@@ -131,26 +139,24 @@ ru:
         local: Локальные
         remote: Удаленные
         title: Размещение
-      login_status: Статус аккаунта
+      login_status: Статус учётной записи
       media_attachments: Мультимедийные вложения
-      memorialize: Превратить в Памятник
+      memorialize: Сделать мемориалом
       moderation:
         active: Действующие
         all: Все
         pending: В ожидании
-        silenced: Заглушенные
+        silenced: Скрытые
         suspended: Заблокированные
         title: Модерация
       moderation_notes: Заметки модератора
       most_recent_activity: Последняя активность
       most_recent_ip: Последний IP
-      no_account_selected: Ничего не выбрано, никакие аккаунты не изменены
+      no_account_selected: Ничего не изменилось, так как ни одна учётная запись не была выделена
       no_limits_imposed: Без ограничений
       not_subscribed: Не подписаны
-      outbox_url: URL исходящих
       pending: Ожидает рассмотрения
-      perform_full_suspension: Полная блокировка
-      profile_url: URL профиля
+      perform_full_suspension: Блокировка
       promote: Повысить
       protocol: Протокол
       public: Публичный
@@ -159,7 +165,7 @@ ru:
       reject: Отклонить
       reject_all: Отклонить все
       remove_avatar: Удалить аватар
-      remove_header: Удалить шапку
+      remove_header: Убрать шапку
       resend_confirmation:
         already_confirmed: Этот пользователь уже подтвержден
         send: Повторно отправить подтверждение по электронной почте
@@ -173,60 +179,62 @@ ru:
         moderator: Модератор
         staff: Персонал
         user: Пользователь
-      salmon_url: Страница Salmon
       search: Поиск
+      search_same_ip: Другие пользователи с таким же IP
       shared_inbox_url: URL общих входящих
       show:
-        created_reports: Жалобы, отправленные этим аккаунтом
-        targeted_reports: Жалобы на этот аккаунт
-      silence: Заглушить
+        created_reports: Жалобы, отправленные с этой учётной записи
+        targeted_reports: Жалобы на эту учётную запись
+      silence: Скрытие
       silenced: Заглушен
-      statuses: Статусы
+      statuses: Посты
       subscribe: Подписаться
       suspended: Заморожен
       time_in_queue: Ожидание в очереди %{time}
-      title: Аккаунты
+      title: Учётные записи
       unconfirmed_email: Неподтверждённый e-mail
-      undo_silenced: Снять глушение
+      undo_silenced: Отменить скрытие
       undo_suspension: Снять блокировку
       unsubscribe: Отписаться
       username: Имя пользователя
-      warn: Предупредить
+      warn: Предупреждение
       web: Веб
       whitelisted: В белом списке
     action_logs:
       actions:
-        assigned_to_self_report: "%{name} назначил(а) жалобу %{target} на себя"
+        assigned_to_self_report: "%{name} назначил(а) себя для решения жалобы %{target}"
         change_email_user: "%{name} сменил(а) e-mail пользователя %{target}"
         confirm_user: "%{name} подтвердил(а) e-mail адрес пользователя %{target}"
-        create_account_warning: "%{name} отправил(а) предупреждение для %{target}"
+        create_account_warning: "%{name} выдал(а) предупреждение %{target}"
         create_custom_emoji: "%{name} загрузил(а) новый эмодзи %{target}"
+        create_domain_allow: "%{name} внес(ла) домен %{target} в белый список"
         create_domain_block: "%{name} заблокировал(а) домен %{target}"
         create_email_domain_block: "%{name} добавил(а) e-mail домен %{target} в чёрный список"
         demote_user: "%{name} разжаловал(а) пользователя %{target}"
-        destroy_custom_emoji: "%{name} удалил(а) эмодзи %{target}"
+        destroy_custom_emoji: "%{name} измельчил(а) эмодзи %{target} в пыль"
+        destroy_domain_allow: "%{name} убрал домен %{target} из белого списка"
         destroy_domain_block: "%{name} разблокировал(а) домен %{target}"
         destroy_email_domain_block: "%{name} добавил(а) e-mail домен %{target} в белый список"
-        destroy_status: "%{name} удалил(а) статус пользователя %{target}"
+        destroy_status: "%{name} удалил(а) пост пользователя %{target}"
         disable_2fa_user: "%{name} отключил(а) двухэтапную авторизацию у пользователя %{target}"
         disable_custom_emoji: "%{name} отключил(а) эмодзи %{target}"
-        disable_user: "%{name} запретил(а) вход пользователя %{target}"
+        disable_user: "%{name} заморозил(а) пользователя %{target}"
         enable_custom_emoji: "%{name} включил(а) эмодзи %{target}"
-        enable_user: "%{name} включил(а) вход пользователя %{target}"
-        memorialize_account: "%{name} перевел(а) аккаунт пользователя %{target} в режим памятника"
+        enable_user: "%{name} разморозил(а) пользователя %{target}"
+        memorialize_account: "%{name} перевел(а) учётную запись пользователя %{target} в режим памятника"
         promote_user: "%{name} повысил(а) пользователя %{target}"
-        remove_avatar_user: "%{name} удалил(а) аватар пользователя %{target}"
+        remove_avatar_user: "%{name} убрал(а) аватарку пользователя %{target}"
         reopen_report: "%{name} переоткрыл(а) жалобу %{target}"
         reset_password_user: "%{name} сбросил(а) пароль пользователя %{target}"
         resolve_report: "%{name} решил(а) жалобу %{target}"
-        silence_account: "%{name} заглушил(а) аккаунт %{target}"
-        suspend_account: "%{name} заморозил(а) аккаунт %{target}"
+        silence_account: "%{name} наложил(а) ограничения на видимость постов учётной записи %{target}"
+        suspend_account: "%{name} заблокировал(а) учётную запись %{target}"
         unassigned_report: "%{name} сняла назначение жалобы %{target}"
-        unsilence_account: "%{name} снял(а) глушение аккаунта %{target}"
-        unsuspend_account: "%{name} разморозил(а) аккаунт %{target}"
+        unsilence_account: "%{name} снял ограничения видимости постов пользователя %{target}"
+        unsuspend_account: "%{name} снял(а) блокировку с пользователя %{target}"
         update_custom_emoji: "%{name} обновил(а) эмодзи %{target}"
-        update_status: "%{name} изменил(а) статус пользователя %{target}"
-      deleted_status: "(удалённый статус)"
+        update_status: "%{name} изменил(а) пост пользователя %{target}"
+      deleted_status: "(удалённый пост)"
       title: Журнал событий
     custom_emojis:
       assign_category: Задать категорию
@@ -253,8 +261,9 @@ ru:
       overwrite: Заменить
       shortcode: Шорткод
       shortcode_hint: Как минимум 2 символа, только алфавитно-цифровые символы и подчеркивания
-      title: Собственные эмодзи
+      title: Эмодзи
       uncategorized: Вне категорий
+      unlist: Убрать
       unlisted: Не в списке
       update_failed_msg: Невозможно обновить этот эмодзи
       updated_msg: Эмодзи обновлён!
@@ -263,7 +272,7 @@ ru:
       authorized_fetch_mode: Защищённый режим
       backlog: задачи
       config: Конфигурация
-      feature_deletions: Удаление аккаунтов
+      feature_deletions: Удаление учётных записей
       feature_invites: Пригласительные ссылки
       feature_profile_directory: Каталог профилей
       feature_registrations: Регистрация
@@ -298,66 +307,76 @@ ru:
       destroyed_msg: Блокировка домена снята
       domain: Домен
       edit: Редактировать блокировку
+      existing_domain_block_html: Вы уже ввели более строгие ограничения на %{name}, вам нужно <a href="%{unblock_url}">разблокировать его</a> сначала.
       new:
         create: Создать блокировку
-        hint: Блокировка домена не предотвратит создание новых аккаунтов в базе данных, но ретроактивно и автоматически применит указанные методы модерации для этих аккаунтов.
+        hint: Блокировка домена не предотвратит создание новых учётных записей в базе данных, но ретроактивно и автоматически применит указанные методы модерации для этих учётных записей.
         severity:
-          desc_html: "<strong>Глушение</strong> сделает статусы аккаунта невидимыми для всех, кроме их подписчиков. <strong>Блокировка</strong> удалит весь контент аккаунта, включая мультимедийные вложения и данные профиля. Используйте <strong>Ничего</strong>, если хотите только запретить медиаконтент."
+          desc_html: |-
+            Используйте <strong>скрытие</strong> для того, чтобы публикуемые пользователями посты перестали быть видимыми для всех, кроме их подписчиков.<br>
+            <br>
+            <strong>Блокировка</strong> удалит весь локальный контент учётных записей с этого домена, включая мультимедийные вложения и данные профилей.<br>
+            <br>
+            <strong>Ничего</strong> же попросту скроет медиаконтент с домена.
           noop: Ничего
-          silence: Глушение
+          silence: Скрытие
           suspend: Блокировка
-        title: Новая доменная блокировка
+        title: Новая блокировка e-mail домена
       private_comment: Приватный комментарий
+      private_comment_hint: Комментарий к доменной блокировке для внутреннего использования модераторами.
       public_comment: Публичный комментарий
-      reject_media: Запретить медиаконтент
+      public_comment_hint: Комментарий к этой доменной блокировке для широкой публики, если включена публикация списка блокировок.
+      reject_media: Запретить загрузку медиафайлов
       reject_media_hint: Удаляет локально хранимый медиаконтент и запрещает его загрузку в будущем. Не имеет значения в случае блокировки.
       reject_reports: Отклонять жалобы
       reject_reports_hint: Игнорировать все жалобы с этого домена. Не имеет значения в случае блокировки.
       rejecting_media: отклонение медиафайлов
       rejecting_reports: отклонение жалоб
       severity:
-        silence: заглушен
-        suspend: заморожен
+        silence: скрывается
+        suspend: заблокирован
       show:
         affected_accounts:
-          few: Влияет на %{count} аккаунта в базе данных
-          many: Влияет на %{count} аккаунтов в базе данных
-          one: Влияет на один аккаунт в базе данных
-          other: Влияет на %{count} аккаунтов в базе данных
+          few: "%{count} учетных записей в базе данных затронуты"
+          many: "%{count} учетных записей в базе данных затронуты"
+          one: Влияет на одну учётную запись в базе данных
+          other: "%{count} учетных записей в базе данных затронуты"
         retroactive:
-          silence: Снять глушение со всех существующих аккаунтов этого домена
-          suspend: Снять блокировку со всех существующих аккаунтов этого домена
+          silence: Убрать скрытие постов учётных записей с этого узла
+          suspend: Снять блокировку со всех существующих учётных записей этого домена
         title: Снять блокировку с домена %{domain}
         undo: Отменить
       undo: Отменить блокировку домена
+      view: Посмотреть доменные блокировки
     email_domain_blocks:
       add_new: Добавить новую
-      created_msg: Доменная блокировка еmail успешно создана
+      created_msg: E-mail домен внесён в список блокировки
       delete: Удалить
-      destroyed_msg: Доменная блокировка еmail успешно удалена
+      destroyed_msg: Домен убран из списка e-mail блокировки
       domain: Домен
+      empty: Никакие e-mail домены не блокируются.
       new:
         create: Создать блокировку
-        title: Новая доменная блокировка еmail
-      title: Доменная блокировка email
+        title: Новая блокировка по домену
+      title: Блокировка e-mail доменов
     followers:
-      back_to_account: Вернуться к аккаунту
+      back_to_account: Вернуться к учётной записи
       title: Подписчики пользователя %{acct}
     instances:
       by_domain: Домен
       delivery_available: Доставка возможна
       known_accounts:
-        few: "%{count} известных аккаунта"
-        many: "%{count} известных аккаунтов"
-        one: "%{count} известный аккаунт"
-        other: "%{count} известных аккаунтов"
+        few: "%{count} известных учётных записей"
+        many: "%{count} известных учётных записей"
+        one: "%{count} известных учётных записей"
+        other: "%{count} известных учётных записей"
       moderation:
         all: Все
         limited: Ограниченные
         title: Модерация
       private_comment: Приватный комментарий
       public_comment: Публичный комментарий
-      title: Известные узлы
+      title: Федерация
       total_blocked_by_us: Заблокировано нами
       total_followed_by_them: Их подписчиков
       total_followed_by_us: Наших подписчиков
@@ -372,20 +391,21 @@ ru:
         title: Фильтр
       title: Приглашения
     pending_accounts:
-      title: Ожидающие аккаунты (%{count})
+      title: Ожидающие учетные записи (%{count})
     relays:
       add_new: Добавить ретранслятор
       delete: Удалить
-      description_html: "<strong>Федеративный ретранслятор</strong> – это промежуточный сервер, который передаёт большие объёмы публичных статусов между серверами, которые подписываются и публикуют туда. <strong>Это может помочь небольшим и средним серверам находить записи со всей федерации</strong>, ведь в противном случае пользователям нужно будет вручную подписываться на людей с удалённых узлов."
+      description_html: "<strong>Федеративный ретранслятор</strong> – это промежуточный сервер, который передаёт большие объёмы публичных постов между серверами, которые подписываются и публикуют туда. <strong>Это может помочь небольшим и средним серверам находить записи со всей федерации</strong>, ведь в противном случае пользователям нужно будет вручную подписываться на людей с удалённых узлов."
       disable: Отключить
       disabled: Отключено
       enable: Включить
-      enable_hint: Если включено, ваш сервер будет подписан на все публичные статусы с этого ретранслятора и начнёт туда отправлять публичные статусы со своего узла.
+      enable_hint: Если включено, ваш сервер будет подписан на все публичные посты с этого ретранслятора и начнёт туда отправлять публичные посты со своего узла.
       enabled: Включено
       inbox_url: URL ретранслятора
       pending: Ожидание подтверждения ретранслятора
       save_and_enable: Сохранить и включить
       setup: Настроить соединение с ретранслятором
+      signatures_not_enabled: Ретрансляторы не будут работать правильно, пока включен безопасный режим или режим белого списка
       status: Состояние
       title: Ретрансляторы
     report_notes:
@@ -393,17 +413,26 @@ ru:
       destroyed_msg: Примечание жалобы удалено!
     reports:
       account:
-        note: заметок
-        report: жалоб
+        notes:
+          few: "%{count} заметки"
+          many: "%{count} заметок"
+          one: "%{count} заметка"
+          other: "%{count} заметки"
+        reports:
+          few: "%{count} жалобы"
+          many: "%{count} жалоб"
+          one: "%{count} жалоба"
+          other: "%{count} жалобы"
       action_taken_by: 'Действие предпринято:'
       are_you_sure: Вы уверены?
       assign_to_self: Назначить себе
       assigned: Назначенный модератор
+      by_target_domain: Домен объекта жалобы
       comment:
         none: Нет
-      created_at: Создано
-      mark_as_resolved: Отметить как разрешенную
-      mark_as_unresolved: Отметить как неразрешённую
+      created_at: Создана
+      mark_as_resolved: Отметить как решённую
+      mark_as_unresolved: Отметить как нерешённую
       notes:
         create: Добавить заметку
         create_and_resolve: Разрешить с примечанием
@@ -411,22 +440,22 @@ ru:
         delete: Удалить
         placeholder: Опишите, какие действия были приняты, или любые другие подробности…
       reopen: Переоткрыть жалобу
-      report: 'Жалоба #%{id}'
-      reported_account: Аккаунт нарушителя
+      report: Жалоба №%{id}
+      reported_account: Учётная запись нарушителя
       reported_by: Отправитель жалобы
-      resolved: Разрешенные
-      resolved_msg: Жалоба успешно обработана!
+      resolved: Решённые
+      resolved_msg: Жалоба обработана, спасибо!
       status: Статус
       title: Жалобы
       unassign: Снять назначение
-      unresolved: Неразрешенные
+      unresolved: Нерешённые
       updated_at: Обновлена
     settings:
       activity_api_enabled:
-        desc_html: Подсчёт количества локальных статусов, активных пользователей и новых регистраций на еженедельной основе
+        desc_html: Подсчёт количества локальных постов, активных пользователей и новых регистраций на еженедельной основе
         title: Публикация агрегированной статистики активности пользователей
       bootstrap_timeline_accounts:
-        desc_html: Разделяйте имена пользователей запятыми. Сработает только для локальных незакрытых аккаунтов. По умолчанию включены все локальные администраторы.
+        desc_html: Разделяйте имена пользователей запятыми. Сработает только для локальных незакрытых учётных записей. По умолчанию включены все локальные администраторы.
         title: Подписки по умолчанию для новых пользователей
       contact_information:
         email: Введите публичный e-mail
@@ -435,12 +464,17 @@ ru:
         desc_html: Измените внешний вид с CSS, загружаемым на каждой странице
         title: Особый CSS
       default_noindex:
+        desc_html: Влияет на всех пользователей, которые не изменили эти настройки сами
         title: Исключить пользователей из индексации поисковиками по умолчанию
       domain_blocks:
         all: Всем
         disabled: Никому
         title: Доменные блокировки
         users: Залогиненным локальным пользователям
+      domain_blocks_rationale:
+        title: Показать обоснование
+      enable_bootstrap_timeline_accounts:
+        title: Включить подписки по умолчанию для новых пользователей
       hero:
         desc_html: Отображается на главной странице. Рекомендуется разрешение не менее 600х100px. Если не установлено, используется изображение узла
         title: Баннер узла
@@ -451,8 +485,8 @@ ru:
         desc_html: Домены, которые были замечены этим узлом среди всей федерации
         title: Публикация списка обнаруженных узлов
       preview_sensitive_media:
-        desc_html: Предпросмотр ссылок с остальных веб-сайтов будет показан даже если медиаконтент отмечен как чувствительный
-        title: Показывать чувствительный медиаконтент в предпросмотре OpenGraph
+        desc_html: Предпросмотр для ссылок будет отображать миниатюры даже для содержимого, помеченного как деликатное
+        title: Показывать деликатные медиафайлы в превью OpenGraph
       profile_directory:
         desc_html: Позволять находить пользователей
         title: Включить каталог профилей
@@ -461,8 +495,8 @@ ru:
           desc_html: Отображается на титульной странице, когда закрыта регистрация<br>Можно использовать HTML-теги
           title: Сообщение о закрытой регистрации
         deletion:
-          desc_html: Позволяет всем удалять собственные аккаунты
-          title: Разрешить удаление аккаунтов
+          desc_html: Позволяет всем удалять собственные учётные записи
+          title: Разрешить удаление учётных записей
         min_invite_role:
           disabled: Никого
           title: Разрешать приглашения от
@@ -474,7 +508,7 @@ ru:
         title: Режим регистраций
       show_known_fediverse_at_about_page:
         desc_html: Если включено, показывает посты со всех известных узлов в предпросмотре ленты. В противном случае отображаются только локальные посты.
-        title: Показывать известные узлы в предпросмотре ленты
+        title: Показывать контент со всей федерации в публичной ленте неавторизованным пользователям
       show_staff_badge:
         desc_html: Показывать метку персонала на странице пользователя
         title: Показывать метку персонала
@@ -492,6 +526,7 @@ ru:
         title: Условия использования
       site_title: Название сайта
       spam_check_enabled:
+        desc_html: Мастодон может автоматически сообщать об учётных записях, отправляющих повторяющиеся нежелательные сообщения. Возможны ложные срабатывания.
         title: Анти-спам
       thumbnail:
         desc_html: Используется для предпросмотра с помощью OpenGraph и API. Рекомендуется разрешение 1200x630px
@@ -500,29 +535,44 @@ ru:
         desc_html: Показывать публичную ленту на приветственной странице
         title: Предпросмотр ленты
       title: Настройки сайта
+      trendable_by_default:
+        desc_html: Влияет на хэштеги, которые не были ранее запрещены
+        title: Разрешить добавление хештегов в список актульных без предварительной проверки
       trends:
+        desc_html: Публично отобразить проверенные хэштеги, актуальные на данный момент
         title: Популярные хэштеги
     statuses:
-      back_to_account: Назад к странице аккаунта
+      back_to_account: Назад к учётной записи
       batch:
         delete: Удалить
-        nsfw_off: Выключить NSFW
-        nsfw_on: Включить NSFW
+        nsfw_off: Снять отметку «деликатного»
+        nsfw_on: Отметить как «деликатное»
       deleted: Удалено
       failed_to_execute: Не удалось выполнить
       media:
-        title: Медиаконтент
-      no_media: Без медиаконтента
-      no_status_selected: Не выбран ни один статус, ничего не изменено
-      title: Статусы аккаунта
-      with_media: С медиаконтентом
+        title: Файлы медиа
+      no_media: Без медиа
+      no_status_selected: Ничего не изменилось, так как ни один пост не был выделен
+      title: Посты пользователя
+      with_media: С медиа
     tags:
       accounts_today: Уникальных использований за сегодня
       accounts_week: Уникальных использований за эту неделю
+      breakdown: Разбивка сегодняшнего использования по источникам
       context: Контекст
       directory: В каталоге
       in_directory: "%{count} в каталоге"
+      last_active: Последняя активность
+      most_popular: Самые популярные
+      most_recent: Последние
+      name: Хэштег
+      review: Состояние проверки
+      reviewed: Проверенные
       title: Хэштеги
+      trending_right_now: Популярно сейчас
+      unique_uses_today: "%{count} чел. пишут об этом"
+      unreviewed: Непроверенные
+      updated_msg: Настройки хэштега обновлены
     title: Администрирование
     warning_presets:
       add_new: Добавить
@@ -532,24 +582,40 @@ ru:
       title: Управление шаблонами предупреждений
   admin_mailer:
     new_pending_account:
-      body: Ниже указана информация об аккаунте. Вы можете одобрить или отклонить заявку.
-      subject: Новый аккаунт для рассмотрения на %{instance} (%{username})
+      body: Ниже указана информация учётной записи. Вы можете одобрить или отклонить заявку.
+      subject: Новая учётная запись для рассмотрения на %{instance} (%{username})
     new_report:
       body: "%{reporter} подал(а) жалобу на %{target}"
       body_remote: Кто-то с узла %{domain} пожаловался на %{target}
-      subject: Новая жалоба, узел %{instance} (#%{id})
+      subject: Новая жалоба, узел %{instance} (№%{id})
+    new_trending_tag:
+      body: 'Хэштег #%{name} актуален сегодня, но не был проверен. Он не будет отображаться публично, если вы не одобрите его, или просто сохраните эту форму как есть, чтоб никогда больше о нём не слышать.'
+      subject: Новый хэштег для проверки на %{instance} (#%{name})
+  aliases:
+    add_new: Создать псевдоним
+    created_msg: Новый псевдоним установлен. Теперь мы можете начать миграцию со старой учётной записи.
+    deleted_msg: Псевдоним успешно удалён. Миграция старой учётной записи в текущую более невозможна.
+    hint_html: Если вы собираетесь мигрировать с другой учётной записи на эту, вы можете настроить псевдоним, что требуется для переноса подписчиков со старой учётной записи. Это действие само по себе <strong>безвредно и обратимо</strong>. <strong>Миграция учётной записи начинается со старой учётной записи</strong>.
+    remove: Отвязать псевдоним
   appearance:
     advanced_web_interface: Многоколоночный интерфейс
+    advanced_web_interface_hint: 'Если вы хотите использовать всю ширину экрана, расширенный веб-интерфейс позволяет настроить множество различных столбцов, чтобы увидеть столько информации, сколько вы хотите: главную ленту, уведомления, глобальную ленту, любое количество списков и хэштегов.'
+    animations_and_accessibility: Анимации и доступность
     confirmation_dialogs: Окна подтверждений
     discovery: Обзор
-    sensitive_content: Чувствительное содержимое
+    localization:
+      body: Mastodon переводится добровольцами.
+      guide_link: https://sasha-sorokin.gitlab.io/mastodon-ru/
+      guide_link_text: Каждый может внести свой вклад.
+    sensitive_content: Деликатное содержимое
+    toot_layout: Структура постов
   application_mailer:
-    notification_preferences: Изменить настройки e-mail
+    notification_preferences: Настроить уведомления можно здесь
     salutation: "%{name},"
-    settings: 'Изменить настройки e-mail: %{link}'
+    settings: 'Настроить уведомления можно здесь: %{link}'
     view: 'Просмотр:'
     view_profile: Просмотреть профиль
-    view_status: Просмотреть статус
+    view_status: Просмотреть пост
   applications:
     created: Приложение успешно создано
     destroyed: Приложение успешно удалено
@@ -562,15 +628,20 @@ ru:
     apply_for_account: Запросить приглашение
     change_password: Пароль
     checkbox_agreement_html: Я соглашаюсь с <a href="%{rules_path}" target="_blank">правилами сервера</a> и <a href="%{terms_path}" target="_blank">Условиями использования</a>
-    delete_account: Удалить аккаунт
-    delete_account_html: Если Вы хотите удалить свой аккаунт, вы можете <a href="%{path}">перейти сюда</a>. У Вас будет запрошено подтверждение.
+    checkbox_agreement_without_rules_html: Я согласен с <a href="%{terms_path}" target="_blank">условиями использования</a>
+    delete_account: Удалить учётную запись
+    delete_account_html: Удалить свою учётную запись <a href="%{path}">можно в два счёта здесь</a>, но прежде у вас будет спрошено подтверждение.
+    description:
+      prefix_invited_by_user: "@%{name} приглашает вас присоединиться к этому узлу Mastodon."
+      prefix_sign_up: Зарегистрируйтесь в Mastodon уже сегодня!
+      suffix: Имея учётную запись, вы можете подписываться на людей, постить обновления, обмениваться сообщениями с пользователями любых узлов Mastodon и не только!
     didnt_get_confirmation: Не получили инструкцию для подтверждения?
     forgot_password: Забыли пароль?
     invalid_reset_password_token: Токен сброса пароля неверен или устарел. Пожалуйста, запросите новый.
     login: Войти
     logout: Выйти
-    migrate_account: Перенести аккаунт
-    migrate_account_html: Если вы хотите перенаправить подписчиков на другой аккаунт, это можно <a href="%{path}">настроить здесь</a>.
+    migrate_account: Перенос учётной записи
+    migrate_account_html: Завели новую учётную запись? Перенаправьте подписчиков на неё — <a href="%{path}">настройте перенаправление тут</a>.
     or_log_in_with: Или войти с помощью
     providers:
       cas: CAS
@@ -581,22 +652,31 @@ ru:
     reset_password: Сбросить пароль
     security: Безопасность
     set_new_password: Задать новый пароль
+    setup:
+      email_below_hint_html: Если ниже указан неправильный адрес, вы можете исправить его здесь и получить новое письмо подтверждения.
+      email_settings_hint_html: Письмо с подтверждением было отправлено на %{email}. Если адрес указан неправильно, его можно поменять в настройках учётной записи.
+      title: Установка
     status:
-      functional: Ваш аккаунт в полном порядке.
-      redirecting_to: Ваш аккаунт признан неактивным, потому что он перенаправляет на %{acct}.
+      account_status: Статус учётной записи
+      confirming: Ожидание подтверждения e-mail.
+      functional: Ваша учётная запись в полном порядке.
+      pending: Ваша заявка ожидает одобрения администраторами, это может занять немного времени. Вы получите письмо, как только заявку одобрят.
+      redirecting_to: Ваша учётная запись признана неактивным, потому что она перенаправляется на %{acct}.
     trouble_logging_in: Не удаётся войти?
   authorize_follow:
-    already_following: Вы уже подписаны на этот аккаунт
-    error: К сожалению, при поиске удаленного аккаунта возникла ошибка
+    already_following: Вы уже подписаны на эту учётную запись
+    error: К сожалению, при поиске удалённой учётной записи возникла ошибка
     follow: Подписаться
     follow_request: 'Вы отправили запрос на подписку:'
     following: 'Ура! Теперь Вы подписаны на:'
     post_follow:
       close: Или просто закрыть это окно.
       return: Вернуться к профилю пользователя
-      web: Перейти к WWW
+      web: Открыть в веб-версии
     title: Подписаться на %{acct}
   challenge:
+    confirm: Продолжить
+    hint_html: "<strong>Подсказка</strong>: мы не будем спрашивать пароль повторно в течение часа."
     invalid_password: Неверный пароль
     prompt: Введите пароль для продолжения
   datetime:
@@ -615,18 +695,21 @@ ru:
       x_seconds: "%{count}сек"
   deletes:
     challenge_not_passed: Введённая вами информация некорректна
-    confirm_password: Введите текущий пароль для подтверждения Вашей личности
-    confirm_username: Введите свой юзернейм для подтверждения
-    proceed: Удалить аккаунт
-    success_msg: Ваш аккаунт был успешно удален
+    confirm_password: Введите свой пароль, чтобы подтвердить, что вы — это вы, и никто другой
+    confirm_username: Введите своё имя пользователя для подтверждения
+    proceed: Удалить учётную запись
+    success_msg: Ваша учётная запись была успешно удалена
     warning:
       before: 'Внимательно прочитайте следующую информацию перед началом:'
-      caches: Содержимое, которое было закэшировано другими серверами, может сохраниться
-      data_removal: Ваши записи и прочие данные будут безвозвратно удалены
-      email_change_html: <a href="%{path}">Поменять свой e-mail</a> можно не удаляя аккаунт
-      irreversible: Вы не сможете восстановить или повторно активировать свой аккаунт
-      username_available: Ваш юзернейм снова станет доступным
-      username_unavailable: Ваш юзернейм останется недоступным
+      caches: Некоторые данные, обработанные другими узлами, однако, могут храниться ещё какое-то время
+      data_removal: Все ваши золотые посты, шикарный профиль и прочие данные будут безвозвратно уничтожены
+      email_change_html: <a href="%{path}">Поменять свой e-mail</a> можно не удаляя учётной записи
+      email_contact_html: Если письмо не приходит, обратитесь за помощю на <a href="mailto:%{email}">%{email}</a>
+      email_reconfirmation_html: Если вы не получили письмо с подтверждением, его можно <a href="%{path}">запросить ещё раз</a>
+      irreversible: После удаления восстановить или повторно активировать учётную запись не получится
+      more_details_html: За всеми подробностями, изучите <a href="%{terms_path}">политику конфиденциальности</a>.
+      username_available: Ваше имя пользователя снова станет доступным
+      username_unavailable: Ваше имя пользователя останется недоступным для использования
   directories:
     directory: Каталог профилей
     explanation: Находите пользователей по интересам
@@ -637,7 +720,7 @@ ru:
     '400': Ваш запрос был недействительным или неправильным.
     '403': У Вас нет доступа к просмотру этой страницы.
     '404': Страница, которую Вы искали, не существует.
-    '406': This page is not available in the requested format.
+    '406': Эта страница недоступна в запрошенном формате.
     '410': Страница, которую Вы искали, больше не существует.
     '422':
       content: Проверка безопасности не удалась. Возможно, Вы блокируете cookies?
@@ -655,21 +738,21 @@ ru:
     archive_takeout:
       date: Дата
       download: Скачать ваш архив
-      hint_html: Вы можете запросить архив своих <strong>статусов и загруженных медиа-файлов</strong>. Экспортированные данные будут в формате ActivityPub, который можно прочесть любой соответствующей программой. Запрашивать архив можно каждые 7 дней.
-      in_progress: Собирается ваш архив...
+      hint_html: Вы можете запросить архив своих <strong>постов и загруженных медиа-файлов</strong>. Экспортированные данные будут в формате ActivityPub, который можно прочесть любой соответствующей программой. Запрашивать архив можно каждые 7 дней.
+      in_progress: Мы собираем этот архив...
       request: Запросить ваш архив
       size: Размер
     blocks: Список блокировки
     csv: CSV
     domain_blocks: Доменные блокировки
-    follows: Подписки
     lists: Списки
-    mutes: Список глушения
-    storage: Ваш медиаконтент
+    mutes: Ваши игнорируемые
+    storage: Ваши файлы
   featured_tags:
     add_new: Добавить
     errors:
       limit: Вы уже добавили максимальное число хэштегов
+    hint_html: "<strong>Особенные хэштеги</strong> отображаются в вашем профиле и позволяют людям просматривать ваши посты, отмеченные ими. Это отличный инструмент для отслеживания долгосрочных проектов и творческих работ."
   filters:
     contexts:
       home: Домашняя лента
@@ -683,6 +766,7 @@ ru:
       invalid_irreversible: Необратимая фильтрация работает только с лентой уведомлений и домашней лентой
     index:
       delete: Удалить
+      empty: У вас пока нет фильтров.
       title: Фильтры
     new:
       title: Добавить фильтр
@@ -692,10 +776,11 @@ ru:
     resources: Ссылки
     trending_now: Актуально сейчас
   generic:
-    all: Все
+    all: Любой
     changes_saved_msg: Изменения успешно сохранены!
     copy: Копировать
-    order_by: Сортировать по
+    no_batch_actions_available: На этой странице нет запланированных действий
+    order_by: Сортировка
     save_changes: Сохранить изменения
     validation_errors:
       few: Что-то здесь не так! Пожалуйста, прочитайте о %{count} ошибках ниже
@@ -714,21 +799,21 @@ ru:
         invalid_token: Токены Keybase — это хэши от подписей и должны быть по длине в 66 hex-символов
         verification_failed: Keybase не распознаёт этот токен как подпись пользователя %{kb_username}. Пожалуйста, повторите на Keybase.
       wrong_user: Невозможно подтвердить пользователя %{proving}, будучи залогиненным как %{current}. Выполните вход как %{proving} и попробуйте ещё раз.
-    explanation_html: Здесь вы можете криптографически связать свои остальные идентификаторы, такие как профиль Keybase. Это позволит другим дюдям отправлять вам зашифрованные сообщения и верить отправляемым вами сообщениям.
+    explanation_html: На этой странице отображаются криптографически подтверждённые идентификаторы — например, привязанный профиль Keybase. Это позволяет людям отправлять вам зашифрованные сообщения, а также доверять вашим постам.
     i_am_html: Я %{username} на %{service}.
     identity: Идентификатор
     inactive: Неактивно
     publicize_checkbox: 'И опубликуйте текст:'
     publicize_toot: 'Подтверждено! Я %{username} на %{service}: %{url}'
-    status: Статус подтверждения
-    view_proof: Посмотреть доказательство личности
+    status: Статус
+    view_proof: Посмотреть подтверждение
   imports:
     modes:
       merge: Объединить
       merge_long: Сохранить имеющиеся данные и добавить новые
       overwrite: Перезаписать
       overwrite_long: Перезаписать имеющиеся данные новыми
-    preface: Вы можете загрузить некоторые данные, например, списки людей, на которых Вы подписаны или которых блокируете, в Ваш аккаунт на этом узле из файлов, экспортированных с другого узла.
+    preface: Вы можете загрузить некоторые данные, например, списки людей, на которых Вы подписаны или которых блокируете, в Вашу учётную запись на этом узле из файлов, экспортированных с другого узла.
     success: Ваши данные были успешно загружены и будут обработаны с должной скоростью
     types:
       blocking: Список блокировки
@@ -736,7 +821,7 @@ ru:
       following: Подписки
       muting: Список глушения
     upload: Загрузить
-  in_memoriam_html: Памятник.
+  in_memoriam_html: В память о пользователе.
   invites:
     delete: Удалить
     expired: Истекло
@@ -766,37 +851,44 @@ ru:
       limit: Вы достигли максимального числа списков
   media_attachments:
     validations:
-      images_and_video: Нельзя добавить видео к статусу с изображениями
+      images_and_video: Нельзя добавить видео к посту с изображениями
       too_many: Нельзя добавить более 4 файлов
   migrations:
-    acct: имя@домен нового аккаунта
+    acct: имя@домен новой учётной записи
     cancel: Отменить переезд
-    cancel_explanation: Отмена перенаправления повторно активирует аккаунт, но не вернёт обратно подписчиков, которые были перемещены на тот аккаунт.
+    cancel_explanation: Отмена перенаправления повторно активирует текущую учётную запись, но не вернёт обратно подписчиков, которые были перемещены на другую.
     cancelled_msg: Переезд был успешно отменён.
     errors:
+      already_moved: это та же учётная запись, на которую вы мигрировали
+      missing_also_known_as: не ссылается на эту учетную запись
+      move_to_self: не может быть текущей учётной записью
+      not_found: не удалось найти
       on_cooldown: Вы пока не можете переезжать
     followers_count: Подписчиков на момент переезда
-    incoming_migrations: Переезд с другого аккаунта
-    moved_msg: Ваш аккаунт теперь перенаправляет на %{acct} и подписчики перемещаются туда.
-    not_redirecting: Ваш аккаунт пока что не перенаправляет на любой другой аккаунт.
-    on_cooldown: Вы уже недавно переносили свой аккаунт. Эта возможность будет снова доступна через %{count} дн.
+    incoming_migrations: Переезд с другой учётной записи
+    incoming_migrations_html: Переезжаете с другой учётной записи? <a href="%{path}">Настройте псевдоним</a> для переноса подписчиков.
+    moved_msg: Теперь ваша учётная запись перенаправляет к %{acct}, туда же перемещаются подписчики.
+    not_redirecting: Для вашей учётной записи пока не настроено перенаправление.
+    on_cooldown: Вы уже недавно переносили свою учётную запись. Эта возможность будет снова доступна через %{count} дн.
     past_migrations: Прошлые переезды
     proceed_with_move: Перенести подписчиков
-    redirecting_to: Ваша учётная запись перенаправлена на %{acct}.
+    redirecting_to: Ваша учётная запись перенаправляет к %{acct}.
     set_redirect: Настроить перенаправление
     warning:
+      backreference_required: Новая учётная запись должна быть сначала настроена так, чтоб ссылаться на текущую
       before: 'Прежде чем продолжить, внимательно прочитайте следующую информацию:'
       cooldown: После переезда наступает период, в течение которого вы не сможете ещё раз переехать
-      disabled_account: Ваш текущий аккаунт впоследствии нельзя будет больше использовать. При этом, у вас будет доступ к экспорту данных, а также к повторной активации аккаунта.
-      followers: Это действие перенесёт всех ваших подписчиков с текущего аккаунта на новый
+      disabled_account: Вашу текущую учётная запись впоследствии нельзя будет больше использовать. При этом, у вас будет доступ к экспорту данных, а также к повторной активации учётной записи.
+      followers: Это действие перенесёт всех ваших подписчиков с текущей учётной записи на новую
+      only_redirect_html: Или же вы можете <a href="%{path}">просто настроить перенаправление в ваш профиль</a>.
       other_data: Никакие другие данные не будут автоматически перенесены
-      redirect: Профиль этого аккаунта будет обновлён с заметкой о перенаправлении, а также исключён из поиска
+      redirect: Профиль этой учётной записи будет обновлён с заметкой о перенаправлении, а также исключён из поиска
   moderation:
     title: Модерация
   notification_mailer:
     digest:
       action: Просмотреть все уведомления
-      body: Кратко о пропущенных Вами сообщениях с Вашего последнего захода %{since}
+      body: Вот краткая сводка сообщений, которые вы пропустили с последнего захода %{since}
       mention: "%{name} упомянул(а) Вас в:"
       new_followers_summary:
         few: У вас появилось %{count} новых подписчика! Отлично!
@@ -806,12 +898,12 @@ ru:
       subject:
         few: "%{count} новых уведомления с вашего последнего захода \U0001F418"
         many: "%{count} новых уведомлений с вашего последнего захода \U0001F418"
-        one: "1 новое уведомление с вашего последнего захода \U0001F418"
+        one: "%{count} новое уведомление с вашего последнего захода \U0001F418"
         other: "%{count} новых уведомлений с вашего последнего захода \U0001F418"
       title: В ваше отсутствие…
     favourite:
-      body: 'Ваш статус понравился %{name}:'
-      subject: "%{name} понравился ваш статус"
+      body: "%{name} добавил ваш пост в избранное:"
+      subject: "%{name} добавил ваш пост в избранное"
       title: Понравившийся статус
     follow:
       body: "%{name} теперь подписан(а) на вас!"
@@ -819,18 +911,22 @@ ru:
       title: Новый подписчик
     follow_request:
       action: Управление запросами на подписку
-      body: "%{name} запросил вас о подписке"
+      body: "%{name} отправил(а) вам запрос на подписку"
       subject: "%{name} хочет подписаться на вас"
-      title: Новый запрос о подписке
+      title: Новый запрос на подписку
     mention:
       action: Ответить
       body: 'Вас упомянул(а) %{name} в:'
       subject: Вы были упомянуты %{name}
       title: Новое упоминание
     reblog:
-      body: 'Ваш статус был продвинут %{name}:'
-      subject: "%{name} продвинул(а) ваш статус"
+      body: 'Ваш пост был продвинут %{name}:'
+      subject: "%{name} продвинул(а) ваш пост"
       title: Новое продвижение
+  notifications:
+    email_events: События для e-mail уведомлений
+    email_events_hint: 'Выберите события, для которых вы хотели бы получать уведомления:'
+    other_settings: Остальные настройки уведомлений
   number:
     human:
       decimal_units:
@@ -854,43 +950,46 @@ ru:
       duration_too_long: слишком далеко в будущем
       duration_too_short: слишком короткий срок
       expired: Опрос уже завершился
+      invalid_choice: Выбранного варианта голосования не существует
       over_character_limit: каждый не вариант не может быть длиннее %{max} символов
       too_few_options: должно быть больше 1 варианта
       too_many_options: может содержать не больше %{max} вариантов
   preferences:
-    other: Другое
+    other: Всё остальное
     posting_defaults: Настройки отправки по умолчанию
     public_timelines: Публичные ленты
   relationships:
-    activity: Активность аккаунта
-    dormant: Заброшенные
-    last_active: Недавно активные
-    most_recent: Новые
-    moved: Переехавший
-    mutual: Общие
-    primary: Основной
+    activity: Активность учётной записи
+    dormant: Заброшенная
+    followers: Подписчики
+    following: Подписки
+    last_active: По последней активности
+    most_recent: По недавности
+    moved: Мигрировавшая
+    mutual: Взаимные подписки
+    primary: Основная
     relationship: Связь
     remove_selected_domains: Удалить всех подписчиков для выбранных доменов
     remove_selected_followers: Удалить выбранных подписчиков
     remove_selected_follows: Отписаться от выбранных пользователей
-    status: Статус аккаунта
+    status: Статус учётной записи
   remote_follow:
     acct: Введите свой username@domain для продолжения
-    missing_resource: Поиск требуемого перенаправления URL для Вашего аккаунта завершился неудачей
+    missing_resource: Поиск требуемого перенаправления URL для Вашей учётной записи завершился неудачей
     no_account_html: Нет учётной записи? Вы можете <a href='%{sign_up_path}' target='_blank'>зарегистрироваться здесь</a>
     proceed: Продолжить подписку
     prompt: 'Вы хотите подписаться на:'
-    reason_html: "<strong>Почему это необходимо?</strong> <code>%{instance}</code> может не являться сервером, на котором вы зарегистрированы, поэтому нам сперва нужно перенаправить вас на домашний сервер."
+    reason_html: "<strong>Почему это необходимо?</strong> Возможно, <code>%{instance}</code> не является узлом, на котором вы зарегистрированы, поэтому нам сперва нужно перенаправить вас на домашний узел."
   remote_interaction:
     favourite:
-      proceed: Отметить как "нравится"
-      prompt: 'Вы собираетесь поставить отметку "нравится" этому статусу:'
+      proceed: Добавить в избранное
+      prompt: 'Вы собираетесь поставить отметку "нравится" этому посту:'
     reblog:
-      proceed: Продвинуть статус
-      prompt: 'Вы хотите продвинуть этот статус:'
+      proceed: Продвинуть пост
+      prompt: 'Вы хотите продвинуть этот пост:'
     reply:
       proceed: Ответить
-      prompt: 'Вы собираетесь ответить на этот статус:'
+      prompt: 'Вы собираетесь ответить на этот пост:'
   scheduled_statuses:
     over_daily_limit: Вы превысили лимит в %{limit} запланированных постов на указанный день
     over_total_limit: Вы превысили лимит на %{limit} запланированных постов
@@ -918,7 +1017,7 @@ ru:
       weibo: Weibo
     current_session: Текущая сессия
     description: "%{browser} на %{platform}"
-    explanation: Это веб-браузеры, в которых на данный момент выполнен вход в Ваш аккаунт Mastodon.
+    explanation: Здесь отображаются все веб-браузеры, в которых выполнен вход в вашу учётную запись. Авторизованные приложения отображаются в другой секции.
     ip: IP
     platforms:
       adobe_air: Adobe Air
@@ -934,29 +1033,31 @@ ru:
       windows_mobile: Windows Mobile
       windows_phone: Windows Phone
     revoke: Завершить
-    revoke_success: Сессия завершена успешно
+    revoke_success: Сессия завершена
     title: Сессии
   settings:
     account: Учётная запись
-    account_settings: Настройки учётной записи
-    aliases: Псевдонимы аккаунта
+    account_settings: Управление учётной записью
+    aliases: Псевдонимы учётной записи
     appearance: Внешний вид
-    authorized_apps: Авторизованные приложения
+    authorized_apps: Приложения
     back: Назад в Mastodon
-    delete: Удаление аккаунта
+    delete: Удаление учётной записи
     development: Разработка
     edit_profile: Изменить профиль
     export: Экспорт данных
     featured_tags: Особенные хэштеги
-    identity_proofs: Подтверждения личности
+    identity_proofs: Идентификация
     import: Импорт
     import_and_export: Импорт и экспорт
-    migrate: Перенос аккаунта
+    migrate: Миграция учётной записи
     notifications: Уведомления
     preferences: Настройки
     profile: Профиль
     relationships: Подписки и подписчики
-    two_factor_authentication: Двухфакторная аутентификация
+    two_factor_authentication: Подтверждение входа
+  spam_check:
+    spam_detected: Это автоматический отчет. Обнаружен спам.
   statuses:
     attached:
       description: 'Вложение: %{attached}'
@@ -978,21 +1079,26 @@ ru:
       one: 'содержался запрещённый хэштег: %{tags}'
       other: 'содержались запрещённые хэштеги: %{tags}'
     language_detection: Определять язык автоматически
-    open_in_web: Открыть в WWW
+    open_in_web: Открыть в веб-версии
     over_character_limit: превышен лимит символов (%{max})
     pin_errors:
-      limit: Вы закрепили максимально возможное число статусов
-      ownership: Нельзя закрепить чужой статус
-      private: Нельзя закрепить непубличный статус
-      reblog: Нельзя закрепить продвинутый статус
+      limit: Вы закрепили максимально возможное число постов
+      ownership: Нельзя закрепить чужой пост
+      private: Нельзя закрепить непубличный пост
+      reblog: Нельзя закрепить продвинутый пост
     poll:
+      total_people:
+        few: "%{count} человек"
+        many: "%{count} человек"
+        one: "%{count} человек"
+        other: "%{count} человек"
       total_votes:
         few: "%{count} голоса"
         many: "%{count} голосов"
         one: "%{count} голос"
         other: "%{count} голосов"
       vote: Голосовать
-    show_more: Ещё
+    show_more: Развернуть
     sign_in_to_participate: Войдите, чтобы принять участие в дискуссии
     title: '%{name}: "%{quote}"'
     visibilities:
@@ -1003,9 +1109,11 @@ ru:
       unlisted: Скрывать из лент
       unlisted_long: Показывать всем, но не отображать в публичных лентах
   stream_entries:
-    pinned: Закреплённый статус
+    pinned: Закреплённый пост
     reblogged: продвинул(а)
-    sensitive_content: Чувствительный контент
+    sensitive_content: Деликатное содержимое
+  tags:
+    does_not_match_previous_name: не совпадает с предыдущим именем
   terms:
     body_html: |
       <h2>Privacy Policy</h2>
@@ -1094,53 +1202,54 @@ ru:
       default: "%d %b %Y, %H:%M"
       month: "%m.%Y"
   two_factor_authentication:
-    code_hint: Для подтверждения введите код, сгенерированный приложением аутентификатора
-    description_html: При включении <strong>двухфакторной аутентификации</strong>, вход потребует от Вас использования Вашего телефона, который сгенерирует входные токены.
+    code_hint: Для подтверждения введите код, сгенерированный приложением-аутентификатором
+    description_html: 'На этой странице можно включить <strong>двухфакторную авторизацию</strong>: с ней, чтобы войти в свою учётную запись, потребуется ввести небольшой временный код, генерируемый через приложение на своём смартфоне.'
     disable: Отключить
     enable: Включить
-    enabled: Двухфакторная аутентификация включена
-    enabled_success: Двухфакторная аутентификация успешно включена
+    enabled: Двухфакторная аутентификация настроена
+    enabled_success: Двухфакторная авторизация успешно настроена
     generate_recovery_codes: Сгенерировать коды восстановления
-    instructions_html: "<strong>Отсканируйте этот QR-код с помощью Google Authenticator или другого подобного приложения на Вашем телефоне</strong>. С этого момента приложение будет генерировать токены, которые будет необходимо ввести для входа."
-    lost_recovery_codes: Коды восстановления позволяют вернуть доступ к аккаунту в случае утери телефона. Если Вы потеряли Ваши коды восстановления, вы можете заново сгенерировать их здесь. Ваши старые коды восстановления будут аннулированы.
+    instructions_html: "<strong>Отсканируйте этот QR-код с помощью Google Authenticator, Яндекс.Ключа или любого другого подобного приложения</strong>. После сканирования и добавления, приложение начнёт генерировать коды, которые потребуется вводить для завершения входа в учётную запись."
+    lost_recovery_codes: Коды восстановления позволяются войти в учётную запись в случае утери смартфона. Если вы потеряли свои коды восстановления, вы можете создать новые здесь. Прошлые коды работать перестанут.
     manual_instructions: 'Если Вы не можете отсканировать QR-код и хотите ввести его вручную, секрет представлен здесь открытым текстом:'
     recovery_codes: Коды восстановления
     recovery_codes_regenerated: Коды восстановления успешно сгенерированы
-    recovery_instructions_html: В случае утери доступа к Вашему телефону Вы можете использовать один из кодов восстановления, указанных ниже, чтобы вернуть доступ к аккаунту. Держите коды восстановления в безопасности, например, распечатав их и храня с другими важными документами.
+    recovery_instructions_html: 'Пожалуйста, сохраните коды ниже в надёжном месте: они понадобятся, чтобы войти в учётную запись, если вы потеряете доступ к своему смартфону. Вы можете вручную переписать их, распечатать и спрятать среди важных документов или, например, в любимой книжке. <strong>Каждый код действителен один раз</strong>.'
     setup: Настроить
     wrong_code: Введенный код неверен! Правильно ли установлены серверное время и время устройства?
   user_mailer:
     backup_ready:
-      explanation: Вы запросили полный архив вашего аккаунта Mastodon. Он готов к загрузке!
+      explanation: Вы запросили архив всех данных вашей учётной записи Mastodon. Что ж, он готов к скачиванию.
       subject: Ваш архив готов к загрузке
-      title: Вынос архива
+      title: Архив ваших данных готов
     warning:
       explanation:
-        disable: Пока ваш аккаунт заморожен, ваши данные остаются нетронутыми, но вы не можете производить никаких действий до разблокировки.
-        silence: Пока ваш аккаунт ограничен, ваши посты на этом сервере увидят только ваши действующие подписчики, а ваш аккаунт может быть исключён из различных каталогов. Впрочем, остальные могут подписаться на вас вручную.
-        suspend: Ваш аккаунт заблокирован и все ваши посты и загруженные медиафайлы безвозвратно удалены с этого сервера и других серверов, где у вас были подписчики.
+        disable: Пока ваша учётная запись заморожена, ваши данные остаются нетронутыми, но вы не можете производить никаких действий до разблокировки.
+        silence: Пока действуют данные ограничения, публикуемые вами посты будут видеть исключительно люди, которые на вас уже подписаны на этом узле, вы также можете быть исключены из различных публичных лент. Несмотря на это, остальные пользователи по-прежнему могут подписаться на вас, чтобы читать новые посты.
+        suspend: Ваша учётная запись заблокирована и все ваши посты и загруженные медиафайлы безвозвратно удалены с этого сервера и других серверов, где у вас были подписчики.
+      get_in_touch: Вы можете ответить на это письмо, чтобы связаться с сотрудниками %{instance}.
       review_server_policies: Посмотреть правила сервера
       statuses: 'В частности, для:'
       subject:
-        disable: Ваш аккаунт %{acct} заморожен
+        disable: Ваша учётная запись %{acct} заморожена
         none: "%{acct}, вам вынесено предупреждение"
-        silence: Ваш аккаунт %{acct} был ограничен
-        suspend: Ваш аккаунт %{acct} был заблокирован
+        silence: На вашу учётную запись, %{acct}, были наложены ограничения
+        suspend: Ваша учётная запись %{acct} была заблокирована
       title:
-        disable: Аккаунт заморожен
+        disable: Учётная запись заморожена
         none: Предупреждение
-        silence: Аккаунт ограничен
-        suspend: Аккаунт заблокирован
+        silence: На учётную запись наложены ограничения
+        suspend: Учётная запись заблокирована
     welcome:
       edit_profile_action: Настроить профиль
-      edit_profile_step: Настройте свой профиль, загрузив аватарку, шапку, изменив отображаемое имя и ещё много чего. Если вы хотите вручную рассматривать и подтверждать подписчиков, можно закрыть свой аккаунт.
+      edit_profile_step: Настройте свой профиль, загрузив аватарку, шапку, изменив отображаемое имя и ещё много чего. Если вы хотите вручную рассматривать и подтверждать подписчиков, можно закрыть свою учётную запись.
       explanation: Несколько советов для новичков
       final_action: Начать постить
       final_step: 'Начните постить! Ваши публичные посты могут видеть другие, например, в локальной ленте или по хэштегам, даже если у вас нет подписчиков. Вы также можете поздороваться с остальными и представиться, используя хэштег #приветствие.'
       full_handle: Ваше обращение
       full_handle_hint: То, что Вы хотите сообщить своим друзьям, чтобы они могли написать Вам или подписаться с другого узла.
       review_preferences_action: Изменить настройки
-      review_preferences_step: Проверьте все настройки, например, какие письма вы хотите получать или уровень приватности статусов по умолчанию. Если вы не страдаете морской болезнью, можете включить автовоспроизведение GIF.
+      review_preferences_step: Проверьте все настройки, например, какие письма вы хотите получать или уровень приватности постов по умолчанию. Если вы не страдаете морской болезнью, можете включить автовоспроизведение GIF.
       subject: Добро пожаловать в Mastodon
       tip_federated_timeline: В глобальной ленте отображается сеть Mastodon. Но в ней показаны посты только от людей, на которых подписаны вы и ваши соседи, поэтому лента может быть неполной.
       tip_following: По умолчанию вы подписаны на администратора(-ов) вашего узла. Чтобы найти других интересных людей, проверьте локальную и глобальную ленты.
@@ -1156,5 +1265,5 @@ ru:
     seamless_external_login: Вы залогинены через сторонний сервис, поэтому настройки e-mail и пароля недоступны.
     signed_in_as: 'Выполнен вход под именем:'
   verification:
-    explanation_html: 'Вы можете <strong>подтвердить себя как владельца ссылок в вашем профиле</strong>. Для этого указанный веб-сайт должен содержать обратную ссылку на ваш профиль в Mastodon. У обратной ссылки <strong>должен</strong> быть атрибут <code>rel="me"</code>. Сам текст ссылки не имеет значения. Пример:'
+    explanation_html: 'Владение ссылками в профиле <strong>можно подтвердить</strong>. Для этого на указанном сайте должна содержаться ссылка на ваш профиль Mastodon, а у самой ссылки <strong>должен</strong> быть атрибут <code>rel="me"</code>. Что внутри ссылки — значения не имеет. Вот вам пример ссылки:'
     verification: Подтверждение
diff --git a/config/locales/simple_form.ar.yml b/config/locales/simple_form.ar.yml
index d1b85d921a1f81e9ce039f79ecc337e002858a22..e3355e8c53962eccc4bbf77b1c6296b92bab2520 100644
--- a/config/locales/simple_form.ar.yml
+++ b/config/locales/simple_form.ar.yml
@@ -2,6 +2,10 @@
 ar:
   simple_form:
     hints:
+      account_alias:
+        acct: ادخِل عنون الحساب username@domain الذي تودّ مغادرته
+      account_migration:
+        acct: ادخِل عنون الحساب username@domain الذي تودّ الإنتقال إليه
       account_warning_preset:
         text: بإمكانك استخدام نفس القواعد التي نجدها في التبويقات كعناوين الروابط والوسوم والإشارات
       admin_account_action:
@@ -13,6 +17,8 @@ ar:
         avatar: ملف PNG أو GIF أو JPG. حجمه على أقصى تصدير %{size}. سيتم تصغيره إلى %{dimensions}px
         bot: يُعلِم أنّ هذا الحساب لا يمثل شخصًا
         context: واحد أو أكثر من السياقات التي يجب أن ينطبق عليها عامل التصفية
+        current_password: لأسباب أمنية ، يرجى إدخال الكلمة السرية الخاصة بالحساب الحالي
+        current_username: يرجى إدخال اسم المستخدم الخاص بالحساب الحالي قصد التأكيد
         digest: تُرسَل إليك بعد مُضيّ مدة مِن خمول نشاطك و فقط إذا ما تلقيت رسائل شخصية مباشِرة أثناء فترة غيابك مِن الشبكة
         discoverable: سِجل الملفات التعريفية للمستخدمين هو طريقة أخرى لبلوغ جمهور أوسع
         email: سوف تتلقى رسالة إلكترونية للتأكيد
@@ -59,6 +65,7 @@ ar:
       account_warning_preset:
         text: نموذج نصي
       admin_account_action:
+        include_statuses: أدرج التبويقات التي تم الإبلاغ عنها ضمن الرسالة الإلكترونية
         send_email_notification: إشعار المستخدِم عبر البريد الإلكتروني
         text: تحذير مخصص
         type: الإجراء
@@ -98,6 +105,7 @@ ar:
         setting_aggregate_reblogs: جمع الترقيات في خيوط زمنية
         setting_auto_play_gif: تشغيل تلقائي لِوَسائط جيف المتحركة
         setting_boost_modal: إظهار مربع حوار للتأكيد قبل ترقية أي تبويق
+        setting_crop_images: قص الصور في التبويقات غير الموسعة إلى 16x9
         setting_default_language: لغة النشر
         setting_default_privacy: خصوصية المنشور
         setting_default_sensitive: اعتبر الوسائط دائما كمحتوى حساس
@@ -115,6 +123,7 @@ ar:
         setting_theme: سمة الموقع
         setting_trends: اعرض ما يُتداوَل اليوم
         setting_unfollow_modal: إظهار مربع حوار للتأكيد قبل إلغاء متابعة أي حساب
+        setting_use_blurhash: أظهر ألوانًا متدرّجة على الوسائط الحساسة
         setting_use_pending_items: الوضع البطيء
         severity: القوّة
         type: صيغة الاستيراد
diff --git a/config/locales/simple_form.ast.yml b/config/locales/simple_form.ast.yml
index 4ec3935c900be0d8a375c36dd8b868982ad00404..1206aa465f62603adc32639cdb58738d474d2811 100644
--- a/config/locales/simple_form.ast.yml
+++ b/config/locales/simple_form.ast.yml
@@ -5,58 +5,92 @@ ast:
       defaults:
         autofollow: La xente que se rexistre pente la invitación va siguite automáticamente
         bot: Esta cuenta fai principalmente aiciones automatizaes y podría nun supervisase
-        digest: Namái s'unvia tres un periodu llargu d'inactividá y namái si recibiesti cualesquier mensaxe personal na to ausencia
+        digest: Namái s'unvia dempués d'un periodu llargu d'inactividá y namái si recibiesti cualesquier mensaxe personal na to ausencia
+        discoverable: El direutoru de perfiles ye otru mou de facer qu'una cuenta llegué a una audiencia más amplia
         email: Vamos unviate un corréu de confirmación
-        irreversible: Los toots peñeraos van desapaecer de mou irreversible, magar que se desanicie la peñera dempués
+        irreversible: Los barritos peñeraos van desapaecer de mou irreversible, magar que se desanicie la peñera dempués
         password: Usa 8 caráuteres polo menos
         setting_hide_network: La xente que sigas y teas siguiendo nun va amosase nel perfil
+        setting_show_application: L'aplicación qu'uses pa barritar va amosase na vista detallada d'ellos
         username: El nome d'usuariu va ser únicu en %{domain}
+      featured_tag:
+        name: 'Quiciabes quieras usar unu d''estos:'
+      form_challenge:
+        current_password: Tas entrando nuna área segura
       imports:
         data: El ficheru CSV esportáu dende otra instancia de Mastodon
+      invite_request:
+        text: Esto va ayudanos a revisar la to aplicación
+      sessions:
+        otp: 'Introduz el códigu de dos pasos xeneráu pola aplicación autenticadora o usa unu de los códigos de recuperación:'
     labels:
       account:
         fields:
           name: Etiqueta
           value: Conteníu
+      admin_account_action:
+        type: Aición
+        types:
+          none: Nun facer nada
       defaults:
+        avatar: Avatar
         bot: Esta cuenta ye d'un robó
         chosen_languages: Peñera de llingües
         confirm_new_password: Confirmación de la contraseña nueva
+        confirm_password: Confirmación de la contraseña
         current_password: Contraseña actual
         data: Datos
+        discoverable: Llistar esta cuenta nel direutoriu
         display_name: Nome a amosar
         email: Direición de corréu
-        expires_in: Caduca tres
-        fields: Datos meta del perfil
+        expires_in: Caduca dempués de
+        fields: Metadatos del perfil
         header: Testera
         irreversible: Escartar en cuentes d'anubrir
         locale: Llingua de la interfaz
-        locked: Bloquiar cuenta
+        locked: Bloquiar la cuenta
         max_uses: Númberu máximu d'usos
         new_password: Contraseña nueva
-        otp_attempt: Códigu de verificación en dos pasos
+        note: Biografía
+        otp_attempt: Códigu de la verificación en dos pasos
         password: Contraseña
         phrase: Pallabra clave o fras
+        setting_advanced_layout: Activar la interfaz web avanzada
         setting_auto_play_gif: Reproducir GIFs automáticamente
-        setting_default_language: Llingua de les espublizaciones
-        setting_default_privacy: Privacidá d'espublizaciones
-        setting_delete_modal: Amosar el diálogu de confirmación enantes de desaniciar un toot
+        setting_boost_modal: Amosar el diálogu de confirmación enantes de compartir un barritu
+        setting_default_language: Llingua de los espublizamientos
+        setting_default_privacy: Privacidá de los espublizamientos
+        setting_delete_modal: Amosar el diálogu de confirmación enantes de desaniciar un barritu
+        setting_show_application: Dicir les aplicaciones que s'usen pa barritar
         setting_system_font_ui: Usar la fonte predeterminada del sistema
+        setting_theme: Estilu del sitiu
+        setting_trends: Amosar les tendencies de güei
         setting_unfollow_modal: Amosar el diálogu de confirmación enantes de dexar de siguir a daquién
+        setting_use_pending_items: Mou lentu
         severity: Severidá
         type: Triba de la importación
         username: Nome d'usuariu
         username_or_email: Nome d'usuariu o corréu
+        whole_word: La pallabra entera
+      featured_tag:
+        name: Etiqueta
       interactions:
-        must_be_follower: Bloquiar avisos de persones que nun son siguidores
-        must_be_following: Bloquiar avisos de persones que nun sigues
-        must_be_following_dm: Bloquiar mensaxes direutos de persones que nun sigues
+        must_be_follower: Bloquiar los avisos de persones que nun son siguidores
+        must_be_following: Bloquiar los avisos de persones que nun sigues
+        must_be_following_dm: Bloquiar los mensaxes direutos de persones que nun sigues
+      invite_request:
+        text: "¿Por qué quies xunite?"
       notification_emails:
-        favourite: Unviar un corréu cuando daquién conseñe como favoritu los tos estaos
-        follow: Unviar un corréu cuando daquién te siga
-        follow_request: Unviar un corréu cuando daquién solicite siguite
-        mention: Unviar un corréu cuando daquién te mente
+        favourite: Daquién marcó como favoritu un estáu de to
+        follow: Daquién te sigue
+        follow_request: Daquién solicitó siguite
+        mention: Daquién te mentó
+        reblog: Daquién compartió dalgún estáu de to
+      tag:
+        name: Etiqueta
     'no': Non
+    recommended: Aconséyase
     required:
+      mark: "*"
       text: ríquese
     'yes': Sí
diff --git a/config/locales/simple_form.bn.yml b/config/locales/simple_form.bn.yml
index 152c698290639f4688cdb5184962daafc705fc52..607e6bd8e0697e7b9a49cb4b4ab52b3e3792970f 100644
--- a/config/locales/simple_form.bn.yml
+++ b/config/locales/simple_form.bn.yml
@@ -1 +1,13 @@
+---
 bn:
+  simple_form:
+    hints:
+      defaults:
+        setting_display_media_default: সংবেদনশীল হিসেবে চিহ্নিত করা মিডিয়াসমূহ লুকান
+        setting_display_media_hide_all: সবসময় মিডিয়া লুকান
+        setting_display_media_show_all: সংবেদনশীল হিসেবে চিহ্নিত করা মিডিয়াসমূহ দেখান
+    labels:
+      account:
+        fields:
+          name: লেবেল
+          value: বিষয়বস্তু
diff --git a/config/locales/simple_form.ca.yml b/config/locales/simple_form.ca.yml
index 517c7e3b0a74db8cdea9042510e06e924ed2d074..3fae058301b2c0b3f7d36199f148e4a1f01e9121 100644
--- a/config/locales/simple_form.ca.yml
+++ b/config/locales/simple_form.ca.yml
@@ -9,7 +9,7 @@ ca:
       account_warning_preset:
         text: Pots utilitzar totes les sintaxi com ara URL, etiquetes i mencions
       admin_account_action:
-        include_statuses: L'usuari veurà quin tuts ha causat l'acció de moderació o avís
+        include_statuses: L'usuari veurà quins tuts han causat l'acció de moderació o avís
         send_email_notification: L'usuari rebrà una explicació del que ha passat amb el seu compte
         text_html: Opcional. Pots utilitzar tota la sintaxi. Pots <a href="%{path}">afegir configuracions predefinides d'avís</a> per a estalviar temps
         type_html: Tria què fer amb <strong>%{acct}</strong>
@@ -27,20 +27,20 @@ ca:
         fields: Pots tenir fins a 4 elements que es mostren com a taula al teu perfil
         header: PNG, GIF o JPG. Màxim %{size}. S'escalarà a %{dimensions}px
         inbox_url: Copia l'URL des de la pàgina principal del relay que vols utilitzar
-        irreversible: Els nodes filtrats desapareixeran de manera irreversible, fins i tot si el filtre es retira més tard
+        irreversible: Els tuts filtrats desapareixeran de manera irreversible, fins i tot si el filtre es retira més tard
         locale: El llenguatge de l’interfície d’usuari, els correus i les notificacions push
         locked: Requereix que aprovis manualment els seguidors
         password: Utilitza com a mínim 8 caràcters
-        phrase: Es combinarà independentment del format en el text o l'avís de contingut d'un toot
-        scopes: A quines API es permetrà l'accés a l'aplicació. Si selecciones un àmbit d'alt nivell, no cal que seleccionis un d'individual.
-        setting_aggregate_reblogs: No mostra els nous impulsos dels toots que ja s'han impulsat recentment (només afecta als impulsos nous rebuts)
+        phrase: Es combinarà independentment del format en el text o l'avís de contingut del bram
+        scopes: A quines API es permetrà a l'aplicació accedir. Si selecciones un àmbit d'alt nivell, no cal que seleccionis un d'individual.
+        setting_aggregate_reblogs: No mostra els nous impulsos dels tuts que ja s'han impulsat recentment (només afecta als impulsos nous rebuts)
         setting_default_sensitive: Els mèdia sensibles estan ocults per defecte i es poden revelar amb un clic
         setting_display_media_default: Amaga els multimèdia marcats com a sensibles
-        setting_display_media_hide_all: Sempre oculta tots els multimèdia
+        setting_display_media_hide_all: Oculta sempre tot el contingut multimèdia
         setting_display_media_show_all: Mostra sempre els elements multimèdia marcats com a sensibles
         setting_hide_network: Qui tu segueixes i els que et segueixen a tu no es mostraran en el teu perfil
         setting_noindex: Afecta el teu perfil públic i les pàgines d'estat
-        setting_show_application: L'aplicació que fas servir per a publicar es mostrarà a la vista detallada dels teus toots
+        setting_show_application: L'aplicació que fas servir per a publicar es mostrarà a la vista detallada dels teus tuts
         setting_use_blurhash: Els degradats es basen en els colors de les imatges ocultes, però enfosqueixen els detalls
         setting_use_pending_items: Amaga les actualitzacions de la línia de temps després d'un clic en comptes de desplaçar-se automàticament
         username: El teu nom d'usuari serà únic a %{domain}
@@ -60,7 +60,7 @@ ca:
       tag:
         name: Només pots canviar la caixa de les lletres, per exemple, per fer-la més llegible
       user:
-        chosen_languages: Quan estigui marcat, només es mostraran els toots de les llengües seleccionades en les línies de temps públiques
+        chosen_languages: Quan estigui marcat, només es mostraran els tuts de les llengües seleccionades en les línies de temps públiques
     labels:
       account:
         fields:
@@ -113,19 +113,20 @@ ca:
         setting_aggregate_reblogs: Agrupa impulsos en les línies de temps
         setting_auto_play_gif: Reproducció automàtica de GIFs animats
         setting_boost_modal: Mostra la finestra de confirmació abans d'impulsar
+        setting_crop_images: Retalla les imatges en tuts no ampliats a 16x9
         setting_default_language: Llengua de les publicacions
         setting_default_privacy: Privacitat de les publicacions
         setting_default_sensitive: Marca sempre els elements multimèdia com a sensibles
-        setting_delete_modal: Mostra la finestra de confirmació abans de suprimir un toot
+        setting_delete_modal: Mostra la finestra de confirmació abans d'esborrar un tut
         setting_display_media: Visualització multimèdia
         setting_display_media_default: Per defecte
         setting_display_media_hide_all: Amaga-ho tot
         setting_display_media_show_all: Mostra-ho tot
-        setting_expand_spoilers: Sempre amplia els toots marcats amb advertències de contingut
+        setting_expand_spoilers: Sempre amplia els tuts marcats amb advertències de contingut
         setting_hide_network: Amaga la teva xarxa
         setting_noindex: Desactivació de la indexació del motor de cerca
         setting_reduce_motion: Redueix el moviment en animacions
-        setting_show_application: Desvela l'aplicació utilitzada per enviar toots
+        setting_show_application: Revela l'aplicació utilitzada per enviar tuts
         setting_system_font_ui: Utilitza el tipus de lletra predeterminat del sistema
         setting_theme: Tema del lloc
         setting_trends: Mostra les tendències d'avui
diff --git a/config/locales/simple_form.co.yml b/config/locales/simple_form.co.yml
index 245bcea08a32b8141b3c428272814e3e47440e81..7ffc8fe3dbaad2147a899b4c66362bb79bf6f916 100644
--- a/config/locales/simple_form.co.yml
+++ b/config/locales/simple_form.co.yml
@@ -113,6 +113,7 @@ co:
         setting_aggregate_reblogs: Gruppà e spartere indè e linee
         setting_auto_play_gif: Lettura autumatica di i GIF animati
         setting_boost_modal: Mustrà una cunfirmazione per sparte un statutu
+        setting_crop_images: Riquatrà i ritratti in 16x9 indè i statuti micca selezziunati
         setting_default_language: Lingua di pubblicazione
         setting_default_privacy: Cunfidenzialità di i statuti
         setting_default_sensitive: Sempre cunsiderà media cum’è sensibili
diff --git a/config/locales/simple_form.cs.yml b/config/locales/simple_form.cs.yml
index 047d59c6983bd352ec107da1766ade5458ccad38..06482ebd085a6722b1fa6e6b85435a30f9bc319b 100644
--- a/config/locales/simple_form.cs.yml
+++ b/config/locales/simple_form.cs.yml
@@ -3,26 +3,26 @@ cs:
   simple_form:
     hints:
       account_alias:
-        acct: Zadejte přezdívku@doménu účtu, ze kterého se chcete přesunout
+        acct: Zadejte svůj účet, ze kterého se chcete přesunout jinam, ve formátu přezdívka@doména
       account_migration:
-        acct: Zadejte přezdívku@doménu účtu, na který se chcete přesunout
+        acct: Zadejte svůj účet, na který se chcete přesunout, ve formátu přezdívka@doména
       account_warning_preset:
         text: Můžete používat syntaxi tootů, jako například URL, hashtagy a zmínky
       admin_account_action:
         include_statuses: Uživatel uvidí, které tooty způsobily moderátorskou akci nebo varování
         send_email_notification: Uživatel obdrží vysvětlení toho, co se stalo s jeho účtem
         text_html: Volitelné. Můžete používat syntaxi tootů. Pro ušetření času si můžete <a href="%{path}">přidat předlohy pro varování</a>
-        type_html: Vyberte, co chcete udělat s účtem <strong>%{acct}</strong>
-        warning_preset_id: Volitelné. Můžete stále vložit na konec předlohy vlastní text
+        type_html: Vyberte, co chcete s účtem <strong>%{acct}</strong> udělat
+        warning_preset_id: Volitelné. Na konec předlohy můžete stále vložit vlastní text
       defaults:
-        autofollow: Lidé, kteří se zaregistrují přes pozvání, vás budou automaticky sledovat
+        autofollow: Lidé, kteří se zaregistrují na základě pozvánky, vás budou automaticky sledovat
         avatar: PNG, GIF či JPG. Maximálně %{size}. Bude zmenšen na %{dimensions} px
         bot: Tento účet provádí hlavně automatizované akce a nemusí být spravován
         context: Jeden či více kontextů, ve kterých má být filtr uplatněn
-        current_password: Z bezpečnostních důvodů prosím zadejte heslo aktuálního účtu
-        current_username: Prosím potvrďte zadáním uživatelského jména aktuálního účtu
-        digest: Odesíláno pouze po dlouhé době nečinnosti a pouze, pokud jste při své nepřítomnosti obdržel/a osobní zprávy
-        discoverable: Adresář profilů je další způsob, díky kterému se může váš účet dostat k širšímu publiku
+        current_password: Z bezpečnostních důvodů prosím zadejte heslo současného účtu
+        current_username: Potvrďte prosím tuto akci zadáním uživatelského jména aktuálního účtu
+        digest: Odesíláno pouze po dlouhé době nečinnosti a pouze, pokud jste při své nepřítomnosti obdrželi osobní zprávy
+        discoverable: Adresář profilů je další způsob, jak se může váš účet dostat k širšímu publiku
         email: Bude vám poslán potvrzovací e-mail
         fields: Na profilu můžete mít až 4 položky zobrazené jako tabulka
         header: PNG, GIF či JPG. Maximálně %{size}. Bude zmenšen na %{dimensions} px
@@ -42,8 +42,8 @@ cs:
         setting_noindex: Ovlivňuje váš veřejný profil a stránky tootů
         setting_show_application: Aplikace, kterou používáte k psaní tootů, bude zobrazena v detailním zobrazení vašich tootů
         setting_use_blurhash: Gradienty jsou založeny na barvách skryté grafiky, ale zakrývají jakékoliv detaily
-        setting_use_pending_items: Skrýt aktualizace časové osy a načíst je kliknutím namísto automatického rolování proudu
-        username: Vaše uživatelské jméno bude na %{domain} unikátní
+        setting_use_pending_items: Aktualizovat časovou osu až po kliknutím namísto automatického rolování kanálu
+        username: Vaše uživatelské jméno bude na serveru %{domain} unikátní
         whole_word: Je-li klíčové slovo či fráze pouze alfanumerická, bude aplikována pouze, pokud se shoduje s celým slovem
       domain_allow:
         domain: Tato doména bude moci stahovat data z tohoto serveru a příchozí data z ní budou zpracována a uložena
@@ -54,13 +54,13 @@ cs:
       imports:
         data: Soubor CSV exportovaný z jiného serveru Mastodon
       invite_request:
-        text: To nám pomůže posoudit váš požadavek
+        text: To nám pomůže posoudit vaši žádost
       sessions:
-        otp: 'Napište dvoufázový kód vygenerovaný vaší mobilní aplikací, nebo použijte jeden z vašich záložních kódů:'
+        otp: 'Zadejte kód pro dvoufázové ověření vygenerovaný vaší mobilní aplikací, nebo použijte jeden z vašich záložních kódů:'
       tag:
         name: Můžete měnit pouze velikost písmen, například kvůli lepší čitelnosti
       user:
-        chosen_languages: Je-li tohle zaškrtnuto, budou ve veřejných časových osách zobrazeny pouze tooty ve zvolených jazycích
+        chosen_languages: Po zaškrtnutí budou ve veřejných časových osách zobrazeny pouze tooty ve zvolených jazycích
     labels:
       account:
         fields:
@@ -78,10 +78,10 @@ cs:
         text: Vlastní varování
         type: Akce
         types:
-          disable: Deaktivovat
+          disable: Deaktivovat přihlašování
           none: Nic nedělat
-          silence: Utišit
-          suspend: Pozastavit a nenávratně smazat data účtu
+          silence: Ztišit
+          suspend: Pozastavit účet a nenávratně smazat jeho data
         warning_preset_id: Použít předlohu pro varování
       defaults:
         autofollow: Pozvat ke sledování vašeho účtu
@@ -106,33 +106,34 @@ cs:
         max_uses: Maximální počet použití
         new_password: Nové heslo
         note: O vás
-        otp_attempt: Dvoufázový kód
+        otp_attempt: Kód pro dvoufázové ověření
         password: Heslo
         phrase: Klíčové slovo či fráze
         setting_advanced_layout: Povolit pokročilé webové rozhraní
         setting_aggregate_reblogs: Seskupovat boosty v časových osách
         setting_auto_play_gif: Automaticky přehrávat animace GIF
-        setting_boost_modal: Zobrazovat před boostnutím potvrzovací okno
+        setting_boost_modal: Před boostnutím zobrazovat potvrzovací okno
+        setting_crop_images: Ořezávat obrázky v nerozbalených tootech na velikost 16x9
         setting_default_language: Jazyk příspěvků
         setting_default_privacy: Soukromí příspěvků
         setting_default_sensitive: Vždy označovat média jako citlivá
-        setting_delete_modal: Zobrazovat před smazáním tootu potvrzovací okno
+        setting_delete_modal: Před smazáním tootu zobrazovat potvrzovací okno
         setting_display_media: Zobrazování médií
         setting_display_media_default: Výchozí
         setting_display_media_hide_all: Skrýt vše
         setting_display_media_show_all: Zobrazit vše
         setting_expand_spoilers: Vždy rozbalit tooty označené varováními o obsahu
-        setting_hide_network: Skrýt svou síť
+        setting_hide_network: Skrýt mou síť
         setting_noindex: Neindexovat svůj profil vyhledávači
-        setting_reduce_motion: Redukovat pohyb v animacích
+        setting_reduce_motion: Omezit pohyb v animacích
         setting_show_application: Zobrazit aplikaci používanou k psaní tootů
         setting_system_font_ui: Použít výchozí písmo systému
-        setting_theme: Motiv stránky
+        setting_theme: Vzhled stránky
         setting_trends: Zobrazit dnešní trendy
-        setting_unfollow_modal: Zobrazovat před zrušením sledování potvrzovací okno
+        setting_unfollow_modal: Ppřed zrušením sledování zobrazovat potvrzovací okno
         setting_use_blurhash: Zobrazit pro skrytá média barevné gradienty
         setting_use_pending_items: Pomalý režim
-        severity: Přísnost
+        severity: Vážnost
         type: Typ importu
         username: Uživatelské jméno
         username_or_email: Uživatelské jméno nebo e-mail
@@ -149,22 +150,22 @@ cs:
         text: Proč se chcete připojit?
       notification_emails:
         digest: Posílat e-maily s přehledem
-        favourite: Posílat e-maily, když si někdo oblíbí váš toot
-        follow: Posílat e-maily, když vás někdo začne sledovat
-        follow_request: Posílat e-maily, když vás někdo požádá o sledování
-        mention: Posílat e-maily, když vás někdo zmíní
-        pending_account: Posílat e-maily, když je třeba posoudit nový účet
-        reblog: Posílat e-maily, když někdo boostne váš toot
-        report: Posílat e-maily, je-li odesláno nové nahlášení
-        trending_tag: Posílat e-maily, když se neschválený hashtag stane populárním
+        favourite: Poslat e-mail, když si někdo oblíbí váš toot
+        follow: Poslat e-mail, když vás někdo začne sledovat
+        follow_request: Poslat e-mail, když vás někdo požádá o sledování
+        mention: Poslat e-mail, když vás někdo zmíní
+        pending_account: Poslat e-mail, když je třeba posoudit nový účet
+        reblog: Poslat e-mail, když někdo boostne váš toot
+        report: Poslat e-mail, je-li nahlášeno něco nového
+        trending_tag: Poslat e-mail, když se neschválený hashtag stane populárním
       tag:
-        listable: Dovolit tomuto hashtagu objevovat se v hledáních a v adresáři profilů
+        listable: Povolit tento hashtag ve výsledcích vyhledávání a v adresáři profilů
         name: Hashtag
-        trendable: Dovolit tomuto hashtagu objevovat se v trendech
-        usable: Dovolit tootům používat tento hashtag
+        trendable: Povolit tento hashtag v trendech
+        usable: Povolit používat tento hashtag v tootech
     'no': Ne
     recommended: Doporučeno
     required:
       mark: "*"
-      text: požadováno
+      text: vyžadováno
     'yes': Ano
diff --git a/config/locales/simple_form.cy.yml b/config/locales/simple_form.cy.yml
index 9b06bf473a0175925389e37194fdd304fd3b0039..6a3e74d59d021d1e249852c997f6e39057abbe98 100644
--- a/config/locales/simple_form.cy.yml
+++ b/config/locales/simple_form.cy.yml
@@ -113,6 +113,7 @@ cy:
         setting_aggregate_reblogs: Grŵp hybiau mewn ffrydiau
         setting_auto_play_gif: Chwarae GIFs wedi'u hanimeiddio yn awtomatig
         setting_boost_modal: Dangos deialog cadarnhad cyn bŵstio
+        setting_crop_images: Tocio lluniau o fewn tŵtiau ddi-ehangedig i 16x9
         setting_default_language: Cyhoeddi iaith
         setting_default_privacy: Cyfrinachedd cyhoeddi
         setting_default_sensitive: Marcio cyfryngau fel eu bod yn sensitif bob tro
diff --git a/config/locales/simple_form.da.yml b/config/locales/simple_form.da.yml
index 48a0a68834227506aaf6bc812f2fa726ab227a2e..3fadd7fb9bea9bf1e8bfe43f02fea04c8182bd97 100644
--- a/config/locales/simple_form.da.yml
+++ b/config/locales/simple_form.da.yml
@@ -9,8 +9,8 @@ da:
         avatar: PNG, GIF eller JPG. Højest %{size}. Vil blive skaleret ned til %{dimensions}px
         bot: Denne konto udfører hovedsageligt automatiserede handlinger og bliver muligvis ikke overvåget
         context: En eller flere sammenhænge hvor filteret skal være gældende
-        digest: Sendes kun efter en lang periode med inaktivitet og kun hvis du har modtaget nogle personlige beskeder mens du er væk
-        email: Du vil få tilsendt en bekræftelsed mail
+        digest: Sendes kun efter en lang periode med inaktivitet og kun hvis du har modtaget nogle personlige beskeder i dit fravær
+        email: Du vil få tilsendt en bekræftelses e-mail
         fields: Du kan have op til 4 ting vist som en tabel på din profil
         header: PNG, GIF eller JPG. Højest %{size}. Vil blive skaleret ned til %{dimensions}px
         inbox_url: Kopiere linket fra forsiden af den relay som du ønsker at bruge
@@ -40,10 +40,16 @@ da:
           name: Etiket
           value: Indhold
       admin_account_action:
+        include_statuses: Inkluder rapporteret toot i email
+        send_email_notification: Underret brugeren per email
+        text: Tilpasset advarsel
         type: Handling
         types:
           disable: Deaktiver
           none: Gør intet
+          silence: Silence
+          suspend: Suspendér og slet kontodata uopretteligt
+        warning_preset_id: Brug en forudindstillet advarsel
       defaults:
         autofollow: Inviter til at følge din konto
         avatar: Profilbillede
@@ -53,6 +59,8 @@ da:
         confirm_password: Bekræft adgangskode
         context: Filtrer sammenhænge
         current_password: Nuværende adgangskode
+        data: Data
+        discoverable: Vis denne konto i oversigten
         display_name: Visningsnavn
         email: E-mail adresse
         expires_in: Udløber efter
@@ -68,6 +76,7 @@ da:
         otp_attempt: To-faktor kode
         password: Adgangskode
         phrase: Nøgleord eller sætning
+        setting_advanced_layout: Aktivér avanceret webgrænseflade
         setting_auto_play_gif: Afspil automatisk animerede GIFs
         setting_boost_modal: Vis bekræftelses dialog før du fremhæver
         setting_default_language: Sprog for opslag
@@ -84,6 +93,7 @@ da:
         setting_reduce_motion: Reducer animationers bevægelse
         setting_system_font_ui: Brug systemets standard font
         setting_theme: Tema for side
+        setting_trends: Vis dagens tendenser
         setting_unfollow_modal: Vis bekræftelses dialog før du stopper med at følge nogen
         setting_use_pending_items: Langsom tilstand
         severity: Omfang
@@ -91,10 +101,14 @@ da:
         username: Brugernavn
         username_or_email: Brugernavn eller Email
         whole_word: Helt ord
+      featured_tag:
+        name: Hashtag
       interactions:
         must_be_follower: Bloker notifikationer fra folk der ikke følger dig
         must_be_following: Bloker notifikationer fra folk du ikke følger
         must_be_following_dm: Bloker direkte beskeder fra folk du ikke følger
+      invite:
+        comment: Kommentar
       invite_request:
         text: Hvorfor ønsker du at tilmelde dig?
       notification_emails:
@@ -103,10 +117,15 @@ da:
         follow: Send e-mail når nogen følger dig
         follow_request: Send email når nogen anmoder om at følge dig
         mention: Send e-mail når nogen nævner dig
-        reblog: Send email når nogen fremhæver din status
+        pending_account: Send en email når en ny konto skal gennemgås
+        reblog: Send e-mail når nogen fremhæver din status
         report: Send email når en ny anmeldelse bliver indsendt
+        trending_tag: Send en email når et ikke-gennemset hashtag trender
       tag:
+        listable: Tillad at dette hashtag vises i søgninger og i bruger oversigten
         name: Hashtag
+        trendable: Tillad at dette hashtag vises under trends
+        usable: Tillad toots at benytte dette hashtag
     'no': Nej
     recommended: Anbefalet
     required:
diff --git a/config/locales/simple_form.de.yml b/config/locales/simple_form.de.yml
index 1b7667c84c5d02625b5e9434cc80a84eacba6cb6..84787a6c50e300944fc6d02ae2e5a381098ec9f8 100644
--- a/config/locales/simple_form.de.yml
+++ b/config/locales/simple_form.de.yml
@@ -41,7 +41,7 @@ de:
         setting_hide_network: Wem du folgst und wer dir folgt, wird in deinem Profil nicht angezeigt
         setting_noindex: Betrifft dein öffentliches Profil und deine Beiträge
         setting_show_application: Die Anwendung die du nutzst wird in der detaillierten Ansicht deiner Beiträge angezeigt
-        setting_use_blurhash: Die Farbverläufe basieren auf den Farben der versteckten Medien, aber verstecken irgendwelche Details
+        setting_use_blurhash: Die Farbverläufe basieren auf den Farben der versteckten Medien, aber verstecken jegliche Details
         setting_use_pending_items: Neue Beiträge hinter einem Klick verstecken anstatt automatisch zu scrollen
         username: Dein Benutzername wird auf %{domain} einzigartig sein
         whole_word: Wenn das Schlagwort nur aus Buchstaben und Zahlen besteht, wird es nur angewendet, wenn es dem ganzen Wort entspricht
@@ -113,6 +113,7 @@ de:
         setting_aggregate_reblogs: Gruppiere erneut geteilte Beiträge auf der Startseite
         setting_auto_play_gif: Animierte GIFs automatisch abspielen
         setting_boost_modal: Bestätigungsdialog anzeigen, bevor ein Beitrag geteilt wird
+        setting_crop_images: Bilder in nicht ausgeklappten Beiträgen auf 16:9 zuschneiden
         setting_default_language: Beitragssprache
         setting_default_privacy: Beitragssichtbarkeit
         setting_default_sensitive: Medien immer als heikel markieren
diff --git a/config/locales/simple_form.el.yml b/config/locales/simple_form.el.yml
index cbce97171ae0e8884c64bd1c46852c1ffa312530..de6083e1847f78d25d0ede9fcc157a88ba86839a 100644
--- a/config/locales/simple_form.el.yml
+++ b/config/locales/simple_form.el.yml
@@ -3,11 +3,11 @@ el:
   simple_form:
     hints:
       account_alias:
-        acct: Ορίστε το username@domain του λογαριασμού από τον οποίο θέλετε να μετακινηθείτε
+        acct: Όρισε το username@domain του λογαριασμού από τον οποίο θέλεις να μετακινηθείς
       account_migration:
-        acct: Ορίστε το username@domain του λογαριασμού στον οποίο θέλετε να μετακινηθείτε
+        acct: Όρισε το username@domain του λογαριασμού στον οποίο θέλεις να μετακινηθείς
       account_warning_preset:
-        text: Μπορεις να χρησιμοποιήσεις συντακτικό ενός τουτ όπως διευθύνσεις URL, ταμπέλες και αναφορές
+        text: Μπορείς να χρησιμοποιήσεις το ίδιο συντακτικό των τουτ όπως URL, ταμπέλες και αναφορές
       admin_account_action:
         include_statuses: Ο χρήστης θα δει ποια τουτ προκάλεσαν την προειδοποίηση ή την ενέργεια των διαχειριστών
         send_email_notification: Ο χρήστης θα λάβει μια εξήγηση του τι συνέβη με τον λογαριασμό του
@@ -28,7 +28,7 @@ el:
         header: PNG, GIF ή JPG. Έως %{size}. Θα περιοριστεί σε διάσταση %{dimensions}px
         inbox_url: Αντέγραψε το URL της αρχικής σελίδας του ανταποκριτή (relay) που θέλεις να χρησιμοποιήσεις
         irreversible: Τα φιλτραρισμένα τουτ θα εξαφανιστούν αμετάκλητα, ακόμα και αν το φίλτρο αργότερα αφαιρεθεί
-        locale: Η γλώσσα του περιβάλλοντος χρήσης, των email και των ειδοποιήσεων ώθησης
+        locale: Η γλώσσα χρήσης, των email και των ειδοποιήσεων ώθησης
         locked: Απαιτεί να εγκρίνεις χειροκίνητα τους ακόλουθούς σου
         password: Χρησιμοποίησε τουλάχιστον 8 χαρακτήρες
         phrase: Θα ταιριάζει ανεξαρτήτως πεζών/κεφαλαίων ή προειδοποίησης περιεχομένου του τουτ
@@ -97,7 +97,7 @@ el:
         display_name: Όνομα εμφάνισης
         email: Διεύθυνση email
         expires_in: Λήξη μετά από
-        fields: Μετεδεδομένα προφίλ
+        fields: Μεταδεδομένα προφίλ
         header: Επικεφαλίδα
         inbox_url: Το URL του inbox του ανταποκριτή (relay)
         irreversible: Απόρριψη αντί για κρύψιμο
@@ -112,11 +112,12 @@ el:
         setting_advanced_layout: Ενεργοποίηση προηγμένης λειτουργίας χρήσης
         setting_aggregate_reblogs: Ομαδοποίηση προωθήσεων στις ροές
         setting_auto_play_gif: Αυτόματη αναπαραγωγή των GIF
-        setting_boost_modal: Εμφάνιση ερώτησης επιβεβαίωσης πριν την προώθηση
+        setting_boost_modal: Επιβεβαίωση πριν την προώθηση
+        setting_crop_images: Περιορισμός των εικόνων σε μη-ανεπτυγμένα τουτ σε αναλογία 16x9
         setting_default_language: Γλώσσα δημοσιεύσεων
         setting_default_privacy: Ιδιωτικότητα δημοσιεύσεων
-        setting_default_sensitive: Σημείωση των πολυμέσων πάντα ως ευαίσθητου περιεχομένου
-        setting_delete_modal: Εμφάνιση ερώτησης επιβεβαίωσης πριν διαγράψεις ένα τουτ
+        setting_default_sensitive: Σημείωση όλων των πολυμέσων ως ευαίσθητου περιεχομένου
+        setting_delete_modal: Επιβεβαίωση πριν τη διαγραφή ενός τουτ
         setting_display_media: Εμφάνιση πολυμέσων
         setting_display_media_default: Προκαθορισμένο
         setting_display_media_hide_all: Απόκρυψη όλων
@@ -126,11 +127,11 @@ el:
         setting_noindex: Επέλεξε να μην συμμετέχεις στα αποτελέσματα μηχανών αναζήτησης
         setting_reduce_motion: Μείωση κίνησης κινουμένων στοιχείων
         setting_show_application: Αποκάλυψη εφαρμογής που χρησιμοποιήθηκε για την αποστολή των τουτ
-        setting_system_font_ui: Χρησιμοποίησε την προεπιλεγμένη γραμματοσειρά του συστήματος
+        setting_system_font_ui: Χρήση της προεπιλεγμένης γραμματοσειράς του συστήματος
         setting_theme: Θέμα ιστότοπου
         setting_trends: Εμφάνιση σημερινών τάσεων
-        setting_unfollow_modal: Εμφάνιση ερώτησης επιβεβαίωσης πριν διακόψεις την παρακολούθηση κάποιου
-        setting_use_blurhash: Εμφάνιση χρωματισμών για τα κρυμμένα πολυμέσα
+        setting_unfollow_modal: Επιβεβαίωση πριν τη διακοπή παρακολούθησης κάποιου
+        setting_use_blurhash: Χρωματιστή απόκρυψη για τα κρυμμένα πολυμέσα
         setting_use_pending_items: Αργή λειτουργία
         severity: Αυστηρότητα
         type: Τύπος εισαγωγής
@@ -140,15 +141,15 @@ el:
       featured_tag:
         name: Ταμπέλα
       interactions:
-        must_be_follower: Μπλόκαρε τις ειδοποιήσεις από όσους δεν ακολουθείς
-        must_be_following: Μπλόκαρε τις ειδοποιήσεις που προέρχονται από άτομα που δεν τα ακολουθείς
+        must_be_follower: Μπλόκαρε τις ειδοποιήσεις από όσους δεν σε ακολουθούν
+        must_be_following: Μπλόκαρε τις ειδοποιήσεις από όσους δεν ακολουθείς
         must_be_following_dm: Μπλόκαρε τα προσωπικά μηνύματα από όσους δεν ακολουθείς
       invite:
         comment: Σχόλια
       invite_request:
         text: Γιατί θέλεις να συμμετάσχεις;
       notification_emails:
-        digest: Στέλνε συνοπτικά email
+        digest: Αποστολή συνοπτικών email
         favourite: Αποστολή email όταν κάποιος σημειώνει ως αγαπημένη τη δημοσίευσή σου
         follow: Αποστολή email όταν κάποιος σε ακολουθεί
         follow_request: Αποστολή email όταν κάποιος ζητάει να σε ακολουθήσει
diff --git a/config/locales/simple_form.en.yml b/config/locales/simple_form.en.yml
index 2a08510ff02292a323ff1484ecdeb6c3417f926c..1d6780ba2bffeb4fc7d36a3a9716eeb9037e19cb 100644
--- a/config/locales/simple_form.en.yml
+++ b/config/locales/simple_form.en.yml
@@ -42,20 +42,36 @@ en:
         setting_hide_network: Who you follow and who follows you will not be shown on your profile
         setting_noindex: Affects your public profile and status pages
         setting_show_application: The application you use to toot will be displayed in the detailed view of your toots
+        setting_show_follow_button_on_timeline: You can easily check the follow status and build a follow list quickly
+        setting_show_subscribe_button_on_timeline: You can easily check the status of your subscriptions and quickly build a subscription list
+        setting_show_target: Enable the function to switch between posting target and follow / subscribe target
         setting_use_blurhash: Gradients are based on the colors of the hidden visuals but obfuscate any details
         setting_use_pending_items: Hide timeline updates behind a click instead of automatically scrolling the feed
         username: Your username will be unique on %{domain}
         whole_word: When the keyword or phrase is alphanumeric only, it will only be applied if it matches the whole word
       domain_allow:
         domain: This domain will be able to fetch data from this server and incoming data from it will be processed and stored
+      domain_subscribe:
+        domain: Specify the domain name of the server you want to subscribe to
+        exclude_reblog: Exclude boosted posts from subscription
       featured_tag:
         name: 'You might want to use one of these:'
+      follow_tag:
+        name: Specify the name of the hashtag without '#' you want to follow
+      form_account_subscribe:
+        acct: Specify the username@domain of the account you want to subscribe
+        show_reblogs: Show boosted posts from subscription
       form_challenge:
         current_password: You are entering a secure area
       imports:
         data: CSV file exported from another Mastodon server
       invite_request:
         text: This will help us review your application
+      keyword_subscribe:
+        exclude_keyword: List multiple excluded keywords separated by commas (or use regular expressions)
+        ignore_block: You can prioritize keyword subscriptions while keeping the entire domain block
+        keyword: List multiple keywords separated by commas (or use regular expressions)
+        name: Optional
       sessions:
         otp: 'Enter the two-factor code generated by your phone app or use one of your recovery codes:'
       tag:
@@ -79,7 +95,7 @@ en:
         text: Custom warning
         type: Action
         types:
-          disable: Disable
+          disable: Disable login
           none: Do nothing
           silence: Silence
           suspend: Suspend and irreversibly delete account data
@@ -115,6 +131,7 @@ en:
         setting_auto_play_gif: Auto-play animated GIFs
         setting_boost_modal: Show confirmation dialog before boosting
         setting_default_federation: Allow my toots to reach other instances by default
+        setting_crop_images: Crop images in non-expanded toots to 16x9
         setting_default_language: Posting language
         setting_default_privacy: Posting privacy
         setting_default_sensitive: Always mark media as sensitive
@@ -128,10 +145,14 @@ en:
         setting_noindex: Opt-out of search engine indexing
         setting_reduce_motion: Reduce motion in animations
         setting_show_application: Disclose application used to send toots
+        setting_show_follow_button_on_timeline: Show follow button on timeline
+        setting_show_subscribe_button_on_timeline: Show subscribe button on timeline
+        setting_show_target: Enable targeting features
         setting_system_font_ui: Use system's default font
         setting_theme: Site theme
         setting_trends: Show today's trends
         setting_unfollow_modal: Show confirmation dialog before unfollowing someone
+        setting_unsubscribe_modal: Show confirmation dialog before unsubscribing someone
         setting_use_blurhash: Show colorful gradients for hidden media
         setting_use_pending_items: Slow mode
         severity: Severity
@@ -139,8 +160,24 @@ en:
         username: Username
         username_or_email: Username or Email
         whole_word: Whole word
+      domain_subscribe:
+        domain: Domain
+        exclude_reblog: Exclude boost
+        list_id: Target timeline
+        timeline: Timeline
+        reblog: Boost
       featured_tag:
         name: Hashtag
+      follow_tag:
+        list_id: Target timeline
+        name: Tag name
+        timeline: Timeline
+      form_account_subscribe:
+        acct: Account
+        list_id: Target timeline
+        reblog: Boost
+        show_reblogs: Show boost
+        timeline: Timeline
       interactions:
         must_be_follower: Block notifications from non-followers
         must_be_following: Block notifications from people you don't follow
@@ -149,16 +186,33 @@ en:
         comment: Comment
       invite_request:
         text: Why do you want to join?
+      keyword_subscribe:
+        disabled: Temporarily disable subscription
+        exclude_keyword: Excluded keyword list or regular expression
+        ignorecase: Ignore case
+        ignore_block: Ignore User's domain blocking
+        keyword: Keyword list or regular expression
+        list_id: Target timeline
+        name: Name
+        regexp: Use regular expressions for keywords
+      keyword_subscribes:
+        disabled: State
+        ignorecase: Case
+        ignore_block: Block
+        keyword: String
+        name: Name
+        regexp: Type
+        timeline: Timeline
       notification_emails:
         digest: Send digest e-mails
-        favourite: Send e-mail when someone favourites your status
-        follow: Send e-mail when someone follows you
-        follow_request: Send e-mail when someone requests to follow you
-        mention: Send e-mail when someone mentions you
-        pending_account: Send e-mail when a new account needs review
-        reblog: Send e-mail when someone boosts your status
-        report: Send e-mail when a new report is submitted
-        trending_tag: Send e-mail when an unreviewed hashtag is trending
+        favourite: Someone favourited your status
+        follow: Someone followed you
+        follow_request: Someone requested to follow you
+        mention: Someone mentioned you
+        pending_account: New account needs review
+        reblog: Someone boosted your status
+        report: New report is submitted
+        trending_tag: An unreviewed hashtag is trending
       tag:
         listable: Allow this hashtag to appear in searches and on the profile directory
         name: Hashtag
diff --git a/config/locales/simple_form.eo.yml b/config/locales/simple_form.eo.yml
index 8c2a087c5a3a2c608e34c2e8e3524b98ee0babc6..994cb1b8456fcdabac52b4d6cfcc17becafbabb8 100644
--- a/config/locales/simple_form.eo.yml
+++ b/config/locales/simple_form.eo.yml
@@ -14,6 +14,8 @@ eo:
         avatar: Formato PNG, GIF aÅ­ JPG. Äœis %{size}. Estos malgrandigita al %{dimensions}px
         bot: Tiu konto ĉefe faras aŭtomatajn agojn, kaj povas esti ne kontrolata
         context: Unu ol pluraj kuntekstoj kie la filtrilo devus agi
+        current_password: Pro sekuraj kialoj, bonvolu enigi la pasvorton de la nuna konto
+        current_username: Por konfirmi, bonvolu enigi la uzantnomon de la nuna konto
         digest: Sendita nur post longa tempo de neaktiveco, kaj nur se vi ricevis personan mesaĝon en via foresto
         email: Vi ricevos konfirman retmesaĝon
         fields: Vi povas havi ĝis 4 tabelajn elementojn en via profilo
@@ -37,6 +39,8 @@ eo:
         whole_word: Kiam la vorto aŭ frazo estas nur litera aŭ cifera, ĝi estos uzata nur se ĝi kongruas kun la tuta vorto
       featured_tag:
         name: 'Vi povus uzi iun el la jenaj:'
+      form_challenge:
+        current_password: Vi eniras sekuran areon
       imports:
         data: CSV-dosiero el alia Mastodon-servilo
       invite_request:
@@ -50,6 +54,10 @@ eo:
         fields:
           name: Etikedo
           value: Enhavo
+      account_alias:
+        acct: Tenilo de la malnovan konton
+      account_migration:
+        acct: Tenilo de la novan konton
       account_warning_preset:
         text: AntaÅ­agordita teksto
       admin_account_action:
@@ -109,6 +117,7 @@ eo:
         setting_theme: Reteja etoso
         setting_trends: Montri hodiaŭajn furoraĵojn
         setting_unfollow_modal: Montri fenestron por konfirmi antaŭ ol ĉesi sekvi iun
+        setting_use_blurhash: Montri buntajn transirojn por kaŝitaj aŭdovidaĵoj
         setting_use_pending_items: Malrapida reĝimo
         severity: Graveco
         type: Importa tipo
@@ -133,7 +142,7 @@ eo:
         mention: Sendi retmesaĝon kiam iu mencias vin
         pending_account: Sendi retmesaĝon kiam nova konto bezonas kontrolon
         reblog: Sendi retmesaĝon kiam iu diskonigas vian mesaĝon
-        report: Sendi retmesaĝon kiam nova signalo estas sendita
+        report: Nova signalo estas sendita
         trending_tag: Sendi retpoŝtmesaĝon kiam nekontrolita kradvorto furoras
       tag:
         name: Kradvorto
diff --git a/config/locales/simple_form.es-AR.yml b/config/locales/simple_form.es-AR.yml
index 515d5c1ed90e1b9725f1a1648a82ee512d0575ea..c62ded28b054933538c3308b8bbe1ef1b60a287a 100644
--- a/config/locales/simple_form.es-AR.yml
+++ b/config/locales/simple_form.es-AR.yml
@@ -1 +1,171 @@
+---
 es-AR:
+  simple_form:
+    hints:
+      account_alias:
+        acct: Especificá el nombredeusuario@dominio de la cuenta desde la que querés mudarte
+      account_migration:
+        acct: Especificá el nombredeusuario@dominio de la cuenta a la que querés mudarte
+      account_warning_preset:
+        text: Podés usar sintaxis de toots, como direcciones web, etiquetas y menciones
+      admin_account_action:
+        include_statuses: El usuario verá qué toots causaron la acción de moderación o advertencia
+        send_email_notification: El usuario recibirá una explicación de lo que sucedió con su cuenta
+        text_html: Opcional. Podés usar sintaxis de toots. Podés <a href="%{path}">agregar preajustes de advertencia</a> para ahorrar tiempo.
+        type_html: Elegí qué hacer con <strong>%{acct}</strong>
+        warning_preset_id: Opcional. Todavía podés agregar texto personalizado al final del preajuste
+      defaults:
+        autofollow: Los usuarios que se registren mediante la invitación te seguirán automáticamente
+        avatar: 'PNG, GIF o JPG. Máximo: %{size}. Será subescalado a %{dimensions} píxeles.'
+        bot: Esta cuenta ejecuta principalmente acciones automatizadas y podría no ser monitorizada
+        context: Uno o múltiples contextos en los que debe aplicarse el filtro
+        current_password: Por razones de seguridad, por favor, ingresá la contraseña de la cuenta actual
+        current_username: Para confirmar, por favor, ingresá el nombre de usuario de la cuenta actual
+        digest: Sólo enviado tras un largo periodo de inactividad, y sólo si has recibiste mensajes personales en tu ausencia
+        discoverable: El directorio del perfil es otra forma en la que tu cuenta puede llegar a un público más amplio
+        email: Se te enviará un correo electrónico de confirmación
+        fields: Podés tener hasta 4 elementos mostrados en una tabla en tu perfil
+        header: 'PNG, GIF o JPG. Máximo: %{size}. Será subescalado a %{dimensions} píxeles.'
+        inbox_url: Copiá la dirección web desde la página principal del relé que querés usar
+        irreversible: Los toots filtrados desaparecerán irreversiblemente, incluso si este filtro es eliminado después
+        locale: El idioma de la interface de usuario, correos electrónicos y notificaciones PuSH
+        locked: Requiere que manualmente aprobés seguidores
+        password: Usá al menos 8 caracteres
+        phrase: Se aplicará sin importar las mayúsculas o las advertencias de contenido de un toot
+        scopes: Qué APIs de la aplicación tendrán acceso. Si seleccionás el alcance de nivel más alto, no necesitás seleccionar las individuales.
+        setting_aggregate_reblogs: No mostrar nuevos retoots de los toots que fueron recientemente retooteados (sólo afecta a los retoots recibidos recientemente)
+        setting_default_sensitive: El contenido de medios sensibles está oculto predeterminadamente y puede ser mostrado con un clic
+        setting_display_media_default: Ocultar medios que están marcados como sensibles
+        setting_display_media_hide_all: Siempre ocultar todos los medios
+        setting_display_media_show_all: Siempre mostrar todos los medios que están marcados como sensibles
+        setting_hide_network: A quiénes seguís y tus seguidores no serán mostrados en tu perfil
+        setting_noindex: Afecta a tu perfil público y páginas de estado
+        setting_show_application: La aplicación que usás para tootear se mostrará en la vista detallada de tus toots
+        setting_use_blurhash: Los gradientes se basan en los colores de las imágenes ocultas pero haciendo borrosos los detalles
+        setting_use_pending_items: Ocultar actualizaciones de la línea temporal detrás de un clic en lugar de desplazar automáticamente el flujo
+        username: Tu nombre de usuario será único en %{domain}
+        whole_word: Cuando la palabra clave o frase es sólo alfanumérica, sólo será aplicado si coincide con toda la palabra
+      domain_allow:
+        domain: Este dominio podrá recolectar datos de este servidor, y los datos entrantes serán procesados y archivados
+      featured_tag:
+        name: 'Puede que quieras usar una de estas:'
+      form_challenge:
+        current_password: Estás ingresando en un área segura
+      imports:
+        data: Archivo CSV exportado desde otro servidor de Mastodon
+      invite_request:
+        text: Esto nos ayudará a revisar tu aplicación
+      sessions:
+        otp: 'Ingresá el código de autenticación de dos factores generado por la aplicación de tu dispositivo móvil, o usá uno de tus códigos de recuperación:'
+      tag:
+        name: Sólo podés cambiar la capitalización de las letras, por ejemplo, para que sea más legible
+      user:
+        chosen_languages: Cuando esté marcado, sólo se mostrarán los toots en los idiomas seleccionados en las líneas temporales públicas
+    labels:
+      account:
+        fields:
+          name: Nombre de campo
+          value: Valor de campo
+      account_alias:
+        acct: Alias de la cuenta antigua
+      account_migration:
+        acct: Alias de la cuenta nueva
+      account_warning_preset:
+        text: Texto predefinido
+      admin_account_action:
+        include_statuses: Incluir en el correo electrónico a los toots denunciados
+        send_email_notification: Notificar al usuario por correo electrónico
+        text: Advertencia personalizada
+        type: Acción
+        types:
+          disable: Deshabilitar inicio de sesión
+          none: No hacer nada
+          silence: Silenciar
+          suspend: Suspender y eliminar de forma irreversible los datos de la cuenta
+        warning_preset_id: Usar un texto predeterminado
+      defaults:
+        autofollow: Invitar para seguir tu cuenta
+        avatar: Avatar
+        bot: Esta es una cuenta bot
+        chosen_languages: Filtrar idiomas
+        confirm_new_password: Confirmar nueva contraseña
+        confirm_password: Confirmar contraseña
+        context: Filtrar contextos
+        current_password: Contraseña actual
+        data: Datos
+        discoverable: Listar esta cuenta en el directorio
+        display_name: Nombre para mostrar
+        email: Dirección de correo electrónico
+        expires_in: Vence después de
+        fields: Metadatos de perfil
+        header: Cabecera
+        inbox_url: Dirección web de la bandeja de entrada del relé
+        irreversible: Dejar en lugar de ocultar
+        locale: Idioma de la interface
+        locked: Hacer privada esta cuenta
+        max_uses: Número máximo de usos
+        new_password: Nueva contraseña
+        note: Biografía
+        otp_attempt: Código de dos factores
+        password: Contraseña
+        phrase: Palabra clave o frase
+        setting_advanced_layout: Habilitar interface web avanzada
+        setting_aggregate_reblogs: Agrupar retoots en las líneas temporales
+        setting_auto_play_gif: Reproducir automáticamente los GIFs animados
+        setting_boost_modal: Mostrar diálogo de confirmación antes de retootear
+        setting_crop_images: Recortar imágenes en toots no expandidos a 16x9
+        setting_default_language: Idioma de tus toots
+        setting_default_privacy: Privacidad de toots
+        setting_default_sensitive: Siempre marcar medios como sensibles
+        setting_delete_modal: Mostrar diálogo de confirmación antes de eliminar un toot
+        setting_display_media: Visualización de medios
+        setting_display_media_default: Predeterminada
+        setting_display_media_hide_all: Ocultar todo
+        setting_display_media_show_all: Mostrar todo
+        setting_expand_spoilers: Siempre expandir los toots marcados con advertencias de contenido
+        setting_hide_network: Ocultar tu red
+        setting_noindex: Excluirse del indexado de motores de búsqueda
+        setting_reduce_motion: Reducir el movimiento de las animaciones
+        setting_show_application: Mostrar aplicación usada para tootear
+        setting_system_font_ui: Utilizar la tipografía predeterminada del sistema
+        setting_theme: Tema del sitio
+        setting_trends: Mostrar las tendencias de hoy
+        setting_unfollow_modal: Mostrar diálogo de confirmación antes de dejar de seguir a alguien
+        setting_use_blurhash: Mostrar gradientes coloridos para medios ocultos
+        setting_use_pending_items: Modo lento
+        severity: Severidad
+        type: Tipo de importación
+        username: Nombre de usuario
+        username_or_email: Nombre de usuario o correo electrónico
+        whole_word: Palabra entera
+      featured_tag:
+        name: Etiqueta
+      interactions:
+        must_be_follower: Bloquear notificaciones de cuentas que no te siguen
+        must_be_following: Bloquear notificaciones de cuentas que no seguís
+        must_be_following_dm: Bloquear mensajes directos de cuentas que no seguís
+      invite:
+        comment: Comentar
+      invite_request:
+        text: "¿Por qué querés unirte?"
+      notification_emails:
+        digest: Enviar correos electrónicos compilatorios
+        favourite: Enviar correo electrónico cuando una cuenta marca como favorito tu estado
+        follow: Enviar correo electrónico cuando una cuenta te siga
+        follow_request: Enviar correo electrónico cuando una cuenta solicita seguirte
+        mention: Enviar correo electrónico cuando una cuenta te mencione
+        pending_account: Enviar correo electrónico cuando una nueva cuenta necesita revisión
+        reblog: Enviar correo electrónico cuando una cuenta retootee tu estado
+        report: Enviar correo electrónico cuando se envíe un nuevo informe
+        trending_tag: Enviar correo electrónico cuando una etiqueta no revisada esté en tendencia
+      tag:
+        listable: Permitir que esta etiqueta aparezca en las búsquedas y en el directorio de perfiles
+        name: Etiqueta
+        trendable: Permitir que esta etiqueta aparezca bajo tendencias
+        usable: Permitir a los toots usar esta etiqueta
+    'no': 'No'
+    recommended: Opción recomendada
+    required:
+      mark: "*"
+      text: obligatorio
+    'yes': Sí
diff --git a/config/locales/simple_form.es.yml b/config/locales/simple_form.es.yml
index 2fb33dbc3ca775de7ab65c8ad5c335700c61ba3d..da390468080813ee68aba49ed5a0465d605000c2 100644
--- a/config/locales/simple_form.es.yml
+++ b/config/locales/simple_form.es.yml
@@ -7,11 +7,11 @@ es:
       account_migration:
         acct: Especifique el nombre de usuario@dominio de la cuenta a la cual se desea migrar
       account_warning_preset:
-        text: Puede usar sintaxis de toots, como URLs, hashtags y menciones
+        text: Puede usar sintaxis de barritadas, como URLs, etiquetas y menciones
       admin_account_action:
-        include_statuses: El usuario verá qué toots han causado la acción de moderación o advertencia
+        include_statuses: El usuario verá qué bramidos han causado la acción de moderación o advertencia
         send_email_notification: El usuario recibirá una explicación de lo que sucedió con respecto a su cuenta
-        text_html: Opcional. Puede usar sintaxis de toots. Puede añadir <a href="%{path}">configuraciones predefinidas de advertencia</a> para ahorrar tiempo
+        text_html: Opcional. Puede usar sintaxis de bramidos. Puede añadir <a href="%{path}">configuraciones predefinidas de advertencia</a> para ahorrar tiempo
         type_html: Elige qué hacer con <strong>%{acct}</strong>
         warning_preset_id: Opcional. Aún puede añadir texto personalizado al final de la configuración predefinida
       defaults:
@@ -27,22 +27,22 @@ es:
         fields: Puedes tener hasta 4 elementos mostrándose como una tabla en tu perfil
         header: PNG, GIF o JPG. Máximo %{size}. Será escalado a %{dimensions}px
         inbox_url: Copia la URL de la página principal del relés que quieres utilizar
-        irreversible: Los toots filtrados desaparecerán irreversiblemente, incluso si este filtro es eliminado más adelante
+        irreversible: Las bramidos filtradas desaparecerán irreversiblemente, incluso si este filtro es eliminado más adelante
         locale: El idioma de la interfaz de usuario, correos y notificaciones push
         locked: Requiere que manualmente apruebes seguidores y las publicaciones serán mostradas solamente a tus seguidores
         password: Utilice al menos 8 caracteres
-        phrase: Se aplicará sin importar las mayúsculas o los avisos de contenido de un toot
+        phrase: Se aplicará sin importar las mayúsculas o los avisos de contenido de una bramido
         scopes: Qué APIs de la aplicación tendrán acceso. Si seleccionas el alcance de nivel mas alto, no necesitas seleccionar las individuales.
-        setting_aggregate_reblogs: No mostrar nuevos retoots para los toots que han sido recientemente retooteados (sólo afecta a los retoots recibidos recientemente)
+        setting_aggregate_reblogs: No mostrar nuevas rebramidos para las bramidos que han sido recientemente rebramidos (sólo afecta a las rebramidos recibidos recientemente)
         setting_default_sensitive: El contenido multimedia sensible está oculto por defecto y puede ser mostrado con un click
         setting_display_media_default: Ocultar contenido multimedia marcado como sensible
         setting_display_media_hide_all: Siempre ocultar todo el contenido multimedia
         setting_display_media_show_all: Mostrar siempre contenido multimedia marcado como sensible
         setting_hide_network: A quién sigues y quién te sigue no será mostrado en tu perfil
         setting_noindex: Afecta a tu perfil público y páginas de estado
-        setting_show_application: La aplicación que utiliza usted para publicar toots se mostrará en la vista detallada de sus toots
+        setting_show_application: La aplicación que utiliza usted para publicar bramidos se mostrará en la vista detallada de sus bramidos
         setting_use_blurhash: Los gradientes se basan en los colores de las imágenes ocultas pero haciendo borrosos los detalles
-        setting_use_pending_items: Ocultar nuevos estados detrás de un clic en lugar de desplazar automáticamente el feed
+        setting_use_pending_items: Ocultar actualizaciones cronológicas tras un clic en lugar de desplazar automáticamente la ristra
         username: Tu nombre de usuario será único en %{domain}
         whole_word: Cuando la palabra clave o frase es solo alfanumérica, solo será aplicado si concuerda con toda la palabra
       domain_allow:
@@ -52,15 +52,15 @@ es:
       form_challenge:
         current_password: Estás entrando en un área segura
       imports:
-        data: Archivo CSV exportado desde otra instancia de Mastodon
+        data: Archivo CSV exportado desde otra instancia de Mastodonte
       invite_request:
         text: Esto nos ayudará a revisar su aplicación
       sessions:
-        otp: 'Introduce el código de autenticación de dos factores geberado por tu aplicación de teléfono o usa uno de tus códigos de recuperación:'
+        otp: 'Introduce el código de autenticación de dos factores generado por tu aplicación de teléfono o usa uno de tus códigos de recuperación:'
       tag:
         name: Sólo se puede cambiar el cajón de las letras, por ejemplo, para que sea más legible
       user:
-        chosen_languages: Cuando se marca, solo se mostrarán los toots en los idiomas seleccionados en los timelines públicos
+        chosen_languages: Cuando se marca, solo se mostrarán las barritadas en los idiomas seleccionados en las cronologías públicas
     labels:
       account:
         fields:
@@ -73,7 +73,7 @@ es:
       account_warning_preset:
         text: Texto predefinido
       admin_account_action:
-        include_statuses: Incluir en el correo electrónico a los toots denunciados
+        include_statuses: Incluir en el correo electrónico a los bramidos denunciados
         send_email_notification: Notificar al usuario por correo electrónico
         text: Aviso personalizado
         type: Acción
@@ -110,22 +110,23 @@ es:
         password: Contraseña
         phrase: Palabra clave o frase
         setting_advanced_layout: Habilitar interfaz web avanzada
-        setting_aggregate_reblogs: Agrupar retoots en las líneas de tiempo
+        setting_aggregate_reblogs: Agrupar rebarritadas en las cronologías
         setting_auto_play_gif: Reproducir automáticamente los GIFs animados
-        setting_boost_modal: Mostrar ventana de confirmación antes de un Retoot
+        setting_boost_modal: Mostrar ventana de confirmación antes de un Rebramido
+        setting_crop_images: Recortar a 16x9 las imágenes de los bramidos no expandidos
         setting_default_language: Idioma de publicación
         setting_default_privacy: Privacidad de publicaciones
         setting_default_sensitive: Marcar siempre imágenes como sensibles
-        setting_delete_modal: Mostrar diálogo de confirmación antes de borrar un toot
+        setting_delete_modal: Mostrar diálogo de confirmación antes de borrar un bramido
         setting_display_media: Visualización multimedia
         setting_display_media_default: Por defecto
         setting_display_media_hide_all: Ocultar todo
         setting_display_media_show_all: Mostrar todo
-        setting_expand_spoilers: Siempre expandir los toots marcados con advertencias de contenido
+        setting_expand_spoilers: Siempre expandir los bramidos marcados con advertencias de contenido
         setting_hide_network: Ocultar tu red
         setting_noindex: Excluirse del indexado de motores de búsqueda
         setting_reduce_motion: Reducir el movimiento de las animaciones
-        setting_show_application: Mostrar aplicación usada para publicar toots
+        setting_show_application: Mostrar aplicación usada para publicar bramidos
         setting_system_font_ui: Utilizar la tipografía por defecto del sistema
         setting_theme: Tema del sitio
         setting_trends: Mostrar las tendencias de hoy
@@ -156,12 +157,12 @@ es:
         pending_account: Enviar correo electrónico cuando una nueva cuenta necesita revisión
         reblog: Enviar correo electrónico cuando alguien comparta su publicación
         report: Enviar un correo cuando se envía un nuevo informe
-        trending_tag: Enviar correo electrónico cuando una etiqueta no revisada está de tendencia
+        trending_tag: Enviar correo electrónico cuando una etiqueta no revisada es tendencia
       tag:
         listable: Permitir que esta etiqueta aparezca en las búsquedas y en el directorio del perfil
         name: Etiqueta
         trendable: Permitir que esta etiqueta aparezca bajo tendencias
-        usable: Permitir a los toots usar esta etiqueta
+        usable: Permitir a las barritadas usar esta etiqueta
     'no': 'No'
     recommended: Recomendado
     required:
diff --git a/config/locales/simple_form.et.yml b/config/locales/simple_form.et.yml
index c52818a3541ee56164894edd37d7315dc6a92462..0b8c2c22bf4a25814d3ab36cbd6f30f591e9df56 100644
--- a/config/locales/simple_form.et.yml
+++ b/config/locales/simple_form.et.yml
@@ -2,9 +2,14 @@
 et:
   simple_form:
     hints:
+      account_alias:
+        acct: Sisesta selle konto kasutajanimi@domeen, millelt soovite kolida
+      account_migration:
+        acct: Sisesta selle konto kasutajanimi@domeen, millele soovite kolida
       account_warning_preset:
         text: Te saate kasutada tuututuse süntaksi, näiteks URLe, silte ja mainimisi
       admin_account_action:
+        include_statuses: Kasutaja näeb, millised tuututused on põhjustanud selle moderaatori tegevuse või hoiatuse
         send_email_notification: Konto omanik saab selgituse selle kohta, mis juhtus nende kontoga
         text_html: Valikuline. Te saate kasutada tuututuse süntaksi. Te saate <a href="%{path}">lisada hoiatuste eelseadistusi</a> aega säästmiseks
         type_html: Vali, mida teha kasutajaga <strong>%{acct}</strong>
@@ -14,7 +19,10 @@ et:
         avatar: PNG, GIF või JPG. Kõige rohkem %{size}. Vähendatakse %{dimensions} pikslini
         bot: See konto teeb enamjaolt automatiseeritud tegevusi ja ei pruugi olla järelvalve all
         context: Üks või mitu konteksti, mille vastu see filter peaks rakenduma
+        current_password: Turvalisuse huvides palun sisestage praeguse konto salasõna
+        current_username: Kinnitamiseks palun sisestage oma konto kasutajanimi
         digest: Saadetakse ainult pärast pikka perioodi tegevusetust ja ainult siis, kui Teile on saadetud privaatseid sõnumeid
+        discoverable: Profiilikataloog on veel üks viis, kuidas Teie konto saab jõuda laiema publikuni
         email: Teile saadetakse kinnituskiri e-posti teel
         fields: Te saate oma profiilil tabelina kuvada kuni 4 asja
         header: PNG, GIF või JPG. Kõige rohkem %{size}. Vähendatakse %{dimensions} pikslini
@@ -41,6 +49,8 @@ et:
         domain: See domeen saab tõmmata andmeid sellelt serverilt ning sissetulevad andmed sellelt domeenilt töödeldakse ning salvestatakse
       featured_tag:
         name: 'Äkki soovite kasutada mõnda neist:'
+      form_challenge:
+        current_password: Te sisenete turvalisele alale
       imports:
         data: CSV fail eksporditi teisest Mastodoni serverist
       invite_request:
@@ -56,9 +66,14 @@ et:
         fields:
           name: Nimetus
           value: Sisu
+      account_alias:
+        acct: Vana konto täisnimi
+      account_migration:
+        acct: Uue konto täisnimi
       account_warning_preset:
         text: Eelseadistatud tekst
       admin_account_action:
+        include_statuses: Kaasa teavitatud tuututused selles e-kirjas
         send_email_notification: Teavita kasutajat e-posti teel
         text: Hoiatus
         type: Tegevus
@@ -98,6 +113,7 @@ et:
         setting_aggregate_reblogs: Grupita upitused ajajoontes
         setting_auto_play_gif: Mängi GIF-e automaatselt
         setting_boost_modal: Näita kinnitusdialoogi enne upitamist
+        setting_crop_images: Kärbi suurendamata tuututuste pildid resolutsiooni 16x9
         setting_default_language: Postituse keel
         setting_default_privacy: Postituse privaatsus
         setting_default_sensitive: Alati märgista meedia tundlikuks
@@ -128,6 +144,8 @@ et:
         must_be_follower: Keela teavitused mittejälgijatelt
         must_be_following: Keela teavitused kasutajatelt, keda sa ei jälgi
         must_be_following_dm: Keela privaatsõnumid kasutajatelt, keda sa ei jälgi
+      invite:
+        comment: Kommenteerima
       invite_request:
         text: Miks Te soovite liituda?
       notification_emails:
@@ -142,6 +160,7 @@ et:
         trending_tag: Saada e-kiri, kui ülevaatamata silt trendib
       tag:
         listable: Luba sellel sildil ilmuda profiilide kataloogis
+        name: Silt
         trendable: Luba sellel sildil trendida
         usable: Luba tuututustel seda silti kasutada
     'no': Ei
diff --git a/config/locales/simple_form.eu.yml b/config/locales/simple_form.eu.yml
index 471577d79af65ad38e983d85f9ed988425f7acaf..1f34adb057e3eed6ed25ed8704060176b925b675 100644
--- a/config/locales/simple_form.eu.yml
+++ b/config/locales/simple_form.eu.yml
@@ -4,9 +4,12 @@ eu:
     hints:
       account_alias:
         acct: Zehaztu migrazioaren jatorri den kontuaren erabiltzailea@domeinua
+      account_migration:
+        acct: Zehaztu migrazioaren xede den kontuaren erabiltzaile@domeinua
       account_warning_preset:
         text: Toot sintaxia erabili dezakezu, URLak, traolak eta aipamenak
       admin_account_action:
+        include_statuses: Erabiltzaileak moderazio ekintza edo abisu bat eragin duten toot-ak ikusi ahal izango ditu
         send_email_notification: Erabiltzaileak bere kontuarekin gertatutakoaren azalpen bat jasoko du
         text_html: Aukerakoa. Toot sintaxia erabili dezakezu. <a href="%{path}">Abisu aurre-ezarpenak</a> gehitu ditzakezu denbora aurrezteko
         type_html: Erabaki zer egin <strong>%{acct}</strong> kontuarekin
@@ -19,6 +22,7 @@ eu:
         current_password: Segurtasunagatik sartu uneko kontuaren pasahitza
         current_username: Berresteko sartu uneko kontuaren erabiltzaile-izena
         digest: Jarduerarik gabeko epe luze bat eta gero mezu pertsonalen bat jaso baduzu, besterik ez
+        discoverable: Profilen direktorioa zure kontua jende gehiagok irakurtzeko modu bat da
         email: Baieztapen e-mail bat bidaliko zaizu
         fields: 4 elementu bistaratu ditzakezu taula batean zure profilean
         header: PNG, GIF edo JPG. Gehienez %{size}. %{dimensions}px eskalara txikituko da
@@ -38,8 +42,11 @@ eu:
         setting_noindex: Zure profil publiko eta Toot-en orrietan eragina du
         setting_show_application: Tootak bidaltzeko erabiltzen duzun aplikazioa zure tooten ikuspegi xehetsuan bistaratuko da
         setting_use_blurhash: Gradienteak ezkutatutakoaren koloreetan oinarritzen dira, baina xehetasunak ezkutatzen dituzte
+        setting_use_pending_items: Ezkutatu denbora-lerroko eguneraketak klik baten atzean jarioa automatikoki korritu ordez
         username: Zure erabiltzaile-izena bakana izango da %{domain} domeinuan
         whole_word: Hitz eta esaldi gakoa alfanumerikoa denean, hitz osoarekin bat datorrenean besterik ez da aplikatuko
+      domain_allow:
+        domain: Domeinu honek zerbitzari honetatik datuak hartu ahal izango ditu eta bertatik jasotako informazioa prozesatu eta gordeko da
       featured_tag:
         name: 'Hauetakoren bat erabili zenezake:'
       form_challenge:
@@ -50,6 +57,8 @@ eu:
         text: Honek zure eskaera berrikustean lagunduko digu
       sessions:
         otp: 'Sartu zure telefonoko aplikazioak sortutako bi faktoreetako kodea, edo erabili zure berreskuratze kodeetako bat:'
+      tag:
+        name: Letrak maiuskula/minuskulara aldatu ditzakezu besterik ez, adibidez irakurterrazago egiteko
       user:
         chosen_languages: Ezer markatzekotan, hautatutako hizkuntzetan dauden toot-ak besterik ez dira erakutsiko
     labels:
@@ -104,6 +113,7 @@ eu:
         setting_aggregate_reblogs: Taldekatu bultzadak denbora-lerroetan
         setting_auto_play_gif: Erreproduzitu GIF animatuak automatikoki
         setting_boost_modal: Erakutsi baieztapen elkarrizketa-koadroa bultzada eman aurretik
+        setting_crop_images: Moztu irudiak hedatu gabeko toot-etan 16x9 proportzioan
         setting_default_language: Argitalpenen hizkuntza
         setting_default_privacy: Mezuen pribatutasuna
         setting_default_sensitive: Beti markatu edukiak hunkigarri gisa
diff --git a/config/locales/simple_form.fa.yml b/config/locales/simple_form.fa.yml
index 70ad0c66ab20879bc86a5ba1484acd833c0d9023..2cfbad1823e67fd2fe573c68998336b7ad293ee5 100644
--- a/config/locales/simple_form.fa.yml
+++ b/config/locales/simple_form.fa.yml
@@ -113,6 +113,7 @@ fa:
         setting_aggregate_reblogs: بازبوق‌ها را متحد کن
         setting_auto_play_gif: پخش خودکار تصویرهای متحرک
         setting_boost_modal: نمایش پیغام تأیید پیش از بازبوقیدن
+        setting_crop_images: در بوق‌های بازنشده، تصویرها را به ابعاد ۱۶×۹ کوچک کن
         setting_default_language: زبان نوشته‌های شما
         setting_default_privacy: حریم خصوصی نوشته‌ها
         setting_default_sensitive: همیشه تصاویر را به عنوان حساس علامت بزن
diff --git a/config/locales/simple_form.fi.yml b/config/locales/simple_form.fi.yml
index 2bb56b40ec2cafe47678bacb7bf856fad001838c..3cc3e734434f6eccbf3995e9ee72304469e58560 100644
--- a/config/locales/simple_form.fi.yml
+++ b/config/locales/simple_form.fi.yml
@@ -6,11 +6,18 @@ fi:
         send_email_notification: Käyttäjä saa selityksen mitä tapahtui hänen tililleen
       defaults:
         avatar: PNG, GIF tai JPG. Enintään %{size}. Skaalataan kokoon %{dimensions} px
+        bot: Tämä tili suorittaa enimmäkseen automaattisia toimintoja, eikä sitä ehkä valvota
         digest: Lähetetään vain pitkän poissaolon jälkeen ja vain, jos olet saanut suoria viestejä poissaolosi aikana
+        email: Sinulle lähetetään vahvistussähköposti
         fields: Sinulla voi olla korkeintaan 4 asiaa profiilissasi taulukossa
         header: PNG, GIF tai JPG. Enintään %{size}. Skaalataan kokoon %{dimensions} px
         locked: Sinun täytyy hyväksyä seuraajat manuaalisesti
+        setting_display_media_default: Piilota arkaluonteiseksi merkitty media
+        setting_display_media_hide_all: Piilota aina kaikki media
+        setting_display_media_show_all: Näytä aina arkaluonteiseksi merkitty media
         setting_noindex: Vaikuttaa julkiseen profiiliisi ja tilasivuihisi
+        setting_show_application: Tuuttaamiseen käyttämäsi sovellus näkyy tuuttauksiesi yksityiskohtaisessa näkymässä
+        setting_use_blurhash: Liukuvärit perustuvat piilotettujen kuvien väreihin, mutta sumentavat yksityiskohdat
       imports:
         data: Toisesta Mastodon-instanssista tuotu CSV-tiedosto
       sessions:
diff --git a/config/locales/simple_form.fr.yml b/config/locales/simple_form.fr.yml
index cff0db7191001733aef7258ac2aa451e22fed76e..7b9e466ee3be515bb7b49a440ad3c76cc0738f4a 100644
--- a/config/locales/simple_form.fr.yml
+++ b/config/locales/simple_form.fr.yml
@@ -32,8 +32,8 @@ fr:
         locked: Vous devrez approuver chaque abonné⋅e et vos statuts ne s’afficheront qu’à vos abonné⋅es
         password: Utilisez au moins 8 caractères
         phrase: Sera trouvé sans que la case ou l’avertissement de contenu du pouet soit pris en compte
-        scopes: À quelles APIs l’application sera autorisée à accéder. Si vous sélectionnez un périmètre de haut-niveau, vous n’avez pas besoin de sélectionner les individuels.
-        setting_aggregate_reblogs: Ne pas afficher de nouveaux repartagés pour les pouets qui ont été récemment repartagés (n’affecte que les repartagés nouvellement reçus)
+        scopes: À quelles APIs l’application sera autorisée à accéder. Si vous sélectionnez une permission générale, vous n’avez pas besoin de sélectionner les permissions plus précises.
+        setting_aggregate_reblogs: Ne pas afficher de nouveaux partages pour les pouets qui ont été récemment partagés (n’affecte que les partages nouvellement reçus)
         setting_default_sensitive: Les médias sensibles sont cachés par défaut et peuvent être révélés d’un simple clic
         setting_display_media_default: Masquer les médias marqués comme sensibles
         setting_display_media_hide_all: Toujours masquer tous les médias
@@ -110,9 +110,10 @@ fr:
         password: Mot de passe
         phrase: Mot-clé ou phrase
         setting_advanced_layout: Activer l’interface Web avancée
-        setting_aggregate_reblogs: Repartagés en groupe dans la ligne de temps
+        setting_aggregate_reblogs: Partages groupés dans les fils d’actualités
         setting_auto_play_gif: Lire automatiquement les GIFs animés
         setting_boost_modal: Afficher une fenêtre de confirmation avant de partager
+        setting_crop_images: Recadrer les images dans les pouets non-expansés à 16x9
         setting_default_language: Langue de publication
         setting_default_privacy: Confidentialité des statuts
         setting_default_sensitive: Toujours marquer les médias comme sensibles
@@ -154,14 +155,14 @@ fr:
         follow_request: Envoyer un courriel lorsque quelqu’un demande à me suivre
         mention: Envoyer un courriel lorsque quelqu’un me mentionne
         pending_account: Envoyer un courriel lorsqu’un nouveau compte est en attente d’approbation
-        reblog: Envoyer un courriel lorsque quelqu’un partage mes statuts
+        reblog: Quelqu’un a partagé votre statut
         report: Envoyer un courriel lorsqu’un nouveau rapport est soumis
         trending_tag: Envoyer un e-mail quand un hashtag non contrôlé est en tendance actuelle
       tag:
         listable: Autoriser ce hashtag à apparaître dans les recherches et dans l’annuaire des profils
         name: Hashtag
         trendable: Autoriser ce hashtag à apparaître sous les tendances du jour
-        usable: Autoriser les toots à utiliser ce hashtag
+        usable: Autoriser les pouets à utiliser ce hashtag
     'no': Non
     recommended: Recommandé
     required:
diff --git a/config/locales/simple_form.gl.yml b/config/locales/simple_form.gl.yml
index 61308bf48b7dc70f0ae0cdf81672e718f0f9fd39..0fdf3e74e2a366b4719e3b9070175afdccbedc07 100644
--- a/config/locales/simple_form.gl.yml
+++ b/config/locales/simple_form.gl.yml
@@ -13,7 +13,7 @@ gl:
         send_email_notification: A usuaria recibirá unha explicación sobre o que lle aconteceu a súa conta
         text_html: Optativo. Pode utilizar formato no toot. Pode <a href="%{path}">engadir avisos preestablecidos</a> para aforrar tempo
         type_html: Escolla que facer con <strong>%{acct}</strong>
-        warning_preset_id: Optativo. Poderá engadir texto personalizado ao final do preestablecido
+        warning_preset_id: Optativo. Poderá engadir texto persoalizado ao final do preestablecido
       defaults:
         autofollow: As persoas que se conectaron a través de un convite seguirana automáticamente a vostede
         avatar: PNG, GIF ou JPG.  Máximo %{size}. Será reducida a %{dimensions}px
@@ -21,18 +21,18 @@ gl:
         context: Un ou varios contextos onde se debería aplicar o filtro
         current_password: Por razóns de seguridade, introduce o contrasinal da conta actual
         current_username: Para confirmar, introduce o nome de usuaria da conta actual
-        digest: Enviar só tras un longo período de inactividade e só si recibeu algunha mensaxe persoal na súa ausencia
+        digest: Enviar só tras un longo período de inactividade e só se recibeu algunha mensaxe directa na súa ausencia
         discoverable: O directorio de perfil é outro xeito para que a túa conta alcance unha maior audiencia
-        email: Enviaráselle un correo-e de confirmación
+        email: Ímosche enviar un correo de confirmación
         fields: Pode ter ate 4 elementos no seu perfil mostrados como unha táboa
         header: PNG, GIF ou JPG. Máximo %{size}. Será reducida a %{dimensions}px
-        inbox_url: Copiar o URL desde a páxina de inicio do repetidor que quere utilizar
+        inbox_url: Copiar o URL desde a páxina de inicio do repetidor que queres utilizar
         irreversible: Os toots filtrados desaparecerán de xeito irreversible, incluso si despois se elimina o filtro
         locale: O idioma da interface de usuaria, correos e notificacións
-        locked: Require que vostede acepte as seguidoras de xeito manual
+        locked: Require que ti aceptes as seguidoras de xeito manual
         password: Utilice 8 caracteres ao menos
         phrase: Concordará independentemente das maiúsculas ou avisos de contido no toot
-        scopes: A que APIs terá acceso a aplicación. Si selecciona un ámbito de alto nivel, non precisa seleccionar elementos individuais.
+        scopes: A que APIs terá acceso a aplicación. Se selecciona un ámbito de alto nivel, non precisa seleccionar elementos individuais.
         setting_aggregate_reblogs: Non mostrar novas promocións de toots que foron promocionados recentemente (só afecta a promocións recén recibidas)
         setting_default_sensitive: Medios sensibles marcados como ocultos por defecto e móstranse cun click
         setting_display_media_default: Ocultar medios marcados como sensibles
@@ -67,7 +67,7 @@ gl:
           name: Etiqueta
           value: Contido
       account_alias:
-        acct: Xestina a conta antiga
+        acct: Xestiona a conta antiga
       account_migration:
         acct: Xestiona a nova conta
       account_warning_preset:
@@ -75,7 +75,7 @@ gl:
       admin_account_action:
         include_statuses: Incluír toots reportados no correo
         send_email_notification: Notificar a usuaria por correo-e
-        text: Aviso personalizado
+        text: Aviso persoalizado
         type: Acción
         types:
           disable: Desactivar
@@ -88,8 +88,8 @@ gl:
         avatar: Avatar
         bot: Esta conta é de un bot
         chosen_languages: Filtrar idiomas
-        confirm_new_password: Confirme o novo contrasinal
-        confirm_password: Confirme o contrasinal
+        confirm_new_password: Confirma o novo contrasinal
+        confirm_password: Confirma o contrasinal
         context: Contextos do filtro
         current_password: Contrasinal actual
         data: Datos
@@ -105,7 +105,7 @@ gl:
         locked: Protexer conta
         max_uses: Número máximo de usos
         new_password: Novo contrasinal
-        note: Sobre vostede
+        note: Acerca de ti
         otp_attempt: Código de Dobre-Factor
         password: Contrasinal
         phrase: Palabra chave ou frase
@@ -113,6 +113,7 @@ gl:
         setting_aggregate_reblogs: Agrupar promocións nas liñas temporais
         setting_auto_play_gif: Reprodución automática de GIFs animados
         setting_boost_modal: Pedir confirmación antes de promocionar
+        setting_crop_images: Recortar imaxes a 16x9 en toots non despregados
         setting_default_language: Idioma de publicación
         setting_default_privacy: Intimidade da publicación
         setting_default_sensitive: Marcar sempre multimedia como sensible
@@ -141,12 +142,12 @@ gl:
         name: Etiqueta
       interactions:
         must_be_follower: Bloquear as notificacións de non-seguidoras
-        must_be_following: Bloquea as notificacións de personas que non segue
-        must_be_following_dm: Bloquea as mensaxes directas de personas que non segue
+        must_be_following: Bloquea as notificacións de persoas que non segue
+        must_be_following_dm: Bloquea as mensaxes directas de persoas que non segue
       invite:
         comment: Comentar
       invite_request:
-        text: Por que quere unirse?
+        text: Por que queres unirte?
       notification_emails:
         digest: Enviar correos con resumos
         favourite: Enviar un correo cando alguén marca como favorita unha das súas publicacións
diff --git a/config/locales/simple_form.hi.yml b/config/locales/simple_form.hi.yml
new file mode 100644
index 0000000000000000000000000000000000000000..d758a5b5357d76effdf363eeb2c8e0dfb231c4aa
--- /dev/null
+++ b/config/locales/simple_form.hi.yml
@@ -0,0 +1 @@
+hi:
diff --git a/config/locales/simple_form.hu.yml b/config/locales/simple_form.hu.yml
index de1830f5d57703ff0b99726cf6d6ca396ed579b9..91ecd87468654bd42c507d83979ded624f71de18 100644
--- a/config/locales/simple_form.hu.yml
+++ b/config/locales/simple_form.hu.yml
@@ -113,6 +113,7 @@ hu:
         setting_aggregate_reblogs: Megtolások csoportosítása az idővonalakon
         setting_auto_play_gif: GIF-ek automatikus lejátszása
         setting_boost_modal: Megerősítés kérése megtolás előtt
+        setting_crop_images: Képek 16x9-re vágása nem kinyitott tülköknél
         setting_default_language: Tülkölés nyelve
         setting_default_privacy: Tülkök alapértelmezett láthatósága
         setting_default_sensitive: Minden médiafájl megjelölése szenzitívként
diff --git a/config/locales/simple_form.id.yml b/config/locales/simple_form.id.yml
index 54d10f21a66842ec1eb5e0d4d9135af8b014d902..d8b39a4d8897ed50821442b6d278ab0b833ee508 100644
--- a/config/locales/simple_form.id.yml
+++ b/config/locales/simple_form.id.yml
@@ -57,6 +57,8 @@ id:
         text: Ini akan membantu kami meninjau aplikasi Anda
       sessions:
         otp: Masukkan kode dua-faktor dari handphone atau gunakan kode pemulihan anda.
+      tag:
+        name: Anda hanya dapat mengubahnya ke huruf kecil/besar, misalnya, agar lebih mudah dibaca
       user:
         chosen_languages: Ketika dicentang, hanya toot dalam bahasa yang dipilih yang akan ditampilkan di linimasa publik
     labels:
@@ -111,6 +113,7 @@ id:
         setting_aggregate_reblogs: Boost grup di linimasa
         setting_auto_play_gif: Mainkan otomatis animasi GIF
         setting_boost_modal: Tampilkan dialog konfirmasi dialog sebelum boost
+        setting_crop_images: Potong gambar ke 16x9 pada toot yang tidak dibentangkan
         setting_default_language: Bahasa posting
         setting_default_privacy: Privasi postingan
         setting_default_sensitive: Selalu tandai media sebagai sensitif
diff --git a/config/locales/simple_form.is.yml b/config/locales/simple_form.is.yml
new file mode 100644
index 0000000000000000000000000000000000000000..c6a89fb4098f87773ce98ed220b84614cddc663f
--- /dev/null
+++ b/config/locales/simple_form.is.yml
@@ -0,0 +1,136 @@
+---
+is:
+  simple_form:
+    hints:
+      account_alias:
+        acct: Tilgreindu notandanafn@lén á notandaaðgangnum sem þú vilt flytjast frá
+      account_migration:
+        acct: Tilgreindu notandanafn@lén á notandaaðgangnum sem þú vilt flytjast til
+      admin_account_action:
+        type_html: Veldu hvað eigi að gera við <strong>%{acct}</strong>
+      defaults:
+        avatar: PNG, GIF eða JPG. Mest %{size}. Verður smækkað í %{dimensions}px
+        bot: Þessi aðgangur er aðallega til að framkvæma sjálfvirkar aðgerðir og gæti verið án þess að hann sé vaktaður reglulega
+        current_password: Í öryggisskyni skaltu setja inn lykiloðið fyrir þennan notandaaðgang
+        discoverable: Persónusniðamappan er önnur leið til að láta notandaaðganginn þinn ná til fleiri lesenda
+        email: Þú munt fá sendan staðfestingarpóst
+        header: PNG, GIF eða JPG. Mest %{size}. Verður smækkað í %{dimensions}px
+        locale: Tungumál notandaviðmótsins, tölvupósts og ýti-tilkynninga
+        locked: Krefst þess að þú samþykkir fylgjendur handvirkt
+        password: Notaðu minnst 8 stafi
+        setting_default_sensitive: Viðkvæmt myndefni er sjálfgefið falið og er hægt að birta með smelli
+        setting_display_media_default: Fela myndefni sem merkt er viðkvæmt
+        setting_display_media_hide_all: Alltaf fela allt myndefni
+        setting_display_media_show_all: Alltaf birta myndefni sem merkt er viðkvæmt
+        setting_noindex: Hefur áhrip á opinbera notandasniðið þitt og stöðusíður
+        setting_use_blurhash: Litstiglarnir byggja á litunum í földu myndunum, en gera öll smáatriði óskýr
+        setting_use_pending_items: Fela uppfærslur tímalínu þar til smellt er í stað þess að hún skruni streyminu sjálfvirkt
+      featured_tag:
+        name: 'Þú gætir viljað nota eitt af þessum:'
+      imports:
+        data: CSV-skrá sem flutt hefur verið út af öðrum Mastodon-þjóni
+      invite_request:
+        text: Þetta mun hjálpa okkur við að yfirfara umsóknina þína
+    labels:
+      account:
+        fields:
+          name: Skýring
+          value: Efni
+      account_alias:
+        acct: Auðkenni gamla aðgangsins
+      admin_account_action:
+        include_statuses: Innifela kærð tíst í tölvupóstinum
+        send_email_notification: Láta notanda vita með tölvupósti
+        text: Sérsniðin aðvörun
+        type: Aðgerð
+        types:
+          disable: Gera innskráningu óvirka
+          none: Gera ekkert
+          silence: Hylja
+          suspend: Setja í bið og eyða endanlega gögnum notandaaðgangsins
+        warning_preset_id: Nota forstillta aðvörun
+      defaults:
+        autofollow: Bjóða að fylgjast með aðgangnum þínum
+        avatar: Auðkennismynd
+        bot: Þetta er aðgangur fyrir róbót
+        chosen_languages: Sía tungumál
+        confirm_new_password: Staðfestu nýja lykilorðið
+        confirm_password: Staðfestu lykilorðið
+        context: Samhengi síu
+        current_password: Núverandi lykilorð
+        data: Gögn
+        discoverable: Hafa þennan aðgang með í notendaskránni
+        display_name: Birtingarnafn
+        email: Tölvupóstfang
+        expires_in: Rennur út eftir
+        fields: Lýsigögn notandasniðs
+        header: Síðuhaus
+        irreversible: Fella niður í staðinn fyrir að fela
+        locale: Tungumál viðmóts
+        locked: Læsa aðgangi
+        max_uses: Hámarksfjöldi afnota
+        new_password: Nýtt lykilorð
+        note: Æviágrip
+        otp_attempt: Teggja-þátta kóði
+        password: Lykilorð
+        phrase: Stikkorð eða frasi
+        setting_advanced_layout: Virkja ítarlegt vefviðmót
+        setting_aggregate_reblogs: Hópa endurbirtingar í tímalínum
+        setting_auto_play_gif: Spila sjálfkrafa GIF-hreyfimyndir
+        setting_boost_modal: Sýna staðfestingarglugga fyrir endurbirtingu
+        setting_crop_images: Utansníða myndir í ekki útfelldum tístum í 16x9
+        setting_default_language: Tungumál sem skrifað er á
+        setting_default_privacy: Gagnaleynd færslna
+        setting_default_sensitive: Alltaf merkja myndefni sem viðkvæmt
+        setting_delete_modal: Birta staðfestingarglugga áður en tísti er eytt
+        setting_display_media: Birting myndefnis
+        setting_display_media_default: Sjálfgefið
+        setting_display_media_hide_all: Fela allt
+        setting_display_media_show_all: Birta allt
+        setting_expand_spoilers: Alltaf útfella tíst sem eru með aðvörun vegna efnisins
+        setting_hide_network: Fela netkerfið þitt
+        setting_noindex: Afþakka atriðaskráningu í leitarvélum
+        setting_reduce_motion: Minnka hreyfingu í hreyfimyndum
+        setting_show_application: Upplýsa um forrit sem er til að senda tíst
+        setting_system_font_ui: Nota sjálfgefið letur kerfisins
+        setting_theme: Þema vefsvæðis
+        setting_trends: Birta það sem er efst á baugi í dag
+        setting_unfollow_modal: Birta staðfestingarglugga áður en hætt er að fylgjast með einhverjum
+        setting_use_blurhash: Sýna skæra litstigla í stað falins myndefnis
+        setting_use_pending_items: Rólegur hamur
+        severity: Mikilvægi
+        type: Tegund innflutnings
+        username: Notandanafn
+        username_or_email: Notandanafn eða tölvupóstfang
+        whole_word: Heil orð
+      featured_tag:
+        name: Myllumerki
+      interactions:
+        must_be_follower: Loka á tilkynningar frá þeim sem ekki eru fylgjendur
+        must_be_following: Loka á tilkynningar frá þeim sem þú fylgist ekki með
+        must_be_following_dm: Loka á bein skilaboð frá þeim sem þú fylgist ekki með
+      invite:
+        comment: Athugasemd
+      invite_request:
+        text: Hvers vegna viltu taka þátt?
+      notification_emails:
+        digest: Senda uppsafnaðan tölvupóst
+        favourite: Einhver setti stöðufærslu þína í eftirlæti
+        follow: Einhver fylgist núna með þér
+        follow_request: Einhver hefur beðið um að fylgjast með þér
+        mention: Einhver minntist á þig
+        pending_account: Nýr notandaaðgangur þarfnast yfirferðar
+        reblog: Einhver endurbirti stöðufærslu þína
+        report: Ný kæra hefur verið send inn
+        trending_tag: Óyfirfarið myllumerki er í umræðunni
+      tag:
+        listable: Leyfa þessu myllumerki að birtast í leitum og í persónusniðamöppunni
+        name: Myllumerki
+        trendable: Leyfa þessu myllumerki að birtast undir tilhneigingum
+        usable: Leyfa tístum að nota þetta myllumerki
+    'no': Nei
+    recommended: Mælt með
+    required:
+      mark: "*"
+      text: nauðsynlegt
+    'yes': Já
diff --git a/config/locales/simple_form.it.yml b/config/locales/simple_form.it.yml
index 21c86da9e11c379088b451dcc15498fc5e910411..3a0e1d265eb0d9dff5f4e14718d0885ea8299b4b 100644
--- a/config/locales/simple_form.it.yml
+++ b/config/locales/simple_form.it.yml
@@ -2,6 +2,10 @@
 it:
   simple_form:
     hints:
+      account_alias:
+        acct: Indica il nomeutente@dominio dell'account da cui vuoi trasferirti
+      account_migration:
+        acct: Indica il nomeutente@dominio dell'account al quale vuoi trasferirti
       account_warning_preset:
         text: Puoi usare la sintassi dei toot, come URL, hashtag e menzioni
       admin_account_action:
@@ -15,7 +19,10 @@ it:
         avatar: PNG, GIF o JPG. Al massimo %{size}. Verranno scalate a %{dimensions}px
         bot: Questo account esegue principalmente operazioni automatiche e potrebbe non essere tenuto sotto controllo da una persona
         context: Uno o più contesti nei quali il filtro dovrebbe essere applicato
+        current_password: Per motivi di sicurezza inserisci la password dell'account attuale
+        current_username: Per confermare, inserisci il nome utente dell'account attuale
         digest: Inviata solo dopo un lungo periodo di inattività e solo se hai ricevuto qualche messaggio personale in tua assenza
+        discoverable: La directory dei profili è un altro modo in cui il tuo account può raggiungere un pubblico più ampio
         email: Ti manderemo una email di conferma
         fields: Puoi avere fino a 4 voci visualizzate come una tabella sul tuo profilo
         header: PNG, GIF o JPG. Al massimo %{size}. Verranno scalate a %{dimensions}px
@@ -42,6 +49,8 @@ it:
         domain: Questo dominio potrà recuperare i dati da questo server e i dati in arrivo da esso verranno elaborati e memorizzati
       featured_tag:
         name: 'Eccone alcuni che potresti usare:'
+      form_challenge:
+        current_password: Stai entrando in un'area sicura
       imports:
         data: File CSV esportato da un altro server Mastodon
       invite_request:
@@ -57,6 +66,10 @@ it:
         fields:
           name: Etichetta
           value: Contenuto
+      account_alias:
+        acct: Handle del vecchio account
+      account_migration:
+        acct: Handle del nuovo account
       account_warning_preset:
         text: Testo preimpostato
       admin_account_action:
@@ -100,6 +113,7 @@ it:
         setting_aggregate_reblogs: Raggruppa condivisioni in timeline
         setting_auto_play_gif: Play automatico GIF animate
         setting_boost_modal: Mostra dialogo di conferma prima del boost
+        setting_crop_images: Ritaglia immagini in toot non espansi a 16x9
         setting_default_language: Lingua dei post
         setting_default_privacy: Privacy dei post
         setting_default_sensitive: Segna sempre i media come sensibili
diff --git a/config/locales/simple_form.ja.yml b/config/locales/simple_form.ja.yml
index b936c8e9a905da9e31f08014712a64f683466f28..f4222a97e820537fb30b1bdd977004d0932f0046 100644
--- a/config/locales/simple_form.ja.yml
+++ b/config/locales/simple_form.ja.yml
@@ -41,20 +41,36 @@ ja:
         setting_hide_network: フォローとフォロワーの情報がプロフィールページで見られないようにします
         setting_noindex: 公開プロフィールおよび各投稿ページに影響します
         setting_show_application: トゥートするのに使用したアプリがトゥートの詳細ビューに表示されるようになります
+        setting_show_follow_button_on_timeline: フォロー状態を確認し易くなり、素早くフォローリストを構築できます
+        setting_show_subscribe_button_on_timeline: 購読状態を確認し易くなり、素早く購読リストを構築できます
+        setting_show_target: 投稿対象と、フォロー・購読の対象を切り替える機能を有効にします
         setting_use_blurhash: ぼかしはメディアの色を元に生成されますが、細部は見えにくくなっています
         setting_use_pending_items: 新着があってもタイムラインを自動的にスクロールしないようにします
         username: あなたのユーザー名は %{domain} の中で重複していない必要があります
         whole_word: キーワードまたはフレーズが英数字のみの場合、単語全体と一致する場合のみ適用されるようになります
       domain_allow:
         domain: 登録するとこのサーバーからデータを受信したり、このドメインから受信するデータを処理して保存できるようになります
+      domain_subscribe:
+        domain: 購読したいサーバのドメイン名を指定します
+        exclude_reblog: ブーストされた投稿を購読から除外します
       featured_tag:
         name: 'これらを使うといいかもしれません:'
+      follow_tag:
+        name: フォローしたいハッシュタグを '#' 抜きで指定します
+      form_account_subscribe:
+        acct: 購読したいアカウントを username@domain 形式で指定します
+        show_reblogs: ブーストされた投稿を購読に含めます
       form_challenge:
         current_password: セキュリティ上重要なエリアにアクセスしています
       imports:
         data: 他の Mastodon サーバーからエクスポートしたCSVファイルを選択して下さい
       invite_request:
         text: このサーバーは現在承認制です。申請を承認する際に役立つメッセージを添えてください
+      keyword_subscribe:
+        exclude_keyword: カンマで区切って複数の除外するキーワードを並べます(または正規表現で指定します)
+        ignore_block: ドメイン全体を非表示にしたまま、キーワードの購読を優先することができます
+        keyword: カンマで区切って複数のキーワードを並べます(または正規表現で指定します)
+        name: オプションです
       sessions:
         otp: '携帯電話のアプリで生成された二段階認証コードを入力するか、リカバリーコードを使用してください:'
       tag:
@@ -113,6 +129,7 @@ ja:
         setting_aggregate_reblogs: ブーストをまとめる
         setting_auto_play_gif: アニメーションGIFを自動再生する
         setting_boost_modal: ブーストする前に確認ダイアログを表示する
+        setting_crop_images: トゥート詳細以外では画像を16:9に切り抜く
         setting_default_language: 投稿する言語
         setting_default_privacy: 投稿の公開範囲
         setting_default_sensitive: メディアを常に閲覧注意としてマークする
@@ -126,10 +143,14 @@ ja:
         setting_noindex: 検索エンジンによるインデックスを拒否する
         setting_reduce_motion: アニメーションの動きを減らす
         setting_show_application: 送信したアプリを開示する
+        setting_show_follow_button_on_timeline: タイムライン上にフォローボタンを表示する
+        setting_show_subscribe_button_on_timeline: タイムライン上に購読ボタンを表示する
+        setting_show_target: ターゲット機能を有効にする
         setting_system_font_ui: システムのデフォルトフォントを使う
         setting_theme: サイトテーマ
         setting_trends: 本日のトレンドタグを表示する
         setting_unfollow_modal: フォローを解除する前に確認ダイアログを表示する
+        setting_unsubscribe_modal: 購読を解除する前に確認ダイアログを表示する
         setting_use_blurhash: 非表示のメディアを色付きのぼかしで表示する
         setting_use_pending_items: 手動更新モード
         severity: 重大性
@@ -137,8 +158,26 @@ ja:
         username: ユーザー名
         username_or_email: ユーザー名またはメールアドレス
         whole_word: 単語全体にマッチ
+      domain_subscribe:
+        domain: ドメイン
+        exclude_reblog: ブースト除外
+        list_id: 対象タイムライン
+        reblog: ブースト
+        timeline: タイムライン
+      favourite_tag:
+        name: ハッシュタグ
       featured_tag:
         name: ハッシュタグ
+      follow_tag:
+        list_id: 対象タイムライン
+        name: ハッシュタグ
+        timeline: タイムライン
+      form_account_subscribe:
+        acct: アカウント
+        list_id: 対象タイムライン
+        reblog: ブースト
+        show_reblogs: ブーストを表示
+        timeline: タイムライン
       interactions:
         must_be_follower: フォロワー以外からの通知をブロック
         must_be_following: フォローしていないユーザーからの通知をブロック
@@ -147,15 +186,32 @@ ja:
         comment: コメント
       invite_request:
         text: 意気込みをお聞かせください
+      keyword_subscribe:
+        disabled: 一時的に購読を無効にする
+        exclude_keyword: 除外するキーワードまたは正規表現
+        ignorecase: 大文字と小文字を区別しない
+        ignore_block: ユーザーによるドメインブロックを無視する
+        keyword: キーワードまたは正規表現
+        list_id: 対象タイムライン
+        name: 名称
+        regexp: キーワードに正規表現を使う
+      keyword_subscribes:
+        disabled: 状態
+        ignorecase: 大小
+        ignore_block: ブロック
+        keyword: 設定値
+        name: 名称
+        regexp: 種別
+        timeline: タイムライン
       notification_emails:
         digest: タイムラインからピックアップしてメールで通知する
-        favourite: お気に入りに登録された時にメールで通知する
-        follow: フォローされた時にメールで通知する
-        follow_request: フォローリクエストを受けた時にメールで通知する
-        mention: 返信が来た時にメールで通知する
-        pending_account: 新しいアカウントの承認が必要な時にメールで通知する
-        reblog: トゥートがブーストされた時にメールで通知する
-        report: 通報を受けた時にメールで通知する
+        favourite: お気に入り登録された時
+        follow: フォローされた時
+        follow_request: フォローリクエストを受けた時
+        mention: 返信が来た時
+        pending_account: 新しいアカウントの承認が必要な時
+        reblog: トゥートがブーストされた時
+        report: 通報を受けた時
         trending_tag: 未審査のハッシュタグが人気の時にメールで通知する
       tag:
         listable: 検索とディレクトリへの使用を許可する
diff --git a/config/locales/simple_form.kab.yml b/config/locales/simple_form.kab.yml
new file mode 100644
index 0000000000000000000000000000000000000000..0a6417e36a903faf094a9bd182203cf922be6a97
--- /dev/null
+++ b/config/locales/simple_form.kab.yml
@@ -0,0 +1,62 @@
+---
+kab:
+  simple_form:
+    hints:
+      account_alias:
+        acct: Specify the username@domain of the account you want to move from
+      account_migration:
+        acct: Sekcem isem n umseqdac@taɣult n umiḍan wuɣur tebɣiḍ ad tuɣaleḍ
+      admin_account_action:
+        send_email_notification: Amseqdac ad t-id-yewweḍ usefhem ɣef wayen yeḍran akked umiḍan-is
+        type_html: Fren d acu ara txedmeḍ s <strong>%{acct}</strong>
+      defaults:
+        autofollow: Imdanen ara ijerrden s usnebgi-inek, ad k-ḍefṛen s wudem awurman
+        discoverable: Tabdert n yimaɣnuten d udem-nniḍen i umiḍan-ik akken ad yettwassen ugar
+        email: Ad n-teṭṭfeḍ imayl i usentem
+        irreversible: Tibarraḥin i tessazedgeḍ ad ttwakksent i lebda, ula ma tekkseḍ imsizdeg-nni ar zdat
+        locale: Tutlayt n ugrudem, imaylen d tilɣa
+        password: Seqdec ma drus 8 n yisekkilen
+        setting_hide_network: Wid i teṭṭafaṛeḍ d wid i k-yeṭṭafaṛen ur d-ttwaseknen ara deg umaɣnu-inek
+        username: Isem-ik n umseqdac ad yili d ayiwen, ulac am netta deg %{domain}
+      featured_tag:
+        name: 'Ahat ad tebɣuḍ ad tesqedceḍ yiwen gar-asen:'
+      imports:
+        data: Afaylu CSV yekka-d seg uqeddac-nniḍen Mastudun
+    labels:
+      account:
+        fields:
+          value: Agbur
+      admin_account_action:
+        types:
+          silence: Sgugem
+      defaults:
+        bot: Wagi d amiḍan aṛubut
+        chosen_languages: Sizdeg tutlayin
+        confirm_new_password: Sentem awal uffir amaynut
+        confirm_password: Sentem awal uffir
+        current_password: Awal uffir n tura
+        data: Isefka
+        display_name: Isem ara d-yettwaskanen
+        email: Tansa imayl
+        header: Ixef
+        locale: Tutlayt n ugrudem
+        new_password: Awal uffir amaynut
+        password: Awal uffir
+        setting_display_media_default: Akk-a kan
+        setting_display_media_hide_all: Ffer kullec
+        setting_display_media_show_all: Sken kullec
+        setting_hide_network: Ffer azetta-k·m
+        username: Isem n useqdac
+        username_or_email: Isem n useqdac neγ imal
+        whole_word: Awal akk
+      featured_tag:
+        name: Ahacá¹­ag
+      invite:
+        comment: Awennit
+      invite_request:
+        text: Acimi tebɣiḍ ad ternuḍ iman-ik?
+    'no': Ala
+    required:
+      mark: "*"
+      text: ilaq
+    'yes': Ih
diff --git a/config/locales/simple_form.kk.yml b/config/locales/simple_form.kk.yml
index 1dcc9b127cff7008730fd51cf49664fb85866d18..544c684a628eafc92a82b41b0207cd4ec02918b7 100644
--- a/config/locales/simple_form.kk.yml
+++ b/config/locales/simple_form.kk.yml
@@ -1 +1,171 @@
+---
 kk:
+  simple_form:
+    hints:
+      account_alias:
+        acct: Specify the username@domain of the account you want to move from
+      account_migration:
+        acct: Specify the username@domain of the account you want to move to
+      account_warning_preset:
+        text: You can use toot syntax, such as URLs, hashtags and mentions
+      admin_account_action:
+        include_statuses: The user will see which toots have caused the moderation action or warning
+        send_email_notification: The user will receive an explanation of what happened with their account
+        text_html: Optional. You can use toot syntax. You can <a href="%{path}">add warning presets</a> to save time
+        type_html: Choose what to do with <strong>%{acct}</strong>
+        warning_preset_id: Optional. You can still add custom text to end of the preset
+      defaults:
+        autofollow: People who sign up through the invite will automatically follow you
+        avatar: PNG, GIF or JPG. At most %{size}. Will be downscaled to %{dimensions}px
+        bot: This account mainly performs automated actions and might not be monitored
+        context: One or multiple contexts where the filter should apply
+        current_password: For security purposes please enter the password of the current account
+        current_username: To confirm, please enter the username of the current account
+        digest: Only sent after a long period of inactivity and only if you have received any personal messages in your absence
+        discoverable: The profile directory is another way by which your account can reach a wider audience
+        email: You will be sent a confirmation e-mail
+        fields: You can have up to 4 items displayed as a table on your profile
+        header: PNG, GIF or JPG. At most %{size}. Will be downscaled to %{dimensions}px
+        inbox_url: Copy the URL from the frontpage of the relay you want to use
+        irreversible: Filtered toots will disappear irreversibly, even if filter is later removed
+        locale: The language of the user interface, e-mails and push notifications
+        locked: Requires you to manually approve followers
+        password: Use at least 8 characters
+        phrase: Will be matched regardless of casing in text or content warning of a toot
+        scopes: Which APIs the application will be allowed to access. If you select a top-level scope, you don't need to select individual ones.
+        setting_aggregate_reblogs: Do not show new boosts for toots that have been recently boosted (only affects newly-received boosts)
+        setting_default_sensitive: Sensitive media is hidden by default and can be revealed with a click
+        setting_display_media_default: Hide media marked as sensitive
+        setting_display_media_hide_all: Always hide all media
+        setting_display_media_show_all: Always show media marked as sensitive
+        setting_hide_network: Who you follow and who follows you will not be shown on your profile
+        setting_noindex: Affects your public profile and status pages
+        setting_show_application: The application you use to toot will be displayed in the detailed view of your toots
+        setting_use_blurhash: Gradients are based on the colors of the hidden visuals but obfuscate any details
+        setting_use_pending_items: Hide timeline updates behind a click instead of automatically scrolling the feed
+        username: Your username will be unique on %{domain}
+        whole_word: When the keyword or phrase is alphanumeric only, it will only be applied if it matches the whole word
+      domain_allow:
+        domain: This domain will be able to fetch data from this server and incoming data from it will be processed and stored
+      featured_tag:
+        name: 'You might want to use one of these:'
+      form_challenge:
+        current_password: You are entering a secure area
+      imports:
+        data: CSV file exported from another Mastodon server
+      invite_request:
+        text: This will help us review your application
+      sessions:
+        otp: 'Enter the two-factor code generated by your phone app or use one of your recovery codes:'
+      tag:
+        name: You can only change the casing of the letters, for example, to make it more readable
+      user:
+        chosen_languages: When checked, only toots in selected languages will be displayed in public timelines
+    labels:
+      account:
+        fields:
+          name: Label
+          value: Мазмұн
+      account_alias:
+        acct: Handle of the old account
+      account_migration:
+        acct: Handle of the new account
+      account_warning_preset:
+        text: Алдын ала белгіленген мәтін
+      admin_account_action:
+        include_statuses: Include reported toots in the e-mail
+        send_email_notification: Notify the user per e-mail
+        text: Жеке ескерту
+        type: Әрекет
+        types:
+          disable: Ажырату
+          none: Ештеңе істемеу
+          silence: Үнсіз
+          suspend: Suspend and irreversibly delete account data
+        warning_preset_id: Use a warning preset
+      defaults:
+        autofollow: Жазылуға шақыру
+        avatar: Аватар
+        bot: Бұл бот аккаунт
+        chosen_languages: Тіл фильтрі
+        confirm_new_password: Жаңа құпиясөзді құптау
+        confirm_password: Құпиясөзді құптау
+        context: Фильтр контекстері
+        current_password: Ағымдағы кілтсөз
+        data: Дата
+        discoverable: Бұл аккаунтты каталогта көрсету
+        display_name: Атын көрсет
+        email: Эл. пошта мекен жайы
+        expires_in: Аяқталу мерзімі
+        fields: Профиль метадатасы
+        header: Басы
+        inbox_url: URL of the relay inbox
+        irreversible: Drop instead of hide
+        locale: Интерфейс тілі
+        locked: Аккаунтты құлыптау
+        max_uses: Максимум қолданушы саны
+        new_password: Жаңа құпиясөз
+        note: Био
+        otp_attempt: Екі факторлы код
+        password: Құпиясөз
+        phrase: Кілтсөз немесе фраза
+        setting_advanced_layout: Кеңейтілген веб-интерфейс қосу
+        setting_aggregate_reblogs: Group boosts in timelines
+        setting_auto_play_gif: GIF анимацияларды бірден қосу
+        setting_boost_modal: Бөлісу алдында растау диалогын көрсету
+        setting_crop_images: Кеңейтілмеген жазбаларда суреттерді 16х9 көлеміне кес
+        setting_default_language: Жазба тілі
+        setting_default_privacy: Жазба құпиялылығы
+        setting_default_sensitive: Медиаларды әрдайым нәзік ретінде белгілеу
+        setting_delete_modal: Жазбаны өшірместен бұрын растау диалогын көрсету
+        setting_display_media: Медианы көрсету
+        setting_display_media_default: Əдепкі
+        setting_display_media_hide_all: Бәрін жасыру
+        setting_display_media_show_all: Бәрін көрсет
+        setting_expand_spoilers: Мазмұн ескертуімен белгіленген жазбаларды кеңейту
+        setting_hide_network: Желіні жасыру
+        setting_noindex: Opt-out of search engine indexing
+        setting_reduce_motion: Reduce motion in animations
+        setting_show_application: Disclose application used to send toots
+        setting_system_font_ui: Жүйенің әдепкі қарпі
+        setting_theme: Сайт темасы
+        setting_trends: Show today's trends
+        setting_unfollow_modal: Анфоллоудан бұрын растау диалогын көрсету
+        setting_use_blurhash: Жасырын медиаға арналған түрлі-түсті градиенттерді көрсетіңіз
+        setting_use_pending_items: Баяу режим
+        severity: Маңыздылығы
+        type: Импорт түрі
+        username: Логин
+        username_or_email: Логин немесе Email
+        whole_word: Бүкіл апта
+      featured_tag:
+        name: Хэштег
+      interactions:
+        must_be_follower: Оқырман еместерден ескертпе әкелме
+        must_be_following: Жазылмаған адамдардан ескертпе әкелме
+        must_be_following_dm: Жазылмаған адамдардан хат әкелме
+      invite:
+        comment: Пікір
+      invite_request:
+        text: Неліктен қосылғыңыз келеді?
+      notification_emails:
+        digest: Дайджест e-mail жібер
+        favourite: Біреу жазбамды ұнатқан кезде хат жібер
+        follow: Біреу жазылған кезде хат жібер
+        follow_request: Біреу жазылуға сұранған кезде хат жібер
+        mention: Біреу мен туралы жазған кезде хат жібер
+        pending_account: Жаңа аккаунт құптау күткен кезде хат жібер
+        reblog: Жазбамды біреу бөліскен кезде хат жібер
+        report: Жаңа шағым түскен кезде хат жібер
+        trending_tag: Қаралмаған хештег шыққан кезде хат жібер
+      tag:
+        listable: Бұл хештегті барлық жерде көрсетуге рұқсат бер
+        name: Хэштег
+        trendable: Хештегті трендтерде көрсетуге рұқсат бер
+        usable: Бұл хештегті қолдануға рұқсат бер
+    'no': Жоқ
+    recommended: Рекоменделген
+    required:
+      mark: "*"
+      text: міндетті
+    'yes': Иә
diff --git a/config/locales/simple_form.kn.yml b/config/locales/simple_form.kn.yml
new file mode 100644
index 0000000000000000000000000000000000000000..d094088d881ae4c57c4e2fa08b5d098293b0efde
--- /dev/null
+++ b/config/locales/simple_form.kn.yml
@@ -0,0 +1 @@
+kn:
diff --git a/config/locales/simple_form.ko.yml b/config/locales/simple_form.ko.yml
index 28af44cbb3b8b1aa76678cdf3e988e691a497ac3..aadec0cac16f9b7efa7f04ee94edc7b2aef705d5 100644
--- a/config/locales/simple_form.ko.yml
+++ b/config/locales/simple_form.ko.yml
@@ -22,7 +22,7 @@ ko:
         current_password: 보안을 위해 현재 계정의 암호를 입력해주세요
         current_username: 확인을 위해, 현재 계정의 사용자명을 입력해주세요
         digest: 오랫동안 활동하지 않았을 때 받은 멘션들에 대한 요약 받기
-        discoverable: 프로필 디렉터리는 내 계정이 더 많은 관심을 갖게 할 수 있는 다른 방법입니다
+        discoverable: 프로필 디렉토리는 내 계정이 더 많은 관심을 갖게 할 수 있는 다른 방법입니다
         email: 당신은 확인 메일을 받게 됩니다
         fields: 당신의 프로파일에 최대 4개까지 표 형식으로 나타낼 수 있습니다
         header: PNG, GIF 혹은 JPG. 최대 %{size}. %{dimensions}px로 축소 됨
@@ -113,6 +113,7 @@ ko:
         setting_aggregate_reblogs: 타임라인의 부스트를 그룹화
         setting_auto_play_gif: 애니메이션 GIF를 자동 재생
         setting_boost_modal: 부스트 전 확인 창을 표시
+        setting_crop_images: 확장되지 않은 툿의 이미지를 16x9로 자르기
         setting_default_language: 게시물 언어
         setting_default_privacy: 툿 프라이버시
         setting_default_sensitive: 미디어를 언제나 민감한 컨텐츠로 설정
diff --git a/config/locales/simple_form.ml.yml b/config/locales/simple_form.ml.yml
new file mode 100644
index 0000000000000000000000000000000000000000..df04a15e85ae23f2b6589ed992bc5e71baf889df
--- /dev/null
+++ b/config/locales/simple_form.ml.yml
@@ -0,0 +1,16 @@
+---
+ml:
+  simple_form:
+    hints:
+      admin_account_action:
+        type_html: "<strong>%{acct}</strong> നെ എന്ത് ചെയ്യണമെന്ന് തീരുമാനിക്കുക"
+      defaults:
+        password: 8 അക്ഷരങ്ങൾ എങ്കിലും ഉപയോഗിക്കുക
+    labels:
+      account:
+        fields:
+          value: ഉള്ളടക്കം
+      account_alias:
+        acct: പഴയ അംഗത്വത്തിലേക്കുള്ള പിടി
+      account_migration:
+        acct: പുതിയ അംഗത്വത്തിലേക്കുള്ള പിടി
diff --git a/config/locales/simple_form.mr.yml b/config/locales/simple_form.mr.yml
new file mode 100644
index 0000000000000000000000000000000000000000..fe1639c6a39e69e289af5356c4ec41e9f12b802b
--- /dev/null
+++ b/config/locales/simple_form.mr.yml
@@ -0,0 +1 @@
+mr:
diff --git a/config/locales/simple_form.nl.yml b/config/locales/simple_form.nl.yml
index 77445b0cbca8c0c66d697a105136aec3f3afe0ee..2fe515f55ca9f4506ccdcee04cb3aa0fc28e5142 100644
--- a/config/locales/simple_form.nl.yml
+++ b/config/locales/simple_form.nl.yml
@@ -78,7 +78,7 @@ nl:
         text: Aangepaste waarschuwing
         type: Actie
         types:
-          disable: Uitschakelen
+          disable: Inloggen uitschakelen
           none: Niets doen
           silence: Negeren
           suspend: Opschorten en onomkeerbaar accountgegevens verwijderen
@@ -113,6 +113,7 @@ nl:
         setting_aggregate_reblogs: Boosts in tijdlijnen groeperen
         setting_auto_play_gif: Speel geanimeerde GIF's automatisch af
         setting_boost_modal: Vraag voor het boosten van een toot een bevestiging
+        setting_crop_images: Afbeeldingen tot 16x9 besnijden in niet uitgebreide toots
         setting_default_language: Taal van jouw toots
         setting_default_privacy: Standaardzichtbaarheid van jouw toots
         setting_default_sensitive: Media altijd als gevoelig markeren
@@ -149,14 +150,14 @@ nl:
         text: Waarom wil jij je aanmelden?
       notification_emails:
         digest: Periodiek e-mails met een samenvatting versturen
-        favourite: Een e-mail versturen wanneer iemand jouw toot aan hun favorieten heeft toegevoegd
-        follow: Een e-mail versturen wanneer iemand jou volgt
-        follow_request: Een e-mail versturen wanneer iemand jou wil volgen
-        mention: Een e-mail versturen wanneer iemand jou vermeld
-        pending_account: Een e-mail verzenden wanneer een nieuw account moet worden beoordeeld
-        reblog: Een e-mail versturen wanneer iemand jouw toot heeft geboost
-        report: Verstuur een e-mail wanneer een nieuw rapportage is ingediend
-        trending_tag: Een e-mail versturen wanneer een nog niet beoordeelde hashtag trending is
+        favourite: Wanneer iemand jouw toot aan hun favorieten heeft toegevoegd
+        follow: Wanneer iemand jou is gaan volgen
+        follow_request: Wanneer iemand jou wil volgen
+        mention: Wanneer iemand jou heeft vermeld
+        pending_account: Wanneer een nieuw account moet worden beoordeeld
+        reblog: Wanneer iemand jouw toot heeft geboost
+        report: Bij het indienen van een nieuwe rapportage
+        trending_tag: Wanneer een nog niet beoordeelde hashtag trending is
       tag:
         listable: Toestaan dat deze hashtag in zoekopdrachten en in de gebruikersgids te zien valt
         name: Hashtag
diff --git a/config/locales/simple_form.nn.yml b/config/locales/simple_form.nn.yml
index 777f4e600f65daa6a550f2cf0f04551a49cf4fcd..3016db14d4fcbc5ca0a48ea7842c1979349969bf 100644
--- a/config/locales/simple_form.nn.yml
+++ b/config/locales/simple_form.nn.yml
@@ -1 +1,145 @@
+---
 nn:
+  simple_form:
+    hints:
+      admin_account_action:
+        include_statuses: Brukeren vil se hvilke tuter som forårsaket moderator-handlingen eller -advarselen
+        type_html: Velg hva du vil gjøre med <strong>%{acct}</strong>
+        warning_preset_id: Valfritt. Du kan leggja inn eigen tekst på enden av føreoppsettet
+      defaults:
+        autofollow: Folk som lager en konto gjennom invitasjonen, vil automatisk følge deg
+        avatar: PNG, GIF eller JPG. Maksimalt %{size}. Vil bli nedskalert til %{dimensions}px
+        bot: Denne kontoen utfører i hovedsak automatiserte handlinger og blir kanskje ikke holdt øye med
+        current_username: Skriv inn brukarnamnet til den noverande kontoen for å stadfesta
+        digest: Kun sendt etter en lang periode med inaktivitet og bare dersom du har mottatt noen personlige meldinger mens du var borte
+        discoverable: Profilmappen er en annen måte for kontoen din å nå et bredere publikum på
+        email: Du får snart ein stadfestings-e-post
+        fields: Du kan ha opptil 4 gjenstander vist som en tabell på profilsiden din
+        header: PNG, GIF eller JPG. Maksimalt %{size}. Vil bli nedskalert til %{dimensions}px
+        irreversible: Filtrerte tuter vil ugjenkallelig forsvinne, selv om filteret senere blir fjernet
+        locked: Krever at du manuelt godkjenner følgere
+        password: Nytt minst 8 teikn
+        phrase: Vil bli samsvart med, uansett bruk av store/små bokstaver eller innholdsadvarselen til en tut
+        scopes: Hvilke API-er programmet vil bli gitt tilgang til. Dersom du velger et toppnivåomfang, trenger du ikke å velge individuelle API-er.
+        setting_aggregate_reblogs: Ikke vis nye fremhevinger for tuter som nylig har blitt fremhever (PÃ¥virker kun nylige fremhevinger)
+        setting_default_sensitive: Sensitivt media blir skjult som standard og kan bli vist med et klikk
+        setting_display_media_default: Skjul media som er merket som sensitivt
+        setting_display_media_hide_all: Alltid skjul alt media
+        setting_display_media_show_all: Alltid vis media som er merket som sensitivt
+        setting_hide_network: Kven du fylgjer og kven som fylgjer deg vert ikkje vist på profilen din
+        setting_noindex: PÃ¥virker din offentlige profil og statussider
+        setting_show_application: Appen du brukte til å tute vil bli vist i den detaljerte visningen til tutene dine
+        setting_use_blurhash: Gradientene er basert på fargene til de skjulte visualitetene, men gjør alle detaljer uklare
+        setting_use_pending_items: Skjul tidslinjeoppdateringer bak et klikk, i stedet for å automatisk la strømmen skrolle
+        username: Brukarnamnet ditt vert unikt på %{domain}
+        whole_word: Når søkeordet eller setningen bare er alfanumerisk, aktiveres det bare hvis det samsvarer med hele ordet
+      featured_tag:
+        name: 'Kanskje du vil nytta ein av desse:'
+      form_challenge:
+        current_password: Du går inn i et sikkert område
+      imports:
+        data: CSV-fil eksportert frå ein annan Mastodon-tenar
+      invite_request:
+        text: Dette kjem til å hjelpa oss med å gå gjennom søknaden din
+      sessions:
+        otp: Angi tofaktorkoden fra din telefon eller bruk en av dine gjenopprettingskoder.
+      user:
+        chosen_languages: Hvis noen av dem er valgt, vil kun tuter i de valgte språkene bli vist i de offentlige tidslinjene
+    labels:
+      account:
+        fields:
+          name: Merkelapp
+          value: Innhald
+      account_warning_preset:
+        text: Føreåtstekst
+      admin_account_action:
+        send_email_notification: Varsl brukaren med e-post
+        text: Eigen åtvaring
+        type: Handling
+        types:
+          disable: Slå av innlogging
+          none: Gjer inkje
+          silence: Togn
+          suspend: Utvis og slett kontodata for godt
+        warning_preset_id: Bruk åtvaringsoppsett
+      defaults:
+        autofollow: Bed om å fylgja kontoen din
+        avatar: Bilete
+        bot: Dette er ein bot-konto
+        chosen_languages: Filtermål
+        confirm_new_password: Stadfest nytt passord
+        confirm_password: Stadfest passord
+        context: Filtrer kontekstar
+        current_password: Noverande passord
+        data: Data
+        discoverable: Før opp denne kontoen i mappen
+        display_name: Synleg namn
+        email: E-post-adresse
+        expires_in: Vert ugyldig etter
+        fields: Profilmetadata
+        header: Overskrift
+        locale: Språk
+        locked: LÃ¥s konto
+        max_uses: Grense på brukartal
+        new_password: Nytt passord
+        note: Om meg
+        otp_attempt: Tostegskode
+        password: Passord
+        phrase: Nykelord eller frase
+        setting_advanced_layout: Skru på det avanserte nettgrensesnittet
+        setting_aggregate_reblogs: Gruppefremhevinger i tidslinjer
+        setting_auto_play_gif: Spel av animerte GIF-ar automatisk
+        setting_boost_modal: Vis bekreftelse før fremheving
+        setting_crop_images: Klipp bilder i ikke-utvidede tuter til 16:9
+        setting_default_language: Språk på innlegg
+        setting_default_privacy: Privatliv
+        setting_default_sensitive: Marker alltid media som sensitivt
+        setting_delete_modal: Vis bekreftelse før du sletter en tut
+        setting_display_media: Medievisning
+        setting_display_media_default: Standard
+        setting_display_media_hide_all: Gøym alle
+        setting_display_media_show_all: Vis alle
+        setting_expand_spoilers: Utvid alltid tuter som er merket med innholdsadvarsler
+        setting_hide_network: Skjul nettverket ditt
+        setting_noindex: Avmeld fra søkemotorindeksering
+        setting_reduce_motion: Reduser bevegelser i animasjoner
+        setting_show_application: Skryt av appen som ble brukt til å sende tuter
+        setting_system_font_ui: Bruk standardskrifttypen på systemet
+        setting_theme: Sidetema
+        setting_trends: Vis kva som er populært i dag
+        setting_unfollow_modal: Vis bekreftelse før du slutter å følge noen
+        setting_use_blurhash: Vis fargerike gradienter for skjulte media
+        setting_use_pending_items: Saktemodus
+        severity: Alvorsgrad
+        type: Importtype
+        username: Brukarnamn
+        username_or_email: Brukarnman eller E-post
+        whole_word: Heilt ord
+      featured_tag:
+        name: Emneknagg
+      interactions:
+        must_be_follower: Blokker varslinger fra ikke-følgere
+        must_be_following: Blokker varslinger fra personer du ikke følger
+        must_be_following_dm: Blokker direkte meldinger fra personer du ikke følger
+      invite:
+        comment: Kommentar
+      invite_request:
+        text: Kvifor vil du verta med?
+      notification_emails:
+        digest: Send samandrag på e-post
+        favourite: Send e-post når nokon merkjer statusen din som favoritt
+        follow: Send e-post når nokon fylgjer deg
+        follow_request: Send e-post når nokon spør om å fylgja deg
+        mention: Send e-post når nokon nemner deg
+        pending_account: Send e-post når ein ny konto treng gjennomgang
+        reblog: Send e-post når nokon framhevar statusen din
+        report: Send e-post når nokon rapporterer noko
+      tag:
+        name: Emneknagg
+        usable: Gje tut lov til å nytta denne emneknaggen
+    'no': Nei
+    recommended: Tilrådt
+    required:
+      mark: "*"
+      text: obligatorisk
+    'yes': Ja
diff --git a/config/locales/simple_form.no.yml b/config/locales/simple_form.no.yml
index 9393e37d12b77009b92ff8b99a6a0c21e64cb2f5..fb158e9e3620ef25d50010336ee5c22afc13ca66 100644
--- a/config/locales/simple_form.no.yml
+++ b/config/locales/simple_form.no.yml
@@ -2,24 +2,76 @@
 'no':
   simple_form:
     hints:
+      admin_account_action:
+        include_statuses: Brukeren vil se hvilke tuter som forårsaket moderator-handlingen eller -advarselen
+        type_html: Velg hva du vil gjøre med <strong>%{acct}</strong>
       defaults:
+        autofollow: Folk som lager en konto gjennom invitasjonen, vil automatisk følge deg
         avatar: PNG, GIF eller JPG. Maksimalt %{size}. Vil bli nedskalert til %{dimensions}px
+        bot: Denne kontoen utfører i hovedsak automatiserte handlinger og blir kanskje ikke holdt øye med
+        current_username: For å bekrefte, vennligst skriv inn brukernavnet til den nåværende kontoen
         digest: Kun sendt etter en lang periode med inaktivitet og bare dersom du har mottatt noen personlige meldinger mens du var borte
+        discoverable: Profilmappen er en annen måte for kontoen din å nå et bredere publikum på
+        email: Du vil bli tilsendt en bekreftelses-E-post
+        fields: Du kan ha opptil 4 gjenstander vist som en tabell på profilsiden din
         header: PNG, GIF eller JPG. Maksimalt %{size}. Vil bli nedskalert til %{dimensions}px
+        irreversible: Filtrerte tuter vil ugjenkallelig forsvinne, selv om filteret senere blir fjernet
         locked: Krever at du manuelt godkjenner følgere
+        password: Bruk minst 8 tegn
+        phrase: Vil bli samsvart med, uansett bruk av store/små bokstaver eller innholdsadvarselen til en tut
+        scopes: Hvilke API-er programmet vil bli gitt tilgang til. Dersom du velger et toppnivåomfang, trenger du ikke å velge individuelle API-er.
+        setting_aggregate_reblogs: Ikke vis nye fremhevinger for tuter som nylig har blitt fremhever (PÃ¥virker kun nylige fremhevinger)
+        setting_default_sensitive: Sensitivt media blir skjult som standard og kan bli vist med et klikk
+        setting_display_media_default: Skjul media som er merket som sensitivt
+        setting_display_media_hide_all: Skjul alltid all media
+        setting_display_media_show_all: Alltid vis media som er merket som sensitivt
+        setting_hide_network: De som du følger, og de som følger deg, vil ikke bli vist på profilen din
         setting_noindex: PÃ¥virker din offentlige profil og statussider
+        setting_show_application: Appen du brukte til å tute vil bli vist i den detaljerte visningen til tutene dine
+        setting_use_blurhash: Gradientene er basert på fargene til de skjulte visualitetene, men gjør alle detaljer uklare
+        setting_use_pending_items: Skjul tidslinjeoppdateringer bak et klikk, i stedet for å automatisk la strømmen skrolle
+        username: Brukernavnet ditt vil være unikt på %{domain}
+        whole_word: Når søkeordet eller setningen bare er alfanumerisk, aktiveres det bare hvis det samsvarer med hele ordet
+      featured_tag:
+        name: 'Du vil kanskje ønske å bruke en av disse:'
+      form_challenge:
+        current_password: Du går inn i et sikkert område
       imports:
         data: CSV-fil eksportert fra en annen Mastodon-instans
       sessions:
         otp: Angi tofaktorkoden fra din telefon eller bruk en av dine gjenopprettingskoder.
+      user:
+        chosen_languages: Hvis noen av dem er valgt, vil kun tuter i de valgte språkene bli vist i de offentlige tidslinjene
     labels:
+      account:
+        fields:
+          name: Etikett
+          value: Innhold
+      account_warning_preset:
+        text: Forhåndsvalgt tekst
+      admin_account_action:
+        send_email_notification: Si ifra til brukeren over E-post
+        text: Tilpasset advarsel
+        type: Handling
+        types:
+          disable: Deaktiver pålogging
+          none: Ikke gjør noe
+          silence: Stilne
       defaults:
+        autofollow: Inviter til å følge kontoen din
+        avatar: Profilbilde
+        bot: Dette er en botkonto
+        chosen_languages: Filtrer språk
         confirm_new_password: Bekreft nytt passord
         confirm_password: Bekreft passord
+        context: Filtersammenhenger
         current_password: Nåværende passord
+        data: Data
+        discoverable: Før opp denne kontoen i mappen
         display_name: Visningsnavn
         email: E-postadresse
         expires_in: Utløper etter
+        fields: Profilmetadata
         header: Overskrift
         locale: Språk
         locked: LÃ¥s konto
@@ -28,23 +80,46 @@
         note: Om meg
         otp_attempt: Tofaktorkode
         password: Passord
+        phrase: Nøkkelord eller frase
+        setting_advanced_layout: Skru på det avanserte nettgrensesnittet
+        setting_aggregate_reblogs: Gruppefremhevinger i tidslinjer
         setting_auto_play_gif: Autoavspill animert GIF-filer
         setting_boost_modal: Vis bekreftelse før fremheving
+        setting_crop_images: Klipp bilder i ikke-utvidede tuter til 16:9
+        setting_default_language: Innleggsspråk
         setting_default_privacy: Postintegritet
         setting_default_sensitive: Marker alltid media som sensitivt
         setting_delete_modal: Vis bekreftelse før du sletter en tut
-        setting_noindex: Ikke delta i søkemotorsindeksering
+        setting_display_media: Mediavisning
+        setting_display_media_default: Standard
+        setting_display_media_hide_all: Skjul alle
+        setting_display_media_show_all: Vis alle
+        setting_expand_spoilers: Utvid alltid tuter som er merket med innholdsadvarsler
+        setting_hide_network: Skjul nettverket ditt
+        setting_noindex: Avmeld fra søkemotorindeksering
         setting_reduce_motion: Reduser bevegelser i animasjoner
+        setting_show_application: Skryt av appen som ble brukt til å sende tuter
         setting_system_font_ui: Bruk systemets standardfont
         setting_theme: Sidens tema
+        setting_trends: Vis dagens trender
         setting_unfollow_modal: Vis bekreftelse før du slutter å følge noen
+        setting_use_blurhash: Vis fargerike gradienter for skjulte media
+        setting_use_pending_items: Saktemodus
         severity: Alvorlighetsgrad
         type: Importeringstype
         username: Brukernavn
+        username_or_email: Brukernavn eller E-post
+        whole_word: Hele ord
+      featured_tag:
+        name: Emneknagg
       interactions:
         must_be_follower: Blokker varslinger fra ikke-følgere
         must_be_following: Blokker varslinger fra personer du ikke følger
         must_be_following_dm: Blokker direkte meldinger fra personer du ikke følger
+      invite:
+        comment: Kommentar
+      invite_request:
+        text: Hvorfor vil du bli med?
       notification_emails:
         digest: Send sammendrag på e-post
         favourite: Send e-post når noen setter din status som favoritt
@@ -52,7 +127,12 @@
         follow_request: Send e-post når noen ber om å få følge deg
         mention: Send e-post når noen nevner deg
         reblog: Send e-post når noen fremhever din status
+      tag:
+        name: Emneknagg
+        usable: Tillat tuter å bruke denne emneknaggen
     'no': Nei
+    recommended: Anbefalt
     required:
+      mark: "*"
       text: obligatorisk
     'yes': Ja
diff --git a/config/locales/simple_form.oc.yml b/config/locales/simple_form.oc.yml
index 59651d9de3565e7e2c2aabd12b74bb50cb832ecd..e692d2d645a24dce9766281e7eed48f1b9bab5fa 100644
--- a/config/locales/simple_form.oc.yml
+++ b/config/locales/simple_form.oc.yml
@@ -113,6 +113,7 @@ oc:
         setting_aggregate_reblogs: Agropar los partatges dins lo flux d’actualitat
         setting_auto_play_gif: Lectura automatica dels GIFS animats
         setting_boost_modal: Mostrar una fenèstra de confirmacion abans de partejar un estatut
+        setting_crop_images: Retalhar los imatges dins los tuts pas desplegats a 16x9
         setting_default_language: Lenga de publicacion
         setting_default_privacy: Confidencialitat dels tuts
         setting_default_sensitive: Totjorn marcar los mèdias coma sensibles
diff --git a/config/locales/simple_form.pt-BR.yml b/config/locales/simple_form.pt-BR.yml
index 72f179d5238af5affcbc180a482355af9c46b882..13eed67188b2d9152675981e33e62dd95a06774c 100644
--- a/config/locales/simple_form.pt-BR.yml
+++ b/config/locales/simple_form.pt-BR.yml
@@ -3,123 +3,137 @@ pt-BR:
   simple_form:
     hints:
       account_alias:
-        acct: Especifique o usuário@domínio da conta da qual você deseja mover
+        acct: Especifique o usuário@domínio da conta da qual você deseja se mudar
       account_migration:
-        acct: Especifique o usuário@domínio da conta para o qual você deseja mover
+        acct: Especifique o usuário@domínio da conta para a qual você deseja se mudar
       account_warning_preset:
-        text: Você pode usar a sintaxe de um toot, como URLs, hashtags e menções
+        text: Você pode usar a sintaxe do toot, como links, hashtags e menções
       admin_account_action:
         include_statuses: O usuário verá quais toots causaram o aviso ou ação da moderação
-        send_email_notification: O usuário vai receber uma explicação do que aconteceu com a sua conta
-        text_html: Opcional. Você pode usar a sintaxe de toots. Você pode <a href="%{path}">adicionar avisos pré-definidos</a> para ganhar tempo
-        type_html: Escolha o que fazer com <strong>%{acct}</strong>
-        warning_preset_id: Opcional. Você ainda pode adicionar texto customizado no fim do texto pré-definido
+        send_email_notification: O usuário receberá uma explicação do que aconteceu com a própria conta
+        text_html: Opcional. Você pode usar a sintaxe do toot e também pode <a href="%{path}">adicionar avisos pré-definidos</a> para poupar tempo
+        type_html: Decida o que fazer com <strong>%{acct}</strong>
+        warning_preset_id: Opcional. Você ainda pode adicionar texto personalizado no final do aviso pré-definido
       defaults:
-        autofollow: Pessoas que se cadastrarem através de seu convite te seguirão automaticamente
-        avatar: PNG, GIF or JPG. Arquivos de até %{size}. Eles serão diminuídos para %{dimensions}px
+        autofollow: Pessoas que criarem conta através de seu convite te seguirão automaticamente
+        avatar: PNG, GIF or JPG. Arquivos de até %{size}. Serão redimensionados para %{dimensions}px
         bot: Essa conta executa principalmente ações automatizadas e pode não ser monitorada
-        context: Um ou mais contextos onde o filtro deve ser aplicado
-        current_password: Para fins de segurança digite a senha da conta atual
-        current_username: Para confirmar, por favor, digite o usuário da conta atual
-        digest: Enviado após um longo período de inatividade com um resumo das menções que você recebeu em sua ausência
-        email: Você receberá um email de confirmação
-        fields: Você pode ter até 4 itens exibidos em forma de tabela no seu perfil
-        header: PNG, GIF or JPG. Arquivos de até %{size}. Eles serão diminuídos para %{dimensions}px
-        inbox_url: Copie a URL da página inicial do repetidor que você quer usar
-        irreversible: Os toots filtrados vão desaparecer irreversivelmente, mesmo se o filtro for removido depois
-        locale: O idioma das telas de usuário, e-mails e notificações push
+        context: Um ou mais contextos onde o filtro deve atuar
+        current_password: Para fins de segurança, por favor, digite a senha da conta atual
+        current_username: Para confirmar, por favor, digite o nome de usuário da conta atual
+        digest: Enviado apenas após um longo período de inatividade com um resumo das menções recebidas durante ausência
+        discoverable: O diretório de perfis é outra maneira de sua conta alcançar um público maior
+        email: Você receberá um e-mail de confirmação
+        fields: Você pode ter até 4 itens mostrados em forma de tabela no seu perfil
+        header: PNG, GIF or JPG. Arquivos de até %{size}. Serão redimensionados para %{dimensions}px
+        inbox_url: Copie o link da página inicial do repetidor que você deseja usar
+        irreversible: Toots filtrados desaparecerão irreversivelmente, mesmo se o filtro for removido depois
+        locale: O idioma da interface do usuário, e-mails e notificações
         locked: Requer aprovação manual de seguidores
         password: Use pelo menos 8 caracteres
-        phrase: Vai coincidir, independente de maiúsculas ou minúsculas, no texto ou no aviso de conteúdo de um toot
-        scopes: Quais APIs a aplicação vai ter permissão de acessar. Se você selecionar um escopo de alto nível, você não precisa selecionar individualmente os outros.
-        setting_aggregate_reblogs: Não mostrar novos compartilhamentos para toots que foram compartilhados recentemente (afeta somente novos compartilhamentos recebidos)
+        phrase: Corresponderá independente de maiúsculas ou minúsculas, no texto ou no aviso de conteúdo de um toot
+        scopes: Quais APIs o aplicativo vai ter permissão de acessar. Se você selecionar uma autorização de alto nível, você não precisa selecionar individualmente os outros.
+        setting_aggregate_reblogs: Não mostra novos boosts para toots que receberam boost recentemente (afeta somente os boosts mais recentes)
         setting_default_sensitive: Mídia sensível está oculta por padrão e pode ser revelada com um clique
-        setting_display_media_default: Esconder mídia marcada como sensível
-        setting_display_media_hide_all: Sempre esconder todas as mídias
-        setting_display_media_show_all: Sempre mostrar mídia marcada como sensível
-        setting_hide_network: Quem você segue e quem segue você não serão exibidos no seu perfil
-        setting_noindex: Afeta seu perfil público e as páginas de suas postagens
-        setting_show_application: A aplicação que você usar para enviar seus toots vai aparecer na visão detalhada dos seus toots
-        setting_use_blurhash: Os gradientes são baseados nas cores das imagens escondidas, mas ofuscam quaisquer detalhes
-        setting_use_pending_items: Ocultar atualizações de linha de tempo atrás de um clique ao invés de rolar automaticamente o feed
+        setting_display_media_default: Sempre ocultar mídia sensível
+        setting_display_media_hide_all: Sempre ocultar todas as mídias
+        setting_display_media_show_all: Sempre mostrar mídia sensível
+        setting_hide_network: Quem você segue e seus seguidores não serão mostrados no seu perfil
+        setting_noindex: Afeta seu perfil público e as páginas dos seus toots
+        setting_show_application: O aplicativo que você usar para tootar será mostrado na visão detalhada dos seus toots
+        setting_use_blurhash: O blur é baseado nas cores da imagem oculta, ofusca a maioria dos detalhes
+        setting_use_pending_items: Ocultar atualizações da linha do tempo atrás de um clique ao invés de rolar automaticamente
         username: Seu nome de usuário será único em %{domain}
-        whole_word: Quando a palavra ou frase é inteiramente alfanumérica, ela será aplicada somente se corresponder a palavra inteira
+        whole_word: Quando a palavra-chave ou frase é inteiramente alfanumérica, ela será aplicada somente se corresponder a palavra inteira
+      domain_allow:
+        domain: Este domínio poderá obter dados deste servidor e os dados recebidos dele serão processados e armazenados
       featured_tag:
         name: 'Você pode querer usar um destes:'
       form_challenge:
         current_password: Você está entrando em uma área segura
       imports:
-        data: Arquivo CSV exportado de outra instância do Mastodon
+        data: Arquivo CSV exportado de outra instância Mastodon
       invite_request:
-        text: Isso vai nos ajudar a revisar sua aplicação
+        text: Isso nos ajudará a revisar seu aplicativo
       sessions:
-        otp: 'Insira o código de autenticação gerado pelo app no seu celular ou use um dos códigos de recuperação:'
+        otp: 'Digite o código de dois fatores gerado pelo aplicativo no seu celular ou use um dos códigos de recuperação:'
+      tag:
+        name: Você pode mudar a capitalização das letras, por exemplo, para torná-la mais legível
       user:
-        chosen_languages: Ao marcar, apenas toots dos idiomas selecionados serão exibidos nas timelines públicas
+        chosen_languages: Apenas toots dos idiomas selecionados serão mostrados nas linhas públicas
     labels:
       account:
         fields:
           name: Rótulo
           value: Conteúdo
+      account_alias:
+        acct: Nome de usuário da conta antiga
+      account_migration:
+        acct: Nome de usuário da nova conta
       account_warning_preset:
-        text: Texto pré-definido
+        text: Aviso pré-definido
       admin_account_action:
-        include_statuses: Incluir toots reportados no e-mail
+        include_statuses: Incluir toots denunciados no e-mail
         send_email_notification: Notificar o usuário por e-mail
-        text: Aviso customizado
+        text: Aviso personalizado
         type: Ação
         types:
-          disable: Desabilitar
+          disable: Bloquear conta
           none: Não fazer nada
           silence: Silenciar
-          suspend: Suspender e excluir irreversivelmente dados da conta
+          suspend: Banir e excluir irreversivelmente dados da conta
         warning_preset_id: Usar um aviso pré-definido
       defaults:
         autofollow: Convite para seguir a sua conta
-        avatar: Imagem de Perfil
+        avatar: Imagem de perfil
         bot: Esta é uma conta-robô
-        chosen_languages: Filtros de idioma
+        chosen_languages: Filtro de idiomas
         confirm_new_password: Confirmar nova senha
         confirm_password: Confirmar senha
-        context: Contextos de filtro
+        context: Contextos do filtro
         current_password: Senha atual
         data: Dados
-        discoverable: Listar essa conta no diretório
+        discoverable: Mostrar conta no diretório de perfis
         display_name: Nome de exibição
         email: Endereço de e-mail
         expires_in: Expira em
         fields: Metadados do perfil
         header: Cabeçalho
-        inbox_url: URL da caixa de entrada do repetidor
-        irreversible: Ignorar ao invés de esconder
-        locale: Idioma das telas
+        inbox_url: Link da caixa de entrada do repetidor
+        irreversible: Ignorar ao invés de ocultar
+        locale: Idioma da interface
         locked: Trancar conta
         max_uses: Número máximo de usos
         new_password: Nova senha
         note: Biografia
-        otp_attempt: Código de autenticação em dois passos
+        otp_attempt: Código de autenticação de dois fatores
         password: Senha
         phrase: Palavra-chave ou frase
-        setting_aggregate_reblogs: Agrupar compartilhamentos nas timelines
+        setting_advanced_layout: Ativar interface web avançada
+        setting_aggregate_reblogs: Agrupar boosts nas linhas
         setting_auto_play_gif: Reproduzir GIFs automaticamente
         setting_boost_modal: Mostrar diálogo de confirmação antes de compartilhar postagem
         setting_default_federation: Permitir que meus toots cheguem em outras instâncias por padrão
+        setting_crop_images: Cortar imagens no formato 16x9 em toots não expandidos
         setting_default_language: Idioma das postagens
         setting_default_privacy: Privacidade das postagens
         setting_default_sensitive: Sempre marcar mídia como sensível
-        setting_delete_modal: Mostrar diálogo de confirmação antes de deletar uma postagem
+        setting_delete_modal: Solicitar confirmação antes de excluir toot
         setting_display_media: Exibição das mídias
         setting_display_media_default: Padrão
-        setting_display_media_hide_all: Esconder tudo
+        setting_display_media_hide_all: Ocultar tudo
         setting_display_media_show_all: Mostrar tudo
-        setting_expand_spoilers: Sempre expandir toots marcados com aviso de conteúdo
-        setting_hide_network: Esconder as suas redes
-        setting_noindex: Não quero ser indexado por mecanismos de busca
-        setting_reduce_motion: Reduz movimento em animações
-        setting_show_application: Mostrar o nome da aplicação utilizada para enviar os toots
-        setting_system_font_ui: Usar a fonte padrão de seu sistema
+        setting_expand_spoilers: Sempre expandir toots com Aviso de Conteúdo
+        setting_hide_network: Ocultar suas relações
+        setting_noindex: Não quero ser indexado por mecanismos de pesquisa
+        setting_reduce_motion: Reduzir animações
+        setting_show_application: Mostrar o aplicativo usado para enviar os toots
+        setting_system_font_ui: Usar fonte padrão do sistema
         setting_theme: Tema do site
-        setting_unfollow_modal: Mostrar diálogo de confirmação antes de deixar de seguir alguém
+        setting_trends: Mostrar em alta hoje
+        setting_unfollow_modal: Solicitar confirmação antes de deixar de seguir alguém
+        setting_use_blurhash: Mostrar blur em mídias ocultas
+        setting_use_pending_items: Modo lento
         severity: Gravidade
         type: Tipo de importação
         username: Nome de usuário
@@ -134,22 +148,22 @@ pt-BR:
       invite:
         comment: Comentário
       invite_request:
-        text: Por que você quer se cadastrar?
+        text: Por que você deseja criar uma conta aqui?
       notification_emails:
-        digest: Mandar e-mails com relatórios
-        favourite: Mandar um e-mail quando alguém favoritar suas postagens
-        follow: Mandar um e-mail quando alguém te seguir
-        follow_request: Mandar um e-maill quando alguém solicitar ser seu seguidor
-        mention: Mandar um e-mail quando alguém te mencionar
-        pending_account: Mandar um -mail quando uma nova conta precisar ser revisada
-        reblog: Mandar um e-mail quando alguém compartilhar suas postagens
-        report: Mandar um e-mail quando uma nova denúncia é submetida
+        digest: Enviar e-mails de resumo
+        favourite: Enviar e-mail quando alguém favoritar seus toots
+        follow: Enviar e-mail quando alguém te seguir
+        follow_request: Enviar e-mail quando alguém solicitar ser seu seguidor
+        mention: Enviar e-mail quando alguém te mencionar
+        pending_account: Enviar e-mail quando uma nova conta precisar ser revisada
+        reblog: Enviar e-mail quando alguém der boost nos seus toots
+        report: Enviar e-mail quando uma nova denúncia for enviada
         trending_tag: Enviar e-mail quando uma hashtag não revisada estiver em alta
       tag:
         listable: Permitir que esta hashtag apareça em pesquisas e no diretório de perfis
         name: Hashtag
         trendable: Permitir que esta hashtag apareça em alta
-        usable: Permitir que toots usem esta hastag
+        usable: Permitir que toots usem esta hashtag
     'no': Não
     recommended: Recomendado
     required:
diff --git a/config/locales/simple_form.pt-PT.yml b/config/locales/simple_form.pt-PT.yml
index 57acde4d9631dabb3c8304cd17352f1768cfa899..4a4437e76101ec48dc4df6aa1195c02f5a2fd940 100644
--- a/config/locales/simple_form.pt-PT.yml
+++ b/config/locales/simple_form.pt-PT.yml
@@ -20,7 +20,9 @@ pt-PT:
         bot: Esta conta executa essencialmente acções automáticas e pode não poder ser monitorizada
         context: Um ou múltiplos contextos nos quais o filtro deve ser aplicado
         current_password: Para fins de segurança, por favor, digite a senha da conta atual
+        current_username: Para confirmar, por favor, introduza o nome de utilizador da conta atual
         digest: Enviado após um longo período de inatividade e apenas se foste mencionado na tua ausência
+        discoverable: O diretório de perfis é outra maneira da sua conta alcançar um público mais vasto
         email: Será enviado um e-mail de confirmação
         fields: Podes ter até 4 itens expostos, em forma de tabela, no teu perfil
         header: PNG, GIF or JPG. Arquivos até %{size}. Vão ser reduzidos para %{dimensions}px
@@ -32,20 +34,31 @@ pt-PT:
         phrase: Será correspondido independentemente da capitalização ou do aviso de conteúdo duma publicação
         scopes: Quais as APIs a que será concedido acesso. Se escolheres uma abrangência de nível superior, não precisarás de as seleccionar individualmente.
         setting_aggregate_reblogs: Não mostrar novas partilhas que foram partilhadas recentemente (só afecta as novas partilhas)
+        setting_default_sensitive: Média sensível está oculta por padrão e pode ser revelada com um clique
         setting_display_media_default: Esconder media marcada como sensível
         setting_display_media_hide_all: Esconder sempre toda a media
         setting_display_media_show_all: Mostrar sempre a media marcada como sensível
         setting_hide_network: Quem tu segues e quem te segue não será mostrado no teu perfil
         setting_noindex: Afecta o teu perfil público e as páginas das tuas publicações
         setting_show_application: A aplicação que tu usas para publicar será mostrada na vista detalhada das tuas publicações
+        setting_use_blurhash: Os gradientes são baseados nas cores das imagens escondidas, mas ofuscam quaisquer detalhes
+        setting_use_pending_items: Ocultar atualizações da cronologia atrás de um clique ao invés de rolar automaticamente o feed
         username: O teu nome de utilizador será único em %{domain}
         whole_word: Quando a palavra-chave ou expressão-chave é somente alfanumérica, ela só será aplicada se corresponder à palavra completa
+      domain_allow:
+        domain: Este domínio será capaz de obter dados deste servidor e os dados dele recebidos serão processados e armazenados
       featured_tag:
         name: 'Poderás querer usar um destes:'
+      form_challenge:
+        current_password: Está a entrar numa área restrita
       imports:
         data: Arquivo CSV exportado de outro servidor do Mastodon
+      invite_request:
+        text: Isto vai ajudar-nos a rever o seu pedido
       sessions:
         otp: 'Insere o código de autenticação em dois passos gerado pelo teu telemóvel ou usa um dos teus códigos de recuperação:'
+      tag:
+        name: Só pode alterar a capitalização das letras, por exemplo, para torná-las mais legíveis
       user:
         chosen_languages: Quando seleccionado, só publicações nas línguas escolhidas serão mostradas nas cronologias públicas
     labels:
@@ -53,9 +66,14 @@ pt-PT:
         fields:
           name: Rótulo
           value: Conteúdo
+      account_alias:
+        acct: Nome de utilizador da conta antiga
+      account_migration:
+        acct: Nome de utilizador da nova conta
       account_warning_preset:
         text: Texto pré-definido
       admin_account_action:
+        include_statuses: Incluir no e-mail os toots reportados
         send_email_notification: Notificar o utilizador por e-mail
         text: Aviso personalizado
         type: Acção
@@ -91,9 +109,11 @@ pt-PT:
         otp_attempt: Código de autenticação em dois passos
         password: Palavra-passe
         phrase: Palavra ou expressão-chave
+        setting_advanced_layout: Ativar interface web avançada
         setting_aggregate_reblogs: Agrupar partilhas em cronologias
         setting_auto_play_gif: Reproduzir GIFs automaticamente
         setting_boost_modal: Solicitar confirmação antes de partilhar uma publicação
+        setting_crop_images: Cortar imagens em toots não expandidos para o formato 16x9
         setting_default_language: Língua de publicação
         setting_default_privacy: Privacidade da publicação
         setting_default_sensitive: Sempre marcar media como sensível
@@ -109,25 +129,43 @@ pt-PT:
         setting_show_application: Revelar sempre qual a aplicação usada para enviar as publicações
         setting_system_font_ui: Usar a fonte padrão do teu sistema
         setting_theme: Tema do site
+        setting_trends: Mostrar as tendências de hoje
         setting_unfollow_modal: Solicitar confirmação antes de deixar de seguir alguém
+        setting_use_blurhash: Mostrar gradientes coloridos para médias ocultas
+        setting_use_pending_items: Modo lento
         severity: Gravidade
         type: Tipo de importação
         username: Nome de utilizador
         username_or_email: Nome de utilizador ou e-mail
         whole_word: Palavra completa
+      featured_tag:
+        name: Hashtag
       interactions:
         must_be_follower: Bloquear notificações de não-seguidores
         must_be_following: Bloquear notificações de pessoas que não segues
         must_be_following_dm: Bloquear mensagens directas de pessoas que tu não segues
+      invite:
+        comment: Comentário
+      invite_request:
+        text: Porque se quer juntar a nós?
       notification_emails:
         digest: Enviar e-mails de resumo
         favourite: Enviar e-mail quando alguém adiciona uma publicação tua aos favoritos
         follow: Enviar e-mail quando alguém te segue
         follow_request: Enviar e-mail quando alguém solicita ser teu seguidor
         mention: Enviar e-mail quando alguém te menciona
+        pending_account: Enviar e-mail quando uma nova conta aguarda aprovação
         reblog: Enviar e-mail quando alguém partilha uma publicação tua
         report: Enviar um e-mail quando um novo relatório é submetido
+        trending_tag: Enviar e-mail quando uma hashtag não aprovada anteriormente estiver em destaque
+      tag:
+        listable: Permitir que esta hashtag apareça em pesquisas e no diretório de perfis
+        name: Hashtag
+        trendable: Permitir que esta hashtag apareça em destaque
+        usable: Permitir que toots utilizem esta hashtag
     'no': Não
+    recommended: Recomendado
     required:
+      mark: "*"
       text: obrigatório
     'yes': Sim
diff --git a/config/locales/simple_form.ru.yml b/config/locales/simple_form.ru.yml
index ab5eb855e27acae53600503a0d5ed0c4eaa2acca..918997695425b28927b91cda8fb06a87de2e6aa1 100644
--- a/config/locales/simple_form.ru.yml
+++ b/config/locales/simple_form.ru.yml
@@ -2,45 +2,55 @@
 ru:
   simple_form:
     hints:
+      account_alias:
+        acct: Укажите имя_пользователя@домен учётной записи, с которой вы собираетесь мигрировать
+      account_migration:
+        acct: Укажите имя_пользователя@домен учётной записи, на которую вы собираетесь мигрировать
       account_warning_preset:
         text: Вы можете использовать всё, что в обычных постах — ссылки, хэштеги, упоминания и т.д.
       admin_account_action:
-        send_email_notification: Пользователь получит сообщение о том, что случилось с его/её аккаунтом
-        text_html: (Необязательно) Можно использовать обычный синтаксис. Для экономии времени <a href="%{path}">добавьте шаблоны предупреждений</a>
-        type_html: Выберите, что делать с аккаунтом <strong>%{acct}</strong>
+        include_statuses: Пользователь будет видеть к каким постами применялись модераторские действия и выносились предупреждения
+        send_email_notification: Пользователь получит сообщение о том, что случилось с его/её учётной записью
+        text_html: Необязательно. Вы можете использовать синтаксис постов. Для экономии времени, <a href="%{path}">добавьте шаблоны предупреждений</a>
+        type_html: Выберите применяемое к <strong>%{acct}</strong> действие
         warning_preset_id: Необязательно. Вы можете добавить собственный текст в конце шаблона
       defaults:
         autofollow: Люди, пришедшие по этому приглашению, автоматически будут подписаны на вас
         avatar: Поддерживается PNG, GIF и JPG. Максимальный размер — %{size}. Будет уменьшен до %{dimensions}px
-        bot: Этот аккаунт обычно выполяет автоматизированные действия и может не просматриваться владельцем
+        bot: Эта учётная запись обычно выполяет автоматизированные действия и может не просматриваться владельцем
         context: Один или несколько контекстов, к которым должны быть применены фильтры
-        digest: Отсылается лишь после длительной неактивности, если вы в это время получали личные сообщения
+        current_password: В целях безопасности введите пароль текущей учётной записи
+        current_username: Для подтверждения, пожалуйста, введите имя пользователя текущей учётной записи
+        digest: Если вы долго не заглядывали, отправим вам дайджест событий, которые происходили в период вашего отсутствия.
+        discoverable: Каталог профилей это один из способов получить охват вашего профиля более обширной аудиторией
         email: Вам будет отправлено электронное письмо с подтверждением
-        fields: В профиле можно отобразить до 4 пунктов как таблицу
+        fields: В профиле можно отобразить до 4 пунктов в виде таблицы
         header: Поддерживается PNG, GIF и JPG. Максимальный размер — %{size}. Будет уменьшена до %{dimensions}px
         inbox_url: Копировать URL с главной страницы ретранслятора, который вы хотите использовать
-        irreversible: Отфильтрованные статусы будут утеряны навсегда, даже если в будущем фильтр будет убран
+        irreversible: Отфильтрованные посты будут утеряны навсегда, даже если в будущем фильтр будет убран
         locale: Язык интерфейса, e-mail писем и push-уведомлений
         locked: Подписчиков нужно будет подтверждать самостоятельно
         password: Укажите не менее 8 символов
-        phrase: Будет сопоставлено независимо от присутствия в тексте или предупреждения о содержании статуса
+        phrase: Будет сопоставлено независимо от присутствия в тексте или предупреждения о содержании поста
         scopes: Какие API приложению будет позволено использовать. Если вы выберете самый верхний, нижестоящие будут выбраны автоматически.
-        setting_aggregate_reblogs: Не показывать новые продвижения статусов, которые уже были недавно продвинуты (относится только к новым продвижениям)
-        setting_default_sensitive: Чувствительные медиафайлы скрыты по умолчанию и могут быть показаны по нажатию на них
-        setting_display_media_default: Скрывать чувствительные медиафайлы
+        setting_aggregate_reblogs: Не показывать новые продвижения постов, которые уже были недавно продвинуты (относится только к новым продвижениям)
+        setting_default_sensitive: Деликатные медиафайлы скрыты по умолчанию и могут быть показаны по нажатию на них
+        setting_display_media_default: Скрывать деликатные медиафайлы
         setting_display_media_hide_all: Всегда скрывать любые медиафайлы
-        setting_display_media_show_all: Всегда показывать чувствительные медиафайлы
-        setting_hide_network: Те, на кого вы подписаны и кто подписан на Вас, не будут отображены в вашем профиле
-        setting_noindex: Относится к вашему публичному профилю и страницам статусов
-        setting_show_application: В окне просмотра вашего статуса будет видно, с какого приложения он был отправлен
+        setting_display_media_show_all: Всегда показывать деликатные медиафайлы
+        setting_hide_network: Другие не смогут видеть ни ваши подписки, ни ваших подписчиков
+        setting_noindex: Относится к вашему публичному профилю и страницам постов
+        setting_show_application: При просмотре поста будет видно из какого приложения он отправлен
         setting_use_blurhash: Градиенты основаны на цветах скрытых медиа, но скрывают любые детали
         setting_use_pending_items: Показывать обновления в ленте только после клика вместо автоматической прокрутки
-        username: Ваш юзернейм будет уникальным на %{domain}
+        username: Ваше имя пользователя будет уникальным на %{domain}
         whole_word: Если слово или фраза состоит только из букв и цифр, сопоставление произойдёт только по полному совпадению
       domain_allow:
         domain: Этот домен сможет получать данные с этого сервера и его входящие данные будут обрабатываться и сохранены
       featured_tag:
-        name: 'Возможно, вы захотите выбрать из них:'
+        name: 'Возможно, вы захотите добавить что-то из этого:'
+      form_challenge:
+        current_password: Вы входите в зону безопасности
       imports:
         data: Файл CSV, экспортированный с другого узла Mastodon
       invite_request:
@@ -56,38 +66,43 @@ ru:
         fields:
           name: Пункт
           value: Значение
+      account_alias:
+        acct: Имя старой учётной записи
+      account_migration:
+        acct: Имя новой учётной записи
       account_warning_preset:
         text: Текст шаблона
       admin_account_action:
-        send_email_notification: Уведомить юзера по e-mail
-        text: Свой текст предупреждения
+        include_statuses: Включать в письмо жалобы на посты
+        send_email_notification: Уведомить пользователя по e-mail
+        text: Текст предупреждения
         type: Действие
         types:
           disable: Заморозить
           none: Ничего не делать
-          silence: Заглушить
-          suspend: Заблокировать и безвозвратно удалить все данные аккаунта
+          silence: Скрыть
+          suspend: Заблокировать и безвозвратно удалить все данные учётной записи
         warning_preset_id: Использовать шаблон
       defaults:
-        autofollow: С подпиской на ваш аккаунт
+        autofollow: С подпиской на вашу учётную запись
         avatar: Аватар
-        bot: Это аккаунт бота
+        bot: Это учётная запись бота
         chosen_languages: Фильтр языков
         confirm_new_password: Повторите новый пароль
         confirm_password: Повторите пароль
         context: Контекст фильтра
         current_password: Текущий пароль
         data: Данные
-        discoverable: Показывать этот аккаунт в каталоге
+        discoverable: Показывать эту учётную запись в каталоге
         display_name: Отображаемое имя
         email: Адрес e-mail
         expires_in: Истекает через
         fields: Метаданные профиля
-        header: Заголовок
+        header: Шапка
         inbox_url: URL для входящих от ретрансляторов
         irreversible: Удалять, а не скрывать
         locale: Язык интерфейса
-        locked: Сделать аккаунт закрытым
+        locked: Сделать учётную запись закрытой
         max_uses: Максимальное число использований
         new_password: Новый пароль
         note: О себе
@@ -98,26 +113,27 @@ ru:
         setting_aggregate_reblogs: Группировать продвижения в лентах
         setting_auto_play_gif: Автоматически проигрывать анимированные GIF
         setting_boost_modal: Всегда спрашивать перед продвижением
-        setting_default_language: Язык отправляемых статусов
+        setting_crop_images: Кадрировать изображения в нераскрытых постах до 16:9
+        setting_default_language: Язык отправляемых постов
         setting_default_privacy: Видимость постов
-        setting_default_sensitive: Всегда отмечать медиаконтент как чувствительный
+        setting_default_sensitive: Всегда отмечать медиафайлы как деликатные
         setting_delete_modal: Всегда спрашивать перед удалении поста
         setting_display_media: Отображение медиафайлов
         setting_display_media_default: По умолчанию
         setting_display_media_hide_all: Скрывать все
         setting_display_media_show_all: Показывать все
-        setting_expand_spoilers: Всегда раскрывать статусы, имеющие предупреждение о содержании
+        setting_expand_spoilers: Всегда раскрывать посты, имеющие предупреждение о содержании
         setting_hide_network: Скрыть свои связи
         setting_noindex: Отказаться от индексации в поисковых машинах
         setting_reduce_motion: Уменьшить движение в анимации
-        setting_show_application: Раскрывать приложение, с которого отправляются статусы
+        setting_show_application: Указывать приложение, с которого отправлен пост
         setting_system_font_ui: Использовать шрифт системы по умолчанию
         setting_theme: Тема сайта
         setting_trends: Показывать сегодняшние тренды
-        setting_unfollow_modal: Всегда спрашивать перед отпиской от аккаунта
+        setting_unfollow_modal: Всегда спрашивать перед отпиской от учётной записи
         setting_use_blurhash: Показать цветные градиенты для скрытых медиа
         setting_use_pending_items: Медленный режим
-        severity: Строгость
+        severity: Накладываемые ограничения
         type: Тип импорта
         username: Имя пользователя
         username_or_email: Имя пользователя или e-mail
@@ -125,27 +141,30 @@ ru:
       featured_tag:
         name: Хэштег
       interactions:
-        must_be_follower: Заблокировать уведомления не от подписчиков
-        must_be_following: Заблокировать уведомления от людей, на которых вы не подписаны
-        must_be_following_dm: Заблокировать личные сообщения от людей, на которых вы не подписаны
+        must_be_follower: Присылать уведомления только от подписчиков
+        must_be_following: Присылать уведомления только от людей на которых вы подписаны
+        must_be_following_dm: Разрешить присылать личные сообщения только людям, на которых вы подписаны
+      invite:
+        comment: Комментарий
       invite_request:
         text: Почему вы хотите присоединиться к нам?
       notification_emails:
         digest: Присылать дайджест по e-mail
-        favourite: Уведомлять по e-mail, когда кому-то нравится ваш статус
-        follow: Уведомлять по e-mail, когда кто-то подписался на вас
-        follow_request: Уведомлять по e-mail, когда кто-то запрашивает разрешение на подписку
-        mention: Уведомлять по e-mail, когда кто-то упомянул вас
-        pending_account: Отправлять e-mail при наличии новых заявок на присоединение
-        reblog: Уведомлять по e-mail, когда кто-то продвинул ваш статус
-        report: Уведомлять по e-mail при создании жалобы
-        trending_tag: Отправлять e-mail при непроверенных хэштегах в трендах
+        favourite: Ваш пост добавили в избранное
+        follow: Новый подписчик
+        follow_request: Новый запрос на подписку
+        mention: Новое упоминание
+        pending_account: Новая заявка на создание аккаунта
+        reblog: Ваш пост продвинули
+        report: Поступила новая жалоба
+        trending_tag: Актуальный хэштег требует проверки
       tag:
         listable: Разрешить показ хэштега в поиске или в каталоге профилей
+        name: Хэштег
         trendable: Разрешить показ хэштега в трендах
         usable: Разрешить использовать этот хэштег в постах
     'no': Нет
-    recommended: Рекомендуется
+    recommended: Рекомендуем
     required:
       mark: "*"
       text: обязательно
diff --git a/config/locales/simple_form.sk.yml b/config/locales/simple_form.sk.yml
index b908c0196ce5ab3740cc0a9da327ee99d04a744c..c10df08d05178aa3fa480923cc622dbe5f5493eb 100644
--- a/config/locales/simple_form.sk.yml
+++ b/config/locales/simple_form.sk.yml
@@ -2,6 +2,10 @@
 sk:
   simple_form:
     hints:
+      account_alias:
+        acct: Urči prezyvku@domenu účtu, s ktorého sa chceš presunúť
+      account_migration:
+        acct: Urči prezyvku@domenu účtu, na ktorý sa chceš presunúť
       account_warning_preset:
         text: Môžeš používať rovnakú syntaxiu ako v rámci príspevkov, čiže URL, haštagy, a spomenutia
       admin_account_action:
@@ -15,7 +19,10 @@ sk:
         avatar: PNG, GIF alebo JPG. Maximálne %{size}. Bude zmenšený na %{dimensions}px
         bot: Tento účet vykonáva hlavne automatizované akcie, a je pravdepodobne nespravovaný
         context: Jedno, alebo viac kritérií, v ktorých má byť filtrovanie uplatnené
+        current_password: Z bezpečtnostných dôvodov prosím zadaj heslo súčasného účtu
+        current_username: Pre potvrdenie prosím zadaj prezývku súčasného účtu
         digest: Odoslané iba v prípade dlhodobej neprítomnosti, a len ak si obdržal/a nejaké osobné správy kým si bol/a preč
+        discoverable: Zoznam profilov predstavuje ďalšiu cestu akou tvoj účet môže dosiahnúť väčšie publikum
         email: Bude ti odoslaný potvrdzujúci email
         fields: Až štyri položky môžeš mať na svojom profile zobrazené vo forme tabuľky
         header: PNG, GIF, alebo JPG. Maximálne %{size}. Bude zmenšený na %{dimensions}px
@@ -34,6 +41,7 @@ sk:
         setting_hide_network: Koho následuješ, a kto následuje teba, nebude zobrazené na tvojom profile
         setting_noindex: Ovplyvňuje verejný profil a stránky s príspevkami
         setting_show_application: Aplikácia, ktorú používaš na písanie príspevkov, bude zobrazená v podrobnom náhľade jednotlivých tvojích príspevkov
+        setting_use_blurhash: Prechody sú založené na farbách skrytých vizuálov, ale zahaľujú akékoľvek podrobnosti
         setting_use_pending_items: Skry aktualizovanie časovej osi tak, aby bola načitávaná iba po kliknutí, namiesto samostatného posúvania
         username: Tvoja prezývka bude unikátna pre server %{domain}
         whole_word: Ak je kľúčové slovo, alebo fráza poskladaná iba s písmen a čísel, bude použité iba ak sa zhoduje s celým výrazom
@@ -41,12 +49,16 @@ sk:
         domain: Táto doména bude schopná získavať dáta z tohto servera, a prichádzajúce dáta ním budú spracovávané a uložené
       featured_tag:
         name: 'Možno by si chcel/a použiť niektoré z týchto:'
+      form_challenge:
+        current_password: Vstupuješ do zabezpečenej časti
       imports:
         data: CSV súbor vyexportovaný z iného Mastodon serveru
       invite_request:
         text: Toto pomôže s vyhodnocovaním tvojej žiadosti
       sessions:
         otp: 'Napíš sem dvoj-faktorový kód z telefónu, alebo použi jeden z tvojích obnovovacích kódov:'
+      tag:
+        name: Zmeniť môžeš iba veľkosť písmen, napríklad aby boli ľahšie čítateľné
       user:
         chosen_languages: Keď je zaškrtnuté, vo verejnej osi budú zobrazené iba príspevky vo vybraných jazykoch
     labels:
@@ -54,6 +66,10 @@ sk:
         fields:
           name: Označenie
           value: Obsah
+      account_alias:
+        acct: Adresa starého účtu
+      account_migration:
+        acct: Adresa nového účtu
       account_warning_preset:
         text: Text predlohy
       admin_account_action:
@@ -97,6 +113,7 @@ sk:
         setting_aggregate_reblogs: Zoskupuj vyzdvihnutia v časovej osi
         setting_auto_play_gif: Automaticky prehrávaj animované GIFy
         setting_boost_modal: Zobrazuj potvrdzovacie okno pred povýšením
+        setting_crop_images: Orež obrázky v nerozbalených príspevkoch na 16x9
         setting_default_language: Píšeš v jazyku
         setting_default_privacy: Súkromie príspevkov
         setting_default_sensitive: Označ všetky mediálne súbory ako chúlostivé
@@ -126,7 +143,9 @@ sk:
       interactions:
         must_be_follower: Blokuj oboznámenia od užívateľov, ktorí ma nenásledujú
         must_be_following: Blokuj oboznámenia od ľudí, ktorých nesledujem
-        must_be_following_dm: Blokuj súkromné správy od ľudí ktorých nesledujem
+        must_be_following_dm: Blokuj priame správy od ľudí, ktorých nesleduješ
+      invite:
+        comment: Okomentuj
       invite_request:
         text: Prečo sa k nám chceš pridať?
       notification_emails:
diff --git a/config/locales/simple_form.sv.yml b/config/locales/simple_form.sv.yml
index 56bdcf7681e09ba35e1555ce7d31f8b9b6cf017c..de0a14bd7dc924bf88df6c33aca8537cfb0ce3e5 100644
--- a/config/locales/simple_form.sv.yml
+++ b/config/locales/simple_form.sv.yml
@@ -19,15 +19,21 @@ sv:
         avatar: PNG, GIF eller JPG. Högst %{size}. Kommer att skalas ner till %{dimensions}px
         bot: Detta konto utför huvudsakligen automatiserade åtgärder och kanske inte övervakas
         digest: Skickas endast efter en lång period av inaktivitet och endast om du har fått några personliga meddelanden i din frånvaro
-        email: Ett konfirmationsmeddelande kommer att skickas till dig via epost
+        email: Du kommer att få ett bekräftelsemeddelande via e-post
         fields: Du kan ha upp till 4 objekt visade som en tabell på din profil
         header: PNG, GIF eller JPG. Högst %{size}. Kommer att skalas ner till %{dimensions}px
         irreversible: Filtrerade inlägg kommer att försvinna oåterkalleligt, även om filter tas bort senare
-        locale: Användargränssnittets språk, e-post och push-aviseringar
+        locale: Språket för användargränssnittet, e-postmeddelanden och push-aviseringar
         locked: Kräver att du manuellt godkänner följare
         password: Använd minst 8 tecken
+        setting_display_media_default: Dölj media markerad som känslig
+        setting_display_media_hide_all: Dölj alltid all media
+        setting_display_media_show_all: Visa alltid media markerad som känslig
         setting_hide_network: Vem du följer och vilka som följer dig kommer inte att visas på din profilsida
         setting_noindex: PÃ¥verkar din offentliga profil och statussidor
+        username: Ditt användarnamn måste vara unikt på %{domain}
+      featured_tag:
+        name: 'Du kan vilja använda en av dessa:'
       imports:
         data: CSV-fil som exporteras från en annan Mastodon-instans
       sessions:
@@ -39,6 +45,9 @@ sv:
         fields:
           name: Etikett
           value: Innehåll
+      admin_account_action:
+        types:
+          none: Gör ingenting
       defaults:
         autofollow: Bjud in till att följa ditt konto
         bot: Detta är ett botkonto
@@ -56,28 +65,38 @@ sv:
         max_uses: Högst antal  användningar
         new_password: Nytt lösenord
         note: Biografi
-        otp_attempt: Tvåstegslösenord
+        otp_attempt: Tvåfaktorskod
         password: Lösenord
-        setting_auto_play_gif: Auto-play animerade GIF-filer
+        phrase: Nyckelord eller fras
+        setting_advanced_layout: Aktivera avancerat webbgränssnitt
+        setting_auto_play_gif: Spela upp animerade GIF-bilder automatiskt
         setting_boost_modal: Visa bekräftelsedialog innan du knuffar
         setting_default_language: Språk
         setting_default_privacy: Postintegritet
         setting_default_sensitive: Markera alltid media som känsligt
         setting_delete_modal: Visa bekräftelsedialog innan du raderar en toot
+        setting_display_media: Mediavisning
+        setting_display_media_hide_all: Dölj alla
+        setting_display_media_show_all: Visa alla
         setting_hide_network: Göm ditt nätverk
         setting_noindex: Uteslutning av sökmotorindexering
         setting_reduce_motion: Minska rörelser i animationer
         setting_system_font_ui: Använd systemets standardfont
         setting_theme: Sidans tema
+        setting_trends: Visa dagens trender
         setting_unfollow_modal: Visa bekräftelse innan du slutar följa någon
         severity: Strikthet
         type: Importtyp
         username: Användarnamn
         username_or_email: Användarnamn eller e-mail
       interactions:
-        must_be_follower: Blockera meddelanden från icke-följare
-        must_be_following: Blockera meddelanden från personer du inte följer
+        must_be_follower: Blockera aviseringar från icke-följare
+        must_be_following: Blockera aviseringar från personer du inte följer
         must_be_following_dm: Blockera direktmeddelanden från personer du inte följer
+      invite:
+        comment: Kommentar
+      invite_request:
+        text: Varför vill du gå med?
       notification_emails:
         digest: Skicka sammandrag via e-post
         favourite: Skicka e-post när någon favoriserar din status
@@ -86,6 +105,8 @@ sv:
         mention: Skicka e-post när någon nämner dig
         reblog: Skicka e-post när någon knuffar din status
     'no': Nej
+    recommended: Rekommenderad
     required:
+      mark: "*"
       text: obligatorisk
     'yes': Ja
diff --git a/config/locales/simple_form.ta.yml b/config/locales/simple_form.ta.yml
index 4320953ce2ab23ded9cc319b3002dfc1bc13903a..edf731690327634708f560180ef44d94324cc803 100644
--- a/config/locales/simple_form.ta.yml
+++ b/config/locales/simple_form.ta.yml
@@ -1 +1,53 @@
+---
 ta:
+  simple_form:
+    hints:
+      account_alias:
+        acct: நீங்கள் இங்கே நகர்த்த விரும்பும் கணக்கின் பயனர் பெயர்
+      account_migration:
+        acct: நீங்கள் இங்கே நகர்த்த விரும்பும் கணக்கின் பயனர் பெயர் username@domain
+      admin_account_action:
+        send_email_notification: தங்கள் கணக்கிற்கு என்ன நேர்ந்தது என்ற விவரம் பயனரால் பெறப்படும்
+      defaults:
+        autofollow: அழைப்பின் வாயிலாக புதிய கணக்கை துவங்குவோர் தாமாகவே உங்களை பின்தொடர்வர்
+        avatar: PNG, GIF or JPG. அதிகபட்சம் %{size}, %{dimensions}px க்கு குறைக்கப்படும்
+        bot: இந்த கணக்கு முக்கியமாக தானியங்கு செயல்களைச் செய்கிறது மற்றும் கண்காணிக்கப்படாமல் போகலாம்
+        current_password: பாதுகாப்பு காரணங்களுக்காக, தங்களின் தற்போதைய கணக்கின் கடவுச்சொல்லை உள்ளீடு செய்க
+        current_username: உறுதிசெய்ய, தற்போதைய கணக்கின் பயனர் பெயரை உள்ளிடுக
+        email: உறுதிசெய் மின்னஞ்சல் உங்களுக்கு அனுப்பப்படும்
+        password: குறைந்தது 8 எழுத்துக்களைப் பயன்படுத்தவும்
+        setting_display_media_hide_all: எப்போதும் எல்லா ஊடகங்களையும் மறைக்கவும்
+        setting_display_media_show_all: உணர்ச்சி வயப்படு (Sensitive) குறிக்கப்பட்ட மீடியாவை எப்போதும் காட்டுங்கள்
+    labels:
+      account:
+        fields:
+          name: லேபிள்
+      admin_account_action:
+        types:
+          disable: உள்நுழைவை முடக்கு
+          none: எதுவும் செய்யாதே
+          silence: சைலன்ஸ்
+      defaults:
+        avatar: அவதார்
+        bot: இது ஒரு போட்(bot) கணக்கு
+        chosen_languages: மொழிவாரியாக தேர்ந்தெடுக்கவும்
+        confirm_new_password: புதிய கடவுச்சொல்லை உறுதிப்படுத்தவும்
+        confirm_password: கடவுச்சொல்லை உறுதிப்படுத்தவும்
+        context: அமைப்பு
+        current_password: தற்போதைய கடவுச்சொல்
+        data: தரவு
+        discoverable: கோப்பகத்தில் இந்த கணக்கை பட்டியலிடுங்கள்
+        email: மின்னஞ்சல் முகவரி
+        header: தலைப்பு
+        locale: பயனர் இடைமுக மொழி
+        locked: கணக்கைப் பூட்டு
+        max_uses: பயன்பாடுகளின் அதிகபட்ச எண்ணிக்கை
+        new_password: புதிய கடவுச்சொல்
+        note: சுயசரிதை
+        password: கடவுச்சொல்
+        setting_use_pending_items: மெதுவான பயன்முறை
+        username: பயனர்பெயர்
+        username_or_email: பயனர் பெயர் அல்லது மின்னஞ்சல்
+    required:
+      text: தேவை
+    'yes': ஆம்
diff --git a/config/locales/simple_form.th.yml b/config/locales/simple_form.th.yml
index 500ff7f766674f966fefaa20e5eb24b56dc5c998..dc118a47f456de832dbc7e3c07c6e763798c4f20 100644
--- a/config/locales/simple_form.th.yml
+++ b/config/locales/simple_form.th.yml
@@ -2,19 +2,27 @@
 th:
   simple_form:
     hints:
+      account_alias:
+        acct: ระบุ username@domain ของบัญชีที่คุณต้องการย้ายจาก
+      account_migration:
+        acct: ระบุ username@domain ของบัญชีที่คุณต้องการย้ายไป
       account_warning_preset:
         text: คุณสามารถใช้ไวยากรณ์โพสต์ เช่น URL, แฮชแท็ก และการกล่าวถึง
       admin_account_action:
+        include_statuses: ผู้ใช้จะเห็นว่าโพสต์ใดก่อให้เกิดการกระทำการควบคุมหรือคำเตือน
         send_email_notification: ผู้ใช้จะได้รับคำอธิบายว่าเกิดอะไรขึ้นกับบัญชีของเขา
         text_html: ตัวเลือกเพิ่มเติม คุณสามารถใช้ไวยากรณ์โพสต์ คุณสามารถ <a href="%{path}">เพิ่มคำเตือนที่ตั้งไว้ล่วงหน้า</a> เพื่อประหยัดเวลา
         type_html: เลือกสิ่งที่จะทำกับ <strong>%{acct}</strong>
-        warning_preset_id: ตัวเลือกเพิ่มเติม คุณยังคงสามารถเพิ่มข้อความที่กำหนดเองที่จุดสิ้นสุดของค่าที่ตั้งไว้ล่วงหน้า
+        warning_preset_id: ตัวเลือกเพิ่มเติม คุณยังสามารถเพิ่มข้อความที่กำหนดเองที่จุดสิ้นสุดของค่าที่ตั้งไว้ล่วงหน้า
       defaults:
         autofollow: ผู้คนที่ลงทะเบียนผ่านคำเชิญจะติดตามคุณโดยอัตโนมัติ
         avatar: PNG, GIF หรือ JPG สูงสุด %{size} จะถูกย่อขนาดเป็น %{dimensions}px
         bot: บัญชีนี้ทำการกระทำอัตโนมัติเป็นหลักและอาจไม่ได้รับการสังเกตการณ์
         context: บริบทจำนวนหนึ่งหรือมากกว่าที่ตัวกรองควรใช้
+        current_password: เพื่อวัตถุประสงค์ด้านความปลอดภัย โปรดป้อนรหัสผ่านของบัญชีปัจจุบัน
+        current_username: เพื่อยืนยัน โปรดป้อนชื่อผู้ใช้ของบัญชีปัจจุบัน
         digest: ส่งเฉพาะหลังจากไม่มีการใช้งานเป็นเวลานานและในกรณีที่คุณได้รับข้อความส่วนบุคคลใด ๆ เมื่อคุณไม่อยู่เท่านั้น
+        discoverable: ไดเรกทอรีโปรไฟล์เป็นอีกวิธีหนึ่งที่ทำให้บัญชีของคุณสามารถเข้าถึงผู้ชมได้กว้างขึ้น
         email: คุณจะได้รับอีเมลยืนยัน
         fields: คุณสามารถมีได้มากถึง 4 รายการแสดงเป็นตารางในโปรไฟล์ของคุณ
         header: PNG, GIF หรือ JPG สูงสุด %{size} จะถูกย่อขนาดเป็น %{dimensions}px
@@ -23,7 +31,7 @@ th:
         locale: ภาษาของส่วนติดต่อผู้ใช้, อีเมล และการแจ้งเตือนแบบผลัก
         locked: คุณต้องอนุมัติผู้ติดตามด้วยตนเอง
         password: ใช้อย่างน้อย 8 ตัวอักษร
-        phrase: จะถูกจับคู่โดยไม่คำนึงถึงตัวอักษรใหญ่เล็กในข้อความหรือคำเตือนเนื้อหาของโพสต์
+        phrase: จะถูกจับคู่โดยไม่คำนึงถึงตัวพิมพ์ใหญ่เล็กในข้อความหรือคำเตือนเนื้อหาของโพสต์
         scopes: API ใดที่แอปพลิเคชันจะได้รับอนุญาตให้เข้าถึง หากคุณเลือกขอบเขตระดับบนสุด คุณไม่จำเป็นต้องเลือกแต่ละขอบเขต
         setting_aggregate_reblogs: ไม่แสดงการดันใหม่สำหรับโพสต์ที่เพิ่งดัน (มีผลต่อการดันที่ได้รับใหม่เท่านั้น)
         setting_default_sensitive: ซ่อนสื่อที่ละเอียดอ่อนโดยค่าเริ่มต้นและสามารถเปิดเผยได้ด้วยการคลิก
@@ -35,8 +43,10 @@ th:
         setting_show_application: จะแสดงแอปพลิเคชันที่คุณใช้เพื่อโพสต์ในมุมมองโดยละเอียดของโพสต์ของคุณ
         setting_use_blurhash: การไล่ระดับสีอิงตามสีของภาพที่ซ่อนอยู่แต่ทำให้รายละเอียดใด ๆ คลุมเครือ
         setting_use_pending_items: ซ่อนการอัปเดตเส้นเวลาไว้หลังการคลิกแทนที่จะเลื่อนฟีดโดยอัตโนมัติ
-        username: ชื่อผู้ใช้ของคุณจะไม่ซ้ำกันบน %{domain}
-        whole_word: เมื่อคำสำคัญหรือวลีมีแค่ตัวอักษรและตัวเลข จะถูกใช้หากตรงกันทั้งคำเท่านั้น
+        username: ชื่อผู้ใช้ของคุณจะไม่ซ้ำกันใน %{domain}
+        whole_word: เมื่อคำสำคัญหรือวลีเป็นตัวอักษรและตัวเลขเท่านั้น จะนำไปใช้กับคำสำคัญหรือวลีหากตรงกันทั้งคำเท่านั้น
+      domain_allow:
+        domain: โดเมนนี้จะสามารถดึงข้อมูลจากเซิร์ฟเวอร์นี้และข้อมูลขาเข้าจากโดเมนจะได้รับการประมวลผลและจัดเก็บ
       featured_tag:
         name: 'คุณอาจต้องการใช้หนึ่งในนี้:'
       form_challenge:
@@ -47,6 +57,8 @@ th:
         text: นี่จะช่วยให้เราตรวจทานใบสมัครของคุณ
       sessions:
         otp: 'ป้อนรหัสสองปัจจัยที่สร้างโดยแอปในโทรศัพท์ของคุณหรือใช้หนึ่งในรหัสกู้คืนของคุณ:'
+      tag:
+        name: คุณสามารถเปลี่ยนได้เฉพาะตัวพิมพ์ใหญ่เล็กของตัวอักษรเท่านั้น ตัวอย่างเช่น เพื่อทำให้ตัวอักษรอ่านได้ง่ายขึ้น
       user:
         chosen_languages: เมื่อกาเครื่องหมาย จะแสดงเฉพาะโพสต์ในภาษาที่เลือกในเส้นเวลาสาธารณะ
     labels:
@@ -54,14 +66,19 @@ th:
         fields:
           name: ป้ายชื่อ
           value: เนื้อหา
+      account_alias:
+        acct: การจัดการบัญชีเก่า
+      account_migration:
+        acct: การจัดการบัญชีใหม่
       account_warning_preset:
         text: ข้อความที่ตั้งไว้ล่วงหน้า
       admin_account_action:
+        include_statuses: รวมโพสต์ที่รายงานไว้ในอีเมล
         send_email_notification: แจ้งเตือนผู้ใช้ทางอีเมล
         text: คำเตือนที่กำหนดเอง
         type: การกระทำ
         types:
-          disable: ปิดใช้งาน
+          disable: ปิดใช้งานการเข้าสู่ระบบ
           none: ไม่ทำสิ่งใด
           silence: เงียบ
           suspend: ระงับและลบข้อมูลบัญชีอย่างถาวร
@@ -96,6 +113,7 @@ th:
         setting_aggregate_reblogs: จัดกลุ่มการดันในเส้นเวลา
         setting_auto_play_gif: เล่น GIF แบบเคลื่อนไหวโดยอัตโนมัติ
         setting_boost_modal: แสดงกล่องโต้ตอบการยืนยันก่อนดัน
+        setting_crop_images: ครอบตัดภาพในโพสต์ที่ไม่ได้ขยายเป็น 16x9
         setting_default_language: ภาษาที่โพสต์
         setting_default_privacy: ความเป็นส่วนตัวของโพสต์
         setting_default_sensitive: ทำเครื่องหมายสื่อว่าละเอียดอ่อนเสมอ
@@ -123,7 +141,7 @@ th:
       featured_tag:
         name: แฮชแท็ก
       interactions:
-        must_be_follower: ปิดกั้นการแจ้งเตือนจากที่ไม่ใช่ผู้ติดตาม
+        must_be_follower: ปิดกั้นการแจ้งเตือนจากผู้ที่ไม่ใช่ผู้ติดตาม
         must_be_following: ปิดกั้นการแจ้งเตือนจากผู้คนที่คุณไม่ได้ติดตาม
         must_be_following_dm: ปิดกั้นข้อความโดยตรงจากผู้คนที่คุณไม่ได้ติดตาม
       invite:
@@ -132,15 +150,18 @@ th:
         text: ทำไมคุณจึงต้องการเข้าร่วม?
       notification_emails:
         digest: ส่งอีเมลสรุป
-        favourite: ส่งอีเมลเมื่อใครสักคนชื่นชอบสถานะของคุณ
-        follow: ส่งอีเมลเมื่อใครสักคนติดตามคุณ
-        follow_request: ส่งอีเมลเมื่อใครสักคนขอติดตามคุณ
-        mention: ส่งอีเมลเมื่อใครสักคนกล่าวถึงคุณ
+        favourite: ใครสักคนได้ชื่นชอบสถานะของคุณ
+        follow: ใครสักคนได้ติดตามคุณ
+        follow_request: ใครสักคนได้ขอติดตามคุณ
+        mention: ใครสักคนได้กล่าวถึงคุณ
         pending_account: ส่งอีเมลเมื่อบัญชีใหม่ต้องการการตรวจทาน
-        reblog: ส่งอีเมลเมื่อใครสักคนดันสถานะของคุณ
+        reblog: ใครสักคนได้ดันสถานะของคุณ
         report: ส่งอีเมลเมื่อมีการส่งรายงานใหม่
+        trending_tag: ส่งอีเมลเมื่อแฮชแท็กที่ยังไม่ได้ตรวจทานกำลังนิยม
       tag:
+        listable: อนุญาตให้แฮชแท็กนี้ปรากฏในการค้นหาและในไดเรกทอรีโปรไฟล์
         name: แฮชแท็ก
+        trendable: อนุญาตให้แฮชแท็กนี้ปรากฏภายใต้แนวโน้ม
         usable: อนุญาตให้โพสต์ใช้แฮชแท็กนี้
     'no': ไม่
     recommended: แนะนำ
diff --git a/config/locales/simple_form.tr.yml b/config/locales/simple_form.tr.yml
index 663fce5e0a58555c8913df32fd88adc92aaa415b..4d022368a5838fd1a447b9992e83311ce7f900e0 100644
--- a/config/locales/simple_form.tr.yml
+++ b/config/locales/simple_form.tr.yml
@@ -7,11 +7,11 @@ tr:
       account_migration:
         acct: Taşınmak istediğiniz hesabın kullanıcı-adı@alan-adını belirtin
       account_warning_preset:
-        text: URL'ler, etiketler ve bahsetmeler gibi gönderi sözdizimleri kullanabilirsiniz
+        text: URL'ler, etiketler ve bahsetmeler gibi toot sözdizimleri kullanabilirsiniz
       admin_account_action:
-        include_statuses: Kullanıcı hangi gönderilerin denetleme eylemi ya da uyarısına neden olduğunu görecektir
+        include_statuses: Kullanıcı hangi tootların denetleme eylemi ya da uyarısına neden olduğunu görecektir
         send_email_notification: Kullanıcı, hesabına ne olduğu hakkında bir bildirim alacak
-        text_html: İsteğe bağlı. Gönderi sözdizimleri kullanabilirsiniz. Zamandan kazanmak için <a href="%{path}">uyarı ön-ayarları ekleyebilirsiniz</a>
+        text_html: İsteğe bağlı. Toot sözdizimleri kullanabilirsiniz. Zamandan kazanmak için <a href="%{path}">uyarı ön-ayarları ekleyebilirsiniz</a>
         type_html: "<strong>%{acct}</strong> ile ne yapılacağını seçin"
         warning_preset_id: İsteğe bağlı. Hazır ayarın sonuna hala özel metin ekleyebilirsiniz
       defaults:
@@ -27,20 +27,20 @@ tr:
         fields: Profilinizde tablo olarak görüntülenen en fazla 4 ögeye sahip olabilirsiniz
         header: En fazla %{size} olacak şekilde PNG, GIF veya JPG formatında yükleyiniz. %{dimensions}px büyüklüğüne indirgenecektir.
         inbox_url: Kullanmak istediğiniz aktarıcının ön sayfasından URL'yi kopyalayın
-        irreversible: Filtre uygulanmış gönderiler, filtre daha sonra çıkartılsa bile geri dönüşümsüz biçimde kaybolur
+        irreversible: Filtre uygulanmış tootlar, filtre daha sonra çıkartılsa bile geri dönüşümsüz biçimde kaybolur
         locale: Kullanıcı arayüzünün dili, e-postalar ve push bildirimleri
         locked: Takipçilerinizi manuel olarak kabul etmenizi ve gönderilerinizi varsayılan olarak sadece takipçilerinizin göreceği şekilde paylaşmanızı sağlar.
         password: En az 8 karakter kullanın
-        phrase: Metnin büyük/küçük harf durumundan veya gönderinin içerik uyarısından bağımsız olarak eşleştirilecek
+        phrase: Metnin büyük/küçük harf durumundan veya tootun içerik uyarısından bağımsız olarak eşleştirilecek
         scopes: Uygulamanın erişmesine izin verilen API'ler. Üst seviye bir kapsam seçtiyseniz, bireysel kapsam seçmenize gerek yoktur.
-        setting_aggregate_reblogs: Yakın zamanda yinelenmiş gönderiler için yeni yinelemeler gösterme (yalnızca yeni alınan yinelemeleri etkiler)
+        setting_aggregate_reblogs: Yakın zamanda yinelenmiş tootlar için yeni yinelemeler gösterme (yalnızca yeni alınan yinelemeleri etkiler)
         setting_default_sensitive: Hassas medya varsayılan olarak gizlenir ve bir tıklama ile görüntülenebilir
         setting_display_media_default: Hassas olarak işaretlenmiş medyayı gizle
         setting_display_media_hide_all: Tüm medyayı gizle
         setting_display_media_show_all: Hassas olarak işaretlenmiş medyayı göster
         setting_hide_network: Takip edilenler ve takipçiler profilinizde gösterilmeyecek
         setting_noindex: Herkese açık profilinizi ve durum sayfalarınızı etkiler
-        setting_show_application: Gönderi için kullandığınız uygulama, gönderilerinizin detaylı görünümünde gösterilecektir
+        setting_show_application: Tootlamak için kullandığınız uygulama, tootlarınızın detaylı görünümünde gösterilecektir
         setting_use_blurhash: Gradyenler gizli görsellerin renklerine dayanır, ancak detayları gizler
         setting_use_pending_items: Zaman çizelgesi güncellemelerini, akışı otomatik olarak kaydırmak yerine bir tıklamanın arkasına gizleyin
         username: Kullanıcı adınız %{domain} alanında benzersiz olacak
@@ -60,7 +60,7 @@ tr:
       tag:
         name: Harflerin, örneğin daha okunabilir yapmak için, sadece büyük/küçük harf durumlarını değiştirebilirsiniz
       user:
-        chosen_languages: İşaretlendiğinde, yalnızca seçilen dillerdeki karakterler genel zaman çizelgelerinde görüntülenir
+        chosen_languages: İşaretlendiğinde, yalnızca seçilen dillerdeki tootlar genel zaman çizelgelerinde görüntülenir
     labels:
       account:
         fields:
@@ -73,7 +73,7 @@ tr:
       account_warning_preset:
         text: Ön-ayar metni
       admin_account_action:
-        include_statuses: Birdirilen gönderileri e-postaya dahil et
+        include_statuses: Birdirilen tootları e-postaya dahil et
         send_email_notification: E-postayla kullanıcıyı bilgilendir
         text: Özel uyarı
         type: Eylem
@@ -113,19 +113,20 @@ tr:
         setting_aggregate_reblogs: Zaman çizelgesindeki grup yinelemeleri
         setting_auto_play_gif: GIF'leri otomatik oynatt
         setting_boost_modal: Boost etmeden önce onay diyaloğu göster
+        setting_crop_images: Genişletilmemiş tootlardaki resimleri 16x9 olarak kırp
         setting_default_language: Gönderi dili
         setting_default_privacy: Gönderi gizliliği
         setting_default_sensitive: Her zaman hassas medya olarak iÅŸaretle
-        setting_delete_modal: Bir gönderiyi silmeden önce onay iletişim kutusunu göster
+        setting_delete_modal: Bir tootu silmeden önce onay iletişim kutusunu göster
         setting_display_media: Medya görünümü
         setting_display_media_default: Varsayılan
         setting_display_media_hide_all: Tümünü gizle
         setting_display_media_show_all: Tümünü göster
-        setting_expand_spoilers: İçerik uyarılarıyla işaretli gönderileri her zaman genişlet
+        setting_expand_spoilers: İçerik uyarılarıyla işaretli tootları her zaman genişlet
         setting_hide_network: Ağını gizle
         setting_noindex: Arama motoru endekslemesini iptal et
         setting_reduce_motion: Animasyonlarda hareketi azalt
-        setting_show_application: İçerik göndermek için kullanılan uygulamayı belirt
+        setting_show_application: Toot göndermek için kullanılan uygulamayı belirt
         setting_system_font_ui: Sistemin varsayılan yazı tipini kullan
         setting_theme: Site teması
         setting_trends: Bugünün trendlerini göster
@@ -161,7 +162,7 @@ tr:
         listable: Bu etiketin aramalarda ve profil dizininde görünmesine izin ver
         name: Hashtag
         trendable: Bu etiketin trendlerin altında görünmesine izin ver
-        usable: Gönderilerin bu etiketi kullanmasına izin ver
+        usable: Tootların bu etiketi kullanmasına izin ver
     'no': Hayır
     recommended: Önerilen
     required:
diff --git a/config/locales/simple_form.uk.yml b/config/locales/simple_form.uk.yml
index a6ae14f6deb3ef39356f7785007714c53d7bfa48..272d2fe43c0a76cd0b8363960ea2c52a0cbf2d3f 100644
--- a/config/locales/simple_form.uk.yml
+++ b/config/locales/simple_form.uk.yml
@@ -2,6 +2,10 @@
 uk:
   simple_form:
     hints:
+      account_alias:
+        acct: Вкажіть ім'я користувача@домен облікового запису, з якої ви хочете переміститися
+      account_migration:
+        acct: Вкажіть ім'я користувача@домен облікового запису, на яку ви хочете переміститися
       account_warning_preset:
         text: Ви можете використовувати синтаксис дмухів, наприклад URLи, хештеґи та згадки
       admin_account_action:
@@ -14,6 +18,9 @@ uk:
         autofollow: Люди, що зареєструвалися за вашим запрошенням, автоматично підпишуться на вас
         avatar: PNG, GIF, або JPG. Максимум - %{size}. Буде зменшено до %{dimensions}px
         bot: Цей аккаунт в основному виконує автоматичні дії та може не відстежуватіся
+        context: Один або кілька контекстів, до яких повинні бути застосовані фільтри
+        current_password: Для цілей безпеки, будь ласка, введіть пароль поточного облікового запису
+        current_username: Для підтвердження, будь ласка, введіть ім'я користувача поточного облікового запису
         digest: Буде послано тільки після довгого періоду неактивності, та тільки якщо ви отримаєте персональне повідомлення у цей період
         discoverable: Ще один шлях, за яким про вас можуть дізнатися користувачі — каталог профілів
         email: Вам надійде електронний лист з підтвердженням
@@ -25,6 +32,7 @@ uk:
         locked: Буде вимагати від Вас самостійного підтверждення підписників, змінить приватність постів за замовчуванням на "тільки для підписників"
         password: Не менше 8 символів
         phrase: Шукає без врахування регістру у тексті дмуха або у його попередженні про вміст
+        scopes: Які API додатку буде дозволено використовувати. Якщо ви виберете самий верхній, нижчестоящі будуть обрані автоматично.
         setting_aggregate_reblogs: Не показувати передмухи для дмухів, які нещодавно вже були передмухнуті (не вплине на вже отримані передмухи)
         setting_default_sensitive: Дражливі медіа приховані за промовчанням та можуть бути розкрити кліком
         setting_display_media_default: Приховувати медіа, помічені як дражливі
@@ -41,6 +49,8 @@ uk:
         domain: Цей домен зможе отримувати дані з цього серверу. Вхідні дані будуть оброблені та збережені
       featured_tag:
         name: 'Можливо, ви захочете використовувати один з цих:'
+      form_challenge:
+        current_password: Ви входите до безпечної зони
       imports:
         data: Файл CSV, експортований з іншого сервера Mastodon
       invite_request:
@@ -56,6 +66,10 @@ uk:
         fields:
           name: Позначка
           value: Вміст
+      account_alias:
+        acct: Оброблювач старого облікового запису
+      account_migration:
+        acct: Оброблювач нового облікового запису
       account_warning_preset:
         text: Текст шаблону
       admin_account_action:
@@ -96,8 +110,10 @@ uk:
         password: Пароль
         phrase: Ключове слово або фраза
         setting_advanced_layout: Увімкнути розширений web-інтерфейс
+        setting_aggregate_reblogs: Групувати просування в стрічках
         setting_auto_play_gif: Автоматично відтворювати анімовані GIF
         setting_boost_modal: Відображати діалог підтвердження під час передмухування
+        setting_crop_images: Обрізати зображення в нерозкритих постах до 16x9
         setting_default_language: Мова дмухів
         setting_default_privacy: Видимість постів
         setting_default_sensitive: Позначити медіа як дражливе
@@ -128,6 +144,8 @@ uk:
         must_be_follower: Блокувати сповіщення від непідписаних людей
         must_be_following: Блокувати сповіщення від людей, на яких ви не підписані
         must_be_following_dm: Заблокувати прямі сповіщення від людей, на яких ви не підписані
+      invite:
+        comment: Коментар
       invite_request:
         text: Чому ви хочете приєднатися?
       notification_emails:
diff --git a/config/locales/simple_form.ur.yml b/config/locales/simple_form.ur.yml
new file mode 100644
index 0000000000000000000000000000000000000000..2cace5883d37506345d4879a61f6f3692bc2e7c0
--- /dev/null
+++ b/config/locales/simple_form.ur.yml
@@ -0,0 +1 @@
+ur:
diff --git a/config/locales/simple_form.vi.yml b/config/locales/simple_form.vi.yml
new file mode 100644
index 0000000000000000000000000000000000000000..25af1a085534511f42c2a4d5e7357af2ada280cd
--- /dev/null
+++ b/config/locales/simple_form.vi.yml
@@ -0,0 +1,171 @@
+---
+vi:
+  simple_form:
+    hints:
+      account_alias:
+        acct: Chỉ định tên_người_dùng@tênmiền của tài khoản bạn muốn chuyển từ
+      account_migration:
+        acct: Chỉ định tênngườidùng@tênmiền của tài khoản bạn muốn chuyển đến
+      account_warning_preset:
+        text: Bạn có thể sử dụng cú pháp mã thông báo, chẳng hạn như URL, hashtag và đề cập
+      admin_account_action:
+        include_statuses: Người dùng sẽ thấy các toots nào đã gây ra hành động kiểm duyệt hoặc cảnh báo
+        send_email_notification: Người dùng sẽ nhận được lời giải thích về những gì đã xảy ra với tài khoản của họ
+        text_html: Không bắt buộc. Bạn có thể sử dụng cú pháp thổi còi. Bạn có thể <a href="%{path}">thêm các cài đặt trước cảnh báo</a> để tiết kiệm thời gian
+        type_html: Chọn làm gì với <strong>%{acct}</strong>
+        warning_preset_id: Không bắt buộc. Bạn vẫn có thể thêm văn bản tùy chỉnh vào cuối cài đặt trước
+      defaults:
+        autofollow: Những người đăng ký thông qua lời mời sẽ tự động theo dõi bạn
+        avatar: PNG, GIF hoặc JPG. Nhiều nhất là %{size}. Sẽ bị hạ thấp xuống %{dimensions}px
+        bot: Tài khoản này chủ yếu thực hiện các hành động tự động và có thể không được theo dõi
+        context: Một hoặc nhiều bối cảnh nơi bộ lọc nên áp dụng
+        current_password: Vì mục đích bảo mật, vui lòng nhập mật khẩu của tài khoản hiện tại
+        current_username: Để xác nhận, vui lòng nhập tên người dùng của tài khoản hiện tại
+        digest: Chỉ được gửi sau một thời gian dài không hoạt động và chỉ khi bạn đã nhận được bất kỳ tin nhắn cá nhân nào khi bạn vắng mặt
+        discoverable: Thư mục hồ sơ là một cách khác để tài khoản của bạn có thể tiếp cận đối tượng rộng hơn
+        email: Bạn sẽ được gửi một email xác nhận
+        fields: Bạn có thể có tối đa 4 mục được hiển thị dưới dạng bảng trên hồ sơ của bạn
+        header: PNG, GIF hoặc JPG. Nhiều nhất là %{size}. Sẽ bị hạ thấp xuống %{dimensions}px
+        inbox_url: Sao chép URL từ frontpage của rơle bạn muốn sử dụng
+        irreversible: Các toots được lọc sẽ biến mất không thể đảo ngược, ngay cả khi bộ lọc sau đó bị xóa
+        locale: Ngôn ngữ của giao diện người dùng, e-mail và thông báo đẩy
+        locked: Yêu cầu bạn chấp thuận thủ công người theo dõi
+        password: Sử dụng ít nhất 8 ký tự
+        phrase: Sẽ được kết hợp bất kể vỏ bọc trong văn bản hoặc cảnh báo nội dung của một toot
+        scopes: API nào ứng dụng sẽ được phép truy cập. Nếu bạn chọn phạm vi cấp cao nhất, bạn không cần chọn từng phạm vi.
+        setting_aggregate_reblogs: Không hiển thị các mức tăng mới cho các mã thông báo đã được tăng gần đây (chỉ ảnh hưởng đến các lần tăng mới nhận được)
+        setting_default_sensitive: Phương tiện nhạy cảm được ẩn theo mặc định và có thể được tiết lộ bằng một cú nhấp chuột
+        setting_display_media_default: Ẩn phương tiện được đánh dấu là nhạy cảm
+        setting_display_media_hide_all: Luôn ẩn tất cả các phương tiện truyền thông
+        setting_display_media_show_all: Luôn hiển thị phương tiện được đánh dấu là nhạy cảm
+        setting_hide_network: Ai bạn theo dõi và ai theo dõi bạn sẽ không được hiển thị trên hồ sơ của bạn
+        setting_noindex: Ảnh hưởng đến hồ sơ công khai và trang trạng thái của bạn
+        setting_show_application: Ứng dụng bạn sử dụng để mã thông báo sẽ được hiển thị trong chế độ xem chi tiết các mã thông báo của bạn
+        setting_use_blurhash: Các lớp được dựa trên màu sắc của hình ảnh ẩn nhưng che giấu bất kỳ chi tiết nào
+        setting_use_pending_items: Ẩn các cập nhật dòng thời gian đằng sau một nhấp chuột thay vì tự động cuộn nguồn cấp dữ liệu
+        username: Tên người dùng của bạn sẽ là duy nhất trên %{domain}
+        whole_word: Khi từ khóa hoặc cụm từ chỉ là chữ và số, nó sẽ chỉ được áp dụng nếu nó phù hợp với toàn bộ từ
+      domain_allow:
+        domain: Tên miền này sẽ có thể tìm nạp dữ liệu từ máy chủ này và dữ liệu đến từ nó sẽ được xử lý và lưu trữ
+      featured_tag:
+        name: 'Bạn có thể muốn sử dụng một trong những điều sau đây:'
+      form_challenge:
+        current_password: Bạn đang vào một khu vực an toàn
+      imports:
+        data: Tệp CSV được xuất từ máy chủ Mastodon khác
+      invite_request:
+        text: Điều này sẽ giúp chúng tôi xem xét ứng dụng của bạn
+      sessions:
+        otp: 'Nhập mã hai yếu tố được tạo bởi ứng dụng điện thoại của bạn hoặc sử dụng một trong các mã khôi phục của bạn:'
+      tag:
+        name: Bạn chỉ có thể thay đổi vỏ của các chữ cái, ví dụ, để dễ đọc hơn
+      user:
+        chosen_languages: Khi được chọn, chỉ các toots trong các ngôn ngữ được chọn sẽ được hiển thị theo các mốc thời gian công khai
+    labels:
+      account:
+        fields:
+          name: Nhãn
+          value: Ná»™i dung
+      account_alias:
+        acct: Xử lý tài khoản cũ
+      account_migration:
+        acct: Xử lý tài khoản mới
+      account_warning_preset:
+        text: Văn bản cài sẵn
+      admin_account_action:
+        include_statuses: Bao gồm các mã thông báo được báo cáo trong e-mail
+        send_email_notification: Thông báo cho người dùng mỗi email
+        text: Cảnh báo tùy chỉnh
+        type: Hoạt động
+        types:
+          disable: Vô hiệu hóa
+          none: Không làm gì cả
+          silence: khoảng lặng
+          suspend: Đình chỉ và xóa dữ liệu tài khoản
+        warning_preset_id: Sử dụng cài đặt trước cảnh báo
+      defaults:
+        autofollow: Mời theo dõi tài khoản của bạn
+        avatar: hình đại diện
+        bot: Đây là tài khoản bot
+        chosen_languages: Ngôn ngữ bộ lọc
+        confirm_new_password: Xác nhận mật khẩu mới
+        confirm_password: Xác nhận mật khẩu
+        context: Bối cảnh bộ lọc
+        current_password: Mật khẩu hiện tại
+        data: Dữ liệu
+        discoverable: Liệt kê tài khoản này trên thư mục
+        display_name: Tên hiển thị
+        email: Địa chỉ email
+        expires_in: Hết hạn sau
+        fields: Hồ sơ siêu dữ liệu
+        header: Tiêu đề
+        inbox_url: URL của hộp thư đến chuyển tiếp
+        irreversible: Thả thay vì trốn
+        locale: Ngôn ngữ giao diện
+        locked: Khóa tài khoản
+        max_uses: Số lần sử dụng tối đa
+        new_password: Mật khẩu mới
+        note: Sinh học
+        otp_attempt: Mã hai yếu tố
+        password: Mật khẩu
+        phrase: Từ khóa hoặc cụm từ
+        setting_advanced_layout: Kích hoạt giao diện web nâng cao
+        setting_aggregate_reblogs: Nhóm tăng thời gian
+        setting_auto_play_gif: Tự động phát GIF động
+        setting_boost_modal: Hiển thị hộp thoại xác nhận trước khi tăng
+        setting_crop_images: Cắt bớt ảnh trong những tút không thể mở rộng về 16x9
+        setting_default_language: Ngôn ngữ đăng
+        setting_default_privacy: Đăng quyền riêng tư
+        setting_default_sensitive: Luôn đánh dấu phương tiện là nhạy cảm
+        setting_delete_modal: Hiển thị hộp thoại xác nhận trước khi xóa mã thông báo
+        setting_display_media: Hiển thị đa phương tiện
+        setting_display_media_default: Mặc định
+        setting_display_media_hide_all: Giấu tất cả
+        setting_display_media_show_all: Hiển thị tất cả
+        setting_expand_spoilers: Luôn mở rộng các thẻ được đánh dấu bằng cảnh báo nội dung
+        setting_hide_network: Ẩn mạng của bạn
+        setting_noindex: Từ chối lập chỉ mục công cụ tìm kiếm
+        setting_reduce_motion: Giảm chuyển động trong hình ảnh động
+        setting_show_application: Tiết lộ ứng dụng được sử dụng để gửi toots
+        setting_system_font_ui: Sử dụng phông chữ mặc định của hệ thống
+        setting_theme: Chủ đề trang web
+        setting_trends: Hiển thị xu hướng ngày nay
+        setting_unfollow_modal: Hiển thị hộp thoại xác nhận trước khi hủy theo dõi ai đó
+        setting_use_blurhash: Hiển thị độ dốc đầy màu sắc cho phương tiện ẩn
+        setting_use_pending_items: Chế độ chậm
+        severity: Mức độ nghiêm trọng
+        type: Nhập khẩu
+        username: tên tài khoản
+        username_or_email: Tên người dùng hoặc email
+        whole_word: Cả từ
+      featured_tag:
+        name: Dấu thăng
+      interactions:
+        must_be_follower: Chặn thông báo từ những người không theo dõi
+        must_be_following: Chặn thông báo từ những người bạn không theo dõi
+        must_be_following_dm: Chặn tin nhắn trực tiếp từ những người bạn không theo dõi
+      invite:
+        comment: Bình luận
+      invite_request:
+        text: Tại sao bạn muốn tham gia?
+      notification_emails:
+        digest: Gửi e-mail tiêu hóa
+        favourite: Gửi e-mail khi ai đó yêu thích trạng thái của bạn
+        follow: Gửi e-mail khi ai đó theo dõi bạn
+        follow_request: Gửi e-mail khi ai đó yêu cầu theo dõi bạn
+        mention: Gửi e-mail khi ai đó nhắc đến bạn
+        pending_account: Gửi e-mail khi một tài khoản mới cần xem xét
+        reblog: Gửi e-mail khi ai đó tăng trạng thái của bạn
+        report: Gửi e-mail khi một báo cáo mới được gửi
+        trending_tag: Gửi e-mail khi một hashtag chưa được xem xét đang là xu hướng
+      tag:
+        listable: Cho phép hashtag này xuất hiện trong các tìm kiếm và trên thư mục hồ sơ
+        name: Dấu thăng
+        trendable: Cho phép hashtag này xuất hiện theo xu hướng
+        usable: Cho phép các toots sử dụng hashtag này
+    'no': Không
+    recommended: Đề xuất
+    required:
+      mark: "*"
+      text: cần thiết
+    'yes': Đúng
diff --git a/config/locales/simple_form.zh-CN.yml b/config/locales/simple_form.zh-CN.yml
index 9bff15d1d7b9abe062565b43bb809f19bba74afa..62bc6b2f74d9746a4fb79af7768c3e4272c0b504 100644
--- a/config/locales/simple_form.zh-CN.yml
+++ b/config/locales/simple_form.zh-CN.yml
@@ -2,10 +2,15 @@
 zh-CN:
   simple_form:
     hints:
+      account_alias:
+        acct: 指定您想要迁移过来的帐号的 用户名@站点域名
+      account_migration:
+        acct: 指定你想迁移过去的帐号的 用户名@站点域名
       account_warning_preset:
         text: 你可以使用嘟文格式,在嘟文中加入 URL、话题标签和提及“@”
       admin_account_action:
-        send_email_notification: 用户将收到对其帐号上发生的事的解释
+        include_statuses: 用户将会看到哪些嘟文导致了审核行为或警告
+        send_email_notification: 用户将收到对其账号上发生的事的解释
         text_html: 可选。你可以使用嘟文格式。你可以<a href="%{path}">预置警告</a>以节省时间
         type_html: 用<strong>%{acct}</strong>选择做什么
         warning_preset_id: 可选。你可以在预置文本末尾添加自定义文本
@@ -14,7 +19,10 @@ zh-CN:
         avatar: 文件大小限制 %{size},只支持 PNG、GIF 或 JPG 格式。图片分辨率将会压缩至 %{dimensions}px
         bot: 来自这个帐户的绝大多数操作都是自动进行的,并且可能无人监控
         context: 过滤器的应用场景
+        current_password: 为了安全起见,请输入当前账号的密码
+        current_username: 请输入当前账号的用户名以确认
         digest: 仅在你长时间未登录,且收到了私信时发送
+        discoverable: 用户目录能够让您的帐号广为人知
         email: 我们会向你发送一封确认邮件
         fields: 这将会在个人资料页上以表格的形式展示,最多 4 个项目
         header: 文件大小限制 %{size},只支持 PNG、GIF 或 JPG 格式。图片分辨率将会压缩至 %{dimensions}px
@@ -34,16 +42,23 @@ zh-CN:
         setting_noindex: 此设置会影响到你的公开个人资料以及嘟文页面
         setting_show_application: 你用来发表嘟文的应用程序将会在你嘟文的详细内容中显示
         setting_use_blurhash: 渐变是基于模糊后的隐藏内容生成的
+        setting_use_pending_items: 关闭自动滚动更新,时间轴会在点击后更新
         username: 你的用户名在 %{domain} 上是独特的
         whole_word: 如果关键词只包含字母和数字,就只会在整个词被匹配时才会套用
+      domain_allow:
+        domain: 该站点将能够从该服务器上拉取数据,并且从那里发过来的数据也会被处理和存储。
       featured_tag:
         name: 你可能想要使用以下之一:
+      form_challenge:
+        current_password: 您正在进入安全区域
       imports:
         data: 从其他 Mastodon 服务器导出的 CSV 文件
       invite_request:
         text: 这会有助于我们处理你的申请
       sessions:
         otp: 输入你手机应用上生成的双重认证码,或者任意一个恢复代码:
+      tag:
+        name: 您只能改变字母的大小写,让它更易读
       user:
         chosen_languages: 仅选中语言的嘟文会出现在公共时间轴上(全不选则显示所有语言的嘟文)
     labels:
@@ -51,9 +66,14 @@ zh-CN:
         fields:
           name: 标签
           value: 内容
+      account_alias:
+        acct: 处理旧帐号
+      account_migration:
+        acct: 处理新账号
       account_warning_preset:
         text: 预置文本
       admin_account_action:
+        include_statuses: 在电子邮件中包括已举报的嘟文
         send_email_notification: 通过邮件提醒此用户
         text: 内容警告
         type: 动作
@@ -61,7 +81,7 @@ zh-CN:
           disable: 禁用
           none: 忽略
           silence: 静音
-          suspend: 停用并永久删除账户数据
+          suspend: 停用并永久删除账号数据
         warning_preset_id: 使用预置警告
       defaults:
         autofollow: 让被邀请人关注你的帐户
@@ -73,7 +93,7 @@ zh-CN:
         context: 过滤器场景
         current_password: 当前密码
         data: 数据文件
-        discoverable: 在本站用户目录中收录此账户
+        discoverable: 在本站用户目录中收录此账号
         display_name: 昵称
         email: 电子邮件地址
         expires_in: 失效时间
@@ -93,6 +113,7 @@ zh-CN:
         setting_aggregate_reblogs: 在时间轴中合并转嘟
         setting_auto_play_gif: 自动播放 GIF 动画
         setting_boost_modal: 在转嘟前询问我
+        setting_crop_images: 把未展开嘟文中的图片裁剪到 16x9
         setting_default_language: 发布语言
         setting_default_privacy: 嘟文默认可见范围
         setting_default_sensitive: 总是将我发送的媒体文件标记为敏感内容
@@ -108,8 +129,10 @@ zh-CN:
         setting_show_application: 展示你用来发嘟的应用
         setting_system_font_ui: 使用系统默认字体
         setting_theme: 站点主题
+        setting_trends: 显示今日热门
         setting_unfollow_modal: 在取消关注前询问我
         setting_use_blurhash: 将隐藏媒体显示为彩色渐变
+        setting_use_pending_items: 慢速模式
         severity: 级别
         type: 导入数据类型
         username: 用户名
@@ -121,21 +144,28 @@ zh-CN:
         must_be_follower: 屏蔽来自未关注我的用户的通知
         must_be_following: 屏蔽来自我未关注的用户的通知
         must_be_following_dm: 屏蔽来自我未关注的用户的私信
+      invite:
+        comment: 评论
       invite_request:
         text: 你为什么想要加入?
       notification_emails:
         digest: 发送摘要邮件
-        favourite: 当有用户收藏了我的嘟文时,发送电子邮件提醒我
+        favourite: 当有用户喜欢了我的嘟文时,发送电子邮件提醒我
         follow: 当有用户关注我时,发送电子邮件提醒我
         follow_request: 当有用户向我发送关注请求时,发送电子邮件提醒我
         mention: 当有用户在嘟文中提及我时,发送电子邮件提醒我
-        pending_account: 在有账户需要审核时,发送电子邮件提醒我
+        pending_account: 在有帐号需要审核时,发送电子邮件提醒我
         reblog: 当有用户转嘟了我的嘟文时,发送电子邮件提醒我
         report: 在提交新举报时,发送电子邮件提醒我
+        trending_tag: 当未经审核的话题成为当前热门时发邮件提醒
       tag:
         listable: 允许这个话题标签在用户目录中显示
+        name: 话题标签
+        trendable: 允许在热门下显示此话题
+        usable: 允许嘟文使用此话题标签
     'no': 否
     recommended: 推荐
     required:
+      mark: "*"
       text: å¿…å¡«
     'yes': 是
diff --git a/config/locales/simple_form.zh-HK.yml b/config/locales/simple_form.zh-HK.yml
index 2cb2d75b223cf2840e510f97fe94e9bc379b01da..235d9c76489f8ce90c50dbdde0defee4e17c0365 100644
--- a/config/locales/simple_form.zh-HK.yml
+++ b/config/locales/simple_form.zh-HK.yml
@@ -2,17 +2,44 @@
 zh-HK:
   simple_form:
     hints:
+      account_alias:
+        acct: 指定欲移動之帳戶的 使用者名稱@站台
+      account_migration:
+        acct: 指定欲移動至之帳戶的 使用者名稱@站台
+      account_warning_preset:
+        text: 您可使用嘟文語法,例如網址、「#」標籤和提及功能
+      admin_account_action:
+        send_email_notification: 使用者將收到帳戶發生之事情的解釋
+        text_html: 選用。您能使用嘟文語法。您可 <a href="%{path}">新增警告預設</a> 來節省時間
+        type_html: 設定要使用 <strong>%{acct}</strong> 做的事
+        warning_preset_id: 選用。您仍可在預設的結尾新增自訂文字
       defaults:
         autofollow: 通過邀請網址註冊的用戶將會自動關注你
         avatar: 支援 PNG, GIF 或 JPG 圖片,檔案最大為 %{size},會縮裁成 %{dimensions}px
         bot: 提醒用戶本帳號是機械人
+        context: 應該套用過濾器的一項或多項內容
         digest: 僅在你長時間未登錄,且收到了私信時發送
+        email: 您將收到一封確認電子郵件
         fields: 個人資料頁可顯示多至 4 個項目
         header: 支援 PNG, GIF 或 JPG 圖片,檔案最大為 %{size},會縮裁成 %{dimensions}px
+        inbox_url: 從您想要使用的中繼首頁複製網址
+        irreversible: 已過濾的嘟文將會不可逆的消失,即便過濾器移除之後也一樣
         locale: 使用者介面、電郵和通知的語言
         locked: 你必須人手核准每個用戶對你的關注請求,而你的文章私隱會被預設為「只有關注你的人能看」
+        password: 使用至少 8 個字元
+        phrase: 無論是嘟文的本文或是內容警告都會被過濾
+        scopes: 允許讓應用程式存取的 API。 若您選擇最高階範圍,則無須選擇個別項目。
+        setting_aggregate_reblogs: 請勿顯示最近已被轉嘟之嘟文的最新轉嘟(只影響最新收到的嘟文)
+        setting_display_media_default: 隱藏標為敏感的媒體
+        setting_display_media_hide_all: 總是隱藏所有媒體
+        setting_display_media_show_all: 總是顯示標為敏感的媒體
         setting_hide_network: 你關注的人和關注你的人將不會在你的個人資料頁上顯示
         setting_noindex: 此設定會影響到你的公開個人資料以及文章頁面
+        setting_show_application: 您用來發嘟文的應用程式將會在您嘟文的詳細檢視顯示
+        username: 您的使用者名稱將在 %{domain} 是獨一無二的
+        whole_word: 如果關鍵字或詞組僅有字母與數字,則其將只在符合整個單字的時候才會套用
+      featured_tag:
+        name: 您可能想使用其中一個:
       imports:
         data: 自其他服務站匯出的 CSV 檔案
       sessions:
@@ -24,6 +51,18 @@ zh-HK:
         fields:
           name: 標籤
           value: 內容
+      account_warning_preset:
+        text: 預設文字
+      admin_account_action:
+        send_email_notification: 透過電子信件通知使用者
+        text: 自訂警告
+        type: 動作
+        types:
+          disable: 停用
+          none: 什麼也不做
+          silence: 安靜
+          suspend: 停權並不可逆的刪除帳戶資料
+        warning_preset_id: 使用警告預設
       defaults:
         autofollow: 邀請別人關注你的賬號
         avatar: 個人頭像
@@ -31,13 +70,17 @@ zh-HK:
         chosen_languages: 語言過濾
         confirm_new_password: 確認新密碼
         confirm_password: 確認密碼
+        context: 過濾情境
         current_password: 目前密碼
         data: 資料
+        discoverable: 在目錄列出此帳戶
         display_name: 顯示名稱
         email: 電郵地址
         expires_in: 失效時間
         fields: 資料
         header: 個人頁面頂部
+        inbox_url: 中繼收件匣的 URL
+        irreversible: 放棄而非隱藏
         locale: 介面語言
         locked: 將用戶轉為「私人」
         max_uses: 最大使用次數
@@ -45,15 +88,23 @@ zh-HK:
         note: 簡介
         otp_attempt: 雙重認證碼
         password: 密碼
+        phrase: 關鍵字或片語
+        setting_aggregate_reblogs: 時間軸中的群組轉嘟
         setting_auto_play_gif: 自動播放 GIF
         setting_boost_modal: 在轉推前詢問我
         setting_default_language: 文章語言
         setting_default_privacy: 文章預設為
         setting_default_sensitive: 預設我的內容為敏感內容
         setting_delete_modal: 刪推前詢問我
+        setting_display_media: 媒體顯示
+        setting_display_media_default: 預設
+        setting_display_media_hide_all: 全部隱藏
+        setting_display_media_show_all: 全部顯示
+        setting_expand_spoilers: 永遠展開標有內容警告的嘟文
         setting_hide_network: 隱藏你的社交網絡
         setting_noindex: 阻止搜尋引擎檢索
         setting_reduce_motion: 減低動畫效果
+        setting_show_application: 顯示用來傳送嘟文的應用程式
         setting_system_font_ui: 使用系統預設字型
         setting_theme: 網站主題
         setting_unfollow_modal: 取消關注前跳出詢問我
@@ -61,6 +112,9 @@ zh-HK:
         type: 匯入資料類型
         username: 用戶名稱
         username_or_email: 用戶名稱或電郵
+        whole_word: 整個詞彙
+      featured_tag:
+        name: "「#」標籤"
       interactions:
         must_be_follower: 隱藏沒有關注你的用戶的通知
         must_be_following: 隱藏你不關注的用戶的通知
@@ -72,7 +126,9 @@ zh-HK:
         follow_request: 當有用戶要求關注你時,發電郵通知
         mention: 當有用戶在文章提及你時,發電郵通知
         reblog: 當有用戶轉推你的文章時,發電郵通知
+        report: 當提交新檢舉時傳送電子郵件
     'no': 否
     required:
+      mark: "*"
       text: 必須填寫
     'yes': 是
diff --git a/config/locales/simple_form.zh-TW.yml b/config/locales/simple_form.zh-TW.yml
index fbbbff6ca2de7db468956b2ef9e0dcc43a484819..7de349ee32673855a99ec348e94e30ff1a71eb95 100644
--- a/config/locales/simple_form.zh-TW.yml
+++ b/config/locales/simple_form.zh-TW.yml
@@ -129,5 +129,6 @@ zh-TW:
         report: 當提交新檢舉時傳送電子郵件
     'no': 否
     required:
+      mark: "*"
       text: 必須填寫
     'yes': 是
diff --git a/config/locales/sk.yml b/config/locales/sk.yml
index 4975035fe2a7753ae98f6f87e69458a59f4723b8..b127bee0f2d269af1d729498dd7f8ee01dfcb1f6 100644
--- a/config/locales/sk.yml
+++ b/config/locales/sk.yml
@@ -9,8 +9,9 @@ sk:
     administered_by: 'Správcom je:'
     api: API
     apps: Aplikácie
-    apps_platforms: Uživaj Mastodon z iOSu, Androidu a iných platforiem
+    apps_platforms: Užívaj Mastodon z iOSu, Androidu, a iných platforiem
     browse_directory: Prehľadávaj databázu profilov, filtruj podľa záujmov
+    browse_local_posts: Prebádaj naživo prúd verejných príspevkov z tohto servera
     browse_public_posts: Sleduj naživo prúd verejných príspevkov na Mastodone
     contact: Kontakt
     contact_missing: Nezadaný
@@ -40,6 +41,8 @@ sk:
     unavailable_content_description:
       domain: Server
       reason: 'Dôvod:'
+      rejecting_media: 'Mediálne súbory z týchto serverov nebudú spracované, alebo ukladané, a nebudú z nich zobrazované žiadne náhľady, vyžadujúc ručné prekliknutie priamo až k pôvodnému súboru:'
+      silenced: 'Príspevky z týchto serverov budú skryté z verejných osí a z konverzácií, a nebudú vytvorené žiadné oboznámena ohľadom aktivity ich užívateľov, pokiaľ ich nenásleduješ:'
     user_count_after:
       few: užívateľov
       many: užívatelia
@@ -81,6 +84,7 @@ sk:
     roles:
       admin: Správca
       bot: Bot
+      group: Skupina
       moderator: Moderátor
     unavailable: Profil nieje dostupný
     unfollow: Prestaň sledovať
@@ -121,9 +125,7 @@ sk:
       email_status: Stav emailu
       enable: Povoľ
       enabled: Povolený
-      feed_url: adresa časovej osi
       followers: Sledujúci
-      followers_url: URL adresa sledujúcich
       follows: Sledovania
       header: Záhlavie
       inbox_url: URL adresa prijatých správ
@@ -151,10 +153,8 @@ sk:
       no_account_selected: Nedošlo k žiadnému pozmeneniu účtov, keďže žiadne neboli vybrané
       no_limits_imposed: Nie sú stanovené žiadné obmedzenia
       not_subscribed: Neodoberá
-      outbox_url: URL poslaných
       pending: Vyžaduje posúdenie
       perform_full_suspension: Vylúč
-      profile_url: URL adresa profilu
       promote: Vyzdvihni
       protocol: Protokol
       public: Verejná časová os
@@ -177,8 +177,8 @@ sk:
         moderator: Moderátor
         staff: ÄŒlen
         user: Užívateľ
-      salmon_url: Salmon adresa
       search: Hľadaj
+      search_same_ip: Ostatní užívatelia s rovnakou IP adresou
       shared_inbox_url: URL zdieľanej schránky
       show:
         created_reports: Vytvorené hlásenia
@@ -205,20 +205,22 @@ sk:
         confirm_user: "%{name} potvrdil emailovú adresu používateľa %{target}"
         create_account_warning: "%{name} poslal/a varovanie užívateľovi %{target}"
         create_custom_emoji: "%{name} nahral nový emoji %{target}"
+        create_domain_allow: "%{name} pridal/a doménu %{target} na zoznam povolených"
         create_domain_block: "%{name} zablokoval doménu %{target}"
         create_email_domain_block: "%{name} pridal e-mailovú doménu %{target} na zoznam zakázaných"
         demote_user: "%{name} degradoval používateľa %{target}"
         destroy_custom_emoji: "%{name} zničil/a %{target} emoji"
+        destroy_domain_allow: "%{name} odstránil/a doménu %{target} zo zoznamu povolených"
         destroy_domain_block: "%{name} povolil doménu %{target}"
         destroy_email_domain_block: "%{name} pridal e-mailovú doménu %{target} na zoznam povolených"
         destroy_status: "%{name} zmazal status %{target}"
-        disable_2fa_user: "%{name} zakázal 2FA pre používateľa %{target}"
+        disable_2fa_user: "%{name} vypol požiadavku 2FA pre používateľa %{target}"
         disable_custom_emoji: "%{name} zakázal emoji %{target}"
         disable_user: "%{name} zakázal prihlásenie pre používateľa %{target}"
         enable_custom_emoji: "%{name} povolil emoji %{target}"
         enable_user: "%{name} povolil prihlásenie pre používateľa %{target}"
         memorialize_account: "%{name} zmenil účet %{target} na pamätnú stránku"
-        promote_user: "%{name} povýšil/a používateľa %{target}"
+        promote_user: "%{name} vyzdvihli užívateľa %{target}"
         remove_avatar_user: "%{name} odstránil/a %{target}ov avatár"
         reopen_report: "%{name} znovu otvoril/a hlásenie užívateľa %{target}"
         reset_password_user: "%{name} resetoval/a heslo pre používateľa %{target}"
@@ -240,7 +242,7 @@ sk:
       copy_failed_msg: Nebolo možné vytvoriť miestnu kópiu tohto emoji
       create_new_category: Vytvor novú kategóriu
       created_msg: Emoji úspešne vytvorené!
-      delete: Zmaž
+      delete: Vymaž
       destroyed_msg: Emoji úspešne zničené!
       disable: Zakáž
       disabled: Vypnuté
@@ -308,12 +310,13 @@ sk:
         create: Vytvor blokovanie domény
         hint: Blokovanie domény stále dovolí vytvárať nové účty v databázi, ale tieto budú spätne automaticky moderované.
         severity:
-          desc_html: "<strong>Stíšenie</strong> urobí všetky príspevky daného účtu neviditeľné pre všetkých ktorí nenásledujú tento účet. <strong>Suspendácia</strong> zmaže všetky príspevky, médiá a profilové informácie. Použi <strong>Žiadne</strong>, ak chceš iba neprijímať súbory médií."
+          desc_html: "<strong>Stíšenie</strong> urobí všetky príspevky daného účtu neviditeľné pre všetkých ktorí nenásledujú tento účet. <strong>Vylúčenie</strong> zmaže všetky príspevky, médiá a profilové informácie. Použi <strong>Žiadne</strong>, ak chceš iba neprijímať súbory médií."
           noop: Nič
           silence: Stíš
           suspend: Vylúč
         title: Nové blokovanie domény
       private_comment: Súkromný komentár
+      private_comment_hint: Odôvodni toto doménové obmedzenie, pre vnútorné vyrozumenie moderátorov.
       public_comment: Verejný komentár
       reject_media: Odmietaj súbory s obrázkami, alebo videami
       reject_media_hint: Vymaže miestne uložené súbory médií a odmietne ich sťahovanie v budúcnosti. Nepodstatné pri vylúčení
@@ -393,6 +396,7 @@ sk:
       pending: Čaká sa na povolenie od prechodného mostu
       save_and_enable: Ulož a povoľ
       setup: Nastav prepojenie s mostom
+      signatures_not_enabled: Prechodové mostíky nebudú fungovať správne, kým je povolený bezpečtnostný režim, alebo biela listina
       status: Stav
       title: Mosty
     report_notes:
@@ -400,12 +404,16 @@ sk:
       destroyed_msg: Poznámka o nahlásení úspešne vymazaná!
     reports:
       account:
-        note: poznámka
-        report: nahlás
+        reports:
+          few: "%{count} hlásení"
+          many: "%{count} hlásenia"
+          one: "%{count} hlásenie"
+          other: "%{count} hlásení"
       action_taken_by: Zákrok vykonal/a
       are_you_sure: Si si istý/á?
       assign_to_self: Priraď sebe
       assigned: Priradený moderátor
+      by_target_domain: Doména nahláseného účtu
       comment:
         none: Žiadne
       created_at: Nahlásené
@@ -471,7 +479,7 @@ sk:
           desc_html: Toto sa zobrazí na hlavnej stránke v prípade, že sú registrácie uzavreté. Možno tu použiť aj HTML kód
           title: Správa o uzavretých registráciách
         deletion:
-          desc_html: Dovoľ každému aby si mohli zmazať svok účet
+          desc_html: Dovoľ každému, aby si mohli vymazať svok účet
           title: Sprístupni možnosť vymazať si účet
         min_invite_role:
           disabled: Nikto
@@ -511,6 +519,9 @@ sk:
         desc_html: Zobraziť verejnú nástenku na hlavnej stránke
         title: Náhľad nástenky
       title: Nastavenia stránky
+      trendable_by_default:
+        desc_html: Ovplyvňuje haštagy ktoré predtým neboli zakázané
+        title: Dovoľ haštagom zobrazovať sa ako populárne, bez predchodzieho posudzovania
       trends:
         desc_html: Verejne zobraz už schválené haštagy, ktoré práve trendujú
         title: Populárne haštagy
@@ -565,6 +576,8 @@ sk:
       subject: Nový haštag očakáva preverenie na %{instance} (#%{name})
   aliases:
     add_new: Vytvor alias
+    created_msg: Nový alias úspešne vytvorený. Teraz môžeš začať presun zo starého účtu.
+    deleted_msg: Alias úspešne odstránený. Presun z tamtoho účtu na tento už viac nebude možný.
     remove: Odpoj alias
   appearance:
     advanced_web_interface: Pokročilé webové rozhranie
@@ -572,7 +585,10 @@ sk:
     animations_and_accessibility: Animácie a prístupnosť
     confirmation_dialogs: Potvrdzovacie dialógy
     discovery: Nájdenie
+    localization:
+      guide_link_text: Prispievať môže každý.
     sensitive_content: Chúlostivý obsah
+    toot_layout: Rozloženie príspevkov
   application_mailer:
     notification_preferences: Zmeň emailové voľby
     salutation: "%{name},"
@@ -584,7 +600,7 @@ sk:
     created: Aplikácia bola vytvorená úspešne
     destroyed: Aplikáciu sa podarilo odstrániť
     invalid_url: Zadaná URL adresa je nesprávna
-    regenerate_token: Znovu vygenerovať prístupový token
+    regenerate_token: Znovu vygeneruj prístupový token
     token_regenerated: Prístupový token bol úspešne vygenerovaný znova
     warning: Na tieto údaje dávaj ohromný pozor. Nikdy ich s nikým nezďieľaj!
     your_token: Tvoj prístupový token
@@ -637,6 +653,7 @@ sk:
     title: Následuj %{acct}
   challenge:
     confirm: Pokračuj
+    hint_html: "<strong>Tip:</strong> Hodinu nebudeme znovu vyžadovať tvoje heslo."
     invalid_password: Nesprávne heslo
     prompt: Pre pokračovanie potvrď svoje heslo
   datetime:
@@ -654,6 +671,7 @@ sk:
       x_months: "%{count}mesiace"
       x_seconds: "%{count}sek"
   deletes:
+    challenge_not_passed: Údaje, ktoré si zadal/a, sú nesprávne
     confirm_password: Napíšte svoje terajšie heslo pre overenie vašej identity
     confirm_username: Zadaj svoju prezývku, na potvrdenie úkonu
     proceed: Vymaž účet
@@ -662,6 +680,10 @@ sk:
       before: 'Než budeš pokračovať, prosím pozorne si prečítaj tieto poznámky:'
       caches: Obsah, ktorý bol predčítaný inými servermi môže zanechať pozostatky
       data_removal: Tvoje príspevky a iné dáta budú natrvalo odstránené
+      email_change_html: Môžeš si <a href="%{path}">zmeniť svoju emailovú adresu</a> bez mazania účtu
+      email_contact_html: Ak stále neprichádza, môžeš poslať email na <a href="mailto:%{email}">%{email}</a> so žiadosťou o pomoc
+      email_reconfirmation_html: Ak ti potvrdzovací email neprichádza, môžeš si ho <a href="%{path}">vyžiadať znovu</a>
+      irreversible: Nebudeš môcť navrátiť, alebo znova aktivovať svoj účet
       more_details_html: Pre viac podrobností, pozri <a href="%{terms_path}">zásady súkromia</a>.
       username_available: Tvoje užívateľské meno bude znova dostupné
       username_unavailable: Tvoja prezývka ostane neprístupná
@@ -700,7 +722,6 @@ sk:
     blocks: Blokujete
     csv: CSV
     domain_blocks: Blokované domény
-    follows: Následujete
     lists: Zoznamy
     mutes: Stíšil/a si
     storage: Úložisko médií
@@ -721,6 +742,7 @@ sk:
       invalid_irreversible: Nezvratné filtrovanie funguje iba so súvislostiami domovskej osi a oboznámení
     index:
       delete: Vymaž
+      empty: Nemáš žiadné filtrovanie.
       title: Triedenia
     new:
       title: Pridaj nové triedenie
@@ -812,15 +834,20 @@ sk:
   migrations:
     acct: prezývka@doména nového účtu
     cancel: Zruš presmerovanie
+    cancel_explanation: Zrušenie presmerovania znovu aktivuje tvoj súčasný účet, ale neprenesie naspäť sledovateľov, ktorí už boli presunutý na tamten účet.
     cancelled_msg: Presmerovanie úspešne zrušené.
     errors:
+      already_moved: je ten istý účet, na ktorý si sa už presunul/a
       missing_also_known_as: neodkazuje spätne na tento účet
       move_to_self: nemôže to byť tvoj súčasný účet
       not_found: nebolo možné nájsť
       on_cooldown: Si v spánkovom stave
     followers_count: Následovatelia v čase presunu
     incoming_migrations: Presúvam sa z iného účtu
+    incoming_migrations_html: K presunutiu z iného účtu na tento, si najskôr potrebuješ <a href="%{path}">vytvoriť alias pre účet</a>.
+    moved_msg: Tvoj účet teraz presmerováva na %{acct} a tvoji sledovatelia sú presúvaní tam.
     not_redirecting: Tvoj účet v súčasnosti nepresmerováva na žiaden iný účet.
+    on_cooldown: Účet si si presunul/a len nedávno. Táto vymoženosť bude znovu sprístupnená za %{count} dní.
     past_migrations: Predošlé presuny
     proceed_with_move: Presuň sledovateľov
     redirecting_to: Tvoj účet presmerováva na %{acct}.
@@ -828,7 +855,12 @@ sk:
     warning:
       backreference_required: Nový účet musí byť najskôr nastavený tak, aby spätne odkazoval na tento
       before: 'Než budeš pokračovať, prosím pozorne si prečítaj tieto poznámky:'
+      cooldown: Po presunutí je tu istá zahrievacia doba, počas ktorej sa nebudeš môcť znova presunúť
+      disabled_account: Tvoj súčasný účet už po tomto nebude plne použiteľný. Stále ale budeš mať prístup ku stiahnutiu dát a možnosti znovu-aktivácie.
+      followers: Tento úkon presunie všetkých následovateľov zo súčasného účtu na nový účet
+      only_redirect_html: Ako alternatívu, môžeš <a href="%{path}">iba nastaviť presmerovanie na tvoj profil</a>.
       other_data: Žiadne iné dáta nebudú presunuté automaticky
+      redirect: Tvoj súčastný účet bude aktualizovaný s oznamom o presunutí a bude vylúčený z vyhľadávania
   moderation:
     title: Moderovanie
   notification_mailer:
@@ -869,6 +901,10 @@ sk:
       body: 'Tvoj príspevok bol vyzdvihnutý užívateľom %{name}:'
       subject: "%{name} vyzdvihli tvoj príspevok"
       title: Novo vyzdvyhnuté
+  notifications:
+    email_events: Udalosti oznamované emailom
+    email_events_hint: 'Vyber si udalosti, pre ktoré chceš dostávať oboznámenia:'
+    other_settings: Ostatné oboznamovacie nastavenia
   pagination:
     newer: Novšie
     next: Ďalšie
@@ -891,6 +927,8 @@ sk:
   relationships:
     activity: Aktivita účtu
     dormant: Spiace
+    followers: Následovatelia
+    following: Následovaní
     last_active: Naposledy aktívny
     most_recent: Najnovšie
     moved: Presunuli sa
@@ -952,6 +990,7 @@ sk:
   settings:
     account: Účet
     account_settings: Nastavenia účtu
+    aliases: Aliasy účtov
     appearance: Vzhľad
     authorized_apps: Povolené aplikácie
     back: Späť na Mastodon
@@ -967,8 +1006,10 @@ sk:
     notifications: Oboznámenia
     preferences: Voľby
     profile: Profil
-    relationships: Následovaní a následovatelia
-    two_factor_authentication: Dvoj-faktorové overenie
+    relationships: Sledovania a následovatelia
+    two_factor_authentication: Dvojfázové overenie
+  spam_check:
+    spam_detected: Toto je automatizované hlásenie. Bol odhalený spam.
   statuses:
     attached:
       description: 'Priložené: %{attached}'
@@ -998,6 +1039,11 @@ sk:
       private: Neverejný príspevok nemôže byť pripnutý
       reblog: Vyzdvihnutie sa nedá pripnúť
     poll:
+      total_people:
+        few: "%{count} ľudí"
+        many: "%{count} ľudia"
+        one: "%{count} človek"
+        other: "%{count} ľudí"
       total_votes:
         few: "%{count} hlasov"
         many: "%{count} hlasov"
@@ -1057,11 +1103,11 @@ sk:
       default: "%b %d, %R, %H:%M"
   two_factor_authentication:
     code_hint: Pre potvrdenie teraz zadaj kód vygenerovaný pomocou tvojej overovacej aplikácie
-    description_html: Ak povolíš <strong> dvoj-faktorové overovanie</strong>, na prihlásenie potom budeš potrebovať svoj telefón, ktorý vygeneruje prístupové kódy, čo musíš zadať.
+    description_html: Ak povolíš <strong> dvojfázové overovanie</strong>, na prihlásenie potom budeš potrebovať svoj telefón, ktorý vygeneruje prístupové kódy, čo musíš zadať.
     disable: Zakáž
     enable: Povoľ
-    enabled: Dvoj-faktorové overovanie je povolené
-    enabled_success: Dvoj-faktorové overovanie bolo úspešne povolené
+    enabled: Dvojfázové overovanie je povolené
+    enabled_success: Dvojfázové overovanie úspešne povolené
     generate_recovery_codes: Vygeneruj zálohové kódy
     instructions_html: "<strong>Naskenuj tento QR kód do Google Autentikátora, alebo do podobnej TOTP aplikácie pomocou svojho telefónu.</strong> Od tejto chvíle bude táto aplikácia pre teba generovať kódy ktoré musíš zadať aby si sa prihlásil/a."
     lost_recovery_codes: Zálohové kódy ti umožnia dostať sa k svojmu účtu ak stratíš telefón. Pokiaľ si stratila svoje zálohové kódy, môžeš si ich tu znovu vygenerovať. Tvoje staré zálohové kódy budú zneplatnené.
@@ -1081,6 +1127,7 @@ sk:
         disable: Pokiaľ je tvoj účet zamrazený, tvoje dáta zostávajú nedoknuté, ale nemôžeš v rámci neho nič robiť, až kým nebude odomknutý.
         silence: Kým máš účet obmedzený, tvoje príspevky na tomto serveri uvidia iba tí ľudia, ktorí ťa už následujú, a môžeš byť vylúčený/á z rôznych verejných záznamov. Ostatní ťa však stále budú môcť následovať manuálne.
         suspend: Tvoj účet bol vylúčený, a všetky tvoje príspevky a nahraté médiálné súbory boli nenávratne zmazané z tohto serveru, a zo serverov na ktorých si mal následovateľov.
+      get_in_touch: Môžeš na tento email odpovedať, pre skontaktovanie sa s tímom %{instance}.
       review_server_policies: Prehodnoť pravidlá servera
       statuses: 'Konkrétne kvôli:'
       subject:
diff --git a/config/locales/sl.yml b/config/locales/sl.yml
index 22b58e7b629fd7066b3f5e9fcb8f5355482e7d07..c078cea1bc23bdc3ec7833fa9f2809d03499a61e 100644
--- a/config/locales/sl.yml
+++ b/config/locales/sl.yml
@@ -114,9 +114,7 @@ sl:
       email_status: Stanje e-pošte
       enable: Omogoči
       enabled: Omogočeno
-      feed_url: URL vira
       followers: Sledilci
-      followers_url: URL sledilcev
       follows: Sledi
       header: Glava
       inbox_url: URL mape "Prejeto"
@@ -144,10 +142,8 @@ sl:
       no_account_selected: Noben račun ni bil spremenjen, ker ni bil izbran noben
       no_limits_imposed: Brez omejitev
       not_subscribed: Ni naročen
-      outbox_url: URL za pošiljanje
       pending: ÄŒakanje na pregled
       perform_full_suspension: Suspendiraj
-      profile_url: URL profila
       promote: Promoviraj
       protocol: Protokol
       public: Javen
@@ -170,7 +166,6 @@ sl:
         moderator: Moderator
         staff: Osebje
         user: Uporabnik
-      salmon_url: URL lososa
       search: Iskanje
       shared_inbox_url: URL mape "Prejeto v skupni rabi"
       show:
@@ -375,9 +370,6 @@ sl:
       created_msg: Opomba o prijavi je uspešno ustvarjena!
       destroyed_msg: Opomba o prijavi je uspešno izbrisana!
     reports:
-      account:
-        note: opomba
-        report: prijava
       action_taken_by: Dejanje, ki ga je sprejel
       are_you_sure: Ali ste prepričani?
       assign_to_self: Dodeli meni
@@ -623,7 +615,6 @@ sl:
     blocks: Blokirate
     csv: CSV
     domain_blocks: Bloki domene
-    follows: Sledite
     lists: Seznami
     mutes: Utišate
     storage: Shranjeni mediji
diff --git a/config/locales/sq.yml b/config/locales/sq.yml
index ac811b0b0e73f8cf531c1272e8441c9330a72566..c4d95a6f751f75f502b5f2948c7f0e82ce5f2c45 100644
--- a/config/locales/sq.yml
+++ b/config/locales/sq.yml
@@ -81,9 +81,7 @@ sq:
       email_status: Gjendje email-i
       enable: Aktivizoje
       enabled: E aktivizuar
-      feed_url: URL prurjeje
       followers: Ndjekës
-      followers_url: URL Ndjekësish
       follows: Ndjekje
       header: Krye
       inbox_url: URL Mesazhesh të Marrë
@@ -108,9 +106,7 @@ sq:
       most_recent_ip: IP-ja më e freskët
       no_limits_imposed: Pa imponim kufijsh
       not_subscribed: Jo i pajtuar
-      outbox_url: URL Mesazhesh të Dërguar
       perform_full_suspension: Pezulloje
-      profile_url: URL profili
       promote: Promovojeni
       protocol: Protokoll
       public: Publike
@@ -315,9 +311,6 @@ sq:
       created_msg: Shënimi i raportimit u krijua me sukses!
       destroyed_msg: Shënimi i raportimit u fshi me sukses!
     reports:
-      account:
-        note: shënim
-        report: raportojeni
       action_taken_by: Veprimi i ndërmarrë nga
       are_you_sure: A jeni i sigurt?
       assign_to_self: Caktojani vetes
@@ -518,7 +511,6 @@ sq:
       size: Madhësi
     blocks: Bllokoni
     domain_blocks: Bllokime përkatësish
-    follows: Ndiqni
     lists: Lista
     mutes: Heshtoni
     storage: Depozitim për media
diff --git a/config/locales/sr-Latn.yml b/config/locales/sr-Latn.yml
index 948c5b65f2ba7b285600fa65748c519add4426a1..9813829346d6a9e788abbf2b1cc187f96b680517 100644
--- a/config/locales/sr-Latn.yml
+++ b/config/locales/sr-Latn.yml
@@ -47,9 +47,7 @@ sr-Latn:
       email_status: Status e-pošte
       enable: Uključi
       enabled: Uključeno
-      feed_url: Adresa dovoda
       followers: Pratioci
-      followers_url: Adresa pratioca
       follows: Praćeni
       inbox_url: Adresa sandučeta
       location:
@@ -69,9 +67,7 @@ sr-Latn:
       most_recent_activity: Najskorija aktivnost
       most_recent_ip: Najskorija IP adresa
       not_subscribed: Nije pretplaćen
-      outbox_url: Odlazno sanduče
       perform_full_suspension: Izvrši kompletno isključenje
-      profile_url: Adresa profila
       promote: Unapredi
       protocol: Protokol
       public: Javno
@@ -87,7 +83,6 @@ sr-Latn:
       roles:
         staff: Osoblje
         user: Korisnik
-      salmon_url: Salmon adresa
       search: Pretraga
       shared_inbox_url: Adresa deljenog sandučeta
       show:
@@ -328,7 +323,6 @@ sr-Latn:
     noscript_html: Da biste koristili Mastodont veb aplikaciju, omogućite JavaScript. U suprotnom, probajte neku od <a href="%{apps_path}">originalnih aplikacija</a> za Mastodont za Vašu platformu.
   exports:
     blocks: Blokirali ste
-    follows: Pratite
     mutes: Ućutkali ste
     storage: Multimedijalno skladište
   generic:
diff --git a/config/locales/sr.yml b/config/locales/sr.yml
index 404310fe91a2dfd65c8657ce4e051c5f711bb2d5..23a826685167310d51981de2b59c499273723625 100644
--- a/config/locales/sr.yml
+++ b/config/locales/sr.yml
@@ -91,9 +91,7 @@ sr:
       email_status: Статус е-поште
       enable: Омогући
       enabled: Укључено
-      feed_url: Адреса довода
       followers: Пратиоци
-      followers_url: Адреса пратиоца
       follows: Праћени
       header: Заглавље
       inbox_url: Адреса сандучета
@@ -118,9 +116,7 @@ sr:
       most_recent_ip: Најскорија IP адреса
       no_limits_imposed: Нема ограничења
       not_subscribed: Није претплаћен
-      outbox_url: Одлазно сандуче
       perform_full_suspension: Искључи
-      profile_url: Адреса профила
       promote: Унапреди
       protocol: Протокол
       public: Јавно
@@ -141,7 +137,6 @@ sr:
         moderator: Модератор
         staff: Особље
         user: Корисник
-      salmon_url: Salmon адреса
       search: Претрага
       shared_inbox_url: Адреса дељеног сандучета
       show:
@@ -330,9 +325,6 @@ sr:
       created_msg: Белешка пријаве успешно направљена!
       destroyed_msg: Белешка пријаве успешно избрисана!
     reports:
-      account:
-        note: белешка
-        report: извештај
       action_taken_by: Акцију извео
       are_you_sure: Да ли сте сигурни?
       assign_to_self: Додели мени
@@ -538,7 +530,6 @@ sr:
       size: Величина
     blocks: Блокирали сте
     domain_blocks: Блокови домена
-    follows: Пратите
     lists: Листе
     mutes: Ућуткали сте
     storage: Мултимедијално складиште
diff --git a/config/locales/sv.yml b/config/locales/sv.yml
index c980b7d05bee903b871d2c3d38f8d5a32075ee1b..b94277825f56108465516f21a6b3000825893d1f 100644
--- a/config/locales/sv.yml
+++ b/config/locales/sv.yml
@@ -4,22 +4,56 @@ sv:
     about_hashtag_html: Dessa är offentliga toots märkta med <strong>#%{hashtag}</strong>. Du kan interagera med dem om du har ett konto någonstans i federationen.
     about_mastodon_html: Mastodon är ett socialt nätverk baserat på öppna webbprotokoll och gratis, öppen källkodsprogramvara. Det är decentraliserat som e-post.
     about_this: Om
+    active_count_after: aktiv
+    active_footnote: Månatligen Aktiva användare (MAU)
     administered_by: 'Administreras av:'
     api: API
+    apps: Mobilappar
+    apps_platforms: Använd Mastodon från iOS, Android och andra plattformar
+    browse_directory: Titta på en profilkatalog och filtrera enligt intressen
+    browse_local_posts: Titta på strömmande publika inlägg från denna server
+    browse_public_posts: Titta på strömmande publika inlägg på Mastodon
     contact: Kontakt
     contact_missing: Inte inställd
-    hosted_on: Mastodon värd på %{domain}
+    contact_unavailable: Ej tillämplig
+    discover_users: Upptäck användare
+    documentation: Dokumentation
+    federation_hint_html: Med ett konto på %{instance} kommer du att kunna följa personer på alla Mastodon-servers och mer än så.
+    get_apps: Prova en mobilapp
+    hosted_on: Mastodon-värd på %{domain}
+    instance_actor_flash: 'Detta konto är en virtuell agent som används för att representera servern själv och inte någon individuell användare. Det används av sammanslutningsskäl och ska inte blockeras såvitt du inte vill blockera hela instansen, och för detta fall ska domänblockering användas.
+
+'
     learn_more: Lär dig mer
+    privacy_policy: Integritetspolicy
+    see_whats_happening: Se vad som händer
+    server_stats: 'Serverstatistik:'
     source_code: Källkod
     status_count_before: Som skapat
+    tagline: Följ vänner och upptäck nya
     terms: Användarvillkor
+    unavailable_content: Otillgängligt innehåll
+    unavailable_content_description:
+      domain: Server
+      reason: Anledning
+      rejecting_media: 'Mediafiler från dessa servers kommer inte hanteras eller lagras, och inga miniatyrer kammer att visas, utan manuell klickning erfordras på originalfilen:'
+      silenced: 'Poster från dessa servers kommer att döljas i publika tidslinjer och konversationer, och meddelanden kommer inte att genereras från deras användares handlingar, förutom om du följer dem:'
+      suspended: 'Ingen data från dessa serverdatorer kommer bearbetas, lagras eller bytas ut vilket omöjliggör kommunikation med användare från dessa serverdatorer:'
+    unavailable_content_html: Mastodon låter dig se material från, och interagera med, andra användare i servernätverket. Det är undantag som gjorts på denna serverdator.
     user_count_before: Hem till
     what_is_mastodon: Vad är Mastodon?
   accounts:
+    choices_html: "%{name}s val:"
+    endorsements_hint: Från webbgränssnittet kan du rekommendera följare, som sedan visas här.
+    featured_tags_hint: Du kan använda fyrkanter som visas här.
     follow: Följa
+    followers:
+      one: Följare
+      other: Följare
     following: Följer
     joined: Gick med %{date}
     last_active: senast aktiv
+    link_verified_on: Ägarskap för denna länk kontrollerades den %{date}
     media: Media
     moved_html: "%{name} har flyttat till %{new_profile_link}:"
     network_hidden: Denna information är inte tillgänglig
@@ -27,12 +61,15 @@ sv:
     nothing_here: Det finns inget här!
     people_followed_by: Personer som %{name} följer
     people_who_follow: Personer som följer %{name}
+    pin_errors:
+      following: Du måste vara följare av den person du vill godkänna
     posts_tab_heading: Toots
     posts_with_replies: Toots med svar
     reserved_username: Användarnamnet är reserverat
     roles:
       admin: Administratör
       bot: Robot
+      group: Grupp
       moderator: Moderator
     unavailable: Profilen är inte tillgänglig
     unfollow: Sluta följa
@@ -73,11 +110,13 @@ sv:
       email_status: E-poststatus
       enable: Aktivera
       enabled: Aktiverad
-      feed_url: Flödes URL
       followers: Följare
-      followers_url: Följare URL
       follows: Följs
+      header: Rubrik
       inbox_url: Inkorgs URL
+      invited_by: Inbjuden av
+      ip: IP-adress
+      joined: Gick med
       location:
         all: Alla
         local: Lokal
@@ -87,23 +126,29 @@ sv:
       media_attachments: Media bifogade filer
       memorialize: Förvandla till ett memoriam
       moderation:
+        active: Aktiv
         all: Alla
+        pending: Väntande
         silenced: Tystas
         suspended: Avstängd
         title: Moderering
       moderation_notes: Moderation anteckning
       most_recent_activity: Senaste aktivitet
       most_recent_ip: Senaste IP
+      no_account_selected: Inga konton har ändrats och inget har valts
+      no_limits_imposed: Inga begränsningar har införts
       not_subscribed: Inte prenumererat
-      outbox_url: Utkorg URL
+      pending: Inväntar granskning
       perform_full_suspension: Utför full avstängning
-      profile_url: Profil URL
       promote: Befordra
       protocol: Protokoll
       public: Offentlig
       push_subscription_expires: PuSH-prenumerationen löper ut
       redownload: Uppdatera avatar
+      reject: Förkasta
+      reject_all: Förkasta allt / Avvisa alla
       remove_avatar: Ta bort avatar
+      remove_header: Ta bort rubrik
       resend_confirmation:
         already_confirmed: Den här användaren är redan bekräftad
         send: Skicka om e-postbekräftelse
@@ -114,37 +159,47 @@ sv:
       role: Behörigheter
       roles:
         admin: Administratör
+        moderator: Moderator
         staff: Personal
         user: Användare
-      salmon_url: Lax URL
       search: Sök
+      search_same_ip: Annan användare med samma IP-adress
       shared_inbox_url: Delad inkorg URL
       show:
         created_reports: Anmälningar som skapats av det här kontot
         targeted_reports: Anmälningar gjorda om detta konto
       silence: Tystnad
+      silenced: Tystad / Tystat
       statuses: Status
       subscribe: Prenumerera
+      suspended: Avstängd / Avstängt
+      time_in_queue: Väntar i kö %{time}
       title: Konton
       unconfirmed_email: Obekräftad E-postadress
       undo_silenced: Ã…ngra tystnad
       undo_suspension: Ångra avstängning
       unsubscribe: Avsluta prenumeration
       username: Användarnamn
+      warn: Varna
       web: Webb
+      whitelisted: Vitlistad
     action_logs:
       actions:
         assigned_to_self_report: "%{name} tilldelade anmälan %{target} till sig själv"
         change_email_user: "%{name} bytte e-postadress för användare %{target}"
         confirm_user: "%{name} bekräftade e-postadress för användare %{target}"
+        create_account_warning: "%{name} sände en varning till %{target}"
         create_custom_emoji: "%{name} laddade upp ny emoji %{target}"
+        create_domain_allow: "%{name} vitlistade domän %{target}"
         create_domain_block: "%{name} blockerade domän %{target}"
         create_email_domain_block: "%{name} svartlistade e-postdomän %{target}"
         demote_user: "%{name} degraderade användare %{target}"
+        destroy_custom_emoji: "%{name} förstörde emoji %{target}"
+        destroy_domain_allow: "%{name} raderade domän %{target} från vitlistan"
         destroy_domain_block: "%{name} avblockerade domän %{target}"
         destroy_email_domain_block: "%{name} vitlistade e-postdomän %{target}"
         destroy_status: "%{name} tog bort status av %{target}"
-        disable_2fa_user: "%{name} inaktiverade tvåstegsautentiseringskrav för användare %{target}"
+        disable_2fa_user: "%{name} inaktiverade tvåfaktorsautentiseringskrav för användare %{target}"
         disable_custom_emoji: "%{name} inaktiverade emoji %{target}"
         disable_user: "%{name} inaktiverade inloggning för användare %{target}"
         enable_custom_emoji: "%{name} aktiverade emoji %{target}"
@@ -162,20 +217,27 @@ sv:
         unsuspend_account: "%{name} aktiverade %{target}s konto"
         update_custom_emoji: "%{name} uppdaterade emoji %{target}"
         update_status: "%{name} uppdaterade status för %{target}"
+      deleted_status: "(raderad status)"
       title: Revisionslogg
     custom_emojis:
+      assign_category: Ange kategori
       by_domain: Domän
       copied_msg: Skapade en lokal kopia av emoji utan problem
       copy: Kopia
       copy_failed_msg: Kunde inte skapa en lokal kopia av den emoji
+      create_new_category: Skapa ny kategori
       created_msg: Emoji skapades utan problem!
       delete: Radera
       destroyed_msg: Emojo borttagen utan problem!
       disable: Inaktivera
+      disabled: Inaktiverad
       disabled_msg: Inaktiverade emoji utan problem
+      emoji: Emoji
       enable: Aktivera
+      enabled: Aktiverad
       enabled_msg: Aktiverade den emoji utan problem
       image_hint: PNG upp till 50KB
+      list: Lista
       listed: Noterade
       new:
         title: Lägg till ny egen emoji
@@ -183,15 +245,52 @@ sv:
       shortcode: Kortkod
       shortcode_hint: Minst 2 tecken, endast alfanumeriska tecken och understreck
       title: Egentillverkade emojis
+      uncategorized: Okategoriserad / Okategoiserat / Okategoriserade
+      unlist: Avnotera / Tag bort
       unlisted: Olistade
       update_failed_msg: Kunde inte uppdatera emoji
       updated_msg: Emoji uppdaterades utan problem!
       upload: Ladda upp
+    dashboard:
+      authorized_fetch_mode: Säkert läge
+      backlog: återstående jobb
+      config: Konfiguration
+      feature_deletions: Kontoraderingar
+      feature_invites: Inbjudningslänkar
+      feature_profile_directory: Profilkatalog
+      feature_registrations: Registreringar
+      feature_relay: Förbundsmöte
+      feature_spam_check: Anti-skräp
+      feature_timeline_preview: Förhandsgranskning av tidslinje
+      features: Funktioner
+      hidden_service: Sammanslutning med gömda tjänster
+      open_reports: öppna rapporter
+      pending_tags: hashtags som inväntar granskning
+      pending_users: användare som inväntar granskning
+      recent_users: Senaste användare
+      search: Fulltextsökning
+      single_user_mode: Enanvändarläge
+      software: Programvara
+      space: Utrymmesutnyttjande / Utrymmesanvändning
+      title: Kontrollpanel
+      total_users: totalt antal användare
+      trends: Trender
+      week_interactions: kommunikation denna vecka / interaktioner denna vecka
+      week_users_active: aktiv(a) denna vecka
+      week_users_new: användare denna vecka
+      whitelist_mode: Vitlisteläge
+    domain_allows:
+      add_new: Vitlistedomän
+      created_msg: Domänen har vitlistats
+      destroyed_msg: Domänen har tagits bort från vitlistan
+      undo: Tag bort från vitlistan
     domain_blocks:
       add_new: Lägg till ny
       created_msg: Domänblocket behandlas nu
       destroyed_msg: Domänblockering har återtagits
       domain: Domän
+      edit: Ändra domänblock
+      existing_domain_block_html: Du har redan satt begränsningar för %{name} så <a href="%{unblock_url}">avblockera användaren</a> först.
       new:
         create: Skapa block
         hint: Domänblocket hindrar inte skapandet av kontoposter i databasen, men kommer retroaktivt, automatiskt att tillämpa specifika modereringsmetoder på dessa konton.
@@ -201,8 +300,13 @@ sv:
           silence: Tysta ner
           suspend: Suspendera
         title: Nytt domänblock
+      private_comment: Privat kommentar
+      private_comment_hint: Kommentar för moderatorer om denna domänbegränsning.
+      public_comment: Offentlig kommentar
       reject_media: Avvisa mediafiler
       reject_media_hint: Raderar lokalt lagrade mediefiler och förhindrar möjligheten att ladda ner något i framtiden. Irrelevant för suspensioner
+      severity:
+        suspend: avstängd
       show:
         affected_accounts:
           one: Ett konto i databasen drabbades
@@ -219,11 +323,20 @@ sv:
       delete: Radera
       destroyed_msg: E-postdomän har tagits bort från domänblockslistan utan problem
       domain: Domän
+      empty: För tillfället inga svartlistade mejl.
       new:
         create: Skapa domän
         title: Ny E-postdomänblocklistningsinmatning
       title: E-postdomänblock
+    followers:
+      back_to_account: Tillbaka till konto
+      title: "%{acct}'s följare"
     instances:
+      by_domain: Domän
+      moderation:
+        all: Alla
+        limited: Begränsad
+      private_comment: Privat kommentar
       title: Kända instanser
     invites:
       filter:
@@ -232,13 +345,17 @@ sv:
         expired: Utgångna
         title: Filtrera
       title: Inbjudningar
+    relays:
+      delete: Radera
+      disable: Inaktivera
+      enable: Aktivera
+      enabled: Aktivera
+      save_and_enable: Spara och aktivera
+      status: Status
     report_notes:
       created_msg: Anmälningsanteckning har skapats!
       destroyed_msg: Anmälningsanteckning har raderats!
     reports:
-      account:
-        note: anteckning
-        report: anmälan
       action_taken_by: Åtgärder vidtagna av
       are_you_sure: Är du säker?
       assign_to_self: Tilldela till mig
@@ -260,6 +377,7 @@ sv:
       reported_by: Anmäld av
       resolved: Löst
       resolved_msg: Anmälan har lösts framgångsrikt!
+      status: Status
       title: Anmälningar
       unassign: Otilldela
       unresolved: Olösta
@@ -274,6 +392,8 @@ sv:
       contact_information:
         email: Företag E-post
         username: Användarnamn för kontakt
+      custom_css:
+        title: Anpassad CSS
       hero:
         desc_html: Visas på framsidan. Minst 600x100px rekommenderas. Om inte angiven faller den tillbaka på instansens miniatyrbild
         title: Hjältebild
@@ -319,15 +439,35 @@ sv:
         delete: Radera
         nsfw_off: Markera som ej känslig
         nsfw_on: Markera som känslig
+      deleted: Raderad
       failed_to_execute: Misslyckades att utföra
       no_media: Ingen media
       title: Kontostatus
       with_media: med media
+    tags:
+      accounts_today: Unika användare idag
+      accounts_week: Unika användare den här veckan
+      last_active: Senast aktiv
+    warning_presets:
+      add_new: Lägg till ny
+      delete: Radera
+      edit: Redigera
   admin_mailer:
     new_report:
       body: "%{reporter} har rapporterat %{target}"
       body_remote: Någon från %{domain} har rapporterat %{target}
       subject: Ny rapport för %{instance} (#%{id})
+  aliases:
+    add_new: Skapa alias
+    remove: Avlänka alias
+  appearance:
+    advanced_web_interface: Avancerat webbgränssnitt
+    animations_and_accessibility: Animationer och tillgänglighet
+    discovery: Upptäck
+    localization:
+      body: Mastodon översätts av volontärer.
+      guide_link_text: Alla kan bidra.
+    sensitive_content: Känsligt innehåll
   application_mailer:
     notification_preferences: Ändra e-postinställningar
     settings: 'Ändra e-postinställningar: %{link}'
@@ -346,7 +486,7 @@ sv:
     change_password: Lösenord
     delete_account: Ta bort konto
     delete_account_html: Om du vill radera ditt konto kan du <a href="%{path}">fortsätta här</a>. Du kommer att bli ombedd att bekräfta.
-    didnt_get_confirmation: Fick inte instruktioner om bekräftelse?
+    didnt_get_confirmation: Fick du inte instruktioner om bekräftelse?
     forgot_password: Glömt ditt lösenord?
     invalid_reset_password_token: Lösenordsåterställningstoken är ogiltig eller utgått. Vänligen be om en ny.
     login: Logga in
@@ -362,6 +502,10 @@ sv:
     reset_password: Återställ lösenord
     security: Säkerhet
     set_new_password: Skriv in nytt lösenord
+    setup:
+      email_settings_hint_html: Bekräftelsemeddelandet skickades till %{email}. Om den e-postadressen inte stämmer så kan du ändra den i kontoinställningarna.
+    status:
+      account_status: Kontostatus
   authorize_follow:
     already_following: Du följer redan detta konto
     error: Tyvärr inträffade ett fel när vi kontrollerade fjärrkontot
@@ -373,6 +517,10 @@ sv:
       return: Visa användarens profil
       web: GÃ¥ till webb
     title: Följ %{acct}
+  challenge:
+    confirm: Fortsätt
+    invalid_password: Ogiltigt lösenord
+    prompt: Bekräfta lösenord för att fortsätta
   datetime:
     distance_in_words:
       about_x_hours: "%{count}tim"
@@ -389,7 +537,9 @@ sv:
   deletes:
     confirm_password: Ange ditt lösenord för att verifiera din identitet
     proceed: Ta bort konto
-    success_msg: Ditt konto har tagits bort
+    success_msg: Ditt konto har raderats
+  domain_validator:
+    invalid_domain: är inte ett giltigt domännamn
   errors:
     '400': The request you submitted was invalid or malformed.
     '403': Du har inte behörighet att visa den här sidan.
@@ -415,10 +565,28 @@ sv:
       size: Storlek
     blocks: Du blockerar
     csv: CSV
-    follows: Du följer
+    lists: Listor
     mutes: Du tystar
     storage: Medialagring
+  featured_tags:
+    add_new: Lägg till ny
+  filters:
+    contexts:
+      notifications: Aviseringar
+      thread: Konversationer
+    edit:
+      title: Redigera filter
+    index:
+      delete: Radera
+      empty: Du har inga filter.
+      title: Filter
+    new:
+      title: Lägg till nytt filter
+  footer:
+    developers: Utvecklare
+    more: Mer…
   generic:
+    all: Alla
     changes_saved_msg: Ändringar sparades framgångsrikt!
     save_changes: Spara ändringar
     validation_errors:
@@ -464,11 +632,12 @@ sv:
       too_many: Det går inte att bifoga mer än 4 filer
   migrations:
     acct: användarnamn@domän av det nya kontot
+    incoming_migrations: Flyttar från ett annat konto
   moderation:
     title: Moderera
   notification_mailer:
     digest:
-      action: Visa alla notifieringar
+      action: Visa alla aviseringar
       body: Här är en kort sammanfattning av de meddelanden du missade sedan ditt senaste besök på %{since}
       mention: "%{name} nämnde dig i:"
       new_followers_summary:
@@ -500,13 +669,23 @@ sv:
       body: 'Din status knuffades av %{name}:'
       subject: "%{name} knuffade din status"
       title: Ny knuff
+  notifications:
+    other_settings: Andra aviseringsinställningar
   pagination:
     newer: Nyare
     next: Nästa
     older: Äldre
     prev: Tidigare
+  polls:
+    errors:
+      invalid_choice: Det valda röstalternativet finns inte
   preferences:
     other: Annat
+  relationships:
+    activity: Kontoaktivitet
+    followers: Följare
+    following: Följer
+    status: Kontostatus
   remote_follow:
     acct: Ange ditt användarnamn@domän du vill följa från
     missing_resource: Det gick inte att hitta den begärda omdirigeringsadressen för ditt konto
@@ -545,16 +724,23 @@ sv:
     revoke_success: Sessionen återkallas framgångsrikt
     title: Sessioner
   settings:
+    account: Konto
+    account_settings: Kontoinställningar
+    aliases: Kontoalias
+    appearance: Utseende
     authorized_apps: Godkända appar
     back: Tillbaka till Mastodon
     delete: Konto radering
     development: Utveckling
     edit_profile: Redigera profil
     export: Exportera data
+    import_and_export: Import och export
     migrate: Kontoflytt
-    notifications: Meddelanden
+    notifications: Aviseringar
     preferences: Inställningar
-    two_factor_authentication: Tvåstegsautentisering
+    profile: Profil
+    relationships: Följer och följare
+    two_factor_authentication: Tvåfaktorsautentisering
   spam_check:
     spam_detected: Det här är en automatisk rapport. Spam har upptäckts.
   statuses:
@@ -677,17 +863,17 @@ sv:
     mastodon-light: Mastodon (ljust)
   two_factor_authentication:
     code_hint: Ange koden som genererats av din autentiseringsapp för att bekräfta
-    description_html: Om du aktiverar <strong>tvåstegsautentisering</strong> kommer inloggningen kräva att du har din telefon tillgänglig, vilket kommer att generera tokens för dig att uppge.
-    disable: Avaktivera
+    description_html: Om du aktiverar <strong>tvåfaktorsautentisering</strong> kommer inloggningen kräva att du har din telefon tillgänglig, vilket kommer att generera tokens för dig att ange.
+    disable: Inaktivera
     enable: Aktivera
     enabled: Tvåfaktorsautentisering är aktiverad
-    enabled_success: Tvåfaktors autentisering aktiverad
+    enabled_success: Tvåfaktorsautentisering aktiverad
     generate_recovery_codes: Generera återställningskoder
     instructions_html: "<strong>Skanna den här QR-koden i Google Authenticator eller en liknande TOTP-app på din telefon </strong>. Från och med nu genererar den appen tokens som du måste ange när du loggar in."
     lost_recovery_codes: Återställningskoder tillåter dig att få tillgång till ditt konto om du förlorar din telefon. Om du har förlorat dina återställningskoder kan du regenerera dem här. Dina gamla återställningskoder kommer att ogiltigförklaras.
-    manual_instructions: 'Om du inte kan skanna QR-koden och behöver skriva in den manuellt, här är den enkla texten:'
+    manual_instructions: 'Om du inte kan skanna QR-koden och behöver skriva in den manuellt, här är den hemliga nyckeln i ren text:'
     recovery_codes: Backup återställningskod
-    recovery_codes_regenerated: Återställningskoder regenererades framgångsrikt
+    recovery_codes_regenerated: Återställningskoder genererades på nytt
     recovery_instructions_html: Om du någonsin tappar åtkomst till din telefon kan du använda någon av återställningskoderna nedan för att återställa åtkomst till ditt konto. <strong> Håll återställningskoderna säkra </strong>. Du kan till exempel skriva ut dem och lagra dem med andra viktiga dokument.
     setup: Ställ in
     wrong_code: Den angivna koden var ogiltig! Är servertid och enhetstid korrekt?
@@ -710,11 +896,11 @@ sv:
       tip_federated_timeline: Den förenade tidslinjen är en störtflodsvy av Mastodon-nätverket. Men det inkluderar bara människor som dina grannar följer, så det är inte komplett.
       tip_following: Du följer din servers administratör(er) som standard. För att hitta fler intressanta personer, kolla de lokala och förenade tidslinjerna.
       tip_local_timeline: Den lokala tidslinjen är en störtflodsvy av personer på %{instance}. Det här är dina närmaste grannar!
-      tip_mobile_webapp: Om din mobila webbläsare erbjuder dig att lägga till Mastodon till ditt hemskärm kan du få push-meddelanden. Det fungerar som en inbyggd app på många sätt!
+      tip_mobile_webapp: Om din mobila webbläsare erbjuder dig att lägga till Mastodon på din hemskärm kan du få push-aviseringar. Det fungerar som en inbyggd app på många sätt!
       title: Välkommen ombord, %{name}!
   users:
     invalid_email: E-postadressen är ogiltig
-    invalid_otp_token: Ogiltig tvåfaktorkod
+    invalid_otp_token: Ogiltig tvåfaktorskod
     otp_lost_help_html: Om du förlorat åtkomst till båda kan du komma i kontakt med %{email}
     seamless_external_login: Du är inloggad via en extern tjänst, så lösenord och e-postinställningar är inte tillgängliga.
     signed_in_as: 'Inloggad som:'
diff --git a/config/locales/ta.yml b/config/locales/ta.yml
index 75bb81fad0256d157ab3f91ca8724ca12a15edc3..71bf225d8ec47e0e84099013c305c9238a25630e 100644
--- a/config/locales/ta.yml
+++ b/config/locales/ta.yml
@@ -1,5 +1,210 @@
 ---
 ta:
+  about:
+    about_mastodon_html: 'எதிர்காலத்தின் சமூகப் பிணையம்: விளம்பரம் இல்லை, பொதுநிறுவனக் கண்காணிப்பு இல்லை, நெறிக்குட்பட்ட வரைவுத்திட்டம், மற்றும் பகிர்ந்தாளுதல்! மஸ்டோடோனுடன் உங்கள் தரவுகள் உங்களுக்கே சொந்தம்!'
+    about_this: தகவல்
+    active_count_after: செயலில்
+    active_footnote: செயலிலுள்ள மாதாந்திர பயனர்கள் (செமாப)
+    administered_by: 'நிர்வாகம்:'
+    api: செயலிக்கான மென்பொருள் இடைமுகம் API
+    apps: கைப்பேசி செயலிகள்
+    apps_platforms: மஸ்டோடோனை ஐஓஎஸ், ஆன்டிராய்டு, மற்றும் பிற இயங்குதளங்களில் பயன்படுத்துக
+    browse_directory: தன்விவரக் கோப்புகளைப் பார்த்து உங்கள் விருப்பங்களுக்கேற்பத் தேர்வு செய்க
+    browse_local_posts: நேரலையில் பொதுப் பதிவுகளை இந்த வழங்கியிலிருந்து காண்க
+    browse_public_posts: நேரலையில் பொதுப் பதிவுகளை மஸ்டோடோனிலிருந்து காண்க
+    contact: தொடர்புக்கு
+    contact_missing: நிறுவப்படவில்லை
+    contact_unavailable: பொ/இ
+    discover_users: பயனர்களை அறிக
+    documentation: ஆவணச்சான்று
+    get_apps: கைப்பேசி செயலியை முயற்சி செய்யவும்
+    hosted_on: மாஸ்டோடாண் %{domain} இனையத்தில் இயங்குகிறது
+    learn_more: மேலும் அறிய
+    privacy_policy: தனியுரிமை கொள்கை
+    see_whats_happening: என்ன நடக்கிறது என்று பார்க்க
+    server_stats: 'வழங்கியின் புள்ளிவிவரங்கள்:'
+    source_code: நிரல் மூலம்
+    status_count_after:
+      one: பதிவு
+      other: பதிவுகள்
+    status_count_before: எழுதிய
+    tagline: நண்பர்களைப் பின்தொடரவும் மற்றும் புதியவர்களைக் கண்டுபிடிக்கவும்
+    terms: சேவை விதிமுறைகள்
+    unavailable_content: விசயங்கள் இல்லை
+    unavailable_content_description:
+      domain: வழங்கி
+      reason: காரணம்
+    user_count_after:
+      one: பயனர்
+      other: பயனர்கள்
+    user_count_before: இணைந்திருக்கும்
+    what_is_mastodon: மச்டொடன் என்றால் என்ன?
+  accounts:
+    choices_html: "%{name}-இன் தேர்வுகள்:"
+    featured_tags_hint: குறிப்பிட்ட சிட்டைகளை இங்கு நீங்கள் காட்சிப்படுத்தலாம்.
+    follow: பின்தொடர்
+    followers:
+      one: பின்தொடர்பவர்
+      other: பின்தொடர்பவர்கள்
+    following: பின்தொடரும்
+    joined: "%{date} அன்று இனைந்தார்"
+    last_active: கடைசியாக பார்த்தது
+    media: படங்கள்
+    moved_html: "%{name} %{new_profile_link}க்கு மாறியுள்ளது:"
+    network_hidden: இத்தகவல் கிடைக்கவில்லை
+    never_active: எப்போதுமில்லை
+    nothing_here: இங்கு எதுவும் இல்லை!
+    people_followed_by: "%{name} பின்தொடரும் நபர்கள்"
+    people_who_follow: "%{name}ஐ பின்தொடரும் நபர்கள்"
+    pin_errors:
+      following: தாங்கள் அங்கீகரிக்க விரும்பும் நபரை தாங்கள் ஏற்கனவே பின்தொடரந்து கொண்டு இருக்க வேண்டும்
+    posts_tab_heading: பிளிறல்கள்
+    posts_with_replies: பிளிறல்கள் மற்றும் மறுமொழிகள்
+    reserved_username: பயனர்பெயர் முன்பதிவு செய்யப்பட்டுள்ளது
+    roles:
+      admin: நிர்வாகி
+      bot: பொறி
+      group: குழு
+      moderator: மட்டுறுத்துநர்
+    unavailable: சுயவிவரம் கிடைக்கவில்லை
+    unfollow: பின்தொடராதே
+  admin:
+    account_actions:
+      action: நடவடிக்கை எடு
+      title: "%{acct}ஐ நடுநிலைப்படுத்தவும்"
+    account_moderation_notes:
+      create: குறிப்பு எழுதவும்
+      created_msg: நடுநிலை குறிப்பு வெற்றிகரமாக பதிவு செய்யப்பட்டது!
+      delete: அகற்று
+      destroyed_msg: நடுநிலை குறிப்பு வெற்றிகரமாக அகற்றப்பட்டது!
+    accounts:
+      approve: அங்கீகரி
+      approve_all: அனைத்தும் அங்கீகரி
+      are_you_sure: நிச்சயமா?
+      avatar: அவதாரம்
+      by_domain: தளம்
+      change_email:
+        changed_msg: உறிமை மின் அஞ்சல் வெற்றிகரமாக மாற்ற்ப்பட்டது!
+        current_email: தற்கால மின் அஞ்சல்
+        label: மின் அஞ்சலை மற்றுக
+        new_email: புதிய மின் அஞ்சல்
+        submit: மின் அஞ்சல் மாற்றுக
+        title: "%{username} உடைய மின் அஞ்சலை மாற்றுக"
+      confirm: உறுதிசெய்
+      confirmed: உறுதி செய்யப்பட்டது
+      confirming: உறுதி செய்யப்படுகிறது
+      deleted: நீக்கு
+      demote: பதவியிறக்கு
+      disable: முடக்கப்பட்டது
+      disable_two_factor_authentication: இரண்டு கட்ட உளைவுச்சொல்லை நீக்குக
+      disabled: முடக்கப்பட்டது
+      display_name: புனைப்பெயர்
+      domain: இனையதளப் பெயர்
+      edit: திருத்து
+      email: மின்னஞ்சல்
+      email_status: மின்னஞ்சல் நிலவரம்
+      enable: இயக்கு
+      enabled: செயலில்பாட்டில் உள்ளது
+      followers: வாசகர்கள்
+      follows: வாசிக்கிறார்
+      header: தலைப்பு
+      inbox_url: மின்னஞ்சல் பெட்டி முகவரி
+      invited_by: அழைத்தவர்
+      ip: இணைய முகவரி ஏன்
+      joined: சேர்ந்தார்
+      location:
+        all: அனைத்தும்
+        local: அருகாமை
+        remote: தொலைவு
+        title: இடம்
+      login_status: நுழைவு நிலை
+      media_attachments: சேர்க்கைகள்
+      moderation:
+        active: அனுமதிக்கப்பட்டுள்ளது
+        all: அனைத்தும்
+        pending: நிலுவையில் உள்ளது
+        silenced: தடுக்கப்பட்டுள்ளது
+        suspended: இடைநீக்கப்பட்டது
+        title: மிதமானர்
+      moderation_notes: நடுவர் கருத்து
+      most_recent_activity: மிக அண்மை நடவடிக்கை
+      most_recent_ip: மிக அண்மை ஐபி
+      no_limits_imposed: அளவுக்கட்டுப்பாடு திணிக்கப்படவில்லை
+      pending: திறனாய்வு நிலுவையில் உள்ளது
+      perform_full_suspension: தற்காலீகமாக நீக்குக
+      promote: பரிந்துறை
+      protocol: நெறிமுறை
+      public: பொது
+      reject: விலக்கு
+      reject_all: அனைத்தையும் மறு
+      remove_avatar: அவதாரத்தை நீக்குக
+      resend_confirmation:
+        already_confirmed: இப்பயனர் ஏற்கனவே  உறுதி  படுத்திவிட்டார்
+      reset: மீட்டமைக்கவும்
+      reset_password: கடவுச்சொல்லை மீளமைத்திடுக
+      role: அனுமதி
+      roles:
+        admin: நிர்வாகி
+        moderator: நடுவர்
+        staff: பணியாளர்
+        user: பயனர்
+      search: தேடு
+      shared_inbox_url: குழு மின்னஞ்சல் முகவரி
+      show:
+        created_reports: உறுவாக்கிய அறிக்கைகள்
+        targeted_reports: மற்றவர்களால் அறிவிக்கப்பட்டது
+      silence: அணை
+      silenced: அணைக்கப்பட்டது
+      statuses: பதிவுகள்
+      suspended: இடைநீக்கப்பட்டது
+      time_in_queue: வரிசையில் காத்திருக்கிறது %{time}
+      title: கணக்குகள்
+      username: பயனர் பெயர்
+      warn: எச்சரி
+      whitelisted: அனுமதிப்பட்டியல்
+    custom_emojis:
+      uncategorized: வகைப்படுத்தப்படாதவை
+      unlist: பட்டியலில் இருந்து அகற்றுக
+      unlisted: பட்டியலிடப்படாத
+      upload: பதிவேற்றம்
+    dashboard:
+      feature_registrations: பதிவுகள்
+      features: அம்சங்கள்
+      recent_users: அண்மை பயனாளர்கள்
+      total_users: மொத்த பயனாளர் தொகை
+      trends: போக்குகள்
+    domain_blocks:
+      new:
+        severity:
+          noop: எதுவுமில்லை
+          suspend: தற்காலீகமாக நீக்குக
+    email_domain_blocks:
+      empty: மின்னஞ்சற் களங்கள் எதுவும் தடுக்கப்படவில்லை.
+    invites:
+      filter:
+        all: அனைத்தும்
+        expired: காலாவதியானது
+        title: வடிகட்டி
+      title: அழைப்பிதழ்கள்
+    relays:
+      delete: அகற்று
+      disable: முடக்கு
+      disabled: முடக்கப்பட்டது
+      enabled: செயலில்பாட்டில் உள்ளது
+    reports:
+      account:
+        notes:
+          one: "%{count} குறிப்பு"
+          other: "%{count} குறிப்புகள்"
+        reports:
+          one: "%{count} புகார்"
+          other: "%{count} புகார்கள்"
+      comment:
+        none: எதுவுமில்லை
+  appearance:
+    localization:
+      body: மாஸ்டோடான் தன்னார்வலர்களால் மொழிபெயர்க்கப்படுகிறது.
+      guide_link_text: அனைவரும் பங்களிக்கலாம்.
   errors:
     '400': The request you submitted was invalid or malformed.
     '403': You don't have permission to view this page.
@@ -10,6 +215,9 @@ ta:
     '429': Throttled
     '500': 
     '503': The page could not be served due to a temporary server failure.
+  filters:
+    index:
+      empty: தடுப்புகள் ஏதும் இல்லை.
   invites:
     expires_in:
       '1800': 30 minutes
@@ -18,3 +226,10 @@ ta:
       '43200': 12 hours
       '604800': 1 week
       '86400': 1 day
+  notifications:
+    email_events: மின்னஞ்சல் அறிவிப்புகளுக்கான நிகழ்வுகள்
+    email_events_hint: 'எந்த நிகழ்வுகளுக்கு அறிவிப்புகளைப் பெற வேண்டும் என்று தேர்வு செய்க:'
+    other_settings: அறிவிப்புகள் குறித்த பிற அமைப்புகள்
+  polls:
+    errors:
+      invalid_choice: நீங்கள் தேர்வு செய்த விருப்பம் கிடைக்கவில்லை
diff --git a/config/locales/te.yml b/config/locales/te.yml
index 526b03b4974fa02bd0ad153bcc8953a63d588c31..dd6c878e749cb16632d029c949b64003c2e96057 100644
--- a/config/locales/te.yml
+++ b/config/locales/te.yml
@@ -87,9 +87,7 @@ te:
       email_status: ఈమెయిల్ స్థితి
       enable: చేతనం
       enabled: చేతనం చేయబడింది
-      feed_url: ఫీడ్ URL
       followers: అనుచరులు
-      followers_url: అనుచరుల URL
       follows: అనుసరిస్తున్నారు
       inbox_url: ఇన్ బాక్స్ URL
       location:
diff --git a/config/locales/th.yml b/config/locales/th.yml
index 5a56bcd35121e3ab012f23e3d6de1300982239aa..b7f4a5f34f4d0510b22f3e5013bc958796adddf5 100644
--- a/config/locales/th.yml
+++ b/config/locales/th.yml
@@ -2,15 +2,16 @@
 th:
   about:
     about_hashtag_html: มีการแท็กโพสต์สาธารณะเหล่านี้ด้วย <strong>#%{hashtag}</strong> คุณสามารถโต้ตอบกับโพสต์หากคุณมีบัญชีที่ใดก็ตามในเฟดิเวิร์ส
-    about_mastodon_html: Mastodon เป็นเครือข่ายสังคมที่ทำงานบนโปรโตคอลเว็บแบบเปิดและซอฟต์แวร์เสรีที่เปิดต้นฉบับ กระจายศูนย์เหมือนอีเมล
+    about_mastodon_html: 'เครือข่ายสังคมแห่งอนาคต: ไม่มีโฆษณา, ไม่มีการสอดแนมโดยองค์กร, การออกแบบตามหลักจริยธรรม และการกระจายศูนย์! เป็นเจ้าของข้อมูลของคุณด้วย Mastodon!'
     about_this: เกี่ยวกับ
-    active_count_after: ที่ใช้งาน
+    active_count_after: ใช้งานอยู่
     active_footnote: ผู้ใช้งานรายเดือน (MAU)
     administered_by: 'ดูแลโดย:'
     api: API
-    apps: แอปสำหรับมือถือ
+    apps: แอปมือถือ
     apps_platforms: ใช้ Mastodon จาก iOS, Android และแพลตฟอร์มอื่น ๆ
     browse_directory: เรียกดูไดเรกทอรีโปรไฟล์และกรองตามความสนใจ
+    browse_local_posts: เรียกดูสตรีมสดของโพสต์สาธารณะจากเซิร์ฟเวอร์นี้
     browse_public_posts: เรียกดูสตรีมสดของโพสต์สาธารณะใน Mastodon
     contact: ติดต่อ
     contact_missing: ไม่ได้ตั้ง
@@ -18,7 +19,7 @@ th:
     discover_users: ค้นพบผู้ใช้
     documentation: เอกสารประกอบ
     federation_hint_html: ด้วยบัญชีที่ %{instance} คุณจะสามารถติดตามผู้คนในเซิร์ฟเวอร์ Mastodon และอื่น ๆ
-    get_apps: ลองแอปสำหรับมือถือ
+    get_apps: ลองแอปมือถือ
     hosted_on: Mastodon ที่โฮสต์ที่ %{domain}
     learn_more: เรียนรู้เพิ่มเติม
     privacy_policy: นโยบายความเป็นส่วนตัว
@@ -30,9 +31,11 @@ th:
     status_count_before: ผู้สร้าง
     tagline: ติดตามเพื่อน ๆ และค้นพบเพื่อนใหม่ ๆ
     terms: เงื่อนไขการให้บริการ
+    unavailable_content: เนื้อหาไม่พร้อมใช้งาน
     unavailable_content_description:
       domain: เซิร์ฟเวอร์
       reason: 'เหตุผล:'
+      rejecting_media: 'ไฟล์สื่อจากเซิร์ฟเวอร์เหล่านี้จะไม่ได้รับการประมวลผลหรือจัดเก็บ และจะไม่แสดงภาพขนาดย่อ ต้องมีการคลิกไปยังไฟล์ต้นฉบับด้วยตนเอง:'
     user_count_after:
       other: ผู้ใช้
     user_count_before: บ้านของ
@@ -45,6 +48,7 @@ th:
     following: กำลังติดตาม
     joined: เข้าร่วมเมื่อ %{date}
     last_active: ใช้งานล่าสุด
+    link_verified_on: ตรวจสอบความเป็นเจ้าของของลิงก์นี้เมื่อ %{date}
     media: สื่อ
     moved_html: "%{name} ได้ย้ายไปยัง %{new_profile_link}:"
     network_hidden: ไม่มีข้อมูลนี้
@@ -56,14 +60,19 @@ th:
       other: โพสต์
     posts_tab_heading: โพสต์
     posts_with_replies: โพสต์และการตอบกลับ
+    reserved_username: ชื่อผู้ใช้ถูกสงวนไว้
     roles:
       admin: ผู้ดูแล
       bot: บอต
+      group: กลุ่ม
       moderator: ผู้ควบคุม
     unavailable: ไม่มีโปรไฟล์
     unfollow: เลิกติดตาม
   admin:
+    account_actions:
+      action: ทำการกระทำ
     account_moderation_notes:
+      create: เขียนหมายเหตุ
       created_msg: สร้างหมายเหตุการควบคุมสำเร็จ!
       delete: ลบ
       destroyed_msg: ทำลายหมายเหตุการควบคุมสำเร็จ!
@@ -84,7 +93,7 @@ th:
       confirmed: ยืนยันแล้ว
       confirming: กำลังยืนยัน
       deleted: ลบแล้ว
-      demote: ลดระดับ
+      demote: ลดขั้น
       disable: ปิดใช้งาน
       disable_two_factor_authentication: ปิดใช้งาน 2FA
       disabled: ปิดใช้งานอยู่
@@ -95,9 +104,7 @@ th:
       email_status: สถานะอีเมล
       enable: เปิดใช้งาน
       enabled: เปิดใช้งานอยู่
-      feed_url: URL ฟีด
       followers: ผู้ติดตาม
-      followers_url: URL ผู้ติดตาม
       follows: การติดตาม
       header: ส่วนหัว
       inbox_url: URL กล่องขาเข้า
@@ -111,8 +118,11 @@ th:
         title: ตำแหน่งที่ตั้ง
       login_status: สถานะการเข้าสู่ระบบ
       media_attachments: ไฟล์แนบสื่อ
+      memorialize: เปลี่ยนเป็นระลึกถึง
       moderation:
+        active: ใช้งานอยู่
         all: ทั้งหมด
+        pending: รอดำเนินการ
         silenced: เงียบอยู่
         suspended: ระงับอยู่
         title: การควบคุม
@@ -120,9 +130,9 @@ th:
       most_recent_activity: กิจกรรมล่าสุด
       most_recent_ip: IP ล่าสุด
       not_subscribed: ไม่ได้บอกรับ
-      outbox_url: URL กล่องขาออก
+      pending: การตรวจทานที่รอดำเนินการ
       perform_full_suspension: ระงับ
-      profile_url: URL โปรไฟล์
+      promote: เลื่อนขั้น
       protocol: โปรโตคอล
       public: สาธารณะ
       push_subscription_expires: การบอกรับ PuSH หมดอายุเมื่อ
@@ -144,6 +154,7 @@ th:
         staff: พนักงาน
         user: ผู้ใช้
       search: ค้นหา
+      shared_inbox_url: URL กล่องขาเข้าที่แบ่งปัน
       show:
         created_reports: รายงานที่สร้าง
         targeted_reports: รายงานโดยผู้อื่น
@@ -152,29 +163,48 @@ th:
       statuses: สถานะ
       subscribe: บอกรับ
       suspended: ระงับอยู่
+      time_in_queue: กำลังรออยู่ในคิว %{time}
       title: บัญชี
+      unconfirmed_email: อีเมลที่ยังไม่ได้ยืนยัน
       undo_silenced: เลิกทำการเงียบ
       undo_suspension: เลิกทำการระงับ
       unsubscribe: เลิกบอกรับ
       username: ชื่อผู้ใช้
       warn: เตือน
       web: เว็บ
+      whitelisted: ขึ้นบัญชีขาวแล้ว
     action_logs:
       actions:
         change_email_user: "%{name} ได้เปลี่ยนที่อยู่อีเมลของผู้ใช้ %{target}"
         confirm_user: "%{name} ได้ยืนยันที่อยู่อีเมลของผู้ใช้ %{target}"
         create_account_warning: "%{name} ได้ส่งคำเตือนไปยัง %{target}"
+        create_domain_allow: "%{name} ได้ขึ้นบัญชีขาวโดเมน %{target}"
         create_domain_block: "%{name} ได้ปิดกั้นโดเมน %{target}"
+        create_email_domain_block: "%{name} ได้ขึ้นบัญชีดำโดเมนอีเมล %{target}"
+        demote_user: "%{name} ได้ลดขั้นผู้ใช้ %{target}"
         destroy_custom_emoji: "%{name} ได้ทำลายอีโมจิ %{target}"
+        destroy_domain_allow: "%{name} ได้เอาโดเมน %{target} ออกจากบัญชีขาว"
         destroy_domain_block: "%{name} ได้เลิกปิดกั้นโดเมน %{target}"
+        destroy_email_domain_block: "%{name} ได้ขึ้นบัญชีขาวโดเมนอีเมล %{target}"
         destroy_status: "%{name} ได้เอาสถานะโดย %{target} ออก"
+        disable_2fa_user: "%{name} ได้ปิดใช้งานความต้องการสองปัจจัยสำหรับผู้ใช้ %{target}"
         disable_custom_emoji: "%{name} ได้ปิดใช้งานอีโมจิ %{target}"
+        disable_user: "%{name} ได้ปิดใช้งานการเข้าสู่ระบบสำหรับผู้ใช้ %{target}"
         enable_custom_emoji: "%{name} ได้เปิดใช้งานอีโมจิ %{target}"
+        enable_user: "%{name} ได้เปิดใช้งานการเข้าสู่ระบบสำหรับผู้ใช้ %{target}"
+        promote_user: "%{name} ได้เลื่อนขั้นผู้ใช้ %{target}"
+        remove_avatar_user: "%{name} ได้เอาภาพประจำตัวของ %{target} ออก"
+        reopen_report: "%{name} ได้เปิดรายงาน %{target} ใหม่"
+        resolve_report: "%{name} ได้แก้ปัญหารายงาน %{target}"
+        suspend_account: "%{name} ได้ระงับบัญชีของ %{target}"
+        unassigned_report: "%{name} ได้เลิกมอบหมายรายงาน %{target}"
+        unsuspend_account: "%{name} ได้เลิกระงับบัญชีของ %{target}"
         update_custom_emoji: "%{name} ได้อัปเดตอีโมจิ %{target}"
         update_status: "%{name} ได้อัปเดตสถานะโดย %{target}"
       deleted_status: "(สถานะที่ลบแล้ว)"
       title: รายการบันทึกการตรวจสอบ
     custom_emojis:
+      assign_category: กำหนดหมวดหมู่
       by_domain: โดเมน
       copy: คัดลอก
       create_new_category: สร้างหมวดหมู่ใหม่
@@ -189,24 +219,32 @@ th:
       enabled: เปิดใช้งานอยู่
       enabled_msg: เปิดใช้งานอีโมจินั้นสำเร็จ
       image_hint: PNG สูงสุด 50KB
+      list: แสดงรายการ
+      listed: อยู่ในรายการ
       new:
         title: เพิ่มอีโมจิที่กำหนดเองใหม่
       overwrite: เขียนทับ
       shortcode: รหัสย่อ
       title: อีโมจิที่กำหนดเอง
+      unlist: เลิกแสดงรายการ
       unlisted: ไม่อยู่ในรายการ
       update_failed_msg: ไม่สามารถอัปเดตอีโมจินั้น
       updated_msg: อัปเดตอีโมจิสำเร็จ!
       upload: อัปโหลด
     dashboard:
+      authorized_fetch_mode: โหมดปลอดภัย
+      backlog: งานคงค้าง
       config: การกำหนดค่า
       feature_deletions: การลบบัญชี
       feature_invites: ลิงก์เชิญ
       feature_profile_directory: ไดเรกทอรีโปรไฟล์
       feature_registrations: การลงทะเบียน
+      feature_spam_check: การป้องกันสแปม
       feature_timeline_preview: ตัวอย่างเส้นเวลา
       features: คุณลักษณะ
       open_reports: รายงานที่เปิด
+      pending_tags: แฮชแท็กที่กำลังรอการตรวจทาน
+      pending_users: ผู้ใช้ที่กำลังรอการตรวจทาน
       recent_users: ผู้ใช้ล่าสุด
       search: การค้นหาข้อความแบบเต็ม
       single_user_mode: โหมดผู้ใช้เดี่ยว
@@ -216,8 +254,14 @@ th:
       total_users: ผู้ใช้ทั้งหมด
       trends: แนวโน้ม
       week_interactions: การโต้ตอบในสัปดาห์นี้
-      week_users_active: ที่ใช้งานในสัปดาห์นี้
+      week_users_active: ใช้งานอยู่ในสัปดาห์นี้
       week_users_new: ผู้ใช้ในสัปดาห์นี้
+      whitelist_mode: โหมดบัญชีขาว
+    domain_allows:
+      add_new: ขึ้นบัญชีขาวโดเมน
+      created_msg: ขึ้นบัญชีขาวโดเมนสำเร็จ
+      destroyed_msg: เอาโดเมนออกจากบัญชีขาวแล้ว
+      undo: เอาออกจากบัญชีขาว
     domain_blocks:
       add_new: เพิ่มการปิดกั้นโดเมนใหม่
       created_msg: กำลังประมวลผลการปิดกั้นโดเมน
@@ -253,15 +297,22 @@ th:
       view: ดูการปิดกั้นโดเมน
     email_domain_blocks:
       add_new: เพิ่มใหม่
+      created_msg: เพิ่มโดเมนอีเมลเป็นบัญชีดำสำเร็จ
       delete: ลบ
+      destroyed_msg: ลบโดเมนอีเมลออกจากบัญชีดำสำเร็จ
       domain: โดเมน
+      empty: ไม่มีโดเมนอีเมลที่ขึ้นบัญชีดำอยู่
       new:
         create: เพิ่มโดเมน
+        title: รายการบัญชีดำอีเมลใหม่
+      title: บัญชีดำอีเมล
     followers:
       back_to_account: กลับไปที่บัญชี
       title: ผู้ติดตามของ %{acct}
     instances:
       by_domain: โดเมน
+      known_accounts:
+        other: "%{count} บัญชีที่รู้จัก"
       moderation:
         all: ทั้งหมด
         limited: จำกัดอยู่
@@ -272,7 +323,14 @@ th:
       total_storage: ไฟล์แนบสื่อ
     invites:
       deactivate_all: ปิดใช้งานทั้งหมด
+      filter:
+        all: ทั้งหมด
+        available: พร้อมใช้งาน
+        expired: หมดอายุแล้ว
+        title: ตัวกรอง
       title: คำเชิญ
+    pending_accounts:
+      title: บัญชีที่รอดำเนินการ (%{count})
     relays:
       add_new: เพิ่มรีเลย์ใหม่
       delete: ลบ
@@ -281,6 +339,7 @@ th:
       enable: เปิดใช้งาน
       enabled: เปิดใช้งานอยู่
       inbox_url: URL รีเลย์
+      pending: กำลังรอการอนุมัติของรีเลย์
       save_and_enable: บันทึกแล้วเปิดใช้งาน
       status: สถานะ
       title: รีเลย์
@@ -289,10 +348,14 @@ th:
       destroyed_msg: ลบหมายเหตุรายงานสำเร็จ!
     reports:
       account:
-        note: หมายเหตุ
-        report: รายงาน
+        notes:
+          other: "%{count} หมายเหตุ"
+        reports:
+          other: "%{count} รายงาน"
       are_you_sure: คุณแน่ใจหรือไม่?
       assign_to_self: มอบหมายให้ฉัน
+      assigned: ผู้ควบคุมที่ได้รับมอบหมาย
+      by_target_domain: โดเมนของบัญชีที่ได้รับการรายงาน
       comment:
         none: ไม่มี
       created_at: รายงานเมื่อ
@@ -300,7 +363,10 @@ th:
       mark_as_unresolved: ทำเครื่องหมายว่ายังไม่ได้แก้ปัญหา
       notes:
         create: เพิ่มหมายเหตุ
+        create_and_resolve: แก้ปัญหาโดยมีหมายเหตุ
+        create_and_unresolve: เปิดใหม่โดยมีหมายเหตุ
         delete: ลบ
+      reopen: เปิดรายงานใหม่
       report: 'รายงาน #%{id}'
       reported_account: บัญชีที่ได้รับการรายงาน
       reported_by: รายงานโดย
@@ -321,7 +387,18 @@ th:
         title: CSS ที่กำหนดเอง
       domain_blocks:
         title: แสดงการปิดกั้นโดเมน
+      domain_blocks_rationale:
+        title: แสดงคำชี้แจงเหตุผล
+      enable_bootstrap_timeline_accounts:
+        title: เปิดใช้งานการติดตามเริ่มต้นสำหรับผู้ใช้ใหม่
+      hero:
+        title: ภาพแบนเนอร์หลัก
+      mascot:
+        title: ภาพมาสคอต
+      peers_api_enabled:
+        title: เผยแพร่รายการเซิร์ฟเวอร์ที่ค้นพบ
       profile_directory:
+        desc_html: อนุญาตให้ผู้ใช้สามารถค้นพบได้
         title: เปิดใช้งานไดเรกทอรีโปรไฟล์
       registrations:
         closed_message:
@@ -335,6 +412,7 @@ th:
           title: อนุญาตคำเชิญโดย
       registrations_mode:
         modes:
+          approved: ต้องมีการอนุมัติสำหรับการลงทะเบียน
           none: ไม่มีใครสามารถลงทะเบียน
           open: ใครก็ตามสามารถลงทะเบียน
         title: โหมดการลงทะเบียน
@@ -350,11 +428,12 @@ th:
       site_short_description:
         title: คำอธิบายเซิร์ฟเวอร์แบบสั้น
       site_terms:
+        desc_html: คุณสามารถเขียนนโยบายความเป็นส่วนตัว, เงื่อนไขการให้บริการ หรือภาษากฎหมายอื่น ๆ ของคุณเอง คุณสามารถใช้แท็ก HTML
         title: เงื่อนไขการให้บริการที่กำหนดเอง
       site_title: ชื่อเซิร์ฟเวอร์
       timeline_preview:
-        desc_html: แสดงเส้นเวลาสาธารณะในหน้าเริ่มต้น
-        title: ตัวอย่างเส้นเวลา
+        desc_html: แสดงลิงก์ไปยังเส้นเวลาสาธารณะในหน้าเริ่มต้นและอนุญาตการเข้าถึง API ไปยังเส้นเวลาสาธารณะโดยไม่มีการรับรองความถูกต้อง
+        title: อนุญาตการเข้าถึงเส้นเวลาสาธารณะที่ไม่ได้รับรองความถูกต้อง
       title: การตั้งค่าไซต์
       trends:
         title: แฮชแท็กที่กำลังนิยม
@@ -373,9 +452,16 @@ th:
       context: บริบท
       directory: ในไดเรกทอรี
       in_directory: "%{count} ในไดเรกทอรี"
+      last_active: ใช้งานล่าสุด
+      most_popular: ยอดนิยม
+      most_recent: ล่าสุด
       name: แฮชแท็ก
+      review: สถานะการตรวจทาน
+      reviewed: ตรวจทานแล้ว
       title: แฮชแท็ก
       trending_right_now: กำลังนิยม
+      unique_uses_today: "%{count} การโพสต์วันนี้"
+      unreviewed: ยังไม่ได้ตรวจทาน
     title: การดูแล
     warning_presets:
       add_new: เพิ่มใหม่
@@ -383,12 +469,25 @@ th:
       edit: แก้ไข
       edit_preset: แก้ไขคำเตือนที่ตั้งไว้ล่วงหน้า
       title: จัดการคำเตือนที่ตั้งไว้ล่วงหน้า
+  admin_mailer:
+    new_report:
+      body: "%{reporter} ได้รายงาน %{target}"
+      body_remote: ใครสักคนจาก %{domain} ได้รายงาน %{target}
+      subject: รายงานใหม่สำหรับ %{instance} (#%{id})
+  aliases:
+    add_new: สร้างนามแฝง
+    remove: เลิกเชื่อมโยงนามแฝง
   appearance:
     advanced_web_interface: ส่วนติดต่อเว็บขั้นสูง
     animations_and_accessibility: ภาพเคลื่อนไหวและการช่วยการเข้าถึง
     confirmation_dialogs: กล่องโต้ตอบการยืนยัน
     discovery: ค้นพบ
+    localization:
+      body: Mastodon ได้รับการแปลโดยอาสาสมัคร
+      guide_link: https://crowdin.com/project/mastodon/th
+      guide_link_text: ทุกคนสามารถมีส่วนร่วม
     sensitive_content: เนื้อหาที่ละเอียดอ่อน
+    toot_layout: เค้าโครงโพสต์
   application_mailer:
     notification_preferences: เปลี่ยนการกำหนดลักษณะอีเมล
     settings: 'เปลี่ยนการกำหนดลักษณะอีเมล: %{link}'
@@ -399,12 +498,16 @@ th:
     created: สร้างแอปพลิเคชันสำเร็จ
     destroyed: ลบแอปพลิเคชันสำเร็จ
     invalid_url: URL ที่ระบุไม่ถูกต้อง
+    your_token: โทเคนการเข้าถึงของคุณ
   auth:
     apply_for_account: ขอคำเชิญ
     change_password: รหัสผ่าน
     checkbox_agreement_html: ฉันยอมรับ <a href="%{rules_path}" target="_blank">กฎของเซิร์ฟเวอร์</a> และ <a href="%{terms_path}" target="_blank">เงื่อนไขการให้บริการ</a>
     checkbox_agreement_without_rules_html: ฉันยอมรับ <a href="%{terms_path}" target="_blank">เงื่อนไขการให้บริการ</a>
     delete_account: ลบบัญชี
+    description:
+      prefix_sign_up: ลงทะเบียนใน Mastodon วันนี้!
+    didnt_get_confirmation: ไม่ได้รับคำแนะนำการยืนยัน?
     forgot_password: ลืมรหัสผ่านของคุณ?
     login: เข้าสู่ระบบ
     logout: ออกจากระบบ
@@ -414,12 +517,14 @@ th:
       cas: CAS
       saml: SAML
     register: ลงทะเบียน
-    resend_confirmation: ส่งขั้นตอนวิธีการยืนยันใหม่อีกครั้ง
+    resend_confirmation: ส่งคำแนะนำการยืนยันใหม่
     reset_password: ตั้งรหัสผ่านใหม่
     security: ความปลอดภัย
     set_new_password: ตั้งรหัสผ่านใหม่
     status:
       account_status: สถานะบัญชี
+      confirming: กำลังรอการยืนยันอีเมลให้เสร็จสมบูรณ์
+      functional: บัญชีของคุณทำงานได้อย่างเต็มที่
     trouble_logging_in: มีปัญหาในการเข้าสู่ระบบ?
   authorize_follow:
     already_following: คุณกำลังติดตามบัญชีนี้อยู่แล้ว
@@ -449,12 +554,21 @@ th:
       x_months: "%{count} เดือน"
       x_seconds: "%{count} วินาที"
   deletes:
+    challenge_not_passed: ข้อมูลที่คุณป้อนไม่ถูกต้อง
+    confirm_username: ป้อนชื่อผู้ใช้ของคุณเพื่อยืนยันกระบวนงาน
     proceed: ลบบัญชี
     success_msg: ลบบัญชีของคุณสำเร็จ
+    warning:
+      data_removal: จะเอาโพสต์และข้อมูลอื่น ๆ ของคุณออกโดยถาวร
+      email_change_html: คุณสามารถ <a href="%{path}">เปลี่ยนที่อยู่อีเมลของคุณ</a> โดยไม่ต้องลบบัญชีของคุณ
+      email_reconfirmation_html: หากคุณไม่ได้รับอีเมลยืนยัน คุณสามารถ <a href="%{path}">ขออีเมลอีกครั้ง</a>
+      more_details_html: สำหรับรายละเอียดเพิ่มเติม ดู <a href="%{terms_path}">นโยบายความเป็นส่วนตัว</a>
   directories:
     directory: ไดเรกทอรีโปรไฟล์
     explanation: ค้นพบผู้ใช้ตามความสนใจของเขา
     explore_mastodon: สำรวจ %{title}
+  domain_validator:
+    invalid_domain: ไม่ใช่ชื่อโดเมนที่ถูกต้อง
   errors:
     '400': The request you submitted was invalid or malformed.
     '403': คุณไม่มีสิทธิอนุญาตเพื่อดูหน้านี้
@@ -479,7 +593,6 @@ th:
     blocks: คุณปิดกั้น
     csv: CSV
     domain_blocks: การปิดกั้นโดเมน
-    follows: คุณติดตาม
     lists: รายการ
     mutes: คุณปิดเสียง
     storage: ที่เก็บข้อมูลสื่อ
@@ -495,6 +608,7 @@ th:
       title: แก้ไขตัวกรอง
     index:
       delete: ลบ
+      empty: คุณไม่มีตัวกรอง
       title: ตัวกรอง
     new:
       title: เพิ่มตัวกรองใหม่
@@ -507,19 +621,26 @@ th:
     all: ทั้งหมด
     changes_saved_msg: บันทึกการเปลี่ยนแปลงสำเร็จ!
     copy: คัดลอก
+    order_by: เรียงลำดับตาม
     save_changes: บันทึกการเปลี่ยนแปลง
+  html_validator:
+    invalid_markup: 'มีมาร์กอัป HTML ที่ไม่ถูกต้อง: %{error}'
   identity_proofs:
+    active: ใช้งานอยู่
     authorize: ใช่ อนุญาต
+    inactive: ไม่ได้ใช้งาน
+    status: สถานะการตรวจสอบ
   imports:
     modes:
       merge: ผสาน
       overwrite: เขียนทับ
-    preface: You can import certain data like all the people you are following or blocking into your account on this instance, from files created by an export on another instance.
     types:
       blocking: รายการปิดกั้น
+      domain_blocking: รายการปิดกั้นโดเมน
       following: รายการติดตาม
       muting: รายการปิดเสียง
     upload: อัปโหลด
+  in_memoriam_html: เพื่อระลึกถึง
   invites:
     delete: ปิดใช้งาน
     expires_in:
@@ -530,7 +651,8 @@ th:
       '604800': 1 สัปดาห์
       '86400': 1 วัน
     expires_in_prompt: ไม่เลย
-    generate: สร้าง
+    generate: สร้างลิงก์เชิญ
+    invited_by: 'คุณได้รับเชิญโดย:'
     max_uses:
       other: "%{count} การใช้"
     max_uses_prompt: ไม่มีขีดจำกัด
@@ -543,8 +665,12 @@ th:
       images_and_video: ไม่สามารถแนบวิดีโอกับสถานะที่มีภาพอยู่แล้ว
       too_many: ไม่สามารถแนบมากกว่า 4 ไฟล์
   migrations:
-    acct: username@domain ของบัญชีใหม่
+    acct: ย้ายไปยัง
     cancel: ยกเลิกการเปลี่ยนเส้นทาง
+    errors:
+      move_to_self: ไม่สามารถเป็นบัญชีปัจจุบัน
+      not_found: ไม่พบ
+    incoming_migrations: การย้ายจากบัญชีอื่น
     proceed_with_move: ย้ายผู้ติดตาม
     redirecting_to: บัญชีของคุณกำลังเปลี่ยนเส้นทางไปยัง %{acct}
     set_redirect: ตั้งการเปลี่ยนเส้นทาง
@@ -554,8 +680,6 @@ th:
     digest:
       action: ดูการแจ้งเตือนทั้งหมด
       mention: "%{name} ได้กล่าวถึงคุณใน:"
-      new_followers_summary:
-        other: You have gotten %{count} new followers! Amazing!
       title: เมื่อคุณไม่อยู่...
     favourite:
       body: 'สถานะของคุณได้รับการชื่นชอบโดย %{name}:'
@@ -579,6 +703,9 @@ th:
       body: 'สถานะของคุณได้รับการดันโดย %{name}:'
       subject: "%{name} ได้ดันสถานะของคุณ"
       title: การดันใหม่
+  notifications:
+    email_events: เหตุการณ์สำหรับการแจ้งเตือนอีเมล
+    other_settings: การตั้งค่าการแจ้งเตือนอื่น ๆ
   pagination:
     newer: ใหม่กว่า
     next: ถัดไป
@@ -587,14 +714,23 @@ th:
     truncate: "&hellip;"
   polls:
     errors:
+      already_voted: คุณได้ลงคะแนนในการสำรวจความคิดเห็นนี้อยู่แล้ว
       duplicate_options: มีรายการที่ซ้ำกัน
+      too_few_options: ต้องมีมากกว่าหนึ่งรายการ
+      too_many_options: ไม่สามารถมีมากกว่า %{max} รายการ
   preferences:
     other: อื่น ๆ
     posting_defaults: ค่าเริ่มต้นการโพสต์
     public_timelines: เส้นเวลาสาธารณะ
   relationships:
     activity: กิจกรรมบัญชี
+    followers: ผู้ติดตาม
+    following: กำลังติดตาม
     last_active: ใช้งานล่าสุด
+    most_recent: ล่าสุด
+    moved: ย้ายแล้ว
+    mutual: ร่วมกัน
+    primary: หลัก
     relationship: ความสัมพันธ์
     remove_selected_domains: เอาผู้ติดตามทั้งหมดออกจากโดเมนที่เลือก
     remove_selected_followers: เอาผู้ติดตามที่เลือกออก
@@ -625,6 +761,7 @@ th:
       edge: Microsoft Edge
       electron: Electron
       firefox: Firefox
+      generic: เบราว์เซอร์ที่ไม่รู้จัก
       ie: Internet Explorer
       micro_messenger: MicroMessenger
       nokia: Nokia S40 Ovi Browser
@@ -646,6 +783,7 @@ th:
       ios: iOS
       linux: Linux
       mac: Mac
+      other: แพลตฟอร์มที่ไม่รู้จัก
       windows: Windows
       windows_mobile: Windows Mobile
       windows_phone: Windows Phone
@@ -665,6 +803,7 @@ th:
     featured_tags: แฮชแท็กที่แนะนำ
     import: การนำเข้า
     import_and_export: การนำเข้าและการส่งออก
+    migrate: การโยกย้ายบัญชี
     notifications: การแจ้งเตือน
     preferences: การกำหนดลักษณะ
     profile: โปรไฟล์
@@ -672,17 +811,24 @@ th:
     two_factor_authentication: การรับรองความถูกต้องด้วยสองปัจจัย
   statuses:
     attached:
-      description: 'แนบ: %{attached}'
+      description: 'แนบอยู่: %{attached}'
       image:
         other: "%{count} ภาพ"
       video:
         other: "%{count} วิดีโอ"
+    boosted_from_html: ดันจาก %{acct_link}
     content_warning: 'คำเตือนเนื้อหา: %{warning}'
+    disallowed_hashtags:
+      other: 'มีแฮชแท็กที่ไม่อนุญาต: %{tags}'
     language_detection: ตรวจหาภาษาโดยอัตโนมัติ
     open_in_web: เปิดในเว็บ
     pin_errors:
+      ownership: ไม่สามารถปักหมุดโพสต์ของคนอื่น
+      private: ไม่สามารถปักหมุดโพสต์ที่ไม่เป็นสาธารณะ
       reblog: ไม่สามารถปักหมุดการดัน
     poll:
+      total_people:
+        other: "%{count} คน"
       total_votes:
         other: "%{count} การลงคะแนน"
       vote: ลงคะแนน
@@ -695,9 +841,14 @@ th:
       public: สาธารณะ
       public_long: ทุกคนสามารถเห็น
       unlisted: ไม่อยู่ในรายการ
+      unlisted_long: ทุกคนสามารถเห็น แต่ไม่แสดงรายการในเส้นเวลาสาธารณะ
   stream_entries:
     pinned: โพสต์ที่ปักหมุด
     sensitive_content: เนื้อหาที่ละเอียดอ่อน
+  tags:
+    does_not_match_previous_name: ไม่ตรงกับชื่อก่อนหน้า
+  terms:
+    title: เงื่อนไขการให้บริการและนโยบายความเป็นส่วนตัวของ %{instance}
   themes:
     contrast: Mastodon (ความคมชัดสูง)
     default: Mastodon (มืด)
@@ -705,17 +856,21 @@ th:
   time:
     formats:
       default: "%d %b %Y, %H:%M"
+      month: "%b %Y"
   two_factor_authentication:
     disable: ปิดใช้งาน
     enable: เปิดใช้งาน
     enabled: เปิดใช้งานการรับรองความถูกต้องด้วยสองปัจจัยแล้ว
     enabled_success: เปิดใช้งานการรับรองความถูกต้องด้วยสองปัจจัยสำเร็จ
     generate_recovery_codes: สร้างรหัสกู้คืน
-    recovery_instructions_html: If you ever lose access to your phone, you can use one of the recovery codes below to regain access to your account. Keep the recovery codes safe, for example by printing them and storing them with other important documents.
+    recovery_codes: รหัสกู้คืนข้อมูลสำรอง
     setup: ตั้งค่า
     wrong_code: รหัสที่ป้อนไม่ถูกต้อง! เวลาเซิร์ฟเวอร์และเวลาอุปกรณ์ถูกต้องหรือไม่?
   user_mailer:
     warning:
+      review_server_policies: ตรวจทานนโยบายของเซิร์ฟเวอร์
+      subject:
+        none: คำเตือนสำหรับ %{acct}
       title:
         none: คำเตือน
         silence: จำกัดบัญชีอยู่
@@ -725,6 +880,7 @@ th:
       subject: ยินดีต้อนรับสู่ Mastodon
       tips: เคล็ดลับ
   users:
+    follow_limit_reached: คุณไม่สามารถติดตามมากกว่า %{limit} คน
     invalid_email: ที่อยู่อีเมลไม่ถูกต้อง
     invalid_otp_token: รหัสสองปัจจัยไม่ถูกต้อง
     signed_in_as: 'ลงชื่อเข้าเป็น:'
diff --git a/config/locales/tr.yml b/config/locales/tr.yml
index 7e53e7f2c75aa8222598ad1632af3fa4c490b16d..1e80315c02fd6a4833a74d8b81447ede28441020 100644
--- a/config/locales/tr.yml
+++ b/config/locales/tr.yml
@@ -1,7 +1,7 @@
 ---
 tr:
   about:
-    about_hashtag_html: Bunlar <strong>#%{hashtag}X</strong> ile etiketlenen genel paylaşımlar. Açık alanda herhangi bir yerde bir hesabınız varsa, onlarla etkileşime geçebilirsiniz.
+    about_hashtag_html: Bunlar <strong>#%{hashtag}</strong> ile etiketlenen genel tootlar. Fediverse içinde herhangi bir yerde bir hesabınız varsa, onlarla etkileşime geçebilirsiniz.
     about_mastodon_html: Mastodon <em>ücretsiz ve açık kaynaklı</em> bir sosyal ağdır. <em>Merkezileştirilmemiş</em> yapısı sayesinde diğer ticari sosyal platformların aksine iletişimininizin tek bir firmada tutulmasının/yönetilmesinin önüne geçer. Güvendiğiniz bir sunucuyu seçerek oradaki kişilerle etkileşimde bulunabilirsiniz. Herkes kendi Mastodon sunucusunu kurabilir ve sorunsuz bir şekilde Mastodon <em>sosyal ağına</em> dahil edebilir.
     about_this: Bu sunucu hakkında
     active_count_after: etkin
@@ -11,6 +11,7 @@ tr:
     apps: Mobil uygulamalar
     apps_platforms: İos, Android ve diğer platformlardaki Mastodon'u kullanın
     browse_directory: Bir profil dizinine göz atın ve ilgi alanlarına göre filtreleyin
+    browse_local_posts: Bu sunucudaki herkese açık yayınlara göz atın
     browse_public_posts: Mastodon'daki herkese açık yayınlara göz atın
     contact: İletişim
     contact_missing: Ayarlanmadı
@@ -55,7 +56,7 @@ tr:
     followers:
       one: Takipçi
       other: Takipçi
-    following: Takip ediliyor
+    following: Takip ettikleri
     joined: "%{date} tarihinde katıldı"
     last_active: son aktivite
     link_verified_on: Bu bağlantının mülkiyeti %{date} tarihinde kontrol edildi
@@ -69,7 +70,7 @@ tr:
     pin_errors:
       following: Onaylamak istediğiniz kişiyi zaten takip ediyor olmalısınız
     posts:
-      one: Gönderi
+      one: Toot
       other: Tootlar
     posts_tab_heading: Tootlar
     posts_with_replies: Tootlar ve yanıtlar
@@ -77,6 +78,7 @@ tr:
     roles:
       admin: Yönetici
       bot: Bot
+      group: Grup
       moderator: Denetleyici
     unavailable: Profil kullanılamıyor
     unfollow: Takibi bırak
@@ -117,9 +119,7 @@ tr:
       email_status: E-posta durumu
       enable: EtkinleÅŸtir
       enabled: Etkin
-      feed_url: Besleme linki
       followers: Takipçiler
-      followers_url: Takipçi bağlantısı
       follows: Takip edilen
       header: Üstbilgi
       inbox_url: Gelen kutusu bağlantısı
@@ -147,10 +147,8 @@ tr:
       no_account_selected: Hiçbiri seçilmediğinden hiçbir hesap değiştirilmedi
       no_limits_imposed: Sınır koymaz
       not_subscribed: Abone edilmedi
-      outbox_url: Giden Kutusu URL'si
       pending: Bekleyen yorum
       perform_full_suspension: Askıya al
-      profile_url: Profil linki
       promote: Yükselt
       protocol: Protokol
       public: Herkese açık
@@ -173,8 +171,8 @@ tr:
         moderator: Denetleyici
         staff: Personel
         user: Kullanıcı
-      salmon_url: Salmon Linki
       search: Ara
+      search_same_ip: Aynı IP adresine sahip diğer kullanıcılar
       shared_inbox_url: Paylaşılan gelen kutusu bağlantısı
       show:
         created_reports: Yapılan şikayetler
@@ -201,10 +199,12 @@ tr:
         confirm_user: "%{name} %{target} kullanıcısının e-posta adresini onayladı"
         create_account_warning: "%{name} %{target} 'a bir uyarı gönderdi"
         create_custom_emoji: "%{name} yeni ifade yükledi %{target}"
+        create_domain_allow: "%{target} alan adı, %{name} tarafından beyaz listeye alındı"
         create_domain_block: "%{target} alanı, %{name} tarafından engellendi"
         create_email_domain_block: "%{target} e-posta alanı, %{name} tarafından kara listeye alınmış"
         demote_user: "%{name} %{target} kullanıcısını düşürdü"
         destroy_custom_emoji: "%{target} emoji, %{name} tarafından kaldırıldı"
+        destroy_domain_allow: "%{target} alan adı, %{name} tarafından beyaz listeden çıkartıldı"
         destroy_domain_block: "%{target} alan adının engeli %{name} tarafından kaldırıldı"
         destroy_email_domain_block: "%{target} e-posta sunucusu, %{name} tarafından beyaz listeye alındı"
         destroy_status: "%{name}, %{target} kullanıcısının durumunu kaldırdı"
@@ -339,6 +339,7 @@ tr:
       delete: Sil
       destroyed_msg: E-posta alan adı kara listeden başarıyla silindi
       domain: Alan adı
+      empty: Şu anda hiçbir e-posta alan adı kara listeye alınmadı.
       new:
         create: Alan adı ekle
         title: Yeni e-posta kara liste giriÅŸi
@@ -377,11 +378,11 @@ tr:
     relays:
       add_new: Yeni aktarıcı ekle
       delete: Sil
-      description_html: "<strong>Federasyon aktarıcısı</strong>, kendisine abone olan ve yayın yapan sunucular arasında büyük miktarlarda herkese açık gönderilerin değiş tokuşunu yapan aracı bir sunucudur. <strong>Küçük ve orta boyutlu sunucuların fediverse'ten içerik keşfetmesine yardımcı olurlar</strong>, aksi takdirde yerel kullanıcıların uzak sunuculardaki diğer kişileri manuel olarak takip etmeleri gerekecektir."
+      description_html: "<strong>Federasyon aktarıcısı</strong>, kendisine abone olan ve yayın yapan sunucular arasında büyük miktarlarda herkese açık tootların değiş tokuşunu yapan aracı bir sunucudur. <strong>Küçük ve orta boyutlu sunucuların fediverse'ten içerik keşfetmesine yardımcı olurlar</strong>, aksi takdirde yerel kullanıcıların uzak sunuculardaki diğer kişileri manuel olarak takip etmeleri gerekecektir."
       disable: Devre dışı
       disabled: Devre dışı
       enable: Etkin
-      enable_hint: Etkinleştirildiğinde, sunucunuz bu aktarıcıdan gelecek tüm herkese açık gönderilere abone olacak, ve kendisinin herkese açık gönderilerini bu aktarıcıya göndermeye başlayacaktır.
+      enable_hint: Etkinleştirildiğinde, sunucunuz bu aktarıcıdan gelecek tüm herkese açık tootlara abone olacak, ve kendisinin herkese açık tootlarını bu aktarıcıya göndermeye başlayacaktır.
       enabled: Etkin
       inbox_url: Aktarıcı URL'si
       pending: Aktarıcının onaylaması için bekleniyor
@@ -395,12 +396,17 @@ tr:
       destroyed_msg: Şikayet notu başarıyla silindi!
     reports:
       account:
-        note: not
-        report: ÅŸikayet
+        notes:
+          one: "%{count} not"
+          other: "%{count} not"
+        reports:
+          one: "%{count} ÅŸikayet"
+          other: "%{count} ÅŸikayet"
       action_taken_by: tarafından gerçekleştirilen eylem
       are_you_sure: Emin misiniz?
       assign_to_self: Bana ata
       assigned: Denetleyici atandı
+      by_target_domain: Şikayet edilen hesabın alan adı
       comment:
         none: Yok
       created_at: Åžikayet edildi
@@ -446,6 +452,8 @@ tr:
         users: Oturum açan yerel kullanıcılara
       domain_blocks_rationale:
         title: Gerekçeyi göster
+      enable_bootstrap_timeline_accounts:
+        title: Yeni kullanıcılar için varsayılan takipleri etkinleştir
       hero:
         desc_html: Önsayfada görüntülenir. En az 600x100px önerilir. Ayarlanmadığında, sunucu küçük resmi kullanılır
         title: Kahraman görseli
@@ -533,7 +541,7 @@ tr:
       context: İçerik
       directory: Dizinde
       in_directory: Dizinde %{count}
-      last_active: Son aktiflik
+      last_active: Son aktivite
       most_popular: En popüler
       most_recent: En yeni
       name: Etiket
@@ -574,7 +582,12 @@ tr:
     animations_and_accessibility: Animasyonlar ve eriÅŸilebilirlik
     confirmation_dialogs: Onay iletişim kutuları
     discovery: KeÅŸfet
+    localization:
+      body: Mastodon, gönüllüler tarafından çevrilmektedir.
+      guide_link: https://crowdin.com/project/mastodon
+      guide_link_text: Herkes katkıda bulunabilir.
     sensitive_content: Hassas içerik
+    toot_layout: Toot yerleÅŸimi
   application_mailer:
     notification_preferences: E-posta tercihlerini deÄŸiÅŸtir
     salutation: "%{name},"
@@ -704,14 +717,13 @@ tr:
     archive_takeout:
       date: Tarih
       download: ArÅŸivinizi indirin
-      hint_html: "<strong>Gönderileriniz ve yüklediğiniz ortamların</strong> bir arşivini talep edebilirsiniz. Dışa aktarılan veriler, herhangi bir uyumlu yazılım tarafından okunabilen ActivityPub formatında olacaktır. Her 7 günde bir arşiv talep edebilirsiniz."
+      hint_html: "<strong>Tootlarınızın ve yüklediğiniz ortamların</strong> bir arşivini talep edebilirsiniz. Dışa aktarılan veriler, herhangi bir uyumlu yazılım tarafından okunabilen ActivityPub formatında olacaktır. Her 7 günde bir arşiv talep edebilirsiniz."
       in_progress: ArÅŸivinizi derliyoruz...
       request: ArÅŸiv isteÄŸi
       size: Boyut
     blocks: Blokladıklarınız
     csv: CSV
     domain_blocks: Alan adı blokları
-    follows: Takip ettikleriniz
     lists: Listeler
     mutes: Susturduklarınız
     storage: Ortam deposu
@@ -733,6 +745,7 @@ tr:
       invalid_irreversible: Geri dönüşümsüz filtreleme sadece anasayfa ya da bildirim bağlamında çalışır
     index:
       delete: Sil
+      empty: Hiç filtreniz yok.
       title: Filtreler
     new:
       title: Yeni filtre ekle
@@ -767,7 +780,7 @@ tr:
     i_am_html: Ben %{service} üzerinde %{username}.
     identity: Kimlik
     inactive: Pasif
-    publicize_checkbox: 'Ve bunu paylaÅŸ:'
+    publicize_checkbox: 'Ve bunu tootla:'
     publicize_toot: 'İspatlandı! Ben %{service} üzerinde %{username}: %{url}'
     status: DoÄŸrulama durumu
     view_proof: Kanıt görüntüle
@@ -881,6 +894,10 @@ tr:
       body: "%{name} durumunuzu boost etti:"
       subject: "%{name} durumunuzu boost etti"
       title: Yeni gönderi
+  notifications:
+    email_events: E-posta bildirimi gönderilecek etkinlikler
+    email_events_hint: 'Bildirim almak istediğiniz olayları seçin:'
+    other_settings: Diğer bildirim ayarları
   number:
     human:
       decimal_units:
@@ -904,6 +921,7 @@ tr:
       duration_too_long: ileriye doğru çok geç
       duration_too_short: çok erken
       expired: Anket çoktan sona erdi
+      invalid_choice: Seçilen oylama seçeneği mevcut değil
       over_character_limit: her biri %{max} karakterden daha uzun olamaz
       too_few_options: birden fazla öğeye sahip olmalı
       too_many_options: "%{max} öğeden fazla öğe içeremez"
@@ -914,6 +932,8 @@ tr:
   relationships:
     activity: Hesap etkinliÄŸi
     dormant: Atıl
+    followers: Takipçiler
+    following: Takip edilenler
     last_active: Son aktivite
     most_recent: En son
     moved: Taşındı
@@ -934,16 +954,16 @@ tr:
   remote_interaction:
     favourite:
       proceed: Favorilere eklemek için ilerle
-      prompt: 'Bu gönderiyi favorilerinize eklemek istiyorsunuz:'
+      prompt: 'Bu tootu favorilerinize eklemek istiyorsunuz:'
     reblog:
       proceed: Yinelemek için ilerle
-      prompt: 'Bu gönderiyi yinelemek istiyorsunuz:'
+      prompt: 'Bu tootu yinelemek istiyorsunuz:'
     reply:
       proceed: Cevap vermek için ilerle
-      prompt: 'Bu gönderiye cevap vermek istiyorsunuz:'
+      prompt: 'Bu toota cevap vermek istiyorsunuz:'
   scheduled_statuses:
-    over_daily_limit: O gün için %{limit} zamanlanmış gönderi sınırını aştınız
-    over_total_limit: "%{limit} zamanlanmış gönderi sınırını aştınız"
+    over_daily_limit: O gün için %{limit} zamanlanmış toot sınırını aştınız
+    over_total_limit: "%{limit} zamanlanmış toot sınırını aştınız"
     too_soon: Programlanan tarih bugünden ileri bir tarihte olmalıdır
   sessions:
     activity: Son aktivite
@@ -1027,9 +1047,9 @@ tr:
     open_in_web: Web sayfasında aç
     over_character_limit: "%{max} karakter limiti aşıldı"
     pin_errors:
-      limit: Hali hazırda maksimum sayıda gönderiyi sabitlediniz
-      ownership: Başkasının gönderisi sabitlenemez
-      private: Halka açık olmayan gönderi sabitlenemez
+      limit: Hali hazırda maksimum sayıda tootu sabitlediniz
+      ownership: Başkasının tootu sabitlenemez
+      private: Halka açık olmayan toot sabitlenemez
       reblog: Bir yineleme sabitlenemez
     poll:
       total_people:
@@ -1050,12 +1070,93 @@ tr:
       unlisted: ListelenmemiÅŸ
       unlisted_long: Herkes görebilir fakat herkese açık zaman tünellerinde listelenmez
   stream_entries:
-    pinned: Sabitlenmiş gönderi
+    pinned: SabitlenmiÅŸ toot
     reblogged: boost edildi
     sensitive_content: Hassas içerik
   tags:
     does_not_match_previous_name: önceki adla eşleşmiyor
   terms:
+    body_html: |
+      <h2>Gizlilik Politikası</h2>
+      <h3 id="collect">Hangi bilgileri topluyoruz?</h3>
+
+      <ul>
+      <li><em>Temel hesap bilgileri</em>: Bu sunucuya kaydolursanız, bir kullanıcı adı, bir e-posta adresi ve bir parola girmeniz istenebilir. Ayrıca, ekran adı ve biyografi gibi ek profil bilgileri girebilir ve bir profil fotoğrafı ve başlık resmi yükleyebilirsiniz. Kullanıcı adı, ekran ad, biyografi, profil fotoğrafı ve başlık resmi her zaman herkese açık olarak listelenir.</li>
+      <li><em>Gönderiler, takip etmeler ve diğer herkese açık bilgiler</em>: Takip ettiğiniz kişilerin listesi herkese açık olarak listelenir, sizi takip edenler için de aynısı geçerlidir. Bir mesaj gönderdiğinizde, mesajı gönderdiğiniz uygulamanın yanı sıra tarih ve saati de saklanır. Mesajlar, resim ve video gibi medya ekleri içerebilir. Herkese açık ve listelenmemiş gönderiler halka açıktır. Profilinizde bir gönderiyi yayınladığınızda, bu da herkese açık olarak mevcut bir bilgidir. Gönderileriniz takipçilerinize iletilir, bazı durumlarda farklı sunuculara gönderilir ve kopyalar orada saklanır. Gönderilerinizi sildiğinizde, bu da takipçilerinize iletilir. Başka bir gönderiyi yeniden bloglama veya favorileme eylemi her zaman halka açıktır.</li>
+      <li><em>Doğrudan ve takipçilere özel gönderiler</em>: Tüm gönderiler sunucuda saklanır ve işlenir. Takipçilere özel gönderiler, takipçilerinize ve içinde bahsedilen kullanıcılara, doğrudan gönderiler ise yalnızca içinde bahsedilen kullanıcılara iletilir. Bu, bazı durumlarda farklı sunuculara iletildiği ve kopyaların orada saklandığı anlamına gelir. Bu gönderilere erişimi yalnızca yetkili kişilerle sınırlamak için iyi niyetle çalışıyoruz, ancak diğer sunucular bunu yapamayabilir. Bu nedenle, takipçilerinizin ait olduğu sunucuları incelemek önemlidir. Ayarlarda yeni izleyicileri manuel olarak onaylama ve reddetme seçeneğini değiştirebilirsiniz. <em>Sunucuyu ve alıcı sunucuyu işleten kişilerin bu mesajları görüntüleyebileceğini unutmayın</em>, ve alıcılar ekran görüntüsü alabilir, kopyalayabilir veya başka bir şekilde yeniden paylaşabilir. <em>Mastodon üzerinden herhangi bir tehlikeli bilgi paylaşmayın.</em></li>
+      <li><em>IP'ler ve diğer meta veriler</em>: Oturum açarken, giriş yaptığınız IP adresini ve tarayıcı uygulamanızın adını kaydederiz. Giriş yapılan tüm oturumlar, incelemek ve iptal etmek için ayarlarda mevcuttur. En son kullanılan IP adresi 12 aya kadar saklanır. Sunucumuza gelen her isteğin IP adresini içeren sunucu loglarını da saklayabiliriz.</li>
+      </ul>
+
+      <hr class="spacer" />
+
+      <h3 id="use">Bilgilerinizi ne için kullanıyoruz?</h3>
+
+      <p>Sizden topladığımız bilgilerin herhangi bir kısmı aşağıdaki şekillerde kullanılabilir:</p>
+
+      <ul>
+      <li>Mastodon'un ana işlevselliğini sağlamak için. Yalnızca oturum açtığınızda diğer kişilerin içeriğiyle etkileşime girebilir ve kendi içeriğinizi gönderebilirsiniz. Örneğin, başkalarının kombine gönderilerini kendi kişiselleştirilmiş ana sayfanızdaki zaman çizelgenizde görüntülemek için onları takip edebilirsiniz.</li>
+      <li>Topluluğun denetlenmesine yardımcı olmak için, örneğin, yasaktan kaçınma veya diğer ihlalleri belirlemek için IP adresinizin diğer bilinen adreslerle karşılaştırılması.</li>
+      <li>Verdiğiniz e-posta adresi, size bilgi, içeriğinizle etkileşimde bulunan diğer kişilerle ilgili bildirimler veya mesaj göndermek, sorgulara ve/veya diğer istek ve sorulara cevap vermek için kullanılabilir.</li>
+      </ul>
+
+      <hr class="spacer" />
+
+      <h3 id="protect">Bilgilerinizi nasıl koruyoruz?</h3>
+
+      <p>Kişisel bilgilerinizi girerken, gönderirken veya onlara erişirken kişisel bilgilerinizin güvenliğini sağlamak için çeşitli güvenlik önlemleri uyguluyoruz. Diğer şeylerin yanı sıra, tarayıcı oturumunuz ve uygulamalarınız ile API arasındaki trafik SSL ile güvence altına alınır ve şifreniz sağlam bir tek yönlü bir algoritma kullanılarak şifrelenir. Hesabınıza daha güvenli bir şekilde erişebilmek için iki adımlı kimlik doğrulamasını etkinleştirebilirsiniz.</p>
+
+      <hr class="spacer" />
+
+      <h3 id="data-retention">Veri saklama politikamız nedir?</h3>
+
+      <p>Şunları yapmak için iyi niyetli bir şekilde çalışacağız:</p>
+
+      <ul>
+      <li>Bu sunucuya yapılan tüm isteklerin IP adresini içeren sunucu loglarını, bu tür logların şimdiye kadar saklandığı gibi, 90 günden fazla saklamayacağız.</li>
+      <li>Kayıtlı kullanıcılarla ilişkili IP adreslerini en fazla 12 ay boyunca saklayacağız.</li>
+      </ul>
+
+      <p>Gönderileriniz, medya ekleriniz, profil fotoğrafınız ve başlık resminiz dahil, içeriğimizin arşivini talep edebilir ve indirebilirsiniz.</p>
+
+      <p>Hesabınızı istediğiniz zaman geri alınamaz şekilde silebilirsiniz.</p>
+
+      <hr class="spacer"/>
+
+      <h3 id="cookies">Çerez kullanıyor muyuz?</h3>
+
+      <p>Evet. Çerezler, bir sitenin veya servis sağlayıcısının Web tarayıcınız üzerinden bilgisayarınızın sabit diskine aktardığı küçük dosyalardır (eğer izin verirseniz). Bu çerezler sitenin tarayıcınızı tanımasını ve kayıtlı bir hesabınız varsa, kayıtlı hesabınızla ilişkilendirmesini sağlar.</p>
+
+      <p>Sonraki ziyaretlerde tercihlerinizi anlamak ve kaydetmek için çerezleri kullanıyoruz.</p>
+
+      <hr class="spacer" />
+
+      <h3 id="disclose">Herhangi bir bilgiyi dış taraflara açıklıyor muyuz?</h3>
+
+      <p>Kişisel olarak tanımlanabilir bilgilerinizi dış taraflara satmıyor, takas etmiyor veya devretmiyoruz. Bu, taraflarımız bu bilgileri gizli tutmayı kabul ettiği sürece sitemizi işletmemize, işimizi yürütmemize veya size hizmet etmemize yardımcı olan güvenilir üçüncü tarafları içermemektedir. Ayrıca, yayınlanmanın yasalara uymayı, site politikalarımızı yürürlüğe koymayı ya da kendimizin ya da diğerlerinin haklarını, mülklerini ya da güvenliğini korumamızı sağladığına inandığımızda bilgilerinizi açıklayabiliriz.</p>
+
+      <p>Herkese açık içeriğiniz ağdaki diğer sunucular tarafından indirilebilir. Bu takipçiler veya alıcılar bundan farklı bir sunucuda bulundukları sürece, herkese açık ve takipçilere özel gönderileriniz, takipçilerinizin bulunduğu sunuculara, ve doğrudan mesajlar, alıcıların sunucularına iletilir.</p>
+
+      <p>Hesabınızı kullanması için bir uygulamayı yetkilendirdiğinizde, onayladığınız izinlerin kapsamına bağlı olarak, herkese açık profil bilgilerinize, takip ettiklerinizin listesine, takipçilerinize, listelerinize, tüm gönderilerinize ve favorilerinize erişebilir. Uygulamalar e-posta adresinize veya parolanıza asla erişemez.</p>
+
+      <hr class="spacer" />
+
+      <h3 id="children">Sitenin çocuklar tarafından kullanımı</h3>
+
+      <p>Bu sunucu AB’de veya AEA’da ise: Site, ürün ve hizmetlerimizin tamamı en az 16 yaşında olan kişilere yöneliktir. Eğer 16 yaşın altındaysanız, GDPR yükümlülükleri gereği (<a href="https://en.wikipedia.org/wiki/General_Data_Protection_Regulation">General Data Protection Regulation</a>) bu siteyi kullanmayın.</p>
+
+      <p>Bu sunucu ABD’de ise: Site, ürün ve hizmetlerimizin tamamı en az 13 yaşında olan kişilere yöneliktir. Eğer 13 yaşın altındaysanız, COPPA yükümlülükleri gereği (<a href="https://en.wikipedia.org/wiki/Children%27s_Online_Privacy_Protection_Act">Children's Online Privacy Protection Act</a>) bu siteyi kullanmayın.</p>
+
+      <p>Bu sunucu başka bir ülkede ise yasal gereklilikler farklı olabilir.</p>
+
+      <hr class="spacer" />
+
+      <h3 id="changes">Gizlilik Politikamızdaki Değişiklikler</h3>
+
+      <p>Gizlilik politikamızı değiştirmeye karar verirsek, bu değişiklikleri bu sayfada yayınlayacağız.</p>
+
+      <p>Bu belge CC-BY-SA altında lisanslanmıştır. En son 7 Mart 2018 tarihinde güncellenmiştir.</p>
+
+      <p><a href="https://github.com/discourse/discourse">Discourse gizlilik politikasından uyarlanmıştır</a>.</p>
     title: "%{instance} Hizmet Şartları ve Gizlilik Politikası"
   themes:
     contrast: Mastodon (Yüksek karşıtlık)
@@ -1089,10 +1190,11 @@ tr:
     warning:
       explanation:
         disable: Hesabınız donmuşken, hesap verileriniz bozulmadan kalır, ancak kilidi açılıncaya kadar herhangi bir işlem gerçekleştiremezsiniz.
-        silence: Hesabınız sınırlı iken, yalnızca sizi takip eden kişiler bu sunucuda gönderilerinizi görecek ve çeşitli halka açık listelerin dışında tutulabilirsiniz. Ancak, diğerleri hala sizi manuel olarak takip edebilir.
-        suspend: Hesabınız askıya alındı ve tüm gönderileriniz ve yüklediğiniz medya dosyalarınız bu sunucudan ve takipçilerinizin bulunduğu sunuculardan geri alınamaz şekilde kaldırıldı.
+        silence: Hesabınız sınırlı iken, yalnızca sizi takip eden kişiler bu sunucuda tootlarınızı görecek ve çeşitli halka açık listelerin dışında tutulabilirsiniz. Ancak, diğerleri hala sizi manuel olarak takip edebilir.
+        suspend: Hesabınız askıya alındı ve tüm tootlarınız ve yüklediğiniz medya dosyalarınız bu sunucudan ve takipçilerinizin bulunduğu sunuculardan geri alınamaz şekilde kaldırıldı.
       get_in_touch: "%{instance} çalışanlarıyla iletişim kurmak için bu e-postayı yanıtlayabilirsiniz."
       review_server_policies: Sunucu politikalarını inceleyin
+      statuses: 'Özellikle, şunun için:'
       subject:
         disable: "%{acct} hesabınız donduruldu"
         none: "%{acct} için uyarı"
@@ -1101,6 +1203,32 @@ tr:
       title:
         disable: Hesap donduruldu
         none: Uyarı
+        silence: Hesap sınırlandırıldı
+        suspend: Hesap askıya alındı
+    welcome:
+      edit_profile_action: Profil ayarla
+      edit_profile_step: Bir avatar veya başlık yükleyerek, ekran adınızı değiştirerek ve daha fazlasını yaparak profilinizi kişiselleştirebilirsiniz. Yeni takipçileri sizi takip etmelerine izin verilmeden önce incelemek isterseniz, hesabınızı kilitleyebilirsiniz.
+      explanation: İşte sana başlangıç için birkaç ipucu
+      final_action: Gönderi yazmaya başlayın
+      final_step: 'Gönderi yazmaya başlayın! Takipçiler olmadan bile, herkese açık mesajlarınız başkaları tarafından görülebilir, örneğin yerel zaman çizelgesinde ve etiketlerde. Kendinizi #introductions etiketinde tanıtmak isteyebilirsiniz.'
+      full_handle: Tanıtıcınız
+      full_handle_hint: Arkadaşlarınıza, size başka bir sunucudan mesaj atabilmeleri veya sizi takip edebilmeleri için söyleyeceğiniz şey budur.
+      review_preferences_action: Tercihleri deÄŸiÅŸtirin
+      review_preferences_step: Hangi e-postaları almak veya gönderilerinizin varsayılan olarak hangi gizlilik seviyesinde olmasını istediğiniz gibi tercihlerinizi ayarladığınızdan emin olun. Hareket hastalığınız yoksa, GIF otomatik oynatmayı etkinleştirmeyi seçebilirsiniz.
+      subject: Mastodon'a hoÅŸgeldiniz
+      tip_federated_timeline: Federe zaman tüneli, Mastodon ağının genel bir görüntüsüdür. Ancak yalnızca komşularınızın abone olduğu kişileri içerir, bu yüzden tamamı değildir.
+      tip_following: Sunucu yönetici(ler)ini varsayılan olarak takip edersiniz. Daha ilginç insanlar bulmak için yerel ve federe zaman çizelgelerini kontrol edin.
+      tip_local_timeline: Yerel zaman çizelgesi, %{instance} üzerindeki kişilerin genel bir görüntüsüdür. Bunlar senin en yakın komşularındır!
+      tip_mobile_webapp: Mobil tarayıcınız size ana ekranınıza Mastodon eklemenizi önerirse, push bildirimleri alabilirsiniz. Birçok yönden yerli bir uygulama gibi davranır!
+      tips: İpuçları
+      title: Gemiye hoÅŸgeldin, %{name}!
   users:
+    follow_limit_reached: "%{limit} kişiden daha fazlasını takip edemezsiniz"
     invalid_email: E-posta adresiniz geçersiz
     invalid_otp_token: İki-faktörlü kodunuz geçersiz
+    otp_lost_help_html: Her ikisine de erişiminizi kaybettiyseniz, %{email} ile irtibata geçebilirsiniz
+    seamless_external_login: Harici bir servis aracılığıyla oturum açtınız, bu nedenle parola ve e-posta ayarları mevcut değildir.
+    signed_in_as: 'GiriÅŸ yapan:'
+  verification:
+    explanation_html: '<strong>Profil meta verisindeki bağlantıların sahibi olarak kendinizi doğrulayabilirsiniz</strong>. Bunun için, link verilen web sitesi Mastodon profilinize geri bir link içermelidir. Geri link bir <code>rel="me"</code> özelliğine sahip <strong>olmalıdır</strong>. Bağlantının metin içeriği önemli değildir. İşte bir örnek:'
+    verification: DoÄŸrulama
diff --git a/config/locales/uk.yml b/config/locales/uk.yml
index 1d3459a0f7729efd2f3222b756b8dc096be890ce..32b38067be74e3071d92cfa9465334eaa912dec8 100644
--- a/config/locales/uk.yml
+++ b/config/locales/uk.yml
@@ -11,6 +11,7 @@ uk:
     apps: Мобільні додатки
     apps_platforms: Користуйтесь Mastodon на iOS, Android та інших платформах
     browse_directory: Переглядайте каталог профілів та фільтруйте за інтересами
+    browse_local_posts: Переглядайте потік публічних постів з цього сервера
     browse_public_posts: Переглядайте потік публічних постів на Mastodon
     contact: Зв'язатися
     contact_missing: Не зазначено
@@ -40,6 +41,10 @@ uk:
     unavailable_content_description:
       domain: Сервер
       reason: Причина
+      rejecting_media: 'Медіа файли з цих серверів не будуть оброблятися або зберігатись, а мініатюри відображатись. Щоб побачити оригінальний файл, треба буде натиснути на посилання:'
+      silenced: 'Повідомлення з цих серверів будуть приховані в публічних стрічках та розмовах, також ви не отримуватимете сповіщень щодо взаємодій з їх користувачами, якщо ви їх не відстежуєте:'
+      suspended: 'Жодна інформація з цих серверів не буде оброблена, збережена чи передана, що робить спілкування з користувачами цих серверів неможливим:'
+    unavailable_content_html: Mastodon зазвичай дозволяє вам взаємодіяти з користувачами будь-яких серверів в Федіверсі та переглядати їх контент. Ось винятки, які було зроблено на цьому конкретному сервері.
     user_count_after:
       few: користувача
       many: користувачів
@@ -49,6 +54,8 @@ uk:
     what_is_mastodon: Що таке Mastodon?
   accounts:
     choices_html: 'Вподобання %{name}:'
+    endorsements_hint: У веб-інтерфейсі ви можете рекомендувати людей, на яких підписані, і вони з'являться тут.
+    featured_tags_hint: Ви можете вказати хештеги, які будуть відображатись тут.
     follow: Підписатися
     followers:
       few: Підписника
@@ -79,6 +86,7 @@ uk:
     roles:
       admin: Адміністратор
       bot: Бот
+      group: Група
       moderator: Мод
     unavailable: Профіль недоступний
     unfollow: Відписатися
@@ -119,9 +127,7 @@ uk:
       email_status: Статус електронної пошти
       enable: Увімкнути
       enabled: Увімкнено
-      feed_url: URL-адреса каналу
       followers: Підписники
-      followers_url: URL підписників
       follows: Підписки
       header: Заголовок
       inbox_url: URL вхідних повідомлень
@@ -149,10 +155,8 @@ uk:
       no_account_selected: Жоден обліковий запис не було змінено, оскільки жоден не було вибрано
       no_limits_imposed: Жодних обмежень не накладено
       not_subscribed: Не підписані
-      outbox_url: URL вихідних повідомлень
       pending: Відгук в очікуванні
       perform_full_suspension: Призупинити
-      profile_url: URL профілю
       promote: Просунути
       protocol: Протокол
       public: Публічний
@@ -175,8 +179,8 @@ uk:
         moderator: Модератор
         staff: Персонал
         user: Користувач
-      salmon_url: Salmon URL
       search: Пошук
+      search_same_ip: Інші користувачі з тим самим IP
       shared_inbox_url: URL спільного вхідного кошика
       show:
         created_reports: Скарги, створені цим аккаунтом
@@ -203,10 +207,12 @@ uk:
         confirm_user: "%{name} підтвердив(-ла) статус поштової адреси користувача %{target}"
         create_account_warning: "%{name} надіслав попередження до %{target}"
         create_custom_emoji: "%{name} вивантажив(-ла) нове емодзі %{target}"
+        create_domain_allow: "%{name} додав(-ла) домен %{target} до білого списку"
         create_domain_block: "%{name} заблокував(-ла) домен %{target}"
         create_email_domain_block: "%{name} додав(-ла) поштовий домен %{target} до чорного списку"
         demote_user: "%{name} понизив(-ла) %{target}"
         destroy_custom_emoji: "%{name} знищив(-ла) емодзі %{target}"
+        destroy_domain_allow: "%{name} видалив(-ла) домен %{target} з білого списку"
         destroy_domain_block: "%{name} розблокував(-ла) домен %{target}"
         destroy_email_domain_block: "%{name} додав(-ла) поштовий домен %{target} до білого списку"
         destroy_status: "%{name} видалив(-ла) статус користувача %{target}"
@@ -231,10 +237,12 @@ uk:
       deleted_status: "(видалений статус)"
       title: Журнал подій
     custom_emojis:
+      assign_category: Призначити категорію
       by_domain: Домен
       copied_msg: Локальна копія емодзі успішно створена
       copy: Копіювати
       copy_failed_msg: Не вийшло створити локальну копію емодзі
+      create_new_category: Створити нову категорію
       created_msg: Емодзі успішно створене!
       delete: Видалити
       destroyed_msg: Емодзі усіпішно видалене!
@@ -260,6 +268,7 @@ uk:
       updated_msg: Емодзі успішно оновлене!
       upload: Вивантажити
     dashboard:
+      authorized_fetch_mode: Безпечний режим
       backlog: відкладені завдання
       config: Налаштування
       feature_deletions: Видалення облікових записів
@@ -397,12 +406,21 @@ uk:
       destroyed_msg: Скарга успішно видалена!
     reports:
       account:
-        note: нотатка
-        report: скарга
+        notes:
+          few: "%{count} приміток"
+          many: "%{count} приміток"
+          one: "%{count} примітка"
+          other: "%{count} приміток"
+        reports:
+          few: "%{count} скарги"
+          many: "%{count} скарг"
+          one: "%{count} скарга"
+          other: "%{count} скарг"
       action_taken_by: Дія виконана
       are_you_sure: Ви впевнені?
       assign_to_self: Призначити мені
       assigned: Призначений модератор
+      by_target_domain: Домен облікового запису, на який скаржаться
       comment:
         none: Немає
       created_at: Створено
@@ -444,6 +462,7 @@ uk:
         all: Всi
         disabled: Нікого
         title: Показати, які домени заблоковані
+        users: Для авторизованих локальних користувачів
       domain_blocks_rationale:
         title: Обґрунтування
       hero:
@@ -489,6 +508,7 @@ uk:
         desc_html: Відображається на сторінці додаткової информації<br>Можна використовувати HTML-теги
         title: Розширений опис сайту
       site_short_description:
+        desc_html: Відображається в бічній панелі та мета-тегах. Опишіть, що таке Mastodon і що робить цей сервер особливим, в одному абзаці.
         title: Короткий опис сервера
       site_terms:
         desc_html: |-
@@ -506,6 +526,9 @@ uk:
         desc_html: Показувати публічну стрічку на головній сторінці
         title: Передпоказ фіду
       title: Налаштування сайту
+      trendable_by_default:
+        desc_html: Впливає на хештеги, які не були заборонені раніше
+        title: Дозволити хештегам потрапляти в тренди без попереднього перегляду
       trends:
         desc_html: Відображати розглянуті хештеґи, які популярні зараз
         title: Популярні хештеги
@@ -530,6 +553,9 @@ uk:
       context: Контекст
       directory: У каталозі
       in_directory: "%{count} у каталозі"
+      last_active: За активністю
+      most_popular: За популярністю
+      most_recent: За часом створення
       name: Хештеґ
       review: Переглянути статус
       reviewed: Переглянуто
@@ -559,13 +585,19 @@ uk:
     add_new: Створити псевдонім
     created_msg: Новий псевдонім успішно створено. Тепер ви можете починати переміщення зі старого облікового запису.
     deleted_msg: Псевдонім успішно видалено. Переміщення з того облікового запису до цього більше не можливе.
+    remove: Від'єднати псевдонім
   appearance:
     advanced_web_interface: Розширений web-інтерфейс
     advanced_web_interface_hint: 'Розширений веб-інтерфейс дає змогу бачити багато стовпчиків одночасно: основна сторінка, сповіщення, глобальна стрічка, будь-які списки та хештеґи. Потребує широкого екрана.'
     animations_and_accessibility: Анімація та доступність
     confirmation_dialogs: Діалоги підтвердження
     discovery: Виявлення
+    localization:
+      body: Mastodon перекладено волонтерами.
+      guide_link: https://uk.crowdin.com/project/mastodon
+      guide_link_text: Кожен може взяти участь.
     sensitive_content: Дражливий вміст
+    toot_layout: Зовнішній вигляд дмухів
   application_mailer:
     notification_preferences: Змінити налаштування e-mail
     salutation: "%{name},"
@@ -618,6 +650,7 @@ uk:
       confirming: Очікуємо на завершення підтвердження за допомогою електронної пошти.
       functional: Ваш обліковий запис повністю робочій.
       pending: Ваша заява очікує на розгляд нашим персоналом. Це може зайняти деякий час. Ви отримаєте електронний лист, якщо ваша заява буде схвалена.
+      redirecting_to: Ваш обліковий запис наразі неактивний, тому що він перенаправлений до %{acct}.
     trouble_logging_in: Проблема під час входу?
   authorize_follow:
     already_following: Ви вже слідкуєте за цим обліковим записом
@@ -630,6 +663,11 @@ uk:
       return: Перейти до профілю користувача
       web: Перейти до вебу
     title: Підписатися на %{acct}
+  challenge:
+    confirm: Далі
+    hint_html: "<strong>Підказка:</strong> ми не будемо запитувати ваш пароль впродовж наступної години."
+    invalid_password: Невірний пароль
+    prompt: Підтвердіть пароль для продовження
   datetime:
     distance_in_words:
       about_x_hours: "%{count}г"
@@ -645,7 +683,9 @@ uk:
       x_months: "%{count}міс"
       x_seconds: "%{count}сек"
   deletes:
+    challenge_not_passed: Невірна інформація
     confirm_password: Введіть актуальний пароль, щоб перевірити що ви це ви
+    confirm_username: Введіть ваше ім'я користувача, щоб підтвердити процедуру
     proceed: Видалити обліковий запис
     success_msg: Ваш обліковий запис було успішно видалено
     warning:
@@ -694,7 +734,6 @@ uk:
     blocks: Список блокувань
     csv: CSV
     domain_blocks: Блокування доменів
-    follows: Підписки
     lists: Списки
     mutes: Список глушення
     storage: Ваш медіаконтент
@@ -716,6 +755,7 @@ uk:
       invalid_irreversible: Незворотне фільтрування працює тільки в контексті свого фіду або сповіщень
     index:
       delete: Видалити
+      empty: У вас немає фільтрів.
       title: Фільтри
     new:
       title: Додати фільтр
@@ -799,6 +839,29 @@ uk:
   migrations:
     acct: username@domain нового облікового запису
     cancel: Скасувати перенаправлення
+    cancelled_msg: Перенаправлення успішно скасовано.
+    errors:
+      already_moved: той самий обліковий запис, до якого ви вже переміщені
+      move_to_self: неможливо перемістити обліковий запис до самого себе
+      not_found: не знайдено
+      on_cooldown: Ви у витверезнику
+    followers_count: Підписників на час міграції
+    incoming_migrations: Переїзд з іншого облікового запису
+    incoming_migrations_html: Щоб переїхати з іншого облікового запису на цей, ви маєте <a href="%{path}">створити псевдонім облікового запису</a>.
+    moved_msg: Ваш обліковий запис зараз перенаправляється до %{acct}. Ваші підписники також будуть переміщені.
+    not_redirecting: Наразі ваш обліковий запис не перенаправлений до іншого облікового запису.
+    on_cooldown: Нещодавно ви вже перенесли ваш обліковий запис. Функція переносу стане доступною знову через %{count} днів.
+    past_migrations: Попередні міграції
+    proceed_with_move: Перемістити підписників
+    redirecting_to: Ваш обліковий запис перенаправляється до %{acct}.
+    set_redirect: Встановити перенаправлення
+    warning:
+      backreference_required: Спочатку має бути налаштовано зворотне посилання поточного облікового запису на новий обліковий запис
+      before: 'Перш ніж продовжити, уважно прочитайте ці нотатки:'
+      cooldown: Після переїзду ви деякий час не можете переїжджати знову
+      disabled_account: Поточний обліковий запис не буде повністю придатний до використання. Проте ви матимете доступ до експорту даних та повторної активації.
+      followers: Ця дія призведе до переміщення всіх підписників з поточного облікового запису до нового облікового запису
+      other_data: Ніякі інші дані не будуть переміщені автоматично
   moderation:
     title: Модерація
   notification_mailer:
@@ -839,6 +902,10 @@ uk:
       body: 'Ваш статус було передмухнуто %{name}:'
       subject: "%{name} передмухнув(-ла) ваш статус"
       title: Нове передмухування
+  notifications:
+    email_events: Події, про які сповіщати електронною поштою
+    email_events_hint: 'Оберіть події, про які ви хочете отримувати сповіщення:'
+    other_settings: Інші налаштування сповіщень
   number:
     human:
       decimal_units:
@@ -872,6 +939,8 @@ uk:
   relationships:
     activity: Діяльність облікового запису
     dormant: Неактивні
+    followers: Підписники
+    following: Підписник(-ця)
     last_active: Крайня активність
     most_recent: За часом створення
     moved: Переміщено
@@ -947,6 +1016,7 @@ uk:
   settings:
     account: Обліковий запис
     account_settings: Налаштування облікового запису
+    aliases: Псевдоніми облікового запису
     appearance: Вигляд
     authorized_apps: Авторизовані застосунки
     back: Назад до Mastodon
@@ -964,6 +1034,8 @@ uk:
     profile: Профіль
     relationships: Підписки та підписники
     two_factor_authentication: Двофакторна авторизація
+  spam_check:
+    spam_detected: Це автоматична скарга. Було виявлено спам.
   statuses:
     attached:
       description: 'Прикріплено: %{attached}'
@@ -993,6 +1065,11 @@ uk:
       private: Не можна закріпити непублічний пост
       reblog: Не можна закріпити просунутий пост
     poll:
+      total_people:
+        few: "%{count} людей"
+        many: "%{count} людей"
+        one: "%{count} людина"
+        other: "%{count} людей"
       total_votes:
         few: "%{count} голоса"
         many: "%{count} голосів"
diff --git a/config/locales/ur.yml b/config/locales/ur.yml
new file mode 100644
index 0000000000000000000000000000000000000000..114261859cf8cf6ec62540d0b96cd95ce4ba23d2
--- /dev/null
+++ b/config/locales/ur.yml
@@ -0,0 +1,20 @@
+---
+ur:
+  errors:
+    '400': The request you submitted was invalid or malformed.
+    '403': You don't have permission to view this page.
+    '404': The page you are looking for isn't here.
+    '406': This page is not available in the requested format.
+    '410': The page you were looking for doesn't exist here anymore.
+    '422': 
+    '429': Throttled
+    '500': 
+    '503': The page could not be served due to a temporary server failure.
+  invites:
+    expires_in:
+      '1800': 30 minutes
+      '21600': 6 hours
+      '3600': 1 hour
+      '43200': 12 hours
+      '604800': 1 week
+      '86400': 1 day
diff --git a/config/locales/vi.yml b/config/locales/vi.yml
new file mode 100644
index 0000000000000000000000000000000000000000..b01c1ea204496bd767ba1ee3d0d4787ae69329c9
--- /dev/null
+++ b/config/locales/vi.yml
@@ -0,0 +1,1115 @@
+---
+vi:
+  about:
+    about_hashtag_html: Đây là các tút công khai được gắn thẻ <strong># %{hashtag}</strong> . Bạn có thể tương tác với họ nếu bạn có tài khoản ở bất cứ đâu trong fediverse.
+    about_mastodon_html: 'Mạng xã hội của tương lai: Không quảng cáo, không giám sát doanh nghiệp, thiết kế đạo đức và phân cấp! Sở hữu dữ liệu của bạn với Mastodon!'
+    about_this: Trong khoảng
+    active_count_after: Hoạt động
+    active_footnote: Người dùng hoạt động hàng tháng (MAU)
+    administered_by: 'Điều hành bởi:'
+    api: API
+    apps: Ứng dụng di động
+    apps_platforms: Sử dụng Mastodon từ iOS, Android và các nền tảng khác
+    browse_directory: Duyệt một thư mục hồ sơ và lọc theo sở thích
+    browse_local_posts: Duyệt một luồng trực tiếp các bài đăng công khai trên trang
+    browse_public_posts: Duyệt một luồng trực tiếp các bài đăng công khai trên Mastodon
+    contact: Tiếp xúc
+    contact_missing: Không được thiết lập
+    contact_unavailable: Không có
+    discover_users: Khám phá người dùng
+    documentation: Tài liệu
+    federation_hint_html: Với tài khoản trên %{instance}, bạn sẽ có thể theo dõi mọi người trên bất kỳ máy chủ Mastodon nào và hơn thế nữa.
+    get_apps: Dùng thử ứng dụng di động
+    hosted_on: " %{domain} được vận hành trên Mastodon"
+    instance_actor_flash: "Tài khoản này là một tác nhân ảo được sử dụng để đại diện cho chính máy chủ chứ không phải bất kỳ người dùng cá nhân nào. Nó được sử dụng cho mục đích liên kết và không nên bị chặn trừ khi bạn muốn chặn toàn bộ phiên bản, trong trường hợp đó bạn nên sử dụng một khối miền. \n"
+    learn_more: Tìm hiểu thêm
+    privacy_policy: Chính sách bảo mật
+    see_whats_happening: Xem những gì đang xảy ra
+    server_stats: 'Số liệu thống kê máy chủ:'
+    source_code: Mã nguồn
+    status_count_after:
+      other: trạng thái
+    status_count_before: Ai là tác giả
+    tagline: Theo dõi bạn bè và khám phá những cái mới
+    terms: Điều khoản dịch vụ
+    unavailable_content: Nội dung không khả dụng
+    unavailable_content_description:
+      domain: Người phục vụ
+      reason: Lý do
+      rejecting_media: 'Các tệp phương tiện từ các máy chủ này sẽ không được xử lý hoặc lưu trữ và không có hình thu nhỏ nào được hiển thị, yêu cầu nhấp thủ công vào tệp gốc:'
+      silenced: 'Các bài đăng từ các máy chủ này sẽ bị ẩn trong các dòng thời gian và cuộc trò chuyện công khai và không có thông báo nào được tạo từ các tương tác của người dùng của họ, trừ khi bạn đang theo dõi họ:'
+      suspended: 'Không có dữ liệu từ các máy chủ này sẽ được xử lý, lưu trữ hoặc trao đổi, khiến cho bất kỳ tương tác hoặc giao tiếp với người dùng từ các máy chủ này đều không thể:'
+    unavailable_content_html: Mastodon thường cho phép bạn xem nội dung từ và tương tác với người dùng từ bất kỳ máy chủ nào khác trong fediverse. Đây là những ngoại lệ đã được thực hiện trên máy chủ cụ thể này.
+    user_count_after:
+      other: người dùng
+    user_count_before: Nhà
+    what_is_mastodon: Mastodon là gì?
+  accounts:
+    choices_html: 'lựa chọn của %{name}:'
+    endorsements_hint: Bạn có thể xác nhận những người bạn theo dõi từ giao diện web và họ sẽ hiển thị ở đây.
+    featured_tags_hint: Bạn có thể làm nổi bật các hashtag cụ thể sẽ được hiển thị ở đây.
+    follow: Theo
+    followers:
+      other: Người theo dõi
+    following: Tiếp theo
+    joined: Đã tham gia %{date}
+    last_active: hoạt động cuối cùng
+    link_verified_on: Quyền sở hữu của liên kết này đã được kiểm tra trên %{date}
+    media: Phương tiện truyền thông
+    moved_html: "%{name} đã chuyển sang %{new_profile_link}:"
+    network_hidden: Thông tin này không có sẵn
+    never_active: Không bao giờ
+    nothing_here: Không có cái gì ở đây cả!
+    people_followed_by: Những người mà %{name} theo dõi
+    people_who_follow: Những người theo dõi %{name}
+    pin_errors:
+      following: Bạn phải theo dõi người bạn muốn chứng thực
+    posts:
+      other: Tút
+    posts_tab_heading: Tút
+    posts_with_replies: Tút và trả lời
+    reserved_username: Tên người dùng được bảo lưu
+    roles:
+      admin: quản trị viên
+      bot: Người máy
+      group: Nhóm
+      moderator: Phép chia lấy phần dư
+    unavailable: Hồ sơ không có sẵn
+    unfollow: Hủy theo dõi
+  admin:
+    account_actions:
+      action: Diá»…n
+      title: Thực hiện hành động kiểm duyệt trên %{acct}
+    account_moderation_notes:
+      create: Để lại ghi chú
+      created_msg: Lưu ý kiểm duyệt được tạo thành công!
+      delete: Xóa bỏ
+      destroyed_msg: Lưu ý kiểm duyệt thành công!
+    accounts:
+      approve: Phê duyệt
+      approve_all: Phê duyệt tất cả
+      are_you_sure: Bạn có chắc không?
+      avatar: hình đại diện
+      by_domain: Miền
+      change_email:
+        changed_msg: Email tài khoản đã thay đổi thành công!
+        current_email: Email hiện tại
+        label: Thay đổi e-mail
+        new_email: Email má»›i
+        submit: Thay đổi e-mail
+        title: Thay đổi email cho %{username}
+      confirm: Xác nhận
+      confirmed: Đã xác nhận
+      confirming: Khẳng định
+      deleted: Đã xóa
+      demote: Hạ cấp
+      disable: Vô hiệu hóa
+      disable_two_factor_authentication: Vô hiệu hóa 2FA
+      disabled: Tàn tật
+      display_name: Tên hiển thị
+      domain: Miền
+      edit: Biên tập
+      email: E-mail
+      email_status: Trạng thái email
+      enable: Kích hoạt
+      enabled: Đã bật
+      followers: Người theo dõi
+      follows: Theo sau
+      header: Tiêu đề
+      inbox_url: URL hộp thư đến
+      invited_by: Được mời bởi
+      ip: IP
+      joined: Đã tham gia
+      location:
+        all: Tất cả
+        local: Địa phương
+        remote: Xa
+        title: Vị trí
+      login_status: Trạng thái đăng nhập
+      media_attachments: Tệp đính kèm phương tiện
+      memorialize: Biến thành bản ghi nhớ
+      moderation:
+        active: Hoạt động
+        all: Tất cả
+        pending: Đang chờ xử lý
+        silenced: Im lặng
+        suspended: Đình chỉ
+        title: Điều độ
+      moderation_notes: Ghi chú kiểm duyệt
+      most_recent_activity: Hoạt động gần đây nhất
+      most_recent_ip: IP gần đây nhất
+      no_account_selected: Không có tài khoản nào được thay đổi vì không có tài khoản nào được chọn
+      no_limits_imposed: Không giới hạn áp đặt
+      not_subscribed: Chưa đăng ký
+      pending: Đang chờ xem xét
+      perform_full_suspension: Đình chỉ
+      promote: Khuyến khích
+      protocol: Giao thức
+      public: Công cộng
+      push_subscription_expires: Đăng ký PuSH hết hạn
+      redownload: Làm mới hồ sơ
+      reject: Từ chối
+      reject_all: Từ chối tất cả
+      remove_avatar: Xóa hình đại diện
+      remove_header: Xóa tiêu đề
+      resend_confirmation:
+        already_confirmed: Người dùng này đã được xác nhận
+        send: Gửi lại email xác nhận
+        success: Email xác nhận đã được gửi thành công!
+      reset: Cài lại
+      reset_password: Đặt lại mật khẩu
+      resubscribe: Đăng ký lại
+      role: Quyền
+      roles:
+        admin: Người quản lý
+        moderator: Người điều hành
+        staff: Nhân viên
+        user: Người dùng
+      search: Tìm kiếm
+      search_same_ip: Thành viên khác cùng IP
+      shared_inbox_url: URL hộp thư đến được chia sẻ
+      show:
+        created_reports: Làm báo cáo
+        targeted_reports: Báo cáo bởi người khác
+      silence: khoảng lặng
+      silenced: Im lặng
+      statuses: Trạng thái
+      subscribe: Đăng ký
+      suspended: Đình chỉ
+      time_in_queue: Chờ đợi trong hàng đợi %{time}
+      title: Tài khoản
+      unconfirmed_email: Email chưa được xác nhận
+      undo_silenced: Hoàn tác im lặng
+      undo_suspension: Hoàn tác hệ thống treo
+      unsubscribe: Hủy đăng ký
+      username: tên tài khoản
+      warn: Cảnh báo
+      web: Web
+      whitelisted: Danh sách trắng
+    action_logs:
+      actions:
+        assigned_to_self_report: "%{name} được chỉ định báo cáo %{target} cho chính họ"
+        change_email_user: "%{name} đã thay đổi địa chỉ email của người dùng %{target}"
+        confirm_user: "%{name} xác nhận địa chỉ email của người dùng %{target}"
+        create_account_warning: "%{name} đã gửi cảnh báo tới %{target}"
+        create_custom_emoji: "%{name} đã tải lên biểu tượng cảm xúc mới %{target}"
+        create_domain_allow: "%{name} tên miền trong danh sách trắng %{target}"
+        create_domain_block: "%{name} tên miền bị chặn %{target}"
+        create_email_domain_block: "%{name} tên miền e-mail trong danh sách đen %{target}"
+        demote_user: "%{name} hạ cấp người dùng %{target}"
+        destroy_custom_emoji: "%{name} biểu tượng cảm xúc bị phá hủy %{target}"
+        destroy_domain_allow: "%{name} đã xóa tên miền %{target} khỏi danh sách trắng"
+        destroy_domain_block: "%{name} tên miền không bị chặn %{target}"
+        destroy_email_domain_block: "%{name} tên miền e-mail được liệt kê trắng %{target}"
+        destroy_status: "%{name} đã xóa trạng thái bởi %{target}"
+        disable_2fa_user: "%{name} đã vô hiệu hóa yêu cầu hai yếu tố cho người dùng %{target}"
+        disable_custom_emoji: "%{name} biểu tượng cảm xúc bị vô hiệu hóa %{target}"
+        disable_user: "%{name} đăng nhập bị vô hiệu hóa cho người dùng %{target}"
+        enable_custom_emoji: "%{name} kích hoạt biểu tượng cảm xúc %{target}"
+        enable_user: "%{name} kích hoạt đăng nhập cho người dùng %{target}"
+        memorialize_account: "%{name} đã biến tài khoản của %{target} thành một trang ghi nhớ"
+        promote_user: "%{name} người dùng được quảng cáo %{target}"
+        remove_avatar_user: "%{name} đã xóa hình đại diện của %{target}"
+        reopen_report: "%{name} mở lại báo cáo %{target}"
+        reset_password_user: "%{name} đặt lại mật khẩu của người dùng %{target}"
+        resolve_report: "%{name} đã giải quyết báo cáo %{target}"
+        silence_account: "%{name} im lặng tài khoản của %{target}"
+        suspend_account: "%{name} bị treo tài khoản của %{target}"
+        unassigned_report: "%{name} báo cáo chưa được chỉ định %{target}"
+        unsilence_account: "%{name} chưa được phân loại tài khoản của %{target}"
+        unsuspend_account: "%{name} không có tài khoản %{target} của tài khoản"
+        update_custom_emoji: "%{name} đã cập nhật biểu tượng cảm xúc %{target}"
+        update_status: "%{name} trạng thái được cập nhật bởi %{target}"
+      deleted_status: "(trạng thái đã xóa)"
+      title: Sổ ghi chép đánh giá
+    custom_emojis:
+      assign_category: Chỉ định danh mục
+      by_domain: Miền
+      copied_msg: Tạo thành công bản sao biểu tượng cảm xúc cục bộ
+      copy: Sao chép
+      copy_failed_msg: Không thể tạo một bản sao cục bộ của biểu tượng cảm xúc đó
+      create_new_category: Tạo danh mục mới
+      created_msg: Biểu tượng cảm xúc được tạo thành công!
+      delete: Xóa bỏ
+      destroyed_msg: Emojo phá hủy thành công!
+      disable: Vô hiệu hóa
+      disabled: Tàn tật
+      disabled_msg: Vô hiệu hóa thành công biểu tượng cảm xúc đó
+      emoji: Biểu tượng cảm xúc
+      enable: Kích hoạt
+      enabled: Đã bật
+      enabled_msg: Kích hoạt thành công biểu tượng cảm xúc đó
+      image_hint: PNG lên tới 50KB
+      list: Danh sách
+      listed: Liệt kê
+      new:
+        title: Thêm biểu tượng cảm xúc tùy chỉnh mới
+      overwrite: Ghi đè
+      shortcode: Mã ngắn
+      shortcode_hint: Ít nhất 2 ký tự, chỉ các ký tự chữ và số và dấu gạch dưới
+      title: Biểu tượng cảm xúc tùy chỉnh
+      uncategorized: Chưa phân loại
+      unlist: Bỏ danh sách
+      unlisted: Chưa niêm yết
+      update_failed_msg: Không thể cập nhật biểu tượng cảm xúc đó
+      updated_msg: Biểu tượng cảm xúc được cập nhật thành công!
+      upload: Tải lên
+    dashboard:
+      authorized_fetch_mode: Chế độ bảo mật
+      backlog: công việc tồn đọng
+      config: Cấu hình
+      feature_deletions: Xóa tài khoản
+      feature_invites: Mời liên kết
+      feature_profile_directory: Thư mục hồ sơ
+      feature_registrations: Đăng ký
+      feature_relay: Liên đoàn tiếp sức
+      feature_spam_check: Chống thư rác
+      feature_timeline_preview: Xem trước dòng thời gian
+      features: Đặc trưng
+      hidden_service: Liên kết với các dịch vụ ẩn
+      open_reports: mở báo cáo
+      pending_tags: hashtag đang chờ xem xét
+      pending_users: người dùng đang chờ xem xét
+      recent_users: Người dùng gần đây
+      search: Tìm kiếm toàn văn
+      single_user_mode: Chế độ người dùng đơn
+      software: Phần mềm
+      space: Sử dụng không gian
+      title: bảng điều khiển
+      total_users: tổng số người dùng
+      trends: Xu hướng
+      week_interactions: tương tác trong tuần này
+      week_users_active: hoạt động trong tuần này
+      week_users_new: người dùng trong tuần này
+      whitelist_mode: Chế độ danh sách trắng
+    domain_allows:
+      add_new: Tên miền trắng
+      created_msg: Tên miền đã được đưa vào danh sách trắng thành công
+      destroyed_msg: Tên miền đã bị xóa khỏi danh sách trắng
+      undo: Xóa khỏi danh sách trắng
+    domain_blocks:
+      add_new: Thêm khối miền mới
+      created_msg: Khối tên miền hiện đang được xử lý
+      destroyed_msg: Khối tên miền đã được hoàn tác
+      domain: Miền
+      edit: Chỉnh sửa khối miền
+      existing_domain_block_html: Bạn đã áp đặt các giới hạn chặt chẽ hơn trên %{name}, trước tiên bạn cần <a href="%{unblock_url}">bỏ chặn nó</a> .
+      new:
+        create: Tạo khối
+        hint: Khối miền sẽ không ngăn việc tạo các mục nhập tài khoản trong cơ sở dữ liệu, nhưng sẽ hồi tố và tự động áp dụng các phương pháp kiểm duyệt cụ thể trên các tài khoản đó.
+        severity:
+          desc_html: "<strong>Im lặng</strong> sẽ làm cho bài đăng của tài khoản trở nên vô hình đối với bất kỳ ai không theo dõi họ. <strong>Đình chỉ</strong> sẽ xóa tất cả nội dung, phương tiện và dữ liệu hồ sơ của tài khoản. Sử dụng <strong>Không</strong> nếu bạn chỉ muốn từ chối các tập tin phương tiện truyền thông."
+          noop: không ai
+          silence: khoảng lặng
+          suspend: Đình chỉ
+        title: Khối miền mới
+      private_comment: Bình luận riêng
+      private_comment_hint: Nhận xét về giới hạn miền này để sử dụng nội bộ của người điều hành.
+      public_comment: Nhận xét công khai
+      public_comment_hint: Nhận xét về giới hạn tên miền này cho công chúng, nếu quảng cáo danh sách các giới hạn tên miền được bật.
+      reject_media: Từ chối các tập tin phương tiện truyền thông
+      reject_media_hint: Xóa các tệp phương tiện được lưu trữ cục bộ và từ chối tải xuống bất kỳ trong tương lai. Không liên quan cho đình chỉ
+      reject_reports: Từ chối báo cáo
+      reject_reports_hint: Bỏ qua tất cả các báo cáo đến từ tên miền này. Không liên quan cho đình chỉ
+      rejecting_media: từ chối các tập tin phương tiện truyền thông
+      rejecting_reports: từ chối báo cáo
+      severity:
+        silence: im lặng
+        suspend: bị đình chỉ
+      show:
+        affected_accounts:
+          other: "%{count} tài khoản trong cơ sở dữ liệu bị ảnh hưởng"
+        retroactive:
+          silence: Tài khoản bị ảnh hưởng hiện có từ miền này
+          suspend: Hủy bỏ các tài khoản bị ảnh hưởng hiện có từ miền này
+        title: Hoàn tác khối miền cho %{domain}
+        undo: Hủy bỏ
+      undo: Hoàn tác khối tên miền
+      view: Xem khối tên miền
+    email_domain_blocks:
+      add_new: Thêm mới
+      created_msg: Đã thêm thành công tên miền e-mail vào danh sách đen
+      delete: Xóa bỏ
+      destroyed_msg: Đã xóa thành công tên miền e-mail khỏi danh sách đen
+      domain: Miền
+      new:
+        create: Thêm tên miền
+        title: Mục nhập danh sách đen e-mail mới
+      title: Danh sách đen e-mail
+    followers:
+      back_to_account: Quay lại tài khoản
+      title: Người theo dõi của %{acct}
+    instances:
+      by_domain: Miền
+      delivery_available: Giao hàng tận nơi
+      known_accounts:
+        other: "%{count} tài khoản đã biết"
+      moderation:
+        all: Tất cả
+        limited: Hạn chế
+        title: Điều độ
+      private_comment: Bình luận riêng
+      public_comment: Nhận xét công khai
+      title: Liên đoàn
+      total_blocked_by_us: Bị chặn bởi chúng tôi
+      total_followed_by_them: Theo sau họ
+      total_followed_by_us: Theo dõi chúng tôi
+      total_reported: Báo cáo về họ
+      total_storage: Tệp đính kèm phương tiện
+    invites:
+      deactivate_all: Vô hiệu hóa tất cả
+      filter:
+        all: Tất cả
+        available: Có sẵn
+        expired: Đã hết hạn
+        title: Bộ lọc
+      title: Mời
+    pending_accounts:
+      title: Tài khoản đang chờ xử lý (%{count})
+    relays:
+      add_new: Thêm rơle mới
+      delete: Xóa bỏ
+      description_html: "<strong>Rơle liên kết</strong> là một máy chủ trung gian trao đổi khối lượng lớn các tút công khai giữa các máy chủ đăng ký và xuất bản lên nó. <strong>Nó có thể giúp các máy chủ vừa và nhỏ khám phá nội dung từ fediverse</strong> , nếu không sẽ yêu cầu người dùng cục bộ theo dõi thủ công người khác trên các máy chủ từ xa."
+      disable: Vô hiệu hóa
+      disabled: Tàn tật
+      enable: Kích hoạt
+      enable_hint: Sau khi được bật, máy chủ của bạn sẽ đăng ký tất cả các tút công khai từ rơle này và sẽ bắt đầu gửi các tút công khai của máy chủ này tới nó.
+      enabled: Đã bật
+      inbox_url: Chuyển tiếp URL
+      pending: Chờ phê duyệt của rơle
+      save_and_enable: Lưu và kích hoạt
+      setup: Thiết lập kết nối chuyển tiếp
+      signatures_not_enabled: Rơle sẽ không hoạt động chính xác trong khi chế độ bảo mật hoặc chế độ danh sách trắng được bật
+      status: Trạng thái
+      title: Rơle
+    report_notes:
+      created_msg: Báo cáo ghi chú được tạo thành công!
+      destroyed_msg: Báo cáo đã xóa thành công!
+    reports:
+      action_taken_by: Hành động được thực hiện bởi
+      are_you_sure: Bạn có chắc không?
+      assign_to_self: Giao cho tôi
+      assigned: Người điều hành được phân công
+      comment:
+        none: không ai
+      created_at: Báo cáo
+      mark_as_resolved: Đánh dấu là đã giải quyết
+      mark_as_unresolved: Đánh dấu là chưa giải quyết
+      notes:
+        create: Thêm ghi chú
+        create_and_resolve: Giải quyết với ghi chú
+        create_and_unresolve: Mở lại với ghi chú
+        delete: Xóa bỏ
+        placeholder: Mô tả những hành động đã được thực hiện, hoặc bất kỳ cập nhật liên quan khác ...
+      reopen: Mở lại báo cáo
+      report: 'Báo cáo # %{id}'
+      reported_account: Tài khoản báo cáo
+      reported_by: Báo cáo bởi
+      resolved: Đã giải quyết
+      resolved_msg: Báo cáo giải quyết thành công!
+      status: Trạng thái
+      title: Báo cáo
+      unassign: Bỏ qua
+      unresolved: Chưa giải quyết
+      updated_at: Đã cập nhật
+    settings:
+      activity_api_enabled:
+        desc_html: Số lượng trạng thái được đăng tại địa phương, người dùng hoạt động và đăng ký mới trong nhóm hàng tuần
+        title: Xuất bản số liệu thống kê tổng hợp về hoạt động của người dùng
+      bootstrap_timeline_accounts:
+        desc_html: Phân tách nhiều tên người dùng bằng dấu phẩy. Chỉ các tài khoản địa phương và mở khóa sẽ hoạt động. Mặc định khi trống là tất cả quản trị viên địa phương.
+        title: Theo mặc định cho người dùng mới
+      contact_information:
+        email: Email kinh doanh
+        username: Liên hệ tên người dùng
+      custom_css:
+        desc_html: Sửa đổi giao diện với CSS được tải trên mỗi trang
+        title: CSS tùy chỉnh
+      default_noindex:
+        desc_html: Ảnh hưởng đến tất cả người dùng không tự thay đổi cài đặt này
+        title: Chọn người dùng không tham gia lập chỉ mục công cụ tìm kiếm theo mặc định
+      domain_blocks:
+        all: Tới mọi người
+        disabled: Không ai
+        title: Hiển thị khối miền
+        users: Để đăng nhập người dùng cục bộ
+      domain_blocks_rationale:
+        title: Hiển thị lý do
+      hero:
+        desc_html: Hiển thị trên frontpage. Khuyến nghị ít nhất 600x100px. Khi không được đặt, quay lại hình thu nhỏ của máy chủ
+        title: Hình ảnh anh hùng
+      mascot:
+        desc_html: Hiển thị trên nhiều trang. Khuyến nghị ít nhất 293 × 205px. Khi không được đặt, rơi trở lại linh vật mặc định
+        title: Hình ảnh linh vật
+      peers_api_enabled:
+        desc_html: Tên miền mà máy chủ này đã gặp phải trong fediverse
+        title: Xuất bản danh sách các máy chủ được phát hiện
+      preview_sensitive_media:
+        desc_html: Liên kết xem trước trên các trang web khác sẽ hiển thị hình thu nhỏ ngay cả khi phương tiện được đánh dấu là nhạy cảm
+        title: Hiển thị phương tiện nhạy cảm trong bản xem trước OpenGraph
+      profile_directory:
+        desc_html: Cho phép người dùng có thể khám phá
+        title: Cho phép thư mục hồ sơ
+      registrations:
+        closed_message:
+          desc_html: Hiển thị trên frontpage khi đăng ký được đóng lại. Bạn có thể sử dụng thẻ HTML
+          title: Tin nhắn đăng ký đã đóng
+        deletion:
+          desc_html: Cho phép mọi người xóa tài khoản của họ
+          title: Xóa tài khoản
+        min_invite_role:
+          disabled: Không một ai
+          title: Cho phép lời mời bằng cách
+      registrations_mode:
+        modes:
+          approved: Yêu cầu phê duyệt để đăng ký
+          none: Không ai có thể đăng ký
+          open: Bất cứ ai cũng có thể đăng ký
+        title: Chế độ đăng ký
+      show_known_fediverse_at_about_page:
+        desc_html: Khi bị tắt, hãy giới hạn dòng thời gian công khai được liên kết từ trang đích để chỉ hiển thị nội dung cùng miền
+        title: Bao gồm nội dung được liên kết trên trang dòng thời gian công cộng không được xác thực
+      show_staff_badge:
+        desc_html: Hiển thị huy hiệu nhân viên trên trang người dùng
+        title: Hiển thị huy hiệu nhân viên
+      site_description:
+        desc_html: Đoạn giới thiệu về API. Mô tả những gì làm cho máy chủ Mastodon này đặc biệt và bất cứ điều gì quan trọng khác. Bạn có thể sử dụng các thẻ HTML, đặc biệt là <code>&lt;a&gt;</code> và <code>&lt;em&gt;</code> .
+        title: Mô tả máy chủ
+      site_description_extended:
+        desc_html: Một nơi tốt cho quy tắc ứng xử, quy tắc, hướng dẫn và những thứ khác khiến máy chủ của bạn khác biệt. Bạn có thể sử dụng thẻ HTML
+        title: Thông tin mở rộng tùy chỉnh
+      site_short_description:
+        desc_html: Hiển thị trong thanh bên và thẻ meta. Mô tả Mastodon là gì và điều gì làm cho máy chủ này trở nên đặc biệt trong một đoạn văn duy nhất.
+        title: Mô tả máy chủ ngắn
+      site_terms:
+        desc_html: Bạn có thể viết chính sách bảo mật của riêng bạn, điều khoản dịch vụ hoặc pháp lý khác. Bạn có thể sử dụng thẻ HTML
+        title: Điều khoản dịch vụ tùy chỉnh
+      site_title: Tên máy chủ
+      spam_check_enabled:
+        desc_html: Mastodon có thể tự động báo cáo các tài khoản gửi tin nhắn không mong muốn lặp đi lặp lại. Có thể có dương tính giả.
+        title: Tự động chống thư rác
+      thumbnail:
+        desc_html: Được sử dụng để xem trước thông qua OpenGraph và API. Khuyến nghị 1200x630px
+        title: Hình thu nhỏ của máy chủ
+      timeline_preview:
+        desc_html: Hiển thị liên kết đến dòng thời gian công khai trên trang đích và cho phép API truy cập vào dòng thời gian công khai mà không cần xác thực
+        title: Cho phép truy cập không xác thực vào dòng thời gian công cộng
+      title: Cài đặt Trang web
+      trendable_by_default:
+        desc_html: Ảnh hưởng đến các hashtag chưa được cho phép trước đây
+        title: Cho phép hashtags theo xu hướng mà không cần xem xét trước
+      trends:
+        desc_html: Hiển thị công khai các hashtag được xem xét trước đây hiện đang là xu hướng
+        title: Xu hướng hashtags
+    statuses:
+      back_to_account: Quay lại trang tài khoản
+      batch:
+        delete: Xóa bỏ
+        nsfw_off: Đánh dấu là không nhạy cảm
+        nsfw_on: Đánh dấu là nhạy cảm
+      deleted: Đã xóa
+      failed_to_execute: Không thể thực thi
+      media:
+        title: Phương tiện truyền thông
+      no_media: Không có phương tiện truyền thông
+      no_status_selected: Không có trạng thái nào được thay đổi vì không có trạng thái nào được chọn
+      title: Trạng thái tài khoản
+      with_media: Với phương tiện truyền thông
+    tags:
+      accounts_today: Sử dụng độc đáo ngày nay
+      accounts_week: Sử dụng độc đáo trong tuần này
+      breakdown: Phân tích sử dụng ngày nay theo nguồn
+      context: Bối cảnh
+      directory: Trong thư mục
+      in_directory: "%{count} trong thư mục"
+      last_active: Hoạt động lần cuối
+      most_popular: Phổ biến nhất
+      most_recent: Gần đây nhất
+      name: Dấu thăng
+      review: Xem lại tình trạng
+      reviewed: Đã đánh giá
+      title: Hashtags
+      trending_right_now: Xu hướng ngay bây giờ
+      unique_uses_today: "%{count} đăng ngày hôm nay"
+      unreviewed: Chưa được xem xét
+      updated_msg: Cài đặt hashtag được cập nhật thành công
+    title: Quản trị
+    warning_presets:
+      add_new: Thêm mới
+      delete: Xóa bỏ
+      edit: Biên tập
+      edit_preset: Chỉnh sửa cảnh báo đặt trước
+      title: Quản lý cài đặt trước cảnh báo
+  admin_mailer:
+    new_pending_account:
+      body: Các chi tiết của tài khoản mới dưới đây. Bạn có thể phê duyệt hoặc từ chối ứng dụng này.
+      subject: Tài khoản mới được xem xét trên %{instance} (%{username})
+    new_report:
+      body: "%{reporter} đã báo cáo %{target}"
+      body_remote: Ai đó từ %{domain} đã báo cáo %{target}
+      subject: Báo cáo mới cho %{instance} (# %{id})
+    new_trending_tag:
+      body: 'Hashtag # %{name} đang là xu hướng ngày nay, nhưng chưa được xem xét trước đây. Nó sẽ không được hiển thị công khai trừ khi bạn cho phép hoặc chỉ lưu biểu mẫu vì nó sẽ không bao giờ nghe về nó nữa.'
+      subject: Hashtag mới được xem xét trên %{instance} (# %{name})
+  aliases:
+    add_new: Tạo bí danh
+    created_msg: Tạo thành công một bí danh mới. Bây giờ bạn có thể bắt đầu di chuyển từ tài khoản cũ.
+    deleted_msg: Xóa thành công bí danh. Chuyển từ tài khoản này sang tài khoản này sẽ không còn có thể.
+    hint_html: Nếu bạn muốn chuyển từ tài khoản khác sang tài khoản này, tại đây bạn có thể tạo bí danh, điều này là bắt buộc trước khi bạn có thể tiến hành chuyển người theo dõi từ tài khoản cũ sang tài khoản này. Hành động này của chính nó là <strong>vô hại và có thể đảo ngược</strong> . <strong>Việc di chuyển tài khoản được bắt đầu từ tài khoản cũ</strong> .
+    remove: Bỏ liên kết bí danh
+  appearance:
+    advanced_web_interface: Giao diện web nâng cao
+    advanced_web_interface_hint: 'Nếu bạn muốn sử dụng toàn bộ chiều rộng màn hình của mình, giao diện web nâng cao cho phép bạn định cấu hình nhiều cột khác nhau để xem nhiều thông tin cùng lúc như bạn muốn: Trang chủ, thông báo, dòng thời gian được liên kết, bất kỳ số lượng danh sách và hashtag nào.'
+    animations_and_accessibility: Ảnh động và khả năng tiếp cận
+    confirmation_dialogs: Hộp thoại xác nhận
+    discovery: Khám phá
+    sensitive_content: Nội dung nhạy cảm
+    toot_layout: Bố cục Tút
+  application_mailer:
+    notification_preferences: Thay đổi tùy chọn email
+    salutation: "%{name},"
+    settings: 'Thay đổi tùy chọn email: %{link}'
+    view: 'Lượt xem:'
+    view_profile: Xem lí lịch
+    view_status: Trạng thái xem
+  applications:
+    created: Ứng dụng được tạo thành công
+    destroyed: Ứng dụng đã xóa thành công
+    invalid_url: URL được cung cấp không hợp lệ
+    regenerate_token: Tạo lại mã thông báo truy cập
+    token_regenerated: Mã thông báo truy cập được tạo lại thành công
+    warning: Hãy rất cẩn thận với dữ liệu này. Không bao giờ chia sẻ nó với bất cứ ai!
+    your_token: Mã thông báo truy cập của bạn
+  auth:
+    apply_for_account: Yêu cầu một lời mời
+    change_password: Mật khẩu
+    checkbox_agreement_html: Tôi đồng ý với các <a href="%{rules_path}" target="_blank">quy tắc</a> và <a href="%{terms_path}" target="_blank">điều khoản dịch vụ của</a> <a href="%{rules_path}" target="_blank">máy chủ</a>
+    checkbox_agreement_without_rules_html: Tôi đồng ý với các <a href="%{terms_path}" target="_blank">điều khoản dịch vụ</a>
+    delete_account: Xóa tài khoản
+    delete_account_html: Nếu bạn muốn xóa tài khoản của mình, bạn có thể <a href="%{path}">tiến hành tại đây</a> . Bạn sẽ được yêu cầu xác nhận.
+    description:
+      prefix_invited_by_user: "@ %{name} mời bạn tham gia máy chủ này của Mastodon!"
+      prefix_sign_up: Đăng ký trên Mastodon ngay hôm nay!
+      suffix: Với một tài khoản, bạn sẽ có thể theo dõi mọi người, đăng cập nhật và trao đổi tin nhắn với người dùng từ bất kỳ máy chủ Mastodon nào và hơn thế nữa!
+    didnt_get_confirmation: Không nhận được hướng dẫn xác nhận?
+    forgot_password: Quên mật khẩu?
+    invalid_reset_password_token: Mã thông báo đặt lại mật khẩu không hợp lệ hoặc hết hạn. Vui lòng yêu cầu một cái mới.
+    login: Đăng nhập
+    logout: Đăng xuất
+    migrate_account: Chuyển đến một tài khoản khác
+    migrate_account_html: Nếu bạn muốn chuyển hướng tài khoản này sang một tài khoản khác, bạn có thể <a href="%{path}">định cấu hình nó ở đây</a> .
+    or_log_in_with: Hoặc đăng nhập bằng
+    providers:
+      cas: CAS
+      saml: SAML
+    register: Đăng ký
+    registration_closed: "%{instance} không chấp nhận thành viên mới"
+    resend_confirmation: Gửi lại hướng dẫn xác nhận
+    reset_password: Đặt lại mật khẩu
+    security: Bảo vệ
+    set_new_password: Đặt mật khẩu mới
+    setup:
+      email_below_hint_html: Nếu địa chỉ email dưới đây không chính xác, bạn có thể thay đổi địa chỉ tại đây và nhận email xác nhận mới.
+      email_settings_hint_html: Email xác nhận đã được gửi tới %{email}. Nếu địa chỉ email đó không chính xác, bạn có thể thay đổi nó trong cài đặt tài khoản.
+      title: Thiết lập
+    status:
+      account_status: Tình trạng tài khoản
+      confirming: Chờ xác nhận e-mail được hoàn thành.
+      functional: Tài khoản của bạn đã hoạt động đầy đủ.
+      pending: Ứng dụng của bạn đang chờ xem xét bởi nhân viên của chúng tôi. Điều này có thể mất một thời gian. Bạn sẽ nhận được e-mail nếu đơn đăng ký của bạn được chấp thuận.
+      redirecting_to: Tài khoản của bạn không hoạt động vì hiện đang chuyển hướng đến %{acct}.
+    trouble_logging_in: Gặp sự cố khi đăng nhập?
+  authorize_follow:
+    already_following: Bạn đã theo dõi tài khoản này
+    error: Thật không may, đã xảy ra lỗi khi tra cứu tài khoản từ xa
+    follow: Theo
+    follow_request: 'Bạn đã gửi yêu cầu theo dõi tới:'
+    following: 'Sự thành công! Bạn đang theo dõi:'
+    post_follow:
+      close: Hoặc, bạn chỉ có thể đóng cửa sổ này.
+      return: Hiển thị hồ sơ của người dùng
+      web: Truy cập web
+    title: Thực hiện theo %{acct}
+  challenge:
+    confirm: Tiếp tục
+    hint_html: "<strong>Mẹo:</strong> Chúng tôi sẽ không hỏi lại mật khẩu của bạn trong giờ tiếp theo."
+    invalid_password: Mật khẩu không hợp lệ
+    prompt: Xác nhận mật khẩu để tiếp tục
+  datetime:
+    distance_in_words:
+      about_x_hours: "%{count}g"
+      about_x_months: "%{count}th"
+      about_x_years: "%{count}n"
+      almost_x_years: "%{count}n"
+      half_a_minute: Vừa nãy
+      less_than_x_minutes: "%{count}p"
+      less_than_x_seconds: Vừa nãy
+      over_x_years: "%{count}n"
+      x_days: "%{count}n"
+      x_minutes: "%{count}p"
+      x_months: "%{count}th"
+      x_seconds: "%{count}g"
+  deletes:
+    challenge_not_passed: Thông tin bạn nhập không chính xác
+    confirm_password: Nhập mật khẩu hiện tại của bạn để xác minh danh tính của bạn
+    confirm_username: Nhập tên người dùng của bạn để xác nhận thủ tục
+    proceed: Xóa tài khoản
+    success_msg: Tài khoản của bạn đã được xóa thành công
+    warning:
+      before: 'Trước khi tiếp tục, xin vui lòng đọc các ghi chú cẩn thận:'
+      caches: Nội dung đã được lưu trữ bởi các máy chủ khác có thể tồn tại
+      data_removal: Bài viết của bạn và dữ liệu khác sẽ bị xóa vĩnh viễn
+      email_change_html: Bạn có thể <a href="%{path}">thay đổi địa chỉ email</a> mà không cần xóa tài khoản của bạn
+      email_contact_html: Nếu nó vẫn không đến, bạn có thể gửi e-mail <a href="mailto:%{email}">%{email}</a> để được giúp đỡ
+      email_reconfirmation_html: Nếu bạn không nhận được email xác nhận, bạn có thể <a href="%{path}">yêu cầu lại</a>
+      irreversible: Bạn sẽ không thể khôi phục hoặc kích hoạt lại tài khoản của mình
+      more_details_html: Để biết thêm chi tiết, xem <a href="%{terms_path}">chính sách bảo mật</a> .
+      username_available: Tên người dùng của bạn sẽ có sẵn một lần nữa
+      username_unavailable: Tên người dùng của bạn sẽ không có sẵn
+  directories:
+    directory: Thư mục hồ sơ
+    explanation: Khám phá người dùng dựa trên sở thích của họ
+    explore_mastodon: Khám phá %{title}
+  domain_validator:
+    invalid_domain: không phải là một tên miền hợp lệ
+  errors:
+    '400': Yêu cầu bạn gửi không hợp lệ hoặc không đúng.
+    '403': Bạn không có quyền xem trang này.
+    '404': Trang bạn đang tìm kiếm không có ở đây.
+    '406': Trang này không có sẵn ở định dạng được yêu cầu.
+    '410': Trang bạn đang tìm kiếm không còn tồn tại ở đây nữa.
+    '422':
+      content: Xác minh bảo mật thất bại. Bạn đang chặn cookie?
+      title: Xác minh bảo mật không thành công
+    '429': Điều chỉnh
+    '500':
+      content: Chúng tôi xin lỗi, nhưng đã xảy ra sự cố.
+      title: Trang này không đúng
+    '503': Trang không thể được phục vụ do lỗi máy chủ tạm thời.
+    noscript_html: Để sử dụng ứng dụng web Mastodon, vui lòng bật JavaScript. Ngoài ra, hãy thử một trong những <a href="%{apps_path}">ứng dụng gốc</a> cho Mastodon cho nền tảng của bạn.
+  existing_username_validator:
+    not_found: không thể tìm thấy người dùng cục bộ với tên người dùng đó
+    not_found_multiple: không thể tìm thấy %{usernames}
+  exports:
+    archive_takeout:
+      date: Ngày
+      download: Tải về kho lưu trữ của bạn
+      hint_html: Bạn có thể yêu cầu một kho lưu trữ các <strong>tút và phương tiện được tải lên</strong> . Dữ liệu đã xuất sẽ ở định dạng ActivityPub, có thể đọc được bởi bất kỳ phần mềm tuân thủ nào. Bạn có thể yêu cầu một kho lưu trữ cứ sau 7 ngày.
+      in_progress: Biên dịch kho lưu trữ của bạn ...
+      request: Yêu cầu kho lưu trữ của bạn
+      size: Kích thước
+    blocks: Bạn chặn
+    csv: CSV
+    domain_blocks: Khối miền
+    lists: Danh sách
+    mutes: Bạn câm
+    storage: Phương tiện lưu trữ
+  featured_tags:
+    add_new: Thêm mới
+    errors:
+      limit: Bạn đã làm nổi bật số lượng hashtag tối đa
+    hint_html: "<strong>Hashtags đặc trưng là gì?</strong> Chúng được hiển thị nổi bật trên hồ sơ công khai của bạn và cho phép mọi người duyệt các bài đăng công khai của bạn cụ thể theo các hashtag đó. Chúng là một công cụ tuyệt vời để theo dõi các công trình sáng tạo hoặc các dự án dài hạn."
+  filters:
+    contexts:
+      home: Dòng thời gian
+      notifications: Thông báo
+      public: Mốc thời gian công cộng
+      thread: Cuộc trò chuyện
+    edit:
+      title: Chỉnh sửa bộ lọc
+    errors:
+      invalid_context: Không có hoặc bối cảnh không hợp lệ được cung cấp
+      invalid_irreversible: Lọc không thể đảo ngược chỉ hoạt động với bối cảnh nhà hoặc thông báo
+    index:
+      delete: Xóa bỏ
+      title: Bộ lọc
+    new:
+      title: Thêm bộ lọc mới
+  footer:
+    developers: Nhà phát triển
+    more: Hơn…
+    resources: Tài nguyên
+    trending_now: Đang là xu hướng
+  generic:
+    all: Tất cả
+    changes_saved_msg: Thay đổi được lưu thành công!
+    copy: Sao chép
+    no_batch_actions_available: Không có hành động hàng loạt có sẵn trên trang này
+    order_by: Đặt bởi
+    save_changes: Lưu thay đổi
+    validation_errors:
+      other: Một cái gì đó không hoàn toàn đúng! Vui lòng xem lại lỗi %{count} bên dưới
+  html_validator:
+    invalid_markup: 'chứa đánh dấu HTML không hợp lệ: %{error}'
+  identity_proofs:
+    active: Hoạt động
+    authorize: Vâng, ủy quyền
+    authorize_connection_prompt: Cho phép kết nối mật mã này?
+    errors:
+      failed: Kết nối mật mã không thành công. Vui lòng thử lại từ %{provider}.
+      keybase:
+        invalid_token: Mã thông báo cơ sở chính là băm chữ ký và phải là 66 ký tự hex
+        verification_failed: Keybase không nhận ra mã thông báo này là chữ ký của người dùng Keybase %{kb_username}. Vui lòng thử lại từ Keybase.
+      wrong_user: Không thể tạo bằng chứng cho %{proving} trong khi đăng nhập là %{current}. Đăng nhập bằng %{proving} và thử lại.
+    explanation_html: Tại đây, bạn có thể kết nối mật mã các danh tính khác của mình, chẳng hạn như hồ sơ Keybase. Điều này cho phép người khác gửi cho bạn tin nhắn được mã hóa và tin tưởng nội dung bạn gửi cho họ.
+    i_am_html: Tôi là %{username} trên %{service}.
+    identity: Danh tính
+    inactive: Không hoạt động
+    publicize_checkbox: 'Và tút này:'
+    publicize_toot: 'Nó đã được chứng minh! Tôi là %{username} trên %{service}: %{url}'
+    status: Tình trạng xác minh
+    view_proof: Xem bằng chứng
+  imports:
+    modes:
+      merge: Hợp nhất
+      merge_long: Giữ hồ sơ hiện có và thêm những cái mới
+      overwrite: Ghi đè
+      overwrite_long: Thay thế các bản ghi hiện tại bằng những cái mới
+    preface: Bạn có thể nhập dữ liệu mà bạn đã xuất từ một máy chủ khác, chẳng hạn như danh sách những người bạn đang theo dõi hoặc chặn.
+    success: Dữ liệu của bạn đã được tải lên thành công và bây giờ sẽ được xử lý trong thời gian tới hạn
+    types:
+      blocking: Danh sách chặn
+      domain_blocking: Danh sách chặn tên miền
+      following: Theo danh sach
+      muting: Danh sách tắt tiếng
+    upload: Tải lên
+  in_memoriam_html: Trong bản ghi nhớ.
+  invites:
+    delete: Vô hiệu hóa
+    expired: Đã hết hạn
+    expires_in:
+      '1800': 30 phút
+      '21600': 6 tiếng
+      '3600': 1 giờ
+      '43200': 12 giờ
+      '604800': 1 tuần
+      '86400': 1 ngày
+    expires_in_prompt: Không bao giờ
+    generate: Tạo liên kết mời
+    invited_by: 'Bạn đã được mời bởi:'
+    max_uses:
+      other: "%{count} sử dụng"
+    max_uses_prompt: Không giới hạn
+    prompt: Tạo và chia sẻ liên kết với những người khác để cấp quyền truy cập vào máy chủ này
+    table:
+      expires_at: Hết hạn
+      uses: Công dụng
+    title: Mời mọi người
+  lists:
+    errors:
+      limit: Bạn đã đạt đến số lượng danh sách tối đa
+  media_attachments:
+    validations:
+      images_and_video: Không thể đính kèm video vào trạng thái đã chứa hình ảnh
+      too_many: Không thể đính kèm hơn 4 tệp
+  migrations:
+    acct: Chuyển đến
+    cancel: Hủy chuyển hướng
+    cancel_explanation: Hủy chuyển hướng sẽ kích hoạt lại tài khoản hiện tại của bạn, nhưng sẽ không mang lại những người theo dõi đã được chuyển đến tài khoản đó.
+    cancelled_msg: Đã hủy thành công chuyển hướng.
+    errors:
+      already_moved: là cùng một tài khoản bạn đã chuyển đến
+      missing_also_known_as: không tham chiếu lại tài khoản này
+      move_to_self: không thể là tài khoản hiện tại
+      not_found: không thể được tìm thấy
+      on_cooldown: Bạn đang trong thời gian hồi chiêu
+    followers_count: Người theo dõi tại thời điểm di chuyển
+    incoming_migrations: Chuyển từ một tài khoản khác
+    incoming_migrations_html: Để chuyển từ tài khoản khác sang tài khoản này, trước tiên bạn cần <a href="%{path}">tạo bí danh tài khoản</a> .
+    moved_msg: Tài khoản của bạn hiện đang chuyển hướng đến %{acct} và những người theo dõi của bạn đang được chuyển đi.
+    not_redirecting: Tài khoản của bạn hiện không chuyển hướng đến bất kỳ tài khoản nào khác.
+    on_cooldown: Gần đây bạn đã di chuyển tài khoản của bạn. Chức năng này sẽ trở nên khả dụng một lần nữa sau %{count} ngày.
+    past_migrations: Di cư trong quá khứ
+    proceed_with_move: Di chuyển người theo dõi
+    redirecting_to: Tài khoản của bạn đang chuyển hướng đến %{acct}.
+    set_redirect: Đặt chuyển hướng
+    warning:
+      backreference_required: Tài khoản mới trước tiên phải được cấu hình để tham chiếu lại tài khoản này
+      before: 'Trước khi tiếp tục, xin vui lòng đọc các ghi chú cẩn thận:'
+      cooldown: Sau khi di chuyển, có thời gian hồi chiêu, trong đó bạn sẽ không thể di chuyển nữa
+      disabled_account: Tài khoản hiện tại của bạn sẽ không thể sử dụng đầy đủ sau đó. Tuy nhiên, bạn sẽ có quyền truy cập để xuất dữ liệu cũng như kích hoạt lại.
+      followers: Hành động này sẽ chuyển tất cả người theo dõi từ tài khoản hiện tại sang tài khoản mới
+      only_redirect_html: Ngoài ra, bạn <a href="%{path}">chỉ</a> có thể <a href="%{path}">đưa ra một chuyển hướng trên hồ sơ của bạn</a> .
+      other_data: Không có dữ liệu khác sẽ được di chuyển tự động
+      redirect: Hồ sơ tài khoản hiện tại của bạn sẽ được cập nhật với thông báo chuyển hướng và bị loại khỏi các tìm kiếm
+  moderation:
+    title: Điều độ
+  notification_mailer:
+    digest:
+      action: Xem tất cả các thông báo
+      body: Dưới đây là một bản tóm tắt ngắn gọn về các tin nhắn bạn đã bỏ lỡ kể từ lần truy cập trước vào %{since}
+      mention: "%{name} đã đề cập đến bạn trong:"
+      new_followers_summary:
+        other: Ngoài ra, bạn đã có được %{count} người theo dõi mới trong khi đi xa! Kinh ngạc!
+      subject:
+        other: "%{count} thông báo mới kể từ lần truy cập trước của bạn"
+      title: Khi bạn vắng mặt ...
+    favourite:
+      body: 'Trạng thái của bạn đã được yêu thích bởi %{name}:'
+      subject: "%{name} yêu thích trạng thái của bạn"
+      title: Yêu thích mới
+    follow:
+      body: "%{name} hiện đang theo dõi bạn!"
+      subject: "%{name} hiện đang theo dõi bạn"
+      title: Người theo dõi mới
+    follow_request:
+      action: Quản lý theo yêu cầu
+      body: "%{name} đã yêu cầu theo dõi bạn"
+      subject: 'Người theo dõi đang chờ xử lý: %{name}'
+      title: Yêu cầu theo dõi mới
+    mention:
+      action: Đáp lại
+      body: 'Bạn đã được đề cập bởi %{name} trong:'
+      subject: Bạn đã được đề cập bởi %{name}
+      title: Đề cập mới
+    reblog:
+      body: 'Trạng thái của bạn đã được loan tin bởi %{name}:'
+      subject: "%{name} đã loan tin trạng thái của bạn"
+      title: Tăng mới
+  number:
+    human:
+      decimal_units:
+        format: "%n%u"
+        units:
+          billion: B
+          million: M
+          quadrillion: Q
+          thousand: K
+          trillion: T
+  pagination:
+    newer: Mới hơn
+    next: Kế tiếp
+    older: Lớn hơn
+    prev: Trước đó
+    truncate: Giáo dục
+  polls:
+    errors:
+      already_voted: Bạn đã bình chọn trong cuộc bình chọn này
+      duplicate_options: chứa các mục trùng lặp
+      duration_too_long: quá xa trong tương lai
+      duration_too_short: quá sớm
+      expired: Cuộc thăm dò đã kết thúc
+      invalid_choice: Lựa chọn không tồn tại
+      over_character_limit: không thể dài hơn %{max} ký tự mỗi ký tự
+      too_few_options: phải có nhiều hơn một mục
+      too_many_options: không thể chứa nhiều hơn %{max}
+  preferences:
+    other: Khác
+    posting_defaults: Đăng mặc định
+    public_timelines: Mốc thời gian công cộng
+  relationships:
+    activity: Hoạt động tài khoản
+    dormant: Không hoạt động
+    last_active: Hoạt động lần cuối
+    most_recent: Gần đây nhất
+    moved: Đã chuyển
+    mutual: Tương thân
+    primary: Sơ cấp
+    relationship: Mối quan hệ
+    remove_selected_domains: Xóa tất cả người theo dõi khỏi các miền đã chọn
+    remove_selected_followers: Xóa những người theo dõi đã chọn
+    remove_selected_follows: Hủy theo dõi người dùng đã chọn
+    status: Tình trạng tài khoản
+  remote_follow:
+    acct: Nhập tên người dùng @ tên miền bạn muốn hành động từ
+    missing_resource: Không thể tìm thấy URL chuyển hướng cần thiết cho tài khoản của bạn
+    no_account_html: Không có tài khoản? Bạn có thể <a href='%{sign_up_path}' target='_blank'>đăng ký tại đây</a>
+    proceed: Tiến hành theo
+    prompt: 'Bạn sẽ làm theo:'
+    reason_html: "<strong>Tại sao bước này là cần thiết?</strong> <code>%{instance}</code> có thể không phải là máy chủ nơi bạn đã đăng ký, vì vậy chúng tôi cần chuyển hướng bạn đến máy chủ nhà của bạn trước."
+  remote_interaction:
+    favourite:
+      proceed: Tiếp tục yêu thích
+      prompt: 'Bạn muốn yêu thích tút này:'
+    reblog:
+      proceed: Tiến hành để loan tin
+      prompt: 'Bạn muốn loan tin hoạt động này:'
+    reply:
+      proceed: Tiến hành trả lời
+      prompt: 'Bạn muốn trả lời tút này:'
+  scheduled_statuses:
+    over_daily_limit: Bạn đã vượt quá giới hạn của các tút được lên lịch %{limit} cho ngày hôm đó
+    over_total_limit: Bạn đã vượt quá giới hạn của các tút theo lịch trình %{limit}
+    too_soon: Ngày dự kiến phải trong tương lai
+  sessions:
+    activity: Hoạt động cuối
+    browser: Trình duyệt
+    browsers:
+      alipay: Alipay
+      blackberry: Blackberry
+      chrome: Chrome
+      edge: Microsoft Edge
+      electron: Điện tử
+      firefox: Firefox
+      generic: Trình duyệt không xác định
+      ie: trình duyệt web IE
+      micro_messenger: MicroMes hành khách
+      nokia: Trình duyệt Nokia S40 Ovi
+      opera: Opera
+      otter: Rái cá
+      phantom_js: PhantomJS
+      qq: Trình duyệt QQ
+      safari: cuộc đi săn, cuộc hành trình
+      uc_browser: Trình duyệt UC
+      weibo: Weibo
+    current_session: Phiên hiện tại
+    description: "%{browser} trên %{platform}"
+    explanation: Đây là các trình duyệt web hiện đang đăng nhập vào tài khoản Mastodon của bạn.
+    ip: IP
+    platforms:
+      adobe_air: Adobe Air
+      android: Android
+      blackberry: Blackberry
+      chrome_os: ChromeOS
+      firefox_os: Hệ điều hành Firefox
+      ios: iOS
+      linux: Linux
+      mac: Mac
+      other: chưa rõ nền tảng
+      windows: các cửa sổ
+      windows_mobile: Windows di động
+      windows_phone: Điện thoại Windows
+    revoke: Thu hồi
+    revoke_success: Phiên thu hồi thành công
+    title: Phiên
+  settings:
+    account: Tài khoản
+    account_settings: Cài đặt tài khoản
+    aliases: Bí danh tài khoản
+    appearance: Xuất hiện
+    authorized_apps: Ứng dụng được ủy quyền
+    back: Quay lại Mastodon
+    delete: Xóa tài khoản
+    development: Phát triển
+    edit_profile: Chỉnh sửa hồ sơ
+    export: Xuất dữ liệu
+    featured_tags: Hashtags nổi bật
+    identity_proofs: Bằng chứng nhận dạng
+    import: Nhập khẩu
+    import_and_export: Nhập khẩu và xuất khẩu
+    migrate: Di chuyển tài khoản
+    notifications: Thông báo
+    preferences: Sở thích
+    profile: Hồ sơ
+    relationships: Theo dõi và theo dõi
+    two_factor_authentication: Xác thực hai yếu tố
+  spam_check:
+    spam_detected: Đây là một báo cáo tự động. Thư rác đã được phát hiện.
+  statuses:
+    attached:
+      description: 'Đã đính kèm: %{attached}'
+      image:
+        other: hình ảnh %{count}
+      video:
+        other: video %{count}
+    boosted_from_html: Được loan tin từ %{acct_link}
+    content_warning: 'Cảnh báo nội dung: %{warning}'
+    disallowed_hashtags:
+      other: 'chứa các hashtag không được phép: %{tags}'
+    language_detection: Tự động phát hiện ngôn ngữ
+    open_in_web: Mở trên web
+    over_character_limit: vượt quá giới hạn ký tự của %{max}
+    pin_errors:
+      limit: Bạn đã ghim số lượng tút tối đa
+      ownership: Tút của người khác không thể được ghim
+      private: tút không công khai không thể được ghim
+      reblog: Không thể được ghim Loan in
+    poll:
+      total_people:
+        other: "%{count} người"
+      total_votes:
+        other: "%{count} phiếu bầu"
+      vote: Bỏ phiếu
+    show_more: Cho xem nhiều hơn
+    sign_in_to_participate: Đăng nhập để tham gia vào cuộc trò chuyện
+    title: "%{name}: &quot;%{quote}&quot;"
+    visibilities:
+      private: Chỉ theo dõi
+      private_long: Chỉ hiển thị cho người theo dõi
+      public: Công cộng
+      public_long: Mọi người có thể thấy
+      unlisted: Chưa niêm yết
+      unlisted_long: Mọi người đều có thể xem, nhưng không được liệt kê trên các mốc thời gian công khai
+  stream_entries:
+    pinned: Tút đã ghim
+    reblogged: loan tin
+    sensitive_content: Nội dung nhạy cảm
+  tags:
+    does_not_match_previous_name: không khớp với tên trước
+  terms:
+    body_html: "<h2> Chính sách bảo mật </h2><h3 id=\"collect\"> Chúng ta đã thu thập được thông tin gì rồi? </h3><ul><li> <em>Thông tin tài khoản cơ bản</em> : Nếu bạn đăng ký trên máy chủ này, bạn có thể được yêu cầu nhập tên người dùng, địa chỉ email và mật khẩu. Bạn cũng có thể nhập thông tin hồ sơ bổ sung như tên hiển thị và tiểu sử và tải lên hình ảnh hồ sơ và hình ảnh tiêu đề. Tên người dùng, tên hiển thị, tiểu sử, ảnh hồ sơ và hình ảnh tiêu đề luôn được liệt kê công khai. </li><li> <em>Bài đăng, theo dõi và thông tin công khai khác</em> : Danh sách những người bạn theo dõi được liệt kê công khai, điều này cũng đúng với những người theo dõi bạn. Khi bạn gửi tin nhắn, ngày và giờ được lưu trữ cũng như ứng dụng bạn đã gửi tin nhắn từ đó. Tin nhắn có thể chứa tệp đính kèm phương tiện, chẳng hạn như hình ảnh và video. Bài viết công khai và chưa niêm yết có sẵn công khai. Khi bạn có một bài đăng trên hồ sơ của bạn, đó cũng là thông tin có sẵn công khai. Bài đăng của bạn được gửi đến những người theo dõi của bạn, trong một số trường hợp, điều đó có nghĩa là chúng được gửi đến các máy chủ khác nhau và các bản sao được lưu trữ ở đó. Khi bạn xóa bài viết, điều này cũng được gửi đến những người theo dõi của bạn. Hành động đăng ký lại hoặc yêu thích một bài đăng khác luôn được công khai. </li><li> <em>Bài đăng trực tiếp và chỉ dành cho người theo dõi</em> : Tất cả các bài đăng được lưu trữ và xử lý trên máy chủ. Các bài đăng chỉ dành cho người theo dõi được gửi đến những người theo dõi và người dùng của bạn được đề cập trong đó và các bài đăng trực tiếp chỉ được gửi cho người dùng được đề cập trong đó. Trong một số trường hợp, điều đó có nghĩa là chúng được gửi đến các máy chủ khác nhau và các bản sao được lưu trữ ở đó. Chúng tôi thực hiện một nỗ lực thiện chí để giới hạn quyền truy cập vào các bài đăng đó chỉ cho những người được ủy quyền, nhưng các máy chủ khác có thể không làm như vậy. Do đó, điều quan trọng là phải xem xét các máy chủ mà người theo dõi của bạn thuộc về. Bạn có thể chuyển đổi tùy chọn để phê duyệt và từ chối người theo dõi mới theo cách thủ công trong cài đặt. <em>Xin lưu ý rằng các nhà khai thác của máy chủ và bất kỳ máy chủ nhận nào cũng có thể xem các tin nhắn</em> đó và người nhận có thể chụp màn hình, sao chép hoặc chia sẻ lại chúng. <em>Không chia sẻ bất kỳ thông tin nguy hiểm nào trên Mastodon.</em> </li><li> <em>IP và siêu dữ liệu khác</em> : Khi bạn đăng nhập, chúng tôi ghi lại địa chỉ IP bạn đăng nhập, cũng như tên của ứng dụng trình duyệt của bạn. Tất cả các phiên đăng nhập có sẵn để bạn xem xét và hủy bỏ trong cài đặt. Địa chỉ IP mới nhất được sử dụng được lưu trữ tối đa 12 tháng. Chúng tôi cũng có thể giữ lại nhật ký máy chủ bao gồm địa chỉ IP của mọi yêu cầu đến máy chủ của chúng tôi. </li></ul><hr class=\"spacer\" /><h3 id=\"use\"> Chúng tôi sử dụng thông tin của bạn để làm gì? </h3><p> Bất kỳ thông tin nào chúng tôi thu thập từ bạn có thể được sử dụng theo các cách sau: </p><ul><li> Để cung cấp các chức năng cốt lõi của Mastodon. Bạn chỉ có thể tương tác với nội dung của người khác và đăng nội dung của riêng bạn khi bạn đăng nhập. Ví dụ: bạn có thể theo dõi người khác để xem các bài đăng kết hợp của họ trong dòng thời gian tại nhà được cá nhân hóa của bạn. </li><li> Để hỗ trợ kiểm duyệt cộng đồng, ví dụ so sánh địa chỉ IP của bạn với các địa chỉ đã biết khác để xác định trốn tránh hoặc vi phạm khác. </li><li> Địa chỉ email bạn cung cấp có thể được sử dụng để gửi cho bạn thông tin, thông báo về những người khác tương tác với nội dung của bạn hoặc gửi tin nhắn cho bạn và để trả lời các câu hỏi cũng như / hoặc các yêu cầu hoặc câu hỏi khác. </li></ul><hr class=\"spacer\" /><h3 id=\"protect\"> Làm thế nào để chúng tôi bảo vệ thông tin của bạn? </h3><p> Chúng tôi thực hiện nhiều biện pháp bảo mật để duy trì sự an toàn của thông tin cá nhân của bạn khi bạn nhập, gửi hoặc truy cập thông tin cá nhân của bạn. Trong số những thứ khác, phiên trình duyệt của bạn, cũng như lưu lượng giữa các ứng dụng và API của bạn, được bảo mật bằng SSL và mật khẩu của bạn được băm bằng thuật toán một chiều mạnh mẽ. Bạn có thể kích hoạt xác thực hai yếu tố để tiếp tục truy cập an toàn vào tài khoản của mình. </p><hr class=\"spacer\" /><h3 id=\"data-retention\"> Chính sách lưu giữ dữ liệu của chúng tôi là gì? </h3><p> Chúng tôi sẽ thực hiện một nỗ lực đức tin tốt để: </p><ul><li> Giữ lại nhật ký máy chủ chứa địa chỉ IP của tất cả các yêu cầu đến máy chủ này, cho đến khi các nhật ký đó được lưu giữ, không quá 90 ngày. </li><li> Giữ lại các địa chỉ IP được liên kết với người dùng đã đăng ký không quá 12 tháng. </li></ul><p> Bạn có thể yêu cầu và tải xuống một kho lưu trữ nội dung của bạn, bao gồm các bài đăng, tệp đính kèm phương tiện, ảnh hồ sơ và hình ảnh tiêu đề. </p><p> Bạn có thể xóa tài khoản của mình bất cứ lúc nào. </p><hr class=\"spacer\"/><h3 id=\"cookies\"> Chúng ta có sử dụng cookie không? </h3><p> Đúng. Cookies là các tệp nhỏ mà một trang web hoặc nhà cung cấp dịch vụ của nó chuyển vào ổ cứng máy tính của bạn thông qua trình duyệt Web (nếu bạn cho phép). Những cookie này cho phép trang web nhận ra trình duyệt của bạn và, nếu bạn có tài khoản đã đăng ký, hãy liên kết nó với tài khoản đã đăng ký của bạn. </p><p> Chúng tôi sử dụng cookie để hiểu và lưu các tùy chọn của bạn cho các lần truy cập trong tương lai. </p><hr class=\"spacer\" /><h3 id=\"disclose\"> Chúng tôi có được công bố bất cứ thông tin nào ra bên ngoài không? </h3><p> Chúng tôi không bán, trao đổi hoặc chuyển nhượng cho các bên ngoài thông tin nhận dạng cá nhân của bạn. Điều này không bao gồm các bên thứ ba đáng tin cậy hỗ trợ chúng tôi điều hành trang web của chúng tôi, tiến hành kinh doanh hoặc phục vụ bạn, miễn là các bên đó đồng ý giữ bí mật thông tin này. Chúng tôi cũng có thể tiết lộ thông tin của bạn khi chúng tôi tin rằng việc phát hành là phù hợp để tuân thủ luật pháp, thực thi chính sách trang web của chúng tôi hoặc bảo vệ quyền, tài sản hoặc an toàn của chúng tôi hoặc của người khác. </p><p> Nội dung công khai của bạn có thể được tải xuống bởi các máy chủ khác trong mạng. Các bài đăng công khai và chỉ dành cho người theo dõi của bạn được gửi đến các máy chủ nơi người theo dõi của bạn cư trú và tin nhắn trực tiếp được gửi đến máy chủ của người nhận, cho đến khi những người theo dõi hoặc người nhận đó cư trú trên một máy chủ khác với máy chủ này. </p><p> Khi bạn cho phép ứng dụng sử dụng tài khoản của mình, tùy thuộc vào phạm vi quyền bạn phê duyệt, ứng dụng có thể truy cập thông tin hồ sơ công khai, danh sách sau đây, người theo dõi, danh sách của bạn, tất cả bài đăng và mục yêu thích của bạn. Các ứng dụng không bao giờ có thể truy cập địa chỉ e-mail hoặc mật khẩu của bạn. </p><hr class=\"spacer\" /><h3 id=\"children\"> Sử dụng trang web của trẻ em </h3><p> Nếu máy chủ này ở EU hoặc EEA: Trang web của chúng tôi, các sản phẩm và dịch vụ đều hướng đến những người ít nhất 16 tuổi. Nếu bạn dưới 16 tuổi, theo các yêu cầu của GDPR ( <a href=\"https://en.wikipedia.org/wiki/General_Data_Protection_Regulation\">Quy định bảo vệ dữ liệu chung</a> ) không sử dụng trang web này. </p><p> Nếu máy chủ này ở Hoa Kỳ: Trang web của chúng tôi, các sản phẩm và dịch vụ đều hướng đến những người ít nhất 13 tuổi. Nếu bạn dưới 13 tuổi, theo các yêu cầu của COPPA ( <a href=\"https://en.wikipedia.org/wiki/Children%27s_Online_Privacy_Protection_Act\">Đạo luật bảo vệ quyền riêng tư trực tuyến của trẻ em</a> ) không sử dụng trang web này. </p><p> Yêu cầu pháp luật có thể khác nhau nếu máy chủ này ở khu vực tài phán khác. </p><hr class=\"spacer\" /><h3 id=\"changes\"> Thay đổi chính sách bảo mật của chúng tôi </h3><p> Nếu chúng tôi quyết định thay đổi chính sách bảo mật của mình, chúng tôi sẽ đăng những thay đổi đó trên trang này. </p><p> Tài liệu này là CC-BY-SA. Nó được cập nhật lần cuối vào ngày 7 tháng 3 năm 2018. </p><p> Ban đầu được điều chỉnh từ <a href=\"https://github.com/discourse/discourse\">chính sách quyền riêng tư của Nghị luận</a> . </p> \n"
+    title: "%{instance} Điều khoản dịch vụ và chính sách bảo mật"
+  themes:
+    contrast: Mastodon (Độ tương phản cao)
+    default: Mastodon (Tối)
+    mastodon-light: Mastodon (Ánh sáng)
+  time:
+    formats:
+      default: "% b %d,% Y,% H:% M"
+      month: "% b% Y"
+  two_factor_authentication:
+    code_hint: Nhập mã được tạo bởi ứng dụng xác thực của bạn để xác nhận
+    description_html: Nếu bạn kích hoạt <strong>xác thực hai yếu tố</strong> , đăng nhập sẽ yêu cầu bạn phải sở hữu điện thoại của mình, điều này sẽ tạo ra các mã thông báo để bạn nhập.
+    disable: Vô hiệu hóa
+    enable: Kích hoạt
+    enabled: Xác thực hai yếu tố được kích hoạt
+    enabled_success: Xác thực hai yếu tố được kích hoạt thành công
+    generate_recovery_codes: Tạo mã khôi phục
+    instructions_html: "<strong>Quét mã QR này vào Google Authenticator hoặc ứng dụng TOTP tương tự trên điện thoại của bạn</strong> . Từ giờ trở đi, ứng dụng đó sẽ tạo mã thông báo mà bạn sẽ phải nhập khi đăng nhập."
+    lost_recovery_codes: Mã khôi phục cho phép bạn lấy lại quyền truy cập vào tài khoản của mình nếu bạn mất điện thoại. Nếu bạn bị mất mã khôi phục, bạn có thể tạo lại chúng ở đây. Mã khôi phục cũ của bạn sẽ bị vô hiệu.
+    manual_instructions: 'Nếu bạn không thể quét mã QR và cần nhập thủ công, đây là bí mật văn bản đơn giản:'
+    recovery_codes: Mã phục hồi dự phòng
+    recovery_codes_regenerated: Mã khôi phục được phục hồi thành công
+    recovery_instructions_html: Nếu bạn mất quyền truy cập vào điện thoại, bạn có thể sử dụng một trong các mã khôi phục bên dưới để lấy lại quyền truy cập vào tài khoản của mình. <strong>Giữ mã khôi phục an toàn</strong> . Ví dụ, bạn có thể in chúng và lưu trữ chúng với các tài liệu quan trọng khác.
+    setup: Thiết lập
+    wrong_code: Mã đã nhập không hợp lệ! Thời gian máy chủ và thời gian thiết bị có đúng không?
+  user_mailer:
+    backup_ready:
+      explanation: Bạn đã yêu cầu sao lưu toàn bộ tài khoản Mastodon của mình. Bây giờ đã sẵn sàng để tải về!
+      subject: Kho lưu trữ của bạn đã sẵn sàng để tải về
+      title: Lưu trữ mang đi
+    warning:
+      explanation:
+        disable: Trong khi tài khoản của bạn bị đóng băng, dữ liệu tài khoản của bạn vẫn còn nguyên, nhưng bạn không thể thực hiện bất kỳ hành động nào cho đến khi được mở khóa.
+        silence: Mặc dù tài khoản của bạn bị hạn chế, nhưng chỉ những người đã theo dõi bạn mới thấy tút của bạn trên máy chủ này và bạn có thể bị loại khỏi các danh sách công khai khác nhau. Tuy nhiên, những người khác vẫn có thể tự theo dõi bạn.
+        suspend: Tài khoản của bạn đã bị treo và tất cả các tút và tệp phương tiện đã tải lên của bạn đã bị xóa khỏi máy chủ này và các máy chủ nơi bạn có người theo dõi.
+      get_in_touch: Bạn có thể trả lời e-mail này để liên lạc với nhân viên của %{instance}.
+      review_server_policies: Xem lại chính sách máy chủ
+      statuses: 'Cụ thể, cho:'
+      subject:
+        disable: Tài khoản của bạn %{acct} đã bị đóng băng
+        none: Cảnh báo cho %{acct}
+        silence: Tài khoản của bạn %{acct} đã bị giới hạn
+        suspend: Tài khoản của bạn %{acct} đã bị treo
+      title:
+        disable: Tài khoản bị đóng băng
+        none: Cảnh báo
+        silence: Tài khoản bị giới hạn
+        suspend: Toàn khoản bị đình chỉ
+    welcome:
+      edit_profile_action: Cài đặt hồ sơ
+      edit_profile_step: Bạn có thể tùy chỉnh hồ sơ của mình bằng cách tải lên hình đại diện, tiêu đề, thay đổi tên hiển thị và hơn thế nữa. Nếu bạn muốn xem lại những người theo dõi mới trước khi họ được phép theo dõi bạn, bạn có thể khóa tài khoản của mình.
+      explanation: Dưới đây là một số lời khuyên để giúp bạn bắt đầu
+      final_action: Bắt đầu đăng bài
+      final_step: 'Bắt đầu đăng bài! Ngay cả khi không có người theo dõi, tin nhắn công khai của bạn có thể bị người khác nhìn thấy, ví dụ như trên dòng thời gian cùng miền và trong hashtag. Bạn có thể muốn giới thiệu bản thân về hashtag #intributiontions.'
+      full_handle: Xử lý đầy đủ của bạn
+      full_handle_hint: Đây là những gì bạn sẽ nói với bạn bè của mình để họ có thể nhắn tin hoặc theo dõi bạn từ một máy chủ khác.
+      review_preferences_action: Thay đổi sở thích
+      review_preferences_step: Đảm bảo đặt tùy chọn của bạn, chẳng hạn như email nào bạn muốn nhận hoặc mức độ riêng tư mà bạn muốn bài đăng của mình được mặc định. Nếu bạn không bị say tàu xe, bạn có thể chọn bật tự động phát GIF.
+      subject: Chào mừng đến với Mastodon
+      tip_federated_timeline: Dòng thời gian được liên kết là một khung nhìn rực lửa của mạng Mastodon. Nhưng nó chỉ bao gồm những người mà hàng xóm của bạn đã đăng ký, vì vậy nó không hoàn thành.
+      tip_following: Bạn theo dõi (các) quản trị viên máy chủ của bạn theo mặc định. Để tìm những người thú vị hơn, hãy kiểm tra các mốc thời gian cùng miền và liên kết.
+      tip_local_timeline: Dòng thời gian cùng miền là chế độ xem lửa của mọi người trên %{instance}. Đây là những người hàng xóm trực tiếp của bạn!
+      tip_mobile_webapp: Nếu trình duyệt trên điện thoại di động của bạn cung cấp cho bạn thêm Mastodon vào màn hình chính, bạn có thể nhận được thông báo đẩy. Nó hoạt động như một ứng dụng bản địa theo nhiều cách!
+      tips: Lời khuyên
+      title: Chào mừng bạn, %{name}!
+  users:
+    follow_limit_reached: Bạn không thể theo dõi nhiều hơn %{limit} người
+    invalid_email: Địa chỉ email không hợp lệ
+    invalid_otp_token: Mã hai yếu tố không hợp lệ
+    otp_lost_help_html: Nếu bạn mất quyền truy cập vào cả hai, bạn có thể liên lạc với %{email}
+    seamless_external_login: Bạn đã đăng nhập thông qua một dịch vụ bên ngoài, vì vậy cài đặt mật khẩu và e-mail không khả dụng.
+    signed_in_as: 'Đăng ký với tư cách là:'
+  verification:
+    explanation_html: 'Bạn có thể <strong>xác minh mình là chủ sở hữu của các liên kết trong siêu dữ liệu hồ sơ của bạn</strong> . Vì vậy, trang web được liên kết phải chứa một liên kết trở lại hồ sơ Mastodon của bạn. Liên kết trở lại <strong>phải</strong> có thuộc tính <code>rel=&quot;me&quot;</code> . Nội dung văn bản của liên kết không quan trọng. Đây là một ví dụ:'
+    verification: xác minh
diff --git a/config/locales/zh-CN.yml b/config/locales/zh-CN.yml
index 55685c82e90d008a9173db9a3dc515c95d977f27..a1deb13e209bd00dbda1613acf5c901543798110 100644
--- a/config/locales/zh-CN.yml
+++ b/config/locales/zh-CN.yml
@@ -2,7 +2,7 @@
 zh-CN:
   about:
     about_hashtag_html: 这里展示的是带有话题标签 <strong>#%{hashtag}</strong> 的公开嘟文。如果你想与他们互动,你需要在任意一个 Mastodon 站点或与其兼容的网站上拥有一个帐户。
-    about_mastodon_html: Mastodon(长毛象)是一个建立在开放式网络协议和自由、开源软件之上的社交网络,有着类似于电子邮件的分布式设计。
+    about_mastodon_html: Mastodon 是一个建立在开放式网络协议和自由、开源软件之上的社交网络,有着类似于电子邮件的分布式设计。
     about_this: 关于本站
     active_count_after: 活跃
     active_footnote: 每月活跃用户
@@ -11,15 +11,19 @@ zh-CN:
     apps: 移动应用
     apps_platforms: 在 iOS、Android 和其他平台上使用 Mastodon
     browse_directory: 浏览用户目录并按兴趣筛选
+    browse_local_posts: 浏览此服务器上实时公开嘟文
     browse_public_posts: 浏览 Mastodon 上公共嘟文的实时信息流
     contact: 联系方式
     contact_missing: 未设定
     contact_unavailable: 未公开
     discover_users: 发现用户
     documentation: 文档
-    federation_hint_html: 在%{instance} 上拥有账户后,你可以关注任何 Mastodon 服务器或其他服务器上的人。
+    federation_hint_html: 在%{instance} 上拥有账号后,你可以关注任何 Mastodon 服务器或其他服务器上的人。
     get_apps: 尝试移动应用
     hosted_on: 一个在 %{domain} 上运行的 Mastodon 实例
+    instance_actor_flash: '这个账号是个虚拟帐号,不代表任何用户,只用来代表服务器本身。它用于和其它服务器互通,所以不应该被封禁,除非你想封禁整个实例。但是想封禁整个实例的时候,你应该用域名封禁。
+
+'
     learn_more: 了解详情
     privacy_policy: 隐私政策
     see_whats_happening: 看一看现在在发生什么
@@ -30,12 +34,22 @@ zh-CN:
     status_count_before: 他们共嘟出了
     tagline: 关注并发现新朋友
     terms: 使用条款
+    unavailable_content: 不可用的内容
+    unavailable_content_description:
+      domain: 服务器
+      reason: 原因
+      rejecting_media: 来自这些服务器的媒体文件将不会被处理或存储,缩略图也不会显示,需要手动点击打开原始文件。
+      silenced: 来自这些服务器上的帖子将不会出现在公共时间线和会话中;此外,除非你关注了这些服务器上的用户,否则他们的互动不会产生通知。
+      suspended: 这些服务器的数据将不会被处理、存储或者交换,本站也将无法和来自这些服务器的用户互动或者交流。
+    unavailable_content_html: 通常来说,在Mastodon上,你可以浏览联邦宇宙中任何一台服务器上的内容,并且和上面的用户互动。但是这台服务器上会有一些挟制。
     user_count_after:
       other: 位用户
     user_count_before: 这里共注册有
     what_is_mastodon: Mastodon 是什么?
   accounts:
     choices_html: "%{name} 的推荐:"
+    endorsements_hint: 您可以以在web界面上推荐你关注的人,他们会出现在这里。
+    featured_tags_hint: 您可以精选一些话题标签展示在这里。
     follow: 关注
     followers:
       other: 关注者
@@ -46,7 +60,8 @@ zh-CN:
     media: 媒体
     moved_html: "%{name} 已经迁移到 %{new_profile_link}:"
     network_hidden: 此信息不可用
-    nothing_here: 这里神马都没有!
+    never_active: 从未活跃
+    nothing_here: 这里什么都没有!
     people_followed_by: "%{name} 关注的人"
     people_who_follow: 关注 %{name} 的人
     pin_errors:
@@ -59,6 +74,7 @@ zh-CN:
     roles:
       admin: 管理员
       bot: 机器人
+      group: 群组
       moderator: 监察员
     unavailable: 个人资料不可用
     unfollow: 取消关注
@@ -99,9 +115,7 @@ zh-CN:
       email_status: 电子邮件地址状态
       enable: 启用
       enabled: 已启用
-      feed_url: 订阅 URL
       followers: 关注者
-      followers_url: 关注者(Followers)URL
       follows: 正在关注
       header: 个人资料页横幅图片
       inbox_url: 收件箱(Inbox)URL
@@ -126,13 +140,11 @@ zh-CN:
       moderation_notes: 管理备忘
       most_recent_activity: 最后一次活跃的时间
       most_recent_ip: 最后一次活跃的 IP 地址
-      no_account_selected: 因为没有账户被选择,所以没有更改
+      no_account_selected: 因为没有帐号被选择,所以没有更改
       no_limits_imposed: 无限制
       not_subscribed: 未订阅
-      outbox_url: 发件箱(Outbox)URL
       pending: 待审核
       perform_full_suspension: 封禁
-      profile_url: 个人资料页面 URL
       promote: 升任
       protocol: 协议
       public: 公开页面
@@ -155,8 +167,8 @@ zh-CN:
         moderator: 监察员
         staff: 管理人员
         user: 普通用户
-      salmon_url: 三文鱼协议网址(Salmon URL)
       search: 搜索
+      search_same_ip: 具有相同IP的其他用户
       shared_inbox_url: 公用收件箱(Shared Inbox)URL
       show:
         created_reports: 这个帐户提交的举报
@@ -183,10 +195,12 @@ zh-CN:
         confirm_user: "%{name} 确认了用户 %{target} 的电子邮件地址"
         create_account_warning: "%{name} 向 %{target} 发送了警告"
         create_custom_emoji: "%{name} 添加了新的自定义表情 %{target}"
+        create_domain_allow: "%{name} 添加了对域名 %{target} 的白名单。"
         create_domain_block: "%{name} 屏蔽了域名 %{target}"
         create_email_domain_block: "%{name} 屏蔽了电子邮件域名 %{target}"
         demote_user: "%{name} 对用户 %{target} 进行了降任操作"
         destroy_custom_emoji: "%{name} 销毁了自定义表情 %{target}"
+        destroy_domain_allow: "%{name} 从白名单中移除了域名 %{target}"
         destroy_domain_block: "%{name} 解除了对域名 %{target} 的屏蔽"
         destroy_email_domain_block: "%{name} 解除了对电子邮件域名 %{target} 的屏蔽"
         destroy_status: "%{name} 删除了 %{target} 的嘟文"
@@ -211,19 +225,24 @@ zh-CN:
       deleted_status: "(嘟文已删除)"
       title: 运营日志
     custom_emojis:
+      assign_category: 指定分类
       by_domain: 域名
       copied_msg: 成功将表情复制到本地
       copy: 复制
       copy_failed_msg: 无法将表情复制到本地
+      create_new_category: 新建分类
       created_msg: 表情添加成功!
       delete: 删除
       destroyed_msg: 表情删除成功!
       disable: 停用
+      disabled: 已停用
       disabled_msg: 表情停用成功
       emoji: 表情
       enable: 启用
+      enabled: 已启用
       enabled_msg: 表情启用成功
       image_hint: PNG 格式,最大 50KB
+      list: 列表
       listed: 已显示
       new:
         title: 添加新的自定义表情
@@ -231,11 +250,14 @@ zh-CN:
       shortcode: 短代码
       shortcode_hint: 至少 2 个字符,只能使用字母、数字和下划线
       title: 自定义表情
+      uncategorized: 未分类
+      unlist: 不公开
       unlisted: 已隐藏
       update_failed_msg: 表情更新失败
       updated_msg: 表情更新成功!
       upload: 上传新表情
     dashboard:
+      authorized_fetch_mode: 安全模式
       backlog: 未处理任务数
       config: 服务器配置
       feature_deletions: 帐户删除
@@ -284,7 +306,9 @@ zh-CN:
           suspend: 自动封禁
         title: 添加域名屏蔽
       private_comment: 私密评论
+      private_comment_hint: 给这一域名限制添加备注,供监察员内部使用
       public_comment: 公开评论
+      public_comment_hint: 给这一域名限制添加公开的评论,如果你推广你的域名限制列表的话,这些评论就会显示出来。
       reject_media: 拒绝接收媒体文件
       reject_media_hint: 删除本地已缓存的媒体文件,并且不再接收来自该域名的任何媒体文件。此选项不影响封禁
       reject_reports: 拒绝接收举报
@@ -357,6 +381,7 @@ zh-CN:
       pending: 等待中继确认
       save_and_enable: 保存并启用
       setup: 设置中继连接
+      signatures_not_enabled: 安全模式或白名单模式启用时,中继将不会正常工作
       status: 状态
       title: 中继
     report_notes:
@@ -364,12 +389,15 @@ zh-CN:
       destroyed_msg: 举报记录删除成功!
     reports:
       account:
-        note: 条记录
-        report: 条举报
+        notes:
+          other: "%{count} 条笔记"
+        reports:
+          other: "%{count} 个报告"
       action_taken_by: 操作执行者
       are_you_sure: 你确定吗?
       assign_to_self: 接管
       assigned: 已接管的监察员
+      by_target_domain: 被举报账户的域名
       comment:
         none: 没有
       created_at: 举报时间
@@ -405,6 +433,18 @@ zh-CN:
       custom_css:
         desc_html: 通过 CSS 代码调整所有页面的显示效果
         title: 自定义 CSS
+      default_noindex:
+        desc_html: 影响所有尚未更改此设置的用户
+        title: 默认不让用户被搜索引擎索引
+      domain_blocks:
+        all: 对所有人
+        disabled: 不对任何人
+        title: 查看域名屏蔽
+        users: 对本地已登录用户
+      domain_blocks_rationale:
+        title: 显示理由
+      enable_bootstrap_timeline_accounts:
+        title: 开启新用户默认关注功能
       hero:
         desc_html: 用于在首页展示。推荐分辨率 600×100px 以上。未指定的情况下将默认使用本站缩略图
         title: 主题图片
@@ -456,7 +496,7 @@ zh-CN:
         title: 自定义使用条款
       site_title: 本站名称
       spam_check_enabled:
-        desc_html: Mastodon可以自动隐藏和举报重复发送垃圾消息的账户。但是本功能有可能误伤无辜。
+        desc_html: Mastodon可以自动隐藏和举报重复发送垃圾消息的帐号。但是本功能有可能误伤无辜。
         title: 自动反垃圾
       thumbnail:
         desc_html: 用于在 OpenGraph 和 API 中显示预览图。推荐分辨率 1200×630px
@@ -465,7 +505,11 @@ zh-CN:
         desc_html: 在主页显示公共时间轴
         title: 时间轴预览
       title: 网站设置
+      trendable_by_default:
+        desc_html: 影响以前未禁止的话题标签
+        title: 允许在未审查的情况下将话题置为热门
       trends:
+        desc_html: 公开显示先前已通过审核的当前热门话题
         title: 热门标签
     statuses:
       back_to_account: 返回帐户信息页
@@ -484,12 +528,21 @@ zh-CN:
     tags:
       accounts_today: 今日活跃用户
       accounts_week: 本周活跃用户
+      breakdown: 按来源分类今天的使用情况
+      context: 上下文
       directory: 在目录中
+      in_directory: 目录中 %{count} 条
+      last_active: 最近活动
+      most_popular: 最热门的
+      most_recent: 最近的
+      name: 话题标签
       review: 审核状态
       reviewed: 已审核
       title: 话题标签
       trending_right_now: 当前热门
+      unique_uses_today: 今天发布了 %{count} 条
       unreviewed: 未审核
+      updated_msg: 话题标签设置更新成功
     title: 管理
     warning_presets:
       add_new: 添加新条目
@@ -500,18 +553,32 @@ zh-CN:
   admin_mailer:
     new_pending_account:
       body: 新帐户的详细信息如下。您可以批准或拒绝此申请。
-      subject: 在 %{instance} 上有新账户 ( %{username}) 需要审核
+      subject: 在 %{instance} 上有新帐号 ( %{username}) 需要审核
     new_report:
       body: "%{reporter} 举报了用户 %{target}"
       body_remote: 来自 %{domain} 的用户举报了用户 %{target}
       subject: 来自 %{instance} 的用户举报(#%{id})
+    new_trending_tag:
+      body: '今日的热门话题 #%{name} 之前未经审核。直到你允许之前这个话题将不会公开显示,活着就保持原样让它石沉大海。'
+      subject: 在 %{instance} 有新话题 (#%{name}) 待审核
+  aliases:
+    add_new: 创建别名
+    created_msg: 成功创建了一个新别名。您现在可以从旧账户开始迁移了。
+    deleted_msg: 成功移除别名。已经无法从该帐户移动到此帐户了。
+    hint_html: 如果你想把另一个帐号迁移到这里,你可以先在这里创建一个别名。如果你想把关注者迁移过来,这一步是必须的。设置别名的操作时<strong>无害而且可以恢复的</strong>。<strong>帐号迁移的操作会从旧帐号开始</strong>。
+    remove: 取消关联别名
   appearance:
     advanced_web_interface: 高级 web 界面
     advanced_web_interface_hint: 如果你想使用整个屏幕宽度,高级 web 界面允许您配置多个不同的栏目,可以同时看到更多的信息:主页、通知、跨站时间轴、任意数量的列表和话题标签。
     animations_and_accessibility: 动画和访问选项
     confirmation_dialogs: 确认对话框
     discovery: 发现
+    localization:
+      body: Mastdown 由志愿者翻译。
+      guide_link: https://crowdin.com/project/mastodon
+      guide_link_text: 每个人都可以参与翻译。
     sensitive_content: 敏感内容
+    toot_layout: 嘟文布局
   application_mailer:
     notification_preferences: 更改电子邮件首选项
     salutation: "%{name}:"
@@ -531,8 +598,13 @@ zh-CN:
     apply_for_account: 请求邀请
     change_password: 密码
     checkbox_agreement_html: 我同意 <a href="%{rules_path}" target="_blank">服务器规则</a> 和 <a href="%{terms_path}" target="_blank">服务条款</a>
+    checkbox_agreement_without_rules_html: 我同意 <a href="%{terms_path}" target="_blank">服务条款</a>
     delete_account: 删除帐户
     delete_account_html: 如果你想删除你的帐户,请<a href="%{path}">点击这里继续</a>。你需要确认你的操作。
+    description:
+      prefix_invited_by_user: "@%{name} 邀请您加入这个Mastodon服务器!"
+      prefix_sign_up: 现在就注册 Mastodon!
+      suffix: 注册一个帐号,你就可以关注别人、发布嘟文、并和其它任何Mastodon服务器上的用户交流,而且还有其它更多功能!
     didnt_get_confirmation: 没有收到确认邮件?
     forgot_password: 忘记密码?
     invalid_reset_password_token: 密码重置令牌无效或已过期。请重新发起重置密码请求。
@@ -551,10 +623,15 @@ zh-CN:
     security: 帐户安全
     set_new_password: 设置新密码
     setup:
+      email_below_hint_html: 如果下面的电子邮箱地址是错误的,你可以在这里修改并重新发送新的确认邮件。
+      email_settings_hint_html: 确认邮件已经发送到%{email}。如果该邮箱地址不对,你可以在帐号设置里面修改。
       title: 初始设置
     status:
       account_status: 帐户状态
       confirming: 等待电子邮件确认完成。
+      functional: 您的帐号可以正常使用了。
+      pending: 工作人员正在审核您的申请。这需要花点时间。在申请被批准后,您将收到一封电子邮件。
+      redirecting_to: 您的帐户无效,因为它已被设置为跳转到 %{acct}
     trouble_logging_in: 登录有问题?
   authorize_follow:
     already_following: 你已经在关注此用户了
@@ -567,6 +644,11 @@ zh-CN:
       return: 查看用户个人资料
       web: 返回本站
     title: 关注 %{acct}
+  challenge:
+    confirm: ç»§ç»­
+    hint_html: "<strong>注意:</strong>接下来一小时内我们不会再次要求您输入密码。"
+    invalid_password: 无效密码
+    prompt: 确认密码以继续
   datetime:
     distance_in_words:
       about_x_hours: "%{count}æ—¶"
@@ -582,9 +664,22 @@ zh-CN:
       x_months: "%{count}个月"
       x_seconds: "%{count}ç§’"
   deletes:
+    challenge_not_passed: 您输入的信息不正确
     confirm_password: 输入你当前的密码来验证身份
+    confirm_username: 输入您的用户名以继续
     proceed: 删除帐户
     success_msg: 你的帐户已经成功删除
+    warning:
+      before: 在删除前,请仔细阅读下列说明:
+      caches: 已被其他服务器缓存的内容可能还会保留
+      data_removal: 您的嘟文和其他数据将被永久删除
+      email_change_html: 您可以 <a href="%{path}">更换邮箱地址</a> 无需删除账号
+      email_contact_html: 如果它还没送到,你可以发邮件给 <a href="mailto:%{email}">%{email}</a> 寻求帮助。
+      email_reconfirmation_html: 如果您没有收到确认邮件,请点击 <a href="%{path}">重新发送</a> 。
+      irreversible: 您将无法恢复或重新激活您的帐户
+      more_details_html: 更多细节,请查看 <a href="%{terms_path}">隐私政策</a> 。
+      username_available: 您的用户名现在又可以使用了
+      username_unavailable: 您的用户名仍将无法使用
   directories:
     directory: 用户目录
     explanation: 根据兴趣发现用户
@@ -595,7 +690,7 @@ zh-CN:
     '400': 您提交的请求无效或格式不正确。
     '403': 你没有访问这个页面的权限。
     '404': 无法找到你所要访问的页面。
-    '406': This page is not available in the requested format.
+    '406': 页面无法处理请求。
     '410': 你所要访问的页面此处已不存在。
     '422':
       content: 无法确认登录信息。你是不是屏蔽了 Cookie?
@@ -604,7 +699,7 @@ zh-CN:
     '500':
       content: 抱歉,我们的后台出错了。
       title: 这个页面有问题
-    '503': The page could not be served due to a temporary server failure.
+    '503': 服务暂时不可用,无法请求该页面。
     noscript_html: 使用 Mastodon 网页版应用需要启用 JavaScript。你也可以选择适用于你的平台的 <a href="%{apps_path}">Mastodon 应用</a>。
   existing_username_validator:
     not_found: 在本站找不到此用户
@@ -620,7 +715,6 @@ zh-CN:
     blocks: 屏蔽的用户
     csv: CSV
     domain_blocks: 域名屏蔽
-    follows: 关注的用户
     lists: 列表
     mutes: 隐藏的用户
     storage: 媒体文件存储
@@ -628,6 +722,7 @@ zh-CN:
     add_new: 添加新条目
     errors:
       limit: 你所推荐的话题标签数已达上限
+    hint_html: "<strong>什么是精选话题标签?</strong> 它们被显示在您的公开个人资料中的突出位置,人们可以在这些标签下浏览您的公共嘟文。 它们是跟踪创作或长期项目的进度的重要工具。"
   filters:
     contexts:
       home: 主页时间轴
@@ -653,6 +748,7 @@ zh-CN:
     all: 全部
     changes_saved_msg: 更改保存成功!
     copy: 复制
+    no_batch_actions_available: 本页面无可用批量操作
     order_by: 排序方式
     save_changes: 保存更改
     validation_errors:
@@ -722,6 +818,34 @@ zh-CN:
       too_many: 最多只能添加 4 张图片
   migrations:
     acct: 新帐户的 用户名@域名
+    cancel: 取消跳转
+    cancel_explanation: 取消跳转将会重新激活您当前的帐号,但是已经迁移到新账号的关注者不会回来。
+    cancelled_msg: 成功取消跳转
+    errors:
+      already_moved: 和您已经迁移过的帐号相同
+      missing_also_known_as: 没有引用此帐号
+      move_to_self: 不能是当前帐户
+      not_found: 找不到
+      on_cooldown: 您正处于冷却状态
+    followers_count: 迁移时的关注者
+    incoming_migrations: 从其他帐号迁移
+    incoming_migrations_html: 要把另一个帐号移动到本帐号,首先您需要 <a href="%{path}">创建一个帐号别名</a> 。
+    moved_msg: 您的帐号现在会跳转到%{acct} ,同时关注者也会迁移过去 。
+    not_redirecting: 您的帐号当前未跳转到其他帐户。
+    on_cooldown: 您最近已经迁移过您的帐号。此功能将在%{count} 天后再次可用。
+    past_migrations: 迁移记录
+    proceed_with_move: 移动关注者
+    redirecting_to: 您的帐户被跳转到了 %{acct}。
+    set_redirect: 设置跳转
+    warning:
+      backreference_required: 新账号必须先引用现在这个帐号
+      before: 在继续前,请仔细阅读下列说明:
+      cooldown: 移动后会有一个冷却期,在此期间您将无法再次移动
+      disabled_account: 此后,您的当前帐户将无法使用。但是,您仍然有权导出数据或者重新激活。
+      followers: 这步操作将把所有关注者从当前账户移动到新账户
+      only_redirect_html: 或者,你可以<a href="%{path}">只在你的帐号资料上设置一个跳转</a>。
+      other_data: 不会自动移动其他数据
+      redirect: 在收到一个跳转通知后,您当前的帐号资料将会更新,并被排除在搜索范围外
   moderation:
     title: 运营
   notification_mailer:
@@ -735,9 +859,9 @@ zh-CN:
         other: "自从上次访问后,有 %{count} 条新通知 \U0001F418"
       title: 在你不在的这段时间……
     favourite:
-      body: 你的嘟文被 %{name} 收藏了:
-      subject: "%{name} 收藏了你的嘟文"
-      title: 新的收藏
+      body: 你的嘟文被 %{name} 喜欢了:
+      subject: "%{name} 喜欢了你的嘟文"
+      title: 新的喜欢
     follow:
       body: "%{name} 关注了你!"
       subject: "%{name} 关注了你"
@@ -756,6 +880,10 @@ zh-CN:
       body: 你的嘟文被 %{name} 转嘟了:
       subject: "%{name} 转嘟了你的嘟文"
       title: 新的转嘟
+  notifications:
+    email_events: 电子邮件通知事件
+    email_events_hint: 选择你想要收到通知的事件:
+    other_settings: 其它通知设置
   number:
     human:
       decimal_units:
@@ -787,8 +915,10 @@ zh-CN:
     posting_defaults: 发布默认值
     public_timelines: 公共时间轴
   relationships:
-    activity: 账户活动
+    activity: 帐号活动
     dormant: 休眠
+    followers: 关注者
+    following: 正在关注
     last_active: 最近活动
     most_recent: 最近的
     moved: 已迁移
@@ -805,11 +935,11 @@ zh-CN:
     no_account_html: 还没有帐号?你可以<a href='%{sign_up_path}' target='_blank'>注册一个</a>
     proceed: 确认关注
     prompt: 你正准备关注:
-    reason_html: "<strong>为什么需要这个步骤?</strong> <code>%{instance}</code> 可能不是您所注册的服务器,所以我们需要先重定向到您所在的服务器。"
+    reason_html: "<strong>为什么需要这个步骤?</strong> <code>%{instance}</code> 可能不是您所注册的服务器,所以我们需要先跳转到您所在的服务器。"
   remote_interaction:
     favourite:
-      proceed: 确认收藏
-      prompt: 您想要收藏此嘟文:
+      proceed: 确认标记为喜欢
+      prompt: 您想要标记此嘟文为喜欢:
     reblog:
       proceed: 确认转嘟
       prompt: 您想要转嘟此条:
@@ -862,8 +992,9 @@ zh-CN:
     revoke_success: 会话注销成功
     title: 会话
   settings:
-    account: 账户
+    account: 帐号
     account_settings: 帐户设置
+    aliases: 帐号别名
     appearance: 外观
     authorized_apps: 已授权的应用
     back: 返回 Mastodon
@@ -871,7 +1002,7 @@ zh-CN:
     development: 开发
     edit_profile: 更改个人资料
     export: 导出
-    featured_tags: 推荐的话题标签
+    featured_tags: 精选的话题标签
     identity_proofs: 身份证明
     import: 导入
     import_and_export: 导入和导出
@@ -881,6 +1012,8 @@ zh-CN:
     profile: 个人资料
     relationships: 关注管理
     two_factor_authentication: 双重认证
+  spam_check:
+    spam_detected: 这是一个自动报告。已检测到垃圾信息。
   statuses:
     attached:
       description: 附加媒体:%{attached}
@@ -901,6 +1034,8 @@ zh-CN:
       private: 不能置顶非公开的嘟文
       reblog: 不能置顶转嘟
     poll:
+      total_people:
+        other: "%{count} 人"
       total_votes:
         other: "%{count} 票"
       vote: 投票
@@ -1037,17 +1172,19 @@ zh-CN:
         disable: 虽然您的帐户被冻结,您的帐户数据仍然完整;但是您无法在解锁前执行任何操作。
         silence: 当您的帐户受限时,只有已经关注过你的人才会这台服务器上看到你的嘟文,并且您会被排除在各种公共列表之外。但是,其他人仍然可以手动关注你。
         suspend: 您的帐户已被封禁,所有的嘟文和您上传的媒体文件都已经从该服务器和您的关注者的服务器上删除并且不可恢复。
+      get_in_touch: 您可回复该邮件以联系 %{instance} 的工作人员。
       review_server_policies: 查看服务器政策
+      statuses: 具体来说,适用于:
       subject:
         disable: 您的帐户 %{acct} 已被冻结
         none: 对 %{acct} 的警告
         silence: 您的帐户 %{acct} 已经受限
         suspend: 您的帐户 %{acct} 已被封禁。
       title:
-        disable: 账户已冻结
+        disable: 账号已冻结
         none: 警示
         silence: 帐户受限
-        suspend: 账户被封禁
+        suspend: 账号被封禁
     welcome:
       edit_profile_action: 设置个人资料
       edit_profile_step: 你可以自定义你的个人资料,包括上传头像、横幅图片、更改昵称等等。如果你想在新的关注者关注你之前对他们进行审核,你也可以选择为你的帐户开启保护。
diff --git a/config/locales/zh-HK.yml b/config/locales/zh-HK.yml
index 338cf810ece545acd54b94754361eb5707e9b5c0..8dd4c346b4e1f1aa1eb3467dc8756736d3e57226 100644
--- a/config/locales/zh-HK.yml
+++ b/config/locales/zh-HK.yml
@@ -4,28 +4,57 @@ zh-HK:
     about_hashtag_html: 這些是包含「<strong>#%{hashtag}</strong>」標籤的公開文章。只要你有任何 Mastodon 服務站、或者聯盟網站的用戶,便可以與他們互動。
     about_mastodon_html: Mastodon(萬象)是<em>自由、開源</em>的社交網絡。服務站<em>各自獨立而互連</em>,避免單一商業機構壟斷。找你所信任的服務站,建立帳號,你即可與任何服務站上的用戶溝通,享受無縫的<em>網絡交流</em>。
     about_this: 關於本服務站
+    active_count_after: 活躍
+    active_footnote: 每月活躍使用者 (MAU)
     administered_by: 管理者:
+    api: API
+    apps: 行動應用程式
+    apps_platforms: 在 iOS、Android 和其他平台使用 Mastodon
+    browse_directory: 依興趣瀏覽個人資料目錄和過濾器
+    browse_public_posts: 在 Mastodon 瀏覽公開嘟文的即時串流
     contact: 聯絡
     contact_missing: 未設定
     contact_unavailable: 未公開
+    discover_users: 探索使用者
+    documentation: 文件
+    get_apps: 嘗試行動應用程式
     hosted_on: 在 %{domain} 運作的 Mastodon 服務站
     learn_more: 了解更多
+    privacy_policy: 隱私權政策
+    see_whats_happening: 看看發生什麼事
+    server_stats: 伺服器統計:
     source_code: 源代碼
+    status_count_after:
+      other: 條嘟文
     status_count_before: 他們共發佈了
     tagline: 關注朋友並探索新朋友
+    terms: 使用條款
+    unavailable_content_description:
+      domain: 伺服器
+      reason: 原因
+    user_count_after:
+      other: 位使用者
     user_count_before: 這裏共註冊有
     what_is_mastodon: Mastodon 是甚麼?
   accounts:
+    choices_html: "%{name} 的選擇:"
     follow: 關注
     followers:
       other: 關注者
     following: 正在關注
+    joined: 加入於 %{date}
+    last_active: 上次活躍時間
+    link_verified_on: 此連結的所有權已在 %{date} 檢查過
     media: 媒體
     moved_html: "%{name} 已經轉移到 %{new_profile_link}:"
     network_hidden: 此信息不可用
+    never_active: 永不
     nothing_here: 暫時未有內容可以顯示。
     people_followed_by: "%{name} 關注的人"
     people_who_follow: 關注 %{name} 的人
+    posts:
+      other: 嘟文
+    posts_tab_heading: 嘟文
     posts_with_replies: 文章和回覆
     reserved_username: 此用戶名已被保留
     roles:
@@ -34,12 +63,17 @@ zh-HK:
       moderator: 監察員
     unfollow: 取消關注
   admin:
+    account_actions:
+      action: 執行動作
+      title: 在 %{acct} 執行管理員動作
     account_moderation_notes:
       create: 記錄
       created_msg: 管理記錄已新增
       delete: 刪除
       destroyed_msg: 管理記錄已被刪除
     accounts:
+      approve: 核准
+      approve_all: 全部批准
       are_you_sure: 你確定嗎?
       avatar: 頭像
       by_domain: 域名
@@ -53,6 +87,7 @@ zh-HK:
       confirm: 確定
       confirmed: 已確定
       confirming: 確定
+      deleted: 已刪除
       demote: 降任
       disable: 停用
       disable_two_factor_authentication: 停用雙重認證
@@ -64,12 +99,13 @@ zh-HK:
       email_status: 电子邮件状态
       enable: 啟用
       enabled: 已啟用
-      feed_url: 訂閱 URL
       followers: 關注者
-      followers_url: 關注者(Followers)URL
       follows: 正在關注
+      header: é–‹é ­
       inbox_url: 收件箱(Inbox)URL
+      invited_by: 邀請者
       ip: IP 位域
+      joined: 已加入
       location:
         all: 全部
         local: 本地
@@ -79,23 +115,28 @@ zh-HK:
       media_attachments: 媒體檔案
       memorialize: 設定為追悼帳戶
       moderation:
+        active: 活躍
         all: 全部
+        pending: 等待中
         silenced: 被靜音的
         suspended: 被停權的
         title: 管理操作
       moderation_notes: 管理記錄
       most_recent_activity: 最新活動
       most_recent_ip: 最新 IP 位域
+      no_limits_imposed: 未受限制
       not_subscribed: 未訂閱
-      outbox_url: 寄件箱(Outbox)URL
+      pending: 等待審核中
       perform_full_suspension: 完全停權
-      profile_url: 個人檔案 URL
       promote: 升任
       protocol: 協議
       public: 公共
       push_subscription_expires: PuSH 訂閱過期
       redownload: 更新頭像
+      reject: 拒絕
+      reject_all: 全部拒絕
       remove_avatar: 取消頭像
+      remove_header: 移除開頭
       resend_confirmation:
         already_confirmed: 该用户已被确认
         send: 重发确认邮件
@@ -109,31 +150,35 @@ zh-HK:
         moderator: 監察員
         staff: 管理人員
         user: 普通用戶
-      salmon_url: Salmon 反饋 URL
       search: 搜索
       shared_inbox_url: 公共收件箱(Shared Inbox)URL
       show:
         created_reports: 此用戶所提舉報的紀錄
         targeted_reports: 此用戶被舉報的紀錄
       silence: 靜音
+      silenced: 已靜音
       statuses: 文章
       subscribe: 訂閱
+      suspended: 已停權
       title: 用戶
       unconfirmed_email: 未確認的電郵
       undo_silenced: 解除靜音
       undo_suspension: 解除停權
       unsubscribe: 取消訂閱
       username: 用戶名稱
+      warn: 警告
       web: 用戶頁面
     action_logs:
       actions:
         assigned_to_self_report: "%{name} 指派了 %{target} 的舉報給自己"
         change_email_user: "%{name} 改變了用戶 %{target} 的電郵地址"
         confirm_user: "%{name} 確認了用戶 %{target} 的電郵地址"
+        create_account_warning: "%{name} 已對 %{target} 送出警告"
         create_custom_emoji: "%{name} 加入自訂表情符號 %{target}"
         create_domain_block: "%{name} 阻隔了網域 %{target}"
         create_email_domain_block: "%{name} 阻隔了電郵網域 %{target}"
         demote_user: "%{name} 把用戶 %{target} 降任"
+        destroy_custom_emoji: "%{name} 破壞了 %{target} 表情符號"
         destroy_domain_block: "%{name} 取消了對網域 %{target} 的阻隔"
         destroy_email_domain_block: "%{name} 取消了對電郵網域 %{target} 的阻隔"
         destroy_status: "%{name} 刪除了 %{target} 的文章"
@@ -155,6 +200,7 @@ zh-HK:
         unsuspend_account: "%{name} 取消了用戶 %{target} 的停權狀態"
         update_custom_emoji: "%{name} 更新了自訂表情符號 %{target}"
         update_status: "%{name} 刷新了 %{target} 的文章"
+      deleted_status: "(已刪除嘟文)"
       title: 營運日誌
     custom_emojis:
       by_domain: 網域
@@ -165,11 +211,14 @@ zh-HK:
       delete: 刪除
       destroyed_msg: 已刪除表情符號
       disable: 停用
+      disabled: 已停用
       disabled_msg: 已停用表情符號
       emoji: emoji
       enable: 啟用
+      enabled: 已啟用
       enabled_msg: 已啟用表情符號
       image_hint: PNG 格式,最大 50KB
+      list: 列表
       listed: 已顯示
       new:
         title: 加入新的自訂表情符號
@@ -181,6 +230,28 @@ zh-HK:
       update_failed_msg: 無法更新表情符號
       updated_msg: 已更新表情符號
       upload: 上傳新的表情符號
+    dashboard:
+      backlog: 未處理工作數
+      config: 設定
+      feature_deletions: 帳戶刪除
+      feature_invites: 邀請連結
+      feature_profile_directory: 個人資料目錄
+      feature_registrations: 註冊
+      feature_relay: 聯邦中繼站
+      features: 功能
+      hidden_service: 與隱密服務互連
+      open_reports: 待處理檢舉數
+      recent_users: 最近加入的使用者
+      search: 全文搜尋
+      single_user_mode: 單一使用者模式
+      software: 軟體
+      space: 儲存空間用量
+      title: 儀表板
+      total_users: 總使用者數
+      trends: 趨勢
+      week_interactions: 本週互動次數
+      week_users_active: 本週活躍使用者數
+      week_users_new: 本週新使用者數
     domain_blocks:
       add_new: 新增
       created_msg: 正處理域名阻隔
@@ -197,7 +268,16 @@ zh-HK:
         title: 新增域名阻隔
       reject_media: 拒絕媒體檔案
       reject_media_hint: 刪除本地緩存的媒體檔案,再也不在未來下載這個站點的檔案。和自動刪除無關
+      reject_reports: 拒絕檢舉
+      reject_reports_hint: 忽略所有來自此站點的檢舉。與停權無關
+      rejecting_media: 拒絕媒體檔案
+      rejecting_reports: 拒絕檢舉中
+      severity:
+        silence: 已靜音
+        suspend: 已停權
       show:
+        affected_accounts:
+          other: 將影響到資料庫中的 %{count} 個帳戶
         retroactive:
           silence: 對此域名的所有用戶取消靜音
           suspend: 對此域名的所有用戶取消除名
@@ -218,6 +298,10 @@ zh-HK:
       back_to_account: 返回帳戶
       title: "%{acct} 的關注者"
     instances:
+      moderation:
+        all: 全部
+        limited: 限制
+        title: 版主
       title: 已知服務站
       total_followed_by_us: 開始關注你
     invites:
@@ -229,13 +313,12 @@ zh-HK:
       title: 邀請用戶
     relays:
       description_html: "<strong>聯邦中繼站</strong> 是種中繼伺服器,會在訂閱並推送至此中繼站的伺服器之間交換大量的公開嘟文。<strong>中繼站也能協助小型或中型伺服器從聯邦中探索內容</strong>,而無須本地使用者手動關注遠端伺服器的其他使用者。"
+      disabled: 停用
+      enable: 啟用
     report_notes:
       created_msg: 舉報筆記已建立。
       destroyed_msg: 舉報筆記已刪除。
     reports:
-      account:
-        note: 筆記
-        report: 舉報
       action_taken_by: 操作執行者
       are_you_sure: 你確認嗎?
       assign_to_self: 指派給自己
@@ -323,12 +406,23 @@ zh-HK:
       no_media: 不含媒體檔案
       title: 帳戶文章
       with_media: 含有媒體檔案
+    tags:
+      name: Hashtag
     title: 管理
+    warning_presets:
+      add_new: 新增
+      delete: 刪除
+      edit: 編輯
   admin_mailer:
     new_report:
       body: "%{reporter} 舉報了用戶 %{target}"
       body_remote: 來自 %{domain} 的用戶舉報了用戶 %{target}
       subject: 來自 %{instance} 的用戶舉報(#%{id})
+  appearance:
+    localization:
+      body: Mastodon 是由志願者翻譯的。
+      guide_link: https://crowdin.com/project/mastodon
+      guide_link_text: 每個人都能貢獻。
   application_mailer:
     notification_preferences: 更改電郵首選項
     salutation: "%{name}:"
@@ -356,6 +450,8 @@ zh-HK:
     migrate_account: 轉移到另一個帳號
     migrate_account_html: 想要將這個帳號指向另一個帳號可<a href="%{path}">到這裡設定</a>。
     or_log_in_with: 或登入於
+    providers:
+      saml: SAML
     register: 登記
     resend_confirmation: 重發確認指示電郵
     reset_password: 重設密碼
@@ -414,11 +510,19 @@ zh-HK:
       request: 下載檔案
       size: 檔案大小
     blocks: 被你封鎖的用戶
-    follows: 你所關注的用戶
+    csv: CSV
+    lists: 列表
     mutes: 你所靜音的用戶
     storage: 媒體容量大小
+  filters:
+    index:
+      empty: 您沒有過濾器。
+  footer:
+    more: 更多......
   generic:
+    all: 全部
     changes_saved_msg: 已成功儲存修改。
+    copy: 複製
     save_changes: 儲存修改
     validation_errors:
       other: 提交的資料有 %{count} 項問題
@@ -495,6 +599,16 @@ zh-HK:
       body: 您的文章被 %{name} 轉推:
       subject: "%{name} 轉推了你的文章"
       title: 新的轉推
+  number:
+    human:
+      decimal_units:
+        format: "%n%u"
+        units:
+          billion: B
+          million: M
+          quadrillion: Q
+          thousand: K
+          trillion: T
   pagination:
     newer: 較新
     next: 下一頁
@@ -513,6 +627,7 @@ zh-HK:
     browser: 瀏覽器
     browsers:
       alipay: 支付寶
+      blackberry: 黑莓機
       chrome: Chrome 瀏覽器
       edge: Microsoft Edge 瀏覽器
       electron: Electron 瀏覽器
@@ -521,14 +636,20 @@ zh-HK:
       ie: Internet Explorer 瀏覽器
       micro_messenger: 微信
       nokia: Nokia S40 Ovi 瀏覽器
+      opera: Opera 瀏覽器
       otter: Otter 瀏覽器
+      phantom_js: PhantomJS 瀏覽器
       qq: QQ瀏覽器
+      safari: Safari 瀏覽器
       uc_browser: UC瀏覽器
       weibo: 新浪微博
     current_session: 目前的作業階段
     description: "%{platform} 上的 %{browser}"
     explanation: 這些是現在正登入於你的 Mastodon 帳號的瀏覽器。
     ip: IP 位址
+    platforms:
+      ios: iOS
+      mac: Mac
     revoke: 取消
     revoke_success: 作業階段成功取消
     title: 作業階段
@@ -563,6 +684,8 @@ zh-HK:
       ownership: 不能置頂他人的文章
       private: 不能置頂非公開的文章
       reblog: 不能置頂轉推
+    poll:
+      vote: 投票
     show_more: 顯示更多
     title: "%{name}:「%{quote}」"
     visibilities:
diff --git a/config/locales/zh-TW.yml b/config/locales/zh-TW.yml
index bb6e761c7067c7a1a87b0d320015343c3058bebd..1ba2c82c8e7f2892c375dc7e6645f0c5b7632efc 100644
--- a/config/locales/zh-TW.yml
+++ b/config/locales/zh-TW.yml
@@ -7,6 +7,7 @@ zh-TW:
     active_count_after: 活躍
     active_footnote: 每月活躍使用者 (MAU)
     administered_by: 管理者:
+    api: API
     apps: 行動應用程式
     apps_platforms: 在 iOS、Android 和其他平台使用 Mastodon
     browse_directory: 依興趣瀏覽個人資料目錄和過濾器
@@ -28,6 +29,9 @@ zh-TW:
     status_count_before: 他們共嘟出了
     tagline: 關注朋友並探索新朋友
     terms: 使用條款
+    unavailable_content_description:
+      domain: 伺服器
+      reason: 原因
     user_count_after:
       other: 位使用者
     user_count_before: 註冊使用者數
@@ -44,6 +48,7 @@ zh-TW:
     media: 媒體
     moved_html: "%{name} 已經搬遷到 %{new_profile_link}:"
     network_hidden: 此訊息不可用
+    never_active: 永不
     nothing_here: 暫時沒有內容可供顯示!
     people_followed_by: "%{name} 關注的人"
     people_who_follow: 關注 %{name} 的人
@@ -68,6 +73,7 @@ zh-TW:
       destroyed_msg: 成功刪除管理備忘!
     accounts:
       approve: 核准
+      approve_all: 全部批准
       are_you_sure: 您確定嗎?
       avatar: 頭像
       by_domain: 站點
@@ -93,9 +99,7 @@ zh-TW:
       email_status: 電子信箱狀態
       enable: 啟用
       enabled: 已啟用
-      feed_url: 訂閱 URL
       followers: 關注者
-      followers_url: 關注者(Followers)URL
       follows: 正在關注
       header: é–‹é ­
       inbox_url: æ”¶ä»¶ç®± (Inbox) URL
@@ -122,16 +126,15 @@ zh-TW:
       most_recent_ip: 最近 IP 位址
       no_limits_imposed: 未受限制
       not_subscribed: 未訂閱
-      outbox_url: 寄件箱 (Outbox) URL
       pending: 等待審核中
       perform_full_suspension: 停權
-      profile_url: 個人檔案 URL
       promote: 晉級
       protocol: 協議
       public: 公開
       push_subscription_expires: PuSH 訂閱過期
       redownload: 重新整理個人資料
       reject: 拒絕
+      reject_all: 全部拒絕
       remove_avatar: 取消頭像
       remove_header: 移除開頭
       resend_confirmation:
@@ -147,7 +150,6 @@ zh-TW:
         moderator: 版主
         staff: 管理人員
         user: 普通使用者
-      salmon_url: Salmon 網址
       search: 搜尋
       shared_inbox_url: 共享收件箱網址
       show:
@@ -209,11 +211,14 @@ zh-TW:
       delete: 刪除
       destroyed_msg: 已刪除表情符號!
       disable: 停用
+      disabled: 已停用
       disabled_msg: 已停用表情符號
       emoji: 表情符號
       enable: 啟用
+      enabled: 已啟用
       enabled_msg: 已啟用表情符號
       image_hint: PNG 格式, 最大 50KB
+      list: 列表
       listed: 已顯示
       new:
         title: 加入新的自訂表情符號
@@ -293,6 +298,10 @@ zh-TW:
       back_to_account: 返回帳戶
       title: "%{acct} 的關注者"
     instances:
+      moderation:
+        all: 全部
+        limited: 限制
+        title: 版主
       title: 聯邦
     invites:
       filter:
@@ -303,13 +312,12 @@ zh-TW:
       title: 邀請使用者
     relays:
       description_html: "<strong>聯邦中繼站</strong> 是種中繼伺服器,會在訂閱並推送至此中繼站的伺服器之間交換大量的公開嘟文。<strong>中繼站也能協助小型或中型伺服器從聯邦中探索內容</strong>,而無須本地使用者手動關注遠端伺服器的其他使用者。"
+      disabled: 停用
+      enable: 啟用
     report_notes:
       created_msg: 檢舉記錄建立成功!
       destroyed_msg: 檢舉記錄刪除成功!
     reports:
-      account:
-        note: 條記錄
-        report: 條檢舉
       action_taken_by: 操作執行者
       are_you_sure: 你確定嗎?
       assign_to_self: 指派給自己
@@ -397,12 +405,23 @@ zh-TW:
       no_media: 不含媒體檔案
       title: 帳戶嘟文
       with_media: 含有媒體檔案
+    tags:
+      name: Hashtag
     title: 管理介面
+    warning_presets:
+      add_new: 新增
+      delete: 刪除
+      edit: 編輯
   admin_mailer:
     new_report:
       body: "%{reporter} 檢舉了使用者 %{target}"
       body_remote: 來自 %{domain} 的使用者檢舉了使用者 %{target}
       subject: 來自 %{instance} 的使用者檢舉(#%{id})
+  appearance:
+    localization:
+      body: Mastodon 是由志願者翻譯的。
+      guide_link: https://crowdin.com/project/mastodon
+      guide_link_text: 每個人都能貢獻。
   application_mailer:
     notification_preferences: 變更電子信件設定
     salutation: "%{name}、"
@@ -430,6 +449,8 @@ zh-TW:
     migrate_account: 轉移到另一個帳戶
     migrate_account_html: 如果你希望引導他人關注另一個帳戶,請<a href="%{path}">到這裡設定</a>。
     or_log_in_with: 或透過其他方式登入
+    providers:
+      saml: SAML
     register: 註冊
     resend_confirmation: 重新寄送確認指引
     reset_password: 重設密碼
@@ -488,11 +509,19 @@ zh-TW:
       request: 下載存檔
       size: 大小
     blocks: 您封鎖的使用者
-    follows: 您關注的使用者
+    csv: CSV
+    lists: 列表
     mutes: 您靜音的使用者
     storage: 儲存空間大小
+  filters:
+    index:
+      empty: 您沒有過濾器。
+  footer:
+    more: 更多......
   generic:
+    all: 全部
     changes_saved_msg: 已成功儲存修改!
+    copy: 複製
     save_changes: 儲存修改
   imports:
     preface: 您可以在此匯入您在其他伺服器所匯出的資料檔,包括關注的使用者、封鎖的使用者名單。
@@ -561,6 +590,16 @@ zh-TW:
       body: '你的嘟文被 %{name} 轉嘟:'
       subject: "%{name} 轉嘟了你的嘟文"
       title: 新的轉嘟
+  number:
+    human:
+      decimal_units:
+        format: "%n%u"
+        units:
+          billion: B
+          million: M
+          quadrillion: Q
+          thousand: K
+          trillion: T
   pagination:
     newer: 較新
     next: 下一頁
@@ -596,6 +635,9 @@ zh-TW:
     description: "%{platform} 上的 %{browser}"
     explanation: 這些是現在正登入於你的 Mastodon 帳戶的瀏覽器。
     ip: IP 位址
+    platforms:
+      ios: iOS
+      mac: Mac
     revoke: 取消
     revoke_success: Session 取消成功
     title: 作業階段
@@ -624,6 +666,8 @@ zh-TW:
       ownership: 不能置頂他人的嘟文
       private: 不能置頂非公開的嘟文
       reblog: 不能置頂轉嘟
+    poll:
+      vote: 投票
     show_more: 顯示更多
     visibilities:
       private: 僅關注者
diff --git a/config/navigation.rb b/config/navigation.rb
index eebd4f75e38ba3ba336fbe6ac2d1f93050972a99..53e2fc51eaa514a3078dd30cf0c72c25db372d93 100644
--- a/config/navigation.rb
+++ b/config/navigation.rb
@@ -13,10 +13,18 @@ SimpleNavigation::Configuration.run do |navigation|
     n.item :preferences, safe_join([fa_icon('cog fw'), t('settings.preferences')]), settings_preferences_url, if: -> { current_user.functional? } do |s|
       s.item :appearance, safe_join([fa_icon('desktop fw'), t('settings.appearance')]), settings_preferences_appearance_url
       s.item :notifications, safe_join([fa_icon('bell fw'), t('settings.notifications')]), settings_preferences_notifications_url
+      s.item :favourite_tags, safe_join([fa_icon('hashtag fw'), t('settings.favourite_tags')]), settings_favourite_tags_url
       s.item :other, safe_join([fa_icon('cog fw'), t('preferences.other')]), settings_preferences_other_url
     end
 
-    n.item :relationships, safe_join([fa_icon('users fw'), t('settings.relationships')]), relationships_url, if: -> { current_user.functional? }
+    n.item :follow_and_subscriptions, safe_join([fa_icon('users fw'), t('settings.follow_and_subscriptions')]), relationships_url, if: -> { current_user.functional? } do |s|
+      s.item :relationships, safe_join([fa_icon('users fw'), t('settings.relationships')]), relationships_url, highlights_on: %r{/relationships}
+      s.item :follow_tags, safe_join([fa_icon('hashtag fw'), t('settings.follow_tags')]), settings_follow_tags_url, highlights_on: %r{/follow_tags}
+      s.item :account_subscribes, safe_join([fa_icon('users fw'), t('settings.account_subscribes')]), settings_account_subscribes_url, highlights_on: %r{/account_subscribes}
+      s.item :domain_subscribes, safe_join([fa_icon('server fw'), t('settings.domain_subscribes')]), settings_domain_subscribes_url, highlights_on: %r{/domain_subscribes}
+      s.item :keyword_subscribes, safe_join([fa_icon('search fw'), t('settings.keyword_subscribes')]), settings_keyword_subscribes_url, highlights_on: %r{/keyword_subscribes}
+    end
+
     n.item :filters, safe_join([fa_icon('filter fw'), t('filters.index.title')]), filters_path, highlights_on: %r{/filters}, if: -> { current_user.functional? }
 
     n.item :security, safe_join([fa_icon('lock fw'), t('settings.account')]), edit_user_registration_url do |s|
diff --git a/config/pghero.yml b/config/pghero.yml
new file mode 100644
index 0000000000000000000000000000000000000000..244245d0df7a1f62f166b7ff719bca011887674b
--- /dev/null
+++ b/config/pghero.yml
@@ -0,0 +1,41 @@
+databases:
+  primary:
+    # Database URL (defaults to app database)
+    # url: <%= ENV["DATABASE_URL"] %>
+
+  # Add more databases
+  # other:
+  #   url: <%= ENV["OTHER_DATABASE_URL"] %>
+
+# Minimum time for long running queries
+# long_running_query_sec: 60
+
+# Minimum average time for slow queries
+# slow_query_ms: 20
+
+# Minimum calls for slow queries
+# slow_query_calls: 100
+
+# Minimum connections for high connections warning
+# total_connections_threshold: 500
+
+# Statement timeout for explain
+# explain_timeout_sec: 10
+
+# Time zone (defaults to app time zone)
+# time_zone: "Pacific Time (US & Canada)"
+
+# Basic authentication
+# username: admin
+# password: secret
+
+# Stats database URL (defaults to app database)
+# stats_database_url: <%= ENV["PGHERO_STATS_DATABASE_URL"] %>
+
+# AWS configuration (defaults to app AWS config)
+# also need aws_db_instance_identifier with each database
+# aws_access_key_id: ...
+# aws_secret_access_key: ...
+# aws_region: us-east-1
+
+override_csp: true
diff --git a/config/routes.rb b/config/routes.rb
index e43e201a5d78f0a18280da8e76e9d4c6eaf4a2d1..6fd33e9e0d7444bf7850a8964e28fe4c516b77ad 100644
--- a/config/routes.rb
+++ b/config/routes.rb
@@ -2,6 +2,13 @@
 
 require 'sidekiq/web'
 require 'sidekiq-scheduler/web'
+require 'sinatra/stoplight_admin'
+
+class StoplightAdmin < Sinatra::Base
+  register Sinatra::StoplightAdmin
+  set :data_store, Stoplight::Light.default_data_store
+  set :haml, :escape_html => false
+end
 
 Sidekiq::Web.set :session_secret, Rails.application.secrets[:secret_key_base]
 
@@ -15,6 +22,7 @@ Rails.application.routes.draw do
   authenticate :user, lambda { |u| u.admin? } do
     mount Sidekiq::Web, at: 'sidekiq', as: :sidekiq
     mount PgHero::Engine, at: 'pghero', as: :pghero
+    mount StoplightAdmin, at: 'stoplights', as: :stoplights
   end
 
   use_doorkeeper do
@@ -146,6 +154,11 @@ Rails.application.routes.draw do
     resources :aliases, only: [:index, :create, :destroy]
     resources :sessions, only: [:destroy]
     resources :featured_tags, only: [:index, :create, :destroy]
+    resources :favourite_tags, only: [:index, :create, :destroy]
+    resources :follow_tags, except: [:show]
+    resources :account_subscribes, except: [:show]
+    resources :domain_subscribes, except: [:show]
+    resources :keyword_subscribes, except: [:show]
   end
 
   resources :media, only: [:show] do
@@ -231,7 +244,7 @@ Rails.application.routes.draw do
         end
       end
 
-      resource :role do
+      resource :role, only: [] do
         member do
           post :promote
           post :demote
@@ -289,6 +302,9 @@ Rails.application.routes.draw do
           resource :favourite, only: :create
           post :unfavourite, to: 'favourites#destroy'
 
+          resource :bookmark, only: :create
+          post :unbookmark, to: 'bookmarks#destroy'
+
           resource :mute, only: :create
           post :unmute, to: 'mutes#destroy'
 
@@ -324,6 +340,7 @@ Rails.application.routes.draw do
       resources :blocks,       only: [:index]
       resources :mutes,        only: [:index]
       resources :favourites,   only: [:index]
+      resources :bookmarks,    only: [:index]
       resources :reports,      only: [:create]
       resources :trends,       only: [:index]
       resources :filters,      only: [:index, :create, :show, :update, :destroy]
@@ -366,6 +383,7 @@ Rails.application.routes.draw do
         patch :update_credentials, to: 'credentials#update'
         resource :search, only: :show, controller: :search
         resources :relationships, only: :index
+        resources :subscribing, only: :index, controller: 'subscribing_accounts'
       end
 
       resources :accounts, only: [:create, :show] do
@@ -374,10 +392,13 @@ Rails.application.routes.draw do
         resources :following, only: :index, controller: 'accounts/following_accounts'
         resources :lists, only: :index, controller: 'accounts/lists'
         resources :identity_proofs, only: :index, controller: 'accounts/identity_proofs'
+        resources :featured_tags, only: :index, controller: 'accounts/featured_tags'
 
         member do
           post :follow
           post :unfollow
+          post :subscribe
+          post :unsubscribe
           post :block
           post :unblock
           post :mute
@@ -397,6 +418,10 @@ Rails.application.routes.draw do
       end
 
       resources :featured_tags, only: [:index, :create, :destroy]
+      resources :favourite_tags, only: [:index, :create, :show, :update, :destroy]
+      resources :follow_tags, only: [:index, :create, :show, :update, :destroy]
+      resources :domain_subscribes, only: [:index, :create, :show, :update, :destroy]
+      resources :keyword_subscribes, only: [:index, :create, :show, :update, :destroy]
 
       resources :polls, only: [:create, :show] do
         resources :votes, only: :create, controller: 'polls/votes'
diff --git a/config/settings.yml b/config/settings.yml
index a39eb2ea80bcd872125cd21676aae0c0d1a2d7d4..eee561e3c9af5069345cee5bebd8eeb7adb6d808 100644
--- a/config/settings.yml
+++ b/config/settings.yml
@@ -20,6 +20,7 @@ defaults: &defaults
   default_federation: true
   hide_network: false
   unfollow_modal: false
+  unsubscribe_modal: false
   boost_modal: false
   delete_modal: true
   auto_play_gif: false
@@ -37,6 +38,10 @@ defaults: &defaults
   use_pending_items: false
   trends: true
   trendable_by_default: false
+  crop_images: true
+  show_follow_button_on_timeline: false
+  show_subscribe_button_on_timeline: false
+  show_target: false
   notification_emails:
     follow: false
     reblog: false
@@ -61,6 +66,7 @@ defaults: &defaults
     - mod
     - moderator
   disallowed_hashtags: # space separated string or list of hashtags without the hash
+  enable_bootstrap_timeline_accounts: true
   bootstrap_timeline_accounts: ''
   activity_api_enabled: true
   peers_api_enabled: true
diff --git a/config/themes.yml b/config/themes.yml
index 94d36d380d5f48735978f8e9093aab7f75c5800b..768a0219f9e5816c6cdfb7920ee8e9b2bd0278c4 100644
--- a/config/themes.yml
+++ b/config/themes.yml
@@ -8,3 +8,22 @@ material-light: styles/material-light.scss
 material-dark: styles/material-dark.scss
 mastodon-wide-light: styles/mastodon-wide-light.scss
 mastodon-wide-dark: styles/mastodon-wide-dark.scss
+mobile-small: styles/mobile-small.scss
+instance-ticker-type-0: styles/instance-ticker-type-0.scss
+instance-ticker-type-1: styles/instance-ticker-type-1.scss
+instance-ticker-type-2: styles/instance-ticker-type-2.scss
+instance-ticker-type-10: styles/instance-ticker-type-10.scss
+instance-ticker-type-11: styles/instance-ticker-type-11.scss
+instance-ticker-type-12: styles/instance-ticker-type-12.scss
+instance-ticker-type-0-contrast: styles/instance-ticker-type-0-contrast.scss
+instance-ticker-type-1-contrast: styles/instance-ticker-type-1-contrast.scss
+instance-ticker-type-2-contrast: styles/instance-ticker-type-2-contrast.scss
+instance-ticker-type-10-contrast: styles/instance-ticker-type-10-contrast.scss
+instance-ticker-type-11-contrast: styles/instance-ticker-type-11-contrast.scss
+instance-ticker-type-12-contrast: styles/instance-ticker-type-12-contrast.scss
+instance-ticker-type-0-light: styles/instance-ticker-type-0-light.scss
+instance-ticker-type-1-light: styles/instance-ticker-type-1-light.scss
+instance-ticker-type-2-light: styles/instance-ticker-type-2-light.scss
+instance-ticker-type-10-light: styles/instance-ticker-type-10-light.scss
+instance-ticker-type-11-light: styles/instance-ticker-type-11-light.scss
+instance-ticker-type-12-light: styles/instance-ticker-type-12-light.scss
diff --git a/config/webpack/test.js b/config/webpack/tests.js
similarity index 100%
rename from config/webpack/test.js
rename to config/webpack/tests.js
diff --git a/config/webpacker.yml b/config/webpacker.yml
index 4ad78a190ec4989d20a9d768a89d7834da1c5993..3bedf1849033dd135a15f36caea3be917ba2c398 100644
--- a/config/webpacker.yml
+++ b/config/webpacker.yml
@@ -7,7 +7,7 @@ default: &default
   public_output_path: packs
   cache_path: tmp/cache/webpacker
   check_yarn_integrity: false
-  webpack_compile_output: false
+  webpack_compile_output: true
 
   # Additional paths webpack should lookup modules
   # ['app/assets', 'engine/foo/app/assets']
diff --git a/db/migrate/20170711225116_fix_null_booleans.rb b/db/migrate/20170711225116_fix_null_booleans.rb
index 5b319471d700682acaf87ba78780ea2a87e112f3..aabb81f217b6b309b30a8806963f4724204e6c77 100644
--- a/db/migrate/20170711225116_fix_null_booleans.rb
+++ b/db/migrate/20170711225116_fix_null_booleans.rb
@@ -1,17 +1,19 @@
 class FixNullBooleans < ActiveRecord::Migration[5.1]
   def change
-    change_column_default :domain_blocks, :reject_media, false
-    change_column_null :domain_blocks, :reject_media, false, false
+    safety_assured do
+      change_column_default :domain_blocks, :reject_media, false
+      change_column_null :domain_blocks, :reject_media, false, false
 
-    change_column_default :imports, :approved, false
-    change_column_null :imports, :approved, false, false
+      change_column_default :imports, :approved, false
+      change_column_null :imports, :approved, false, false
 
-    change_column_null :statuses, :sensitive, false, false
-    change_column_null :statuses, :reply, false, false
+      change_column_null :statuses, :sensitive, false, false
+      change_column_null :statuses, :reply, false, false
 
-    change_column_null :users, :admin, false, false
+      change_column_null :users, :admin, false, false
 
-    change_column_default :users, :otp_required_for_login, false
-    change_column_null :users, :otp_required_for_login, false, false
+      change_column_default :users, :otp_required_for_login, false
+      change_column_null :users, :otp_required_for_login, false, false
+    end
   end
 end
diff --git a/db/migrate/20171010025614_change_accounts_nonnullable_in_account_moderation_notes.rb b/db/migrate/20171010025614_change_accounts_nonnullable_in_account_moderation_notes.rb
index 747e5a8269142c26e5ef2d7f014e29e4ad5425fa..1d7a0086c24addc5a21f40d6d730238af2e90c21 100644
--- a/db/migrate/20171010025614_change_accounts_nonnullable_in_account_moderation_notes.rb
+++ b/db/migrate/20171010025614_change_accounts_nonnullable_in_account_moderation_notes.rb
@@ -1,6 +1,8 @@
 class ChangeAccountsNonnullableInAccountModerationNotes < ActiveRecord::Migration[5.1]
   def change
-    change_column_null :account_moderation_notes, :account_id, false
-    change_column_null :account_moderation_notes, :target_account_id, false
+    safety_assured do
+      change_column_null :account_moderation_notes, :account_id, false
+      change_column_null :account_moderation_notes, :target_account_id, false
+    end
   end
 end
diff --git a/db/migrate/20171201000000_change_account_id_nonnullable_in_lists.rb b/db/migrate/20171201000000_change_account_id_nonnullable_in_lists.rb
index 3369e3b9e97ab7f28fbf69584c908807e5437756..ac86c9e777d825bd3326f4991a6ff942c009dc3e 100644
--- a/db/migrate/20171201000000_change_account_id_nonnullable_in_lists.rb
+++ b/db/migrate/20171201000000_change_account_id_nonnullable_in_lists.rb
@@ -1,5 +1,7 @@
 class ChangeAccountIdNonnullableInLists < ActiveRecord::Migration[5.1]
   def change
-    change_column_null :lists, :account_id, false
+    safety_assured do
+      change_column_null :lists, :account_id, false
+    end
   end
 end
diff --git a/db/migrate/20180206000000_change_user_id_nonnullable.rb b/db/migrate/20180206000000_change_user_id_nonnullable.rb
index 4eecb615457053abeaa4e6c40e72c4f6c1a64c53..2d2cf20d38cd47c1dd8db9c9161a7ba6585eea91 100644
--- a/db/migrate/20180206000000_change_user_id_nonnullable.rb
+++ b/db/migrate/20180206000000_change_user_id_nonnullable.rb
@@ -1,6 +1,8 @@
 class ChangeUserIdNonnullable < ActiveRecord::Migration[5.1]
   def change
-    change_column_null :invites, :user_id, false
-    change_column_null :web_settings, :user_id, false
+    safety_assured do
+      change_column_null :invites, :user_id, false
+      change_column_null :web_settings, :user_id, false
+    end
   end
 end
diff --git a/db/migrate/20180310000000_change_columns_in_notifications_nonnullable.rb b/db/migrate/20180310000000_change_columns_in_notifications_nonnullable.rb
index 05ffd050104d8620fdcb864b30b1998462a65cc5..dba789207daf74e4fd48c87798b0b213d9a3f0ff 100644
--- a/db/migrate/20180310000000_change_columns_in_notifications_nonnullable.rb
+++ b/db/migrate/20180310000000_change_columns_in_notifications_nonnullable.rb
@@ -1,8 +1,10 @@
 class ChangeColumnsInNotificationsNonnullable < ActiveRecord::Migration[5.1]
   def change
-    change_column_null :notifications, :activity_id, false
-    change_column_null :notifications, :activity_type, false
-    change_column_null :notifications, :account_id, false
-    change_column_null :notifications, :from_account_id, false
+    safety_assured do
+      change_column_null :notifications, :activity_id, false
+      change_column_null :notifications, :activity_type, false
+      change_column_null :notifications, :account_id, false
+      change_column_null :notifications, :from_account_id, false
+    end
   end
 end
diff --git a/db/migrate/20180419235016_add_quote_id_to_statuses.rb b/db/migrate/20180419235016_add_quote_id_to_statuses.rb
new file mode 100644
index 0000000000000000000000000000000000000000..d7550b24887964435fdbd97d35582c7bf1e4432a
--- /dev/null
+++ b/db/migrate/20180419235016_add_quote_id_to_statuses.rb
@@ -0,0 +1,5 @@
+class AddQuoteIdToStatuses < ActiveRecord::Migration[5.1]
+  def change
+    add_column :statuses, :quote_id, :bigint, null: true, default: nil
+  end
+end
diff --git a/db/migrate/20180831171112_create_bookmarks.rb b/db/migrate/20180831171112_create_bookmarks.rb
new file mode 100644
index 0000000000000000000000000000000000000000..27c7339c9aa3bafea712ca37208cd556b57ddda7
--- /dev/null
+++ b/db/migrate/20180831171112_create_bookmarks.rb
@@ -0,0 +1,17 @@
+class CreateBookmarks < ActiveRecord::Migration[5.1]
+  def change
+    create_table :bookmarks do |t|
+      t.references :account, null: false
+      t.references :status, null: false
+
+      t.timestamps
+    end
+
+    safety_assured do
+      add_foreign_key :bookmarks, :accounts, column: :account_id, on_delete: :cascade
+      add_foreign_key :bookmarks, :statuses, column: :status_id, on_delete: :cascade
+    end
+
+    add_index :bookmarks, [:account_id, :status_id], unique: true
+  end
+end
diff --git a/db/migrate/20181024224956_migrate_account_conversations.rb b/db/migrate/20181024224956_migrate_account_conversations.rb
index d4bc3b91d9245e7aa7455d96aac3d4cc22ad5452..9f6c94fd12fa0cdbb9e32697d51356e8d4f5d737 100644
--- a/db/migrate/20181024224956_migrate_account_conversations.rb
+++ b/db/migrate/20181024224956_migrate_account_conversations.rb
@@ -1,6 +1,66 @@
 class MigrateAccountConversations < ActiveRecord::Migration[5.2]
   disable_ddl_transaction!
 
+  class Mention < ApplicationRecord
+    belongs_to :account, inverse_of: :mentions
+    belongs_to :status, -> { unscope(where: :deleted_at) }
+
+    delegate(
+      :username,
+      :acct,
+      to: :account,
+      prefix: true
+    )
+  end
+
+  class Notification < ApplicationRecord
+    belongs_to :account, optional: true
+    belongs_to :activity, polymorphic: true, optional: true
+
+    belongs_to :status,         foreign_type: 'Status',        foreign_key: 'activity_id', optional: true
+    belongs_to :mention,        foreign_type: 'Mention',       foreign_key: 'activity_id', optional: true
+
+    def target_status
+      mention&.status
+    end
+  end
+
+  class AccountConversation < ApplicationRecord
+    belongs_to :account
+    belongs_to :conversation
+    belongs_to :last_status, -> { unscope(where: :deleted_at) }, class_name: 'Status'
+
+    before_validation :set_last_status
+
+    class << self
+      def add_status(recipient, status)
+        conversation = find_or_initialize_by(account: recipient, conversation_id: status.conversation_id, participant_account_ids: participants_from_status(recipient, status))
+
+        return conversation if conversation.status_ids.include?(status.id)
+
+        conversation.status_ids << status.id
+        conversation.unread = status.account_id != recipient.id
+        conversation.save
+        conversation
+      rescue ActiveRecord::StaleObjectError
+        retry
+      end
+
+      private
+
+      def participants_from_status(recipient, status)
+        ((status.active_mentions.pluck(:account_id) + [status.account_id]).uniq - [recipient.id]).sort
+      end
+    end
+
+    private
+
+    def set_last_status
+      self.status_ids     = status_ids.sort
+      self.last_status_id = status_ids.last
+    end
+  end
+
   def up
     say ''
     say 'WARNING: This migration may take a *long* time for large instances'
diff --git a/db/migrate/20190821124329_create_favourite_tags.rb b/db/migrate/20190821124329_create_favourite_tags.rb
new file mode 100644
index 0000000000000000000000000000000000000000..da451f84fe8ed2bc3b5cba6b611c7c8369295a4a
--- /dev/null
+++ b/db/migrate/20190821124329_create_favourite_tags.rb
@@ -0,0 +1,10 @@
+class CreateFavouriteTags < ActiveRecord::Migration[5.2]
+  def change
+    create_table :favourite_tags do |t|
+      t.references :account, foreign_key: { on_delete: :cascade }
+      t.references :tag, foreign_key: { on_delete: :cascade }
+
+      t.timestamps
+    end
+  end
+end
diff --git a/db/migrate/20190829202944_create_follow_tags.rb b/db/migrate/20190829202944_create_follow_tags.rb
new file mode 100644
index 0000000000000000000000000000000000000000..1116ad640c64a6842ae4a8103accfd6cef6041bb
--- /dev/null
+++ b/db/migrate/20190829202944_create_follow_tags.rb
@@ -0,0 +1,10 @@
+class CreateFollowTags < ActiveRecord::Migration[5.2]
+  def change
+    create_table :follow_tags do |t|
+      t.references :account, foreign_key: { on_delete: :cascade }
+      t.references :tag, foreign_key: { on_delete: :cascade }
+
+      t.timestamps
+    end
+  end
+end
diff --git a/db/migrate/20190901090544_create_account_subscribes.rb b/db/migrate/20190901090544_create_account_subscribes.rb
new file mode 100644
index 0000000000000000000000000000000000000000..1fbb20ec09f3df8bd1c5186055feb0fa1ebca7a0
--- /dev/null
+++ b/db/migrate/20190901090544_create_account_subscribes.rb
@@ -0,0 +1,10 @@
+class CreateAccountSubscribes < ActiveRecord::Migration[5.2]
+  def change
+    create_table :account_subscribes do |t|
+      t.references :account, foreign_key: { on_delete: :cascade }
+      t.references :target_account, foreign_key: { to_table: 'accounts', on_delete: :cascade }
+
+      t.timestamps
+    end
+  end
+end
diff --git a/db/migrate/20190903113117_create_keyword_subscribes.rb b/db/migrate/20190903113117_create_keyword_subscribes.rb
new file mode 100644
index 0000000000000000000000000000000000000000..6fd1f1f87c8c61bb7f59c3a7eddb3b2fcbaf3369
--- /dev/null
+++ b/db/migrate/20190903113117_create_keyword_subscribes.rb
@@ -0,0 +1,12 @@
+class CreateKeywordSubscribes < ActiveRecord::Migration[5.2]
+  def change
+    create_table :keyword_subscribes do |t|
+      t.references :account, foreign_key: { on_delete: :cascade }
+      t.string :keyword, null: false
+      t.boolean :ignorecase, default: true
+      t.boolean :regexp, default: false
+
+      t.timestamps
+    end
+  end
+end
diff --git a/db/migrate/20190910140929_add_name_and_flag_to_keyword_subscribe.rb b/db/migrate/20190910140929_add_name_and_flag_to_keyword_subscribe.rb
new file mode 100644
index 0000000000000000000000000000000000000000..30e0a4bdf179a5243fa4159e5a9086ee4a9a90bf
--- /dev/null
+++ b/db/migrate/20190910140929_add_name_and_flag_to_keyword_subscribe.rb
@@ -0,0 +1,8 @@
+class AddNameAndFlagToKeywordSubscribe < ActiveRecord::Migration[5.2]
+  def change
+    add_column :keyword_subscribes, :name, :string, default: '', null: false
+    add_column :keyword_subscribes, :ignore_block, :boolean, default: false
+    add_column :keyword_subscribes, :disabled, :boolean, default: false
+    add_column :keyword_subscribes, :exclude_home, :boolean, default: false
+  end
+end
diff --git a/db/migrate/20190911093445_create_domain_subscribes.rb b/db/migrate/20190911093445_create_domain_subscribes.rb
new file mode 100644
index 0000000000000000000000000000000000000000..0a007b0a2befb165240dc03b5de26bddf7994e8f
--- /dev/null
+++ b/db/migrate/20190911093445_create_domain_subscribes.rb
@@ -0,0 +1,11 @@
+class CreateDomainSubscribes < ActiveRecord::Migration[5.2]
+  def change
+    create_table :domain_subscribes do |t|
+      t.references :account, foreign_key: { on_delete: :cascade }
+      t.references :list, foreign_key: { on_delete: :cascade }
+      t.string :domain, default: '', null: false
+
+      t.timestamps
+    end
+  end
+end
diff --git a/db/migrate/20190914231645_add_exclude_keyword_to_keyword_subscribe.rb b/db/migrate/20190914231645_add_exclude_keyword_to_keyword_subscribe.rb
new file mode 100644
index 0000000000000000000000000000000000000000..1c3c1df3f8071b8ce9f90be7f9c42e2bc01696e8
--- /dev/null
+++ b/db/migrate/20190914231645_add_exclude_keyword_to_keyword_subscribe.rb
@@ -0,0 +1,5 @@
+class AddExcludeKeywordToKeywordSubscribe < ActiveRecord::Migration[5.2]
+  def change
+    add_column :keyword_subscribes, :exclude_keyword, :string, default: '', null: false
+  end
+end
diff --git a/db/migrate/20191022105417_add_exclude_reblog_to_domain_subscribe.rb b/db/migrate/20191022105417_add_exclude_reblog_to_domain_subscribe.rb
new file mode 100644
index 0000000000000000000000000000000000000000..3459b0052458c1c7f99e6188e2ae7832e5ae2003
--- /dev/null
+++ b/db/migrate/20191022105417_add_exclude_reblog_to_domain_subscribe.rb
@@ -0,0 +1,5 @@
+class AddExcludeReblogToDomainSubscribe < ActiveRecord::Migration[5.2]
+  def change
+    add_column :domain_subscribes, :exclude_reblog, :boolean, default: true
+  end
+end
diff --git a/db/migrate/20191025031836_remove_exclude_home_from_keyword_subscribes.rb b/db/migrate/20191025031836_remove_exclude_home_from_keyword_subscribes.rb
new file mode 100644
index 0000000000000000000000000000000000000000..66fd3b9d47cfbf7e8ff954f01fa808787a81674a
--- /dev/null
+++ b/db/migrate/20191025031836_remove_exclude_home_from_keyword_subscribes.rb
@@ -0,0 +1,5 @@
+class RemoveExcludeHomeFromKeywordSubscribes < ActiveRecord::Migration[5.2]
+  def change
+    safety_assured { remove_column :keyword_subscribes, :exclude_home, :boolean }
+  end
+end
diff --git a/db/migrate/20191025190919_add_list_to_keyword_subscribes.rb b/db/migrate/20191025190919_add_list_to_keyword_subscribes.rb
new file mode 100644
index 0000000000000000000000000000000000000000..e7973dd864b9dafd8103e9cc2b2ce942df3741e6
--- /dev/null
+++ b/db/migrate/20191025190919_add_list_to_keyword_subscribes.rb
@@ -0,0 +1,8 @@
+class AddListToKeywordSubscribes < ActiveRecord::Migration[5.2]
+  disable_ddl_transaction!
+
+  def change
+    add_reference :keyword_subscribes, :list, foreign_key: { on_delete: :cascade }, index: false
+    add_index :keyword_subscribes, :list_id, algorithm: :concurrently
+  end
+end
diff --git a/db/migrate/20191026110416_add_list_to_account_subscribes.rb b/db/migrate/20191026110416_add_list_to_account_subscribes.rb
new file mode 100644
index 0000000000000000000000000000000000000000..7420c8bf63b1c75962a4a7a30bd4285d078e5c8c
--- /dev/null
+++ b/db/migrate/20191026110416_add_list_to_account_subscribes.rb
@@ -0,0 +1,8 @@
+class AddListToAccountSubscribes < ActiveRecord::Migration[5.2]
+  disable_ddl_transaction!
+
+  def change
+    add_reference :account_subscribes, :list, foreign_key: { on_delete: :cascade }, index: false
+    add_index :account_subscribes, :list_id, algorithm: :concurrently
+  end
+end
diff --git a/db/migrate/20191026110502_add_list_to_follow_tags.rb b/db/migrate/20191026110502_add_list_to_follow_tags.rb
new file mode 100644
index 0000000000000000000000000000000000000000..ecb0714bc5009168a258ecceb24af17835c88a60
--- /dev/null
+++ b/db/migrate/20191026110502_add_list_to_follow_tags.rb
@@ -0,0 +1,8 @@
+class AddListToFollowTags < ActiveRecord::Migration[5.2]
+  disable_ddl_transaction!
+
+  def change
+    add_reference :follow_tags, :list, foreign_key: { on_delete: :cascade }, index: false
+    add_index :follow_tags, :list_id, algorithm: :concurrently
+  end
+end
diff --git a/db/migrate/20191031163205_change_list_account_follow_nullable.rb b/db/migrate/20191031163205_change_list_account_follow_nullable.rb
new file mode 100644
index 0000000000000000000000000000000000000000..65ff933658fe45f7effd8f438abb6553511dd7fd
--- /dev/null
+++ b/db/migrate/20191031163205_change_list_account_follow_nullable.rb
@@ -0,0 +1,7 @@
+class ChangeListAccountFollowNullable < ActiveRecord::Migration[5.1]
+  def change
+    safety_assured do
+      change_column_null :list_accounts, :follow_id, true
+    end
+  end
+end
diff --git a/db/migrate/20191212003415_increase_backup_size.rb b/db/migrate/20191212003415_increase_backup_size.rb
new file mode 100644
index 0000000000000000000000000000000000000000..a5192263cf1f5dddbbe7fa776bf1568f9b35c553
--- /dev/null
+++ b/db/migrate/20191212003415_increase_backup_size.rb
@@ -0,0 +1,21 @@
+require Rails.root.join('lib', 'mastodon', 'migration_helpers')
+
+class IncreaseBackupSize < ActiveRecord::Migration[5.2]
+  include Mastodon::MigrationHelpers
+
+  disable_ddl_transaction!
+
+  def up
+    safety_assured do
+      change_column_type_concurrently :backups, :dump_file_size, :bigint
+      cleanup_concurrent_column_type_change :backups, :dump_file_size
+    end
+  end
+
+  def down
+    safety_assured do
+      change_column_type_concurrently :backups, :dump_file_size, :integer
+      cleanup_concurrent_column_type_change :backups, :dump_file_size
+    end
+  end
+end
diff --git a/db/migrate/20191214025518_add_subscribing_count_to_account_stat.rb b/db/migrate/20191214025518_add_subscribing_count_to_account_stat.rb
new file mode 100644
index 0000000000000000000000000000000000000000..f5135f3ca216583d98ac8aa358d1f06b11473314
--- /dev/null
+++ b/db/migrate/20191214025518_add_subscribing_count_to_account_stat.rb
@@ -0,0 +1,5 @@
+class AddSubscribingCountToAccountStat < ActiveRecord::Migration[5.2]
+  def change
+    add_column :account_stats, :subscribing_count, :bigint, null: false, default: 0
+  end
+end
diff --git a/db/migrate/20200105023325_add_show_reblogs_to_account_subscribe.rb b/db/migrate/20200105023325_add_show_reblogs_to_account_subscribe.rb
new file mode 100644
index 0000000000000000000000000000000000000000..c364fd2f968829454fc7e6a5b40e0564b44abd74
--- /dev/null
+++ b/db/migrate/20200105023325_add_show_reblogs_to_account_subscribe.rb
@@ -0,0 +1,17 @@
+require Rails.root.join('lib', 'mastodon', 'migration_helpers')
+
+class AddShowReblogsToAccountSubscribe < ActiveRecord::Migration[5.2]
+  include Mastodon::MigrationHelpers
+
+  disable_ddl_transaction!
+
+  def up
+    safety_assured do
+      add_column_with_default :account_subscribes, :show_reblogs, :boolean, default: true, allow_null: false
+    end
+  end
+
+  def down
+    remove_column :account_subscribes, :show_reblogs
+  end
+end
diff --git a/db/migrate/20200119112504_add_public_index_to_statuses.rb b/db/migrate/20200119112504_add_public_index_to_statuses.rb
new file mode 100644
index 0000000000000000000000000000000000000000..db007848e001ab404575938f4deaa93dc51190d7
--- /dev/null
+++ b/db/migrate/20200119112504_add_public_index_to_statuses.rb
@@ -0,0 +1,11 @@
+class AddPublicIndexToStatuses < ActiveRecord::Migration[5.2]
+  disable_ddl_transaction!
+
+  def up
+    add_index :statuses, [:id, :account_id], name: :index_statuses_public_20200119, algorithm: :concurrently, order: { id: :desc }, where: 'deleted_at IS NULL AND visibility = 0 AND reblog_of_id IS NULL AND ((NOT reply) OR (in_reply_to_account_id = account_id))'
+  end
+
+  def down
+    remove_index :statuses, name: :index_statuses_public_20200119
+  end
+end
diff --git a/db/schema.rb b/db/schema.rb
index cd1f26281c5134d3ff7b19f2336645ed4d9c09e0..655277808836b85dc88169ec7805c314a1ccad51 100644
--- a/db/schema.rb
+++ b/db/schema.rb
@@ -10,7 +10,7 @@
 #
 # It's strongly recommended that you check this file into your version control system.
 
-ActiveRecord::Schema.define(version: 2019_10_07_013357) do
+ActiveRecord::Schema.define(version: 2020_01_19_112504) do
 
   # These are extensions that must be enabled in order to support this database
   enable_extension "plpgsql"
@@ -98,9 +98,22 @@ ActiveRecord::Schema.define(version: 2019_10_07_013357) do
     t.datetime "updated_at", null: false
     t.datetime "last_status_at"
     t.integer "lock_version", default: 0, null: false
+    t.bigint "subscribing_count", default: 0, null: false
     t.index ["account_id"], name: "index_account_stats_on_account_id", unique: true
   end
 
+  create_table "account_subscribes", force: :cascade do |t|
+    t.bigint "account_id"
+    t.bigint "target_account_id"
+    t.datetime "created_at", null: false
+    t.datetime "updated_at", null: false
+    t.bigint "list_id"
+    t.boolean "show_reblogs", default: true, null: false
+    t.index ["account_id"], name: "index_account_subscribes_on_account_id"
+    t.index ["list_id"], name: "index_account_subscribes_on_list_id"
+    t.index ["target_account_id"], name: "index_account_subscribes_on_target_account_id"
+  end
+
   create_table "account_tag_stats", force: :cascade do |t|
     t.bigint "tag_id", null: false
     t.bigint "accounts_count", default: 0, null: false
@@ -200,7 +213,7 @@ ActiveRecord::Schema.define(version: 2019_10_07_013357) do
     t.bigint "user_id"
     t.string "dump_file_name"
     t.string "dump_content_type"
-    t.integer "dump_file_size"
+    t.bigint "dump_file_size"
     t.datetime "dump_updated_at"
     t.boolean "processed", default: false, null: false
     t.datetime "created_at", null: false
@@ -217,6 +230,16 @@ ActiveRecord::Schema.define(version: 2019_10_07_013357) do
     t.index ["target_account_id"], name: "index_blocks_on_target_account_id"
   end
 
+  create_table "bookmarks", force: :cascade do |t|
+    t.bigint "account_id", null: false
+    t.bigint "status_id", null: false
+    t.datetime "created_at", null: false
+    t.datetime "updated_at", null: false
+    t.index ["account_id", "status_id"], name: "index_bookmarks_on_account_id_and_status_id", unique: true
+    t.index ["account_id"], name: "index_bookmarks_on_account_id"
+    t.index ["status_id"], name: "index_bookmarks_on_status_id"
+  end
+
   create_table "conversation_mutes", force: :cascade do |t|
     t.bigint "conversation_id", null: false
     t.bigint "account_id", null: false
@@ -285,6 +308,38 @@ ActiveRecord::Schema.define(version: 2019_10_07_013357) do
     t.index ["domain"], name: "index_domain_blocks_on_domain", unique: true
   end
 
+  create_table "domain_subscribes", force: :cascade do |t|
+    t.bigint "account_id"
+    t.bigint "list_id"
+    t.string "domain", default: "", null: false
+    t.datetime "created_at", null: false
+    t.datetime "updated_at", null: false
+    t.boolean "exclude_reblog", default: true
+    t.index ["account_id"], name: "index_domain_subscribes_on_account_id"
+    t.index ["list_id"], name: "index_domain_subscribes_on_list_id"
+  end
+
+  create_table "domains", force: :cascade do |t|
+    t.string "domain", default: "", null: false
+    t.string "title", default: "", null: false
+    t.string "short_description", default: "", null: false
+    t.string "email", default: "", null: false
+    t.string "version", default: "", null: false
+    t.string "thumbnail_remote_url", default: "", null: false
+    t.string "languages", array: true
+    t.boolean "registrations"
+    t.boolean "approval_required"
+    t.bigint "contact_account_id"
+    t.string "software", default: "", null: false
+    t.datetime "created_at", null: false
+    t.datetime "updated_at", null: false
+    t.string "thumbnail_file_name"
+    t.string "thumbnail_content_type"
+    t.integer "thumbnail_file_size"
+    t.datetime "thumbnail_updated_at"
+    t.index ["contact_account_id"], name: "index_domains_on_contact_account_id"
+  end
+
   create_table "email_domain_blocks", force: :cascade do |t|
     t.string "domain", default: "", null: false
     t.datetime "created_at", null: false
@@ -292,6 +347,15 @@ ActiveRecord::Schema.define(version: 2019_10_07_013357) do
     t.index ["domain"], name: "index_email_domain_blocks_on_domain", unique: true
   end
 
+  create_table "favourite_tags", force: :cascade do |t|
+    t.bigint "account_id"
+    t.bigint "tag_id"
+    t.datetime "created_at", null: false
+    t.datetime "updated_at", null: false
+    t.index ["account_id"], name: "index_favourite_tags_on_account_id"
+    t.index ["tag_id"], name: "index_favourite_tags_on_tag_id"
+  end
+
   create_table "favourites", force: :cascade do |t|
     t.datetime "created_at", null: false
     t.datetime "updated_at", null: false
@@ -323,6 +387,17 @@ ActiveRecord::Schema.define(version: 2019_10_07_013357) do
     t.index ["account_id", "target_account_id"], name: "index_follow_requests_on_account_id_and_target_account_id", unique: true
   end
 
+  create_table "follow_tags", force: :cascade do |t|
+    t.bigint "account_id"
+    t.bigint "tag_id"
+    t.datetime "created_at", null: false
+    t.datetime "updated_at", null: false
+    t.bigint "list_id"
+    t.index ["account_id"], name: "index_follow_tags_on_account_id"
+    t.index ["list_id"], name: "index_follow_tags_on_list_id"
+    t.index ["tag_id"], name: "index_follow_tags_on_tag_id"
+  end
+
   create_table "follows", force: :cascade do |t|
     t.datetime "created_at", null: false
     t.datetime "updated_at", null: false
@@ -330,6 +405,7 @@ ActiveRecord::Schema.define(version: 2019_10_07_013357) do
     t.bigint "target_account_id", null: false
     t.boolean "show_reblogs", default: true, null: false
     t.string "uri"
+    t.boolean "private", default: true, null: false
     t.index ["account_id", "target_account_id"], name: "index_follows_on_account_id_and_target_account_id", unique: true
     t.index ["target_account_id"], name: "index_follows_on_target_account_id"
   end
@@ -370,10 +446,26 @@ ActiveRecord::Schema.define(version: 2019_10_07_013357) do
     t.index ["user_id"], name: "index_invites_on_user_id"
   end
 
+  create_table "keyword_subscribes", force: :cascade do |t|
+    t.bigint "account_id"
+    t.string "keyword", null: false
+    t.boolean "ignorecase", default: true
+    t.boolean "regexp", default: false
+    t.datetime "created_at", null: false
+    t.datetime "updated_at", null: false
+    t.string "name", default: "", null: false
+    t.boolean "ignore_block", default: false
+    t.boolean "disabled", default: false
+    t.string "exclude_keyword", default: "", null: false
+    t.bigint "list_id"
+    t.index ["account_id"], name: "index_keyword_subscribes_on_account_id"
+    t.index ["list_id"], name: "index_keyword_subscribes_on_list_id"
+  end
+
   create_table "list_accounts", force: :cascade do |t|
     t.bigint "list_id", null: false
     t.bigint "account_id", null: false
-    t.bigint "follow_id", null: false
+    t.bigint "follow_id"
     t.index ["account_id", "list_id"], name: "index_list_accounts_on_account_id_and_list_id", unique: true
     t.index ["follow_id"], name: "index_list_accounts_on_follow_id"
     t.index ["list_id", "account_id"], name: "index_list_accounts_on_list_id_and_account_id"
@@ -677,10 +769,12 @@ ActiveRecord::Schema.define(version: 2019_10_07_013357) do
     t.bigint "application_id"
     t.bigint "in_reply_to_account_id"
     t.bigint "poll_id"
+    t.bigint "quote_id"
     t.datetime "deleted_at"
     t.boolean "local_only"
     t.index ["account_id", "id", "visibility", "updated_at"], name: "index_statuses_20190820", order: { id: :desc }, where: "(deleted_at IS NULL)"
     t.index ["id", "account_id"], name: "index_statuses_local_20190824", order: { id: :desc }, where: "((local OR (uri IS NULL)) AND (deleted_at IS NULL) AND (visibility = 0) AND (reblog_of_id IS NULL) AND ((NOT reply) OR (in_reply_to_account_id = account_id)))"
+    t.index ["id", "account_id"], name: "index_statuses_public_20200119", order: { id: :desc }, where: "((deleted_at IS NULL) AND (visibility = 0) AND (reblog_of_id IS NULL) AND ((NOT reply) OR (in_reply_to_account_id = account_id)))"
     t.index ["in_reply_to_account_id"], name: "index_statuses_on_in_reply_to_account_id"
     t.index ["in_reply_to_id"], name: "index_statuses_on_in_reply_to_id"
     t.index ["reblog_of_id", "account_id"], name: "index_statuses_on_reblog_of_id_and_account_id"
@@ -694,30 +788,6 @@ ActiveRecord::Schema.define(version: 2019_10_07_013357) do
     t.index ["tag_id", "status_id"], name: "index_statuses_tags_on_tag_id_and_status_id", unique: true
   end
 
-  create_table "stream_entries", force: :cascade do |t|
-    t.bigint "activity_id"
-    t.string "activity_type"
-    t.datetime "created_at", null: false
-    t.datetime "updated_at", null: false
-    t.boolean "hidden", default: false, null: false
-    t.bigint "account_id"
-    t.index ["account_id", "activity_type", "id"], name: "index_stream_entries_on_account_id_and_activity_type_and_id"
-    t.index ["activity_id", "activity_type"], name: "index_stream_entries_on_activity_id_and_activity_type"
-  end
-
-  create_table "subscriptions", force: :cascade do |t|
-    t.string "callback_url", default: "", null: false
-    t.string "secret"
-    t.datetime "expires_at"
-    t.boolean "confirmed", default: false, null: false
-    t.datetime "created_at", null: false
-    t.datetime "updated_at", null: false
-    t.datetime "last_successful_delivery_at"
-    t.string "domain"
-    t.bigint "account_id", null: false
-    t.index ["account_id", "callback_url"], name: "index_subscriptions_on_account_id_and_callback_url", unique: true
-  end
-
   create_table "tags", force: :cascade do |t|
     t.string "name", default: "", null: false
     t.datetime "created_at", null: false
@@ -827,6 +897,9 @@ ActiveRecord::Schema.define(version: 2019_10_07_013357) do
   add_foreign_key "account_pins", "accounts", column: "target_account_id", on_delete: :cascade
   add_foreign_key "account_pins", "accounts", on_delete: :cascade
   add_foreign_key "account_stats", "accounts", on_delete: :cascade
+  add_foreign_key "account_subscribes", "accounts", column: "target_account_id", on_delete: :cascade
+  add_foreign_key "account_subscribes", "accounts", on_delete: :cascade
+  add_foreign_key "account_subscribes", "lists", on_delete: :cascade
   add_foreign_key "account_tag_stats", "tags", on_delete: :cascade
   add_foreign_key "account_warnings", "accounts", column: "target_account_id", on_delete: :cascade
   add_foreign_key "account_warnings", "accounts", on_delete: :nullify
@@ -835,20 +908,32 @@ ActiveRecord::Schema.define(version: 2019_10_07_013357) do
   add_foreign_key "backups", "users", on_delete: :nullify
   add_foreign_key "blocks", "accounts", column: "target_account_id", name: "fk_9571bfabc1", on_delete: :cascade
   add_foreign_key "blocks", "accounts", name: "fk_4269e03e65", on_delete: :cascade
+  add_foreign_key "bookmarks", "accounts", on_delete: :cascade
+  add_foreign_key "bookmarks", "statuses", on_delete: :cascade
   add_foreign_key "conversation_mutes", "accounts", name: "fk_225b4212bb", on_delete: :cascade
   add_foreign_key "conversation_mutes", "conversations", on_delete: :cascade
   add_foreign_key "custom_filters", "accounts", on_delete: :cascade
+  add_foreign_key "domain_subscribes", "accounts", on_delete: :cascade
+  add_foreign_key "domain_subscribes", "lists", on_delete: :cascade
+  add_foreign_key "domains", "accounts", column: "contact_account_id"
+  add_foreign_key "favourite_tags", "accounts", on_delete: :cascade
+  add_foreign_key "favourite_tags", "tags", on_delete: :cascade
   add_foreign_key "favourites", "accounts", name: "fk_5eb6c2b873", on_delete: :cascade
   add_foreign_key "favourites", "statuses", name: "fk_b0e856845e", on_delete: :cascade
   add_foreign_key "featured_tags", "accounts", on_delete: :cascade
   add_foreign_key "featured_tags", "tags", on_delete: :cascade
   add_foreign_key "follow_requests", "accounts", column: "target_account_id", name: "fk_9291ec025d", on_delete: :cascade
   add_foreign_key "follow_requests", "accounts", name: "fk_76d644b0e7", on_delete: :cascade
+  add_foreign_key "follow_tags", "accounts", on_delete: :cascade
+  add_foreign_key "follow_tags", "lists", on_delete: :cascade
+  add_foreign_key "follow_tags", "tags", on_delete: :cascade
   add_foreign_key "follows", "accounts", column: "target_account_id", name: "fk_745ca29eac", on_delete: :cascade
   add_foreign_key "follows", "accounts", name: "fk_32ed1b5560", on_delete: :cascade
   add_foreign_key "identities", "users", name: "fk_bea040f377", on_delete: :cascade
   add_foreign_key "imports", "accounts", name: "fk_6db1b6e408", on_delete: :cascade
   add_foreign_key "invites", "users", on_delete: :cascade
+  add_foreign_key "keyword_subscribes", "accounts", on_delete: :cascade
+  add_foreign_key "keyword_subscribes", "lists", on_delete: :cascade
   add_foreign_key "list_accounts", "accounts", on_delete: :cascade
   add_foreign_key "list_accounts", "follows", on_delete: :cascade
   add_foreign_key "list_accounts", "lists", on_delete: :cascade
diff --git a/lib/cli.rb b/lib/cli.rb
index fbdf49fc34a6766640382a7c10521337cb229fbd..19cc5d6b5191229e3ed79aebd78455860d065b88 100644
--- a/lib/cli.rb
+++ b/lib/cli.rb
@@ -96,6 +96,8 @@ module Mastodon
 
       prompt.warn('Do NOT interrupt this process...')
 
+      Setting.registrations_mode = 'none'
+
       Account.local.without_suspended.find_each do |account|
         payload = ActiveModelSerializers::SerializableResource.new(
           account,
diff --git a/lib/mastodon/cache_cli.rb b/lib/mastodon/cache_cli.rb
index 803404c34f2599be54e8f23b2364bffac69e2877..3613bb1511b628d1c234a06132f8be6f46515e46 100644
--- a/lib/mastodon/cache_cli.rb
+++ b/lib/mastodon/cache_cli.rb
@@ -32,10 +32,11 @@ module Mastodon
       case type
       when 'accounts'
         processed, = parallelize_with_progress(Account.local.includes(:account_stat)) do |account|
-          account_stat                 = account.account_stat
-          account_stat.following_count = account.active_relationships.count
-          account_stat.followers_count = account.passive_relationships.count
-          account_stat.statuses_count  = account.statuses.where.not(visibility: :direct).count
+          account_stat                   = account.account_stat
+          account_stat.following_count   = account.active_relationships.count
+          account_stat.followers_count   = account.passive_relationships.count
+          account_stat.subscribing_count = account.active_subscribes.count
+          account_stat.statuses_count    = account.statuses.where.not(visibility: :direct).count
 
           account_stat.save if account_stat.changed?
         end
diff --git a/lib/mastodon/emoji_cli.rb b/lib/mastodon/emoji_cli.rb
index beac1b1fd22606f3821f71c98d8ad78bb5e2fc65..dbaf120182f2f004a77bee90c1e76e317dcd82d9 100644
--- a/lib/mastodon/emoji_cli.rb
+++ b/lib/mastodon/emoji_cli.rb
@@ -72,9 +72,16 @@ module Mastodon
       say("Imported #{imported}, skipped #{skipped}, failed to import #{failed}", color(imported, skipped, failed))
     end
 
+    option :remote_only, type: :boolean
     desc 'purge', 'Remove all custom emoji'
+    long_desc <<-LONG_DESC
+      Removes all custom emoji.
+
+      With the --remote-only option, only remote emoji will be deleted.
+    LONG_DESC
     def purge
-      CustomEmoji.in_batches.destroy_all
+      scope = options[:remote_only] ? CustomEmoji.remote : CustomEmoji
+      scope.in_batches.destroy_all
       say('OK', :green)
     end
 
diff --git a/lib/mastodon/media_cli.rb b/lib/mastodon/media_cli.rb
index e48175134c78783a0eb41423e11e9e43697c6773..d842b986ff5ece5e6e4c71be6ef625420d45db8b 100644
--- a/lib/mastodon/media_cli.rb
+++ b/lib/mastodon/media_cli.rb
@@ -44,6 +44,105 @@ module Mastodon
       say("Removed #{processed} media attachments (approx. #{number_to_human_size(aggregate)}) #{dry_run}", :green, true)
     end
 
+    option :start_after
+    option :dry_run, type: :boolean, default: false
+    desc 'remove-orphans', 'Scan storage and check for files that do not belong to existing media attachments'
+    long_desc <<~LONG_DESC
+      Scans file storage for files that do not belong to existing media attachments. Because this operation
+      requires iterating over every single file individually, it will be slow.
+
+      Please mind that some storage providers charge for the necessary API requests to list objects.
+    LONG_DESC
+    def remove_orphans
+      progress        = create_progress_bar(nil)
+      reclaimed_bytes = 0
+      removed         = 0
+      dry_run         = options[:dry_run] ? ' (DRY RUN)' : ''
+
+      case Paperclip::Attachment.default_options[:storage]
+      when :s3
+        paperclip_instance = MediaAttachment.new.file
+        s3_interface       = paperclip_instance.s3_interface
+        bucket             = s3_interface.bucket(Paperclip::Attachment.default_options[:s3_credentials][:bucket])
+        last_key           = options[:start_after]
+
+        loop do
+          objects = begin
+            begin
+              bucket.objects(start_after: last_key, prefix: 'media_attachments/files/').limit(1000).map { |x| x }
+            rescue => e
+              progress.log(pastel.red("Error fetching list of files: #{e}"))
+              progress.log("If you want to continue from this point, add --start-after=#{last_key} to your command") if last_key
+              break
+            end
+          end
+
+          break if objects.empty?
+
+          last_key        = objects.last.key
+          attachments_map = MediaAttachment.where(id: objects.map { |object| object.key.split('/')[2..-2].join.to_i }).each_with_object({}) { |attachment, map| map[attachment.id] = attachment }
+
+          objects.each do |object|
+            attachment_id = object.key.split('/')[2..-2].join.to_i
+            filename      = object.key.split('/').last
+
+            progress.increment
+
+            next unless attachments_map[attachment_id].nil? || !attachments_map[attachment_id].variant?(filename)
+
+            begin
+              object.delete unless options[:dry_run]
+
+              reclaimed_bytes += object.size
+              removed += 1
+
+              progress.log("Found and removed orphan: #{object.key}")
+            rescue => e
+              progress.log(pastel.red("Error processing #{object.key}: #{e}"))
+            end
+          end
+        end
+      when :fog
+        say('The fog storage driver is not supported for this operation at this time', :red)
+        exit(1)
+      when :filesystem
+        require 'find'
+
+        root_path = ENV.fetch('RAILS_ROOT_PATH', File.join(':rails_root', 'public', 'system')).gsub(':rails_root', Rails.root.to_s)
+
+        Find.find(File.join(root_path, 'media_attachments', 'files')) do |path|
+          next if File.directory?(path)
+
+          key           = path.gsub("#{root_path}#{File::SEPARATOR}", '')
+          attachment_id = key.split(File::SEPARATOR)[2..-2].join.to_i
+          filename      = key.split(File::SEPARATOR).last
+          attachment    = MediaAttachment.find_by(id: attachment_id)
+
+          progress.increment
+
+          next unless attachment.nil? || !attachment.variant?(filename)
+
+          begin
+            size = File.size(path)
+
+            File.delete(path) unless options[:dry_run]
+
+            reclaimed_bytes += size
+            removed += 1
+
+            progress.log("Found and removed orphan: #{key}")
+          rescue => e
+            progress.log(pastel.red("Error processing #{key}: #{e}"))
+          end
+        end
+      end
+
+      progress.total = progress.progress
+      progress.finish
+
+      say("Removed #{removed} orphans (approx. #{number_to_human_size(reclaimed_bytes)})#{dry_run}", :green, true)
+    end
+
     option :account, type: :string
     option :domain, type: :string
     option :status, type: :numeric
@@ -113,5 +212,27 @@ module Mastodon
       say("Imports:\t#{number_to_human_size(Import.sum(:data_file_size))}")
       say("Settings:\t#{number_to_human_size(SiteUpload.sum(:file_file_size))}")
     end
+
+    desc 'lookup', 'Lookup where media is displayed by passing a media URL'
+    def lookup
+      prompt = TTY::Prompt.new
+
+      url = prompt.ask('Please enter a URL to the media to lookup:', required: true)
+
+      attachment_id = url
+                      .split('/')[0..-2]
+                      .grep(/\A\d+\z/)
+                      .join('')
+
+      if url.split('/')[0..-2].include? 'media_attachments'
+        model = MediaAttachment.find(attachment_id).status
+        prompt.say(ActivityPub::TagManager.instance.url_for(model))
+      elsif url.split('/')[0..-2].include? 'accounts'
+        model = Account.find(attachment_id)
+        prompt.say(ActivityPub::TagManager.instance.url_for(model))
+      else
+        prompt.say('Not found')
+      end
+    end
   end
 end
diff --git a/lib/mastodon/statuses_cli.rb b/lib/mastodon/statuses_cli.rb
index 7f2fbfa85d438f560c36ca282798de4ca9236234..ecaac17e3ab245ffff4d2dcd291268c6b4f2e920 100644
--- a/lib/mastodon/statuses_cli.rb
+++ b/lib/mastodon/statuses_cli.rb
@@ -13,6 +13,7 @@ module Mastodon
     end
 
     option :days, type: :numeric, default: 90
+    option :clean_followed, type: :boolean
     desc 'remove', 'Remove unreferenced statuses'
     long_desc <<~LONG_DESC
       Remove statuses that are not referenced by local user activity, such as
@@ -20,7 +21,7 @@ module Mastodon
       by someone locally but no longer are.
 
       This is a computationally heavy procedure that creates extra database
-      indicides before commencing, and removes them afterward.
+      indices before commencing, and removes them afterward.
     LONG_DESC
     def remove
       say('Creating temporary database indices...')
@@ -34,17 +35,28 @@ module Mastodon
 
       say('Beginning removal... This might take a while...')
 
-      Status.remote
-            .where('id < ?', max_id)
-            .where(reblog_of_id: nil)                                                                                                                                                                                              # Skip reblogs
-            .where(in_reply_to_id: nil)                                                                                                                                                                                            # Skip replies
-            .where('id NOT IN (SELECT status_pins.status_id FROM status_pins WHERE statuses.id = status_id)')                                                                                                                      # Skip statuses that are pinned on profiles
-            .where('id NOT IN (SELECT mentions.status_id FROM mentions WHERE statuses.id = mentions.status_id AND mentions.account_id IN (SELECT accounts.id FROM accounts WHERE domain IS NULL))')                                # Skip statuses that mention local accounts
-            .where('id NOT IN (SELECT statuses1.in_reply_to_id FROM statuses AS statuses1 WHERE statuses.id = statuses1.in_reply_to_id)')                                                                                          # Skip statuses favourited by local accounts
-            .where('id NOT IN (SELECT statuses1.reblog_of_id FROM statuses AS statuses1 WHERE statuses.id = statuses1.reblog_of_id AND statuses1.account_id IN (SELECT accounts.id FROM accounts WHERE accounts.domain IS NULL))') # Skip statuses reblogged by local accounts
-            .where('account_id NOT IN (SELECT follows.target_account_id FROM follows WHERE statuses.account_id = follows.target_account_id)')                                                                                      # Skip accounts followed by local accounts
-            .in_batches
-            .delete_all
+      scope = Status.remote.where('id < ?', max_id)
+      # Skip reblogs of local statuses
+      scope = scope.where('reblog_of_id NOT IN (SELECT statuses1.id FROM statuses AS statuses1 WHERE statuses1.id = statuses.reblog_of_id AND (statuses1.uri IS NULL OR statuses1.local))')
+      # Skip statuses that are pinned on profiles
+      scope = scope.where('id NOT IN (SELECT status_pins.status_id FROM status_pins WHERE statuses.id = status_id)')
+      # Skip statuses that mention local accounts
+      scope = scope.where('id NOT IN (SELECT mentions.status_id FROM mentions WHERE statuses.id = mentions.status_id AND mentions.account_id IN (SELECT accounts.id FROM accounts WHERE domain IS NULL))')
+      # Skip statuses which have replies
+      scope = scope.where('id NOT IN (SELECT statuses1.in_reply_to_id FROM statuses AS statuses1 WHERE statuses.id = statuses1.in_reply_to_id)')
+      # Skip statuses reblogged by local accounts or with recent boosts
+      scope = scope.where('id NOT IN (SELECT statuses1.reblog_of_id FROM statuses AS statuses1 WHERE statuses.id = statuses1.reblog_of_id AND (statuses1.uri IS NULL OR statuses1.local OR statuses1.id >= ?))', max_id)
+      # Skip statuses favourited by local users
+      scope = scope.where('id NOT IN (SELECT favourites.status_id FROM favourites WHERE statuses.id = favourites.status_id AND favourites.account_id IN (SELECT accounts.id FROM accounts WHERE domain IS NULL))')
+      # Skip statuses bookmarked by local users
+      scope = scope.where('id NOT IN (SELECT bookmarks.status_id FROM bookmarks WHERE statuses.id = bookmarks.status_id AND bookmarks.account_id IN (SELECT accounts.id FROM accounts WHERE domain IS NULL))')
+
+      unless options[:clean_followed]
+        # Skip accounts followed by local accounts
+        scope = scope.where('account_id NOT IN (SELECT follows.target_account_id FROM follows WHERE statuses.account_id = follows.target_account_id)')
+      end
+
+      scope.in_batches.delete_all
 
       say('Beginning removal of now-orphaned media attachments to free up disk space...')
 
diff --git a/lib/mastodon/version.rb b/lib/mastodon/version.rb
index f3ead6d8d96d6a2e8d4b9fe902b03cee74f0798b..eba1db6e5935efbd1d8a6905f8be02a66ad294ee 100644
--- a/lib/mastodon/version.rb
+++ b/lib/mastodon/version.rb
@@ -56,5 +56,9 @@ module Mastodon
     def user_agent
       @user_agent ||= "#{HTTP::Request::USER_AGENT} (Mastodon/#{Version}; +http#{Rails.configuration.x.use_https ? 's' : ''}://#{Rails.configuration.x.web_domain}/)"
     end
+
+    def pseudo_user_agent
+      @pseudo_user_agent ||= 'Misskey/11.37.1 (https://misskey.noellabo.jp)'
+    end
   end
 end
diff --git a/lib/paperclip/blurhash_transcoder.rb b/lib/paperclip/blurhash_transcoder.rb
index 08925a6dde01fd77fb27526ee2ae4278b88860fe..5c33c98b0c70fe9acb190098c6899b1a45ac21ee 100644
--- a/lib/paperclip/blurhash_transcoder.rb
+++ b/lib/paperclip/blurhash_transcoder.rb
@@ -8,7 +8,7 @@ module Paperclip
       pixels   = convert(':source RGB:-', source: File.expand_path(@file.path)).unpack('C*')
       geometry = options.fetch(:file_geometry_parser).from_file(@file)
 
-      attachment.instance.blurhash = Blurhash.encode(geometry.width, geometry.height, pixels, options[:blurhash] || {})
+      attachment.instance.blurhash = Blurhash.encode(geometry.width, geometry.height, pixels, **(options[:blurhash] || {}))
 
       @file
     end
diff --git a/lib/paperclip/img_converter.rb b/lib/paperclip/img_converter.rb
new file mode 100644
index 0000000000000000000000000000000000000000..3f4e949359dd7b2565551713dfd1641527c699b1
--- /dev/null
+++ b/lib/paperclip/img_converter.rb
@@ -0,0 +1,34 @@
+# frozen_string_literal: true
+
+module Paperclip
+  class ImgConverter < Paperclip::Processor
+    def initialize(file, options = {}, attachment = nil)
+      super
+
+      @current_format = File.extname(@file.path)
+      @basename       = File.basename(@file.path, @current_format)
+    end
+
+    def make
+      dst_format, dst_content_type = opaque? ? ['jpg', 'image/jpeg'] : ['png', 'image/png']
+      dst_name = "#{@basename}.#{dst_format}"
+
+      attachment.instance.file_file_name = dst_name
+      attachment.instance.file_content_type = dst_content_type
+
+      options[:format] = dst_format
+      options[:content_type] = dst_content_type
+
+      dst = Paperclip::TempfileFactory.new.generate(dst_name)
+      convert(':src :dst', src: File.expand_path(@file.path), dst: File.expand_path(dst.path))
+
+      dst
+    end
+
+    private
+
+    def opaque?
+      identify('-format "%[opaque]" :src', src: File.expand_path(@file.path)).strip.downcase == 'true'
+    end
+  end
+end
diff --git a/lib/paperclip/lazy_thumbnail.rb b/lib/paperclip/lazy_thumbnail.rb
index 542c17fb20efdfab33f4f3402fa38927c39ac634..10b14860c4a8fee031c9b1e2ebb75d107c3d22bb 100644
--- a/lib/paperclip/lazy_thumbnail.rb
+++ b/lib/paperclip/lazy_thumbnail.rb
@@ -9,8 +9,8 @@ module Paperclip
         min_side = [@current_geometry.width, @current_geometry.height].min.to_i
         options[:geometry] = "#{min_side}x#{min_side}#" if @target_geometry.square? && min_side < @target_geometry.width
       elsif options[:pixels]
-        width  = Math.sqrt(options[:pixels] * (@current_geometry.width.to_f / @current_geometry.height.to_f)).round.to_i
-        height = Math.sqrt(options[:pixels] * (@current_geometry.height.to_f / @current_geometry.width.to_f)).round.to_i
+        width  = Math.sqrt(options[:pixels] * (@current_geometry.width.to_f / @current_geometry.height)).round.to_i
+        height = Math.sqrt(options[:pixels] * (@current_geometry.height.to_f / @current_geometry.width)).round.to_i
         options[:geometry] = "#{width}x#{height}>"
       end
 
diff --git a/package.json b/package.json
index 40066a9a6de3a20803db970e716541402e9a53c4..eca3d0d3326ff2780367b3c4cf83eff4b75ae881 100644
--- a/package.json
+++ b/package.json
@@ -2,7 +2,7 @@
   "name": "@tootsuite/mastodon",
   "license": "AGPL-3.0-or-later",
   "engines": {
-    "node": ">=8.12 <13"
+    "node": ">=10.13 <13"
   },
   "scripts": {
     "postversion": "git push --tags",
@@ -12,7 +12,7 @@
     "start": "node ./streaming/index.js",
     "test": "${npm_execpath} run test:lint:js && ${npm_execpath} run test:jest",
     "test:lint": "${npm_execpath} run test:lint:js && ${npm_execpath} run test:lint:sass",
-    "test:lint:js": "eslint --ext=js .",
+    "test:lint:js": "eslint --ext=js . --cache",
     "test:lint:sass": "sass-lint -v",
     "test:jest": "cross-env NODE_ENV=test jest --coverage"
   },
@@ -59,45 +59,43 @@
   },
   "private": true,
   "dependencies": {
-    "@babel/core": "^7.4.5",
-    "@babel/plugin-proposal-class-properties": "^7.5.5",
-    "@babel/plugin-proposal-decorators": "^7.4.4",
-    "@babel/plugin-proposal-object-rest-spread": "^7.4.4",
-    "@babel/plugin-syntax-dynamic-import": "^7.2.0",
-    "@babel/plugin-transform-react-inline-elements": "^7.2.0",
-    "@babel/plugin-transform-react-jsx-self": "^7.2.0",
-    "@babel/plugin-transform-react-jsx-source": "^7.5.0",
-    "@babel/plugin-transform-runtime": "^7.5.5",
-    "@babel/preset-env": "^7.6.0",
-    "@babel/preset-react": "^7.0.0",
-    "@babel/runtime": "^7.5.4",
-    "@clusterws/cws": "^0.15.0",
-    "array-includes": "^3.0.3",
-    "autoprefixer": "^9.6.1",
-    "axios": "^0.19.0",
+    "@babel/core": "^7.8.3",
+    "@babel/plugin-proposal-class-properties": "^7.8.3",
+    "@babel/plugin-proposal-decorators": "^7.8.3",
+    "@babel/plugin-transform-react-inline-elements": "^7.8.0",
+    "@babel/plugin-transform-runtime": "^7.7.6",
+    "@babel/preset-env": "^7.8.3",
+    "@babel/preset-react": "^7.8.3",
+    "@babel/runtime": "^7.8.3",
+    "@gamestdio/websocket": "^0.3.2",
+    "@clusterws/cws": "^0.17.3",
+    "array-includes": "^3.1.1",
+    "arrow-key-navigation": "^1.1.0",
+    "autoprefixer": "^9.7.4",
+    "axios": "^0.19.1",
     "babel-loader": "^8.0.6",
     "babel-plugin-lodash": "^3.3.4",
-    "babel-plugin-preval": "^3.0.1",
-    "babel-plugin-react-intl": "^3.1.3",
+    "babel-plugin-preval": "^4.0.0",
+    "babel-plugin-react-intl": "^3.4.1",
     "babel-plugin-transform-react-remove-prop-types": "^0.4.24",
     "babel-runtime": "^6.26.0",
-    "blurhash": "^1.0.0",
+    "blurhash": "^1.1.3",
     "classnames": "^2.2.5",
-    "compression-webpack-plugin": "^3.0.0",
-    "copy-webpack-plugin": "^5.0.4",
-    "cross-env": "^5.1.4",
-    "css-loader": "^3.2.0",
+    "compression-webpack-plugin": "^3.1.0",
+    "copy-webpack-plugin": "^5.1.1",
+    "cross-env": "^6.0.3",
+    "css-loader": "^3.4.2",
     "cssnano": "^4.1.10",
     "detect-passive-events": "^1.0.2",
-    "dotenv": "^8.0.0",
+    "dotenv": "^8.2.0",
     "emoji-mart": "Gargron/emoji-mart#build",
-    "es6-symbol": "^3.1.2",
+    "es6-symbol": "^3.1.3",
     "escape-html": "^1.0.3",
     "exif-js": "^2.3.0",
     "express": "^4.17.1",
-    "file-loader": "^4.2.0",
+    "file-loader": "^5.0.2",
     "font-awesome": "^4.7.0",
-    "glob": "^7.1.1",
+    "glob": "^7.1.6",
     "history": "^4.10.1",
     "http-link-header": "^1.0.2",
     "immutable": "^3.8.2",
@@ -106,17 +104,17 @@
     "intl": "^1.2.5",
     "intl-messageformat": "^2.2.0",
     "intl-relativeformat": "^6.4.3",
-    "is-nan": "^1.2.1",
+    "is-nan": "^1.3.0",
     "js-yaml": "^3.13.1",
     "lodash": "^4.17.14",
     "mark-loader": "^0.1.6",
     "marky": "^1.2.1",
-    "mini-css-extract-plugin": "^0.8.0",
+    "mini-css-extract-plugin": "^0.9.0",
     "mkdirp": "^0.5.1",
     "npmlog": "^4.1.2",
     "object-assign": "^4.1.1",
     "object-fit-images": "^3.2.3",
-    "object.values": "^1.1.0",
+    "object.values": "^1.1.1",
     "offline-plugin": "^5.0.7",
     "path-complete-extname": "^1.0.0",
     "pg": "^6.4.0",
@@ -124,67 +122,67 @@
     "postcss-object-fit-images": "^1.1.2",
     "prop-types": "^15.5.10",
     "punycode": "^2.1.0",
-    "rails-ujs": "^5.2.3",
-    "react": "^16.8.6",
-    "react-dom": "^16.8.6",
+    "rails-ujs": "^5.2.4",
+    "react": "^16.12.0",
+    "react-dom": "^16.12.0",
     "react-hotkeys": "^1.1.4",
     "react-immutable-proptypes": "^2.1.0",
     "react-immutable-pure-component": "^1.1.1",
     "react-intl": "^2.9.0",
     "react-masonry-infinite": "^1.2.2",
     "react-motion": "^0.5.2",
-    "react-notification": "^6.8.4",
-    "react-overlays": "^0.8.3",
-    "react-redux": "^7.1.1",
+    "react-notification": "^6.8.5",
+    "react-overlays": "^0.9.1",
+    "react-redux": "^7.1.3",
     "react-redux-loading-bar": "^4.0.8",
     "react-router-dom": "^4.1.1",
     "react-router-scroll-4": "^1.0.0-beta.1",
-    "react-select": "^2.4.4",
+    "react-select": "^3.0.8",
     "react-sparklines": "^1.7.0",
-    "react-swipeable-views": "^0.13.3",
-    "react-textarea-autosize": "^7.1.0",
-    "react-toggle": "^4.0.1",
+    "react-swipeable-views": "^0.13.4",
+    "react-textarea-autosize": "^7.1.2",
+    "react-toggle": "^4.1.1",
     "redis": "^2.7.1",
-    "redux": "^4.0.4",
+    "redux": "^4.0.5",
     "redux-immutable": "^4.0.0",
     "redux-thunk": "^2.2.0",
     "rellax": "^1.10.0",
     "requestidlecallback": "^0.3.0",
     "reselect": "^4.0.0",
     "rimraf": "^3.0.0",
-    "sass": "^1.22.12",
-    "sass-loader": "^7.0.3",
+    "sass": "^1.24.2",
+    "sass-loader": "^8.0.2",
     "stringz": "^2.0.0",
     "substring-trie": "^1.0.2",
-    "terser-webpack-plugin": "^1.4.1",
+    "terser-webpack-plugin": "^2.3.2",
     "tesseract.js": "^2.0.0-alpha.16",
     "throng": "^4.0.0",
     "tiny-queue": "^0.2.1",
-    "uuid": "^3.1.0",
-    "wavesurfer.js": "^3.0.0",
-    "webpack": "^4.35.3",
+    "uuid": "^3.3.3",
+    "wavesurfer.js": "^3.3.1",
+    "webpack": "^4.41.5",
     "webpack-assets-manifest": "^3.1.1",
-    "webpack-bundle-analyzer": "^3.3.2",
-    "webpack-cli": "^3.3.7",
+    "webpack-bundle-analyzer": "^3.6.0",
+    "webpack-cli": "^3.3.10",
     "webpack-merge": "^4.2.1",
-    "websocket.js": "^0.1.12"
+    "wicg-inert": "^3.0.0"
   },
   "devDependencies": {
     "babel-eslint": "^10.0.3",
     "babel-jest": "^24.9.0",
-    "enzyme": "^3.10.0",
-    "enzyme-adapter-react-16": "^1.14.0",
-    "eslint": "^6.5.0",
-    "eslint-plugin-import": "~2.18.2",
+    "enzyme": "^3.11.0",
+    "enzyme-adapter-react-16": "^1.15.2",
+    "eslint": "^6.8.0",
+    "eslint-plugin-import": "~2.20.0",
     "eslint-plugin-jsx-a11y": "~6.2.3",
     "eslint-plugin-promise": "~4.2.1",
-    "eslint-plugin-react": "~7.14.3",
+    "eslint-plugin-react": "~7.17.0",
     "jest": "^24.9.0",
     "raf": "^3.4.1",
     "react-intl-translations-manager": "^5.0.3",
-    "react-test-renderer": "^16.8.6",
+    "react-test-renderer": "^16.12.0",
     "sass-lint": "^1.13.1",
-    "webpack-dev-server": "^3.8.0",
-    "yargs": "^13.3.0"
+    "webpack-dev-server": "^3.10.1",
+    "yargs": "^15.1.0"
   }
 }
diff --git a/public/emoji/1f1e8-1f1f3.svg b/public/emoji/1f1e8-1f1f3.svg
index c6fe22390a0108a54b500096ee37be948a517d4b..c10116d0a2821663b17d8e44d8dcc39018eddf52 100644
--- a/public/emoji/1f1e8-1f1f3.svg
+++ b/public/emoji/1f1e8-1f1f3.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#DE2910" d="M36 27c0 2.209-1.791 4-4 4H4c-2.209 0-4-1.791-4-4V9c0-2.209 1.791-4 4-4h28c2.209 0 4 1.791 4 4v18z"/><path fill="#FFDE02" d="M7 10.951l.929 2.671 2.826.058-2.253 1.708.819 2.706L7 16.479l-2.321 1.615.819-2.706-2.253-1.708 2.826-.058zm6-3.423l.34.688.759.11-.549.536.129.756L13 9.261l-.679.357.13-.756-.55-.536.76-.11zm2 4l.34.688.759.11-.549.536.129.756-.679-.357-.679.357.13-.756-.55-.536.76-.11zm0 4l.34.688.759.11-.549.536.129.756-.679-.357-.679.357.13-.756-.55-.536.76-.11zm-2 3.999l.34.689.759.11-.549.535.129.757-.679-.356-.679.356.13-.757-.55-.535.76-.11z"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#DE2910" d="M36 27c0 2.209-1.791 4-4 4H4c-2.209 0-4-1.791-4-4V9c0-2.209 1.791-4 4-4h28c2.209 0 4 1.791 4 4v18z"/><path fill="#FFDE02" d="M11.136 8.977l.736.356.589-.566-.111.81.72.386-.804.144-.144.804-.386-.72-.81.111.566-.589zm4.665 2.941l-.356.735.566.59-.809-.112-.386.721-.144-.805-.805-.144.721-.386-.112-.809.59.566zm-.957 3.779l.268.772.817.017-.651.493.237.783-.671-.467-.671.467.236-.783-.651-.493.817-.017zm-3.708 3.28l.736.356.589-.566-.111.81.72.386-.804.144-.144.804-.386-.72-.81.111.566-.589zM7 10.951l.929 2.671 2.826.058-2.253 1.708.819 2.706L7 16.479l-2.321 1.615.819-2.706-2.253-1.708 2.826-.058z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f1ed-1f1f7.svg b/public/emoji/1f1ed-1f1f7.svg
index 707976330196d45a2bcf1d565fb8baba50c057fd..7b8740c958bcb36e76c6faff0fbb5c5a9fdf5b1c 100644
--- a/public/emoji/1f1ed-1f1f7.svg
+++ b/public/emoji/1f1ed-1f1f7.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#171796" d="M0 27c0 2.209 1.791 4 4 4h28c2.209 0 4-1.791 4-4v-4H0v4z"/><path fill="#EEE" d="M0 13h36v10H0z"/><path fill="#D52B1E" d="M32 5H4C1.791 5 0 6.791 0 9v4h14v7c0 2.209 1.791 4 4 4s4-1.791 4-4v-7h14V9c0-2.209-1.791-4-4-4z"/><path fill="#EEE" d="M15 13h2v2h-2zm2 2h2v2h-2zm2-2h2v2h-2zm0 4h2v2h-2zm-4 0h2v2h-2zm2 2h2v2h-2zm0 3.816V21h-1.816c.301.849.968 1.515 1.816 1.816zm2 0c.849-.302 1.515-.968 1.816-1.816H19v1.816z"/><path fill="#0193DD" d="M18 11.902c.287 0 .57.018.852.043l.159-1.843-1.011-.9-1.011.9.159 1.843c.282-.025.564-.043.852-.043zm4.17.931l.781-1.68-.641-1.191-1.26.499-.481 1.79c.556.148 1.089.343 1.601.582zm-6.742-.582l-.481-1.79-1.257-.5-.642 1.191.781 1.68c.511-.238 1.045-.432 1.599-.581z"/><path fill="#171796" d="M22.368 9.805l-1.292.511-.859-1.087-1.182.728L18 9.034l-1.037.923-1.181-.729-.861 1.089-1.289-.513-.725 1.345.86 1.85.113-.053c.504-.235 1.036-.428 1.579-.574l.026-.007c.552-.147 1.101-.244 1.632-.292l.041-.003c.456-.039 1.226-.039 1.682 0l.037.003c.533.047 1.085.146 1.64.293l.021.006c.541.145 1.072.339 1.579.575l.113.053.86-1.85-.722-1.345zm-8.478 2.862l-.703-1.51.56-1.038 1.095.436.433 1.61c-.475.132-.94.301-1.385.502zm3.372-.857l-.143-1.657.881-.784.881.784-.143 1.657c-.213-.017-.471-.033-.738-.033s-.524.016-.738.033zm4.847.857c-.448-.201-.913-.371-1.386-.504l.432-1.609 1.098-.435.559 1.038-.703 1.51z"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#EEE" d="M0 12.9h36v10.2H0z"/><path fill="#171796" d="M36 27c0 2.209-1.791 4-4 4H4c-2.209 0-4-1.791-4-4v-4h36v4z"/><path fill="#D52B1E" d="M32 5H4C1.791 5 0 6.791 0 9v4h36V9c0-2.209-1.791-4-4-4z"/><path fill="#D52B1E" d="M11.409 7.436V18.97c0 3.64 2.951 6.591 6.591 6.591s6.591-2.951 6.591-6.591V7.436H11.409z"/><path d="M14.25 18h2.5v2.5h-2.5zm2.5 2.5h2.5V23h-2.5zm0-5h2.5V18h-2.5zm2.5 2.5h2.5v2.5h-2.5zm0-5h2.5v2.5h-2.5zm2.5 2.5h2.341V18H21.75zm-7.5-2.5h2.5v2.5h-2.5zm7.5 10h.805c.626-.707 1.089-1.559 1.334-2.5H21.75V23zm-2.5 0v1.931c.929-.195 1.778-.605 2.5-1.171V23h-2.5zm-5 0v-2.5h-2.139c.245.941.707 1.793 1.334 2.5h.805zm-2.341-7.5h2.341V18h-2.341zM14.25 23v.76c.722.566 1.571.976 2.5 1.171V23h-2.5z" fill="#FFF"/><path fill="#171796" d="M24.757 8.141l-1.998.791-1.328-1.682-1.829 1.126L18 6.949l-1.603 1.428-1.826-1.128-1.331 1.684-1.995-.793-1.122 2.08 1.331 2.862.176-.082c.78-.363 1.603-.662 2.443-.888l.04-.011c.854-.227 1.702-.378 2.523-.451l.064-.006c.705-.06 1.896-.06 2.601 0l.058.005c.824.074 1.678.226 2.536.453l.033.009c.836.225 1.658.524 2.441.889l.175.082 1.331-2.861-1.118-2.08z"/><path fill="#0193DD" d="M16.638 8.681l.221 2.563c.33-.026.729-.051 1.141-.051.412 0 .811.025 1.141.051l.221-2.563L18 7.468l-1.362 1.213zm7.941-.053l-1.698.673-.668 2.489c.731.206 1.45.468 2.144.779l1.086-2.336-.864-1.605zm-13.157-.002l-.866 1.606 1.087 2.336c.69-.31 1.409-.572 2.144-.779l-.67-2.49-1.695-.673z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f301.svg b/public/emoji/1f301.svg
index 0f6781098bad92aae4f7c52fa177b23c85838b8d..d6298de42de9ce7cc8ae453cb7239be40d2383aa 100644
--- a/public/emoji/1f301.svg
+++ b/public/emoji/1f301.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#88C9F9" d="M32 0H4C1.791 0 0 1.791 0 4v22h36V4c0-2.209-1.791-4-4-4z"/><path fill="#66757F" d="M10 26V7l4-4h2l4 4v19zm23-15c0-1-1-1-1-1h-7s-1 0-1 1v15h9V11z"/><path fill="#292F33" d="M28 17c0-1-1-1-1-1h-8c-1 0-1 1-1 1v9h10v-9zm-17 2H6v-5s0-1-1-1H0v13h12v-6s0-1-1-1z"/><path d="M8 21h2v2H8zm8-12h2v2h-2zm0 4h2v2h-2zm-2 4h2v2h-2zm10 1h2v2h-2zm5-6h2v2h-2zm0 4h2v2h-2z" fill="#FFCC4D"/><path fill="#E1E8ED" d="M34 20c-.344 0-.676.047-1 .113-1.677.344-3.045 1.52-3.652 3.085-.34-.567-.804-1.047-1.348-1.418-.714-.487-1.569-.78-2.5-.78-.763 0-1.47.207-2.099.542C22.773 20.611 21.707 20 20.5 20c-.986 0-1.868.415-2.5 1.073-.345.359-.619.788-.788 1.268-.528-.217-1.105-.341-1.712-.341-1.427 0-2.68.677-3.5 1.715-.19.241-.365.495-.504.771C10.892 24.185 10.221 24 9.5 24c-1.058 0-2.013.387-2.78 1-.09.072-.189.134-.274.213-.059-.074-.125-.143-.189-.213-.589-.646-1.369-1.109-2.257-1.288-.263-.053-.533-.087-.812-.087-1.284 0-2.419.591-3.188 1.501V32h36V20.422c-.613-.268-1.288-.422-2-.422z"/><path fill="#CCD6DD" d="M36 27.117c-1.223-2.039-3.449-3.408-6-3.408-2.926 0-5.429 1.796-6.475 4.344C23.35 28.034 23.18 28 23 28c-.702 0-1.369.148-1.976.409C20.291 27.554 19.215 27 18 27c-2.209 0-4 1.791-4 4 0 .05.013.097.015.146C13.689 31.06 13.353 31 13 31c-.876 0-1.679.289-2.338.767C10.065 31.294 9.32 31 8.5 31c-.198 0-.388.026-.577.059C7.286 29.279 5.602 28 3.604 28 2.136 28 .843 28.7 0 29.771V32c0 2.209 1.791 4 4 4h28c2.209 0 4-1.791 4-4v-4.883z"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#88C9F9" d="M32 0H4C1.791 0 0 1.791 0 4v6h36V4c0-2.209-1.791-4-4-4z"/><path fill="#E1E8ED" d="M36 16.368V9.257c-.638-.394-1.383-.632-2.188-.632-1.325 0-2.491.627-3.259 1.588C29.75 9.466 28.683 9 27.5 9c-.721 0-1.392.185-1.996.486C24.763 8.018 23.257 7 21.5 7c-.607 0-1.184.124-1.712.342C19.308 5.981 18.024 5 16.5 5c-1.207 0-2.273.611-2.901 1.542C12.97 6.207 12.263 6 11.5 6c-1.641 0-3.062.887-3.848 2.198C6.928 6.33 5.125 5 3 5c-1.131 0-2.162.389-3 1.022v7.955C.838 14.611 24.5 18 24.5 18s10.862-1.238 11.5-1.632z"/><path fill="#CCD6DD" d="M36 14.771C35.157 13.7 33.864 13 32.396 13c-1.997 0-3.681 1.279-4.318 3.059-.19-.033-.38-.059-.578-.059-.82 0-1.565.294-2.162.767C24.679 16.289 23.876 16 23 16c-.353 0-.689.06-1.015.146.002-.049.015-.096.015-.146 0-2.209-1.791-4-4-4-1.215 0-2.291.554-3.024 1.409C14.369 13.148 13.702 13 13 13c-.18 0-.35.034-.525.053C11.429 10.505 8.926 8.709 6 8.709c-2.551 0-4.777 1.369-6 3.408v13.544l32.396-1.452s2.761-1.343 3.604-2.966v-6.472z"/><path fill="#E1E8ED" d="M36 30.499V20.422c-.613-.268-1.288-.422-2-.422-2.125 0-3.928 1.33-4.652 3.198C28.562 21.887 27.141 21 25.5 21c-.763 0-1.47.207-2.099.542C22.773 20.611 21.707 20 20.5 20c-1.524 0-2.808.981-3.288 2.342-.528-.218-1.105-.342-1.712-.342-1.757 0-3.263 1.018-4.004 2.486C10.892 24.185 10.221 24 9.5 24c-1.183 0-2.25.466-3.054 1.213-.768-.961-1.934-1.588-3.259-1.588-1.284 0-2.419.591-3.188 1.501v5.373H36z"/><path fill="#FE5011" d="M36 24.059C32.465 22.229 25.013 17.594 20 9c0 0 0-2-2-2s-2 2-2 2C10.987 17.594 3.535 22.229 0 24.059v2.068c1.044-.495 2.422-1.204 4-2.169V24h2v-1.341c1.284-.88 2.637-1.908 4-3.094V27h2v-9.292c1.384-1.375 2.74-2.923 4-4.655V24h4V13.054c1.26 1.731 2.616 3.28 4 4.655V26h2v-6.435c1.362 1.186 2.716 2.214 4 3.095V25h2v-1.042c1.578.965 2.956 1.674 4 2.169v-2.068z"/><path fill="#F5F8FA" d="M25 25c-.821 0-1.582.249-2.217.673-.664-1.839-2.5-3.07-4.534-2.863-1.883.192-3.348 1.56-3.777 3.298-.181-.012-.363-.019-.55 0-.773.079-1.448.427-1.965.93-.667-.387-1.452-.582-2.278-.498-.333.034-.644.123-.942.236-.003-.047.004-.093 0-.139-.212-2.083-2.073-3.599-4.155-3.387-1.145.117-2.107.742-2.716 1.619-.586-.186-1.217-.258-1.866-.197V32c0 .773.23 1.489.61 2.101C.715 34.098 29 31.209 29 29s-1.791-4-4-4z"/><path fill="#CCD6DD" d="M32 36c2.209 0 4-1.791 4-4v-7.608c-.91-.433-1.925-.683-3-.683-2.926 0-5.429 1.796-6.475 4.344C26.35 28.034 26.18 28 26 28c-.702 0-1.369.147-1.976.409C23.291 27.554 22.215 27 21 27c-2.209 0-4 1.791-4 4 0 .05.013.097.015.146C16.689 31.06 16.353 31 16 31c-.876 0-1.679.289-2.338.767C13.065 31.294 12.32 31 11.5 31c-.198 0-.388.026-.577.059C10.286 29.279 8.602 28 6.604 28c-1.987 0-3.665 1.266-4.31 3.03C2.195 31.022 2.101 31 2 31c-.732 0-1.41.211-2 .555V32c0 2.209 1.791 4 4 4h28z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f312.svg b/public/emoji/1f312.svg
index 03f0ad3a9a2df2bea7c2ee867eb86e60cd5e2b4d..d3bb1a7543b85237d0feb997188aa689871ca38c 100644
--- a/public/emoji/1f312.svg
+++ b/public/emoji/1f312.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><circle fill="#CCD6DD" cx="18" cy="18" r="18"/><path fill="#66757F" d="M0 18c0 9.941 8.059 18 18 18 .295 0 .58-.029.87-.043C24.761 33.393 29 26.332 29 18 29 9.669 24.761 2.607 18.87.044 18.58.03 18.295 0 18 0 8.059 0 0 8.059 0 18z"/><circle fill="#5B6876" cx="10.5" cy="8.5" r="3.5"/><circle fill="#5B6876" cx="20" cy="16" r="3"/><circle fill="#5B6876" cx="21.5" cy="27.5" r="3.5"/><circle fill="#5B6876" cx="21" cy="6" r="2"/><circle fill="#5B6876" cx="3" cy="18" r="1"/><circle fill="#B8C5CD" cx="30" cy="9" r="1"/><circle fill="#5B6876" cx="15" cy="31" r="1"/><circle fill="#B8C5CD" cx="32" cy="19" r="2"/><circle fill="#5B6876" cx="10" cy="23" r="2"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><circle fill="#FFD983" cx="18" cy="18" r="18"/><path fill="#66757F" d="M0 18c0 9.941 8.059 18 18 18 .295 0 .58-.029.87-.043C24.761 33.393 29 26.332 29 18 29 9.669 24.761 2.607 18.87.044 18.58.03 18.295 0 18 0 8.059 0 0 8.059 0 18z"/><circle fill="#5B6876" cx="10.5" cy="8.5" r="3.5"/><circle fill="#5B6876" cx="20" cy="16" r="3"/><circle fill="#5B6876" cx="21.5" cy="27.5" r="3.5"/><circle fill="#5B6876" cx="21" cy="6" r="2"/><circle fill="#5B6876" cx="3" cy="18" r="1"/><circle fill="#FFCC4D" cx="30" cy="9" r="1"/><circle fill="#5B6876" cx="15" cy="31" r="1"/><circle fill="#FFCC4D" cx="32" cy="19" r="2"/><circle fill="#5B6876" cx="10" cy="23" r="2"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f313.svg b/public/emoji/1f313.svg
index 117a34650f446502226ecdcedb7f02d311a31740..f668b7585f9d1f3cc17da50d24aa66378554f444 100644
--- a/public/emoji/1f313.svg
+++ b/public/emoji/1f313.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#CCD6DD" d="M18 0v36c9.941 0 18-8.059 18-18S27.941 0 18 0z"/><path fill="#66757F" d="M0 18c0 9.941 8.059 18 18 18V0C8.059 0 0 8.059 0 18z"/><circle fill="#B8C5CD" cx="25.5" cy="8.5" r="3.5"/><circle fill="#5B6876" cx="12" cy="16" r="3"/><circle fill="#5B6876" cx="13.5" cy="27.5" r="3.5"/><circle fill="#5B6876" cx="15" cy="6" r="2"/><circle fill="#B8C5CD" cx="33" cy="18" r="1"/><circle fill="#5B6876" cx="6" cy="9" r="1"/><circle fill="#B8C5CD" cx="21" cy="31" r="1"/><circle fill="#5B6876" cx="4" cy="19" r="2"/><circle fill="#B8C5CD" cx="26" cy="23" r="2"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#FFD983" d="M18 0v36c9.941 0 18-8.059 18-18S27.941 0 18 0z"/><path fill="#66757F" d="M0 18c0 9.941 8.059 18 18 18V0C8.059 0 0 8.059 0 18z"/><circle fill="#FFCC4D" cx="25.5" cy="8.5" r="3.5"/><circle fill="#5B6876" cx="12" cy="16" r="3"/><circle fill="#5B6876" cx="13.5" cy="27.5" r="3.5"/><circle fill="#5B6876" cx="15" cy="6" r="2"/><circle fill="#FFCC4D" cx="33" cy="18" r="1"/><circle fill="#5B6876" cx="6" cy="9" r="1"/><circle fill="#FFCC4D" cx="21" cy="31" r="1"/><circle fill="#5B6876" cx="4" cy="19" r="2"/><circle fill="#FFCC4D" cx="26" cy="23" r="2"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f314.svg b/public/emoji/1f314.svg
index c26fc3517c633bd22d8e9eb3a41b0f3560efc27c..90488ede900bcd979ee902a65795734af6231641 100644
--- a/public/emoji/1f314.svg
+++ b/public/emoji/1f314.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#CCD6DD" d="M36 18c0 9.941-8.059 18-18 18-.294 0-.58-.029-.87-.043C11.239 33.393 7 26.332 7 18 7 9.669 11.239 2.607 17.13.044 17.42.03 17.706 0 18 0c9.941 0 18 8.059 18 18z"/><path fill="#66757F" d="M7 18C7 9.669 11.239 2.607 17.13.044 7.596.501 0 8.353 0 18c0 9.646 7.594 17.498 17.128 17.956C11.238 33.391 7 26.331 7 18z"/><circle fill="#B8C5CD" cx="25.5" cy="8.5" r="3.5"/><circle fill="#B8C5CD" cx="16" cy="16" r="3"/><circle fill="#B8C5CD" cx="14.5" cy="27.5" r="3.5"/><circle fill="#B8C5CD" cx="15" cy="6" r="2"/><circle fill="#B8C5CD" cx="33" cy="18" r="1"/><circle fill="#5B6876" cx="6" cy="9" r="1"/><circle fill="#B8C5CD" cx="21" cy="31" r="1"/><circle fill="#5B6876" cx="4" cy="19" r="2"/><circle fill="#B8C5CD" cx="26" cy="23" r="2"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#FFD983" d="M36 18c0 9.941-8.059 18-18 18-.294 0-.58-.029-.87-.043C11.239 33.393 7 26.332 7 18 7 9.669 11.239 2.607 17.13.044 17.42.03 17.706 0 18 0c9.941 0 18 8.059 18 18z"/><path fill="#66757F" d="M7 18C7 9.669 11.239 2.607 17.13.044 7.596.501 0 8.353 0 18c0 9.646 7.594 17.498 17.128 17.956C11.238 33.391 7 26.331 7 18z"/><circle fill="#FFCC4D" cx="25.5" cy="8.5" r="3.5"/><circle fill="#FFCC4D" cx="16" cy="16" r="3"/><circle fill="#FFCC4D" cx="14.5" cy="27.5" r="3.5"/><circle fill="#FFCC4D" cx="15" cy="6" r="2"/><circle fill="#FFCC4D" cx="33" cy="18" r="1"/><circle fill="#5B6876" cx="6" cy="9" r="1"/><circle fill="#FFCC4D" cx="21" cy="31" r="1"/><circle fill="#5B6876" cx="4" cy="19" r="2"/><circle fill="#FFCC4D" cx="26" cy="23" r="2"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f315.svg b/public/emoji/1f315.svg
index 34dfe03eac02dc8adb9e3feee33f7497719830ea..9a70427154c8727a8733b50ef533bad21045b4b6 100644
--- a/public/emoji/1f315.svg
+++ b/public/emoji/1f315.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><circle fill="#CCD6DD" cx="18" cy="18" r="18"/><g fill="#B8C5CD"><circle cx="10.5" cy="8.5" r="3.5"/><circle cx="20" cy="17" r="3"/><circle cx="24.5" cy="28.5" r="3.5"/><circle cx="22" cy="5" r="2"/><circle cx="3" cy="18" r="1"/><circle cx="30" cy="9" r="1"/><circle cx="15" cy="31" r="1"/><circle cx="32" cy="19" r="2"/><circle cx="10" cy="23" r="2"/></g></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><circle fill="#FFD983" cx="18" cy="18" r="18"/><g fill="#FFCC4D"><circle cx="10.5" cy="8.5" r="3.5"/><circle cx="20" cy="17" r="3"/><circle cx="24.5" cy="28.5" r="3.5"/><circle cx="22" cy="5" r="2"/><circle cx="3" cy="18" r="1"/><circle cx="30" cy="9" r="1"/><circle cx="15" cy="31" r="1"/><circle cx="32" cy="19" r="2"/><circle cx="10" cy="23" r="2"/></g></svg>
\ No newline at end of file
diff --git a/public/emoji/1f316.svg b/public/emoji/1f316.svg
index 4a782a33e10f5ba0c07556942203e73e57239164..9cbc981ea002e4354c03ce26a867f5f1e59db41c 100644
--- a/public/emoji/1f316.svg
+++ b/public/emoji/1f316.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#CCD6DD" d="M0 18c0 9.941 8.059 18 18 18 .295 0 .58-.029.87-.043C24.761 33.393 29 26.332 29 18 29 9.669 24.761 2.607 18.87.044 18.58.03 18.295 0 18 0 8.059 0 0 8.059 0 18z"/><path fill="#66757F" d="M29 18C29 9.669 24.761 2.607 18.87.044 28.404.501 36 8.353 36 18c0 9.646-7.594 17.498-17.128 17.956C24.762 33.391 29 26.331 29 18z"/><circle fill="#B8C5CD" cx="10.5" cy="8.5" r="3.5"/><circle fill="#B8C5CD" cx="20" cy="16" r="3"/><circle fill="#B8C5CD" cx="21.5" cy="27.5" r="3.5"/><circle fill="#B8C5CD" cx="21" cy="6" r="2"/><circle fill="#B8C5CD" cx="3" cy="18" r="1"/><circle fill="#5B6876" cx="30" cy="9" r="1"/><circle fill="#B8C5CD" cx="15" cy="31" r="1"/><circle fill="#5B6876" cx="32" cy="19" r="2"/><circle fill="#B8C5CD" cx="10" cy="23" r="2"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#FFD983" d="M0 18c0 9.941 8.059 18 18 18 .295 0 .58-.029.87-.043C24.761 33.393 29 26.332 29 18 29 9.669 24.761 2.607 18.87.044 18.58.03 18.295 0 18 0 8.059 0 0 8.059 0 18z"/><path fill="#66757F" d="M29 18C29 9.669 24.761 2.607 18.87.044 28.404.501 36 8.353 36 18c0 9.646-7.594 17.498-17.128 17.956C24.762 33.391 29 26.331 29 18z"/><circle fill="#FFCC4D" cx="10.5" cy="8.5" r="3.5"/><circle fill="#FFCC4D" cx="20" cy="16" r="3"/><circle fill="#FFCC4D" cx="21.5" cy="27.5" r="3.5"/><circle fill="#FFCC4D" cx="21" cy="6" r="2"/><circle fill="#FFCC4D" cx="3" cy="18" r="1"/><circle fill="#5B6876" cx="30" cy="9" r="1"/><circle fill="#FFCC4D" cx="15" cy="31" r="1"/><circle fill="#5B6876" cx="32" cy="19" r="2"/><circle fill="#FFCC4D" cx="10" cy="23" r="2"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f317.svg b/public/emoji/1f317.svg
index 403d02e2592484297b088ed85a08ebcc42408009..a5813f0f13e453897fb298236826573fda1528a3 100644
--- a/public/emoji/1f317.svg
+++ b/public/emoji/1f317.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#CCD6DD" d="M18 0v36C8.059 36 0 27.941 0 18S8.059 0 18 0z"/><path fill="#66757F" d="M36 18c0 9.941-8.059 18-18 18V0c9.941 0 18 8.059 18 18z"/><circle fill="#B8C5CD" cx="10.5" cy="8.5" r="3.5"/><circle fill="#5B6876" cx="24" cy="16" r="3"/><circle fill="#5B6876" cx="22.5" cy="27.5" r="3.5"/><circle fill="#5B6876" cx="21" cy="6" r="2"/><circle fill="#B8C5CD" cx="3" cy="18" r="1"/><circle fill="#5B6876" cx="30" cy="9" r="1"/><circle fill="#B8C5CD" cx="15" cy="31" r="1"/><circle fill="#5B6876" cx="32" cy="19" r="2"/><circle fill="#B8C5CD" cx="10" cy="23" r="2"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#FFD983" d="M18 0v36C8.059 36 0 27.941 0 18S8.059 0 18 0z"/><path fill="#66757F" d="M36 18c0 9.941-8.059 18-18 18V0c9.941 0 18 8.059 18 18z"/><circle fill="#FFCC4D" cx="10.5" cy="8.5" r="3.5"/><circle fill="#5B6876" cx="24" cy="16" r="3"/><circle fill="#5B6876" cx="22.5" cy="27.5" r="3.5"/><circle fill="#5B6876" cx="21" cy="6" r="2"/><circle fill="#FFCC4D" cx="3" cy="18" r="1"/><circle fill="#5B6876" cx="30" cy="9" r="1"/><circle fill="#FFCC4D" cx="15" cy="31" r="1"/><circle fill="#5B6876" cx="32" cy="19" r="2"/><circle fill="#FFCC4D" cx="10" cy="23" r="2"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f318.svg b/public/emoji/1f318.svg
index 490baa9ed854cd58bcfc05cdd17a7bc76453f8e7..bad95d5ec1a78e70b3d787b25088db01acfecb0f 100644
--- a/public/emoji/1f318.svg
+++ b/public/emoji/1f318.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><circle fill="#CCD6DD" cx="18" cy="18" r="18"/><path fill="#66757F" d="M36 18c0 9.941-8.059 18-18 18-.294 0-.58-.029-.87-.043C11.239 33.393 7 26.332 7 18 7 9.669 11.239 2.607 17.13.044 17.42.03 17.706 0 18 0c9.941 0 18 8.059 18 18z"/><circle fill="#5B6876" cx="25.5" cy="8.5" r="3.5"/><circle fill="#5B6876" cx="16" cy="16" r="3"/><circle fill="#5B6876" cx="14.5" cy="27.5" r="3.5"/><circle fill="#5B6876" cx="15" cy="6" r="2"/><circle fill="#5B6876" cx="33" cy="18" r="1"/><circle fill="#B8C5CD" cx="6" cy="9" r="1"/><circle fill="#5B6876" cx="21" cy="31" r="1"/><circle fill="#B8C5CD" cx="4" cy="19" r="2"/><circle fill="#5B6876" cx="26" cy="23" r="2"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><circle fill="#FFD983" cx="18" cy="18" r="18"/><path fill="#66757F" d="M36 18c0 9.941-8.059 18-18 18-.294 0-.58-.029-.87-.043C11.239 33.393 7 26.332 7 18 7 9.669 11.239 2.607 17.13.044 17.42.03 17.706 0 18 0c9.941 0 18 8.059 18 18z"/><circle fill="#5B6876" cx="25.5" cy="8.5" r="3.5"/><circle fill="#5B6876" cx="16" cy="16" r="3"/><circle fill="#5B6876" cx="14.5" cy="27.5" r="3.5"/><circle fill="#5B6876" cx="15" cy="6" r="2"/><circle fill="#5B6876" cx="33" cy="18" r="1"/><circle fill="#FFCC4D" cx="6" cy="9" r="1"/><circle fill="#5B6876" cx="21" cy="31" r="1"/><circle fill="#FFCC4D" cx="4" cy="19" r="2"/><circle fill="#5B6876" cx="26" cy="23" r="2"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f319.svg b/public/emoji/1f319.svg
index aba4295ff2db333169032678d48dcea91811ba51..d98dc2f9f42ff601d50554564fe549ac1ee2f1f6 100644
--- a/public/emoji/1f319.svg
+++ b/public/emoji/1f319.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#CCD6DD" d="M30.312.776C32 19 20 32 .776 30.312c8.199 7.717 21.091 7.588 29.107-.429C37.9 21.867 38.03 8.975 30.312.776z"/><path d="M30.705 15.915c-.453.454-.453 1.189 0 1.644.454.453 1.189.453 1.643 0 .454-.455.455-1.19 0-1.644-.453-.454-1.189-.454-1.643 0zm-16.022 14.38c-.682.681-.682 1.783 0 2.465.68.682 1.784.682 2.464 0 .681-.682.681-1.784 0-2.465-.68-.682-1.784-.682-2.464 0zm13.968-2.147c-1.135 1.135-2.974 1.135-4.108 0-1.135-1.135-1.135-2.975 0-4.107 1.135-1.136 2.974-1.136 4.108 0 1.135 1.133 1.135 2.973 0 4.107z" fill="#B8C5CD"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#FFD983" d="M30.312.776C32 19 20 32 .776 30.312c8.199 7.717 21.091 7.588 29.107-.429C37.9 21.867 38.03 8.975 30.312.776z"/><path d="M30.705 15.915c-.453.454-.453 1.189 0 1.644.454.453 1.189.453 1.643 0 .454-.455.455-1.19 0-1.644-.453-.454-1.189-.454-1.643 0zm-16.022 14.38c-.682.681-.682 1.783 0 2.465.68.682 1.784.682 2.464 0 .681-.682.681-1.784 0-2.465-.68-.682-1.784-.682-2.464 0zm13.968-2.147c-1.135 1.135-2.974 1.135-4.108 0-1.135-1.135-1.135-2.975 0-4.107 1.135-1.136 2.974-1.136 4.108 0 1.135 1.133 1.135 2.973 0 4.107z" fill="#FFCC4D"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f31b.svg b/public/emoji/1f31b.svg
index 8cf1eed2a75e5eba8d2d1e53aeab724d1131d064..3fffcdd504c649784f323117a567e38b825f1431 100644
--- a/public/emoji/1f31b.svg
+++ b/public/emoji/1f31b.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#CCD6DD" d="M25 13c0-4.984-1.934-9.505-5.073-12.894C28.961 1.068 36 8.71 36 18c0 9.941-8.06 18-18 18-4.303 0-8.25-1.515-11.347-4.033 7.163-.245 13.305-4.451 16.35-10.484.622-1.232-2.795-1.201-2.962-3.482C19.887 15.87 25 15.26 25 13"/><g fill="#B8C5CD"><circle cx="25.5" cy="28.5" r="3.5"/><circle cx="27" cy="7" r="1"/><circle cx="18" cy="32" r="1"/><circle cx="33" cy="20" r="2"/></g><path d="M19.797 26.023c.775-.819 1.48-1.705 2.104-2.651 5.449 1.226 7.637-.273 7.316.807-.34 1.147-4.797 3.008-9.42 1.844M26 14.5c0 1.381 1.12 2.5 2.5 2.5s2.5-1.119 2.5-2.5-1.12-2.5-2.5-2.5-2.5 1.119-2.5 2.5" fill="#4F585D"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#FFD983" d="M25 13c0-4.984-1.934-9.505-5.073-12.894C28.961 1.068 36 8.71 36 18c0 9.941-8.06 18-18 18-4.303 0-8.25-1.515-11.347-4.033 7.163-.245 13.305-4.451 16.35-10.484.622-1.232-2.795-1.201-2.962-3.482C19.887 15.87 25 15.26 25 13"/><g fill="#FFCC4D"><circle cx="25.5" cy="28.5" r="3.5"/><circle cx="27" cy="7" r="1"/><circle cx="18" cy="32" r="1"/><circle cx="33" cy="20" r="2"/></g><path d="M19.797 26.023c.775-.819 1.48-1.705 2.104-2.651 5.449 1.226 7.637-.273 7.316.807-.34 1.147-4.797 3.008-9.42 1.844M26 14.5c0 1.381 1.12 2.5 2.5 2.5s2.5-1.119 2.5-2.5-1.12-2.5-2.5-2.5-2.5 1.119-2.5 2.5" fill="#292F33"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f31c.svg b/public/emoji/1f31c.svg
index b41a17c2d6d95083daa71ac573afd82314f60a7f..07501e9288de79474e56839fb8988a6142ec91be 100644
--- a/public/emoji/1f31c.svg
+++ b/public/emoji/1f31c.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#CCD6DD" d="M11 13c0-4.984 1.934-9.505 5.073-12.894C7.039 1.068 0 8.71 0 18c0 9.941 8.06 18 18 18 4.303 0 8.25-1.515 11.348-4.033-7.164-.245-13.306-4.451-16.351-10.484-.622-1.232 2.795-1.201 2.962-3.482C16.113 15.87 11 15.26 11 13"/><g fill="#B8C5CD"><circle cx="10.5" cy="28.5" r="3.5"/><circle cx="9" cy="7" r="1"/><circle cx="18" cy="32" r="1"/><circle cx="3" cy="20" r="2"/></g><path d="M16.203 26.023c-.775-.819-1.48-1.705-2.104-2.651-5.449 1.226-7.637-.273-7.316.807.341 1.147 4.797 3.008 9.42 1.844M10 14.5c0 1.381-1.12 2.5-2.5 2.5S5 15.881 5 14.5 6.12 12 7.5 12s2.5 1.119 2.5 2.5" fill="#4F585D"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#FFD983" d="M11 13c0-4.984 1.934-9.505 5.073-12.894C7.039 1.068 0 8.71 0 18c0 9.941 8.06 18 18 18 4.303 0 8.25-1.515 11.348-4.033-7.164-.245-13.306-4.451-16.351-10.484-.622-1.232 2.795-1.201 2.962-3.482C16.113 15.87 11 15.26 11 13"/><g fill="#FFCC4D"><circle cx="10.5" cy="28.5" r="3.5"/><circle cx="9" cy="7" r="1"/><circle cx="18" cy="32" r="1"/><circle cx="3" cy="20" r="2"/></g><path d="M16.203 26.023c-.775-.819-1.48-1.705-2.104-2.651-5.449 1.226-7.637-.273-7.316.807.341 1.147 4.797 3.008 9.42 1.844M10 14.5c0 1.381-1.12 2.5-2.5 2.5S5 15.881 5 14.5 6.12 12 7.5 12s2.5 1.119 2.5 2.5" fill="#292F33"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f31d.svg b/public/emoji/1f31d.svg
index 7204904b502c6e92bbe210ae61192b00e17de681..4c9896919054b8d17a12ef5e22e4f5a181cc9db6 100644
--- a/public/emoji/1f31d.svg
+++ b/public/emoji/1f31d.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#CCD6DD" d="M36 18c0 9.941-8.059 18-18 18S0 27.941 0 18 8.059 0 18 0s18 8.059 18 18"/><g fill="#B8C5CD"><circle cx="9.5" cy="7.5" r="3.5"/><circle cx="24.5" cy="28.5" r="3.5"/><circle cx="22" cy="5" r="2"/><circle cx="3" cy="18" r="1"/><circle cx="30" cy="9" r="1"/><circle cx="16" cy="31" r="1"/><circle cx="32" cy="19" r="2"/><circle cx="6" cy="26" r="2"/></g><path d="M18 24.904c-7 0-9-2.618-9-1.381C9 24.762 13 28 18 28s9-3.238 9-4.477c0-1.237-2 1.381-9 1.381M27 15c0 1.657-1.344 3-3 3s-3-1.343-3-3 1.344-3 3-3 3 1.343 3 3m-12 0c0 1.657-1.344 3-3 3s-3-1.343-3-3 1.344-3 3-3 3 1.343 3 3" fill="#4F585D"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#FFD983" d="M36 18c0 9.941-8.059 18-18 18S0 27.941 0 18 8.059 0 18 0s18 8.059 18 18"/><g fill="#FFCC4D"><circle cx="9.5" cy="7.5" r="3.5"/><circle cx="24.5" cy="28.5" r="3.5"/><circle cx="22" cy="5" r="2"/><circle cx="3" cy="18" r="1"/><circle cx="30" cy="9" r="1"/><circle cx="16" cy="31" r="1"/><circle cx="32" cy="19" r="2"/><circle cx="6" cy="26" r="2"/></g><path d="M18 24.904c-7 0-9-2.618-9-1.381C9 24.762 13 28 18 28s9-3.238 9-4.477c0-1.237-2 1.381-9 1.381M27 15c0 1.657-1.344 3-3 3s-3-1.343-3-3 1.344-3 3-3 3 1.343 3 3m-12 0c0 1.657-1.344 3-3 3s-3-1.343-3-3 1.344-3 3-3 3 1.343 3 3" fill="#292F33"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f32b.svg b/public/emoji/1f32b.svg
index 08281c9aed0849264df74716b99e62116d9d5676..fe6e480b6f34bad90f71934e934715c87126db61 100644
--- a/public/emoji/1f32b.svg
+++ b/public/emoji/1f32b.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#F5F8FA" d="M32 0H4C1.791 0 0 1.791 0 4v28c0 2.209 1.791 4 4 4h28c2.209 0 4-1.791 4-4V4c0-2.209-1.791-4-4-4z"/><path fill="#E1E8ED" d="M36 16.368V9.257c-.638-.394-1.383-.632-2.188-.632-1.325 0-2.491.627-3.259 1.588C29.75 9.466 28.683 9 27.5 9c-.721 0-1.392.185-1.996.486C24.763 8.018 23.257 7 21.5 7c-.607 0-1.184.124-1.712.342C19.308 5.981 18.024 5 16.5 5c-1.207 0-2.273.611-2.901 1.542C12.97 6.207 12.263 6 11.5 6c-1.641 0-3.062.887-3.848 2.198C6.928 6.33 5.125 5 3 5c-1.131 0-2.162.389-3 1.022v7.955C.838 14.611 1.869 15 3 15c1.914 0 3.558-1.088 4.398-2.668C8.101 13.902 9.669 15 11.5 15c.698 0 1.351-.172 1.94-.456C13.965 15.413 14.91 16 16 16c.996 0 1.871-.49 2.417-1.236.769.727 1.792 1.18 2.924 1.221C21.901 17.172 23.1 18 24.5 18c.504 0 .981-.111 1.413-.303.495.188 1.027.303 1.587.303 1.534 0 2.884-.771 3.696-1.942.719.581 1.621.942 2.616.942.805 0 1.55-.238 2.188-.632z"/><path fill="#CCD6DD" d="M36 14.771C35.157 13.7 33.864 13 32.396 13c-1.997 0-3.681 1.279-4.318 3.059-.19-.033-.38-.059-.578-.059-.82 0-1.565.294-2.162.767C24.679 16.289 23.876 16 23 16c-.353 0-.689.06-1.015.146.002-.049.015-.096.015-.146 0-2.209-1.791-4-4-4-1.215 0-2.291.554-3.024 1.409C14.369 13.148 13.702 13 13 13c-.18 0-.35.034-.525.053C11.429 10.505 8.926 8.709 6 8.709c-2.551 0-4.777 1.369-6 3.408v13.544c.458.647 1.096 1.048 2 1.048 1.335 0 29.613-2.5 30.396-2.5 1.461 0 2.761-1.343 3.604-2.966v-6.472z"/><path fill="#E1E8ED" d="M36 29.578v-9.156c-.613-.268-1.288-.422-2-.422-2.125 0-3.928 1.33-4.652 3.198C28.562 21.887 27.141 21 25.5 21c-.763 0-1.47.207-2.099.542C22.773 20.611 21.707 20 20.5 20c-1.524 0-2.808.981-3.288 2.342-.528-.218-1.105-.342-1.712-.342-1.757 0-3.263 1.018-4.004 2.486C10.892 24.185 10.221 24 9.5 24c-1.183 0-2.25.466-3.054 1.213-.768-.961-1.934-1.588-3.259-1.588-1.284 0-2.419.591-3.188 1.501v5.373C.768 31.409 1.903 32 3.188 32c.995 0 1.897-.361 2.616-.942C6.616 32.229 7.966 33 9.5 33c.56 0 1.092-.115 1.587-.303.432.192.909.303 1.413.303 1.4 0 2.599-.828 3.159-2.016 1.132-.041 2.155-.494 2.924-1.221C19.129 30.51 20.004 31 21 31c1.09 0 2.035-.587 2.56-1.456.589.284 1.242.456 1.94.456 1.831 0 3.399-1.098 4.102-2.668C30.442 28.912 32.086 30 34 30c.712 0 1.387-.154 2-.422z"/><path fill="#FE5011" d="M36 24.059C32.465 22.229 25.013 17.594 20 9c0 0 0-2-2-2s-2 2-2 2C10.987 17.594 3.535 22.229 0 24.059v2.068c1.044-.495 2.422-1.204 4-2.169V24h2v-1.341c1.284-.88 2.637-1.908 4-3.094V27h2v-9.292c1.384-1.375 2.74-2.923 4-4.655V24h4V13.054c1.26 1.731 2.616 3.28 4 4.655V26h2v-6.435c1.362 1.186 2.716 2.214 4 3.095V25h2v-1.042c1.578.965 2.956 1.674 4 2.169v-2.068z"/><path fill="#F5F8FA" d="M25 25c-.821 0-1.582.249-2.217.673-.664-1.839-2.5-3.07-4.534-2.863-1.883.192-3.348 1.56-3.777 3.298-.181-.012-.363-.019-.55 0-.773.079-1.448.427-1.965.93-.667-.387-1.452-.582-2.278-.498-.333.034-.644.123-.942.236-.003-.047.004-.093 0-.139-.212-2.083-2.073-3.599-4.155-3.387-1.145.117-2.107.742-2.716 1.619-.586-.186-1.217-.258-1.866-.197V32c0 .773.23 1.489.61 2.101.106-.004.208.009.315-.001 1.161-.118 2.166-.661 2.916-1.44.337.081.689.121 1.053.083.686-.07 1.292-.361 1.768-.789.674 1.394 2.156 2.294 3.786 2.128 1.124-.115 2.07-.718 2.682-1.568.456.167.95.246 1.465.193 1.054-.107 1.93-.705 2.456-1.535.641.262 1.346.394 2.084.319.836-.085 1.584-.412 2.205-.889C21.957 32.013 23.362 33 25 33c2.209 0 4-1.791 4-4s-1.791-4-4-4z"/><path fill="#CCD6DD" d="M32 36c2.209 0 4-1.791 4-4v-7.608c-.91-.433-1.925-.683-3-.683-2.926 0-5.429 1.796-6.475 4.344C26.35 28.034 26.18 28 26 28c-.702 0-1.369.147-1.976.409C23.291 27.554 22.215 27 21 27c-2.209 0-4 1.791-4 4 0 .05.013.097.015.146C16.689 31.06 16.353 31 16 31c-.876 0-1.679.289-2.338.767C13.065 31.294 12.32 31 11.5 31c-.198 0-.388.026-.577.059C10.286 29.279 8.602 28 6.604 28c-1.987 0-3.665 1.266-4.31 3.03C2.195 31.022 2.101 31 2 31c-.732 0-1.41.211-2 .555V32c0 2.209 1.791 4 4 4h28z"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#F5F8FA" d="M32 0H4C1.791 0 0 1.791 0 4v6h36V4c0-2.209-1.791-4-4-4z"/><path fill="#E1E8ED" d="M36 16.368V9.257c-.638-.394-1.383-.632-2.188-.632-1.325 0-2.491.627-3.259 1.588C29.75 9.466 28.683 9 27.5 9c-.721 0-1.392.185-1.996.486C24.763 8.018 23.257 7 21.5 7c-.607 0-1.184.124-1.712.342C19.308 5.981 18.024 5 16.5 5c-1.207 0-2.273.611-2.901 1.542C12.97 6.207 12.263 6 11.5 6c-1.641 0-3.062.887-3.848 2.198C6.928 6.33 5.125 5 3 5c-1.131 0-2.162.389-3 1.022v7.955C.838 14.611 24.5 18 24.5 18s10.862-1.238 11.5-1.632z"/><path fill="#CCD6DD" d="M36 14.771C35.157 13.7 33.864 13 32.396 13c-1.997 0-3.681 1.279-4.318 3.059-.19-.033-.38-.059-.578-.059-.82 0-1.565.294-2.162.767C24.679 16.289 23.876 16 23 16c-.353 0-.689.06-1.015.146.002-.049.015-.096.015-.146 0-2.209-1.791-4-4-4-1.215 0-2.291.554-3.024 1.409C14.369 13.148 13.702 13 13 13c-.18 0-.35.034-.525.053C11.429 10.505 8.926 8.709 6 8.709c-2.551 0-4.777 1.369-6 3.408v13.544l32.396-1.452s2.761-1.343 3.604-2.966v-6.472z"/><path fill="#E1E8ED" d="M36 30.499V20.422c-.613-.268-1.288-.422-2-.422-2.125 0-3.928 1.33-4.652 3.198C28.562 21.887 27.141 21 25.5 21c-.763 0-1.47.207-2.099.542C22.773 20.611 21.707 20 20.5 20c-1.524 0-2.808.981-3.288 2.342-.528-.218-1.105-.342-1.712-.342-1.757 0-3.263 1.018-4.004 2.486C10.892 24.185 10.221 24 9.5 24c-1.183 0-2.25.466-3.054 1.213-.768-.961-1.934-1.588-3.259-1.588-1.284 0-2.419.591-3.188 1.501v5.373H36z"/><path fill="#F5F8FA" d="M25 25c-.821 0-1.582.249-2.217.673-.664-1.839-2.5-3.07-4.534-2.863-1.883.192-3.348 1.56-3.777 3.298-.181-.012-.363-.019-.55 0-.773.079-1.448.427-1.965.93-.667-.387-1.452-.582-2.278-.498-.333.034-.644.123-.942.236-.003-.047.004-.093 0-.139-.212-2.083-2.073-3.599-4.155-3.387-1.145.117-2.107.742-2.716 1.619-.586-.186-1.217-.258-1.866-.197V32c0 .773.23 1.489.61 2.101C.715 34.098 29 31.209 29 29s-1.791-4-4-4z"/><path fill="#CCD6DD" d="M32 36c2.209 0 4-1.791 4-4v-7.608c-.91-.433-1.925-.683-3-.683-2.926 0-5.429 1.796-6.475 4.344C26.35 28.034 26.18 28 26 28c-.702 0-1.369.147-1.976.409C23.291 27.554 22.215 27 21 27c-2.209 0-4 1.791-4 4 0 .05.013.097.015.146C16.689 31.06 16.353 31 16 31c-.876 0-1.679.289-2.338.767C13.065 31.294 12.32 31 11.5 31c-.198 0-.388.026-.577.059C10.286 29.279 8.602 28 6.604 28c-1.987 0-3.665 1.266-4.31 3.03C2.195 31.022 2.101 31 2 31c-.732 0-1.41.211-2 .555V32c0 2.209 1.791 4 4 4h28z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f391.svg b/public/emoji/1f391.svg
index 2d2a4cfa12f0a07b2b730e408162078d5fada92f..37c3a7e1aaa6044b79bfdfe486b25817f2270f3b 100644
--- a/public/emoji/1f391.svg
+++ b/public/emoji/1f391.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#269" d="M36 32c0 2.209-1.791 4-4 4H4c-2.209 0-4-1.791-4-4V4c0-2.209 1.791-4 4-4h28c2.209 0 4 1.791 4 4v28z"/><path fill="#FFCC4D" d="M14.388 2.62c-1.852 0-4.235 1.849-6.22 4.826-2.322 3.483-1.069 5.989-.062 8.002.023.045.054.083.083.123C11 13 15 8 16.591 4.023c-.494-.996-1.364-1.403-2.203-1.403zm4.574 12.2c-.109-1.382-.535-3.206-2.195-3.206-1.21 0-2.576 1.132-4.566 3.785-2.059 2.745-2.424 5.164-1.2 7.8C15 21 18 17 18.962 14.82z"/><path fill="#77B255" d="M22.874 13.517c-.268-.482-.877-.654-1.359-.385-.861.479-1.714 1.051-2.553 1.689C16.053 17.032 13.32 20.085 11 23.2c-2.584 3.469-4.654 7.011-5.852 9.541.838-10.195 5.569-20.044 13.559-28.034.391-.391.391-1.023 0-1.414s-1.023-.391-1.414 0c-.24.24-.468.487-.702.73-3.421 3.55-6.238 7.438-8.402 11.548-2.607 4.95-4.276 10.217-4.9 15.603-.674-5.697-.978-13.91 1.626-19.767.225-.505-.003-1.096-.507-1.32-.508-.227-1.097.002-1.322.507C1.76 13.577 1.141 17.095.924 20.603.638 19.991.331 19.405 0 18.881v4.343c.035.073.073.158.105.223.148.296.425.478.728.53.023 4.55.59 8.758 1.043 11.401C2.493 35.767 3.218 36 4 36h2.003c.08-1.071 2.509-6.019 6.14-11.024.103-.015.206-.033.304-.082.244-.122.516-.272.807-.433.934-.517 2.498-1.383 3.107-1.02.15.089.639.536.639 2.559 0 .553.448 1 1 1s1-.447 1-1c0-2.236-.531-3.636-1.623-4.28-.781-.46-1.666-.423-2.54-.172 2.321-2.715 4.939-5.166 7.648-6.672.484-.269.658-.876.389-1.359z"/><circle fill="#E1E8ED" cx="28.5" cy="7.5" r="5.5"/><path fill="#E1E8ED" d="M29.5 28l-.012.001c.317-.419.512-.935.512-1.501 0-1.381-1.119-2.5-2.5-2.5l-.012.001c.317-.419.512-.935.512-1.501 0-1.381-1.119-2.5-2.5-2.5S23 21.119 23 22.5c0 .566.195 1.082.512 1.501L23.5 24c-1.381 0-2.5 1.119-2.5 2.5 0 .566.195 1.082.512 1.501L21.5 28c-1.381 0-2.5 1.119-2.5 2.5 0 .565.195 1.081.511 1.5h3.976l.013-.013.013.013h3.975l.013-.013.013.013h3.976c.315-.419.51-.935.51-1.5 0-1.381-1.119-2.5-2.5-2.5zm-6 1.013l-.012-.015.012.001.012-.001-.012.015zm2-1.013l-.012.001.012-.015.012.015L25.5 28zm0-2.987l-.012-.015.012.001.012-.001-.012.015zm2 4l-.012-.015.012.001.012-.001-.012.015z"/><path fill="#C1694F" d="M18 32v4h14c.347 0 .679-.058 1-.141V32H18z"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#269" d="M36 32c0 2.209-1.791 4-4 4H4c-2.209 0-4-1.791-4-4V4c0-2.209 1.791-4 4-4h28c2.209 0 4 1.791 4 4v28z"/><path fill="#FFCC4D" d="M14.388 2.62c-1.852 0-4.235 1.849-6.22 4.826-2.322 3.483-1.069 5.989-.062 8.002.023.045.054.083.083.123C11 13 15 8 16.591 4.023c-.494-.996-1.364-1.403-2.203-1.403zm4.574 12.2c-.109-1.382-.535-3.206-2.195-3.206-1.21 0-2.576 1.132-4.566 3.785-2.059 2.745-2.424 5.164-1.2 7.8C15 21 18 17 18.962 14.82z"/><path fill="#77B255" d="M22.874 13.517c-.268-.482-.877-.654-1.359-.385-.861.479-1.714 1.051-2.553 1.689C16.053 17.032 13.32 20.085 11 23.2c-2.584 3.469-4.654 7.011-5.852 9.541.838-10.195 5.569-20.044 13.559-28.034.391-.391.391-1.023 0-1.414s-1.023-.391-1.414 0c-.24.24-.468.487-.702.73-3.421 3.55-6.238 7.438-8.402 11.548-2.607 4.95-4.276 10.217-4.9 15.603-.674-5.697-.978-13.91 1.626-19.767.225-.505-.003-1.096-.507-1.32-.508-.227-1.097.002-1.322.507C1.76 13.577 1.141 17.095.924 20.603.638 19.991.331 19.405 0 18.881v4.343c.035.073.073.158.105.223.148.296.425.478.728.53.023 4.55.59 8.758 1.043 11.401C2.493 35.767 3.218 36 4 36h2.003c.08-1.071 2.509-6.019 6.14-11.024.103-.015.206-.033.304-.082.244-.122.516-.272.807-.433.934-.517 2.498-1.383 3.107-1.02.15.089.639.536.639 2.559 0 .553.448 1 1 1s1-.447 1-1c0-2.236-.531-3.636-1.623-4.28-.781-.46-1.666-.423-2.54-.172 2.321-2.715 4.939-5.166 7.648-6.672.484-.269.658-.876.389-1.359z"/><circle fill="#FFD983" cx="28.5" cy="7.5" r="5.5"/><path fill="#E1E8ED" d="M29.5 28l-.012.001c.317-.419.512-.935.512-1.501 0-1.381-1.119-2.5-2.5-2.5l-.012.001c.317-.419.512-.935.512-1.501 0-1.381-1.119-2.5-2.5-2.5S23 21.119 23 22.5c0 .566.195 1.082.512 1.501L23.5 24c-1.381 0-2.5 1.119-2.5 2.5 0 .566.195 1.082.512 1.501L21.5 28c-1.381 0-2.5 1.119-2.5 2.5 0 .565.195 1.081.511 1.5h3.976l.013-.013.013.013h3.975l.013-.013.013.013h3.976c.315-.419.51-.935.51-1.5 0-1.381-1.119-2.5-2.5-2.5zm-6 1.013l-.012-.015.012.001.012-.001-.012.015zm2-1.013l-.012.001.012-.015.012.015L25.5 28zm0-2.987l-.012-.015.012.001.012-.001-.012.015zm2 4l-.012-.015.012.001.012-.001-.012.015z"/><path fill="#C1694F" d="M18 32v4h14c.347 0 .679-.058 1-.141V32H18z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f393.svg b/public/emoji/1f393.svg
index 6994aad09ac3bc9fd484da7abf5f27ccba30c591..dcf38931c1b97051b53b2e1f2394f5d9cc5a39b6 100644
--- a/public/emoji/1f393.svg
+++ b/public/emoji/1f393.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#292F33" d="M24 14H12s-5 6-5 10 11 11 11 11 11-7 11-11-5-10-5-10z"/><path fill="#292F33" d="M19.64 1.28c-.901-.704-2.377-.704-3.278 0L1.639 12.776c-.901.704-.901 1.856 0 2.56l14.722 11.495c.902.704 2.377.704 3.278 0l14.722-11.495c.902-.704.902-1.856 0-2.56L19.64 1.28z"/><path fill="#394146" d="M19.64 1.28c-.901-.704-2.377-.704-3.278 0L1.639 12.776c-.901.704-.901 1.856 0 2.56l14.722 11.495c.901.704 2.377.704 3.278 0l14.723-11.495c.901-.704.901-1.856 0-2.56L19.64 1.28z"/><path fill="#FCAB40" d="M8 25s-2 2-2 3v6s0 2 2 2 2-2 2-2v-6c0-1-2-3-2-3z"/><circle fill="#FDD888" cx="8" cy="26" r="3"/><path fill="#FCAB40" d="M8.001 27c-.552 0-1-.447-1-1v-3.958c-.042-.634.187-2.036 1.317-2.884l9.022-7.91c.416-.365 1.048-.323 1.411.093.364.415.322 1.047-.093 1.411l-9.08 7.958C8.974 21.166 9 21.982 9 21.99L9.002 26c0 .553-.448 1-1.001 1z"/><circle fill="#292F33" cx="18" cy="13" r="3"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#31373D" d="M24 14H12s-5 6-5 10 11 11 11 11 11-7 11-11-5-10-5-10z"/><path fill="#292F33" d="M19.64 1.28c-.901-.704-2.377-.704-3.278 0L1.639 12.776c-.901.704-.901 1.856 0 2.56l14.722 11.495c.902.704 2.377.704 3.278 0l14.722-11.495c.902-.704.902-1.856 0-2.56L19.64 1.28z"/><path fill="#394146" d="M19.64 1.28c-.901-.704-2.377-.704-3.278 0L1.639 12.776c-.901.704-.901 1.856 0 2.56l14.722 11.495c.901.704 2.377.704 3.278 0l14.723-11.495c.901-.704.901-1.856 0-2.56L19.64 1.28z"/><path fill="#FCAB40" d="M8 25s-2 2-2 3v6s0 2 2 2 2-2 2-2v-6c0-1-2-3-2-3z"/><circle fill="#FDD888" cx="8" cy="26" r="3"/><path fill="#FCAB40" d="M8.001 27c-.552 0-1-.447-1-1v-3.958c-.042-.634.187-2.036 1.317-2.884l9.022-7.91c.416-.365 1.048-.323 1.411.093.364.415.322 1.047-.093 1.411l-9.08 7.958C8.974 21.166 9 21.982 9 21.99L9.002 26c0 .553-.448 1-1.001 1z"/><circle fill="#31373D" cx="18" cy="13" r="3"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f396.svg b/public/emoji/1f396.svg
index 2357b36c06ac9a06108e6f81b53f1df50b590cc5..b5c22696e1f871b8ae816d6d3a42fc7cd1bbcf23 100644
--- a/public/emoji/1f396.svg
+++ b/public/emoji/1f396.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#55ACEE" d="M25 0H11C9.896 0 9 .896 9 2v11s0 1 1 2l6.429 5h3.142L26 15c1-1 1-2 1-2V2c0-1.104-.896-2-2-2z"/><path fill="#E1E8ED" d="M12 0v16.555L16.429 20h3.142L24 16.555V0z"/><path fill="#DD2E44" d="M14 0v18.111L16.429 20h3.142L22 18.111V0z"/><path fill="#FFAC33" d="M21.902 21.02c.06-.163.098-.337.098-.52 0-.828-.672-1.5-1.5-1.5h-5c-.829 0-1.5.672-1.5 1.5 0 .183.038.357.098.52C11.654 22.389 10 25 10 28c0 4.418 3.581 8 8 8 4.418 0 8-3.582 8-8 0-3-1.654-5.611-4.098-6.98z"/><circle fill="#FFD983" cx="18" cy="28" r="6"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#55ACEE" d="M25 0H11C9.896 0 9 .896 9 2v11s0 1 1 2l6.429 5h3.142L26 15c1-1 1-2 1-2V2c0-1.104-.896-2-2-2z"/><path fill="#E1E8ED" d="M12 0v16.555L16.429 20h3.142L24 16.555V0z"/><path fill="#DD2E44" d="M14 0v18.111L16.429 20h3.142L22 18.111V0z"/><path fill="#FFAC33" d="M21.902 21.02c.06-.163.098-.337.098-.52 0-.828-.672-1.5-1.5-1.5h-5c-.829 0-1.5.672-1.5 1.5 0 .183.038.357.098.52C11.654 22.389 10 25 10 28c0 4.418 3.581 8 8 8 4.418 0 8-3.582 8-8 0-3-1.654-5.611-4.098-6.98z"/><circle fill="#FFD983" cx="18" cy="28" r="6"/><path fill="#FFAC33" d="M20.731 32.36c-.119 0-.237-.036-.339-.109L18 30.535l-2.393 1.716c-.204.146-.477.146-.68-.002-.203-.147-.288-.407-.212-.645l.892-2.88-2.371-1.671c-.202-.149-.285-.41-.208-.648.078-.238.299-.399.549-.401L16.514 26l.935-2.809c.079-.238.301-.398.551-.398.25 0 .472.16.551.398L19.47 26l2.952.004c.251.002.472.163.549.401.077.238-.006.499-.208.648l-2.371 1.671.892 2.88c.076.238-.01.498-.212.645-.101.074-.221.111-.341.111z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f397.svg b/public/emoji/1f397.svg
index 3f4a798bdf32b4cfa6be88d42ca365d6d9d37ce9..1f419d4513a33b0244573207d9ada96b3b8c341a 100644
--- a/public/emoji/1f397.svg
+++ b/public/emoji/1f397.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#1C6399" d="M13.193 8.624S14.75 7 18 7s4.955 1.692 4.955 1.692l.186.136s1.906-3.594.517-6.659C22.593 1.464 20.661.5 18 .5c-2.554 0-4.451.893-5.54 1.589-1.507 3.068.509 6.661.509 6.661l.224-.126zm-1.749-5.771l-.042.038.038-.033.004-.005z"/><path fill="#50A5E6" d="M28.382 27.677c-.06-.071-3.026-3.58-6.27-7.491l-4.01 5.771 6.488 9.33c.095.135.248.213.41.213.018 0 .034-.001.052-.003.181-.019.336-.134.408-.3l3-7c.074-.174.044-.376-.078-.52zM14.04 10.096c-.343-.509-.611-.996-.846-1.472-1.027-2.078-1.125-3.849-.945-5.333.059-.487.152-.905.211-1.202-.593.378-.925.679-1.016.765l-.004.005-.038.033C9.28 4.591 8.156 6.788 8.156 9.25c0 2.469 1.719 4.781 3.237 7.042.105.156 1.195 1.727 2.707 3.904 1.357-1.636 2.755-3.334 4.009-4.88-1.882-2.316-3.451-4.302-4.069-5.22z"/><path fill="#2B7BB9" d="M24.685 2.975l-.086-.083c-.035-.034-.368-.343-.941-.722.058.298.157.729.218 1.237.178 1.473.084 3.228-.921 5.285-.24.491-.516.994-.87 1.52-.608.902-2.135 2.838-3.975 5.105-1.255 1.546-2.653 3.244-4.009 4.88-3.278 3.953-6.297 7.525-6.357 7.596-.124.145-.154.347-.08.52l3 7c.072.166.228.281.408.3.018.002.034.003.052.003.162 0 .315-.078.409-.213.052-.074 3.305-4.751 6.569-9.447l4.01-5.771c1.465-2.11 2.516-3.624 2.619-3.778 1.518-2.261 3.237-4.574 3.237-7.042 0-2.477-1.135-4.687-3.283-6.39z"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#FFAC33" d="M13.193 8.624S14.75 7 18 7s4.955 1.692 4.955 1.692l.186.136s1.906-3.594.517-6.659C22.593 1.464 20.661.5 18 .5c-2.554 0-4.451.893-5.54 1.589-1.507 3.068.509 6.661.509 6.661l.224-.126z"/><path fill="#FFCC4D" d="M24.685 2.975l-.086-.083c-.035-.034-.368-.343-.941-.722.058.298.157.729.218 1.237.178 1.473.084 3.228-.921 5.285-.24.491-.516.994-.87 1.52-.608.902-2.135 2.838-3.975 5.105-1.255 1.546-2.653 3.244-4.009 4.88-3.278 3.953-6.297 7.525-6.357 7.596-.124.145-.154.347-.08.52l3 7c.072.166.228.281.408.3.018.002.034.003.052.003.162 0 .315-.078.409-.213.052-.074 3.305-4.751 6.569-9.447l4.01-5.771c1.465-2.11 2.516-3.624 2.619-3.778 1.518-2.261 3.237-4.574 3.237-7.042 0-2.477-1.135-4.687-3.283-6.39z"/><path fill="#FFAC33" d="M13.254 21.215l3.965 6.012 5.448-7.84-3.979-4.786c-.19.235-5.155 6.278-5.434 6.614z"/><path fill="#FFCC4D" d="M11.449 2.891l.086-.083c.035-.034.368-.343.941-.722-.058.298-.157.729-.218 1.237-.178 1.473-.084 3.228.921 5.285.24.491.516.994.87 1.52.608.902 2.135 2.838 3.975 5.105 1.255 1.546 2.653 3.244 4.009 4.88 3.278 3.953 6.297 7.525 6.357 7.596.122.145.152.347.078.521l-3 7c-.072.166-.228.281-.408.3-.018.002-.034.003-.052.003-.162 0-.315-.078-.409-.213-.052-.074-3.305-4.751-6.569-9.447l-4.01-5.771c-1.465-2.11-2.516-3.624-2.619-3.778-1.518-2.261-3.237-4.574-3.237-7.042.002-2.477 1.137-4.688 3.285-6.391z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f39b.svg b/public/emoji/1f39b.svg
index f239d02c5ccff6bbc1a7f81da83be27ab1716574..9d355c4a9c1a89656aa066e5eee50081c6eb55a3 100644
--- a/public/emoji/1f39b.svg
+++ b/public/emoji/1f39b.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><circle fill="#9AAAB4" cx="18" cy="18" r="17"/><path fill="#CCD6DD" d="M18 18l14.64 8.612C34.13 24.084 35 21.147 35 18c0-9.389-7.61-17-17-17C8.611 1 1 8.611 1 18c0 3.167.881 6.12 2.389 8.658L18 18z"/><circle fill="#DA2F47" cx="18" cy="4.4" r="1.457"/><circle fill="#DA2F47" cx="24.8" cy="6.344" r="1.457"/><circle fill="#DA2F47" cx="11.201" cy="6.344" r="1.457"/><circle fill="#DA2F47" cx="6.343" cy="11.2" r="1.457"/><circle fill="#DA2F47" cx="4.4" cy="18" r="1.457"/><circle fill="#67757F" cx="29.657" cy="11.2" r="1.457"/><circle fill="#67757F" cx="31.602" cy="18" r="1.457"/><circle cx="18" cy="18" r="10.372"/><circle fill="#292F33" cx="18" cy="18" r="8.486"/><path fill="#E1E8ED" d="M22.243 12.343l-4.95 4.95c-.391.391-.391 1.023 0 1.414s1.023.391 1.414 0l4.95-4.95c.391-.391.391-1.023 0-1.415-.39-.389-1.024-.389-1.414.001z"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#CCD6DD" d="M36 32c0 2.209-1.791 4-4 4H4c-2.209 0-4-1.791-4-4V4c0-2.209 1.791-4 4-4h28c2.209 0 4 1.791 4 4v28z"/><circle fill="#67757F" cx="27" cy="20.6" r=".686"/><circle fill="#67757F" cx="30.2" cy="21.515" r=".686"/><circle fill="#67757F" cx="23.8" cy="21.515" r=".686"/><circle fill="#67757F" cx="21.514" cy="23.8" r=".686"/><circle fill="#67757F" cx="20.6" cy="27" r=".686"/><circle fill="#67757F" cx="32.486" cy="23.8" r=".686"/><circle fill="#DA2F47" cx="33.401" cy="27" r=".686"/><circle cx="27" cy="27" r="4.881"/><circle fill="#292F33" cx="27" cy="27" r="3.994"/><path fill="#E1E8ED" d="M28.182 24.118l-1.697 2.824c-.134.223-.062.512.161.646s.512.062.646-.161l1.697-2.824c.134-.223.062-.512-.161-.646-.223-.133-.512-.061-.646.161z"/><circle fill="#67757F" cx="9" cy="20.6" r=".686"/><circle fill="#67757F" cx="12.2" cy="21.515" r=".686"/><circle fill="#67757F" cx="5.8" cy="21.515" r=".686"/><circle fill="#67757F" cx="3.514" cy="23.8" r=".686"/><circle fill="#67757F" cx="2.6" cy="27" r=".686"/><circle fill="#67757F" cx="14.486" cy="23.8" r=".686"/><circle fill="#DA2F47" cx="15.401" cy="27" r=".686"/><circle cx="9" cy="27" r="4.881"/><circle fill="#292F33" cx="9.001" cy="26.999" r="3.994"/><path fill="#E1E8ED" d="M6.099 25.868l2.853 1.647c.225.13.513.053.643-.172.13-.225.053-.513-.172-.643L6.57 25.053c-.226-.13-.513-.053-.643.172-.13.225-.053.513.172.643z"/><circle fill="#67757F" cx="27" cy="3.6" r=".686"/><circle fill="#67757F" cx="30.2" cy="4.515" r=".686"/><circle fill="#67757F" cx="23.8" cy="4.515" r=".686"/><circle fill="#67757F" cx="21.514" cy="6.8" r=".686"/><circle fill="#67757F" cx="20.6" cy="10" r=".686"/><circle fill="#67757F" cx="32.486" cy="6.8" r=".686"/><circle fill="#DA2F47" cx="33.401" cy="10" r=".686"/><circle cx="27" cy="10" r="4.881"/><circle fill="#292F33" cx="27.001" cy="10" r="3.994"/><path fill="#E1E8ED" d="M25.011 7.603l1.697 2.824c.134.223.423.295.646.161.223-.134.295-.423.161-.646l-1.696-2.824c-.134-.223-.423-.295-.646-.161-.224.134-.296.424-.162.646z"/><circle fill="#67757F" cx="9" cy="3.6" r=".686"/><circle fill="#67757F" cx="12.2" cy="4.515" r=".686"/><circle fill="#67757F" cx="5.8" cy="4.515" r=".686"/><circle fill="#67757F" cx="3.514" cy="6.8" r=".686"/><circle fill="#67757F" cx="2.6" cy="10" r=".686"/><circle fill="#67757F" cx="14.486" cy="6.8" r=".686"/><circle fill="#DA2F47" cx="15.401" cy="10" r=".686"/><circle cx="9" cy="9.999" r="4.881"/><circle fill="#292F33" cx="8.999" cy="10" r="3.994"/><path fill="#E1E8ED" d="M11.431 8.053L8.578 9.7c-.225.13-.302.418-.172.643.13.225.418.302.643.172l2.853-1.647c.225-.13.302-.418.172-.643-.131-.225-.419-.302-.643-.172z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f3a4.svg b/public/emoji/1f3a4.svg
index d3c6697c9fdc8eda287bf472ac52322f629ec04e..e26133475200640e2d55c12fd559f80f970869a7 100644
--- a/public/emoji/1f3a4.svg
+++ b/public/emoji/1f3a4.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#8899A6" d="M35.999 11.917c0 3.803-3.082 6.885-6.885 6.885-3.802 0-6.884-3.082-6.884-6.885 0-3.802 3.082-6.884 6.884-6.884 3.803 0 6.885 3.082 6.885 6.884z"/><path fill="#292F33" d="M32.81 18.568c-.336.336-.881.336-1.217 0L22.466 9.44c-.336-.336-.336-.881 0-1.217l1.217-1.217c.336-.336.881-.336 1.217 0l9.127 9.128c.336.336.336.881 0 1.217l-1.217 1.217zm-6.071.136l-4.325-4.327c-.778-.779-1.995-.733-2.719.101l-9.158 10.574c-1.219 1.408-1.461 3.354-.711 4.73l-4.911 4.912 1.409 1.409 4.877-4.877c1.381.84 3.411.609 4.862-.648l10.575-9.157c.834-.723.881-1.94.101-2.717z"/><path fill="#55ACEE" d="M4 6v8.122C3.686 14.047 3.352 14 3 14c-1.657 0-3 .896-3 2s1.343 2 3 2 3-.896 3-2V9.889l5 2.222v5.011c-.314-.075-.648-.122-1-.122-1.657 0-3 .896-3 2s1.343 2 3 2 2.999-.896 3-2v-9L4 6zm14-5v8.123C17.685 9.048 17.353 9 17 9c-1.657 0-3 .895-3 2 0 1.104 1.343 2 3 2 1.656 0 3-.896 3-2V1h-2z"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#8899A6" d="M35.999 11.917c0 3.803-3.082 6.885-6.885 6.885-3.802 0-6.884-3.082-6.884-6.885 0-3.802 3.082-6.884 6.884-6.884 3.803 0 6.885 3.082 6.885 6.884z"/><path fill="#31373D" d="M32.81 18.568c-.336.336-.881.336-1.217 0L22.466 9.44c-.336-.336-.336-.881 0-1.217l1.217-1.217c.336-.336.881-.336 1.217 0l9.127 9.128c.336.336.336.881 0 1.217l-1.217 1.217zm-6.071.136l-4.325-4.327c-.778-.779-1.995-.733-2.719.101l-9.158 10.574c-1.219 1.408-1.461 3.354-.711 4.73l-4.911 4.912 1.409 1.409 4.877-4.877c1.381.84 3.411.609 4.862-.648l10.575-9.157c.834-.723.881-1.94.101-2.717z"/><path fill="#55ACEE" d="M4 6v8.122C3.686 14.047 3.352 14 3 14c-1.657 0-3 .896-3 2s1.343 2 3 2 3-.896 3-2V9.889l5 2.222v5.011c-.314-.075-.648-.122-1-.122-1.657 0-3 .896-3 2s1.343 2 3 2 2.999-.896 3-2v-9L4 6zm14-5v8.123C17.685 9.048 17.353 9 17 9c-1.657 0-3 .895-3 2 0 1.104 1.343 2 3 2 1.656 0 3-.896 3-2V1h-2z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f3a5.svg b/public/emoji/1f3a5.svg
index cc3458749a6bffbf55c701c7eee4d533194365cd..d6c68e0d7ffd2f2df75e0ea8ac1bde1bcd6b59f3 100644
--- a/public/emoji/1f3a5.svg
+++ b/public/emoji/1f3a5.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#292F33" d="M32 21v1h-2v-1c0-.446-.09-.867-.225-1.268 2.446-.757 4.224-3.038 4.224-5.733 0-3.314-2.687-6-6-6-1.603 0-3.055.632-4.131 1.656C23.241 6.433 20.405 4 17 4c-3.866 0-7 3.134-7 7 0 2.551 1.369 4.777 3.409 6H13c-2.209 0-4 1.791-4 4H8l-6-4H1v14h1l6-4h1v2c0 2.209 1.791 4 4 4h13c2.209 0 4-1.791 4-4v-3h2v1h3v-6h-3z"/><path fill="#66757F" d="M22 11c0 2.761-2.239 5-5 5s-5-2.239-5-5 2.239-5 5-5 5 2.238 5 5z"/><circle fill="#CCD6DD" cx="17" cy="11" r="2"/><circle fill="#66757F" cx="27.999" cy="14" r="4"/><circle fill="#CCD6DD" cx="27.999" cy="14" r="2"/><path fill="#8899A6" d="M17 20h10v10H17z"/><path fill="#292F33" d="M19 22h6v6h-6z"/><circle fill="#8899A6" cx="12.999" cy="28" r="2"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#31373D" d="M32 21v1h-2v-1c0-.446-.09-.867-.225-1.268 2.446-.757 4.224-3.038 4.224-5.733 0-3.314-2.687-6-6-6-1.603 0-3.055.632-4.131 1.656C23.241 6.433 20.405 4 17 4c-3.866 0-7 3.134-7 7 0 2.551 1.369 4.777 3.409 6H13c-2.209 0-4 1.791-4 4H8l-6-4H1v14h1l6-4h1v2c0 2.209 1.791 4 4 4h13c2.209 0 4-1.791 4-4v-3h2v1h3v-6h-3z"/><path fill="#66757F" d="M22 11c0 2.761-2.239 5-5 5s-5-2.239-5-5 2.239-5 5-5 5 2.238 5 5z"/><circle fill="#CCD6DD" cx="17" cy="11" r="2"/><circle fill="#66757F" cx="27.999" cy="14" r="4"/><circle fill="#CCD6DD" cx="27.999" cy="14" r="2"/><path fill="#8899A6" d="M17 20h10v10H17z"/><path fill="#31373D" d="M19 22h6v6h-6z"/><circle fill="#8899A6" cx="12.999" cy="28" r="2"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f3a7.svg b/public/emoji/1f3a7.svg
index a99203a60ef150094581fcf45e60f7868bb16331..3a9df15ae3f40aa619a9aeb6b046d97eceb30bdd 100644
--- a/public/emoji/1f3a7.svg
+++ b/public/emoji/1f3a7.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#66757F" d="M18 0C9.716 0 3 6.716 3 15v9h3v-9C6 8 11.269 2.812 18 2.812 24.73 2.812 30 8 30 15v10l3-1v-9c0-8.284-6.716-15-15-15z"/><path fill="#292F33" d="M6 27c0 1.104-.896 2-2 2H2c-1.104 0-2-.896-2-2v-9c0-1.104.896-2 2-2h2c1.104 0 2 .896 2 2v9zm30 0c0 1.104-.896 2-2 2h-2c-1.104 0-2-.896-2-2v-9c0-1.104.896-2 2-2h2c1.104 0 2 .896 2 2v9z"/><path fill="#55ACEE" d="M19.182 10.016l-6.364 1.313c-.45.093-.818.544-.818 1.004v16.185c-.638-.227-1.341-.36-2.087-.36-2.785 0-5.042 1.755-5.042 3.922 0 2.165 2.258 3.827 5.042 3.827C12.649 35.905 14.922 34 15 32V16.39l4.204-.872c.449-.093.796-.545.796-1.004v-3.832c0-.458-.368-.759-.818-.666zm8 3.151l-4.297.865c-.45.093-.885.544-.885 1.003V26.44c0-.152-.878-.24-1.4-.24-2.024 0-3.633 1.276-3.633 2.852 0 1.574 1.658 2.851 3.683 2.851s3.677-1.277 3.677-2.851l-.014-11.286 2.869-.598c.45-.093.818-.544.818-1.003v-2.33c0-.459-.368-.76-.818-.668z"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#66757F" d="M18 0C9.716 0 3 6.716 3 15v9h3v-9C6 8 11.269 2.812 18 2.812 24.73 2.812 30 8 30 15v10l3-1v-9c0-8.284-6.716-15-15-15z"/><path fill="#31373D" d="M6 27c0 1.104-.896 2-2 2H2c-1.104 0-2-.896-2-2v-9c0-1.104.896-2 2-2h2c1.104 0 2 .896 2 2v9zm30 0c0 1.104-.896 2-2 2h-2c-1.104 0-2-.896-2-2v-9c0-1.104.896-2 2-2h2c1.104 0 2 .896 2 2v9z"/><path fill="#55ACEE" d="M19.182 10.016l-6.364 1.313c-.45.093-.818.544-.818 1.004v16.185c-.638-.227-1.341-.36-2.087-.36-2.785 0-5.042 1.755-5.042 3.922 0 2.165 2.258 3.827 5.042 3.827C12.649 35.905 14.922 34 15 32V16.39l4.204-.872c.449-.093.796-.545.796-1.004v-3.832c0-.458-.368-.759-.818-.666zm8 3.151l-4.297.865c-.45.093-.885.544-.885 1.003V26.44c0-.152-.878-.24-1.4-.24-2.024 0-3.633 1.276-3.633 2.852 0 1.574 1.658 2.851 3.683 2.851s3.677-1.277 3.677-2.851l-.014-11.286 2.869-.598c.45-.093.818-.544.818-1.003v-2.33c0-.459-.368-.76-.818-.668z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f3a9.svg b/public/emoji/1f3a9.svg
index 503078ad3644c75d4e4b4f2d85fb77dab9fbf6b9..1017cef3a242c697225b1bc712a06f2d7e97945b 100644
--- a/public/emoji/1f3a9.svg
+++ b/public/emoji/1f3a9.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#292F33" d="M30.198 27.385L32 3.816c0-.135-.008-.263-.021-.373.003-.033.021-.075.021-.11C32 1.529 25.731.066 18 .066c-7.732 0-14 1.462-14 3.267 0 .035.017.068.022.102-.014.11-.022.23-.022.365l1.802 23.585C2.298 28.295 0 29.576 0 31c0 2.762 8.611 5 18 5s18-2.238 18-5c0-1.424-2.298-2.705-5.802-3.615z"/><path fill="#66757F" d="M17.536 6.595c-4.89 0-8.602-.896-10.852-1.646-.524-.175-.808-.741-.633-1.265.175-.524.739-.808 1.265-.633 2.889.963 10.762 2.891 21.421-.016.529-.142 1.082.168 1.227.702.146.533-.169 1.083-.702 1.228-4.406 1.202-8.347 1.63-11.726 1.63z"/><path fill="#744EAA" d="M30.198 27.385l.446-5.829c-7.705 2.157-17.585 2.207-25.316-.377l.393 5.142c.069.304.113.65.113 1.076 0 1.75 1.289 2.828 2.771 3.396 4.458 1.708 13.958 1.646 18.807.149 1.467-.453 2.776-1.733 2.776-3.191 0-.119.015-.241.024-.361l-.014-.005z"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#31373D" d="M30.198 27.385L32 3.816c0-.135-.008-.263-.021-.373.003-.033.021-.075.021-.11C32 1.529 25.731.066 18 .066c-7.732 0-14 1.462-14 3.267 0 .035.017.068.022.102-.014.11-.022.23-.022.365l1.802 23.585C2.298 28.295 0 29.576 0 31c0 2.762 8.611 5 18 5s18-2.238 18-5c0-1.424-2.298-2.705-5.802-3.615z"/><path fill="#66757F" d="M17.536 6.595c-4.89 0-8.602-.896-10.852-1.646-.524-.175-.808-.741-.633-1.265.175-.524.739-.808 1.265-.633 2.889.963 10.762 2.891 21.421-.016.529-.142 1.082.168 1.227.702.146.533-.169 1.083-.702 1.228-4.406 1.202-8.347 1.63-11.726 1.63z"/><path fill="#744EAA" d="M30.198 27.385l.446-5.829c-7.705 2.157-17.585 2.207-25.316-.377l.393 5.142c.069.304.113.65.113 1.076 0 1.75 1.289 2.828 2.771 3.396 4.458 1.708 13.958 1.646 18.807.149 1.467-.453 2.776-1.733 2.776-3.191 0-.119.015-.241.024-.361l-.014-.005z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f3ae.svg b/public/emoji/1f3ae.svg
index 774d681775ab5e1672c1d205a5e054cb6e89ae5f..4ec08ae49a692e66d02c54a4c26161c45fe3fc1f 100644
--- a/public/emoji/1f3ae.svg
+++ b/public/emoji/1f3ae.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#292F33" d="M2.13 14.856l-.004-.002S.075 27.271.075 29.061c0 1.824 1.343 3.302 3 3.302.68 0 1.3-.258 1.803-.678l10.166-8.938L2.13 14.856zm31.69 0l.004-.002s2.051 12.417 2.051 14.207c0 1.824-1.343 3.302-3 3.302-.68 0-1.3-.258-1.803-.678l-10.166-8.938 12.914-7.891z"/><g fill="#14171A"><circle cx="25.975" cy="15.551" r="8.5"/><circle cx="9.975" cy="15.551" r="8.5"/><path d="M9.975 7.051h16v16.87h-16z"/></g><circle fill="#14171A" cx="13.075" cy="23.301" r="5"/><circle fill="#14171A" cx="22.875" cy="23.301" r="5"/><circle fill="#67757F" cx="22.875" cy="23.301" r="3"/><circle fill="#67757F" cx="13.075" cy="23.301" r="3"/><circle fill="#FFCC4D" cx="25.735" cy="11.133" r="1.603"/><circle fill="#77B255" cx="25.735" cy="17.607" r="1.603"/><circle fill="#50A5E6" cx="22.498" cy="14.37" r="1.603"/><circle fill="#DD2E44" cx="28.972" cy="14.37" r="1.603"/><path d="M11.148 12.514v-2.168c0-.279-.226-.505-.505-.505H9.085c-.279 0-.505.226-.505.505v2.168l1.284 1.285 1.284-1.285zm-2.569 3.63v2.168c0 .279.226.505.505.505h1.558c.279 0 .505-.226.505-.505v-2.168l-1.284-1.285-1.284 1.285zm5.269-3.1H11.68l-1.285 1.285 1.285 1.285h2.168c.279 0 .505-.227.505-.505V13.55c0-.279-.226-.506-.505-.506zm-5.799 0H5.88c-.279 0-.505.227-.505.505v1.558c0 .279.226.505.505.505h2.168l1.285-1.285-1.284-1.283z" fill="#8899A6"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#31373D" d="M2.13 14.856l-.004-.002S.075 27.271.075 29.061c0 1.824 1.343 3.302 3 3.302.68 0 1.3-.258 1.803-.678l10.166-8.938L2.13 14.856zm31.69 0l.004-.002s2.051 12.417 2.051 14.207c0 1.824-1.343 3.302-3 3.302-.68 0-1.3-.258-1.803-.678l-10.166-8.938 12.914-7.891z"/><g fill="#14171A"><circle cx="25.975" cy="15.551" r="8.5"/><circle cx="9.975" cy="15.551" r="8.5"/><path d="M9.975 7.051h16v16.87h-16z"/></g><circle fill="#14171A" cx="13.075" cy="23.301" r="5"/><circle fill="#14171A" cx="22.875" cy="23.301" r="5"/><circle fill="#67757F" cx="22.875" cy="23.301" r="3"/><circle fill="#67757F" cx="13.075" cy="23.301" r="3"/><circle fill="#FFCC4D" cx="25.735" cy="11.133" r="1.603"/><circle fill="#77B255" cx="25.735" cy="17.607" r="1.603"/><circle fill="#50A5E6" cx="22.498" cy="14.37" r="1.603"/><circle fill="#DD2E44" cx="28.972" cy="14.37" r="1.603"/><path d="M11.148 12.514v-2.168c0-.279-.226-.505-.505-.505H9.085c-.279 0-.505.226-.505.505v2.168l1.284 1.285 1.284-1.285zm-2.569 3.63v2.168c0 .279.226.505.505.505h1.558c.279 0 .505-.226.505-.505v-2.168l-1.284-1.285-1.284 1.285zm5.269-3.1H11.68l-1.285 1.285 1.285 1.285h2.168c.279 0 .505-.227.505-.505V13.55c0-.279-.226-.506-.505-.506zm-5.799 0H5.88c-.279 0-.505.227-.505.505v1.558c0 .279.226.505.505.505h2.168l1.285-1.285-1.284-1.283z" fill="#8899A6"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f3b0.svg b/public/emoji/1f3b0.svg
index af46ef62e17e1996c887e1e29799cba817639deb..789fd08d1b50aa9268d640dfe4a687c8b33cbfce 100644
--- a/public/emoji/1f3b0.svg
+++ b/public/emoji/1f3b0.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#292F33" d="M36 27c0 2.209-1.791 4-4 4H4c-2.209 0-4-1.791-4-4V9c0-2.209 1.791-4 4-4h28c2.209 0 4 1.791 4 4v18z"/><path fill="#CCD6DD" d="M11 24c0 2.209-.791 3-3 3H4c-2.209 0-3-.791-3-3V12c0-2.209.791-3 3-3h4c2.209 0 3 .791 3 3v12zm12 0c0 2.209-.791 3-3 3h-4c-2.209 0-3-.791-3-3V12c0-2.209.791-3 3-3h4c2.209 0 3 .791 3 3v12zm12 0c0 2.209-.791 3-3 3h-4c-2.209 0-3-.791-3-3V12c0-2.209.791-3 3-3h4c2.209 0 3 .791 3 3v12z"/><path fill="#E1E8ED" d="M1 13h10v10H1zm12 0h10v10H13zm12 0h10v10H25z"/><path fill="#BE1931" d="M30.795 15.685h-2.816c-.594 0-.813-.385-.813-.759 0-.385.209-.759.813-.759h3.983c.561 0 .792.506.792.792 0 .22-.121.451-.253.726l-2.729 5.545c-.308.615-.429.836-.925.836-.604 0-.912-.463-.912-.781 0-.133.033-.232.109-.385l2.751-5.215zm-12 0h-2.816c-.594 0-.814-.385-.814-.759 0-.385.209-.759.814-.759h3.983c.561 0 .792.506.792.792 0 .22-.121.451-.253.726l-2.729 5.545c-.308.615-.429.836-.924.836-.605 0-.913-.463-.913-.781 0-.133.033-.232.11-.385l2.75-5.215zm-12 0H3.979c-.594 0-.814-.385-.814-.759 0-.385.209-.759.814-.759h3.983c.561 0 .792.506.792.792 0 .22-.121.451-.253.726L5.772 21.23c-.308.615-.429.836-.924.836-.605 0-.913-.463-.913-.781 0-.133.033-.232.11-.385l2.75-5.215z"/><path fill="#9266CC" d="M3.061 9c-.04.162-.061.329-.061.5C3 10.881 4.343 12 6 12s3-1.119 3-2.5c0-.171-.021-.338-.061-.5H3.061zm12 0c-.04.162-.061.329-.061.5 0 1.381 1.343 2.5 3 2.5 1.656 0 3-1.119 3-2.5 0-.171-.021-.338-.06-.5h-5.879zM27.06 9c-.039.162-.06.329-.06.5 0 1.381 1.344 2.5 3 2.5s3-1.119 3-2.5c0-.171-.021-.338-.061-.5H27.06z"/><path fill="#F4900C" d="M8.816 27c.112-.157.184-.324.184-.5 0-.828-1.343-1.5-3-1.5s-3 .672-3 1.5c0 .176.072.343.184.5h5.632zm12 0c.112-.157.184-.324.184-.5 0-.828-1.344-1.5-3-1.5-1.657 0-3 .672-3 1.5 0 .176.072.343.184.5h5.632zm12 0c.112-.157.184-.324.184-.5 0-.828-1.344-1.5-3-1.5s-3 .672-3 1.5c0 .176.072.343.184.5h5.632z"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#31373D" d="M36 27c0 2.209-1.791 4-4 4H4c-2.209 0-4-1.791-4-4V9c0-2.209 1.791-4 4-4h28c2.209 0 4 1.791 4 4v18z"/><path fill="#CCD6DD" d="M11 24c0 2.209-.791 3-3 3H4c-2.209 0-3-.791-3-3V12c0-2.209.791-3 3-3h4c2.209 0 3 .791 3 3v12zm12 0c0 2.209-.791 3-3 3h-4c-2.209 0-3-.791-3-3V12c0-2.209.791-3 3-3h4c2.209 0 3 .791 3 3v12zm12 0c0 2.209-.791 3-3 3h-4c-2.209 0-3-.791-3-3V12c0-2.209.791-3 3-3h4c2.209 0 3 .791 3 3v12z"/><path fill="#E1E8ED" d="M1 13h10v10H1zm12 0h10v10H13zm12 0h10v10H25z"/><path fill="#BE1931" d="M30.795 15.685h-2.816c-.594 0-.813-.385-.813-.759 0-.385.209-.759.813-.759h3.983c.561 0 .792.506.792.792 0 .22-.121.451-.253.726l-2.729 5.545c-.308.615-.429.836-.925.836-.604 0-.912-.463-.912-.781 0-.133.033-.232.109-.385l2.751-5.215zm-12 0h-2.816c-.594 0-.814-.385-.814-.759 0-.385.209-.759.814-.759h3.983c.561 0 .792.506.792.792 0 .22-.121.451-.253.726l-2.729 5.545c-.308.615-.429.836-.924.836-.605 0-.913-.463-.913-.781 0-.133.033-.232.11-.385l2.75-5.215zm-12 0H3.979c-.594 0-.814-.385-.814-.759 0-.385.209-.759.814-.759h3.983c.561 0 .792.506.792.792 0 .22-.121.451-.253.726L5.772 21.23c-.308.615-.429.836-.924.836-.605 0-.913-.463-.913-.781 0-.133.033-.232.11-.385l2.75-5.215z"/><path fill="#9266CC" d="M3.061 9c-.04.162-.061.329-.061.5C3 10.881 4.343 12 6 12s3-1.119 3-2.5c0-.171-.021-.338-.061-.5H3.061zm12 0c-.04.162-.061.329-.061.5 0 1.381 1.343 2.5 3 2.5 1.656 0 3-1.119 3-2.5 0-.171-.021-.338-.06-.5h-5.879zM27.06 9c-.039.162-.06.329-.06.5 0 1.381 1.344 2.5 3 2.5s3-1.119 3-2.5c0-.171-.021-.338-.061-.5H27.06z"/><path fill="#F4900C" d="M8.816 27c.112-.157.184-.324.184-.5 0-.828-1.343-1.5-3-1.5s-3 .672-3 1.5c0 .176.072.343.184.5h5.632zm12 0c.112-.157.184-.324.184-.5 0-.828-1.344-1.5-3-1.5-1.657 0-3 .672-3 1.5 0 .176.072.343.184.5h5.632zm12 0c.112-.157.184-.324.184-.5 0-.828-1.344-1.5-3-1.5s-3 .672-3 1.5c0 .176.072.343.184.5h5.632z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f3b1.svg b/public/emoji/1f3b1.svg
index 029f1fdcccf94f659272991cf3e7559ef8b2c9e4..28abf33e1359cd4f62cf2ba988ec29166d815939 100644
--- a/public/emoji/1f3b1.svg
+++ b/public/emoji/1f3b1.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><circle fill="#292F33" cx="18" cy="18" r="18"/><circle fill="#E1E8ED" cx="18" cy="18" r="9"/><path fill="#292F33" d="M13.703 20.203c0-1.406.773-2.443 1.881-3.041-.826-.598-1.336-1.406-1.336-2.514 0-2.057 1.705-3.375 3.797-3.375 2.039 0 3.814 1.301 3.814 3.375 0 .984-.492 1.969-1.354 2.514 1.195.598 1.881 1.688 1.881 3.041 0 2.443-1.986 4.008-4.342 4.008-2.425 0-4.341-1.652-4.341-4.008zm2.742-.176c0 .896.527 1.758 1.6 1.758 1.002 0 1.6-.861 1.6-1.758 0-1.107-.633-1.758-1.6-1.758-1.02.001-1.6.774-1.6 1.758zm.334-5.097c0 .791.457 1.336 1.266 1.336.809 0 1.283-.545 1.283-1.336 0-.756-.457-1.336-1.283-1.336-.826 0-1.266.58-1.266 1.336z"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><circle fill="#31373D" cx="18" cy="18" r="18"/><circle fill="#E1E8ED" cx="18" cy="18" r="9"/><path fill="#31373D" d="M13.703 20.203c0-1.406.773-2.443 1.881-3.041-.826-.598-1.336-1.406-1.336-2.514 0-2.057 1.705-3.375 3.797-3.375 2.039 0 3.814 1.301 3.814 3.375 0 .984-.492 1.969-1.354 2.514 1.195.598 1.881 1.688 1.881 3.041 0 2.443-1.986 4.008-4.342 4.008-2.425 0-4.341-1.652-4.341-4.008zm2.742-.176c0 .896.527 1.758 1.6 1.758 1.002 0 1.6-.861 1.6-1.758 0-1.107-.633-1.758-1.6-1.758-1.02.001-1.6.774-1.6 1.758zm.334-5.097c0 .791.457 1.336 1.266 1.336.809 0 1.283-.545 1.283-1.336 0-.756-.457-1.336-1.283-1.336-.826 0-1.266.58-1.266 1.336z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f3b3.svg b/public/emoji/1f3b3.svg
index 1e8ef3d27e2a22611626bbc9305a10ab9bd0976c..9227f288c9d1c59498bed145ebfa1819aee812e9 100644
--- a/public/emoji/1f3b3.svg
+++ b/public/emoji/1f3b3.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#CCD6DD" d="M22 10c0-1 1-3 1-5s0-3-1-4-2-1-2-1-1 0-2 1-1 2-1 4 1 4 1 5c0 3-4 5-4 9.084C14 22.417 16 29 17 31h6c1-2 3-8.583 3-11.916C26 15 22 13 22 10z"/><path fill="#BE1931" d="M18 10h4c0-.475.227-1.18.464-2h-4.927c.236.82.463 1.525.463 2zm5.902 4c-.494-.681-.976-1.333-1.332-2h-5.139c-.357.667-.839 1.319-1.332 2h7.803z"/><path fill="#CCD6DD" d="M32 13c0-1 1-3 1-5s0-3-1-4-2-1-2-1-1 0-2 1-1 2-1 4 1 4 1 5c0 3-4 5-4 9.084C24 25.417 26 32 27 34h6c1-2 3-8.583 3-11.916C36 18 32 16 32 13z"/><path fill="#BE1931" d="M28 13h4c0-.475.227-1.18.464-2h-4.927c.236.82.463 1.525.463 2zm5.902 4c-.494-.681-.976-1.333-1.332-2h-5.139c-.357.667-.839 1.319-1.332 2h7.803z"/><circle fill="#3A4449" cx="12.562" cy="23.438" r="12.562"/><circle cx="12.915" cy="18.79" r="2.316"/><circle cx="6.505" cy="20.938" r="2.316"/><circle cx="11.431" cy="28.053" r="2.316"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#CCD6DD" d="M22 10c0-1 1-3 1-5s0-3-1-4-2-1-2-1-1 0-2 1-1 2-1 4 1 4 1 5c0 3-4 5-4 9.084C14 22.417 16 29 17 31h6c1-2 3-8.583 3-11.916C26 15 22 13 22 10z"/><path fill="#BE1931" d="M18 10h4c0-.475.227-1.18.464-2h-4.927c.236.82.463 1.525.463 2zm5.902 4c-.494-.681-.976-1.333-1.332-2h-5.139c-.357.667-.839 1.319-1.332 2h7.803z"/><path fill="#CCD6DD" d="M32 13c0-1 1-3 1-5s0-3-1-4-2-1-2-1-1 0-2 1-1 2-1 4 1 4 1 5c0 3-4 5-4 9.084C24 25.417 26 32 27 34h6c1-2 3-8.583 3-11.916C36 18 32 16 32 13z"/><path fill="#BE1931" d="M28 13h4c0-.475.227-1.18.464-2h-4.927c.236.82.463 1.525.463 2zm5.902 4c-.494-.681-.976-1.333-1.332-2h-5.139c-.357.667-.839 1.319-1.332 2h7.803z"/><circle fill="#31373D" cx="12.562" cy="23.438" r="12.562"/><circle cx="12.915" cy="18.79" r="2.316"/><circle cx="6.505" cy="20.938" r="2.316"/><circle cx="11.431" cy="28.053" r="2.316"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f3b8.svg b/public/emoji/1f3b8.svg
index abd8f3afb826f42fa751f8ac15004a6e294db814..22074a11f3f0d4c8ee447a6f486050c6c0b529f3 100644
--- a/public/emoji/1f3b8.svg
+++ b/public/emoji/1f3b8.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#F18F26" d="M24.925 18.251c-2.392.797-3.189-3.189-3.189-3.189S22.824 13.971 22 13c1.283-1.282.533-1.924.533-1.924-2.203-2.202-5.772-2.202-7.974 0-.278.278-.466.526-.624.764-.068.097-.13.196-.191.296-.005.01-.01.021-.016.03-.322.535-.554 1.107-.682 1.701-.176.359-.427.744-.879 1.195-1.595 1.594-5.581-.797-8.771 2.392-.033.033-.051.078-.078.117-.106.095-.218.178-.321.282-3.743 3.743-3.386 10.169.798 14.353 3.974 3.975 9.968 4.487 13.767 1.319.066-.035.132-.069.185-.123.081-.081.142-.158.218-.237.06-.056.123-.104.181-.161 1.909-1.91 2.641-4.206 2.352-6.553-.076-1.116-.187-1.991.439-2.617.797-.797 3.189 0 4.783-1.595 2.393-2.392.718-4.491-.795-3.988z"/><path fill="#642116" d="M17.786 16.093L29.928 3.95l2.12 2.121-12.14 12.142z"/><path fill="#F18F26" d="M35.204 3.185c.438.438.438 1.155-.001 1.593l-3.186 3.185c-.439.438-1.155.438-1.593 0l-2.39-2.389c-.438-.438-.438-1.155.001-1.593L31.222.796c.438-.438 1.155-.438 1.593 0l2.389 2.389z"/><path fill="#CCD6DD" d="M15.05 17.416L16.463 16 20 19.536l-1.414 1.414zm-3.536 3.534l1.414-1.415 3.535 3.536-1.414 1.414z"/><path fill="#642116" d="M12.928 25.192c.389.389.389 1.025 0 1.414s-1.025.389-1.414 0l-2.122-2.121c-.389-.389-.389-1.025 0-1.414s1.025-.389 1.414 0l2.122 2.121z"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#BB1A34" d="M21.828 20.559C19.707 21.266 19 17.731 19 17.731s.965-.968.235-1.829c1.138-1.137.473-1.707.473-1.707-1.954-1.953-5.119-1.953-7.071 0-.246.246-.414.467-.553.678-.061.086-.115.174-.17.262l-.014.027c-.285.475-.491.982-.605 1.509-.156.319-.379.659-.779 1.06-1.414 1.414-4.949-.707-7.778 2.121-.029.029-.045.069-.069.104-.094.084-.193.158-.284.25-3.319 3.319-3.003 9.018.708 12.728 3.524 3.525 8.84 3.979 12.209 1.17.058-.031.117-.061.165-.109.071-.072.126-.14.193-.21.053-.049.109-.093.161-.143 1.693-1.694 2.342-3.73 2.086-5.811-.068-.99-.165-1.766.39-2.321.707-.707 2.828 0 4.242-1.414 2.117-2.122.631-3.983-.711-3.537z"/><path fill="#292F33" d="M14.987 18.91L30.326 3.572l2.121 2.122-15.339 15.339z"/><path fill="#F5F8FA" d="M10.001 29.134c1.782 1.277 1.959 3.473 1.859 4.751-.042.528.519.898.979.637 2.563-1.456 4.602-3.789 4.038-7.853-.111-.735.111-2.117 2.272-2.406 2.161-.29 2.941-1.099 3.208-1.485.153-.221.29-.832-.312-.854-.601-.022-2.094.446-3.431-1.136-1.337-1.582-1.559-2.228-1.604-2.473-.045-.245-1.409-3.694-2.525-1.864-.927 1.521-1.958 4.509-5.287 5.287-1.355.316-3.069 1.005-3.564 1.96-.832 1.604.46 2.725 1.574 3.483 1.115.757 2.793 1.953 2.793 1.953z"/><path fill="#292F33" d="M13.072 19.412l1.414-1.415 3.536 3.535-1.414 1.414zm-4.475 4.474l1.415-1.414 3.535 3.535-1.414 1.414z"/><path fill="#CCD6DD" d="M7.396 27.189L29.198 5.427l.53.531L7.927 27.72zm.869.868L30.067 6.296l.53.531L8.796 28.59z"/><path fill="#292F33" d="M9.815 28.325c.389.389.389 1.025 0 1.414s-1.025.389-1.414 0l-2.122-2.121c-.389-.389-.389-1.025 0-1.414h.001c.389-.389 1.025-.389 1.414 0l2.121 2.121z"/><circle fill="#292F33" cx="13.028" cy="29.556" r="1"/><path fill="#292F33" d="M14.445 31.881c0 .379-.307.686-.686.686-.379 0-.686-.307-.686-.686 0-.379.307-.686.686-.686.379 0 .686.307.686.686z"/><path fill="#BB1A34" d="M35.088 4.54c.415.415.415 1.095-.001 1.51l-4.362 3.02c-.416.415-1.095.415-1.51 0L26.95 6.804c-.415-.415-.415-1.095.001-1.51l3.02-4.361c.416-.415 1.095-.415 1.51 0l3.607 3.607z"/><circle fill="#66757F" cx="32.123" cy="9.402" r=".625"/><circle fill="#66757F" cx="33.381" cy="8.557" r=".625"/><circle fill="#66757F" cx="34.64" cy="7.712" r=".625"/><circle fill="#66757F" cx="26.712" cy="3.811" r=".625"/><circle fill="#66757F" cx="27.555" cy="2.571" r=".625"/><circle fill="#66757F" cx="28.398" cy="1.332" r=".625"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f3b9.svg b/public/emoji/1f3b9.svg
index 1901adbbd0066a453c926f73843145f7c3359289..6ce8afd98b4af9694b0032fd40fa6787d59810a4 100644
--- a/public/emoji/1f3b9.svg
+++ b/public/emoji/1f3b9.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#292F33" d="M2 36s-2 0-2-2V2s0-2 2-2h32.031C36 0 36 2 36 2v32s0 2-2 2H2z"/><path d="M19 33s0 1 1 1h5c1 0 1-1 1-1V5h-7v28zm9-28v28s0 1 1 1h4c1 0 1-1 1-1V5h-6zM10 33s0 1 1 1h5c1 0 1-1 1-1V5h-7v28zm-8 0s0 1 1 1h4c1 0 1-1 1-1V5H2v28z" fill="#E1E8ED"/><path fill="#292F33" d="M30 23s0 1-1 1h-4c-1 0-1-1-1-1V3h6v20zm-9 0s0 1-1 1h-4c-1 0-1-1-1-1V3h6v20zm-9 0s0 1-1 1H7c-1 0-1-1-1-1V3h6v20z"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#31373D" d="M2 36s-2 0-2-2V2s0-2 2-2h32.031C36 0 36 2 36 2v32s0 2-2 2H2z"/><path d="M19 33s0 1 1 1h5c1 0 1-1 1-1V5h-7v28zm9-28v28s0 1 1 1h4c1 0 1-1 1-1V5h-6zM10 33s0 1 1 1h5c1 0 1-1 1-1V5h-7v28zm-8 0s0 1 1 1h4c1 0 1-1 1-1V5H2v28z" fill="#E1E8ED"/><path fill="#31373D" d="M30 23s0 1-1 1h-4c-1 0-1-1-1-1V3h6v20zm-9 0s0 1-1 1h-4c-1 0-1-1-1-1V3h6v20zm-9 0s0 1-1 1H7c-1 0-1-1-1-1V3h6v20z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f3bb.svg b/public/emoji/1f3bb.svg
index 4555b5e97c01ce0167d570d51917c62b2b8453fb..efb7d5da7eeb55239d81d1e5d28e815214f73734 100644
--- a/public/emoji/1f3bb.svg
+++ b/public/emoji/1f3bb.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#F18F26" d="M23.912 12.087C22.219 10.394 20.318 9.5 18.415 9.5c-1.626 0-3.189.667-4.402 1.88-1.519 1.519-1.727 2.39-1.865 2.966-.071.295-.106.421-.255.57-.106.106-.155.256-.14.406.015.149.1.286.225.369.013.009.324.22.368.651.039.394-.13 1.08-1.16 2.11-.629.629-1.252.948-1.85.948-.981 0-1.649-.87-1.654-.877-.11-.15-.295-.226-.48-.197-.185.029-.337.159-.396.335-.221.663-.251.668-.535.709-.59.086-1.578.229-3.624 2.275C.972 23.32.381 25.412.939 27.693c.395 1.617 1.408 3.358 2.708 4.659 1.408 1.408 3.802 2.912 6.301 2.912 1.654 0 3.137-.643 4.406-1.912 2.045-2.046 2.189-3.033 2.274-3.624.042-.284.046-.313.71-.534.177-.06.307-.212.336-.396.029-.184-.046-.369-.196-.48-.008-.006-.805-.619-.873-1.527-.047-.638.27-1.302.944-1.976.963-.963 1.622-1.165 2.005-1.165.504 0 .746.357.752.366.08.13.216.216.368.234.142.016.303-.035.411-.144.149-.149.275-.185.57-.255.576-.139 1.446-.348 2.965-1.866 2.286-2.286 2.955-6.234-.708-9.898z"/><path fill="#292F33" d="M32 4.999L18.122 20 16 17.879 31 4z"/><path fill="#F18F26" d="M34.704 2.685c.438.438.438 1.155-.001 1.592l-3.186 3.186c-.438.438-1.155.438-1.593-.001l-1.39-1.389c-.438-.438-.438-1.155.001-1.592l3.187-3.186c.438-.438 1.155-.438 1.593 0l1.389 1.39z"/><circle fill="#642116" cx="33" cy="8" r="1"/><circle fill="#642116" cx="35" cy="6" r="1"/><circle fill="#642116" cx="28" cy="3" r="1"/><circle fill="#642116" cx="30" cy="1" r="1"/><path fill="#292F33" d="M2 32l4-5s1 0 2 1 1 2 1 2l-5 4-2-2z"/><path fill="#FEE7B8" d="M13 27c-.256 0-.512-.098-.707-.293l-3-3c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3 3c.391.391.391 1.023 0 1.414-.196.195-.452.293-.707.293z"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#F18F26" d="M23.912 12.087C22.219 10.394 20.318 9.5 18.415 9.5c-1.626 0-3.189.667-4.402 1.88-1.519 1.519-1.727 2.39-1.865 2.966-.071.295-.106.421-.255.57-.106.106-.155.256-.14.406.015.149.1.286.225.369.013.009.324.22.368.651.039.394-.13 1.08-1.16 2.11-.629.629-1.252.948-1.85.948-.981 0-1.649-.87-1.654-.877-.11-.15-.295-.226-.48-.197-.185.029-.337.159-.396.335-.221.663-.251.668-.535.709-.59.086-1.578.229-3.624 2.275C.972 23.32.381 25.412.939 27.693c.395 1.617 1.408 3.358 2.708 4.659 1.408 1.408 3.802 2.912 6.301 2.912 1.654 0 3.137-.643 4.406-1.912 2.045-2.046 2.189-3.033 2.274-3.624.042-.284.046-.313.71-.534.177-.06.307-.212.336-.396.029-.184-.046-.369-.196-.48-.008-.006-.805-.619-.873-1.527-.047-.638.27-1.302.944-1.976.963-.963 1.622-1.165 2.005-1.165.504 0 .746.357.752.366.08.13.216.216.368.234.142.016.303-.035.411-.144.149-.149.275-.185.57-.255.576-.139 1.446-.348 2.965-1.866 2.286-2.286 2.955-6.234-.708-9.898z"/><path fill="#292F33" d="M34 3L19 20l-3-3L33 2z"/><path fill="#642116" d="M13 27c-.256 0-.512-.098-.707-.293l-3-3c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3 3c.391.391.391 1.023 0 1.414-.196.195-.452.293-.707.293z"/><path fill="#CCD6DD" d="M4.628 29.935L28.8 5.807l.53.531L5.16 30.466zm.869.869L29.67 6.676l.531.532L6.028 31.335z"/><path fill="#F18F26" d="M34.704 2.685c.438.438.438 1.155-.001 1.592l-3.186 3.186c-.438.438-1.155.438-1.593-.001l-1.39-1.389c-.438-.438-.438-1.155.001-1.592l3.187-3.186c.438-.438 1.155-.438 1.593 0l1.389 1.39z"/><path fill="#292F33" d="M2 32l4-5s1 0 2 1 1 2 1 2l-5 4-2-2z"/><circle fill="#642116" cx="33" cy="8" r="1"/><circle fill="#642116" cx="35" cy="6" r="1"/><circle fill="#642116" cx="28" cy="3" r="1"/><circle fill="#642116" cx="30" cy="1" r="1"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f3bc.svg b/public/emoji/1f3bc.svg
index 4b187e0a4406596ceeb8fc6c3c898218b270c3cf..5628fcacf2c609f5dfc9db5f71028694dab27406 100644
--- a/public/emoji/1f3bc.svg
+++ b/public/emoji/1f3bc.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#8899A6" d="M36 5V3H0v30h36v-2H6v-5h30v-2H6v-5h30v-2H6v-5h30v-2H6V5z"/><path fill="#292F33" d="M27.827 20.562c-.223-.646-.543-1.227-.947-1.723-.411-.513-.926-.928-1.529-1.232-.61-.31-1.259-.46-1.981-.46-.086 0-.208.009-.366.026l-.533-2.593c.613-.603 1.156-1.299 1.616-2.077.499-.847.885-1.77 1.145-2.741.269-.978.399-1.942.399-2.945 0-2.106-.542-3.94-1.627-5.475-.158-.196-.288-.343-.387-.431-.394-.355-.788-.412-1.704.266-.47.352-.883.86-1.224 1.506-.352.644-.608 1.366-.786 2.2-.185.826-.283 1.723-.292 2.684.041 1.352.234 2.701.576 4.013-.77.779-1.392 1.43-1.881 1.951-.521.569-1.038 1.222-1.539 1.943-.495.711-.91 1.493-1.233 2.324-.317.807-.497 1.693-.533 2.655.008.982.195 1.944.561 2.864.365.902.884 1.726 1.546 2.45.665.718 1.448 1.287 2.325 1.694 1.23.569 2.644.749 4.02.51.063.288.146.629.244 1.022.157.647.274 1.172.35 1.56.073.391.109.766.109 1.122 0 .541-.059.955-.197 1.301-.05.202-.185.412-.401.62-.233.227-.508.401-.839.533-.468.184-.922.231-1.289.181.195-.105.375-.241.537-.405.433-.443.652-.988.652-1.622 0-.447-.109-.875-.328-1.282-.215-.375-.508-.684-.886-.929-.378-.225-.778-.341-1.226-.341h-.006c-.512.034-.954.195-1.301.471-.36.266-.646.619-.852 1.051-.193.406-.307.847-.338 1.362.04 1.04.477 1.885 1.306 2.508.784.581 1.707.877 2.739.877.743 0 1.434-.164 2.053-.487.634-.326 1.148-.796 1.529-1.402.37-.602.559-1.291.559-2.046 0-.495-.043-.96-.129-1.419-.085-.458-.211-1.08-.384-1.869-.124-.535-.219-.987-.288-1.35.965-.428 1.712-1.049 2.226-1.85.576-.898.867-1.908.867-3-.001-.665-.112-1.342-.333-2.015zm-3.122 5.178l-1.047-5.149c.261.056.502.147.727.276.396.224.703.529.945.938.241.39.392.838.456 1.303 0 1.246-.354 2.115-1.081 2.632zM23.547 7.101c-.181.526-.43 1.057-.743 1.577-.307.517-.629.973-.959 1.359-.105.125-.202.231-.288.322-.078-.354-.128-.746-.149-1.165.016-.685.116-1.364.305-2.081.17-.661.408-1.259.695-1.756.305-.468.621-.705.944-.705.115 0 .196.028.259.087.07.071.119.208.15.454.03.133.047.303.047.494 0 .443-.088.918-.261 1.414zM18.602 18.58c.653-.943 1.452-1.837 2.431-2.718l.339 1.739c-.717.362-1.321.9-1.801 1.61-.552.82-.846 1.727-.872 2.717.017.913.309 1.736.871 2.451.566.708 1.294 1.181 2.169 1.4l.12.03.122-.029c.537-.127.594-.471.594-.613 0-.345-.224-.621-.579-.72-.367-.17-.637-.417-.82-.758-.202-.368-.309-.713-.309-.994 0-.476.17-.903.516-1.303.214-.242.432-.432.654-.572l1.093 5.508c-.382.081-.733.132-1.046.152-1.384-.045-2.518-.5-3.369-1.35-.434-.442-.747-.907-.958-1.423-.213-.516-.327-1.059-.342-1.584.029-1.27.429-2.463 1.187-3.543z"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#8899A6" d="M36 5V3H0v30h36v-2H6v-5h30v-2H6v-5h30v-2H6v-5h30v-2H6V5z"/><path fill="#31373D" d="M27.827 20.562c-.223-.646-.543-1.227-.947-1.723-.411-.513-.926-.928-1.529-1.232-.61-.31-1.259-.46-1.981-.46-.086 0-.208.009-.366.026l-.533-2.593c.613-.603 1.156-1.299 1.616-2.077.499-.847.885-1.77 1.145-2.741.269-.978.399-1.942.399-2.945 0-2.106-.542-3.94-1.627-5.475-.158-.196-.288-.343-.387-.431-.394-.355-.788-.412-1.704.266-.47.352-.883.86-1.224 1.506-.352.644-.608 1.366-.786 2.2-.185.826-.283 1.723-.292 2.684.041 1.352.234 2.701.576 4.013-.77.779-1.392 1.43-1.881 1.951-.521.569-1.038 1.222-1.539 1.943-.495.711-.91 1.493-1.233 2.324-.317.807-.497 1.693-.533 2.655.008.982.195 1.944.561 2.864.365.902.884 1.726 1.546 2.45.665.718 1.448 1.287 2.325 1.694 1.23.569 2.644.749 4.02.51.063.288.146.629.244 1.022.157.647.274 1.172.35 1.56.073.391.109.766.109 1.122 0 .541-.059.955-.197 1.301-.05.202-.185.412-.401.62-.233.227-.508.401-.839.533-.468.184-.922.231-1.289.181.195-.105.375-.241.537-.405.433-.443.652-.988.652-1.622 0-.447-.109-.875-.328-1.282-.215-.375-.508-.684-.886-.929-.378-.225-.778-.341-1.226-.341h-.006c-.512.034-.954.195-1.301.471-.36.266-.646.619-.852 1.051-.193.406-.307.847-.338 1.362.04 1.04.477 1.885 1.306 2.508.784.581 1.707.877 2.739.877.743 0 1.434-.164 2.053-.487.634-.326 1.148-.796 1.529-1.402.37-.602.559-1.291.559-2.046 0-.495-.043-.96-.129-1.419-.085-.458-.211-1.08-.384-1.869-.124-.535-.219-.987-.288-1.35.965-.428 1.712-1.049 2.226-1.85.576-.898.867-1.908.867-3-.001-.665-.112-1.342-.333-2.015zm-3.122 5.178l-1.047-5.149c.261.056.502.147.727.276.396.224.703.529.945.938.241.39.392.838.456 1.303 0 1.246-.354 2.115-1.081 2.632zM23.547 7.101c-.181.526-.43 1.057-.743 1.577-.307.517-.629.973-.959 1.359-.105.125-.202.231-.288.322-.078-.354-.128-.746-.149-1.165.016-.685.116-1.364.305-2.081.17-.661.408-1.259.695-1.756.305-.468.621-.705.944-.705.115 0 .196.028.259.087.07.071.119.208.15.454.03.133.047.303.047.494 0 .443-.088.918-.261 1.414zM18.602 18.58c.653-.943 1.452-1.837 2.431-2.718l.339 1.739c-.717.362-1.321.9-1.801 1.61-.552.82-.846 1.727-.872 2.717.017.913.309 1.736.871 2.451.566.708 1.294 1.181 2.169 1.4l.12.03.122-.029c.537-.127.594-.471.594-.613 0-.345-.224-.621-.579-.72-.367-.17-.637-.417-.82-.758-.202-.368-.309-.713-.309-.994 0-.476.17-.903.516-1.303.214-.242.432-.432.654-.572l1.093 5.508c-.382.081-.733.132-1.046.152-1.384-.045-2.518-.5-3.369-1.35-.434-.442-.747-.907-.958-1.423-.213-.516-.327-1.059-.342-1.584.029-1.27.429-2.463 1.187-3.543z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f3c1.svg b/public/emoji/1f3c1.svg
index 4a299f7b8d4f747f354ca568631ba66e79882960..695f0ef331cd1420049f6dada0e26ccc6230a5a5 100644
--- a/public/emoji/1f3c1.svg
+++ b/public/emoji/1f3c1.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#8899A6" d="M5 36c-1.104 0-2-.896-2-2V3c0-1.104.896-2 2-2s2 .896 2 2v31c0 1.104-.896 2-2 2z"/><path fill="#AAB8C2" d="M5 1c-1.105 0-2 .895-2 2v31c0 .276.224.5.5.5s.5-.224.5-.5V4.414C4 3.633 4.633 3 5.414 3H7c0-1.105-.895-2-2-2z"/><path fill="#8899A6" d="M5 36c-1.104 0-2-.896-2-2V3c0-1.104.896-2 2-2s2 .896 2 2v31c0 1.104-.896 2-2 2z"/><path fill="#AAB8C2" d="M5 1c-1.105 0-2 .895-2 2v31c0 .276.224.5.5.5s.5-.224.5-.5V4.414C4 3.633 4.633 3 5.414 3H7c0-1.105-.895-2-2-2z"/><path fill="#292F33" d="M32.396 3.082C30.732 2.363 28.959 2.006 27 1.974l-1.375.38L21 3l-1-.128c-.237.051-.476.099-.711.15-2.169.469-4.23.894-6.289.982L12 5 6 4v19h6l1 2h.077c2.244-.096 4.472-.556 6.633-1.022l.29-.061.646-.645 5.438-.708.916.41c1.68.032 3.193.335 4.604.944.309.133.665.103.945-.082.282-.186.451-.499.451-.836V4c0-.399-.237-.76-.604-.918z"/><path fill="#E1E8ED" d="M13 4.004c-.239.01-.478.035-.717.035-1.797 0-3.396-.313-4.887-.957-.308-.135-.665-.103-.945.083C6.169 3.349 6 3.664 6 4v6s3.292 1 7 1V4.004zM20 10s-3.75 1-7 1v7c3 0 7-1 7-1v-7zm7-1V1.974c-.096-.002-.186-.013-.283-.013-2.267 0-4.521.442-6.717.911V10s2.167-1 7-1zM6.604 23.918c1.5.648 3.09.993 4.82 1.082H13v-7c-4.167 0-7-1-7-1v6c0 .399.237.76.604.918zM20 17v6.916c2.313-.499 4.511-.955 6.717-.955.097 0 .187.011.283.013V16c-4.5 0-7 1-7 1zm7-1c2.676 0 4.82.56 6 .954V9.908C31.853 9.527 29.769 9 27 9v7z"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#8899A6" d="M5 36c-1.104 0-2-.896-2-2V3c0-1.104.896-2 2-2s2 .896 2 2v31c0 1.104-.896 2-2 2z"/><path fill="#AAB8C2" d="M5 1c-1.105 0-2 .895-2 2v31c0 .276.224.5.5.5s.5-.224.5-.5V4.414C4 3.633 4.633 3 5.414 3H7c0-1.105-.895-2-2-2z"/><path fill="#8899A6" d="M5 36c-1.104 0-2-.896-2-2V3c0-1.104.896-2 2-2s2 .896 2 2v31c0 1.104-.896 2-2 2z"/><path fill="#AAB8C2" d="M5 1c-1.105 0-2 .895-2 2v31c0 .276.224.5.5.5s.5-.224.5-.5V4.414C4 3.633 4.633 3 5.414 3H7c0-1.105-.895-2-2-2z"/><path fill="#31373D" d="M32.396 3.082C30.732 2.363 28.959 2.006 27 1.974l-1.375.38L21 3l-1-.128c-.237.051-.476.099-.711.15-2.169.469-4.23.894-6.289.982L12 5 6 4v19h6l1 2h.077c2.244-.096 4.472-.556 6.633-1.022l.29-.061.646-.645 5.438-.708.916.41c1.68.032 3.193.335 4.604.944.309.133.665.103.945-.082.282-.186.451-.499.451-.836V4c0-.399-.237-.76-.604-.918z"/><path fill="#E1E8ED" d="M13 4.004c-.239.01-.478.035-.717.035-1.797 0-3.396-.313-4.887-.957-.308-.135-.665-.103-.945.083C6.169 3.349 6 3.664 6 4v6s3.292 1 7 1V4.004zM20 10s-3.75 1-7 1v7c3 0 7-1 7-1v-7zm7-1V1.974c-.096-.002-.186-.013-.283-.013-2.267 0-4.521.442-6.717.911V10s2.167-1 7-1zM6.604 23.918c1.5.648 3.09.993 4.82 1.082H13v-7c-4.167 0-7-1-7-1v6c0 .399.237.76.604.918zM20 17v6.916c2.313-.499 4.511-.955 6.717-.955.097 0 .187.011.283.013V16c-4.5 0-7 1-7 1zm7-1c2.676 0 4.82.56 6 .954V9.908C31.853 9.527 29.769 9 27 9v7z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f3c2-1f3fb.svg b/public/emoji/1f3c2-1f3fb.svg
index 82483f70ab1a83bfc4eb0f2992ba66eca11b0718..627fa068de01939319647c629b03910128142f03 100644
--- a/public/emoji/1f3c2-1f3fb.svg
+++ b/public/emoji/1f3c2-1f3fb.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#E1E8ED" d="M36 16v16s0 4-4 4H4c-4 0-4-4-4-4v-2s17-10 36-14z"/><path fill="#EA596E" d="M32.816 20.98c.462 1.003.023 2.19-.98 2.653L8.221 34.511c-1.003.462-2.19.023-2.652-.979l-.837-1.817c-.462-1.003-.023-2.191.979-2.653l23.615-10.877c1.004-.462 2.191-.022 2.654.979l.836 1.816z"/><path fill="#67757F" d="M25.406 26c-.3 0-.605-.067-.893-.211l-2-1c-.439-.22-.78-.592-.963-1.046l-1.682-4.204-4.204-1.682c-1.025-.41-1.524-1.574-1.114-2.6.41-1.026 1.576-1.525 2.6-1.114l5.001 2c.508.203.91.606 1.114 1.114l1.717 4.294 1.32.66c.988.494 1.389 1.695.895 2.684-.35.701-1.056 1.105-1.791 1.105z"/><path fill="#67757F" d="M16.409 30c-.733.001-1.44-.404-1.791-1.105l-1-2c-.199-.397-.259-.851-.172-1.287l.848-4.241-2.602-4.337c-.568-.947-.261-2.175.686-2.744.946-.569 2.175-.261 2.744.686l3 4.999c.256.427.344.934.246 1.422l-.865 4.327.693 1.386c.494.988.093 2.189-.895 2.684-.286.143-.591.21-.892.21z"/><path fill="#BBDDF5" d="M24.408 16c-3.888 0-7.231-4.309-7.6-4.8-.663-.884-.483-2.138.4-2.8.883-.662 2.135-.484 2.798.397C21.012 10.127 23.043 12 24.408 12c1.104 0 2 .896 2 2s-.895 2-2 2zm-17 4.001c-.837 0-1.618-.53-1.897-1.368-1.058-3.175-.442-6.121 1.733-8.297 1.539-1.54 3.332-2.167 3.532-2.233 1.046-.348 2.181.216 2.53 1.265.348 1.044-.213 2.172-1.254 2.526-.963.337-3.996 1.726-2.746 5.474.349 1.048-.217 2.18-1.265 2.53-.21.07-.423.103-.633.103z"/><path fill="#67757F" d="M18.408 15.5c0 1.933-1.567 3.5-3.5 3.5s-3.5-1.567-3.5-3.5v-4c0-1.933 1.567-3.5 3.5-3.5s3.5 1.567 3.5 3.5v4z"/><path fill="#BBDDF5" d="M20.408 10c0 1.104-.896 2-2 2h-7c-1.104 0-2-.896-2-2s.896-2 2-2h7c1.105 0 2 .896 2 2z"/><path fill="#BBDDF5" d="M11 18.5c-.101 0-.2-.03-.285-.089-.134-.094-.215-.247-.215-.411v-7c0-2.5 2.708-2.5 4.5-2.5s4.5 0 4.5 2.5v4c0 .208-.129.395-.324.468l-8 3c-.057.022-.117.032-.176.032z"/><path fill="#1C6399" d="M31.475 3.842l-1-3C30.406.638 30.215.5 30 .5c-.129 0-3.214.035-7.3 3.1-3.867 2.9-4.755 2.9-6.7 2.9h-3c-.133 0-.26.053-.354.147-.527.527-.666 1.268-.371 1.982.376.904 1.551 1.871 3.725 1.871 1.438 0 3.532-1.156 5.957-2.494C24.935 6.363 28.312 4.5 31 4.5c.161 0 .312-.077.405-.207.095-.131.12-.299.07-.451z"/><path fill="#F7DECE" d="M18.408 4c0 2.209-1.791 4-4 4s-4-1.791-4-4 1.791-3 4-3 4 .791 4 3z"/><path fill="#9AAAB4" d="M12 4c2 0 4-1 4 0s0 3 2 3 3-7-3-7-6 4-3 4z"/><circle fill="#BDDDF4" cx="11.5" cy="4.5" r="1.5"/><path fill="#67757F" d="M11.5 6.5c-1.103 0-2-.897-2-2s.897-2 2-2 2 .897 2 2-.897 2-2 2zm0-3c-.551 0-1 .449-1 1s.449 1 1 1 1-.449 1-1-.449-1-1-1z"/><circle fill="#BDDDF4" cx="14.5" cy="4.5" r="1.5"/><path fill="#67757F" d="M14.5 6.5c-1.103 0-2-.897-2-2s.897-2 2-2 2 .897 2 2-.897 2-2 2zm0-3c-.551 0-1 .449-1 1s.449 1 1 1 1-.449 1-1-.449-1-1-1z"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#1C6399" d="M24.434 12.633c.525-.149 1.422-.237 2.121-.201.662.034 1.486.591 1.629 1.038.143.448.09 1.074-.269 1.182s-.901-.251-1.588-.125c-.686.125-.624.445-.615.734.031.962-.508.864-.6.734-.203-.286-.563-.676-.975-1.054s-.033-2.214.297-2.308z"/><path fill="#E1E8ED" d="M36 16v16s0 4-4 4H4c-4 0-4-4-4-4v-2s17-10 36-14z"/><path fill="#EA596E" d="M32.816 20.98c.462 1.003.023 2.19-.98 2.653L8.221 34.511c-1.003.462-2.19.023-2.652-.979l-.837-1.817c-.462-1.003-.023-2.191.979-2.653l23.615-10.877c1.004-.462 2.191-.022 2.654.979l.836 1.816z"/><path fill="#1C6399" d="M13.5 25.438c-.802.902-.594 1.625-.562 1.969s2.311 2.38 2.688 2.5c1.207.386 2.805-.531 2.805-1.188 0-.474-.211-.938-.743-1.625s-.875-1.719-1.094-2.062-2.594-.157-3.094.406zm8.286-3.533c-.648 1-.349 1.688-.272 2.025.077.336 2.546 2.052 2.924 2.121 1.213.223 2.624-.897 2.535-1.547-.065-.47-.001-.663-.606-1.274-.604-.611-1.825-1.424-2.082-1.736s-2.095-.213-2.499.411z"/><path fill="#67757F" d="M24.729 21.688c-.23-1.023-1.108-3.478-1.464-4.43-.145-.389-.606-.911-1.114-1.114l-5.001-2c-.807-.324-6.026 1.939-5.458 2.886 0 0 .015 1.909 2.602 4.337-.524 1.467-.848 4.241-.848 4.241-.134 1.08 3.923 1 4.057.112s.315-2.529.934-4.032c.113-.276.167-.958 0-1.479-.167-.521-1.208-1.725-1.208-1.725s1.508.908 2.639 1.056c.131 1.023 1.223 2.302 1.454 3.444.221 1.09 3.777.345 3.407-1.296z"/><path fill="#BBDDF5" d="M24.408 12c-.429-.073-1.908-.588-2.304-.917-.396-.328-1.595-1.621-2.098-2.286-.366-.486-.99-.797-1.598-.797 0 0-5.408.011-6.408.011-2.406 0-5.125 2.489-5.585 3.294-.562.985-1.353 4.216-.509 7.195.094.333 3.53-.504 3.399-1.132-.284-1.368-.326-3.08-.125-3.536.201-.455.664-.801 1.32-1.098V18c0 .164.081.317.215.411.085.059.184.089.285.089.059 0 .119-.01.176-.032l8-3c.195-.073.324-.26.324-.468v-1.048c.594.476 1.594 1.096 1.83 1.21s1.679.812 2.707.812c.55 0 1.46-3.79.371-3.974z"/><path fill="#1C6399" d="M31.475 3.842l-1-3C30.406.638 30.215.5 30 .5c-.129 0-3.214.035-7.3 3.1-3.867 2.9-4.755 2.9-6.7 2.9h-3c-.133 0-.26.053-.354.147-.527.527-.666 1.268-.371 1.982.376.904 1.551 1.871 3.725 1.871 1.438 0 3.532-1.156 5.957-2.494C24.935 6.363 28.312 4.5 31 4.5c.161 0 .312-.077.405-.207.095-.131.12-.299.07-.451z"/><path fill="#F7DECE" d="M18.408 4c0 2.209-1.791 4-4 4s-4-1.791-4-4 1.791-3 4-3 4 .791 4 3z"/><path fill="#9AAAB4" d="M12 4c2 0 4-1 4 0s0 3 2 3 3-7-3-7-6 4-3 4z"/><circle fill="#67757F" cx="11.5" cy="4.5" r="2"/><circle fill="#BDDDF4" cx="11.5" cy="4.5" r="1"/><circle fill="#67757F" cx="14.5" cy="4.5" r="2"/><circle fill="#BDDDF4" cx="14.5" cy="4.5" r="1"/><path fill="#1C6399" d="M6.47 17.805c-.917.79-.829 1.616-.501 2.195s.575.733 1.192.662c.589-.068 1.311-.745 1.727-1.204.569-.628.16-1.533.16-1.533s.351-.091.639-.278c.354-.229.402-1.139.062-.992-1.04.449-2.249.262-3.279 1.15z"/><path fill="#55ACEE" d="M15.018 27.982c-.276-.223.119-.841 1.078-1.235.887-.365 1.267.059 1.258.17-.008.104-.425-.242-1.113.183s-.917 1.129-1.223.882zm.553.716c-.276-.223.119-.841 1.078-1.235.887-.365 1.267.059 1.258.17-.008.104-.425-.243-1.113.183s-.918 1.129-1.223.882zm7.982-4.388c-.296-.195.037-.848.952-1.335.848-.45 1.267-.065 1.269.046.002.104-.447-.2-1.09.291-.642.491-.802 1.214-1.131.998zm.621.659c-.296-.195.037-.848.952-1.335.848-.45 1.267-.065 1.269.046.002.104-.447-.2-1.09.291s-.803 1.214-1.131.998z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f3c2-1f3fc.svg b/public/emoji/1f3c2-1f3fc.svg
index 18e751d4cf4af407f254b5306eaa6012b6bb7a34..c0090e16063d52053b7e12e2837ff1a72a3518cc 100644
--- a/public/emoji/1f3c2-1f3fc.svg
+++ b/public/emoji/1f3c2-1f3fc.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#E1E8ED" d="M36 16v16s0 4-4 4H4c-4 0-4-4-4-4v-2s17-10 36-14z"/><path fill="#EA596E" d="M32.816 20.98c.462 1.003.023 2.19-.98 2.653L8.221 34.511c-1.003.462-2.19.023-2.652-.979l-.837-1.817c-.462-1.003-.023-2.191.979-2.653l23.615-10.877c1.004-.462 2.191-.022 2.654.979l.836 1.816z"/><path fill="#67757F" d="M25.406 26c-.3 0-.605-.067-.893-.211l-2-1c-.439-.22-.78-.592-.963-1.046l-1.682-4.204-4.204-1.682c-1.025-.41-1.524-1.574-1.114-2.6.41-1.026 1.576-1.525 2.6-1.114l5.001 2c.508.203.91.606 1.114 1.114l1.717 4.294 1.32.66c.988.494 1.389 1.695.895 2.684-.35.701-1.056 1.105-1.791 1.105z"/><path fill="#67757F" d="M16.409 30c-.733.001-1.44-.404-1.791-1.105l-1-2c-.199-.397-.259-.851-.172-1.287l.848-4.241-2.602-4.337c-.568-.947-.261-2.175.686-2.744.946-.569 2.175-.261 2.744.686l3 4.999c.256.427.344.934.246 1.422l-.865 4.327.693 1.386c.494.988.093 2.189-.895 2.684-.286.143-.591.21-.892.21z"/><path fill="#BBDDF5" d="M24.408 16c-3.888 0-7.231-4.309-7.6-4.8-.663-.884-.483-2.138.4-2.8.883-.662 2.135-.484 2.798.397C21.012 10.127 23.043 12 24.408 12c1.104 0 2 .896 2 2s-.895 2-2 2zm-17 4.001c-.837 0-1.618-.53-1.897-1.368-1.058-3.175-.442-6.121 1.733-8.297 1.539-1.54 3.332-2.167 3.532-2.233 1.046-.348 2.181.216 2.53 1.265.348 1.044-.213 2.172-1.254 2.526-.963.337-3.996 1.726-2.746 5.474.349 1.048-.217 2.18-1.265 2.53-.21.07-.423.103-.633.103z"/><path fill="#67757F" d="M18.408 15.5c0 1.933-1.567 3.5-3.5 3.5s-3.5-1.567-3.5-3.5v-4c0-1.933 1.567-3.5 3.5-3.5s3.5 1.567 3.5 3.5v4z"/><path fill="#BBDDF5" d="M20.408 10c0 1.104-.896 2-2 2h-7c-1.104 0-2-.896-2-2s.896-2 2-2h7c1.105 0 2 .896 2 2z"/><path fill="#BBDDF5" d="M11 18.5c-.101 0-.2-.03-.285-.089-.134-.094-.215-.247-.215-.411v-7c0-2.5 2.708-2.5 4.5-2.5s4.5 0 4.5 2.5v4c0 .208-.129.395-.324.468l-8 3c-.057.022-.117.032-.176.032z"/><path fill="#1C6399" d="M31.475 3.842l-1-3C30.406.638 30.215.5 30 .5c-.129 0-3.214.035-7.3 3.1-3.867 2.9-4.755 2.9-6.7 2.9h-3c-.133 0-.26.053-.354.147-.527.527-.666 1.268-.371 1.982.376.904 1.551 1.871 3.725 1.871 1.438 0 3.532-1.156 5.957-2.494C24.935 6.363 28.312 4.5 31 4.5c.161 0 .312-.077.405-.207.095-.131.12-.299.07-.451z"/><path fill="#F3D2A2" d="M18.408 4c0 2.209-1.791 4-4 4s-4-1.791-4-4 1.791-3 4-3 4 .791 4 3z"/><path fill="#9AAAB4" d="M12 4c2 0 4-1 4 0s0 3 2 3 3-7-3-7-6 4-3 4z"/><circle fill="#BDDDF4" cx="11.5" cy="4.5" r="1.5"/><path fill="#67757F" d="M11.5 6.5c-1.103 0-2-.897-2-2s.897-2 2-2 2 .897 2 2-.897 2-2 2zm0-3c-.551 0-1 .449-1 1s.449 1 1 1 1-.449 1-1-.449-1-1-1z"/><circle fill="#BDDDF4" cx="14.5" cy="4.5" r="1.5"/><path fill="#67757F" d="M14.5 6.5c-1.103 0-2-.897-2-2s.897-2 2-2 2 .897 2 2-.897 2-2 2zm0-3c-.551 0-1 .449-1 1s.449 1 1 1 1-.449 1-1-.449-1-1-1z"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#1C6399" d="M24.434 12.633c.525-.149 1.422-.237 2.121-.201.662.034 1.486.591 1.629 1.038.143.448.09 1.074-.269 1.182s-.901-.251-1.588-.125c-.686.125-.624.445-.615.734.031.962-.508.864-.6.734-.203-.286-.563-.676-.975-1.054s-.033-2.214.297-2.308z"/><path fill="#E1E8ED" d="M36 16v16s0 4-4 4H4c-4 0-4-4-4-4v-2s17-10 36-14z"/><path fill="#EA596E" d="M32.816 20.98c.462 1.003.023 2.19-.98 2.653L8.221 34.511c-1.003.462-2.19.023-2.652-.979l-.837-1.817c-.462-1.003-.023-2.191.979-2.653l23.615-10.877c1.004-.462 2.191-.022 2.654.979l.836 1.816z"/><path fill="#1C6399" d="M13.5 25.438c-.802.902-.594 1.625-.562 1.969s2.311 2.38 2.688 2.5c1.207.386 2.805-.531 2.805-1.188 0-.474-.211-.938-.743-1.625s-.875-1.719-1.094-2.062-2.594-.157-3.094.406zm8.286-3.533c-.648 1-.349 1.688-.272 2.025.077.336 2.546 2.052 2.924 2.121 1.213.223 2.624-.897 2.535-1.547-.065-.47-.001-.663-.606-1.274-.604-.611-1.825-1.424-2.082-1.736s-2.095-.213-2.499.411z"/><path fill="#67757F" d="M24.729 21.688c-.23-1.023-1.108-3.478-1.464-4.43-.145-.389-.606-.911-1.114-1.114l-5.001-2c-.807-.324-6.026 1.939-5.458 2.886 0 0 .015 1.909 2.602 4.337-.524 1.467-.848 4.241-.848 4.241-.134 1.08 3.923 1 4.057.112s.315-2.529.934-4.032c.113-.276.167-.958 0-1.479-.167-.521-1.208-1.725-1.208-1.725s1.508.908 2.639 1.056c.131 1.023 1.223 2.302 1.454 3.444.221 1.09 3.777.345 3.407-1.296z"/><path fill="#BBDDF5" d="M24.408 12c-.429-.073-1.908-.588-2.304-.917-.396-.328-1.595-1.621-2.098-2.286-.366-.486-.99-.797-1.598-.797 0 0-5.408.011-6.408.011-2.406 0-5.125 2.489-5.585 3.294-.562.985-1.353 4.216-.509 7.195.094.333 3.53-.504 3.399-1.132-.284-1.368-.326-3.08-.125-3.536.201-.455.664-.801 1.32-1.098V18c0 .164.081.317.215.411.085.059.184.089.285.089.059 0 .119-.01.176-.032l8-3c.195-.073.324-.26.324-.468v-1.048c.594.476 1.594 1.096 1.83 1.21s1.679.812 2.707.812c.55 0 1.46-3.79.371-3.974z"/><path fill="#1C6399" d="M31.475 3.842l-1-3C30.406.638 30.215.5 30 .5c-.129 0-3.214.035-7.3 3.1-3.867 2.9-4.755 2.9-6.7 2.9h-3c-.133 0-.26.053-.354.147-.527.527-.666 1.268-.371 1.982.376.904 1.551 1.871 3.725 1.871 1.438 0 3.532-1.156 5.957-2.494C24.935 6.363 28.312 4.5 31 4.5c.161 0 .312-.077.405-.207.095-.131.12-.299.07-.451z"/><path fill="#F3D2A2" d="M18.408 4c0 2.209-1.791 4-4 4s-4-1.791-4-4 1.791-3 4-3 4 .791 4 3z"/><path fill="#9AAAB4" d="M12 4c2 0 4-1 4 0s0 3 2 3 3-7-3-7-6 4-3 4z"/><circle fill="#67757F" cx="11.5" cy="4.5" r="2"/><circle fill="#BDDDF4" cx="11.5" cy="4.5" r="1"/><circle fill="#67757F" cx="14.5" cy="4.5" r="2"/><circle fill="#BDDDF4" cx="14.5" cy="4.5" r="1"/><path fill="#1C6399" d="M6.47 17.805c-.917.79-.829 1.616-.501 2.195s.575.733 1.192.662c.589-.068 1.311-.745 1.727-1.204.569-.628.16-1.533.16-1.533s.351-.091.639-.278c.354-.229.402-1.139.062-.992-1.04.449-2.249.262-3.279 1.15z"/><path fill="#55ACEE" d="M15.018 27.982c-.276-.223.119-.841 1.078-1.235.887-.365 1.267.059 1.258.17-.008.104-.425-.242-1.113.183s-.917 1.129-1.223.882zm.553.716c-.276-.223.119-.841 1.078-1.235.887-.365 1.267.059 1.258.17-.008.104-.425-.243-1.113.183s-.918 1.129-1.223.882zm7.982-4.388c-.296-.195.037-.848.952-1.335.848-.45 1.267-.065 1.269.046.002.104-.447-.2-1.09.291-.642.491-.802 1.214-1.131.998zm.621.659c-.296-.195.037-.848.952-1.335.848-.45 1.267-.065 1.269.046.002.104-.447-.2-1.09.291s-.803 1.214-1.131.998z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f3c2-1f3fd.svg b/public/emoji/1f3c2-1f3fd.svg
index f2ae8824132dce3ba5ec6585028800d8a2250532..e71263c97f81f3ece0b80d3434b1b39f36b62541 100644
--- a/public/emoji/1f3c2-1f3fd.svg
+++ b/public/emoji/1f3c2-1f3fd.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#E1E8ED" d="M36 16v16s0 4-4 4H4c-4 0-4-4-4-4v-2s17-10 36-14z"/><path fill="#EA596E" d="M32.816 20.98c.462 1.003.023 2.19-.98 2.653L8.221 34.511c-1.003.462-2.19.023-2.652-.979l-.837-1.817c-.462-1.003-.023-2.191.979-2.653l23.615-10.877c1.004-.462 2.191-.022 2.654.979l.836 1.816z"/><path fill="#67757F" d="M25.406 26c-.3 0-.605-.067-.893-.211l-2-1c-.439-.22-.78-.592-.963-1.046l-1.682-4.204-4.204-1.682c-1.025-.41-1.524-1.574-1.114-2.6.41-1.026 1.576-1.525 2.6-1.114l5.001 2c.508.203.91.606 1.114 1.114l1.717 4.294 1.32.66c.988.494 1.389 1.695.895 2.684-.35.701-1.056 1.105-1.791 1.105z"/><path fill="#67757F" d="M16.409 30c-.733.001-1.44-.404-1.791-1.105l-1-2c-.199-.397-.259-.851-.172-1.287l.848-4.241-2.602-4.337c-.568-.947-.261-2.175.686-2.744.946-.569 2.175-.261 2.744.686l3 4.999c.256.427.344.934.246 1.422l-.865 4.327.693 1.386c.494.988.093 2.189-.895 2.684-.286.143-.591.21-.892.21z"/><path fill="#BBDDF5" d="M24.408 16c-3.888 0-7.231-4.309-7.6-4.8-.663-.884-.483-2.138.4-2.8.883-.662 2.135-.484 2.798.397C21.012 10.127 23.043 12 24.408 12c1.104 0 2 .896 2 2s-.895 2-2 2zm-17 4.001c-.837 0-1.618-.53-1.897-1.368-1.058-3.175-.442-6.121 1.733-8.297 1.539-1.54 3.332-2.167 3.532-2.233 1.046-.348 2.181.216 2.53 1.265.348 1.044-.213 2.172-1.254 2.526-.963.337-3.996 1.726-2.746 5.474.349 1.048-.217 2.18-1.265 2.53-.21.07-.423.103-.633.103z"/><path fill="#67757F" d="M18.408 15.5c0 1.933-1.567 3.5-3.5 3.5s-3.5-1.567-3.5-3.5v-4c0-1.933 1.567-3.5 3.5-3.5s3.5 1.567 3.5 3.5v4z"/><path fill="#BBDDF5" d="M20.408 10c0 1.104-.896 2-2 2h-7c-1.104 0-2-.896-2-2s.896-2 2-2h7c1.105 0 2 .896 2 2z"/><path fill="#BBDDF5" d="M11 18.5c-.101 0-.2-.03-.285-.089-.134-.094-.215-.247-.215-.411v-7c0-2.5 2.708-2.5 4.5-2.5s4.5 0 4.5 2.5v4c0 .208-.129.395-.324.468l-8 3c-.057.022-.117.032-.176.032z"/><path fill="#1C6399" d="M31.475 3.842l-1-3C30.406.638 30.215.5 30 .5c-.129 0-3.214.035-7.3 3.1-3.867 2.9-4.755 2.9-6.7 2.9h-3c-.133 0-.26.053-.354.147-.527.527-.666 1.268-.371 1.982.376.904 1.551 1.871 3.725 1.871 1.438 0 3.532-1.156 5.957-2.494C24.935 6.363 28.312 4.5 31 4.5c.161 0 .312-.077.405-.207.095-.131.12-.299.07-.451z"/><path fill="#D5AB88" d="M18.408 4c0 2.209-1.791 4-4 4s-4-1.791-4-4 1.791-3 4-3 4 .791 4 3z"/><path fill="#9AAAB4" d="M12 4c2 0 4-1 4 0s0 3 2 3 3-7-3-7-6 4-3 4z"/><circle fill="#BDDDF4" cx="11.5" cy="4.5" r="1.5"/><path fill="#67757F" d="M11.5 6.5c-1.103 0-2-.897-2-2s.897-2 2-2 2 .897 2 2-.897 2-2 2zm0-3c-.551 0-1 .449-1 1s.449 1 1 1 1-.449 1-1-.449-1-1-1z"/><circle fill="#BDDDF4" cx="14.5" cy="4.5" r="1.5"/><path fill="#67757F" d="M14.5 6.5c-1.103 0-2-.897-2-2s.897-2 2-2 2 .897 2 2-.897 2-2 2zm0-3c-.551 0-1 .449-1 1s.449 1 1 1 1-.449 1-1-.449-1-1-1z"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#1C6399" d="M24.434 12.633c.525-.149 1.422-.237 2.121-.201.662.034 1.486.591 1.629 1.038.143.448.09 1.074-.269 1.182s-.901-.251-1.588-.125c-.686.125-.624.445-.615.734.031.962-.508.864-.6.734-.203-.286-.563-.676-.975-1.054s-.033-2.214.297-2.308z"/><path fill="#E1E8ED" d="M36 16v16s0 4-4 4H4c-4 0-4-4-4-4v-2s17-10 36-14z"/><path fill="#EA596E" d="M32.816 20.98c.462 1.003.023 2.19-.98 2.653L8.221 34.511c-1.003.462-2.19.023-2.652-.979l-.837-1.817c-.462-1.003-.023-2.191.979-2.653l23.615-10.877c1.004-.462 2.191-.022 2.654.979l.836 1.816z"/><path fill="#1C6399" d="M13.5 25.438c-.802.902-.594 1.625-.562 1.969s2.311 2.38 2.688 2.5c1.207.386 2.805-.531 2.805-1.188 0-.474-.211-.938-.743-1.625s-.875-1.719-1.094-2.062-2.594-.157-3.094.406zm8.286-3.533c-.648 1-.349 1.688-.272 2.025.077.336 2.546 2.052 2.924 2.121 1.213.223 2.624-.897 2.535-1.547-.065-.47-.001-.663-.606-1.274-.604-.611-1.825-1.424-2.082-1.736s-2.095-.213-2.499.411z"/><path fill="#67757F" d="M24.729 21.688c-.23-1.023-1.108-3.478-1.464-4.43-.145-.389-.606-.911-1.114-1.114l-5.001-2c-.807-.324-6.026 1.939-5.458 2.886 0 0 .015 1.909 2.602 4.337-.524 1.467-.848 4.241-.848 4.241-.134 1.08 3.923 1 4.057.112s.315-2.529.934-4.032c.113-.276.167-.958 0-1.479-.167-.521-1.208-1.725-1.208-1.725s1.508.908 2.639 1.056c.131 1.023 1.223 2.302 1.454 3.444.221 1.09 3.777.345 3.407-1.296z"/><path fill="#BBDDF5" d="M24.408 12c-.429-.073-1.908-.588-2.304-.917-.396-.328-1.595-1.621-2.098-2.286-.366-.486-.99-.797-1.598-.797 0 0-5.408.011-6.408.011-2.406 0-5.125 2.489-5.585 3.294-.562.985-1.353 4.216-.509 7.195.094.333 3.53-.504 3.399-1.132-.284-1.368-.326-3.08-.125-3.536.201-.455.664-.801 1.32-1.098V18c0 .164.081.317.215.411.085.059.184.089.285.089.059 0 .119-.01.176-.032l8-3c.195-.073.324-.26.324-.468v-1.048c.594.476 1.594 1.096 1.83 1.21s1.679.812 2.707.812c.55 0 1.46-3.79.371-3.974z"/><path fill="#1C6399" d="M31.475 3.842l-1-3C30.406.638 30.215.5 30 .5c-.129 0-3.214.035-7.3 3.1-3.867 2.9-4.755 2.9-6.7 2.9h-3c-.133 0-.26.053-.354.147-.527.527-.666 1.268-.371 1.982.376.904 1.551 1.871 3.725 1.871 1.438 0 3.532-1.156 5.957-2.494C24.935 6.363 28.312 4.5 31 4.5c.161 0 .312-.077.405-.207.095-.131.12-.299.07-.451z"/><path fill="#D4AB88" d="M18.408 4c0 2.209-1.791 4-4 4s-4-1.791-4-4 1.791-3 4-3 4 .791 4 3z"/><path fill="#9AAAB4" d="M12 4c2 0 4-1 4 0s0 3 2 3 3-7-3-7-6 4-3 4z"/><circle fill="#67757F" cx="11.5" cy="4.5" r="2"/><circle fill="#BDDDF4" cx="11.5" cy="4.5" r="1"/><circle fill="#67757F" cx="14.5" cy="4.5" r="2"/><circle fill="#BDDDF4" cx="14.5" cy="4.5" r="1"/><path fill="#1C6399" d="M6.47 17.805c-.917.79-.829 1.616-.501 2.195s.575.733 1.192.662c.589-.068 1.311-.745 1.727-1.204.569-.628.16-1.533.16-1.533s.351-.091.639-.278c.354-.229.402-1.139.062-.992-1.04.449-2.249.262-3.279 1.15z"/><path fill="#55ACEE" d="M15.018 27.982c-.276-.223.119-.841 1.078-1.235.887-.365 1.267.059 1.258.17-.008.104-.425-.242-1.113.183s-.917 1.129-1.223.882zm.553.716c-.276-.223.119-.841 1.078-1.235.887-.365 1.267.059 1.258.17-.008.104-.425-.243-1.113.183s-.918 1.129-1.223.882zm7.982-4.388c-.296-.195.037-.848.952-1.335.848-.45 1.267-.065 1.269.046.002.104-.447-.2-1.09.291-.642.491-.802 1.214-1.131.998zm.621.659c-.296-.195.037-.848.952-1.335.848-.45 1.267-.065 1.269.046.002.104-.447-.2-1.09.291s-.803 1.214-1.131.998z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f3c2-1f3fe.svg b/public/emoji/1f3c2-1f3fe.svg
index 972c7348b7231451f07425c067fe0e063adad765..aa7ab8fab31e484463e7411f2bca4d1596ba3386 100644
--- a/public/emoji/1f3c2-1f3fe.svg
+++ b/public/emoji/1f3c2-1f3fe.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#E1E8ED" d="M36 16v16s0 4-4 4H4c-4 0-4-4-4-4v-2s17-10 36-14z"/><path fill="#EA596E" d="M32.816 20.98c.462 1.003.023 2.19-.98 2.653L8.221 34.511c-1.003.462-2.19.023-2.652-.979l-.837-1.817c-.462-1.003-.023-2.191.979-2.653l23.615-10.877c1.004-.462 2.191-.022 2.654.979l.836 1.816z"/><path fill="#67757F" d="M25.406 26c-.3 0-.605-.067-.893-.211l-2-1c-.439-.22-.78-.592-.963-1.046l-1.682-4.204-4.204-1.682c-1.025-.41-1.524-1.574-1.114-2.6.41-1.026 1.576-1.525 2.6-1.114l5.001 2c.508.203.91.606 1.114 1.114l1.717 4.294 1.32.66c.988.494 1.389 1.695.895 2.684-.35.701-1.056 1.105-1.791 1.105z"/><path fill="#67757F" d="M16.409 30c-.733.001-1.44-.404-1.791-1.105l-1-2c-.199-.397-.259-.851-.172-1.287l.848-4.241-2.602-4.337c-.568-.947-.261-2.175.686-2.744.946-.569 2.175-.261 2.744.686l3 4.999c.256.427.344.934.246 1.422l-.865 4.327.693 1.386c.494.988.093 2.189-.895 2.684-.286.143-.591.21-.892.21z"/><path fill="#BBDDF5" d="M24.408 16c-3.888 0-7.231-4.309-7.6-4.8-.663-.884-.483-2.138.4-2.8.883-.662 2.135-.484 2.798.397C21.012 10.127 23.043 12 24.408 12c1.104 0 2 .896 2 2s-.895 2-2 2zm-17 4.001c-.837 0-1.618-.53-1.897-1.368-1.058-3.175-.442-6.121 1.733-8.297 1.539-1.54 3.332-2.167 3.532-2.233 1.046-.348 2.181.216 2.53 1.265.348 1.044-.213 2.172-1.254 2.526-.963.337-3.996 1.726-2.746 5.474.349 1.048-.217 2.18-1.265 2.53-.21.07-.423.103-.633.103z"/><path fill="#67757F" d="M18.408 15.5c0 1.933-1.567 3.5-3.5 3.5s-3.5-1.567-3.5-3.5v-4c0-1.933 1.567-3.5 3.5-3.5s3.5 1.567 3.5 3.5v4z"/><path fill="#BBDDF5" d="M20.408 10c0 1.104-.896 2-2 2h-7c-1.104 0-2-.896-2-2s.896-2 2-2h7c1.105 0 2 .896 2 2z"/><path fill="#BBDDF5" d="M11 18.5c-.101 0-.2-.03-.285-.089-.134-.094-.215-.247-.215-.411v-7c0-2.5 2.708-2.5 4.5-2.5s4.5 0 4.5 2.5v4c0 .208-.129.395-.324.468l-8 3c-.057.022-.117.032-.176.032z"/><path fill="#1C6399" d="M31.475 3.842l-1-3C30.406.638 30.215.5 30 .5c-.129 0-3.214.035-7.3 3.1-3.867 2.9-4.755 2.9-6.7 2.9h-3c-.133 0-.26.053-.354.147-.527.527-.666 1.268-.371 1.982.376.904 1.551 1.871 3.725 1.871 1.438 0 3.532-1.156 5.957-2.494C24.935 6.363 28.312 4.5 31 4.5c.161 0 .312-.077.405-.207.095-.131.12-.299.07-.451z"/><path fill="#AF7E57" d="M18.408 4c0 2.209-1.791 4-4 4s-4-1.791-4-4 1.791-3 4-3 4 .791 4 3z"/><path fill="#9AAAB4" d="M12 4c2 0 4-1 4 0s0 3 2 3 3-7-3-7-6 4-3 4z"/><circle fill="#BDDDF4" cx="11.5" cy="4.5" r="1.5"/><path fill="#67757F" d="M11.5 6.5c-1.103 0-2-.897-2-2s.897-2 2-2 2 .897 2 2-.897 2-2 2zm0-3c-.551 0-1 .449-1 1s.449 1 1 1 1-.449 1-1-.449-1-1-1z"/><circle fill="#BDDDF4" cx="14.5" cy="4.5" r="1.5"/><path fill="#67757F" d="M14.5 6.5c-1.103 0-2-.897-2-2s.897-2 2-2 2 .897 2 2-.897 2-2 2zm0-3c-.551 0-1 .449-1 1s.449 1 1 1 1-.449 1-1-.449-1-1-1z"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#1C6399" d="M24.434 12.633c.525-.149 1.422-.237 2.121-.201.662.034 1.486.591 1.629 1.038.143.448.09 1.074-.269 1.182s-.901-.251-1.588-.125c-.686.125-.624.445-.615.734.031.962-.508.864-.6.734-.203-.286-.563-.676-.975-1.054s-.033-2.214.297-2.308z"/><path fill="#E1E8ED" d="M36 16v16s0 4-4 4H4c-4 0-4-4-4-4v-2s17-10 36-14z"/><path fill="#EA596E" d="M32.816 20.98c.462 1.003.023 2.19-.98 2.653L8.221 34.511c-1.003.462-2.19.023-2.652-.979l-.837-1.817c-.462-1.003-.023-2.191.979-2.653l23.615-10.877c1.004-.462 2.191-.022 2.654.979l.836 1.816z"/><path fill="#1C6399" d="M13.5 25.438c-.802.902-.594 1.625-.562 1.969s2.311 2.38 2.688 2.5c1.207.386 2.805-.531 2.805-1.188 0-.474-.211-.938-.743-1.625s-.875-1.719-1.094-2.062-2.594-.157-3.094.406zm8.286-3.533c-.648 1-.349 1.688-.272 2.025.077.336 2.546 2.052 2.924 2.121 1.213.223 2.624-.897 2.535-1.547-.065-.47-.001-.663-.606-1.274-.604-.611-1.825-1.424-2.082-1.736s-2.095-.213-2.499.411z"/><path fill="#67757F" d="M24.729 21.688c-.23-1.023-1.108-3.478-1.464-4.43-.145-.389-.606-.911-1.114-1.114l-5.001-2c-.807-.324-6.026 1.939-5.458 2.886 0 0 .015 1.909 2.602 4.337-.524 1.467-.848 4.241-.848 4.241-.134 1.08 3.923 1 4.057.112s.315-2.529.934-4.032c.113-.276.167-.958 0-1.479-.167-.521-1.208-1.725-1.208-1.725s1.508.908 2.639 1.056c.131 1.023 1.223 2.302 1.454 3.444.221 1.09 3.777.345 3.407-1.296z"/><path fill="#BBDDF5" d="M24.408 12c-.429-.073-1.908-.588-2.304-.917-.396-.328-1.595-1.621-2.098-2.286-.366-.486-.99-.797-1.598-.797 0 0-5.408.011-6.408.011-2.406 0-5.125 2.489-5.585 3.294-.562.985-1.353 4.216-.509 7.195.094.333 3.53-.504 3.399-1.132-.284-1.368-.326-3.08-.125-3.536.201-.455.664-.801 1.32-1.098V18c0 .164.081.317.215.411.085.059.184.089.285.089.059 0 .119-.01.176-.032l8-3c.195-.073.324-.26.324-.468v-1.048c.594.476 1.594 1.096 1.83 1.21s1.679.812 2.707.812c.55 0 1.46-3.79.371-3.974z"/><path fill="#1C6399" d="M31.475 3.842l-1-3C30.406.638 30.215.5 30 .5c-.129 0-3.214.035-7.3 3.1-3.867 2.9-4.755 2.9-6.7 2.9h-3c-.133 0-.26.053-.354.147-.527.527-.666 1.268-.371 1.982.376.904 1.551 1.871 3.725 1.871 1.438 0 3.532-1.156 5.957-2.494C24.935 6.363 28.312 4.5 31 4.5c.161 0 .312-.077.405-.207.095-.131.12-.299.07-.451z"/><path fill="#AF7E57" d="M18.408 4c0 2.209-1.791 4-4 4s-4-1.791-4-4 1.791-3 4-3 4 .791 4 3z"/><path fill="#9AAAB4" d="M12 4c2 0 4-1 4 0s0 3 2 3 3-7-3-7-6 4-3 4z"/><circle fill="#67757F" cx="11.5" cy="4.5" r="2"/><circle fill="#BDDDF4" cx="11.5" cy="4.5" r="1"/><circle fill="#67757F" cx="14.5" cy="4.5" r="2"/><circle fill="#BDDDF4" cx="14.5" cy="4.5" r="1"/><path fill="#1C6399" d="M6.47 17.805c-.917.79-.829 1.616-.501 2.195s.575.733 1.192.662c.589-.068 1.311-.745 1.727-1.204.569-.628.16-1.533.16-1.533s.351-.091.639-.278c.354-.229.402-1.139.062-.992-1.04.449-2.249.262-3.279 1.15z"/><path fill="#55ACEE" d="M15.018 27.982c-.276-.223.119-.841 1.078-1.235.887-.365 1.267.059 1.258.17-.008.104-.425-.242-1.113.183s-.917 1.129-1.223.882zm.553.716c-.276-.223.119-.841 1.078-1.235.887-.365 1.267.059 1.258.17-.008.104-.425-.243-1.113.183s-.918 1.129-1.223.882zm7.982-4.388c-.296-.195.037-.848.952-1.335.848-.45 1.267-.065 1.269.046.002.104-.447-.2-1.09.291-.642.491-.802 1.214-1.131.998zm.621.659c-.296-.195.037-.848.952-1.335.848-.45 1.267-.065 1.269.046.002.104-.447-.2-1.09.291s-.803 1.214-1.131.998z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f3c2-1f3ff.svg b/public/emoji/1f3c2-1f3ff.svg
index e17d87f83588152e6ab47802a1547c99c91a27db..9f66b45fe40b03110c3f3879454cad0160413007 100644
--- a/public/emoji/1f3c2-1f3ff.svg
+++ b/public/emoji/1f3c2-1f3ff.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#E1E8ED" d="M36 16v16s0 4-4 4H4c-4 0-4-4-4-4v-2s17-10 36-14z"/><path fill="#EA596E" d="M32.816 20.98c.462 1.003.023 2.19-.98 2.653L8.221 34.511c-1.003.462-2.19.023-2.652-.979l-.837-1.817c-.462-1.003-.023-2.191.979-2.653l23.615-10.877c1.004-.462 2.191-.022 2.654.979l.836 1.816z"/><path fill="#67757F" d="M25.406 26c-.3 0-.605-.067-.893-.211l-2-1c-.439-.22-.78-.592-.963-1.046l-1.682-4.204-4.204-1.682c-1.025-.41-1.524-1.574-1.114-2.6.41-1.026 1.576-1.525 2.6-1.114l5.001 2c.508.203.91.606 1.114 1.114l1.717 4.294 1.32.66c.988.494 1.389 1.695.895 2.684-.35.701-1.056 1.105-1.791 1.105z"/><path fill="#67757F" d="M16.409 30c-.733.001-1.44-.404-1.791-1.105l-1-2c-.199-.397-.259-.851-.172-1.287l.848-4.241-2.602-4.337c-.568-.947-.261-2.175.686-2.744.946-.569 2.175-.261 2.744.686l3 4.999c.256.427.344.934.246 1.422l-.865 4.327.693 1.386c.494.988.093 2.189-.895 2.684-.286.143-.591.21-.892.21z"/><path fill="#BBDDF5" d="M24.408 16c-3.888 0-7.231-4.309-7.6-4.8-.663-.884-.483-2.138.4-2.8.883-.662 2.135-.484 2.798.397C21.012 10.127 23.043 12 24.408 12c1.104 0 2 .896 2 2s-.895 2-2 2zm-17 4.001c-.837 0-1.618-.53-1.897-1.368-1.058-3.175-.442-6.121 1.733-8.297 1.539-1.54 3.332-2.167 3.532-2.233 1.046-.348 2.181.216 2.53 1.265.348 1.044-.213 2.172-1.254 2.526-.963.337-3.996 1.726-2.746 5.474.349 1.048-.217 2.18-1.265 2.53-.21.07-.423.103-.633.103z"/><path fill="#67757F" d="M18.408 15.5c0 1.933-1.567 3.5-3.5 3.5s-3.5-1.567-3.5-3.5v-4c0-1.933 1.567-3.5 3.5-3.5s3.5 1.567 3.5 3.5v4z"/><path fill="#BBDDF5" d="M20.408 10c0 1.104-.896 2-2 2h-7c-1.104 0-2-.896-2-2s.896-2 2-2h7c1.105 0 2 .896 2 2z"/><path fill="#BBDDF5" d="M11 18.5c-.101 0-.2-.03-.285-.089-.134-.094-.215-.247-.215-.411v-7c0-2.5 2.708-2.5 4.5-2.5s4.5 0 4.5 2.5v4c0 .208-.129.395-.324.468l-8 3c-.057.022-.117.032-.176.032z"/><path fill="#1C6399" d="M31.475 3.842l-1-3C30.406.638 30.215.5 30 .5c-.129 0-3.214.035-7.3 3.1-3.867 2.9-4.755 2.9-6.7 2.9h-3c-.133 0-.26.053-.354.147-.527.527-.666 1.268-.371 1.982.376.904 1.551 1.871 3.725 1.871 1.438 0 3.532-1.156 5.957-2.494C24.935 6.363 28.312 4.5 31 4.5c.161 0 .312-.077.405-.207.095-.131.12-.299.07-.451z"/><path fill="#7C533E" d="M18.408 4c0 2.209-1.791 4-4 4s-4-1.791-4-4 1.791-3 4-3 4 .791 4 3z"/><path fill="#9AAAB4" d="M12 4c2 0 4-1 4 0s0 3 2 3 3-7-3-7-6 4-3 4z"/><circle fill="#BDDDF4" cx="11.5" cy="4.5" r="1.5"/><path fill="#67757F" d="M11.5 6.5c-1.103 0-2-.897-2-2s.897-2 2-2 2 .897 2 2-.897 2-2 2zm0-3c-.551 0-1 .449-1 1s.449 1 1 1 1-.449 1-1-.449-1-1-1z"/><circle fill="#BDDDF4" cx="14.5" cy="4.5" r="1.5"/><path fill="#67757F" d="M14.5 6.5c-1.103 0-2-.897-2-2s.897-2 2-2 2 .897 2 2-.897 2-2 2zm0-3c-.551 0-1 .449-1 1s.449 1 1 1 1-.449 1-1-.449-1-1-1z"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#1C6399" d="M24.434 12.633c.525-.149 1.422-.237 2.121-.201.662.034 1.486.591 1.629 1.038.143.448.09 1.074-.269 1.182s-.901-.251-1.588-.125c-.686.125-.624.445-.615.734.031.962-.508.864-.6.734-.203-.286-.563-.676-.975-1.054s-.033-2.214.297-2.308z"/><path fill="#E1E8ED" d="M36 16v16s0 4-4 4H4c-4 0-4-4-4-4v-2s17-10 36-14z"/><path fill="#EA596E" d="M32.816 20.98c.462 1.003.023 2.19-.98 2.653L8.221 34.511c-1.003.462-2.19.023-2.652-.979l-.837-1.817c-.462-1.003-.023-2.191.979-2.653l23.615-10.877c1.004-.462 2.191-.022 2.654.979l.836 1.816z"/><path fill="#1C6399" d="M13.5 25.438c-.802.902-.594 1.625-.562 1.969s2.311 2.38 2.688 2.5c1.207.386 2.805-.531 2.805-1.188 0-.474-.211-.938-.743-1.625s-.875-1.719-1.094-2.062-2.594-.157-3.094.406zm8.286-3.533c-.648 1-.349 1.688-.272 2.025.077.336 2.546 2.052 2.924 2.121 1.213.223 2.624-.897 2.535-1.547-.065-.47-.001-.663-.606-1.274-.604-.611-1.825-1.424-2.082-1.736s-2.095-.213-2.499.411z"/><path fill="#67757F" d="M24.729 21.688c-.23-1.023-1.108-3.478-1.464-4.43-.145-.389-.606-.911-1.114-1.114l-5.001-2c-.807-.324-6.026 1.939-5.458 2.886 0 0 .015 1.909 2.602 4.337-.524 1.467-.848 4.241-.848 4.241-.134 1.08 3.923 1 4.057.112s.315-2.529.934-4.032c.113-.276.167-.958 0-1.479-.167-.521-1.208-1.725-1.208-1.725s1.508.908 2.639 1.056c.131 1.023 1.223 2.302 1.454 3.444.221 1.09 3.777.345 3.407-1.296z"/><path fill="#BBDDF5" d="M24.408 12c-.429-.073-1.908-.588-2.304-.917-.396-.328-1.595-1.621-2.098-2.286-.366-.486-.99-.797-1.598-.797 0 0-5.408.011-6.408.011-2.406 0-5.125 2.489-5.585 3.294-.562.985-1.353 4.216-.509 7.195.094.333 3.53-.504 3.399-1.132-.284-1.368-.326-3.08-.125-3.536.201-.455.664-.801 1.32-1.098V18c0 .164.081.317.215.411.085.059.184.089.285.089.059 0 .119-.01.176-.032l8-3c.195-.073.324-.26.324-.468v-1.048c.594.476 1.594 1.096 1.83 1.21s1.679.812 2.707.812c.55 0 1.46-3.79.371-3.974z"/><path fill="#1C6399" d="M31.475 3.842l-1-3C30.406.638 30.215.5 30 .5c-.129 0-3.214.035-7.3 3.1-3.867 2.9-4.755 2.9-6.7 2.9h-3c-.133 0-.26.053-.354.147-.527.527-.666 1.268-.371 1.982.376.904 1.551 1.871 3.725 1.871 1.438 0 3.532-1.156 5.957-2.494C24.935 6.363 28.312 4.5 31 4.5c.161 0 .312-.077.405-.207.095-.131.12-.299.07-.451z"/><path fill="#7C533E" d="M18.408 4c0 2.209-1.791 4-4 4s-4-1.791-4-4 1.791-3 4-3 4 .791 4 3z"/><path fill="#9AAAB4" d="M12 4c2 0 4-1 4 0s0 3 2 3 3-7-3-7-6 4-3 4z"/><circle fill="#67757F" cx="11.5" cy="4.5" r="2"/><circle fill="#BDDDF4" cx="11.5" cy="4.5" r="1"/><circle fill="#67757F" cx="14.5" cy="4.5" r="2"/><circle fill="#BDDDF4" cx="14.5" cy="4.5" r="1"/><path fill="#1C6399" d="M6.47 17.805c-.917.79-.829 1.616-.501 2.195s.575.733 1.192.662c.589-.068 1.311-.745 1.727-1.204.569-.628.16-1.533.16-1.533s.351-.091.639-.278c.354-.229.402-1.139.062-.992-1.04.449-2.249.262-3.279 1.15z"/><path fill="#55ACEE" d="M15.018 27.982c-.276-.223.119-.841 1.078-1.235.887-.365 1.267.059 1.258.17-.008.104-.425-.242-1.113.183s-.917 1.129-1.223.882zm.553.716c-.276-.223.119-.841 1.078-1.235.887-.365 1.267.059 1.258.17-.008.104-.425-.243-1.113.183s-.918 1.129-1.223.882zm7.982-4.388c-.296-.195.037-.848.952-1.335.848-.45 1.267-.065 1.269.046.002.104-.447-.2-1.09.291-.642.491-.802 1.214-1.131.998zm.621.659c-.296-.195.037-.848.952-1.335.848-.45 1.267-.065 1.269.046.002.104-.447-.2-1.09.291s-.803 1.214-1.131.998z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f3c2.svg b/public/emoji/1f3c2.svg
index b5aab753747d598bf4eeaf7dc686e5ba382eaae3..bff2c084141a309098c64775c285e2d1e2c24013 100644
--- a/public/emoji/1f3c2.svg
+++ b/public/emoji/1f3c2.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#E1E8ED" d="M36 16v16s0 4-4 4H4c-4 0-4-4-4-4v-2s17-10 36-14z"/><path fill="#EA596E" d="M32.816 20.98c.462 1.003.023 2.19-.98 2.653L8.221 34.511c-1.003.462-2.19.023-2.652-.979l-.837-1.817c-.462-1.003-.023-2.191.979-2.653l23.615-10.877c1.004-.462 2.191-.022 2.654.979l.836 1.816z"/><path fill="#67757F" d="M25.406 26c-.3 0-.605-.067-.893-.211l-2-1c-.439-.22-.78-.592-.963-1.046l-1.682-4.204-4.204-1.682c-1.025-.41-1.524-1.574-1.114-2.6.41-1.026 1.576-1.525 2.6-1.114l5.001 2c.508.203.91.606 1.114 1.114l1.717 4.294 1.32.66c.988.494 1.389 1.695.895 2.684-.35.701-1.056 1.105-1.791 1.105z"/><path fill="#67757F" d="M16.409 30c-.733.001-1.44-.404-1.791-1.105l-1-2c-.199-.397-.259-.851-.172-1.287l.848-4.241-2.602-4.337c-.568-.947-.261-2.175.686-2.744.946-.569 2.175-.261 2.744.686l3 4.999c.256.427.344.934.246 1.422l-.865 4.327.693 1.386c.494.988.093 2.189-.895 2.684-.286.143-.591.21-.892.21z"/><path fill="#BBDDF5" d="M24.408 16c-3.888 0-7.231-4.309-7.6-4.8-.663-.884-.483-2.138.4-2.8.883-.662 2.135-.484 2.798.397C21.012 10.127 23.043 12 24.408 12c1.104 0 2 .896 2 2s-.895 2-2 2zm-17 4.001c-.837 0-1.618-.53-1.897-1.368-1.058-3.175-.442-6.121 1.733-8.297 1.539-1.54 3.332-2.167 3.532-2.233 1.046-.348 2.181.216 2.53 1.265.348 1.044-.213 2.172-1.254 2.526-.963.337-3.996 1.726-2.746 5.474.349 1.048-.217 2.18-1.265 2.53-.21.07-.423.103-.633.103z"/><path fill="#67757F" d="M18.408 15.5c0 1.933-1.567 3.5-3.5 3.5s-3.5-1.567-3.5-3.5v-4c0-1.933 1.567-3.5 3.5-3.5s3.5 1.567 3.5 3.5v4z"/><path fill="#BBDDF5" d="M20.408 10c0 1.104-.896 2-2 2h-7c-1.104 0-2-.896-2-2s.896-2 2-2h7c1.105 0 2 .896 2 2z"/><path fill="#BBDDF5" d="M11 18.5c-.101 0-.2-.03-.285-.089-.134-.094-.215-.247-.215-.411v-7c0-2.5 2.708-2.5 4.5-2.5s4.5 0 4.5 2.5v4c0 .208-.129.395-.324.468l-8 3c-.057.022-.117.032-.176.032z"/><path fill="#1C6399" d="M31.475 3.842l-1-3C30.406.638 30.215.5 30 .5c-.129 0-3.214.035-7.3 3.1-3.867 2.9-4.755 2.9-6.7 2.9h-3c-.133 0-.26.053-.354.147-.527.527-.666 1.268-.371 1.982.376.904 1.551 1.871 3.725 1.871 1.438 0 3.532-1.156 5.957-2.494C24.935 6.363 28.312 4.5 31 4.5c.161 0 .312-.077.405-.207.095-.131.12-.299.07-.451z"/><path fill="#FFDC5D" d="M18.408 4c0 2.209-1.791 4-4 4s-4-1.791-4-4 1.791-3 4-3 4 .791 4 3z"/><path fill="#9AAAB4" d="M12 4c2 0 4-1 4 0s0 3 2 3 3-7-3-7-6 4-3 4z"/><circle fill="#BDDDF4" cx="11.5" cy="4.5" r="1.5"/><path fill="#67757F" d="M11.5 6.5c-1.103 0-2-.897-2-2s.897-2 2-2 2 .897 2 2-.897 2-2 2zm0-3c-.551 0-1 .449-1 1s.449 1 1 1 1-.449 1-1-.449-1-1-1z"/><circle fill="#BDDDF4" cx="14.5" cy="4.5" r="1.5"/><path fill="#67757F" d="M14.5 6.5c-1.103 0-2-.897-2-2s.897-2 2-2 2 .897 2 2-.897 2-2 2zm0-3c-.551 0-1 .449-1 1s.449 1 1 1 1-.449 1-1-.449-1-1-1z"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#1C6399" d="M24.434 12.633c.525-.149 1.422-.237 2.121-.201.662.034 1.486.591 1.629 1.038.143.448.09 1.074-.269 1.182s-.901-.251-1.588-.125c-.686.125-.624.445-.615.734.031.962-.508.864-.6.734-.203-.286-.563-.676-.975-1.054s-.033-2.214.297-2.308z"/><path fill="#E1E8ED" d="M36 16v16s0 4-4 4H4c-4 0-4-4-4-4v-2s17-10 36-14z"/><path fill="#EA596E" d="M32.816 20.98c.462 1.003.023 2.19-.98 2.653L8.221 34.511c-1.003.462-2.19.023-2.652-.979l-.837-1.817c-.462-1.003-.023-2.191.979-2.653l23.615-10.877c1.004-.462 2.191-.022 2.654.979l.836 1.816z"/><path fill="#1C6399" d="M13.5 25.438c-.802.902-.594 1.625-.562 1.969s2.311 2.38 2.688 2.5c1.207.386 2.805-.531 2.805-1.188 0-.474-.211-.938-.743-1.625s-.875-1.719-1.094-2.062-2.594-.157-3.094.406zm8.286-3.533c-.648 1-.349 1.688-.272 2.025.077.336 2.546 2.052 2.924 2.121 1.213.223 2.624-.897 2.535-1.547-.065-.47-.001-.663-.606-1.274-.604-.611-1.825-1.424-2.082-1.736s-2.095-.213-2.499.411z"/><path fill="#67757F" d="M24.729 21.688c-.23-1.023-1.108-3.478-1.464-4.43-.145-.389-.606-.911-1.114-1.114l-5.001-2c-.807-.324-6.026 1.939-5.458 2.886 0 0 .015 1.909 2.602 4.337-.524 1.467-.848 4.241-.848 4.241-.134 1.08 3.923 1 4.057.112s.315-2.529.934-4.032c.113-.276.167-.958 0-1.479-.167-.521-1.208-1.725-1.208-1.725s1.508.908 2.639 1.056c.131 1.023 1.223 2.302 1.454 3.444.221 1.09 3.777.345 3.407-1.296z"/><path fill="#BBDDF5" d="M24.408 12c-.429-.073-1.908-.588-2.304-.917-.396-.328-1.595-1.621-2.098-2.286-.366-.486-.99-.797-1.598-.797 0 0-5.408.011-6.408.011-2.406 0-5.125 2.489-5.585 3.294-.562.985-1.353 4.216-.509 7.195.094.333 3.53-.504 3.399-1.132-.284-1.368-.326-3.08-.125-3.536.201-.455.664-.801 1.32-1.098V18c0 .164.081.317.215.411.085.059.184.089.285.089.059 0 .119-.01.176-.032l8-3c.195-.073.324-.26.324-.468v-1.048c.594.476 1.594 1.096 1.83 1.21s1.679.812 2.707.812c.55 0 1.46-3.79.371-3.974z"/><path fill="#1C6399" d="M31.475 3.842l-1-3C30.406.638 30.215.5 30 .5c-.129 0-3.214.035-7.3 3.1-3.867 2.9-4.755 2.9-6.7 2.9h-3c-.133 0-.26.053-.354.147-.527.527-.666 1.268-.371 1.982.376.904 1.551 1.871 3.725 1.871 1.438 0 3.532-1.156 5.957-2.494C24.935 6.363 28.312 4.5 31 4.5c.161 0 .312-.077.405-.207.095-.131.12-.299.07-.451z"/><path fill="#FFDC5D" d="M18.408 4c0 2.209-1.791 4-4 4s-4-1.791-4-4 1.791-3 4-3 4 .791 4 3z"/><path fill="#9AAAB4" d="M12 4c2 0 4-1 4 0s0 3 2 3 3-7-3-7-6 4-3 4z"/><circle fill="#67757F" cx="11.5" cy="4.5" r="2"/><circle fill="#BDDDF4" cx="11.5" cy="4.5" r="1"/><circle fill="#67757F" cx="14.5" cy="4.5" r="2"/><circle fill="#BDDDF4" cx="14.5" cy="4.5" r="1"/><path fill="#1C6399" d="M6.47 17.805c-.917.79-.829 1.616-.501 2.195s.575.733 1.192.662c.589-.068 1.311-.745 1.727-1.204.569-.628.16-1.533.16-1.533s.351-.091.639-.278c.354-.229.402-1.139.062-.992-1.04.449-2.249.262-3.279 1.15z"/><path fill="#55ACEE" d="M15.018 27.982c-.276-.223.119-.841 1.078-1.235.887-.365 1.267.059 1.258.17-.008.104-.425-.242-1.113.183s-.917 1.129-1.223.882zm.553.716c-.276-.223.119-.841 1.078-1.235.887-.365 1.267.059 1.258.17-.008.104-.425-.243-1.113.183s-.918 1.129-1.223.882zm7.982-4.388c-.296-.195.037-.848.952-1.335.848-.45 1.267-.065 1.269.046.002.104-.447-.2-1.09.291-.642.491-.802 1.214-1.131.998zm.621.659c-.296-.195.037-.848.952-1.335.848-.45 1.267-.065 1.269.046.002.104-.447-.2-1.09.291s-.803 1.214-1.131.998z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f3c3-1f3fb-200d-2640-fe0f.svg b/public/emoji/1f3c3-1f3fb-200d-2640-fe0f.svg
index 33261c1fcd8e88bcccdea37ecfe95381ce629b62..9c559abd5471a434de21535be1d6e4b55e060c7b 100644
--- a/public/emoji/1f3c3-1f3fb-200d-2640-fe0f.svg
+++ b/public/emoji/1f3c3-1f3fb-200d-2640-fe0f.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#2A6797" d="M12.002 34.001c-.182 0-.367-.025-.55-.078-1.062-.304-1.677-1.41-1.374-2.473l2-7c.124-.435.392-.814.76-1.077l7-5c.896-.642 2.147-.435 2.789.465.642.898.434 2.147-.465 2.789l-6.431 4.595-1.808 6.328c-.251.878-1.051 1.45-1.921 1.451z"/><path fill="#4289C1" d="M26.998 31c-.3 0-.605-.067-.892-.211l-6-3C19.428 27.45 19 26.758 19 26v-5c0-1.104.896-2 2-2s2 .896 2 2v3.764l4.895 2.447c.988.494 1.389 1.695.895 2.684-.352.701-1.058 1.105-1.792 1.105z"/><path fill="#292F33" d="M29.395 28.257c.103-.369-.192-.668-.574-.756-.611-.141-.867-.17-.867-.17-.305-.022-.965.064-1.064.414-.717 2.543-.657 5.569-.246 6.404.242.493.981.429 1.128-.095l1.623-5.797zm-16.697 6.819c.362.125.678-.152.789-.528.177-.601.221-.856.221-.856.04-.303-.007-.967-.35-1.087-2.496-.867-5.52-.986-6.378-.626-.506.213-.486.954.027 1.131l5.691 1.966z"/><path fill="#F7DECE" d="M19.822 5.072c-.059-2.302-1.974-4.12-4.275-4.06-2.302.059-4.119 1.973-4.06 4.275.059 2.302 1.973 4.119 4.275 4.06.211-.005.412-.042.613-.078.061.238.091.539.047.958-.207 1.94 2.472 2.616 2.677.672.116-1.101-.345-1.915-.606-2.688.839-.786 1.361-1.901 1.329-3.139z"/><path fill="#292F33" d="M24.144 5.997c-1.085-.054-2.134-.177-3.928-2.487-1.192-1.536-2.305-2.522-5.061-2.496-2.925.027-5.375 2.516-3.498 3.761.819.543 1.505.285 2.821.654 2.065.578 2.378 2.775 4.244 3.268 3.651.965 6.507-2.647 5.422-2.7z"/><path fill="#F7DECE" d="M27.001 18c-.367 0-.72-.202-.896-.553-1.788-3.576-7.366-5.481-7.423-5.5-.523-.175-.806-.742-.63-1.265.174-.523.735-.809 1.264-.632.261.087 6.418 2.181 8.578 6.502.247.494.047 1.095-.447 1.342-.143.072-.296.106-.446.106z"/><path fill="#9268CA" d="M21.149 10.657c-.89-1.522-2.123-2.212-3.398-1.564-3.992 2.029-1.881 5.138.259 11.373 0 0 1 .927 3.358.296 1.659-.444 2.691.706 2.976.398.285-.309-1.053-6.839-3.195-10.503z"/><path fill="#F7DECE" d="M16.143 12.485c-.028.046-2.825 4.631-7.339 5.534l.004.02C8.351 18.131 8 18.516 8 19c0 .553.448 1 1 1 .068 0 .128-.025.192-.039l.004.02c5.372-1.074 8.529-6.246 8.661-6.466l-1.714-1.03z"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#F7DECE" d="M13.483 21.579c-.58.32-2.256 1.279-3.282 2.204-.596.537-.518.928-.329 1.871l.017.085c.186.932 2.106 7.039 2.483 8.232l1.168-.291c.014-.621.043-2.801-.18-4.205-.074-.47-.149-1.036-.217-1.549-.07-.532-.138-1.035-.184-1.273-.077-.396.05-.65.411-.825.772-.374 1.437-.671 1.764-.814l-1.651-3.435zm10.673 5.408c-.533-.065-1.037-.128-1.278-.143-.403-.025-.618-.212-.695-.606-.168-.842-.288-1.56-.345-1.912l-3.74.733c.164.643.671 2.505 1.308 3.732.369.711.767.734 1.726.789l.088.005c.95.057 7.342-.266 8.593-.33l.013-1.205c-.597-.169-2.699-.746-4.114-.885-.476-.044-1.042-.114-1.556-.178z"/><path fill="#8899A6" d="M28.11 29.77l-.166-.306c-.021-.049.003-.106.054-.123.16-.055.483-.203.596-.262-.098.224-.21.582-.335.69-.048.041-.124.059-.149.001z"/><path fill="#BE1931" d="M30.53 27.396c-.13-.104-.427-.155-.613-.173-.129-.013-.464-.023-.746-.007-.127.007-.272.023-.331.04-.185.054-.266.131-.31.185-.053.065-.058.134-.046.169.049.143.284.39.386.625.034.078.054.155.047.226-.025.258-.354.633-.6.911-.148.167-.266.299-.271.35-.005.055.01.102.035.148v.002c.067.123.214.251.314.587.065.217.369 1.205.369 1.205.073.252.17.313.211.449.085.277.235 1.021.309 1.256.074.235.253.336.39.355.138.019.217-.013.217-.013s.322-.145.535-1.352c.154-.872.018-1.007-.098-2.317-.114-1.312.202-2.646.202-2.646z"/><path fill="#DD2E44" d="M30.261 29.344c-.219-.09-.72-.42-.86-.775-.127-.321-.213-1.188-.229-1.353.269-.024.682-.006.815.006.175.017.377.031.498.134l.046.04c-.001 0-.215 1.376-.27 1.948z"/><path fill="#CCD6DD" d="M28.337 30.337c-.075 0-.146-.042-.181-.115-.048-.1-.005-.219.095-.266l.319-.151c.104-.048.22-.004.267.095.047.1.005.219-.095.266l-.319.151c-.028.014-.058.02-.086.02zm.204.584c-.085 0-.163-.054-.19-.139-.034-.105.024-.218.13-.251l.354-.113c.1-.035.217.024.251.13.034.105-.024.218-.13.251l-.354.113c-.02.006-.04.009-.061.009zm.172.595c-.094 0-.177-.065-.196-.16-.021-.108.048-.214.156-.236l.332-.068c.114-.023.214.048.236.156.021.108-.048.214-.156.236l-.332.068c-.014.002-.027.004-.04.004zm2.59-3.873c-.006-.027-.025-.128-.095-.252-.023-.042-.077-.055-.131-.061-.067-.009-.56-.08-.569.02 0 0-.002.148-.072.25-.07.102-.118.352-.136.539-.018.186-.098.887-.08 1.379.018.492.17 1.383.178 1.68.007.297 0 .759-.063 1.101-.063.342-.131.646-.183.834-.067.242-.157.439-.26.578 0 0 .389-.026.687-.602.235-.454.367-.891.416-1.317.004-.032.105-1.168.154-1.736.035-.415.095-1.078.095-1.078.075-.786.093-1.185.059-1.335z"/><path fill="#8899A6" d="M11.438 32.516l.246-.246c.041-.034.102-.027.134.017.098.138.332.406.421.497-.243-.03-.618-.036-.757-.125-.054-.035-.093-.103-.044-.143z"/><path fill="#BE1931" d="M14.401 34.162c.063-.154.027-.453-.008-.637-.025-.127-.11-.452-.205-.717-.043-.119-.099-.254-.132-.306-.104-.162-.201-.217-.266-.244-.077-.033-.145-.018-.175.004-.123.088-.294.383-.489.548-.065.055-.133.095-.204.109-.254.049-.707-.159-1.044-.317-.202-.094-.362-.17-.412-.16-.054.011-.095.038-.132.075l-.002.001h.001c-.099.099-.18.277-.474.468-.189.123-1.051.696-1.051.696-.221.141-.252.252-.37.33-.242.16-.912.515-1.117.653-.204.138-.251.338-.23.475s.074.204.074.204.23.268 1.448.129c.88-.1.97-.269 2.194-.752s2.594-.559 2.594-.559z"/><path fill="#DD2E44" d="M12.457 34.457c.024-.236.198-.809.499-1.045.271-.212 1.079-.542 1.232-.604.1.251.2.652.225.783.033.173.078.37.013.516l-.025.056c0-.001-1.38.184-1.944.294z"/><path fill="#CCD6DD" d="M11.385 33.301c-.055 0-.109-.022-.149-.067L11 32.971c-.073-.082-.066-.209.016-.282.083-.073.207-.067.283.016l.235.263c.073.082.066.209-.016.282-.039.034-.085.051-.133.051zm-.529.406c-.063 0-.127-.031-.165-.088l-.209-.308c-.062-.092-.039-.216.053-.278.089-.061.216-.039.277.053l.209.308c.062.092.039.216-.053.278-.033.024-.072.035-.112.035zm-.57.325c-.071 0-.141-.038-.177-.106l-.159-.299c-.052-.098-.015-.219.083-.271.094-.052.218-.016.271.083l.159.299c.052.098.015.219-.083.271-.029.016-.062.023-.094.023zm4.098.941c.024-.013.116-.06.215-.162.033-.034.031-.089.022-.143-.011-.067-.083-.559-.181-.54 0 0-.143.04-.26.002-.117-.038-.371-.013-.555.022-.184.036-.878.158-1.345.315-.467.157-1.277.556-1.56.648-.283.091-.728.215-1.074.252-.346.037-.657.058-.851.062-.251.004-.466-.025-.628-.085 0 0 .136.366.772.488.502.097.959.099 1.381.025.032-.006 1.15-.231 1.708-.346.408-.084 1.06-.215 1.06-.215.774-.151 1.162-.247 1.296-.323z"/><path fill="#A0041E" d="M13.084 21.466c.738-.382 3.176-1.588 4.842-1.76.152-.016 1.526 3.904 1.341 3.963-.763.246-2.681.897-4.134 1.668-.154.082-.338.044-.433-.09-.431-.605-1.549-2.257-1.798-3.436-.029-.138.048-.276.182-.345z"/><path fill="#BE1931" d="M17.882 25.364c-.196-.795-.794-3.411-.586-5.049.019-.15 3.69-.685 3.69-.685.175-.021.6 3.084 1.005 4.655.043.166-.033.334-.181.395-.667.275-2.474.969-3.643.937-.136-.004-.249-.11-.285-.253z"/><path fill="#F7DECE" d="M14.801 11.245c-.114.64.259 1.431 1.738 1.741 1.479.31 2.554.273 3.324.218.653-.047.563.952.711 1.998.148 1.05.241 2.419.182 2.633-.1.361-.722.479-.439 1.123.283.643.329.995.942.79.613-.205 1.222-.427 1.396-.759.174-.332-.43-1.065-.439-1.463-.007-.294.293-3.972.275-4.405-.022-.528-.035-1.251-.884-1.582-.849-.331-4.108-1.174-4.972-1.342-.912-.177-1.683.199-1.834 1.048z"/><path fill="#F7DECE" d="M16.495 6.612c.31-.401.546-.872.661-1.455.409-2.083-.794-4.073-2.688-4.444-1.893-.372-4.483 1.029-4.425 3.151.057 2.107 1.229 5.214 2.993 4.69.466-.138.932-.29 1.375-.474.189.224.325 1.081.247 1.815-.2 1.87 2.381 2.065 2.579.192.157-1.482-.768-2.424-.742-3.475z"/><path fill="#292F33" d="M21.903 2.733c-1.311-.014-2.496-1.36-3.845-.501-.264.168-.456.337-.604.503-.234-.711-.636-1.367-1.299-1.798C15.507.515 14.712.2 13.961.285 9.384.801 9.632 4.111 9.98 4.421c.348.31 1.299-.572 2.002-.669.328-.046 1.041-.053 1.419.49.306.44.411 1.33.411 1.33s.012-1.012.041-1.368c.027-.332.356-.714.801-.222.387.428.19 1.268-.079 1.356-.207.068.129.575.648.961.946.704 1.681.428 1.786.389.106-.039.465-.118.648-1.333.026-.169.044-.35.055-.537.374.324.987.709 1.827.715.929.007 2.619-.466 3.586-1.621.744-.889 1.05-2.355 1.05-2.355-.395.738-1.283 1.187-2.272 1.176z"/><path fill="#DD2E44" d="M19.624 10.939c-.728-1.703-1.783-2.597-3.229-2.114-1.285.43-1.922 1.151-2.301 1.96-.184.393-.901 1.933-.466 2.933.851 1.956 2.243 5.863 2.488 7.059 0 0 .322.326 2.403.064 1.823-.23 2.732-.404 2.732-.404-.277-2.594-.452-6.747-1.627-9.498z"/><path fill="#F7DECE" d="M17.202 11.067c-.577-.372-1.499-.331-2.404.983-.905 1.314-1.308 2.376-1.568 3.148-.221.655-1.157.16-2.236-.122-1.083-.284-2.455-.752-2.639-.897-.311-.245-.172-.898-.914-.886-.742.013-1.103-.086-1.153.595-.05.681-.083 1.364.17 1.669.253.305 1.212.016 1.604.169.289.113 3.749 1.905 4.178 2.064.524.194 1.233.476 1.901-.216.668-.692 2.819-3.522 3.335-4.296.543-.814.491-1.718-.274-2.211z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f3c3-1f3fb-200d-2642-fe0f.svg b/public/emoji/1f3c3-1f3fb-200d-2642-fe0f.svg
index b7160fb8cf5be671e534082bb083317cac424f7c..604a0024c22ba555338bd6dab841e6a254c79e01 100644
--- a/public/emoji/1f3c3-1f3fb-200d-2642-fe0f.svg
+++ b/public/emoji/1f3c3-1f3fb-200d-2642-fe0f.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#2A6797" d="M12.002 34.001c-.182 0-.367-.025-.55-.078-1.062-.304-1.677-1.41-1.374-2.473l2-7c.124-.435.392-.814.76-1.077l7-5c.896-.642 2.147-.435 2.789.465.642.898.434 2.147-.465 2.789l-6.431 4.595-1.808 6.328c-.251.878-1.051 1.45-1.921 1.451z"/><path fill="#4289C1" d="M26.998 31c-.3 0-.605-.067-.892-.211l-6-3C19.428 27.45 19 26.758 19 26v-5c0-1.104.896-2 2-2s2 .896 2 2v3.764l4.895 2.447c.988.494 1.389 1.695.895 2.684-.352.701-1.058 1.105-1.792 1.105z"/><path fill="#292F33" d="M29.395 28.257c.103-.369-.192-.668-.574-.756-.611-.141-.867-.17-.867-.17-.305-.022-.965.064-1.064.414-.717 2.543-.657 5.569-.246 6.404.242.493.981.429 1.128-.095l1.623-5.797zm-16.697 6.819c.362.125.678-.152.789-.528.177-.601.221-.856.221-.856.04-.303-.007-.967-.35-1.087-2.496-.867-5.52-.986-6.378-.626-.506.213-.486.954.027 1.131l5.691 1.966z"/><path fill="#F7DECE" d="M18.329 7.294c.321-.415.567-.904.685-1.509.424-2.16-.824-4.224-2.788-4.609-1.964-.386-4.649 1.068-4.589 3.268.06 2.185 1.274 5.408 3.104 4.864.483-.143.966-.301 1.426-.491.196.232.335.648.255 1.409-.207 1.94 2.472 2.616 2.677.672.162-1.537-.797-2.513-.77-3.604z"/><path fill="#292F33" d="M12.517 1.678c2.67-1.637 4.456-1.352 5.937-.147 1.471 1.196 1.524 3.438 1.101 4.863-.423 1.425-.838 1.343-.838 1.343s-1.977.433-2.109-1.399c-.042-.579.605-.886-.089-1.741-.446-.55-1.452-.285-1.463.503-.011.788-.412.637-.412.637l-1.168-2.096s-1.021-.067-1.596.866c-.362.586-1.695-1.399.637-2.829z"/><path fill="#F7DECE" d="M27.001 18c-.367 0-.72-.202-.896-.553-1.788-3.576-7.366-5.481-7.423-5.5-.523-.175-.806-.742-.63-1.265.174-.523.735-.809 1.264-.632.261.087 6.418 2.181 8.578 6.502.247.494.047 1.095-.447 1.342-.143.072-.296.106-.446.106z"/><path fill="#77B255" d="M21.149 10.657c-.89-1.522-2.123-2.212-3.398-1.564-3.992 2.029-1.881 5.138.259 11.373 0 0 1 .927 3.358.296 1.659-.444 2.691.706 2.976.398.285-.309-1.053-6.839-3.195-10.503z"/><path fill="#F7DECE" d="M16.143 12.485c-.028.046-2.825 4.631-7.339 5.534l.004.02C8.351 18.131 8 18.516 8 19c0 .553.448 1 1 1 .068 0 .128-.025.192-.039l.004.02c5.372-1.074 8.529-6.246 8.661-6.466l-1.714-1.03z"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#F7DECE" d="M15.087 24.856l-1.728-3.593c-.428.233-2.257 1.253-3.35 2.237-.635.572-.549 1.002-.36 1.944l.017.085c.189.952 2.205 7.351 2.47 8.187l1.345-.334c.011-.446.057-2.767-.176-4.233-.073-.463-.147-1.025-.214-1.522-.071-.543-.134-1.012-.18-1.248-.064-.334.033-.53.337-.677.862-.416 1.586-.735 1.839-.846zm8.721 1.817c-.546-.067-1.019-.126-1.258-.141-.339-.021-.504-.165-.57-.496-.188-.939-.313-1.721-.356-1.993l-3.912.767c.118.473.644 2.5 1.322 3.806.393.757.831.782 1.79.838l.087.005c.975.057 7.669-.284 8.545-.329l.015-1.385c-.43-.124-2.663-.752-4.142-.896-.465-.045-1.026-.115-1.521-.176z"/><path fill="#8899A6" d="M27.805 29.682l-.178-.328c-.022-.053.004-.113.058-.132.171-.059.518-.217.639-.281-.105.24-.225.624-.359.74-.052.043-.134.063-.16.001z"/><path fill="#1C6399" d="M30.398 27.138c-.139-.111-.457-.166-.657-.185-.138-.013-.498-.024-.799-.008-.136.008-.291.024-.355.043-.198.057-.285.141-.332.198-.057.069-.062.144-.049.181.052.153.304.418.414.67.037.084.058.166.05.243-.027.276-.379.678-.643.976-.158.179-.285.32-.29.375-.006.059.011.109.037.158v.002c.072.132.229.269.337.629.069.232.395 1.291.395 1.291.078.27.182.336.226.481.091.297.251 1.094.331 1.346.08.252.271.36.418.381s.232-.014.232-.014.345-.155.574-1.449c.165-.935.019-1.079-.105-2.483s.216-2.835.216-2.835z"/><path fill="#3B94D9" d="M30.109 29.226c-.235-.096-.771-.45-.922-.831-.136-.344-.229-1.273-.246-1.449.288-.026.731-.007.873.007.188.018.404.033.534.143l.05.043c0-.001-.229 1.473-.289 2.087z"/><path fill="#CCD6DD" d="M28.048 30.27c-.073 0-.142-.041-.175-.111-.046-.097-.005-.213.092-.258l.342-.162c.097-.046.212-.005.259.092.046.097.005.213-.092.258l-.342.162c-.028.013-.056.019-.084.019zm.218.625c-.082 0-.158-.053-.185-.135-.032-.102.024-.211.126-.244l.38-.121c.097-.033.21.023.243.126.032.102-.024.211-.126.244l-.38.121c-.018.007-.038.009-.058.009zm.184.637c-.091 0-.171-.063-.19-.155-.021-.105.046-.207.152-.229l.356-.072c.111-.023.207.047.229.152.021.105-.046.207-.152.229l-.356.072-.039.003zm2.776-4.13c-.006-.028-.027-.137-.101-.27-.025-.045-.082-.059-.14-.066-.072-.009-.6-.085-.61.022 0 0-.003.159-.077.268-.075.109-.127.377-.146.577-.019.199-.105.951-.085 1.478.02.528.183 1.482.19 1.8.008.318 0 .814-.068 1.18s-.14.692-.196.893c-.072.259-.168.471-.279.619 0 0 .417-.028.736-.645.252-.487.393-.955.446-1.411.004-.035.113-1.252.165-1.86.038-.445.102-1.155.102-1.155.081-.841.1-1.269.063-1.43z"/><path fill="#8899A6" d="M11.211 32.283l.269-.259c.045-.036.11-.027.143.021.102.149.348.441.441.541-.26-.037-.661-.051-.809-.149-.056-.038-.096-.112-.044-.154z"/><path fill="#1C6399" d="M14.355 34.104c.07-.163.038-.485.003-.683-.024-.136-.109-.486-.206-.772-.043-.129-.101-.274-.136-.33-.108-.176-.212-.237-.28-.267-.082-.036-.155-.022-.188.001-.134.091-.322.405-.535.578-.071.058-.144.1-.22.113-.273.048-.755-.184-1.112-.359-.214-.105-.385-.189-.438-.18-.059.01-.102.039-.143.078l-.002.001h.001c-.108.104-.199.293-.516.492-.206.128-1.14.724-1.14.724-.24.147-.275.265-.403.346-.262.167-.987.534-1.209.678-.222.144-.275.357-.255.505.02.148.076.22.076.22s.242.291 1.549.166c.945-.09 1.045-.269 2.365-.763 1.32-.493 2.789-.548 2.789-.548z"/><path fill="#3B94D9" d="M12.266 34.382c.03-.252.228-.863.555-1.11.295-.222 1.166-.56 1.331-.624.102.271.202.703.226.843.033.186.076.398.004.553l-.028.059c.001.001-1.481.173-2.088.279z"/><path fill="#CCD6DD" d="M11.144 33.103c-.054 0-.109-.023-.147-.067l-.247-.287c-.07-.081-.061-.204.02-.274.081-.07.205-.061.274.02l.247.287c.07.081.061.204-.02.274-.038.032-.083.047-.127.047zm-.575.425c-.063 0-.125-.031-.163-.088l-.218-.334c-.058-.09-.033-.21.057-.269.09-.058.209-.034.269.056l.218.334c.058.09.033.21-.057.269-.033.022-.069.032-.106.032zm-.617.337c-.07 0-.138-.039-.173-.106l-.165-.324c-.048-.095-.01-.212.085-.261.095-.049.211-.011.261.085l.165.324c.048.096.01.212-.085.261-.028.015-.059.021-.088.021zm4.369 1.108c.026-.014.125-.062.234-.17.036-.036.035-.095.026-.153-.01-.072-.078-.601-.184-.582 0 0-.154.04-.279-.003-.125-.043-.398-.021-.595.013-.197.035-.944.152-1.447.312-.503.16-1.379.571-1.684.664-.305.092-.784.217-1.156.249-.371.032-.705.05-.913.049-.269 0-.498-.036-.671-.103 0 0 .138.394.818.537.537.113 1.025.124 1.479.053.034-.005 1.237-.225 1.836-.337.439-.082 1.14-.21 1.14-.21.833-.146 1.25-.241 1.396-.319z"/><path fill="#1C6399" d="M12.654 21.244c.751-.398 3.235-1.653 4.947-1.804.156-.014.298.088.352.235l1.328 3.635c.068.186-.027.391-.216.451-.781.25-2.74.915-4.22 1.719-.157.085-.347.041-.448-.106-.456-.664-1.642-2.477-1.923-3.76-.032-.15.045-.298.18-.37z"/><path fill="#357BAA" d="M17.514 25.488c-.196-.827-.785-3.547-.501-5.242.026-.155.16-.266.316-.281l3.853-.37c.198-.019.371.125.382.323.046.818.196 2.882.601 4.517.043.173-.048.346-.216.407-.758.274-2.811.965-4.123.914-.153-.007-.276-.118-.312-.268z"/><path fill="#F7DECE" d="M15.015 10.618c-.085.612.05 1.546 1.466 1.787 1.416.241 2.812.059 3.411-.108.599-.167.569.884.747 1.872.179.992.301 1.768.252 1.973-.082.347-.809 1.011-.517 1.612s.757 1.179 1.332.962c.575-.217 1.05-.475 1.203-.797s-.525-1.295-.552-1.574c-.027-.278.227-3.888.194-4.298-.04-.501-.078-1.187-.896-1.47-.818-.284-4.094-.92-4.915-1.079-.942-.185-1.612.309-1.725 1.12z"/><path fill="#F7DECE" d="M16.217 6.241c.285-.396.498-.858.589-1.424.326-2.021-.9-3.9-2.738-4.196-1.838-.296-4.287 1.14-4.162 3.184.125 2.029 1.356 4.986 3.04 4.423.444-.149.889-.311 1.31-.502.19.209.349 1.031.298 1.742-.131 1.81 2.363 1.913 2.492.1.104-1.435-.819-2.312-.829-3.327z"/><path fill="#292F33" d="M10.637 1.206C13.067-.4 14.736-.192 16.151.88c1.405 1.065 1.526 3.148 1.178 4.485-.348 1.338-.736 1.275-.736 1.275s-1.824.465-2.005-1.233c-.057-.537.534-.843-.138-1.615-.432-.497-1.358-.219-1.344.514.015.732-.363.605-.363.605l-1.153-1.91s-.951-.03-1.456.856c-.317.555-1.62-1.248.503-2.651z"/><path fill="#4289C1" d="M19.459 10.057c-.77-1.644-1.984-2.479-3.384-1.957-4.381 1.635-2.36 5.68-.781 12.252 0 0 3.109.449 6.316.36 0 .001-.298-6.698-2.151-10.655z"/><path fill="#F7DECE" d="M16.94 10.268c-.577-.345-1.571-.605-2.413.712s-1.251 2.794-1.338 3.466c-.087.672-1.127.196-2.194-.045-1.07-.242-2.429-.654-2.614-.79-.313-.229-.199-.874-.925-.837s-1.083-.047-1.11.622c-.026.669-.035 1.339.222 1.629.258.29 1.127.04 1.516.177.287.101 3.803 1.876 4.228 2.017.519.172 1.223.425 1.854-.275s2.658-3.714 3.167-4.47c.584-.867.373-1.748-.393-2.206z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f3c3-1f3fb.svg b/public/emoji/1f3c3-1f3fb.svg
index b7160fb8cf5be671e534082bb083317cac424f7c..604a0024c22ba555338bd6dab841e6a254c79e01 100644
--- a/public/emoji/1f3c3-1f3fb.svg
+++ b/public/emoji/1f3c3-1f3fb.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#2A6797" d="M12.002 34.001c-.182 0-.367-.025-.55-.078-1.062-.304-1.677-1.41-1.374-2.473l2-7c.124-.435.392-.814.76-1.077l7-5c.896-.642 2.147-.435 2.789.465.642.898.434 2.147-.465 2.789l-6.431 4.595-1.808 6.328c-.251.878-1.051 1.45-1.921 1.451z"/><path fill="#4289C1" d="M26.998 31c-.3 0-.605-.067-.892-.211l-6-3C19.428 27.45 19 26.758 19 26v-5c0-1.104.896-2 2-2s2 .896 2 2v3.764l4.895 2.447c.988.494 1.389 1.695.895 2.684-.352.701-1.058 1.105-1.792 1.105z"/><path fill="#292F33" d="M29.395 28.257c.103-.369-.192-.668-.574-.756-.611-.141-.867-.17-.867-.17-.305-.022-.965.064-1.064.414-.717 2.543-.657 5.569-.246 6.404.242.493.981.429 1.128-.095l1.623-5.797zm-16.697 6.819c.362.125.678-.152.789-.528.177-.601.221-.856.221-.856.04-.303-.007-.967-.35-1.087-2.496-.867-5.52-.986-6.378-.626-.506.213-.486.954.027 1.131l5.691 1.966z"/><path fill="#F7DECE" d="M18.329 7.294c.321-.415.567-.904.685-1.509.424-2.16-.824-4.224-2.788-4.609-1.964-.386-4.649 1.068-4.589 3.268.06 2.185 1.274 5.408 3.104 4.864.483-.143.966-.301 1.426-.491.196.232.335.648.255 1.409-.207 1.94 2.472 2.616 2.677.672.162-1.537-.797-2.513-.77-3.604z"/><path fill="#292F33" d="M12.517 1.678c2.67-1.637 4.456-1.352 5.937-.147 1.471 1.196 1.524 3.438 1.101 4.863-.423 1.425-.838 1.343-.838 1.343s-1.977.433-2.109-1.399c-.042-.579.605-.886-.089-1.741-.446-.55-1.452-.285-1.463.503-.011.788-.412.637-.412.637l-1.168-2.096s-1.021-.067-1.596.866c-.362.586-1.695-1.399.637-2.829z"/><path fill="#F7DECE" d="M27.001 18c-.367 0-.72-.202-.896-.553-1.788-3.576-7.366-5.481-7.423-5.5-.523-.175-.806-.742-.63-1.265.174-.523.735-.809 1.264-.632.261.087 6.418 2.181 8.578 6.502.247.494.047 1.095-.447 1.342-.143.072-.296.106-.446.106z"/><path fill="#77B255" d="M21.149 10.657c-.89-1.522-2.123-2.212-3.398-1.564-3.992 2.029-1.881 5.138.259 11.373 0 0 1 .927 3.358.296 1.659-.444 2.691.706 2.976.398.285-.309-1.053-6.839-3.195-10.503z"/><path fill="#F7DECE" d="M16.143 12.485c-.028.046-2.825 4.631-7.339 5.534l.004.02C8.351 18.131 8 18.516 8 19c0 .553.448 1 1 1 .068 0 .128-.025.192-.039l.004.02c5.372-1.074 8.529-6.246 8.661-6.466l-1.714-1.03z"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#F7DECE" d="M15.087 24.856l-1.728-3.593c-.428.233-2.257 1.253-3.35 2.237-.635.572-.549 1.002-.36 1.944l.017.085c.189.952 2.205 7.351 2.47 8.187l1.345-.334c.011-.446.057-2.767-.176-4.233-.073-.463-.147-1.025-.214-1.522-.071-.543-.134-1.012-.18-1.248-.064-.334.033-.53.337-.677.862-.416 1.586-.735 1.839-.846zm8.721 1.817c-.546-.067-1.019-.126-1.258-.141-.339-.021-.504-.165-.57-.496-.188-.939-.313-1.721-.356-1.993l-3.912.767c.118.473.644 2.5 1.322 3.806.393.757.831.782 1.79.838l.087.005c.975.057 7.669-.284 8.545-.329l.015-1.385c-.43-.124-2.663-.752-4.142-.896-.465-.045-1.026-.115-1.521-.176z"/><path fill="#8899A6" d="M27.805 29.682l-.178-.328c-.022-.053.004-.113.058-.132.171-.059.518-.217.639-.281-.105.24-.225.624-.359.74-.052.043-.134.063-.16.001z"/><path fill="#1C6399" d="M30.398 27.138c-.139-.111-.457-.166-.657-.185-.138-.013-.498-.024-.799-.008-.136.008-.291.024-.355.043-.198.057-.285.141-.332.198-.057.069-.062.144-.049.181.052.153.304.418.414.67.037.084.058.166.05.243-.027.276-.379.678-.643.976-.158.179-.285.32-.29.375-.006.059.011.109.037.158v.002c.072.132.229.269.337.629.069.232.395 1.291.395 1.291.078.27.182.336.226.481.091.297.251 1.094.331 1.346.08.252.271.36.418.381s.232-.014.232-.014.345-.155.574-1.449c.165-.935.019-1.079-.105-2.483s.216-2.835.216-2.835z"/><path fill="#3B94D9" d="M30.109 29.226c-.235-.096-.771-.45-.922-.831-.136-.344-.229-1.273-.246-1.449.288-.026.731-.007.873.007.188.018.404.033.534.143l.05.043c0-.001-.229 1.473-.289 2.087z"/><path fill="#CCD6DD" d="M28.048 30.27c-.073 0-.142-.041-.175-.111-.046-.097-.005-.213.092-.258l.342-.162c.097-.046.212-.005.259.092.046.097.005.213-.092.258l-.342.162c-.028.013-.056.019-.084.019zm.218.625c-.082 0-.158-.053-.185-.135-.032-.102.024-.211.126-.244l.38-.121c.097-.033.21.023.243.126.032.102-.024.211-.126.244l-.38.121c-.018.007-.038.009-.058.009zm.184.637c-.091 0-.171-.063-.19-.155-.021-.105.046-.207.152-.229l.356-.072c.111-.023.207.047.229.152.021.105-.046.207-.152.229l-.356.072-.039.003zm2.776-4.13c-.006-.028-.027-.137-.101-.27-.025-.045-.082-.059-.14-.066-.072-.009-.6-.085-.61.022 0 0-.003.159-.077.268-.075.109-.127.377-.146.577-.019.199-.105.951-.085 1.478.02.528.183 1.482.19 1.8.008.318 0 .814-.068 1.18s-.14.692-.196.893c-.072.259-.168.471-.279.619 0 0 .417-.028.736-.645.252-.487.393-.955.446-1.411.004-.035.113-1.252.165-1.86.038-.445.102-1.155.102-1.155.081-.841.1-1.269.063-1.43z"/><path fill="#8899A6" d="M11.211 32.283l.269-.259c.045-.036.11-.027.143.021.102.149.348.441.441.541-.26-.037-.661-.051-.809-.149-.056-.038-.096-.112-.044-.154z"/><path fill="#1C6399" d="M14.355 34.104c.07-.163.038-.485.003-.683-.024-.136-.109-.486-.206-.772-.043-.129-.101-.274-.136-.33-.108-.176-.212-.237-.28-.267-.082-.036-.155-.022-.188.001-.134.091-.322.405-.535.578-.071.058-.144.1-.22.113-.273.048-.755-.184-1.112-.359-.214-.105-.385-.189-.438-.18-.059.01-.102.039-.143.078l-.002.001h.001c-.108.104-.199.293-.516.492-.206.128-1.14.724-1.14.724-.24.147-.275.265-.403.346-.262.167-.987.534-1.209.678-.222.144-.275.357-.255.505.02.148.076.22.076.22s.242.291 1.549.166c.945-.09 1.045-.269 2.365-.763 1.32-.493 2.789-.548 2.789-.548z"/><path fill="#3B94D9" d="M12.266 34.382c.03-.252.228-.863.555-1.11.295-.222 1.166-.56 1.331-.624.102.271.202.703.226.843.033.186.076.398.004.553l-.028.059c.001.001-1.481.173-2.088.279z"/><path fill="#CCD6DD" d="M11.144 33.103c-.054 0-.109-.023-.147-.067l-.247-.287c-.07-.081-.061-.204.02-.274.081-.07.205-.061.274.02l.247.287c.07.081.061.204-.02.274-.038.032-.083.047-.127.047zm-.575.425c-.063 0-.125-.031-.163-.088l-.218-.334c-.058-.09-.033-.21.057-.269.09-.058.209-.034.269.056l.218.334c.058.09.033.21-.057.269-.033.022-.069.032-.106.032zm-.617.337c-.07 0-.138-.039-.173-.106l-.165-.324c-.048-.095-.01-.212.085-.261.095-.049.211-.011.261.085l.165.324c.048.096.01.212-.085.261-.028.015-.059.021-.088.021zm4.369 1.108c.026-.014.125-.062.234-.17.036-.036.035-.095.026-.153-.01-.072-.078-.601-.184-.582 0 0-.154.04-.279-.003-.125-.043-.398-.021-.595.013-.197.035-.944.152-1.447.312-.503.16-1.379.571-1.684.664-.305.092-.784.217-1.156.249-.371.032-.705.05-.913.049-.269 0-.498-.036-.671-.103 0 0 .138.394.818.537.537.113 1.025.124 1.479.053.034-.005 1.237-.225 1.836-.337.439-.082 1.14-.21 1.14-.21.833-.146 1.25-.241 1.396-.319z"/><path fill="#1C6399" d="M12.654 21.244c.751-.398 3.235-1.653 4.947-1.804.156-.014.298.088.352.235l1.328 3.635c.068.186-.027.391-.216.451-.781.25-2.74.915-4.22 1.719-.157.085-.347.041-.448-.106-.456-.664-1.642-2.477-1.923-3.76-.032-.15.045-.298.18-.37z"/><path fill="#357BAA" d="M17.514 25.488c-.196-.827-.785-3.547-.501-5.242.026-.155.16-.266.316-.281l3.853-.37c.198-.019.371.125.382.323.046.818.196 2.882.601 4.517.043.173-.048.346-.216.407-.758.274-2.811.965-4.123.914-.153-.007-.276-.118-.312-.268z"/><path fill="#F7DECE" d="M15.015 10.618c-.085.612.05 1.546 1.466 1.787 1.416.241 2.812.059 3.411-.108.599-.167.569.884.747 1.872.179.992.301 1.768.252 1.973-.082.347-.809 1.011-.517 1.612s.757 1.179 1.332.962c.575-.217 1.05-.475 1.203-.797s-.525-1.295-.552-1.574c-.027-.278.227-3.888.194-4.298-.04-.501-.078-1.187-.896-1.47-.818-.284-4.094-.92-4.915-1.079-.942-.185-1.612.309-1.725 1.12z"/><path fill="#F7DECE" d="M16.217 6.241c.285-.396.498-.858.589-1.424.326-2.021-.9-3.9-2.738-4.196-1.838-.296-4.287 1.14-4.162 3.184.125 2.029 1.356 4.986 3.04 4.423.444-.149.889-.311 1.31-.502.19.209.349 1.031.298 1.742-.131 1.81 2.363 1.913 2.492.1.104-1.435-.819-2.312-.829-3.327z"/><path fill="#292F33" d="M10.637 1.206C13.067-.4 14.736-.192 16.151.88c1.405 1.065 1.526 3.148 1.178 4.485-.348 1.338-.736 1.275-.736 1.275s-1.824.465-2.005-1.233c-.057-.537.534-.843-.138-1.615-.432-.497-1.358-.219-1.344.514.015.732-.363.605-.363.605l-1.153-1.91s-.951-.03-1.456.856c-.317.555-1.62-1.248.503-2.651z"/><path fill="#4289C1" d="M19.459 10.057c-.77-1.644-1.984-2.479-3.384-1.957-4.381 1.635-2.36 5.68-.781 12.252 0 0 3.109.449 6.316.36 0 .001-.298-6.698-2.151-10.655z"/><path fill="#F7DECE" d="M16.94 10.268c-.577-.345-1.571-.605-2.413.712s-1.251 2.794-1.338 3.466c-.087.672-1.127.196-2.194-.045-1.07-.242-2.429-.654-2.614-.79-.313-.229-.199-.874-.925-.837s-1.083-.047-1.11.622c-.026.669-.035 1.339.222 1.629.258.29 1.127.04 1.516.177.287.101 3.803 1.876 4.228 2.017.519.172 1.223.425 1.854-.275s2.658-3.714 3.167-4.47c.584-.867.373-1.748-.393-2.206z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f3c3-1f3fc-200d-2640-fe0f.svg b/public/emoji/1f3c3-1f3fc-200d-2640-fe0f.svg
index be91355ad42ecde34109714d88b0659b2a877420..2639daf5ca7b1e4291ba62d01a76163309dc07ff 100644
--- a/public/emoji/1f3c3-1f3fc-200d-2640-fe0f.svg
+++ b/public/emoji/1f3c3-1f3fc-200d-2640-fe0f.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#2A6797" d="M12.002 34.001c-.182 0-.367-.025-.55-.078-1.062-.304-1.677-1.41-1.374-2.473l2-7c.124-.435.392-.814.76-1.077l7-5c.896-.642 2.147-.435 2.789.465.642.898.434 2.147-.465 2.789l-6.431 4.595-1.808 6.328c-.251.878-1.051 1.45-1.921 1.451z"/><path fill="#4289C1" d="M26.998 31c-.3 0-.605-.067-.892-.211l-6-3C19.428 27.45 19 26.758 19 26v-5c0-1.104.896-2 2-2s2 .896 2 2v3.764l4.895 2.447c.988.494 1.389 1.695.895 2.684-.352.701-1.058 1.105-1.792 1.105z"/><path fill="#292F33" d="M29.395 28.257c.103-.369-.192-.668-.574-.756-.611-.141-.867-.17-.867-.17-.305-.022-.965.064-1.064.414-.717 2.543-.657 5.569-.246 6.404.242.493.981.429 1.128-.095l1.623-5.797zm-16.697 6.819c.362.125.678-.152.789-.528.177-.601.221-.856.221-.856.04-.303-.007-.967-.35-1.087-2.496-.867-5.52-.986-6.378-.626-.506.213-.486.954.027 1.131l5.691 1.966z"/><path fill="#F3D2A2" d="M19.822 5.072c-.059-2.302-1.974-4.12-4.275-4.06-2.302.059-4.119 1.973-4.06 4.275.059 2.302 1.973 4.119 4.275 4.06.211-.005.412-.042.613-.078.061.238.091.539.047.958-.207 1.94 2.472 2.616 2.677.672.116-1.101-.345-1.915-.606-2.688.839-.786 1.361-1.901 1.329-3.139z"/><path fill="#FFE51E" d="M24.144 5.997c-1.085-.054-2.134-.177-3.928-2.487-1.192-1.536-2.305-2.522-5.061-2.496-2.925.027-5.375 2.516-3.498 3.761.819.543 1.505.285 2.821.654 2.065.578 2.378 2.775 4.244 3.268 3.651.965 6.507-2.647 5.422-2.7z"/><path fill="#F3D2A2" d="M27.001 18c-.367 0-.72-.202-.896-.553-1.788-3.576-7.366-5.481-7.423-5.5-.523-.175-.806-.742-.63-1.265.174-.523.735-.809 1.264-.632.261.087 6.418 2.181 8.578 6.502.247.494.047 1.095-.447 1.342-.143.072-.296.106-.446.106z"/><path fill="#9268CA" d="M21.149 10.657c-.89-1.522-2.123-2.212-3.398-1.564-3.992 2.029-1.881 5.138.259 11.373 0 0 1 .927 3.358.296 1.659-.444 2.691.706 2.976.398.285-.309-1.053-6.839-3.195-10.503z"/><path fill="#F3D2A2" d="M16.143 12.485c-.028.046-2.825 4.631-7.339 5.534l.004.02C8.351 18.131 8 18.516 8 19c0 .553.448 1 1 1 .068 0 .128-.025.192-.039l.004.02c5.372-1.074 8.529-6.246 8.661-6.466l-1.714-1.03z"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#F3D2A2" d="M13.483 21.579c-.58.32-2.256 1.279-3.282 2.204-.596.537-.518.928-.329 1.871l.017.085c.186.932 2.106 7.039 2.483 8.232l1.168-.291c.014-.621.043-2.801-.18-4.205-.074-.47-.149-1.036-.217-1.549-.07-.532-.138-1.035-.184-1.273-.077-.396.05-.65.411-.825.772-.374 1.437-.671 1.764-.814l-1.651-3.435zm10.673 5.408c-.533-.065-1.037-.128-1.278-.143-.403-.025-.618-.212-.695-.606-.168-.842-.288-1.56-.345-1.912l-3.74.733c.164.643.671 2.505 1.308 3.732.369.711.767.734 1.726.789l.088.005c.95.057 7.342-.266 8.593-.33l.013-1.205c-.597-.169-2.699-.746-4.114-.885-.476-.044-1.042-.114-1.556-.178z"/><path fill="#8899A6" d="M28.11 29.77l-.166-.306c-.021-.049.003-.106.054-.123.16-.055.483-.203.596-.262-.098.224-.21.582-.335.69-.048.041-.124.059-.149.001z"/><path fill="#BE1931" d="M30.53 27.396c-.13-.104-.427-.155-.613-.173-.129-.013-.464-.023-.746-.007-.127.007-.272.023-.331.04-.185.054-.266.131-.31.185-.053.065-.058.134-.046.169.049.143.284.39.386.625.034.078.054.155.047.226-.025.258-.354.633-.6.911-.148.167-.266.299-.271.35-.005.055.01.102.035.148v.002c.067.123.214.251.314.587.065.217.369 1.205.369 1.205.073.252.17.313.211.449.085.277.235 1.021.309 1.256.074.235.253.336.39.355.138.019.217-.013.217-.013s.322-.145.535-1.352c.154-.872.018-1.007-.098-2.317-.114-1.312.202-2.646.202-2.646z"/><path fill="#DD2E44" d="M30.261 29.344c-.219-.09-.72-.42-.86-.775-.127-.321-.213-1.188-.229-1.353.269-.024.682-.006.815.006.175.017.377.031.498.134l.046.04c-.001 0-.215 1.376-.27 1.948z"/><path fill="#CCD6DD" d="M28.337 30.337c-.075 0-.146-.042-.181-.115-.048-.1-.005-.219.095-.266l.319-.151c.104-.048.22-.004.267.095.047.1.005.219-.095.266l-.319.151c-.028.014-.058.02-.086.02zm.204.584c-.085 0-.163-.054-.19-.139-.034-.105.024-.218.13-.251l.354-.113c.1-.035.217.024.251.13.034.105-.024.218-.13.251l-.354.113c-.02.006-.04.009-.061.009zm.172.595c-.094 0-.177-.065-.196-.16-.021-.108.048-.214.156-.236l.332-.068c.114-.023.214.048.236.156.021.108-.048.214-.156.236l-.332.068c-.014.002-.027.004-.04.004zm2.59-3.873c-.006-.027-.025-.128-.095-.252-.023-.042-.077-.055-.131-.061-.067-.009-.56-.08-.569.02 0 0-.002.148-.072.25-.07.102-.118.352-.136.539-.018.186-.098.887-.08 1.379.018.492.17 1.383.178 1.68.007.297 0 .759-.063 1.101-.063.342-.131.646-.183.834-.067.242-.157.439-.26.578 0 0 .389-.026.687-.602.235-.454.367-.891.416-1.317.004-.032.105-1.168.154-1.736.035-.415.095-1.078.095-1.078.075-.786.093-1.185.059-1.335z"/><path fill="#8899A6" d="M11.438 32.516l.246-.246c.041-.034.102-.027.134.017.098.138.332.406.421.497-.243-.03-.618-.036-.757-.125-.054-.035-.093-.103-.044-.143z"/><path fill="#BE1931" d="M14.401 34.162c.063-.154.027-.453-.008-.637-.025-.127-.11-.452-.205-.717-.043-.119-.099-.254-.132-.306-.104-.162-.201-.217-.266-.244-.077-.033-.145-.018-.175.004-.123.088-.294.383-.489.548-.065.055-.133.095-.204.109-.254.049-.707-.159-1.044-.317-.202-.094-.362-.17-.412-.16-.054.011-.095.038-.132.075l-.002.001h.001c-.099.099-.18.277-.474.468-.189.123-1.051.696-1.051.696-.221.141-.252.252-.37.33-.242.16-.912.515-1.117.653-.204.138-.251.338-.23.475s.074.204.074.204.23.268 1.448.129c.88-.1.97-.269 2.194-.752s2.594-.559 2.594-.559z"/><path fill="#DD2E44" d="M12.457 34.457c.024-.236.198-.809.499-1.045.271-.212 1.079-.542 1.232-.604.1.251.2.652.225.783.033.173.078.37.013.516l-.025.056c0-.001-1.38.184-1.944.294z"/><path fill="#CCD6DD" d="M11.385 33.301c-.055 0-.109-.022-.149-.067L11 32.971c-.073-.082-.066-.209.016-.282.083-.073.207-.067.283.016l.235.263c.073.082.066.209-.016.282-.039.034-.085.051-.133.051zm-.529.406c-.063 0-.127-.031-.165-.088l-.209-.308c-.062-.092-.039-.216.053-.278.089-.061.216-.039.277.053l.209.308c.062.092.039.216-.053.278-.033.024-.072.035-.112.035zm-.57.325c-.071 0-.141-.038-.177-.106l-.159-.299c-.052-.098-.015-.219.083-.271.094-.052.218-.016.271.083l.159.299c.052.098.015.219-.083.271-.029.016-.062.023-.094.023zm4.098.941c.024-.013.116-.06.215-.162.033-.034.031-.089.022-.143-.011-.067-.083-.559-.181-.54 0 0-.143.04-.26.002-.117-.038-.371-.013-.555.022-.184.036-.878.158-1.345.315-.467.157-1.277.556-1.56.648-.283.091-.728.215-1.074.252-.346.037-.657.058-.851.062-.251.004-.466-.025-.628-.085 0 0 .136.366.772.488.502.097.959.099 1.381.025.032-.006 1.15-.231 1.708-.346.408-.084 1.06-.215 1.06-.215.774-.151 1.162-.247 1.296-.323z"/><path fill="#A0041E" d="M13.084 21.466c.738-.382 3.176-1.588 4.842-1.76.152-.016 1.526 3.904 1.341 3.963-.763.246-2.681.897-4.134 1.668-.154.082-.338.044-.433-.09-.431-.605-1.549-2.257-1.798-3.436-.029-.138.048-.276.182-.345z"/><path fill="#BE1931" d="M17.882 25.364c-.196-.795-.794-3.411-.586-5.049.019-.15 3.69-.685 3.69-.685.175-.021.6 3.084 1.005 4.655.043.166-.033.334-.181.395-.667.275-2.474.969-3.643.937-.136-.004-.249-.11-.285-.253z"/><path fill="#F3D2A2" d="M14.801 11.245c-.114.64.259 1.431 1.738 1.741 1.479.31 2.554.273 3.324.218.653-.047.563.952.711 1.998.148 1.05.241 2.419.182 2.633-.1.361-.722.479-.439 1.123.283.643.329.995.942.79.613-.205 1.222-.427 1.396-.759.174-.332-.43-1.065-.439-1.463-.007-.294.293-3.972.275-4.405-.022-.528-.035-1.251-.884-1.582-.849-.331-4.108-1.174-4.972-1.342-.912-.177-1.683.199-1.834 1.048z"/><path fill="#F3D2A2" d="M16.495 6.612c.31-.401.546-.872.661-1.455.409-2.083-.794-4.073-2.688-4.444-1.893-.372-4.483 1.029-4.425 3.151.057 2.107 1.229 5.214 2.993 4.69.466-.138.932-.29 1.375-.474.189.224.325 1.081.247 1.815-.2 1.87 2.381 2.065 2.579.192.157-1.482-.768-2.424-.742-3.475z"/><path fill="#FFE51E" d="M21.903 2.733c-1.311-.014-2.496-1.36-3.845-.501-.264.168-.456.337-.604.503-.234-.711-.636-1.367-1.299-1.798C15.507.515 14.712.2 13.961.285 9.384.801 9.632 4.111 9.98 4.421c.348.31 1.299-.572 2.002-.669.328-.046 1.041-.053 1.419.49.306.44.411 1.33.411 1.33s.012-1.012.041-1.368c.027-.332.356-.714.801-.222.387.428.19 1.268-.079 1.356-.207.068.129.575.648.961.946.704 1.681.428 1.786.389.106-.039.465-.118.648-1.333.026-.169.044-.35.055-.537.374.324.987.709 1.827.715.929.007 2.619-.466 3.586-1.621.744-.889 1.05-2.355 1.05-2.355-.395.738-1.283 1.187-2.272 1.176z"/><path fill="#DD2E44" d="M19.624 10.939c-.728-1.703-1.783-2.597-3.229-2.114-1.285.43-1.922 1.151-2.301 1.96-.184.393-.901 1.933-.466 2.933.851 1.956 2.243 5.863 2.488 7.059 0 0 .322.326 2.403.064 1.823-.23 2.732-.404 2.732-.404-.277-2.594-.452-6.747-1.627-9.498z"/><path fill="#F3D2A2" d="M17.202 11.067c-.577-.372-1.499-.331-2.404.983-.905 1.314-1.308 2.376-1.568 3.148-.221.655-1.157.16-2.236-.122-1.083-.284-2.455-.752-2.639-.897-.311-.245-.172-.898-.914-.886-.742.013-1.103-.086-1.153.595-.05.681-.083 1.364.17 1.669.253.305 1.212.016 1.604.169.289.113 3.749 1.905 4.178 2.064.524.194 1.233.476 1.901-.216.668-.692 2.819-3.522 3.335-4.296.543-.814.491-1.718-.274-2.211z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f3c3-1f3fc-200d-2642-fe0f.svg b/public/emoji/1f3c3-1f3fc-200d-2642-fe0f.svg
index 95c90c3d91473827bc830af8ad60305f2dbdb88d..f93e9dbfc3cfe110d98bc3e1a9a0af2b2a5aaf1a 100644
--- a/public/emoji/1f3c3-1f3fc-200d-2642-fe0f.svg
+++ b/public/emoji/1f3c3-1f3fc-200d-2642-fe0f.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#2A6797" d="M12.002 34.001c-.182 0-.367-.025-.55-.078-1.062-.304-1.677-1.41-1.374-2.473l2-7c.124-.435.392-.814.76-1.077l7-5c.896-.642 2.147-.435 2.789.465.642.898.434 2.147-.465 2.789l-6.431 4.595-1.808 6.328c-.251.878-1.051 1.45-1.921 1.451z"/><path fill="#4289C1" d="M26.998 31c-.3 0-.605-.067-.892-.211l-6-3C19.428 27.45 19 26.758 19 26v-5c0-1.104.896-2 2-2s2 .896 2 2v3.764l4.895 2.447c.988.494 1.389 1.695.895 2.684-.352.701-1.058 1.105-1.792 1.105z"/><path fill="#292F33" d="M29.395 28.257c.103-.369-.192-.668-.574-.756-.611-.141-.867-.17-.867-.17-.305-.022-.965.064-1.064.414-.717 2.543-.657 5.569-.246 6.404.242.493.981.429 1.128-.095l1.623-5.797zm-16.697 6.819c.362.125.678-.152.789-.528.177-.601.221-.856.221-.856.04-.303-.007-.967-.35-1.087-2.496-.867-5.52-.986-6.378-.626-.506.213-.486.954.027 1.131l5.691 1.966z"/><path fill="#F3D2A2" d="M18.329 7.294c.321-.415.567-.904.685-1.509.424-2.16-.824-4.224-2.788-4.609-1.964-.386-4.649 1.068-4.589 3.268.06 2.185 1.274 5.408 3.104 4.864.483-.143.966-.301 1.426-.491.196.232.335.648.255 1.409-.207 1.94 2.472 2.616 2.677.672.162-1.537-.797-2.513-.77-3.604z"/><path fill="#FFE51E" d="M12.517 1.678c2.67-1.637 4.456-1.352 5.937-.147 1.471 1.196 1.524 3.438 1.101 4.863-.423 1.425-.838 1.343-.838 1.343s-1.977.433-2.109-1.399c-.042-.579.605-.886-.089-1.741-.446-.55-1.452-.285-1.463.503-.011.788-.412.637-.412.637l-1.168-2.096s-1.021-.067-1.596.866c-.362.586-1.695-1.399.637-2.829z"/><path fill="#F3D2A2" d="M27.001 18c-.367 0-.72-.202-.896-.553-1.788-3.576-7.366-5.481-7.423-5.5-.523-.175-.806-.742-.63-1.265.174-.523.735-.809 1.264-.632.261.087 6.418 2.181 8.578 6.502.247.494.047 1.095-.447 1.342-.143.072-.296.106-.446.106z"/><path fill="#77B255" d="M21.149 10.657c-.89-1.522-2.123-2.212-3.398-1.564-3.992 2.029-1.881 5.138.259 11.373 0 0 1 .927 3.358.296 1.659-.444 2.691.706 2.976.398.285-.309-1.053-6.839-3.195-10.503z"/><path fill="#F3D2A2" d="M16.143 12.485c-.028.046-2.825 4.631-7.339 5.534l.004.02C8.351 18.131 8 18.516 8 19c0 .553.448 1 1 1 .068 0 .128-.025.192-.039l.004.02c5.372-1.074 8.529-6.246 8.661-6.466l-1.714-1.03z"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#F3D2A2" d="M15.087 24.856l-1.728-3.593c-.428.233-2.257 1.253-3.35 2.237-.635.572-.549 1.002-.36 1.944l.017.085c.189.952 2.205 7.351 2.47 8.187l1.345-.334c.011-.446.057-2.767-.176-4.233-.073-.463-.147-1.025-.214-1.522-.071-.543-.134-1.012-.18-1.248-.064-.334.033-.53.337-.677.862-.416 1.586-.735 1.839-.846zm8.721 1.817c-.546-.067-1.019-.126-1.258-.141-.339-.021-.504-.165-.57-.496-.188-.939-.313-1.721-.356-1.993l-3.912.767c.118.473.644 2.5 1.322 3.806.393.757.831.782 1.79.838l.087.005c.975.057 7.669-.284 8.545-.329l.015-1.385c-.43-.124-2.663-.752-4.142-.896-.465-.045-1.026-.115-1.521-.176z"/><path fill="#8899A6" d="M27.805 29.682l-.178-.328c-.022-.053.004-.113.058-.132.171-.059.518-.217.639-.281-.105.24-.225.624-.359.74-.052.043-.134.063-.16.001z"/><path fill="#1C6399" d="M30.398 27.138c-.139-.111-.457-.166-.657-.185-.138-.013-.498-.024-.799-.008-.136.008-.291.024-.355.043-.198.057-.285.141-.332.198-.057.069-.062.144-.049.181.052.153.304.418.414.67.037.084.058.166.05.243-.027.276-.379.678-.643.976-.158.179-.285.32-.29.375-.006.059.011.109.037.158v.002c.072.132.229.269.337.629.069.232.395 1.291.395 1.291.078.27.182.336.226.481.091.297.251 1.094.331 1.346.08.252.271.36.418.381s.232-.014.232-.014.345-.155.574-1.449c.165-.935.019-1.079-.105-2.483s.216-2.835.216-2.835z"/><path fill="#3B94D9" d="M30.109 29.226c-.235-.096-.771-.45-.922-.831-.136-.344-.229-1.273-.246-1.449.288-.026.731-.007.873.007.188.018.404.033.534.143l.05.043c0-.001-.229 1.473-.289 2.087z"/><path fill="#CCD6DD" d="M28.048 30.27c-.073 0-.142-.041-.175-.111-.046-.097-.005-.213.092-.258l.342-.162c.097-.046.212-.005.259.092.046.097.005.213-.092.258l-.342.162c-.028.013-.056.019-.084.019zm.218.625c-.082 0-.158-.053-.185-.135-.032-.102.024-.211.126-.244l.38-.121c.097-.033.21.023.243.126.032.102-.024.211-.126.244l-.38.121c-.018.007-.038.009-.058.009zm.184.637c-.091 0-.171-.063-.19-.155-.021-.105.046-.207.152-.229l.356-.072c.111-.023.207.047.229.152.021.105-.046.207-.152.229l-.356.072-.039.003zm2.776-4.13c-.006-.028-.027-.137-.101-.27-.025-.045-.082-.059-.14-.066-.072-.009-.6-.085-.61.022 0 0-.003.159-.077.268-.075.109-.127.377-.146.577-.019.199-.105.951-.085 1.478.02.528.183 1.482.19 1.8.008.318 0 .814-.068 1.18s-.14.692-.196.893c-.072.259-.168.471-.279.619 0 0 .417-.028.736-.645.252-.487.393-.955.446-1.411.004-.035.113-1.252.165-1.86.038-.445.102-1.155.102-1.155.081-.841.1-1.269.063-1.43z"/><path fill="#8899A6" d="M11.211 32.283l.269-.259c.045-.036.11-.027.143.021.102.149.348.441.441.541-.26-.037-.661-.051-.809-.149-.056-.038-.096-.112-.044-.154z"/><path fill="#1C6399" d="M14.355 34.104c.07-.163.038-.485.003-.683-.024-.136-.109-.486-.206-.772-.043-.129-.101-.274-.136-.33-.108-.176-.212-.237-.28-.267-.082-.036-.155-.022-.188.001-.134.091-.322.405-.535.578-.071.058-.144.1-.22.113-.273.048-.755-.184-1.112-.359-.214-.105-.385-.189-.438-.18-.059.01-.102.039-.143.078l-.002.001h.001c-.108.104-.199.293-.516.492-.206.128-1.14.724-1.14.724-.24.147-.275.265-.403.346-.262.167-.987.534-1.209.678-.222.144-.275.357-.255.505.02.148.076.22.076.22s.242.291 1.549.166c.945-.09 1.045-.269 2.365-.763 1.32-.493 2.789-.548 2.789-.548z"/><path fill="#3B94D9" d="M12.266 34.382c.03-.252.228-.863.555-1.11.295-.222 1.166-.56 1.331-.624.102.271.202.703.226.843.033.186.076.398.004.553l-.028.059c.001.001-1.481.173-2.088.279z"/><path fill="#CCD6DD" d="M11.144 33.103c-.054 0-.109-.023-.147-.067l-.247-.287c-.07-.081-.061-.204.02-.274.081-.07.205-.061.274.02l.247.287c.07.081.061.204-.02.274-.038.032-.083.047-.127.047zm-.575.425c-.063 0-.125-.031-.163-.088l-.218-.334c-.058-.09-.033-.21.057-.269.09-.058.209-.034.269.056l.218.334c.058.09.033.21-.057.269-.033.022-.069.032-.106.032zm-.617.337c-.07 0-.138-.039-.173-.106l-.165-.324c-.048-.095-.01-.212.085-.261.095-.049.211-.011.261.085l.165.324c.048.096.01.212-.085.261-.028.015-.059.021-.088.021zm4.369 1.108c.026-.014.125-.062.234-.17.036-.036.035-.095.026-.153-.01-.072-.078-.601-.184-.582 0 0-.154.04-.279-.003-.125-.043-.398-.021-.595.013-.197.035-.944.152-1.447.312-.503.16-1.379.571-1.684.664-.305.092-.784.217-1.156.249-.371.032-.705.05-.913.049-.269 0-.498-.036-.671-.103 0 0 .138.394.818.537.537.113 1.025.124 1.479.053.034-.005 1.237-.225 1.836-.337.439-.082 1.14-.21 1.14-.21.833-.146 1.25-.241 1.396-.319z"/><path fill="#1C6399" d="M12.654 21.244c.751-.398 3.235-1.653 4.947-1.804.156-.014.298.088.352.235l1.328 3.635c.068.186-.027.391-.216.451-.781.25-2.74.915-4.22 1.719-.157.085-.347.041-.448-.106-.456-.664-1.642-2.477-1.923-3.76-.032-.15.045-.298.18-.37z"/><path fill="#357BAA" d="M17.514 25.488c-.196-.827-.785-3.547-.501-5.242.026-.155.16-.266.316-.281l3.853-.37c.198-.019.371.125.382.323.046.818.196 2.882.601 4.517.043.173-.048.346-.216.407-.758.274-2.811.965-4.123.914-.153-.007-.276-.118-.312-.268z"/><path fill="#F3D2A2" d="M15.015 10.618c-.085.612.05 1.546 1.466 1.787 1.416.241 2.812.059 3.411-.108.599-.167.569.884.747 1.872.179.992.301 1.768.252 1.973-.082.347-.809 1.011-.517 1.612s.757 1.179 1.332.962c.575-.217 1.05-.475 1.203-.797s-.525-1.295-.552-1.574c-.027-.278.227-3.888.194-4.298-.04-.501-.078-1.187-.896-1.47-.818-.284-4.094-.92-4.915-1.079-.942-.185-1.612.309-1.725 1.12z"/><path fill="#F3D2A2" d="M16.217 6.241c.285-.396.498-.858.589-1.424.326-2.021-.9-3.9-2.738-4.196-1.838-.296-4.287 1.14-4.162 3.184.125 2.029 1.356 4.986 3.04 4.423.444-.149.889-.311 1.31-.502.19.209.349 1.031.298 1.742-.131 1.81 2.363 1.913 2.492.1.104-1.435-.819-2.312-.829-3.327z"/><path fill="#FFE51E" d="M10.637 1.206C13.067-.4 14.736-.192 16.151.88c1.405 1.065 1.526 3.148 1.178 4.485-.348 1.338-.736 1.275-.736 1.275s-1.824.465-2.005-1.233c-.057-.537.534-.843-.138-1.615-.432-.497-1.358-.219-1.344.514.015.732-.363.605-.363.605l-1.153-1.91s-.951-.03-1.456.856c-.317.555-1.62-1.248.503-2.651z"/><path fill="#4289C1" d="M19.459 10.057c-.77-1.644-1.984-2.479-3.384-1.957-4.381 1.635-2.36 5.68-.781 12.252 0 0 3.109.449 6.316.36 0 .001-.298-6.698-2.151-10.655z"/><path fill="#F3D2A2" d="M16.94 10.268c-.577-.345-1.571-.605-2.413.712s-1.251 2.794-1.338 3.466c-.087.672-1.127.196-2.194-.045-1.07-.242-2.429-.654-2.614-.79-.313-.229-.199-.874-.925-.837s-1.083-.047-1.11.622c-.026.669-.035 1.339.222 1.629.258.29 1.127.04 1.516.177.287.101 3.803 1.876 4.228 2.017.519.172 1.223.425 1.854-.275s2.658-3.714 3.167-4.47c.584-.867.373-1.748-.393-2.206z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f3c3-1f3fc.svg b/public/emoji/1f3c3-1f3fc.svg
index 95c90c3d91473827bc830af8ad60305f2dbdb88d..f93e9dbfc3cfe110d98bc3e1a9a0af2b2a5aaf1a 100644
--- a/public/emoji/1f3c3-1f3fc.svg
+++ b/public/emoji/1f3c3-1f3fc.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#2A6797" d="M12.002 34.001c-.182 0-.367-.025-.55-.078-1.062-.304-1.677-1.41-1.374-2.473l2-7c.124-.435.392-.814.76-1.077l7-5c.896-.642 2.147-.435 2.789.465.642.898.434 2.147-.465 2.789l-6.431 4.595-1.808 6.328c-.251.878-1.051 1.45-1.921 1.451z"/><path fill="#4289C1" d="M26.998 31c-.3 0-.605-.067-.892-.211l-6-3C19.428 27.45 19 26.758 19 26v-5c0-1.104.896-2 2-2s2 .896 2 2v3.764l4.895 2.447c.988.494 1.389 1.695.895 2.684-.352.701-1.058 1.105-1.792 1.105z"/><path fill="#292F33" d="M29.395 28.257c.103-.369-.192-.668-.574-.756-.611-.141-.867-.17-.867-.17-.305-.022-.965.064-1.064.414-.717 2.543-.657 5.569-.246 6.404.242.493.981.429 1.128-.095l1.623-5.797zm-16.697 6.819c.362.125.678-.152.789-.528.177-.601.221-.856.221-.856.04-.303-.007-.967-.35-1.087-2.496-.867-5.52-.986-6.378-.626-.506.213-.486.954.027 1.131l5.691 1.966z"/><path fill="#F3D2A2" d="M18.329 7.294c.321-.415.567-.904.685-1.509.424-2.16-.824-4.224-2.788-4.609-1.964-.386-4.649 1.068-4.589 3.268.06 2.185 1.274 5.408 3.104 4.864.483-.143.966-.301 1.426-.491.196.232.335.648.255 1.409-.207 1.94 2.472 2.616 2.677.672.162-1.537-.797-2.513-.77-3.604z"/><path fill="#FFE51E" d="M12.517 1.678c2.67-1.637 4.456-1.352 5.937-.147 1.471 1.196 1.524 3.438 1.101 4.863-.423 1.425-.838 1.343-.838 1.343s-1.977.433-2.109-1.399c-.042-.579.605-.886-.089-1.741-.446-.55-1.452-.285-1.463.503-.011.788-.412.637-.412.637l-1.168-2.096s-1.021-.067-1.596.866c-.362.586-1.695-1.399.637-2.829z"/><path fill="#F3D2A2" d="M27.001 18c-.367 0-.72-.202-.896-.553-1.788-3.576-7.366-5.481-7.423-5.5-.523-.175-.806-.742-.63-1.265.174-.523.735-.809 1.264-.632.261.087 6.418 2.181 8.578 6.502.247.494.047 1.095-.447 1.342-.143.072-.296.106-.446.106z"/><path fill="#77B255" d="M21.149 10.657c-.89-1.522-2.123-2.212-3.398-1.564-3.992 2.029-1.881 5.138.259 11.373 0 0 1 .927 3.358.296 1.659-.444 2.691.706 2.976.398.285-.309-1.053-6.839-3.195-10.503z"/><path fill="#F3D2A2" d="M16.143 12.485c-.028.046-2.825 4.631-7.339 5.534l.004.02C8.351 18.131 8 18.516 8 19c0 .553.448 1 1 1 .068 0 .128-.025.192-.039l.004.02c5.372-1.074 8.529-6.246 8.661-6.466l-1.714-1.03z"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#F3D2A2" d="M15.087 24.856l-1.728-3.593c-.428.233-2.257 1.253-3.35 2.237-.635.572-.549 1.002-.36 1.944l.017.085c.189.952 2.205 7.351 2.47 8.187l1.345-.334c.011-.446.057-2.767-.176-4.233-.073-.463-.147-1.025-.214-1.522-.071-.543-.134-1.012-.18-1.248-.064-.334.033-.53.337-.677.862-.416 1.586-.735 1.839-.846zm8.721 1.817c-.546-.067-1.019-.126-1.258-.141-.339-.021-.504-.165-.57-.496-.188-.939-.313-1.721-.356-1.993l-3.912.767c.118.473.644 2.5 1.322 3.806.393.757.831.782 1.79.838l.087.005c.975.057 7.669-.284 8.545-.329l.015-1.385c-.43-.124-2.663-.752-4.142-.896-.465-.045-1.026-.115-1.521-.176z"/><path fill="#8899A6" d="M27.805 29.682l-.178-.328c-.022-.053.004-.113.058-.132.171-.059.518-.217.639-.281-.105.24-.225.624-.359.74-.052.043-.134.063-.16.001z"/><path fill="#1C6399" d="M30.398 27.138c-.139-.111-.457-.166-.657-.185-.138-.013-.498-.024-.799-.008-.136.008-.291.024-.355.043-.198.057-.285.141-.332.198-.057.069-.062.144-.049.181.052.153.304.418.414.67.037.084.058.166.05.243-.027.276-.379.678-.643.976-.158.179-.285.32-.29.375-.006.059.011.109.037.158v.002c.072.132.229.269.337.629.069.232.395 1.291.395 1.291.078.27.182.336.226.481.091.297.251 1.094.331 1.346.08.252.271.36.418.381s.232-.014.232-.014.345-.155.574-1.449c.165-.935.019-1.079-.105-2.483s.216-2.835.216-2.835z"/><path fill="#3B94D9" d="M30.109 29.226c-.235-.096-.771-.45-.922-.831-.136-.344-.229-1.273-.246-1.449.288-.026.731-.007.873.007.188.018.404.033.534.143l.05.043c0-.001-.229 1.473-.289 2.087z"/><path fill="#CCD6DD" d="M28.048 30.27c-.073 0-.142-.041-.175-.111-.046-.097-.005-.213.092-.258l.342-.162c.097-.046.212-.005.259.092.046.097.005.213-.092.258l-.342.162c-.028.013-.056.019-.084.019zm.218.625c-.082 0-.158-.053-.185-.135-.032-.102.024-.211.126-.244l.38-.121c.097-.033.21.023.243.126.032.102-.024.211-.126.244l-.38.121c-.018.007-.038.009-.058.009zm.184.637c-.091 0-.171-.063-.19-.155-.021-.105.046-.207.152-.229l.356-.072c.111-.023.207.047.229.152.021.105-.046.207-.152.229l-.356.072-.039.003zm2.776-4.13c-.006-.028-.027-.137-.101-.27-.025-.045-.082-.059-.14-.066-.072-.009-.6-.085-.61.022 0 0-.003.159-.077.268-.075.109-.127.377-.146.577-.019.199-.105.951-.085 1.478.02.528.183 1.482.19 1.8.008.318 0 .814-.068 1.18s-.14.692-.196.893c-.072.259-.168.471-.279.619 0 0 .417-.028.736-.645.252-.487.393-.955.446-1.411.004-.035.113-1.252.165-1.86.038-.445.102-1.155.102-1.155.081-.841.1-1.269.063-1.43z"/><path fill="#8899A6" d="M11.211 32.283l.269-.259c.045-.036.11-.027.143.021.102.149.348.441.441.541-.26-.037-.661-.051-.809-.149-.056-.038-.096-.112-.044-.154z"/><path fill="#1C6399" d="M14.355 34.104c.07-.163.038-.485.003-.683-.024-.136-.109-.486-.206-.772-.043-.129-.101-.274-.136-.33-.108-.176-.212-.237-.28-.267-.082-.036-.155-.022-.188.001-.134.091-.322.405-.535.578-.071.058-.144.1-.22.113-.273.048-.755-.184-1.112-.359-.214-.105-.385-.189-.438-.18-.059.01-.102.039-.143.078l-.002.001h.001c-.108.104-.199.293-.516.492-.206.128-1.14.724-1.14.724-.24.147-.275.265-.403.346-.262.167-.987.534-1.209.678-.222.144-.275.357-.255.505.02.148.076.22.076.22s.242.291 1.549.166c.945-.09 1.045-.269 2.365-.763 1.32-.493 2.789-.548 2.789-.548z"/><path fill="#3B94D9" d="M12.266 34.382c.03-.252.228-.863.555-1.11.295-.222 1.166-.56 1.331-.624.102.271.202.703.226.843.033.186.076.398.004.553l-.028.059c.001.001-1.481.173-2.088.279z"/><path fill="#CCD6DD" d="M11.144 33.103c-.054 0-.109-.023-.147-.067l-.247-.287c-.07-.081-.061-.204.02-.274.081-.07.205-.061.274.02l.247.287c.07.081.061.204-.02.274-.038.032-.083.047-.127.047zm-.575.425c-.063 0-.125-.031-.163-.088l-.218-.334c-.058-.09-.033-.21.057-.269.09-.058.209-.034.269.056l.218.334c.058.09.033.21-.057.269-.033.022-.069.032-.106.032zm-.617.337c-.07 0-.138-.039-.173-.106l-.165-.324c-.048-.095-.01-.212.085-.261.095-.049.211-.011.261.085l.165.324c.048.096.01.212-.085.261-.028.015-.059.021-.088.021zm4.369 1.108c.026-.014.125-.062.234-.17.036-.036.035-.095.026-.153-.01-.072-.078-.601-.184-.582 0 0-.154.04-.279-.003-.125-.043-.398-.021-.595.013-.197.035-.944.152-1.447.312-.503.16-1.379.571-1.684.664-.305.092-.784.217-1.156.249-.371.032-.705.05-.913.049-.269 0-.498-.036-.671-.103 0 0 .138.394.818.537.537.113 1.025.124 1.479.053.034-.005 1.237-.225 1.836-.337.439-.082 1.14-.21 1.14-.21.833-.146 1.25-.241 1.396-.319z"/><path fill="#1C6399" d="M12.654 21.244c.751-.398 3.235-1.653 4.947-1.804.156-.014.298.088.352.235l1.328 3.635c.068.186-.027.391-.216.451-.781.25-2.74.915-4.22 1.719-.157.085-.347.041-.448-.106-.456-.664-1.642-2.477-1.923-3.76-.032-.15.045-.298.18-.37z"/><path fill="#357BAA" d="M17.514 25.488c-.196-.827-.785-3.547-.501-5.242.026-.155.16-.266.316-.281l3.853-.37c.198-.019.371.125.382.323.046.818.196 2.882.601 4.517.043.173-.048.346-.216.407-.758.274-2.811.965-4.123.914-.153-.007-.276-.118-.312-.268z"/><path fill="#F3D2A2" d="M15.015 10.618c-.085.612.05 1.546 1.466 1.787 1.416.241 2.812.059 3.411-.108.599-.167.569.884.747 1.872.179.992.301 1.768.252 1.973-.082.347-.809 1.011-.517 1.612s.757 1.179 1.332.962c.575-.217 1.05-.475 1.203-.797s-.525-1.295-.552-1.574c-.027-.278.227-3.888.194-4.298-.04-.501-.078-1.187-.896-1.47-.818-.284-4.094-.92-4.915-1.079-.942-.185-1.612.309-1.725 1.12z"/><path fill="#F3D2A2" d="M16.217 6.241c.285-.396.498-.858.589-1.424.326-2.021-.9-3.9-2.738-4.196-1.838-.296-4.287 1.14-4.162 3.184.125 2.029 1.356 4.986 3.04 4.423.444-.149.889-.311 1.31-.502.19.209.349 1.031.298 1.742-.131 1.81 2.363 1.913 2.492.1.104-1.435-.819-2.312-.829-3.327z"/><path fill="#FFE51E" d="M10.637 1.206C13.067-.4 14.736-.192 16.151.88c1.405 1.065 1.526 3.148 1.178 4.485-.348 1.338-.736 1.275-.736 1.275s-1.824.465-2.005-1.233c-.057-.537.534-.843-.138-1.615-.432-.497-1.358-.219-1.344.514.015.732-.363.605-.363.605l-1.153-1.91s-.951-.03-1.456.856c-.317.555-1.62-1.248.503-2.651z"/><path fill="#4289C1" d="M19.459 10.057c-.77-1.644-1.984-2.479-3.384-1.957-4.381 1.635-2.36 5.68-.781 12.252 0 0 3.109.449 6.316.36 0 .001-.298-6.698-2.151-10.655z"/><path fill="#F3D2A2" d="M16.94 10.268c-.577-.345-1.571-.605-2.413.712s-1.251 2.794-1.338 3.466c-.087.672-1.127.196-2.194-.045-1.07-.242-2.429-.654-2.614-.79-.313-.229-.199-.874-.925-.837s-1.083-.047-1.11.622c-.026.669-.035 1.339.222 1.629.258.29 1.127.04 1.516.177.287.101 3.803 1.876 4.228 2.017.519.172 1.223.425 1.854-.275s2.658-3.714 3.167-4.47c.584-.867.373-1.748-.393-2.206z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f3c3-1f3fd-200d-2640-fe0f.svg b/public/emoji/1f3c3-1f3fd-200d-2640-fe0f.svg
index 3c9898305d481a2b4dba2a3b3804f38a63e2c657..f2677ee961163c78dd4f0dabbec98674a330e5b5 100644
--- a/public/emoji/1f3c3-1f3fd-200d-2640-fe0f.svg
+++ b/public/emoji/1f3c3-1f3fd-200d-2640-fe0f.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#2A6797" d="M12.002 34.001c-.182 0-.367-.025-.55-.078-1.062-.304-1.677-1.41-1.374-2.473l2-7c.124-.435.392-.814.76-1.077l7-5c.896-.642 2.147-.435 2.789.465.642.898.434 2.147-.465 2.789l-6.431 4.595-1.808 6.328c-.251.878-1.051 1.45-1.921 1.451z"/><path fill="#4289C1" d="M26.998 31c-.3 0-.605-.067-.892-.211l-6-3C19.428 27.45 19 26.758 19 26v-5c0-1.104.896-2 2-2s2 .896 2 2v3.764l4.895 2.447c.988.494 1.389 1.695.895 2.684-.352.701-1.058 1.105-1.792 1.105z"/><path fill="#292F33" d="M29.395 28.257c.103-.369-.192-.668-.574-.756-.611-.141-.867-.17-.867-.17-.305-.022-.965.064-1.064.414-.717 2.543-.657 5.569-.246 6.404.242.493.981.429 1.128-.095l1.623-5.797zm-16.697 6.819c.362.125.678-.152.789-.528.177-.601.221-.856.221-.856.04-.303-.007-.967-.35-1.087-2.496-.867-5.52-.986-6.378-.626-.506.213-.486.954.027 1.131l5.691 1.966z"/><path fill="#D5AB88" d="M19.822 5.072c-.059-2.302-1.974-4.12-4.275-4.06-2.302.059-4.119 1.973-4.06 4.275.059 2.302 1.973 4.119 4.275 4.06.211-.005.412-.042.613-.078.061.238.091.539.047.958-.207 1.94 2.472 2.616 2.677.672.116-1.101-.345-1.915-.606-2.688.839-.786 1.361-1.901 1.329-3.139z"/><path fill="#963B22" d="M24.144 5.997c-1.085-.054-2.134-.177-3.928-2.487-1.192-1.536-2.305-2.522-5.061-2.496-2.925.027-5.375 2.516-3.498 3.761.819.543 1.505.285 2.821.654 2.065.578 2.378 2.775 4.244 3.268 3.651.965 6.507-2.647 5.422-2.7z"/><path fill="#D5AB88" d="M27.001 18c-.367 0-.72-.202-.896-.553-1.788-3.576-7.366-5.481-7.423-5.5-.523-.175-.806-.742-.63-1.265.174-.523.735-.809 1.264-.632.261.087 6.418 2.181 8.578 6.502.247.494.047 1.095-.447 1.342-.143.072-.296.106-.446.106z"/><path fill="#9268CA" d="M21.149 10.657c-.89-1.522-2.123-2.212-3.398-1.564-3.992 2.029-1.881 5.138.259 11.373 0 0 1 .927 3.358.296 1.659-.444 2.691.706 2.976.398.285-.309-1.053-6.839-3.195-10.503z"/><path fill="#D5AB88" d="M16.143 12.485c-.028.046-2.825 4.631-7.339 5.534l.004.02C8.351 18.131 8 18.516 8 19c0 .553.448 1 1 1 .068 0 .128-.025.192-.039l.004.02c5.372-1.074 8.529-6.246 8.661-6.466l-1.714-1.03z"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#D4AB88" d="M13.483 21.579c-.58.32-2.256 1.279-3.282 2.204-.596.537-.518.928-.329 1.871l.017.085c.186.932 2.106 7.039 2.483 8.232l1.168-.291c.014-.621.043-2.801-.18-4.205-.074-.47-.149-1.036-.217-1.549-.07-.532-.138-1.035-.184-1.273-.077-.396.05-.65.411-.825.772-.374 1.437-.671 1.764-.814l-1.651-3.435zm10.673 5.408c-.533-.065-1.037-.128-1.278-.143-.403-.025-.618-.212-.695-.606-.168-.842-.288-1.56-.345-1.912l-3.74.733c.164.643.671 2.505 1.308 3.732.369.711.767.734 1.726.789l.088.005c.95.057 7.342-.266 8.593-.33l.013-1.205c-.597-.169-2.699-.746-4.114-.885-.476-.044-1.042-.114-1.556-.178z"/><path fill="#8899A6" d="M28.11 29.77l-.166-.306c-.021-.049.003-.106.054-.123.16-.055.483-.203.596-.262-.098.224-.21.582-.335.69-.048.041-.124.059-.149.001z"/><path fill="#BE1931" d="M30.53 27.396c-.13-.104-.427-.155-.613-.173-.129-.013-.464-.023-.746-.007-.127.007-.272.023-.331.04-.185.054-.266.131-.31.185-.053.065-.058.134-.046.169.049.143.284.39.386.625.034.078.054.155.047.226-.025.258-.354.633-.6.911-.148.167-.266.299-.271.35-.005.055.01.102.035.148v.002c.067.123.214.251.314.587.065.217.369 1.205.369 1.205.073.252.17.313.211.449.085.277.235 1.021.309 1.256.074.235.253.336.39.355.138.019.217-.013.217-.013s.322-.145.535-1.352c.154-.872.018-1.007-.098-2.317-.114-1.312.202-2.646.202-2.646z"/><path fill="#DD2E44" d="M30.261 29.344c-.219-.09-.72-.42-.86-.775-.127-.321-.213-1.188-.229-1.353.269-.024.682-.006.815.006.175.017.377.031.498.134l.046.04c-.001 0-.215 1.376-.27 1.948z"/><path fill="#CCD6DD" d="M28.337 30.337c-.075 0-.146-.042-.181-.115-.048-.1-.005-.219.095-.266l.319-.151c.104-.048.22-.004.267.095.047.1.005.219-.095.266l-.319.151c-.028.014-.058.02-.086.02zm.204.584c-.085 0-.163-.054-.19-.139-.034-.105.024-.218.13-.251l.354-.113c.1-.035.217.024.251.13.034.105-.024.218-.13.251l-.354.113c-.02.006-.04.009-.061.009zm.172.595c-.094 0-.177-.065-.196-.16-.021-.108.048-.214.156-.236l.332-.068c.114-.023.214.048.236.156.021.108-.048.214-.156.236l-.332.068c-.014.002-.027.004-.04.004zm2.59-3.873c-.006-.027-.025-.128-.095-.252-.023-.042-.077-.055-.131-.061-.067-.009-.56-.08-.569.02 0 0-.002.148-.072.25-.07.102-.118.352-.136.539-.018.186-.098.887-.08 1.379.018.492.17 1.383.178 1.68.007.297 0 .759-.063 1.101-.063.342-.131.646-.183.834-.067.242-.157.439-.26.578 0 0 .389-.026.687-.602.235-.454.367-.891.416-1.317.004-.032.105-1.168.154-1.736.035-.415.095-1.078.095-1.078.075-.786.093-1.185.059-1.335z"/><path fill="#8899A6" d="M11.438 32.516l.246-.246c.041-.034.102-.027.134.017.098.138.332.406.421.497-.243-.03-.618-.036-.757-.125-.054-.035-.093-.103-.044-.143z"/><path fill="#BE1931" d="M14.401 34.162c.063-.154.027-.453-.008-.637-.025-.127-.11-.452-.205-.717-.043-.119-.099-.254-.132-.306-.104-.162-.201-.217-.266-.244-.077-.033-.145-.018-.175.004-.123.088-.294.383-.489.548-.065.055-.133.095-.204.109-.254.049-.707-.159-1.044-.317-.202-.094-.362-.17-.412-.16-.054.011-.095.038-.132.075l-.002.001h.001c-.099.099-.18.277-.474.468-.189.123-1.051.696-1.051.696-.221.141-.252.252-.37.33-.242.16-.912.515-1.117.653-.204.138-.251.338-.23.475s.074.204.074.204.23.268 1.448.129c.88-.1.97-.269 2.194-.752s2.594-.559 2.594-.559z"/><path fill="#DD2E44" d="M12.457 34.457c.024-.236.198-.809.499-1.045.271-.212 1.079-.542 1.232-.604.1.251.2.652.225.783.033.173.078.37.013.516l-.025.056c0-.001-1.38.184-1.944.294z"/><path fill="#CCD6DD" d="M11.385 33.301c-.055 0-.109-.022-.149-.067L11 32.971c-.073-.082-.066-.209.016-.282.083-.073.207-.067.283.016l.235.263c.073.082.066.209-.016.282-.039.034-.085.051-.133.051zm-.529.406c-.063 0-.127-.031-.165-.088l-.209-.308c-.062-.092-.039-.216.053-.278.089-.061.216-.039.277.053l.209.308c.062.092.039.216-.053.278-.033.024-.072.035-.112.035zm-.57.325c-.071 0-.141-.038-.177-.106l-.159-.299c-.052-.098-.015-.219.083-.271.094-.052.218-.016.271.083l.159.299c.052.098.015.219-.083.271-.029.016-.062.023-.094.023zm4.098.941c.024-.013.116-.06.215-.162.033-.034.031-.089.022-.143-.011-.067-.083-.559-.181-.54 0 0-.143.04-.26.002-.117-.038-.371-.013-.555.022-.184.036-.878.158-1.345.315-.467.157-1.277.556-1.56.648-.283.091-.728.215-1.074.252-.346.037-.657.058-.851.062-.251.004-.466-.025-.628-.085 0 0 .136.366.772.488.502.097.959.099 1.381.025.032-.006 1.15-.231 1.708-.346.408-.084 1.06-.215 1.06-.215.774-.151 1.162-.247 1.296-.323z"/><path fill="#A0041E" d="M13.084 21.466c.738-.382 3.176-1.588 4.842-1.76.152-.016 1.526 3.904 1.341 3.963-.763.246-2.681.897-4.134 1.668-.154.082-.338.044-.433-.09-.431-.605-1.549-2.257-1.798-3.436-.029-.138.048-.276.182-.345z"/><path fill="#BE1931" d="M17.882 25.364c-.196-.795-.794-3.411-.586-5.049.019-.15 3.69-.685 3.69-.685.175-.021.6 3.084 1.005 4.655.043.166-.033.334-.181.395-.667.275-2.474.969-3.643.937-.136-.004-.249-.11-.285-.253z"/><path fill="#D4AB88" d="M14.801 11.245c-.114.64.259 1.431 1.738 1.741 1.479.31 2.554.273 3.324.218.653-.047.563.952.711 1.998.148 1.05.241 2.419.182 2.633-.1.361-.722.479-.439 1.123.283.643.329.995.942.79.613-.205 1.222-.427 1.396-.759.174-.332-.43-1.065-.439-1.463-.007-.294.293-3.972.275-4.405-.022-.528-.035-1.251-.884-1.582-.849-.331-4.108-1.174-4.972-1.342-.912-.177-1.683.199-1.834 1.048z"/><path fill="#D4AB88" d="M16.495 6.612c.31-.401.546-.872.661-1.455.409-2.083-.794-4.073-2.688-4.444-1.893-.372-4.483 1.029-4.425 3.151.057 2.107 1.229 5.214 2.993 4.69.466-.138.932-.29 1.375-.474.189.224.325 1.081.247 1.815-.2 1.87 2.381 2.065 2.579.192.157-1.482-.768-2.424-.742-3.475z"/><path fill="#963B22" d="M21.903 2.733c-1.311-.014-2.496-1.36-3.845-.501-.264.168-.456.337-.604.503-.234-.711-.636-1.367-1.299-1.798C15.507.515 14.712.2 13.961.285 9.384.801 9.632 4.111 9.98 4.421c.348.31 1.299-.572 2.002-.669.328-.046 1.041-.053 1.419.49.306.44.411 1.33.411 1.33s.012-1.012.041-1.368c.027-.332.356-.714.801-.222.387.428.19 1.268-.079 1.356-.207.068.129.575.648.961.946.704 1.681.428 1.786.389.106-.039.465-.118.648-1.333.026-.169.044-.35.055-.537.374.324.987.709 1.827.715.929.007 2.619-.466 3.586-1.621.744-.889 1.05-2.355 1.05-2.355-.395.738-1.283 1.187-2.272 1.176z"/><path fill="#DD2E44" d="M19.624 10.939c-.728-1.703-1.783-2.597-3.229-2.114-1.285.43-1.922 1.151-2.301 1.96-.184.393-.901 1.933-.466 2.933.851 1.956 2.243 5.863 2.488 7.059 0 0 .322.326 2.403.064 1.823-.23 2.732-.404 2.732-.404-.277-2.594-.452-6.747-1.627-9.498z"/><path fill="#D4AB88" d="M17.202 11.067c-.577-.372-1.499-.331-2.404.983-.905 1.314-1.308 2.376-1.568 3.148-.221.655-1.157.16-2.236-.122-1.083-.284-2.455-.752-2.639-.897-.311-.245-.172-.898-.914-.886-.742.013-1.103-.086-1.153.595-.05.681-.083 1.364.17 1.669.253.305 1.212.016 1.604.169.289.113 3.749 1.905 4.178 2.064.524.194 1.233.476 1.901-.216.668-.692 2.819-3.522 3.335-4.296.543-.814.491-1.718-.274-2.211z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f3c3-1f3fd-200d-2642-fe0f.svg b/public/emoji/1f3c3-1f3fd-200d-2642-fe0f.svg
index 20799e947f9f8e19939e6205a3bcf549b236a28e..847b7f6e002b4d21140be715c121463842ffc212 100644
--- a/public/emoji/1f3c3-1f3fd-200d-2642-fe0f.svg
+++ b/public/emoji/1f3c3-1f3fd-200d-2642-fe0f.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#2A6797" d="M12.002 34.001c-.182 0-.367-.025-.55-.078-1.062-.304-1.677-1.41-1.374-2.473l2-7c.124-.435.392-.814.76-1.077l7-5c.896-.642 2.147-.435 2.789.465.642.898.434 2.147-.465 2.789l-6.431 4.595-1.808 6.328c-.251.878-1.051 1.45-1.921 1.451z"/><path fill="#4289C1" d="M26.998 31c-.3 0-.605-.067-.892-.211l-6-3C19.428 27.45 19 26.758 19 26v-5c0-1.104.896-2 2-2s2 .896 2 2v3.764l4.895 2.447c.988.494 1.389 1.695.895 2.684-.352.701-1.058 1.105-1.792 1.105z"/><path fill="#292F33" d="M29.395 28.257c.103-.369-.192-.668-.574-.756-.611-.141-.867-.17-.867-.17-.305-.022-.965.064-1.064.414-.717 2.543-.657 5.569-.246 6.404.242.493.981.429 1.128-.095l1.623-5.797zm-16.697 6.819c.362.125.678-.152.789-.528.177-.601.221-.856.221-.856.04-.303-.007-.967-.35-1.087-2.496-.867-5.52-.986-6.378-.626-.506.213-.486.954.027 1.131l5.691 1.966z"/><path fill="#D5AB88" d="M18.329 7.294c.321-.415.567-.904.685-1.509.424-2.16-.824-4.224-2.788-4.609-1.964-.386-4.649 1.068-4.589 3.268.06 2.185 1.274 5.408 3.104 4.864.483-.143.966-.301 1.426-.491.196.232.335.648.255 1.409-.207 1.94 2.472 2.616 2.677.672.162-1.537-.797-2.513-.77-3.604z"/><path fill="#963B22" d="M12.517 1.678c2.67-1.637 4.456-1.352 5.937-.147 1.471 1.196 1.524 3.438 1.101 4.863-.423 1.425-.838 1.343-.838 1.343s-1.977.433-2.109-1.399c-.042-.579.605-.886-.089-1.741-.446-.55-1.452-.285-1.463.503-.011.788-.412.637-.412.637l-1.168-2.096s-1.021-.067-1.596.866c-.362.586-1.695-1.399.637-2.829z"/><path fill="#D5AB88" d="M27.001 18c-.367 0-.72-.202-.896-.553-1.788-3.576-7.366-5.481-7.423-5.5-.523-.175-.806-.742-.63-1.265.174-.523.735-.809 1.264-.632.261.087 6.418 2.181 8.578 6.502.247.494.047 1.095-.447 1.342-.143.072-.296.106-.446.106z"/><path fill="#77B255" d="M21.149 10.657c-.89-1.522-2.123-2.212-3.398-1.564-3.992 2.029-1.881 5.138.259 11.373 0 0 1 .927 3.358.296 1.659-.444 2.691.706 2.976.398.285-.309-1.053-6.839-3.195-10.503z"/><path fill="#D5AB88" d="M16.143 12.485c-.028.046-2.825 4.631-7.339 5.534l.004.02C8.351 18.131 8 18.516 8 19c0 .553.448 1 1 1 .068 0 .128-.025.192-.039l.004.02c5.372-1.074 8.529-6.246 8.661-6.466l-1.714-1.03z"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#D4AB88" d="M15.087 24.856l-1.728-3.593c-.428.233-2.257 1.253-3.35 2.237-.635.572-.549 1.002-.36 1.944l.017.085c.189.952 2.205 7.351 2.47 8.187l1.345-.334c.011-.446.057-2.767-.176-4.233-.073-.463-.147-1.025-.214-1.522-.071-.543-.134-1.012-.18-1.248-.064-.334.033-.53.337-.677.862-.416 1.586-.735 1.839-.846zm8.721 1.817c-.546-.067-1.019-.126-1.258-.141-.339-.021-.504-.165-.57-.496-.188-.939-.313-1.721-.356-1.993l-3.912.767c.118.473.644 2.5 1.322 3.806.393.757.831.782 1.79.838l.087.005c.975.057 7.669-.284 8.545-.329l.015-1.385c-.43-.124-2.663-.752-4.142-.896-.465-.045-1.026-.115-1.521-.176z"/><path fill="#8899A6" d="M27.805 29.682l-.178-.328c-.022-.053.004-.113.058-.132.171-.059.518-.217.639-.281-.105.24-.225.624-.359.74-.052.043-.134.063-.16.001z"/><path fill="#1C6399" d="M30.398 27.138c-.139-.111-.457-.166-.657-.185-.138-.013-.498-.024-.799-.008-.136.008-.291.024-.355.043-.198.057-.285.141-.332.198-.057.069-.062.144-.049.181.052.153.304.418.414.67.037.084.058.166.05.243-.027.276-.379.678-.643.976-.158.179-.285.32-.29.375-.006.059.011.109.037.158v.002c.072.132.229.269.337.629.069.232.395 1.291.395 1.291.078.27.182.336.226.481.091.297.251 1.094.331 1.346.08.252.271.36.418.381s.232-.014.232-.014.345-.155.574-1.449c.165-.935.019-1.079-.105-2.483s.216-2.835.216-2.835z"/><path fill="#3B94D9" d="M30.109 29.226c-.235-.096-.771-.45-.922-.831-.136-.344-.229-1.273-.246-1.449.288-.026.731-.007.873.007.188.018.404.033.534.143l.05.043c0-.001-.229 1.473-.289 2.087z"/><path fill="#CCD6DD" d="M28.048 30.27c-.073 0-.142-.041-.175-.111-.046-.097-.005-.213.092-.258l.342-.162c.097-.046.212-.005.259.092.046.097.005.213-.092.258l-.342.162c-.028.013-.056.019-.084.019zm.218.625c-.082 0-.158-.053-.185-.135-.032-.102.024-.211.126-.244l.38-.121c.097-.033.21.023.243.126.032.102-.024.211-.126.244l-.38.121c-.018.007-.038.009-.058.009zm.184.637c-.091 0-.171-.063-.19-.155-.021-.105.046-.207.152-.229l.356-.072c.111-.023.207.047.229.152.021.105-.046.207-.152.229l-.356.072-.039.003zm2.776-4.13c-.006-.028-.027-.137-.101-.27-.025-.045-.082-.059-.14-.066-.072-.009-.6-.085-.61.022 0 0-.003.159-.077.268-.075.109-.127.377-.146.577-.019.199-.105.951-.085 1.478.02.528.183 1.482.19 1.8.008.318 0 .814-.068 1.18s-.14.692-.196.893c-.072.259-.168.471-.279.619 0 0 .417-.028.736-.645.252-.487.393-.955.446-1.411.004-.035.113-1.252.165-1.86.038-.445.102-1.155.102-1.155.081-.841.1-1.269.063-1.43z"/><path fill="#8899A6" d="M11.211 32.283l.269-.259c.045-.036.11-.027.143.021.102.149.348.441.441.541-.26-.037-.661-.051-.809-.149-.056-.038-.096-.112-.044-.154z"/><path fill="#1C6399" d="M14.355 34.104c.07-.163.038-.485.003-.683-.024-.136-.109-.486-.206-.772-.043-.129-.101-.274-.136-.33-.108-.176-.212-.237-.28-.267-.082-.036-.155-.022-.188.001-.134.091-.322.405-.535.578-.071.058-.144.1-.22.113-.273.048-.755-.184-1.112-.359-.214-.105-.385-.189-.438-.18-.059.01-.102.039-.143.078l-.002.001h.001c-.108.104-.199.293-.516.492-.206.128-1.14.724-1.14.724-.24.147-.275.265-.403.346-.262.167-.987.534-1.209.678-.222.144-.275.357-.255.505.02.148.076.22.076.22s.242.291 1.549.166c.945-.09 1.045-.269 2.365-.763 1.32-.493 2.789-.548 2.789-.548z"/><path fill="#3B94D9" d="M12.266 34.382c.03-.252.228-.863.555-1.11.295-.222 1.166-.56 1.331-.624.102.271.202.703.226.843.033.186.076.398.004.553l-.028.059c.001.001-1.481.173-2.088.279z"/><path fill="#CCD6DD" d="M11.144 33.103c-.054 0-.109-.023-.147-.067l-.247-.287c-.07-.081-.061-.204.02-.274.081-.07.205-.061.274.02l.247.287c.07.081.061.204-.02.274-.038.032-.083.047-.127.047zm-.575.425c-.063 0-.125-.031-.163-.088l-.218-.334c-.058-.09-.033-.21.057-.269.09-.058.209-.034.269.056l.218.334c.058.09.033.21-.057.269-.033.022-.069.032-.106.032zm-.617.337c-.07 0-.138-.039-.173-.106l-.165-.324c-.048-.095-.01-.212.085-.261.095-.049.211-.011.261.085l.165.324c.048.096.01.212-.085.261-.028.015-.059.021-.088.021zm4.369 1.108c.026-.014.125-.062.234-.17.036-.036.035-.095.026-.153-.01-.072-.078-.601-.184-.582 0 0-.154.04-.279-.003-.125-.043-.398-.021-.595.013-.197.035-.944.152-1.447.312-.503.16-1.379.571-1.684.664-.305.092-.784.217-1.156.249-.371.032-.705.05-.913.049-.269 0-.498-.036-.671-.103 0 0 .138.394.818.537.537.113 1.025.124 1.479.053.034-.005 1.237-.225 1.836-.337.439-.082 1.14-.21 1.14-.21.833-.146 1.25-.241 1.396-.319z"/><path fill="#1C6399" d="M12.654 21.244c.751-.398 3.235-1.653 4.947-1.804.156-.014.298.088.352.235l1.328 3.635c.068.186-.027.391-.216.451-.781.25-2.74.915-4.22 1.719-.157.085-.347.041-.448-.106-.456-.664-1.642-2.477-1.923-3.76-.032-.15.045-.298.18-.37z"/><path fill="#357BAA" d="M17.514 25.488c-.196-.827-.785-3.547-.501-5.242.026-.155.16-.266.316-.281l3.853-.37c.198-.019.371.125.382.323.046.818.196 2.882.601 4.517.043.173-.048.346-.216.407-.758.274-2.811.965-4.123.914-.153-.007-.276-.118-.312-.268z"/><path fill="#D4AB88" d="M15.015 10.618c-.085.612.05 1.546 1.466 1.787 1.416.241 2.812.059 3.411-.108.599-.167.569.884.747 1.872.179.992.301 1.768.252 1.973-.082.347-.809 1.011-.517 1.612s.757 1.179 1.332.962c.575-.217 1.05-.475 1.203-.797s-.525-1.295-.552-1.574c-.027-.278.227-3.888.194-4.298-.04-.501-.078-1.187-.896-1.47-.818-.284-4.094-.92-4.915-1.079-.942-.185-1.612.309-1.725 1.12z"/><path fill="#D4AB88" d="M16.217 6.241c.285-.396.498-.858.589-1.424.326-2.021-.9-3.9-2.738-4.196-1.838-.296-4.287 1.14-4.162 3.184.125 2.029 1.356 4.986 3.04 4.423.444-.149.889-.311 1.31-.502.19.209.349 1.031.298 1.742-.131 1.81 2.363 1.913 2.492.1.104-1.435-.819-2.312-.829-3.327z"/><path fill="#963B22" d="M10.637 1.206C13.067-.4 14.736-.192 16.151.88c1.405 1.065 1.526 3.148 1.178 4.485-.348 1.338-.736 1.275-.736 1.275s-1.824.465-2.005-1.233c-.057-.537.534-.843-.138-1.615-.432-.497-1.358-.219-1.344.514.015.732-.363.605-.363.605l-1.153-1.91s-.951-.03-1.456.856c-.317.555-1.62-1.248.503-2.651z"/><path fill="#4289C1" d="M19.459 10.057c-.77-1.644-1.984-2.479-3.384-1.957-4.381 1.635-2.36 5.68-.781 12.252 0 0 3.109.449 6.316.36 0 .001-.298-6.698-2.151-10.655z"/><path fill="#D4AB88" d="M16.94 10.268c-.577-.345-1.571-.605-2.413.712s-1.251 2.794-1.338 3.466c-.087.672-1.127.196-2.194-.045-1.07-.242-2.429-.654-2.614-.79-.313-.229-.199-.874-.925-.837s-1.083-.047-1.11.622c-.026.669-.035 1.339.222 1.629.258.29 1.127.04 1.516.177.287.101 3.803 1.876 4.228 2.017.519.172 1.223.425 1.854-.275s2.658-3.714 3.167-4.47c.584-.867.373-1.748-.393-2.206z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f3c3-1f3fd.svg b/public/emoji/1f3c3-1f3fd.svg
index 20799e947f9f8e19939e6205a3bcf549b236a28e..847b7f6e002b4d21140be715c121463842ffc212 100644
--- a/public/emoji/1f3c3-1f3fd.svg
+++ b/public/emoji/1f3c3-1f3fd.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#2A6797" d="M12.002 34.001c-.182 0-.367-.025-.55-.078-1.062-.304-1.677-1.41-1.374-2.473l2-7c.124-.435.392-.814.76-1.077l7-5c.896-.642 2.147-.435 2.789.465.642.898.434 2.147-.465 2.789l-6.431 4.595-1.808 6.328c-.251.878-1.051 1.45-1.921 1.451z"/><path fill="#4289C1" d="M26.998 31c-.3 0-.605-.067-.892-.211l-6-3C19.428 27.45 19 26.758 19 26v-5c0-1.104.896-2 2-2s2 .896 2 2v3.764l4.895 2.447c.988.494 1.389 1.695.895 2.684-.352.701-1.058 1.105-1.792 1.105z"/><path fill="#292F33" d="M29.395 28.257c.103-.369-.192-.668-.574-.756-.611-.141-.867-.17-.867-.17-.305-.022-.965.064-1.064.414-.717 2.543-.657 5.569-.246 6.404.242.493.981.429 1.128-.095l1.623-5.797zm-16.697 6.819c.362.125.678-.152.789-.528.177-.601.221-.856.221-.856.04-.303-.007-.967-.35-1.087-2.496-.867-5.52-.986-6.378-.626-.506.213-.486.954.027 1.131l5.691 1.966z"/><path fill="#D5AB88" d="M18.329 7.294c.321-.415.567-.904.685-1.509.424-2.16-.824-4.224-2.788-4.609-1.964-.386-4.649 1.068-4.589 3.268.06 2.185 1.274 5.408 3.104 4.864.483-.143.966-.301 1.426-.491.196.232.335.648.255 1.409-.207 1.94 2.472 2.616 2.677.672.162-1.537-.797-2.513-.77-3.604z"/><path fill="#963B22" d="M12.517 1.678c2.67-1.637 4.456-1.352 5.937-.147 1.471 1.196 1.524 3.438 1.101 4.863-.423 1.425-.838 1.343-.838 1.343s-1.977.433-2.109-1.399c-.042-.579.605-.886-.089-1.741-.446-.55-1.452-.285-1.463.503-.011.788-.412.637-.412.637l-1.168-2.096s-1.021-.067-1.596.866c-.362.586-1.695-1.399.637-2.829z"/><path fill="#D5AB88" d="M27.001 18c-.367 0-.72-.202-.896-.553-1.788-3.576-7.366-5.481-7.423-5.5-.523-.175-.806-.742-.63-1.265.174-.523.735-.809 1.264-.632.261.087 6.418 2.181 8.578 6.502.247.494.047 1.095-.447 1.342-.143.072-.296.106-.446.106z"/><path fill="#77B255" d="M21.149 10.657c-.89-1.522-2.123-2.212-3.398-1.564-3.992 2.029-1.881 5.138.259 11.373 0 0 1 .927 3.358.296 1.659-.444 2.691.706 2.976.398.285-.309-1.053-6.839-3.195-10.503z"/><path fill="#D5AB88" d="M16.143 12.485c-.028.046-2.825 4.631-7.339 5.534l.004.02C8.351 18.131 8 18.516 8 19c0 .553.448 1 1 1 .068 0 .128-.025.192-.039l.004.02c5.372-1.074 8.529-6.246 8.661-6.466l-1.714-1.03z"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#D4AB88" d="M15.087 24.856l-1.728-3.593c-.428.233-2.257 1.253-3.35 2.237-.635.572-.549 1.002-.36 1.944l.017.085c.189.952 2.205 7.351 2.47 8.187l1.345-.334c.011-.446.057-2.767-.176-4.233-.073-.463-.147-1.025-.214-1.522-.071-.543-.134-1.012-.18-1.248-.064-.334.033-.53.337-.677.862-.416 1.586-.735 1.839-.846zm8.721 1.817c-.546-.067-1.019-.126-1.258-.141-.339-.021-.504-.165-.57-.496-.188-.939-.313-1.721-.356-1.993l-3.912.767c.118.473.644 2.5 1.322 3.806.393.757.831.782 1.79.838l.087.005c.975.057 7.669-.284 8.545-.329l.015-1.385c-.43-.124-2.663-.752-4.142-.896-.465-.045-1.026-.115-1.521-.176z"/><path fill="#8899A6" d="M27.805 29.682l-.178-.328c-.022-.053.004-.113.058-.132.171-.059.518-.217.639-.281-.105.24-.225.624-.359.74-.052.043-.134.063-.16.001z"/><path fill="#1C6399" d="M30.398 27.138c-.139-.111-.457-.166-.657-.185-.138-.013-.498-.024-.799-.008-.136.008-.291.024-.355.043-.198.057-.285.141-.332.198-.057.069-.062.144-.049.181.052.153.304.418.414.67.037.084.058.166.05.243-.027.276-.379.678-.643.976-.158.179-.285.32-.29.375-.006.059.011.109.037.158v.002c.072.132.229.269.337.629.069.232.395 1.291.395 1.291.078.27.182.336.226.481.091.297.251 1.094.331 1.346.08.252.271.36.418.381s.232-.014.232-.014.345-.155.574-1.449c.165-.935.019-1.079-.105-2.483s.216-2.835.216-2.835z"/><path fill="#3B94D9" d="M30.109 29.226c-.235-.096-.771-.45-.922-.831-.136-.344-.229-1.273-.246-1.449.288-.026.731-.007.873.007.188.018.404.033.534.143l.05.043c0-.001-.229 1.473-.289 2.087z"/><path fill="#CCD6DD" d="M28.048 30.27c-.073 0-.142-.041-.175-.111-.046-.097-.005-.213.092-.258l.342-.162c.097-.046.212-.005.259.092.046.097.005.213-.092.258l-.342.162c-.028.013-.056.019-.084.019zm.218.625c-.082 0-.158-.053-.185-.135-.032-.102.024-.211.126-.244l.38-.121c.097-.033.21.023.243.126.032.102-.024.211-.126.244l-.38.121c-.018.007-.038.009-.058.009zm.184.637c-.091 0-.171-.063-.19-.155-.021-.105.046-.207.152-.229l.356-.072c.111-.023.207.047.229.152.021.105-.046.207-.152.229l-.356.072-.039.003zm2.776-4.13c-.006-.028-.027-.137-.101-.27-.025-.045-.082-.059-.14-.066-.072-.009-.6-.085-.61.022 0 0-.003.159-.077.268-.075.109-.127.377-.146.577-.019.199-.105.951-.085 1.478.02.528.183 1.482.19 1.8.008.318 0 .814-.068 1.18s-.14.692-.196.893c-.072.259-.168.471-.279.619 0 0 .417-.028.736-.645.252-.487.393-.955.446-1.411.004-.035.113-1.252.165-1.86.038-.445.102-1.155.102-1.155.081-.841.1-1.269.063-1.43z"/><path fill="#8899A6" d="M11.211 32.283l.269-.259c.045-.036.11-.027.143.021.102.149.348.441.441.541-.26-.037-.661-.051-.809-.149-.056-.038-.096-.112-.044-.154z"/><path fill="#1C6399" d="M14.355 34.104c.07-.163.038-.485.003-.683-.024-.136-.109-.486-.206-.772-.043-.129-.101-.274-.136-.33-.108-.176-.212-.237-.28-.267-.082-.036-.155-.022-.188.001-.134.091-.322.405-.535.578-.071.058-.144.1-.22.113-.273.048-.755-.184-1.112-.359-.214-.105-.385-.189-.438-.18-.059.01-.102.039-.143.078l-.002.001h.001c-.108.104-.199.293-.516.492-.206.128-1.14.724-1.14.724-.24.147-.275.265-.403.346-.262.167-.987.534-1.209.678-.222.144-.275.357-.255.505.02.148.076.22.076.22s.242.291 1.549.166c.945-.09 1.045-.269 2.365-.763 1.32-.493 2.789-.548 2.789-.548z"/><path fill="#3B94D9" d="M12.266 34.382c.03-.252.228-.863.555-1.11.295-.222 1.166-.56 1.331-.624.102.271.202.703.226.843.033.186.076.398.004.553l-.028.059c.001.001-1.481.173-2.088.279z"/><path fill="#CCD6DD" d="M11.144 33.103c-.054 0-.109-.023-.147-.067l-.247-.287c-.07-.081-.061-.204.02-.274.081-.07.205-.061.274.02l.247.287c.07.081.061.204-.02.274-.038.032-.083.047-.127.047zm-.575.425c-.063 0-.125-.031-.163-.088l-.218-.334c-.058-.09-.033-.21.057-.269.09-.058.209-.034.269.056l.218.334c.058.09.033.21-.057.269-.033.022-.069.032-.106.032zm-.617.337c-.07 0-.138-.039-.173-.106l-.165-.324c-.048-.095-.01-.212.085-.261.095-.049.211-.011.261.085l.165.324c.048.096.01.212-.085.261-.028.015-.059.021-.088.021zm4.369 1.108c.026-.014.125-.062.234-.17.036-.036.035-.095.026-.153-.01-.072-.078-.601-.184-.582 0 0-.154.04-.279-.003-.125-.043-.398-.021-.595.013-.197.035-.944.152-1.447.312-.503.16-1.379.571-1.684.664-.305.092-.784.217-1.156.249-.371.032-.705.05-.913.049-.269 0-.498-.036-.671-.103 0 0 .138.394.818.537.537.113 1.025.124 1.479.053.034-.005 1.237-.225 1.836-.337.439-.082 1.14-.21 1.14-.21.833-.146 1.25-.241 1.396-.319z"/><path fill="#1C6399" d="M12.654 21.244c.751-.398 3.235-1.653 4.947-1.804.156-.014.298.088.352.235l1.328 3.635c.068.186-.027.391-.216.451-.781.25-2.74.915-4.22 1.719-.157.085-.347.041-.448-.106-.456-.664-1.642-2.477-1.923-3.76-.032-.15.045-.298.18-.37z"/><path fill="#357BAA" d="M17.514 25.488c-.196-.827-.785-3.547-.501-5.242.026-.155.16-.266.316-.281l3.853-.37c.198-.019.371.125.382.323.046.818.196 2.882.601 4.517.043.173-.048.346-.216.407-.758.274-2.811.965-4.123.914-.153-.007-.276-.118-.312-.268z"/><path fill="#D4AB88" d="M15.015 10.618c-.085.612.05 1.546 1.466 1.787 1.416.241 2.812.059 3.411-.108.599-.167.569.884.747 1.872.179.992.301 1.768.252 1.973-.082.347-.809 1.011-.517 1.612s.757 1.179 1.332.962c.575-.217 1.05-.475 1.203-.797s-.525-1.295-.552-1.574c-.027-.278.227-3.888.194-4.298-.04-.501-.078-1.187-.896-1.47-.818-.284-4.094-.92-4.915-1.079-.942-.185-1.612.309-1.725 1.12z"/><path fill="#D4AB88" d="M16.217 6.241c.285-.396.498-.858.589-1.424.326-2.021-.9-3.9-2.738-4.196-1.838-.296-4.287 1.14-4.162 3.184.125 2.029 1.356 4.986 3.04 4.423.444-.149.889-.311 1.31-.502.19.209.349 1.031.298 1.742-.131 1.81 2.363 1.913 2.492.1.104-1.435-.819-2.312-.829-3.327z"/><path fill="#963B22" d="M10.637 1.206C13.067-.4 14.736-.192 16.151.88c1.405 1.065 1.526 3.148 1.178 4.485-.348 1.338-.736 1.275-.736 1.275s-1.824.465-2.005-1.233c-.057-.537.534-.843-.138-1.615-.432-.497-1.358-.219-1.344.514.015.732-.363.605-.363.605l-1.153-1.91s-.951-.03-1.456.856c-.317.555-1.62-1.248.503-2.651z"/><path fill="#4289C1" d="M19.459 10.057c-.77-1.644-1.984-2.479-3.384-1.957-4.381 1.635-2.36 5.68-.781 12.252 0 0 3.109.449 6.316.36 0 .001-.298-6.698-2.151-10.655z"/><path fill="#D4AB88" d="M16.94 10.268c-.577-.345-1.571-.605-2.413.712s-1.251 2.794-1.338 3.466c-.087.672-1.127.196-2.194-.045-1.07-.242-2.429-.654-2.614-.79-.313-.229-.199-.874-.925-.837s-1.083-.047-1.11.622c-.026.669-.035 1.339.222 1.629.258.29 1.127.04 1.516.177.287.101 3.803 1.876 4.228 2.017.519.172 1.223.425 1.854-.275s2.658-3.714 3.167-4.47c.584-.867.373-1.748-.393-2.206z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f3c3-1f3fe-200d-2640-fe0f.svg b/public/emoji/1f3c3-1f3fe-200d-2640-fe0f.svg
index 2ec1034b26ed63d3b633be7a23d1d837e2f1f972..175349d180ff62b41502bbe0ae1ea3115d3a303c 100644
--- a/public/emoji/1f3c3-1f3fe-200d-2640-fe0f.svg
+++ b/public/emoji/1f3c3-1f3fe-200d-2640-fe0f.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#2A6797" d="M12.002 34.001c-.182 0-.367-.025-.55-.078-1.062-.304-1.677-1.41-1.374-2.473l2-7c.124-.435.392-.814.76-1.077l7-5c.896-.642 2.147-.435 2.789.465.642.898.434 2.147-.465 2.789l-6.431 4.595-1.808 6.328c-.251.878-1.051 1.45-1.921 1.451z"/><path fill="#4289C1" d="M26.998 31c-.3 0-.605-.067-.892-.211l-6-3C19.428 27.45 19 26.758 19 26v-5c0-1.104.896-2 2-2s2 .896 2 2v3.764l4.895 2.447c.988.494 1.389 1.695.895 2.684-.352.701-1.058 1.105-1.792 1.105z"/><path fill="#292F33" d="M29.395 28.257c.103-.369-.192-.668-.574-.756-.611-.141-.867-.17-.867-.17-.305-.022-.965.064-1.064.414-.717 2.543-.657 5.569-.246 6.404.242.493.981.429 1.128-.095l1.623-5.797zm-16.697 6.819c.362.125.678-.152.789-.528.177-.601.221-.856.221-.856.04-.303-.007-.967-.35-1.087-2.496-.867-5.52-.986-6.378-.626-.506.213-.486.954.027 1.131l5.691 1.966z"/><path fill="#AF7E57" d="M19.822 5.072c-.059-2.302-1.974-4.12-4.275-4.06-2.302.059-4.119 1.973-4.06 4.275.059 2.302 1.973 4.119 4.275 4.06.211-.005.412-.042.613-.078.061.238.091.539.047.958-.207 1.94 2.472 2.616 2.677.672.116-1.101-.345-1.915-.606-2.688.839-.786 1.361-1.901 1.329-3.139z"/><path fill="#60352A" d="M24.144 5.997c-1.085-.054-2.134-.177-3.928-2.487-1.192-1.536-2.305-2.522-5.061-2.496-2.925.027-5.375 2.516-3.498 3.761.819.543 1.505.285 2.821.654 2.065.578 2.378 2.775 4.244 3.268 3.651.965 6.507-2.647 5.422-2.7z"/><path fill="#AF7E57" d="M27.001 18c-.367 0-.72-.202-.896-.553-1.788-3.576-7.366-5.481-7.423-5.5-.523-.175-.806-.742-.63-1.265.174-.523.735-.809 1.264-.632.261.087 6.418 2.181 8.578 6.502.247.494.047 1.095-.447 1.342-.143.072-.296.106-.446.106z"/><path fill="#9268CA" d="M21.149 10.657c-.89-1.522-2.123-2.212-3.398-1.564-3.992 2.029-1.881 5.138.259 11.373 0 0 1 .927 3.358.296 1.659-.444 2.691.706 2.976.398.285-.309-1.053-6.839-3.195-10.503z"/><path fill="#AF7E57" d="M16.143 12.485c-.028.046-2.825 4.631-7.339 5.534l.004.02C8.351 18.131 8 18.516 8 19c0 .553.448 1 1 1 .068 0 .128-.025.192-.039l.004.02c5.372-1.074 8.529-6.246 8.661-6.466l-1.714-1.03z"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#AF7E57" d="M13.483 21.579c-.58.32-2.256 1.279-3.282 2.204-.596.537-.518.928-.329 1.871l.017.085c.186.932 2.106 7.039 2.483 8.232l1.168-.291c.014-.621.043-2.801-.18-4.205-.074-.47-.149-1.036-.217-1.549-.07-.532-.138-1.035-.184-1.273-.077-.396.05-.65.411-.825.772-.374 1.437-.671 1.764-.814l-1.651-3.435zm10.673 5.408c-.533-.065-1.037-.128-1.278-.143-.403-.025-.618-.212-.695-.606-.168-.842-.288-1.56-.345-1.912l-3.74.733c.164.643.671 2.505 1.308 3.732.369.711.767.734 1.726.789l.088.005c.95.057 7.342-.266 8.593-.33l.013-1.205c-.597-.169-2.699-.746-4.114-.885-.476-.044-1.042-.114-1.556-.178z"/><path fill="#8899A6" d="M28.11 29.77l-.166-.306c-.021-.049.003-.106.054-.123.16-.055.483-.203.596-.262-.098.224-.21.582-.335.69-.048.041-.124.059-.149.001z"/><path fill="#BE1931" d="M30.53 27.396c-.13-.104-.427-.155-.613-.173-.129-.013-.464-.023-.746-.007-.127.007-.272.023-.331.04-.185.054-.266.131-.31.185-.053.065-.058.134-.046.169.049.143.284.39.386.625.034.078.054.155.047.226-.025.258-.354.633-.6.911-.148.167-.266.299-.271.35-.005.055.01.102.035.148v.002c.067.123.214.251.314.587.065.217.369 1.205.369 1.205.073.252.17.313.211.449.085.277.235 1.021.309 1.256.074.235.253.336.39.355.138.019.217-.013.217-.013s.322-.145.535-1.352c.154-.872.018-1.007-.098-2.317-.114-1.312.202-2.646.202-2.646z"/><path fill="#DD2E44" d="M30.261 29.344c-.219-.09-.72-.42-.86-.775-.127-.321-.213-1.188-.229-1.353.269-.024.682-.006.815.006.175.017.377.031.498.134l.046.04c-.001 0-.215 1.376-.27 1.948z"/><path fill="#CCD6DD" d="M28.337 30.337c-.075 0-.146-.042-.181-.115-.048-.1-.005-.219.095-.266l.319-.151c.104-.048.22-.004.267.095.047.1.005.219-.095.266l-.319.151c-.028.014-.058.02-.086.02zm.204.584c-.085 0-.163-.054-.19-.139-.034-.105.024-.218.13-.251l.354-.113c.1-.035.217.024.251.13.034.105-.024.218-.13.251l-.354.113c-.02.006-.04.009-.061.009zm.172.595c-.094 0-.177-.065-.196-.16-.021-.108.048-.214.156-.236l.332-.068c.114-.023.214.048.236.156.021.108-.048.214-.156.236l-.332.068c-.014.002-.027.004-.04.004zm2.59-3.873c-.006-.027-.025-.128-.095-.252-.023-.042-.077-.055-.131-.061-.067-.009-.56-.08-.569.02 0 0-.002.148-.072.25-.07.102-.118.352-.136.539-.018.186-.098.887-.08 1.379.018.492.17 1.383.178 1.68.007.297 0 .759-.063 1.101-.063.342-.131.646-.183.834-.067.242-.157.439-.26.578 0 0 .389-.026.687-.602.235-.454.367-.891.416-1.317.004-.032.105-1.168.154-1.736.035-.415.095-1.078.095-1.078.075-.786.093-1.185.059-1.335z"/><path fill="#8899A6" d="M11.438 32.516l.246-.246c.041-.034.102-.027.134.017.098.138.332.406.421.497-.243-.03-.618-.036-.757-.125-.054-.035-.093-.103-.044-.143z"/><path fill="#BE1931" d="M14.401 34.162c.063-.154.027-.453-.008-.637-.025-.127-.11-.452-.205-.717-.043-.119-.099-.254-.132-.306-.104-.162-.201-.217-.266-.244-.077-.033-.145-.018-.175.004-.123.088-.294.383-.489.548-.065.055-.133.095-.204.109-.254.049-.707-.159-1.044-.317-.202-.094-.362-.17-.412-.16-.054.011-.095.038-.132.075l-.002.001h.001c-.099.099-.18.277-.474.468-.189.123-1.051.696-1.051.696-.221.141-.252.252-.37.33-.242.16-.912.515-1.117.653-.204.138-.251.338-.23.475s.074.204.074.204.23.268 1.448.129c.88-.1.97-.269 2.194-.752s2.594-.559 2.594-.559z"/><path fill="#DD2E44" d="M12.457 34.457c.024-.236.198-.809.499-1.045.271-.212 1.079-.542 1.232-.604.1.251.2.652.225.783.033.173.078.37.013.516l-.025.056c0-.001-1.38.184-1.944.294z"/><path fill="#CCD6DD" d="M11.385 33.301c-.055 0-.109-.022-.149-.067L11 32.971c-.073-.082-.066-.209.016-.282.083-.073.207-.067.283.016l.235.263c.073.082.066.209-.016.282-.039.034-.085.051-.133.051zm-.529.406c-.063 0-.127-.031-.165-.088l-.209-.308c-.062-.092-.039-.216.053-.278.089-.061.216-.039.277.053l.209.308c.062.092.039.216-.053.278-.033.024-.072.035-.112.035zm-.57.325c-.071 0-.141-.038-.177-.106l-.159-.299c-.052-.098-.015-.219.083-.271.094-.052.218-.016.271.083l.159.299c.052.098.015.219-.083.271-.029.016-.062.023-.094.023zm4.098.941c.024-.013.116-.06.215-.162.033-.034.031-.089.022-.143-.011-.067-.083-.559-.181-.54 0 0-.143.04-.26.002-.117-.038-.371-.013-.555.022-.184.036-.878.158-1.345.315-.467.157-1.277.556-1.56.648-.283.091-.728.215-1.074.252-.346.037-.657.058-.851.062-.251.004-.466-.025-.628-.085 0 0 .136.366.772.488.502.097.959.099 1.381.025.032-.006 1.15-.231 1.708-.346.408-.084 1.06-.215 1.06-.215.774-.151 1.162-.247 1.296-.323z"/><path fill="#A0041E" d="M13.084 21.466c.738-.382 3.176-1.588 4.842-1.76.152-.016 1.526 3.904 1.341 3.963-.763.246-2.681.897-4.134 1.668-.154.082-.338.044-.433-.09-.431-.605-1.549-2.257-1.798-3.436-.029-.138.048-.276.182-.345z"/><path fill="#BE1931" d="M17.882 25.364c-.196-.795-.794-3.411-.586-5.049.019-.15 3.69-.685 3.69-.685.175-.021.6 3.084 1.005 4.655.043.166-.033.334-.181.395-.667.275-2.474.969-3.643.937-.136-.004-.249-.11-.285-.253z"/><path fill="#AF7E57" d="M14.801 11.245c-.114.64.259 1.431 1.738 1.741 1.479.31 2.554.273 3.324.218.653-.047.563.952.711 1.998.148 1.05.241 2.419.182 2.633-.1.361-.722.479-.439 1.123.283.643.329.995.942.79.613-.205 1.222-.427 1.396-.759.174-.332-.43-1.065-.439-1.463-.007-.294.293-3.972.275-4.405-.022-.528-.035-1.251-.884-1.582-.849-.331-4.108-1.174-4.972-1.342-.912-.177-1.683.199-1.834 1.048z"/><path fill="#AF7E57" d="M16.495 6.612c.31-.401.546-.872.661-1.455.409-2.083-.794-4.073-2.688-4.444-1.893-.372-4.483 1.029-4.425 3.151.057 2.107 1.229 5.214 2.993 4.69.466-.138.932-.29 1.375-.474.189.224.325 1.081.247 1.815-.2 1.87 2.381 2.065 2.579.192.157-1.482-.768-2.424-.742-3.475z"/><path fill="#60352A" d="M21.903 2.733c-1.311-.014-2.496-1.36-3.845-.501-.264.168-.456.337-.604.503-.234-.711-.636-1.367-1.299-1.798C15.507.515 14.712.2 13.961.285 9.384.801 9.632 4.111 9.98 4.421c.348.31 1.299-.572 2.002-.669.328-.046 1.041-.053 1.419.49.306.44.411 1.33.411 1.33s.012-1.012.041-1.368c.027-.332.356-.714.801-.222.387.428.19 1.268-.079 1.356-.207.068.129.575.648.961.946.704 1.681.428 1.786.389.106-.039.465-.118.648-1.333.026-.169.044-.35.055-.537.374.324.987.709 1.827.715.929.007 2.619-.466 3.586-1.621.744-.889 1.05-2.355 1.05-2.355-.395.738-1.283 1.187-2.272 1.176z"/><path fill="#DD2E44" d="M19.624 10.939c-.728-1.703-1.783-2.597-3.229-2.114-1.285.43-1.922 1.151-2.301 1.96-.184.393-.901 1.933-.466 2.933.851 1.956 2.243 5.863 2.488 7.059 0 0 .322.326 2.403.064 1.823-.23 2.732-.404 2.732-.404-.277-2.594-.452-6.747-1.627-9.498z"/><path fill="#AF7E57" d="M17.202 11.067c-.577-.372-1.499-.331-2.404.983-.905 1.314-1.308 2.376-1.568 3.148-.221.655-1.157.16-2.236-.122-1.083-.284-2.455-.752-2.639-.897-.311-.245-.172-.898-.914-.886-.742.013-1.103-.086-1.153.595-.05.681-.083 1.364.17 1.669.253.305 1.212.016 1.604.169.289.113 3.749 1.905 4.178 2.064.524.194 1.233.476 1.901-.216.668-.692 2.819-3.522 3.335-4.296.543-.814.491-1.718-.274-2.211z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f3c3-1f3fe-200d-2642-fe0f.svg b/public/emoji/1f3c3-1f3fe-200d-2642-fe0f.svg
index 92b76eca52bf1e0d46522cdc4924cce0272bce94..51db6d67ae12992d51db7d588f1961a0339b8787 100644
--- a/public/emoji/1f3c3-1f3fe-200d-2642-fe0f.svg
+++ b/public/emoji/1f3c3-1f3fe-200d-2642-fe0f.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#2A6797" d="M12.002 34.001c-.182 0-.367-.025-.55-.078-1.062-.304-1.677-1.41-1.374-2.473l2-7c.124-.435.392-.814.76-1.077l7-5c.896-.642 2.147-.435 2.789.465.642.898.434 2.147-.465 2.789l-6.431 4.595-1.808 6.328c-.251.878-1.051 1.45-1.921 1.451z"/><path fill="#4289C1" d="M26.998 31c-.3 0-.605-.067-.892-.211l-6-3C19.428 27.45 19 26.758 19 26v-5c0-1.104.896-2 2-2s2 .896 2 2v3.764l4.895 2.447c.988.494 1.389 1.695.895 2.684-.352.701-1.058 1.105-1.792 1.105z"/><path fill="#292F33" d="M29.395 28.257c.103-.369-.192-.668-.574-.756-.611-.141-.867-.17-.867-.17-.305-.022-.965.064-1.064.414-.717 2.543-.657 5.569-.246 6.404.242.493.981.429 1.128-.095l1.623-5.797zm-16.697 6.819c.362.125.678-.152.789-.528.177-.601.221-.856.221-.856.04-.303-.007-.967-.35-1.087-2.496-.867-5.52-.986-6.378-.626-.506.213-.486.954.027 1.131l5.691 1.966z"/><path fill="#AF7E57" d="M18.329 7.294c.321-.415.567-.904.685-1.509.424-2.16-.824-4.224-2.788-4.609-1.964-.386-4.649 1.068-4.589 3.268.06 2.185 1.274 5.408 3.104 4.864.483-.143.966-.301 1.426-.491.196.232.335.648.255 1.409-.207 1.94 2.472 2.616 2.677.672.162-1.537-.797-2.513-.77-3.604z"/><path fill="#60352A" d="M12.517 1.678c2.67-1.637 4.456-1.352 5.937-.147 1.471 1.196 1.524 3.438 1.101 4.863-.423 1.425-.838 1.343-.838 1.343s-1.977.433-2.109-1.399c-.042-.579.605-.886-.089-1.741-.446-.55-1.452-.285-1.463.503-.011.788-.412.637-.412.637l-1.168-2.096s-1.021-.067-1.596.866c-.362.586-1.695-1.399.637-2.829z"/><path fill="#AF7E57" d="M27.001 18c-.367 0-.72-.202-.896-.553-1.788-3.576-7.366-5.481-7.423-5.5-.523-.175-.806-.742-.63-1.265.174-.523.735-.809 1.264-.632.261.087 6.418 2.181 8.578 6.502.247.494.047 1.095-.447 1.342-.143.072-.296.106-.446.106z"/><path fill="#77B255" d="M21.149 10.657c-.89-1.522-2.123-2.212-3.398-1.564-3.992 2.029-1.881 5.138.259 11.373 0 0 1 .927 3.358.296 1.659-.444 2.691.706 2.976.398.285-.309-1.053-6.839-3.195-10.503z"/><path fill="#AF7E57" d="M16.143 12.485c-.028.046-2.825 4.631-7.339 5.534l.004.02C8.351 18.131 8 18.516 8 19c0 .553.448 1 1 1 .068 0 .128-.025.192-.039l.004.02c5.372-1.074 8.529-6.246 8.661-6.466l-1.714-1.03z"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#AF7E57" d="M15.087 24.856l-1.728-3.593c-.428.233-2.257 1.253-3.35 2.237-.635.572-.549 1.002-.36 1.944l.017.085c.189.952 2.205 7.351 2.47 8.187l1.345-.334c.011-.446.057-2.767-.176-4.233-.073-.463-.147-1.025-.214-1.522-.071-.543-.134-1.012-.18-1.248-.064-.334.033-.53.337-.677.862-.416 1.586-.735 1.839-.846zm8.721 1.817c-.546-.067-1.019-.126-1.258-.141-.339-.021-.504-.165-.57-.496-.188-.939-.313-1.721-.356-1.993l-3.912.767c.118.473.644 2.5 1.322 3.806.393.757.831.782 1.79.838l.087.005c.975.057 7.669-.284 8.545-.329l.015-1.385c-.43-.124-2.663-.752-4.142-.896-.465-.045-1.026-.115-1.521-.176z"/><path fill="#8899A6" d="M27.805 29.682l-.178-.328c-.022-.053.004-.113.058-.132.171-.059.518-.217.639-.281-.105.24-.225.624-.359.74-.052.043-.134.063-.16.001z"/><path fill="#1C6399" d="M30.398 27.138c-.139-.111-.457-.166-.657-.185-.138-.013-.498-.024-.799-.008-.136.008-.291.024-.355.043-.198.057-.285.141-.332.198-.057.069-.062.144-.049.181.052.153.304.418.414.67.037.084.058.166.05.243-.027.276-.379.678-.643.976-.158.179-.285.32-.29.375-.006.059.011.109.037.158v.002c.072.132.229.269.337.629.069.232.395 1.291.395 1.291.078.27.182.336.226.481.091.297.251 1.094.331 1.346.08.252.271.36.418.381s.232-.014.232-.014.345-.155.574-1.449c.165-.935.019-1.079-.105-2.483s.216-2.835.216-2.835z"/><path fill="#3B94D9" d="M30.109 29.226c-.235-.096-.771-.45-.922-.831-.136-.344-.229-1.273-.246-1.449.288-.026.731-.007.873.007.188.018.404.033.534.143l.05.043c0-.001-.229 1.473-.289 2.087z"/><path fill="#CCD6DD" d="M28.048 30.27c-.073 0-.142-.041-.175-.111-.046-.097-.005-.213.092-.258l.342-.162c.097-.046.212-.005.259.092.046.097.005.213-.092.258l-.342.162c-.028.013-.056.019-.084.019zm.218.625c-.082 0-.158-.053-.185-.135-.032-.102.024-.211.126-.244l.38-.121c.097-.033.21.023.243.126.032.102-.024.211-.126.244l-.38.121c-.018.007-.038.009-.058.009zm.184.637c-.091 0-.171-.063-.19-.155-.021-.105.046-.207.152-.229l.356-.072c.111-.023.207.047.229.152.021.105-.046.207-.152.229l-.356.072-.039.003zm2.776-4.13c-.006-.028-.027-.137-.101-.27-.025-.045-.082-.059-.14-.066-.072-.009-.6-.085-.61.022 0 0-.003.159-.077.268-.075.109-.127.377-.146.577-.019.199-.105.951-.085 1.478.02.528.183 1.482.19 1.8.008.318 0 .814-.068 1.18s-.14.692-.196.893c-.072.259-.168.471-.279.619 0 0 .417-.028.736-.645.252-.487.393-.955.446-1.411.004-.035.113-1.252.165-1.86.038-.445.102-1.155.102-1.155.081-.841.1-1.269.063-1.43z"/><path fill="#8899A6" d="M11.211 32.283l.269-.259c.045-.036.11-.027.143.021.102.149.348.441.441.541-.26-.037-.661-.051-.809-.149-.056-.038-.096-.112-.044-.154z"/><path fill="#1C6399" d="M14.355 34.104c.07-.163.038-.485.003-.683-.024-.136-.109-.486-.206-.772-.043-.129-.101-.274-.136-.33-.108-.176-.212-.237-.28-.267-.082-.036-.155-.022-.188.001-.134.091-.322.405-.535.578-.071.058-.144.1-.22.113-.273.048-.755-.184-1.112-.359-.214-.105-.385-.189-.438-.18-.059.01-.102.039-.143.078l-.002.001h.001c-.108.104-.199.293-.516.492-.206.128-1.14.724-1.14.724-.24.147-.275.265-.403.346-.262.167-.987.534-1.209.678-.222.144-.275.357-.255.505.02.148.076.22.076.22s.242.291 1.549.166c.945-.09 1.045-.269 2.365-.763 1.32-.493 2.789-.548 2.789-.548z"/><path fill="#3B94D9" d="M12.266 34.382c.03-.252.228-.863.555-1.11.295-.222 1.166-.56 1.331-.624.102.271.202.703.226.843.033.186.076.398.004.553l-.028.059c.001.001-1.481.173-2.088.279z"/><path fill="#CCD6DD" d="M11.144 33.103c-.054 0-.109-.023-.147-.067l-.247-.287c-.07-.081-.061-.204.02-.274.081-.07.205-.061.274.02l.247.287c.07.081.061.204-.02.274-.038.032-.083.047-.127.047zm-.575.425c-.063 0-.125-.031-.163-.088l-.218-.334c-.058-.09-.033-.21.057-.269.09-.058.209-.034.269.056l.218.334c.058.09.033.21-.057.269-.033.022-.069.032-.106.032zm-.617.337c-.07 0-.138-.039-.173-.106l-.165-.324c-.048-.095-.01-.212.085-.261.095-.049.211-.011.261.085l.165.324c.048.096.01.212-.085.261-.028.015-.059.021-.088.021zm4.369 1.108c.026-.014.125-.062.234-.17.036-.036.035-.095.026-.153-.01-.072-.078-.601-.184-.582 0 0-.154.04-.279-.003-.125-.043-.398-.021-.595.013-.197.035-.944.152-1.447.312-.503.16-1.379.571-1.684.664-.305.092-.784.217-1.156.249-.371.032-.705.05-.913.049-.269 0-.498-.036-.671-.103 0 0 .138.394.818.537.537.113 1.025.124 1.479.053.034-.005 1.237-.225 1.836-.337.439-.082 1.14-.21 1.14-.21.833-.146 1.25-.241 1.396-.319z"/><path fill="#1C6399" d="M12.654 21.244c.751-.398 3.235-1.653 4.947-1.804.156-.014.298.088.352.235l1.328 3.635c.068.186-.027.391-.216.451-.781.25-2.74.915-4.22 1.719-.157.085-.347.041-.448-.106-.456-.664-1.642-2.477-1.923-3.76-.032-.15.045-.298.18-.37z"/><path fill="#357BAA" d="M17.514 25.488c-.196-.827-.785-3.547-.501-5.242.026-.155.16-.266.316-.281l3.853-.37c.198-.019.371.125.382.323.046.818.196 2.882.601 4.517.043.173-.048.346-.216.407-.758.274-2.811.965-4.123.914-.153-.007-.276-.118-.312-.268z"/><path fill="#AF7E57" d="M15.015 10.618c-.085.612.05 1.546 1.466 1.787 1.416.241 2.812.059 3.411-.108.599-.167.569.884.747 1.872.179.992.301 1.768.252 1.973-.082.347-.809 1.011-.517 1.612s.757 1.179 1.332.962c.575-.217 1.05-.475 1.203-.797s-.525-1.295-.552-1.574c-.027-.278.227-3.888.194-4.298-.04-.501-.078-1.187-.896-1.47-.818-.284-4.094-.92-4.915-1.079-.942-.185-1.612.309-1.725 1.12z"/><path fill="#AF7E57" d="M16.217 6.241c.285-.396.498-.858.589-1.424.326-2.021-.9-3.9-2.738-4.196-1.838-.296-4.287 1.14-4.162 3.184.125 2.029 1.356 4.986 3.04 4.423.444-.149.889-.311 1.31-.502.19.209.349 1.031.298 1.742-.131 1.81 2.363 1.913 2.492.1.104-1.435-.819-2.312-.829-3.327z"/><path fill="#60352A" d="M10.637 1.206C13.067-.4 14.736-.192 16.151.88c1.405 1.065 1.526 3.148 1.178 4.485-.348 1.338-.736 1.275-.736 1.275s-1.824.465-2.005-1.233c-.057-.537.534-.843-.138-1.615-.432-.497-1.358-.219-1.344.514.015.732-.363.605-.363.605l-1.153-1.91s-.951-.03-1.456.856c-.317.555-1.62-1.248.503-2.651z"/><path fill="#4289C1" d="M19.459 10.057c-.77-1.644-1.984-2.479-3.384-1.957-4.381 1.635-2.36 5.68-.781 12.252 0 0 3.109.449 6.316.36 0 .001-.298-6.698-2.151-10.655z"/><path fill="#AF7E57" d="M16.94 10.268c-.577-.345-1.571-.605-2.413.712s-1.251 2.794-1.338 3.466c-.087.672-1.127.196-2.194-.045-1.07-.242-2.429-.654-2.614-.79-.313-.229-.199-.874-.925-.837s-1.083-.047-1.11.622c-.026.669-.035 1.339.222 1.629.258.29 1.127.04 1.516.177.287.101 3.803 1.876 4.228 2.017.519.172 1.223.425 1.854-.275s2.658-3.714 3.167-4.47c.584-.867.373-1.748-.393-2.206z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f3c3-1f3fe.svg b/public/emoji/1f3c3-1f3fe.svg
index 92b76eca52bf1e0d46522cdc4924cce0272bce94..51db6d67ae12992d51db7d588f1961a0339b8787 100644
--- a/public/emoji/1f3c3-1f3fe.svg
+++ b/public/emoji/1f3c3-1f3fe.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#2A6797" d="M12.002 34.001c-.182 0-.367-.025-.55-.078-1.062-.304-1.677-1.41-1.374-2.473l2-7c.124-.435.392-.814.76-1.077l7-5c.896-.642 2.147-.435 2.789.465.642.898.434 2.147-.465 2.789l-6.431 4.595-1.808 6.328c-.251.878-1.051 1.45-1.921 1.451z"/><path fill="#4289C1" d="M26.998 31c-.3 0-.605-.067-.892-.211l-6-3C19.428 27.45 19 26.758 19 26v-5c0-1.104.896-2 2-2s2 .896 2 2v3.764l4.895 2.447c.988.494 1.389 1.695.895 2.684-.352.701-1.058 1.105-1.792 1.105z"/><path fill="#292F33" d="M29.395 28.257c.103-.369-.192-.668-.574-.756-.611-.141-.867-.17-.867-.17-.305-.022-.965.064-1.064.414-.717 2.543-.657 5.569-.246 6.404.242.493.981.429 1.128-.095l1.623-5.797zm-16.697 6.819c.362.125.678-.152.789-.528.177-.601.221-.856.221-.856.04-.303-.007-.967-.35-1.087-2.496-.867-5.52-.986-6.378-.626-.506.213-.486.954.027 1.131l5.691 1.966z"/><path fill="#AF7E57" d="M18.329 7.294c.321-.415.567-.904.685-1.509.424-2.16-.824-4.224-2.788-4.609-1.964-.386-4.649 1.068-4.589 3.268.06 2.185 1.274 5.408 3.104 4.864.483-.143.966-.301 1.426-.491.196.232.335.648.255 1.409-.207 1.94 2.472 2.616 2.677.672.162-1.537-.797-2.513-.77-3.604z"/><path fill="#60352A" d="M12.517 1.678c2.67-1.637 4.456-1.352 5.937-.147 1.471 1.196 1.524 3.438 1.101 4.863-.423 1.425-.838 1.343-.838 1.343s-1.977.433-2.109-1.399c-.042-.579.605-.886-.089-1.741-.446-.55-1.452-.285-1.463.503-.011.788-.412.637-.412.637l-1.168-2.096s-1.021-.067-1.596.866c-.362.586-1.695-1.399.637-2.829z"/><path fill="#AF7E57" d="M27.001 18c-.367 0-.72-.202-.896-.553-1.788-3.576-7.366-5.481-7.423-5.5-.523-.175-.806-.742-.63-1.265.174-.523.735-.809 1.264-.632.261.087 6.418 2.181 8.578 6.502.247.494.047 1.095-.447 1.342-.143.072-.296.106-.446.106z"/><path fill="#77B255" d="M21.149 10.657c-.89-1.522-2.123-2.212-3.398-1.564-3.992 2.029-1.881 5.138.259 11.373 0 0 1 .927 3.358.296 1.659-.444 2.691.706 2.976.398.285-.309-1.053-6.839-3.195-10.503z"/><path fill="#AF7E57" d="M16.143 12.485c-.028.046-2.825 4.631-7.339 5.534l.004.02C8.351 18.131 8 18.516 8 19c0 .553.448 1 1 1 .068 0 .128-.025.192-.039l.004.02c5.372-1.074 8.529-6.246 8.661-6.466l-1.714-1.03z"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#AF7E57" d="M15.087 24.856l-1.728-3.593c-.428.233-2.257 1.253-3.35 2.237-.635.572-.549 1.002-.36 1.944l.017.085c.189.952 2.205 7.351 2.47 8.187l1.345-.334c.011-.446.057-2.767-.176-4.233-.073-.463-.147-1.025-.214-1.522-.071-.543-.134-1.012-.18-1.248-.064-.334.033-.53.337-.677.862-.416 1.586-.735 1.839-.846zm8.721 1.817c-.546-.067-1.019-.126-1.258-.141-.339-.021-.504-.165-.57-.496-.188-.939-.313-1.721-.356-1.993l-3.912.767c.118.473.644 2.5 1.322 3.806.393.757.831.782 1.79.838l.087.005c.975.057 7.669-.284 8.545-.329l.015-1.385c-.43-.124-2.663-.752-4.142-.896-.465-.045-1.026-.115-1.521-.176z"/><path fill="#8899A6" d="M27.805 29.682l-.178-.328c-.022-.053.004-.113.058-.132.171-.059.518-.217.639-.281-.105.24-.225.624-.359.74-.052.043-.134.063-.16.001z"/><path fill="#1C6399" d="M30.398 27.138c-.139-.111-.457-.166-.657-.185-.138-.013-.498-.024-.799-.008-.136.008-.291.024-.355.043-.198.057-.285.141-.332.198-.057.069-.062.144-.049.181.052.153.304.418.414.67.037.084.058.166.05.243-.027.276-.379.678-.643.976-.158.179-.285.32-.29.375-.006.059.011.109.037.158v.002c.072.132.229.269.337.629.069.232.395 1.291.395 1.291.078.27.182.336.226.481.091.297.251 1.094.331 1.346.08.252.271.36.418.381s.232-.014.232-.014.345-.155.574-1.449c.165-.935.019-1.079-.105-2.483s.216-2.835.216-2.835z"/><path fill="#3B94D9" d="M30.109 29.226c-.235-.096-.771-.45-.922-.831-.136-.344-.229-1.273-.246-1.449.288-.026.731-.007.873.007.188.018.404.033.534.143l.05.043c0-.001-.229 1.473-.289 2.087z"/><path fill="#CCD6DD" d="M28.048 30.27c-.073 0-.142-.041-.175-.111-.046-.097-.005-.213.092-.258l.342-.162c.097-.046.212-.005.259.092.046.097.005.213-.092.258l-.342.162c-.028.013-.056.019-.084.019zm.218.625c-.082 0-.158-.053-.185-.135-.032-.102.024-.211.126-.244l.38-.121c.097-.033.21.023.243.126.032.102-.024.211-.126.244l-.38.121c-.018.007-.038.009-.058.009zm.184.637c-.091 0-.171-.063-.19-.155-.021-.105.046-.207.152-.229l.356-.072c.111-.023.207.047.229.152.021.105-.046.207-.152.229l-.356.072-.039.003zm2.776-4.13c-.006-.028-.027-.137-.101-.27-.025-.045-.082-.059-.14-.066-.072-.009-.6-.085-.61.022 0 0-.003.159-.077.268-.075.109-.127.377-.146.577-.019.199-.105.951-.085 1.478.02.528.183 1.482.19 1.8.008.318 0 .814-.068 1.18s-.14.692-.196.893c-.072.259-.168.471-.279.619 0 0 .417-.028.736-.645.252-.487.393-.955.446-1.411.004-.035.113-1.252.165-1.86.038-.445.102-1.155.102-1.155.081-.841.1-1.269.063-1.43z"/><path fill="#8899A6" d="M11.211 32.283l.269-.259c.045-.036.11-.027.143.021.102.149.348.441.441.541-.26-.037-.661-.051-.809-.149-.056-.038-.096-.112-.044-.154z"/><path fill="#1C6399" d="M14.355 34.104c.07-.163.038-.485.003-.683-.024-.136-.109-.486-.206-.772-.043-.129-.101-.274-.136-.33-.108-.176-.212-.237-.28-.267-.082-.036-.155-.022-.188.001-.134.091-.322.405-.535.578-.071.058-.144.1-.22.113-.273.048-.755-.184-1.112-.359-.214-.105-.385-.189-.438-.18-.059.01-.102.039-.143.078l-.002.001h.001c-.108.104-.199.293-.516.492-.206.128-1.14.724-1.14.724-.24.147-.275.265-.403.346-.262.167-.987.534-1.209.678-.222.144-.275.357-.255.505.02.148.076.22.076.22s.242.291 1.549.166c.945-.09 1.045-.269 2.365-.763 1.32-.493 2.789-.548 2.789-.548z"/><path fill="#3B94D9" d="M12.266 34.382c.03-.252.228-.863.555-1.11.295-.222 1.166-.56 1.331-.624.102.271.202.703.226.843.033.186.076.398.004.553l-.028.059c.001.001-1.481.173-2.088.279z"/><path fill="#CCD6DD" d="M11.144 33.103c-.054 0-.109-.023-.147-.067l-.247-.287c-.07-.081-.061-.204.02-.274.081-.07.205-.061.274.02l.247.287c.07.081.061.204-.02.274-.038.032-.083.047-.127.047zm-.575.425c-.063 0-.125-.031-.163-.088l-.218-.334c-.058-.09-.033-.21.057-.269.09-.058.209-.034.269.056l.218.334c.058.09.033.21-.057.269-.033.022-.069.032-.106.032zm-.617.337c-.07 0-.138-.039-.173-.106l-.165-.324c-.048-.095-.01-.212.085-.261.095-.049.211-.011.261.085l.165.324c.048.096.01.212-.085.261-.028.015-.059.021-.088.021zm4.369 1.108c.026-.014.125-.062.234-.17.036-.036.035-.095.026-.153-.01-.072-.078-.601-.184-.582 0 0-.154.04-.279-.003-.125-.043-.398-.021-.595.013-.197.035-.944.152-1.447.312-.503.16-1.379.571-1.684.664-.305.092-.784.217-1.156.249-.371.032-.705.05-.913.049-.269 0-.498-.036-.671-.103 0 0 .138.394.818.537.537.113 1.025.124 1.479.053.034-.005 1.237-.225 1.836-.337.439-.082 1.14-.21 1.14-.21.833-.146 1.25-.241 1.396-.319z"/><path fill="#1C6399" d="M12.654 21.244c.751-.398 3.235-1.653 4.947-1.804.156-.014.298.088.352.235l1.328 3.635c.068.186-.027.391-.216.451-.781.25-2.74.915-4.22 1.719-.157.085-.347.041-.448-.106-.456-.664-1.642-2.477-1.923-3.76-.032-.15.045-.298.18-.37z"/><path fill="#357BAA" d="M17.514 25.488c-.196-.827-.785-3.547-.501-5.242.026-.155.16-.266.316-.281l3.853-.37c.198-.019.371.125.382.323.046.818.196 2.882.601 4.517.043.173-.048.346-.216.407-.758.274-2.811.965-4.123.914-.153-.007-.276-.118-.312-.268z"/><path fill="#AF7E57" d="M15.015 10.618c-.085.612.05 1.546 1.466 1.787 1.416.241 2.812.059 3.411-.108.599-.167.569.884.747 1.872.179.992.301 1.768.252 1.973-.082.347-.809 1.011-.517 1.612s.757 1.179 1.332.962c.575-.217 1.05-.475 1.203-.797s-.525-1.295-.552-1.574c-.027-.278.227-3.888.194-4.298-.04-.501-.078-1.187-.896-1.47-.818-.284-4.094-.92-4.915-1.079-.942-.185-1.612.309-1.725 1.12z"/><path fill="#AF7E57" d="M16.217 6.241c.285-.396.498-.858.589-1.424.326-2.021-.9-3.9-2.738-4.196-1.838-.296-4.287 1.14-4.162 3.184.125 2.029 1.356 4.986 3.04 4.423.444-.149.889-.311 1.31-.502.19.209.349 1.031.298 1.742-.131 1.81 2.363 1.913 2.492.1.104-1.435-.819-2.312-.829-3.327z"/><path fill="#60352A" d="M10.637 1.206C13.067-.4 14.736-.192 16.151.88c1.405 1.065 1.526 3.148 1.178 4.485-.348 1.338-.736 1.275-.736 1.275s-1.824.465-2.005-1.233c-.057-.537.534-.843-.138-1.615-.432-.497-1.358-.219-1.344.514.015.732-.363.605-.363.605l-1.153-1.91s-.951-.03-1.456.856c-.317.555-1.62-1.248.503-2.651z"/><path fill="#4289C1" d="M19.459 10.057c-.77-1.644-1.984-2.479-3.384-1.957-4.381 1.635-2.36 5.68-.781 12.252 0 0 3.109.449 6.316.36 0 .001-.298-6.698-2.151-10.655z"/><path fill="#AF7E57" d="M16.94 10.268c-.577-.345-1.571-.605-2.413.712s-1.251 2.794-1.338 3.466c-.087.672-1.127.196-2.194-.045-1.07-.242-2.429-.654-2.614-.79-.313-.229-.199-.874-.925-.837s-1.083-.047-1.11.622c-.026.669-.035 1.339.222 1.629.258.29 1.127.04 1.516.177.287.101 3.803 1.876 4.228 2.017.519.172 1.223.425 1.854-.275s2.658-3.714 3.167-4.47c.584-.867.373-1.748-.393-2.206z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f3c3-1f3ff-200d-2640-fe0f.svg b/public/emoji/1f3c3-1f3ff-200d-2640-fe0f.svg
index 9326a89be6e2b15c791ae4ffc9dd8cdb8d441108..b19ab88119395fef9a5821243ea67f798952b4e8 100644
--- a/public/emoji/1f3c3-1f3ff-200d-2640-fe0f.svg
+++ b/public/emoji/1f3c3-1f3ff-200d-2640-fe0f.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#2A6797" d="M12.002 34.001c-.182 0-.367-.025-.55-.078-1.062-.304-1.677-1.41-1.374-2.473l2-7c.124-.435.392-.814.76-1.077l7-5c.896-.642 2.147-.435 2.789.465.642.898.434 2.147-.465 2.789l-6.431 4.595-1.808 6.328c-.251.878-1.051 1.45-1.921 1.451z"/><path fill="#4289C1" d="M26.998 31c-.3 0-.605-.067-.892-.211l-6-3C19.428 27.45 19 26.758 19 26v-5c0-1.104.896-2 2-2s2 .896 2 2v3.764l4.895 2.447c.988.494 1.389 1.695.895 2.684-.352.701-1.058 1.105-1.792 1.105z"/><path fill="#292F33" d="M29.395 28.257c.103-.369-.192-.668-.574-.756-.611-.141-.867-.17-.867-.17-.305-.022-.965.064-1.064.414-.717 2.543-.657 5.569-.246 6.404.242.493.981.429 1.128-.095l1.623-5.797zm-16.697 6.819c.362.125.678-.152.789-.528.177-.601.221-.856.221-.856.04-.303-.007-.967-.35-1.087-2.496-.867-5.52-.986-6.378-.626-.506.213-.486.954.027 1.131l5.691 1.966z"/><path fill="#7C533E" d="M19.822 5.072c-.059-2.302-1.974-4.12-4.275-4.06-2.302.059-4.119 1.973-4.06 4.275.059 2.302 1.973 4.119 4.275 4.06.211-.005.412-.042.613-.078.061.238.091.539.047.958-.207 1.94 2.472 2.616 2.677.672.116-1.101-.345-1.915-.606-2.688.839-.786 1.361-1.901 1.329-3.139z"/><path fill="#0B0200" d="M24.144 5.997c-1.085-.054-2.134-.177-3.928-2.487-1.192-1.536-2.305-2.522-5.061-2.496-2.925.027-5.375 2.516-3.498 3.761.819.543 1.505.285 2.821.654 2.065.578 2.378 2.775 4.244 3.268 3.651.965 6.507-2.647 5.422-2.7z"/><path fill="#7C533E" d="M27.001 18c-.367 0-.72-.202-.896-.553-1.788-3.576-7.366-5.481-7.423-5.5-.523-.175-.806-.742-.63-1.265.174-.523.735-.809 1.264-.632.261.087 6.418 2.181 8.578 6.502.247.494.047 1.095-.447 1.342-.143.072-.296.106-.446.106z"/><path fill="#9268CA" d="M21.149 10.657c-.89-1.522-2.123-2.212-3.398-1.564-3.992 2.029-1.881 5.138.259 11.373 0 0 1 .927 3.358.296 1.659-.444 2.691.706 2.976.398.285-.309-1.053-6.839-3.195-10.503z"/><path fill="#7C533E" d="M16.143 12.485c-.028.046-2.825 4.631-7.339 5.534l.004.02C8.351 18.131 8 18.516 8 19c0 .553.448 1 1 1 .068 0 .128-.025.192-.039l.004.02c5.372-1.074 8.529-6.246 8.661-6.466l-1.714-1.03z"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#7C533E" d="M13.483 21.579c-.58.32-2.256 1.279-3.282 2.204-.596.537-.518.928-.329 1.871l.017.085c.186.932 2.106 7.039 2.483 8.232l1.168-.291c.014-.621.043-2.801-.18-4.205-.074-.47-.149-1.036-.217-1.549-.07-.532-.138-1.035-.184-1.273-.077-.396.05-.65.411-.825.772-.374 1.437-.671 1.764-.814l-1.651-3.435zm10.673 5.408c-.533-.065-1.037-.128-1.278-.143-.403-.025-.618-.212-.695-.606-.168-.842-.288-1.56-.345-1.912l-3.74.733c.164.643.671 2.505 1.308 3.732.369.711.767.734 1.726.789l.088.005c.95.057 7.342-.266 8.593-.33l.013-1.205c-.597-.169-2.699-.746-4.114-.885-.476-.044-1.042-.114-1.556-.178z"/><path fill="#8899A6" d="M28.11 29.77l-.166-.306c-.021-.049.003-.106.054-.123.16-.055.483-.203.596-.262-.098.224-.21.582-.335.69-.048.041-.124.059-.149.001z"/><path fill="#BE1931" d="M30.53 27.396c-.13-.104-.427-.155-.613-.173-.129-.013-.464-.023-.746-.007-.127.007-.272.023-.331.04-.185.054-.266.131-.31.185-.053.065-.058.134-.046.169.049.143.284.39.386.625.034.078.054.155.047.226-.025.258-.354.633-.6.911-.148.167-.266.299-.271.35-.005.055.01.102.035.148v.002c.067.123.214.251.314.587.065.217.369 1.205.369 1.205.073.252.17.313.211.449.085.277.235 1.021.309 1.256.074.235.253.336.39.355.138.019.217-.013.217-.013s.322-.145.535-1.352c.154-.872.018-1.007-.098-2.317-.114-1.312.202-2.646.202-2.646z"/><path fill="#DD2E44" d="M30.261 29.344c-.219-.09-.72-.42-.86-.775-.127-.321-.213-1.188-.229-1.353.269-.024.682-.006.815.006.175.017.377.031.498.134l.046.04c-.001 0-.215 1.376-.27 1.948z"/><path fill="#CCD6DD" d="M28.337 30.337c-.075 0-.146-.042-.181-.115-.048-.1-.005-.219.095-.266l.319-.151c.104-.048.22-.004.267.095.047.1.005.219-.095.266l-.319.151c-.028.014-.058.02-.086.02zm.204.584c-.085 0-.163-.054-.19-.139-.034-.105.024-.218.13-.251l.354-.113c.1-.035.217.024.251.13.034.105-.024.218-.13.251l-.354.113c-.02.006-.04.009-.061.009zm.172.595c-.094 0-.177-.065-.196-.16-.021-.108.048-.214.156-.236l.332-.068c.114-.023.214.048.236.156.021.108-.048.214-.156.236l-.332.068c-.014.002-.027.004-.04.004zm2.59-3.873c-.006-.027-.025-.128-.095-.252-.023-.042-.077-.055-.131-.061-.067-.009-.56-.08-.569.02 0 0-.002.148-.072.25-.07.102-.118.352-.136.539-.018.186-.098.887-.08 1.379.018.492.17 1.383.178 1.68.007.297 0 .759-.063 1.101-.063.342-.131.646-.183.834-.067.242-.157.439-.26.578 0 0 .389-.026.687-.602.235-.454.367-.891.416-1.317.004-.032.105-1.168.154-1.736.035-.415.095-1.078.095-1.078.075-.786.093-1.185.059-1.335z"/><path fill="#8899A6" d="M11.438 32.516l.246-.246c.041-.034.102-.027.134.017.098.138.332.406.421.497-.243-.03-.618-.036-.757-.125-.054-.035-.093-.103-.044-.143z"/><path fill="#BE1931" d="M14.401 34.162c.063-.154.027-.453-.008-.637-.025-.127-.11-.452-.205-.717-.043-.119-.099-.254-.132-.306-.104-.162-.201-.217-.266-.244-.077-.033-.145-.018-.175.004-.123.088-.294.383-.489.548-.065.055-.133.095-.204.109-.254.049-.707-.159-1.044-.317-.202-.094-.362-.17-.412-.16-.054.011-.095.038-.132.075l-.002.001h.001c-.099.099-.18.277-.474.468-.189.123-1.051.696-1.051.696-.221.141-.252.252-.37.33-.242.16-.912.515-1.117.653-.204.138-.251.338-.23.475s.074.204.074.204.23.268 1.448.129c.88-.1.97-.269 2.194-.752s2.594-.559 2.594-.559z"/><path fill="#DD2E44" d="M12.457 34.457c.024-.236.198-.809.499-1.045.271-.212 1.079-.542 1.232-.604.1.251.2.652.225.783.033.173.078.37.013.516l-.025.056c0-.001-1.38.184-1.944.294z"/><path fill="#CCD6DD" d="M11.385 33.301c-.055 0-.109-.022-.149-.067L11 32.971c-.073-.082-.066-.209.016-.282.083-.073.207-.067.283.016l.235.263c.073.082.066.209-.016.282-.039.034-.085.051-.133.051zm-.529.406c-.063 0-.127-.031-.165-.088l-.209-.308c-.062-.092-.039-.216.053-.278.089-.061.216-.039.277.053l.209.308c.062.092.039.216-.053.278-.033.024-.072.035-.112.035zm-.57.325c-.071 0-.141-.038-.177-.106l-.159-.299c-.052-.098-.015-.219.083-.271.094-.052.218-.016.271.083l.159.299c.052.098.015.219-.083.271-.029.016-.062.023-.094.023zm4.098.941c.024-.013.116-.06.215-.162.033-.034.031-.089.022-.143-.011-.067-.083-.559-.181-.54 0 0-.143.04-.26.002-.117-.038-.371-.013-.555.022-.184.036-.878.158-1.345.315-.467.157-1.277.556-1.56.648-.283.091-.728.215-1.074.252-.346.037-.657.058-.851.062-.251.004-.466-.025-.628-.085 0 0 .136.366.772.488.502.097.959.099 1.381.025.032-.006 1.15-.231 1.708-.346.408-.084 1.06-.215 1.06-.215.774-.151 1.162-.247 1.296-.323z"/><path fill="#A0041E" d="M13.084 21.466c.738-.382 3.176-1.588 4.842-1.76.152-.016 1.526 3.904 1.341 3.963-.763.246-2.681.897-4.134 1.668-.154.082-.338.044-.433-.09-.431-.605-1.549-2.257-1.798-3.436-.029-.138.048-.276.182-.345z"/><path fill="#BE1931" d="M17.882 25.364c-.196-.795-.794-3.411-.586-5.049.019-.15 3.69-.685 3.69-.685.175-.021.6 3.084 1.005 4.655.043.166-.033.334-.181.395-.667.275-2.474.969-3.643.937-.136-.004-.249-.11-.285-.253z"/><path fill="#7C533E" d="M14.801 11.245c-.114.64.259 1.431 1.738 1.741 1.479.31 2.554.273 3.324.218.653-.047.563.952.711 1.998.148 1.05.241 2.419.182 2.633-.1.361-.722.479-.439 1.123.283.643.329.995.942.79.613-.205 1.222-.427 1.396-.759.174-.332-.43-1.065-.439-1.463-.007-.294.293-3.972.275-4.405-.022-.528-.035-1.251-.884-1.582-.849-.331-4.108-1.174-4.972-1.342-.912-.177-1.683.199-1.834 1.048z"/><path fill="#7C533E" d="M16.495 6.612c.31-.401.546-.872.661-1.455.409-2.083-.794-4.073-2.688-4.444-1.893-.372-4.483 1.029-4.425 3.151.057 2.107 1.229 5.214 2.993 4.69.466-.138.932-.29 1.375-.474.189.224.325 1.081.247 1.815-.2 1.87 2.381 2.065 2.579.192.157-1.482-.768-2.424-.742-3.475z"/><path fill="#0B0200" d="M21.903 2.733c-1.311-.014-2.496-1.36-3.845-.501-.264.168-.456.337-.604.503-.234-.711-.636-1.367-1.299-1.798C15.507.515 14.712.2 13.961.285 9.384.801 9.632 4.111 9.98 4.421c.348.31 1.299-.572 2.002-.669.328-.046 1.041-.053 1.419.49.306.44.411 1.33.411 1.33s.012-1.012.041-1.368c.027-.332.356-.714.801-.222.387.428.19 1.268-.079 1.356-.207.068.129.575.648.961.946.704 1.681.428 1.786.389.106-.039.465-.118.648-1.333.026-.169.044-.35.055-.537.374.324.987.709 1.827.715.929.007 2.619-.466 3.586-1.621.744-.889 1.05-2.355 1.05-2.355-.395.738-1.283 1.187-2.272 1.176z"/><path fill="#DD2E44" d="M19.624 10.939c-.728-1.703-1.783-2.597-3.229-2.114-1.285.43-1.922 1.151-2.301 1.96-.184.393-.901 1.933-.466 2.933.851 1.956 2.243 5.863 2.488 7.059 0 0 .322.326 2.403.064 1.823-.23 2.732-.404 2.732-.404-.277-2.594-.452-6.747-1.627-9.498z"/><path fill="#7C533E" d="M17.202 11.067c-.577-.372-1.499-.331-2.404.983-.905 1.314-1.308 2.376-1.568 3.148-.221.655-1.157.16-2.236-.122-1.083-.284-2.455-.752-2.639-.897-.311-.245-.172-.898-.914-.886-.742.013-1.103-.086-1.153.595-.05.681-.083 1.364.17 1.669.253.305 1.212.016 1.604.169.289.113 3.749 1.905 4.178 2.064.524.194 1.233.476 1.901-.216.668-.692 2.819-3.522 3.335-4.296.543-.814.491-1.718-.274-2.211z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f3c3-1f3ff-200d-2642-fe0f.svg b/public/emoji/1f3c3-1f3ff-200d-2642-fe0f.svg
index 8eb95e256972bc4ba91415716e3898712b474a86..818897772583a82c9eb421969e77aa26b078f97a 100644
--- a/public/emoji/1f3c3-1f3ff-200d-2642-fe0f.svg
+++ b/public/emoji/1f3c3-1f3ff-200d-2642-fe0f.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#2A6797" d="M12.002 34.001c-.182 0-.367-.025-.55-.078-1.062-.304-1.677-1.41-1.374-2.473l2-7c.124-.435.392-.814.76-1.077l7-5c.896-.642 2.147-.435 2.789.465.642.898.434 2.147-.465 2.789l-6.431 4.595-1.808 6.328c-.251.878-1.051 1.45-1.921 1.451z"/><path fill="#4289C1" d="M26.998 31c-.3 0-.605-.067-.892-.211l-6-3C19.428 27.45 19 26.758 19 26v-5c0-1.104.896-2 2-2s2 .896 2 2v3.764l4.895 2.447c.988.494 1.389 1.695.895 2.684-.352.701-1.058 1.105-1.792 1.105z"/><path fill="#292F33" d="M29.395 28.257c.103-.369-.192-.668-.574-.756-.611-.141-.867-.17-.867-.17-.305-.022-.965.064-1.064.414-.717 2.543-.657 5.569-.246 6.404.242.493.981.429 1.128-.095l1.623-5.797zm-16.697 6.819c.362.125.678-.152.789-.528.177-.601.221-.856.221-.856.04-.303-.007-.967-.35-1.087-2.496-.867-5.52-.986-6.378-.626-.506.213-.486.954.027 1.131l5.691 1.966z"/><path fill="#7C533E" d="M18.329 7.294c.321-.415.567-.904.685-1.509.424-2.16-.824-4.224-2.788-4.609-1.964-.386-4.649 1.068-4.589 3.268.06 2.185 1.274 5.408 3.104 4.864.483-.143.966-.301 1.426-.491.196.232.335.648.255 1.409-.207 1.94 2.472 2.616 2.677.672.162-1.537-.797-2.513-.77-3.604z"/><path fill="#0B0200" d="M12.517 1.678c2.67-1.637 4.456-1.352 5.937-.147 1.471 1.196 1.524 3.438 1.101 4.863-.423 1.425-.838 1.343-.838 1.343s-1.977.433-2.109-1.399c-.042-.579.605-.886-.089-1.741-.446-.55-1.452-.285-1.463.503-.011.788-.412.637-.412.637l-1.168-2.096s-1.021-.067-1.596.866c-.362.586-1.695-1.399.637-2.829z"/><path fill="#7C533E" d="M27.001 18c-.367 0-.72-.202-.896-.553-1.788-3.576-7.366-5.481-7.423-5.5-.523-.175-.806-.742-.63-1.265.174-.523.735-.809 1.264-.632.261.087 6.418 2.181 8.578 6.502.247.494.047 1.095-.447 1.342-.143.072-.296.106-.446.106z"/><path fill="#77B255" d="M21.149 10.657c-.89-1.522-2.123-2.212-3.398-1.564-3.992 2.029-1.881 5.138.259 11.373 0 0 1 .927 3.358.296 1.659-.444 2.691.706 2.976.398.285-.309-1.053-6.839-3.195-10.503z"/><path fill="#7C533E" d="M16.143 12.485c-.028.046-2.825 4.631-7.339 5.534l.004.02C8.351 18.131 8 18.516 8 19c0 .553.448 1 1 1 .068 0 .128-.025.192-.039l.004.02c5.372-1.074 8.529-6.246 8.661-6.466l-1.714-1.03z"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#7C533E" d="M15.087 24.856l-1.728-3.593c-.428.233-2.257 1.253-3.35 2.237-.635.572-.549 1.002-.36 1.944l.017.085c.189.952 2.205 7.351 2.47 8.187l1.345-.334c.011-.446.057-2.767-.176-4.233-.073-.463-.147-1.025-.214-1.522-.071-.543-.134-1.012-.18-1.248-.064-.334.033-.53.337-.677.862-.416 1.586-.735 1.839-.846zm8.721 1.817c-.546-.067-1.019-.126-1.258-.141-.339-.021-.504-.165-.57-.496-.188-.939-.313-1.721-.356-1.993l-3.912.767c.118.473.644 2.5 1.322 3.806.393.757.831.782 1.79.838l.087.005c.975.057 7.669-.284 8.545-.329l.015-1.385c-.43-.124-2.663-.752-4.142-.896-.465-.045-1.026-.115-1.521-.176z"/><path fill="#8899A6" d="M27.805 29.682l-.178-.328c-.022-.053.004-.113.058-.132.171-.059.518-.217.639-.281-.105.24-.225.624-.359.74-.052.043-.134.063-.16.001z"/><path fill="#1C6399" d="M30.398 27.138c-.139-.111-.457-.166-.657-.185-.138-.013-.498-.024-.799-.008-.136.008-.291.024-.355.043-.198.057-.285.141-.332.198-.057.069-.062.144-.049.181.052.153.304.418.414.67.037.084.058.166.05.243-.027.276-.379.678-.643.976-.158.179-.285.32-.29.375-.006.059.011.109.037.158v.002c.072.132.229.269.337.629.069.232.395 1.291.395 1.291.078.27.182.336.226.481.091.297.251 1.094.331 1.346.08.252.271.36.418.381s.232-.014.232-.014.345-.155.574-1.449c.165-.935.019-1.079-.105-2.483s.216-2.835.216-2.835z"/><path fill="#3B94D9" d="M30.109 29.226c-.235-.096-.771-.45-.922-.831-.136-.344-.229-1.273-.246-1.449.288-.026.731-.007.873.007.188.018.404.033.534.143l.05.043c0-.001-.229 1.473-.289 2.087z"/><path fill="#CCD6DD" d="M28.048 30.27c-.073 0-.142-.041-.175-.111-.046-.097-.005-.213.092-.258l.342-.162c.097-.046.212-.005.259.092.046.097.005.213-.092.258l-.342.162c-.028.013-.056.019-.084.019zm.218.625c-.082 0-.158-.053-.185-.135-.032-.102.024-.211.126-.244l.38-.121c.097-.033.21.023.243.126.032.102-.024.211-.126.244l-.38.121c-.018.007-.038.009-.058.009zm.184.637c-.091 0-.171-.063-.19-.155-.021-.105.046-.207.152-.229l.356-.072c.111-.023.207.047.229.152.021.105-.046.207-.152.229l-.356.072-.039.003zm2.776-4.13c-.006-.028-.027-.137-.101-.27-.025-.045-.082-.059-.14-.066-.072-.009-.6-.085-.61.022 0 0-.003.159-.077.268-.075.109-.127.377-.146.577-.019.199-.105.951-.085 1.478.02.528.183 1.482.19 1.8.008.318 0 .814-.068 1.18s-.14.692-.196.893c-.072.259-.168.471-.279.619 0 0 .417-.028.736-.645.252-.487.393-.955.446-1.411.004-.035.113-1.252.165-1.86.038-.445.102-1.155.102-1.155.081-.841.1-1.269.063-1.43z"/><path fill="#8899A6" d="M11.211 32.283l.269-.259c.045-.036.11-.027.143.021.102.149.348.441.441.541-.26-.037-.661-.051-.809-.149-.056-.038-.096-.112-.044-.154z"/><path fill="#1C6399" d="M14.355 34.104c.07-.163.038-.485.003-.683-.024-.136-.109-.486-.206-.772-.043-.129-.101-.274-.136-.33-.108-.176-.212-.237-.28-.267-.082-.036-.155-.022-.188.001-.134.091-.322.405-.535.578-.071.058-.144.1-.22.113-.273.048-.755-.184-1.112-.359-.214-.105-.385-.189-.438-.18-.059.01-.102.039-.143.078l-.002.001h.001c-.108.104-.199.293-.516.492-.206.128-1.14.724-1.14.724-.24.147-.275.265-.403.346-.262.167-.987.534-1.209.678-.222.144-.275.357-.255.505.02.148.076.22.076.22s.242.291 1.549.166c.945-.09 1.045-.269 2.365-.763 1.32-.493 2.789-.548 2.789-.548z"/><path fill="#3B94D9" d="M12.266 34.382c.03-.252.228-.863.555-1.11.295-.222 1.166-.56 1.331-.624.102.271.202.703.226.843.033.186.076.398.004.553l-.028.059c.001.001-1.481.173-2.088.279z"/><path fill="#CCD6DD" d="M11.144 33.103c-.054 0-.109-.023-.147-.067l-.247-.287c-.07-.081-.061-.204.02-.274.081-.07.205-.061.274.02l.247.287c.07.081.061.204-.02.274-.038.032-.083.047-.127.047zm-.575.425c-.063 0-.125-.031-.163-.088l-.218-.334c-.058-.09-.033-.21.057-.269.09-.058.209-.034.269.056l.218.334c.058.09.033.21-.057.269-.033.022-.069.032-.106.032zm-.617.337c-.07 0-.138-.039-.173-.106l-.165-.324c-.048-.095-.01-.212.085-.261.095-.049.211-.011.261.085l.165.324c.048.096.01.212-.085.261-.028.015-.059.021-.088.021zm4.369 1.108c.026-.014.125-.062.234-.17.036-.036.035-.095.026-.153-.01-.072-.078-.601-.184-.582 0 0-.154.04-.279-.003-.125-.043-.398-.021-.595.013-.197.035-.944.152-1.447.312-.503.16-1.379.571-1.684.664-.305.092-.784.217-1.156.249-.371.032-.705.05-.913.049-.269 0-.498-.036-.671-.103 0 0 .138.394.818.537.537.113 1.025.124 1.479.053.034-.005 1.237-.225 1.836-.337.439-.082 1.14-.21 1.14-.21.833-.146 1.25-.241 1.396-.319z"/><path fill="#1C6399" d="M12.654 21.244c.751-.398 3.235-1.653 4.947-1.804.156-.014.298.088.352.235l1.328 3.635c.068.186-.027.391-.216.451-.781.25-2.74.915-4.22 1.719-.157.085-.347.041-.448-.106-.456-.664-1.642-2.477-1.923-3.76-.032-.15.045-.298.18-.37z"/><path fill="#357BAA" d="M17.514 25.488c-.196-.827-.785-3.547-.501-5.242.026-.155.16-.266.316-.281l3.853-.37c.198-.019.371.125.382.323.046.818.196 2.882.601 4.517.043.173-.048.346-.216.407-.758.274-2.811.965-4.123.914-.153-.007-.276-.118-.312-.268z"/><path fill="#7C533E" d="M15.015 10.618c-.085.612.05 1.546 1.466 1.787 1.416.241 2.812.059 3.411-.108.599-.167.569.884.747 1.872.179.992.301 1.768.252 1.973-.082.347-.809 1.011-.517 1.612s.757 1.179 1.332.962c.575-.217 1.05-.475 1.203-.797s-.525-1.295-.552-1.574c-.027-.278.227-3.888.194-4.298-.04-.501-.078-1.187-.896-1.47-.818-.284-4.094-.92-4.915-1.079-.942-.185-1.612.309-1.725 1.12z"/><path fill="#7C533E" d="M16.217 6.241c.285-.396.498-.858.589-1.424.326-2.021-.9-3.9-2.738-4.196-1.838-.296-4.287 1.14-4.162 3.184.125 2.029 1.356 4.986 3.04 4.423.444-.149.889-.311 1.31-.502.19.209.349 1.031.298 1.742-.131 1.81 2.363 1.913 2.492.1.104-1.435-.819-2.312-.829-3.327z"/><path fill="#0B0200" d="M10.637 1.206C13.067-.4 14.736-.192 16.151.88c1.405 1.065 1.526 3.148 1.178 4.485-.348 1.338-.736 1.275-.736 1.275s-1.824.465-2.005-1.233c-.057-.537.534-.843-.138-1.615-.432-.497-1.358-.219-1.344.514.015.732-.363.605-.363.605l-1.153-1.91s-.951-.03-1.456.856c-.317.555-1.62-1.248.503-2.651z"/><path fill="#4289C1" d="M19.459 10.057c-.77-1.644-1.984-2.479-3.384-1.957-4.381 1.635-2.36 5.68-.781 12.252 0 0 3.109.449 6.316.36 0 .001-.298-6.698-2.151-10.655z"/><path fill="#7C533E" d="M16.94 10.268c-.577-.345-1.571-.605-2.413.712s-1.251 2.794-1.338 3.466c-.087.672-1.127.196-2.194-.045-1.07-.242-2.429-.654-2.614-.79-.313-.229-.199-.874-.925-.837s-1.083-.047-1.11.622c-.026.669-.035 1.339.222 1.629.258.29 1.127.04 1.516.177.287.101 3.803 1.876 4.228 2.017.519.172 1.223.425 1.854-.275s2.658-3.714 3.167-4.47c.584-.867.373-1.748-.393-2.206z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f3c3-1f3ff.svg b/public/emoji/1f3c3-1f3ff.svg
index 8eb95e256972bc4ba91415716e3898712b474a86..818897772583a82c9eb421969e77aa26b078f97a 100644
--- a/public/emoji/1f3c3-1f3ff.svg
+++ b/public/emoji/1f3c3-1f3ff.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#2A6797" d="M12.002 34.001c-.182 0-.367-.025-.55-.078-1.062-.304-1.677-1.41-1.374-2.473l2-7c.124-.435.392-.814.76-1.077l7-5c.896-.642 2.147-.435 2.789.465.642.898.434 2.147-.465 2.789l-6.431 4.595-1.808 6.328c-.251.878-1.051 1.45-1.921 1.451z"/><path fill="#4289C1" d="M26.998 31c-.3 0-.605-.067-.892-.211l-6-3C19.428 27.45 19 26.758 19 26v-5c0-1.104.896-2 2-2s2 .896 2 2v3.764l4.895 2.447c.988.494 1.389 1.695.895 2.684-.352.701-1.058 1.105-1.792 1.105z"/><path fill="#292F33" d="M29.395 28.257c.103-.369-.192-.668-.574-.756-.611-.141-.867-.17-.867-.17-.305-.022-.965.064-1.064.414-.717 2.543-.657 5.569-.246 6.404.242.493.981.429 1.128-.095l1.623-5.797zm-16.697 6.819c.362.125.678-.152.789-.528.177-.601.221-.856.221-.856.04-.303-.007-.967-.35-1.087-2.496-.867-5.52-.986-6.378-.626-.506.213-.486.954.027 1.131l5.691 1.966z"/><path fill="#7C533E" d="M18.329 7.294c.321-.415.567-.904.685-1.509.424-2.16-.824-4.224-2.788-4.609-1.964-.386-4.649 1.068-4.589 3.268.06 2.185 1.274 5.408 3.104 4.864.483-.143.966-.301 1.426-.491.196.232.335.648.255 1.409-.207 1.94 2.472 2.616 2.677.672.162-1.537-.797-2.513-.77-3.604z"/><path fill="#0B0200" d="M12.517 1.678c2.67-1.637 4.456-1.352 5.937-.147 1.471 1.196 1.524 3.438 1.101 4.863-.423 1.425-.838 1.343-.838 1.343s-1.977.433-2.109-1.399c-.042-.579.605-.886-.089-1.741-.446-.55-1.452-.285-1.463.503-.011.788-.412.637-.412.637l-1.168-2.096s-1.021-.067-1.596.866c-.362.586-1.695-1.399.637-2.829z"/><path fill="#7C533E" d="M27.001 18c-.367 0-.72-.202-.896-.553-1.788-3.576-7.366-5.481-7.423-5.5-.523-.175-.806-.742-.63-1.265.174-.523.735-.809 1.264-.632.261.087 6.418 2.181 8.578 6.502.247.494.047 1.095-.447 1.342-.143.072-.296.106-.446.106z"/><path fill="#77B255" d="M21.149 10.657c-.89-1.522-2.123-2.212-3.398-1.564-3.992 2.029-1.881 5.138.259 11.373 0 0 1 .927 3.358.296 1.659-.444 2.691.706 2.976.398.285-.309-1.053-6.839-3.195-10.503z"/><path fill="#7C533E" d="M16.143 12.485c-.028.046-2.825 4.631-7.339 5.534l.004.02C8.351 18.131 8 18.516 8 19c0 .553.448 1 1 1 .068 0 .128-.025.192-.039l.004.02c5.372-1.074 8.529-6.246 8.661-6.466l-1.714-1.03z"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#7C533E" d="M15.087 24.856l-1.728-3.593c-.428.233-2.257 1.253-3.35 2.237-.635.572-.549 1.002-.36 1.944l.017.085c.189.952 2.205 7.351 2.47 8.187l1.345-.334c.011-.446.057-2.767-.176-4.233-.073-.463-.147-1.025-.214-1.522-.071-.543-.134-1.012-.18-1.248-.064-.334.033-.53.337-.677.862-.416 1.586-.735 1.839-.846zm8.721 1.817c-.546-.067-1.019-.126-1.258-.141-.339-.021-.504-.165-.57-.496-.188-.939-.313-1.721-.356-1.993l-3.912.767c.118.473.644 2.5 1.322 3.806.393.757.831.782 1.79.838l.087.005c.975.057 7.669-.284 8.545-.329l.015-1.385c-.43-.124-2.663-.752-4.142-.896-.465-.045-1.026-.115-1.521-.176z"/><path fill="#8899A6" d="M27.805 29.682l-.178-.328c-.022-.053.004-.113.058-.132.171-.059.518-.217.639-.281-.105.24-.225.624-.359.74-.052.043-.134.063-.16.001z"/><path fill="#1C6399" d="M30.398 27.138c-.139-.111-.457-.166-.657-.185-.138-.013-.498-.024-.799-.008-.136.008-.291.024-.355.043-.198.057-.285.141-.332.198-.057.069-.062.144-.049.181.052.153.304.418.414.67.037.084.058.166.05.243-.027.276-.379.678-.643.976-.158.179-.285.32-.29.375-.006.059.011.109.037.158v.002c.072.132.229.269.337.629.069.232.395 1.291.395 1.291.078.27.182.336.226.481.091.297.251 1.094.331 1.346.08.252.271.36.418.381s.232-.014.232-.014.345-.155.574-1.449c.165-.935.019-1.079-.105-2.483s.216-2.835.216-2.835z"/><path fill="#3B94D9" d="M30.109 29.226c-.235-.096-.771-.45-.922-.831-.136-.344-.229-1.273-.246-1.449.288-.026.731-.007.873.007.188.018.404.033.534.143l.05.043c0-.001-.229 1.473-.289 2.087z"/><path fill="#CCD6DD" d="M28.048 30.27c-.073 0-.142-.041-.175-.111-.046-.097-.005-.213.092-.258l.342-.162c.097-.046.212-.005.259.092.046.097.005.213-.092.258l-.342.162c-.028.013-.056.019-.084.019zm.218.625c-.082 0-.158-.053-.185-.135-.032-.102.024-.211.126-.244l.38-.121c.097-.033.21.023.243.126.032.102-.024.211-.126.244l-.38.121c-.018.007-.038.009-.058.009zm.184.637c-.091 0-.171-.063-.19-.155-.021-.105.046-.207.152-.229l.356-.072c.111-.023.207.047.229.152.021.105-.046.207-.152.229l-.356.072-.039.003zm2.776-4.13c-.006-.028-.027-.137-.101-.27-.025-.045-.082-.059-.14-.066-.072-.009-.6-.085-.61.022 0 0-.003.159-.077.268-.075.109-.127.377-.146.577-.019.199-.105.951-.085 1.478.02.528.183 1.482.19 1.8.008.318 0 .814-.068 1.18s-.14.692-.196.893c-.072.259-.168.471-.279.619 0 0 .417-.028.736-.645.252-.487.393-.955.446-1.411.004-.035.113-1.252.165-1.86.038-.445.102-1.155.102-1.155.081-.841.1-1.269.063-1.43z"/><path fill="#8899A6" d="M11.211 32.283l.269-.259c.045-.036.11-.027.143.021.102.149.348.441.441.541-.26-.037-.661-.051-.809-.149-.056-.038-.096-.112-.044-.154z"/><path fill="#1C6399" d="M14.355 34.104c.07-.163.038-.485.003-.683-.024-.136-.109-.486-.206-.772-.043-.129-.101-.274-.136-.33-.108-.176-.212-.237-.28-.267-.082-.036-.155-.022-.188.001-.134.091-.322.405-.535.578-.071.058-.144.1-.22.113-.273.048-.755-.184-1.112-.359-.214-.105-.385-.189-.438-.18-.059.01-.102.039-.143.078l-.002.001h.001c-.108.104-.199.293-.516.492-.206.128-1.14.724-1.14.724-.24.147-.275.265-.403.346-.262.167-.987.534-1.209.678-.222.144-.275.357-.255.505.02.148.076.22.076.22s.242.291 1.549.166c.945-.09 1.045-.269 2.365-.763 1.32-.493 2.789-.548 2.789-.548z"/><path fill="#3B94D9" d="M12.266 34.382c.03-.252.228-.863.555-1.11.295-.222 1.166-.56 1.331-.624.102.271.202.703.226.843.033.186.076.398.004.553l-.028.059c.001.001-1.481.173-2.088.279z"/><path fill="#CCD6DD" d="M11.144 33.103c-.054 0-.109-.023-.147-.067l-.247-.287c-.07-.081-.061-.204.02-.274.081-.07.205-.061.274.02l.247.287c.07.081.061.204-.02.274-.038.032-.083.047-.127.047zm-.575.425c-.063 0-.125-.031-.163-.088l-.218-.334c-.058-.09-.033-.21.057-.269.09-.058.209-.034.269.056l.218.334c.058.09.033.21-.057.269-.033.022-.069.032-.106.032zm-.617.337c-.07 0-.138-.039-.173-.106l-.165-.324c-.048-.095-.01-.212.085-.261.095-.049.211-.011.261.085l.165.324c.048.096.01.212-.085.261-.028.015-.059.021-.088.021zm4.369 1.108c.026-.014.125-.062.234-.17.036-.036.035-.095.026-.153-.01-.072-.078-.601-.184-.582 0 0-.154.04-.279-.003-.125-.043-.398-.021-.595.013-.197.035-.944.152-1.447.312-.503.16-1.379.571-1.684.664-.305.092-.784.217-1.156.249-.371.032-.705.05-.913.049-.269 0-.498-.036-.671-.103 0 0 .138.394.818.537.537.113 1.025.124 1.479.053.034-.005 1.237-.225 1.836-.337.439-.082 1.14-.21 1.14-.21.833-.146 1.25-.241 1.396-.319z"/><path fill="#1C6399" d="M12.654 21.244c.751-.398 3.235-1.653 4.947-1.804.156-.014.298.088.352.235l1.328 3.635c.068.186-.027.391-.216.451-.781.25-2.74.915-4.22 1.719-.157.085-.347.041-.448-.106-.456-.664-1.642-2.477-1.923-3.76-.032-.15.045-.298.18-.37z"/><path fill="#357BAA" d="M17.514 25.488c-.196-.827-.785-3.547-.501-5.242.026-.155.16-.266.316-.281l3.853-.37c.198-.019.371.125.382.323.046.818.196 2.882.601 4.517.043.173-.048.346-.216.407-.758.274-2.811.965-4.123.914-.153-.007-.276-.118-.312-.268z"/><path fill="#7C533E" d="M15.015 10.618c-.085.612.05 1.546 1.466 1.787 1.416.241 2.812.059 3.411-.108.599-.167.569.884.747 1.872.179.992.301 1.768.252 1.973-.082.347-.809 1.011-.517 1.612s.757 1.179 1.332.962c.575-.217 1.05-.475 1.203-.797s-.525-1.295-.552-1.574c-.027-.278.227-3.888.194-4.298-.04-.501-.078-1.187-.896-1.47-.818-.284-4.094-.92-4.915-1.079-.942-.185-1.612.309-1.725 1.12z"/><path fill="#7C533E" d="M16.217 6.241c.285-.396.498-.858.589-1.424.326-2.021-.9-3.9-2.738-4.196-1.838-.296-4.287 1.14-4.162 3.184.125 2.029 1.356 4.986 3.04 4.423.444-.149.889-.311 1.31-.502.19.209.349 1.031.298 1.742-.131 1.81 2.363 1.913 2.492.1.104-1.435-.819-2.312-.829-3.327z"/><path fill="#0B0200" d="M10.637 1.206C13.067-.4 14.736-.192 16.151.88c1.405 1.065 1.526 3.148 1.178 4.485-.348 1.338-.736 1.275-.736 1.275s-1.824.465-2.005-1.233c-.057-.537.534-.843-.138-1.615-.432-.497-1.358-.219-1.344.514.015.732-.363.605-.363.605l-1.153-1.91s-.951-.03-1.456.856c-.317.555-1.62-1.248.503-2.651z"/><path fill="#4289C1" d="M19.459 10.057c-.77-1.644-1.984-2.479-3.384-1.957-4.381 1.635-2.36 5.68-.781 12.252 0 0 3.109.449 6.316.36 0 .001-.298-6.698-2.151-10.655z"/><path fill="#7C533E" d="M16.94 10.268c-.577-.345-1.571-.605-2.413.712s-1.251 2.794-1.338 3.466c-.087.672-1.127.196-2.194-.045-1.07-.242-2.429-.654-2.614-.79-.313-.229-.199-.874-.925-.837s-1.083-.047-1.11.622c-.026.669-.035 1.339.222 1.629.258.29 1.127.04 1.516.177.287.101 3.803 1.876 4.228 2.017.519.172 1.223.425 1.854-.275s2.658-3.714 3.167-4.47c.584-.867.373-1.748-.393-2.206z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f3c3-200d-2640-fe0f.svg b/public/emoji/1f3c3-200d-2640-fe0f.svg
index 07fcfb93190cc90c950c9b4d7f2357892e0f894d..9acdb7a732939174ca6d7c5e42d6509c0db4f54d 100644
--- a/public/emoji/1f3c3-200d-2640-fe0f.svg
+++ b/public/emoji/1f3c3-200d-2640-fe0f.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#2A6797" d="M12.002 34.001c-.182 0-.367-.025-.55-.078-1.062-.304-1.677-1.41-1.374-2.473l2-7c.124-.435.392-.814.76-1.077l7-5c.896-.642 2.147-.435 2.789.465.642.898.434 2.147-.465 2.789l-6.431 4.595-1.808 6.328c-.251.878-1.051 1.45-1.921 1.451z"/><path fill="#4289C1" d="M26.998 31c-.3 0-.605-.067-.892-.211l-6-3C19.428 27.45 19 26.758 19 26v-5c0-1.104.896-2 2-2s2 .896 2 2v3.764l4.895 2.447c.988.494 1.389 1.695.895 2.684-.352.701-1.058 1.105-1.792 1.105z"/><path fill="#292F33" d="M29.395 28.257c.103-.369-.192-.668-.574-.756-.611-.141-.867-.17-.867-.17-.305-.022-.965.064-1.064.414-.717 2.543-.657 5.569-.246 6.404.242.493.981.429 1.128-.095l1.623-5.797zm-16.697 6.819c.362.125.678-.152.789-.528.177-.601.221-.856.221-.856.04-.303-.007-.967-.35-1.087-2.496-.867-5.52-.986-6.378-.626-.506.213-.486.954.027 1.131l5.691 1.966z"/><path fill="#FFDC5D" d="M19.822 5.072c-.059-2.302-1.974-4.12-4.275-4.06-2.302.059-4.119 1.973-4.06 4.275.059 2.302 1.973 4.119 4.275 4.06.211-.005.412-.042.613-.078.061.238.091.539.047.958-.207 1.94 2.472 2.616 2.677.672.116-1.101-.345-1.915-.606-2.688.839-.786 1.361-1.901 1.329-3.139z"/><path fill="#FFAC33" d="M24.144 5.997c-1.085-.054-2.134-.177-3.928-2.487-1.192-1.536-2.305-2.522-5.061-2.496-2.925.027-5.375 2.516-3.498 3.761.819.543 1.505.285 2.821.654 2.065.578 2.378 2.775 4.244 3.268 3.651.965 6.507-2.647 5.422-2.7z"/><path fill="#FFDC5D" d="M27.001 18c-.367 0-.72-.202-.896-.553-1.788-3.576-7.366-5.481-7.423-5.5-.523-.175-.806-.742-.63-1.265.174-.523.735-.809 1.264-.632.261.087 6.418 2.181 8.578 6.502.247.494.047 1.095-.447 1.342-.143.072-.296.106-.446.106z"/><path fill="#9268CA" d="M21.149 10.657c-.89-1.522-2.123-2.212-3.398-1.564-3.992 2.029-1.881 5.138.259 11.373 0 0 1 .927 3.358.296 1.659-.444 2.691.706 2.976.398.285-.309-1.053-6.839-3.195-10.503z"/><path fill="#FFDC5D" d="M16.143 12.485c-.028.046-2.825 4.631-7.339 5.534l.004.02C8.351 18.131 8 18.516 8 19c0 .553.448 1 1 1 .068 0 .128-.025.192-.039l.004.02c5.372-1.074 8.529-6.246 8.661-6.466l-1.714-1.03z"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#FFDC5D" d="M13.483 21.579c-.58.32-2.256 1.279-3.282 2.204-.596.537-.518.928-.329 1.871l.017.085c.186.932 2.106 7.039 2.483 8.232l1.168-.291c.014-.621.043-2.801-.18-4.205-.074-.47-.149-1.036-.217-1.549-.07-.532-.138-1.035-.184-1.273-.077-.396.05-.65.411-.825.772-.374 1.437-.671 1.764-.814l-1.651-3.435zm10.673 5.408c-.533-.065-1.037-.128-1.278-.143-.403-.025-.618-.212-.695-.606-.168-.842-.288-1.56-.345-1.912l-3.74.733c.164.643.671 2.505 1.308 3.732.369.711.767.734 1.726.789l.088.005c.95.057 7.342-.266 8.593-.33l.013-1.205c-.597-.169-2.699-.746-4.114-.885-.476-.044-1.042-.114-1.556-.178z"/><path fill="#8899A6" d="M28.11 29.77l-.166-.306c-.021-.049.003-.106.054-.123.16-.055.483-.203.596-.262-.098.224-.21.582-.335.69-.048.041-.124.059-.149.001z"/><path fill="#BE1931" d="M30.53 27.396c-.13-.104-.427-.155-.613-.173-.129-.013-.464-.023-.746-.007-.127.007-.272.023-.331.04-.185.054-.266.131-.31.185-.053.065-.058.134-.046.169.049.143.284.39.386.625.034.078.054.155.047.226-.025.258-.354.633-.6.911-.148.167-.266.299-.271.35-.005.055.01.102.035.148v.002c.067.123.214.251.314.587.065.217.369 1.205.369 1.205.073.252.17.313.211.449.085.277.235 1.021.309 1.256.074.235.253.336.39.355.138.019.217-.013.217-.013s.322-.145.535-1.352c.154-.872.018-1.007-.098-2.317-.114-1.312.202-2.646.202-2.646z"/><path fill="#DD2E44" d="M30.261 29.344c-.219-.09-.72-.42-.86-.775-.127-.321-.213-1.188-.229-1.353.269-.024.682-.006.815.006.175.017.377.031.498.134l.046.04c-.001 0-.215 1.376-.27 1.948z"/><path fill="#CCD6DD" d="M28.337 30.337c-.075 0-.146-.042-.181-.115-.048-.1-.005-.219.095-.266l.319-.151c.104-.048.22-.004.267.095.047.1.005.219-.095.266l-.319.151c-.028.014-.058.02-.086.02zm.204.584c-.085 0-.163-.054-.19-.139-.034-.105.024-.218.13-.251l.354-.113c.1-.035.217.024.251.13.034.105-.024.218-.13.251l-.354.113c-.02.006-.04.009-.061.009zm.172.595c-.094 0-.177-.065-.196-.16-.021-.108.048-.214.156-.236l.332-.068c.114-.023.214.048.236.156.021.108-.048.214-.156.236l-.332.068c-.014.002-.027.004-.04.004zm2.59-3.873c-.006-.027-.025-.128-.095-.252-.023-.042-.077-.055-.131-.061-.067-.009-.56-.08-.569.02 0 0-.002.148-.072.25-.07.102-.118.352-.136.539-.018.186-.098.887-.08 1.379.018.492.17 1.383.178 1.68.007.297 0 .759-.063 1.101-.063.342-.131.646-.183.834-.067.242-.157.439-.26.578 0 0 .389-.026.687-.602.235-.454.367-.891.416-1.317.004-.032.105-1.168.154-1.736.035-.415.095-1.078.095-1.078.075-.786.093-1.185.059-1.335z"/><path fill="#8899A6" d="M11.438 32.516l.246-.246c.041-.034.102-.027.134.017.098.138.332.406.421.497-.243-.03-.618-.036-.757-.125-.054-.035-.093-.103-.044-.143z"/><path fill="#BE1931" d="M14.401 34.162c.063-.154.027-.453-.008-.637-.025-.127-.11-.452-.205-.717-.043-.119-.099-.254-.132-.306-.104-.162-.201-.217-.266-.244-.077-.033-.145-.018-.175.004-.123.088-.294.383-.489.548-.065.055-.133.095-.204.109-.254.049-.707-.159-1.044-.317-.202-.094-.362-.17-.412-.16-.054.011-.095.038-.132.075l-.002.001h.001c-.099.099-.18.277-.474.468-.189.123-1.051.696-1.051.696-.221.141-.252.252-.37.33-.242.16-.912.515-1.117.653-.204.138-.251.338-.23.475s.074.204.074.204.23.268 1.448.129c.88-.1.97-.269 2.194-.752s2.594-.559 2.594-.559z"/><path fill="#DD2E44" d="M12.457 34.457c.024-.236.198-.809.499-1.045.271-.212 1.079-.542 1.232-.604.1.251.2.652.225.783.033.173.078.37.013.516l-.025.056c0-.001-1.38.184-1.944.294z"/><path fill="#CCD6DD" d="M11.385 33.301c-.055 0-.109-.022-.149-.067L11 32.971c-.073-.082-.066-.209.016-.282.083-.073.207-.067.283.016l.235.263c.073.082.066.209-.016.282-.039.034-.085.051-.133.051zm-.529.406c-.063 0-.127-.031-.165-.088l-.209-.308c-.062-.092-.039-.216.053-.278.089-.061.216-.039.277.053l.209.308c.062.092.039.216-.053.278-.033.024-.072.035-.112.035zm-.57.325c-.071 0-.141-.038-.177-.106l-.159-.299c-.052-.098-.015-.219.083-.271.094-.052.218-.016.271.083l.159.299c.052.098.015.219-.083.271-.029.016-.062.023-.094.023zm4.098.941c.024-.013.116-.06.215-.162.033-.034.031-.089.022-.143-.011-.067-.083-.559-.181-.54 0 0-.143.04-.26.002-.117-.038-.371-.013-.555.022-.184.036-.878.158-1.345.315-.467.157-1.277.556-1.56.648-.283.091-.728.215-1.074.252-.346.037-.657.058-.851.062-.251.004-.466-.025-.628-.085 0 0 .136.366.772.488.502.097.959.099 1.381.025.032-.006 1.15-.231 1.708-.346.408-.084 1.06-.215 1.06-.215.774-.151 1.162-.247 1.296-.323z"/><path fill="#A0041E" d="M13.084 21.466c.738-.382 3.176-1.588 4.842-1.76.152-.016 1.526 3.904 1.341 3.963-.763.246-2.681.897-4.134 1.668-.154.082-.338.044-.433-.09-.431-.605-1.549-2.257-1.798-3.436-.029-.138.048-.276.182-.345z"/><path fill="#BE1931" d="M17.882 25.364c-.196-.795-.794-3.411-.586-5.049.019-.15 3.69-.685 3.69-.685.175-.021.6 3.084 1.005 4.655.043.166-.033.334-.181.395-.667.275-2.474.969-3.643.937-.136-.004-.249-.11-.285-.253z"/><path fill="#FFDC5D" d="M14.801 11.245c-.114.64.259 1.431 1.738 1.741 1.479.31 2.554.273 3.324.218.653-.047.563.952.711 1.998.148 1.05.241 2.419.182 2.633-.1.361-.722.479-.439 1.123.283.643.329.995.942.79.613-.205 1.222-.427 1.396-.759.174-.332-.43-1.065-.439-1.463-.007-.294.293-3.972.275-4.405-.022-.528-.035-1.251-.884-1.582-.849-.331-4.108-1.174-4.972-1.342-.912-.177-1.683.199-1.834 1.048z"/><path fill="#FFDC5D" d="M16.495 6.612c.31-.401.546-.872.661-1.455.409-2.083-.794-4.073-2.688-4.444-1.893-.372-4.483 1.029-4.425 3.151.057 2.107 1.229 5.214 2.993 4.69.466-.138.932-.29 1.375-.474.189.224.325 1.081.247 1.815-.2 1.87 2.381 2.065 2.579.192.157-1.482-.768-2.424-.742-3.475z"/><path fill="#FFAC33" d="M21.903 2.733c-1.311-.014-2.496-1.36-3.845-.501-.264.168-.456.337-.604.503-.234-.711-.636-1.367-1.299-1.798C15.507.515 14.712.2 13.961.285 9.384.801 9.632 4.111 9.98 4.421c.348.31 1.299-.572 2.002-.669.328-.046 1.041-.053 1.419.49.306.44.411 1.33.411 1.33s.012-1.012.041-1.368c.027-.332.356-.714.801-.222.387.428.19 1.268-.079 1.356-.207.068.129.575.648.961.946.704 1.681.428 1.786.389.106-.039.465-.118.648-1.333.026-.169.044-.35.055-.537.374.324.987.709 1.827.715.929.007 2.619-.466 3.586-1.621.744-.889 1.05-2.355 1.05-2.355-.395.738-1.283 1.187-2.272 1.176z"/><path fill="#DD2E44" d="M19.624 10.939c-.728-1.703-1.783-2.597-3.229-2.114-1.285.43-1.922 1.151-2.301 1.96-.184.393-.901 1.933-.466 2.933.851 1.956 2.243 5.863 2.488 7.059 0 0 .322.326 2.403.064 1.823-.23 2.732-.404 2.732-.404-.277-2.594-.452-6.747-1.627-9.498z"/><path fill="#FFDC5D" d="M17.202 11.067c-.577-.372-1.499-.331-2.404.983-.905 1.314-1.308 2.376-1.568 3.148-.221.655-1.157.16-2.236-.122-1.083-.284-2.455-.752-2.639-.897-.311-.245-.172-.898-.914-.886-.742.013-1.103-.086-1.153.595-.05.681-.083 1.364.17 1.669.253.305 1.212.016 1.604.169.289.113 3.749 1.905 4.178 2.064.524.194 1.233.476 1.901-.216.668-.692 2.819-3.522 3.335-4.296.543-.814.491-1.718-.274-2.211z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f3c3-200d-2642-fe0f.svg b/public/emoji/1f3c3-200d-2642-fe0f.svg
index 3c090f378e523e67746472bfc0a8717d4a1d79ec..42bc60109926635a9b4c21ec4c5b48817905d696 100644
--- a/public/emoji/1f3c3-200d-2642-fe0f.svg
+++ b/public/emoji/1f3c3-200d-2642-fe0f.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#2A6797" d="M12.002 34.001c-.182 0-.367-.025-.55-.078-1.062-.304-1.677-1.41-1.374-2.473l2-7c.124-.435.392-.814.76-1.077l7-5c.896-.642 2.147-.435 2.789.465.642.898.434 2.147-.465 2.789l-6.431 4.595-1.808 6.328c-.251.878-1.051 1.45-1.921 1.451z"/><path fill="#4289C1" d="M26.998 31c-.3 0-.605-.067-.892-.211l-6-3C19.428 27.45 19 26.758 19 26v-5c0-1.104.896-2 2-2s2 .896 2 2v3.764l4.895 2.447c.988.494 1.389 1.695.895 2.684-.352.701-1.058 1.105-1.792 1.105z"/><path fill="#292F33" d="M29.395 28.257c.103-.369-.192-.668-.574-.756-.611-.141-.867-.17-.867-.17-.305-.022-.965.064-1.064.414-.717 2.543-.657 5.569-.246 6.404.242.493.981.429 1.128-.095l1.623-5.797zm-16.697 6.819c.362.125.678-.152.789-.528.177-.601.221-.856.221-.856.04-.303-.007-.967-.35-1.087-2.496-.867-5.52-.986-6.378-.626-.506.213-.486.954.027 1.131l5.691 1.966z"/><path fill="#FFDC5D" d="M18.329 7.294c.321-.415.567-.904.685-1.509.424-2.16-.824-4.224-2.788-4.609-1.964-.386-4.649 1.068-4.589 3.268.06 2.185 1.274 5.408 3.104 4.864.483-.143.966-.301 1.426-.491.196.232.335.648.255 1.409-.207 1.94 2.472 2.616 2.677.672.162-1.537-.797-2.513-.77-3.604z"/><path fill="#FFAC33" d="M12.517 1.678c2.67-1.637 4.456-1.352 5.937-.147 1.471 1.196 1.524 3.438 1.101 4.863-.423 1.425-.838 1.343-.838 1.343s-1.977.433-2.109-1.399c-.042-.579.605-.886-.089-1.741-.446-.55-1.452-.285-1.463.503-.011.788-.412.637-.412.637l-1.168-2.096s-1.021-.067-1.596.866c-.362.586-1.695-1.399.637-2.829z"/><path fill="#FFDC5D" d="M27.001 18c-.367 0-.72-.202-.896-.553-1.788-3.576-7.366-5.481-7.423-5.5-.523-.175-.806-.742-.63-1.265.174-.523.735-.809 1.264-.632.261.087 6.418 2.181 8.578 6.502.247.494.047 1.095-.447 1.342-.143.072-.296.106-.446.106z"/><path fill="#77B255" d="M21.149 10.657c-.89-1.522-2.123-2.212-3.398-1.564-3.992 2.029-1.881 5.138.259 11.373 0 0 1 .927 3.358.296 1.659-.444 2.691.706 2.976.398.285-.309-1.053-6.839-3.195-10.503z"/><path fill="#FFDC5D" d="M16.143 12.485c-.028.046-2.825 4.631-7.339 5.534l.004.02C8.351 18.131 8 18.516 8 19c0 .553.448 1 1 1 .068 0 .128-.025.192-.039l.004.02c5.372-1.074 8.529-6.246 8.661-6.466l-1.714-1.03z"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#FFDC5D" d="M15.087 24.856l-1.728-3.593c-.428.233-2.257 1.253-3.35 2.237-.635.572-.549 1.002-.36 1.944l.017.085c.189.952 2.205 7.351 2.47 8.187l1.345-.334c.011-.446.057-2.767-.176-4.233-.073-.463-.147-1.025-.214-1.522-.071-.543-.134-1.012-.18-1.248-.064-.334.033-.53.337-.677.862-.416 1.586-.735 1.839-.846zm8.721 1.817c-.546-.067-1.019-.126-1.258-.141-.339-.021-.504-.165-.57-.496-.188-.939-.313-1.721-.356-1.993l-3.912.767c.118.473.644 2.5 1.322 3.806.393.757.831.782 1.79.838l.087.005c.975.057 7.669-.284 8.545-.329l.015-1.385c-.43-.124-2.663-.752-4.142-.896-.465-.045-1.026-.115-1.521-.176z"/><path fill="#8899A6" d="M27.805 29.682l-.178-.328c-.022-.053.004-.113.058-.132.171-.059.518-.217.639-.281-.105.24-.225.624-.359.74-.052.043-.134.063-.16.001z"/><path fill="#1C6399" d="M30.398 27.138c-.139-.111-.457-.166-.657-.185-.138-.013-.498-.024-.799-.008-.136.008-.291.024-.355.043-.198.057-.285.141-.332.198-.057.069-.062.144-.049.181.052.153.304.418.414.67.037.084.058.166.05.243-.027.276-.379.678-.643.976-.158.179-.285.32-.29.375-.006.059.011.109.037.158v.002c.072.132.229.269.337.629.069.232.395 1.291.395 1.291.078.27.182.336.226.481.091.297.251 1.094.331 1.346.08.252.271.36.418.381s.232-.014.232-.014.345-.155.574-1.449c.165-.935.019-1.079-.105-2.483s.216-2.835.216-2.835z"/><path fill="#3B94D9" d="M30.109 29.226c-.235-.096-.771-.45-.922-.831-.136-.344-.229-1.273-.246-1.449.288-.026.731-.007.873.007.188.018.404.033.534.143l.05.043c0-.001-.229 1.473-.289 2.087z"/><path fill="#CCD6DD" d="M28.048 30.27c-.073 0-.142-.041-.175-.111-.046-.097-.005-.213.092-.258l.342-.162c.097-.046.212-.005.259.092.046.097.005.213-.092.258l-.342.162c-.028.013-.056.019-.084.019zm.218.625c-.082 0-.158-.053-.185-.135-.032-.102.024-.211.126-.244l.38-.121c.097-.033.21.023.243.126.032.102-.024.211-.126.244l-.38.121c-.018.007-.038.009-.058.009zm.184.637c-.091 0-.171-.063-.19-.155-.021-.105.046-.207.152-.229l.356-.072c.111-.023.207.047.229.152.021.105-.046.207-.152.229l-.356.072-.039.003zm2.776-4.13c-.006-.028-.027-.137-.101-.27-.025-.045-.082-.059-.14-.066-.072-.009-.6-.085-.61.022 0 0-.003.159-.077.268-.075.109-.127.377-.146.577-.019.199-.105.951-.085 1.478.02.528.183 1.482.19 1.8.008.318 0 .814-.068 1.18s-.14.692-.196.893c-.072.259-.168.471-.279.619 0 0 .417-.028.736-.645.252-.487.393-.955.446-1.411.004-.035.113-1.252.165-1.86.038-.445.102-1.155.102-1.155.081-.841.1-1.269.063-1.43z"/><path fill="#8899A6" d="M11.211 32.283l.269-.259c.045-.036.11-.027.143.021.102.149.348.441.441.541-.26-.037-.661-.051-.809-.149-.056-.038-.096-.112-.044-.154z"/><path fill="#1C6399" d="M14.355 34.104c.07-.163.038-.485.003-.683-.024-.136-.109-.486-.206-.772-.043-.129-.101-.274-.136-.33-.108-.176-.212-.237-.28-.267-.082-.036-.155-.022-.188.001-.134.091-.322.405-.535.578-.071.058-.144.1-.22.113-.273.048-.755-.184-1.112-.359-.214-.105-.385-.189-.438-.18-.059.01-.102.039-.143.078l-.002.001h.001c-.108.104-.199.293-.516.492-.206.128-1.14.724-1.14.724-.24.147-.275.265-.403.346-.262.167-.987.534-1.209.678-.222.144-.275.357-.255.505.02.148.076.22.076.22s.242.291 1.549.166c.945-.09 1.045-.269 2.365-.763 1.32-.493 2.789-.548 2.789-.548z"/><path fill="#3B94D9" d="M12.266 34.382c.03-.252.228-.863.555-1.11.295-.222 1.166-.56 1.331-.624.102.271.202.703.226.843.033.186.076.398.004.553l-.028.059c.001.001-1.481.173-2.088.279z"/><path fill="#CCD6DD" d="M11.144 33.103c-.054 0-.109-.023-.147-.067l-.247-.287c-.07-.081-.061-.204.02-.274.081-.07.205-.061.274.02l.247.287c.07.081.061.204-.02.274-.038.032-.083.047-.127.047zm-.575.425c-.063 0-.125-.031-.163-.088l-.218-.334c-.058-.09-.033-.21.057-.269.09-.058.209-.034.269.056l.218.334c.058.09.033.21-.057.269-.033.022-.069.032-.106.032zm-.617.337c-.07 0-.138-.039-.173-.106l-.165-.324c-.048-.095-.01-.212.085-.261.095-.049.211-.011.261.085l.165.324c.048.096.01.212-.085.261-.028.015-.059.021-.088.021zm4.369 1.108c.026-.014.125-.062.234-.17.036-.036.035-.095.026-.153-.01-.072-.078-.601-.184-.582 0 0-.154.04-.279-.003-.125-.043-.398-.021-.595.013-.197.035-.944.152-1.447.312-.503.16-1.379.571-1.684.664-.305.092-.784.217-1.156.249-.371.032-.705.05-.913.049-.269 0-.498-.036-.671-.103 0 0 .138.394.818.537.537.113 1.025.124 1.479.053.034-.005 1.237-.225 1.836-.337.439-.082 1.14-.21 1.14-.21.833-.146 1.25-.241 1.396-.319z"/><path fill="#1C6399" d="M12.654 21.244c.751-.398 3.235-1.653 4.947-1.804.156-.014.298.088.352.235l1.328 3.635c.068.186-.027.391-.216.451-.781.25-2.74.915-4.22 1.719-.157.085-.347.041-.448-.106-.456-.664-1.642-2.477-1.923-3.76-.032-.15.045-.298.18-.37z"/><path fill="#357BAA" d="M17.514 25.488c-.196-.827-.785-3.547-.501-5.242.026-.155.16-.266.316-.281l3.853-.37c.198-.019.371.125.382.323.046.818.196 2.882.601 4.517.043.173-.048.346-.216.407-.758.274-2.811.965-4.123.914-.153-.007-.276-.118-.312-.268z"/><path fill="#FFDC5D" d="M15.015 10.618c-.085.612.05 1.546 1.466 1.787 1.416.241 2.812.059 3.411-.108.599-.167.569.884.747 1.872.179.992.301 1.768.252 1.973-.082.347-.809 1.011-.517 1.612s.757 1.179 1.332.962c.575-.217 1.05-.475 1.203-.797s-.525-1.295-.552-1.574c-.027-.278.227-3.888.194-4.298-.04-.501-.078-1.187-.896-1.47-.818-.284-4.094-.92-4.915-1.079-.942-.185-1.612.309-1.725 1.12z"/><path fill="#FFDC5D" d="M16.217 6.241c.285-.396.498-.858.589-1.424.326-2.021-.9-3.9-2.738-4.196-1.838-.296-4.287 1.14-4.162 3.184.125 2.029 1.356 4.986 3.04 4.423.444-.149.889-.311 1.31-.502.19.209.349 1.031.298 1.742-.131 1.81 2.363 1.913 2.492.1.104-1.435-.819-2.312-.829-3.327z"/><path fill="#FFAC33" d="M10.637 1.206C13.067-.4 14.736-.192 16.151.88c1.405 1.065 1.526 3.148 1.178 4.485-.348 1.338-.736 1.275-.736 1.275s-1.824.465-2.005-1.233c-.057-.537.534-.843-.138-1.615-.432-.497-1.358-.219-1.344.514.015.732-.363.605-.363.605l-1.153-1.91s-.951-.03-1.456.856c-.317.555-1.62-1.248.503-2.651z"/><path fill="#4289C1" d="M19.459 10.057c-.77-1.644-1.984-2.479-3.384-1.957-4.381 1.635-2.36 5.68-.781 12.252 0 0 3.109.449 6.316.36 0 .001-.298-6.698-2.151-10.655z"/><path fill="#FFDC5D" d="M16.94 10.268c-.577-.345-1.571-.605-2.413.712s-1.251 2.794-1.338 3.466c-.087.672-1.127.196-2.194-.045-1.07-.242-2.429-.654-2.614-.79-.313-.229-.199-.874-.925-.837s-1.083-.047-1.11.622c-.026.669-.035 1.339.222 1.629.258.29 1.127.04 1.516.177.287.101 3.803 1.876 4.228 2.017.519.172 1.223.425 1.854-.275s2.658-3.714 3.167-4.47c.584-.867.373-1.748-.393-2.206z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f3c3.svg b/public/emoji/1f3c3.svg
index 3c090f378e523e67746472bfc0a8717d4a1d79ec..42bc60109926635a9b4c21ec4c5b48817905d696 100644
--- a/public/emoji/1f3c3.svg
+++ b/public/emoji/1f3c3.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#2A6797" d="M12.002 34.001c-.182 0-.367-.025-.55-.078-1.062-.304-1.677-1.41-1.374-2.473l2-7c.124-.435.392-.814.76-1.077l7-5c.896-.642 2.147-.435 2.789.465.642.898.434 2.147-.465 2.789l-6.431 4.595-1.808 6.328c-.251.878-1.051 1.45-1.921 1.451z"/><path fill="#4289C1" d="M26.998 31c-.3 0-.605-.067-.892-.211l-6-3C19.428 27.45 19 26.758 19 26v-5c0-1.104.896-2 2-2s2 .896 2 2v3.764l4.895 2.447c.988.494 1.389 1.695.895 2.684-.352.701-1.058 1.105-1.792 1.105z"/><path fill="#292F33" d="M29.395 28.257c.103-.369-.192-.668-.574-.756-.611-.141-.867-.17-.867-.17-.305-.022-.965.064-1.064.414-.717 2.543-.657 5.569-.246 6.404.242.493.981.429 1.128-.095l1.623-5.797zm-16.697 6.819c.362.125.678-.152.789-.528.177-.601.221-.856.221-.856.04-.303-.007-.967-.35-1.087-2.496-.867-5.52-.986-6.378-.626-.506.213-.486.954.027 1.131l5.691 1.966z"/><path fill="#FFDC5D" d="M18.329 7.294c.321-.415.567-.904.685-1.509.424-2.16-.824-4.224-2.788-4.609-1.964-.386-4.649 1.068-4.589 3.268.06 2.185 1.274 5.408 3.104 4.864.483-.143.966-.301 1.426-.491.196.232.335.648.255 1.409-.207 1.94 2.472 2.616 2.677.672.162-1.537-.797-2.513-.77-3.604z"/><path fill="#FFAC33" d="M12.517 1.678c2.67-1.637 4.456-1.352 5.937-.147 1.471 1.196 1.524 3.438 1.101 4.863-.423 1.425-.838 1.343-.838 1.343s-1.977.433-2.109-1.399c-.042-.579.605-.886-.089-1.741-.446-.55-1.452-.285-1.463.503-.011.788-.412.637-.412.637l-1.168-2.096s-1.021-.067-1.596.866c-.362.586-1.695-1.399.637-2.829z"/><path fill="#FFDC5D" d="M27.001 18c-.367 0-.72-.202-.896-.553-1.788-3.576-7.366-5.481-7.423-5.5-.523-.175-.806-.742-.63-1.265.174-.523.735-.809 1.264-.632.261.087 6.418 2.181 8.578 6.502.247.494.047 1.095-.447 1.342-.143.072-.296.106-.446.106z"/><path fill="#77B255" d="M21.149 10.657c-.89-1.522-2.123-2.212-3.398-1.564-3.992 2.029-1.881 5.138.259 11.373 0 0 1 .927 3.358.296 1.659-.444 2.691.706 2.976.398.285-.309-1.053-6.839-3.195-10.503z"/><path fill="#FFDC5D" d="M16.143 12.485c-.028.046-2.825 4.631-7.339 5.534l.004.02C8.351 18.131 8 18.516 8 19c0 .553.448 1 1 1 .068 0 .128-.025.192-.039l.004.02c5.372-1.074 8.529-6.246 8.661-6.466l-1.714-1.03z"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#FFDC5D" d="M15.087 24.856l-1.728-3.593c-.428.233-2.257 1.253-3.35 2.237-.635.572-.549 1.002-.36 1.944l.017.085c.189.952 2.205 7.351 2.47 8.187l1.345-.334c.011-.446.057-2.767-.176-4.233-.073-.463-.147-1.025-.214-1.522-.071-.543-.134-1.012-.18-1.248-.064-.334.033-.53.337-.677.862-.416 1.586-.735 1.839-.846zm8.721 1.817c-.546-.067-1.019-.126-1.258-.141-.339-.021-.504-.165-.57-.496-.188-.939-.313-1.721-.356-1.993l-3.912.767c.118.473.644 2.5 1.322 3.806.393.757.831.782 1.79.838l.087.005c.975.057 7.669-.284 8.545-.329l.015-1.385c-.43-.124-2.663-.752-4.142-.896-.465-.045-1.026-.115-1.521-.176z"/><path fill="#8899A6" d="M27.805 29.682l-.178-.328c-.022-.053.004-.113.058-.132.171-.059.518-.217.639-.281-.105.24-.225.624-.359.74-.052.043-.134.063-.16.001z"/><path fill="#1C6399" d="M30.398 27.138c-.139-.111-.457-.166-.657-.185-.138-.013-.498-.024-.799-.008-.136.008-.291.024-.355.043-.198.057-.285.141-.332.198-.057.069-.062.144-.049.181.052.153.304.418.414.67.037.084.058.166.05.243-.027.276-.379.678-.643.976-.158.179-.285.32-.29.375-.006.059.011.109.037.158v.002c.072.132.229.269.337.629.069.232.395 1.291.395 1.291.078.27.182.336.226.481.091.297.251 1.094.331 1.346.08.252.271.36.418.381s.232-.014.232-.014.345-.155.574-1.449c.165-.935.019-1.079-.105-2.483s.216-2.835.216-2.835z"/><path fill="#3B94D9" d="M30.109 29.226c-.235-.096-.771-.45-.922-.831-.136-.344-.229-1.273-.246-1.449.288-.026.731-.007.873.007.188.018.404.033.534.143l.05.043c0-.001-.229 1.473-.289 2.087z"/><path fill="#CCD6DD" d="M28.048 30.27c-.073 0-.142-.041-.175-.111-.046-.097-.005-.213.092-.258l.342-.162c.097-.046.212-.005.259.092.046.097.005.213-.092.258l-.342.162c-.028.013-.056.019-.084.019zm.218.625c-.082 0-.158-.053-.185-.135-.032-.102.024-.211.126-.244l.38-.121c.097-.033.21.023.243.126.032.102-.024.211-.126.244l-.38.121c-.018.007-.038.009-.058.009zm.184.637c-.091 0-.171-.063-.19-.155-.021-.105.046-.207.152-.229l.356-.072c.111-.023.207.047.229.152.021.105-.046.207-.152.229l-.356.072-.039.003zm2.776-4.13c-.006-.028-.027-.137-.101-.27-.025-.045-.082-.059-.14-.066-.072-.009-.6-.085-.61.022 0 0-.003.159-.077.268-.075.109-.127.377-.146.577-.019.199-.105.951-.085 1.478.02.528.183 1.482.19 1.8.008.318 0 .814-.068 1.18s-.14.692-.196.893c-.072.259-.168.471-.279.619 0 0 .417-.028.736-.645.252-.487.393-.955.446-1.411.004-.035.113-1.252.165-1.86.038-.445.102-1.155.102-1.155.081-.841.1-1.269.063-1.43z"/><path fill="#8899A6" d="M11.211 32.283l.269-.259c.045-.036.11-.027.143.021.102.149.348.441.441.541-.26-.037-.661-.051-.809-.149-.056-.038-.096-.112-.044-.154z"/><path fill="#1C6399" d="M14.355 34.104c.07-.163.038-.485.003-.683-.024-.136-.109-.486-.206-.772-.043-.129-.101-.274-.136-.33-.108-.176-.212-.237-.28-.267-.082-.036-.155-.022-.188.001-.134.091-.322.405-.535.578-.071.058-.144.1-.22.113-.273.048-.755-.184-1.112-.359-.214-.105-.385-.189-.438-.18-.059.01-.102.039-.143.078l-.002.001h.001c-.108.104-.199.293-.516.492-.206.128-1.14.724-1.14.724-.24.147-.275.265-.403.346-.262.167-.987.534-1.209.678-.222.144-.275.357-.255.505.02.148.076.22.076.22s.242.291 1.549.166c.945-.09 1.045-.269 2.365-.763 1.32-.493 2.789-.548 2.789-.548z"/><path fill="#3B94D9" d="M12.266 34.382c.03-.252.228-.863.555-1.11.295-.222 1.166-.56 1.331-.624.102.271.202.703.226.843.033.186.076.398.004.553l-.028.059c.001.001-1.481.173-2.088.279z"/><path fill="#CCD6DD" d="M11.144 33.103c-.054 0-.109-.023-.147-.067l-.247-.287c-.07-.081-.061-.204.02-.274.081-.07.205-.061.274.02l.247.287c.07.081.061.204-.02.274-.038.032-.083.047-.127.047zm-.575.425c-.063 0-.125-.031-.163-.088l-.218-.334c-.058-.09-.033-.21.057-.269.09-.058.209-.034.269.056l.218.334c.058.09.033.21-.057.269-.033.022-.069.032-.106.032zm-.617.337c-.07 0-.138-.039-.173-.106l-.165-.324c-.048-.095-.01-.212.085-.261.095-.049.211-.011.261.085l.165.324c.048.096.01.212-.085.261-.028.015-.059.021-.088.021zm4.369 1.108c.026-.014.125-.062.234-.17.036-.036.035-.095.026-.153-.01-.072-.078-.601-.184-.582 0 0-.154.04-.279-.003-.125-.043-.398-.021-.595.013-.197.035-.944.152-1.447.312-.503.16-1.379.571-1.684.664-.305.092-.784.217-1.156.249-.371.032-.705.05-.913.049-.269 0-.498-.036-.671-.103 0 0 .138.394.818.537.537.113 1.025.124 1.479.053.034-.005 1.237-.225 1.836-.337.439-.082 1.14-.21 1.14-.21.833-.146 1.25-.241 1.396-.319z"/><path fill="#1C6399" d="M12.654 21.244c.751-.398 3.235-1.653 4.947-1.804.156-.014.298.088.352.235l1.328 3.635c.068.186-.027.391-.216.451-.781.25-2.74.915-4.22 1.719-.157.085-.347.041-.448-.106-.456-.664-1.642-2.477-1.923-3.76-.032-.15.045-.298.18-.37z"/><path fill="#357BAA" d="M17.514 25.488c-.196-.827-.785-3.547-.501-5.242.026-.155.16-.266.316-.281l3.853-.37c.198-.019.371.125.382.323.046.818.196 2.882.601 4.517.043.173-.048.346-.216.407-.758.274-2.811.965-4.123.914-.153-.007-.276-.118-.312-.268z"/><path fill="#FFDC5D" d="M15.015 10.618c-.085.612.05 1.546 1.466 1.787 1.416.241 2.812.059 3.411-.108.599-.167.569.884.747 1.872.179.992.301 1.768.252 1.973-.082.347-.809 1.011-.517 1.612s.757 1.179 1.332.962c.575-.217 1.05-.475 1.203-.797s-.525-1.295-.552-1.574c-.027-.278.227-3.888.194-4.298-.04-.501-.078-1.187-.896-1.47-.818-.284-4.094-.92-4.915-1.079-.942-.185-1.612.309-1.725 1.12z"/><path fill="#FFDC5D" d="M16.217 6.241c.285-.396.498-.858.589-1.424.326-2.021-.9-3.9-2.738-4.196-1.838-.296-4.287 1.14-4.162 3.184.125 2.029 1.356 4.986 3.04 4.423.444-.149.889-.311 1.31-.502.19.209.349 1.031.298 1.742-.131 1.81 2.363 1.913 2.492.1.104-1.435-.819-2.312-.829-3.327z"/><path fill="#FFAC33" d="M10.637 1.206C13.067-.4 14.736-.192 16.151.88c1.405 1.065 1.526 3.148 1.178 4.485-.348 1.338-.736 1.275-.736 1.275s-1.824.465-2.005-1.233c-.057-.537.534-.843-.138-1.615-.432-.497-1.358-.219-1.344.514.015.732-.363.605-.363.605l-1.153-1.91s-.951-.03-1.456.856c-.317.555-1.62-1.248.503-2.651z"/><path fill="#4289C1" d="M19.459 10.057c-.77-1.644-1.984-2.479-3.384-1.957-4.381 1.635-2.36 5.68-.781 12.252 0 0 3.109.449 6.316.36 0 .001-.298-6.698-2.151-10.655z"/><path fill="#FFDC5D" d="M16.94 10.268c-.577-.345-1.571-.605-2.413.712s-1.251 2.794-1.338 3.466c-.087.672-1.127.196-2.194-.045-1.07-.242-2.429-.654-2.614-.79-.313-.229-.199-.874-.925-.837s-1.083-.047-1.11.622c-.026.669-.035 1.339.222 1.629.258.29 1.127.04 1.516.177.287.101 3.803 1.876 4.228 2.017.519.172 1.223.425 1.854-.275s2.658-3.714 3.167-4.47c.584-.867.373-1.748-.393-2.206z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f3c4-1f3fb-200d-2640-fe0f.svg b/public/emoji/1f3c4-1f3fb-200d-2640-fe0f.svg
index 755e4ab579090cf087c90b604d46fd255d58ac09..c5f3081935e2d0be19d7e8781bf4665bcaa7a0e4 100644
--- a/public/emoji/1f3c4-1f3fb-200d-2640-fe0f.svg
+++ b/public/emoji/1f3c4-1f3fb-200d-2640-fe0f.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#4289C1" d="M36 5v27s0 4-4 4H4c-4 0-4-4-4-4v-5s25-2 36-22z"/><path fill="#E0245E" d="M30.59 20.432s2.33-2.136 1.924-3.049c-.408-.914-11.676.831-17.154 3.276-8.22 3.669-12.068 9.767-11.253 11.593.815 1.826 7.925 3.033 16.143-.635 5.48-2.445 14.301-9.669 13.895-10.582-.409-.913-3.555-.603-3.555-.603z"/><path fill="#F5F8FA" d="M34.145 21.035c-.408-.913-3.555-.604-3.555-.604s2.204-2.024 1.942-2.973L4.612 29.674c-.569 1.116-.747 2.037-.505 2.578.211.473.849.9 1.812 1.217l28.215-12.345c0-.027.02-.068.011-.089z"/><path fill="#F7DECE" d="M24.408 15c-3.401 0-6.462-3.95-6.8-4.4-.332-.441-.242-1.067.199-1.399.441-.331 1.066-.244 1.4.198.754 1.002 3.158 3.601 5.2 3.601.553 0 1 .448 1 1s-.446 1-.999 1zm-17 4c-.419 0-.809-.265-.949-.684-1.195-3.584.152-5.934 1.492-7.273 1.401-1.401 3.07-1.968 3.141-1.992.525-.176 1.091.109 1.265.632.174.523-.107 1.088-.629 1.264-.516.176-4.996 1.861-3.371 6.736.175.524-.108 1.091-.632 1.265-.105.035-.212.052-.317.052z"/><path fill="#67757F" d="M25.406 26c-.3 0-.605-.067-.893-.211l-2-1c-.439-.22-.78-.592-.963-1.046l-1.682-4.204-4.204-1.682c-1.025-.41-1.524-1.574-1.114-2.6.41-1.026 1.576-1.525 2.6-1.114l5.001 2c.508.203.91.606 1.114 1.114l1.717 4.294 1.32.66c.988.494 1.389 1.695.895 2.684-.35.701-1.056 1.105-1.791 1.105z"/><path fill="#67757F" d="M16.409 30c-.733.001-1.44-.404-1.791-1.105l-1-2c-.199-.397-.259-.851-.172-1.287l.848-4.241-2.602-4.337c-.568-.947-.261-2.175.686-2.744.946-.569 2.175-.261 2.744.686l3 4.999c.256.427.344.934.246 1.422l-.865 4.327.693 1.386c.494.988.093 2.189-.895 2.684-.286.143-.591.21-.892.21z"/><path fill="#F7DECE" d="M14.656.74c-1.684-.634-4.281.255-4.555 2.215-.272 1.947.326 4.985 2.029 4.775 1.786-.22 3.615-.636 4.312-2.489.697-1.851-.102-3.867-1.786-4.501z"/><path fill="#F7DECE" d="M16.002 5.776c2.442-2.869-3.441-2.589-3.441-2.589-1.113.04-.347 1.895-.871 2.908-.359.701 1.153 1.073 1.153 1.073s.694-.01.732.832v.008c.008.214-.014.469-.114.81-.498 1.686 1.766 2.72 2.264 1.03.197-.669.12-1.257.021-1.799L15.736 8c-.151-.807-.338-1.514.266-2.224z"/><path fill="#67757F" d="M18.408 8h-2.672l-.751.766L13.56 8h-2.152c-1.104 0-2 .896-2 2s.896 2 2 2v3.5c0 1.933 1.567 3.5 3.5 3.5s3.5-1.567 3.5-3.5V12c1.104 0 2-.896 2-2s-.895-2-2-2z"/><path fill="#292F33" d="M16.578 1.387C16.087.83 15.513.43 14.816.225c-.914-.268-2.022-.133-3.525.409-1.381.499-1.63 2.049-1.29 2.396.039.019.065.057.108.07.027.008.052.005.079.011.588.13 1.129-.284 1.804-.194.315.042.657.186 1.052.571.061.059.101.149.134.248.162.489.038 1.336.038 1.336s.272-.934.39-1.256c.11-.3.513-.569.799.001.248.495-.151 1.222-.422 1.235-.209.01-.029.565.352 1.057.5.645 1.086.786 1.374.815.112.011.534.139 1.122-1.061.588-1.2.874-3.197-.253-4.476z"/><path fill="#292F33" d="M21.434 4.53c-1.209-.351-1.959-1.902-3.429-1.454-1.783.543-1.261 1.789-1.261 1.789s.443 1.264 1.783 1.648c.858.246 2.544.243 3.736-.577.917-.631 1.578-1.909 1.578-1.909-.557.58-1.494.767-2.407.503z"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#4289C1" d="M36 5v27s0 4-4 4H4c-4 0-4-4-4-4v-5s25-2 36-22z"/><path fill="#1C6399" d="M31.844 23.243s2.565-1.635 2.258-2.288c-.309-.654-11.778.99-17.528 2.954-8.627 2.947-13.144 7.522-12.526 8.828.617 1.306 7.602 1.953 16.228-.993 5.752-1.964 15.368-7.524 15.06-8.177-.309-.653-3.492-.324-3.492-.324z"/><path fill="#A6D388" d="M31.474 22.747s2.65-1.619 2.349-2.291c-.303-.673-12.042.782-17.949 2.675C7.01 25.972 2.311 30.555 2.916 31.9c.605 1.345 7.723 2.141 16.585-.699 5.91-1.893 15.833-7.383 15.532-8.055-.303-.673-3.559-.399-3.559-.399z"/><path fill="#F5F8FA" d="M31.474 22.747s2.507-1.534 2.358-2.235L3.756 29.978c-.722.837-1.019 1.523-.84 1.922.156.348.755.657 1.7.878l30.395-9.566c.003-.02.029-.051.022-.066-.303-.673-3.559-.399-3.559-.399z"/><path fill="#F7DECE" d="M27.755 12.233c-.589-.235-1.348-.276-2.104-.386-1.198-.175-2.852-.765-3.529-1.086-.825-.495-2.577-1.661-3.012-1.948S18.093 8.128 17.375 8h-.156c.385.542.609 1.159.748 2.841 0 0 3.319 1.661 3.595 1.753 1.125.375 3.182.366 4.344.512.602.076 1.021-.014 1.499-.047.722-.049 1.38-.055 1.422-.371.05-.367-.595-.265-1.072-.455zM14.698.997c-1.593-.627-4.077.182-4.365 2.043-.287 1.848.239 4.747 1.863 4.572 1.702-.184 3.448-.554 4.138-2.307.69-1.752-.043-3.681-1.636-4.308z"/><path fill="#F7DECE" d="M15.882 5.757c2.318-2.723-3.266-2.458-3.266-2.458-1.057.038-.329 1.799-.827 2.761-.341.665 1.095 1.018 1.095 1.018s.659-.01.694.79v.007c.008.204-.013.445-.108.769-.473 1.601 1.677 2.582 2.149.978.187-.635.114-1.193.02-1.708l-.009-.046c-.144-.766-.322-1.438.252-2.111zm-4.883 2.645c-1.666.993-3.368 3.049-3.98 3.914-.36.283-.686.614-.897.736-.389.223-2.154 1.432-3.334 2.005-.354.166-1.458.438-1.992.781-.432.278-.845.262-.727.612.102.302.508.216 1.227.132.719-.084 1.929-.289 2.325-.566.8-.531 3.347-1.156 4.597-2.031.221-.155 2.385-2.163 2.781-2.741.543-1.515.282-2.556 0-2.842z"/><path fill="#292F33" d="M16.518 1.64C15.457.398 13.998-.117 11.499.849c-2.183.844-1.481 2.579-.972 2.282 1.869-1.09 2.899.514 3.697 2.269.523 1.151 1.56 1.502 1.56 1.502s.337.132.912-1.001.876-3.028-.178-4.261z"/><path fill="#F7DECE" d="M16.261 28.432c-.378-.1-.67-.432-.807-.785-.059-.152-.365-1.001-.365-1.001H13.27c.043.214-.037.696-.134 1.197-.062.322-.114.892-.013 1.093.101.201.817.74 1.301.839 1.237.255 2.491-.342 2.644-.517.222-.255-.428-.726-.807-.826zm7.51-3.222c-.334-.065-.607-.336-.746-.634-.06-.129-.22-.651-.22-.651l-1.609.22c.05.183-.027.417-.008.793.017.335-.058.748.042.917.099.169.601.571 1.027.629 1.088.148 2.141-.443 2.264-.604.176-.235-.416-.605-.75-.67z"/><path fill="#292F33" d="M16.188 2.219c.875-1.312 2.774-1.438 3.637-.469S21.01 4 22.163 4c.368 0 .552.344-.212.688S18.062 5.719 16.875 3.5c-.531-.656-.687-1.281-.687-1.281zm6.589 20.022c.023-.706.412-2.193.265-2.824-.229-.981-1.5-2.047-2.677-2.948-1.177-.901-2.375-1.438-2.375-1.438-.302-1.896.242-2.896.235-3.716-.006-.684-.433-2.648-1.006-3.315h-1.565s.246 1.013-.647 1.112C14.112 9.211 13.56 8 13.56 8l-1.748.167c-.278.043-.549.125-.813.236.376.639.23 2.285 0 2.841.823 1.188 1.536 3.003 1.146 5.256-.346 2.002.473 3.889.473 4.324 0 0-.503 1.749-.2 2.898.403 1.529.768 2.884.81 3.423 1.412 0 1.981-.39 1.981-.39s-.278-.638-.165-1.577c.069-.572.351-1.455.351-2.304 0-.849-.022-1.461.104-1.812s.52-1.576.812-2.704c.534.292 1.493.792 2.084.954.849.232 1.494.595 1.718.79s.376.335.376.335-.07.625-.01 1.583c.055.877.53 1.551.636 2.596.893-.133 1.739-.528 1.739-.528s-.096-1.267-.077-1.847z"/><path fill="#67757F" d="M12.375 8.594l.904-.086s1.202 1.373 2.096 1.274c.894-.099.841-1.354.841-1.354h1.269c-.085-.168-.173-.319-.266-.428h-1.565s.246 1.013-.647 1.112C14.112 9.211 13.56 8 13.56 8l-1.748.167c-.278.043-.549.125-.813.236.077.131.128.311.165.509.346-.118.973-.282 1.211-.318zm8.667 13.854c-.06-.958.01-1.583.01-1.583s-.151-.141-.376-.335c-.068-.059-.186-.136-.326-.218l.139.126s-.07.625-.01 1.583c.055.877.53 1.551.636 2.596.158-.024.313-.057.464-.093-.175-.763-.492-1.357-.537-2.076zm-8.061 1.701c-.303-1.149.2-2.898.2-2.898 0-.435-.798-2.791-.452-4.793 4-.021 5.26-1.427 5.26-1.427s-2.719 1.26-5.201.533c-.074-1.788-.788-3.661-1.707-4.579-.025.1-.053.188-.082.258.823 1.188 1.536 3.003 1.146 5.256-.346 2.002.473 3.889.473 4.324 0 0-.503 1.749-.2 2.898.403 1.529.768 2.884.81 3.423.178 0 .342-.006.494-.017-.129-.672-.421-1.766-.741-2.978z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f3c4-1f3fb-200d-2642-fe0f.svg b/public/emoji/1f3c4-1f3fb-200d-2642-fe0f.svg
index 75d69eec7b5f22630ca52dd130936b4e5cfd4a2c..e396618ff6a41fb8a8052e58e6039aaaf2eef734 100644
--- a/public/emoji/1f3c4-1f3fb-200d-2642-fe0f.svg
+++ b/public/emoji/1f3c4-1f3fb-200d-2642-fe0f.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#4289C1" d="M36 5v27s0 4-4 4H4c-4 0-4-4-4-4v-5s25-2 36-22z"/><path fill="#A7D28B" d="M30.59 20.432s2.33-2.136 1.924-3.049c-.408-.914-11.676.831-17.154 3.276-8.22 3.669-12.068 9.767-11.253 11.593.815 1.826 7.925 3.033 16.143-.635 5.48-2.445 14.301-9.669 13.895-10.582-.409-.913-3.555-.603-3.555-.603z"/><path fill="#F5F8FA" d="M34.145 21.035c-.408-.913-3.555-.604-3.555-.604s2.204-2.024 1.942-2.973L4.612 29.674c-.569 1.116-.747 2.037-.505 2.578.211.473.849.9 1.812 1.217l28.215-12.345c0-.027.02-.068.011-.089z"/><path fill="#F7DECE" d="M24.408 15c-3.401 0-6.462-3.95-6.8-4.4-.332-.441-.242-1.067.199-1.399.441-.331 1.066-.244 1.4.198.754 1.002 3.158 3.601 5.2 3.601.553 0 1 .448 1 1s-.446 1-.999 1zm-17 4c-.419 0-.809-.265-.949-.684-1.195-3.584.152-5.934 1.492-7.273 1.401-1.401 3.07-1.968 3.141-1.992.525-.176 1.091.109 1.265.632.174.523-.107 1.088-.629 1.264-.516.176-4.996 1.861-3.371 6.736.175.524-.108 1.091-.632 1.265-.105.035-.212.052-.317.052z"/><path fill="#67757F" d="M25.406 26c-.3 0-.605-.067-.893-.211l-2-1c-.439-.22-.78-.592-.963-1.046l-1.682-4.204-4.204-1.682c-1.025-.41-1.524-1.574-1.114-2.6.41-1.026 1.576-1.525 2.6-1.114l5.001 2c.508.203.91.606 1.114 1.114l1.717 4.294 1.32.66c.988.494 1.389 1.695.895 2.684-.35.701-1.056 1.105-1.791 1.105z"/><path fill="#67757F" d="M16.409 30c-.733.001-1.44-.404-1.791-1.105l-1-2c-.199-.397-.259-.851-.172-1.287l.848-4.241-2.602-4.337c-.568-.947-.261-2.175.686-2.744.946-.569 2.175-.261 2.744.686l3 4.999c.256.427.344.934.246 1.422l-.865 4.327.693 1.386c.494.988.093 2.189-.895 2.684-.286.143-.591.21-.892.21z"/><path fill="#F7DECE" d="M14.755.763c-1.678-.66-4.294.192-4.598 2.152-.302 1.947.252 5 1.962 4.816 1.793-.194 3.632-.584 4.359-2.43.727-1.846-.045-3.878-1.723-4.538z"/><path fill="#F7DECE" d="M16.002 5.776c2.442-2.869-3.441-2.589-3.441-2.589-1.113.04-.347 1.895-.871 2.908-.359.701 1.153 1.073 1.153 1.073s.694-.01.732.832v.008c.008.214-.014.469-.114.81-.498 1.686 1.766 2.72 2.264 1.03.197-.669.12-1.257.021-1.799L15.736 8c-.151-.807-.338-1.514.266-2.224z"/><path fill="#67757F" d="M18.408 8h-2.672l-.751.766L13.56 8h-2.152c-1.104 0-2 .896-2 2s.896 2 2 2v3.5c0 1.933 1.567 3.5 3.5 3.5s3.5-1.567 3.5-3.5V12c1.104 0 2-.896 2-2s-.895-2-2-2z"/><path fill="#292F33" d="M16.673 1.439C15.556.131 14.019-.412 11.386.606c-2.299.889-1.439 2.865-1.024 2.404.661-.734 1.555-.509 1.555-.509l.695 2.048s.331.199.469-.498c.138-.696 1.072-.768 1.378-.208.476.87-.147 1.037-.204 1.557-.179 1.645 1.643 1.582 1.643 1.582s.355.14.961-1.055c.606-1.192.923-3.189-.186-4.488z"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#4289C1" d="M36 5v27s0 4-4 4H4c-4 0-4-4-4-4v-5s25-2 36-22z"/><path fill="#1C6399" d="M31.844 23.243s2.565-1.635 2.258-2.288c-.309-.654-11.778.99-17.528 2.954-8.627 2.947-13.144 7.522-12.526 8.828.617 1.306 7.602 1.953 16.228-.993 5.752-1.964 15.368-7.524 15.06-8.177-.309-.653-3.492-.324-3.492-.324z"/><path fill="#A6D388" d="M31.474 22.747s2.65-1.619 2.349-2.291c-.303-.673-12.042.782-17.949 2.675C7.01 25.972 2.311 30.555 2.916 31.9c.605 1.345 7.723 2.141 16.585-.699 5.91-1.893 15.833-7.383 15.532-8.055-.303-.673-3.559-.399-3.559-.399z"/><path fill="#F5F8FA" d="M31.474 22.747s2.507-1.534 2.358-2.235L3.756 29.978c-.722.837-1.019 1.523-.84 1.922.156.348.755.657 1.7.878l30.395-9.566c.003-.02.029-.051.022-.066-.303-.673-3.559-.399-3.559-.399z"/><path fill="#F7DECE" d="M2.789 15.057c-.354.166-1.458.438-1.992.781-.432.278-.845.262-.727.612.102.302.508.216 1.227.132.719-.084 1.929-.289 2.325-.566l-.833-.959zm22.862-3.211c.379.095 1.515.151 2.104.386.477.19 1.122.088 1.073.455-.043.316-.701.317-1.422.371-.722.054-1.949.085-2.39-.113l.635-1.099zM14.698.997c-1.593-.627-4.077.182-4.365 2.043-.287 1.848.239 4.747 1.863 4.572 1.702-.184 3.448-.554 4.138-2.307.69-1.752-.043-3.681-1.636-4.308z"/><path fill="#F7DECE" d="M15.882 5.757c2.318-2.723-3.266-2.458-3.266-2.458-1.057.038-.329 1.799-.827 2.761-.341.665 1.095 1.018 1.095 1.018s.659-.01.694.79v.007c.008.204-.013.445-.108.769-.473 1.601 1.677 2.582 2.149.978.187-.635.114-1.193.02-1.708l-.009-.046c-.144-.766-.322-1.438.252-2.111z"/><path fill="#292F33" d="M16.518 1.64C15.457.398 13.998-.117 11.499.849c-2.183.844-1.366 2.72-.972 2.282.628-.696 1.477-.483 1.477-.483l.66 1.944s.314.189.445-.473 1.017-.729 1.308-.198c.452.826-.139.984-.193 1.478-.17 1.562 1.56 1.502 1.56 1.502s.337.132.912-1.001c.575-1.132.876-3.027-.178-4.26z"/><path fill="#F7DECE" d="M16.261 28.432c-.378-.1-.67-.432-.807-.785-.059-.152-.245-.89-.245-.89l-2.284.284c.043.214.114.512.185.94.054.324-.089.753.012.954.101.201.817.74 1.301.839 1.237.255 2.491-.342 2.644-.517.223-.254-.427-.725-.806-.825zm7.51-3.222c-.334-.065-.607-.336-.746-.634-.06-.129-.22-.651-.22-.651l-2.009.274c.05.183.129.438.216.804.066.278-.033.659.066.827.099.169.752.594 1.178.652 1.088.148 2.141-.443 2.264-.604.177-.233-.415-.603-.749-.668z"/><path fill="#292F33" d="M25.676 11.812c-.242-.036-2.877-.731-3.554-1.052-.903-.841-2.483-1.754-2.919-2.042s-.837-.637-1.828-.718h-1.639l-.751.766L13.56 8l-1.748.167c-2.198.338-4 3.024-4.794 4.151-.36.283-.685.614-.896.735-.389.223-2.813 1.505-3.334 2.005l.836 1.068c.312-.281 1.748-.596 2.748-1.046.396-.178 1.452-.296 1.982-.81l.017.017c1.396-.979 2.326-2.021 2.722-2.599L12.208 17s-.005 1.674.058 1.94c.088.372.353 1.449.353 1.884 0 0-.606 1.335-.302 2.484.403 1.529.611 3.468.653 4.008 1.412 0 2.24-.56 2.24-.56s-.278-.638-.165-1.577c.069-.572.58-1.601.58-2.45 0-.849-.095-1.367.031-1.719s.601-1.452.677-2.052c.02-.162.008-.374-.022-.6.534.292 1.493.792 2.084.954.849.232 1.494.595 1.718.79s.376.335.376.335-.201.557-.141 1.516c.055.877.433 1.658.54 2.703.893-.133 1.966-.567 1.966-.567s-.096-1.268-.078-1.848c.023-.706.412-2.193.265-2.824-.229-.981-1.5-2.047-2.677-2.948-1.177-.901-2.375-1.438-2.375-1.438.365-2.469-.005-3.781-.005-3.781s1.81.804 3.578 1.344c.577.285 2.27.562 3.989.5.432-.016.452-1.233.125-1.282z"/><path fill="#67757F" d="M7.265 13.194c.795-1.126 2.994-4.365 5.435-4.576 0 0 1.118 1.459 2.565 1.235 1.447-.224 1.482-1.318 1.482-1.318l1.727.149c.494.04.841.148 1.12.281-.163-.101-.304-.189-.391-.246-.435-.287-.837-.638-1.828-.719h-1.639l-.751.766L13.56 8l-1.748.167c-2.198.338-4 3.024-4.794 4.151-.36.283-.685.614-.896.735-.389.223-2.813 1.505-3.334 2.005l.288.368c1.224-.797 3.829-1.949 4.189-2.232zm15.956-1.75c.453.215 1.771.594 2.674.834-.016-.24-.089-.446-.219-.465-.2-.03-2.502-.686-3.513-1.033.212.162.682.465 1.058.664zm-2.139 11.291c-.06-.958.024-1.639-.072-1.843-.096-.204-.52-.455-.52-.455s-.201.557-.141 1.516c.055.877.433 1.658.54 2.703.309-.046.638-.128.938-.216-.613-.262-.707-1.099-.745-1.705z"/><path fill="#67757F" d="M13.135 24.147c-.303-1.149.176-2.906.176-2.906 0-.435-.23-1.357-.318-1.729-.063-.266-.103-2.438-.072-2.717 3.859-.123 5.068-1.763 5.068-1.763s-2.21 1.309-5.224.906c-.347-.718-1.03-4.737-1.03-4.737-.213-.025-.499.231-.642.487L12.208 17s-.005 1.674.058 1.94c.088.372.353 1.449.353 1.884 0 0-.606 1.335-.302 2.484.403 1.529.611 3.468.653 4.008.386 0 .724-.044 1.018-.104-.688-.618-.566-1.979-.853-3.065z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f3c4-1f3fb.svg b/public/emoji/1f3c4-1f3fb.svg
index 75d69eec7b5f22630ca52dd130936b4e5cfd4a2c..e396618ff6a41fb8a8052e58e6039aaaf2eef734 100644
--- a/public/emoji/1f3c4-1f3fb.svg
+++ b/public/emoji/1f3c4-1f3fb.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#4289C1" d="M36 5v27s0 4-4 4H4c-4 0-4-4-4-4v-5s25-2 36-22z"/><path fill="#A7D28B" d="M30.59 20.432s2.33-2.136 1.924-3.049c-.408-.914-11.676.831-17.154 3.276-8.22 3.669-12.068 9.767-11.253 11.593.815 1.826 7.925 3.033 16.143-.635 5.48-2.445 14.301-9.669 13.895-10.582-.409-.913-3.555-.603-3.555-.603z"/><path fill="#F5F8FA" d="M34.145 21.035c-.408-.913-3.555-.604-3.555-.604s2.204-2.024 1.942-2.973L4.612 29.674c-.569 1.116-.747 2.037-.505 2.578.211.473.849.9 1.812 1.217l28.215-12.345c0-.027.02-.068.011-.089z"/><path fill="#F7DECE" d="M24.408 15c-3.401 0-6.462-3.95-6.8-4.4-.332-.441-.242-1.067.199-1.399.441-.331 1.066-.244 1.4.198.754 1.002 3.158 3.601 5.2 3.601.553 0 1 .448 1 1s-.446 1-.999 1zm-17 4c-.419 0-.809-.265-.949-.684-1.195-3.584.152-5.934 1.492-7.273 1.401-1.401 3.07-1.968 3.141-1.992.525-.176 1.091.109 1.265.632.174.523-.107 1.088-.629 1.264-.516.176-4.996 1.861-3.371 6.736.175.524-.108 1.091-.632 1.265-.105.035-.212.052-.317.052z"/><path fill="#67757F" d="M25.406 26c-.3 0-.605-.067-.893-.211l-2-1c-.439-.22-.78-.592-.963-1.046l-1.682-4.204-4.204-1.682c-1.025-.41-1.524-1.574-1.114-2.6.41-1.026 1.576-1.525 2.6-1.114l5.001 2c.508.203.91.606 1.114 1.114l1.717 4.294 1.32.66c.988.494 1.389 1.695.895 2.684-.35.701-1.056 1.105-1.791 1.105z"/><path fill="#67757F" d="M16.409 30c-.733.001-1.44-.404-1.791-1.105l-1-2c-.199-.397-.259-.851-.172-1.287l.848-4.241-2.602-4.337c-.568-.947-.261-2.175.686-2.744.946-.569 2.175-.261 2.744.686l3 4.999c.256.427.344.934.246 1.422l-.865 4.327.693 1.386c.494.988.093 2.189-.895 2.684-.286.143-.591.21-.892.21z"/><path fill="#F7DECE" d="M14.755.763c-1.678-.66-4.294.192-4.598 2.152-.302 1.947.252 5 1.962 4.816 1.793-.194 3.632-.584 4.359-2.43.727-1.846-.045-3.878-1.723-4.538z"/><path fill="#F7DECE" d="M16.002 5.776c2.442-2.869-3.441-2.589-3.441-2.589-1.113.04-.347 1.895-.871 2.908-.359.701 1.153 1.073 1.153 1.073s.694-.01.732.832v.008c.008.214-.014.469-.114.81-.498 1.686 1.766 2.72 2.264 1.03.197-.669.12-1.257.021-1.799L15.736 8c-.151-.807-.338-1.514.266-2.224z"/><path fill="#67757F" d="M18.408 8h-2.672l-.751.766L13.56 8h-2.152c-1.104 0-2 .896-2 2s.896 2 2 2v3.5c0 1.933 1.567 3.5 3.5 3.5s3.5-1.567 3.5-3.5V12c1.104 0 2-.896 2-2s-.895-2-2-2z"/><path fill="#292F33" d="M16.673 1.439C15.556.131 14.019-.412 11.386.606c-2.299.889-1.439 2.865-1.024 2.404.661-.734 1.555-.509 1.555-.509l.695 2.048s.331.199.469-.498c.138-.696 1.072-.768 1.378-.208.476.87-.147 1.037-.204 1.557-.179 1.645 1.643 1.582 1.643 1.582s.355.14.961-1.055c.606-1.192.923-3.189-.186-4.488z"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#4289C1" d="M36 5v27s0 4-4 4H4c-4 0-4-4-4-4v-5s25-2 36-22z"/><path fill="#1C6399" d="M31.844 23.243s2.565-1.635 2.258-2.288c-.309-.654-11.778.99-17.528 2.954-8.627 2.947-13.144 7.522-12.526 8.828.617 1.306 7.602 1.953 16.228-.993 5.752-1.964 15.368-7.524 15.06-8.177-.309-.653-3.492-.324-3.492-.324z"/><path fill="#A6D388" d="M31.474 22.747s2.65-1.619 2.349-2.291c-.303-.673-12.042.782-17.949 2.675C7.01 25.972 2.311 30.555 2.916 31.9c.605 1.345 7.723 2.141 16.585-.699 5.91-1.893 15.833-7.383 15.532-8.055-.303-.673-3.559-.399-3.559-.399z"/><path fill="#F5F8FA" d="M31.474 22.747s2.507-1.534 2.358-2.235L3.756 29.978c-.722.837-1.019 1.523-.84 1.922.156.348.755.657 1.7.878l30.395-9.566c.003-.02.029-.051.022-.066-.303-.673-3.559-.399-3.559-.399z"/><path fill="#F7DECE" d="M2.789 15.057c-.354.166-1.458.438-1.992.781-.432.278-.845.262-.727.612.102.302.508.216 1.227.132.719-.084 1.929-.289 2.325-.566l-.833-.959zm22.862-3.211c.379.095 1.515.151 2.104.386.477.19 1.122.088 1.073.455-.043.316-.701.317-1.422.371-.722.054-1.949.085-2.39-.113l.635-1.099zM14.698.997c-1.593-.627-4.077.182-4.365 2.043-.287 1.848.239 4.747 1.863 4.572 1.702-.184 3.448-.554 4.138-2.307.69-1.752-.043-3.681-1.636-4.308z"/><path fill="#F7DECE" d="M15.882 5.757c2.318-2.723-3.266-2.458-3.266-2.458-1.057.038-.329 1.799-.827 2.761-.341.665 1.095 1.018 1.095 1.018s.659-.01.694.79v.007c.008.204-.013.445-.108.769-.473 1.601 1.677 2.582 2.149.978.187-.635.114-1.193.02-1.708l-.009-.046c-.144-.766-.322-1.438.252-2.111z"/><path fill="#292F33" d="M16.518 1.64C15.457.398 13.998-.117 11.499.849c-2.183.844-1.366 2.72-.972 2.282.628-.696 1.477-.483 1.477-.483l.66 1.944s.314.189.445-.473 1.017-.729 1.308-.198c.452.826-.139.984-.193 1.478-.17 1.562 1.56 1.502 1.56 1.502s.337.132.912-1.001c.575-1.132.876-3.027-.178-4.26z"/><path fill="#F7DECE" d="M16.261 28.432c-.378-.1-.67-.432-.807-.785-.059-.152-.245-.89-.245-.89l-2.284.284c.043.214.114.512.185.94.054.324-.089.753.012.954.101.201.817.74 1.301.839 1.237.255 2.491-.342 2.644-.517.223-.254-.427-.725-.806-.825zm7.51-3.222c-.334-.065-.607-.336-.746-.634-.06-.129-.22-.651-.22-.651l-2.009.274c.05.183.129.438.216.804.066.278-.033.659.066.827.099.169.752.594 1.178.652 1.088.148 2.141-.443 2.264-.604.177-.233-.415-.603-.749-.668z"/><path fill="#292F33" d="M25.676 11.812c-.242-.036-2.877-.731-3.554-1.052-.903-.841-2.483-1.754-2.919-2.042s-.837-.637-1.828-.718h-1.639l-.751.766L13.56 8l-1.748.167c-2.198.338-4 3.024-4.794 4.151-.36.283-.685.614-.896.735-.389.223-2.813 1.505-3.334 2.005l.836 1.068c.312-.281 1.748-.596 2.748-1.046.396-.178 1.452-.296 1.982-.81l.017.017c1.396-.979 2.326-2.021 2.722-2.599L12.208 17s-.005 1.674.058 1.94c.088.372.353 1.449.353 1.884 0 0-.606 1.335-.302 2.484.403 1.529.611 3.468.653 4.008 1.412 0 2.24-.56 2.24-.56s-.278-.638-.165-1.577c.069-.572.58-1.601.58-2.45 0-.849-.095-1.367.031-1.719s.601-1.452.677-2.052c.02-.162.008-.374-.022-.6.534.292 1.493.792 2.084.954.849.232 1.494.595 1.718.79s.376.335.376.335-.201.557-.141 1.516c.055.877.433 1.658.54 2.703.893-.133 1.966-.567 1.966-.567s-.096-1.268-.078-1.848c.023-.706.412-2.193.265-2.824-.229-.981-1.5-2.047-2.677-2.948-1.177-.901-2.375-1.438-2.375-1.438.365-2.469-.005-3.781-.005-3.781s1.81.804 3.578 1.344c.577.285 2.27.562 3.989.5.432-.016.452-1.233.125-1.282z"/><path fill="#67757F" d="M7.265 13.194c.795-1.126 2.994-4.365 5.435-4.576 0 0 1.118 1.459 2.565 1.235 1.447-.224 1.482-1.318 1.482-1.318l1.727.149c.494.04.841.148 1.12.281-.163-.101-.304-.189-.391-.246-.435-.287-.837-.638-1.828-.719h-1.639l-.751.766L13.56 8l-1.748.167c-2.198.338-4 3.024-4.794 4.151-.36.283-.685.614-.896.735-.389.223-2.813 1.505-3.334 2.005l.288.368c1.224-.797 3.829-1.949 4.189-2.232zm15.956-1.75c.453.215 1.771.594 2.674.834-.016-.24-.089-.446-.219-.465-.2-.03-2.502-.686-3.513-1.033.212.162.682.465 1.058.664zm-2.139 11.291c-.06-.958.024-1.639-.072-1.843-.096-.204-.52-.455-.52-.455s-.201.557-.141 1.516c.055.877.433 1.658.54 2.703.309-.046.638-.128.938-.216-.613-.262-.707-1.099-.745-1.705z"/><path fill="#67757F" d="M13.135 24.147c-.303-1.149.176-2.906.176-2.906 0-.435-.23-1.357-.318-1.729-.063-.266-.103-2.438-.072-2.717 3.859-.123 5.068-1.763 5.068-1.763s-2.21 1.309-5.224.906c-.347-.718-1.03-4.737-1.03-4.737-.213-.025-.499.231-.642.487L12.208 17s-.005 1.674.058 1.94c.088.372.353 1.449.353 1.884 0 0-.606 1.335-.302 2.484.403 1.529.611 3.468.653 4.008.386 0 .724-.044 1.018-.104-.688-.618-.566-1.979-.853-3.065z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f3c4-1f3fc-200d-2640-fe0f.svg b/public/emoji/1f3c4-1f3fc-200d-2640-fe0f.svg
index dccab63e68958ccfdad8735501ae89ee59ef5a75..2fcf3c6036dd18c21ae4c98d0b582dc3f982ac8f 100644
--- a/public/emoji/1f3c4-1f3fc-200d-2640-fe0f.svg
+++ b/public/emoji/1f3c4-1f3fc-200d-2640-fe0f.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#4289C1" d="M36 5v27s0 4-4 4H4c-4 0-4-4-4-4v-5s25-2 36-22z"/><path fill="#E0245E" d="M30.59 20.432s2.33-2.136 1.924-3.049c-.408-.914-11.676.831-17.154 3.276-8.22 3.669-12.068 9.767-11.253 11.593.815 1.826 7.925 3.033 16.143-.635 5.48-2.445 14.301-9.669 13.895-10.582-.409-.913-3.555-.603-3.555-.603z"/><path fill="#F5F8FA" d="M34.145 21.035c-.408-.913-3.555-.604-3.555-.604s2.204-2.024 1.942-2.973L4.612 29.674c-.569 1.116-.747 2.037-.505 2.578.211.473.849.9 1.812 1.217l28.215-12.345c0-.027.02-.068.011-.089z"/><path fill="#F3D2A2" d="M24.408 15c-3.401 0-6.462-3.95-6.8-4.4-.332-.441-.242-1.067.199-1.399.441-.331 1.066-.244 1.4.198.754 1.002 3.158 3.601 5.2 3.601.553 0 1 .448 1 1s-.446 1-.999 1zm-17 4c-.419 0-.809-.265-.949-.684-1.195-3.584.152-5.934 1.492-7.273 1.401-1.401 3.07-1.968 3.141-1.992.525-.176 1.091.109 1.265.632.174.523-.107 1.088-.629 1.264-.516.176-4.996 1.861-3.371 6.736.175.524-.108 1.091-.632 1.265-.105.035-.212.052-.317.052z"/><path fill="#67757F" d="M25.406 26c-.3 0-.605-.067-.893-.211l-2-1c-.439-.22-.78-.592-.963-1.046l-1.682-4.204-4.204-1.682c-1.025-.41-1.524-1.574-1.114-2.6.41-1.026 1.576-1.525 2.6-1.114l5.001 2c.508.203.91.606 1.114 1.114l1.717 4.294 1.32.66c.988.494 1.389 1.695.895 2.684-.35.701-1.056 1.105-1.791 1.105z"/><path fill="#67757F" d="M16.409 30c-.733.001-1.44-.404-1.791-1.105l-1-2c-.199-.397-.259-.851-.172-1.287l.848-4.241-2.602-4.337c-.568-.947-.261-2.175.686-2.744.946-.569 2.175-.261 2.744.686l3 4.999c.256.427.344.934.246 1.422l-.865 4.327.693 1.386c.494.988.093 2.189-.895 2.684-.286.143-.591.21-.892.21z"/><path fill="#F3D2A2" d="M14.656.74c-1.684-.634-4.281.255-4.555 2.215-.272 1.947.326 4.985 2.029 4.775 1.786-.22 3.615-.636 4.312-2.489.697-1.851-.102-3.867-1.786-4.501z"/><path fill="#F3D2A2" d="M16.002 5.776c2.442-2.869-3.441-2.589-3.441-2.589-1.113.04-.347 1.895-.871 2.908-.359.701 1.153 1.073 1.153 1.073s.694-.01.732.832v.008c.008.214-.014.469-.114.81-.498 1.686 1.766 2.72 2.264 1.03.197-.669.12-1.257.021-1.799L15.736 8c-.151-.807-.338-1.514.266-2.224z"/><path fill="#67757F" d="M18.408 8h-2.672l-.751.766L13.56 8h-2.152c-1.104 0-2 .896-2 2s.896 2 2 2v3.5c0 1.933 1.567 3.5 3.5 3.5s3.5-1.567 3.5-3.5V12c1.104 0 2-.896 2-2s-.895-2-2-2z"/><path fill="#FFE51E" d="M16.578 1.387C16.087.83 15.513.43 14.816.225c-.914-.268-2.022-.133-3.525.409-1.381.499-1.63 2.049-1.29 2.396.039.019.065.057.108.07.027.008.052.005.079.011.588.13 1.129-.284 1.804-.194.315.042.657.186 1.052.571.061.059.101.149.134.248.162.489.038 1.336.038 1.336s.272-.934.39-1.256c.11-.3.513-.569.799.001.248.495-.151 1.222-.422 1.235-.209.01-.029.565.352 1.057.5.645 1.086.786 1.374.815.112.011.534.139 1.122-1.061.588-1.2.874-3.197-.253-4.476z"/><path fill="#FFE51E" d="M21.434 4.53c-1.209-.351-1.959-1.902-3.429-1.454-1.783.543-1.261 1.789-1.261 1.789s.443 1.264 1.783 1.648c.858.246 2.544.243 3.736-.577.917-.631 1.578-1.909 1.578-1.909-.557.58-1.494.767-2.407.503z"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#4289C1" d="M36 5v27s0 4-4 4H4c-4 0-4-4-4-4v-5s25-2 36-22z"/><path fill="#1C6399" d="M31.844 23.243s2.565-1.635 2.258-2.288c-.309-.654-11.778.99-17.528 2.954-8.627 2.947-13.144 7.522-12.526 8.828.617 1.306 7.602 1.953 16.228-.993 5.752-1.964 15.368-7.524 15.06-8.177-.309-.653-3.492-.324-3.492-.324z"/><path fill="#A6D388" d="M31.474 22.747s2.65-1.619 2.349-2.291c-.303-.673-12.042.782-17.949 2.675C7.01 25.972 2.311 30.555 2.916 31.9c.605 1.345 7.723 2.141 16.585-.699 5.91-1.893 15.833-7.383 15.532-8.055-.303-.673-3.559-.399-3.559-.399z"/><path fill="#F5F8FA" d="M31.474 22.747s2.507-1.534 2.358-2.235L3.756 29.978c-.722.837-1.019 1.523-.84 1.922.156.348.755.657 1.7.878l30.395-9.566c.003-.02.029-.051.022-.066-.303-.673-3.559-.399-3.559-.399z"/><path fill="#F3D2A2" d="M27.755 12.233c-.589-.235-1.348-.276-2.104-.386-1.198-.175-2.852-.765-3.529-1.086-.825-.495-2.577-1.661-3.012-1.948S18.093 8.128 17.375 8h-.156c.385.542.609 1.159.748 2.841 0 0 3.319 1.661 3.595 1.753 1.125.375 3.182.366 4.344.512.602.076 1.021-.014 1.499-.047.722-.049 1.38-.055 1.422-.371.05-.367-.595-.265-1.072-.455zM14.698.997c-1.593-.627-4.077.182-4.365 2.043-.287 1.848.239 4.747 1.863 4.572 1.702-.184 3.448-.554 4.138-2.307.69-1.752-.043-3.681-1.636-4.308z"/><path fill="#F3D2A2" d="M15.882 5.757c2.318-2.723-3.266-2.458-3.266-2.458-1.057.038-.329 1.799-.827 2.761-.341.665 1.095 1.018 1.095 1.018s.659-.01.694.79v.007c.008.204-.013.445-.108.769-.473 1.601 1.677 2.582 2.149.978.187-.635.114-1.193.02-1.708l-.009-.046c-.144-.766-.322-1.438.252-2.111zm-4.883 2.645c-1.666.993-3.368 3.049-3.98 3.914-.36.283-.686.614-.897.736-.389.223-2.154 1.432-3.334 2.005-.354.166-1.458.438-1.992.781-.432.278-.845.262-.727.612.102.302.508.216 1.227.132.719-.084 1.929-.289 2.325-.566.8-.531 3.347-1.156 4.597-2.031.221-.155 2.385-2.163 2.781-2.741.543-1.515.282-2.556 0-2.842z"/><path fill="#FFE51E" d="M16.518 1.64C15.457.398 13.998-.117 11.499.849c-2.183.844-1.481 2.579-.972 2.282 1.869-1.09 2.899.514 3.697 2.269.523 1.151 1.56 1.502 1.56 1.502s.337.132.912-1.001.876-3.028-.178-4.261z"/><path fill="#F3D2A2" d="M16.261 28.432c-.378-.1-.67-.432-.807-.785-.059-.152-.365-1.001-.365-1.001H13.27c.043.214-.037.696-.134 1.197-.062.322-.114.892-.013 1.093.101.201.817.74 1.301.839 1.237.255 2.491-.342 2.644-.517.222-.255-.428-.726-.807-.826zm7.51-3.222c-.334-.065-.607-.336-.746-.634-.06-.129-.22-.651-.22-.651l-1.609.22c.05.183-.027.417-.008.793.017.335-.058.748.042.917.099.169.601.571 1.027.629 1.088.148 2.141-.443 2.264-.604.176-.235-.416-.605-.75-.67z"/><path fill="#FFE51E" d="M16.188 2.219c.875-1.312 2.774-1.438 3.637-.469S21.01 4 22.163 4c.368 0 .552.344-.212.688S18.062 5.719 16.875 3.5c-.531-.656-.687-1.281-.687-1.281z"/><path fill="#292F33" d="M22.777 22.241c.023-.706.412-2.193.265-2.824-.229-.981-1.5-2.047-2.677-2.948-1.177-.901-2.375-1.438-2.375-1.438-.302-1.896.242-2.896.235-3.716-.006-.684-.433-2.648-1.006-3.315h-1.565s.246 1.013-.647 1.112C14.112 9.211 13.56 8 13.56 8l-1.748.167c-.278.043-.549.125-.813.236.376.639.23 2.285 0 2.841.823 1.188 1.536 3.003 1.146 5.256-.346 2.002.473 3.889.473 4.324 0 0-.503 1.749-.2 2.898.403 1.529.768 2.884.81 3.423 1.412 0 1.981-.39 1.981-.39s-.278-.638-.165-1.577c.069-.572.351-1.455.351-2.304 0-.849-.022-1.461.104-1.812s.52-1.576.812-2.704c.534.292 1.493.792 2.084.954.849.232 1.494.595 1.718.79s.376.335.376.335-.07.625-.01 1.583c.055.877.53 1.551.636 2.596.893-.133 1.739-.528 1.739-.528s-.096-1.267-.077-1.847z"/><path fill="#67757F" d="M12.375 8.594l.904-.086s1.202 1.373 2.096 1.274c.894-.099.841-1.354.841-1.354h1.269c-.085-.168-.173-.319-.266-.428h-1.565s.246 1.013-.647 1.112C14.112 9.211 13.56 8 13.56 8l-1.748.167c-.278.043-.549.125-.813.236.077.131.128.311.165.509.346-.118.973-.282 1.211-.318zm8.667 13.854c-.06-.958.01-1.583.01-1.583s-.151-.141-.376-.335c-.068-.059-.186-.136-.326-.218l.139.126s-.07.625-.01 1.583c.055.877.53 1.551.636 2.596.158-.024.313-.057.464-.093-.175-.763-.492-1.357-.537-2.076zm-8.061 1.701c-.303-1.149.2-2.898.2-2.898 0-.435-.798-2.791-.452-4.793 4-.021 5.26-1.427 5.26-1.427s-2.719 1.26-5.201.533c-.074-1.788-.788-3.661-1.707-4.579-.025.1-.053.188-.082.258.823 1.188 1.536 3.003 1.146 5.256-.346 2.002.473 3.889.473 4.324 0 0-.503 1.749-.2 2.898.403 1.529.768 2.884.81 3.423.178 0 .342-.006.494-.017-.129-.672-.421-1.766-.741-2.978z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f3c4-1f3fc-200d-2642-fe0f.svg b/public/emoji/1f3c4-1f3fc-200d-2642-fe0f.svg
index 2545d2cc6c4b618c7a38f65c0dde0111df6256ff..228af26f8e07891abd82f29a83c5cbc9d732adbd 100644
--- a/public/emoji/1f3c4-1f3fc-200d-2642-fe0f.svg
+++ b/public/emoji/1f3c4-1f3fc-200d-2642-fe0f.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#4289C1" d="M36 5v27s0 4-4 4H4c-4 0-4-4-4-4v-5s25-2 36-22z"/><path fill="#A7D28B" d="M30.59 20.432s2.33-2.136 1.924-3.049c-.408-.914-11.676.831-17.154 3.276-8.22 3.669-12.068 9.767-11.253 11.593.815 1.826 7.925 3.033 16.143-.635 5.48-2.445 14.301-9.669 13.895-10.582-.409-.913-3.555-.603-3.555-.603z"/><path fill="#F5F8FA" d="M34.145 21.035c-.408-.913-3.555-.604-3.555-.604s2.204-2.024 1.942-2.973L4.612 29.674c-.569 1.116-.747 2.037-.505 2.578.211.473.849.9 1.812 1.217l28.215-12.345c0-.027.02-.068.011-.089z"/><path fill="#F3D2A2" d="M24.408 15c-3.401 0-6.462-3.95-6.8-4.4-.332-.441-.242-1.067.199-1.399.441-.331 1.066-.244 1.4.198.754 1.002 3.158 3.601 5.2 3.601.553 0 1 .448 1 1s-.446 1-.999 1zm-17 4c-.419 0-.809-.265-.949-.684-1.195-3.584.152-5.934 1.492-7.273 1.401-1.401 3.07-1.968 3.141-1.992.525-.176 1.091.109 1.265.632.174.523-.107 1.088-.629 1.264-.516.176-4.996 1.861-3.371 6.736.175.524-.108 1.091-.632 1.265-.105.035-.212.052-.317.052z"/><path fill="#67757F" d="M25.406 26c-.3 0-.605-.067-.893-.211l-2-1c-.439-.22-.78-.592-.963-1.046l-1.682-4.204-4.204-1.682c-1.025-.41-1.524-1.574-1.114-2.6.41-1.026 1.576-1.525 2.6-1.114l5.001 2c.508.203.91.606 1.114 1.114l1.717 4.294 1.32.66c.988.494 1.389 1.695.895 2.684-.35.701-1.056 1.105-1.791 1.105z"/><path fill="#67757F" d="M16.409 30c-.733.001-1.44-.404-1.791-1.105l-1-2c-.199-.397-.259-.851-.172-1.287l.848-4.241-2.602-4.337c-.568-.947-.261-2.175.686-2.744.946-.569 2.175-.261 2.744.686l3 4.999c.256.427.344.934.246 1.422l-.865 4.327.693 1.386c.494.988.093 2.189-.895 2.684-.286.143-.591.21-.892.21z"/><path fill="#F3D2A2" d="M14.755.763c-1.678-.66-4.294.192-4.598 2.152-.302 1.947.252 5 1.962 4.816 1.793-.194 3.632-.584 4.359-2.43.727-1.846-.045-3.878-1.723-4.538z"/><path fill="#F3D2A2" d="M16.002 5.776c2.442-2.869-3.441-2.589-3.441-2.589-1.113.04-.347 1.895-.871 2.908-.359.701 1.153 1.073 1.153 1.073s.694-.01.732.832v.008c.008.214-.014.469-.114.81-.498 1.686 1.766 2.72 2.264 1.03.197-.669.12-1.257.021-1.799L15.736 8c-.151-.807-.338-1.514.266-2.224z"/><path fill="#67757F" d="M18.408 8h-2.672l-.751.766L13.56 8h-2.152c-1.104 0-2 .896-2 2s.896 2 2 2v3.5c0 1.933 1.567 3.5 3.5 3.5s3.5-1.567 3.5-3.5V12c1.104 0 2-.896 2-2s-.895-2-2-2z"/><path fill="#FFE51E" d="M16.673 1.439C15.556.131 14.019-.412 11.386.606c-2.299.889-1.439 2.865-1.024 2.404.661-.734 1.555-.509 1.555-.509l.695 2.048s.331.199.469-.498c.138-.696 1.072-.768 1.378-.208.476.87-.147 1.037-.204 1.557-.179 1.645 1.643 1.582 1.643 1.582s.355.14.961-1.055c.606-1.192.923-3.189-.186-4.488z"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#4289C1" d="M36 5v27s0 4-4 4H4c-4 0-4-4-4-4v-5s25-2 36-22z"/><path fill="#1C6399" d="M31.844 23.243s2.565-1.635 2.258-2.288c-.309-.654-11.778.99-17.528 2.954-8.627 2.947-13.144 7.522-12.526 8.828.617 1.306 7.602 1.953 16.228-.993 5.752-1.964 15.368-7.524 15.06-8.177-.309-.653-3.492-.324-3.492-.324z"/><path fill="#A6D388" d="M31.474 22.747s2.65-1.619 2.349-2.291c-.303-.673-12.042.782-17.949 2.675C7.01 25.972 2.311 30.555 2.916 31.9c.605 1.345 7.723 2.141 16.585-.699 5.91-1.893 15.833-7.383 15.532-8.055-.303-.673-3.559-.399-3.559-.399z"/><path fill="#F5F8FA" d="M31.474 22.747s2.507-1.534 2.358-2.235L3.756 29.978c-.722.837-1.019 1.523-.84 1.922.156.348.755.657 1.7.878l30.395-9.566c.003-.02.029-.051.022-.066-.303-.673-3.559-.399-3.559-.399z"/><path fill="#F3D2A2" d="M2.789 15.057c-.354.166-1.458.438-1.992.781-.432.278-.845.262-.727.612.102.302.508.216 1.227.132.719-.084 1.929-.289 2.325-.566l-.833-.959zm22.862-3.211c.379.095 1.515.151 2.104.386.477.19 1.122.088 1.073.455-.043.316-.701.317-1.422.371-.722.054-1.949.085-2.39-.113l.635-1.099zM14.698.997c-1.593-.627-4.077.182-4.365 2.043-.287 1.848.239 4.747 1.863 4.572 1.702-.184 3.448-.554 4.138-2.307.69-1.752-.043-3.681-1.636-4.308z"/><path fill="#F3D2A2" d="M15.882 5.757c2.318-2.723-3.266-2.458-3.266-2.458-1.057.038-.329 1.799-.827 2.761-.341.665 1.095 1.018 1.095 1.018s.659-.01.694.79v.007c.008.204-.013.445-.108.769-.473 1.601 1.677 2.582 2.149.978.187-.635.114-1.193.02-1.708l-.009-.046c-.144-.766-.322-1.438.252-2.111z"/><path fill="#FFE51E" d="M16.518 1.64C15.457.398 13.998-.117 11.499.849c-2.183.844-1.366 2.72-.972 2.282.628-.696 1.477-.483 1.477-.483l.66 1.944s.314.189.445-.473 1.017-.729 1.308-.198c.452.826-.139.984-.193 1.478-.17 1.562 1.56 1.502 1.56 1.502s.337.132.912-1.001c.575-1.132.876-3.027-.178-4.26z"/><path fill="#F3D2A2" d="M16.261 28.432c-.378-.1-.67-.432-.807-.785-.059-.152-.245-.89-.245-.89l-2.284.284c.043.214.114.512.185.94.054.324-.089.753.012.954.101.201.817.74 1.301.839 1.237.255 2.491-.342 2.644-.517.223-.254-.427-.725-.806-.825zm7.51-3.222c-.334-.065-.607-.336-.746-.634-.06-.129-.22-.651-.22-.651l-2.009.274c.05.183.129.438.216.804.066.278-.033.659.066.827.099.169.752.594 1.178.652 1.088.148 2.141-.443 2.264-.604.177-.233-.415-.603-.749-.668z"/><path fill="#292F33" d="M25.676 11.812c-.242-.036-2.877-.731-3.554-1.052-.903-.841-2.483-1.754-2.919-2.042s-.837-.637-1.828-.718h-1.639l-.751.766L13.56 8l-1.748.167c-2.198.338-4 3.024-4.794 4.151-.36.283-.685.614-.896.735-.389.223-2.813 1.505-3.334 2.005l.836 1.068c.312-.281 1.748-.596 2.748-1.046.396-.178 1.452-.296 1.982-.81l.017.017c1.396-.979 2.326-2.021 2.722-2.599L12.208 17s-.005 1.674.058 1.94c.088.372.353 1.449.353 1.884 0 0-.606 1.335-.302 2.484.403 1.529.611 3.468.653 4.008 1.412 0 2.24-.56 2.24-.56s-.278-.638-.165-1.577c.069-.572.58-1.601.58-2.45 0-.849-.095-1.367.031-1.719s.601-1.452.677-2.052c.02-.162.008-.374-.022-.6.534.292 1.493.792 2.084.954.849.232 1.494.595 1.718.79s.376.335.376.335-.201.557-.141 1.516c.055.877.433 1.658.54 2.703.893-.133 1.966-.567 1.966-.567s-.096-1.268-.078-1.848c.023-.706.412-2.193.265-2.824-.229-.981-1.5-2.047-2.677-2.948-1.177-.901-2.375-1.438-2.375-1.438.365-2.469-.005-3.781-.005-3.781s1.81.804 3.578 1.344c.577.285 2.27.562 3.989.5.432-.016.452-1.233.125-1.282z"/><path fill="#67757F" d="M7.265 13.194c.795-1.126 2.994-4.365 5.435-4.576 0 0 1.118 1.459 2.565 1.235 1.447-.224 1.482-1.318 1.482-1.318l1.727.149c.494.04.841.148 1.12.281-.163-.101-.304-.189-.391-.246-.435-.287-.837-.638-1.828-.719h-1.639l-.751.766L13.56 8l-1.748.167c-2.198.338-4 3.024-4.794 4.151-.36.283-.685.614-.896.735-.389.223-2.813 1.505-3.334 2.005l.288.368c1.224-.797 3.829-1.949 4.189-2.232zm15.956-1.75c.453.215 1.771.594 2.674.834-.016-.24-.089-.446-.219-.465-.2-.03-2.502-.686-3.513-1.033.212.162.682.465 1.058.664zm-2.139 11.291c-.06-.958.024-1.639-.072-1.843-.096-.204-.52-.455-.52-.455s-.201.557-.141 1.516c.055.877.433 1.658.54 2.703.309-.046.638-.128.938-.216-.613-.262-.707-1.099-.745-1.705z"/><path fill="#67757F" d="M13.135 24.147c-.303-1.149.176-2.906.176-2.906 0-.435-.23-1.357-.318-1.729-.063-.266-.103-2.438-.072-2.717 3.859-.123 5.068-1.763 5.068-1.763s-2.21 1.309-5.224.906c-.347-.718-1.03-4.737-1.03-4.737-.213-.025-.499.231-.642.487L12.208 17s-.005 1.674.058 1.94c.088.372.353 1.449.353 1.884 0 0-.606 1.335-.302 2.484.403 1.529.611 3.468.653 4.008.386 0 .724-.044 1.018-.104-.688-.618-.566-1.979-.853-3.065z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f3c4-1f3fc.svg b/public/emoji/1f3c4-1f3fc.svg
index 2545d2cc6c4b618c7a38f65c0dde0111df6256ff..228af26f8e07891abd82f29a83c5cbc9d732adbd 100644
--- a/public/emoji/1f3c4-1f3fc.svg
+++ b/public/emoji/1f3c4-1f3fc.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#4289C1" d="M36 5v27s0 4-4 4H4c-4 0-4-4-4-4v-5s25-2 36-22z"/><path fill="#A7D28B" d="M30.59 20.432s2.33-2.136 1.924-3.049c-.408-.914-11.676.831-17.154 3.276-8.22 3.669-12.068 9.767-11.253 11.593.815 1.826 7.925 3.033 16.143-.635 5.48-2.445 14.301-9.669 13.895-10.582-.409-.913-3.555-.603-3.555-.603z"/><path fill="#F5F8FA" d="M34.145 21.035c-.408-.913-3.555-.604-3.555-.604s2.204-2.024 1.942-2.973L4.612 29.674c-.569 1.116-.747 2.037-.505 2.578.211.473.849.9 1.812 1.217l28.215-12.345c0-.027.02-.068.011-.089z"/><path fill="#F3D2A2" d="M24.408 15c-3.401 0-6.462-3.95-6.8-4.4-.332-.441-.242-1.067.199-1.399.441-.331 1.066-.244 1.4.198.754 1.002 3.158 3.601 5.2 3.601.553 0 1 .448 1 1s-.446 1-.999 1zm-17 4c-.419 0-.809-.265-.949-.684-1.195-3.584.152-5.934 1.492-7.273 1.401-1.401 3.07-1.968 3.141-1.992.525-.176 1.091.109 1.265.632.174.523-.107 1.088-.629 1.264-.516.176-4.996 1.861-3.371 6.736.175.524-.108 1.091-.632 1.265-.105.035-.212.052-.317.052z"/><path fill="#67757F" d="M25.406 26c-.3 0-.605-.067-.893-.211l-2-1c-.439-.22-.78-.592-.963-1.046l-1.682-4.204-4.204-1.682c-1.025-.41-1.524-1.574-1.114-2.6.41-1.026 1.576-1.525 2.6-1.114l5.001 2c.508.203.91.606 1.114 1.114l1.717 4.294 1.32.66c.988.494 1.389 1.695.895 2.684-.35.701-1.056 1.105-1.791 1.105z"/><path fill="#67757F" d="M16.409 30c-.733.001-1.44-.404-1.791-1.105l-1-2c-.199-.397-.259-.851-.172-1.287l.848-4.241-2.602-4.337c-.568-.947-.261-2.175.686-2.744.946-.569 2.175-.261 2.744.686l3 4.999c.256.427.344.934.246 1.422l-.865 4.327.693 1.386c.494.988.093 2.189-.895 2.684-.286.143-.591.21-.892.21z"/><path fill="#F3D2A2" d="M14.755.763c-1.678-.66-4.294.192-4.598 2.152-.302 1.947.252 5 1.962 4.816 1.793-.194 3.632-.584 4.359-2.43.727-1.846-.045-3.878-1.723-4.538z"/><path fill="#F3D2A2" d="M16.002 5.776c2.442-2.869-3.441-2.589-3.441-2.589-1.113.04-.347 1.895-.871 2.908-.359.701 1.153 1.073 1.153 1.073s.694-.01.732.832v.008c.008.214-.014.469-.114.81-.498 1.686 1.766 2.72 2.264 1.03.197-.669.12-1.257.021-1.799L15.736 8c-.151-.807-.338-1.514.266-2.224z"/><path fill="#67757F" d="M18.408 8h-2.672l-.751.766L13.56 8h-2.152c-1.104 0-2 .896-2 2s.896 2 2 2v3.5c0 1.933 1.567 3.5 3.5 3.5s3.5-1.567 3.5-3.5V12c1.104 0 2-.896 2-2s-.895-2-2-2z"/><path fill="#FFE51E" d="M16.673 1.439C15.556.131 14.019-.412 11.386.606c-2.299.889-1.439 2.865-1.024 2.404.661-.734 1.555-.509 1.555-.509l.695 2.048s.331.199.469-.498c.138-.696 1.072-.768 1.378-.208.476.87-.147 1.037-.204 1.557-.179 1.645 1.643 1.582 1.643 1.582s.355.14.961-1.055c.606-1.192.923-3.189-.186-4.488z"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#4289C1" d="M36 5v27s0 4-4 4H4c-4 0-4-4-4-4v-5s25-2 36-22z"/><path fill="#1C6399" d="M31.844 23.243s2.565-1.635 2.258-2.288c-.309-.654-11.778.99-17.528 2.954-8.627 2.947-13.144 7.522-12.526 8.828.617 1.306 7.602 1.953 16.228-.993 5.752-1.964 15.368-7.524 15.06-8.177-.309-.653-3.492-.324-3.492-.324z"/><path fill="#A6D388" d="M31.474 22.747s2.65-1.619 2.349-2.291c-.303-.673-12.042.782-17.949 2.675C7.01 25.972 2.311 30.555 2.916 31.9c.605 1.345 7.723 2.141 16.585-.699 5.91-1.893 15.833-7.383 15.532-8.055-.303-.673-3.559-.399-3.559-.399z"/><path fill="#F5F8FA" d="M31.474 22.747s2.507-1.534 2.358-2.235L3.756 29.978c-.722.837-1.019 1.523-.84 1.922.156.348.755.657 1.7.878l30.395-9.566c.003-.02.029-.051.022-.066-.303-.673-3.559-.399-3.559-.399z"/><path fill="#F3D2A2" d="M2.789 15.057c-.354.166-1.458.438-1.992.781-.432.278-.845.262-.727.612.102.302.508.216 1.227.132.719-.084 1.929-.289 2.325-.566l-.833-.959zm22.862-3.211c.379.095 1.515.151 2.104.386.477.19 1.122.088 1.073.455-.043.316-.701.317-1.422.371-.722.054-1.949.085-2.39-.113l.635-1.099zM14.698.997c-1.593-.627-4.077.182-4.365 2.043-.287 1.848.239 4.747 1.863 4.572 1.702-.184 3.448-.554 4.138-2.307.69-1.752-.043-3.681-1.636-4.308z"/><path fill="#F3D2A2" d="M15.882 5.757c2.318-2.723-3.266-2.458-3.266-2.458-1.057.038-.329 1.799-.827 2.761-.341.665 1.095 1.018 1.095 1.018s.659-.01.694.79v.007c.008.204-.013.445-.108.769-.473 1.601 1.677 2.582 2.149.978.187-.635.114-1.193.02-1.708l-.009-.046c-.144-.766-.322-1.438.252-2.111z"/><path fill="#FFE51E" d="M16.518 1.64C15.457.398 13.998-.117 11.499.849c-2.183.844-1.366 2.72-.972 2.282.628-.696 1.477-.483 1.477-.483l.66 1.944s.314.189.445-.473 1.017-.729 1.308-.198c.452.826-.139.984-.193 1.478-.17 1.562 1.56 1.502 1.56 1.502s.337.132.912-1.001c.575-1.132.876-3.027-.178-4.26z"/><path fill="#F3D2A2" d="M16.261 28.432c-.378-.1-.67-.432-.807-.785-.059-.152-.245-.89-.245-.89l-2.284.284c.043.214.114.512.185.94.054.324-.089.753.012.954.101.201.817.74 1.301.839 1.237.255 2.491-.342 2.644-.517.223-.254-.427-.725-.806-.825zm7.51-3.222c-.334-.065-.607-.336-.746-.634-.06-.129-.22-.651-.22-.651l-2.009.274c.05.183.129.438.216.804.066.278-.033.659.066.827.099.169.752.594 1.178.652 1.088.148 2.141-.443 2.264-.604.177-.233-.415-.603-.749-.668z"/><path fill="#292F33" d="M25.676 11.812c-.242-.036-2.877-.731-3.554-1.052-.903-.841-2.483-1.754-2.919-2.042s-.837-.637-1.828-.718h-1.639l-.751.766L13.56 8l-1.748.167c-2.198.338-4 3.024-4.794 4.151-.36.283-.685.614-.896.735-.389.223-2.813 1.505-3.334 2.005l.836 1.068c.312-.281 1.748-.596 2.748-1.046.396-.178 1.452-.296 1.982-.81l.017.017c1.396-.979 2.326-2.021 2.722-2.599L12.208 17s-.005 1.674.058 1.94c.088.372.353 1.449.353 1.884 0 0-.606 1.335-.302 2.484.403 1.529.611 3.468.653 4.008 1.412 0 2.24-.56 2.24-.56s-.278-.638-.165-1.577c.069-.572.58-1.601.58-2.45 0-.849-.095-1.367.031-1.719s.601-1.452.677-2.052c.02-.162.008-.374-.022-.6.534.292 1.493.792 2.084.954.849.232 1.494.595 1.718.79s.376.335.376.335-.201.557-.141 1.516c.055.877.433 1.658.54 2.703.893-.133 1.966-.567 1.966-.567s-.096-1.268-.078-1.848c.023-.706.412-2.193.265-2.824-.229-.981-1.5-2.047-2.677-2.948-1.177-.901-2.375-1.438-2.375-1.438.365-2.469-.005-3.781-.005-3.781s1.81.804 3.578 1.344c.577.285 2.27.562 3.989.5.432-.016.452-1.233.125-1.282z"/><path fill="#67757F" d="M7.265 13.194c.795-1.126 2.994-4.365 5.435-4.576 0 0 1.118 1.459 2.565 1.235 1.447-.224 1.482-1.318 1.482-1.318l1.727.149c.494.04.841.148 1.12.281-.163-.101-.304-.189-.391-.246-.435-.287-.837-.638-1.828-.719h-1.639l-.751.766L13.56 8l-1.748.167c-2.198.338-4 3.024-4.794 4.151-.36.283-.685.614-.896.735-.389.223-2.813 1.505-3.334 2.005l.288.368c1.224-.797 3.829-1.949 4.189-2.232zm15.956-1.75c.453.215 1.771.594 2.674.834-.016-.24-.089-.446-.219-.465-.2-.03-2.502-.686-3.513-1.033.212.162.682.465 1.058.664zm-2.139 11.291c-.06-.958.024-1.639-.072-1.843-.096-.204-.52-.455-.52-.455s-.201.557-.141 1.516c.055.877.433 1.658.54 2.703.309-.046.638-.128.938-.216-.613-.262-.707-1.099-.745-1.705z"/><path fill="#67757F" d="M13.135 24.147c-.303-1.149.176-2.906.176-2.906 0-.435-.23-1.357-.318-1.729-.063-.266-.103-2.438-.072-2.717 3.859-.123 5.068-1.763 5.068-1.763s-2.21 1.309-5.224.906c-.347-.718-1.03-4.737-1.03-4.737-.213-.025-.499.231-.642.487L12.208 17s-.005 1.674.058 1.94c.088.372.353 1.449.353 1.884 0 0-.606 1.335-.302 2.484.403 1.529.611 3.468.653 4.008.386 0 .724-.044 1.018-.104-.688-.618-.566-1.979-.853-3.065z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f3c4-1f3fd-200d-2640-fe0f.svg b/public/emoji/1f3c4-1f3fd-200d-2640-fe0f.svg
index c975aab73c616de502f59db2f0dd108f865b635f..0d57555495b65a078d8dd8d0240430f689d19e7a 100644
--- a/public/emoji/1f3c4-1f3fd-200d-2640-fe0f.svg
+++ b/public/emoji/1f3c4-1f3fd-200d-2640-fe0f.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#4289C1" d="M36 5v27s0 4-4 4H4c-4 0-4-4-4-4v-5s25-2 36-22z"/><path fill="#E0245E" d="M30.59 20.432s2.33-2.136 1.924-3.049c-.408-.914-11.676.831-17.154 3.276-8.22 3.669-12.068 9.767-11.253 11.593.815 1.826 7.925 3.033 16.143-.635 5.48-2.445 14.301-9.669 13.895-10.582-.409-.913-3.555-.603-3.555-.603z"/><path fill="#F5F8FA" d="M34.145 21.035c-.408-.913-3.555-.604-3.555-.604s2.204-2.024 1.942-2.973L4.612 29.674c-.569 1.116-.747 2.037-.505 2.578.211.473.849.9 1.812 1.217l28.215-12.345c0-.027.02-.068.011-.089z"/><path fill="#D5AB88" d="M24.408 15c-3.401 0-6.462-3.95-6.8-4.4-.332-.441-.242-1.067.199-1.399.441-.331 1.066-.244 1.4.198.754 1.002 3.158 3.601 5.2 3.601.553 0 1 .448 1 1s-.446 1-.999 1zm-17 4c-.419 0-.809-.265-.949-.684-1.195-3.584.152-5.934 1.492-7.273 1.401-1.401 3.07-1.968 3.141-1.992.525-.176 1.091.109 1.265.632.174.523-.107 1.088-.629 1.264-.516.176-4.996 1.861-3.371 6.736.175.524-.108 1.091-.632 1.265-.105.035-.212.052-.317.052z"/><path fill="#67757F" d="M25.406 26c-.3 0-.605-.067-.893-.211l-2-1c-.439-.22-.78-.592-.963-1.046l-1.682-4.204-4.204-1.682c-1.025-.41-1.524-1.574-1.114-2.6.41-1.026 1.576-1.525 2.6-1.114l5.001 2c.508.203.91.606 1.114 1.114l1.717 4.294 1.32.66c.988.494 1.389 1.695.895 2.684-.35.701-1.056 1.105-1.791 1.105z"/><path fill="#67757F" d="M16.409 30c-.733.001-1.44-.404-1.791-1.105l-1-2c-.199-.397-.259-.851-.172-1.287l.848-4.241-2.602-4.337c-.568-.947-.261-2.175.686-2.744.946-.569 2.175-.261 2.744.686l3 4.999c.256.427.344.934.246 1.422l-.865 4.327.693 1.386c.494.988.093 2.189-.895 2.684-.286.143-.591.21-.892.21z"/><path fill="#D5AB88" d="M14.656.74c-1.684-.634-4.281.255-4.555 2.215-.272 1.947.326 4.985 2.029 4.775 1.786-.22 3.615-.636 4.312-2.489.697-1.851-.102-3.867-1.786-4.501z"/><path fill="#D5AB88" d="M16.002 5.776c2.442-2.869-3.441-2.589-3.441-2.589-1.113.04-.347 1.895-.871 2.908-.359.701 1.153 1.073 1.153 1.073s.694-.01.732.832v.008c.008.214-.014.469-.114.81-.498 1.686 1.766 2.72 2.264 1.03.197-.669.12-1.257.021-1.799L15.736 8c-.151-.807-.338-1.514.266-2.224z"/><path fill="#67757F" d="M18.408 8h-2.672l-.751.766L13.56 8h-2.152c-1.104 0-2 .896-2 2s.896 2 2 2v3.5c0 1.933 1.567 3.5 3.5 3.5s3.5-1.567 3.5-3.5V12c1.104 0 2-.896 2-2s-.895-2-2-2z"/><path fill="#963B22" d="M16.578 1.387C16.087.83 15.513.43 14.816.225c-.914-.268-2.022-.133-3.525.409-1.381.499-1.63 2.049-1.29 2.396.039.019.065.057.108.07.027.008.052.005.079.011.588.13 1.129-.284 1.804-.194.315.042.657.186 1.052.571.061.059.101.149.134.248.162.489.038 1.336.038 1.336s.272-.934.39-1.256c.11-.3.513-.569.799.001.248.495-.151 1.222-.422 1.235-.209.01-.029.565.352 1.057.5.645 1.086.786 1.374.815.112.011.534.139 1.122-1.061.588-1.2.874-3.197-.253-4.476z"/><path fill="#963B22" d="M21.434 4.53c-1.209-.351-1.959-1.902-3.429-1.454-1.783.543-1.261 1.789-1.261 1.789s.443 1.264 1.783 1.648c.858.246 2.544.243 3.736-.577.917-.631 1.578-1.909 1.578-1.909-.557.58-1.494.767-2.407.503z"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#4289C1" d="M36 5v27s0 4-4 4H4c-4 0-4-4-4-4v-5s25-2 36-22z"/><path fill="#1C6399" d="M31.844 23.243s2.565-1.635 2.258-2.288c-.309-.654-11.778.99-17.528 2.954-8.627 2.947-13.144 7.522-12.526 8.828.617 1.306 7.602 1.953 16.228-.993 5.752-1.964 15.368-7.524 15.06-8.177-.309-.653-3.492-.324-3.492-.324z"/><path fill="#A6D388" d="M31.474 22.747s2.65-1.619 2.349-2.291c-.303-.673-12.042.782-17.949 2.675C7.01 25.972 2.311 30.555 2.916 31.9c.605 1.345 7.723 2.141 16.585-.699 5.91-1.893 15.833-7.383 15.532-8.055-.303-.673-3.559-.399-3.559-.399z"/><path fill="#F5F8FA" d="M31.474 22.747s2.507-1.534 2.358-2.235L3.756 29.978c-.722.837-1.019 1.523-.84 1.922.156.348.755.657 1.7.878l30.395-9.566c.003-.02.029-.051.022-.066-.303-.673-3.559-.399-3.559-.399z"/><path fill="#D4AB88" d="M27.755 12.233c-.589-.235-1.348-.276-2.104-.386-1.198-.175-2.852-.765-3.529-1.086-.825-.495-2.577-1.661-3.012-1.948S18.093 8.128 17.375 8h-.156c.385.542.609 1.159.748 2.841 0 0 3.319 1.661 3.595 1.753 1.125.375 3.182.366 4.344.512.602.076 1.021-.014 1.499-.047.722-.049 1.38-.055 1.422-.371.05-.367-.595-.265-1.072-.455zM14.698.997c-1.593-.627-4.077.182-4.365 2.043-.287 1.848.239 4.747 1.863 4.572 1.702-.184 3.448-.554 4.138-2.307.69-1.752-.043-3.681-1.636-4.308z"/><path fill="#D4AB88" d="M15.882 5.757c2.318-2.723-3.266-2.458-3.266-2.458-1.057.038-.329 1.799-.827 2.761-.341.665 1.095 1.018 1.095 1.018s.659-.01.694.79v.007c.008.204-.013.445-.108.769-.473 1.601 1.677 2.582 2.149.978.187-.635.114-1.193.02-1.708l-.009-.046c-.144-.766-.322-1.438.252-2.111zm-4.883 2.645c-1.666.993-3.368 3.049-3.98 3.914-.36.283-.686.614-.897.736-.389.223-2.154 1.432-3.334 2.005-.354.166-1.458.438-1.992.781-.432.278-.845.262-.727.612.102.302.508.216 1.227.132.719-.084 1.929-.289 2.325-.566.8-.531 3.347-1.156 4.597-2.031.221-.155 2.385-2.163 2.781-2.741.543-1.515.282-2.556 0-2.842z"/><path fill="#963B22" d="M16.518 1.64C15.457.398 13.998-.117 11.499.849c-2.183.844-1.481 2.579-.972 2.282 1.869-1.09 2.899.514 3.697 2.269.523 1.151 1.56 1.502 1.56 1.502s.337.132.912-1.001.876-3.028-.178-4.261z"/><path fill="#D4AB88" d="M16.261 28.432c-.378-.1-.67-.432-.807-.785-.059-.152-.365-1.001-.365-1.001H13.27c.043.214-.037.696-.134 1.197-.062.322-.114.892-.013 1.093.101.201.817.74 1.301.839 1.237.255 2.491-.342 2.644-.517.222-.255-.428-.726-.807-.826zm7.51-3.222c-.334-.065-.607-.336-.746-.634-.06-.129-.22-.651-.22-.651l-1.609.22c.05.183-.027.417-.008.793.017.335-.058.748.042.917.099.169.601.571 1.027.629 1.088.148 2.141-.443 2.264-.604.176-.235-.416-.605-.75-.67z"/><path fill="#963B22" d="M16.188 2.219c.875-1.312 2.774-1.438 3.637-.469S21.01 4 22.163 4c.368 0 .552.344-.212.688S18.062 5.719 16.875 3.5c-.531-.656-.687-1.281-.687-1.281z"/><path fill="#292F33" d="M22.777 22.241c.023-.706.412-2.193.265-2.824-.229-.981-1.5-2.047-2.677-2.948-1.177-.901-2.375-1.438-2.375-1.438-.302-1.896.242-2.896.235-3.716-.006-.684-.433-2.648-1.006-3.315h-1.565s.246 1.013-.647 1.112C14.112 9.211 13.56 8 13.56 8l-1.748.167c-.278.043-.549.125-.813.236.376.639.23 2.285 0 2.841.823 1.188 1.536 3.003 1.146 5.256-.346 2.002.473 3.889.473 4.324 0 0-.503 1.749-.2 2.898.403 1.529.768 2.884.81 3.423 1.412 0 1.981-.39 1.981-.39s-.278-.638-.165-1.577c.069-.572.351-1.455.351-2.304 0-.849-.022-1.461.104-1.812s.52-1.576.812-2.704c.534.292 1.493.792 2.084.954.849.232 1.494.595 1.718.79s.376.335.376.335-.07.625-.01 1.583c.055.877.53 1.551.636 2.596.893-.133 1.739-.528 1.739-.528s-.096-1.267-.077-1.847z"/><path fill="#67757F" d="M12.375 8.594l.904-.086s1.202 1.373 2.096 1.274c.894-.099.841-1.354.841-1.354h1.269c-.085-.168-.173-.319-.266-.428h-1.565s.246 1.013-.647 1.112C14.112 9.211 13.56 8 13.56 8l-1.748.167c-.278.043-.549.125-.813.236.077.131.128.311.165.509.346-.118.973-.282 1.211-.318zm8.667 13.854c-.06-.958.01-1.583.01-1.583s-.151-.141-.376-.335c-.068-.059-.186-.136-.326-.218l.139.126s-.07.625-.01 1.583c.055.877.53 1.551.636 2.596.158-.024.313-.057.464-.093-.175-.763-.492-1.357-.537-2.076zm-8.061 1.701c-.303-1.149.2-2.898.2-2.898 0-.435-.798-2.791-.452-4.793 4-.021 5.26-1.427 5.26-1.427s-2.719 1.26-5.201.533c-.074-1.788-.788-3.661-1.707-4.579-.025.1-.053.188-.082.258.823 1.188 1.536 3.003 1.146 5.256-.346 2.002.473 3.889.473 4.324 0 0-.503 1.749-.2 2.898.403 1.529.768 2.884.81 3.423.178 0 .342-.006.494-.017-.129-.672-.421-1.766-.741-2.978z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f3c4-1f3fd-200d-2642-fe0f.svg b/public/emoji/1f3c4-1f3fd-200d-2642-fe0f.svg
index 4beaea0fac3ec5e0eee48bb09f0ffdd5127c78e2..521b554b696bef50fea43a11a0fbf7962ad37d73 100644
--- a/public/emoji/1f3c4-1f3fd-200d-2642-fe0f.svg
+++ b/public/emoji/1f3c4-1f3fd-200d-2642-fe0f.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#4289C1" d="M36 5v27s0 4-4 4H4c-4 0-4-4-4-4v-5s25-2 36-22z"/><path fill="#A7D28B" d="M30.59 20.432s2.33-2.136 1.924-3.049c-.408-.914-11.676.831-17.154 3.276-8.22 3.669-12.068 9.767-11.253 11.593.815 1.826 7.925 3.033 16.143-.635 5.48-2.445 14.301-9.669 13.895-10.582-.409-.913-3.555-.603-3.555-.603z"/><path fill="#F5F8FA" d="M34.145 21.035c-.408-.913-3.555-.604-3.555-.604s2.204-2.024 1.942-2.973L4.612 29.674c-.569 1.116-.747 2.037-.505 2.578.211.473.849.9 1.812 1.217l28.215-12.345c0-.027.02-.068.011-.089z"/><path fill="#D5AB88" d="M24.408 15c-3.401 0-6.462-3.95-6.8-4.4-.332-.441-.242-1.067.199-1.399.441-.331 1.066-.244 1.4.198.754 1.002 3.158 3.601 5.2 3.601.553 0 1 .448 1 1s-.446 1-.999 1zm-17 4c-.419 0-.809-.265-.949-.684-1.195-3.584.152-5.934 1.492-7.273 1.401-1.401 3.07-1.968 3.141-1.992.525-.176 1.091.109 1.265.632.174.523-.107 1.088-.629 1.264-.516.176-4.996 1.861-3.371 6.736.175.524-.108 1.091-.632 1.265-.105.035-.212.052-.317.052z"/><path fill="#67757F" d="M25.406 26c-.3 0-.605-.067-.893-.211l-2-1c-.439-.22-.78-.592-.963-1.046l-1.682-4.204-4.204-1.682c-1.025-.41-1.524-1.574-1.114-2.6.41-1.026 1.576-1.525 2.6-1.114l5.001 2c.508.203.91.606 1.114 1.114l1.717 4.294 1.32.66c.988.494 1.389 1.695.895 2.684-.35.701-1.056 1.105-1.791 1.105z"/><path fill="#67757F" d="M16.409 30c-.733.001-1.44-.404-1.791-1.105l-1-2c-.199-.397-.259-.851-.172-1.287l.848-4.241-2.602-4.337c-.568-.947-.261-2.175.686-2.744.946-.569 2.175-.261 2.744.686l3 4.999c.256.427.344.934.246 1.422l-.865 4.327.693 1.386c.494.988.093 2.189-.895 2.684-.286.143-.591.21-.892.21z"/><path fill="#D5AB88" d="M14.755.763c-1.678-.66-4.294.192-4.598 2.152-.302 1.947.252 5 1.962 4.816 1.793-.194 3.632-.584 4.359-2.43.727-1.846-.045-3.878-1.723-4.538z"/><path fill="#D5AB88" d="M16.002 5.776c2.442-2.869-3.441-2.589-3.441-2.589-1.113.04-.347 1.895-.871 2.908-.359.701 1.153 1.073 1.153 1.073s.694-.01.732.832v.008c.008.214-.014.469-.114.81-.498 1.686 1.766 2.72 2.264 1.03.197-.669.12-1.257.021-1.799L15.736 8c-.151-.807-.338-1.514.266-2.224z"/><path fill="#67757F" d="M18.408 8h-2.672l-.751.766L13.56 8h-2.152c-1.104 0-2 .896-2 2s.896 2 2 2v3.5c0 1.933 1.567 3.5 3.5 3.5s3.5-1.567 3.5-3.5V12c1.104 0 2-.896 2-2s-.895-2-2-2z"/><path fill="#963B22" d="M16.673 1.439C15.556.131 14.019-.412 11.386.606c-2.299.889-1.439 2.865-1.024 2.404.661-.734 1.555-.509 1.555-.509l.695 2.048s.331.199.469-.498c.138-.696 1.072-.768 1.378-.208.476.87-.147 1.037-.204 1.557-.179 1.645 1.643 1.582 1.643 1.582s.355.14.961-1.055c.606-1.192.923-3.189-.186-4.488z"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#4289C1" d="M36 5v27s0 4-4 4H4c-4 0-4-4-4-4v-5s25-2 36-22z"/><path fill="#1C6399" d="M31.844 23.243s2.565-1.635 2.258-2.288c-.309-.654-11.778.99-17.528 2.954-8.627 2.947-13.144 7.522-12.526 8.828.617 1.306 7.602 1.953 16.228-.993 5.752-1.964 15.368-7.524 15.06-8.177-.309-.653-3.492-.324-3.492-.324z"/><path fill="#A6D388" d="M31.474 22.747s2.65-1.619 2.349-2.291c-.303-.673-12.042.782-17.949 2.675C7.01 25.972 2.311 30.555 2.916 31.9c.605 1.345 7.723 2.141 16.585-.699 5.91-1.893 15.833-7.383 15.532-8.055-.303-.673-3.559-.399-3.559-.399z"/><path fill="#F5F8FA" d="M31.474 22.747s2.507-1.534 2.358-2.235L3.756 29.978c-.722.837-1.019 1.523-.84 1.922.156.348.755.657 1.7.878l30.395-9.566c.003-.02.029-.051.022-.066-.303-.673-3.559-.399-3.559-.399z"/><path fill="#D4AB88" d="M2.789 15.057c-.354.166-1.458.438-1.992.781-.432.278-.845.262-.727.612.102.302.508.216 1.227.132.719-.084 1.929-.289 2.325-.566l-.833-.959zm22.862-3.211c.379.095 1.515.151 2.104.386.477.19 1.122.088 1.073.455-.043.316-.701.317-1.422.371-.722.054-1.949.085-2.39-.113l.635-1.099zM14.698.997c-1.593-.627-4.077.182-4.365 2.043-.287 1.848.239 4.747 1.863 4.572 1.702-.184 3.448-.554 4.138-2.307.69-1.752-.043-3.681-1.636-4.308z"/><path fill="#D4AB88" d="M15.882 5.757c2.318-2.723-3.266-2.458-3.266-2.458-1.057.038-.329 1.799-.827 2.761-.341.665 1.095 1.018 1.095 1.018s.659-.01.694.79v.007c.008.204-.013.445-.108.769-.473 1.601 1.677 2.582 2.149.978.187-.635.114-1.193.02-1.708l-.009-.046c-.144-.766-.322-1.438.252-2.111z"/><path fill="#963B22" d="M16.518 1.64C15.457.398 13.998-.117 11.499.849c-2.183.844-1.366 2.72-.972 2.282.628-.696 1.477-.483 1.477-.483l.66 1.944s.314.189.445-.473 1.017-.729 1.308-.198c.452.826-.139.984-.193 1.478-.17 1.562 1.56 1.502 1.56 1.502s.337.132.912-1.001c.575-1.132.876-3.027-.178-4.26z"/><path fill="#D4AB88" d="M16.261 28.432c-.378-.1-.67-.432-.807-.785-.059-.152-.245-.89-.245-.89l-2.284.284c.043.214.114.512.185.94.054.324-.089.753.012.954.101.201.817.74 1.301.839 1.237.255 2.491-.342 2.644-.517.223-.254-.427-.725-.806-.825zm7.51-3.222c-.334-.065-.607-.336-.746-.634-.06-.129-.22-.651-.22-.651l-2.009.274c.05.183.129.438.216.804.066.278-.033.659.066.827.099.169.752.594 1.178.652 1.088.148 2.141-.443 2.264-.604.177-.233-.415-.603-.749-.668z"/><path fill="#292F33" d="M25.676 11.812c-.242-.036-2.877-.731-3.554-1.052-.903-.841-2.483-1.754-2.919-2.042s-.837-.637-1.828-.718h-1.639l-.751.766L13.56 8l-1.748.167c-2.198.338-4 3.024-4.794 4.151-.36.283-.685.614-.896.735-.389.223-2.813 1.505-3.334 2.005l.836 1.068c.312-.281 1.748-.596 2.748-1.046.396-.178 1.452-.296 1.982-.81l.017.017c1.396-.979 2.326-2.021 2.722-2.599L12.208 17s-.005 1.674.058 1.94c.088.372.353 1.449.353 1.884 0 0-.606 1.335-.302 2.484.403 1.529.611 3.468.653 4.008 1.412 0 2.24-.56 2.24-.56s-.278-.638-.165-1.577c.069-.572.58-1.601.58-2.45 0-.849-.095-1.367.031-1.719s.601-1.452.677-2.052c.02-.162.008-.374-.022-.6.534.292 1.493.792 2.084.954.849.232 1.494.595 1.718.79s.376.335.376.335-.201.557-.141 1.516c.055.877.433 1.658.54 2.703.893-.133 1.966-.567 1.966-.567s-.096-1.268-.078-1.848c.023-.706.412-2.193.265-2.824-.229-.981-1.5-2.047-2.677-2.948-1.177-.901-2.375-1.438-2.375-1.438.365-2.469-.005-3.781-.005-3.781s1.81.804 3.578 1.344c.577.285 2.27.562 3.989.5.432-.016.452-1.233.125-1.282z"/><path fill="#67757F" d="M7.265 13.194c.795-1.126 2.994-4.365 5.435-4.576 0 0 1.118 1.459 2.565 1.235 1.447-.224 1.482-1.318 1.482-1.318l1.727.149c.494.04.841.148 1.12.281-.163-.101-.304-.189-.391-.246-.435-.287-.837-.638-1.828-.719h-1.639l-.751.766L13.56 8l-1.748.167c-2.198.338-4 3.024-4.794 4.151-.36.283-.685.614-.896.735-.389.223-2.813 1.505-3.334 2.005l.288.368c1.224-.797 3.829-1.949 4.189-2.232zm15.956-1.75c.453.215 1.771.594 2.674.834-.016-.24-.089-.446-.219-.465-.2-.03-2.502-.686-3.513-1.033.212.162.682.465 1.058.664zm-2.139 11.291c-.06-.958.024-1.639-.072-1.843-.096-.204-.52-.455-.52-.455s-.201.557-.141 1.516c.055.877.433 1.658.54 2.703.309-.046.638-.128.938-.216-.613-.262-.707-1.099-.745-1.705z"/><path fill="#67757F" d="M13.135 24.147c-.303-1.149.176-2.906.176-2.906 0-.435-.23-1.357-.318-1.729-.063-.266-.103-2.438-.072-2.717 3.859-.123 5.068-1.763 5.068-1.763s-2.21 1.309-5.224.906c-.347-.718-1.03-4.737-1.03-4.737-.213-.025-.499.231-.642.487L12.208 17s-.005 1.674.058 1.94c.088.372.353 1.449.353 1.884 0 0-.606 1.335-.302 2.484.403 1.529.611 3.468.653 4.008.386 0 .724-.044 1.018-.104-.688-.618-.566-1.979-.853-3.065z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f3c4-1f3fd.svg b/public/emoji/1f3c4-1f3fd.svg
index 4beaea0fac3ec5e0eee48bb09f0ffdd5127c78e2..521b554b696bef50fea43a11a0fbf7962ad37d73 100644
--- a/public/emoji/1f3c4-1f3fd.svg
+++ b/public/emoji/1f3c4-1f3fd.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#4289C1" d="M36 5v27s0 4-4 4H4c-4 0-4-4-4-4v-5s25-2 36-22z"/><path fill="#A7D28B" d="M30.59 20.432s2.33-2.136 1.924-3.049c-.408-.914-11.676.831-17.154 3.276-8.22 3.669-12.068 9.767-11.253 11.593.815 1.826 7.925 3.033 16.143-.635 5.48-2.445 14.301-9.669 13.895-10.582-.409-.913-3.555-.603-3.555-.603z"/><path fill="#F5F8FA" d="M34.145 21.035c-.408-.913-3.555-.604-3.555-.604s2.204-2.024 1.942-2.973L4.612 29.674c-.569 1.116-.747 2.037-.505 2.578.211.473.849.9 1.812 1.217l28.215-12.345c0-.027.02-.068.011-.089z"/><path fill="#D5AB88" d="M24.408 15c-3.401 0-6.462-3.95-6.8-4.4-.332-.441-.242-1.067.199-1.399.441-.331 1.066-.244 1.4.198.754 1.002 3.158 3.601 5.2 3.601.553 0 1 .448 1 1s-.446 1-.999 1zm-17 4c-.419 0-.809-.265-.949-.684-1.195-3.584.152-5.934 1.492-7.273 1.401-1.401 3.07-1.968 3.141-1.992.525-.176 1.091.109 1.265.632.174.523-.107 1.088-.629 1.264-.516.176-4.996 1.861-3.371 6.736.175.524-.108 1.091-.632 1.265-.105.035-.212.052-.317.052z"/><path fill="#67757F" d="M25.406 26c-.3 0-.605-.067-.893-.211l-2-1c-.439-.22-.78-.592-.963-1.046l-1.682-4.204-4.204-1.682c-1.025-.41-1.524-1.574-1.114-2.6.41-1.026 1.576-1.525 2.6-1.114l5.001 2c.508.203.91.606 1.114 1.114l1.717 4.294 1.32.66c.988.494 1.389 1.695.895 2.684-.35.701-1.056 1.105-1.791 1.105z"/><path fill="#67757F" d="M16.409 30c-.733.001-1.44-.404-1.791-1.105l-1-2c-.199-.397-.259-.851-.172-1.287l.848-4.241-2.602-4.337c-.568-.947-.261-2.175.686-2.744.946-.569 2.175-.261 2.744.686l3 4.999c.256.427.344.934.246 1.422l-.865 4.327.693 1.386c.494.988.093 2.189-.895 2.684-.286.143-.591.21-.892.21z"/><path fill="#D5AB88" d="M14.755.763c-1.678-.66-4.294.192-4.598 2.152-.302 1.947.252 5 1.962 4.816 1.793-.194 3.632-.584 4.359-2.43.727-1.846-.045-3.878-1.723-4.538z"/><path fill="#D5AB88" d="M16.002 5.776c2.442-2.869-3.441-2.589-3.441-2.589-1.113.04-.347 1.895-.871 2.908-.359.701 1.153 1.073 1.153 1.073s.694-.01.732.832v.008c.008.214-.014.469-.114.81-.498 1.686 1.766 2.72 2.264 1.03.197-.669.12-1.257.021-1.799L15.736 8c-.151-.807-.338-1.514.266-2.224z"/><path fill="#67757F" d="M18.408 8h-2.672l-.751.766L13.56 8h-2.152c-1.104 0-2 .896-2 2s.896 2 2 2v3.5c0 1.933 1.567 3.5 3.5 3.5s3.5-1.567 3.5-3.5V12c1.104 0 2-.896 2-2s-.895-2-2-2z"/><path fill="#963B22" d="M16.673 1.439C15.556.131 14.019-.412 11.386.606c-2.299.889-1.439 2.865-1.024 2.404.661-.734 1.555-.509 1.555-.509l.695 2.048s.331.199.469-.498c.138-.696 1.072-.768 1.378-.208.476.87-.147 1.037-.204 1.557-.179 1.645 1.643 1.582 1.643 1.582s.355.14.961-1.055c.606-1.192.923-3.189-.186-4.488z"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#4289C1" d="M36 5v27s0 4-4 4H4c-4 0-4-4-4-4v-5s25-2 36-22z"/><path fill="#1C6399" d="M31.844 23.243s2.565-1.635 2.258-2.288c-.309-.654-11.778.99-17.528 2.954-8.627 2.947-13.144 7.522-12.526 8.828.617 1.306 7.602 1.953 16.228-.993 5.752-1.964 15.368-7.524 15.06-8.177-.309-.653-3.492-.324-3.492-.324z"/><path fill="#A6D388" d="M31.474 22.747s2.65-1.619 2.349-2.291c-.303-.673-12.042.782-17.949 2.675C7.01 25.972 2.311 30.555 2.916 31.9c.605 1.345 7.723 2.141 16.585-.699 5.91-1.893 15.833-7.383 15.532-8.055-.303-.673-3.559-.399-3.559-.399z"/><path fill="#F5F8FA" d="M31.474 22.747s2.507-1.534 2.358-2.235L3.756 29.978c-.722.837-1.019 1.523-.84 1.922.156.348.755.657 1.7.878l30.395-9.566c.003-.02.029-.051.022-.066-.303-.673-3.559-.399-3.559-.399z"/><path fill="#D4AB88" d="M2.789 15.057c-.354.166-1.458.438-1.992.781-.432.278-.845.262-.727.612.102.302.508.216 1.227.132.719-.084 1.929-.289 2.325-.566l-.833-.959zm22.862-3.211c.379.095 1.515.151 2.104.386.477.19 1.122.088 1.073.455-.043.316-.701.317-1.422.371-.722.054-1.949.085-2.39-.113l.635-1.099zM14.698.997c-1.593-.627-4.077.182-4.365 2.043-.287 1.848.239 4.747 1.863 4.572 1.702-.184 3.448-.554 4.138-2.307.69-1.752-.043-3.681-1.636-4.308z"/><path fill="#D4AB88" d="M15.882 5.757c2.318-2.723-3.266-2.458-3.266-2.458-1.057.038-.329 1.799-.827 2.761-.341.665 1.095 1.018 1.095 1.018s.659-.01.694.79v.007c.008.204-.013.445-.108.769-.473 1.601 1.677 2.582 2.149.978.187-.635.114-1.193.02-1.708l-.009-.046c-.144-.766-.322-1.438.252-2.111z"/><path fill="#963B22" d="M16.518 1.64C15.457.398 13.998-.117 11.499.849c-2.183.844-1.366 2.72-.972 2.282.628-.696 1.477-.483 1.477-.483l.66 1.944s.314.189.445-.473 1.017-.729 1.308-.198c.452.826-.139.984-.193 1.478-.17 1.562 1.56 1.502 1.56 1.502s.337.132.912-1.001c.575-1.132.876-3.027-.178-4.26z"/><path fill="#D4AB88" d="M16.261 28.432c-.378-.1-.67-.432-.807-.785-.059-.152-.245-.89-.245-.89l-2.284.284c.043.214.114.512.185.94.054.324-.089.753.012.954.101.201.817.74 1.301.839 1.237.255 2.491-.342 2.644-.517.223-.254-.427-.725-.806-.825zm7.51-3.222c-.334-.065-.607-.336-.746-.634-.06-.129-.22-.651-.22-.651l-2.009.274c.05.183.129.438.216.804.066.278-.033.659.066.827.099.169.752.594 1.178.652 1.088.148 2.141-.443 2.264-.604.177-.233-.415-.603-.749-.668z"/><path fill="#292F33" d="M25.676 11.812c-.242-.036-2.877-.731-3.554-1.052-.903-.841-2.483-1.754-2.919-2.042s-.837-.637-1.828-.718h-1.639l-.751.766L13.56 8l-1.748.167c-2.198.338-4 3.024-4.794 4.151-.36.283-.685.614-.896.735-.389.223-2.813 1.505-3.334 2.005l.836 1.068c.312-.281 1.748-.596 2.748-1.046.396-.178 1.452-.296 1.982-.81l.017.017c1.396-.979 2.326-2.021 2.722-2.599L12.208 17s-.005 1.674.058 1.94c.088.372.353 1.449.353 1.884 0 0-.606 1.335-.302 2.484.403 1.529.611 3.468.653 4.008 1.412 0 2.24-.56 2.24-.56s-.278-.638-.165-1.577c.069-.572.58-1.601.58-2.45 0-.849-.095-1.367.031-1.719s.601-1.452.677-2.052c.02-.162.008-.374-.022-.6.534.292 1.493.792 2.084.954.849.232 1.494.595 1.718.79s.376.335.376.335-.201.557-.141 1.516c.055.877.433 1.658.54 2.703.893-.133 1.966-.567 1.966-.567s-.096-1.268-.078-1.848c.023-.706.412-2.193.265-2.824-.229-.981-1.5-2.047-2.677-2.948-1.177-.901-2.375-1.438-2.375-1.438.365-2.469-.005-3.781-.005-3.781s1.81.804 3.578 1.344c.577.285 2.27.562 3.989.5.432-.016.452-1.233.125-1.282z"/><path fill="#67757F" d="M7.265 13.194c.795-1.126 2.994-4.365 5.435-4.576 0 0 1.118 1.459 2.565 1.235 1.447-.224 1.482-1.318 1.482-1.318l1.727.149c.494.04.841.148 1.12.281-.163-.101-.304-.189-.391-.246-.435-.287-.837-.638-1.828-.719h-1.639l-.751.766L13.56 8l-1.748.167c-2.198.338-4 3.024-4.794 4.151-.36.283-.685.614-.896.735-.389.223-2.813 1.505-3.334 2.005l.288.368c1.224-.797 3.829-1.949 4.189-2.232zm15.956-1.75c.453.215 1.771.594 2.674.834-.016-.24-.089-.446-.219-.465-.2-.03-2.502-.686-3.513-1.033.212.162.682.465 1.058.664zm-2.139 11.291c-.06-.958.024-1.639-.072-1.843-.096-.204-.52-.455-.52-.455s-.201.557-.141 1.516c.055.877.433 1.658.54 2.703.309-.046.638-.128.938-.216-.613-.262-.707-1.099-.745-1.705z"/><path fill="#67757F" d="M13.135 24.147c-.303-1.149.176-2.906.176-2.906 0-.435-.23-1.357-.318-1.729-.063-.266-.103-2.438-.072-2.717 3.859-.123 5.068-1.763 5.068-1.763s-2.21 1.309-5.224.906c-.347-.718-1.03-4.737-1.03-4.737-.213-.025-.499.231-.642.487L12.208 17s-.005 1.674.058 1.94c.088.372.353 1.449.353 1.884 0 0-.606 1.335-.302 2.484.403 1.529.611 3.468.653 4.008.386 0 .724-.044 1.018-.104-.688-.618-.566-1.979-.853-3.065z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f3c4-1f3fe-200d-2640-fe0f.svg b/public/emoji/1f3c4-1f3fe-200d-2640-fe0f.svg
index c05e212cfe290ea0a6a6cdf0db2248961cd0a1f6..6372f70a13318fc6f8b79e13802694ae7cb53205 100644
--- a/public/emoji/1f3c4-1f3fe-200d-2640-fe0f.svg
+++ b/public/emoji/1f3c4-1f3fe-200d-2640-fe0f.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#4289C1" d="M36 5v27s0 4-4 4H4c-4 0-4-4-4-4v-5s25-2 36-22z"/><path fill="#E0245E" d="M30.59 20.432s2.33-2.136 1.924-3.049c-.408-.914-11.676.831-17.154 3.276-8.22 3.669-12.068 9.767-11.253 11.593.815 1.826 7.925 3.033 16.143-.635 5.48-2.445 14.301-9.669 13.895-10.582-.409-.913-3.555-.603-3.555-.603z"/><path fill="#F5F8FA" d="M34.145 21.035c-.408-.913-3.555-.604-3.555-.604s2.204-2.024 1.942-2.973L4.612 29.674c-.569 1.116-.747 2.037-.505 2.578.211.473.849.9 1.812 1.217l28.215-12.345c0-.027.02-.068.011-.089z"/><path fill="#AF7E57" d="M24.408 15c-3.401 0-6.462-3.95-6.8-4.4-.332-.441-.242-1.067.199-1.399.441-.331 1.066-.244 1.4.198.754 1.002 3.158 3.601 5.2 3.601.553 0 1 .448 1 1s-.446 1-.999 1zm-17 4c-.419 0-.809-.265-.949-.684-1.195-3.584.152-5.934 1.492-7.273 1.401-1.401 3.07-1.968 3.141-1.992.525-.176 1.091.109 1.265.632.174.523-.107 1.088-.629 1.264-.516.176-4.996 1.861-3.371 6.736.175.524-.108 1.091-.632 1.265-.105.035-.212.052-.317.052z"/><path fill="#67757F" d="M25.406 26c-.3 0-.605-.067-.893-.211l-2-1c-.439-.22-.78-.592-.963-1.046l-1.682-4.204-4.204-1.682c-1.025-.41-1.524-1.574-1.114-2.6.41-1.026 1.576-1.525 2.6-1.114l5.001 2c.508.203.91.606 1.114 1.114l1.717 4.294 1.32.66c.988.494 1.389 1.695.895 2.684-.35.701-1.056 1.105-1.791 1.105z"/><path fill="#67757F" d="M16.409 30c-.733.001-1.44-.404-1.791-1.105l-1-2c-.199-.397-.259-.851-.172-1.287l.848-4.241-2.602-4.337c-.568-.947-.261-2.175.686-2.744.946-.569 2.175-.261 2.744.686l3 4.999c.256.427.344.934.246 1.422l-.865 4.327.693 1.386c.494.988.093 2.189-.895 2.684-.286.143-.591.21-.892.21z"/><path fill="#AF7E57" d="M14.656.74c-1.684-.634-4.281.255-4.555 2.215-.272 1.947.326 4.985 2.029 4.775 1.786-.22 3.615-.636 4.312-2.489.697-1.851-.102-3.867-1.786-4.501z"/><path fill="#AF7E57" d="M16.002 5.776c2.442-2.869-3.441-2.589-3.441-2.589-1.113.04-.347 1.895-.871 2.908-.359.701 1.153 1.073 1.153 1.073s.694-.01.732.832v.008c.008.214-.014.469-.114.81-.498 1.686 1.766 2.72 2.264 1.03.197-.669.12-1.257.021-1.799L15.736 8c-.151-.807-.338-1.514.266-2.224z"/><path fill="#67757F" d="M18.408 8h-2.672l-.751.766L13.56 8h-2.152c-1.104 0-2 .896-2 2s.896 2 2 2v3.5c0 1.933 1.567 3.5 3.5 3.5s3.5-1.567 3.5-3.5V12c1.104 0 2-.896 2-2s-.895-2-2-2z"/><path fill="#60352A" d="M16.578 1.387C16.087.83 15.513.43 14.816.225c-.914-.268-2.022-.133-3.525.409-1.381.499-1.63 2.049-1.29 2.396.039.019.065.057.108.07.027.008.052.005.079.011.588.13 1.129-.284 1.804-.194.315.042.657.186 1.052.571.061.059.101.149.134.248.162.489.038 1.336.038 1.336s.272-.934.39-1.256c.11-.3.513-.569.799.001.248.495-.151 1.222-.422 1.235-.209.01-.029.565.352 1.057.5.645 1.086.786 1.374.815.112.011.534.139 1.122-1.061.588-1.2.874-3.197-.253-4.476z"/><path fill="#60352A" d="M21.434 4.53c-1.209-.351-1.959-1.902-3.429-1.454-1.783.543-1.261 1.789-1.261 1.789s.443 1.264 1.783 1.648c.858.246 2.544.243 3.736-.577.917-.631 1.578-1.909 1.578-1.909-.557.58-1.494.767-2.407.503z"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#4289C1" d="M36 5v27s0 4-4 4H4c-4 0-4-4-4-4v-5s25-2 36-22z"/><path fill="#1C6399" d="M31.844 23.243s2.565-1.635 2.258-2.288c-.309-.654-11.778.99-17.528 2.954-8.627 2.947-13.144 7.522-12.526 8.828.617 1.306 7.602 1.953 16.228-.993 5.752-1.964 15.368-7.524 15.06-8.177-.309-.653-3.492-.324-3.492-.324z"/><path fill="#A6D388" d="M31.474 22.747s2.65-1.619 2.349-2.291c-.303-.673-12.042.782-17.949 2.675C7.01 25.972 2.311 30.555 2.916 31.9c.605 1.345 7.723 2.141 16.585-.699 5.91-1.893 15.833-7.383 15.532-8.055-.303-.673-3.559-.399-3.559-.399z"/><path fill="#F5F8FA" d="M31.474 22.747s2.507-1.534 2.358-2.235L3.756 29.978c-.722.837-1.019 1.523-.84 1.922.156.348.755.657 1.7.878l30.395-9.566c.003-.02.029-.051.022-.066-.303-.673-3.559-.399-3.559-.399z"/><path fill="#AF7E57" d="M27.755 12.233c-.589-.235-1.348-.276-2.104-.386-1.198-.175-2.852-.765-3.529-1.086-.825-.495-2.577-1.661-3.012-1.948S18.093 8.128 17.375 8h-.156c.385.542.609 1.159.748 2.841 0 0 3.319 1.661 3.595 1.753 1.125.375 3.182.366 4.344.512.602.076 1.021-.014 1.499-.047.722-.049 1.38-.055 1.422-.371.05-.367-.595-.265-1.072-.455zM14.698.997c-1.593-.627-4.077.182-4.365 2.043-.287 1.848.239 4.747 1.863 4.572 1.702-.184 3.448-.554 4.138-2.307.69-1.752-.043-3.681-1.636-4.308z"/><path fill="#AF7E57" d="M15.882 5.757c2.318-2.723-3.266-2.458-3.266-2.458-1.057.038-.329 1.799-.827 2.761-.341.665 1.095 1.018 1.095 1.018s.659-.01.694.79v.007c.008.204-.013.445-.108.769-.473 1.601 1.677 2.582 2.149.978.187-.635.114-1.193.02-1.708l-.009-.046c-.144-.766-.322-1.438.252-2.111zm-4.883 2.645c-1.666.993-3.368 3.049-3.98 3.914-.36.283-.686.614-.897.736-.389.223-2.154 1.432-3.334 2.005-.354.166-1.458.438-1.992.781-.432.278-.845.262-.727.612.102.302.508.216 1.227.132.719-.084 1.929-.289 2.325-.566.8-.531 3.347-1.156 4.597-2.031.221-.155 2.385-2.163 2.781-2.741.543-1.515.282-2.556 0-2.842z"/><path fill="#60352A" d="M16.518 1.64C15.457.398 13.998-.117 11.499.849c-2.183.844-1.481 2.579-.972 2.282 1.869-1.09 2.899.514 3.697 2.269.523 1.151 1.56 1.502 1.56 1.502s.337.132.912-1.001.876-3.028-.178-4.261z"/><path fill="#AF7E57" d="M16.261 28.432c-.378-.1-.67-.432-.807-.785-.059-.152-.365-1.001-.365-1.001H13.27c.043.214-.037.696-.134 1.197-.062.322-.114.892-.013 1.093.101.201.817.74 1.301.839 1.237.255 2.491-.342 2.644-.517.222-.255-.428-.726-.807-.826zm7.51-3.222c-.334-.065-.607-.336-.746-.634-.06-.129-.22-.651-.22-.651l-1.609.22c.05.183-.027.417-.008.793.017.335-.058.748.042.917.099.169.601.571 1.027.629 1.088.148 2.141-.443 2.264-.604.176-.235-.416-.605-.75-.67z"/><path fill="#60352A" d="M16.188 2.219c.875-1.312 2.774-1.438 3.637-.469S21.01 4 22.163 4c.368 0 .552.344-.212.688S18.062 5.719 16.875 3.5c-.531-.656-.687-1.281-.687-1.281z"/><path fill="#292F33" d="M22.777 22.241c.023-.706.412-2.193.265-2.824-.229-.981-1.5-2.047-2.677-2.948-1.177-.901-2.375-1.438-2.375-1.438-.302-1.896.242-2.896.235-3.716-.006-.684-.433-2.648-1.006-3.315h-1.565s.246 1.013-.647 1.112C14.112 9.211 13.56 8 13.56 8l-1.748.167c-.278.043-.549.125-.813.236.376.639.23 2.285 0 2.841.823 1.188 1.536 3.003 1.146 5.256-.346 2.002.473 3.889.473 4.324 0 0-.503 1.749-.2 2.898.403 1.529.768 2.884.81 3.423 1.412 0 1.981-.39 1.981-.39s-.278-.638-.165-1.577c.069-.572.351-1.455.351-2.304 0-.849-.022-1.461.104-1.812s.52-1.576.812-2.704c.534.292 1.493.792 2.084.954.849.232 1.494.595 1.718.79s.376.335.376.335-.07.625-.01 1.583c.055.877.53 1.551.636 2.596.893-.133 1.739-.528 1.739-.528s-.096-1.267-.077-1.847z"/><path fill="#67757F" d="M12.375 8.594l.904-.086s1.202 1.373 2.096 1.274c.894-.099.841-1.354.841-1.354h1.269c-.085-.168-.173-.319-.266-.428h-1.565s.246 1.013-.647 1.112C14.112 9.211 13.56 8 13.56 8l-1.748.167c-.278.043-.549.125-.813.236.077.131.128.311.165.509.346-.118.973-.282 1.211-.318zm8.667 13.854c-.06-.958.01-1.583.01-1.583s-.151-.141-.376-.335c-.068-.059-.186-.136-.326-.218l.139.126s-.07.625-.01 1.583c.055.877.53 1.551.636 2.596.158-.024.313-.057.464-.093-.175-.763-.492-1.357-.537-2.076zm-8.061 1.701c-.303-1.149.2-2.898.2-2.898 0-.435-.798-2.791-.452-4.793 4-.021 5.26-1.427 5.26-1.427s-2.719 1.26-5.201.533c-.074-1.788-.788-3.661-1.707-4.579-.025.1-.053.188-.082.258.823 1.188 1.536 3.003 1.146 5.256-.346 2.002.473 3.889.473 4.324 0 0-.503 1.749-.2 2.898.403 1.529.768 2.884.81 3.423.178 0 .342-.006.494-.017-.129-.672-.421-1.766-.741-2.978z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f3c4-1f3fe-200d-2642-fe0f.svg b/public/emoji/1f3c4-1f3fe-200d-2642-fe0f.svg
index dda836ca576fb36cd22a615e5aa0b804a63b3377..147c45aea9865a19cb69e8cb45507e7acbb633ca 100644
--- a/public/emoji/1f3c4-1f3fe-200d-2642-fe0f.svg
+++ b/public/emoji/1f3c4-1f3fe-200d-2642-fe0f.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#4289C1" d="M36 5v27s0 4-4 4H4c-4 0-4-4-4-4v-5s25-2 36-22z"/><path fill="#A7D28B" d="M30.59 20.432s2.33-2.136 1.924-3.049c-.408-.914-11.676.831-17.154 3.276-8.22 3.669-12.068 9.767-11.253 11.593.815 1.826 7.925 3.033 16.143-.635 5.48-2.445 14.301-9.669 13.895-10.582-.409-.913-3.555-.603-3.555-.603z"/><path fill="#F5F8FA" d="M34.145 21.035c-.408-.913-3.555-.604-3.555-.604s2.204-2.024 1.942-2.973L4.612 29.674c-.569 1.116-.747 2.037-.505 2.578.211.473.849.9 1.812 1.217l28.215-12.345c0-.027.02-.068.011-.089z"/><path fill="#AF7E57" d="M24.408 15c-3.401 0-6.462-3.95-6.8-4.4-.332-.441-.242-1.067.199-1.399.441-.331 1.066-.244 1.4.198.754 1.002 3.158 3.601 5.2 3.601.553 0 1 .448 1 1s-.446 1-.999 1zm-17 4c-.419 0-.809-.265-.949-.684-1.195-3.584.152-5.934 1.492-7.273 1.401-1.401 3.07-1.968 3.141-1.992.525-.176 1.091.109 1.265.632.174.523-.107 1.088-.629 1.264-.516.176-4.996 1.861-3.371 6.736.175.524-.108 1.091-.632 1.265-.105.035-.212.052-.317.052z"/><path fill="#67757F" d="M25.406 26c-.3 0-.605-.067-.893-.211l-2-1c-.439-.22-.78-.592-.963-1.046l-1.682-4.204-4.204-1.682c-1.025-.41-1.524-1.574-1.114-2.6.41-1.026 1.576-1.525 2.6-1.114l5.001 2c.508.203.91.606 1.114 1.114l1.717 4.294 1.32.66c.988.494 1.389 1.695.895 2.684-.35.701-1.056 1.105-1.791 1.105z"/><path fill="#67757F" d="M16.409 30c-.733.001-1.44-.404-1.791-1.105l-1-2c-.199-.397-.259-.851-.172-1.287l.848-4.241-2.602-4.337c-.568-.947-.261-2.175.686-2.744.946-.569 2.175-.261 2.744.686l3 4.999c.256.427.344.934.246 1.422l-.865 4.327.693 1.386c.494.988.093 2.189-.895 2.684-.286.143-.591.21-.892.21z"/><path fill="#AF7E57" d="M14.755.763c-1.678-.66-4.294.192-4.598 2.152-.302 1.947.252 5 1.962 4.816 1.793-.194 3.632-.584 4.359-2.43.727-1.846-.045-3.878-1.723-4.538z"/><path fill="#AF7E57" d="M16.002 5.776c2.442-2.869-3.441-2.589-3.441-2.589-1.113.04-.347 1.895-.871 2.908-.359.701 1.153 1.073 1.153 1.073s.694-.01.732.832v.008c.008.214-.014.469-.114.81-.498 1.686 1.766 2.72 2.264 1.03.197-.669.12-1.257.021-1.799L15.736 8c-.151-.807-.338-1.514.266-2.224z"/><path fill="#67757F" d="M18.408 8h-2.672l-.751.766L13.56 8h-2.152c-1.104 0-2 .896-2 2s.896 2 2 2v3.5c0 1.933 1.567 3.5 3.5 3.5s3.5-1.567 3.5-3.5V12c1.104 0 2-.896 2-2s-.895-2-2-2z"/><path fill="#60352A" d="M16.673 1.439C15.556.131 14.019-.412 11.386.606c-2.299.889-1.439 2.865-1.024 2.404.661-.734 1.555-.509 1.555-.509l.695 2.048s.331.199.469-.498c.138-.696 1.072-.768 1.378-.208.476.87-.147 1.037-.204 1.557-.179 1.645 1.643 1.582 1.643 1.582s.355.14.961-1.055c.606-1.192.923-3.189-.186-4.488z"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#4289C1" d="M36 5v27s0 4-4 4H4c-4 0-4-4-4-4v-5s25-2 36-22z"/><path fill="#1C6399" d="M31.844 23.243s2.565-1.635 2.258-2.288c-.309-.654-11.778.99-17.528 2.954-8.627 2.947-13.144 7.522-12.526 8.828.617 1.306 7.602 1.953 16.228-.993 5.752-1.964 15.368-7.524 15.06-8.177-.309-.653-3.492-.324-3.492-.324z"/><path fill="#A6D388" d="M31.474 22.747s2.65-1.619 2.349-2.291c-.303-.673-12.042.782-17.949 2.675C7.01 25.972 2.311 30.555 2.916 31.9c.605 1.345 7.723 2.141 16.585-.699 5.91-1.893 15.833-7.383 15.532-8.055-.303-.673-3.559-.399-3.559-.399z"/><path fill="#F5F8FA" d="M31.474 22.747s2.507-1.534 2.358-2.235L3.756 29.978c-.722.837-1.019 1.523-.84 1.922.156.348.755.657 1.7.878l30.395-9.566c.003-.02.029-.051.022-.066-.303-.673-3.559-.399-3.559-.399z"/><path fill="#AF7E57" d="M2.789 15.057c-.354.166-1.458.438-1.992.781-.432.278-.845.262-.727.612.102.302.508.216 1.227.132.719-.084 1.929-.289 2.325-.566l-.833-.959zm22.862-3.211c.379.095 1.515.151 2.104.386.477.19 1.122.088 1.073.455-.043.316-.701.317-1.422.371-.722.054-1.949.085-2.39-.113l.635-1.099zM14.698.997c-1.593-.627-4.077.182-4.365 2.043-.287 1.848.239 4.747 1.863 4.572 1.702-.184 3.448-.554 4.138-2.307.69-1.752-.043-3.681-1.636-4.308z"/><path fill="#AF7E57" d="M15.882 5.757c2.318-2.723-3.266-2.458-3.266-2.458-1.057.038-.329 1.799-.827 2.761-.341.665 1.095 1.018 1.095 1.018s.659-.01.694.79v.007c.008.204-.013.445-.108.769-.473 1.601 1.677 2.582 2.149.978.187-.635.114-1.193.02-1.708l-.009-.046c-.144-.766-.322-1.438.252-2.111z"/><path fill="#60352A" d="M16.518 1.64C15.457.398 13.998-.117 11.499.849c-2.183.844-1.366 2.72-.972 2.282.628-.696 1.477-.483 1.477-.483l.66 1.944s.314.189.445-.473 1.017-.729 1.308-.198c.452.826-.139.984-.193 1.478-.17 1.562 1.56 1.502 1.56 1.502s.337.132.912-1.001c.575-1.132.876-3.027-.178-4.26z"/><path fill="#AF7E57" d="M16.261 28.432c-.378-.1-.67-.432-.807-.785-.059-.152-.245-.89-.245-.89l-2.284.284c.043.214.114.512.185.94.054.324-.089.753.012.954.101.201.817.74 1.301.839 1.237.255 2.491-.342 2.644-.517.223-.254-.427-.725-.806-.825zm7.51-3.222c-.334-.065-.607-.336-.746-.634-.06-.129-.22-.651-.22-.651l-2.009.274c.05.183.129.438.216.804.066.278-.033.659.066.827.099.169.752.594 1.178.652 1.088.148 2.141-.443 2.264-.604.177-.233-.415-.603-.749-.668z"/><path fill="#292F33" d="M25.676 11.812c-.242-.036-2.877-.731-3.554-1.052-.903-.841-2.483-1.754-2.919-2.042s-.837-.637-1.828-.718h-1.639l-.751.766L13.56 8l-1.748.167c-2.198.338-4 3.024-4.794 4.151-.36.283-.685.614-.896.735-.389.223-2.813 1.505-3.334 2.005l.836 1.068c.312-.281 1.748-.596 2.748-1.046.396-.178 1.452-.296 1.982-.81l.017.017c1.396-.979 2.326-2.021 2.722-2.599L12.208 17s-.005 1.674.058 1.94c.088.372.353 1.449.353 1.884 0 0-.606 1.335-.302 2.484.403 1.529.611 3.468.653 4.008 1.412 0 2.24-.56 2.24-.56s-.278-.638-.165-1.577c.069-.572.58-1.601.58-2.45 0-.849-.095-1.367.031-1.719s.601-1.452.677-2.052c.02-.162.008-.374-.022-.6.534.292 1.493.792 2.084.954.849.232 1.494.595 1.718.79s.376.335.376.335-.201.557-.141 1.516c.055.877.433 1.658.54 2.703.893-.133 1.966-.567 1.966-.567s-.096-1.268-.078-1.848c.023-.706.412-2.193.265-2.824-.229-.981-1.5-2.047-2.677-2.948-1.177-.901-2.375-1.438-2.375-1.438.365-2.469-.005-3.781-.005-3.781s1.81.804 3.578 1.344c.577.285 2.27.562 3.989.5.432-.016.452-1.233.125-1.282z"/><path fill="#67757F" d="M7.265 13.194c.795-1.126 2.994-4.365 5.435-4.576 0 0 1.118 1.459 2.565 1.235 1.447-.224 1.482-1.318 1.482-1.318l1.727.149c.494.04.841.148 1.12.281-.163-.101-.304-.189-.391-.246-.435-.287-.837-.638-1.828-.719h-1.639l-.751.766L13.56 8l-1.748.167c-2.198.338-4 3.024-4.794 4.151-.36.283-.685.614-.896.735-.389.223-2.813 1.505-3.334 2.005l.288.368c1.224-.797 3.829-1.949 4.189-2.232zm15.956-1.75c.453.215 1.771.594 2.674.834-.016-.24-.089-.446-.219-.465-.2-.03-2.502-.686-3.513-1.033.212.162.682.465 1.058.664zm-2.139 11.291c-.06-.958.024-1.639-.072-1.843-.096-.204-.52-.455-.52-.455s-.201.557-.141 1.516c.055.877.433 1.658.54 2.703.309-.046.638-.128.938-.216-.613-.262-.707-1.099-.745-1.705z"/><path fill="#67757F" d="M13.135 24.147c-.303-1.149.176-2.906.176-2.906 0-.435-.23-1.357-.318-1.729-.063-.266-.103-2.438-.072-2.717 3.859-.123 5.068-1.763 5.068-1.763s-2.21 1.309-5.224.906c-.347-.718-1.03-4.737-1.03-4.737-.213-.025-.499.231-.642.487L12.208 17s-.005 1.674.058 1.94c.088.372.353 1.449.353 1.884 0 0-.606 1.335-.302 2.484.403 1.529.611 3.468.653 4.008.386 0 .724-.044 1.018-.104-.688-.618-.566-1.979-.853-3.065z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f3c4-1f3fe.svg b/public/emoji/1f3c4-1f3fe.svg
index dda836ca576fb36cd22a615e5aa0b804a63b3377..147c45aea9865a19cb69e8cb45507e7acbb633ca 100644
--- a/public/emoji/1f3c4-1f3fe.svg
+++ b/public/emoji/1f3c4-1f3fe.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#4289C1" d="M36 5v27s0 4-4 4H4c-4 0-4-4-4-4v-5s25-2 36-22z"/><path fill="#A7D28B" d="M30.59 20.432s2.33-2.136 1.924-3.049c-.408-.914-11.676.831-17.154 3.276-8.22 3.669-12.068 9.767-11.253 11.593.815 1.826 7.925 3.033 16.143-.635 5.48-2.445 14.301-9.669 13.895-10.582-.409-.913-3.555-.603-3.555-.603z"/><path fill="#F5F8FA" d="M34.145 21.035c-.408-.913-3.555-.604-3.555-.604s2.204-2.024 1.942-2.973L4.612 29.674c-.569 1.116-.747 2.037-.505 2.578.211.473.849.9 1.812 1.217l28.215-12.345c0-.027.02-.068.011-.089z"/><path fill="#AF7E57" d="M24.408 15c-3.401 0-6.462-3.95-6.8-4.4-.332-.441-.242-1.067.199-1.399.441-.331 1.066-.244 1.4.198.754 1.002 3.158 3.601 5.2 3.601.553 0 1 .448 1 1s-.446 1-.999 1zm-17 4c-.419 0-.809-.265-.949-.684-1.195-3.584.152-5.934 1.492-7.273 1.401-1.401 3.07-1.968 3.141-1.992.525-.176 1.091.109 1.265.632.174.523-.107 1.088-.629 1.264-.516.176-4.996 1.861-3.371 6.736.175.524-.108 1.091-.632 1.265-.105.035-.212.052-.317.052z"/><path fill="#67757F" d="M25.406 26c-.3 0-.605-.067-.893-.211l-2-1c-.439-.22-.78-.592-.963-1.046l-1.682-4.204-4.204-1.682c-1.025-.41-1.524-1.574-1.114-2.6.41-1.026 1.576-1.525 2.6-1.114l5.001 2c.508.203.91.606 1.114 1.114l1.717 4.294 1.32.66c.988.494 1.389 1.695.895 2.684-.35.701-1.056 1.105-1.791 1.105z"/><path fill="#67757F" d="M16.409 30c-.733.001-1.44-.404-1.791-1.105l-1-2c-.199-.397-.259-.851-.172-1.287l.848-4.241-2.602-4.337c-.568-.947-.261-2.175.686-2.744.946-.569 2.175-.261 2.744.686l3 4.999c.256.427.344.934.246 1.422l-.865 4.327.693 1.386c.494.988.093 2.189-.895 2.684-.286.143-.591.21-.892.21z"/><path fill="#AF7E57" d="M14.755.763c-1.678-.66-4.294.192-4.598 2.152-.302 1.947.252 5 1.962 4.816 1.793-.194 3.632-.584 4.359-2.43.727-1.846-.045-3.878-1.723-4.538z"/><path fill="#AF7E57" d="M16.002 5.776c2.442-2.869-3.441-2.589-3.441-2.589-1.113.04-.347 1.895-.871 2.908-.359.701 1.153 1.073 1.153 1.073s.694-.01.732.832v.008c.008.214-.014.469-.114.81-.498 1.686 1.766 2.72 2.264 1.03.197-.669.12-1.257.021-1.799L15.736 8c-.151-.807-.338-1.514.266-2.224z"/><path fill="#67757F" d="M18.408 8h-2.672l-.751.766L13.56 8h-2.152c-1.104 0-2 .896-2 2s.896 2 2 2v3.5c0 1.933 1.567 3.5 3.5 3.5s3.5-1.567 3.5-3.5V12c1.104 0 2-.896 2-2s-.895-2-2-2z"/><path fill="#60352A" d="M16.673 1.439C15.556.131 14.019-.412 11.386.606c-2.299.889-1.439 2.865-1.024 2.404.661-.734 1.555-.509 1.555-.509l.695 2.048s.331.199.469-.498c.138-.696 1.072-.768 1.378-.208.476.87-.147 1.037-.204 1.557-.179 1.645 1.643 1.582 1.643 1.582s.355.14.961-1.055c.606-1.192.923-3.189-.186-4.488z"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#4289C1" d="M36 5v27s0 4-4 4H4c-4 0-4-4-4-4v-5s25-2 36-22z"/><path fill="#1C6399" d="M31.844 23.243s2.565-1.635 2.258-2.288c-.309-.654-11.778.99-17.528 2.954-8.627 2.947-13.144 7.522-12.526 8.828.617 1.306 7.602 1.953 16.228-.993 5.752-1.964 15.368-7.524 15.06-8.177-.309-.653-3.492-.324-3.492-.324z"/><path fill="#A6D388" d="M31.474 22.747s2.65-1.619 2.349-2.291c-.303-.673-12.042.782-17.949 2.675C7.01 25.972 2.311 30.555 2.916 31.9c.605 1.345 7.723 2.141 16.585-.699 5.91-1.893 15.833-7.383 15.532-8.055-.303-.673-3.559-.399-3.559-.399z"/><path fill="#F5F8FA" d="M31.474 22.747s2.507-1.534 2.358-2.235L3.756 29.978c-.722.837-1.019 1.523-.84 1.922.156.348.755.657 1.7.878l30.395-9.566c.003-.02.029-.051.022-.066-.303-.673-3.559-.399-3.559-.399z"/><path fill="#AF7E57" d="M2.789 15.057c-.354.166-1.458.438-1.992.781-.432.278-.845.262-.727.612.102.302.508.216 1.227.132.719-.084 1.929-.289 2.325-.566l-.833-.959zm22.862-3.211c.379.095 1.515.151 2.104.386.477.19 1.122.088 1.073.455-.043.316-.701.317-1.422.371-.722.054-1.949.085-2.39-.113l.635-1.099zM14.698.997c-1.593-.627-4.077.182-4.365 2.043-.287 1.848.239 4.747 1.863 4.572 1.702-.184 3.448-.554 4.138-2.307.69-1.752-.043-3.681-1.636-4.308z"/><path fill="#AF7E57" d="M15.882 5.757c2.318-2.723-3.266-2.458-3.266-2.458-1.057.038-.329 1.799-.827 2.761-.341.665 1.095 1.018 1.095 1.018s.659-.01.694.79v.007c.008.204-.013.445-.108.769-.473 1.601 1.677 2.582 2.149.978.187-.635.114-1.193.02-1.708l-.009-.046c-.144-.766-.322-1.438.252-2.111z"/><path fill="#60352A" d="M16.518 1.64C15.457.398 13.998-.117 11.499.849c-2.183.844-1.366 2.72-.972 2.282.628-.696 1.477-.483 1.477-.483l.66 1.944s.314.189.445-.473 1.017-.729 1.308-.198c.452.826-.139.984-.193 1.478-.17 1.562 1.56 1.502 1.56 1.502s.337.132.912-1.001c.575-1.132.876-3.027-.178-4.26z"/><path fill="#AF7E57" d="M16.261 28.432c-.378-.1-.67-.432-.807-.785-.059-.152-.245-.89-.245-.89l-2.284.284c.043.214.114.512.185.94.054.324-.089.753.012.954.101.201.817.74 1.301.839 1.237.255 2.491-.342 2.644-.517.223-.254-.427-.725-.806-.825zm7.51-3.222c-.334-.065-.607-.336-.746-.634-.06-.129-.22-.651-.22-.651l-2.009.274c.05.183.129.438.216.804.066.278-.033.659.066.827.099.169.752.594 1.178.652 1.088.148 2.141-.443 2.264-.604.177-.233-.415-.603-.749-.668z"/><path fill="#292F33" d="M25.676 11.812c-.242-.036-2.877-.731-3.554-1.052-.903-.841-2.483-1.754-2.919-2.042s-.837-.637-1.828-.718h-1.639l-.751.766L13.56 8l-1.748.167c-2.198.338-4 3.024-4.794 4.151-.36.283-.685.614-.896.735-.389.223-2.813 1.505-3.334 2.005l.836 1.068c.312-.281 1.748-.596 2.748-1.046.396-.178 1.452-.296 1.982-.81l.017.017c1.396-.979 2.326-2.021 2.722-2.599L12.208 17s-.005 1.674.058 1.94c.088.372.353 1.449.353 1.884 0 0-.606 1.335-.302 2.484.403 1.529.611 3.468.653 4.008 1.412 0 2.24-.56 2.24-.56s-.278-.638-.165-1.577c.069-.572.58-1.601.58-2.45 0-.849-.095-1.367.031-1.719s.601-1.452.677-2.052c.02-.162.008-.374-.022-.6.534.292 1.493.792 2.084.954.849.232 1.494.595 1.718.79s.376.335.376.335-.201.557-.141 1.516c.055.877.433 1.658.54 2.703.893-.133 1.966-.567 1.966-.567s-.096-1.268-.078-1.848c.023-.706.412-2.193.265-2.824-.229-.981-1.5-2.047-2.677-2.948-1.177-.901-2.375-1.438-2.375-1.438.365-2.469-.005-3.781-.005-3.781s1.81.804 3.578 1.344c.577.285 2.27.562 3.989.5.432-.016.452-1.233.125-1.282z"/><path fill="#67757F" d="M7.265 13.194c.795-1.126 2.994-4.365 5.435-4.576 0 0 1.118 1.459 2.565 1.235 1.447-.224 1.482-1.318 1.482-1.318l1.727.149c.494.04.841.148 1.12.281-.163-.101-.304-.189-.391-.246-.435-.287-.837-.638-1.828-.719h-1.639l-.751.766L13.56 8l-1.748.167c-2.198.338-4 3.024-4.794 4.151-.36.283-.685.614-.896.735-.389.223-2.813 1.505-3.334 2.005l.288.368c1.224-.797 3.829-1.949 4.189-2.232zm15.956-1.75c.453.215 1.771.594 2.674.834-.016-.24-.089-.446-.219-.465-.2-.03-2.502-.686-3.513-1.033.212.162.682.465 1.058.664zm-2.139 11.291c-.06-.958.024-1.639-.072-1.843-.096-.204-.52-.455-.52-.455s-.201.557-.141 1.516c.055.877.433 1.658.54 2.703.309-.046.638-.128.938-.216-.613-.262-.707-1.099-.745-1.705z"/><path fill="#67757F" d="M13.135 24.147c-.303-1.149.176-2.906.176-2.906 0-.435-.23-1.357-.318-1.729-.063-.266-.103-2.438-.072-2.717 3.859-.123 5.068-1.763 5.068-1.763s-2.21 1.309-5.224.906c-.347-.718-1.03-4.737-1.03-4.737-.213-.025-.499.231-.642.487L12.208 17s-.005 1.674.058 1.94c.088.372.353 1.449.353 1.884 0 0-.606 1.335-.302 2.484.403 1.529.611 3.468.653 4.008.386 0 .724-.044 1.018-.104-.688-.618-.566-1.979-.853-3.065z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f3c4-1f3ff-200d-2640-fe0f.svg b/public/emoji/1f3c4-1f3ff-200d-2640-fe0f.svg
index 4bf28b0039b78d34cef399cd15de45572f1d51c1..8cb8ad8f9312ceb157612ebd80bee7cfa0275c7d 100644
--- a/public/emoji/1f3c4-1f3ff-200d-2640-fe0f.svg
+++ b/public/emoji/1f3c4-1f3ff-200d-2640-fe0f.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#4289C1" d="M36 5v27s0 4-4 4H4c-4 0-4-4-4-4v-5s25-2 36-22z"/><path fill="#E0245E" d="M30.59 20.432s2.33-2.136 1.924-3.049c-.408-.914-11.676.831-17.154 3.276-8.22 3.669-12.068 9.767-11.253 11.593.815 1.826 7.925 3.033 16.143-.635 5.48-2.445 14.301-9.669 13.895-10.582-.409-.913-3.555-.603-3.555-.603z"/><path fill="#F5F8FA" d="M34.145 21.035c-.408-.913-3.555-.604-3.555-.604s2.204-2.024 1.942-2.973L4.612 29.674c-.569 1.116-.747 2.037-.505 2.578.211.473.849.9 1.812 1.217l28.215-12.345c0-.027.02-.068.011-.089z"/><path fill="#7C533E" d="M24.408 15c-3.401 0-6.462-3.95-6.8-4.4-.332-.441-.242-1.067.199-1.399.441-.331 1.066-.244 1.4.198.754 1.002 3.158 3.601 5.2 3.601.553 0 1 .448 1 1s-.446 1-.999 1zm-17 4c-.419 0-.809-.265-.949-.684-1.195-3.584.152-5.934 1.492-7.273 1.401-1.401 3.07-1.968 3.141-1.992.525-.176 1.091.109 1.265.632.174.523-.107 1.088-.629 1.264-.516.176-4.996 1.861-3.371 6.736.175.524-.108 1.091-.632 1.265-.105.035-.212.052-.317.052z"/><path fill="#67757F" d="M25.406 26c-.3 0-.605-.067-.893-.211l-2-1c-.439-.22-.78-.592-.963-1.046l-1.682-4.204-4.204-1.682c-1.025-.41-1.524-1.574-1.114-2.6.41-1.026 1.576-1.525 2.6-1.114l5.001 2c.508.203.91.606 1.114 1.114l1.717 4.294 1.32.66c.988.494 1.389 1.695.895 2.684-.35.701-1.056 1.105-1.791 1.105z"/><path fill="#67757F" d="M16.409 30c-.733.001-1.44-.404-1.791-1.105l-1-2c-.199-.397-.259-.851-.172-1.287l.848-4.241-2.602-4.337c-.568-.947-.261-2.175.686-2.744.946-.569 2.175-.261 2.744.686l3 4.999c.256.427.344.934.246 1.422l-.865 4.327.693 1.386c.494.988.093 2.189-.895 2.684-.286.143-.591.21-.892.21z"/><path fill="#7C533E" d="M14.656.74c-1.684-.634-4.281.255-4.555 2.215-.272 1.947.326 4.985 2.029 4.775 1.786-.22 3.615-.636 4.312-2.489.697-1.851-.102-3.867-1.786-4.501z"/><path fill="#7C533E" d="M16.002 5.776c2.442-2.869-3.441-2.589-3.441-2.589-1.113.04-.347 1.895-.871 2.908-.359.701 1.153 1.073 1.153 1.073s.694-.01.732.832v.008c.008.214-.014.469-.114.81-.498 1.686 1.766 2.72 2.264 1.03.197-.669.12-1.257.021-1.799L15.736 8c-.151-.807-.338-1.514.266-2.224z"/><path fill="#67757F" d="M18.408 8h-2.672l-.751.766L13.56 8h-2.152c-1.104 0-2 .896-2 2s.896 2 2 2v3.5c0 1.933 1.567 3.5 3.5 3.5s3.5-1.567 3.5-3.5V12c1.104 0 2-.896 2-2s-.895-2-2-2z"/><path fill="#0B0200" d="M16.578 1.387C16.087.83 15.513.43 14.816.225c-.914-.268-2.022-.133-3.525.409-1.381.499-1.63 2.049-1.29 2.396.039.019.065.057.108.07.027.008.052.005.079.011.588.13 1.129-.284 1.804-.194.315.042.657.186 1.052.571.061.059.101.149.134.248.162.489.038 1.336.038 1.336s.272-.934.39-1.256c.11-.3.513-.569.799.001.248.495-.151 1.222-.422 1.235-.209.01-.029.565.352 1.057.5.645 1.086.786 1.374.815.112.011.534.139 1.122-1.061.588-1.2.874-3.197-.253-4.476z"/><path fill="#0B0200" d="M21.434 4.53c-1.209-.351-1.959-1.902-3.429-1.454-1.783.543-1.261 1.789-1.261 1.789s.443 1.264 1.783 1.648c.858.246 2.544.243 3.736-.577.917-.631 1.578-1.909 1.578-1.909-.557.58-1.494.767-2.407.503z"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#4289C1" d="M36 5v27s0 4-4 4H4c-4 0-4-4-4-4v-5s25-2 36-22z"/><path fill="#1C6399" d="M31.844 23.243s2.565-1.635 2.258-2.288c-.309-.654-11.778.99-17.528 2.954-8.627 2.947-13.144 7.522-12.526 8.828.617 1.306 7.602 1.953 16.228-.993 5.752-1.964 15.368-7.524 15.06-8.177-.309-.653-3.492-.324-3.492-.324z"/><path fill="#A6D388" d="M31.474 22.747s2.65-1.619 2.349-2.291c-.303-.673-12.042.782-17.949 2.675C7.01 25.972 2.311 30.555 2.916 31.9c.605 1.345 7.723 2.141 16.585-.699 5.91-1.893 15.833-7.383 15.532-8.055-.303-.673-3.559-.399-3.559-.399z"/><path fill="#F5F8FA" d="M31.474 22.747s2.507-1.534 2.358-2.235L3.756 29.978c-.722.837-1.019 1.523-.84 1.922.156.348.755.657 1.7.878l30.395-9.566c.003-.02.029-.051.022-.066-.303-.673-3.559-.399-3.559-.399z"/><path fill="#7C533E" d="M27.755 12.233c-.589-.235-1.348-.276-2.104-.386-1.198-.175-2.852-.765-3.529-1.086-.825-.495-2.577-1.661-3.012-1.948S18.093 8.128 17.375 8h-.156c.385.542.609 1.159.748 2.841 0 0 3.319 1.661 3.595 1.753 1.125.375 3.182.366 4.344.512.602.076 1.021-.014 1.499-.047.722-.049 1.38-.055 1.422-.371.05-.367-.595-.265-1.072-.455zM14.698.997c-1.593-.627-4.077.182-4.365 2.043-.287 1.848.239 4.747 1.863 4.572 1.702-.184 3.448-.554 4.138-2.307.69-1.752-.043-3.681-1.636-4.308z"/><path fill="#7C533E" d="M15.882 5.757c2.318-2.723-3.266-2.458-3.266-2.458-1.057.038-.329 1.799-.827 2.761-.341.665 1.095 1.018 1.095 1.018s.659-.01.694.79v.007c.008.204-.013.445-.108.769-.473 1.601 1.677 2.582 2.149.978.187-.635.114-1.193.02-1.708l-.009-.046c-.144-.766-.322-1.438.252-2.111zm-4.883 2.645c-1.666.993-3.368 3.049-3.98 3.914-.36.283-.686.614-.897.736-.389.223-2.154 1.432-3.334 2.005-.354.166-1.458.438-1.992.781-.432.278-.845.262-.727.612.102.302.508.216 1.227.132.719-.084 1.929-.289 2.325-.566.8-.531 3.347-1.156 4.597-2.031.221-.155 2.385-2.163 2.781-2.741.543-1.515.282-2.556 0-2.842z"/><path fill="#0B0200" d="M16.518 1.64C15.457.398 13.998-.117 11.499.849c-2.183.844-1.481 2.579-.972 2.282 1.869-1.09 2.899.514 3.697 2.269.523 1.151 1.56 1.502 1.56 1.502s.337.132.912-1.001.876-3.028-.178-4.261z"/><path fill="#7C533E" d="M16.261 28.432c-.378-.1-.67-.432-.807-.785-.059-.152-.365-1.001-.365-1.001H13.27c.043.214-.037.696-.134 1.197-.062.322-.114.892-.013 1.093.101.201.817.74 1.301.839 1.237.255 2.491-.342 2.644-.517.222-.255-.428-.726-.807-.826zm7.51-3.222c-.334-.065-.607-.336-.746-.634-.06-.129-.22-.651-.22-.651l-1.609.22c.05.183-.027.417-.008.793.017.335-.058.748.042.917.099.169.601.571 1.027.629 1.088.148 2.141-.443 2.264-.604.176-.235-.416-.605-.75-.67z"/><path fill="#0B0200" d="M16.188 2.219c.875-1.312 2.774-1.438 3.637-.469S21.01 4 22.163 4c.368 0 .552.344-.212.688S18.062 5.719 16.875 3.5c-.531-.656-.687-1.281-.687-1.281z"/><path fill="#292F33" d="M22.777 22.241c.023-.706.412-2.193.265-2.824-.229-.981-1.5-2.047-2.677-2.948-1.177-.901-2.375-1.438-2.375-1.438-.302-1.896.242-2.896.235-3.716-.006-.684-.433-2.648-1.006-3.315h-1.565s.246 1.013-.647 1.112C14.112 9.211 13.56 8 13.56 8l-1.748.167c-.278.043-.549.125-.813.236.376.639.23 2.285 0 2.841.823 1.188 1.536 3.003 1.146 5.256-.346 2.002.473 3.889.473 4.324 0 0-.503 1.749-.2 2.898.403 1.529.768 2.884.81 3.423 1.412 0 1.981-.39 1.981-.39s-.278-.638-.165-1.577c.069-.572.351-1.455.351-2.304 0-.849-.022-1.461.104-1.812s.52-1.576.812-2.704c.534.292 1.493.792 2.084.954.849.232 1.494.595 1.718.79s.376.335.376.335-.07.625-.01 1.583c.055.877.53 1.551.636 2.596.893-.133 1.739-.528 1.739-.528s-.096-1.267-.077-1.847z"/><path fill="#67757F" d="M12.375 8.594l.904-.086s1.202 1.373 2.096 1.274c.894-.099.841-1.354.841-1.354h1.269c-.085-.168-.173-.319-.266-.428h-1.565s.246 1.013-.647 1.112C14.112 9.211 13.56 8 13.56 8l-1.748.167c-.278.043-.549.125-.813.236.077.131.128.311.165.509.346-.118.973-.282 1.211-.318zm8.667 13.854c-.06-.958.01-1.583.01-1.583s-.151-.141-.376-.335c-.068-.059-.186-.136-.326-.218l.139.126s-.07.625-.01 1.583c.055.877.53 1.551.636 2.596.158-.024.313-.057.464-.093-.175-.763-.492-1.357-.537-2.076zm-8.061 1.701c-.303-1.149.2-2.898.2-2.898 0-.435-.798-2.791-.452-4.793 4-.021 5.26-1.427 5.26-1.427s-2.719 1.26-5.201.533c-.074-1.788-.788-3.661-1.707-4.579-.025.1-.053.188-.082.258.823 1.188 1.536 3.003 1.146 5.256-.346 2.002.473 3.889.473 4.324 0 0-.503 1.749-.2 2.898.403 1.529.768 2.884.81 3.423.178 0 .342-.006.494-.017-.129-.672-.421-1.766-.741-2.978z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f3c4-1f3ff-200d-2642-fe0f.svg b/public/emoji/1f3c4-1f3ff-200d-2642-fe0f.svg
index 292c60956d433e01c27ba70aa250c43873196a66..0e0ef2e9a2fb39ce1d377a2f3c363d6de9134029 100644
--- a/public/emoji/1f3c4-1f3ff-200d-2642-fe0f.svg
+++ b/public/emoji/1f3c4-1f3ff-200d-2642-fe0f.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#4289C1" d="M36 5v27s0 4-4 4H4c-4 0-4-4-4-4v-5s25-2 36-22z"/><path fill="#A7D28B" d="M30.59 20.432s2.33-2.136 1.924-3.049c-.408-.914-11.676.831-17.154 3.276-8.22 3.669-12.068 9.767-11.253 11.593.815 1.826 7.925 3.033 16.143-.635 5.48-2.445 14.301-9.669 13.895-10.582-.409-.913-3.555-.603-3.555-.603z"/><path fill="#F5F8FA" d="M34.145 21.035c-.408-.913-3.555-.604-3.555-.604s2.204-2.024 1.942-2.973L4.612 29.674c-.569 1.116-.747 2.037-.505 2.578.211.473.849.9 1.812 1.217l28.215-12.345c0-.027.02-.068.011-.089z"/><path fill="#7C533E" d="M24.408 15c-3.401 0-6.462-3.95-6.8-4.4-.332-.441-.242-1.067.199-1.399.441-.331 1.066-.244 1.4.198.754 1.002 3.158 3.601 5.2 3.601.553 0 1 .448 1 1s-.446 1-.999 1zm-17 4c-.419 0-.809-.265-.949-.684-1.195-3.584.152-5.934 1.492-7.273 1.401-1.401 3.07-1.968 3.141-1.992.525-.176 1.091.109 1.265.632.174.523-.107 1.088-.629 1.264-.516.176-4.996 1.861-3.371 6.736.175.524-.108 1.091-.632 1.265-.105.035-.212.052-.317.052z"/><path fill="#67757F" d="M25.406 26c-.3 0-.605-.067-.893-.211l-2-1c-.439-.22-.78-.592-.963-1.046l-1.682-4.204-4.204-1.682c-1.025-.41-1.524-1.574-1.114-2.6.41-1.026 1.576-1.525 2.6-1.114l5.001 2c.508.203.91.606 1.114 1.114l1.717 4.294 1.32.66c.988.494 1.389 1.695.895 2.684-.35.701-1.056 1.105-1.791 1.105z"/><path fill="#67757F" d="M16.409 30c-.733.001-1.44-.404-1.791-1.105l-1-2c-.199-.397-.259-.851-.172-1.287l.848-4.241-2.602-4.337c-.568-.947-.261-2.175.686-2.744.946-.569 2.175-.261 2.744.686l3 4.999c.256.427.344.934.246 1.422l-.865 4.327.693 1.386c.494.988.093 2.189-.895 2.684-.286.143-.591.21-.892.21z"/><path fill="#7C533E" d="M14.755.763c-1.678-.66-4.294.192-4.598 2.152-.302 1.947.252 5 1.962 4.816 1.793-.194 3.632-.584 4.359-2.43.727-1.846-.045-3.878-1.723-4.538z"/><path fill="#7C533E" d="M16.002 5.776c2.442-2.869-3.441-2.589-3.441-2.589-1.113.04-.347 1.895-.871 2.908-.359.701 1.153 1.073 1.153 1.073s.694-.01.732.832v.008c.008.214-.014.469-.114.81-.498 1.686 1.766 2.72 2.264 1.03.197-.669.12-1.257.021-1.799L15.736 8c-.151-.807-.338-1.514.266-2.224z"/><path fill="#67757F" d="M18.408 8h-2.672l-.751.766L13.56 8h-2.152c-1.104 0-2 .896-2 2s.896 2 2 2v3.5c0 1.933 1.567 3.5 3.5 3.5s3.5-1.567 3.5-3.5V12c1.104 0 2-.896 2-2s-.895-2-2-2z"/><path fill="#0B0200" d="M16.673 1.439C15.556.131 14.019-.412 11.386.606c-2.299.889-1.439 2.865-1.024 2.404.661-.734 1.555-.509 1.555-.509l.695 2.048s.331.199.469-.498c.138-.696 1.072-.768 1.378-.208.476.87-.147 1.037-.204 1.557-.179 1.645 1.643 1.582 1.643 1.582s.355.14.961-1.055c.606-1.192.923-3.189-.186-4.488z"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#4289C1" d="M36 5v27s0 4-4 4H4c-4 0-4-4-4-4v-5s25-2 36-22z"/><path fill="#1C6399" d="M31.844 23.243s2.565-1.635 2.258-2.288c-.309-.654-11.778.99-17.528 2.954-8.627 2.947-13.144 7.522-12.526 8.828.617 1.306 7.602 1.953 16.228-.993 5.752-1.964 15.368-7.524 15.06-8.177-.309-.653-3.492-.324-3.492-.324z"/><path fill="#A6D388" d="M31.474 22.747s2.65-1.619 2.349-2.291c-.303-.673-12.042.782-17.949 2.675C7.01 25.972 2.311 30.555 2.916 31.9c.605 1.345 7.723 2.141 16.585-.699 5.91-1.893 15.833-7.383 15.532-8.055-.303-.673-3.559-.399-3.559-.399z"/><path fill="#F5F8FA" d="M31.474 22.747s2.507-1.534 2.358-2.235L3.756 29.978c-.722.837-1.019 1.523-.84 1.922.156.348.755.657 1.7.878l30.395-9.566c.003-.02.029-.051.022-.066-.303-.673-3.559-.399-3.559-.399z"/><path fill="#7C533E" d="M2.789 15.057c-.354.166-1.458.438-1.992.781-.432.278-.845.262-.727.612.102.302.508.216 1.227.132.719-.084 1.929-.289 2.325-.566l-.833-.959zm22.862-3.211c.379.095 1.515.151 2.104.386.477.19 1.122.088 1.073.455-.043.316-.701.317-1.422.371-.722.054-1.949.085-2.39-.113l.635-1.099zM14.698.997c-1.593-.627-4.077.182-4.365 2.043-.287 1.848.239 4.747 1.863 4.572 1.702-.184 3.448-.554 4.138-2.307.69-1.752-.043-3.681-1.636-4.308z"/><path fill="#7C533E" d="M15.882 5.757c2.318-2.723-3.266-2.458-3.266-2.458-1.057.038-.329 1.799-.827 2.761-.341.665 1.095 1.018 1.095 1.018s.659-.01.694.79v.007c.008.204-.013.445-.108.769-.473 1.601 1.677 2.582 2.149.978.187-.635.114-1.193.02-1.708l-.009-.046c-.144-.766-.322-1.438.252-2.111z"/><path fill="#0B0200" d="M16.518 1.64C15.457.398 13.998-.117 11.499.849c-2.183.844-1.366 2.72-.972 2.282.628-.696 1.477-.483 1.477-.483l.66 1.944s.314.189.445-.473 1.017-.729 1.308-.198c.452.826-.139.984-.193 1.478-.17 1.562 1.56 1.502 1.56 1.502s.337.132.912-1.001c.575-1.132.876-3.027-.178-4.26z"/><path fill="#7C533E" d="M16.261 28.432c-.378-.1-.67-.432-.807-.785-.059-.152-.245-.89-.245-.89l-2.284.284c.043.214.114.512.185.94.054.324-.089.753.012.954.101.201.817.74 1.301.839 1.237.255 2.491-.342 2.644-.517.223-.254-.427-.725-.806-.825zm7.51-3.222c-.334-.065-.607-.336-.746-.634-.06-.129-.22-.651-.22-.651l-2.009.274c.05.183.129.438.216.804.066.278-.033.659.066.827.099.169.752.594 1.178.652 1.088.148 2.141-.443 2.264-.604.177-.233-.415-.603-.749-.668z"/><path fill="#292F33" d="M25.676 11.812c-.242-.036-2.877-.731-3.554-1.052-.903-.841-2.483-1.754-2.919-2.042s-.837-.637-1.828-.718h-1.639l-.751.766L13.56 8l-1.748.167c-2.198.338-4 3.024-4.794 4.151-.36.283-.685.614-.896.735-.389.223-2.813 1.505-3.334 2.005l.836 1.068c.312-.281 1.748-.596 2.748-1.046.396-.178 1.452-.296 1.982-.81l.017.017c1.396-.979 2.326-2.021 2.722-2.599L12.208 17s-.005 1.674.058 1.94c.088.372.353 1.449.353 1.884 0 0-.606 1.335-.302 2.484.403 1.529.611 3.468.653 4.008 1.412 0 2.24-.56 2.24-.56s-.278-.638-.165-1.577c.069-.572.58-1.601.58-2.45 0-.849-.095-1.367.031-1.719s.601-1.452.677-2.052c.02-.162.008-.374-.022-.6.534.292 1.493.792 2.084.954.849.232 1.494.595 1.718.79s.376.335.376.335-.201.557-.141 1.516c.055.877.433 1.658.54 2.703.893-.133 1.966-.567 1.966-.567s-.096-1.268-.078-1.848c.023-.706.412-2.193.265-2.824-.229-.981-1.5-2.047-2.677-2.948-1.177-.901-2.375-1.438-2.375-1.438.365-2.469-.005-3.781-.005-3.781s1.81.804 3.578 1.344c.577.285 2.27.562 3.989.5.432-.016.452-1.233.125-1.282z"/><path fill="#67757F" d="M7.265 13.194c.795-1.126 2.994-4.365 5.435-4.576 0 0 1.118 1.459 2.565 1.235 1.447-.224 1.482-1.318 1.482-1.318l1.727.149c.494.04.841.148 1.12.281-.163-.101-.304-.189-.391-.246-.435-.287-.837-.638-1.828-.719h-1.639l-.751.766L13.56 8l-1.748.167c-2.198.338-4 3.024-4.794 4.151-.36.283-.685.614-.896.735-.389.223-2.813 1.505-3.334 2.005l.288.368c1.224-.797 3.829-1.949 4.189-2.232zm15.956-1.75c.453.215 1.771.594 2.674.834-.016-.24-.089-.446-.219-.465-.2-.03-2.502-.686-3.513-1.033.212.162.682.465 1.058.664zm-2.139 11.291c-.06-.958.024-1.639-.072-1.843-.096-.204-.52-.455-.52-.455s-.201.557-.141 1.516c.055.877.433 1.658.54 2.703.309-.046.638-.128.938-.216-.613-.262-.707-1.099-.745-1.705z"/><path fill="#67757F" d="M13.135 24.147c-.303-1.149.176-2.906.176-2.906 0-.435-.23-1.357-.318-1.729-.063-.266-.103-2.438-.072-2.717 3.859-.123 5.068-1.763 5.068-1.763s-2.21 1.309-5.224.906c-.347-.718-1.03-4.737-1.03-4.737-.213-.025-.499.231-.642.487L12.208 17s-.005 1.674.058 1.94c.088.372.353 1.449.353 1.884 0 0-.606 1.335-.302 2.484.403 1.529.611 3.468.653 4.008.386 0 .724-.044 1.018-.104-.688-.618-.566-1.979-.853-3.065z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f3c4-1f3ff.svg b/public/emoji/1f3c4-1f3ff.svg
index 292c60956d433e01c27ba70aa250c43873196a66..0e0ef2e9a2fb39ce1d377a2f3c363d6de9134029 100644
--- a/public/emoji/1f3c4-1f3ff.svg
+++ b/public/emoji/1f3c4-1f3ff.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#4289C1" d="M36 5v27s0 4-4 4H4c-4 0-4-4-4-4v-5s25-2 36-22z"/><path fill="#A7D28B" d="M30.59 20.432s2.33-2.136 1.924-3.049c-.408-.914-11.676.831-17.154 3.276-8.22 3.669-12.068 9.767-11.253 11.593.815 1.826 7.925 3.033 16.143-.635 5.48-2.445 14.301-9.669 13.895-10.582-.409-.913-3.555-.603-3.555-.603z"/><path fill="#F5F8FA" d="M34.145 21.035c-.408-.913-3.555-.604-3.555-.604s2.204-2.024 1.942-2.973L4.612 29.674c-.569 1.116-.747 2.037-.505 2.578.211.473.849.9 1.812 1.217l28.215-12.345c0-.027.02-.068.011-.089z"/><path fill="#7C533E" d="M24.408 15c-3.401 0-6.462-3.95-6.8-4.4-.332-.441-.242-1.067.199-1.399.441-.331 1.066-.244 1.4.198.754 1.002 3.158 3.601 5.2 3.601.553 0 1 .448 1 1s-.446 1-.999 1zm-17 4c-.419 0-.809-.265-.949-.684-1.195-3.584.152-5.934 1.492-7.273 1.401-1.401 3.07-1.968 3.141-1.992.525-.176 1.091.109 1.265.632.174.523-.107 1.088-.629 1.264-.516.176-4.996 1.861-3.371 6.736.175.524-.108 1.091-.632 1.265-.105.035-.212.052-.317.052z"/><path fill="#67757F" d="M25.406 26c-.3 0-.605-.067-.893-.211l-2-1c-.439-.22-.78-.592-.963-1.046l-1.682-4.204-4.204-1.682c-1.025-.41-1.524-1.574-1.114-2.6.41-1.026 1.576-1.525 2.6-1.114l5.001 2c.508.203.91.606 1.114 1.114l1.717 4.294 1.32.66c.988.494 1.389 1.695.895 2.684-.35.701-1.056 1.105-1.791 1.105z"/><path fill="#67757F" d="M16.409 30c-.733.001-1.44-.404-1.791-1.105l-1-2c-.199-.397-.259-.851-.172-1.287l.848-4.241-2.602-4.337c-.568-.947-.261-2.175.686-2.744.946-.569 2.175-.261 2.744.686l3 4.999c.256.427.344.934.246 1.422l-.865 4.327.693 1.386c.494.988.093 2.189-.895 2.684-.286.143-.591.21-.892.21z"/><path fill="#7C533E" d="M14.755.763c-1.678-.66-4.294.192-4.598 2.152-.302 1.947.252 5 1.962 4.816 1.793-.194 3.632-.584 4.359-2.43.727-1.846-.045-3.878-1.723-4.538z"/><path fill="#7C533E" d="M16.002 5.776c2.442-2.869-3.441-2.589-3.441-2.589-1.113.04-.347 1.895-.871 2.908-.359.701 1.153 1.073 1.153 1.073s.694-.01.732.832v.008c.008.214-.014.469-.114.81-.498 1.686 1.766 2.72 2.264 1.03.197-.669.12-1.257.021-1.799L15.736 8c-.151-.807-.338-1.514.266-2.224z"/><path fill="#67757F" d="M18.408 8h-2.672l-.751.766L13.56 8h-2.152c-1.104 0-2 .896-2 2s.896 2 2 2v3.5c0 1.933 1.567 3.5 3.5 3.5s3.5-1.567 3.5-3.5V12c1.104 0 2-.896 2-2s-.895-2-2-2z"/><path fill="#0B0200" d="M16.673 1.439C15.556.131 14.019-.412 11.386.606c-2.299.889-1.439 2.865-1.024 2.404.661-.734 1.555-.509 1.555-.509l.695 2.048s.331.199.469-.498c.138-.696 1.072-.768 1.378-.208.476.87-.147 1.037-.204 1.557-.179 1.645 1.643 1.582 1.643 1.582s.355.14.961-1.055c.606-1.192.923-3.189-.186-4.488z"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#4289C1" d="M36 5v27s0 4-4 4H4c-4 0-4-4-4-4v-5s25-2 36-22z"/><path fill="#1C6399" d="M31.844 23.243s2.565-1.635 2.258-2.288c-.309-.654-11.778.99-17.528 2.954-8.627 2.947-13.144 7.522-12.526 8.828.617 1.306 7.602 1.953 16.228-.993 5.752-1.964 15.368-7.524 15.06-8.177-.309-.653-3.492-.324-3.492-.324z"/><path fill="#A6D388" d="M31.474 22.747s2.65-1.619 2.349-2.291c-.303-.673-12.042.782-17.949 2.675C7.01 25.972 2.311 30.555 2.916 31.9c.605 1.345 7.723 2.141 16.585-.699 5.91-1.893 15.833-7.383 15.532-8.055-.303-.673-3.559-.399-3.559-.399z"/><path fill="#F5F8FA" d="M31.474 22.747s2.507-1.534 2.358-2.235L3.756 29.978c-.722.837-1.019 1.523-.84 1.922.156.348.755.657 1.7.878l30.395-9.566c.003-.02.029-.051.022-.066-.303-.673-3.559-.399-3.559-.399z"/><path fill="#7C533E" d="M2.789 15.057c-.354.166-1.458.438-1.992.781-.432.278-.845.262-.727.612.102.302.508.216 1.227.132.719-.084 1.929-.289 2.325-.566l-.833-.959zm22.862-3.211c.379.095 1.515.151 2.104.386.477.19 1.122.088 1.073.455-.043.316-.701.317-1.422.371-.722.054-1.949.085-2.39-.113l.635-1.099zM14.698.997c-1.593-.627-4.077.182-4.365 2.043-.287 1.848.239 4.747 1.863 4.572 1.702-.184 3.448-.554 4.138-2.307.69-1.752-.043-3.681-1.636-4.308z"/><path fill="#7C533E" d="M15.882 5.757c2.318-2.723-3.266-2.458-3.266-2.458-1.057.038-.329 1.799-.827 2.761-.341.665 1.095 1.018 1.095 1.018s.659-.01.694.79v.007c.008.204-.013.445-.108.769-.473 1.601 1.677 2.582 2.149.978.187-.635.114-1.193.02-1.708l-.009-.046c-.144-.766-.322-1.438.252-2.111z"/><path fill="#0B0200" d="M16.518 1.64C15.457.398 13.998-.117 11.499.849c-2.183.844-1.366 2.72-.972 2.282.628-.696 1.477-.483 1.477-.483l.66 1.944s.314.189.445-.473 1.017-.729 1.308-.198c.452.826-.139.984-.193 1.478-.17 1.562 1.56 1.502 1.56 1.502s.337.132.912-1.001c.575-1.132.876-3.027-.178-4.26z"/><path fill="#7C533E" d="M16.261 28.432c-.378-.1-.67-.432-.807-.785-.059-.152-.245-.89-.245-.89l-2.284.284c.043.214.114.512.185.94.054.324-.089.753.012.954.101.201.817.74 1.301.839 1.237.255 2.491-.342 2.644-.517.223-.254-.427-.725-.806-.825zm7.51-3.222c-.334-.065-.607-.336-.746-.634-.06-.129-.22-.651-.22-.651l-2.009.274c.05.183.129.438.216.804.066.278-.033.659.066.827.099.169.752.594 1.178.652 1.088.148 2.141-.443 2.264-.604.177-.233-.415-.603-.749-.668z"/><path fill="#292F33" d="M25.676 11.812c-.242-.036-2.877-.731-3.554-1.052-.903-.841-2.483-1.754-2.919-2.042s-.837-.637-1.828-.718h-1.639l-.751.766L13.56 8l-1.748.167c-2.198.338-4 3.024-4.794 4.151-.36.283-.685.614-.896.735-.389.223-2.813 1.505-3.334 2.005l.836 1.068c.312-.281 1.748-.596 2.748-1.046.396-.178 1.452-.296 1.982-.81l.017.017c1.396-.979 2.326-2.021 2.722-2.599L12.208 17s-.005 1.674.058 1.94c.088.372.353 1.449.353 1.884 0 0-.606 1.335-.302 2.484.403 1.529.611 3.468.653 4.008 1.412 0 2.24-.56 2.24-.56s-.278-.638-.165-1.577c.069-.572.58-1.601.58-2.45 0-.849-.095-1.367.031-1.719s.601-1.452.677-2.052c.02-.162.008-.374-.022-.6.534.292 1.493.792 2.084.954.849.232 1.494.595 1.718.79s.376.335.376.335-.201.557-.141 1.516c.055.877.433 1.658.54 2.703.893-.133 1.966-.567 1.966-.567s-.096-1.268-.078-1.848c.023-.706.412-2.193.265-2.824-.229-.981-1.5-2.047-2.677-2.948-1.177-.901-2.375-1.438-2.375-1.438.365-2.469-.005-3.781-.005-3.781s1.81.804 3.578 1.344c.577.285 2.27.562 3.989.5.432-.016.452-1.233.125-1.282z"/><path fill="#67757F" d="M7.265 13.194c.795-1.126 2.994-4.365 5.435-4.576 0 0 1.118 1.459 2.565 1.235 1.447-.224 1.482-1.318 1.482-1.318l1.727.149c.494.04.841.148 1.12.281-.163-.101-.304-.189-.391-.246-.435-.287-.837-.638-1.828-.719h-1.639l-.751.766L13.56 8l-1.748.167c-2.198.338-4 3.024-4.794 4.151-.36.283-.685.614-.896.735-.389.223-2.813 1.505-3.334 2.005l.288.368c1.224-.797 3.829-1.949 4.189-2.232zm15.956-1.75c.453.215 1.771.594 2.674.834-.016-.24-.089-.446-.219-.465-.2-.03-2.502-.686-3.513-1.033.212.162.682.465 1.058.664zm-2.139 11.291c-.06-.958.024-1.639-.072-1.843-.096-.204-.52-.455-.52-.455s-.201.557-.141 1.516c.055.877.433 1.658.54 2.703.309-.046.638-.128.938-.216-.613-.262-.707-1.099-.745-1.705z"/><path fill="#67757F" d="M13.135 24.147c-.303-1.149.176-2.906.176-2.906 0-.435-.23-1.357-.318-1.729-.063-.266-.103-2.438-.072-2.717 3.859-.123 5.068-1.763 5.068-1.763s-2.21 1.309-5.224.906c-.347-.718-1.03-4.737-1.03-4.737-.213-.025-.499.231-.642.487L12.208 17s-.005 1.674.058 1.94c.088.372.353 1.449.353 1.884 0 0-.606 1.335-.302 2.484.403 1.529.611 3.468.653 4.008.386 0 .724-.044 1.018-.104-.688-.618-.566-1.979-.853-3.065z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f3c4-200d-2640-fe0f.svg b/public/emoji/1f3c4-200d-2640-fe0f.svg
index cfa17057a86ddd94954dd6e24e882aea6d73b632..c33ecc72f8de39324b60362ecd16d9b6a5796d90 100644
--- a/public/emoji/1f3c4-200d-2640-fe0f.svg
+++ b/public/emoji/1f3c4-200d-2640-fe0f.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#4289C1" d="M36 5v27s0 4-4 4H4c-4 0-4-4-4-4v-5s25-2 36-22z"/><path fill="#E0245E" d="M30.59 20.432s2.33-2.136 1.924-3.049c-.408-.914-11.676.831-17.154 3.276-8.22 3.669-12.068 9.767-11.253 11.593.815 1.826 7.925 3.033 16.143-.635 5.48-2.445 14.301-9.669 13.895-10.582-.409-.913-3.555-.603-3.555-.603z"/><path fill="#F5F8FA" d="M34.145 21.035c-.408-.913-3.555-.604-3.555-.604s2.204-2.024 1.942-2.973L4.612 29.674c-.569 1.116-.747 2.037-.505 2.578.211.473.849.9 1.812 1.217l28.215-12.345c0-.027.02-.068.011-.089z"/><path fill="#FFDC5D" d="M24.408 15c-3.401 0-6.462-3.95-6.8-4.4-.332-.441-.242-1.067.199-1.399.441-.331 1.066-.244 1.4.198.754 1.002 3.158 3.601 5.2 3.601.553 0 1 .448 1 1s-.446 1-.999 1zm-17 4c-.419 0-.809-.265-.949-.684-1.195-3.584.152-5.934 1.492-7.273 1.401-1.401 3.07-1.968 3.141-1.992.525-.176 1.091.109 1.265.632.174.523-.107 1.088-.629 1.264-.516.176-4.996 1.861-3.371 6.736.175.524-.108 1.091-.632 1.265-.105.035-.212.052-.317.052z"/><path fill="#67757F" d="M25.406 26c-.3 0-.605-.067-.893-.211l-2-1c-.439-.22-.78-.592-.963-1.046l-1.682-4.204-4.204-1.682c-1.025-.41-1.524-1.574-1.114-2.6.41-1.026 1.576-1.525 2.6-1.114l5.001 2c.508.203.91.606 1.114 1.114l1.717 4.294 1.32.66c.988.494 1.389 1.695.895 2.684-.35.701-1.056 1.105-1.791 1.105z"/><path fill="#67757F" d="M16.409 30c-.733.001-1.44-.404-1.791-1.105l-1-2c-.199-.397-.259-.851-.172-1.287l.848-4.241-2.602-4.337c-.568-.947-.261-2.175.686-2.744.946-.569 2.175-.261 2.744.686l3 4.999c.256.427.344.934.246 1.422l-.865 4.327.693 1.386c.494.988.093 2.189-.895 2.684-.286.143-.591.21-.892.21z"/><path fill="#FFDC5D" d="M14.656.74c-1.684-.634-4.281.255-4.555 2.215-.272 1.947.326 4.985 2.029 4.775 1.786-.22 3.615-.636 4.312-2.489.697-1.851-.102-3.867-1.786-4.501z"/><path fill="#FFDC5D" d="M16.002 5.776c2.442-2.869-3.441-2.589-3.441-2.589-1.113.04-.347 1.895-.871 2.908-.359.701 1.153 1.073 1.153 1.073s.694-.01.732.832v.008c.008.214-.014.469-.114.81-.498 1.686 1.766 2.72 2.264 1.03.197-.669.12-1.257.021-1.799L15.736 8c-.151-.807-.338-1.514.266-2.224z"/><path fill="#67757F" d="M18.408 8h-2.672l-.751.766L13.56 8h-2.152c-1.104 0-2 .896-2 2s.896 2 2 2v3.5c0 1.933 1.567 3.5 3.5 3.5s3.5-1.567 3.5-3.5V12c1.104 0 2-.896 2-2s-.895-2-2-2z"/><path fill="#FFAC33" d="M16.578 1.387C16.087.83 15.513.43 14.816.225c-.914-.268-2.022-.133-3.525.409-1.381.499-1.63 2.049-1.29 2.396.039.019.065.057.108.07.027.008.052.005.079.011.588.13 1.129-.284 1.804-.194.315.042.657.186 1.052.571.061.059.101.149.134.248.162.489.038 1.336.038 1.336s.272-.934.39-1.256c.11-.3.513-.569.799.001.248.495-.151 1.222-.422 1.235-.209.01-.029.565.352 1.057.5.645 1.086.786 1.374.815.112.011.534.139 1.122-1.061.588-1.2.874-3.197-.253-4.476z"/><path fill="#FFAC33" d="M21.434 4.53c-1.209-.351-1.959-1.902-3.429-1.454-1.783.543-1.261 1.789-1.261 1.789s.443 1.264 1.783 1.648c.858.246 2.544.243 3.736-.577.917-.631 1.578-1.909 1.578-1.909-.557.58-1.494.767-2.407.503z"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#4289C1" d="M36 5v27s0 4-4 4H4c-4 0-4-4-4-4v-5s25-2 36-22z"/><path fill="#1C6399" d="M31.844 23.243s2.565-1.635 2.258-2.288c-.309-.654-11.778.99-17.528 2.954-8.627 2.947-13.144 7.522-12.526 8.828.617 1.306 7.602 1.953 16.228-.993 5.752-1.964 15.368-7.524 15.06-8.177-.309-.653-3.492-.324-3.492-.324z"/><path fill="#A6D388" d="M31.474 22.747s2.65-1.619 2.349-2.291c-.303-.673-12.042.782-17.949 2.675C7.01 25.972 2.311 30.555 2.916 31.9c.605 1.345 7.723 2.141 16.585-.699 5.91-1.893 15.833-7.383 15.532-8.055-.303-.673-3.559-.399-3.559-.399z"/><path fill="#F5F8FA" d="M31.474 22.747s2.507-1.534 2.358-2.235L3.756 29.978c-.722.837-1.019 1.523-.84 1.922.156.348.755.657 1.7.878l30.395-9.566c.003-.02.029-.051.022-.066-.303-.673-3.559-.399-3.559-.399z"/><path fill="#FFDC5D" d="M27.755 12.233c-.589-.235-1.348-.276-2.104-.386-1.198-.175-2.852-.765-3.529-1.086-.825-.495-2.577-1.661-3.012-1.948S18.093 8.128 17.375 8h-.156c.385.542.609 1.159.748 2.841 0 0 3.319 1.661 3.595 1.753 1.125.375 3.182.366 4.344.512.602.076 1.021-.014 1.499-.047.722-.049 1.38-.055 1.422-.371.05-.367-.595-.265-1.072-.455zM14.698.997c-1.593-.627-4.077.182-4.365 2.043-.287 1.848.239 4.747 1.863 4.572 1.702-.184 3.448-.554 4.138-2.307.69-1.752-.043-3.681-1.636-4.308z"/><path fill="#FFDC5D" d="M15.882 5.757c2.318-2.723-3.266-2.458-3.266-2.458-1.057.038-.329 1.799-.827 2.761-.341.665 1.095 1.018 1.095 1.018s.659-.01.694.79v.007c.008.204-.013.445-.108.769-.473 1.601 1.677 2.582 2.149.978.187-.635.114-1.193.02-1.708l-.009-.046c-.144-.766-.322-1.438.252-2.111zm-4.883 2.645c-1.666.993-3.368 3.049-3.98 3.914-.36.283-.686.614-.897.736-.389.223-2.154 1.432-3.334 2.005-.354.166-1.458.438-1.992.781-.432.278-.845.262-.727.612.102.302.508.216 1.227.132.719-.084 1.929-.289 2.325-.566.8-.531 3.347-1.156 4.597-2.031.221-.155 2.385-2.163 2.781-2.741.543-1.515.282-2.556 0-2.842z"/><path fill="#FFAC33" d="M16.518 1.64C15.457.398 13.998-.117 11.499.849c-2.183.844-1.481 2.579-.972 2.282 1.869-1.09 2.899.514 3.697 2.269.523 1.151 1.56 1.502 1.56 1.502s.337.132.912-1.001.876-3.028-.178-4.261z"/><path fill="#FFDC5D" d="M16.261 28.432c-.378-.1-.67-.432-.807-.785-.059-.152-.365-1.001-.365-1.001H13.27c.043.214-.037.696-.134 1.197-.062.322-.114.892-.013 1.093.101.201.817.74 1.301.839 1.237.255 2.491-.342 2.644-.517.222-.255-.428-.726-.807-.826zm7.51-3.222c-.334-.065-.607-.336-.746-.634-.06-.129-.22-.651-.22-.651l-1.609.22c.05.183-.027.417-.008.793.017.335-.058.748.042.917.099.169.601.571 1.027.629 1.088.148 2.141-.443 2.264-.604.176-.235-.416-.605-.75-.67z"/><path fill="#FFAC33" d="M16.188 2.219c.875-1.312 2.774-1.438 3.637-.469S21.01 4 22.163 4c.368 0 .552.344-.212.688S18.062 5.719 16.875 3.5c-.531-.656-.687-1.281-.687-1.281z"/><path fill="#292F33" d="M22.777 22.241c.023-.706.412-2.193.265-2.824-.229-.981-1.5-2.047-2.677-2.948-1.177-.901-2.375-1.438-2.375-1.438-.302-1.896.242-2.896.235-3.716-.006-.684-.433-2.648-1.006-3.315h-1.565s.246 1.013-.647 1.112C14.112 9.211 13.56 8 13.56 8l-1.748.167c-.278.043-.549.125-.813.236.376.639.23 2.285 0 2.841.823 1.188 1.536 3.003 1.146 5.256-.346 2.002.473 3.889.473 4.324 0 0-.503 1.749-.2 2.898.403 1.529.768 2.884.81 3.423 1.412 0 1.981-.39 1.981-.39s-.278-.638-.165-1.577c.069-.572.351-1.455.351-2.304 0-.849-.022-1.461.104-1.812s.52-1.576.812-2.704c.534.292 1.493.792 2.084.954.849.232 1.494.595 1.718.79s.376.335.376.335-.07.625-.01 1.583c.055.877.53 1.551.636 2.596.893-.133 1.739-.528 1.739-.528s-.096-1.267-.077-1.847z"/><path fill="#67757F" d="M12.375 8.594l.904-.086s1.202 1.373 2.096 1.274c.894-.099.841-1.354.841-1.354h1.269c-.085-.168-.173-.319-.266-.428h-1.565s.246 1.013-.647 1.112C14.112 9.211 13.56 8 13.56 8l-1.748.167c-.278.043-.549.125-.813.236.077.131.128.311.165.509.346-.118.973-.282 1.211-.318zm8.667 13.854c-.06-.958.01-1.583.01-1.583s-.151-.141-.376-.335c-.068-.059-.186-.136-.326-.218l.139.126s-.07.625-.01 1.583c.055.877.53 1.551.636 2.596.158-.024.313-.057.464-.093-.175-.763-.492-1.357-.537-2.076zm-8.061 1.701c-.303-1.149.2-2.898.2-2.898 0-.435-.798-2.791-.452-4.793 4-.021 5.26-1.427 5.26-1.427s-2.719 1.26-5.201.533c-.074-1.788-.788-3.661-1.707-4.579-.025.1-.053.188-.082.258.823 1.188 1.536 3.003 1.146 5.256-.346 2.002.473 3.889.473 4.324 0 0-.503 1.749-.2 2.898.403 1.529.768 2.884.81 3.423.178 0 .342-.006.494-.017-.129-.672-.421-1.766-.741-2.978z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f3c4-200d-2642-fe0f.svg b/public/emoji/1f3c4-200d-2642-fe0f.svg
index a69ddc50e07170c0770b517093c22696bf5e7f72..6da42a5c0f67e7e1e45a5a4dfd3a54e44ac565bc 100644
--- a/public/emoji/1f3c4-200d-2642-fe0f.svg
+++ b/public/emoji/1f3c4-200d-2642-fe0f.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#4289C1" d="M36 5v27s0 4-4 4H4c-4 0-4-4-4-4v-5s25-2 36-22z"/><path fill="#A7D28B" d="M30.59 20.432s2.33-2.136 1.924-3.049c-.408-.914-11.676.831-17.154 3.276-8.22 3.669-12.068 9.767-11.253 11.593.815 1.826 7.925 3.033 16.143-.635 5.48-2.445 14.301-9.669 13.895-10.582-.409-.913-3.555-.603-3.555-.603z"/><path fill="#F5F8FA" d="M34.145 21.035c-.408-.913-3.555-.604-3.555-.604s2.204-2.024 1.942-2.973L4.612 29.674c-.569 1.116-.747 2.037-.505 2.578.211.473.849.9 1.812 1.217l28.215-12.345c0-.027.02-.068.011-.089z"/><path fill="#FFDC5D" d="M24.408 15c-3.401 0-6.462-3.95-6.8-4.4-.332-.441-.242-1.067.199-1.399.441-.331 1.066-.244 1.4.198.754 1.002 3.158 3.601 5.2 3.601.553 0 1 .448 1 1s-.446 1-.999 1zm-17 4c-.419 0-.809-.265-.949-.684-1.195-3.584.152-5.934 1.492-7.273 1.401-1.401 3.07-1.968 3.141-1.992.525-.176 1.091.109 1.265.632.174.523-.107 1.088-.629 1.264-.516.176-4.996 1.861-3.371 6.736.175.524-.108 1.091-.632 1.265-.105.035-.212.052-.317.052z"/><path fill="#67757F" d="M25.406 26c-.3 0-.605-.067-.893-.211l-2-1c-.439-.22-.78-.592-.963-1.046l-1.682-4.204-4.204-1.682c-1.025-.41-1.524-1.574-1.114-2.6.41-1.026 1.576-1.525 2.6-1.114l5.001 2c.508.203.91.606 1.114 1.114l1.717 4.294 1.32.66c.988.494 1.389 1.695.895 2.684-.35.701-1.056 1.105-1.791 1.105z"/><path fill="#67757F" d="M16.409 30c-.733.001-1.44-.404-1.791-1.105l-1-2c-.199-.397-.259-.851-.172-1.287l.848-4.241-2.602-4.337c-.568-.947-.261-2.175.686-2.744.946-.569 2.175-.261 2.744.686l3 4.999c.256.427.344.934.246 1.422l-.865 4.327.693 1.386c.494.988.093 2.189-.895 2.684-.286.143-.591.21-.892.21z"/><path fill="#FFDC5D" d="M14.755.763c-1.678-.66-4.294.192-4.598 2.152-.302 1.947.252 5 1.962 4.816 1.793-.194 3.632-.584 4.359-2.43.727-1.846-.045-3.878-1.723-4.538z"/><path fill="#FFDC5D" d="M16.002 5.776c2.442-2.869-3.441-2.589-3.441-2.589-1.113.04-.347 1.895-.871 2.908-.359.701 1.153 1.073 1.153 1.073s.694-.01.732.832v.008c.008.214-.014.469-.114.81-.498 1.686 1.766 2.72 2.264 1.03.197-.669.12-1.257.021-1.799L15.736 8c-.151-.807-.338-1.514.266-2.224z"/><path fill="#67757F" d="M18.408 8h-2.672l-.751.766L13.56 8h-2.152c-1.104 0-2 .896-2 2s.896 2 2 2v3.5c0 1.933 1.567 3.5 3.5 3.5s3.5-1.567 3.5-3.5V12c1.104 0 2-.896 2-2s-.895-2-2-2z"/><path fill="#FFAC33" d="M16.673 1.439C15.556.131 14.019-.412 11.386.606c-2.299.889-1.439 2.865-1.024 2.404.661-.734 1.555-.509 1.555-.509l.695 2.048s.331.199.469-.498c.138-.696 1.072-.768 1.378-.208.476.87-.147 1.037-.204 1.557-.179 1.645 1.643 1.582 1.643 1.582s.355.14.961-1.055c.606-1.192.923-3.189-.186-4.488z"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#4289C1" d="M36 5v27s0 4-4 4H4c-4 0-4-4-4-4v-5s25-2 36-22z"/><path fill="#1C6399" d="M31.844 23.243s2.565-1.635 2.258-2.288c-.309-.654-11.778.99-17.528 2.954-8.627 2.947-13.144 7.522-12.526 8.828.617 1.306 7.602 1.953 16.228-.993 5.752-1.964 15.368-7.524 15.06-8.177-.309-.653-3.492-.324-3.492-.324z"/><path fill="#A6D388" d="M31.474 22.747s2.65-1.619 2.349-2.291c-.303-.673-12.042.782-17.949 2.675C7.01 25.972 2.311 30.555 2.916 31.9c.605 1.345 7.723 2.141 16.585-.699 5.91-1.893 15.833-7.383 15.532-8.055-.303-.673-3.559-.399-3.559-.399z"/><path fill="#F5F8FA" d="M31.474 22.747s2.507-1.534 2.358-2.235L3.756 29.978c-.722.837-1.019 1.523-.84 1.922.156.348.755.657 1.7.878l30.395-9.566c.003-.02.029-.051.022-.066-.303-.673-3.559-.399-3.559-.399z"/><path fill="#FFDC5D" d="M2.789 15.057c-.354.166-1.458.438-1.992.781-.432.278-.845.262-.727.612.102.302.508.216 1.227.132.719-.084 1.929-.289 2.325-.566l-.833-.959zm22.862-3.211c.379.095 1.515.151 2.104.386.477.19 1.122.088 1.073.455-.043.316-.701.317-1.422.371-.722.054-1.949.085-2.39-.113l.635-1.099zM14.698.997c-1.593-.627-4.077.182-4.365 2.043-.287 1.848.239 4.747 1.863 4.572 1.702-.184 3.448-.554 4.138-2.307.69-1.752-.043-3.681-1.636-4.308z"/><path fill="#FFDC5D" d="M15.882 5.757c2.318-2.723-3.266-2.458-3.266-2.458-1.057.038-.329 1.799-.827 2.761-.341.665 1.095 1.018 1.095 1.018s.659-.01.694.79v.007c.008.204-.013.445-.108.769-.473 1.601 1.677 2.582 2.149.978.187-.635.114-1.193.02-1.708l-.009-.046c-.144-.766-.322-1.438.252-2.111z"/><path fill="#FFAC33" d="M16.518 1.64C15.457.398 13.998-.117 11.499.849c-2.183.844-1.366 2.72-.972 2.282.628-.696 1.477-.483 1.477-.483l.66 1.944s.314.189.445-.473 1.017-.729 1.308-.198c.452.826-.139.984-.193 1.478-.17 1.562 1.56 1.502 1.56 1.502s.337.132.912-1.001c.575-1.132.876-3.027-.178-4.26z"/><path fill="#FFDC5D" d="M16.261 28.432c-.378-.1-.67-.432-.807-.785-.059-.152-.245-.89-.245-.89l-2.284.284c.043.214.114.512.185.94.054.324-.089.753.012.954.101.201.817.74 1.301.839 1.237.255 2.491-.342 2.644-.517.223-.254-.427-.725-.806-.825zm7.51-3.222c-.334-.065-.607-.336-.746-.634-.06-.129-.22-.651-.22-.651l-2.009.274c.05.183.129.438.216.804.066.278-.033.659.066.827.099.169.752.594 1.178.652 1.088.148 2.141-.443 2.264-.604.177-.233-.415-.603-.749-.668z"/><path fill="#292F33" d="M25.676 11.812c-.242-.036-2.877-.731-3.554-1.052-.903-.841-2.483-1.754-2.919-2.042s-.837-.637-1.828-.718h-1.639l-.751.766L13.56 8l-1.748.167c-2.198.338-4 3.024-4.794 4.151-.36.283-.685.614-.896.735-.389.223-2.813 1.505-3.334 2.005l.836 1.068c.312-.281 1.748-.596 2.748-1.046.396-.178 1.452-.296 1.982-.81l.017.017c1.396-.979 2.326-2.021 2.722-2.599L12.208 17s-.005 1.674.058 1.94c.088.372.353 1.449.353 1.884 0 0-.606 1.335-.302 2.484.403 1.529.611 3.468.653 4.008 1.412 0 2.24-.56 2.24-.56s-.278-.638-.165-1.577c.069-.572.58-1.601.58-2.45 0-.849-.095-1.367.031-1.719s.601-1.452.677-2.052c.02-.162.008-.374-.022-.6.534.292 1.493.792 2.084.954.849.232 1.494.595 1.718.79s.376.335.376.335-.201.557-.141 1.516c.055.877.433 1.658.54 2.703.893-.133 1.966-.567 1.966-.567s-.096-1.268-.078-1.848c.023-.706.412-2.193.265-2.824-.229-.981-1.5-2.047-2.677-2.948-1.177-.901-2.375-1.438-2.375-1.438.365-2.469-.005-3.781-.005-3.781s1.81.804 3.578 1.344c.577.285 2.27.562 3.989.5.432-.016.452-1.233.125-1.282z"/><path fill="#67757F" d="M7.265 13.194c.795-1.126 2.994-4.365 5.435-4.576 0 0 1.118 1.459 2.565 1.235 1.447-.224 1.482-1.318 1.482-1.318l1.727.149c.494.04.841.148 1.12.281-.163-.101-.304-.189-.391-.246-.435-.287-.837-.638-1.828-.719h-1.639l-.751.766L13.56 8l-1.748.167c-2.198.338-4 3.024-4.794 4.151-.36.283-.685.614-.896.735-.389.223-2.813 1.505-3.334 2.005l.288.368c1.224-.797 3.829-1.949 4.189-2.232zm15.956-1.75c.453.215 1.771.594 2.674.834-.016-.24-.089-.446-.219-.465-.2-.03-2.502-.686-3.513-1.033.212.162.682.465 1.058.664zm-2.139 11.291c-.06-.958.024-1.639-.072-1.843-.096-.204-.52-.455-.52-.455s-.201.557-.141 1.516c.055.877.433 1.658.54 2.703.309-.046.638-.128.938-.216-.613-.262-.707-1.099-.745-1.705z"/><path fill="#67757F" d="M13.135 24.147c-.303-1.149.176-2.906.176-2.906 0-.435-.23-1.357-.318-1.729-.063-.266-.103-2.438-.072-2.717 3.859-.123 5.068-1.763 5.068-1.763s-2.21 1.309-5.224.906c-.347-.718-1.03-4.737-1.03-4.737-.213-.025-.499.231-.642.487L12.208 17s-.005 1.674.058 1.94c.088.372.353 1.449.353 1.884 0 0-.606 1.335-.302 2.484.403 1.529.611 3.468.653 4.008.386 0 .724-.044 1.018-.104-.688-.618-.566-1.979-.853-3.065z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f3c4.svg b/public/emoji/1f3c4.svg
index a69ddc50e07170c0770b517093c22696bf5e7f72..6da42a5c0f67e7e1e45a5a4dfd3a54e44ac565bc 100644
--- a/public/emoji/1f3c4.svg
+++ b/public/emoji/1f3c4.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#4289C1" d="M36 5v27s0 4-4 4H4c-4 0-4-4-4-4v-5s25-2 36-22z"/><path fill="#A7D28B" d="M30.59 20.432s2.33-2.136 1.924-3.049c-.408-.914-11.676.831-17.154 3.276-8.22 3.669-12.068 9.767-11.253 11.593.815 1.826 7.925 3.033 16.143-.635 5.48-2.445 14.301-9.669 13.895-10.582-.409-.913-3.555-.603-3.555-.603z"/><path fill="#F5F8FA" d="M34.145 21.035c-.408-.913-3.555-.604-3.555-.604s2.204-2.024 1.942-2.973L4.612 29.674c-.569 1.116-.747 2.037-.505 2.578.211.473.849.9 1.812 1.217l28.215-12.345c0-.027.02-.068.011-.089z"/><path fill="#FFDC5D" d="M24.408 15c-3.401 0-6.462-3.95-6.8-4.4-.332-.441-.242-1.067.199-1.399.441-.331 1.066-.244 1.4.198.754 1.002 3.158 3.601 5.2 3.601.553 0 1 .448 1 1s-.446 1-.999 1zm-17 4c-.419 0-.809-.265-.949-.684-1.195-3.584.152-5.934 1.492-7.273 1.401-1.401 3.07-1.968 3.141-1.992.525-.176 1.091.109 1.265.632.174.523-.107 1.088-.629 1.264-.516.176-4.996 1.861-3.371 6.736.175.524-.108 1.091-.632 1.265-.105.035-.212.052-.317.052z"/><path fill="#67757F" d="M25.406 26c-.3 0-.605-.067-.893-.211l-2-1c-.439-.22-.78-.592-.963-1.046l-1.682-4.204-4.204-1.682c-1.025-.41-1.524-1.574-1.114-2.6.41-1.026 1.576-1.525 2.6-1.114l5.001 2c.508.203.91.606 1.114 1.114l1.717 4.294 1.32.66c.988.494 1.389 1.695.895 2.684-.35.701-1.056 1.105-1.791 1.105z"/><path fill="#67757F" d="M16.409 30c-.733.001-1.44-.404-1.791-1.105l-1-2c-.199-.397-.259-.851-.172-1.287l.848-4.241-2.602-4.337c-.568-.947-.261-2.175.686-2.744.946-.569 2.175-.261 2.744.686l3 4.999c.256.427.344.934.246 1.422l-.865 4.327.693 1.386c.494.988.093 2.189-.895 2.684-.286.143-.591.21-.892.21z"/><path fill="#FFDC5D" d="M14.755.763c-1.678-.66-4.294.192-4.598 2.152-.302 1.947.252 5 1.962 4.816 1.793-.194 3.632-.584 4.359-2.43.727-1.846-.045-3.878-1.723-4.538z"/><path fill="#FFDC5D" d="M16.002 5.776c2.442-2.869-3.441-2.589-3.441-2.589-1.113.04-.347 1.895-.871 2.908-.359.701 1.153 1.073 1.153 1.073s.694-.01.732.832v.008c.008.214-.014.469-.114.81-.498 1.686 1.766 2.72 2.264 1.03.197-.669.12-1.257.021-1.799L15.736 8c-.151-.807-.338-1.514.266-2.224z"/><path fill="#67757F" d="M18.408 8h-2.672l-.751.766L13.56 8h-2.152c-1.104 0-2 .896-2 2s.896 2 2 2v3.5c0 1.933 1.567 3.5 3.5 3.5s3.5-1.567 3.5-3.5V12c1.104 0 2-.896 2-2s-.895-2-2-2z"/><path fill="#FFAC33" d="M16.673 1.439C15.556.131 14.019-.412 11.386.606c-2.299.889-1.439 2.865-1.024 2.404.661-.734 1.555-.509 1.555-.509l.695 2.048s.331.199.469-.498c.138-.696 1.072-.768 1.378-.208.476.87-.147 1.037-.204 1.557-.179 1.645 1.643 1.582 1.643 1.582s.355.14.961-1.055c.606-1.192.923-3.189-.186-4.488z"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#4289C1" d="M36 5v27s0 4-4 4H4c-4 0-4-4-4-4v-5s25-2 36-22z"/><path fill="#1C6399" d="M31.844 23.243s2.565-1.635 2.258-2.288c-.309-.654-11.778.99-17.528 2.954-8.627 2.947-13.144 7.522-12.526 8.828.617 1.306 7.602 1.953 16.228-.993 5.752-1.964 15.368-7.524 15.06-8.177-.309-.653-3.492-.324-3.492-.324z"/><path fill="#A6D388" d="M31.474 22.747s2.65-1.619 2.349-2.291c-.303-.673-12.042.782-17.949 2.675C7.01 25.972 2.311 30.555 2.916 31.9c.605 1.345 7.723 2.141 16.585-.699 5.91-1.893 15.833-7.383 15.532-8.055-.303-.673-3.559-.399-3.559-.399z"/><path fill="#F5F8FA" d="M31.474 22.747s2.507-1.534 2.358-2.235L3.756 29.978c-.722.837-1.019 1.523-.84 1.922.156.348.755.657 1.7.878l30.395-9.566c.003-.02.029-.051.022-.066-.303-.673-3.559-.399-3.559-.399z"/><path fill="#FFDC5D" d="M2.789 15.057c-.354.166-1.458.438-1.992.781-.432.278-.845.262-.727.612.102.302.508.216 1.227.132.719-.084 1.929-.289 2.325-.566l-.833-.959zm22.862-3.211c.379.095 1.515.151 2.104.386.477.19 1.122.088 1.073.455-.043.316-.701.317-1.422.371-.722.054-1.949.085-2.39-.113l.635-1.099zM14.698.997c-1.593-.627-4.077.182-4.365 2.043-.287 1.848.239 4.747 1.863 4.572 1.702-.184 3.448-.554 4.138-2.307.69-1.752-.043-3.681-1.636-4.308z"/><path fill="#FFDC5D" d="M15.882 5.757c2.318-2.723-3.266-2.458-3.266-2.458-1.057.038-.329 1.799-.827 2.761-.341.665 1.095 1.018 1.095 1.018s.659-.01.694.79v.007c.008.204-.013.445-.108.769-.473 1.601 1.677 2.582 2.149.978.187-.635.114-1.193.02-1.708l-.009-.046c-.144-.766-.322-1.438.252-2.111z"/><path fill="#FFAC33" d="M16.518 1.64C15.457.398 13.998-.117 11.499.849c-2.183.844-1.366 2.72-.972 2.282.628-.696 1.477-.483 1.477-.483l.66 1.944s.314.189.445-.473 1.017-.729 1.308-.198c.452.826-.139.984-.193 1.478-.17 1.562 1.56 1.502 1.56 1.502s.337.132.912-1.001c.575-1.132.876-3.027-.178-4.26z"/><path fill="#FFDC5D" d="M16.261 28.432c-.378-.1-.67-.432-.807-.785-.059-.152-.245-.89-.245-.89l-2.284.284c.043.214.114.512.185.94.054.324-.089.753.012.954.101.201.817.74 1.301.839 1.237.255 2.491-.342 2.644-.517.223-.254-.427-.725-.806-.825zm7.51-3.222c-.334-.065-.607-.336-.746-.634-.06-.129-.22-.651-.22-.651l-2.009.274c.05.183.129.438.216.804.066.278-.033.659.066.827.099.169.752.594 1.178.652 1.088.148 2.141-.443 2.264-.604.177-.233-.415-.603-.749-.668z"/><path fill="#292F33" d="M25.676 11.812c-.242-.036-2.877-.731-3.554-1.052-.903-.841-2.483-1.754-2.919-2.042s-.837-.637-1.828-.718h-1.639l-.751.766L13.56 8l-1.748.167c-2.198.338-4 3.024-4.794 4.151-.36.283-.685.614-.896.735-.389.223-2.813 1.505-3.334 2.005l.836 1.068c.312-.281 1.748-.596 2.748-1.046.396-.178 1.452-.296 1.982-.81l.017.017c1.396-.979 2.326-2.021 2.722-2.599L12.208 17s-.005 1.674.058 1.94c.088.372.353 1.449.353 1.884 0 0-.606 1.335-.302 2.484.403 1.529.611 3.468.653 4.008 1.412 0 2.24-.56 2.24-.56s-.278-.638-.165-1.577c.069-.572.58-1.601.58-2.45 0-.849-.095-1.367.031-1.719s.601-1.452.677-2.052c.02-.162.008-.374-.022-.6.534.292 1.493.792 2.084.954.849.232 1.494.595 1.718.79s.376.335.376.335-.201.557-.141 1.516c.055.877.433 1.658.54 2.703.893-.133 1.966-.567 1.966-.567s-.096-1.268-.078-1.848c.023-.706.412-2.193.265-2.824-.229-.981-1.5-2.047-2.677-2.948-1.177-.901-2.375-1.438-2.375-1.438.365-2.469-.005-3.781-.005-3.781s1.81.804 3.578 1.344c.577.285 2.27.562 3.989.5.432-.016.452-1.233.125-1.282z"/><path fill="#67757F" d="M7.265 13.194c.795-1.126 2.994-4.365 5.435-4.576 0 0 1.118 1.459 2.565 1.235 1.447-.224 1.482-1.318 1.482-1.318l1.727.149c.494.04.841.148 1.12.281-.163-.101-.304-.189-.391-.246-.435-.287-.837-.638-1.828-.719h-1.639l-.751.766L13.56 8l-1.748.167c-2.198.338-4 3.024-4.794 4.151-.36.283-.685.614-.896.735-.389.223-2.813 1.505-3.334 2.005l.288.368c1.224-.797 3.829-1.949 4.189-2.232zm15.956-1.75c.453.215 1.771.594 2.674.834-.016-.24-.089-.446-.219-.465-.2-.03-2.502-.686-3.513-1.033.212.162.682.465 1.058.664zm-2.139 11.291c-.06-.958.024-1.639-.072-1.843-.096-.204-.52-.455-.52-.455s-.201.557-.141 1.516c.055.877.433 1.658.54 2.703.309-.046.638-.128.938-.216-.613-.262-.707-1.099-.745-1.705z"/><path fill="#67757F" d="M13.135 24.147c-.303-1.149.176-2.906.176-2.906 0-.435-.23-1.357-.318-1.729-.063-.266-.103-2.438-.072-2.717 3.859-.123 5.068-1.763 5.068-1.763s-2.21 1.309-5.224.906c-.347-.718-1.03-4.737-1.03-4.737-.213-.025-.499.231-.642.487L12.208 17s-.005 1.674.058 1.94c.088.372.353 1.449.353 1.884 0 0-.606 1.335-.302 2.484.403 1.529.611 3.468.653 4.008.386 0 .724-.044 1.018-.104-.688-.618-.566-1.979-.853-3.065z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f3c5.svg b/public/emoji/1f3c5.svg
index 1cb697433244c435b73fd1657d2e19d9bfa42ed5..a576ba8b9c94b104e4d6c6809e6db6f5eb177815 100644
--- a/public/emoji/1f3c5.svg
+++ b/public/emoji/1f3c5.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#55ACEE" d="M28 0H8C5.042 0 2 5 3 7c1.612 3.225 12 13 12 13h6S31 10 33 7c1-2-2.333-7-5-7zm-4 8l-6 6-6-6c-.532-.532-.843-.919-.894-1.206C10.965 6.003 12.862 6 18 6c6.916 0 7.476.375 6.532 1.446-.147.168-.329.351-.532.554z"/><path fill="#3B88C3" d="M11.106 6.794C10.965 6.003 12.862 6 18 6c6.916 0 7.476.375 6.532 1.446C29.866 1.885 28.195 0 26 0H10c-3.579 0-1.01 4.097 1.106 6.794z"/><path fill="#FFAC33" d="M21.902 21.02c.06-.163.098-.337.098-.52 0-.828-.672-1.5-1.5-1.5h-5c-.829 0-1.5.672-1.5 1.5 0 .183.038.357.098.52C11.654 22.389 10 25 10 28c0 4.418 3.581 8 8 8 4.418 0 8-3.582 8-8 0-3-1.654-5.611-4.098-6.98z"/><circle fill="#FFD983" cx="18" cy="28" r="6"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#55ACEE" d="M18 8l-7-8H0l14 17 11.521-4.75z"/><path fill="#3B88C3" d="M25 0l-7 8 5.39 7.312 1.227-1.489L36 0z"/><path fill="#FFAC33" d="M23.26 16.026c.08-.217.131-.448.131-.693 0-1.104-.896-2-2-2h-6.667c-1.105 0-2 .896-2 2 0 .245.05.476.131.693-3.258 1.826-5.464 5.307-5.464 9.307C7.391 31.224 12.166 36 18.058 36c5.891 0 10.667-4.776 10.667-10.667-.001-4-2.206-7.481-5.465-9.307z"/><circle fill="#FFD983" cx="18.058" cy="25.333" r="8"/><path fill="#FFAC33" d="M21.278 30.634c-.142 0-.284-.044-.406-.131L18 28.444l-2.871 2.059c-.245.175-.573.175-.816-.003-.243-.176-.345-.489-.255-.774l1.071-3.456-2.845-2.005c-.242-.178-.342-.492-.25-.778.093-.285.358-.479.659-.481l3.524-.005 1.122-3.37c.095-.285.361-.477.662-.477.3 0 .567.192.662.477l1.103 3.37 3.542.005c.301.002.567.196.659.481.093.286-.008.599-.25.778l-2.846 2.005 1.071 3.456c.092.286-.012.598-.254.774-.123.09-.267.134-.41.134z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f3cb-1f3fb-200d-2640-fe0f.svg b/public/emoji/1f3cb-1f3fb-200d-2640-fe0f.svg
index 3c1bb3b5b4e8a5b3af4356c8c0b62af7bd1ab670..de38be1859dfb10ba8787f748565ab6e4ae8d4e5 100644
--- a/public/emoji/1f3cb-1f3fb-200d-2640-fe0f.svg
+++ b/public/emoji/1f3cb-1f3fb-200d-2640-fe0f.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#292F33" d="M18.497 3.508c-.731 0-1.421.173-2.037.472-.167-.029-.338-.047-.513-.047-1.643 0-2.975 1.332-2.975 2.975v5.1h.007c.078 2.748 2.326 4.954 5.093 4.954s5.015-2.206 5.093-4.954h.007V8.183c0-2.582-2.093-4.675-4.675-4.675z"/><path fill="#F7DECE" d="M14.778 35.254c.141.534.688.854 1.222.713.534-.141.854-.687.714-1.222l-1.525-5.803c-.14-.534-.687-.854-1.221-.713-.534.14-.854.687-.713 1.221l1.523 5.804zm4.509-.508c-.141.534.178 1.08.713 1.221.535.141 1.081-.178 1.222-.713l1.524-5.803c.141-.535-.179-1.082-.713-1.222-.535-.141-1.081.179-1.222.713l-1.524 5.804zm-5.082-20.042C14.368 15.232 14 17 14 17c-1 0-1.542-1.177-1.706-1.705L9.045 4.786c-.163-.528.132-1.088.66-1.251.527-.163 1.087.132 1.25.66l3.25 10.509zm7.59 0C21.632 15.232 22 17 22 17c1 0 1.543-1.177 1.705-1.705l3.25-10.509c.163-.528-.133-1.088-.66-1.251-.527-.163-1.088.132-1.25.66l-3.25 10.509z"/><path fill="#292F33" d="M18.382 3c-.907 0-1.745.29-2.432.778-1.412.074-2.539 1.232-2.539 2.663 0 1.179.005 2.664 1.559 3.217.763 1.061 2.005 1.753 3.412 1.753 2.323 0 4.206-1.882 4.206-4.205C22.588 4.883 20.705 3 18.382 3z"/><path fill="#DD2E44" d="M19 23h-2l-3 2-1 5h3l1-3h2l1 3h3l-1-5zm-6 13v-1s0-1 2-1 2 1 2 1v1h-4zm6 0v-1s0-1 2-1 2 1 2 1v1h-4z"/><path fill="#DD2E44" d="M22 14h-8v10h8V14z"/><path fill="#F7DECE" d="M16.471 12.412v2.059c0 .844.684 1.529 1.529 1.529s1.529-.685 1.529-1.529v-2.059h-3.058z"/><path fill="#F7DECE" d="M21.823 5.294h-7.647v4.588c0 2.112 1.712 3.823 3.824 3.823s3.823-1.711 3.823-3.823V5.294z"/><path fill="#292F33" d="M16.4 5.223H14v3.201c1.867 0 2.28-1.93 2.373-2.791.031.86.651 2.791 5.628 2.791V5.223H16.4z"/><path fill="#DF1F32" d="M19.529 12.176h-3.058s0 .765 1.529.765 1.529-.765 1.529-.765z"/><circle fill="#662113" cx="16.088" cy="9.5" r=".382"/><path fill="#662113" d="M20.294 9.5c0 .211-.171.382-.382.382-.212 0-.383-.171-.383-.382s.171-.382.383-.382c.211 0 .382.171.382.382z"/><path fill="#C1694F" d="M17.235 10.647h1.53s0 .765-.765.765-.765-.765-.765-.765z"/><path fill="#662113" d="M14 23h8v2h-8z"/><path fill="#99AAB5" d="M33.5 3.5c0 .276-.224.5-.5.5H3c-.276 0-.5-.224-.5-.5S2.724 3 3 3h30c.276 0 .5.224.5.5z"/><path fill="#292F33" d="M32 0c-.553 0-1 .448-1 1 0-.552-.447-1-1-1s-1 .448-1 1v5c0 .552.447 1 1 1s1-.448 1-1c0 .552.447 1 1 1s1-.448 1-1V1c0-.552-.447-1-1-1zM6 0c-.553 0-1 .448-1 1 0-.552-.447-1-1-1S3 .448 3 1v5c0 .552.447 1 1 1s1-.448 1-1c0 .552.447 1 1 1s1-.448 1-1V1c0-.552-.447-1-1-1z"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#292F33" d="M18.528 3.81c-.731 0-1.421.173-2.037.472-.167-.029-.338-.047-.513-.047-1.643 0-2.975 1.332-2.975 2.975v5.1h.007c.078 2.748 2.326 4.954 5.093 4.954s5.015-2.206 5.093-4.954h.007V8.485c0-2.582-2.093-4.675-4.675-4.675z"/><path fill="#F7DECE" d="M15.447 34.875h-1.02s-1.384-3.348-1.18-5.736l2.531.549c.56 1.564-.331 5.187-.331 5.187zm4.885 0h1.02s1.384-3.348 1.18-5.736L20 29.688c-.559 1.564.332 5.187.332 5.187z"/><path fill="#DD2E44" d="M13.452 35.149c.102-.243.316-.694.339-.955.023-.261.034-.354.238-.426.345-.121 1.427-.087 1.613-.016.185.071.188.263.214.424.026.161.113.424.226.64s.406.697.26 1.034c-.061.14-.402.138-1.497.138s-1.408-.026-1.483-.118-.011-.477.09-.721zm8.875 0c-.102-.243-.316-.694-.339-.955-.023-.261-.034-.354-.238-.426-.345-.121-1.427-.087-1.613-.016-.185.071-.188.263-.214.424-.026.161-.113.424-.226.64s-.406.697-.26 1.034c.061.14.402.138 1.497.138s1.408-.026 1.483-.118c.074-.092.011-.477-.09-.721z"/><path fill="#F7DECE" d="M8.31 4.156c.011.127.814 1.525 1.266 2.625.452 1.1.747 2.25.984 2.5.476.499 1.926 1.474 2.911 2.937.985 1.464-1.977 2.58-2.611 1.588-.451-.706-1.309-2.368-2.097-3.759-.304-.54-.897-1.454-1.328-2.516-.406-1-.642-2.168-.702-2.312-.179-.425-.879-.977-.913-1.407 0 0 2.454-.084 2.49.344zm19.159 0c-.011.127-.814 1.525-1.266 2.625-.452 1.1-.747 2.25-.984 2.5-.476.499-1.926 1.474-2.911 2.937-.985 1.464 1.977 2.58 2.611 1.588.451-.706 1.309-2.368 2.097-3.759.304-.54.897-1.454 1.328-2.516.406-1 .642-2.168.702-2.312.178-.425.878-.977.912-1.406 0-.001-2.453-.085-2.489.343z"/><path fill="#99AAB5" d="M36 3.5c0 .276-.224.5-.5.5H.5C.224 4 0 3.776 0 3.5S.224 3 .5 3h35c.276 0 .5.224.5.5z"/><path fill="#292F33" d="M34 0c-.553 0-1 .448-1 1 0-.552-.447-1-1-1-.553 0-1 .448-1 1v5c0 .552.447 1 1 1 .553 0 1-.448 1-1 0 .552.447 1 1 1 .553 0 1-.448 1-1V1c0-.552-.447-1-1-1zM4 0c-.553 0-1 .448-1 1 0-.552-.447-1-1-1S1 .448 1 1v5c0 .552.447 1 1 1s1-.448 1-1c0 .552.447 1 1 1s1-.448 1-1V1c0-.552-.447-1-1-1z"/><path fill="#DD2E44" d="M24.918 13.806c-.625-.583-2.611-1.588-2.611-1.588-.709.401-1.237 1.188-1.465 1.571l-1.398.394h-2.89l-1.627-.406c-.231-.387-.755-1.162-1.458-1.559 0 0-1.986 1.004-2.611 1.588.406 1.039 1.543 2.428 1.543 2.428l.008-.001c.4.821.854 1.362.945 1.547.386.781.646 4.72.646 4.72l4 1.5 3.779-1.5s.26-3.939.643-4.719c.091-.185.545-.727.945-1.547l.008.001c0-.001 1.138-1.39 1.543-2.429z"/><path fill="#F7DECE" d="M16.471 11.412v3.059c0 .844.684 1.529 1.529 1.529.845 0 1.529-.685 1.529-1.529v-3.059h-3.058z"/><path fill="#292F33" d="M18.375 3.353c-.89 0-1.712.284-2.386.763-1.385.072-2.49 1.209-2.49 2.612 0 1.156.005 2.613 1.529 3.156.749 1.04 1.967 1.719 3.347 1.719 2.278 0 4.125-1.846 4.125-4.125 0-2.278-1.847-4.125-4.125-4.125z"/><path fill="#F7DECE" d="M21.75 5.602h-7.5v4.5c0 2.072 1.679 3.75 3.75 3.75 2.072 0 3.75-1.678 3.75-3.75v-4.5z"/><path fill="#292F33" d="M18 4l-3.924 1.533v3.139c1.831 0 2.236-1.893 2.327-2.737.031.844.639 2.737 5.52 2.737V5.533L18 4z"/><path fill="#C1694F" d="M19.5 12.353h-3s0 .75 1.5.75 1.5-.75 1.5-.75z"/><circle fill="#662113" cx="16.125" cy="9.728" r=".375"/><path fill="#662113" d="M20.25 9.728c0 .207-.168.375-.374.375-.208 0-.375-.168-.375-.375s.168-.375.375-.375c.206 0 .374.168.374.375z"/><path fill="#C1694F" d="M17.25 10.853h1.5s0 .75-.75.75-.75-.75-.75-.75z"/><g fill="#F7DECE"><path d="M27.096 4.363c-.33-.157-.476-.428-.377-.719l.003-.01c.099-.291.291-.346.738-.339 0 0 1.521.076 2.437.712 0 0-.199.304-.447.56l-.003.01c-.101.29-1.614.137-2.351-.214z"/><path d="M27.843 3.47c-.137-.033-.221-.173-.188-.31l.087-.357c.033-.137.173-.221.31-.188s.221.173.188.31l-.087.357c-.034.137-.173.221-.31.188zm-.445-.87c-.163-.055-.342.034-.397.197l-.279.837c-.055.164.168-.068.332-.013.163.055.342-.033.397-.196l.144-.427c.055-.164-.034-.342-.197-.398z"/><path d="M28.384 3.399c-.137-.033-.221-.173-.188-.31l.082-.334c.033-.137.173-.221.31-.188s.221.173.188.31l-.082.334c-.034.137-.173.221-.31.188z"/><path d="M28.9 3.424c-.137-.033-.221-.173-.188-.31l.068-.277c.033-.137.173-.221.31-.188s.221.173.188.31l-.068.277c-.034.137-.173.221-.31.188z"/><path d="M29.419 3.447c-.137-.033-.221-.173-.188-.31l.04-.162c.033-.137.173-.221.31-.188s.221.173.188.31l-.04.162c-.034.137-.174.222-.31.188z"/></g><g fill="#F7DECE"><path d="M8.683 4.363c.33-.157.476-.428.377-.719l-.003-.01c-.1-.29-.292-.346-.738-.339 0 0-1.521.076-2.437.712 0 0 .199.304.447.56l.003.01c.1.29 1.614.137 2.351-.214z"/><path d="M7.936 3.47c.137-.033.221-.173.188-.31l-.088-.357c-.033-.137-.173-.221-.31-.188-.136.034-.221.173-.187.31l.087.357c.034.137.173.221.31.188zm.445-.87c.163-.055.342.034.397.197l.279.837c.055.164-.168-.068-.332-.013-.163.055-.342-.033-.397-.196l-.144-.427c-.055-.164.033-.342.197-.398z"/><path d="M7.395 3.399c.137-.033.221-.173.188-.31l-.082-.334c-.033-.137-.173-.221-.31-.188-.137.034-.221.173-.188.31l.082.334c.034.137.173.221.31.188z"/><path d="M6.879 3.424c.137-.034.221-.173.188-.31l-.068-.277c-.033-.137-.173-.221-.309-.188-.137.033-.221.173-.188.31l.068.277c.033.137.172.221.309.188z"/><path d="M6.36 3.447c.137-.033.221-.173.188-.31l-.04-.162c-.033-.137-.173-.221-.31-.188-.136.034-.22.173-.187.31l.04.162c.033.137.172.222.309.188z"/></g><path fill="#DD2E44" d="M21.779 24.5L18 23l-4 1.5s-.94 1.766-.94 5.188h2.719c.917-.979 1.25-3.604 1.25-3.604h1.721s.333 2.625 1.25 3.604h2.719c0-3.422-.94-5.188-.94-5.188z"/><path fill="#C1694F" d="M14 22.5h7.779v2H14z"/><path fill="#14171A" d="M19 22.399h.65v2.209H19z"/><circle fill="#14171A" cx="18.5" cy="23.458" r=".167"/><path fill="#14171A" d="M18.021 23.458c0 .092-.075.167-.167.167-.092 0-.167-.075-.167-.167 0-.092.075-.167.167-.167.092.001.167.075.167.167z"/><circle fill="#14171A" cx="17.208" cy="23.458" r=".167"/><circle fill="#14171A" cx="16.562" cy="23.458" r=".167"/><circle fill="#14171A" cx="15.917" cy="23.458" r=".167"/><circle fill="#14171A" cx="15.271" cy="23.458" r=".167"/><circle fill="#14171A" cx="14.625" cy="23.458" r=".167"/><circle fill="#14171A" cx="17.208" cy="23.458" r=".167"/><circle fill="#657786" cx="16.318" cy="23.458" r=".148"/><circle fill="#657786" cx="16.553" cy="23.458" r=".148"/><path fill="#657786" d="M16.318 23.31h.235v.297h-.235z"/><path fill="#657786" d="M16.729 24.846h-.758v-2.698h.758v.35h-.408v1.998h.408z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f3cb-1f3fb-200d-2642-fe0f.svg b/public/emoji/1f3cb-1f3fb-200d-2642-fe0f.svg
index edfb41c9317bd22de54192c7b803ed400e1814be..1caeeb8f27dda0d604b4f6bbca6b7fc716d4cd77 100644
--- a/public/emoji/1f3cb-1f3fb-200d-2642-fe0f.svg
+++ b/public/emoji/1f3cb-1f3fb-200d-2642-fe0f.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#F7DECE" d="M14.778 35.254c.141.534.688.854 1.222.713.534-.141.854-.687.714-1.222l-1.525-5.803c-.14-.534-.687-.854-1.221-.713-.534.14-.854.687-.713 1.221l1.523 5.804zm4.509-.508c-.141.534.178 1.08.713 1.221.535.141 1.081-.178 1.222-.713l1.524-5.803c.141-.535-.179-1.082-.713-1.222-.535-.141-1.081.179-1.222.713l-1.524 5.804zm-5.082-20.042C14.368 15.232 14 17 14 17c-1 0-1.542-1.177-1.706-1.705L9.045 4.786c-.163-.528.132-1.088.66-1.251.527-.163 1.087.132 1.25.66l3.25 10.509zm7.59 0C21.632 15.232 22 17 22 17c1 0 1.543-1.177 1.705-1.705l3.25-10.509c.163-.528-.133-1.088-.66-1.251-.527-.163-1.088.132-1.25.66l-3.25 10.509z"/><path fill="#292F33" d="M18.382 3c-.907 0-1.745.29-2.432.778-1.412.074-2.539 1.232-2.539 2.663 0 1.179.005 2.664 1.559 3.217.763 1.061 2.005 1.753 3.412 1.753 2.323 0 4.206-1.882 4.206-4.205C22.588 4.883 20.705 3 18.382 3z"/><path fill="#4289C1" d="M19 23h-2l-3 2-1 5h3l1-3h2l1 3h3l-1-5zm-6 13v-1s0-1 2-1 2 1 2 1v1h-4zm6 0v-1s0-1 2-1 2 1 2 1v1h-4z"/><path fill="#4289C1" d="M22 14h-8v10h8V14z"/><path fill="#F7DECE" d="M16.471 11.412v3.059c0 .844.684 1.529 1.529 1.529s1.529-.685 1.529-1.529v-3.059h-3.058z"/><path fill="#F7DECE" d="M21.823 5.294h-7.647v4.588c0 2.112 1.712 3.823 3.824 3.823s3.823-1.711 3.823-3.823V5.294z"/><path fill="#292F33" d="M16.4 5.223H14v3.201c1.867 0 2.28-1.93 2.373-2.791.031.86.651 2.791 5.628 2.791V5.223H16.4z"/><path fill="#C1694F" d="M19.529 12.176h-3.058s0 .765 1.529.765 1.529-.765 1.529-.765z"/><circle fill="#662113" cx="16.088" cy="9.5" r=".382"/><path fill="#662113" d="M20.294 9.5c0 .211-.171.382-.382.382-.212 0-.383-.171-.383-.382s.171-.382.383-.382c.211 0 .382.171.382.382z"/><path fill="#C1694F" d="M17.235 10.647h1.53s0 .765-.765.765-.765-.765-.765-.765z"/><path fill="#662113" d="M14 23h8v2h-8z"/><path fill="#99AAB5" d="M33.5 3.5c0 .276-.224.5-.5.5H3c-.276 0-.5-.224-.5-.5S2.724 3 3 3h30c.276 0 .5.224.5.5z"/><path fill="#292F33" d="M32 0c-.553 0-1 .448-1 1 0-.552-.447-1-1-1s-1 .448-1 1v5c0 .552.447 1 1 1s1-.448 1-1c0 .552.447 1 1 1s1-.448 1-1V1c0-.552-.447-1-1-1zM6 0c-.553 0-1 .448-1 1 0-.552-.447-1-1-1S3 .448 3 1v5c0 .552.447 1 1 1s1-.448 1-1c0 .552.447 1 1 1s1-.448 1-1V1c0-.552-.447-1-1-1z"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#F7DECE" d="M15.81 34.875h-1.422s-1.323-3.348-1.119-5.736l2.918.549c.548 1.571-.377 5.187-.377 5.187zm4.317 0h1.422s1.323-3.348 1.119-5.736l-2.918.549c-.548 1.571.377 5.187.377 5.187z"/><path fill="#4289C1" d="M13.617 35.149c.106-.243.331-.694.355-.955.024-.261.036-.354.25-.426.362-.121 1.496-.087 1.691-.016.194.071.197.263.225.424.028.161.118.424.237.64s.426.697.272 1.034c-.064.14-.422.138-1.569.138s-1.476-.026-1.554-.118c-.08-.092-.014-.477.093-.721zm8.704 0c-.106-.243-.331-.694-.355-.955-.024-.261-.036-.354-.25-.426-.362-.121-1.496-.087-1.691-.016-.194.071-.197.263-.225.424s-.118.424-.237.64c-.118.216-.426.697-.272 1.034.064.14.422.138 1.569.138s1.476-.026 1.554-.118.013-.477-.093-.721z"/><path fill="#F7DECE" d="M8.646 4.146c.011.127.871 1.535 1.323 2.635.452 1.1.71 2.198.948 2.448.476.499 2.285 1.879 3.271 3.343.985 1.464.57 2.503-.094 2.922-.88.555-1.803.204-2.437-.788-.451-.706-1.951-3.209-2.739-4.601-.306-.541-1.018-1.512-1.449-2.574-.406-1-.454-2.168-.515-2.312-.179-.425-.878-.977-.912-1.407 0 0 2.567-.095 2.604.334zm18.708 0c-.011.127-.871 1.535-1.323 2.635-.452 1.1-.71 2.198-.948 2.448-.476.499-2.285 1.879-3.271 3.343-.985 1.464-.57 2.503.094 2.922.88.555 1.803.204 2.437-.788.451-.706 1.951-3.209 2.739-4.601.304-.54 1.017-1.511 1.448-2.573.406-1 .454-2.168.515-2.312.178-.425.878-.977.912-1.406.001-.002-2.566-.097-2.603.332z"/><path fill="#99AAB5" d="M36 3.5c0 .276-.224.5-.5.5H.5C.224 4 0 3.776 0 3.5S.224 3 .5 3h35c.276 0 .5.224.5.5z"/><path fill="#292F33" d="M34 0c-.553 0-1 .448-1 1 0-.552-.447-1-1-1-.553 0-1 .448-1 1v5c0 .552.447 1 1 1 .553 0 1-.448 1-1 0 .552.447 1 1 1 .553 0 1-.448 1-1V1c0-.552-.447-1-1-1zM4 0c-.553 0-1 .448-1 1 0-.552-.447-1-1-1S1 .448 1 1v5c0 .552.447 1 1 1s1-.448 1-1c0 .552.447 1 1 1s1-.448 1-1V1c0-.552-.447-1-1-1z"/><path fill="#4289C1" d="M24.918 13.806c-.625-.583-2.746-1.723-2.746-1.723-.742.419-1.283 1.257-1.492 1.617-.665.117-1.151.3-1.151.3H16.47s-.486-.183-1.151-.3c-.209-.36-.75-1.197-1.492-1.617 0 0-2.121 1.14-2.746 1.723.21.537.492 1.047.716 1.417.255 1.29 1.146 2.763 1.281 3.013.418.78.922 4.264.922 4.264l4 1.5 4-1.5s.504-3.484.922-4.264c.134-.25 1.025-1.724 1.281-3.013.224-.37.506-.879.715-1.417z"/><path fill="#F7DECE" d="M16.471 11.412v3.059c0 .844.684 1.529 1.529 1.529.845 0 1.529-.685 1.529-1.529v-3.059h-3.058z"/><path fill="#292F33" d="M18.375 3.353c-.89 0-1.712.284-2.386.763-1.385.072-2.49 1.209-2.49 2.612 0 1.156.005 2.613 1.529 3.156.749 1.04 1.967 1.719 3.347 1.719 2.278 0 4.125-1.846 4.125-4.125 0-2.278-1.847-4.125-4.125-4.125z"/><path fill="#F7DECE" d="M21.75 5.602h-7.5v4.5c0 2.072 1.679 3.75 3.75 3.75 2.072 0 3.75-1.678 3.75-3.75v-4.5z"/><path fill="#292F33" d="M18 4l-3.924 1.533v3.139c1.831 0 2.236-1.893 2.327-2.737.031.844.639 2.737 5.52 2.737V5.533L18 4z"/><path fill="#C1694F" d="M19.5 12.353h-3s0 .75 1.5.75 1.5-.75 1.5-.75z"/><circle fill="#662113" cx="16.125" cy="9.728" r=".375"/><path fill="#662113" d="M20.25 9.728c0 .207-.168.375-.374.375-.208 0-.375-.168-.375-.375s.168-.375.375-.375c.206 0 .374.168.374.375z"/><path fill="#C1694F" d="M17.25 10.853h1.5s0 .75-.75.75-.75-.75-.75-.75z"/><g fill="#F7DECE"><path d="M27.096 4.363c-.33-.157-.476-.428-.377-.719l.003-.01c.099-.291.291-.346.738-.339 0 0 1.521.076 2.437.712 0 0-.199.304-.447.56l-.003.01c-.101.29-1.614.137-2.351-.214z"/><path d="M27.843 3.47c-.137-.033-.221-.173-.188-.31l.087-.357c.033-.137.173-.221.31-.188s.221.173.188.31l-.087.357c-.034.137-.173.221-.31.188zm-.445-.87c-.163-.055-.342.034-.397.197l-.279.837c-.055.164.168-.068.332-.013.163.055.342-.033.397-.196l.144-.427c.055-.164-.034-.342-.197-.398z"/><path d="M28.384 3.399c-.137-.033-.221-.173-.188-.31l.082-.334c.033-.137.173-.221.31-.188s.221.173.188.31l-.082.334c-.034.137-.173.221-.31.188z"/><path d="M28.9 3.424c-.137-.033-.221-.173-.188-.31l.068-.277c.033-.137.173-.221.31-.188s.221.173.188.31l-.068.277c-.034.137-.173.221-.31.188z"/><path d="M29.419 3.447c-.137-.033-.221-.173-.188-.31l.04-.162c.033-.137.173-.221.31-.188s.221.173.188.31l-.04.162c-.034.137-.174.222-.31.188z"/></g><g fill="#F7DECE"><path d="M8.904 4.363c.33-.157.476-.428.377-.719l-.003-.01c-.099-.29-.291-.346-.738-.339 0 0-1.521.076-2.437.712 0 0 .199.304.447.56l.003.01c.101.29 1.614.137 2.351-.214z"/><path d="M8.157 3.47c.137-.033.221-.173.188-.31l-.087-.357c-.033-.137-.173-.221-.31-.188-.137.034-.221.173-.188.31l.087.357c.034.137.173.221.31.188zm.445-.87c.163-.055.342.034.397.197l.279.837c.055.164-.168-.068-.332-.013-.163.055-.342-.033-.397-.196l-.144-.427c-.055-.164.034-.342.197-.398z"/><path d="M7.616 3.399c.137-.033.221-.173.188-.31l-.082-.334c-.033-.137-.173-.221-.31-.188-.136.034-.221.173-.187.31l.082.334c.033.137.172.221.309.188z"/><path d="M7.1 3.424c.137-.033.221-.173.188-.31l-.068-.277c-.033-.137-.172-.221-.309-.188s-.221.173-.188.31l.068.277c.033.137.172.221.309.188z"/><path d="M6.581 3.447c.137-.033.221-.173.188-.31l-.039-.162c-.034-.136-.173-.221-.31-.188-.137.034-.221.173-.188.31l.04.162c.033.137.173.222.309.188z"/></g><path fill="#3A6693" d="M22 24.5L18 23l-4 1.5s-.854 1.917-1 5.188h3.187c.917-.979 1.25-3.604 1.25-3.604h1.125s.333 2.625 1.25 3.604H23c-.146-3.271-1-5.188-1-5.188z"/><path fill="#C1694F" d="M14 22.5h8v2h-8z"/><path fill="#14171A" d="M19 22.399h.65v2.209H19z"/><circle fill="#14171A" cx="18.5" cy="23.458" r=".167"/><path fill="#14171A" d="M18.021 23.458c0 .092-.075.167-.167.167-.092 0-.167-.075-.167-.167 0-.092.075-.167.167-.167.092.001.167.075.167.167z"/><circle fill="#14171A" cx="17.208" cy="23.458" r=".167"/><circle fill="#14171A" cx="16.562" cy="23.458" r=".167"/><circle fill="#14171A" cx="15.917" cy="23.458" r=".167"/><circle fill="#14171A" cx="15.271" cy="23.458" r=".167"/><circle fill="#14171A" cx="14.625" cy="23.458" r=".167"/><circle fill="#14171A" cx="17.208" cy="23.458" r=".167"/><circle fill="#657786" cx="16.553" cy="23.458" r=".148"/><path fill="#657786" d="M16.318 23.31h.235v.297h-.235z"/><path fill="#657786" d="M16.729 24.846h-.758v-2.697h.758v.35h-.409v1.997h.409z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f3cb-1f3fb.svg b/public/emoji/1f3cb-1f3fb.svg
index edfb41c9317bd22de54192c7b803ed400e1814be..1caeeb8f27dda0d604b4f6bbca6b7fc716d4cd77 100644
--- a/public/emoji/1f3cb-1f3fb.svg
+++ b/public/emoji/1f3cb-1f3fb.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#F7DECE" d="M14.778 35.254c.141.534.688.854 1.222.713.534-.141.854-.687.714-1.222l-1.525-5.803c-.14-.534-.687-.854-1.221-.713-.534.14-.854.687-.713 1.221l1.523 5.804zm4.509-.508c-.141.534.178 1.08.713 1.221.535.141 1.081-.178 1.222-.713l1.524-5.803c.141-.535-.179-1.082-.713-1.222-.535-.141-1.081.179-1.222.713l-1.524 5.804zm-5.082-20.042C14.368 15.232 14 17 14 17c-1 0-1.542-1.177-1.706-1.705L9.045 4.786c-.163-.528.132-1.088.66-1.251.527-.163 1.087.132 1.25.66l3.25 10.509zm7.59 0C21.632 15.232 22 17 22 17c1 0 1.543-1.177 1.705-1.705l3.25-10.509c.163-.528-.133-1.088-.66-1.251-.527-.163-1.088.132-1.25.66l-3.25 10.509z"/><path fill="#292F33" d="M18.382 3c-.907 0-1.745.29-2.432.778-1.412.074-2.539 1.232-2.539 2.663 0 1.179.005 2.664 1.559 3.217.763 1.061 2.005 1.753 3.412 1.753 2.323 0 4.206-1.882 4.206-4.205C22.588 4.883 20.705 3 18.382 3z"/><path fill="#4289C1" d="M19 23h-2l-3 2-1 5h3l1-3h2l1 3h3l-1-5zm-6 13v-1s0-1 2-1 2 1 2 1v1h-4zm6 0v-1s0-1 2-1 2 1 2 1v1h-4z"/><path fill="#4289C1" d="M22 14h-8v10h8V14z"/><path fill="#F7DECE" d="M16.471 11.412v3.059c0 .844.684 1.529 1.529 1.529s1.529-.685 1.529-1.529v-3.059h-3.058z"/><path fill="#F7DECE" d="M21.823 5.294h-7.647v4.588c0 2.112 1.712 3.823 3.824 3.823s3.823-1.711 3.823-3.823V5.294z"/><path fill="#292F33" d="M16.4 5.223H14v3.201c1.867 0 2.28-1.93 2.373-2.791.031.86.651 2.791 5.628 2.791V5.223H16.4z"/><path fill="#C1694F" d="M19.529 12.176h-3.058s0 .765 1.529.765 1.529-.765 1.529-.765z"/><circle fill="#662113" cx="16.088" cy="9.5" r=".382"/><path fill="#662113" d="M20.294 9.5c0 .211-.171.382-.382.382-.212 0-.383-.171-.383-.382s.171-.382.383-.382c.211 0 .382.171.382.382z"/><path fill="#C1694F" d="M17.235 10.647h1.53s0 .765-.765.765-.765-.765-.765-.765z"/><path fill="#662113" d="M14 23h8v2h-8z"/><path fill="#99AAB5" d="M33.5 3.5c0 .276-.224.5-.5.5H3c-.276 0-.5-.224-.5-.5S2.724 3 3 3h30c.276 0 .5.224.5.5z"/><path fill="#292F33" d="M32 0c-.553 0-1 .448-1 1 0-.552-.447-1-1-1s-1 .448-1 1v5c0 .552.447 1 1 1s1-.448 1-1c0 .552.447 1 1 1s1-.448 1-1V1c0-.552-.447-1-1-1zM6 0c-.553 0-1 .448-1 1 0-.552-.447-1-1-1S3 .448 3 1v5c0 .552.447 1 1 1s1-.448 1-1c0 .552.447 1 1 1s1-.448 1-1V1c0-.552-.447-1-1-1z"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#F7DECE" d="M15.81 34.875h-1.422s-1.323-3.348-1.119-5.736l2.918.549c.548 1.571-.377 5.187-.377 5.187zm4.317 0h1.422s1.323-3.348 1.119-5.736l-2.918.549c-.548 1.571.377 5.187.377 5.187z"/><path fill="#4289C1" d="M13.617 35.149c.106-.243.331-.694.355-.955.024-.261.036-.354.25-.426.362-.121 1.496-.087 1.691-.016.194.071.197.263.225.424.028.161.118.424.237.64s.426.697.272 1.034c-.064.14-.422.138-1.569.138s-1.476-.026-1.554-.118c-.08-.092-.014-.477.093-.721zm8.704 0c-.106-.243-.331-.694-.355-.955-.024-.261-.036-.354-.25-.426-.362-.121-1.496-.087-1.691-.016-.194.071-.197.263-.225.424s-.118.424-.237.64c-.118.216-.426.697-.272 1.034.064.14.422.138 1.569.138s1.476-.026 1.554-.118.013-.477-.093-.721z"/><path fill="#F7DECE" d="M8.646 4.146c.011.127.871 1.535 1.323 2.635.452 1.1.71 2.198.948 2.448.476.499 2.285 1.879 3.271 3.343.985 1.464.57 2.503-.094 2.922-.88.555-1.803.204-2.437-.788-.451-.706-1.951-3.209-2.739-4.601-.306-.541-1.018-1.512-1.449-2.574-.406-1-.454-2.168-.515-2.312-.179-.425-.878-.977-.912-1.407 0 0 2.567-.095 2.604.334zm18.708 0c-.011.127-.871 1.535-1.323 2.635-.452 1.1-.71 2.198-.948 2.448-.476.499-2.285 1.879-3.271 3.343-.985 1.464-.57 2.503.094 2.922.88.555 1.803.204 2.437-.788.451-.706 1.951-3.209 2.739-4.601.304-.54 1.017-1.511 1.448-2.573.406-1 .454-2.168.515-2.312.178-.425.878-.977.912-1.406.001-.002-2.566-.097-2.603.332z"/><path fill="#99AAB5" d="M36 3.5c0 .276-.224.5-.5.5H.5C.224 4 0 3.776 0 3.5S.224 3 .5 3h35c.276 0 .5.224.5.5z"/><path fill="#292F33" d="M34 0c-.553 0-1 .448-1 1 0-.552-.447-1-1-1-.553 0-1 .448-1 1v5c0 .552.447 1 1 1 .553 0 1-.448 1-1 0 .552.447 1 1 1 .553 0 1-.448 1-1V1c0-.552-.447-1-1-1zM4 0c-.553 0-1 .448-1 1 0-.552-.447-1-1-1S1 .448 1 1v5c0 .552.447 1 1 1s1-.448 1-1c0 .552.447 1 1 1s1-.448 1-1V1c0-.552-.447-1-1-1z"/><path fill="#4289C1" d="M24.918 13.806c-.625-.583-2.746-1.723-2.746-1.723-.742.419-1.283 1.257-1.492 1.617-.665.117-1.151.3-1.151.3H16.47s-.486-.183-1.151-.3c-.209-.36-.75-1.197-1.492-1.617 0 0-2.121 1.14-2.746 1.723.21.537.492 1.047.716 1.417.255 1.29 1.146 2.763 1.281 3.013.418.78.922 4.264.922 4.264l4 1.5 4-1.5s.504-3.484.922-4.264c.134-.25 1.025-1.724 1.281-3.013.224-.37.506-.879.715-1.417z"/><path fill="#F7DECE" d="M16.471 11.412v3.059c0 .844.684 1.529 1.529 1.529.845 0 1.529-.685 1.529-1.529v-3.059h-3.058z"/><path fill="#292F33" d="M18.375 3.353c-.89 0-1.712.284-2.386.763-1.385.072-2.49 1.209-2.49 2.612 0 1.156.005 2.613 1.529 3.156.749 1.04 1.967 1.719 3.347 1.719 2.278 0 4.125-1.846 4.125-4.125 0-2.278-1.847-4.125-4.125-4.125z"/><path fill="#F7DECE" d="M21.75 5.602h-7.5v4.5c0 2.072 1.679 3.75 3.75 3.75 2.072 0 3.75-1.678 3.75-3.75v-4.5z"/><path fill="#292F33" d="M18 4l-3.924 1.533v3.139c1.831 0 2.236-1.893 2.327-2.737.031.844.639 2.737 5.52 2.737V5.533L18 4z"/><path fill="#C1694F" d="M19.5 12.353h-3s0 .75 1.5.75 1.5-.75 1.5-.75z"/><circle fill="#662113" cx="16.125" cy="9.728" r=".375"/><path fill="#662113" d="M20.25 9.728c0 .207-.168.375-.374.375-.208 0-.375-.168-.375-.375s.168-.375.375-.375c.206 0 .374.168.374.375z"/><path fill="#C1694F" d="M17.25 10.853h1.5s0 .75-.75.75-.75-.75-.75-.75z"/><g fill="#F7DECE"><path d="M27.096 4.363c-.33-.157-.476-.428-.377-.719l.003-.01c.099-.291.291-.346.738-.339 0 0 1.521.076 2.437.712 0 0-.199.304-.447.56l-.003.01c-.101.29-1.614.137-2.351-.214z"/><path d="M27.843 3.47c-.137-.033-.221-.173-.188-.31l.087-.357c.033-.137.173-.221.31-.188s.221.173.188.31l-.087.357c-.034.137-.173.221-.31.188zm-.445-.87c-.163-.055-.342.034-.397.197l-.279.837c-.055.164.168-.068.332-.013.163.055.342-.033.397-.196l.144-.427c.055-.164-.034-.342-.197-.398z"/><path d="M28.384 3.399c-.137-.033-.221-.173-.188-.31l.082-.334c.033-.137.173-.221.31-.188s.221.173.188.31l-.082.334c-.034.137-.173.221-.31.188z"/><path d="M28.9 3.424c-.137-.033-.221-.173-.188-.31l.068-.277c.033-.137.173-.221.31-.188s.221.173.188.31l-.068.277c-.034.137-.173.221-.31.188z"/><path d="M29.419 3.447c-.137-.033-.221-.173-.188-.31l.04-.162c.033-.137.173-.221.31-.188s.221.173.188.31l-.04.162c-.034.137-.174.222-.31.188z"/></g><g fill="#F7DECE"><path d="M8.904 4.363c.33-.157.476-.428.377-.719l-.003-.01c-.099-.29-.291-.346-.738-.339 0 0-1.521.076-2.437.712 0 0 .199.304.447.56l.003.01c.101.29 1.614.137 2.351-.214z"/><path d="M8.157 3.47c.137-.033.221-.173.188-.31l-.087-.357c-.033-.137-.173-.221-.31-.188-.137.034-.221.173-.188.31l.087.357c.034.137.173.221.31.188zm.445-.87c.163-.055.342.034.397.197l.279.837c.055.164-.168-.068-.332-.013-.163.055-.342-.033-.397-.196l-.144-.427c-.055-.164.034-.342.197-.398z"/><path d="M7.616 3.399c.137-.033.221-.173.188-.31l-.082-.334c-.033-.137-.173-.221-.31-.188-.136.034-.221.173-.187.31l.082.334c.033.137.172.221.309.188z"/><path d="M7.1 3.424c.137-.033.221-.173.188-.31l-.068-.277c-.033-.137-.172-.221-.309-.188s-.221.173-.188.31l.068.277c.033.137.172.221.309.188z"/><path d="M6.581 3.447c.137-.033.221-.173.188-.31l-.039-.162c-.034-.136-.173-.221-.31-.188-.137.034-.221.173-.188.31l.04.162c.033.137.173.222.309.188z"/></g><path fill="#3A6693" d="M22 24.5L18 23l-4 1.5s-.854 1.917-1 5.188h3.187c.917-.979 1.25-3.604 1.25-3.604h1.125s.333 2.625 1.25 3.604H23c-.146-3.271-1-5.188-1-5.188z"/><path fill="#C1694F" d="M14 22.5h8v2h-8z"/><path fill="#14171A" d="M19 22.399h.65v2.209H19z"/><circle fill="#14171A" cx="18.5" cy="23.458" r=".167"/><path fill="#14171A" d="M18.021 23.458c0 .092-.075.167-.167.167-.092 0-.167-.075-.167-.167 0-.092.075-.167.167-.167.092.001.167.075.167.167z"/><circle fill="#14171A" cx="17.208" cy="23.458" r=".167"/><circle fill="#14171A" cx="16.562" cy="23.458" r=".167"/><circle fill="#14171A" cx="15.917" cy="23.458" r=".167"/><circle fill="#14171A" cx="15.271" cy="23.458" r=".167"/><circle fill="#14171A" cx="14.625" cy="23.458" r=".167"/><circle fill="#14171A" cx="17.208" cy="23.458" r=".167"/><circle fill="#657786" cx="16.553" cy="23.458" r=".148"/><path fill="#657786" d="M16.318 23.31h.235v.297h-.235z"/><path fill="#657786" d="M16.729 24.846h-.758v-2.697h.758v.35h-.409v1.997h.409z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f3cb-1f3fc-200d-2640-fe0f.svg b/public/emoji/1f3cb-1f3fc-200d-2640-fe0f.svg
index a6c248961a5873ce19b11f316cb11f0709af947b..03f2935791c3f08e38498ff1be1fa7c11b5e5e7f 100644
--- a/public/emoji/1f3cb-1f3fc-200d-2640-fe0f.svg
+++ b/public/emoji/1f3cb-1f3fc-200d-2640-fe0f.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#FFE51E" d="M18.497 3.508c-.731 0-1.421.173-2.037.472-.167-.029-.338-.047-.513-.047-1.643 0-2.975 1.332-2.975 2.975v5.1h.007c.078 2.748 2.326 4.954 5.093 4.954s5.015-2.206 5.093-4.954h.007V8.183c0-2.582-2.093-4.675-4.675-4.675z"/><path fill="#F3D2A2" d="M14.778 35.254c.141.534.688.854 1.222.713.534-.141.854-.687.714-1.222l-1.525-5.803c-.14-.534-.687-.854-1.221-.713-.534.14-.854.687-.713 1.221l1.523 5.804zm4.509-.508c-.141.534.178 1.08.713 1.221.535.141 1.081-.178 1.222-.713l1.524-5.803c.141-.535-.179-1.082-.713-1.222-.535-.141-1.081.179-1.222.713l-1.524 5.804zm-5.082-20.042C14.368 15.232 14 17 14 17c-1 0-1.542-1.177-1.706-1.705L9.045 4.786c-.163-.528.132-1.088.66-1.251.527-.163 1.087.132 1.25.66l3.25 10.509zm7.59 0C21.632 15.232 22 17 22 17c1 0 1.543-1.177 1.705-1.705l3.25-10.509c.163-.528-.133-1.088-.66-1.251-.527-.163-1.088.132-1.25.66l-3.25 10.509z"/><path fill="#FFE51E" d="M18.382 3c-.907 0-1.745.29-2.432.778-1.412.074-2.539 1.232-2.539 2.663 0 1.179.005 2.664 1.559 3.217.763 1.061 2.005 1.753 3.412 1.753 2.323 0 4.206-1.882 4.206-4.205C22.588 4.883 20.705 3 18.382 3z"/><path fill="#DD2E44" d="M19 23h-2l-3 2-1 5h3l1-3h2l1 3h3l-1-5zm-6 13v-1s0-1 2-1 2 1 2 1v1h-4zm6 0v-1s0-1 2-1 2 1 2 1v1h-4z"/><path fill="#DD2E44" d="M22 14h-8v10h8V14z"/><path fill="#F3D2A2" d="M16.471 12.412v2.059c0 .844.684 1.529 1.529 1.529s1.529-.685 1.529-1.529v-2.059h-3.058z"/><path fill="#F3D2A2" d="M21.823 5.294h-7.647v4.588c0 2.112 1.712 3.823 3.824 3.823s3.823-1.711 3.823-3.823V5.294z"/><path fill="#FFE51E" d="M16.4 5.223H14v3.201c1.867 0 2.28-1.93 2.373-2.791.031.86.651 2.791 5.628 2.791V5.223H16.4z"/><path fill="#DF1F32" d="M19.529 12.176h-3.058s0 .765 1.529.765 1.529-.765 1.529-.765z"/><circle fill="#662113" cx="16.088" cy="9.5" r=".382"/><path fill="#662113" d="M20.294 9.5c0 .211-.171.382-.382.382-.212 0-.383-.171-.383-.382s.171-.382.383-.382c.211 0 .382.171.382.382z"/><path fill="#C1694F" d="M17.235 10.647h1.53s0 .765-.765.765-.765-.765-.765-.765z"/><path fill="#662113" d="M14 23h8v2h-8z"/><path fill="#99AAB5" d="M33.5 3.5c0 .276-.224.5-.5.5H3c-.276 0-.5-.224-.5-.5S2.724 3 3 3h30c.276 0 .5.224.5.5z"/><path fill="#292F33" d="M32 0c-.553 0-1 .448-1 1 0-.552-.447-1-1-1s-1 .448-1 1v5c0 .552.447 1 1 1s1-.448 1-1c0 .552.447 1 1 1s1-.448 1-1V1c0-.552-.447-1-1-1zM6 0c-.553 0-1 .448-1 1 0-.552-.447-1-1-1S3 .448 3 1v5c0 .552.447 1 1 1s1-.448 1-1c0 .552.447 1 1 1s1-.448 1-1V1c0-.552-.447-1-1-1z"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#FFE51E" d="M18.528 3.81c-.731 0-1.421.173-2.037.472-.167-.029-.338-.047-.513-.047-1.643 0-2.975 1.332-2.975 2.975v5.1h.007c.078 2.748 2.326 4.954 5.093 4.954s5.015-2.206 5.093-4.954h.007V8.485c0-2.582-2.093-4.675-4.675-4.675z"/><path fill="#F3D2A2" d="M15.447 34.875h-1.02s-1.384-3.348-1.18-5.736l2.531.549c.56 1.564-.331 5.187-.331 5.187zm4.885 0h1.02s1.384-3.348 1.18-5.736L20 29.688c-.559 1.564.332 5.187.332 5.187z"/><path fill="#DD2E44" d="M13.452 35.149c.102-.243.316-.694.339-.955.023-.261.034-.354.238-.426.345-.121 1.427-.087 1.613-.016.185.071.188.263.214.424.026.161.113.424.226.64s.406.697.26 1.034c-.061.14-.402.138-1.497.138s-1.408-.026-1.483-.118-.011-.477.09-.721zm8.875 0c-.102-.243-.316-.694-.339-.955-.023-.261-.034-.354-.238-.426-.345-.121-1.427-.087-1.613-.016-.185.071-.188.263-.214.424-.026.161-.113.424-.226.64s-.406.697-.26 1.034c.061.14.402.138 1.497.138s1.408-.026 1.483-.118c.074-.092.011-.477-.09-.721z"/><path fill="#F3D2A2" d="M8.31 4.156c.011.127.814 1.525 1.266 2.625.452 1.1.747 2.25.984 2.5.476.499 1.926 1.474 2.911 2.937.985 1.464-1.977 2.58-2.611 1.588-.451-.706-1.309-2.368-2.097-3.759-.304-.54-.897-1.454-1.328-2.516-.406-1-.642-2.168-.702-2.312-.179-.425-.879-.977-.913-1.407 0 0 2.454-.084 2.49.344zm19.159 0c-.011.127-.814 1.525-1.266 2.625-.452 1.1-.747 2.25-.984 2.5-.476.499-1.926 1.474-2.911 2.937-.985 1.464 1.977 2.58 2.611 1.588.451-.706 1.309-2.368 2.097-3.759.304-.54.897-1.454 1.328-2.516.406-1 .642-2.168.702-2.312.178-.425.878-.977.912-1.406 0-.001-2.453-.085-2.489.343z"/><path fill="#99AAB5" d="M36 3.5c0 .276-.224.5-.5.5H.5C.224 4 0 3.776 0 3.5S.224 3 .5 3h35c.276 0 .5.224.5.5z"/><path fill="#292F33" d="M34 0c-.553 0-1 .448-1 1 0-.552-.447-1-1-1-.553 0-1 .448-1 1v5c0 .552.447 1 1 1 .553 0 1-.448 1-1 0 .552.447 1 1 1 .553 0 1-.448 1-1V1c0-.552-.447-1-1-1zM4 0c-.553 0-1 .448-1 1 0-.552-.447-1-1-1S1 .448 1 1v5c0 .552.447 1 1 1s1-.448 1-1c0 .552.447 1 1 1s1-.448 1-1V1c0-.552-.447-1-1-1z"/><path fill="#DD2E44" d="M24.918 13.806c-.625-.583-2.611-1.588-2.611-1.588-.709.401-1.237 1.188-1.465 1.571l-1.398.394h-2.89l-1.627-.406c-.231-.387-.755-1.162-1.458-1.559 0 0-1.986 1.004-2.611 1.588.406 1.039 1.543 2.428 1.543 2.428l.008-.001c.4.821.854 1.362.945 1.547.386.781.646 4.72.646 4.72l4 1.5 3.779-1.5s.26-3.939.643-4.719c.091-.185.545-.727.945-1.547l.008.001c0-.001 1.138-1.39 1.543-2.429z"/><path fill="#F3D2A2" d="M16.471 11.412v3.059c0 .844.684 1.529 1.529 1.529.845 0 1.529-.685 1.529-1.529v-3.059h-3.058z"/><path fill="#FFE51E" d="M18.375 3.353c-.89 0-1.712.284-2.386.763-1.385.072-2.49 1.209-2.49 2.612 0 1.156.005 2.613 1.529 3.156.749 1.04 1.967 1.719 3.347 1.719 2.278 0 4.125-1.846 4.125-4.125 0-2.278-1.847-4.125-4.125-4.125z"/><path fill="#F3D2A2" d="M21.75 5.602h-7.5v4.5c0 2.072 1.679 3.75 3.75 3.75 2.072 0 3.75-1.678 3.75-3.75v-4.5z"/><path fill="#FFE51E" d="M18 4l-3.924 1.533v3.139c1.831 0 2.236-1.893 2.327-2.737.031.844.639 2.737 5.52 2.737V5.533L18 4z"/><path fill="#C1694F" d="M19.5 12.353h-3s0 .75 1.5.75 1.5-.75 1.5-.75z"/><circle fill="#662113" cx="16.125" cy="9.728" r=".375"/><path fill="#662113" d="M20.25 9.728c0 .207-.168.375-.374.375-.208 0-.375-.168-.375-.375s.168-.375.375-.375c.206 0 .374.168.374.375z"/><path fill="#C1694F" d="M17.25 10.853h1.5s0 .75-.75.75-.75-.75-.75-.75z"/><g fill="#F3D2A2"><path d="M27.096 4.363c-.33-.157-.476-.428-.377-.719l.003-.01c.099-.291.291-.346.738-.339 0 0 1.521.076 2.437.712 0 0-.199.304-.447.56l-.003.01c-.101.29-1.614.137-2.351-.214z"/><path d="M27.843 3.47c-.137-.033-.221-.173-.188-.31l.087-.357c.033-.137.173-.221.31-.188s.221.173.188.31l-.087.357c-.034.137-.173.221-.31.188zm-.445-.87c-.163-.055-.342.034-.397.197l-.279.837c-.055.164.168-.068.332-.013.163.055.342-.033.397-.196l.144-.427c.055-.164-.034-.342-.197-.398z"/><path d="M28.384 3.399c-.137-.033-.221-.173-.188-.31l.082-.334c.033-.137.173-.221.31-.188s.221.173.188.31l-.082.334c-.034.137-.173.221-.31.188z"/><path d="M28.9 3.424c-.137-.033-.221-.173-.188-.31l.068-.277c.033-.137.173-.221.31-.188s.221.173.188.31l-.068.277c-.034.137-.173.221-.31.188z"/><path d="M29.419 3.447c-.137-.033-.221-.173-.188-.31l.04-.162c.033-.137.173-.221.31-.188s.221.173.188.31l-.04.162c-.034.137-.174.222-.31.188z"/></g><g fill="#F3D2A2"><path d="M8.683 4.363c.33-.157.476-.428.377-.719l-.003-.01c-.1-.29-.292-.346-.738-.339 0 0-1.521.076-2.437.712 0 0 .199.304.447.56l.003.01c.1.29 1.614.137 2.351-.214z"/><path d="M7.936 3.47c.137-.033.221-.173.188-.31l-.088-.357c-.033-.137-.173-.221-.31-.188-.136.034-.221.173-.187.31l.087.357c.034.137.173.221.31.188zm.445-.87c.163-.055.342.034.397.197l.279.837c.055.164-.168-.068-.332-.013-.163.055-.342-.033-.397-.196l-.144-.427c-.055-.164.033-.342.197-.398z"/><path d="M7.395 3.399c.137-.033.221-.173.188-.31l-.082-.334c-.033-.137-.173-.221-.31-.188-.137.034-.221.173-.188.31l.082.334c.034.137.173.221.31.188z"/><path d="M6.879 3.424c.137-.034.221-.173.188-.31l-.068-.277c-.033-.137-.173-.221-.309-.188-.137.033-.221.173-.188.31l.068.277c.033.137.172.221.309.188z"/><path d="M6.36 3.447c.137-.033.221-.173.188-.31l-.04-.162c-.033-.137-.173-.221-.31-.188-.136.034-.22.173-.187.31l.04.162c.033.137.172.222.309.188z"/></g><path fill="#DD2E44" d="M21.779 24.5L18 23l-4 1.5s-.94 1.766-.94 5.188h2.719c.917-.979 1.25-3.604 1.25-3.604h1.721s.333 2.625 1.25 3.604h2.719c0-3.422-.94-5.188-.94-5.188z"/><path fill="#C1694F" d="M14 22.5h7.779v2H14z"/><path fill="#14171A" d="M19 22.399h.65v2.209H19z"/><circle fill="#14171A" cx="18.5" cy="23.458" r=".167"/><path fill="#14171A" d="M18.021 23.458c0 .092-.075.167-.167.167-.092 0-.167-.075-.167-.167 0-.092.075-.167.167-.167.092.001.167.075.167.167z"/><circle fill="#14171A" cx="17.208" cy="23.458" r=".167"/><circle fill="#14171A" cx="16.562" cy="23.458" r=".167"/><circle fill="#14171A" cx="15.917" cy="23.458" r=".167"/><circle fill="#14171A" cx="15.271" cy="23.458" r=".167"/><circle fill="#14171A" cx="14.625" cy="23.458" r=".167"/><circle fill="#14171A" cx="17.208" cy="23.458" r=".167"/><circle fill="#657786" cx="16.318" cy="23.458" r=".148"/><circle fill="#657786" cx="16.553" cy="23.458" r=".148"/><path fill="#657786" d="M16.318 23.31h.235v.297h-.235z"/><path fill="#657786" d="M16.729 24.846h-.758v-2.698h.758v.35h-.408v1.998h.408z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f3cb-1f3fc-200d-2642-fe0f.svg b/public/emoji/1f3cb-1f3fc-200d-2642-fe0f.svg
index dd8a663903efc18b3362d4630c3ea485165de27d..44953ab18ea61cb91399bc340cdc0a0ef3df559b 100644
--- a/public/emoji/1f3cb-1f3fc-200d-2642-fe0f.svg
+++ b/public/emoji/1f3cb-1f3fc-200d-2642-fe0f.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#F3D2A2" d="M14.778 35.254c.141.534.688.854 1.222.713.534-.141.854-.687.714-1.222l-1.525-5.803c-.14-.534-.687-.854-1.221-.713-.534.14-.854.687-.713 1.221l1.523 5.804zm4.509-.508c-.141.534.178 1.08.713 1.221.535.141 1.081-.178 1.222-.713l1.524-5.803c.141-.535-.179-1.082-.713-1.222-.535-.141-1.081.179-1.222.713l-1.524 5.804zm-5.082-20.042C14.368 15.232 14 17 14 17c-1 0-1.542-1.177-1.706-1.705L9.045 4.786c-.163-.528.132-1.088.66-1.251.527-.163 1.087.132 1.25.66l3.25 10.509zm7.59 0C21.632 15.232 22 17 22 17c1 0 1.543-1.177 1.705-1.705l3.25-10.509c.163-.528-.133-1.088-.66-1.251-.527-.163-1.088.132-1.25.66l-3.25 10.509z"/><path fill="#FFE51E" d="M18.382 3c-.907 0-1.745.29-2.432.778-1.412.074-2.539 1.232-2.539 2.663 0 1.179.005 2.664 1.559 3.217.763 1.061 2.005 1.753 3.412 1.753 2.323 0 4.206-1.882 4.206-4.205C22.588 4.883 20.705 3 18.382 3z"/><path fill="#4289C1" d="M19 23h-2l-3 2-1 5h3l1-3h2l1 3h3l-1-5zm-6 13v-1s0-1 2-1 2 1 2 1v1h-4zm6 0v-1s0-1 2-1 2 1 2 1v1h-4z"/><path fill="#4289C1" d="M22 14h-8v10h8V14z"/><path fill="#F3D2A2" d="M16.471 11.412v3.059c0 .844.684 1.529 1.529 1.529s1.529-.685 1.529-1.529v-3.059h-3.058z"/><path fill="#F3D2A2" d="M21.823 5.294h-7.647v4.588c0 2.112 1.712 3.823 3.824 3.823s3.823-1.711 3.823-3.823V5.294z"/><path fill="#FFE51E" d="M16.4 5.223H14v3.201c1.867 0 2.28-1.93 2.373-2.791.031.86.651 2.791 5.628 2.791V5.223H16.4z"/><path fill="#C1694F" d="M19.529 12.176h-3.058s0 .765 1.529.765 1.529-.765 1.529-.765z"/><circle fill="#662113" cx="16.088" cy="9.5" r=".382"/><path fill="#662113" d="M20.294 9.5c0 .211-.171.382-.382.382-.212 0-.383-.171-.383-.382s.171-.382.383-.382c.211 0 .382.171.382.382z"/><path fill="#C1694F" d="M17.235 10.647h1.53s0 .765-.765.765-.765-.765-.765-.765z"/><path fill="#662113" d="M14 23h8v2h-8z"/><path fill="#99AAB5" d="M33.5 3.5c0 .276-.224.5-.5.5H3c-.276 0-.5-.224-.5-.5S2.724 3 3 3h30c.276 0 .5.224.5.5z"/><path fill="#292F33" d="M32 0c-.553 0-1 .448-1 1 0-.552-.447-1-1-1s-1 .448-1 1v5c0 .552.447 1 1 1s1-.448 1-1c0 .552.447 1 1 1s1-.448 1-1V1c0-.552-.447-1-1-1zM6 0c-.553 0-1 .448-1 1 0-.552-.447-1-1-1S3 .448 3 1v5c0 .552.447 1 1 1s1-.448 1-1c0 .552.447 1 1 1s1-.448 1-1V1c0-.552-.447-1-1-1z"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#F3D2A2" d="M15.81 34.875h-1.422s-1.323-3.348-1.119-5.736l2.918.549c.548 1.571-.377 5.187-.377 5.187zm4.317 0h1.422s1.323-3.348 1.119-5.736l-2.918.549c-.548 1.571.377 5.187.377 5.187z"/><path fill="#4289C1" d="M13.617 35.149c.106-.243.331-.694.355-.955.024-.261.036-.354.25-.426.362-.121 1.496-.087 1.691-.016.194.071.197.263.225.424.028.161.118.424.237.64s.426.697.272 1.034c-.064.14-.422.138-1.569.138s-1.476-.026-1.554-.118c-.08-.092-.014-.477.093-.721zm8.704 0c-.106-.243-.331-.694-.355-.955-.024-.261-.036-.354-.25-.426-.362-.121-1.496-.087-1.691-.016-.194.071-.197.263-.225.424s-.118.424-.237.64c-.118.216-.426.697-.272 1.034.064.14.422.138 1.569.138s1.476-.026 1.554-.118.013-.477-.093-.721z"/><path fill="#F3D2A2" d="M8.646 4.146c.011.127.871 1.535 1.323 2.635.452 1.1.71 2.198.948 2.448.476.499 2.285 1.879 3.271 3.343.985 1.464.57 2.503-.094 2.922-.88.555-1.803.204-2.437-.788-.451-.706-1.951-3.209-2.739-4.601-.306-.541-1.018-1.512-1.449-2.574-.406-1-.454-2.168-.515-2.312-.179-.425-.878-.977-.912-1.407 0 0 2.567-.095 2.604.334zm18.708 0c-.011.127-.871 1.535-1.323 2.635-.452 1.1-.71 2.198-.948 2.448-.476.499-2.285 1.879-3.271 3.343-.985 1.464-.57 2.503.094 2.922.88.555 1.803.204 2.437-.788.451-.706 1.951-3.209 2.739-4.601.304-.54 1.017-1.511 1.448-2.573.406-1 .454-2.168.515-2.312.178-.425.878-.977.912-1.406.001-.002-2.566-.097-2.603.332z"/><path fill="#99AAB5" d="M36 3.5c0 .276-.224.5-.5.5H.5C.224 4 0 3.776 0 3.5S.224 3 .5 3h35c.276 0 .5.224.5.5z"/><path fill="#292F33" d="M34 0c-.553 0-1 .448-1 1 0-.552-.447-1-1-1-.553 0-1 .448-1 1v5c0 .552.447 1 1 1 .553 0 1-.448 1-1 0 .552.447 1 1 1 .553 0 1-.448 1-1V1c0-.552-.447-1-1-1zM4 0c-.553 0-1 .448-1 1 0-.552-.447-1-1-1S1 .448 1 1v5c0 .552.447 1 1 1s1-.448 1-1c0 .552.447 1 1 1s1-.448 1-1V1c0-.552-.447-1-1-1z"/><path fill="#4289C1" d="M24.918 13.806c-.625-.583-2.746-1.723-2.746-1.723-.742.419-1.283 1.257-1.492 1.617-.665.117-1.151.3-1.151.3H16.47s-.486-.183-1.151-.3c-.209-.36-.75-1.197-1.492-1.617 0 0-2.121 1.14-2.746 1.723.21.537.492 1.047.716 1.417.255 1.29 1.146 2.763 1.281 3.013.418.78.922 4.264.922 4.264l4 1.5 4-1.5s.504-3.484.922-4.264c.134-.25 1.025-1.724 1.281-3.013.224-.37.506-.879.715-1.417z"/><path fill="#F3D2A2" d="M16.471 11.412v3.059c0 .844.684 1.529 1.529 1.529.845 0 1.529-.685 1.529-1.529v-3.059h-3.058z"/><path fill="#FFE51E" d="M18.375 3.353c-.89 0-1.712.284-2.386.763-1.385.072-2.49 1.209-2.49 2.612 0 1.156.005 2.613 1.529 3.156.749 1.04 1.967 1.719 3.347 1.719 2.278 0 4.125-1.846 4.125-4.125 0-2.278-1.847-4.125-4.125-4.125z"/><path fill="#F3D2A2" d="M21.75 5.602h-7.5v4.5c0 2.072 1.679 3.75 3.75 3.75 2.072 0 3.75-1.678 3.75-3.75v-4.5z"/><path fill="#FFE51E" d="M18 4l-3.924 1.533v3.139c1.831 0 2.236-1.893 2.327-2.737.031.844.639 2.737 5.52 2.737V5.533L18 4z"/><path fill="#C1694F" d="M19.5 12.353h-3s0 .75 1.5.75 1.5-.75 1.5-.75z"/><circle fill="#662113" cx="16.125" cy="9.728" r=".375"/><path fill="#662113" d="M20.25 9.728c0 .207-.168.375-.374.375-.208 0-.375-.168-.375-.375s.168-.375.375-.375c.206 0 .374.168.374.375z"/><path fill="#C1694F" d="M17.25 10.853h1.5s0 .75-.75.75-.75-.75-.75-.75z"/><g fill="#F3D2A2"><path d="M27.096 4.363c-.33-.157-.476-.428-.377-.719l.003-.01c.099-.291.291-.346.738-.339 0 0 1.521.076 2.437.712 0 0-.199.304-.447.56l-.003.01c-.101.29-1.614.137-2.351-.214z"/><path d="M27.843 3.47c-.137-.033-.221-.173-.188-.31l.087-.357c.033-.137.173-.221.31-.188s.221.173.188.31l-.087.357c-.034.137-.173.221-.31.188zm-.445-.87c-.163-.055-.342.034-.397.197l-.279.837c-.055.164.168-.068.332-.013.163.055.342-.033.397-.196l.144-.427c.055-.164-.034-.342-.197-.398z"/><path d="M28.384 3.399c-.137-.033-.221-.173-.188-.31l.082-.334c.033-.137.173-.221.31-.188s.221.173.188.31l-.082.334c-.034.137-.173.221-.31.188z"/><path d="M28.9 3.424c-.137-.033-.221-.173-.188-.31l.068-.277c.033-.137.173-.221.31-.188s.221.173.188.31l-.068.277c-.034.137-.173.221-.31.188z"/><path d="M29.419 3.447c-.137-.033-.221-.173-.188-.31l.04-.162c.033-.137.173-.221.31-.188s.221.173.188.31l-.04.162c-.034.137-.174.222-.31.188z"/></g><g fill="#F3D2A2"><path d="M8.904 4.363c.33-.157.476-.428.377-.719l-.003-.01c-.099-.29-.291-.346-.738-.339 0 0-1.521.076-2.437.712 0 0 .199.304.447.56l.003.01c.101.29 1.614.137 2.351-.214z"/><path d="M8.157 3.47c.137-.033.221-.173.188-.31l-.087-.357c-.033-.137-.173-.221-.31-.188-.137.034-.221.173-.188.31l.087.357c.034.137.173.221.31.188zm.445-.87c.163-.055.342.034.397.197l.279.837c.055.164-.168-.068-.332-.013-.163.055-.342-.033-.397-.196l-.144-.427c-.055-.164.034-.342.197-.398z"/><path d="M7.616 3.399c.137-.033.221-.173.188-.31l-.082-.334c-.033-.137-.173-.221-.31-.188-.136.034-.221.173-.187.31l.082.334c.033.137.172.221.309.188z"/><path d="M7.1 3.424c.137-.033.221-.173.188-.31l-.068-.277c-.033-.137-.172-.221-.309-.188s-.221.173-.188.31l.068.277c.033.137.172.221.309.188z"/><path d="M6.581 3.447c.137-.033.221-.173.188-.31l-.039-.162c-.034-.136-.173-.221-.31-.188-.137.034-.221.173-.188.31l.04.162c.033.137.173.222.309.188z"/></g><path fill="#3A6693" d="M22 24.5L18 23l-4 1.5s-.854 1.917-1 5.188h3.187c.917-.979 1.25-3.604 1.25-3.604h1.125s.333 2.625 1.25 3.604H23c-.146-3.271-1-5.188-1-5.188z"/><path fill="#C1694F" d="M14 22.5h8v2h-8z"/><path fill="#14171A" d="M19 22.399h.65v2.209H19z"/><circle fill="#14171A" cx="18.5" cy="23.458" r=".167"/><path fill="#14171A" d="M18.021 23.458c0 .092-.075.167-.167.167-.092 0-.167-.075-.167-.167 0-.092.075-.167.167-.167.092.001.167.075.167.167z"/><circle fill="#14171A" cx="17.208" cy="23.458" r=".167"/><circle fill="#14171A" cx="16.562" cy="23.458" r=".167"/><circle fill="#14171A" cx="15.917" cy="23.458" r=".167"/><circle fill="#14171A" cx="15.271" cy="23.458" r=".167"/><circle fill="#14171A" cx="14.625" cy="23.458" r=".167"/><circle fill="#14171A" cx="17.208" cy="23.458" r=".167"/><circle fill="#657786" cx="16.553" cy="23.458" r=".148"/><path fill="#657786" d="M16.318 23.31h.235v.297h-.235z"/><path fill="#657786" d="M16.729 24.846h-.758v-2.697h.758v.35h-.409v1.997h.409z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f3cb-1f3fc.svg b/public/emoji/1f3cb-1f3fc.svg
index dd8a663903efc18b3362d4630c3ea485165de27d..44953ab18ea61cb91399bc340cdc0a0ef3df559b 100644
--- a/public/emoji/1f3cb-1f3fc.svg
+++ b/public/emoji/1f3cb-1f3fc.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#F3D2A2" d="M14.778 35.254c.141.534.688.854 1.222.713.534-.141.854-.687.714-1.222l-1.525-5.803c-.14-.534-.687-.854-1.221-.713-.534.14-.854.687-.713 1.221l1.523 5.804zm4.509-.508c-.141.534.178 1.08.713 1.221.535.141 1.081-.178 1.222-.713l1.524-5.803c.141-.535-.179-1.082-.713-1.222-.535-.141-1.081.179-1.222.713l-1.524 5.804zm-5.082-20.042C14.368 15.232 14 17 14 17c-1 0-1.542-1.177-1.706-1.705L9.045 4.786c-.163-.528.132-1.088.66-1.251.527-.163 1.087.132 1.25.66l3.25 10.509zm7.59 0C21.632 15.232 22 17 22 17c1 0 1.543-1.177 1.705-1.705l3.25-10.509c.163-.528-.133-1.088-.66-1.251-.527-.163-1.088.132-1.25.66l-3.25 10.509z"/><path fill="#FFE51E" d="M18.382 3c-.907 0-1.745.29-2.432.778-1.412.074-2.539 1.232-2.539 2.663 0 1.179.005 2.664 1.559 3.217.763 1.061 2.005 1.753 3.412 1.753 2.323 0 4.206-1.882 4.206-4.205C22.588 4.883 20.705 3 18.382 3z"/><path fill="#4289C1" d="M19 23h-2l-3 2-1 5h3l1-3h2l1 3h3l-1-5zm-6 13v-1s0-1 2-1 2 1 2 1v1h-4zm6 0v-1s0-1 2-1 2 1 2 1v1h-4z"/><path fill="#4289C1" d="M22 14h-8v10h8V14z"/><path fill="#F3D2A2" d="M16.471 11.412v3.059c0 .844.684 1.529 1.529 1.529s1.529-.685 1.529-1.529v-3.059h-3.058z"/><path fill="#F3D2A2" d="M21.823 5.294h-7.647v4.588c0 2.112 1.712 3.823 3.824 3.823s3.823-1.711 3.823-3.823V5.294z"/><path fill="#FFE51E" d="M16.4 5.223H14v3.201c1.867 0 2.28-1.93 2.373-2.791.031.86.651 2.791 5.628 2.791V5.223H16.4z"/><path fill="#C1694F" d="M19.529 12.176h-3.058s0 .765 1.529.765 1.529-.765 1.529-.765z"/><circle fill="#662113" cx="16.088" cy="9.5" r=".382"/><path fill="#662113" d="M20.294 9.5c0 .211-.171.382-.382.382-.212 0-.383-.171-.383-.382s.171-.382.383-.382c.211 0 .382.171.382.382z"/><path fill="#C1694F" d="M17.235 10.647h1.53s0 .765-.765.765-.765-.765-.765-.765z"/><path fill="#662113" d="M14 23h8v2h-8z"/><path fill="#99AAB5" d="M33.5 3.5c0 .276-.224.5-.5.5H3c-.276 0-.5-.224-.5-.5S2.724 3 3 3h30c.276 0 .5.224.5.5z"/><path fill="#292F33" d="M32 0c-.553 0-1 .448-1 1 0-.552-.447-1-1-1s-1 .448-1 1v5c0 .552.447 1 1 1s1-.448 1-1c0 .552.447 1 1 1s1-.448 1-1V1c0-.552-.447-1-1-1zM6 0c-.553 0-1 .448-1 1 0-.552-.447-1-1-1S3 .448 3 1v5c0 .552.447 1 1 1s1-.448 1-1c0 .552.447 1 1 1s1-.448 1-1V1c0-.552-.447-1-1-1z"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#F3D2A2" d="M15.81 34.875h-1.422s-1.323-3.348-1.119-5.736l2.918.549c.548 1.571-.377 5.187-.377 5.187zm4.317 0h1.422s1.323-3.348 1.119-5.736l-2.918.549c-.548 1.571.377 5.187.377 5.187z"/><path fill="#4289C1" d="M13.617 35.149c.106-.243.331-.694.355-.955.024-.261.036-.354.25-.426.362-.121 1.496-.087 1.691-.016.194.071.197.263.225.424.028.161.118.424.237.64s.426.697.272 1.034c-.064.14-.422.138-1.569.138s-1.476-.026-1.554-.118c-.08-.092-.014-.477.093-.721zm8.704 0c-.106-.243-.331-.694-.355-.955-.024-.261-.036-.354-.25-.426-.362-.121-1.496-.087-1.691-.016-.194.071-.197.263-.225.424s-.118.424-.237.64c-.118.216-.426.697-.272 1.034.064.14.422.138 1.569.138s1.476-.026 1.554-.118.013-.477-.093-.721z"/><path fill="#F3D2A2" d="M8.646 4.146c.011.127.871 1.535 1.323 2.635.452 1.1.71 2.198.948 2.448.476.499 2.285 1.879 3.271 3.343.985 1.464.57 2.503-.094 2.922-.88.555-1.803.204-2.437-.788-.451-.706-1.951-3.209-2.739-4.601-.306-.541-1.018-1.512-1.449-2.574-.406-1-.454-2.168-.515-2.312-.179-.425-.878-.977-.912-1.407 0 0 2.567-.095 2.604.334zm18.708 0c-.011.127-.871 1.535-1.323 2.635-.452 1.1-.71 2.198-.948 2.448-.476.499-2.285 1.879-3.271 3.343-.985 1.464-.57 2.503.094 2.922.88.555 1.803.204 2.437-.788.451-.706 1.951-3.209 2.739-4.601.304-.54 1.017-1.511 1.448-2.573.406-1 .454-2.168.515-2.312.178-.425.878-.977.912-1.406.001-.002-2.566-.097-2.603.332z"/><path fill="#99AAB5" d="M36 3.5c0 .276-.224.5-.5.5H.5C.224 4 0 3.776 0 3.5S.224 3 .5 3h35c.276 0 .5.224.5.5z"/><path fill="#292F33" d="M34 0c-.553 0-1 .448-1 1 0-.552-.447-1-1-1-.553 0-1 .448-1 1v5c0 .552.447 1 1 1 .553 0 1-.448 1-1 0 .552.447 1 1 1 .553 0 1-.448 1-1V1c0-.552-.447-1-1-1zM4 0c-.553 0-1 .448-1 1 0-.552-.447-1-1-1S1 .448 1 1v5c0 .552.447 1 1 1s1-.448 1-1c0 .552.447 1 1 1s1-.448 1-1V1c0-.552-.447-1-1-1z"/><path fill="#4289C1" d="M24.918 13.806c-.625-.583-2.746-1.723-2.746-1.723-.742.419-1.283 1.257-1.492 1.617-.665.117-1.151.3-1.151.3H16.47s-.486-.183-1.151-.3c-.209-.36-.75-1.197-1.492-1.617 0 0-2.121 1.14-2.746 1.723.21.537.492 1.047.716 1.417.255 1.29 1.146 2.763 1.281 3.013.418.78.922 4.264.922 4.264l4 1.5 4-1.5s.504-3.484.922-4.264c.134-.25 1.025-1.724 1.281-3.013.224-.37.506-.879.715-1.417z"/><path fill="#F3D2A2" d="M16.471 11.412v3.059c0 .844.684 1.529 1.529 1.529.845 0 1.529-.685 1.529-1.529v-3.059h-3.058z"/><path fill="#FFE51E" d="M18.375 3.353c-.89 0-1.712.284-2.386.763-1.385.072-2.49 1.209-2.49 2.612 0 1.156.005 2.613 1.529 3.156.749 1.04 1.967 1.719 3.347 1.719 2.278 0 4.125-1.846 4.125-4.125 0-2.278-1.847-4.125-4.125-4.125z"/><path fill="#F3D2A2" d="M21.75 5.602h-7.5v4.5c0 2.072 1.679 3.75 3.75 3.75 2.072 0 3.75-1.678 3.75-3.75v-4.5z"/><path fill="#FFE51E" d="M18 4l-3.924 1.533v3.139c1.831 0 2.236-1.893 2.327-2.737.031.844.639 2.737 5.52 2.737V5.533L18 4z"/><path fill="#C1694F" d="M19.5 12.353h-3s0 .75 1.5.75 1.5-.75 1.5-.75z"/><circle fill="#662113" cx="16.125" cy="9.728" r=".375"/><path fill="#662113" d="M20.25 9.728c0 .207-.168.375-.374.375-.208 0-.375-.168-.375-.375s.168-.375.375-.375c.206 0 .374.168.374.375z"/><path fill="#C1694F" d="M17.25 10.853h1.5s0 .75-.75.75-.75-.75-.75-.75z"/><g fill="#F3D2A2"><path d="M27.096 4.363c-.33-.157-.476-.428-.377-.719l.003-.01c.099-.291.291-.346.738-.339 0 0 1.521.076 2.437.712 0 0-.199.304-.447.56l-.003.01c-.101.29-1.614.137-2.351-.214z"/><path d="M27.843 3.47c-.137-.033-.221-.173-.188-.31l.087-.357c.033-.137.173-.221.31-.188s.221.173.188.31l-.087.357c-.034.137-.173.221-.31.188zm-.445-.87c-.163-.055-.342.034-.397.197l-.279.837c-.055.164.168-.068.332-.013.163.055.342-.033.397-.196l.144-.427c.055-.164-.034-.342-.197-.398z"/><path d="M28.384 3.399c-.137-.033-.221-.173-.188-.31l.082-.334c.033-.137.173-.221.31-.188s.221.173.188.31l-.082.334c-.034.137-.173.221-.31.188z"/><path d="M28.9 3.424c-.137-.033-.221-.173-.188-.31l.068-.277c.033-.137.173-.221.31-.188s.221.173.188.31l-.068.277c-.034.137-.173.221-.31.188z"/><path d="M29.419 3.447c-.137-.033-.221-.173-.188-.31l.04-.162c.033-.137.173-.221.31-.188s.221.173.188.31l-.04.162c-.034.137-.174.222-.31.188z"/></g><g fill="#F3D2A2"><path d="M8.904 4.363c.33-.157.476-.428.377-.719l-.003-.01c-.099-.29-.291-.346-.738-.339 0 0-1.521.076-2.437.712 0 0 .199.304.447.56l.003.01c.101.29 1.614.137 2.351-.214z"/><path d="M8.157 3.47c.137-.033.221-.173.188-.31l-.087-.357c-.033-.137-.173-.221-.31-.188-.137.034-.221.173-.188.31l.087.357c.034.137.173.221.31.188zm.445-.87c.163-.055.342.034.397.197l.279.837c.055.164-.168-.068-.332-.013-.163.055-.342-.033-.397-.196l-.144-.427c-.055-.164.034-.342.197-.398z"/><path d="M7.616 3.399c.137-.033.221-.173.188-.31l-.082-.334c-.033-.137-.173-.221-.31-.188-.136.034-.221.173-.187.31l.082.334c.033.137.172.221.309.188z"/><path d="M7.1 3.424c.137-.033.221-.173.188-.31l-.068-.277c-.033-.137-.172-.221-.309-.188s-.221.173-.188.31l.068.277c.033.137.172.221.309.188z"/><path d="M6.581 3.447c.137-.033.221-.173.188-.31l-.039-.162c-.034-.136-.173-.221-.31-.188-.137.034-.221.173-.188.31l.04.162c.033.137.173.222.309.188z"/></g><path fill="#3A6693" d="M22 24.5L18 23l-4 1.5s-.854 1.917-1 5.188h3.187c.917-.979 1.25-3.604 1.25-3.604h1.125s.333 2.625 1.25 3.604H23c-.146-3.271-1-5.188-1-5.188z"/><path fill="#C1694F" d="M14 22.5h8v2h-8z"/><path fill="#14171A" d="M19 22.399h.65v2.209H19z"/><circle fill="#14171A" cx="18.5" cy="23.458" r=".167"/><path fill="#14171A" d="M18.021 23.458c0 .092-.075.167-.167.167-.092 0-.167-.075-.167-.167 0-.092.075-.167.167-.167.092.001.167.075.167.167z"/><circle fill="#14171A" cx="17.208" cy="23.458" r=".167"/><circle fill="#14171A" cx="16.562" cy="23.458" r=".167"/><circle fill="#14171A" cx="15.917" cy="23.458" r=".167"/><circle fill="#14171A" cx="15.271" cy="23.458" r=".167"/><circle fill="#14171A" cx="14.625" cy="23.458" r=".167"/><circle fill="#14171A" cx="17.208" cy="23.458" r=".167"/><circle fill="#657786" cx="16.553" cy="23.458" r=".148"/><path fill="#657786" d="M16.318 23.31h.235v.297h-.235z"/><path fill="#657786" d="M16.729 24.846h-.758v-2.697h.758v.35h-.409v1.997h.409z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f3cb-1f3fd-200d-2640-fe0f.svg b/public/emoji/1f3cb-1f3fd-200d-2640-fe0f.svg
index 598c89bb0e370b16120cd8cd33690cd153c59632..00f68eedac56ae253142fdd584354c10eec293d1 100644
--- a/public/emoji/1f3cb-1f3fd-200d-2640-fe0f.svg
+++ b/public/emoji/1f3cb-1f3fd-200d-2640-fe0f.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#963B22" d="M18.497 3.508c-.731 0-1.421.173-2.037.472-.167-.029-.338-.047-.513-.047-1.643 0-2.975 1.332-2.975 2.975v5.1h.007c.078 2.748 2.326 4.954 5.093 4.954s5.015-2.206 5.093-4.954h.007V8.183c0-2.582-2.093-4.675-4.675-4.675z"/><path fill="#D5AB88" d="M14.778 35.254c.141.534.688.854 1.222.713.534-.141.854-.687.714-1.222l-1.525-5.803c-.14-.534-.687-.854-1.221-.713-.534.14-.854.687-.713 1.221l1.523 5.804zm4.509-.508c-.141.534.178 1.08.713 1.221.535.141 1.081-.178 1.222-.713l1.524-5.803c.141-.535-.179-1.082-.713-1.222-.535-.141-1.081.179-1.222.713l-1.524 5.804zm-5.082-20.042C14.368 15.232 14 17 14 17c-1 0-1.542-1.177-1.706-1.705L9.045 4.786c-.163-.528.132-1.088.66-1.251.527-.163 1.087.132 1.25.66l3.25 10.509zm7.59 0C21.632 15.232 22 17 22 17c1 0 1.543-1.177 1.705-1.705l3.25-10.509c.163-.528-.133-1.088-.66-1.251-.527-.163-1.088.132-1.25.66l-3.25 10.509z"/><path fill="#963B22" d="M18.382 3c-.907 0-1.745.29-2.432.778-1.412.074-2.539 1.232-2.539 2.663 0 1.179.005 2.664 1.559 3.217.763 1.061 2.005 1.753 3.412 1.753 2.323 0 4.206-1.882 4.206-4.205C22.588 4.883 20.705 3 18.382 3z"/><path fill="#DD2E44" d="M19 23h-2l-3 2-1 5h3l1-3h2l1 3h3l-1-5zm-6 13v-1s0-1 2-1 2 1 2 1v1h-4zm6 0v-1s0-1 2-1 2 1 2 1v1h-4z"/><path fill="#DD2E44" d="M22 14h-8v10h8V14z"/><path fill="#D5AB88" d="M16.471 12.412v2.059c0 .844.684 1.529 1.529 1.529s1.529-.685 1.529-1.529v-2.059h-3.058z"/><path fill="#D5AB88" d="M21.823 5.294h-7.647v4.588c0 2.112 1.712 3.823 3.824 3.823s3.823-1.711 3.823-3.823V5.294z"/><path fill="#963B22" d="M16.4 5.223H14v3.201c1.867 0 2.28-1.93 2.373-2.791.031.86.651 2.791 5.628 2.791V5.223H16.4z"/><path fill="#DF1F32" d="M19.529 12.176h-3.058s0 .765 1.529.765 1.529-.765 1.529-.765z"/><circle fill="#662113" cx="16.088" cy="9.5" r=".382"/><path fill="#662113" d="M20.294 9.5c0 .211-.171.382-.382.382-.212 0-.383-.171-.383-.382s.171-.382.383-.382c.211 0 .382.171.382.382z"/><path fill="#C1694F" d="M17.235 10.647h1.53s0 .765-.765.765-.765-.765-.765-.765z"/><path fill="#662113" d="M14 23h8v2h-8z"/><path fill="#99AAB5" d="M33.5 3.5c0 .276-.224.5-.5.5H3c-.276 0-.5-.224-.5-.5S2.724 3 3 3h30c.276 0 .5.224.5.5z"/><path fill="#292F33" d="M32 0c-.553 0-1 .448-1 1 0-.552-.447-1-1-1s-1 .448-1 1v5c0 .552.447 1 1 1s1-.448 1-1c0 .552.447 1 1 1s1-.448 1-1V1c0-.552-.447-1-1-1zM6 0c-.553 0-1 .448-1 1 0-.552-.447-1-1-1S3 .448 3 1v5c0 .552.447 1 1 1s1-.448 1-1c0 .552.447 1 1 1s1-.448 1-1V1c0-.552-.447-1-1-1z"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#963B22" d="M18.528 3.81c-.731 0-1.421.173-2.037.472-.167-.029-.338-.047-.513-.047-1.643 0-2.975 1.332-2.975 2.975v5.1h.007c.078 2.748 2.326 4.954 5.093 4.954s5.015-2.206 5.093-4.954h.007V8.485c0-2.582-2.093-4.675-4.675-4.675z"/><path fill="#D4AB88" d="M15.447 34.875h-1.02s-1.384-3.348-1.18-5.736l2.531.549c.56 1.564-.331 5.187-.331 5.187zm4.885 0h1.02s1.384-3.348 1.18-5.736L20 29.688c-.559 1.564.332 5.187.332 5.187z"/><path fill="#DD2E44" d="M13.452 35.149c.102-.243.316-.694.339-.955.023-.261.034-.354.238-.426.345-.121 1.427-.087 1.613-.016.185.071.188.263.214.424.026.161.113.424.226.64s.406.697.26 1.034c-.061.14-.402.138-1.497.138s-1.408-.026-1.483-.118-.011-.477.09-.721zm8.875 0c-.102-.243-.316-.694-.339-.955-.023-.261-.034-.354-.238-.426-.345-.121-1.427-.087-1.613-.016-.185.071-.188.263-.214.424-.026.161-.113.424-.226.64s-.406.697-.26 1.034c.061.14.402.138 1.497.138s1.408-.026 1.483-.118c.074-.092.011-.477-.09-.721z"/><path fill="#D4AB88" d="M8.31 4.156c.011.127.814 1.525 1.266 2.625.452 1.1.747 2.25.984 2.5.476.499 1.926 1.474 2.911 2.937.985 1.464-1.977 2.58-2.611 1.588-.451-.706-1.309-2.368-2.097-3.759-.304-.54-.897-1.454-1.328-2.516-.406-1-.642-2.168-.702-2.312-.179-.425-.879-.977-.913-1.407 0 0 2.454-.084 2.49.344zm19.159 0c-.011.127-.814 1.525-1.266 2.625-.452 1.1-.747 2.25-.984 2.5-.476.499-1.926 1.474-2.911 2.937-.985 1.464 1.977 2.58 2.611 1.588.451-.706 1.309-2.368 2.097-3.759.304-.54.897-1.454 1.328-2.516.406-1 .642-2.168.702-2.312.178-.425.878-.977.912-1.406 0-.001-2.453-.085-2.489.343z"/><path fill="#99AAB5" d="M36 3.5c0 .276-.224.5-.5.5H.5C.224 4 0 3.776 0 3.5S.224 3 .5 3h35c.276 0 .5.224.5.5z"/><path fill="#292F33" d="M34 0c-.553 0-1 .448-1 1 0-.552-.447-1-1-1-.553 0-1 .448-1 1v5c0 .552.447 1 1 1 .553 0 1-.448 1-1 0 .552.447 1 1 1 .553 0 1-.448 1-1V1c0-.552-.447-1-1-1zM4 0c-.553 0-1 .448-1 1 0-.552-.447-1-1-1S1 .448 1 1v5c0 .552.447 1 1 1s1-.448 1-1c0 .552.447 1 1 1s1-.448 1-1V1c0-.552-.447-1-1-1z"/><path fill="#DD2E44" d="M24.918 13.806c-.625-.583-2.611-1.588-2.611-1.588-.709.401-1.237 1.188-1.465 1.571l-1.398.394h-2.89l-1.627-.406c-.231-.387-.755-1.162-1.458-1.559 0 0-1.986 1.004-2.611 1.588.406 1.039 1.543 2.428 1.543 2.428l.008-.001c.4.821.854 1.362.945 1.547.386.781.646 4.72.646 4.72l4 1.5 3.779-1.5s.26-3.939.643-4.719c.091-.185.545-.727.945-1.547l.008.001c0-.001 1.138-1.39 1.543-2.429z"/><path fill="#D4AB88" d="M16.471 11.412v3.059c0 .844.684 1.529 1.529 1.529.845 0 1.529-.685 1.529-1.529v-3.059h-3.058z"/><path fill="#963B22" d="M18.375 3.353c-.89 0-1.712.284-2.386.763-1.385.072-2.49 1.209-2.49 2.612 0 1.156.005 2.613 1.529 3.156.749 1.04 1.967 1.719 3.347 1.719 2.278 0 4.125-1.846 4.125-4.125 0-2.278-1.847-4.125-4.125-4.125z"/><path fill="#D4AB88" d="M21.75 5.602h-7.5v4.5c0 2.072 1.679 3.75 3.75 3.75 2.072 0 3.75-1.678 3.75-3.75v-4.5z"/><path fill="#963B22" d="M18 4l-3.924 1.533v3.139c1.831 0 2.236-1.893 2.327-2.737.031.844.639 2.737 5.52 2.737V5.533L18 4z"/><path fill="#C1694F" d="M19.5 12.353h-3s0 .75 1.5.75 1.5-.75 1.5-.75z"/><circle fill="#662113" cx="16.125" cy="9.728" r=".375"/><path fill="#662113" d="M20.25 9.728c0 .207-.168.375-.374.375-.208 0-.375-.168-.375-.375s.168-.375.375-.375c.206 0 .374.168.374.375z"/><path fill="#C1694F" d="M17.25 10.853h1.5s0 .75-.75.75-.75-.75-.75-.75z"/><g fill="#D4AB88"><path d="M27.096 4.363c-.33-.157-.476-.428-.377-.719l.003-.01c.099-.291.291-.346.738-.339 0 0 1.521.076 2.437.712 0 0-.199.304-.447.56l-.003.01c-.101.29-1.614.137-2.351-.214z"/><path d="M27.843 3.47c-.137-.033-.221-.173-.188-.31l.087-.357c.033-.137.173-.221.31-.188s.221.173.188.31l-.087.357c-.034.137-.173.221-.31.188zm-.445-.87c-.163-.055-.342.034-.397.197l-.279.837c-.055.164.168-.068.332-.013.163.055.342-.033.397-.196l.144-.427c.055-.164-.034-.342-.197-.398z"/><path d="M28.384 3.399c-.137-.033-.221-.173-.188-.31l.082-.334c.033-.137.173-.221.31-.188s.221.173.188.31l-.082.334c-.034.137-.173.221-.31.188z"/><path d="M28.9 3.424c-.137-.033-.221-.173-.188-.31l.068-.277c.033-.137.173-.221.31-.188s.221.173.188.31l-.068.277c-.034.137-.173.221-.31.188z"/><path d="M29.419 3.447c-.137-.033-.221-.173-.188-.31l.04-.162c.033-.137.173-.221.31-.188s.221.173.188.31l-.04.162c-.034.137-.174.222-.31.188z"/></g><g fill="#D4AB88"><path d="M8.683 4.363c.33-.157.476-.428.377-.719l-.003-.01c-.1-.29-.292-.346-.738-.339 0 0-1.521.076-2.437.712 0 0 .199.304.447.56l.003.01c.1.29 1.614.137 2.351-.214z"/><path d="M7.936 3.47c.137-.033.221-.173.188-.31l-.088-.357c-.033-.137-.173-.221-.31-.188-.136.034-.221.173-.187.31l.087.357c.034.137.173.221.31.188zm.445-.87c.163-.055.342.034.397.197l.279.837c.055.164-.168-.068-.332-.013-.163.055-.342-.033-.397-.196l-.144-.427c-.055-.164.033-.342.197-.398z"/><path d="M7.395 3.399c.137-.033.221-.173.188-.31l-.082-.334c-.033-.137-.173-.221-.31-.188-.137.034-.221.173-.188.31l.082.334c.034.137.173.221.31.188z"/><path d="M6.879 3.424c.137-.034.221-.173.188-.31l-.068-.277c-.033-.137-.173-.221-.309-.188-.137.033-.221.173-.188.31l.068.277c.033.137.172.221.309.188z"/><path d="M6.36 3.447c.137-.033.221-.173.188-.31l-.04-.162c-.033-.137-.173-.221-.31-.188-.136.034-.22.173-.187.31l.04.162c.033.137.172.222.309.188z"/></g><path fill="#DD2E44" d="M21.779 24.5L18 23l-4 1.5s-.94 1.766-.94 5.188h2.719c.917-.979 1.25-3.604 1.25-3.604h1.721s.333 2.625 1.25 3.604h2.719c0-3.422-.94-5.188-.94-5.188z"/><path fill="#C1694F" d="M14 22.5h7.779v2H14z"/><path fill="#14171A" d="M19 22.399h.65v2.209H19z"/><circle fill="#14171A" cx="18.5" cy="23.458" r=".167"/><path fill="#14171A" d="M18.021 23.458c0 .092-.075.167-.167.167-.092 0-.167-.075-.167-.167 0-.092.075-.167.167-.167.092.001.167.075.167.167z"/><circle fill="#14171A" cx="17.208" cy="23.458" r=".167"/><circle fill="#14171A" cx="16.562" cy="23.458" r=".167"/><circle fill="#14171A" cx="15.917" cy="23.458" r=".167"/><circle fill="#14171A" cx="15.271" cy="23.458" r=".167"/><circle fill="#14171A" cx="14.625" cy="23.458" r=".167"/><circle fill="#14171A" cx="17.208" cy="23.458" r=".167"/><circle fill="#657786" cx="16.318" cy="23.458" r=".148"/><circle fill="#657786" cx="16.553" cy="23.458" r=".148"/><path fill="#657786" d="M16.318 23.31h.235v.297h-.235z"/><path fill="#657786" d="M16.729 24.846h-.758v-2.698h.758v.35h-.408v1.998h.408z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f3cb-1f3fd-200d-2642-fe0f.svg b/public/emoji/1f3cb-1f3fd-200d-2642-fe0f.svg
index 74a18a754c8f4ef4190a6b7de896618a73e3bb4b..5401c2f6502b232080a524984a51cb44c72837d4 100644
--- a/public/emoji/1f3cb-1f3fd-200d-2642-fe0f.svg
+++ b/public/emoji/1f3cb-1f3fd-200d-2642-fe0f.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#D5AB88" d="M14.778 35.254c.141.534.688.854 1.222.713.534-.141.854-.687.714-1.222l-1.525-5.803c-.14-.534-.687-.854-1.221-.713-.534.14-.854.687-.713 1.221l1.523 5.804zm4.509-.508c-.141.534.178 1.08.713 1.221.535.141 1.081-.178 1.222-.713l1.524-5.803c.141-.535-.179-1.082-.713-1.222-.535-.141-1.081.179-1.222.713l-1.524 5.804zm-5.082-20.042C14.368 15.232 14 17 14 17c-1 0-1.542-1.177-1.706-1.705L9.045 4.786c-.163-.528.132-1.088.66-1.251.527-.163 1.087.132 1.25.66l3.25 10.509zm7.59 0C21.632 15.232 22 17 22 17c1 0 1.543-1.177 1.705-1.705l3.25-10.509c.163-.528-.133-1.088-.66-1.251-.527-.163-1.088.132-1.25.66l-3.25 10.509z"/><path fill="#963B22" d="M18.382 3c-.907 0-1.745.29-2.432.778-1.412.074-2.539 1.232-2.539 2.663 0 1.179.005 2.664 1.559 3.217.763 1.061 2.005 1.753 3.412 1.753 2.323 0 4.206-1.882 4.206-4.205C22.588 4.883 20.705 3 18.382 3z"/><path fill="#4289C1" d="M19 23h-2l-3 2-1 5h3l1-3h2l1 3h3l-1-5zm-6 13v-1s0-1 2-1 2 1 2 1v1h-4zm6 0v-1s0-1 2-1 2 1 2 1v1h-4z"/><path fill="#4289C1" d="M22 14h-8v10h8V14z"/><path fill="#D5AB88" d="M16.471 11.412v3.059c0 .844.684 1.529 1.529 1.529s1.529-.685 1.529-1.529v-3.059h-3.058z"/><path fill="#D5AB88" d="M21.823 5.294h-7.647v4.588c0 2.112 1.712 3.823 3.824 3.823s3.823-1.711 3.823-3.823V5.294z"/><path fill="#963B22" d="M16.4 5.223H14v3.201c1.867 0 2.28-1.93 2.373-2.791.031.86.651 2.791 5.628 2.791V5.223H16.4z"/><path fill="#C1694F" d="M19.529 12.176h-3.058s0 .765 1.529.765 1.529-.765 1.529-.765z"/><circle fill="#662113" cx="16.088" cy="9.5" r=".382"/><path fill="#662113" d="M20.294 9.5c0 .211-.171.382-.382.382-.212 0-.383-.171-.383-.382s.171-.382.383-.382c.211 0 .382.171.382.382z"/><path fill="#C1694F" d="M17.235 10.647h1.53s0 .765-.765.765-.765-.765-.765-.765z"/><path fill="#662113" d="M14 23h8v2h-8z"/><path fill="#99AAB5" d="M33.5 3.5c0 .276-.224.5-.5.5H3c-.276 0-.5-.224-.5-.5S2.724 3 3 3h30c.276 0 .5.224.5.5z"/><path fill="#292F33" d="M32 0c-.553 0-1 .448-1 1 0-.552-.447-1-1-1s-1 .448-1 1v5c0 .552.447 1 1 1s1-.448 1-1c0 .552.447 1 1 1s1-.448 1-1V1c0-.552-.447-1-1-1zM6 0c-.553 0-1 .448-1 1 0-.552-.447-1-1-1S3 .448 3 1v5c0 .552.447 1 1 1s1-.448 1-1c0 .552.447 1 1 1s1-.448 1-1V1c0-.552-.447-1-1-1z"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#D4AB88" d="M15.81 34.875h-1.422s-1.323-3.348-1.119-5.736l2.918.549c.548 1.571-.377 5.187-.377 5.187zm4.317 0h1.422s1.323-3.348 1.119-5.736l-2.918.549c-.548 1.571.377 5.187.377 5.187z"/><path fill="#4289C1" d="M13.617 35.149c.106-.243.331-.694.355-.955.024-.261.036-.354.25-.426.362-.121 1.496-.087 1.691-.016.194.071.197.263.225.424.028.161.118.424.237.64s.426.697.272 1.034c-.064.14-.422.138-1.569.138s-1.476-.026-1.554-.118c-.08-.092-.014-.477.093-.721zm8.704 0c-.106-.243-.331-.694-.355-.955-.024-.261-.036-.354-.25-.426-.362-.121-1.496-.087-1.691-.016-.194.071-.197.263-.225.424s-.118.424-.237.64c-.118.216-.426.697-.272 1.034.064.14.422.138 1.569.138s1.476-.026 1.554-.118.013-.477-.093-.721z"/><path fill="#D4AB88" d="M8.646 4.146c.011.127.871 1.535 1.323 2.635.452 1.1.71 2.198.948 2.448.476.499 2.285 1.879 3.271 3.343.985 1.464.57 2.503-.094 2.922-.88.555-1.803.204-2.437-.788-.451-.706-1.951-3.209-2.739-4.601-.306-.541-1.018-1.512-1.449-2.574-.406-1-.454-2.168-.515-2.312-.179-.425-.878-.977-.912-1.407 0 0 2.567-.095 2.604.334zm18.708 0c-.011.127-.871 1.535-1.323 2.635-.452 1.1-.71 2.198-.948 2.448-.476.499-2.285 1.879-3.271 3.343-.985 1.464-.57 2.503.094 2.922.88.555 1.803.204 2.437-.788.451-.706 1.951-3.209 2.739-4.601.304-.54 1.017-1.511 1.448-2.573.406-1 .454-2.168.515-2.312.178-.425.878-.977.912-1.406.001-.002-2.566-.097-2.603.332z"/><path fill="#99AAB5" d="M36 3.5c0 .276-.224.5-.5.5H.5C.224 4 0 3.776 0 3.5S.224 3 .5 3h35c.276 0 .5.224.5.5z"/><path fill="#292F33" d="M34 0c-.553 0-1 .448-1 1 0-.552-.447-1-1-1-.553 0-1 .448-1 1v5c0 .552.447 1 1 1 .553 0 1-.448 1-1 0 .552.447 1 1 1 .553 0 1-.448 1-1V1c0-.552-.447-1-1-1zM4 0c-.553 0-1 .448-1 1 0-.552-.447-1-1-1S1 .448 1 1v5c0 .552.447 1 1 1s1-.448 1-1c0 .552.447 1 1 1s1-.448 1-1V1c0-.552-.447-1-1-1z"/><path fill="#4289C1" d="M24.918 13.806c-.625-.583-2.746-1.723-2.746-1.723-.742.419-1.283 1.257-1.492 1.617-.665.117-1.151.3-1.151.3H16.47s-.486-.183-1.151-.3c-.209-.36-.75-1.197-1.492-1.617 0 0-2.121 1.14-2.746 1.723.21.537.492 1.047.716 1.417.255 1.29 1.146 2.763 1.281 3.013.418.78.922 4.264.922 4.264l4 1.5 4-1.5s.504-3.484.922-4.264c.134-.25 1.025-1.724 1.281-3.013.224-.37.506-.879.715-1.417z"/><path fill="#D4AB88" d="M16.471 11.412v3.059c0 .844.684 1.529 1.529 1.529.845 0 1.529-.685 1.529-1.529v-3.059h-3.058z"/><path fill="#963B22" d="M18.375 3.353c-.89 0-1.712.284-2.386.763-1.385.072-2.49 1.209-2.49 2.612 0 1.156.005 2.613 1.529 3.156.749 1.04 1.967 1.719 3.347 1.719 2.278 0 4.125-1.846 4.125-4.125 0-2.278-1.847-4.125-4.125-4.125z"/><path fill="#D4AB88" d="M21.75 5.602h-7.5v4.5c0 2.072 1.679 3.75 3.75 3.75 2.072 0 3.75-1.678 3.75-3.75v-4.5z"/><path fill="#963B22" d="M18 4l-3.924 1.533v3.139c1.831 0 2.236-1.893 2.327-2.737.031.844.639 2.737 5.52 2.737V5.533L18 4z"/><path fill="#C1694F" d="M19.5 12.353h-3s0 .75 1.5.75 1.5-.75 1.5-.75z"/><circle fill="#662113" cx="16.125" cy="9.728" r=".375"/><path fill="#662113" d="M20.25 9.728c0 .207-.168.375-.374.375-.208 0-.375-.168-.375-.375s.168-.375.375-.375c.206 0 .374.168.374.375z"/><path fill="#C1694F" d="M17.25 10.853h1.5s0 .75-.75.75-.75-.75-.75-.75z"/><g fill="#D4AB88"><path d="M27.096 4.363c-.33-.157-.476-.428-.377-.719l.003-.01c.099-.291.291-.346.738-.339 0 0 1.521.076 2.437.712 0 0-.199.304-.447.56l-.003.01c-.101.29-1.614.137-2.351-.214z"/><path d="M27.843 3.47c-.137-.033-.221-.173-.188-.31l.087-.357c.033-.137.173-.221.31-.188s.221.173.188.31l-.087.357c-.034.137-.173.221-.31.188zm-.445-.87c-.163-.055-.342.034-.397.197l-.279.837c-.055.164.168-.068.332-.013.163.055.342-.033.397-.196l.144-.427c.055-.164-.034-.342-.197-.398z"/><path d="M28.384 3.399c-.137-.033-.221-.173-.188-.31l.082-.334c.033-.137.173-.221.31-.188s.221.173.188.31l-.082.334c-.034.137-.173.221-.31.188z"/><path d="M28.9 3.424c-.137-.033-.221-.173-.188-.31l.068-.277c.033-.137.173-.221.31-.188s.221.173.188.31l-.068.277c-.034.137-.173.221-.31.188z"/><path d="M29.419 3.447c-.137-.033-.221-.173-.188-.31l.04-.162c.033-.137.173-.221.31-.188s.221.173.188.31l-.04.162c-.034.137-.174.222-.31.188z"/></g><g fill="#D4AB88"><path d="M8.904 4.363c.33-.157.476-.428.377-.719l-.003-.01c-.099-.29-.291-.346-.738-.339 0 0-1.521.076-2.437.712 0 0 .199.304.447.56l.003.01c.101.29 1.614.137 2.351-.214z"/><path d="M8.157 3.47c.137-.033.221-.173.188-.31l-.087-.357c-.033-.137-.173-.221-.31-.188-.137.034-.221.173-.188.31l.087.357c.034.137.173.221.31.188zm.445-.87c.163-.055.342.034.397.197l.279.837c.055.164-.168-.068-.332-.013-.163.055-.342-.033-.397-.196l-.144-.427c-.055-.164.034-.342.197-.398z"/><path d="M7.616 3.399c.137-.033.221-.173.188-.31l-.082-.334c-.033-.137-.173-.221-.31-.188-.136.034-.221.173-.187.31l.082.334c.033.137.172.221.309.188z"/><path d="M7.1 3.424c.137-.033.221-.173.188-.31l-.068-.277c-.033-.137-.172-.221-.309-.188s-.221.173-.188.31l.068.277c.033.137.172.221.309.188z"/><path d="M6.581 3.447c.137-.033.221-.173.188-.31l-.039-.162c-.034-.136-.173-.221-.31-.188-.137.034-.221.173-.188.31l.04.162c.033.137.173.222.309.188z"/></g><path fill="#3A6693" d="M22 24.5L18 23l-4 1.5s-.854 1.917-1 5.188h3.187c.917-.979 1.25-3.604 1.25-3.604h1.125s.333 2.625 1.25 3.604H23c-.146-3.271-1-5.188-1-5.188z"/><path fill="#C1694F" d="M14 22.5h8v2h-8z"/><path fill="#14171A" d="M19 22.399h.65v2.209H19z"/><circle fill="#14171A" cx="18.5" cy="23.458" r=".167"/><path fill="#14171A" d="M18.021 23.458c0 .092-.075.167-.167.167-.092 0-.167-.075-.167-.167 0-.092.075-.167.167-.167.092.001.167.075.167.167z"/><circle fill="#14171A" cx="17.208" cy="23.458" r=".167"/><circle fill="#14171A" cx="16.562" cy="23.458" r=".167"/><circle fill="#14171A" cx="15.917" cy="23.458" r=".167"/><circle fill="#14171A" cx="15.271" cy="23.458" r=".167"/><circle fill="#14171A" cx="14.625" cy="23.458" r=".167"/><circle fill="#14171A" cx="17.208" cy="23.458" r=".167"/><circle fill="#657786" cx="16.553" cy="23.458" r=".148"/><path fill="#657786" d="M16.318 23.31h.235v.297h-.235z"/><path fill="#657786" d="M16.729 24.846h-.758v-2.697h.758v.35h-.409v1.997h.409z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f3cb-1f3fd.svg b/public/emoji/1f3cb-1f3fd.svg
index 74a18a754c8f4ef4190a6b7de896618a73e3bb4b..5401c2f6502b232080a524984a51cb44c72837d4 100644
--- a/public/emoji/1f3cb-1f3fd.svg
+++ b/public/emoji/1f3cb-1f3fd.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#D5AB88" d="M14.778 35.254c.141.534.688.854 1.222.713.534-.141.854-.687.714-1.222l-1.525-5.803c-.14-.534-.687-.854-1.221-.713-.534.14-.854.687-.713 1.221l1.523 5.804zm4.509-.508c-.141.534.178 1.08.713 1.221.535.141 1.081-.178 1.222-.713l1.524-5.803c.141-.535-.179-1.082-.713-1.222-.535-.141-1.081.179-1.222.713l-1.524 5.804zm-5.082-20.042C14.368 15.232 14 17 14 17c-1 0-1.542-1.177-1.706-1.705L9.045 4.786c-.163-.528.132-1.088.66-1.251.527-.163 1.087.132 1.25.66l3.25 10.509zm7.59 0C21.632 15.232 22 17 22 17c1 0 1.543-1.177 1.705-1.705l3.25-10.509c.163-.528-.133-1.088-.66-1.251-.527-.163-1.088.132-1.25.66l-3.25 10.509z"/><path fill="#963B22" d="M18.382 3c-.907 0-1.745.29-2.432.778-1.412.074-2.539 1.232-2.539 2.663 0 1.179.005 2.664 1.559 3.217.763 1.061 2.005 1.753 3.412 1.753 2.323 0 4.206-1.882 4.206-4.205C22.588 4.883 20.705 3 18.382 3z"/><path fill="#4289C1" d="M19 23h-2l-3 2-1 5h3l1-3h2l1 3h3l-1-5zm-6 13v-1s0-1 2-1 2 1 2 1v1h-4zm6 0v-1s0-1 2-1 2 1 2 1v1h-4z"/><path fill="#4289C1" d="M22 14h-8v10h8V14z"/><path fill="#D5AB88" d="M16.471 11.412v3.059c0 .844.684 1.529 1.529 1.529s1.529-.685 1.529-1.529v-3.059h-3.058z"/><path fill="#D5AB88" d="M21.823 5.294h-7.647v4.588c0 2.112 1.712 3.823 3.824 3.823s3.823-1.711 3.823-3.823V5.294z"/><path fill="#963B22" d="M16.4 5.223H14v3.201c1.867 0 2.28-1.93 2.373-2.791.031.86.651 2.791 5.628 2.791V5.223H16.4z"/><path fill="#C1694F" d="M19.529 12.176h-3.058s0 .765 1.529.765 1.529-.765 1.529-.765z"/><circle fill="#662113" cx="16.088" cy="9.5" r=".382"/><path fill="#662113" d="M20.294 9.5c0 .211-.171.382-.382.382-.212 0-.383-.171-.383-.382s.171-.382.383-.382c.211 0 .382.171.382.382z"/><path fill="#C1694F" d="M17.235 10.647h1.53s0 .765-.765.765-.765-.765-.765-.765z"/><path fill="#662113" d="M14 23h8v2h-8z"/><path fill="#99AAB5" d="M33.5 3.5c0 .276-.224.5-.5.5H3c-.276 0-.5-.224-.5-.5S2.724 3 3 3h30c.276 0 .5.224.5.5z"/><path fill="#292F33" d="M32 0c-.553 0-1 .448-1 1 0-.552-.447-1-1-1s-1 .448-1 1v5c0 .552.447 1 1 1s1-.448 1-1c0 .552.447 1 1 1s1-.448 1-1V1c0-.552-.447-1-1-1zM6 0c-.553 0-1 .448-1 1 0-.552-.447-1-1-1S3 .448 3 1v5c0 .552.447 1 1 1s1-.448 1-1c0 .552.447 1 1 1s1-.448 1-1V1c0-.552-.447-1-1-1z"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#D4AB88" d="M15.81 34.875h-1.422s-1.323-3.348-1.119-5.736l2.918.549c.548 1.571-.377 5.187-.377 5.187zm4.317 0h1.422s1.323-3.348 1.119-5.736l-2.918.549c-.548 1.571.377 5.187.377 5.187z"/><path fill="#4289C1" d="M13.617 35.149c.106-.243.331-.694.355-.955.024-.261.036-.354.25-.426.362-.121 1.496-.087 1.691-.016.194.071.197.263.225.424.028.161.118.424.237.64s.426.697.272 1.034c-.064.14-.422.138-1.569.138s-1.476-.026-1.554-.118c-.08-.092-.014-.477.093-.721zm8.704 0c-.106-.243-.331-.694-.355-.955-.024-.261-.036-.354-.25-.426-.362-.121-1.496-.087-1.691-.016-.194.071-.197.263-.225.424s-.118.424-.237.64c-.118.216-.426.697-.272 1.034.064.14.422.138 1.569.138s1.476-.026 1.554-.118.013-.477-.093-.721z"/><path fill="#D4AB88" d="M8.646 4.146c.011.127.871 1.535 1.323 2.635.452 1.1.71 2.198.948 2.448.476.499 2.285 1.879 3.271 3.343.985 1.464.57 2.503-.094 2.922-.88.555-1.803.204-2.437-.788-.451-.706-1.951-3.209-2.739-4.601-.306-.541-1.018-1.512-1.449-2.574-.406-1-.454-2.168-.515-2.312-.179-.425-.878-.977-.912-1.407 0 0 2.567-.095 2.604.334zm18.708 0c-.011.127-.871 1.535-1.323 2.635-.452 1.1-.71 2.198-.948 2.448-.476.499-2.285 1.879-3.271 3.343-.985 1.464-.57 2.503.094 2.922.88.555 1.803.204 2.437-.788.451-.706 1.951-3.209 2.739-4.601.304-.54 1.017-1.511 1.448-2.573.406-1 .454-2.168.515-2.312.178-.425.878-.977.912-1.406.001-.002-2.566-.097-2.603.332z"/><path fill="#99AAB5" d="M36 3.5c0 .276-.224.5-.5.5H.5C.224 4 0 3.776 0 3.5S.224 3 .5 3h35c.276 0 .5.224.5.5z"/><path fill="#292F33" d="M34 0c-.553 0-1 .448-1 1 0-.552-.447-1-1-1-.553 0-1 .448-1 1v5c0 .552.447 1 1 1 .553 0 1-.448 1-1 0 .552.447 1 1 1 .553 0 1-.448 1-1V1c0-.552-.447-1-1-1zM4 0c-.553 0-1 .448-1 1 0-.552-.447-1-1-1S1 .448 1 1v5c0 .552.447 1 1 1s1-.448 1-1c0 .552.447 1 1 1s1-.448 1-1V1c0-.552-.447-1-1-1z"/><path fill="#4289C1" d="M24.918 13.806c-.625-.583-2.746-1.723-2.746-1.723-.742.419-1.283 1.257-1.492 1.617-.665.117-1.151.3-1.151.3H16.47s-.486-.183-1.151-.3c-.209-.36-.75-1.197-1.492-1.617 0 0-2.121 1.14-2.746 1.723.21.537.492 1.047.716 1.417.255 1.29 1.146 2.763 1.281 3.013.418.78.922 4.264.922 4.264l4 1.5 4-1.5s.504-3.484.922-4.264c.134-.25 1.025-1.724 1.281-3.013.224-.37.506-.879.715-1.417z"/><path fill="#D4AB88" d="M16.471 11.412v3.059c0 .844.684 1.529 1.529 1.529.845 0 1.529-.685 1.529-1.529v-3.059h-3.058z"/><path fill="#963B22" d="M18.375 3.353c-.89 0-1.712.284-2.386.763-1.385.072-2.49 1.209-2.49 2.612 0 1.156.005 2.613 1.529 3.156.749 1.04 1.967 1.719 3.347 1.719 2.278 0 4.125-1.846 4.125-4.125 0-2.278-1.847-4.125-4.125-4.125z"/><path fill="#D4AB88" d="M21.75 5.602h-7.5v4.5c0 2.072 1.679 3.75 3.75 3.75 2.072 0 3.75-1.678 3.75-3.75v-4.5z"/><path fill="#963B22" d="M18 4l-3.924 1.533v3.139c1.831 0 2.236-1.893 2.327-2.737.031.844.639 2.737 5.52 2.737V5.533L18 4z"/><path fill="#C1694F" d="M19.5 12.353h-3s0 .75 1.5.75 1.5-.75 1.5-.75z"/><circle fill="#662113" cx="16.125" cy="9.728" r=".375"/><path fill="#662113" d="M20.25 9.728c0 .207-.168.375-.374.375-.208 0-.375-.168-.375-.375s.168-.375.375-.375c.206 0 .374.168.374.375z"/><path fill="#C1694F" d="M17.25 10.853h1.5s0 .75-.75.75-.75-.75-.75-.75z"/><g fill="#D4AB88"><path d="M27.096 4.363c-.33-.157-.476-.428-.377-.719l.003-.01c.099-.291.291-.346.738-.339 0 0 1.521.076 2.437.712 0 0-.199.304-.447.56l-.003.01c-.101.29-1.614.137-2.351-.214z"/><path d="M27.843 3.47c-.137-.033-.221-.173-.188-.31l.087-.357c.033-.137.173-.221.31-.188s.221.173.188.31l-.087.357c-.034.137-.173.221-.31.188zm-.445-.87c-.163-.055-.342.034-.397.197l-.279.837c-.055.164.168-.068.332-.013.163.055.342-.033.397-.196l.144-.427c.055-.164-.034-.342-.197-.398z"/><path d="M28.384 3.399c-.137-.033-.221-.173-.188-.31l.082-.334c.033-.137.173-.221.31-.188s.221.173.188.31l-.082.334c-.034.137-.173.221-.31.188z"/><path d="M28.9 3.424c-.137-.033-.221-.173-.188-.31l.068-.277c.033-.137.173-.221.31-.188s.221.173.188.31l-.068.277c-.034.137-.173.221-.31.188z"/><path d="M29.419 3.447c-.137-.033-.221-.173-.188-.31l.04-.162c.033-.137.173-.221.31-.188s.221.173.188.31l-.04.162c-.034.137-.174.222-.31.188z"/></g><g fill="#D4AB88"><path d="M8.904 4.363c.33-.157.476-.428.377-.719l-.003-.01c-.099-.29-.291-.346-.738-.339 0 0-1.521.076-2.437.712 0 0 .199.304.447.56l.003.01c.101.29 1.614.137 2.351-.214z"/><path d="M8.157 3.47c.137-.033.221-.173.188-.31l-.087-.357c-.033-.137-.173-.221-.31-.188-.137.034-.221.173-.188.31l.087.357c.034.137.173.221.31.188zm.445-.87c.163-.055.342.034.397.197l.279.837c.055.164-.168-.068-.332-.013-.163.055-.342-.033-.397-.196l-.144-.427c-.055-.164.034-.342.197-.398z"/><path d="M7.616 3.399c.137-.033.221-.173.188-.31l-.082-.334c-.033-.137-.173-.221-.31-.188-.136.034-.221.173-.187.31l.082.334c.033.137.172.221.309.188z"/><path d="M7.1 3.424c.137-.033.221-.173.188-.31l-.068-.277c-.033-.137-.172-.221-.309-.188s-.221.173-.188.31l.068.277c.033.137.172.221.309.188z"/><path d="M6.581 3.447c.137-.033.221-.173.188-.31l-.039-.162c-.034-.136-.173-.221-.31-.188-.137.034-.221.173-.188.31l.04.162c.033.137.173.222.309.188z"/></g><path fill="#3A6693" d="M22 24.5L18 23l-4 1.5s-.854 1.917-1 5.188h3.187c.917-.979 1.25-3.604 1.25-3.604h1.125s.333 2.625 1.25 3.604H23c-.146-3.271-1-5.188-1-5.188z"/><path fill="#C1694F" d="M14 22.5h8v2h-8z"/><path fill="#14171A" d="M19 22.399h.65v2.209H19z"/><circle fill="#14171A" cx="18.5" cy="23.458" r=".167"/><path fill="#14171A" d="M18.021 23.458c0 .092-.075.167-.167.167-.092 0-.167-.075-.167-.167 0-.092.075-.167.167-.167.092.001.167.075.167.167z"/><circle fill="#14171A" cx="17.208" cy="23.458" r=".167"/><circle fill="#14171A" cx="16.562" cy="23.458" r=".167"/><circle fill="#14171A" cx="15.917" cy="23.458" r=".167"/><circle fill="#14171A" cx="15.271" cy="23.458" r=".167"/><circle fill="#14171A" cx="14.625" cy="23.458" r=".167"/><circle fill="#14171A" cx="17.208" cy="23.458" r=".167"/><circle fill="#657786" cx="16.553" cy="23.458" r=".148"/><path fill="#657786" d="M16.318 23.31h.235v.297h-.235z"/><path fill="#657786" d="M16.729 24.846h-.758v-2.697h.758v.35h-.409v1.997h.409z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f3cb-1f3fe-200d-2640-fe0f.svg b/public/emoji/1f3cb-1f3fe-200d-2640-fe0f.svg
index a82a2e5012723e828c051b728baea3cf3695efa4..34e859a137aad6c9126f3c574ce24fed9e378091 100644
--- a/public/emoji/1f3cb-1f3fe-200d-2640-fe0f.svg
+++ b/public/emoji/1f3cb-1f3fe-200d-2640-fe0f.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#60352A" d="M18.497 3.508c-.731 0-1.421.173-2.037.472-.167-.029-.338-.047-.513-.047-1.643 0-2.975 1.332-2.975 2.975v5.1h.007c.078 2.748 2.326 4.954 5.093 4.954s5.015-2.206 5.093-4.954h.007V8.183c0-2.582-2.093-4.675-4.675-4.675z"/><path fill="#AF7E57" d="M14.778 35.254c.141.534.688.854 1.222.713.534-.141.854-.687.714-1.222l-1.525-5.803c-.14-.534-.687-.854-1.221-.713-.534.14-.854.687-.713 1.221l1.523 5.804zm4.509-.508c-.141.534.178 1.08.713 1.221.535.141 1.081-.178 1.222-.713l1.524-5.803c.141-.535-.179-1.082-.713-1.222-.535-.141-1.081.179-1.222.713l-1.524 5.804zm-5.082-20.042C14.368 15.232 14 17 14 17c-1 0-1.542-1.177-1.706-1.705L9.045 4.786c-.163-.528.132-1.088.66-1.251.527-.163 1.087.132 1.25.66l3.25 10.509zm7.59 0C21.632 15.232 22 17 22 17c1 0 1.543-1.177 1.705-1.705l3.25-10.509c.163-.528-.133-1.088-.66-1.251-.527-.163-1.088.132-1.25.66l-3.25 10.509z"/><path fill="#60352A" d="M18.382 3c-.907 0-1.745.29-2.432.778-1.412.074-2.539 1.232-2.539 2.663 0 1.179.005 2.664 1.559 3.217.763 1.061 2.005 1.753 3.412 1.753 2.323 0 4.206-1.882 4.206-4.205C22.588 4.883 20.705 3 18.382 3z"/><path fill="#DD2E44" d="M19 23h-2l-3 2-1 5h3l1-3h2l1 3h3l-1-5zm-6 13v-1s0-1 2-1 2 1 2 1v1h-4zm6 0v-1s0-1 2-1 2 1 2 1v1h-4z"/><path fill="#DD2E44" d="M22 14h-8v10h8V14z"/><path fill="#AF7E57" d="M16.471 12.412v2.059c0 .844.684 1.529 1.529 1.529s1.529-.685 1.529-1.529v-2.059h-3.058z"/><path fill="#AF7E57" d="M21.823 5.294h-7.647v4.588c0 2.112 1.712 3.823 3.824 3.823s3.823-1.711 3.823-3.823V5.294z"/><path fill="#60352A" d="M16.4 5.223H14v3.201c1.867 0 2.28-1.93 2.373-2.791.031.86.651 2.791 5.628 2.791V5.223H16.4z"/><path fill="#DF1F32" d="M19.529 12.176h-3.058s0 .765 1.529.765 1.529-.765 1.529-.765z"/><circle fill="#60352A" cx="16.088" cy="9.5" r=".382"/><path fill="#60352A" d="M20.294 9.5c0 .211-.171.382-.382.382-.212 0-.383-.171-.383-.382s.171-.382.383-.382c.211 0 .382.171.382.382z"/><path fill="#845636" d="M17.235 10.647h1.53s0 .765-.765.765-.765-.765-.765-.765z"/><path fill="#662113" d="M14 23h8v2h-8z"/><path fill="#99AAB5" d="M33.5 3.5c0 .276-.224.5-.5.5H3c-.276 0-.5-.224-.5-.5S2.724 3 3 3h30c.276 0 .5.224.5.5z"/><path fill="#292F33" d="M32 0c-.553 0-1 .448-1 1 0-.552-.447-1-1-1s-1 .448-1 1v5c0 .552.447 1 1 1s1-.448 1-1c0 .552.447 1 1 1s1-.448 1-1V1c0-.552-.447-1-1-1zM6 0c-.553 0-1 .448-1 1 0-.552-.447-1-1-1S3 .448 3 1v5c0 .552.447 1 1 1s1-.448 1-1c0 .552.447 1 1 1s1-.448 1-1V1c0-.552-.447-1-1-1z"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#60352A" d="M18.528 3.81c-.731 0-1.421.173-2.037.472-.167-.029-.338-.047-.513-.047-1.643 0-2.975 1.332-2.975 2.975v5.1h.007c.078 2.748 2.326 4.954 5.093 4.954s5.015-2.206 5.093-4.954h.007V8.485c0-2.582-2.093-4.675-4.675-4.675z"/><path fill="#AF7E57" d="M15.447 34.875h-1.02s-1.384-3.348-1.18-5.736l2.531.549c.56 1.564-.331 5.187-.331 5.187zm4.885 0h1.02s1.384-3.348 1.18-5.736L20 29.688c-.559 1.564.332 5.187.332 5.187z"/><path fill="#DD2E44" d="M13.452 35.149c.102-.243.316-.694.339-.955.023-.261.034-.354.238-.426.345-.121 1.427-.087 1.613-.016.185.071.188.263.214.424.026.161.113.424.226.64s.406.697.26 1.034c-.061.14-.402.138-1.497.138s-1.408-.026-1.483-.118-.011-.477.09-.721zm8.875 0c-.102-.243-.316-.694-.339-.955-.023-.261-.034-.354-.238-.426-.345-.121-1.427-.087-1.613-.016-.185.071-.188.263-.214.424-.026.161-.113.424-.226.64s-.406.697-.26 1.034c.061.14.402.138 1.497.138s1.408-.026 1.483-.118c.074-.092.011-.477-.09-.721z"/><path fill="#AF7E57" d="M8.31 4.156c.011.127.814 1.525 1.266 2.625.452 1.1.747 2.25.984 2.5.476.499 1.926 1.474 2.911 2.937.985 1.464-1.977 2.58-2.611 1.588-.451-.706-1.309-2.368-2.097-3.759-.304-.54-.897-1.454-1.328-2.516-.406-1-.642-2.168-.702-2.312-.179-.425-.879-.977-.913-1.407 0 0 2.454-.084 2.49.344zm19.159 0c-.011.127-.814 1.525-1.266 2.625-.452 1.1-.747 2.25-.984 2.5-.476.499-1.926 1.474-2.911 2.937-.985 1.464 1.977 2.58 2.611 1.588.451-.706 1.309-2.368 2.097-3.759.304-.54.897-1.454 1.328-2.516.406-1 .642-2.168.702-2.312.178-.425.878-.977.912-1.406 0-.001-2.453-.085-2.489.343z"/><path fill="#99AAB5" d="M36 3.5c0 .276-.224.5-.5.5H.5C.224 4 0 3.776 0 3.5S.224 3 .5 3h35c.276 0 .5.224.5.5z"/><path fill="#292F33" d="M34 0c-.553 0-1 .448-1 1 0-.552-.447-1-1-1-.553 0-1 .448-1 1v5c0 .552.447 1 1 1 .553 0 1-.448 1-1 0 .552.447 1 1 1 .553 0 1-.448 1-1V1c0-.552-.447-1-1-1zM4 0c-.553 0-1 .448-1 1 0-.552-.447-1-1-1S1 .448 1 1v5c0 .552.447 1 1 1s1-.448 1-1c0 .552.447 1 1 1s1-.448 1-1V1c0-.552-.447-1-1-1z"/><path fill="#DD2E44" d="M24.918 13.806c-.625-.583-2.611-1.588-2.611-1.588-.709.401-1.237 1.188-1.465 1.571l-1.398.394h-2.89l-1.627-.406c-.231-.387-.755-1.162-1.458-1.559 0 0-1.986 1.004-2.611 1.588.406 1.039 1.543 2.428 1.543 2.428l.008-.001c.4.821.854 1.362.945 1.547.386.781.646 4.72.646 4.72l4 1.5 3.779-1.5s.26-3.939.643-4.719c.091-.185.545-.727.945-1.547l.008.001c0-.001 1.138-1.39 1.543-2.429z"/><path fill="#AF7E57" d="M16.471 11.412v3.059c0 .844.684 1.529 1.529 1.529.845 0 1.529-.685 1.529-1.529v-3.059h-3.058z"/><path fill="#60352A" d="M18.375 3.353c-.89 0-1.712.284-2.386.763-1.385.072-2.49 1.209-2.49 2.612 0 1.156.005 2.613 1.529 3.156.749 1.04 1.967 1.719 3.347 1.719 2.278 0 4.125-1.846 4.125-4.125 0-2.278-1.847-4.125-4.125-4.125z"/><path fill="#AF7E57" d="M21.75 5.602h-7.5v4.5c0 2.072 1.679 3.75 3.75 3.75 2.072 0 3.75-1.678 3.75-3.75v-4.5z"/><path fill="#60352A" d="M18 4l-3.924 1.533v3.139c1.831 0 2.236-1.893 2.327-2.737.031.844.639 2.737 5.52 2.737V5.533L18 4z"/><path fill="#915A34" d="M19.5 12.353h-3s0 .75 1.5.75 1.5-.75 1.5-.75z"/><circle fill="#662113" cx="16.125" cy="9.728" r=".375"/><path fill="#662113" d="M20.25 9.728c0 .207-.168.375-.374.375-.208 0-.375-.168-.375-.375s.168-.375.375-.375c.206 0 .374.168.374.375z"/><path fill="#915A34" d="M17.25 10.853h1.5s0 .75-.75.75-.75-.75-.75-.75z"/><g fill="#AF7E57"><path d="M27.096 4.363c-.33-.157-.476-.428-.377-.719l.003-.01c.099-.291.291-.346.738-.339 0 0 1.521.076 2.437.712 0 0-.199.304-.447.56l-.003.01c-.101.29-1.614.137-2.351-.214z"/><path d="M27.843 3.47c-.137-.033-.221-.173-.188-.31l.087-.357c.033-.137.173-.221.31-.188s.221.173.188.31l-.087.357c-.034.137-.173.221-.31.188zm-.445-.87c-.163-.055-.342.034-.397.197l-.279.837c-.055.164.168-.068.332-.013.163.055.342-.033.397-.196l.144-.427c.055-.164-.034-.342-.197-.398z"/><path d="M28.384 3.399c-.137-.033-.221-.173-.188-.31l.082-.334c.033-.137.173-.221.31-.188s.221.173.188.31l-.082.334c-.034.137-.173.221-.31.188z"/><path d="M28.9 3.424c-.137-.033-.221-.173-.188-.31l.068-.277c.033-.137.173-.221.31-.188s.221.173.188.31l-.068.277c-.034.137-.173.221-.31.188z"/><path d="M29.419 3.447c-.137-.033-.221-.173-.188-.31l.04-.162c.033-.137.173-.221.31-.188s.221.173.188.31l-.04.162c-.034.137-.174.222-.31.188z"/></g><g fill="#AF7E57"><path d="M8.683 4.363c.33-.157.476-.428.377-.719l-.003-.01c-.1-.29-.292-.346-.738-.339 0 0-1.521.076-2.437.712 0 0 .199.304.447.56l.003.01c.1.29 1.614.137 2.351-.214z"/><path d="M7.936 3.47c.137-.033.221-.173.188-.31l-.088-.357c-.033-.137-.173-.221-.31-.188-.136.034-.221.173-.187.31l.087.357c.034.137.173.221.31.188zm.445-.87c.163-.055.342.034.397.197l.279.837c.055.164-.168-.068-.332-.013-.163.055-.342-.033-.397-.196l-.144-.427c-.055-.164.033-.342.197-.398z"/><path d="M7.395 3.399c.137-.033.221-.173.188-.31l-.082-.334c-.033-.137-.173-.221-.31-.188-.137.034-.221.173-.188.31l.082.334c.034.137.173.221.31.188z"/><path d="M6.879 3.424c.137-.034.221-.173.188-.31l-.068-.277c-.033-.137-.173-.221-.309-.188-.137.033-.221.173-.188.31l.068.277c.033.137.172.221.309.188z"/><path d="M6.36 3.447c.137-.033.221-.173.188-.31l-.04-.162c-.033-.137-.173-.221-.31-.188-.136.034-.22.173-.187.31l.04.162c.033.137.172.222.309.188z"/></g><path fill="#DD2E44" d="M21.779 24.5L18 23l-4 1.5s-.94 1.766-.94 5.188h2.719c.917-.979 1.25-3.604 1.25-3.604h1.721s.333 2.625 1.25 3.604h2.719c0-3.422-.94-5.188-.94-5.188z"/><path fill="#C1694F" d="M14 22.5h7.779v2H14z"/><path fill="#14171A" d="M19 22.399h.65v2.209H19z"/><circle fill="#14171A" cx="18.5" cy="23.458" r=".167"/><path fill="#14171A" d="M18.021 23.458c0 .092-.075.167-.167.167-.092 0-.167-.075-.167-.167 0-.092.075-.167.167-.167.092.001.167.075.167.167z"/><circle fill="#14171A" cx="17.208" cy="23.458" r=".167"/><circle fill="#14171A" cx="16.562" cy="23.458" r=".167"/><circle fill="#14171A" cx="15.917" cy="23.458" r=".167"/><circle fill="#14171A" cx="15.271" cy="23.458" r=".167"/><circle fill="#14171A" cx="14.625" cy="23.458" r=".167"/><circle fill="#14171A" cx="17.208" cy="23.458" r=".167"/><circle fill="#657786" cx="16.318" cy="23.458" r=".148"/><circle fill="#657786" cx="16.553" cy="23.458" r=".148"/><path fill="#657786" d="M16.318 23.31h.235v.297h-.235z"/><path fill="#657786" d="M16.729 24.846h-.758v-2.698h.758v.35h-.408v1.998h.408z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f3cb-1f3fe-200d-2642-fe0f.svg b/public/emoji/1f3cb-1f3fe-200d-2642-fe0f.svg
index b80c958d9c61a5c0822be912ac00b64b63981d36..b5f19bf25c9fde0f0c5c9faced851c9464288029 100644
--- a/public/emoji/1f3cb-1f3fe-200d-2642-fe0f.svg
+++ b/public/emoji/1f3cb-1f3fe-200d-2642-fe0f.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#AF7E57" d="M14.778 35.254c.141.534.688.854 1.222.713.534-.141.854-.687.714-1.222l-1.525-5.803c-.14-.534-.687-.854-1.221-.713-.534.14-.854.687-.713 1.221l1.523 5.804zm4.509-.508c-.141.534.178 1.08.713 1.221.535.141 1.081-.178 1.222-.713l1.524-5.803c.141-.535-.179-1.082-.713-1.222-.535-.141-1.081.179-1.222.713l-1.524 5.804zm-5.082-20.042C14.368 15.232 14 17 14 17c-1 0-1.542-1.177-1.706-1.705L9.045 4.786c-.163-.528.132-1.088.66-1.251.527-.163 1.087.132 1.25.66l3.25 10.509zm7.59 0C21.632 15.232 22 17 22 17c1 0 1.543-1.177 1.705-1.705l3.25-10.509c.163-.528-.133-1.088-.66-1.251-.527-.163-1.088.132-1.25.66l-3.25 10.509z"/><path fill="#60352A" d="M18.382 3c-.907 0-1.745.29-2.432.778-1.412.074-2.539 1.232-2.539 2.663 0 1.179.005 2.664 1.559 3.217.763 1.061 2.005 1.753 3.412 1.753 2.323 0 4.206-1.882 4.206-4.205C22.588 4.883 20.705 3 18.382 3z"/><path fill="#4289C1" d="M19 23h-2l-3 2-1 5h3l1-3h2l1 3h3l-1-5zm-6 13v-1s0-1 2-1 2 1 2 1v1h-4zm6 0v-1s0-1 2-1 2 1 2 1v1h-4z"/><path fill="#4289C1" d="M22 14h-8v10h8V14z"/><path fill="#AF7E57" d="M16.471 11.412v3.059c0 .844.684 1.529 1.529 1.529s1.529-.685 1.529-1.529v-3.059h-3.058z"/><path fill="#AF7E57" d="M21.823 5.294h-7.647v4.588c0 2.112 1.712 3.823 3.824 3.823s3.823-1.711 3.823-3.823V5.294z"/><path fill="#60352A" d="M16.4 5.223H14v3.201c1.867 0 2.28-1.93 2.373-2.791.031.86.651 2.791 5.628 2.791V5.223H16.4z"/><path fill="#915A34" d="M19.529 12.176h-3.058s0 .765 1.529.765 1.529-.765 1.529-.765z"/><circle fill="#60352A" cx="16.088" cy="9.5" r=".382"/><path fill="#60352A" d="M20.294 9.5c0 .211-.171.382-.382.382-.212 0-.383-.171-.383-.382s.171-.382.383-.382c.211 0 .382.171.382.382z"/><path fill="#915A34" d="M17.235 10.647h1.53s0 .765-.765.765-.765-.765-.765-.765z"/><path fill="#662113" d="M14 23h8v2h-8z"/><path fill="#99AAB5" d="M33.5 3.5c0 .276-.224.5-.5.5H3c-.276 0-.5-.224-.5-.5S2.724 3 3 3h30c.276 0 .5.224.5.5z"/><path fill="#292F33" d="M32 0c-.553 0-1 .448-1 1 0-.552-.447-1-1-1s-1 .448-1 1v5c0 .552.447 1 1 1s1-.448 1-1c0 .552.447 1 1 1s1-.448 1-1V1c0-.552-.447-1-1-1zM6 0c-.553 0-1 .448-1 1 0-.552-.447-1-1-1S3 .448 3 1v5c0 .552.447 1 1 1s1-.448 1-1c0 .552.447 1 1 1s1-.448 1-1V1c0-.552-.447-1-1-1z"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#AF7E57" d="M15.81 34.875h-1.422s-1.323-3.348-1.119-5.736l2.918.549c.548 1.571-.377 5.187-.377 5.187zm4.317 0h1.422s1.323-3.348 1.119-5.736l-2.918.549c-.548 1.571.377 5.187.377 5.187z"/><path fill="#4289C1" d="M13.617 35.149c.106-.243.331-.694.355-.955.024-.261.036-.354.25-.426.362-.121 1.496-.087 1.691-.016.194.071.197.263.225.424.028.161.118.424.237.64s.426.697.272 1.034c-.064.14-.422.138-1.569.138s-1.476-.026-1.554-.118c-.08-.092-.014-.477.093-.721zm8.704 0c-.106-.243-.331-.694-.355-.955-.024-.261-.036-.354-.25-.426-.362-.121-1.496-.087-1.691-.016-.194.071-.197.263-.225.424s-.118.424-.237.64c-.118.216-.426.697-.272 1.034.064.14.422.138 1.569.138s1.476-.026 1.554-.118.013-.477-.093-.721z"/><path fill="#AF7E57" d="M8.646 4.146c.011.127.871 1.535 1.323 2.635.452 1.1.71 2.198.948 2.448.476.499 2.285 1.879 3.271 3.343.985 1.464.57 2.503-.094 2.922-.88.555-1.803.204-2.437-.788-.451-.706-1.951-3.209-2.739-4.601-.306-.541-1.018-1.512-1.449-2.574-.406-1-.454-2.168-.515-2.312-.179-.425-.878-.977-.912-1.407 0 0 2.567-.095 2.604.334zm18.708 0c-.011.127-.871 1.535-1.323 2.635-.452 1.1-.71 2.198-.948 2.448-.476.499-2.285 1.879-3.271 3.343-.985 1.464-.57 2.503.094 2.922.88.555 1.803.204 2.437-.788.451-.706 1.951-3.209 2.739-4.601.304-.54 1.017-1.511 1.448-2.573.406-1 .454-2.168.515-2.312.178-.425.878-.977.912-1.406.001-.002-2.566-.097-2.603.332z"/><path fill="#99AAB5" d="M36 3.5c0 .276-.224.5-.5.5H.5C.224 4 0 3.776 0 3.5S.224 3 .5 3h35c.276 0 .5.224.5.5z"/><path fill="#292F33" d="M34 0c-.553 0-1 .448-1 1 0-.552-.447-1-1-1-.553 0-1 .448-1 1v5c0 .552.447 1 1 1 .553 0 1-.448 1-1 0 .552.447 1 1 1 .553 0 1-.448 1-1V1c0-.552-.447-1-1-1zM4 0c-.553 0-1 .448-1 1 0-.552-.447-1-1-1S1 .448 1 1v5c0 .552.447 1 1 1s1-.448 1-1c0 .552.447 1 1 1s1-.448 1-1V1c0-.552-.447-1-1-1z"/><path fill="#4289C1" d="M24.918 13.806c-.625-.583-2.746-1.723-2.746-1.723-.742.419-1.283 1.257-1.492 1.617-.665.117-1.151.3-1.151.3H16.47s-.486-.183-1.151-.3c-.209-.36-.75-1.197-1.492-1.617 0 0-2.121 1.14-2.746 1.723.21.537.492 1.047.716 1.417.255 1.29 1.146 2.763 1.281 3.013.418.78.922 4.264.922 4.264l4 1.5 4-1.5s.504-3.484.922-4.264c.134-.25 1.025-1.724 1.281-3.013.224-.37.506-.879.715-1.417z"/><path fill="#AF7E57" d="M16.471 11.412v3.059c0 .844.684 1.529 1.529 1.529.845 0 1.529-.685 1.529-1.529v-3.059h-3.058z"/><path fill="#60352A" d="M18.375 3.353c-.89 0-1.712.284-2.386.763-1.385.072-2.49 1.209-2.49 2.612 0 1.156.005 2.613 1.529 3.156.749 1.04 1.967 1.719 3.347 1.719 2.278 0 4.125-1.846 4.125-4.125 0-2.278-1.847-4.125-4.125-4.125z"/><path fill="#AF7E57" d="M21.75 5.602h-7.5v4.5c0 2.072 1.679 3.75 3.75 3.75 2.072 0 3.75-1.678 3.75-3.75v-4.5z"/><path fill="#60352A" d="M18 4l-3.924 1.533v3.139c1.831 0 2.236-1.893 2.327-2.737.031.844.639 2.737 5.52 2.737V5.533L18 4z"/><path fill="#915A34" d="M19.5 12.353h-3s0 .75 1.5.75 1.5-.75 1.5-.75z"/><circle fill="#662113" cx="16.125" cy="9.728" r=".375"/><path fill="#662113" d="M20.25 9.728c0 .207-.168.375-.374.375-.208 0-.375-.168-.375-.375s.168-.375.375-.375c.206 0 .374.168.374.375z"/><path fill="#915A34" d="M17.25 10.853h1.5s0 .75-.75.75-.75-.75-.75-.75z"/><g fill="#AF7E57"><path d="M27.096 4.363c-.33-.157-.476-.428-.377-.719l.003-.01c.099-.291.291-.346.738-.339 0 0 1.521.076 2.437.712 0 0-.199.304-.447.56l-.003.01c-.101.29-1.614.137-2.351-.214z"/><path d="M27.843 3.47c-.137-.033-.221-.173-.188-.31l.087-.357c.033-.137.173-.221.31-.188s.221.173.188.31l-.087.357c-.034.137-.173.221-.31.188zm-.445-.87c-.163-.055-.342.034-.397.197l-.279.837c-.055.164.168-.068.332-.013.163.055.342-.033.397-.196l.144-.427c.055-.164-.034-.342-.197-.398z"/><path d="M28.384 3.399c-.137-.033-.221-.173-.188-.31l.082-.334c.033-.137.173-.221.31-.188s.221.173.188.31l-.082.334c-.034.137-.173.221-.31.188z"/><path d="M28.9 3.424c-.137-.033-.221-.173-.188-.31l.068-.277c.033-.137.173-.221.31-.188s.221.173.188.31l-.068.277c-.034.137-.173.221-.31.188z"/><path d="M29.419 3.447c-.137-.033-.221-.173-.188-.31l.04-.162c.033-.137.173-.221.31-.188s.221.173.188.31l-.04.162c-.034.137-.174.222-.31.188z"/></g><g fill="#AF7E57"><path d="M8.904 4.363c.33-.157.476-.428.377-.719l-.003-.01c-.099-.29-.291-.346-.738-.339 0 0-1.521.076-2.437.712 0 0 .199.304.447.56l.003.01c.101.29 1.614.137 2.351-.214z"/><path d="M8.157 3.47c.137-.033.221-.173.188-.31l-.087-.357c-.033-.137-.173-.221-.31-.188-.137.034-.221.173-.188.31l.087.357c.034.137.173.221.31.188zm.445-.87c.163-.055.342.034.397.197l.279.837c.055.164-.168-.068-.332-.013-.163.055-.342-.033-.397-.196l-.144-.427c-.055-.164.034-.342.197-.398z"/><path d="M7.616 3.399c.137-.033.221-.173.188-.31l-.082-.334c-.033-.137-.173-.221-.31-.188-.136.034-.221.173-.187.31l.082.334c.033.137.172.221.309.188z"/><path d="M7.1 3.424c.137-.033.221-.173.188-.31l-.068-.277c-.033-.137-.172-.221-.309-.188s-.221.173-.188.31l.068.277c.033.137.172.221.309.188z"/><path d="M6.581 3.447c.137-.033.221-.173.188-.31l-.039-.162c-.034-.136-.173-.221-.31-.188-.137.034-.221.173-.188.31l.04.162c.033.137.173.222.309.188z"/></g><path fill="#3A6693" d="M22 24.5L18 23l-4 1.5s-.854 1.917-1 5.188h3.187c.917-.979 1.25-3.604 1.25-3.604h1.125s.333 2.625 1.25 3.604H23c-.146-3.271-1-5.188-1-5.188z"/><path fill="#C1694F" d="M14 22.5h8v2h-8z"/><path fill="#14171A" d="M19 22.399h.65v2.209H19z"/><circle fill="#14171A" cx="18.5" cy="23.458" r=".167"/><path fill="#14171A" d="M18.021 23.458c0 .092-.075.167-.167.167-.092 0-.167-.075-.167-.167 0-.092.075-.167.167-.167.092.001.167.075.167.167z"/><circle fill="#14171A" cx="17.208" cy="23.458" r=".167"/><circle fill="#14171A" cx="16.562" cy="23.458" r=".167"/><circle fill="#14171A" cx="15.917" cy="23.458" r=".167"/><circle fill="#14171A" cx="15.271" cy="23.458" r=".167"/><circle fill="#14171A" cx="14.625" cy="23.458" r=".167"/><circle fill="#14171A" cx="17.208" cy="23.458" r=".167"/><circle fill="#657786" cx="16.553" cy="23.458" r=".148"/><path fill="#657786" d="M16.318 23.31h.235v.297h-.235z"/><path fill="#657786" d="M16.729 24.846h-.758v-2.697h.758v.35h-.409v1.997h.409z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f3cb-1f3fe.svg b/public/emoji/1f3cb-1f3fe.svg
index b80c958d9c61a5c0822be912ac00b64b63981d36..b5f19bf25c9fde0f0c5c9faced851c9464288029 100644
--- a/public/emoji/1f3cb-1f3fe.svg
+++ b/public/emoji/1f3cb-1f3fe.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#AF7E57" d="M14.778 35.254c.141.534.688.854 1.222.713.534-.141.854-.687.714-1.222l-1.525-5.803c-.14-.534-.687-.854-1.221-.713-.534.14-.854.687-.713 1.221l1.523 5.804zm4.509-.508c-.141.534.178 1.08.713 1.221.535.141 1.081-.178 1.222-.713l1.524-5.803c.141-.535-.179-1.082-.713-1.222-.535-.141-1.081.179-1.222.713l-1.524 5.804zm-5.082-20.042C14.368 15.232 14 17 14 17c-1 0-1.542-1.177-1.706-1.705L9.045 4.786c-.163-.528.132-1.088.66-1.251.527-.163 1.087.132 1.25.66l3.25 10.509zm7.59 0C21.632 15.232 22 17 22 17c1 0 1.543-1.177 1.705-1.705l3.25-10.509c.163-.528-.133-1.088-.66-1.251-.527-.163-1.088.132-1.25.66l-3.25 10.509z"/><path fill="#60352A" d="M18.382 3c-.907 0-1.745.29-2.432.778-1.412.074-2.539 1.232-2.539 2.663 0 1.179.005 2.664 1.559 3.217.763 1.061 2.005 1.753 3.412 1.753 2.323 0 4.206-1.882 4.206-4.205C22.588 4.883 20.705 3 18.382 3z"/><path fill="#4289C1" d="M19 23h-2l-3 2-1 5h3l1-3h2l1 3h3l-1-5zm-6 13v-1s0-1 2-1 2 1 2 1v1h-4zm6 0v-1s0-1 2-1 2 1 2 1v1h-4z"/><path fill="#4289C1" d="M22 14h-8v10h8V14z"/><path fill="#AF7E57" d="M16.471 11.412v3.059c0 .844.684 1.529 1.529 1.529s1.529-.685 1.529-1.529v-3.059h-3.058z"/><path fill="#AF7E57" d="M21.823 5.294h-7.647v4.588c0 2.112 1.712 3.823 3.824 3.823s3.823-1.711 3.823-3.823V5.294z"/><path fill="#60352A" d="M16.4 5.223H14v3.201c1.867 0 2.28-1.93 2.373-2.791.031.86.651 2.791 5.628 2.791V5.223H16.4z"/><path fill="#915A34" d="M19.529 12.176h-3.058s0 .765 1.529.765 1.529-.765 1.529-.765z"/><circle fill="#60352A" cx="16.088" cy="9.5" r=".382"/><path fill="#60352A" d="M20.294 9.5c0 .211-.171.382-.382.382-.212 0-.383-.171-.383-.382s.171-.382.383-.382c.211 0 .382.171.382.382z"/><path fill="#915A34" d="M17.235 10.647h1.53s0 .765-.765.765-.765-.765-.765-.765z"/><path fill="#662113" d="M14 23h8v2h-8z"/><path fill="#99AAB5" d="M33.5 3.5c0 .276-.224.5-.5.5H3c-.276 0-.5-.224-.5-.5S2.724 3 3 3h30c.276 0 .5.224.5.5z"/><path fill="#292F33" d="M32 0c-.553 0-1 .448-1 1 0-.552-.447-1-1-1s-1 .448-1 1v5c0 .552.447 1 1 1s1-.448 1-1c0 .552.447 1 1 1s1-.448 1-1V1c0-.552-.447-1-1-1zM6 0c-.553 0-1 .448-1 1 0-.552-.447-1-1-1S3 .448 3 1v5c0 .552.447 1 1 1s1-.448 1-1c0 .552.447 1 1 1s1-.448 1-1V1c0-.552-.447-1-1-1z"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#AF7E57" d="M15.81 34.875h-1.422s-1.323-3.348-1.119-5.736l2.918.549c.548 1.571-.377 5.187-.377 5.187zm4.317 0h1.422s1.323-3.348 1.119-5.736l-2.918.549c-.548 1.571.377 5.187.377 5.187z"/><path fill="#4289C1" d="M13.617 35.149c.106-.243.331-.694.355-.955.024-.261.036-.354.25-.426.362-.121 1.496-.087 1.691-.016.194.071.197.263.225.424.028.161.118.424.237.64s.426.697.272 1.034c-.064.14-.422.138-1.569.138s-1.476-.026-1.554-.118c-.08-.092-.014-.477.093-.721zm8.704 0c-.106-.243-.331-.694-.355-.955-.024-.261-.036-.354-.25-.426-.362-.121-1.496-.087-1.691-.016-.194.071-.197.263-.225.424s-.118.424-.237.64c-.118.216-.426.697-.272 1.034.064.14.422.138 1.569.138s1.476-.026 1.554-.118.013-.477-.093-.721z"/><path fill="#AF7E57" d="M8.646 4.146c.011.127.871 1.535 1.323 2.635.452 1.1.71 2.198.948 2.448.476.499 2.285 1.879 3.271 3.343.985 1.464.57 2.503-.094 2.922-.88.555-1.803.204-2.437-.788-.451-.706-1.951-3.209-2.739-4.601-.306-.541-1.018-1.512-1.449-2.574-.406-1-.454-2.168-.515-2.312-.179-.425-.878-.977-.912-1.407 0 0 2.567-.095 2.604.334zm18.708 0c-.011.127-.871 1.535-1.323 2.635-.452 1.1-.71 2.198-.948 2.448-.476.499-2.285 1.879-3.271 3.343-.985 1.464-.57 2.503.094 2.922.88.555 1.803.204 2.437-.788.451-.706 1.951-3.209 2.739-4.601.304-.54 1.017-1.511 1.448-2.573.406-1 .454-2.168.515-2.312.178-.425.878-.977.912-1.406.001-.002-2.566-.097-2.603.332z"/><path fill="#99AAB5" d="M36 3.5c0 .276-.224.5-.5.5H.5C.224 4 0 3.776 0 3.5S.224 3 .5 3h35c.276 0 .5.224.5.5z"/><path fill="#292F33" d="M34 0c-.553 0-1 .448-1 1 0-.552-.447-1-1-1-.553 0-1 .448-1 1v5c0 .552.447 1 1 1 .553 0 1-.448 1-1 0 .552.447 1 1 1 .553 0 1-.448 1-1V1c0-.552-.447-1-1-1zM4 0c-.553 0-1 .448-1 1 0-.552-.447-1-1-1S1 .448 1 1v5c0 .552.447 1 1 1s1-.448 1-1c0 .552.447 1 1 1s1-.448 1-1V1c0-.552-.447-1-1-1z"/><path fill="#4289C1" d="M24.918 13.806c-.625-.583-2.746-1.723-2.746-1.723-.742.419-1.283 1.257-1.492 1.617-.665.117-1.151.3-1.151.3H16.47s-.486-.183-1.151-.3c-.209-.36-.75-1.197-1.492-1.617 0 0-2.121 1.14-2.746 1.723.21.537.492 1.047.716 1.417.255 1.29 1.146 2.763 1.281 3.013.418.78.922 4.264.922 4.264l4 1.5 4-1.5s.504-3.484.922-4.264c.134-.25 1.025-1.724 1.281-3.013.224-.37.506-.879.715-1.417z"/><path fill="#AF7E57" d="M16.471 11.412v3.059c0 .844.684 1.529 1.529 1.529.845 0 1.529-.685 1.529-1.529v-3.059h-3.058z"/><path fill="#60352A" d="M18.375 3.353c-.89 0-1.712.284-2.386.763-1.385.072-2.49 1.209-2.49 2.612 0 1.156.005 2.613 1.529 3.156.749 1.04 1.967 1.719 3.347 1.719 2.278 0 4.125-1.846 4.125-4.125 0-2.278-1.847-4.125-4.125-4.125z"/><path fill="#AF7E57" d="M21.75 5.602h-7.5v4.5c0 2.072 1.679 3.75 3.75 3.75 2.072 0 3.75-1.678 3.75-3.75v-4.5z"/><path fill="#60352A" d="M18 4l-3.924 1.533v3.139c1.831 0 2.236-1.893 2.327-2.737.031.844.639 2.737 5.52 2.737V5.533L18 4z"/><path fill="#915A34" d="M19.5 12.353h-3s0 .75 1.5.75 1.5-.75 1.5-.75z"/><circle fill="#662113" cx="16.125" cy="9.728" r=".375"/><path fill="#662113" d="M20.25 9.728c0 .207-.168.375-.374.375-.208 0-.375-.168-.375-.375s.168-.375.375-.375c.206 0 .374.168.374.375z"/><path fill="#915A34" d="M17.25 10.853h1.5s0 .75-.75.75-.75-.75-.75-.75z"/><g fill="#AF7E57"><path d="M27.096 4.363c-.33-.157-.476-.428-.377-.719l.003-.01c.099-.291.291-.346.738-.339 0 0 1.521.076 2.437.712 0 0-.199.304-.447.56l-.003.01c-.101.29-1.614.137-2.351-.214z"/><path d="M27.843 3.47c-.137-.033-.221-.173-.188-.31l.087-.357c.033-.137.173-.221.31-.188s.221.173.188.31l-.087.357c-.034.137-.173.221-.31.188zm-.445-.87c-.163-.055-.342.034-.397.197l-.279.837c-.055.164.168-.068.332-.013.163.055.342-.033.397-.196l.144-.427c.055-.164-.034-.342-.197-.398z"/><path d="M28.384 3.399c-.137-.033-.221-.173-.188-.31l.082-.334c.033-.137.173-.221.31-.188s.221.173.188.31l-.082.334c-.034.137-.173.221-.31.188z"/><path d="M28.9 3.424c-.137-.033-.221-.173-.188-.31l.068-.277c.033-.137.173-.221.31-.188s.221.173.188.31l-.068.277c-.034.137-.173.221-.31.188z"/><path d="M29.419 3.447c-.137-.033-.221-.173-.188-.31l.04-.162c.033-.137.173-.221.31-.188s.221.173.188.31l-.04.162c-.034.137-.174.222-.31.188z"/></g><g fill="#AF7E57"><path d="M8.904 4.363c.33-.157.476-.428.377-.719l-.003-.01c-.099-.29-.291-.346-.738-.339 0 0-1.521.076-2.437.712 0 0 .199.304.447.56l.003.01c.101.29 1.614.137 2.351-.214z"/><path d="M8.157 3.47c.137-.033.221-.173.188-.31l-.087-.357c-.033-.137-.173-.221-.31-.188-.137.034-.221.173-.188.31l.087.357c.034.137.173.221.31.188zm.445-.87c.163-.055.342.034.397.197l.279.837c.055.164-.168-.068-.332-.013-.163.055-.342-.033-.397-.196l-.144-.427c-.055-.164.034-.342.197-.398z"/><path d="M7.616 3.399c.137-.033.221-.173.188-.31l-.082-.334c-.033-.137-.173-.221-.31-.188-.136.034-.221.173-.187.31l.082.334c.033.137.172.221.309.188z"/><path d="M7.1 3.424c.137-.033.221-.173.188-.31l-.068-.277c-.033-.137-.172-.221-.309-.188s-.221.173-.188.31l.068.277c.033.137.172.221.309.188z"/><path d="M6.581 3.447c.137-.033.221-.173.188-.31l-.039-.162c-.034-.136-.173-.221-.31-.188-.137.034-.221.173-.188.31l.04.162c.033.137.173.222.309.188z"/></g><path fill="#3A6693" d="M22 24.5L18 23l-4 1.5s-.854 1.917-1 5.188h3.187c.917-.979 1.25-3.604 1.25-3.604h1.125s.333 2.625 1.25 3.604H23c-.146-3.271-1-5.188-1-5.188z"/><path fill="#C1694F" d="M14 22.5h8v2h-8z"/><path fill="#14171A" d="M19 22.399h.65v2.209H19z"/><circle fill="#14171A" cx="18.5" cy="23.458" r=".167"/><path fill="#14171A" d="M18.021 23.458c0 .092-.075.167-.167.167-.092 0-.167-.075-.167-.167 0-.092.075-.167.167-.167.092.001.167.075.167.167z"/><circle fill="#14171A" cx="17.208" cy="23.458" r=".167"/><circle fill="#14171A" cx="16.562" cy="23.458" r=".167"/><circle fill="#14171A" cx="15.917" cy="23.458" r=".167"/><circle fill="#14171A" cx="15.271" cy="23.458" r=".167"/><circle fill="#14171A" cx="14.625" cy="23.458" r=".167"/><circle fill="#14171A" cx="17.208" cy="23.458" r=".167"/><circle fill="#657786" cx="16.553" cy="23.458" r=".148"/><path fill="#657786" d="M16.318 23.31h.235v.297h-.235z"/><path fill="#657786" d="M16.729 24.846h-.758v-2.697h.758v.35h-.409v1.997h.409z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f3cb-1f3ff-200d-2640-fe0f.svg b/public/emoji/1f3cb-1f3ff-200d-2640-fe0f.svg
index bced90f1eafa70166a118ad5122dcd4926c49209..117b92a7f7fa914ce1a06f9d1d0e014ca008f0d2 100644
--- a/public/emoji/1f3cb-1f3ff-200d-2640-fe0f.svg
+++ b/public/emoji/1f3cb-1f3ff-200d-2640-fe0f.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#0B0200" d="M18.497 3.508c-.731 0-1.421.173-2.037.472-.167-.029-.338-.047-.513-.047-1.643 0-2.975 1.332-2.975 2.975v5.1h.007c.078 2.748 2.326 4.954 5.093 4.954s5.015-2.206 5.093-4.954h.007V8.183c0-2.582-2.093-4.675-4.675-4.675z"/><path fill="#7C533E" d="M14.778 35.254c.141.534.688.854 1.222.713.534-.141.854-.687.714-1.222l-1.525-5.803c-.14-.534-.687-.854-1.221-.713-.534.14-.854.687-.713 1.221l1.523 5.804zm4.509-.508c-.141.534.178 1.08.713 1.221.535.141 1.081-.178 1.222-.713l1.524-5.803c.141-.535-.179-1.082-.713-1.222-.535-.141-1.081.179-1.222.713l-1.524 5.804zm-5.082-20.042C14.368 15.232 14 17 14 17c-1 0-1.542-1.177-1.706-1.705L9.045 4.786c-.163-.528.132-1.088.66-1.251.527-.163 1.087.132 1.25.66l3.25 10.509zm7.59 0C21.632 15.232 22 17 22 17c1 0 1.543-1.177 1.705-1.705l3.25-10.509c.163-.528-.133-1.088-.66-1.251-.527-.163-1.088.132-1.25.66l-3.25 10.509z"/><path fill="#0B0200" d="M18.382 3c-.907 0-1.745.29-2.432.778-1.412.074-2.539 1.232-2.539 2.663 0 1.179.005 2.664 1.559 3.217.763 1.061 2.005 1.753 3.412 1.753 2.323 0 4.206-1.882 4.206-4.205C22.588 4.883 20.705 3 18.382 3z"/><path fill="#DD2E44" d="M19 23h-2l-3 2-1 5h3l1-3h2l1 3h3l-1-5zm-6 13v-1s0-1 2-1 2 1 2 1v1h-4zm6 0v-1s0-1 2-1 2 1 2 1v1h-4z"/><path fill="#DD2E44" d="M22 14h-8v10h8V14z"/><path fill="#7C533E" d="M16.471 12.412v2.059c0 .844.684 1.529 1.529 1.529s1.529-.685 1.529-1.529v-2.059h-3.058z"/><path fill="#7C533E" d="M21.823 5.294h-7.647v4.588c0 2.112 1.712 3.823 3.824 3.823s3.823-1.711 3.823-3.823V5.294z"/><path fill="#0B0200" d="M16.4 5.223H14v3.201c1.867 0 2.28-1.93 2.373-2.791.031.86.651 2.791 5.628 2.791V5.223H16.4z"/><path fill="#DF1F32" d="M19.529 12.176h-3.058s0 .765 1.529.765 1.529-.765 1.529-.765z"/><circle cx="16.088" cy="9.5" r=".382"/><path d="M20.294 9.5c0 .211-.171.382-.382.382-.212 0-.383-.171-.383-.382s.171-.382.383-.382c.211 0 .382.171.382.382z"/><path fill="#3D2E24" d="M17.235 10.647h1.53s0 .765-.765.765-.765-.765-.765-.765z"/><path fill="#662113" d="M14 23h8v2h-8z"/><path fill="#99AAB5" d="M33.5 3.5c0 .276-.224.5-.5.5H3c-.276 0-.5-.224-.5-.5S2.724 3 3 3h30c.276 0 .5.224.5.5z"/><path fill="#292F33" d="M32 0c-.553 0-1 .448-1 1 0-.552-.447-1-1-1s-1 .448-1 1v5c0 .552.447 1 1 1s1-.448 1-1c0 .552.447 1 1 1s1-.448 1-1V1c0-.552-.447-1-1-1zM6 0c-.553 0-1 .448-1 1 0-.552-.447-1-1-1S3 .448 3 1v5c0 .552.447 1 1 1s1-.448 1-1c0 .552.447 1 1 1s1-.448 1-1V1c0-.552-.447-1-1-1z"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#0B0200" d="M18.528 3.81c-.731 0-1.421.173-2.037.472-.167-.029-.338-.047-.513-.047-1.643 0-2.975 1.332-2.975 2.975v5.1h.007c.078 2.748 2.326 4.954 5.093 4.954s5.015-2.206 5.093-4.954h.007V8.485c0-2.582-2.093-4.675-4.675-4.675z"/><path fill="#7C533E" d="M15.447 34.875h-1.02s-1.384-3.348-1.18-5.736l2.531.549c.56 1.564-.331 5.187-.331 5.187zm4.885 0h1.02s1.384-3.348 1.18-5.736L20 29.688c-.559 1.564.332 5.187.332 5.187z"/><path fill="#DD2E44" d="M13.452 35.149c.102-.243.316-.694.339-.955.023-.261.034-.354.238-.426.345-.121 1.427-.087 1.613-.016.185.071.188.263.214.424.026.161.113.424.226.64s.406.697.26 1.034c-.061.14-.402.138-1.497.138s-1.408-.026-1.483-.118-.011-.477.09-.721zm8.875 0c-.102-.243-.316-.694-.339-.955-.023-.261-.034-.354-.238-.426-.345-.121-1.427-.087-1.613-.016-.185.071-.188.263-.214.424-.026.161-.113.424-.226.64s-.406.697-.26 1.034c.061.14.402.138 1.497.138s1.408-.026 1.483-.118c.074-.092.011-.477-.09-.721z"/><path fill="#7C533E" d="M8.31 4.156c.011.127.814 1.525 1.266 2.625.452 1.1.747 2.25.984 2.5.476.499 1.926 1.474 2.911 2.937.985 1.464-1.977 2.58-2.611 1.588-.451-.706-1.309-2.368-2.097-3.759-.304-.54-.897-1.454-1.328-2.516-.406-1-.642-2.168-.702-2.312-.179-.425-.879-.977-.913-1.407 0 0 2.454-.084 2.49.344zm19.159 0c-.011.127-.814 1.525-1.266 2.625-.452 1.1-.747 2.25-.984 2.5-.476.499-1.926 1.474-2.911 2.937-.985 1.464 1.977 2.58 2.611 1.588.451-.706 1.309-2.368 2.097-3.759.304-.54.897-1.454 1.328-2.516.406-1 .642-2.168.702-2.312.178-.425.878-.977.912-1.406 0-.001-2.453-.085-2.489.343z"/><path fill="#99AAB5" d="M36 3.5c0 .276-.224.5-.5.5H.5C.224 4 0 3.776 0 3.5S.224 3 .5 3h35c.276 0 .5.224.5.5z"/><path fill="#292F33" d="M34 0c-.553 0-1 .448-1 1 0-.552-.447-1-1-1-.553 0-1 .448-1 1v5c0 .552.447 1 1 1 .553 0 1-.448 1-1 0 .552.447 1 1 1 .553 0 1-.448 1-1V1c0-.552-.447-1-1-1zM4 0c-.553 0-1 .448-1 1 0-.552-.447-1-1-1S1 .448 1 1v5c0 .552.447 1 1 1s1-.448 1-1c0 .552.447 1 1 1s1-.448 1-1V1c0-.552-.447-1-1-1z"/><path fill="#DD2E44" d="M24.918 13.806c-.625-.583-2.611-1.588-2.611-1.588-.709.401-1.237 1.188-1.465 1.571l-1.398.394h-2.89l-1.627-.406c-.231-.387-.755-1.162-1.458-1.559 0 0-1.986 1.004-2.611 1.588.406 1.039 1.543 2.428 1.543 2.428l.008-.001c.4.821.854 1.362.945 1.547.386.781.646 4.72.646 4.72l4 1.5 3.779-1.5s.26-3.939.643-4.719c.091-.185.545-.727.945-1.547l.008.001c0-.001 1.138-1.39 1.543-2.429z"/><path fill="#7C533E" d="M16.471 11.412v3.059c0 .844.684 1.529 1.529 1.529.845 0 1.529-.685 1.529-1.529v-3.059h-3.058z"/><path fill="#0B0200" d="M18.375 3.353c-.89 0-1.712.284-2.386.763-1.385.072-2.49 1.209-2.49 2.612 0 1.156.005 2.613 1.529 3.156.749 1.04 1.967 1.719 3.347 1.719 2.278 0 4.125-1.846 4.125-4.125 0-2.278-1.847-4.125-4.125-4.125z"/><path fill="#7C533E" d="M21.75 5.602h-7.5v4.5c0 2.072 1.679 3.75 3.75 3.75 2.072 0 3.75-1.678 3.75-3.75v-4.5z"/><path fill="#0B0200" d="M18 4l-3.924 1.533v3.139c1.831 0 2.236-1.893 2.327-2.737.031.844.639 2.737 5.52 2.737V5.533L18 4z"/><path fill="#3D2E24" d="M19.5 12.353h-3s0 .75 1.5.75 1.5-.75 1.5-.75z"/><circle cx="16.125" cy="9.728" r=".375"/><path d="M20.25 9.728c0 .207-.168.375-.374.375-.208 0-.375-.168-.375-.375s.168-.375.375-.375c.206 0 .374.168.374.375z"/><path fill="#3D2E24" d="M17.25 10.853h1.5s0 .75-.75.75-.75-.75-.75-.75z"/><g fill="#7C533E"><path d="M27.096 4.363c-.33-.157-.476-.428-.377-.719l.003-.01c.099-.291.291-.346.738-.339 0 0 1.521.076 2.437.712 0 0-.199.304-.447.56l-.003.01c-.101.29-1.614.137-2.351-.214z"/><path d="M27.843 3.47c-.137-.033-.221-.173-.188-.31l.087-.357c.033-.137.173-.221.31-.188s.221.173.188.31l-.087.357c-.034.137-.173.221-.31.188zm-.445-.87c-.163-.055-.342.034-.397.197l-.279.837c-.055.164.168-.068.332-.013.163.055.342-.033.397-.196l.144-.427c.055-.164-.034-.342-.197-.398z"/><path d="M28.384 3.399c-.137-.033-.221-.173-.188-.31l.082-.334c.033-.137.173-.221.31-.188s.221.173.188.31l-.082.334c-.034.137-.173.221-.31.188z"/><path d="M28.9 3.424c-.137-.033-.221-.173-.188-.31l.068-.277c.033-.137.173-.221.31-.188s.221.173.188.31l-.068.277c-.034.137-.173.221-.31.188z"/><path d="M29.419 3.447c-.137-.033-.221-.173-.188-.31l.04-.162c.033-.137.173-.221.31-.188s.221.173.188.31l-.04.162c-.034.137-.174.222-.31.188z"/></g><g fill="#7C533E"><path d="M8.683 4.363c.33-.157.476-.428.377-.719l-.003-.01c-.1-.29-.292-.346-.738-.339 0 0-1.521.076-2.437.712 0 0 .199.304.447.56l.003.01c.1.29 1.614.137 2.351-.214z"/><path d="M7.936 3.47c.137-.033.221-.173.188-.31l-.088-.357c-.033-.137-.173-.221-.31-.188-.136.034-.221.173-.187.31l.087.357c.034.137.173.221.31.188zm.445-.87c.163-.055.342.034.397.197l.279.837c.055.164-.168-.068-.332-.013-.163.055-.342-.033-.397-.196l-.144-.427c-.055-.164.033-.342.197-.398z"/><path d="M7.395 3.399c.137-.033.221-.173.188-.31l-.082-.334c-.033-.137-.173-.221-.31-.188-.137.034-.221.173-.188.31l.082.334c.034.137.173.221.31.188z"/><path d="M6.879 3.424c.137-.034.221-.173.188-.31l-.068-.277c-.033-.137-.173-.221-.309-.188-.137.033-.221.173-.188.31l.068.277c.033.137.172.221.309.188z"/><path d="M6.36 3.447c.137-.033.221-.173.188-.31l-.04-.162c-.033-.137-.173-.221-.31-.188-.136.034-.22.173-.187.31l.04.162c.033.137.172.222.309.188z"/></g><path fill="#DD2E44" d="M21.779 24.5L18 23l-4 1.5s-.94 1.766-.94 5.188h2.719c.917-.979 1.25-3.604 1.25-3.604h1.721s.333 2.625 1.25 3.604h2.719c0-3.422-.94-5.188-.94-5.188z"/><path fill="#C1694F" d="M14 22.5h7.779v2H14z"/><path fill="#14171A" d="M19 22.399h.65v2.209H19z"/><circle fill="#14171A" cx="18.5" cy="23.458" r=".167"/><path fill="#14171A" d="M18.021 23.458c0 .092-.075.167-.167.167-.092 0-.167-.075-.167-.167 0-.092.075-.167.167-.167.092.001.167.075.167.167z"/><circle fill="#14171A" cx="17.208" cy="23.458" r=".167"/><circle fill="#14171A" cx="16.562" cy="23.458" r=".167"/><circle fill="#14171A" cx="15.917" cy="23.458" r=".167"/><circle fill="#14171A" cx="15.271" cy="23.458" r=".167"/><circle fill="#14171A" cx="14.625" cy="23.458" r=".167"/><circle fill="#14171A" cx="17.208" cy="23.458" r=".167"/><circle fill="#657786" cx="16.318" cy="23.458" r=".148"/><circle fill="#657786" cx="16.553" cy="23.458" r=".148"/><path fill="#657786" d="M16.318 23.31h.235v.297h-.235z"/><path fill="#657786" d="M16.729 24.846h-.758v-2.698h.758v.35h-.408v1.998h.408z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f3cb-1f3ff-200d-2642-fe0f.svg b/public/emoji/1f3cb-1f3ff-200d-2642-fe0f.svg
index be0f83b9ea31524896cb7831a722df6d754e293d..2cf83c479613c3a2b688cce061d6d581e6b3dbab 100644
--- a/public/emoji/1f3cb-1f3ff-200d-2642-fe0f.svg
+++ b/public/emoji/1f3cb-1f3ff-200d-2642-fe0f.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#7C533E" d="M14.778 35.254c.141.534.688.854 1.222.713.534-.141.854-.687.714-1.222l-1.525-5.803c-.14-.534-.687-.854-1.221-.713-.534.14-.854.687-.713 1.221l1.523 5.804zm4.509-.508c-.141.534.178 1.08.713 1.221.535.141 1.081-.178 1.222-.713l1.524-5.803c.141-.535-.179-1.082-.713-1.222-.535-.141-1.081.179-1.222.713l-1.524 5.804zm-5.082-20.042C14.368 15.232 14 17 14 17c-1 0-1.542-1.177-1.706-1.705L9.045 4.786c-.163-.528.132-1.088.66-1.251.527-.163 1.087.132 1.25.66l3.25 10.509zm7.59 0C21.632 15.232 22 17 22 17c1 0 1.543-1.177 1.705-1.705l3.25-10.509c.163-.528-.133-1.088-.66-1.251-.527-.163-1.088.132-1.25.66l-3.25 10.509z"/><path fill="#0B0200" d="M18.382 3c-.907 0-1.745.29-2.432.778-1.412.074-2.539 1.232-2.539 2.663 0 1.179.005 2.664 1.559 3.217.763 1.061 2.005 1.753 3.412 1.753 2.323 0 4.206-1.882 4.206-4.205C22.588 4.883 20.705 3 18.382 3z"/><path fill="#4289C1" d="M19 23h-2l-3 2-1 5h3l1-3h2l1 3h3l-1-5zm-6 13v-1s0-1 2-1 2 1 2 1v1h-4zm6 0v-1s0-1 2-1 2 1 2 1v1h-4z"/><path fill="#4289C1" d="M22 14h-8v10h8V14z"/><path fill="#7C533E" d="M16.471 11.412v3.059c0 .844.684 1.529 1.529 1.529s1.529-.685 1.529-1.529v-3.059h-3.058z"/><path fill="#7C533E" d="M21.823 5.294h-7.647v4.588c0 2.112 1.712 3.823 3.824 3.823s3.823-1.711 3.823-3.823V5.294z"/><path fill="#0B0200" d="M16.4 5.223H14v3.201c1.867 0 2.28-1.93 2.373-2.791.031.86.651 2.791 5.628 2.791V5.223H16.4z"/><path fill="#3D2E24" d="M19.529 12.176h-3.058s0 .765 1.529.765 1.529-.765 1.529-.765z"/><circle cx="16.088" cy="9.5" r=".382"/><path d="M20.294 9.5c0 .211-.171.382-.382.382-.212 0-.383-.171-.383-.382s.171-.382.383-.382c.211 0 .382.171.382.382z"/><path fill="#3D2E24" d="M17.235 10.647h1.53s0 .765-.765.765-.765-.765-.765-.765z"/><path fill="#662113" d="M14 23h8v2h-8z"/><path fill="#99AAB5" d="M33.5 3.5c0 .276-.224.5-.5.5H3c-.276 0-.5-.224-.5-.5S2.724 3 3 3h30c.276 0 .5.224.5.5z"/><path fill="#292F33" d="M32 0c-.553 0-1 .448-1 1 0-.552-.447-1-1-1s-1 .448-1 1v5c0 .552.447 1 1 1s1-.448 1-1c0 .552.447 1 1 1s1-.448 1-1V1c0-.552-.447-1-1-1zM6 0c-.553 0-1 .448-1 1 0-.552-.447-1-1-1S3 .448 3 1v5c0 .552.447 1 1 1s1-.448 1-1c0 .552.447 1 1 1s1-.448 1-1V1c0-.552-.447-1-1-1z"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#7C533E" d="M15.81 34.875h-1.422s-1.323-3.348-1.119-5.736l2.918.549c.548 1.571-.377 5.187-.377 5.187zm4.317 0h1.422s1.323-3.348 1.119-5.736l-2.918.549c-.548 1.571.377 5.187.377 5.187z"/><path fill="#4289C1" d="M13.617 35.149c.106-.243.331-.694.355-.955.024-.261.036-.354.25-.426.362-.121 1.496-.087 1.691-.016.194.071.197.263.225.424.028.161.118.424.237.64s.426.697.272 1.034c-.064.14-.422.138-1.569.138s-1.476-.026-1.554-.118c-.08-.092-.014-.477.093-.721zm8.704 0c-.106-.243-.331-.694-.355-.955-.024-.261-.036-.354-.25-.426-.362-.121-1.496-.087-1.691-.016-.194.071-.197.263-.225.424s-.118.424-.237.64c-.118.216-.426.697-.272 1.034.064.14.422.138 1.569.138s1.476-.026 1.554-.118.013-.477-.093-.721z"/><path fill="#7C533E" d="M8.646 4.146c.011.127.871 1.535 1.323 2.635.452 1.1.71 2.198.948 2.448.476.499 2.285 1.879 3.271 3.343.985 1.464.57 2.503-.094 2.922-.88.555-1.803.204-2.437-.788-.451-.706-1.951-3.209-2.739-4.601-.306-.541-1.018-1.512-1.449-2.574-.406-1-.454-2.168-.515-2.312-.179-.425-.878-.977-.912-1.407 0 0 2.567-.095 2.604.334zm18.708 0c-.011.127-.871 1.535-1.323 2.635-.452 1.1-.71 2.198-.948 2.448-.476.499-2.285 1.879-3.271 3.343-.985 1.464-.57 2.503.094 2.922.88.555 1.803.204 2.437-.788.451-.706 1.951-3.209 2.739-4.601.304-.54 1.017-1.511 1.448-2.573.406-1 .454-2.168.515-2.312.178-.425.878-.977.912-1.406.001-.002-2.566-.097-2.603.332z"/><path fill="#99AAB5" d="M36 3.5c0 .276-.224.5-.5.5H.5C.224 4 0 3.776 0 3.5S.224 3 .5 3h35c.276 0 .5.224.5.5z"/><path fill="#292F33" d="M34 0c-.553 0-1 .448-1 1 0-.552-.447-1-1-1-.553 0-1 .448-1 1v5c0 .552.447 1 1 1 .553 0 1-.448 1-1 0 .552.447 1 1 1 .553 0 1-.448 1-1V1c0-.552-.447-1-1-1zM4 0c-.553 0-1 .448-1 1 0-.552-.447-1-1-1S1 .448 1 1v5c0 .552.447 1 1 1s1-.448 1-1c0 .552.447 1 1 1s1-.448 1-1V1c0-.552-.447-1-1-1z"/><path fill="#4289C1" d="M24.918 13.806c-.625-.583-2.746-1.723-2.746-1.723-.742.419-1.283 1.257-1.492 1.617-.665.117-1.151.3-1.151.3H16.47s-.486-.183-1.151-.3c-.209-.36-.75-1.197-1.492-1.617 0 0-2.121 1.14-2.746 1.723.21.537.492 1.047.716 1.417.255 1.29 1.146 2.763 1.281 3.013.418.78.922 4.264.922 4.264l4 1.5 4-1.5s.504-3.484.922-4.264c.134-.25 1.025-1.724 1.281-3.013.224-.37.506-.879.715-1.417z"/><path fill="#7C533E" d="M16.471 11.412v3.059c0 .844.684 1.529 1.529 1.529.845 0 1.529-.685 1.529-1.529v-3.059h-3.058z"/><path fill="#0B0200" d="M18.375 3.353c-.89 0-1.712.284-2.386.763-1.385.072-2.49 1.209-2.49 2.612 0 1.156.005 2.613 1.529 3.156.749 1.04 1.967 1.719 3.347 1.719 2.278 0 4.125-1.846 4.125-4.125 0-2.278-1.847-4.125-4.125-4.125z"/><path fill="#7C533E" d="M21.75 5.602h-7.5v4.5c0 2.072 1.679 3.75 3.75 3.75 2.072 0 3.75-1.678 3.75-3.75v-4.5z"/><path fill="#0B0200" d="M18 4l-3.924 1.533v3.139c1.831 0 2.236-1.893 2.327-2.737.031.844.639 2.737 5.52 2.737V5.533L18 4z"/><path fill="#3D2E24" d="M19.5 12.353h-3s0 .75 1.5.75 1.5-.75 1.5-.75z"/><circle cx="16.125" cy="9.728" r=".375"/><path d="M20.25 9.728c0 .207-.168.375-.374.375-.208 0-.375-.168-.375-.375s.168-.375.375-.375c.206 0 .374.168.374.375z"/><path fill="#3D2E24" d="M17.25 10.853h1.5s0 .75-.75.75-.75-.75-.75-.75z"/><g fill="#7C533E"><path d="M27.096 4.363c-.33-.157-.476-.428-.377-.719l.003-.01c.099-.291.291-.346.738-.339 0 0 1.521.076 2.437.712 0 0-.199.304-.447.56l-.003.01c-.101.29-1.614.137-2.351-.214z"/><path d="M27.843 3.47c-.137-.033-.221-.173-.188-.31l.087-.357c.033-.137.173-.221.31-.188s.221.173.188.31l-.087.357c-.034.137-.173.221-.31.188zm-.445-.87c-.163-.055-.342.034-.397.197l-.279.837c-.055.164.168-.068.332-.013.163.055.342-.033.397-.196l.144-.427c.055-.164-.034-.342-.197-.398z"/><path d="M28.384 3.399c-.137-.033-.221-.173-.188-.31l.082-.334c.033-.137.173-.221.31-.188s.221.173.188.31l-.082.334c-.034.137-.173.221-.31.188z"/><path d="M28.9 3.424c-.137-.033-.221-.173-.188-.31l.068-.277c.033-.137.173-.221.31-.188s.221.173.188.31l-.068.277c-.034.137-.173.221-.31.188z"/><path d="M29.419 3.447c-.137-.033-.221-.173-.188-.31l.04-.162c.033-.137.173-.221.31-.188s.221.173.188.31l-.04.162c-.034.137-.174.222-.31.188z"/></g><g fill="#7C533E"><path d="M8.904 4.363c.33-.157.476-.428.377-.719l-.003-.01c-.099-.29-.291-.346-.738-.339 0 0-1.521.076-2.437.712 0 0 .199.304.447.56l.003.01c.101.29 1.614.137 2.351-.214z"/><path d="M8.157 3.47c.137-.033.221-.173.188-.31l-.087-.357c-.033-.137-.173-.221-.31-.188-.137.034-.221.173-.188.31l.087.357c.034.137.173.221.31.188zm.445-.87c.163-.055.342.034.397.197l.279.837c.055.164-.168-.068-.332-.013-.163.055-.342-.033-.397-.196l-.144-.427c-.055-.164.034-.342.197-.398z"/><path d="M7.616 3.399c.137-.033.221-.173.188-.31l-.082-.334c-.033-.137-.173-.221-.31-.188-.136.034-.221.173-.187.31l.082.334c.033.137.172.221.309.188z"/><path d="M7.1 3.424c.137-.033.221-.173.188-.31l-.068-.277c-.033-.137-.172-.221-.309-.188s-.221.173-.188.31l.068.277c.033.137.172.221.309.188z"/><path d="M6.581 3.447c.137-.033.221-.173.188-.31l-.039-.162c-.034-.136-.173-.221-.31-.188-.137.034-.221.173-.188.31l.04.162c.033.137.173.222.309.188z"/></g><path fill="#3A6693" d="M22 24.5L18 23l-4 1.5s-.854 1.917-1 5.188h3.187c.917-.979 1.25-3.604 1.25-3.604h1.125s.333 2.625 1.25 3.604H23c-.146-3.271-1-5.188-1-5.188z"/><path fill="#C1694F" d="M14 22.5h8v2h-8z"/><path fill="#14171A" d="M19 22.399h.65v2.209H19z"/><circle fill="#14171A" cx="18.5" cy="23.458" r=".167"/><path fill="#14171A" d="M18.021 23.458c0 .092-.075.167-.167.167-.092 0-.167-.075-.167-.167 0-.092.075-.167.167-.167.092.001.167.075.167.167z"/><circle fill="#14171A" cx="17.208" cy="23.458" r=".167"/><circle fill="#14171A" cx="16.562" cy="23.458" r=".167"/><circle fill="#14171A" cx="15.917" cy="23.458" r=".167"/><circle fill="#14171A" cx="15.271" cy="23.458" r=".167"/><circle fill="#14171A" cx="14.625" cy="23.458" r=".167"/><circle fill="#14171A" cx="17.208" cy="23.458" r=".167"/><circle fill="#657786" cx="16.553" cy="23.458" r=".148"/><path fill="#657786" d="M16.318 23.31h.235v.297h-.235z"/><path fill="#657786" d="M16.729 24.846h-.758v-2.697h.758v.35h-.409v1.997h.409z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f3cb-1f3ff.svg b/public/emoji/1f3cb-1f3ff.svg
index be0f83b9ea31524896cb7831a722df6d754e293d..2cf83c479613c3a2b688cce061d6d581e6b3dbab 100644
--- a/public/emoji/1f3cb-1f3ff.svg
+++ b/public/emoji/1f3cb-1f3ff.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#7C533E" d="M14.778 35.254c.141.534.688.854 1.222.713.534-.141.854-.687.714-1.222l-1.525-5.803c-.14-.534-.687-.854-1.221-.713-.534.14-.854.687-.713 1.221l1.523 5.804zm4.509-.508c-.141.534.178 1.08.713 1.221.535.141 1.081-.178 1.222-.713l1.524-5.803c.141-.535-.179-1.082-.713-1.222-.535-.141-1.081.179-1.222.713l-1.524 5.804zm-5.082-20.042C14.368 15.232 14 17 14 17c-1 0-1.542-1.177-1.706-1.705L9.045 4.786c-.163-.528.132-1.088.66-1.251.527-.163 1.087.132 1.25.66l3.25 10.509zm7.59 0C21.632 15.232 22 17 22 17c1 0 1.543-1.177 1.705-1.705l3.25-10.509c.163-.528-.133-1.088-.66-1.251-.527-.163-1.088.132-1.25.66l-3.25 10.509z"/><path fill="#0B0200" d="M18.382 3c-.907 0-1.745.29-2.432.778-1.412.074-2.539 1.232-2.539 2.663 0 1.179.005 2.664 1.559 3.217.763 1.061 2.005 1.753 3.412 1.753 2.323 0 4.206-1.882 4.206-4.205C22.588 4.883 20.705 3 18.382 3z"/><path fill="#4289C1" d="M19 23h-2l-3 2-1 5h3l1-3h2l1 3h3l-1-5zm-6 13v-1s0-1 2-1 2 1 2 1v1h-4zm6 0v-1s0-1 2-1 2 1 2 1v1h-4z"/><path fill="#4289C1" d="M22 14h-8v10h8V14z"/><path fill="#7C533E" d="M16.471 11.412v3.059c0 .844.684 1.529 1.529 1.529s1.529-.685 1.529-1.529v-3.059h-3.058z"/><path fill="#7C533E" d="M21.823 5.294h-7.647v4.588c0 2.112 1.712 3.823 3.824 3.823s3.823-1.711 3.823-3.823V5.294z"/><path fill="#0B0200" d="M16.4 5.223H14v3.201c1.867 0 2.28-1.93 2.373-2.791.031.86.651 2.791 5.628 2.791V5.223H16.4z"/><path fill="#3D2E24" d="M19.529 12.176h-3.058s0 .765 1.529.765 1.529-.765 1.529-.765z"/><circle cx="16.088" cy="9.5" r=".382"/><path d="M20.294 9.5c0 .211-.171.382-.382.382-.212 0-.383-.171-.383-.382s.171-.382.383-.382c.211 0 .382.171.382.382z"/><path fill="#3D2E24" d="M17.235 10.647h1.53s0 .765-.765.765-.765-.765-.765-.765z"/><path fill="#662113" d="M14 23h8v2h-8z"/><path fill="#99AAB5" d="M33.5 3.5c0 .276-.224.5-.5.5H3c-.276 0-.5-.224-.5-.5S2.724 3 3 3h30c.276 0 .5.224.5.5z"/><path fill="#292F33" d="M32 0c-.553 0-1 .448-1 1 0-.552-.447-1-1-1s-1 .448-1 1v5c0 .552.447 1 1 1s1-.448 1-1c0 .552.447 1 1 1s1-.448 1-1V1c0-.552-.447-1-1-1zM6 0c-.553 0-1 .448-1 1 0-.552-.447-1-1-1S3 .448 3 1v5c0 .552.447 1 1 1s1-.448 1-1c0 .552.447 1 1 1s1-.448 1-1V1c0-.552-.447-1-1-1z"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#7C533E" d="M15.81 34.875h-1.422s-1.323-3.348-1.119-5.736l2.918.549c.548 1.571-.377 5.187-.377 5.187zm4.317 0h1.422s1.323-3.348 1.119-5.736l-2.918.549c-.548 1.571.377 5.187.377 5.187z"/><path fill="#4289C1" d="M13.617 35.149c.106-.243.331-.694.355-.955.024-.261.036-.354.25-.426.362-.121 1.496-.087 1.691-.016.194.071.197.263.225.424.028.161.118.424.237.64s.426.697.272 1.034c-.064.14-.422.138-1.569.138s-1.476-.026-1.554-.118c-.08-.092-.014-.477.093-.721zm8.704 0c-.106-.243-.331-.694-.355-.955-.024-.261-.036-.354-.25-.426-.362-.121-1.496-.087-1.691-.016-.194.071-.197.263-.225.424s-.118.424-.237.64c-.118.216-.426.697-.272 1.034.064.14.422.138 1.569.138s1.476-.026 1.554-.118.013-.477-.093-.721z"/><path fill="#7C533E" d="M8.646 4.146c.011.127.871 1.535 1.323 2.635.452 1.1.71 2.198.948 2.448.476.499 2.285 1.879 3.271 3.343.985 1.464.57 2.503-.094 2.922-.88.555-1.803.204-2.437-.788-.451-.706-1.951-3.209-2.739-4.601-.306-.541-1.018-1.512-1.449-2.574-.406-1-.454-2.168-.515-2.312-.179-.425-.878-.977-.912-1.407 0 0 2.567-.095 2.604.334zm18.708 0c-.011.127-.871 1.535-1.323 2.635-.452 1.1-.71 2.198-.948 2.448-.476.499-2.285 1.879-3.271 3.343-.985 1.464-.57 2.503.094 2.922.88.555 1.803.204 2.437-.788.451-.706 1.951-3.209 2.739-4.601.304-.54 1.017-1.511 1.448-2.573.406-1 .454-2.168.515-2.312.178-.425.878-.977.912-1.406.001-.002-2.566-.097-2.603.332z"/><path fill="#99AAB5" d="M36 3.5c0 .276-.224.5-.5.5H.5C.224 4 0 3.776 0 3.5S.224 3 .5 3h35c.276 0 .5.224.5.5z"/><path fill="#292F33" d="M34 0c-.553 0-1 .448-1 1 0-.552-.447-1-1-1-.553 0-1 .448-1 1v5c0 .552.447 1 1 1 .553 0 1-.448 1-1 0 .552.447 1 1 1 .553 0 1-.448 1-1V1c0-.552-.447-1-1-1zM4 0c-.553 0-1 .448-1 1 0-.552-.447-1-1-1S1 .448 1 1v5c0 .552.447 1 1 1s1-.448 1-1c0 .552.447 1 1 1s1-.448 1-1V1c0-.552-.447-1-1-1z"/><path fill="#4289C1" d="M24.918 13.806c-.625-.583-2.746-1.723-2.746-1.723-.742.419-1.283 1.257-1.492 1.617-.665.117-1.151.3-1.151.3H16.47s-.486-.183-1.151-.3c-.209-.36-.75-1.197-1.492-1.617 0 0-2.121 1.14-2.746 1.723.21.537.492 1.047.716 1.417.255 1.29 1.146 2.763 1.281 3.013.418.78.922 4.264.922 4.264l4 1.5 4-1.5s.504-3.484.922-4.264c.134-.25 1.025-1.724 1.281-3.013.224-.37.506-.879.715-1.417z"/><path fill="#7C533E" d="M16.471 11.412v3.059c0 .844.684 1.529 1.529 1.529.845 0 1.529-.685 1.529-1.529v-3.059h-3.058z"/><path fill="#0B0200" d="M18.375 3.353c-.89 0-1.712.284-2.386.763-1.385.072-2.49 1.209-2.49 2.612 0 1.156.005 2.613 1.529 3.156.749 1.04 1.967 1.719 3.347 1.719 2.278 0 4.125-1.846 4.125-4.125 0-2.278-1.847-4.125-4.125-4.125z"/><path fill="#7C533E" d="M21.75 5.602h-7.5v4.5c0 2.072 1.679 3.75 3.75 3.75 2.072 0 3.75-1.678 3.75-3.75v-4.5z"/><path fill="#0B0200" d="M18 4l-3.924 1.533v3.139c1.831 0 2.236-1.893 2.327-2.737.031.844.639 2.737 5.52 2.737V5.533L18 4z"/><path fill="#3D2E24" d="M19.5 12.353h-3s0 .75 1.5.75 1.5-.75 1.5-.75z"/><circle cx="16.125" cy="9.728" r=".375"/><path d="M20.25 9.728c0 .207-.168.375-.374.375-.208 0-.375-.168-.375-.375s.168-.375.375-.375c.206 0 .374.168.374.375z"/><path fill="#3D2E24" d="M17.25 10.853h1.5s0 .75-.75.75-.75-.75-.75-.75z"/><g fill="#7C533E"><path d="M27.096 4.363c-.33-.157-.476-.428-.377-.719l.003-.01c.099-.291.291-.346.738-.339 0 0 1.521.076 2.437.712 0 0-.199.304-.447.56l-.003.01c-.101.29-1.614.137-2.351-.214z"/><path d="M27.843 3.47c-.137-.033-.221-.173-.188-.31l.087-.357c.033-.137.173-.221.31-.188s.221.173.188.31l-.087.357c-.034.137-.173.221-.31.188zm-.445-.87c-.163-.055-.342.034-.397.197l-.279.837c-.055.164.168-.068.332-.013.163.055.342-.033.397-.196l.144-.427c.055-.164-.034-.342-.197-.398z"/><path d="M28.384 3.399c-.137-.033-.221-.173-.188-.31l.082-.334c.033-.137.173-.221.31-.188s.221.173.188.31l-.082.334c-.034.137-.173.221-.31.188z"/><path d="M28.9 3.424c-.137-.033-.221-.173-.188-.31l.068-.277c.033-.137.173-.221.31-.188s.221.173.188.31l-.068.277c-.034.137-.173.221-.31.188z"/><path d="M29.419 3.447c-.137-.033-.221-.173-.188-.31l.04-.162c.033-.137.173-.221.31-.188s.221.173.188.31l-.04.162c-.034.137-.174.222-.31.188z"/></g><g fill="#7C533E"><path d="M8.904 4.363c.33-.157.476-.428.377-.719l-.003-.01c-.099-.29-.291-.346-.738-.339 0 0-1.521.076-2.437.712 0 0 .199.304.447.56l.003.01c.101.29 1.614.137 2.351-.214z"/><path d="M8.157 3.47c.137-.033.221-.173.188-.31l-.087-.357c-.033-.137-.173-.221-.31-.188-.137.034-.221.173-.188.31l.087.357c.034.137.173.221.31.188zm.445-.87c.163-.055.342.034.397.197l.279.837c.055.164-.168-.068-.332-.013-.163.055-.342-.033-.397-.196l-.144-.427c-.055-.164.034-.342.197-.398z"/><path d="M7.616 3.399c.137-.033.221-.173.188-.31l-.082-.334c-.033-.137-.173-.221-.31-.188-.136.034-.221.173-.187.31l.082.334c.033.137.172.221.309.188z"/><path d="M7.1 3.424c.137-.033.221-.173.188-.31l-.068-.277c-.033-.137-.172-.221-.309-.188s-.221.173-.188.31l.068.277c.033.137.172.221.309.188z"/><path d="M6.581 3.447c.137-.033.221-.173.188-.31l-.039-.162c-.034-.136-.173-.221-.31-.188-.137.034-.221.173-.188.31l.04.162c.033.137.173.222.309.188z"/></g><path fill="#3A6693" d="M22 24.5L18 23l-4 1.5s-.854 1.917-1 5.188h3.187c.917-.979 1.25-3.604 1.25-3.604h1.125s.333 2.625 1.25 3.604H23c-.146-3.271-1-5.188-1-5.188z"/><path fill="#C1694F" d="M14 22.5h8v2h-8z"/><path fill="#14171A" d="M19 22.399h.65v2.209H19z"/><circle fill="#14171A" cx="18.5" cy="23.458" r=".167"/><path fill="#14171A" d="M18.021 23.458c0 .092-.075.167-.167.167-.092 0-.167-.075-.167-.167 0-.092.075-.167.167-.167.092.001.167.075.167.167z"/><circle fill="#14171A" cx="17.208" cy="23.458" r=".167"/><circle fill="#14171A" cx="16.562" cy="23.458" r=".167"/><circle fill="#14171A" cx="15.917" cy="23.458" r=".167"/><circle fill="#14171A" cx="15.271" cy="23.458" r=".167"/><circle fill="#14171A" cx="14.625" cy="23.458" r=".167"/><circle fill="#14171A" cx="17.208" cy="23.458" r=".167"/><circle fill="#657786" cx="16.553" cy="23.458" r=".148"/><path fill="#657786" d="M16.318 23.31h.235v.297h-.235z"/><path fill="#657786" d="M16.729 24.846h-.758v-2.697h.758v.35h-.409v1.997h.409z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f3cb-fe0f-200d-2640-fe0f.svg b/public/emoji/1f3cb-fe0f-200d-2640-fe0f.svg
index 33614a1dd685c99365d3c35db5d62d005390cb46..1e2ac7f89469a4ca43a2ca2321a08d05309b7697 100644
--- a/public/emoji/1f3cb-fe0f-200d-2640-fe0f.svg
+++ b/public/emoji/1f3cb-fe0f-200d-2640-fe0f.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#FFAC33" d="M18.497 3.508c-.731 0-1.421.173-2.037.472-.167-.029-.338-.047-.513-.047-1.643 0-2.975 1.332-2.975 2.975v5.1h.007c.078 2.748 2.326 4.954 5.093 4.954s5.015-2.206 5.093-4.954h.007V8.183c0-2.582-2.093-4.675-4.675-4.675z"/><path fill="#FFDC5D" d="M14.778 35.254c.141.534.688.854 1.222.713.534-.141.854-.687.714-1.222l-1.525-5.803c-.14-.534-.687-.854-1.221-.713-.534.14-.854.687-.713 1.221l1.523 5.804zm4.509-.508c-.141.534.178 1.08.713 1.221.535.141 1.081-.178 1.222-.713l1.524-5.803c.141-.535-.179-1.082-.713-1.222-.535-.141-1.081.179-1.222.713l-1.524 5.804zm-5.082-20.042C14.368 15.232 14 17 14 17c-1 0-1.542-1.177-1.706-1.705L9.045 4.786c-.163-.528.132-1.088.66-1.251.527-.163 1.087.132 1.25.66l3.25 10.509zm7.59 0C21.632 15.232 22 17 22 17c1 0 1.543-1.177 1.705-1.705l3.25-10.509c.163-.528-.133-1.088-.66-1.251-.527-.163-1.088.132-1.25.66l-3.25 10.509z"/><path fill="#FFAC33" d="M18.382 3c-.907 0-1.745.29-2.432.778-1.412.074-2.539 1.232-2.539 2.663 0 1.179.005 2.664 1.559 3.217.763 1.061 2.005 1.753 3.412 1.753 2.323 0 4.206-1.882 4.206-4.205C22.588 4.883 20.705 3 18.382 3z"/><path fill="#DD2E44" d="M19 23h-2l-3 2-1 5h3l1-3h2l1 3h3l-1-5zm-6 13v-1s0-1 2-1 2 1 2 1v1h-4zm6 0v-1s0-1 2-1 2 1 2 1v1h-4z"/><path fill="#DD2E44" d="M22 14h-8v10h8V14z"/><path fill="#FFDC5D" d="M16.471 12.412v2.059c0 .844.684 1.529 1.529 1.529s1.529-.685 1.529-1.529v-2.059h-3.058z"/><path fill="#FFDC5D" d="M21.823 5.294h-7.647v4.588c0 2.112 1.712 3.823 3.824 3.823s3.823-1.711 3.823-3.823V5.294z"/><path fill="#FFAC33" d="M16.4 5.223H14v3.201c1.867 0 2.28-1.93 2.373-2.791.031.86.651 2.791 5.628 2.791V5.223H16.4z"/><path fill="#DF1F32" d="M19.529 12.176h-3.058s0 .765 1.529.765 1.529-.765 1.529-.765z"/><circle fill="#662113" cx="16.088" cy="9.5" r=".382"/><path fill="#662113" d="M20.294 9.5c0 .211-.171.382-.382.382-.212 0-.383-.171-.383-.382s.171-.382.383-.382c.211 0 .382.171.382.382z"/><path fill="#C1694F" d="M17.235 10.647h1.53s0 .765-.765.765-.765-.765-.765-.765z"/><path fill="#662113" d="M14 23h8v2h-8z"/><path fill="#99AAB5" d="M33.5 3.5c0 .276-.224.5-.5.5H3c-.276 0-.5-.224-.5-.5S2.724 3 3 3h30c.276 0 .5.224.5.5z"/><path fill="#292F33" d="M32 0c-.553 0-1 .448-1 1 0-.552-.447-1-1-1s-1 .448-1 1v5c0 .552.447 1 1 1s1-.448 1-1c0 .552.447 1 1 1s1-.448 1-1V1c0-.552-.447-1-1-1zM6 0c-.553 0-1 .448-1 1 0-.552-.447-1-1-1S3 .448 3 1v5c0 .552.447 1 1 1s1-.448 1-1c0 .552.447 1 1 1s1-.448 1-1V1c0-.552-.447-1-1-1z"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#FFAC33" d="M18.528 3.81c-.731 0-1.421.173-2.037.472-.167-.029-.338-.047-.513-.047-1.643 0-2.975 1.332-2.975 2.975v5.1h.007c.078 2.748 2.326 4.954 5.093 4.954s5.015-2.206 5.093-4.954h.007V8.485c0-2.582-2.093-4.675-4.675-4.675z"/><path fill="#FFDC5D" d="M15.447 34.875h-1.02s-1.384-3.348-1.18-5.736l2.531.549c.56 1.564-.331 5.187-.331 5.187zm4.885 0h1.02s1.384-3.348 1.18-5.736L20 29.688c-.559 1.564.332 5.187.332 5.187z"/><path fill="#DD2E44" d="M13.452 35.149c.102-.243.316-.694.339-.955.023-.261.034-.354.238-.426.345-.121 1.427-.087 1.613-.016.185.071.188.263.214.424.026.161.113.424.226.64s.406.697.26 1.034c-.061.14-.402.138-1.497.138s-1.408-.026-1.483-.118-.011-.477.09-.721zm8.875 0c-.102-.243-.316-.694-.339-.955-.023-.261-.034-.354-.238-.426-.345-.121-1.427-.087-1.613-.016-.185.071-.188.263-.214.424-.026.161-.113.424-.226.64s-.406.697-.26 1.034c.061.14.402.138 1.497.138s1.408-.026 1.483-.118c.074-.092.011-.477-.09-.721z"/><path fill="#FFDC5D" d="M8.31 4.156c.011.127.814 1.525 1.266 2.625.452 1.1.747 2.25.984 2.5.476.499 1.926 1.474 2.911 2.937.985 1.464-1.977 2.58-2.611 1.588-.451-.706-1.309-2.368-2.097-3.759-.304-.54-.897-1.454-1.328-2.516-.406-1-.642-2.168-.702-2.312-.179-.425-.879-.977-.913-1.407 0 0 2.454-.084 2.49.344zm19.159 0c-.011.127-.814 1.525-1.266 2.625-.452 1.1-.747 2.25-.984 2.5-.476.499-1.926 1.474-2.911 2.937-.985 1.464 1.977 2.58 2.611 1.588.451-.706 1.309-2.368 2.097-3.759.304-.54.897-1.454 1.328-2.516.406-1 .642-2.168.702-2.312.178-.425.878-.977.912-1.406 0-.001-2.453-.085-2.489.343z"/><path fill="#99AAB5" d="M36 3.5c0 .276-.224.5-.5.5H.5C.224 4 0 3.776 0 3.5S.224 3 .5 3h35c.276 0 .5.224.5.5z"/><path fill="#292F33" d="M34 0c-.553 0-1 .448-1 1 0-.552-.447-1-1-1-.553 0-1 .448-1 1v5c0 .552.447 1 1 1 .553 0 1-.448 1-1 0 .552.447 1 1 1 .553 0 1-.448 1-1V1c0-.552-.447-1-1-1zM4 0c-.553 0-1 .448-1 1 0-.552-.447-1-1-1S1 .448 1 1v5c0 .552.447 1 1 1s1-.448 1-1c0 .552.447 1 1 1s1-.448 1-1V1c0-.552-.447-1-1-1z"/><path fill="#DD2E44" d="M24.918 13.806c-.625-.583-2.611-1.588-2.611-1.588-.709.401-1.237 1.188-1.465 1.571l-1.398.394h-2.89l-1.627-.406c-.231-.387-.755-1.162-1.458-1.559 0 0-1.986 1.004-2.611 1.588.406 1.039 1.543 2.428 1.543 2.428l.008-.001c.4.821.854 1.362.945 1.547.386.781.646 4.72.646 4.72l4 1.5 3.779-1.5s.26-3.939.643-4.719c.091-.185.545-.727.945-1.547l.008.001c0-.001 1.138-1.39 1.543-2.429z"/><path fill="#FFDC5D" d="M16.471 11.412v3.059c0 .844.684 1.529 1.529 1.529.845 0 1.529-.685 1.529-1.529v-3.059h-3.058z"/><path fill="#FFAC33" d="M18.375 3.353c-.89 0-1.712.284-2.386.763-1.385.072-2.49 1.209-2.49 2.612 0 1.156.005 2.613 1.529 3.156.749 1.04 1.967 1.719 3.347 1.719 2.278 0 4.125-1.846 4.125-4.125 0-2.278-1.847-4.125-4.125-4.125z"/><path fill="#FFDC5D" d="M21.75 5.602h-7.5v4.5c0 2.072 1.679 3.75 3.75 3.75 2.072 0 3.75-1.678 3.75-3.75v-4.5z"/><path fill="#FFAC33" d="M18 4l-3.924 1.533v3.139c1.831 0 2.236-1.893 2.327-2.737.031.844.639 2.737 5.52 2.737V5.533L18 4z"/><path fill="#C1694F" d="M19.5 12.353h-3s0 .75 1.5.75 1.5-.75 1.5-.75z"/><circle fill="#662113" cx="16.125" cy="9.728" r=".375"/><path fill="#662113" d="M20.25 9.728c0 .207-.168.375-.374.375-.208 0-.375-.168-.375-.375s.168-.375.375-.375c.206 0 .374.168.374.375z"/><path fill="#C1694F" d="M17.25 10.853h1.5s0 .75-.75.75-.75-.75-.75-.75z"/><g fill="#FFDC5D"><path d="M27.096 4.363c-.33-.157-.476-.428-.377-.719l.003-.01c.099-.291.291-.346.738-.339 0 0 1.521.076 2.437.712 0 0-.199.304-.447.56l-.003.01c-.101.29-1.614.137-2.351-.214z"/><path d="M27.843 3.47c-.137-.033-.221-.173-.188-.31l.087-.357c.033-.137.173-.221.31-.188s.221.173.188.31l-.087.357c-.034.137-.173.221-.31.188zm-.445-.87c-.163-.055-.342.034-.397.197l-.279.837c-.055.164.168-.068.332-.013.163.055.342-.033.397-.196l.144-.427c.055-.164-.034-.342-.197-.398z"/><path d="M28.384 3.399c-.137-.033-.221-.173-.188-.31l.082-.334c.033-.137.173-.221.31-.188s.221.173.188.31l-.082.334c-.034.137-.173.221-.31.188z"/><path d="M28.9 3.424c-.137-.033-.221-.173-.188-.31l.068-.277c.033-.137.173-.221.31-.188s.221.173.188.31l-.068.277c-.034.137-.173.221-.31.188z"/><path d="M29.419 3.447c-.137-.033-.221-.173-.188-.31l.04-.162c.033-.137.173-.221.31-.188s.221.173.188.31l-.04.162c-.034.137-.174.222-.31.188z"/></g><g fill="#FFDC5D"><path d="M8.683 4.363c.33-.157.476-.428.377-.719l-.003-.01c-.1-.29-.292-.346-.738-.339 0 0-1.521.076-2.437.712 0 0 .199.304.447.56l.003.01c.1.29 1.614.137 2.351-.214z"/><path d="M7.936 3.47c.137-.033.221-.173.188-.31l-.088-.357c-.033-.137-.173-.221-.31-.188-.136.034-.221.173-.187.31l.087.357c.034.137.173.221.31.188zm.445-.87c.163-.055.342.034.397.197l.279.837c.055.164-.168-.068-.332-.013-.163.055-.342-.033-.397-.196l-.144-.427c-.055-.164.033-.342.197-.398z"/><path d="M7.395 3.399c.137-.033.221-.173.188-.31l-.082-.334c-.033-.137-.173-.221-.31-.188-.137.034-.221.173-.188.31l.082.334c.034.137.173.221.31.188z"/><path d="M6.879 3.424c.137-.034.221-.173.188-.31l-.068-.277c-.033-.137-.173-.221-.309-.188-.137.033-.221.173-.188.31l.068.277c.033.137.172.221.309.188z"/><path d="M6.36 3.447c.137-.033.221-.173.188-.31l-.04-.162c-.033-.137-.173-.221-.31-.188-.136.034-.22.173-.187.31l.04.162c.033.137.172.222.309.188z"/></g><path fill="#DD2E44" d="M21.779 24.5L18 23l-4 1.5s-.94 1.766-.94 5.188h2.719c.917-.979 1.25-3.604 1.25-3.604h1.721s.333 2.625 1.25 3.604h2.719c0-3.422-.94-5.188-.94-5.188z"/><path fill="#C1694F" d="M14 22.5h7.779v2H14z"/><path fill="#14171A" d="M19 22.399h.65v2.209H19z"/><circle fill="#14171A" cx="18.5" cy="23.458" r=".167"/><path fill="#14171A" d="M18.021 23.458c0 .092-.075.167-.167.167-.092 0-.167-.075-.167-.167 0-.092.075-.167.167-.167.092.001.167.075.167.167z"/><circle fill="#14171A" cx="17.208" cy="23.458" r=".167"/><circle fill="#14171A" cx="16.562" cy="23.458" r=".167"/><circle fill="#14171A" cx="15.917" cy="23.458" r=".167"/><circle fill="#14171A" cx="15.271" cy="23.458" r=".167"/><circle fill="#14171A" cx="14.625" cy="23.458" r=".167"/><circle fill="#14171A" cx="17.208" cy="23.458" r=".167"/><circle fill="#657786" cx="16.318" cy="23.458" r=".148"/><circle fill="#657786" cx="16.553" cy="23.458" r=".148"/><path fill="#657786" d="M16.318 23.31h.235v.297h-.235z"/><path fill="#657786" d="M16.729 24.846h-.758v-2.698h.758v.35h-.408v1.998h.408z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f3cb-fe0f-200d-2642-fe0f.svg b/public/emoji/1f3cb-fe0f-200d-2642-fe0f.svg
index 9940b781b4b3254a3dce09719d3be4dcbe1b2996..f9bbcc92c69d39a615b920274cafa0907acfbd72 100644
--- a/public/emoji/1f3cb-fe0f-200d-2642-fe0f.svg
+++ b/public/emoji/1f3cb-fe0f-200d-2642-fe0f.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#FFDC5D" d="M14.778 35.254c.141.534.688.854 1.222.713.534-.141.854-.687.714-1.222l-1.525-5.803c-.14-.534-.687-.854-1.221-.713-.534.14-.854.687-.713 1.221l1.523 5.804zm4.509-.508c-.141.534.178 1.08.713 1.221.535.141 1.081-.178 1.222-.713l1.524-5.803c.141-.535-.179-1.082-.713-1.222-.535-.141-1.081.179-1.222.713l-1.524 5.804zm-5.082-20.042C14.368 15.232 14 17 14 17c-1 0-1.542-1.177-1.706-1.705L9.045 4.786c-.163-.528.132-1.088.66-1.251.527-.163 1.087.132 1.25.66l3.25 10.509zm7.59 0C21.632 15.232 22 17 22 17c1 0 1.543-1.177 1.705-1.705l3.25-10.509c.163-.528-.133-1.088-.66-1.251-.527-.163-1.088.132-1.25.66l-3.25 10.509z"/><path fill="#FFAC33" d="M18.382 3c-.907 0-1.745.29-2.432.778-1.412.074-2.539 1.232-2.539 2.663 0 1.179.005 2.664 1.559 3.217.763 1.061 2.005 1.753 3.412 1.753 2.323 0 4.206-1.882 4.206-4.205C22.588 4.883 20.705 3 18.382 3z"/><path fill="#4289C1" d="M19 23h-2l-3 2-1 5h3l1-3h2l1 3h3l-1-5zm-6 13v-1s0-1 2-1 2 1 2 1v1h-4zm6 0v-1s0-1 2-1 2 1 2 1v1h-4z"/><path fill="#4289C1" d="M22 14h-8v10h8V14z"/><path fill="#FFDC5D" d="M16.471 11.412v3.059c0 .844.684 1.529 1.529 1.529s1.529-.685 1.529-1.529v-3.059h-3.058z"/><path fill="#FFDC5D" d="M21.823 5.294h-7.647v4.588c0 2.112 1.712 3.823 3.824 3.823s3.823-1.711 3.823-3.823V5.294z"/><path fill="#FFAC33" d="M16.4 5.223H14v3.201c1.867 0 2.28-1.93 2.373-2.791.031.86.651 2.791 5.628 2.791V5.223H16.4z"/><path fill="#C1694F" d="M19.529 12.176h-3.058s0 .765 1.529.765 1.529-.765 1.529-.765z"/><circle fill="#662113" cx="16.088" cy="9.5" r=".382"/><path fill="#662113" d="M20.294 9.5c0 .211-.171.382-.382.382-.212 0-.383-.171-.383-.382s.171-.382.383-.382c.211 0 .382.171.382.382z"/><path fill="#C1694F" d="M17.235 10.647h1.53s0 .765-.765.765-.765-.765-.765-.765z"/><path fill="#662113" d="M14 23h8v2h-8z"/><path fill="#99AAB5" d="M33.5 3.5c0 .276-.224.5-.5.5H3c-.276 0-.5-.224-.5-.5S2.724 3 3 3h30c.276 0 .5.224.5.5z"/><path fill="#292F33" d="M32 0c-.553 0-1 .448-1 1 0-.552-.447-1-1-1s-1 .448-1 1v5c0 .552.447 1 1 1s1-.448 1-1c0 .552.447 1 1 1s1-.448 1-1V1c0-.552-.447-1-1-1zM6 0c-.553 0-1 .448-1 1 0-.552-.447-1-1-1S3 .448 3 1v5c0 .552.447 1 1 1s1-.448 1-1c0 .552.447 1 1 1s1-.448 1-1V1c0-.552-.447-1-1-1z"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#FFDC5D" d="M15.81 34.875h-1.422s-1.323-3.348-1.119-5.736l2.918.549c.548 1.571-.377 5.187-.377 5.187zm4.317 0h1.422s1.323-3.348 1.119-5.736l-2.918.549c-.548 1.571.377 5.187.377 5.187z"/><path fill="#4289C1" d="M13.617 35.149c.106-.243.331-.694.355-.955.024-.261.036-.354.25-.426.362-.121 1.496-.087 1.691-.016.194.071.197.263.225.424.028.161.118.424.237.64s.426.697.272 1.034c-.064.14-.422.138-1.569.138s-1.476-.026-1.554-.118c-.08-.092-.014-.477.093-.721zm8.704 0c-.106-.243-.331-.694-.355-.955-.024-.261-.036-.354-.25-.426-.362-.121-1.496-.087-1.691-.016-.194.071-.197.263-.225.424s-.118.424-.237.64c-.118.216-.426.697-.272 1.034.064.14.422.138 1.569.138s1.476-.026 1.554-.118.013-.477-.093-.721z"/><path fill="#FFDC5D" d="M8.646 4.146c.011.127.871 1.535 1.323 2.635.452 1.1.71 2.198.948 2.448.476.499 2.285 1.879 3.271 3.343.985 1.464.57 2.503-.094 2.922-.88.555-1.803.204-2.437-.788-.451-.706-1.951-3.209-2.739-4.601-.306-.541-1.018-1.512-1.449-2.574-.406-1-.454-2.168-.515-2.312-.179-.425-.878-.977-.912-1.407 0 0 2.567-.095 2.604.334zm18.708 0c-.011.127-.871 1.535-1.323 2.635-.452 1.1-.71 2.198-.948 2.448-.476.499-2.285 1.879-3.271 3.343-.985 1.464-.57 2.503.094 2.922.88.555 1.803.204 2.437-.788.451-.706 1.951-3.209 2.739-4.601.304-.54 1.017-1.511 1.448-2.573.406-1 .454-2.168.515-2.312.178-.425.878-.977.912-1.406.001-.002-2.566-.097-2.603.332z"/><path fill="#99AAB5" d="M36 3.5c0 .276-.224.5-.5.5H.5C.224 4 0 3.776 0 3.5S.224 3 .5 3h35c.276 0 .5.224.5.5z"/><path fill="#292F33" d="M34 0c-.553 0-1 .448-1 1 0-.552-.447-1-1-1-.553 0-1 .448-1 1v5c0 .552.447 1 1 1 .553 0 1-.448 1-1 0 .552.447 1 1 1 .553 0 1-.448 1-1V1c0-.552-.447-1-1-1zM4 0c-.553 0-1 .448-1 1 0-.552-.447-1-1-1S1 .448 1 1v5c0 .552.447 1 1 1s1-.448 1-1c0 .552.447 1 1 1s1-.448 1-1V1c0-.552-.447-1-1-1z"/><path fill="#4289C1" d="M24.918 13.806c-.625-.583-2.746-1.723-2.746-1.723-.742.419-1.283 1.257-1.492 1.617-.665.117-1.151.3-1.151.3H16.47s-.486-.183-1.151-.3c-.209-.36-.75-1.197-1.492-1.617 0 0-2.121 1.14-2.746 1.723.21.537.492 1.047.716 1.417.255 1.29 1.146 2.763 1.281 3.013.418.78.922 4.264.922 4.264l4 1.5 4-1.5s.504-3.484.922-4.264c.134-.25 1.025-1.724 1.281-3.013.224-.37.506-.879.715-1.417z"/><path fill="#FFDC5D" d="M16.471 11.412v3.059c0 .844.684 1.529 1.529 1.529.845 0 1.529-.685 1.529-1.529v-3.059h-3.058z"/><path fill="#FFAC33" d="M18.375 3.353c-.89 0-1.712.284-2.386.763-1.385.072-2.49 1.209-2.49 2.612 0 1.156.005 2.613 1.529 3.156.749 1.04 1.967 1.719 3.347 1.719 2.278 0 4.125-1.846 4.125-4.125 0-2.278-1.847-4.125-4.125-4.125z"/><path fill="#FFDC5D" d="M21.75 5.602h-7.5v4.5c0 2.072 1.679 3.75 3.75 3.75 2.072 0 3.75-1.678 3.75-3.75v-4.5z"/><path fill="#FFAC33" d="M18 4l-3.924 1.533v3.139c1.831 0 2.236-1.893 2.327-2.737.031.844.639 2.737 5.52 2.737V5.533L18 4z"/><path fill="#C1694F" d="M19.5 12.353h-3s0 .75 1.5.75 1.5-.75 1.5-.75z"/><circle fill="#662113" cx="16.125" cy="9.728" r=".375"/><path fill="#662113" d="M20.25 9.728c0 .207-.168.375-.374.375-.208 0-.375-.168-.375-.375s.168-.375.375-.375c.206 0 .374.168.374.375z"/><path fill="#C1694F" d="M17.25 10.853h1.5s0 .75-.75.75-.75-.75-.75-.75z"/><g fill="#FFDC5D"><path d="M27.096 4.363c-.33-.157-.476-.428-.377-.719l.003-.01c.099-.291.291-.346.738-.339 0 0 1.521.076 2.437.712 0 0-.199.304-.447.56l-.003.01c-.101.29-1.614.137-2.351-.214z"/><path d="M27.843 3.47c-.137-.033-.221-.173-.188-.31l.087-.357c.033-.137.173-.221.31-.188s.221.173.188.31l-.087.357c-.034.137-.173.221-.31.188zm-.445-.87c-.163-.055-.342.034-.397.197l-.279.837c-.055.164.168-.068.332-.013.163.055.342-.033.397-.196l.144-.427c.055-.164-.034-.342-.197-.398z"/><path d="M28.384 3.399c-.137-.033-.221-.173-.188-.31l.082-.334c.033-.137.173-.221.31-.188s.221.173.188.31l-.082.334c-.034.137-.173.221-.31.188z"/><path d="M28.9 3.424c-.137-.033-.221-.173-.188-.31l.068-.277c.033-.137.173-.221.31-.188s.221.173.188.31l-.068.277c-.034.137-.173.221-.31.188z"/><path d="M29.419 3.447c-.137-.033-.221-.173-.188-.31l.04-.162c.033-.137.173-.221.31-.188s.221.173.188.31l-.04.162c-.034.137-.174.222-.31.188z"/></g><g fill="#FFDC5D"><path d="M8.904 4.363c.33-.157.476-.428.377-.719l-.003-.01c-.099-.29-.291-.346-.738-.339 0 0-1.521.076-2.437.712 0 0 .199.304.447.56l.003.01c.101.29 1.614.137 2.351-.214z"/><path d="M8.157 3.47c.137-.033.221-.173.188-.31l-.087-.357c-.033-.137-.173-.221-.31-.188-.137.034-.221.173-.188.31l.087.357c.034.137.173.221.31.188zm.445-.87c.163-.055.342.034.397.197l.279.837c.055.164-.168-.068-.332-.013-.163.055-.342-.033-.397-.196l-.144-.427c-.055-.164.034-.342.197-.398z"/><path d="M7.616 3.399c.137-.033.221-.173.188-.31l-.082-.334c-.033-.137-.173-.221-.31-.188-.136.034-.221.173-.187.31l.082.334c.033.137.172.221.309.188z"/><path d="M7.1 3.424c.137-.033.221-.173.188-.31l-.068-.277c-.033-.137-.172-.221-.309-.188s-.221.173-.188.31l.068.277c.033.137.172.221.309.188z"/><path d="M6.581 3.447c.137-.033.221-.173.188-.31l-.039-.162c-.034-.136-.173-.221-.31-.188-.137.034-.221.173-.188.31l.04.162c.033.137.173.222.309.188z"/></g><path fill="#3A6693" d="M22 24.5L18 23l-4 1.5s-.854 1.917-1 5.188h3.187c.917-.979 1.25-3.604 1.25-3.604h1.125s.333 2.625 1.25 3.604H23c-.146-3.271-1-5.188-1-5.188z"/><path fill="#C1694F" d="M14 22.5h8v2h-8z"/><path fill="#14171A" d="M19 22.399h.65v2.209H19z"/><circle fill="#14171A" cx="18.5" cy="23.458" r=".167"/><path fill="#14171A" d="M18.021 23.458c0 .092-.075.167-.167.167-.092 0-.167-.075-.167-.167 0-.092.075-.167.167-.167.092.001.167.075.167.167z"/><circle fill="#14171A" cx="17.208" cy="23.458" r=".167"/><circle fill="#14171A" cx="16.562" cy="23.458" r=".167"/><circle fill="#14171A" cx="15.917" cy="23.458" r=".167"/><circle fill="#14171A" cx="15.271" cy="23.458" r=".167"/><circle fill="#14171A" cx="14.625" cy="23.458" r=".167"/><circle fill="#14171A" cx="17.208" cy="23.458" r=".167"/><circle fill="#657786" cx="16.553" cy="23.458" r=".148"/><path fill="#657786" d="M16.318 23.31h.235v.297h-.235z"/><path fill="#657786" d="M16.729 24.846h-.758v-2.697h.758v.35h-.409v1.997h.409z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f3cb.svg b/public/emoji/1f3cb.svg
index 9940b781b4b3254a3dce09719d3be4dcbe1b2996..f9bbcc92c69d39a615b920274cafa0907acfbd72 100644
--- a/public/emoji/1f3cb.svg
+++ b/public/emoji/1f3cb.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#FFDC5D" d="M14.778 35.254c.141.534.688.854 1.222.713.534-.141.854-.687.714-1.222l-1.525-5.803c-.14-.534-.687-.854-1.221-.713-.534.14-.854.687-.713 1.221l1.523 5.804zm4.509-.508c-.141.534.178 1.08.713 1.221.535.141 1.081-.178 1.222-.713l1.524-5.803c.141-.535-.179-1.082-.713-1.222-.535-.141-1.081.179-1.222.713l-1.524 5.804zm-5.082-20.042C14.368 15.232 14 17 14 17c-1 0-1.542-1.177-1.706-1.705L9.045 4.786c-.163-.528.132-1.088.66-1.251.527-.163 1.087.132 1.25.66l3.25 10.509zm7.59 0C21.632 15.232 22 17 22 17c1 0 1.543-1.177 1.705-1.705l3.25-10.509c.163-.528-.133-1.088-.66-1.251-.527-.163-1.088.132-1.25.66l-3.25 10.509z"/><path fill="#FFAC33" d="M18.382 3c-.907 0-1.745.29-2.432.778-1.412.074-2.539 1.232-2.539 2.663 0 1.179.005 2.664 1.559 3.217.763 1.061 2.005 1.753 3.412 1.753 2.323 0 4.206-1.882 4.206-4.205C22.588 4.883 20.705 3 18.382 3z"/><path fill="#4289C1" d="M19 23h-2l-3 2-1 5h3l1-3h2l1 3h3l-1-5zm-6 13v-1s0-1 2-1 2 1 2 1v1h-4zm6 0v-1s0-1 2-1 2 1 2 1v1h-4z"/><path fill="#4289C1" d="M22 14h-8v10h8V14z"/><path fill="#FFDC5D" d="M16.471 11.412v3.059c0 .844.684 1.529 1.529 1.529s1.529-.685 1.529-1.529v-3.059h-3.058z"/><path fill="#FFDC5D" d="M21.823 5.294h-7.647v4.588c0 2.112 1.712 3.823 3.824 3.823s3.823-1.711 3.823-3.823V5.294z"/><path fill="#FFAC33" d="M16.4 5.223H14v3.201c1.867 0 2.28-1.93 2.373-2.791.031.86.651 2.791 5.628 2.791V5.223H16.4z"/><path fill="#C1694F" d="M19.529 12.176h-3.058s0 .765 1.529.765 1.529-.765 1.529-.765z"/><circle fill="#662113" cx="16.088" cy="9.5" r=".382"/><path fill="#662113" d="M20.294 9.5c0 .211-.171.382-.382.382-.212 0-.383-.171-.383-.382s.171-.382.383-.382c.211 0 .382.171.382.382z"/><path fill="#C1694F" d="M17.235 10.647h1.53s0 .765-.765.765-.765-.765-.765-.765z"/><path fill="#662113" d="M14 23h8v2h-8z"/><path fill="#99AAB5" d="M33.5 3.5c0 .276-.224.5-.5.5H3c-.276 0-.5-.224-.5-.5S2.724 3 3 3h30c.276 0 .5.224.5.5z"/><path fill="#292F33" d="M32 0c-.553 0-1 .448-1 1 0-.552-.447-1-1-1s-1 .448-1 1v5c0 .552.447 1 1 1s1-.448 1-1c0 .552.447 1 1 1s1-.448 1-1V1c0-.552-.447-1-1-1zM6 0c-.553 0-1 .448-1 1 0-.552-.447-1-1-1S3 .448 3 1v5c0 .552.447 1 1 1s1-.448 1-1c0 .552.447 1 1 1s1-.448 1-1V1c0-.552-.447-1-1-1z"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#FFDC5D" d="M15.81 34.875h-1.422s-1.323-3.348-1.119-5.736l2.918.549c.548 1.571-.377 5.187-.377 5.187zm4.317 0h1.422s1.323-3.348 1.119-5.736l-2.918.549c-.548 1.571.377 5.187.377 5.187z"/><path fill="#4289C1" d="M13.617 35.149c.106-.243.331-.694.355-.955.024-.261.036-.354.25-.426.362-.121 1.496-.087 1.691-.016.194.071.197.263.225.424.028.161.118.424.237.64s.426.697.272 1.034c-.064.14-.422.138-1.569.138s-1.476-.026-1.554-.118c-.08-.092-.014-.477.093-.721zm8.704 0c-.106-.243-.331-.694-.355-.955-.024-.261-.036-.354-.25-.426-.362-.121-1.496-.087-1.691-.016-.194.071-.197.263-.225.424s-.118.424-.237.64c-.118.216-.426.697-.272 1.034.064.14.422.138 1.569.138s1.476-.026 1.554-.118.013-.477-.093-.721z"/><path fill="#FFDC5D" d="M8.646 4.146c.011.127.871 1.535 1.323 2.635.452 1.1.71 2.198.948 2.448.476.499 2.285 1.879 3.271 3.343.985 1.464.57 2.503-.094 2.922-.88.555-1.803.204-2.437-.788-.451-.706-1.951-3.209-2.739-4.601-.306-.541-1.018-1.512-1.449-2.574-.406-1-.454-2.168-.515-2.312-.179-.425-.878-.977-.912-1.407 0 0 2.567-.095 2.604.334zm18.708 0c-.011.127-.871 1.535-1.323 2.635-.452 1.1-.71 2.198-.948 2.448-.476.499-2.285 1.879-3.271 3.343-.985 1.464-.57 2.503.094 2.922.88.555 1.803.204 2.437-.788.451-.706 1.951-3.209 2.739-4.601.304-.54 1.017-1.511 1.448-2.573.406-1 .454-2.168.515-2.312.178-.425.878-.977.912-1.406.001-.002-2.566-.097-2.603.332z"/><path fill="#99AAB5" d="M36 3.5c0 .276-.224.5-.5.5H.5C.224 4 0 3.776 0 3.5S.224 3 .5 3h35c.276 0 .5.224.5.5z"/><path fill="#292F33" d="M34 0c-.553 0-1 .448-1 1 0-.552-.447-1-1-1-.553 0-1 .448-1 1v5c0 .552.447 1 1 1 .553 0 1-.448 1-1 0 .552.447 1 1 1 .553 0 1-.448 1-1V1c0-.552-.447-1-1-1zM4 0c-.553 0-1 .448-1 1 0-.552-.447-1-1-1S1 .448 1 1v5c0 .552.447 1 1 1s1-.448 1-1c0 .552.447 1 1 1s1-.448 1-1V1c0-.552-.447-1-1-1z"/><path fill="#4289C1" d="M24.918 13.806c-.625-.583-2.746-1.723-2.746-1.723-.742.419-1.283 1.257-1.492 1.617-.665.117-1.151.3-1.151.3H16.47s-.486-.183-1.151-.3c-.209-.36-.75-1.197-1.492-1.617 0 0-2.121 1.14-2.746 1.723.21.537.492 1.047.716 1.417.255 1.29 1.146 2.763 1.281 3.013.418.78.922 4.264.922 4.264l4 1.5 4-1.5s.504-3.484.922-4.264c.134-.25 1.025-1.724 1.281-3.013.224-.37.506-.879.715-1.417z"/><path fill="#FFDC5D" d="M16.471 11.412v3.059c0 .844.684 1.529 1.529 1.529.845 0 1.529-.685 1.529-1.529v-3.059h-3.058z"/><path fill="#FFAC33" d="M18.375 3.353c-.89 0-1.712.284-2.386.763-1.385.072-2.49 1.209-2.49 2.612 0 1.156.005 2.613 1.529 3.156.749 1.04 1.967 1.719 3.347 1.719 2.278 0 4.125-1.846 4.125-4.125 0-2.278-1.847-4.125-4.125-4.125z"/><path fill="#FFDC5D" d="M21.75 5.602h-7.5v4.5c0 2.072 1.679 3.75 3.75 3.75 2.072 0 3.75-1.678 3.75-3.75v-4.5z"/><path fill="#FFAC33" d="M18 4l-3.924 1.533v3.139c1.831 0 2.236-1.893 2.327-2.737.031.844.639 2.737 5.52 2.737V5.533L18 4z"/><path fill="#C1694F" d="M19.5 12.353h-3s0 .75 1.5.75 1.5-.75 1.5-.75z"/><circle fill="#662113" cx="16.125" cy="9.728" r=".375"/><path fill="#662113" d="M20.25 9.728c0 .207-.168.375-.374.375-.208 0-.375-.168-.375-.375s.168-.375.375-.375c.206 0 .374.168.374.375z"/><path fill="#C1694F" d="M17.25 10.853h1.5s0 .75-.75.75-.75-.75-.75-.75z"/><g fill="#FFDC5D"><path d="M27.096 4.363c-.33-.157-.476-.428-.377-.719l.003-.01c.099-.291.291-.346.738-.339 0 0 1.521.076 2.437.712 0 0-.199.304-.447.56l-.003.01c-.101.29-1.614.137-2.351-.214z"/><path d="M27.843 3.47c-.137-.033-.221-.173-.188-.31l.087-.357c.033-.137.173-.221.31-.188s.221.173.188.31l-.087.357c-.034.137-.173.221-.31.188zm-.445-.87c-.163-.055-.342.034-.397.197l-.279.837c-.055.164.168-.068.332-.013.163.055.342-.033.397-.196l.144-.427c.055-.164-.034-.342-.197-.398z"/><path d="M28.384 3.399c-.137-.033-.221-.173-.188-.31l.082-.334c.033-.137.173-.221.31-.188s.221.173.188.31l-.082.334c-.034.137-.173.221-.31.188z"/><path d="M28.9 3.424c-.137-.033-.221-.173-.188-.31l.068-.277c.033-.137.173-.221.31-.188s.221.173.188.31l-.068.277c-.034.137-.173.221-.31.188z"/><path d="M29.419 3.447c-.137-.033-.221-.173-.188-.31l.04-.162c.033-.137.173-.221.31-.188s.221.173.188.31l-.04.162c-.034.137-.174.222-.31.188z"/></g><g fill="#FFDC5D"><path d="M8.904 4.363c.33-.157.476-.428.377-.719l-.003-.01c-.099-.29-.291-.346-.738-.339 0 0-1.521.076-2.437.712 0 0 .199.304.447.56l.003.01c.101.29 1.614.137 2.351-.214z"/><path d="M8.157 3.47c.137-.033.221-.173.188-.31l-.087-.357c-.033-.137-.173-.221-.31-.188-.137.034-.221.173-.188.31l.087.357c.034.137.173.221.31.188zm.445-.87c.163-.055.342.034.397.197l.279.837c.055.164-.168-.068-.332-.013-.163.055-.342-.033-.397-.196l-.144-.427c-.055-.164.034-.342.197-.398z"/><path d="M7.616 3.399c.137-.033.221-.173.188-.31l-.082-.334c-.033-.137-.173-.221-.31-.188-.136.034-.221.173-.187.31l.082.334c.033.137.172.221.309.188z"/><path d="M7.1 3.424c.137-.033.221-.173.188-.31l-.068-.277c-.033-.137-.172-.221-.309-.188s-.221.173-.188.31l.068.277c.033.137.172.221.309.188z"/><path d="M6.581 3.447c.137-.033.221-.173.188-.31l-.039-.162c-.034-.136-.173-.221-.31-.188-.137.034-.221.173-.188.31l.04.162c.033.137.173.222.309.188z"/></g><path fill="#3A6693" d="M22 24.5L18 23l-4 1.5s-.854 1.917-1 5.188h3.187c.917-.979 1.25-3.604 1.25-3.604h1.125s.333 2.625 1.25 3.604H23c-.146-3.271-1-5.188-1-5.188z"/><path fill="#C1694F" d="M14 22.5h8v2h-8z"/><path fill="#14171A" d="M19 22.399h.65v2.209H19z"/><circle fill="#14171A" cx="18.5" cy="23.458" r=".167"/><path fill="#14171A" d="M18.021 23.458c0 .092-.075.167-.167.167-.092 0-.167-.075-.167-.167 0-.092.075-.167.167-.167.092.001.167.075.167.167z"/><circle fill="#14171A" cx="17.208" cy="23.458" r=".167"/><circle fill="#14171A" cx="16.562" cy="23.458" r=".167"/><circle fill="#14171A" cx="15.917" cy="23.458" r=".167"/><circle fill="#14171A" cx="15.271" cy="23.458" r=".167"/><circle fill="#14171A" cx="14.625" cy="23.458" r=".167"/><circle fill="#14171A" cx="17.208" cy="23.458" r=".167"/><circle fill="#657786" cx="16.553" cy="23.458" r=".148"/><path fill="#657786" d="M16.318 23.31h.235v.297h-.235z"/><path fill="#657786" d="M16.729 24.846h-.758v-2.697h.758v.35h-.409v1.997h.409z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f3d2.svg b/public/emoji/1f3d2.svg
index 9b0cd11e19e6b0e8743891770e9bd94edc726bf7..382c6291508ef78b16dea90de69a74c5ce59da82 100644
--- a/public/emoji/1f3d2.svg
+++ b/public/emoji/1f3d2.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#F4900C" d="M36 3c-1 1.295-3.027 3.803-4.391 5.671-3.816 5.225-7.156 6.454-10.328 7.632-3.172 1.178-10.407 1.029-13.88.854-3.473-.175-5.735-.579-6.42.415-2.102 3.053-.612 6.481 2.426 6.949 2.378.366 9.544-.32 12.899-.616 3.356-.297 7.024-1.301 8.283-1.785 1.259-.483 2.279-.88 2.597-1.644.318-.765 1.876-2.817 3.783-5.917C32.045 12.811 35 9.55 36 8V3z"/><path fill="#292F33" d="M7 24.591c3-.114 7.055-.487 9.309-.686 2.289-.202 4.704-.732 6.419-1.203l-.424-6.784c-.344.132-.686.259-1.024.385-3.172 1.178-10.405 1.029-13.877.854-.141-.008-.403-.017-.403-.025v7.459z"/><path fill="#231F20" d="M17 28v4c0 1.104 3.135 2 7 2 3.866 0 7-.896 7-2v-4H17z"/><ellipse fill="#58595B" cx="23.996" cy="28" rx="7" ry="2"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#F4900C" d="M36 3c-1 1.295-3.027 3.803-4.391 5.671-3.816 5.225-7.156 6.454-10.328 7.632-3.172 1.178-10.407 1.029-13.88.854-3.473-.175-5.735-.579-6.42.415-2.102 3.053-.612 6.481 2.426 6.949 2.378.366 9.544-.32 12.899-.616 3.356-.297 7.024-1.301 8.283-1.785 1.259-.483 2.279-.88 2.597-1.644.318-.765 1.876-2.817 3.783-5.917C32.045 12.811 35 9.55 36 8V3z"/><path fill="#31373D" d="M7 24.591c3-.114 7.055-.487 9.309-.686 2.289-.202 4.704-.732 6.419-1.203l-.424-6.784c-.344.132-.686.259-1.024.385-3.172 1.178-10.405 1.029-13.877.854-.141-.008-.403-.017-.403-.025v7.459zM17 28v4c0 1.104 3.135 2 7 2 3.866 0 7-.896 7-2v-4H17z"/><ellipse fill="#66757F" cx="23.996" cy="28" rx="7" ry="2"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f3f3-fe0f-200d-26a7-fe0f.svg b/public/emoji/1f3f3-fe0f-200d-26a7-fe0f.svg
new file mode 100644
index 0000000000000000000000000000000000000000..f9fc064c0c840a84fa049a9402a507154fed0a51
--- /dev/null
+++ b/public/emoji/1f3f3-fe0f-200d-26a7-fe0f.svg
@@ -0,0 +1 @@
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#5BCEFA" d="M0 27c0 2.209 1.791 4 4 4h28c2.209 0 4-1.791 4-4v-1.3H0V27z"/><path fill="#F5A9B8" d="M.026 20.5L0 25.8h36v-5.3z"/><path fill="#EEE" d="M0 15.3h36v5.3H0z"/><path fill="#F5A9B8" d="M.026 10.1L0 15.4h36v-5.3z"/><path fill="#5BCEFA" d="M36 9c0-2.209-1.791-4-4-4H4C1.791 5 0 6.791 0 9v1.2h36V9z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f3f4-200d-2620-fe0f.svg b/public/emoji/1f3f4-200d-2620-fe0f.svg
index fb892e27d2b688fb4d404546c3d7ba8486b6790c..ae0d531a1a0028aa652ae66abdc1f5c2f23b4bf0 100644
--- a/public/emoji/1f3f4-200d-2620-fe0f.svg
+++ b/public/emoji/1f3f4-200d-2620-fe0f.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><g fill="#292F33"><path d="M32 5H4C1.791 5 0 6.791 0 9v18c0 2.209 1.791 4 4 4h28c2.209 0 4-1.791 4-4V9c0-2.209-1.791-4-4-4z"/><circle cx="15.5" cy="12.5" r="1.5"/><circle cx="20.5" cy="12.5" r="1.5"/><ellipse cx="18" cy="15.5" rx="1" ry=".5"/></g><path fill="#E6E7E8" d="M29.021 24.883c-.52-.189-1.093.078-1.282.598L20.923 23l6.816-2.48c.189.52.762.786 1.281.598.52-.19.787-.762.598-1.281-.188-.519-.762-.787-1.281-.599.519-.189.787-.762.598-1.281-.19-.52-.762-.787-1.281-.598-.519.188-.787.763-.598 1.282L18 21.937l-9.056-3.296c.189-.52-.078-1.094-.598-1.282-.52-.19-1.092.078-1.281.598-.189.519.078 1.093.598 1.281-.52-.189-1.093.079-1.281.599-.189.52.078 1.092.598 1.281.52.188 1.092-.078 1.281-.598L15.077 23l-6.815 2.48c-.189-.52-.763-.787-1.282-.598-.519.189-.786.762-.598 1.281.189.519.763.787 1.282.598-.52.19-.787.763-.598 1.282.188.52.763.786 1.281.598.519-.189.787-.763.598-1.282L18 24.065l9.055 3.295c-.19.52.079 1.093.598 1.282.519.188 1.093-.078 1.281-.598.189-.519-.078-1.093-.598-1.282.52.19 1.093-.078 1.282-.598.189-.519-.079-1.093-.597-1.281z"/><path fill="#E6E7E8" d="M18 7c-4 0-6 3.239-6 6 0 1.394.827 2.399 2 3.054V18c0 .553.448 1 1 1s1-.447 1-1v-1.216c.33.072.665.127 1 .162V18c0 .553.448 1 1 1s1-.447 1-1v-1.054c.335-.036.67-.09 1-.162V18c0 .553.447 1 1 1s1-.447 1-1v-1.946c1.173-.654 2-1.659 2-3.054 0-2.761-2-6-6-6zm-2.5 7c-.829 0-1.5 0-1.5-1.5 0-.829.671-1.5 1.5-1.5 1.5 0 1.5.671 1.5 1.5s-.671 1.5-1.5 1.5zm2.5 2c-.552 0-1-.224-1-.5s.448-.5 1-.5 1 .224 1 .5-.448.5-1 .5zm2.5-2c-.828 0-1.5-.671-1.5-1.5s0-1.5 1.5-1.5c.828 0 1.5.671 1.5 1.5 0 1.5-.672 1.5-1.5 1.5z"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#31373D" d="M32 5H4C1.791 5 0 6.791 0 9v18c0 2.209 1.791 4 4 4h28c2.209 0 4-1.791 4-4V9c0-2.209-1.791-4-4-4z"/><circle fill="#31373D" cx="15.5" cy="12.5" r="1.5"/><circle fill="#31373D" cx="20.5" cy="12.5" r="1.5"/><ellipse fill="#292F33" cx="18" cy="15.5" rx="1" ry=".5"/><path fill="#E6E7E8" d="M29.021 24.883c-.52-.189-1.093.078-1.282.598L20.923 23l6.816-2.48c.189.52.762.786 1.281.598.52-.19.787-.762.598-1.281-.188-.519-.762-.787-1.281-.599.519-.189.787-.762.598-1.281-.19-.52-.762-.787-1.281-.598-.519.188-.787.763-.598 1.282L18 21.937l-9.056-3.296c.189-.52-.078-1.094-.598-1.282-.52-.19-1.092.078-1.281.598-.189.519.078 1.093.598 1.281-.52-.189-1.093.079-1.281.599-.189.52.078 1.092.598 1.281.52.188 1.092-.078 1.281-.598L15.077 23l-6.815 2.48c-.189-.52-.763-.787-1.282-.598-.519.189-.786.762-.598 1.281.189.519.763.787 1.282.598-.52.19-.787.763-.598 1.282.188.52.763.786 1.281.598.519-.189.787-.763.598-1.282L18 24.065l9.055 3.295c-.19.52.079 1.093.598 1.282.519.188 1.093-.078 1.281-.598.189-.519-.078-1.093-.598-1.282.52.19 1.093-.078 1.282-.598.189-.519-.079-1.093-.597-1.281z"/><path fill="#E6E7E8" d="M18 7c-4 0-6 3.239-6 6 0 1.394.827 2.399 2 3.054V18c0 .553.448 1 1 1s1-.447 1-1v-1.216c.33.072.665.127 1 .162V18c0 .553.448 1 1 1s1-.447 1-1v-1.054c.335-.036.67-.09 1-.162V18c0 .553.447 1 1 1s1-.447 1-1v-1.946c1.173-.654 2-1.659 2-3.054 0-2.761-2-6-6-6zm-2.5 7c-.829 0-1.5 0-1.5-1.5 0-.829.671-1.5 1.5-1.5 1.5 0 1.5.671 1.5 1.5s-.671 1.5-1.5 1.5zm2.5 2c-.552 0-1-.224-1-.5s.448-.5 1-.5 1 .224 1 .5-.448.5-1 .5zm2.5-2c-.828 0-1.5-.671-1.5-1.5s0-1.5 1.5-1.5c.828 0 1.5.671 1.5 1.5 0 1.5-.672 1.5-1.5 1.5z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f3f4.svg b/public/emoji/1f3f4.svg
index a5cc70d4a31b5cbd4a99944f46231576e2d8731b..819ff64afa860bc4bb6c52f056cfe3833bc006b4 100644
--- a/public/emoji/1f3f4.svg
+++ b/public/emoji/1f3f4.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#8899A6" d="M5 36c-1.104 0-2-.896-2-2V3c0-1.104.896-2 2-2s2 .896 2 2v31c0 1.104-.896 2-2 2z"/><path fill="#AAB8C2" d="M5 1c-1.105 0-2 .895-2 2v31c0 .276.224.5.5.5s.5-.224.5-.5V4.414C4 3.633 4.633 3 5.414 3H7c0-1.105-.895-2-2-2z"/><path fill="#8899A6" d="M5 36c-1.104 0-2-.896-2-2V3c0-1.104.896-2 2-2s2 .896 2 2v31c0 1.104-.896 2-2 2z"/><path fill="#AAB8C2" d="M5 1c-1.105 0-2 .895-2 2v31c0 .276.224.5.5.5s.5-.224.5-.5V4.414C4 3.633 4.633 3 5.414 3H7c0-1.105-.895-2-2-2z"/><path fill="#292F33" d="M32.415 3.09c-1.752-.799-3.615-1.187-5.698-1.187-2.518 0-5.02.57-7.438 1.122-2.418.551-4.702 1.072-6.995 1.072-1.79 0-3.382-.329-4.868-1.006-.309-.142-.67-.115-.956.068C6.173 3.343 6 3.66 6 4v19c0 .392.229.747.585.91 1.752.799 3.616 1.187 5.698 1.187 2.518 0 5.02-.57 7.438-1.122 2.418-.551 4.702-1.071 6.995-1.071 1.79 0 3.383.329 4.868 1.007.311.14.67.115.956-.069.287-.185.46-.502.46-.842V4c0-.392-.229-.748-.585-.91z"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#8899A6" d="M5 36c-1.104 0-2-.896-2-2V3c0-1.104.896-2 2-2s2 .896 2 2v31c0 1.104-.896 2-2 2z"/><path fill="#AAB8C2" d="M5 1c-1.105 0-2 .895-2 2v31c0 .276.224.5.5.5s.5-.224.5-.5V4.414C4 3.633 4.633 3 5.414 3H7c0-1.105-.895-2-2-2z"/><path fill="#8899A6" d="M5 36c-1.104 0-2-.896-2-2V3c0-1.104.896-2 2-2s2 .896 2 2v31c0 1.104-.896 2-2 2z"/><path fill="#AAB8C2" d="M5 1c-1.105 0-2 .895-2 2v31c0 .276.224.5.5.5s.5-.224.5-.5V4.414C4 3.633 4.633 3 5.414 3H7c0-1.105-.895-2-2-2z"/><path fill="#31373D" d="M32.415 3.09c-1.752-.799-3.615-1.187-5.698-1.187-2.518 0-5.02.57-7.438 1.122-2.418.551-4.702 1.072-6.995 1.072-1.79 0-3.382-.329-4.868-1.006-.309-.142-.67-.115-.956.068C6.173 3.343 6 3.66 6 4v19c0 .392.229.747.585.91 1.752.799 3.616 1.187 5.698 1.187 2.518 0 5.02-.57 7.438-1.122 2.418-.551 4.702-1.071 6.995-1.071 1.79 0 3.383.329 4.868 1.007.311.14.67.115.956-.069.287-.185.46-.502.46-.842V4c0-.392-.229-.748-.585-.91z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f3f5.svg b/public/emoji/1f3f5.svg
index 6e7f443f85829c1d16715386a103d5b020be8a05..dfaa7186764b069d20f23604f98f2620576ebff9 100644
--- a/public/emoji/1f3f5.svg
+++ b/public/emoji/1f3f5.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#553788" d="M30.119 16.486c-3.347 3.346-7.677 2.927-10.604 0-2.927-2.93-3.347-7.257 0-10.604 3.347-3.347 9.847-3.788 12.119-1.516 2.272 2.273 1.831 8.773-1.515 12.12zM16.485 30.119c-3.347 3.346-9.847 3.786-12.12 1.515-2.272-2.272-1.831-8.772 1.516-12.119 3.346-3.346 7.675-2.928 10.604 0 2.928 2.927 3.347 7.257 0 10.604z"/><path fill="#553788" d="M19.515 30.119c-3.346-3.346-2.927-7.676.001-10.604 2.928-2.928 7.257-3.347 10.604-.001 3.347 3.348 3.787 9.847 1.516 12.119-2.275 2.273-8.774 1.833-12.121-1.514zM5.881 16.485c-3.347-3.347-3.788-9.847-1.515-12.12 2.272-2.272 8.773-1.831 12.12 1.516 3.347 3.346 2.928 7.675 0 10.604-2.929 2.928-7.259 3.347-10.605 0z"/><path fill="#55ACEE" d="M26.999 25C22.581 25 20 21.865 20 18c.001-3.866 2.581-7 7-7 4.418 0 9 3.999 9 7s-4.582 7-9.001 7zM9 25c-4.418 0-9-4.001-9-7s4.582-7 9-7 7 3.134 7 7c0 3.865-2.582 7-7 7z"/><path fill="#55ACEE" d="M11 27c0-4.418 3.134-6.999 7-6.999s7 2.581 7 6.999c0 4.419-4 9-7 9s-7-4.581-7-9zm0-18c0-4.418 4-9 7-9s7 4.582 7 9-3.134 7-7 7-7-2.582-7-7z"/><path fill="#88C9F9" d="M23.656 23.657c-3.124 3.124-8.19 3.124-11.313 0-3.125-3.125-3.125-8.19 0-11.314 3.125-3.124 8.189-3.124 11.313 0 3.124 3.124 3.124 8.189 0 11.314z"/><path fill="#BBDDF5" d="M21.656 21.657c-2.02 2.02-5.294 2.02-7.313 0-2.02-2.021-2.02-5.295 0-7.314 2.02-2.02 5.294-2.02 7.313 0 2.02 2.019 2.02 5.294 0 7.314z"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#E95F28" d="M6.373 3.355c.162-.608.808-1.105 1.437-1.105h20.38c.629 0 1.275.497 1.436 1.105l5.08 19.113c.161.608-.119 1.412-.623 1.788L18.916 35.567c-.504.376-1.328.376-1.832 0L1.916 24.255c-.504-.376-.784-1.18-.623-1.788l5.08-19.112z"/><path fill="#FFAC33" d="M32.929 19.916c4.712-1.567.548-14.683-4.164-13.118-1.804.6-3.636 1.715-5.226 3.028.728-1.954 1.197-4.082 1.197-6.023 0-5.071-13.472-5.071-13.472 0 0 1.941.469 4.07 1.197 6.023C10.87 8.514 9.037 7.399 7.234 6.8 2.522 5.233-1.639 18.349 3.07 19.916c1.803.599 3.926.801 5.966.696-1.711 1.142-3.312 2.582-4.427 4.153-2.912 4.103 7.988 12.209 10.9 8.108 1.114-1.57 1.957-3.576 2.49-5.594.533 2.019 1.376 4.024 2.49 5.594 2.912 4.103 13.811-4.004 10.901-8.108-1.115-1.57-2.717-3.01-4.427-4.153 2.04.105 4.162-.097 5.966-.696z"/><path fill="#F4900C" d="M26.26 25.769c3.608 1.184 6.752-8.854 3.145-10.038-1.381-.453-3.005-.599-4.565-.513 1.305-.879 2.526-1.984 3.373-3.188 2.214-3.144-6.144-9.306-8.359-6.162-.848 1.204-1.486 2.738-1.888 4.282-.413-1.541-1.064-3.07-1.921-4.267-2.239-3.127-10.549 3.103-8.311 6.229.857 1.196 2.086 2.293 3.398 3.16-1.56-.074-3.183.087-4.56.55-3.599 1.213-.375 11.224 3.222 10.013 1.377-.464 2.776-1.322 3.988-2.33-.551 1.496-.903 3.124-.898 4.607.015 3.876 10.317 3.833 10.304-.042-.006-1.484-.371-3.109-.933-4.6 1.219 1.001 2.624 1.846 4.005 2.299z"/><path fill="#FFCC4D" d="M24.586 18.537c2.079-.691.242-6.478-1.837-5.787-.796.265-1.604.757-2.306 1.336.321-.862.528-1.801.528-2.657 0-2.237-5.944-2.237-5.944 0 0 .856.207 1.795.528 2.657-.701-.579-1.51-1.071-2.305-1.335-2.079-.691-3.915 5.095-1.837 5.787.796.264 1.732.354 2.632.307-.755.504-1.461 1.139-1.953 1.832-1.285 1.81 3.524 5.386 4.809 3.577.492-.693.863-1.578 1.098-2.468.235.891.607 1.775 1.098 2.468 1.285 1.81 6.093-1.767 4.809-3.577-.492-.693-1.199-1.328-1.953-1.832.901.045 1.837-.044 2.633-.308z"/><path fill="#EEE" d="M19.767 19.018c-.976.976-2.559.976-3.535 0-.976-.977-.976-2.56 0-3.536s2.559-.976 3.535 0 .976 2.559 0 3.536z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f403.svg b/public/emoji/1f403.svg
index 2ffc9005c1cb43fea0c3efbdf5e4c5f7a7090c9e..33d0009fe2a628ccdc98875b7c76370669c0dc99 100644
--- a/public/emoji/1f403.svg
+++ b/public/emoji/1f403.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#292F33" d="M33.912 14.37C33.588 12.602 31.976 11 30 11H11c-.239 0-.521.135-.83.365C9.664 11.139 9.129 11 8.565 11c-1 0-4.731.375-5.565 2L.691 17.305C.016 19.27 1 22.087 3.027 22.087c.57 0 1.536-.007 2.665-.017 1.65.286 3.603 1.504 5.436 2.848C13.248 29.325 14.048 36 15 36c.964 0 2.529-4.409 2.913-7h9.124c.147 2.479.771 7 1.964 7 1.016 0 3.24-4.883 4.347-12.238.315-1.625.532-3.697.615-6.319.022.17.037.352.037.557v12c0 .553.447 1 1 1s1-.447 1-1V18c0-1.807-.749-3.053-2.088-3.63z"/><circle fill="#FFF" cx="6" cy="16" r="1"/><path fill="#99AAB5" d="M10 15c3 0 6.708-1.625 6.708-5.625 0-2-1.552-4.101-4.458-4.167C8.128 5.116 6.375 8 7 8.375 7.528 8.692 9 6.5 11.5 7c1.861.372 2.054 1.567 1.667 2.333C12.716 10.226 11 11 9 11s-1 4 1 4z"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#31373D" d="M33.912 14.37C33.588 12.602 31.976 11 30 11H11c-.239 0-.521.135-.83.365C9.664 11.139 9.129 11 8.565 11c-1 0-4.731.375-5.565 2L.691 17.305C.016 19.27 1 22.087 3.027 22.087c.57 0 1.536-.007 2.665-.017 1.65.286 3.603 1.504 5.436 2.848C13.248 29.325 14.048 36 15 36c.964 0 2.529-4.409 2.913-7h9.124c.147 2.479.771 7 1.964 7 1.016 0 3.24-4.883 4.347-12.238.315-1.625.532-3.697.615-6.319.022.17.037.352.037.557v12c0 .553.447 1 1 1s1-.447 1-1V18c0-1.807-.749-3.053-2.088-3.63z"/><circle fill="#FFF" cx="6" cy="16" r="1"/><path fill="#99AAB5" d="M10 15c3 0 6.708-1.625 6.708-5.625 0-2-1.552-4.101-4.458-4.167C8.128 5.116 6.375 8 7 8.375 7.528 8.692 9 6.5 11.5 7c1.861.372 2.054 1.567 1.667 2.333C12.716 10.226 11 11 9 11s-1 4 1 4z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f404.svg b/public/emoji/1f404.svg
index 283184c144846221866c193d3b79dad02e9d8e57..4c791dcc621e04e80583b15112b9b4ce2165299e 100644
--- a/public/emoji/1f404.svg
+++ b/public/emoji/1f404.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#CCD6DD" d="M34 15c0-2-2.127-4.702-4-4-8 3-19-2-19-2-2.209 0-6.857 9.257-5 10 .277.111.541.227.799.343C4.648 20.087 4.283 21.809 6 22c9 1 6.896 14 8 14 1.344 0 2.685-2.614 3.422-5h9.8c.288 2.354.866 5 1.778 5 .866 0 2.611-3.542 3.794-9.142C33.528 24.232 34 20.326 34 15z"/><path fill="#292F33" d="M10 22c-2 0-4.946.087-6.973.087S-.617 18.609.692 17.305C2 16 6 15 5 11c-.542-2.169 4-3 6-2 4.816 2.408 5 10-2 10 0 0 3 3 1 3zm20-11c-2.586.97-5.485 1.101-8.226.838C20.669 13.231 20 15.031 20 17c0 4.418 3.357 8 7.5 8 2.587 0 4.866-1.396 6.215-3.521.181-1.872.285-4.017.285-6.479 0-2-2.127-4.702-4-4z"/><circle fill="#292F33" cx="17.5" cy="24.5" r="3.5"/><circle fill="#292F33" cx="30" cy="28" r="2"/><path fill="#CCD6DD" d="M11 9c0 .552-.671 1-1.5 1S5 7.552 5 7s2.23-.308 3 0c2.5 1 3 1.448 3 2z"/><circle fill="#CCD6DD" cx="8" cy="13" r="1"/><path fill="#292F33" d="M35 24c-.553 0-1-.447-1-1v-5c0-1.44-.561-2-2-2-.553 0-1-.448-1-1s.447-1 1-1c2.542 0 4 1.458 4 4v5c0 .553-.447 1-1 1z"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#CCD6DD" d="M34 15c0-2-2.127-4.702-4-4-8 3-19-2-19-2-2.209 0-6.857 9.257-5 10 .277.111.541.227.799.343C4.648 20.087 4.283 21.809 6 22c9 1 6.896 14 8 14 1.344 0 2.685-2.614 3.422-5h9.8c.288 2.354.866 5 1.778 5 .866 0 2.611-3.542 3.794-9.142C33.528 24.232 34 20.326 34 15z"/><path fill="#31373D" d="M10 22c-2 0-4.946.087-6.973.087S-.617 18.609.692 17.305C2 16 6 15 5 11c-.542-2.169 4-3 6-2 4.816 2.408 5 10-2 10 0 0 3 3 1 3zm20-11c-2.586.97-5.485 1.101-8.226.838C20.669 13.231 20 15.031 20 17c0 4.418 3.357 8 7.5 8 2.587 0 4.866-1.396 6.215-3.521.181-1.872.285-4.017.285-6.479 0-2-2.127-4.702-4-4z"/><circle fill="#31373D" cx="17.5" cy="24.5" r="3.5"/><circle fill="#31373D" cx="30" cy="28" r="2"/><path fill="#CCD6DD" d="M11 9c0 .552-.671 1-1.5 1S5 7.552 5 7s2.23-.308 3 0c2.5 1 3 1.448 3 2z"/><circle fill="#CCD6DD" cx="8" cy="13" r="1"/><path fill="#31373D" d="M35 24c-.553 0-1-.447-1-1v-5c0-1.44-.561-2-2-2-.553 0-1-.448-1-1s.447-1 1-1c2.542 0 4 1.458 4 4v5c0 .553-.447 1-1 1z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f408.svg b/public/emoji/1f408.svg
index 7997e6ee2260e62e16cee896d589d900639c46a5..edb55b1f67ccbc6df246045a0fcaab246c1e65af 100644
--- a/public/emoji/1f408.svg
+++ b/public/emoji/1f408.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#C1694F" d="M36 12c0-4.252-3.141-7-8-7-.553 0-1 .448-1 1s.447 1 1 1c1.804 0 6 .487 6 5 0 2.881-1.851 4.172-4.054 4.692-.164-.073-.328-.147-.509-.192C25.938 15.625 25 17 19 17c-4.165 0-5.439-4.407-6.832-7.106C11.802 7.848 10.801 4 10 4c-.61 0-1.405 2.027-1.933 4.062C7.41 6.527 6.553 5 6 5c-.711 0-1.42 2.525-1.771 4.706C2.362 10.981 1 12.827 1 15c0 3 7 5 7 5 2.118 1.104 2.743 2.767 3.305 4.276C13.367 30.66 13.119 36 14.5 36s2.5-3.357 2.5-7.5c0-.212-.005-.42-.011-.627 3.154-.101 6.755-1.075 9.79-.293C28.139 32.073 28.466 36 29.5 36c.958 0 1.79-3.784 2.209-7.484.031-.141.054-.297.054-.492l.01-.108c.032-.319.062-.636.088-.948l.515-5.592c0-1.112-.254-2.217-.754-3.103C34.449 17.221 36 15.059 36 12z"/><circle fill="#292F33" cx="7" cy="13" r="1"/><path fill="#292F33" d="M3 13.375C2 14 2 16 1.5 16S0 14.824 0 13.375c0-1.45 4.229-.769 3 0z"/><path fill="#662113" d="M3 16.5c-.184 0-.36-.101-.448-.276-.124-.247-.023-.547.224-.671 2.141-1.07 6.174-.08 6.345-.038.268.067.431.338.364.606-.067.267-.339.427-.606.364-.039-.01-3.847-.942-5.655-.038-.072.036-.148.053-.224.053z"/><path fill="#662113" d="M8 18.5c-.095 0-.191-.027-.277-.084C7.694 18.396 4.824 16.5 3 16.5c-.276 0-.5-.224-.5-.5s.224-.5.5-.5c2.127 0 5.15 1.999 5.277 2.084.229.153.292.463.139.693-.096.145-.255.223-.416.223z"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#F18F26" d="M10.478 22.439s.702 2.281-.337 7.993c-.186 1.025-.46 2.072-.599 2.93-1.757 0-1.851 2.002-1.478 2.002h2.094c1.337 0 2.971-3.334 3.854-7.961s-3.534-4.964-3.534-4.964zm13.042 3.702s2.272 1.22 2.188 4.081c-.033 1.131-.249 2.091-.355 3.024-1.832 0-1.839 1.985-1.305 1.985h1.856c.923 0 3.001-3.158 3.379-7.281.379-4.122-5.763-1.809-5.763-1.809z"/><path fill="#FFCC4E" d="M36 8.447C36 3.525 31.859 1 27 1c-.553 0-1 .448-1 1s.447 1 1 1c1.804 0 6.717.934 6.717 5.447 0 2.881-1.567 5.462-3.77 5.982-.164-.073-.345-.104-.509-.192-7.239-3.917-13.457.902-15.226-.29-1.752-1.182-.539-3.255-2.824-5.243-.33-1.841-1.073-4.477-1.794-4.477-.549 0-1.265 1.825-1.74 3.656-.591-1.381-1.363-2.756-1.86-2.756-.64 0-1.278 2.273-1.594 4.235-1.68 1.147-2.906 2.809-2.906 4.765 0 2.7 4.05 3.357 5.4 3.411 1.35.054 3.023 3.562 3.585 5.072 1.242 4.367 2.051 8.699 2.698 11.183-1.649 0-1.804 2.111-1.348 2.111.713 0 1.953-.003 2.225 0 1.381.014 2.026-4.706 2.026-8.849 0-.212-.011-.627-.011-.627s1.93.505 6.038-.208c2.444-.424 5.03.849 5.746 3.163.527 1.704 1.399 3.305 1.868 4.484-1.589 0-1.545 2.037-1.084 2.037.787 0 1.801.014 2.183 0 1.468-.055.643-7.574 1.03-10.097s1.267-5.578-.229-8.797C34.857 15.236 36 11.505 36 8.447z"/><circle fill="#292F33" cx="5.994" cy="11.768" r=".9"/><path fill="#E75A70" d="M2.984 12.86c-.677.423-.677 1.777-1.015 1.777S.954 13.841.954 12.86c-.001-.981 2.862-.52 2.03 0z"/><path fill="#FEE7B8" d="M6.578 14.343c-.041.026-.09.036-.142.026-.018-.004-1.548-.241-2.545.146-.129.05-.341-.023-.413-.191s.023-.365.152-.415c1.44-.569 2.857-.234 2.934-.218.139.029.195.19.188.372-.004.114-.104.235-.174.28zm-.472 2.339c-.048.009-.097-.001-.141-.031-.015-.01-1.331-.83-2.402-.853-.138-.003-.305-.154-.305-.341 0-.186.165-.335.304-.333 1.552.024 2.724.891 2.789.937.117.082.104.255.027.424-.049.107-.189.182-.272.197z"/><path fill="#F18F26" d="M7.854 7.881s.372-.039.859.033c.217-.46.585-.887.585-.887s.281.668.386 1.179c.025.12.218.117.322.189 0 0 .038-3.463-.863-3.836.001-.002-.755 1.124-1.289 3.322zM4.399 9.36s.384-.267.883-.574c.217-.624.568-1.333.568-1.333s.307.602.345.81c.21-.114.21-.106.403-.19 0 0-.114-2.286-1.099-2.527 0 0-.732 1.372-1.1 3.814z"/><path fill="#FD9" d="M18.45 23.644c-2.649.57-2.38 2.782-2.38 2.782s1.93.505 6.038-.208c1.067-.185 2.153-.03 3.107.377-1.607-3.047-4.315-3.479-6.765-2.951z"/><path fill="#F18F26" d="M14.686 14.109c.476.676 2.397 2.368 2.745 2.159.338-.203.59-2.055.342-2.706-1.329.359-2.385.658-3.087.547zm7.024 2.689c.623.138 1.507-2.979 1.41-4.123-1.449.017-2.78.256-3.965.537.335 1.08 1.953 3.452 2.555 3.586zm2.627-4.082c.042.723.982 2.603 1.285 2.737.307.137 1.685-1.319 1.866-2.061-1.086-.378-2.142-.597-3.151-.676z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f415-200d-1f9ba.svg b/public/emoji/1f415-200d-1f9ba.svg
new file mode 100644
index 0000000000000000000000000000000000000000..0ba7fb30ea6e82b04cbfdb2268aab79020ff8aed
--- /dev/null
+++ b/public/emoji/1f415-200d-1f9ba.svg
@@ -0,0 +1 @@
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#D99E82" d="M28.048 33.061c3.843 1.9 6.261-2.333 4.773-4.752-1.204-1.957-3.696-1.547-3.256-2.047.698-.791 2.665-1.138 4.558.093 1.86 1.209 2.372 5.116.512 7.07-1.59 1.67-6.038 2.588-8.512-.326-4.719-5.558-1.273-1.619 1.925-.038z"/><path fill="#C1694F" d="M12.203 21.604s1.263 3.215 4.339 6.1c-3.174 2.721-1.395 4.884.261 5.508-1.656.527-1.282 2.047-.731 2.047h2.646c.951 0 1.092-3.442.206-7.694-.885-4.251-6.721-5.961-6.721-5.961z"/><path fill="#C1694F" d="M9.635 21.739s.393 3.057.279 6.593c-.07 2.163-.384 3.93-.612 4.866-1.812 0-1.652 2.064-1.268 2.064h2.902c.683 0 1.893-3.438 2.212-8.209.317-4.771-3.513-5.314-3.513-5.314z"/><path fill="#D99E82" d="M25.448 21.797c-2.407-3.139-4.928-5.403-8.368-8.165-2.401-1.928-2.514-5.196-2.514-6.029 0-3.626-3.244-5.455-6.496-4.229-.779.293-1.402 1.33-1.754 1.872-1.978 3.037-4.659.015-4.918 2.822-.313 3.395 1.721 4.534 5.051 4.821 1.892.163 2.425 1.069 2.838 5.018.154 1.472-.433 3.802 1.411 5.822.78 2.959.507 7.08-.091 9.756-2.252.476-1.341 2.179-1.341 2.179s2.858-.043 3.543-.043c.814 0 2.146-5.639 1.849-9.067.942 1.151 1.517 1.762 2.581 2.267-1.116 1-1.081 2.512-.523 3.419.467.759 1.326.872 2.147 1.22-1.602.52-1.091 1.732-.909 2.122 1.083-.043 7.918-.043 8.197-.043 1.11 0 2.985-2.503 2.897-5.488-.078-2.64-1.581-5.62-3.6-8.254z"/><path fill="#F4C7B5" d="M18.114 28.212c-.145-.109-.374-.234-.7-.385-.985-.456-2.076-1.517-2.791-2.18.019.346.026.707.035.907.942 1.151 1.517 1.762 2.581 2.267.143-.192.461-.405.875-.609z"/><path fill="#C1694F" d="M16.425 29.076c.93-1.419 3.988-1.93 6.081-1.686 0 0-5.452.086-6.058 2.663-.371 1.582-.857.295-.023-.977z"/><path fill="#C1694F" d="M16.52 32.572c.488.556 1.208 1.341 2.13.959 1.08-.449 2.235-.228 3.718-.245 0 0-.04-.248-.89-.227-2.093.052-4.587.105-5.093-1.587-.466-1.557-.868-.043.135 1.1z"/><path fill="#F4C7B5" d="M10.665 23.689c-1.065-4.822.12-9.98-3.638-10.713 1.428.317 1.893 1.42 2.259 4.931.154 1.463-.422 3.772 1.379 5.782z"/><path fill="#272B2B" d="M2.503 8.326c-.109.762-.494 1.192-.879 1.133C.864 9.342.232 8.372.232 7.603s.624-.963 1.392-.928c1.043.048 1.002.788.879 1.651z"/><path fill="#662113" d="M15.167 9.495c.348 2.515-1.157 2.898-2.383 2.898s-3.054-1.25-2.748-3.77c.134-1.107.555-2.193.809-3.175.336-1.303 1.199-1.732 1.894-1.367 1.665.873 2.203 3.796 2.428 5.414z"/><circle fill="#292F33" cx="8.069" cy="6.675" r=".928"/><circle fill="#C1694F" cx="3.053" cy="10.503" r=".488"/><circle fill="#C1694F" cx="3.695" cy="9.804" r=".269"/><circle fill="#C1694F" cx="4.1" cy="10.503" r=".269"/><path fill="#A0041E" d="M16.873 13.091c-.461 0-.746-.018-.797-.021-.275-.019-.483-.257-.465-.533.018-.274.237-.484.532-.465.056.002 5.985.36 10.488-2.668C31.069 6.42 31.472.979 31.476.925c.019-.275.257-.488.531-.467.275.018.484.254.467.53-.016.243-.43 5.981-5.284 9.246-3.833 2.576-8.477 2.857-10.317 2.857z"/><path fill="#292F33" d="M8.588 14.077c1.116-.14 4.486-.19 7.023-2.093.558-.419 1.326.913.93 1.163-3.209 2.023-6.965 2.279-7.814 2.279-.464-.001-.73-1.276-.139-1.349zm.628 3.602c.844.244 2.594.28 3.39.235.796-.045 6.165-.723 6.165-.723l.189 1.445s-5.659.826-6.554.943c-.896.117-3.1.802-3.1.802s-.255-.615-.32-1.289c-.065-.684.23-1.413.23-1.413zm10.929 4.999l1.377.958s-2.545 3.872-4.874 5.086l-1.249-1.237s1.303-.867 2.439-2.099c1.196-1.299 2.307-2.708 2.307-2.708z"/><path fill="#A0041E" d="M19.472 14.821c1.485 1.412 4.14 4.233 5.953 6.558.389.499-.791 1.488-1.349 2.14s-2.437 2.632-3.581 1.442c-1.163-1.209-3.256-3.163-4.791-4.698-1.079-1.079-1.007-2.648-.093-3.349.591-.453 1.302-1.349 1.256-2.465-.019-.458.151-.964.558-.977.453-.014 1.186.53 2.047 1.349z"/><path fill="#F4ABBA" d="M16.109 16.439c2.116 1.975 5.568 5.504 7.386 7.695.247-.239.451-.464.581-.615.149-.174.343-.373.539-.58-2.256-2.974-5.86-6.334-7.784-7.987-.095.591-.386 1.1-.722 1.487z"/><path fill="#F5F8FA" d="M16.684 15.494c-.073.188-.162.364-.265.526 2.371 2.083 5.793 5.612 7.545 7.627l.113-.129c.082-.096.179-.2.281-.307-2.134-2.582-6.124-6.373-7.674-7.717z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f415.svg b/public/emoji/1f415.svg
index 903aabe0fe9ed0fc554cfa9a5b01a2f8fc8af5f3..c959deb9d1272e589b069b451ae7e5fa6c262980 100644
--- a/public/emoji/1f415.svg
+++ b/public/emoji/1f415.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#662113" d="M29 15.889s6 0 4-6c-1-3 1-1 2 1s2 8-5 7-1-2-1-2z"/><path fill="#D99E82" d="M32.958 19.841c.027-.314.042-.597.042-.841 0-.658-.062-1-.171-1.123-.897-2.946-5.523-2.896-10.854-2.879C18.989 14.975 17 10.898 17 10c0-5-4.848-6.182-7.5-3C7 10 2 6.962 2 10c0 5 3.358 8 7.5 8 .648 0 1.736-.149 3.01-.381C13.451 19.266 13.9 21.5 14 22c.024.119.05.234.075.353C14.51 26.973 16.756 36 18 36c1.07 0 1.681-2.484 1.902-5.4.886.259 1.91.4 3.098.4 1.112 0 2.137-.247 3.078-.659C26.283 33.368 26.898 36 28 36c1.292 0 4.544-11.5 4.956-16.145l.002-.014z"/><path fill="#662113" d="M4 10.5c0 .829-1.171 1.5-2 1.5S.5 10.829.5 10 1.171 9 2 9c2 0 2 .671 2 1.5zM18 12c0 3.038-1.344 3.5-3 3.5-1.657 0-3-.462-3-3.5s.343-7 2-7 4 3.962 4 7z"/><circle fill="#292F33" cx="10" cy="9" r="1"/><ellipse fill="#C1694F" cx="28" cy="19.5" rx="3" ry="2.5"/><circle fill="#C1694F" cx="22.5" cy="18.5" r="1.5"/><circle fill="#C1694F" cx="24.5" cy="23.5" r="1.5"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#D99E82" d="M31.034 14.374c3.508-.65 3.587-6.297-.051-6.254-2.847.034-2.56 2.795-2.945 2.252-.748-1.055-.989-3.769 1.862-4.894 2.461-.971 5.846.996 6.063 4.591.139 2.302-1.297 6.554-6.453 5.846-7.222-.991-1.983-.892 1.524-1.541z"/><path fill="#C1694F" d="M10.321 21.935s1.016 2.352.676 8.242c-.061 1.057-.209 2.136-.242 3.022-1.812 0-1.652 2.064-1.268 2.064h2.902c.683 0 1.893-3.438 2.212-8.209.319-4.772-4.28-5.119-4.28-5.119zm11.89-.331s.575 3.528 3.651 6.413c.257 1.163.769 4.232.949 5.195-1.889 0-1.282 2.047-.731 2.047h2.646c.951 0 1.092-3.442.206-7.694-.885-4.251-6.721-5.961-6.721-5.961z"/><path fill="#D99E82" d="M32.202 15.654c-1.253-3.752-7.214-3.628-13.997-2.765-3.055.389-3.64-4.453-3.64-5.286 0-3.626-3.244-5.455-6.496-4.229-.779.293-1.402 1.33-1.754 1.872-1.977 3.037-4.658.015-4.917 2.822-.313 3.395 1.721 4.534 5.051 4.821 1.892.163 3.459 1.095 3.871 5.044.154 1.472-.295 5.644 2.388 7.076.78 2.959 1.836 6.615 2.25 8.475-2.252.476-1.341 2.179-1.341 2.179s3.151-.043 3.836-.043c.814 0 .191-5.976-.935-9.787 4.764.043 7.828-1.337 8.799-1.762 1.028 2.96 4.152 3.633 4.851 4.892.433.78 1.878 3.383 2.001 4.496-1.602.52-1.091 1.732-.909 2.122 1.083-.043 3.22-.043 3.498-.043 1.11 0-1.137-6.904-2.083-8.713-1.082-2.071.781-7.419-.473-11.171z"/><path fill="#F4C7B5" d="M16.266 24.464c.044.371.141.891.253 1.369 4.764.043 7.828-1.337 8.799-1.762-.215-.78-.23-1.27-.171-1.538-3.394.557-4.548 2.205-8.881 1.931zM6.449 12.889c1.892.163 2.425 1.069 2.838 5.018.154 1.472.739 5.67 3.421 7.102-.72-2.788-1.959-12.388-6.259-12.12z"/><path fill="#F4C7B5" d="M3.153 6.665c-2.793 0-1.909.526-2.002 1.692-.093 1.166-.074 2.976.776 3.929 1.127 1.262 3.858 1.266 5.215.277s-.424-5.898-3.989-5.898z"/><path fill="#272B2B" d="M2.503 8.326c-.109.762-.494 1.192-.879 1.133C.864 9.342.232 8.372.232 7.603s.624-.963 1.392-.928c1.043.048 1.002.788.879 1.651z"/><path fill="#662113" d="M15.167 9.026c.348 2.515-1.157 2.898-2.383 2.898s-3.054-1.25-2.748-3.77c.134-1.107.555-2.193.809-3.175.336-1.303 1.199-1.732 1.894-1.367 1.665.874 2.203 3.797 2.428 5.414z"/><circle fill="#292F33" cx="8.069" cy="6.675" r=".928"/><path fill="#C1694F" d="M19.035 12.789c.073 1.532.906 3.178 2.733 3.663 1.901.505 4.12.127 4.67-2.475.091-.43.13-1.224.073-1.514-2.151-.179-4.73 0-7.476.326z"/><circle fill="#D99E82" cx="3.053" cy="10.503" r=".488"/><circle fill="#D99E82" cx="3.695" cy="9.804" r=".269"/><circle fill="#D99E82" cx="4.1" cy="10.503" r=".269"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f41c.svg b/public/emoji/1f41c.svg
index cd644d9688eb33bbe893da6891f2847eebc04c8e..385b616e8b71cafd0a1d85ac27c6c51cfc01f859 100644
--- a/public/emoji/1f41c.svg
+++ b/public/emoji/1f41c.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#292F33" d="M7.5 24.516c-.256 0-.512-.098-.707-.293-.391-.391-.391-1.024 0-1.414L22.81 6.793c.391-.391 1.023-.391 1.414 0s.391 1.024 0 1.414L8.207 24.223c-.196.195-.452.293-.707.293zm8.282-11.738c-.219 0-.438-.071-.623-.218-.431-.344-.502-.971-.161-1.403.113-.144 2.571-3.361.971-7.572-.196-.517.063-1.094.579-1.29.518-.196 1.094.064 1.29.579 2.017 5.307-1.139 9.357-1.274 9.527-.197.248-.488.377-.782.377zm3.89 3.888c-.221 0-.441-.072-.626-.221-.429-.345-.499-.97-.156-1.4.138-.172 3.435-4.197 9.323-2.726.536.134.862.677.727 1.213-.134.535-.679.861-1.212.728-4.623-1.157-7.172 1.905-7.278 2.036-.197.243-.487.37-.778.37zM6.454 18.511c-1.096 0-2.301-.186-3.58-.671-.517-.196-.776-.773-.58-1.29.195-.517.775-.775 1.29-.58 4.219 1.604 7.439-.866 7.574-.972.434-.338 1.062-.266 1.403.166.342.432.271 1.058-.159 1.4-.129.103-2.495 1.947-5.948 1.947zm1.564-8.066c-1.829 0-4.968-.482-7.542-3.332-.37-.41-.338-1.042.072-1.412.411-.371 1.043-.337 1.412.072C4.984 9.122 8.976 8.392 9.146 8.36c.538-.105 1.066.246 1.173.787.107.54-.241 1.064-.781 1.174-.069.014-.644.124-1.52.124z"/><path fill="#292F33" d="M9.341 10.341c-.066 0-.132-.006-.199-.02-.541-.109-.89-.635-.783-1.175.034-.173.76-4.163-2.587-7.185C5.362 1.591 5.33.959 5.7.549 6.069.14 6.702.106 7.113.477c4.214 3.806 3.251 8.849 3.207 9.062-.096.475-.513.802-.979.802zm3.948 18.63c-.448 0-.856-.303-.969-.758-1.473-5.895 2.554-9.186 2.726-9.323.431-.344 1.061-.273 1.405.159.343.431.273 1.058-.156 1.402-.14.114-3.187 2.667-2.035 7.277.134.535-.192 1.078-.728 1.212-.081.021-.163.031-.243.031z"/><path fill="#292F33" d="M29.844 19.167c-2.96-2.959-6.095-3.569-8.915-2.069-.157-1.874-1.166-4.007-2.521-5.363-1.488-1.488-3.008-1.653-4.405-1.044 1.058-2.465.6-5.43-.826-6.856-1.843-1.843-4.594-.411-7.174 2.168-2.58 2.58-4.012 5.331-2.168 7.174 1.425 1.426 4.391 1.883 6.856.826-.61 1.397-.444 2.918 1.044 4.405 1.354 1.354 3.489 2.363 5.363 2.521-1.5 2.82-.891 5.954 2.069 8.915 3.75 3.749 12.204 5.527 14.204 3.527s.223-10.455-3.527-14.204z"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#31373D" d="M7.5 24.516c-.256 0-.512-.098-.707-.293-.391-.391-.391-1.024 0-1.414L22.81 6.793c.391-.391 1.023-.391 1.414 0s.391 1.024 0 1.414L8.207 24.223c-.196.195-.452.293-.707.293zm8.282-11.738c-.219 0-.438-.071-.623-.218-.431-.344-.502-.971-.161-1.403.113-.144 2.571-3.361.971-7.572-.196-.517.063-1.094.579-1.29.518-.196 1.094.064 1.29.579 2.017 5.307-1.139 9.357-1.274 9.527-.197.248-.488.377-.782.377zm3.89 3.888c-.221 0-.441-.072-.626-.221-.429-.345-.499-.97-.156-1.4.138-.172 3.435-4.197 9.323-2.726.536.134.862.677.727 1.213-.134.535-.679.861-1.212.728-4.623-1.157-7.172 1.905-7.278 2.036-.197.243-.487.37-.778.37zM6.454 18.511c-1.096 0-2.301-.186-3.58-.671-.517-.196-.776-.773-.58-1.29.195-.517.775-.775 1.29-.58 4.219 1.604 7.439-.866 7.574-.972.434-.338 1.062-.266 1.403.166.342.432.271 1.058-.159 1.4-.129.103-2.495 1.947-5.948 1.947zm1.564-8.066c-1.829 0-4.968-.482-7.542-3.332-.37-.41-.338-1.042.072-1.412.411-.371 1.043-.337 1.412.072C4.984 9.122 8.976 8.392 9.146 8.36c.538-.105 1.066.246 1.173.787.107.54-.241 1.064-.781 1.174-.069.014-.644.124-1.52.124z"/><path fill="#31373D" d="M9.341 10.341c-.066 0-.132-.006-.199-.02-.541-.109-.89-.635-.783-1.175.034-.173.76-4.163-2.587-7.185C5.362 1.591 5.33.959 5.7.549 6.069.14 6.702.106 7.113.477c4.214 3.806 3.251 8.849 3.207 9.062-.096.475-.513.802-.979.802zm3.948 18.63c-.448 0-.856-.303-.969-.758-1.473-5.895 2.554-9.186 2.726-9.323.431-.344 1.061-.273 1.405.159.343.431.273 1.058-.156 1.402-.14.114-3.187 2.667-2.035 7.277.134.535-.192 1.078-.728 1.212-.081.021-.163.031-.243.031z"/><path fill="#31373D" d="M29.844 19.167c-2.96-2.959-6.095-3.569-8.915-2.069-.157-1.874-1.166-4.007-2.521-5.363-1.488-1.488-3.008-1.653-4.405-1.044 1.058-2.465.6-5.43-.826-6.856-1.843-1.843-4.594-.411-7.174 2.168-2.58 2.58-4.012 5.331-2.168 7.174 1.425 1.426 4.391 1.883 6.856.826-.61 1.397-.444 2.918 1.044 4.405 1.354 1.354 3.489 2.363 5.363 2.521-1.5 2.82-.891 5.954 2.069 8.915 3.75 3.749 12.204 5.527 14.204 3.527s.223-10.455-3.527-14.204z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f41d.svg b/public/emoji/1f41d.svg
index 3a7f3b5b9825ae3bda0daed5e35528daaac0ff3b..31e78828044a0d561337e83fe57711cdd049fd95 100644
--- a/public/emoji/1f41d.svg
+++ b/public/emoji/1f41d.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#292F33" d="M27.816 23.464c.299-1.148.465-2.318.465-3.464 0-4.161-2.122-6.779-5.258-8.035.417-1.008.665-2.108.665-3.2 0-1.581-.495-2.498-1.315-3.032 1.091-.482 2.517-1.5 3.027-2.011.781-.781.94-1.889.354-2.475-.586-.586-1.693-.428-2.475.354-.611.611-1.948 2.53-2.223 3.619C20.172 5.025 19.126 5 18 5c-1.125 0-2.172.025-3.055.219-.275-1.089-1.612-3.007-2.223-3.619-.781-.781-1.889-.94-2.475-.354-.585.587-.427 1.694.354 2.476.511.511 1.937 1.529 3.027 2.011-.821.533-1.316 1.451-1.316 3.032 0 1.093.248 2.192.665 3.2C9.841 13.221 7.719 15.839 7.719 20c0 1.146.167 2.317.465 3.464v.023l.006-.003c1.209 4.621 4.643 8.847 8.812 9.44L17 33c0 1.657.448 3 1 3 .553 0 1-1.343 1-3 0-.026-.002-.049-.003-.075 4.169-.593 7.604-4.819 8.813-9.44l.006.003v-.024z"/><path d="M14.624 19h6.752c-1.462-1.424-2.615-2.881-3.106-4h-.54c-.491 1.119-1.644 2.576-3.106 4zm-5.378 4c-.361.187-.715.349-1.062.488.32 1.219.799 2.407 1.401 3.512h16.83c.602-1.105 1.082-2.293 1.401-3.512-.347-.139-.701-.301-1.063-.488H9.246zm3.593 8c1.518 1.234 3.278 2 5.161 2 1.884 0 3.643-.766 5.162-2H12.839z" fill="#FFCC4D"/><path fill="#CCD6DD" d="M18 13.505c0 2.647-7.858 8.584-12 8.584s-6-2.443-6-5.09c0-2.646 1.858-4.495 6-4.495 4.143.001 12-1.644 12 1.001zm0 0c0 2.647 7.857 8.584 12 8.584s6-2.443 6-5.09c0-2.646-1.857-4.495-6-4.495s-12-1.644-12 1.001z"/><path fill="#99AAB5" d="M2 19c-.552 0-1-.447-1-1 0-.551.446-.999.998-1 .048 0 4.949-.07 13.596-3.914.505-.227 1.096.002 1.32.507.225.505-.003 1.096-.507 1.32C7.317 18.953 2.213 19 2 19zm32 0c-.213 0-5.316-.047-14.406-4.086-.505-.224-.731-.815-.508-1.32.225-.504.817-.732 1.32-.507C29.054 16.93 33.954 17 34.003 17c.551.003.997.452.996 1.003-.002.551-.448.997-.999.997z"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#31373D" d="M27.816 23.464c.299-1.148.465-2.318.465-3.464 0-4.161-2.122-6.779-5.258-8.035.417-1.008.665-2.108.665-3.2 0-1.581-.495-2.498-1.315-3.032 1.091-.482 2.517-1.5 3.027-2.011.781-.781.94-1.889.354-2.475-.586-.586-1.693-.428-2.475.354-.611.611-1.948 2.53-2.223 3.619C20.172 5.025 19.126 5 18 5c-1.125 0-2.172.025-3.055.219-.275-1.089-1.612-3.007-2.223-3.619-.781-.781-1.889-.94-2.475-.354-.585.587-.427 1.694.354 2.476.511.511 1.937 1.529 3.027 2.011-.821.533-1.316 1.451-1.316 3.032 0 1.093.248 2.192.665 3.2C9.841 13.221 7.719 15.839 7.719 20c0 1.146.167 2.317.465 3.464v.023l.006-.003c1.209 4.621 4.643 8.847 8.812 9.44L17 33c0 1.657.448 3 1 3 .553 0 1-1.343 1-3 0-.026-.002-.049-.003-.075 4.169-.593 7.604-4.819 8.813-9.44l.006.003v-.024z"/><path d="M14.624 19h6.752c-1.462-1.424-2.615-2.881-3.106-4h-.54c-.491 1.119-1.644 2.576-3.106 4zm-5.378 4c-.361.187-.715.349-1.062.488.32 1.219.799 2.407 1.401 3.512h16.83c.602-1.105 1.082-2.293 1.401-3.512-.347-.139-.701-.301-1.063-.488H9.246zm3.593 8c1.518 1.234 3.278 2 5.161 2 1.884 0 3.643-.766 5.162-2H12.839z" fill="#FFCC4D"/><path fill="#CCD6DD" d="M18 13.505c0 2.647-7.858 8.584-12 8.584s-6-2.443-6-5.09c0-2.646 1.858-4.495 6-4.495 4.143.001 12-1.644 12 1.001zm0 0c0 2.647 7.857 8.584 12 8.584s6-2.443 6-5.09c0-2.646-1.857-4.495-6-4.495s-12-1.644-12 1.001z"/><path fill="#99AAB5" d="M2 19c-.552 0-1-.447-1-1 0-.551.446-.999.998-1 .048 0 4.949-.07 13.596-3.914.505-.227 1.096.002 1.32.507.225.505-.003 1.096-.507 1.32C7.317 18.953 2.213 19 2 19zm32 0c-.213 0-5.316-.047-14.406-4.086-.505-.224-.731-.815-.508-1.32.225-.504.817-.732 1.32-.507C29.054 16.93 33.954 17 34.003 17c.551.003.997.452.996 1.003-.002.551-.448.997-.999.997z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f41e.svg b/public/emoji/1f41e.svg
index 20159b5b96b07958d4dc4cfb82de335cec70ab1e..f314ca9a208e716fd34c1fef85394e8c19d7eca5 100644
--- a/public/emoji/1f41e.svg
+++ b/public/emoji/1f41e.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path d="M35 21H1c-.552 0-1-.447-1-1s.448-1 1-1h34c.553 0 1 .447 1 1s-.447 1-1 1zm-22.177-2l-.069-.002c-.092-.007-9.214-.714-10.734-8.235-.109-.542.241-1.069.782-1.178.543-.113 1.069.241 1.178.782 1.221 6.044 8.833 6.631 8.91 6.636.551.038.967.515.93 1.066-.036.527-.476.931-.997.931zM3 31c-.142 0-.286-.03-.423-.094-.5-.234-.716-.829-.482-1.33 3.166-6.77 11.038-7.721 11.372-7.758.548-.056 1.042.334 1.103.882.062.548-.332 1.043-.88 1.106-.071.008-7.099.876-9.783 6.617-.171.364-.532.577-.907.577zm19.753-12c-.522 0-.961-.405-.996-.934-.036-.551.381-1.027.931-1.064.081-.005 8.116-.617 9.332-6.636.108-.541.633-.895 1.179-.782.541.109.892.637.782 1.178-1.521 7.525-10.769 8.21-11.162 8.235l-.066.003zm10.248 12c-.377 0-.737-.213-.907-.576-2.694-5.763-10.124-6.609-10.198-6.617-.55-.058-.948-.55-.89-1.099.058-.55.555-.952 1.099-.89.352.037 8.634.983 11.802 7.758.233.501.018 1.096-.482 1.33-.139.064-.282.094-.424.094z" fill="#292F33"/><path fill="#292F33" d="M24.989 7.766c-.069-2.626-1.277-4.216-3.095-5.04C21.961 2.5 22 2.257 22 2c0-1.105-.672-2-1.5-2S19 .895 19 2c0 .015.003.028.003.043C18.675 2.017 18.342 2 18 2s-.675.017-1.003.043c0-.015.003-.028.003-.043 0-1.105-.671-2-1.5-2S14 .895 14 2c0 .257.04.5.106.726-1.817.824-3.025 2.414-3.095 5.04C7.98 9.551 6 12.662 6 17c0 7.159 5.373 16.923 12 16.923 6.628 0 12-9.764 12-16.923 0-4.338-1.98-7.45-5.011-9.234z"/><path fill="#DD2E44" d="M16.001 34.959C9.564 34.364 4.5 28.064 4.5 20.378 4.5 12.693 9.564 9.597 16 9c.33-.03 1-.046 1 2.294v22.541c0 1.171-.669 1.156-.999 1.124zm3.998 0c6.436-.595 11.501-6.895 11.501-14.581C31.5 12.693 26.435 9.597 20 9c-.33-.03-1-.046-1 2.294v22.541c0 1.171.67 1.156.999 1.124z"/><g fill="#292F33"><circle cx="13" cy="15" r="2"/><circle cx="10" cy="22" r="3"/><circle cx="13" cy="29" r="2"/><circle cx="24.5" cy="14.5" r="2.5"/><circle cx="22.5" cy="20.5" r="1.5"/><circle cx="28" cy="23" r="2"/><circle cx="24" cy="29" r="3"/></g></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path d="M35 21H1c-.552 0-1-.447-1-1s.448-1 1-1h34c.553 0 1 .447 1 1s-.447 1-1 1zm-22.177-2l-.069-.002c-.092-.007-9.214-.714-10.734-8.235-.109-.542.241-1.069.782-1.178.543-.113 1.069.241 1.178.782 1.221 6.044 8.833 6.631 8.91 6.636.551.038.967.515.93 1.066-.036.527-.476.931-.997.931zM3 31c-.142 0-.286-.03-.423-.094-.5-.234-.716-.829-.482-1.33 3.166-6.77 11.038-7.721 11.372-7.758.548-.056 1.042.334 1.103.882.062.548-.332 1.043-.88 1.106-.071.008-7.099.876-9.783 6.617-.171.364-.532.577-.907.577zm19.753-12c-.522 0-.961-.405-.996-.934-.036-.551.381-1.027.931-1.064.081-.005 8.116-.617 9.332-6.636.108-.541.633-.895 1.179-.782.541.109.892.637.782 1.178-1.521 7.525-10.769 8.21-11.162 8.235l-.066.003zm10.248 12c-.377 0-.737-.213-.907-.576-2.694-5.763-10.124-6.609-10.198-6.617-.55-.058-.948-.55-.89-1.099.058-.55.555-.952 1.099-.89.352.037 8.634.983 11.802 7.758.233.501.018 1.096-.482 1.33-.139.064-.282.094-.424.094z" fill="#31373D"/><path fill="#31373D" d="M24.989 7.766c-.069-2.626-1.277-4.216-3.095-5.04C21.961 2.5 22 2.257 22 2c0-1.105-.672-2-1.5-2S19 .895 19 2c0 .015.003.028.003.043C18.675 2.017 18.342 2 18 2s-.675.017-1.003.043c0-.015.003-.028.003-.043 0-1.105-.671-2-1.5-2S14 .895 14 2c0 .257.04.5.106.726-1.817.824-3.025 2.414-3.095 5.04C7.98 9.551 6 12.662 6 17c0 7.159 5.373 16.923 12 16.923 6.628 0 12-9.764 12-16.923 0-4.338-1.98-7.45-5.011-9.234z"/><path fill="#DD2E44" d="M16.001 34.959C9.564 34.364 4.5 28.064 4.5 20.378 4.5 12.693 9.564 9.597 16 9c.33-.03 1-.046 1 2.294v22.541c0 1.171-.669 1.156-.999 1.124zm3.998 0c6.436-.595 11.501-6.895 11.501-14.581C31.5 12.693 26.435 9.597 20 9c-.33-.03-1-.046-1 2.294v22.541c0 1.171.67 1.156.999 1.124z"/><g fill="#31373D"><circle cx="13" cy="15" r="2"/><circle cx="10" cy="22" r="3"/><circle cx="13" cy="29" r="2"/><circle cx="24.5" cy="14.5" r="2.5"/><circle cx="22.5" cy="20.5" r="1.5"/><circle cx="28" cy="23" r="2"/><circle cx="24" cy="29" r="3"/></g></svg>
\ No newline at end of file
diff --git a/public/emoji/1f42c.svg b/public/emoji/1f42c.svg
index 35a3aea2258e2c7bc7310c20f35eb94e83c379a9..ee782f2f20e25b2fc3c65b6b820d37a91e1837d5 100644
--- a/public/emoji/1f42c.svg
+++ b/public/emoji/1f42c.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#3B88C3" d="M34.559 18c0-3.918-1.515-7.474-3.975-10.146.27-1.728 1.028-3.908 2.975-5.854.704-.704.25-2-1-2 0 0-6.061.007-9.893 3.327C21.663 3.115 20.625 3 19.559 3c-8 0-12 4-14 12-.444 1.778-.865 1.399-3 3-1.195.896-2.117 3 1 3 3 0 5 1 9 1 1.827 0 3.424-.352 4.849-.717.058 1.588.491 3.61 2.151 4.717 2.354 1.569 2.367 1.897 3 0 .814-2.443.288-3.574-1.01-5.525.71.004 1.377.146 2.01.525 2.697 1.618 2.191 4.108.685 6.374-2.904 3.396-5.938.541-8.685-.374-3-1-1 1 0 2s1.312 4 0 6 3 0 5-3l.032-.045C28.392 31.5 34.559 25.935 34.559 18z"/><circle fill="#292F33" cx="13.117" cy="14" r="2"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#4292E0" d="M30.584 7.854c.27-1.729 1.028-3.908 2.975-5.854.704-.704.25-2-1-2 0 0-6.061.007-9.893 3.327C21.663 3.115 20.625 3 19.559 3c-8 0-12 4-14 12-.444 1.778-.865 1.399-3 3-1.195.896-2.117 3 1 3 3 0 5 .954 9 1 3.629.042 9.504-3.229 11.087-1.292 2.211 2.706 1.396 5.438.597 6.666-2.904 3.396-5.939.541-8.685-.374-3-1-1 1 0 2s1.312 4 0 6 3 0 5-3c.011-.017.022-.028.032-.045C28.392 31.5 34.559 25.936 34.559 18c0-3.918-1.515-7.474-3.975-10.146z"/><circle fill="#1F2326" cx="13.117" cy="14" r="2"/><path fill="#77BCF7" d="M10.396 21.896s4-.876 7.167-2.688c4.625-2.646 7.26-2.594 8.885-.823s1.99 6.594-2.885 9.677c2.604-2.75 1.146-8.349-2.014-7.588-8.153 1.964-8.903 1.547-11.153 1.422z"/><path fill="#4292E0" d="M19.383 17.744l-2.922 1.285c-.254.064-.433.3-.412.561.122 1.504.756 3.625 2.263 4.629 2.354 1.569 2.367 1.897 3 0 .768-2.303-.182-4.462-1.333-6.24-.127-.196-.37-.293-.596-.235z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f431.svg b/public/emoji/1f431.svg
index 117343239f4f2d0cef34fc97206ae2684f569980..cc75dcc68f5a8afc9de48f7a8417ea6a796afac4 100644
--- a/public/emoji/1f431.svg
+++ b/public/emoji/1f431.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#FFCB4E" d="M33 17c1.072-6.084 1.262-15.048 0-15.864C31.738.322 22.928 3.353 21.086 7.4 20.081 7.132 18 7 18 7s-2.013.132-3.017.399C13.14 3.352 4.261.321 3 1.136 1.738 1.952 1.926 10.916 3 17c0 0-.967 1.979-.967 8.95l16-3.967 16 4C34.033 18.979 33 17 33 17z"/><path fill="#FFD882" d="M23.946 19.282c-2.085 0-4.273.477-5.913 1.281-1.639-.805-3.827-1.281-5.912-1.281-9.932 0-10.088 5.1-10.088 6.664C2.033 27.505 4 35.979 18 35.979s16.033-8.441 16.033-10c0-1.564-.156-6.697-10.087-6.697z"/><path fill="#F28F20" d="M23.406 8.054c2.17-2.383 6.681-4.172 7.607-3.945.752.182.635 6.387.031 9.938-2.562-4.251-7.638-5.993-7.638-5.993zm-10.746 0c-2.168-2.383-6.68-4.172-7.606-3.945-.754.182-.637 6.387-.031 9.938 2.563-4.251 7.637-5.993 7.637-5.993z"/><path fill="#FAAA35" d="M22.04 20c0-4.693-1.809-13-4.04-13s-4.04 8.307-4.04 13c0 4.695 1.809 2 4.04 2s4.04 2.695 4.04-2z"/><path fill="#2A2F33" d="M15.019 16.999c0 1.105-.904 2-2.019 2s-2.019-.895-2.019-2c0-1.104.904-1.998 2.019-1.998s2.019.895 2.019 1.998zm10.02.001c0 1.105-.904 2-2.02 2C21.904 19 21 18.105 21 17c0-1.104.904-1.998 2.02-1.998 1.115 0 2.019.894 2.019 1.998z"/><path fill="#F28F20" d="M23.804 28.895c-3.488.696-4.55-.785-4.784-1.229V25c0-.553-.447-1-1-1-.553 0-1 .447-1 1v2.659c-.246.452-1.338 1.931-4.823 1.236-.548-.113-1.069.243-1.177.784-.108.542.243 1.068.784 1.177.79.158 1.495.227 2.127.227 2.078 0 3.339-.741 4.081-1.473.735.733 1.986 1.473 4.058 1.473.631 0 1.337-.068 2.126-.227.541-.108.893-.635.784-1.177-.107-.541-.629-.897-1.176-.784z"/><path fill="#292F33" d="M22.02 21.592c0 1.758-3.216 3.978-4.02 3.978-.803 0-4.019-2.221-4.019-3.978C13.981 19.832 16.225 20 18 20s4.02-.168 4.02 1.592z"/><path fill="#F39120" d="M34.021 31.935c-.277 0-.553-.115-.751-.339-.03-.035-3.181-3.502-10.41-4.624-.546-.085-.92-.596-.835-1.142.085-.546.597-.915 1.142-.835.366.057.724.119 1.072.187 7.242 1.404 10.399 4.939 10.536 5.096.362.416.319 1.048-.097 1.411-.189.165-.423.246-.657.246z"/><path fill="#F39120" d="M23.014 26.983c-.406 0-.789-.25-.939-.653-.191-.519.074-1.094.592-1.285 5.477-2.023 12.161-.189 12.45-.108.532.148.843.699.695 1.23-.146.532-.697.843-1.229.697-.064-.018-6.358-1.739-11.223.058-.114.042-.231.061-.346.061zM1.988 31.935c.277 0 .553-.115.751-.339.03-.035 3.181-3.502 10.41-4.624.546-.085.92-.596.835-1.142-.085-.546-.597-.915-1.142-.835-.366.057-.724.119-1.072.187-7.242 1.404-10.399 4.939-10.536 5.096-.362.416-.319 1.048.097 1.411.19.165.424.246.657.246z"/><path fill="#F39120" d="M12.996 26.983c.406 0 .789-.25.938-.653.191-.519-.074-1.094-.592-1.285-5.477-2.023-12.161-.189-12.45-.108-.532.148-.843.699-.695 1.23.146.532.697.843 1.229.697.064-.018 6.358-1.739 11.223.058.115.042.232.061.347.061z"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#FFCC4D" d="M32.348 13.999s3.445-8.812 1.651-11.998c-.604-1.073-8 1.998-10.723 5.442 0 0-2.586-.86-5.276-.86s-5.276.86-5.276.86C10.001 3.999 2.605.928 2.001 2.001.207 5.187 3.652 13.999 3.652 13.999c-.897 1.722-1.233 4.345-1.555 7.16-.354 3.086.35 5.546.658 6.089.35.617 2.123 2.605 4.484 4.306 3.587 2.583 8.967 3.445 10.761 3.445s7.174-.861 10.761-3.445c2.361-1.701 4.134-3.689 4.484-4.306.308-.543 1.012-3.003.659-6.089-.324-2.814-.659-5.438-1.556-7.16z"/><path fill="#F18F26" d="M2.359 2.971c.2-.599 5.348 2.173 6.518 5.404 0 0-3.808 2.624-4.528 4.624 0 0-2.99-7.028-1.99-10.028z"/><path fill="#FFCC4D" d="M5.98 7.261c0-1.414 5.457 2.733 4.457 3.733s-1.255.72-2.255 1.72S5.98 8.261 5.98 7.261z"/><path fill="#F18F26" d="M33.641 2.971c-.2-.599-5.348 2.173-6.518 5.404 0 0 3.808 2.624 4.528 4.624 0 0 2.99-7.028 1.99-10.028z"/><path fill="#FFCC4D" d="M30.02 7.261c0-1.414-5.457 2.733-4.457 3.733s1.255.72 2.255 1.72 2.202-4.453 2.202-5.453z"/><path fill="#292F33" d="M14.001 20.001c0 1.105-.896 1.999-2 1.999s-2-.894-2-1.999c0-1.104.896-1.999 2-1.999s2 .896 2 1.999zm11.998 0c0 1.105-.896 1.999-2 1.999-1.105 0-2-.894-2-1.999 0-1.104.895-1.999 2-1.999s2 .896 2 1.999z"/><path fill="#FEE7B8" d="M2.201 30.458c-.148 0-.294-.065-.393-.19-.171-.217-.134-.531.083-.702.162-.127 4.02-3.12 10.648-2.605.275.021.481.261.46.536-.021.275-.257.501-.537.46-6.233-.474-9.915 2.366-9.951 2.395-.093.07-.202.106-.31.106zm8.868-4.663c-.049 0-.1-.007-.149-.022-4.79-1.497-8.737-.347-8.777-.336-.265.081-.543-.07-.623-.335-.079-.265.071-.543.335-.622.173-.052 4.286-1.247 9.362.338.264.083.411.363.328.627-.066.213-.263.35-.476.35zm22.73 4.663c.148 0 .294-.065.393-.19.171-.217.134-.531-.083-.702-.162-.127-4.02-3.12-10.648-2.605-.275.021-.481.261-.46.536.022.275.257.501.537.46 6.233-.474 9.915 2.366 9.951 2.395.093.07.202.106.31.106zm-8.868-4.663c.049 0 .1-.007.149-.022 4.79-1.497 8.737-.347 8.777-.336.265.081.543-.07.623-.335.079-.265-.071-.543-.335-.622-.173-.052-4.286-1.247-9.362.338-.264.083-.411.363-.328.627.066.213.263.35.476.35z"/><path fill="#67757F" d="M24.736 30.898c-.097-.258-.384-.392-.643-.294-.552.206-1.076.311-1.559.311-1.152 0-1.561-.306-2.033-.659-.451-.338-.956-.715-1.99-.803v-2.339c0-.276-.224-.5-.5-.5s-.5.224-.5.5v2.373c-.81.115-1.346.439-1.816.743-.568.367-1.059.685-2.083.685-.482 0-1.006-.104-1.558-.311-.258-.095-.547.035-.643.294-.097.259.035.547.293.644.664.247 1.306.373 1.907.373 1.319 0 2.014-.449 2.627-.845.524-.339.98-.631 1.848-.635.992.008 1.358.278 1.815.621.538.403 1.147.859 2.633.859.601 0 1.244-.126 1.908-.373.259-.097.391-.385.294-.644z"/><path fill="#E75A70" d="M19.4 24.807h-2.8c-.64 0-1.163.523-1.163 1.163 0 .639.523 1.163 1.163 1.163h.237v.345c0 .639.523 1.163 1.163 1.163s1.163-.523 1.163-1.163v-.345h.237c.639 0 1.163-.523 1.163-1.163s-.524-1.163-1.163-1.163z"/><path fill="#F18F26" d="M18.022 17.154c-.276 0-.5-.224-.5-.5V8.37c0-.276.224-.5.5-.5s.5.224.5.5v8.284c0 .277-.223.5-.5.5zM21 15.572c-.276 0-.5-.224-.5-.5 0-2.882 1.232-5.21 1.285-5.308.13-.244.435-.334.677-.204.243.13.334.433.204.677-.012.021-1.166 2.213-1.166 4.835 0 .276-.224.5-.5.5zm-6 0c-.276 0-.5-.224-.5-.5 0-2.623-1.155-4.814-1.167-4.835-.13-.244-.038-.546.205-.677.242-.131.545-.039.676.204.053.098 1.285 2.426 1.285 5.308.001.276-.223.5-.499.5z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f433.svg b/public/emoji/1f433.svg
index c3c6668b075fb7c413f0afdf4266889acc1b19cb..f00ea1033e029164dfde9333e90e2f7595958b12 100644
--- a/public/emoji/1f433.svg
+++ b/public/emoji/1f433.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#744EAA" d="M32 12c2.122-2.122 5 14.312-3 21-2.757 2.305-6 2.969-8 2.969-2.371 0-10.029.031-13 .031-7.18 0-8-4.925-8-11s.82-11 8-11c6 0 10 2 13 3.996 4.977 3.312 5.992 3.861 8 2.004 3.213-2.97 1-6 3-8z"/><path fill="#AA8DD8" d="M34.003 23c-.465 3.727-2.041 7.523-5.003 10-2.757 2.305-6 2.969-8 2.969-2.371 0-10.029.031-13 .031-4.035 0-6.062-1.555-7.062-3.996C.157 30.102 4 33 15 33c14 0 17-5 19.003-10z"/><path fill="#744EAA" d="M32 14c4.123 0 4-5 4-7s-2 1-5 2-7-2-6 0 3 5 7 5z"/><path fill="#55ACEE" d="M10 7c0 2.209-.896 6-2 6S6 9.209 6 7s.896-2 2-2 2-.209 2 2z"/><path fill="#55ACEE" d="M8 5c0-3-6-2-6 0s3 1 4 3 2-3 2-3zm0 0c0-3 6-2 6 0s-3 1-4 3-2-3-2-3z"/><circle fill="#292F33" cx="6.5" cy="25.5" r="1.5"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#3B88C3" d="M32 12c2.122-2.122 5 14.312-3 21-2.757 2.305-6 2.969-8 2.969-2.371 0-10.029.031-13 .031-7.18 0-8-4.925-8-11s.82-11 8-11c6 0 10 2 13 3.996 4.977 3.312 5.992 3.861 8 2.004 3.213-2.97 1-6 3-8z"/><path fill="#55ACEE" d="M34.003 23c-.465 3.727-2.041 7.523-5.003 10-2.757 2.305-6 2.969-8 2.969-2.371 0-10.029.031-13 .031-4.035 0-6.062-1.555-7.062-3.996C.157 30.102 4 33 15 33c14 0 17-5 19.003-10z"/><path fill="#3B88C3" d="M32 14c4.123 0 4-5 4-7s-2 1-5 2-7-2-6 0 3 5 7 5z"/><path fill="#55ACEE" d="M10 7c0 2.209-.896 6-2 6S6 9.209 6 7s.896-2 2-2 2-.209 2 2z"/><path fill="#55ACEE" d="M8 5c0-3-6-2-6 0s3 1 4 3 2-3 2-3zm0 0c0-3 6-2 6 0s-3 1-4 3-2-3-2-3z"/><circle fill="#292F33" cx="6.5" cy="25.5" r="1.5"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f436.svg b/public/emoji/1f436.svg
index 05edf0229feddff9b2d8e73ecb67cbb34a640f99..8b2e685804d9599cd9eb855d54806a37ea6226bd 100644
--- a/public/emoji/1f436.svg
+++ b/public/emoji/1f436.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#DD2E44" d="M15 30v3s0 3 3 3 3-3 3-3v-3h-6z"/><path fill="#272B2B" d="M14 2c.041-3-14-2-14 8 0 4 0 14 3 14C7 24 13.945 6 14 2zm8 0c-.041-3 14-2 14 8 0 4 0 14-3 14-4 0-10.945-18-11-22z"/><path fill="#CCD6DD" d="M31 22c0 7-4 7-4 7H9s-4 0-4-7C5 22 6 0 18 0s13 22 13 22z"/><path fill="#8899A6" d="M23 22.025V22H13v.025c-2.803.253-5 2.606-5 5.475 0 3.037 2.462 5.5 5.5 5.5 1.862 0 3.505-.928 4.5-2.344.995 1.416 2.638 2.344 4.5 2.344 3.038 0 5.5-2.463 5.5-5.5 0-2.868-2.196-5.222-5-5.475z"/><path fill="#272B2B" d="M11 16s0-2 2-2 2 2 2 2v2s0 2-2 2-2-2-2-2v-2zm10 0s0-2 2-2 2 2 2 2v2s0 2-2 2-2-2-2-2v-2zm-6 8c-1 1 2 4 3 4s4-3 3-4-5-1-6 0z"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#DD2E44" d="M15 27v6s0 3 3 3 3-3 3-3v-6h-6z"/><path fill="#BE1931" d="M15 33l.001.037c1.041-.035 2.016-.274 2.632-1.286.171-.281.563-.281.735 0 .616 1.011 1.591 1.251 2.632 1.286V27h-6v6z"/><path fill="#D99E82" d="M31.954 21.619c0 6.276-5 6.276-5 6.276h-18s-5 0-5-6.276c0-6.724 5-18.619 14-18.619s14 12.895 14 18.619z"/><path fill="#F4C7B5" d="M18 20c-7 0-10 3.527-10 6.395 0 3.037 2.462 5.5 5.5 5.5 1.605 0 3.042-.664 4.049-2.767.185-.386.716-.386.901 0 1.007 2.103 2.445 2.767 4.049 2.767 3.038 0 5.5-2.463 5.5-5.5C28 23.527 25 20 18 20z"/><path fill="#292F33" d="M15 22.895c-1 1 2 4 3 4s4-3 3-4-5-1-6 0zM13 19c-1.1 0-2-.9-2-2v-2c0-1.1.9-2 2-2s2 .9 2 2v2c0 1.1-.9 2-2 2zm10 0c-1.1 0-2-.9-2-2v-2c0-1.1.9-2 2-2s2 .9 2 2v2c0 1.1-.9 2-2 2z"/><path fill="#662113" d="M15 3.608C13.941 2.199 11.681.881 2.828 4.2-1.316 5.754.708 17.804 3.935 18.585c1.106 0 4.426 0 4.426-8.852 0-.22-.002-.423-.005-.625C10.35 6.298 12.5 4.857 15 3.608zm18.172.592C24.319.881 22.059 2.199 21 3.608c2.5 1.25 4.65 2.691 6.644 5.501-.003.201-.005.404-.005.625 0 8.852 3.319 8.852 4.426 8.852 3.227-.782 5.251-12.832 1.107-14.386z"/><circle fill="#D99E82" cx="23.5" cy="25.5" r=".5"/><circle fill="#D99E82" cx="11.5" cy="25.5" r=".5"/><circle fill="#D99E82" cx="25.5" cy="27.5" r=".5"/><circle fill="#D99E82" cx="10.5" cy="27.5" r=".5"/><circle fill="#D99E82" cx="23" cy="28" r="1"/><circle fill="#D99E82" cx="13" cy="28" r="1"/><path fill="#380F09" d="M9.883 7.232c-.259-.673-.634-1.397-1.176-1.939-.391-.391-1.023-.391-1.414 0s-.391 1.023 0 1.414c.57.57 1.066 1.934 1.068 2.346.145-.404.839-1.15 1.522-1.821zm16.217 0c.259-.672.634-1.397 1.176-1.939.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414c-.57.57-1.066 1.934-1.068 2.346-.145-.404-.839-1.15-1.522-1.821z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f43a.svg b/public/emoji/1f43a.svg
index 55b43c70c46c2c2ae2c573c7c4131c390d3693d2..af402057ef4110cdb0b921f72e3273a32b461bb1 100644
--- a/public/emoji/1f43a.svg
+++ b/public/emoji/1f43a.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#CCD6DD" d="M6 23l-5-3 2 6-1 2 6 5 7 2 3-11zm24 0l5-3-2 6 1 2-6 5-7 2-3-11z"/><path fill="#66757F" d="M11 7c0 3.866-3.032 7-6.771 7S3.101 0 3.101 0 11 3.134 11 7z"/><circle fill="#66757F" cx="18" cy="30" r="6"/><circle fill="#DD2E44" cx="18" cy="30" r="4"/><path fill="#66757F" d="M31.771 14C28.031 14 25 10.866 25 7s7.899-7 7.899-7 2.611 14-1.128 14z"/><path fill="#E6AAAA" d="M9 8c0 2.209-1.791 4-4 4s0-8 0-8 4 1.791 4 4zm22 4c-2.209 0-4-1.791-4-4s4-4 4-4 2.209 8 0 8z"/><path fill="#66757F" d="M34 22c0 7-6.923 7-6.923 7H8.923S2 29 2 22C2 22 3.231 3 18 3c14.77 0 16 19 16 19z"/><path fill="#272B2B" d="M11 17s0-2 2-2 2 2 2 2v2s0 2-2 2-2-2-2-2v-2zm10 0s0-2 2-2 2 2 2 2v2s0 2-2 2-2-2-2-2v-2z"/><path fill="#CCD6DD" d="M32.715 24.162L33.944 21l-2.629 2.666c-.388-.1-.822-.19-1.315-.27V19l-2.519 4.121c-1.1-.076-2.35-.121-3.803-.121-3.482 0-1.003 4.451-5.762 4.949-4.759-.498-2.28-4.949-5.762-4.949-1.38 0-2.582.04-3.644.108L6 19v4.366c-.509.077-.947.169-1.349.267L2.056 21l1.203 3.093c-1.689.778-1.503 1.864-.427 2.907 5.999 5.818 9 6 9.322 6 2.46 0 4.602-.998 5.762-2.48 1.159 1.482 3.303 2.48 5.762 2.48.322 0 3.323-.182 9.322-6 1.044-1.013 1.247-2.065-.285-2.838z"/><path fill="#272B2B" d="M15 25c-1 1 0 4 3 4s4-3 3-4-5-1-6 0z"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#66757F" d="M14.858 9.497c.475 2.326-.182 4.236-2.921 4.638-2.741.403-6.7 3.898-8.848-1.798C1.844 9.038 1.092 2.234 2.628 2.009c1.537-.226 11.756 5.162 12.23 7.488z"/><path fill="#CCD6DD" d="M12.784 9.851c.865 1.392-2.205 3.833-3.844 4.568-1.639.736-2.915-.66-4.173-4.1-.55-1.503-1.234-5.532-.634-5.802.599-.268 7.785 3.942 8.651 5.334z"/><path fill="#66757F" d="M21.372 9.497c-.458 2.326.176 4.236 2.818 4.638 2.644.403 6.464 3.898 8.536-1.798 1.201-3.3 1.927-10.103.445-10.329-1.483-.225-11.342 5.163-11.799 7.489z"/><path fill="#CCD6DD" d="M23.373 9.851c-.835 1.392 2.127 3.833 3.708 4.568 1.581.736 2.812-.66 4.026-4.1.531-1.503 1.19-5.532.611-5.802-.577-.268-7.509 3.942-8.345 5.334z"/><path fill="#66757F" d="M32.347 26.912c0-.454-.188-1.091-.407-1.687.585.028 1.519.191 2.77.817-.008-.536-.118-.984-.273-1.393.041.02.075.034.116.055-1.104-3.31-3.309-5.517-3.309-5.517h2.206c-2.331-4.663-4.965-8.015-8.075-9.559-1.39-.873-3.688-1.338-7.373-1.339h-.003c-3.696 0-5.996.468-7.385 1.346-3.104 1.547-5.734 4.896-8.061 9.552H4.76s-2.207 2.206-3.311 5.517l.084-.039c-.201.392-.307.847-.282 1.377 1.263-.632 2.217-.792 2.813-.818-.189.513-.343 1.044-.386 1.475-.123.371-.191.812-.135 1.343 3.207-1.458 4.707-1.25 6.457-.375C11.213 31.29 14.206 34 18.001 34c3.793 0 6.746-2.794 7.958-6.416 1.458-1.25 3.708-.875 6.416.416.066-.413.036-.773-.036-1.093l.008.005z"/><path fill="#CCD6DD" d="M34.553 24.704c-.437-1.313-3.665-3.101-6.973-4.513.26-.664.42-1.401.42-2.191 0-2.761-1.791-5-4-5s-4 2.239-4 5c0 3 4 10-2.001 11.118-5.125-.955-2.954-6.201-2.212-9.58.072-.276.125-.559.158-.853.034-.245.055-.476.055-.685 0-2.761-1.791-5-4-5s-4 2.239-4 5c0 .79.16 1.527.421 2.191-3.308 1.412-6.535 3.2-6.973 4.513C3.655 23.6 4.759 23.6 4.759 23.6s-1.104 2.208-1.104 3.312c2.67-1.78 5.339-2.122 7.429-.452C12.297 30.083 14 33 18.001 30.124c3.999 2.876 5.7-.04 6.912-3.662 2.092-1.673 4.763-1.33 7.434.45 0-1.104-1.103-3.312-1.103-3.312s1.103.001 3.309 1.104z"/><path fill="#292F33" d="M11 17s0-1.5 1.5-1.5S14 17 14 17v1.5s0 1.5-1.5 1.5-1.5-1.5-1.5-1.5V17zm11 0s0-1.5 1.5-1.5S25 17 25 17v1.5s0 1.5-1.5 1.5-1.5-1.5-1.5-1.5V17zm-7.061 9.156c-1.021.208 2.041 3.968 3.062 3.968 1.02 0 4.082-3.76 3.062-3.968s-5.103-.208-6.124 0z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f441-200d-1f5e8.svg b/public/emoji/1f441-200d-1f5e8.svg
index 02790ef94dc7a00da03b792331b20bf66f9d38f3..ebe9061daff4705592486af776ce49f9f0ac3d82 100644
--- a/public/emoji/1f441-200d-1f5e8.svg
+++ b/public/emoji/1f441-200d-1f5e8.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#292F33" d="M32.769 33.359c-2.739-3.286-3.903-6.569-4.397-8.746-.064-.283-.249-.524-.506-.661s-.56-.154-.83-.05l-7.112 2.749c-.303.117-.53.374-.609.688-.079.315-.019.665.211.896C25.492 34.216 31.945 35 32 35c.354 0 .688-.188.867-.503.208-.362.169-.816-.098-1.138z"/><ellipse fill="#292F33" cx="18" cy="16" rx="18" ry="14"/><circle fill="#292F33" cx="18" cy="16" r="5"/><path fill="#FFF" d="M18 7c-4.963 0-9 4.037-9 9s4.037 9 9 9 9-4.037 9-9-4.037-9-9-9zm0 14c-2.761 0-5-2.239-5-5s2.239-5 5-5 5 2.239 5 5-2.239 5-5 5z"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#31373D" d="M32.769 33.359c-2.739-3.286-3.903-6.569-4.397-8.746-.064-.283-.249-.524-.506-.661s-.56-.154-.83-.05l-7.112 2.749c-.303.117-.53.374-.609.688-.079.315-.019.665.211.896C25.492 34.216 31.945 35 32 35c.354 0 .688-.188.867-.503.208-.362.169-.816-.098-1.138z"/><ellipse fill="#31373D" cx="18" cy="16" rx="18" ry="14"/><circle fill="#31373D" cx="18" cy="16" r="5"/><path fill="#FFF" d="M18 7c-4.963 0-9 4.037-9 9s4.037 9 9 9 9-4.037 9-9-4.037-9-9-9zm0 14c-2.761 0-5-2.239-5-5s2.239-5 5-5 5 2.239 5 5-2.239 5-5 5z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f44b-1f3fb.svg b/public/emoji/1f44b-1f3fb.svg
index 8578b7f79d719765df14d283a55eaad68d360048..de8871dc21ed00790c68fcb03ecaa912b7595923 100644
--- a/public/emoji/1f44b-1f3fb.svg
+++ b/public/emoji/1f44b-1f3fb.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#E0AA94" d="M4.861 9.147c.94-.657 2.357-.531 3.201.166l-.968-1.407c-.779-1.111-.5-2.313.612-3.093 1.112-.777 2.646-.509 3.426.605L19.961 18l.07-.031-8.062-11.844c-.786-1.122-.639-2.544.483-3.331 1.122-.784 2.67-.513 3.456.611l10.42 14.72c.787 1.123.401 2.661-.721 3.447-.191.134-.397.226-.607.299V31H15v-3.113c-.146-.129-.967-.763-1.083-.929L4.25 12.625c-.793-1.129-.519-2.686.611-3.478z"/><path fill="#F7DECE" d="M2.695 17.336s-1.132-1.65.519-2.781c1.649-1.131 2.78.518 2.78.518l5.251 7.658c.181-.302.379-.6.6-.894L4.557 11.21s-1.131-1.649.519-2.78c1.649-1.131 2.78.518 2.78.518l6.855 9.997c.255-.208.516-.417.785-.622L7.549 6.732s-1.131-1.649.519-2.78c1.649-1.131 2.78.518 2.78.518l7.947 11.589c.292-.179.581-.334.871-.498L12.238 4.729s-1.131-1.649.518-2.78c1.649-1.131 2.78.518 2.78.518l7.854 11.454.629.917.565.825c-4.948 3.394-5.419 9.779-2.592 13.902.565.825 1.39.26 1.39.26-3.393-4.949-2.357-10.51 2.592-13.903L24.515 8.62s-.545-1.924 1.378-2.47c1.924-.545 2.47 1.379 2.47 1.379l1.685 5.004c.668 1.984 1.379 3.961 2.32 5.831 2.657 5.28 1.07 11.842-3.94 15.279-5.465 3.747-12.936 2.354-16.684-3.11-.198-.29-.364-.573-.522-.855l-.044.03-8.483-12.372z"/><g fill="#5DADEC"><path d="M12 32.042C8 32.042 3.958 28 3.958 24c0-.553-.405-1-.958-1s-1.042.447-1.042 1C1.958 30 6 34.042 12 34.042c.553 0 1-.489 1-1.042s-.447-.958-1-.958z"/><path d="M7 34c-3 0-5-2-5-5 0-.553-.447-1-1-1s-1 .447-1 1c0 4 3 7 7 7 .553 0 1-.447 1-1s-.447-1-1-1zM24 2c-.552 0-1 .448-1 1s.448 1 1 1c4 0 8 3.589 8 8 0 .552.448 1 1 1s1-.448 1-1c0-5.514-4-10-10-10z"/><path d="M29 .042c-.552 0-1 .406-1 .958s.448 1.042 1 1.042c3 0 4.958 2.225 4.958 4.958 0 .552.489 1 1.042 1s.958-.448.958-1C35.958 3.163 33 .042 29 .042z"/></g></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#E0AA94" d="M4.861 9.147c.94-.657 2.357-.531 3.201.166l-.968-1.407c-.779-1.111-.5-2.313.612-3.093 1.112-.777 4.263 1.312 4.263 1.312-.786-1.122-.639-2.544.483-3.331 1.122-.784 2.67-.513 3.456.611l10.42 14.72L25 31l-11.083-4.042L4.25 12.625c-.793-1.129-.519-2.686.611-3.478z"/><path fill="#F7DECE" d="M2.695 17.336s-1.132-1.65.519-2.781c1.649-1.131 2.78.518 2.78.518l5.251 7.658c.181-.302.379-.6.6-.894L4.557 11.21s-1.131-1.649.519-2.78c1.649-1.131 2.78.518 2.78.518l6.855 9.997c.255-.208.516-.417.785-.622L7.549 6.732s-1.131-1.649.519-2.78c1.649-1.131 2.78.518 2.78.518l7.947 11.589c.292-.179.581-.334.871-.498L12.238 4.729s-1.131-1.649.518-2.78c1.649-1.131 2.78.518 2.78.518l7.854 11.454 1.194 1.742c-4.948 3.394-5.419 9.779-2.592 13.902.565.825 1.39.26 1.39.26-3.393-4.949-2.357-10.51 2.592-13.903L24.515 8.62s-.545-1.924 1.378-2.47c1.924-.545 2.47 1.379 2.47 1.379l1.685 5.004c.668 1.984 1.379 3.961 2.32 5.831 2.657 5.28 1.07 11.842-3.94 15.279-5.465 3.747-12.936 2.354-16.684-3.11L2.695 17.336z"/><g fill="#5DADEC"><path d="M12 32.042C8 32.042 3.958 28 3.958 24c0-.553-.405-1-.958-1s-1.042.447-1.042 1C1.958 30 6 34.042 12 34.042c.553 0 1-.489 1-1.042s-.447-.958-1-.958z"/><path d="M7 34c-3 0-5-2-5-5 0-.553-.447-1-1-1s-1 .447-1 1c0 4 3 7 7 7 .553 0 1-.447 1-1s-.447-1-1-1zM24 2c-.552 0-1 .448-1 1s.448 1 1 1c4 0 8 3.589 8 8 0 .552.448 1 1 1s1-.448 1-1c0-5.514-4-10-10-10z"/><path d="M29 .042c-.552 0-1 .406-1 .958s.448 1.042 1 1.042c3 0 4.958 2.225 4.958 4.958 0 .552.489 1 1.042 1s.958-.448.958-1C35.958 3.163 33 .042 29 .042z"/></g></svg>
\ No newline at end of file
diff --git a/public/emoji/1f44b-1f3fc.svg b/public/emoji/1f44b-1f3fc.svg
index 16d7bf50444d0018ca199f4b7047761257dd0601..beec31c99d6d445d6b8391dfaa440bffb675be83 100644
--- a/public/emoji/1f44b-1f3fc.svg
+++ b/public/emoji/1f44b-1f3fc.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#D2A077" d="M4.861 9.147c.94-.657 2.357-.531 3.201.166l-.968-1.407c-.779-1.111-.5-2.313.612-3.093 1.112-.777 2.646-.509 3.426.605L19.961 18l.07-.031-8.062-11.844c-.786-1.122-.639-2.544.483-3.331 1.122-.784 2.67-.513 3.456.611l10.42 14.72c.787 1.123.401 2.661-.721 3.447-.191.134-.397.226-.607.299V31H15v-3.113c-.146-.129-.967-.763-1.083-.929L4.25 12.625c-.793-1.129-.519-2.686.611-3.478z"/><path fill="#F3D2A2" d="M2.695 17.336s-1.132-1.65.519-2.781c1.649-1.131 2.78.518 2.78.518l5.251 7.658c.181-.302.379-.6.6-.894L4.557 11.21s-1.131-1.649.519-2.78c1.649-1.131 2.78.518 2.78.518l6.855 9.997c.255-.208.516-.417.785-.622L7.549 6.732s-1.131-1.649.519-2.78c1.649-1.131 2.78.518 2.78.518l7.947 11.589c.292-.179.581-.334.871-.498L12.238 4.729s-1.131-1.649.518-2.78c1.649-1.131 2.78.518 2.78.518l7.854 11.454.629.917.565.825c-4.948 3.394-5.419 9.779-2.592 13.902.565.825 1.39.26 1.39.26-3.393-4.949-2.357-10.51 2.592-13.903L24.515 8.62s-.545-1.924 1.378-2.47c1.924-.545 2.47 1.379 2.47 1.379l1.685 5.004c.668 1.984 1.379 3.961 2.32 5.831 2.657 5.28 1.07 11.842-3.94 15.279-5.465 3.747-12.936 2.354-16.684-3.11-.198-.29-.364-.573-.522-.855l-.044.03-8.483-12.372z"/><g fill="#5DADEC"><path d="M12 32.042C8 32.042 3.958 28 3.958 24c0-.553-.405-1-.958-1s-1.042.447-1.042 1C1.958 30 6 34.042 12 34.042c.553 0 1-.489 1-1.042s-.447-.958-1-.958z"/><path d="M7 34c-3 0-5-2-5-5 0-.553-.447-1-1-1s-1 .447-1 1c0 4 3 7 7 7 .553 0 1-.447 1-1s-.447-1-1-1zM24 2c-.552 0-1 .448-1 1s.448 1 1 1c4 0 8 3.589 8 8 0 .552.448 1 1 1s1-.448 1-1c0-5.514-4-10-10-10z"/><path d="M29 .042c-.552 0-1 .406-1 .958s.448 1.042 1 1.042c3 0 4.958 2.225 4.958 4.958 0 .552.489 1 1.042 1s.958-.448.958-1C35.958 3.163 33 .042 29 .042z"/></g></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#D2A077" d="M4.861 9.147c.94-.657 2.357-.531 3.201.166l-.968-1.407c-.779-1.111-.5-2.313.612-3.093 1.112-.777 4.263 1.312 4.263 1.312-.786-1.122-.639-2.544.483-3.331 1.122-.784 2.67-.513 3.456.611l10.42 14.72L25 31l-11.083-4.042L4.25 12.625c-.793-1.129-.519-2.686.611-3.478z"/><path fill="#F3D2A2" d="M2.695 17.336s-1.132-1.65.519-2.781c1.649-1.131 2.78.518 2.78.518l5.251 7.658c.181-.302.379-.6.6-.894L4.557 11.21s-1.131-1.649.519-2.78c1.649-1.131 2.78.518 2.78.518l6.855 9.997c.255-.208.516-.417.785-.622L7.549 6.732s-1.131-1.649.519-2.78c1.649-1.131 2.78.518 2.78.518l7.947 11.589c.292-.179.581-.334.871-.498L12.238 4.729s-1.131-1.649.518-2.78c1.649-1.131 2.78.518 2.78.518l7.854 11.454 1.194 1.742c-4.948 3.394-5.419 9.779-2.592 13.902.565.825 1.39.26 1.39.26-3.393-4.949-2.357-10.51 2.592-13.903L24.515 8.62s-.545-1.924 1.378-2.47c1.924-.545 2.47 1.379 2.47 1.379l1.685 5.004c.668 1.984 1.379 3.961 2.32 5.831 2.657 5.28 1.07 11.842-3.94 15.279-5.465 3.747-12.936 2.354-16.684-3.11L2.695 17.336z"/><g fill="#5DADEC"><path d="M12 32.042C8 32.042 3.958 28 3.958 24c0-.553-.405-1-.958-1s-1.042.447-1.042 1C1.958 30 6 34.042 12 34.042c.553 0 1-.489 1-1.042s-.447-.958-1-.958z"/><path d="M7 34c-3 0-5-2-5-5 0-.553-.447-1-1-1s-1 .447-1 1c0 4 3 7 7 7 .553 0 1-.447 1-1s-.447-1-1-1zM24 2c-.552 0-1 .448-1 1s.448 1 1 1c4 0 8 3.589 8 8 0 .552.448 1 1 1s1-.448 1-1c0-5.514-4-10-10-10z"/><path d="M29 .042c-.552 0-1 .406-1 .958s.448 1.042 1 1.042c3 0 4.958 2.225 4.958 4.958 0 .552.489 1 1.042 1s.958-.448.958-1C35.958 3.163 33 .042 29 .042z"/></g></svg>
\ No newline at end of file
diff --git a/public/emoji/1f44b-1f3fd.svg b/public/emoji/1f44b-1f3fd.svg
index 1e02521147686d7e9c664e1bb140041060638770..975f489fdbf064eedc746fe18e75a997f32516a1 100644
--- a/public/emoji/1f44b-1f3fd.svg
+++ b/public/emoji/1f44b-1f3fd.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#B78B60" d="M4.861 9.147c.94-.657 2.357-.531 3.201.166l-.968-1.407c-.779-1.111-.5-2.313.612-3.093 1.112-.777 2.646-.509 3.426.605L19.961 18l.07-.031-8.062-11.844c-.786-1.122-.639-2.544.483-3.331 1.122-.784 2.67-.513 3.456.611l10.42 14.72c.787 1.123.401 2.661-.721 3.447-.191.134-.397.226-.607.299V31H15v-3.113c-.146-.129-.967-.763-1.083-.929L4.25 12.625c-.793-1.129-.519-2.686.611-3.478z"/><path fill="#D5AB88" d="M2.695 17.336s-1.132-1.65.519-2.781c1.649-1.131 2.78.518 2.78.518l5.251 7.658c.181-.302.379-.6.6-.894L4.557 11.21s-1.131-1.649.519-2.78c1.649-1.131 2.78.518 2.78.518l6.855 9.997c.255-.208.516-.417.785-.622L7.549 6.732s-1.131-1.649.519-2.78c1.649-1.131 2.78.518 2.78.518l7.947 11.589c.292-.179.581-.334.871-.498L12.238 4.729s-1.131-1.649.518-2.78c1.649-1.131 2.78.518 2.78.518l7.854 11.454.629.917.565.825c-4.948 3.394-5.419 9.779-2.592 13.902.565.825 1.39.26 1.39.26-3.393-4.949-2.357-10.51 2.592-13.903L24.515 8.62s-.545-1.924 1.378-2.47c1.924-.545 2.47 1.379 2.47 1.379l1.685 5.004c.668 1.984 1.379 3.961 2.32 5.831 2.657 5.28 1.07 11.842-3.94 15.279-5.465 3.747-12.936 2.354-16.684-3.11-.198-.29-.364-.573-.522-.855l-.044.03-8.483-12.372z"/><g fill="#5DADEC"><path d="M12 32.042C8 32.042 3.958 28 3.958 24c0-.553-.405-1-.958-1s-1.042.447-1.042 1C1.958 30 6 34.042 12 34.042c.553 0 1-.489 1-1.042s-.447-.958-1-.958z"/><path d="M7 34c-3 0-5-2-5-5 0-.553-.447-1-1-1s-1 .447-1 1c0 4 3 7 7 7 .553 0 1-.447 1-1s-.447-1-1-1zM24 2c-.552 0-1 .448-1 1s.448 1 1 1c4 0 8 3.589 8 8 0 .552.448 1 1 1s1-.448 1-1c0-5.514-4-10-10-10z"/><path d="M29 .042c-.552 0-1 .406-1 .958s.448 1.042 1 1.042c3 0 4.958 2.225 4.958 4.958 0 .552.489 1 1.042 1s.958-.448.958-1C35.958 3.163 33 .042 29 .042z"/></g></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#B78B60" d="M4.861 9.147c.94-.657 2.357-.531 3.201.166l-.968-1.407c-.779-1.111-.5-2.313.612-3.093 1.112-.777 4.263 1.312 4.263 1.312-.786-1.122-.639-2.544.483-3.331 1.122-.784 2.67-.513 3.456.611l10.42 14.72L25 31l-11.083-4.042L4.25 12.625c-.793-1.129-.519-2.686.611-3.478z"/><path fill="#D4AB88" d="M2.695 17.336s-1.132-1.65.519-2.781c1.649-1.131 2.78.518 2.78.518l5.251 7.658c.181-.302.379-.6.6-.894L4.557 11.21s-1.131-1.649.519-2.78c1.649-1.131 2.78.518 2.78.518l6.855 9.997c.255-.208.516-.417.785-.622L7.549 6.732s-1.131-1.649.519-2.78c1.649-1.131 2.78.518 2.78.518l7.947 11.589c.292-.179.581-.334.871-.498L12.238 4.729s-1.131-1.649.518-2.78c1.649-1.131 2.78.518 2.78.518l7.854 11.454 1.194 1.742c-4.948 3.394-5.419 9.779-2.592 13.902.565.825 1.39.26 1.39.26-3.393-4.949-2.357-10.51 2.592-13.903L24.515 8.62s-.545-1.924 1.378-2.47c1.924-.545 2.47 1.379 2.47 1.379l1.685 5.004c.668 1.984 1.379 3.961 2.32 5.831 2.657 5.28 1.07 11.842-3.94 15.279-5.465 3.747-12.936 2.354-16.684-3.11L2.695 17.336z"/><g fill="#5DADEC"><path d="M12 32.042C8 32.042 3.958 28 3.958 24c0-.553-.405-1-.958-1s-1.042.447-1.042 1C1.958 30 6 34.042 12 34.042c.553 0 1-.489 1-1.042s-.447-.958-1-.958z"/><path d="M7 34c-3 0-5-2-5-5 0-.553-.447-1-1-1s-1 .447-1 1c0 4 3 7 7 7 .553 0 1-.447 1-1s-.447-1-1-1zM24 2c-.552 0-1 .448-1 1s.448 1 1 1c4 0 8 3.589 8 8 0 .552.448 1 1 1s1-.448 1-1c0-5.514-4-10-10-10z"/><path d="M29 .042c-.552 0-1 .406-1 .958s.448 1.042 1 1.042c3 0 4.958 2.225 4.958 4.958 0 .552.489 1 1.042 1s.958-.448.958-1C35.958 3.163 33 .042 29 .042z"/></g></svg>
\ No newline at end of file
diff --git a/public/emoji/1f44b-1f3fe.svg b/public/emoji/1f44b-1f3fe.svg
index 1e4f886a7d97994a8b8c067d062f0cb742610672..13c59cf1b9407bc5b2bdecd7042e7e14910236e7 100644
--- a/public/emoji/1f44b-1f3fe.svg
+++ b/public/emoji/1f44b-1f3fe.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#90603E" d="M4.861 9.147c.94-.657 2.357-.531 3.201.166l-.968-1.407c-.779-1.111-.5-2.313.612-3.093 1.112-.777 2.646-.509 3.426.605L19.961 18l.07-.031-8.062-11.844c-.786-1.122-.639-2.544.483-3.331 1.122-.784 2.67-.513 3.456.611l10.42 14.72c.787 1.123.401 2.661-.721 3.447-.191.134-.397.226-.607.299V31H15v-3.113c-.146-.129-.967-.763-1.083-.929L4.25 12.625c-.793-1.129-.519-2.686.611-3.478z"/><path fill="#AF7E57" d="M2.695 17.336s-1.132-1.65.519-2.781c1.649-1.131 2.78.518 2.78.518l5.251 7.658c.181-.302.379-.6.6-.894L4.557 11.21s-1.131-1.649.519-2.78c1.649-1.131 2.78.518 2.78.518l6.855 9.997c.255-.208.516-.417.785-.622L7.549 6.732s-1.131-1.649.519-2.78c1.649-1.131 2.78.518 2.78.518l7.947 11.589c.292-.179.581-.334.871-.498L12.238 4.729s-1.131-1.649.518-2.78c1.649-1.131 2.78.518 2.78.518l7.854 11.454.629.917.565.825c-4.948 3.394-5.419 9.779-2.592 13.902.565.825 1.39.26 1.39.26-3.393-4.949-2.357-10.51 2.592-13.903L24.515 8.62s-.545-1.924 1.378-2.47c1.924-.545 2.47 1.379 2.47 1.379l1.685 5.004c.668 1.984 1.379 3.961 2.32 5.831 2.657 5.28 1.07 11.842-3.94 15.279-5.465 3.747-12.936 2.354-16.684-3.11-.198-.29-.364-.573-.522-.855l-.044.03-8.483-12.372z"/><g fill="#5DADEC"><path d="M12 32.042C8 32.042 3.958 28 3.958 24c0-.553-.405-1-.958-1s-1.042.447-1.042 1C1.958 30 6 34.042 12 34.042c.553 0 1-.489 1-1.042s-.447-.958-1-.958z"/><path d="M7 34c-3 0-5-2-5-5 0-.553-.447-1-1-1s-1 .447-1 1c0 4 3 7 7 7 .553 0 1-.447 1-1s-.447-1-1-1zM24 2c-.552 0-1 .448-1 1s.448 1 1 1c4 0 8 3.589 8 8 0 .552.448 1 1 1s1-.448 1-1c0-5.514-4-10-10-10z"/><path d="M29 .042c-.552 0-1 .406-1 .958s.448 1.042 1 1.042c3 0 4.958 2.225 4.958 4.958 0 .552.489 1 1.042 1s.958-.448.958-1C35.958 3.163 33 .042 29 .042z"/></g></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#90603E" d="M4.861 9.147c.94-.657 2.357-.531 3.201.166l-.968-1.407c-.779-1.111-.5-2.313.612-3.093 1.112-.777 4.263 1.312 4.263 1.312-.786-1.122-.639-2.544.483-3.331 1.122-.784 2.67-.513 3.456.611l10.42 14.72L25 31l-11.083-4.042L4.25 12.625c-.793-1.129-.519-2.686.611-3.478z"/><path fill="#AF7E57" d="M2.695 17.336s-1.132-1.65.519-2.781c1.649-1.131 2.78.518 2.78.518l5.251 7.658c.181-.302.379-.6.6-.894L4.557 11.21s-1.131-1.649.519-2.78c1.649-1.131 2.78.518 2.78.518l6.855 9.997c.255-.208.516-.417.785-.622L7.549 6.732s-1.131-1.649.519-2.78c1.649-1.131 2.78.518 2.78.518l7.947 11.589c.292-.179.581-.334.871-.498L12.238 4.729s-1.131-1.649.518-2.78c1.649-1.131 2.78.518 2.78.518l7.854 11.454 1.194 1.742c-4.948 3.394-5.419 9.779-2.592 13.902.565.825 1.39.26 1.39.26-3.393-4.949-2.357-10.51 2.592-13.903L24.515 8.62s-.545-1.924 1.378-2.47c1.924-.545 2.47 1.379 2.47 1.379l1.685 5.004c.668 1.984 1.379 3.961 2.32 5.831 2.657 5.28 1.07 11.842-3.94 15.279-5.465 3.747-12.936 2.354-16.684-3.11L2.695 17.336z"/><g fill="#5DADEC"><path d="M12 32.042C8 32.042 3.958 28 3.958 24c0-.553-.405-1-.958-1s-1.042.447-1.042 1C1.958 30 6 34.042 12 34.042c.553 0 1-.489 1-1.042s-.447-.958-1-.958z"/><path d="M7 34c-3 0-5-2-5-5 0-.553-.447-1-1-1s-1 .447-1 1c0 4 3 7 7 7 .553 0 1-.447 1-1s-.447-1-1-1zM24 2c-.552 0-1 .448-1 1s.448 1 1 1c4 0 8 3.589 8 8 0 .552.448 1 1 1s1-.448 1-1c0-5.514-4-10-10-10z"/><path d="M29 .042c-.552 0-1 .406-1 .958s.448 1.042 1 1.042c3 0 4.958 2.225 4.958 4.958 0 .552.489 1 1.042 1s.958-.448.958-1C35.958 3.163 33 .042 29 .042z"/></g></svg>
\ No newline at end of file
diff --git a/public/emoji/1f44b-1f3ff.svg b/public/emoji/1f44b-1f3ff.svg
index 407acda598f9ac818b003da90469f130d8ba8e3a..1ce9ef377248874dbfaed378bb8b22035cab4cda 100644
--- a/public/emoji/1f44b-1f3ff.svg
+++ b/public/emoji/1f44b-1f3ff.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#583529" d="M4.861 9.147c.94-.657 2.357-.531 3.201.166l-.968-1.407c-.779-1.111-.5-2.313.612-3.093 1.112-.777 2.646-.509 3.426.605L19.961 18l.07-.031-8.062-11.844c-.786-1.122-.639-2.544.483-3.331 1.122-.784 2.67-.513 3.456.611l10.42 14.72c.787 1.123.401 2.661-.721 3.447-.191.134-.397.226-.607.299V31H15v-3.113c-.146-.129-.967-.763-1.083-.929L4.25 12.625c-.793-1.129-.519-2.686.611-3.478z"/><path fill="#7C533E" d="M2.695 17.336s-1.132-1.65.519-2.781c1.649-1.131 2.78.518 2.78.518l5.251 7.658c.181-.302.379-.6.6-.894L4.557 11.21s-1.131-1.649.519-2.78c1.649-1.131 2.78.518 2.78.518l6.855 9.997c.255-.208.516-.417.785-.622L7.549 6.732s-1.131-1.649.519-2.78c1.649-1.131 2.78.518 2.78.518l7.947 11.589c.292-.179.581-.334.871-.498L12.238 4.729s-1.131-1.649.518-2.78c1.649-1.131 2.78.518 2.78.518l7.854 11.454.629.917.565.825c-4.948 3.394-5.419 9.779-2.592 13.902.565.825 1.39.26 1.39.26-3.393-4.949-2.357-10.51 2.592-13.903L24.515 8.62s-.545-1.924 1.378-2.47c1.924-.545 2.47 1.379 2.47 1.379l1.685 5.004c.668 1.984 1.379 3.961 2.32 5.831 2.657 5.28 1.07 11.842-3.94 15.279-5.465 3.747-12.936 2.354-16.684-3.11-.198-.29-.364-.573-.522-.855l-.044.03-8.483-12.372z"/><g fill="#5DADEC"><path d="M12 32.042C8 32.042 3.958 28 3.958 24c0-.553-.405-1-.958-1s-1.042.447-1.042 1C1.958 30 6 34.042 12 34.042c.553 0 1-.489 1-1.042s-.447-.958-1-.958z"/><path d="M7 34c-3 0-5-2-5-5 0-.553-.447-1-1-1s-1 .447-1 1c0 4 3 7 7 7 .553 0 1-.447 1-1s-.447-1-1-1zM24 2c-.552 0-1 .448-1 1s.448 1 1 1c4 0 8 3.589 8 8 0 .552.448 1 1 1s1-.448 1-1c0-5.514-4-10-10-10z"/><path d="M29 .042c-.552 0-1 .406-1 .958s.448 1.042 1 1.042c3 0 4.958 2.225 4.958 4.958 0 .552.489 1 1.042 1s.958-.448.958-1C35.958 3.163 33 .042 29 .042z"/></g></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#583529" d="M4.861 9.147c.94-.657 2.357-.531 3.201.166l-.968-1.407c-.779-1.111-.5-2.313.612-3.093 1.112-.777 4.263 1.312 4.263 1.312-.786-1.122-.639-2.544.483-3.331 1.122-.784 2.67-.513 3.456.611l10.42 14.72L25 31l-11.083-4.042L4.25 12.625c-.793-1.129-.519-2.686.611-3.478z"/><path fill="#7C533E" d="M2.695 17.336s-1.132-1.65.519-2.781c1.649-1.131 2.78.518 2.78.518l5.251 7.658c.181-.302.379-.6.6-.894L4.557 11.21s-1.131-1.649.519-2.78c1.649-1.131 2.78.518 2.78.518l6.855 9.997c.255-.208.516-.417.785-.622L7.549 6.732s-1.131-1.649.519-2.78c1.649-1.131 2.78.518 2.78.518l7.947 11.589c.292-.179.581-.334.871-.498L12.238 4.729s-1.131-1.649.518-2.78c1.649-1.131 2.78.518 2.78.518l7.854 11.454 1.194 1.742c-4.948 3.394-5.419 9.779-2.592 13.902.565.825 1.39.26 1.39.26-3.393-4.949-2.357-10.51 2.592-13.903L24.515 8.62s-.545-1.924 1.378-2.47c1.924-.545 2.47 1.379 2.47 1.379l1.685 5.004c.668 1.984 1.379 3.961 2.32 5.831 2.657 5.28 1.07 11.842-3.94 15.279-5.465 3.747-12.936 2.354-16.684-3.11L2.695 17.336z"/><g fill="#5DADEC"><path d="M12 32.042C8 32.042 3.958 28 3.958 24c0-.553-.405-1-.958-1s-1.042.447-1.042 1C1.958 30 6 34.042 12 34.042c.553 0 1-.489 1-1.042s-.447-.958-1-.958z"/><path d="M7 34c-3 0-5-2-5-5 0-.553-.447-1-1-1s-1 .447-1 1c0 4 3 7 7 7 .553 0 1-.447 1-1s-.447-1-1-1zM24 2c-.552 0-1 .448-1 1s.448 1 1 1c4 0 8 3.589 8 8 0 .552.448 1 1 1s1-.448 1-1c0-5.514-4-10-10-10z"/><path d="M29 .042c-.552 0-1 .406-1 .958s.448 1.042 1 1.042c3 0 4.958 2.225 4.958 4.958 0 .552.489 1 1.042 1s.958-.448.958-1C35.958 3.163 33 .042 29 .042z"/></g></svg>
\ No newline at end of file
diff --git a/public/emoji/1f44b.svg b/public/emoji/1f44b.svg
index 0d9ade5f8d00111eff08be7adf6358445819895f..8942c68b03b5b8a2c0b7d0035b35f5b3ac545eb3 100644
--- a/public/emoji/1f44b.svg
+++ b/public/emoji/1f44b.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#EF9645" d="M4.861 9.147c.94-.657 2.357-.531 3.201.166l-.968-1.407c-.779-1.111-.5-2.313.612-3.093 1.112-.777 2.646-.509 3.426.605L19.961 18l.07-.031-8.062-11.844c-.786-1.122-.639-2.544.483-3.331 1.122-.784 2.67-.513 3.456.611l10.42 14.72c.787 1.123.401 2.661-.721 3.447-.191.134-.397.226-.607.299V31H15v-3.113c-.146-.129-.967-.763-1.083-.929L4.25 12.625c-.793-1.129-.519-2.686.611-3.478z"/><path fill="#FFDC5D" d="M2.695 17.336s-1.132-1.65.519-2.781c1.649-1.131 2.78.518 2.78.518l5.251 7.658c.181-.302.379-.6.6-.894L4.557 11.21s-1.131-1.649.519-2.78c1.649-1.131 2.78.518 2.78.518l6.855 9.997c.255-.208.516-.417.785-.622L7.549 6.732s-1.131-1.649.519-2.78c1.649-1.131 2.78.518 2.78.518l7.947 11.589c.292-.179.581-.334.871-.498L12.238 4.729s-1.131-1.649.518-2.78c1.649-1.131 2.78.518 2.78.518l7.854 11.454.629.917.565.825c-4.948 3.394-5.419 9.779-2.592 13.902.565.825 1.39.26 1.39.26-3.393-4.949-2.357-10.51 2.592-13.903L24.515 8.62s-.545-1.924 1.378-2.47c1.924-.545 2.47 1.379 2.47 1.379l1.685 5.004c.668 1.984 1.379 3.961 2.32 5.831 2.657 5.28 1.07 11.842-3.94 15.279-5.465 3.747-12.936 2.354-16.684-3.11-.198-.29-.364-.573-.522-.855l-.044.03-8.483-12.372z"/><g fill="#5DADEC"><path d="M12 32.042C8 32.042 3.958 28 3.958 24c0-.553-.405-1-.958-1s-1.042.447-1.042 1C1.958 30 6 34.042 12 34.042c.553 0 1-.489 1-1.042s-.447-.958-1-.958z"/><path d="M7 34c-3 0-5-2-5-5 0-.553-.447-1-1-1s-1 .447-1 1c0 4 3 7 7 7 .553 0 1-.447 1-1s-.447-1-1-1zM24 2c-.552 0-1 .448-1 1s.448 1 1 1c4 0 8 3.589 8 8 0 .552.448 1 1 1s1-.448 1-1c0-5.514-4-10-10-10z"/><path d="M29 .042c-.552 0-1 .406-1 .958s.448 1.042 1 1.042c3 0 4.958 2.225 4.958 4.958 0 .552.489 1 1.042 1s.958-.448.958-1C35.958 3.163 33 .042 29 .042z"/></g></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#EF9645" d="M4.861 9.147c.94-.657 2.357-.531 3.201.166l-.968-1.407c-.779-1.111-.5-2.313.612-3.093 1.112-.777 4.263 1.312 4.263 1.312-.786-1.122-.639-2.544.483-3.331 1.122-.784 2.67-.513 3.456.611l10.42 14.72L25 31l-11.083-4.042L4.25 12.625c-.793-1.129-.519-2.686.611-3.478z"/><path fill="#FFDC5D" d="M2.695 17.336s-1.132-1.65.519-2.781c1.649-1.131 2.78.518 2.78.518l5.251 7.658c.181-.302.379-.6.6-.894L4.557 11.21s-1.131-1.649.519-2.78c1.649-1.131 2.78.518 2.78.518l6.855 9.997c.255-.208.516-.417.785-.622L7.549 6.732s-1.131-1.649.519-2.78c1.649-1.131 2.78.518 2.78.518l7.947 11.589c.292-.179.581-.334.871-.498L12.238 4.729s-1.131-1.649.518-2.78c1.649-1.131 2.78.518 2.78.518l7.854 11.454 1.194 1.742c-4.948 3.394-5.419 9.779-2.592 13.902.565.825 1.39.26 1.39.26-3.393-4.949-2.357-10.51 2.592-13.903L24.515 8.62s-.545-1.924 1.378-2.47c1.924-.545 2.47 1.379 2.47 1.379l1.685 5.004c.668 1.984 1.379 3.961 2.32 5.831 2.657 5.28 1.07 11.842-3.94 15.279-5.465 3.747-12.936 2.354-16.684-3.11L2.695 17.336z"/><g fill="#5DADEC"><path d="M12 32.042C8 32.042 3.958 28 3.958 24c0-.553-.405-1-.958-1s-1.042.447-1.042 1C1.958 30 6 34.042 12 34.042c.553 0 1-.489 1-1.042s-.447-.958-1-.958z"/><path d="M7 34c-3 0-5-2-5-5 0-.553-.447-1-1-1s-1 .447-1 1c0 4 3 7 7 7 .553 0 1-.447 1-1s-.447-1-1-1zM24 2c-.552 0-1 .448-1 1s.448 1 1 1c4 0 8 3.589 8 8 0 .552.448 1 1 1s1-.448 1-1c0-5.514-4-10-10-10z"/><path d="M29 .042c-.552 0-1 .406-1 .958s.448 1.042 1 1.042c3 0 4.958 2.225 4.958 4.958 0 .552.489 1 1.042 1s.958-.448.958-1C35.958 3.163 33 .042 29 .042z"/></g></svg>
\ No newline at end of file
diff --git a/public/emoji/1f44c-1f3fb.svg b/public/emoji/1f44c-1f3fb.svg
index e9e71aea80b15d5baafae5c96061c3aba2ac710d..e54788da94dd5eb9f10955522627dd2bb1b3aee2 100644
--- a/public/emoji/1f44c-1f3fb.svg
+++ b/public/emoji/1f44c-1f3fb.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#E0AA94" d="M24.997 28.5c-1.185 0-2.237-.846-2.457-2.053l-4-22c-.247-1.358.654-2.66 2.012-2.907 1.358-.251 2.66.654 2.907 2.012l4 22c.247 1.358-.654 2.66-2.013 2.907-.15.028-.3.041-.449.041z"/><path fill="#F7DECE" d="M28.375 24.765c.239-.745.13-1.591-.375-2.265-.059-.078-.44-.585-1.017-1.34.005-.052.017-.112.017-.16 0-.458-1.913-2.623-3.74-4.586-1.587-1.965-3.261-3.951-4.492-5.182l-1.274-1.274-1.612.806c-5.718 2.859-8.647 3.855-8.672 3.864-1.31.437-2.018 1.852-1.581 3.162.437 1.31 1.852 2.015 3.162 1.582.117-.039 2.666-.899 7.65-3.311 1.094 1.23 2.378 2.795 3.574 4.296l.704 1.174c.169.282.146.639-.061.896l-3.513 4.392c-.095.119-.222.207-.365.255l-2.531.844c-.161.054-.336.054-.497 0l-4.73-1.576c-.676-2.082-.533-4.102-.531-4.124.12-1.376-.899-2.588-2.274-2.707-1.372-.128-2.587.897-2.707 2.273-.022.261-.51 6.424 3.313 10.594 2.208 2.408 5.296 3.63 9.178 3.63.66 0 1.283.009 1.871.018.529.008 1.042.016 1.537.016 2.764 0 5.004-.231 6.738-1.941 1.649-1.626 2.354-4.195 2.354-8.592-.001-.263-.052-.508-.126-.744z"/><path fill="#E0AA94" d="M27.001 21c-.384 0-.749-.221-.915-.594l-4-9c-.224-.505.003-1.096.508-1.32.506-.226 1.096.003 1.32.507l4 9c.224.505-.003 1.096-.508 1.32-.132.06-.269.087-.405.087z"/><path fill="#F7DECE" d="M24.766 34.38l-1.531-4.76s-.066.011-.175.066c.017-.009 1.821-.995 2.461-6.003.775-6.075-.774-9.6-.79-9.634l-.093-.231-3.5-10.104c-.452-1.305.239-2.729 1.544-3.181 1.303-.451 2.729.24 3.181 1.544l3.469 10.013c.377.887 2.035 5.285 1.148 12.226-1.042 8.163-4.943 9.816-5.714 10.064z"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#E0AA94" d="M23.216 20.937l-1.721-6.86-3.947-8.816c-.502-1.297.143-2.756 1.44-3.257 1.296-.506 2.756.143 3.258 1.44l6.203 15.769-5.233 1.724z"/><path fill="#F7DECE" d="M31.565 18.449c-.488-2.581-1.988-6.523-1.988-6.523L23.79 1.437C23.164.195 21.648-.303 20.407.322c-1.242.626-1.742 2.141-1.115 3.383l5.33 9.547c.013.022 1.413 5.491 1.413 5.491-1.078-.995-2.607-2.359-4.015-3.618-3.098-2.772-4.936-3.811-4.936-3.811-.71-.443-1.179-.506-2.132-.059L9.08 13.823c-.157.078-.29.188-.395.329l-2.313 3.086c-.893 1.067-.752 2.655.315 3.547 1.066.893 2.653.75 3.548-.314.048-.058 1.78-2.56 1.936-2.64 1.037-.533 2.965-1.447 3.808-1.42.897.029 6.281 5.957 6.281 5.957.206.259.23.618.06.902l-2.915 5.228c-.079.131-.193.236-.33.303l-2.674 1.5c-.154.075-.328.099-.496.067l-5.27-2.272c-.262-.113-.48-.32-.592-.583-.787-1.85-.898-3.619-.899-3.639-.065-1.39-1.244-2.463-2.634-2.398-1.387.056-2.463 1.243-2.398 2.633.013.263.351 5.64 4.727 9.292 2.528 2.108 5.654 2.924 9.649 2.387 4.612-.619 7.469-1.233 11.506-9.558 1.117-2.305 1.903-6.024 1.571-7.781z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f44c-1f3fc.svg b/public/emoji/1f44c-1f3fc.svg
index dddad58090a7666f6de6185880f6b84205d1df4c..e96a258021ec25387c25ed52fa3bc448e9cbcd90 100644
--- a/public/emoji/1f44c-1f3fc.svg
+++ b/public/emoji/1f44c-1f3fc.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#D2A077" d="M24.997 28.5c-1.185 0-2.237-.846-2.457-2.053l-4-22c-.247-1.358.654-2.66 2.012-2.907 1.358-.251 2.66.654 2.907 2.012l4 22c.247 1.358-.654 2.66-2.013 2.907-.15.028-.3.041-.449.041z"/><path fill="#F3D2A2" d="M28.375 24.765c.239-.745.13-1.591-.375-2.265-.059-.078-.44-.585-1.017-1.34.005-.052.017-.112.017-.16 0-.458-1.913-2.623-3.74-4.586-1.587-1.965-3.261-3.951-4.492-5.182l-1.274-1.274-1.612.806c-5.718 2.859-8.647 3.855-8.672 3.864-1.31.437-2.018 1.852-1.581 3.162.437 1.31 1.852 2.015 3.162 1.582.117-.039 2.666-.899 7.65-3.311 1.094 1.23 2.378 2.795 3.574 4.296l.704 1.174c.169.282.146.639-.061.896l-3.513 4.392c-.095.119-.222.207-.365.255l-2.531.844c-.161.054-.336.054-.497 0l-4.73-1.576c-.676-2.082-.533-4.102-.531-4.124.12-1.376-.899-2.588-2.274-2.707-1.372-.128-2.587.897-2.707 2.273-.022.261-.51 6.424 3.313 10.594 2.208 2.408 5.296 3.63 9.178 3.63.66 0 1.283.009 1.871.018.529.008 1.042.016 1.537.016 2.764 0 5.004-.231 6.738-1.941 1.649-1.626 2.354-4.195 2.354-8.592-.001-.263-.052-.508-.126-.744z"/><path fill="#D2A077" d="M27.001 21c-.384 0-.749-.221-.915-.594l-4-9c-.224-.505.003-1.096.508-1.32.506-.226 1.096.003 1.32.507l4 9c.224.505-.003 1.096-.508 1.32-.132.06-.269.087-.405.087z"/><path fill="#F3D2A2" d="M24.766 34.38l-1.531-4.76s-.066.011-.175.066c.017-.009 1.821-.995 2.461-6.003.775-6.075-.774-9.6-.79-9.634l-.093-.231-3.5-10.104c-.452-1.305.239-2.729 1.544-3.181 1.303-.451 2.729.24 3.181 1.544l3.469 10.013c.377.887 2.035 5.285 1.148 12.226-1.042 8.163-4.943 9.816-5.714 10.064z"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#D2A077" d="M23.216 20.937l-1.721-6.86-3.947-8.816c-.502-1.297.143-2.756 1.44-3.257 1.296-.506 2.756.143 3.258 1.44l6.203 15.769-5.233 1.724z"/><path fill="#F3D2A2" d="M31.565 18.449c-.488-2.581-1.988-6.523-1.988-6.523L23.79 1.437C23.164.195 21.648-.303 20.407.322c-1.242.626-1.742 2.141-1.115 3.383l5.33 9.547c.013.022 1.413 5.491 1.413 5.491-1.078-.995-2.607-2.359-4.015-3.618-3.098-2.772-4.936-3.811-4.936-3.811-.71-.443-1.179-.506-2.132-.059L9.08 13.823c-.157.078-.29.188-.395.329l-2.313 3.086c-.893 1.067-.752 2.655.315 3.547 1.066.893 2.653.75 3.548-.314.048-.058 1.78-2.56 1.936-2.64 1.037-.533 2.965-1.447 3.808-1.42.897.029 6.281 5.957 6.281 5.957.206.259.23.618.06.902l-2.915 5.228c-.079.131-.193.236-.33.303l-2.674 1.5c-.154.075-.328.099-.496.067l-5.27-2.272c-.262-.113-.48-.32-.592-.583-.787-1.85-.898-3.619-.899-3.639-.065-1.39-1.244-2.463-2.634-2.398-1.387.056-2.463 1.243-2.398 2.633.013.263.351 5.64 4.727 9.292 2.528 2.108 5.654 2.924 9.649 2.387 4.612-.619 7.469-1.233 11.506-9.558 1.117-2.305 1.903-6.024 1.571-7.781z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f44c-1f3fd.svg b/public/emoji/1f44c-1f3fd.svg
index c80dbb3bcff4da254502bddd45fd2c60623be4e8..6e52b17f54ba55d44ac6fbaacb27805d3b6067f7 100644
--- a/public/emoji/1f44c-1f3fd.svg
+++ b/public/emoji/1f44c-1f3fd.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#B78B60" d="M24.997 28.5c-1.185 0-2.237-.846-2.457-2.053l-4-22c-.247-1.358.654-2.66 2.012-2.907 1.358-.251 2.66.654 2.907 2.012l4 22c.247 1.358-.654 2.66-2.013 2.907-.15.028-.3.041-.449.041z"/><path fill="#D5AB88" d="M28.375 24.765c.239-.745.13-1.591-.375-2.265-.059-.078-.44-.585-1.017-1.34.005-.052.017-.112.017-.16 0-.458-1.913-2.623-3.74-4.586-1.587-1.965-3.261-3.951-4.492-5.182l-1.274-1.274-1.612.806c-5.718 2.859-8.647 3.855-8.672 3.864-1.31.437-2.018 1.852-1.581 3.162.437 1.31 1.852 2.015 3.162 1.582.117-.039 2.666-.899 7.65-3.311 1.094 1.23 2.378 2.795 3.574 4.296l.704 1.174c.169.282.146.639-.061.896l-3.513 4.392c-.095.119-.222.207-.365.255l-2.531.844c-.161.054-.336.054-.497 0l-4.73-1.576c-.676-2.082-.533-4.102-.531-4.124.12-1.376-.899-2.588-2.274-2.707-1.372-.128-2.587.897-2.707 2.273-.022.261-.51 6.424 3.313 10.594 2.208 2.408 5.296 3.63 9.178 3.63.66 0 1.283.009 1.871.018.529.008 1.042.016 1.537.016 2.764 0 5.004-.231 6.738-1.941 1.649-1.626 2.354-4.195 2.354-8.592-.001-.263-.052-.508-.126-.744z"/><path fill="#B78B60" d="M27.001 21c-.384 0-.749-.221-.915-.594l-4-9c-.224-.505.003-1.096.508-1.32.506-.226 1.096.003 1.32.507l4 9c.224.505-.003 1.096-.508 1.32-.132.06-.269.087-.405.087z"/><path fill="#D5AB88" d="M24.766 34.38l-1.531-4.76s-.066.011-.175.066c.017-.009 1.821-.995 2.461-6.003.775-6.075-.774-9.6-.79-9.634l-.093-.231-3.5-10.104c-.452-1.305.239-2.729 1.544-3.181 1.303-.451 2.729.24 3.181 1.544l3.469 10.013c.377.887 2.035 5.285 1.148 12.226-1.042 8.163-4.943 9.816-5.714 10.064z"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#B78B60" d="M23.216 20.937l-1.721-6.86-3.947-8.816c-.502-1.297.143-2.756 1.44-3.257 1.296-.506 2.756.143 3.258 1.44l6.203 15.769-5.233 1.724z"/><path fill="#D4AB88" d="M31.565 18.449c-.488-2.581-1.988-6.523-1.988-6.523L23.79 1.437C23.164.195 21.648-.303 20.407.322c-1.242.626-1.742 2.141-1.115 3.383l5.33 9.547c.013.022 1.413 5.491 1.413 5.491-1.078-.995-2.607-2.359-4.015-3.618-3.098-2.772-4.936-3.811-4.936-3.811-.71-.443-1.179-.506-2.132-.059L9.08 13.823c-.157.078-.29.188-.395.329l-2.313 3.086c-.893 1.067-.752 2.655.315 3.547 1.066.893 2.653.75 3.548-.314.048-.058 1.78-2.56 1.936-2.64 1.037-.533 2.965-1.447 3.808-1.42.897.029 6.281 5.957 6.281 5.957.206.259.23.618.06.902l-2.915 5.228c-.079.131-.193.236-.33.303l-2.674 1.5c-.154.075-.328.099-.496.067l-5.27-2.272c-.262-.113-.48-.32-.592-.583-.787-1.85-.898-3.619-.899-3.639-.065-1.39-1.244-2.463-2.634-2.398-1.387.056-2.463 1.243-2.398 2.633.013.263.351 5.64 4.727 9.292 2.528 2.108 5.654 2.924 9.649 2.387 4.612-.619 7.469-1.233 11.506-9.558 1.117-2.305 1.903-6.024 1.571-7.781z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f44c-1f3fe.svg b/public/emoji/1f44c-1f3fe.svg
index b3baf8e7b1a2ebaa11c04463a840bd16315eb3f2..91cb40e4ad0eb678bc27adff36540bf69bae6578 100644
--- a/public/emoji/1f44c-1f3fe.svg
+++ b/public/emoji/1f44c-1f3fe.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#90603E" d="M24.997 28.5c-1.185 0-2.237-.846-2.457-2.053l-4-22c-.247-1.358.654-2.66 2.012-2.907 1.358-.251 2.66.654 2.907 2.012l4 22c.247 1.358-.654 2.66-2.013 2.907-.15.028-.3.041-.449.041z"/><path fill="#AF7E57" d="M28.375 24.765c.239-.745.13-1.591-.375-2.265-.059-.078-.44-.585-1.017-1.34.005-.052.017-.112.017-.16 0-.458-1.913-2.623-3.74-4.586-1.587-1.965-3.261-3.951-4.492-5.182l-1.274-1.274-1.612.806c-5.718 2.859-8.647 3.855-8.672 3.864-1.31.437-2.018 1.852-1.581 3.162.437 1.31 1.852 2.015 3.162 1.582.117-.039 2.666-.899 7.65-3.311 1.094 1.23 2.378 2.795 3.574 4.296l.704 1.174c.169.282.146.639-.061.896l-3.513 4.392c-.095.119-.222.207-.365.255l-2.531.844c-.161.054-.336.054-.497 0l-4.73-1.576c-.676-2.082-.533-4.102-.531-4.124.12-1.376-.899-2.588-2.274-2.707-1.372-.128-2.587.897-2.707 2.273-.022.261-.51 6.424 3.313 10.594 2.208 2.408 5.296 3.63 9.178 3.63.66 0 1.283.009 1.871.018.529.008 1.042.016 1.537.016 2.764 0 5.004-.231 6.738-1.941 1.649-1.626 2.354-4.195 2.354-8.592-.001-.263-.052-.508-.126-.744z"/><path fill="#90603E" d="M27.001 21c-.384 0-.749-.221-.915-.594l-4-9c-.224-.505.003-1.096.508-1.32.506-.226 1.096.003 1.32.507l4 9c.224.505-.003 1.096-.508 1.32-.132.06-.269.087-.405.087z"/><path fill="#AF7E57" d="M24.766 34.38l-1.531-4.76s-.066.011-.175.066c.017-.009 1.821-.995 2.461-6.003.775-6.075-.774-9.6-.79-9.634l-.093-.231-3.5-10.104c-.452-1.305.239-2.729 1.544-3.181 1.303-.451 2.729.24 3.181 1.544l3.469 10.013c.377.887 2.035 5.285 1.148 12.226-1.042 8.163-4.943 9.816-5.714 10.064z"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#90603E" d="M23.216 20.937l-1.721-6.86-3.947-8.816c-.502-1.297.143-2.756 1.44-3.257 1.296-.506 2.756.143 3.258 1.44l6.203 15.769-5.233 1.724z"/><path fill="#AF7E57" d="M31.565 18.449c-.488-2.581-1.988-6.523-1.988-6.523L23.79 1.437C23.164.195 21.648-.303 20.407.322c-1.242.626-1.742 2.141-1.115 3.383l5.33 9.547c.013.022 1.413 5.491 1.413 5.491-1.078-.995-2.607-2.359-4.015-3.618-3.098-2.772-4.936-3.811-4.936-3.811-.71-.443-1.179-.506-2.132-.059L9.08 13.823c-.157.078-.29.188-.395.329l-2.313 3.086c-.893 1.067-.752 2.655.315 3.547 1.066.893 2.653.75 3.548-.314.048-.058 1.78-2.56 1.936-2.64 1.037-.533 2.965-1.447 3.808-1.42.897.029 6.281 5.957 6.281 5.957.206.259.23.618.06.902l-2.915 5.228c-.079.131-.193.236-.33.303l-2.674 1.5c-.154.075-.328.099-.496.067l-5.27-2.272c-.262-.113-.48-.32-.592-.583-.787-1.85-.898-3.619-.899-3.639-.065-1.39-1.244-2.463-2.634-2.398-1.387.056-2.463 1.243-2.398 2.633.013.263.351 5.64 4.727 9.292 2.528 2.108 5.654 2.924 9.649 2.387 4.612-.619 7.469-1.233 11.506-9.558 1.117-2.305 1.903-6.024 1.571-7.781z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f44c-1f3ff.svg b/public/emoji/1f44c-1f3ff.svg
index 95b011c6914bbaca89519e9bb8b8c43aab28b8d7..ffa03f7a0edae805d1d4a7e17553af1ead8ad978 100644
--- a/public/emoji/1f44c-1f3ff.svg
+++ b/public/emoji/1f44c-1f3ff.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#583529" d="M24.997 28.5c-1.185 0-2.237-.846-2.457-2.053l-4-22c-.247-1.358.654-2.66 2.012-2.907 1.358-.251 2.66.654 2.907 2.012l4 22c.247 1.358-.654 2.66-2.013 2.907-.15.028-.3.041-.449.041z"/><path fill="#7C533E" d="M28.375 24.765c.239-.745.13-1.591-.375-2.265-.059-.078-.44-.585-1.017-1.34.005-.052.017-.112.017-.16 0-.458-1.913-2.623-3.74-4.586-1.587-1.965-3.261-3.951-4.492-5.182l-1.274-1.274-1.612.806c-5.718 2.859-8.647 3.855-8.672 3.864-1.31.437-2.018 1.852-1.581 3.162.437 1.31 1.852 2.015 3.162 1.582.117-.039 2.666-.899 7.65-3.311 1.094 1.23 2.378 2.795 3.574 4.296l.704 1.174c.169.282.146.639-.061.896l-3.513 4.392c-.095.119-.222.207-.365.255l-2.531.844c-.161.054-.336.054-.497 0l-4.73-1.576c-.676-2.082-.533-4.102-.531-4.124.12-1.376-.899-2.588-2.274-2.707-1.372-.128-2.587.897-2.707 2.273-.022.261-.51 6.424 3.313 10.594 2.208 2.408 5.296 3.63 9.178 3.63.66 0 1.283.009 1.871.018.529.008 1.042.016 1.537.016 2.764 0 5.004-.231 6.738-1.941 1.649-1.626 2.354-4.195 2.354-8.592-.001-.263-.052-.508-.126-.744z"/><path fill="#583529" d="M27.001 21c-.384 0-.749-.221-.915-.594l-4-9c-.224-.505.003-1.096.508-1.32.506-.226 1.096.003 1.32.507l4 9c.224.505-.003 1.096-.508 1.32-.132.06-.269.087-.405.087z"/><path fill="#7C533E" d="M24.766 34.38l-1.531-4.76s-.066.011-.175.066c.017-.009 1.821-.995 2.461-6.003.775-6.075-.774-9.6-.79-9.634l-.093-.231-3.5-10.104c-.452-1.305.239-2.729 1.544-3.181 1.303-.451 2.729.24 3.181 1.544l3.469 10.013c.377.887 2.035 5.285 1.148 12.226-1.042 8.163-4.943 9.816-5.714 10.064z"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#583529" d="M23.216 20.937l-1.721-6.86-3.947-8.816c-.502-1.297.143-2.756 1.44-3.257 1.296-.506 2.756.143 3.258 1.44l6.203 15.769-5.233 1.724z"/><path fill="#7C533E" d="M31.565 18.449c-.488-2.581-1.988-6.523-1.988-6.523L23.79 1.437C23.164.195 21.648-.303 20.407.322c-1.242.626-1.742 2.141-1.115 3.383l5.33 9.547c.013.022 1.413 5.491 1.413 5.491-1.078-.995-2.607-2.359-4.015-3.618-3.098-2.772-4.936-3.811-4.936-3.811-.71-.443-1.179-.506-2.132-.059L9.08 13.823c-.157.078-.29.188-.395.329l-2.313 3.086c-.893 1.067-.752 2.655.315 3.547 1.066.893 2.653.75 3.548-.314.048-.058 1.78-2.56 1.936-2.64 1.037-.533 2.965-1.447 3.808-1.42.897.029 6.281 5.957 6.281 5.957.206.259.23.618.06.902l-2.915 5.228c-.079.131-.193.236-.33.303l-2.674 1.5c-.154.075-.328.099-.496.067l-5.27-2.272c-.262-.113-.48-.32-.592-.583-.787-1.85-.898-3.619-.899-3.639-.065-1.39-1.244-2.463-2.634-2.398-1.387.056-2.463 1.243-2.398 2.633.013.263.351 5.64 4.727 9.292 2.528 2.108 5.654 2.924 9.649 2.387 4.612-.619 7.469-1.233 11.506-9.558 1.117-2.305 1.903-6.024 1.571-7.781z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f44c.svg b/public/emoji/1f44c.svg
index bf82d1aaf03c24a42e2fa34b02d68972b4550b31..c36d7748525703500721bab7071dc39dad0e8ed6 100644
--- a/public/emoji/1f44c.svg
+++ b/public/emoji/1f44c.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#EF9645" d="M24.997 28.5c-1.185 0-2.237-.846-2.457-2.053l-4-22c-.247-1.358.654-2.66 2.012-2.907 1.358-.251 2.66.654 2.907 2.012l4 22c.247 1.358-.654 2.66-2.013 2.907-.15.028-.3.041-.449.041z"/><path fill="#FFDC5D" d="M28.375 24.765c.239-.745.13-1.591-.375-2.265-.059-.078-.44-.585-1.017-1.34.005-.052.017-.112.017-.16 0-.458-1.913-2.623-3.74-4.586-1.587-1.965-3.261-3.951-4.492-5.182l-1.274-1.274-1.612.806c-5.718 2.859-8.647 3.855-8.672 3.864-1.31.437-2.018 1.852-1.581 3.162.437 1.31 1.852 2.015 3.162 1.582.117-.039 2.666-.899 7.65-3.311 1.094 1.23 2.378 2.795 3.574 4.296l.704 1.174c.169.282.146.639-.061.896l-3.513 4.392c-.095.119-.222.207-.365.255l-2.531.844c-.161.054-.336.054-.497 0l-4.73-1.576c-.676-2.082-.533-4.102-.531-4.124.12-1.376-.899-2.588-2.274-2.707-1.372-.128-2.587.897-2.707 2.273-.022.261-.51 6.424 3.313 10.594 2.208 2.408 5.296 3.63 9.178 3.63.66 0 1.283.009 1.871.018.529.008 1.042.016 1.537.016 2.764 0 5.004-.231 6.738-1.941 1.649-1.626 2.354-4.195 2.354-8.592-.001-.263-.052-.508-.126-.744z"/><path fill="#EF9645" d="M27.001 21c-.384 0-.749-.221-.915-.594l-4-9c-.224-.505.003-1.096.508-1.32.506-.226 1.096.003 1.32.507l4 9c.224.505-.003 1.096-.508 1.32-.132.06-.269.087-.405.087z"/><path fill="#FFDC5D" d="M24.766 34.38l-1.531-4.76s-.066.011-.175.066c.017-.009 1.821-.995 2.461-6.003.775-6.075-.774-9.6-.79-9.634l-.093-.231-3.5-10.104c-.452-1.305.239-2.729 1.544-3.181 1.303-.451 2.729.24 3.181 1.544l3.469 10.013c.377.887 2.035 5.285 1.148 12.226-1.042 8.163-4.943 9.816-5.714 10.064z"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#EF9645" d="M23.216 20.937l-1.721-6.86-3.947-8.816c-.502-1.297.143-2.756 1.44-3.257 1.296-.506 2.756.143 3.258 1.44l6.203 15.769-5.233 1.724z"/><path fill="#FFDC5D" d="M31.565 18.449c-.488-2.581-1.988-6.523-1.988-6.523L23.79 1.437C23.164.195 21.648-.303 20.407.322c-1.242.626-1.742 2.141-1.115 3.383l5.33 9.547c.013.022 1.413 5.491 1.413 5.491-1.078-.995-2.607-2.359-4.015-3.618-3.098-2.772-4.936-3.811-4.936-3.811-.71-.443-1.179-.506-2.132-.059L9.08 13.823c-.157.078-.29.188-.395.329l-2.313 3.086c-.893 1.067-.752 2.655.315 3.547 1.066.893 2.653.75 3.548-.314.048-.058 1.78-2.56 1.936-2.64 1.037-.533 2.965-1.447 3.808-1.42.897.029 6.281 5.957 6.281 5.957.206.259.23.618.06.902l-2.915 5.228c-.079.131-.193.236-.33.303l-2.674 1.5c-.154.075-.328.099-.496.067l-5.27-2.272c-.262-.113-.48-.32-.592-.583-.787-1.85-.898-3.619-.899-3.639-.065-1.39-1.244-2.463-2.634-2.398-1.387.056-2.463 1.243-2.398 2.633.013.263.351 5.64 4.727 9.292 2.528 2.108 5.654 2.924 9.649 2.387 4.612-.619 7.469-1.233 11.506-9.558 1.117-2.305 1.903-6.024 1.571-7.781z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f453.svg b/public/emoji/1f453.svg
index d6e8759b54a3724b95c142f7ff758927b04f3f81..18d99981e92b5ac5558e0eb29982c57c0cb80374 100644
--- a/public/emoji/1f453.svg
+++ b/public/emoji/1f453.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#292F33" d="M35.686 11.931c-.507-.522-6.83-1.094-13.263-.369-1.283.144-1.363.51-4.425.63-3.061-.119-3.141-.485-4.425-.63C7.14 10.837.817 11.41.31 11.931c-.252.261-.252 2.077 0 2.338.254.261 1.035.606 1.403 1.827.237.787.495 5.864 2.281 7.377 1.768 1.498 7.462 1.217 9.326.262 2.536-1.298 2.892-5.785 3.292-7.639.203-.939 1.162-1.016 1.385-1.016s1.182.077 1.385 1.016c.401 1.853.757 6.34 3.292 7.639 1.865.955 7.558 1.236 9.326-.262 1.786-1.513 2.044-6.59 2.281-7.377.368-1.22 1.149-1.566 1.403-1.827.254-.26.254-2.077.002-2.338z"/><path fill="#55ACEE" d="M14.644 15.699c-.098 1.255-.521 4.966-1.757 6.083-1.376 1.243-6.25 1.568-7.79.044-.808-.799-1.567-4.018-1.503-6.816.038-1.679 2.274-2.02 5.462-2.02 3.148 0 5.763.468 5.588 2.709zm6.707 0c.098 1.255.521 4.966 1.757 6.083 1.376 1.243 6.25 1.568 7.79.044.808-.799 1.567-4.018 1.503-6.816-.038-1.679-2.274-2.02-5.462-2.02-3.147 0-5.763.468-5.588 2.709z"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#31373D" d="M35.686 11.931c-.507-.522-6.83-1.094-13.263-.369-1.283.144-1.363.51-4.425.63-3.061-.119-3.141-.485-4.425-.63C7.14 10.837.817 11.41.31 11.931c-.252.261-.252 2.077 0 2.338.254.261 1.035.606 1.403 1.827.237.787.495 5.864 2.281 7.377 1.768 1.498 7.462 1.217 9.326.262 2.536-1.298 2.892-5.785 3.292-7.639.203-.939 1.162-1.016 1.385-1.016s1.182.077 1.385 1.016c.401 1.853.757 6.34 3.292 7.639 1.865.955 7.558 1.236 9.326-.262 1.786-1.513 2.044-6.59 2.281-7.377.368-1.22 1.149-1.566 1.403-1.827.254-.26.254-2.077.002-2.338z"/><path fill="#55ACEE" d="M14.644 15.699c-.098 1.255-.521 4.966-1.757 6.083-1.376 1.243-6.25 1.568-7.79.044-.808-.799-1.567-4.018-1.503-6.816.038-1.679 2.274-2.02 5.462-2.02 3.148 0 5.763.468 5.588 2.709zm6.707 0c.098 1.255.521 4.966 1.757 6.083 1.376 1.243 6.25 1.568 7.79.044.808-.799 1.567-4.018 1.503-6.816-.038-1.679-2.274-2.02-5.462-2.02-3.147 0-5.763.468-5.588 2.709z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f464.svg b/public/emoji/1f464.svg
index 143f12ad522a169fa106bf6905df0f61717c5d48..51d02dd25c9b99ab9b23a940d103b1ba18755e30 100644
--- a/public/emoji/1f464.svg
+++ b/public/emoji/1f464.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#292F33" d="M24 26.799v-2.566c2-1.348 4.08-3.779 4.703-6.896.186.103.206.17.413.17.991 0 1.709-1.287 1.709-2.873 0-1.562-.823-2.827-1.794-2.865.187-.674.293-1.577.293-2.735C29.324 5.168 26 .527 18.541.527c-6.629 0-10.777 4.641-10.777 8.507 0 1.123.069 2.043.188 2.755-.911.137-1.629 1.352-1.629 2.845 0 1.587.804 2.873 1.796 2.873.206 0 .025-.067.209-.17C8.952 20.453 11 22.885 13 24.232v2.414c-5 .645-12 3.437-12 6.23v1.061C1 35 2.076 35 3.137 35h29.725C33.924 35 35 35 35 33.938v-1.061c0-2.615-6-5.225-11-6.078z"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#269" d="M24 26.799v-2.566c2-1.348 4.08-3.779 4.703-6.896.186.103.206.17.413.17.991 0 1.709-1.287 1.709-2.873 0-1.562-.823-2.827-1.794-2.865.187-.674.293-1.577.293-2.735C29.324 5.168 26 .527 18.541.527c-6.629 0-10.777 4.641-10.777 8.507 0 1.123.069 2.043.188 2.755-.911.137-1.629 1.352-1.629 2.845 0 1.587.804 2.873 1.796 2.873.206 0 .025-.067.209-.17C8.952 20.453 11 22.885 13 24.232v2.414c-5 .645-12 3.437-12 6.23v1.061C1 35 2.076 35 3.137 35h29.725C33.924 35 35 35 35 33.938v-1.061c0-2.615-6-5.225-11-6.078z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f465.svg b/public/emoji/1f465.svg
index 571a3f3444a9c013dd86fc0166bb288008baa6de..076c6e7dfb8658040c2a5f1f321718883f95c67f 100644
--- a/public/emoji/1f465.svg
+++ b/public/emoji/1f465.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#66757F" d="M29 20.729v-1.963c1-1.03 2.914-2.89 3.391-5.273.142.079.055.13.213.13.758 0 1.256-.983 1.256-2.197 0-1.194-.656-2.161-1.399-2.191.143-.516.212-1.206.212-2.092 0-2.956-2.549-6.505-8.253-6.505-5.068 0-8.244 3.549-8.244 6.505 0 .858.051 1.562.142 2.107-.697.105-1.247 1.033-1.247 2.175 0 1.214.614 2.197 1.373 2.197.157 0-.069-.051.072-.13.477 2.384 2.484 4.243 3.484 5.274v1.847c-4 .492-7 2.628-7 4.765v.81c0 .812.823.812 1.634.812h18.73c.813 0 1.636 0 1.636-.812v-.81c0-2.001-3-3.997-6-4.649z"/><path fill="#292F33" d="M17 28.729v-1.963c1-1.03 2.914-2.89 3.391-5.273.142.079.055.13.213.13.758 0 1.256-.983 1.256-2.197 0-1.194-.656-2.161-1.399-2.191.143-.516.212-1.206.212-2.092 0-2.956-2.549-6.505-8.253-6.505-5.069 0-8.244 3.549-8.244 6.505 0 .858.051 1.562.142 2.107-.697.105-1.247 1.033-1.247 2.175 0 1.214.614 2.197 1.373 2.197.157 0-.069-.051.072-.13C4.993 23.876 7 25.735 8 26.766v1.847c-4 .492-7 2.628-7 4.765v.811C1 35 1.823 35 2.634 35h18.73c.813 0 1.636 0 1.636-.812v-.811c0-2-3-3.996-6-4.648z"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#55ACEE" d="M29 20.729v-1.963c1-1.03 2.914-2.89 3.391-5.273.142.079.055.13.213.13.758 0 1.256-.983 1.256-2.197 0-1.194-.656-2.161-1.399-2.191.143-.516.212-1.206.212-2.092 0-2.956-2.549-6.505-8.253-6.505-5.068 0-8.244 3.549-8.244 6.505 0 .858.051 1.562.142 2.107-.697.105-1.247 1.033-1.247 2.175 0 1.214.614 2.197 1.373 2.197.157 0-.069-.051.072-.13.477 2.384 2.484 4.243 3.484 5.274v1.847c-4 .492-7 2.628-7 4.765v.81c0 .812.823.812 1.634.812h18.73c.813 0 1.636 0 1.636-.812v-.81c0-2.001-3-3.997-6-4.649z"/><path fill="#269" d="M17 28.729v-1.963c1-1.03 2.914-2.89 3.391-5.273.142.079.055.13.213.13.758 0 1.256-.983 1.256-2.197 0-1.194-.656-2.161-1.399-2.191.143-.516.212-1.206.212-2.092 0-2.956-2.549-6.505-8.253-6.505-5.069 0-8.244 3.549-8.244 6.505 0 .858.051 1.562.142 2.107-.697.105-1.247 1.033-1.247 2.175 0 1.214.614 2.197 1.373 2.197.157 0-.069-.051.072-.13C4.993 23.876 7 25.735 8 26.766v1.847c-4 .492-7 2.628-7 4.765v.811C1 35 1.823 35 2.634 35h18.73c.813 0 1.636 0 1.636-.812v-.811c0-2-3-3.996-6-4.648z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f468-1f3fb-200d-1f9af.svg b/public/emoji/1f468-1f3fb-200d-1f9af.svg
new file mode 100644
index 0000000000000000000000000000000000000000..06f7b2cfceb063a6e3859acb23377599954d7340
--- /dev/null
+++ b/public/emoji/1f468-1f3fb-200d-1f9af.svg
@@ -0,0 +1 @@
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#CCD6DD" d="M12.154 19.416l.802.598L3.988 32.04l-.802-.598z"/><path fill="#DD2E44" d="M3.186 31.444L1.093 34.25c-.164.22-.119.535.102.7s.535.119.7-.102l2.092-2.806-.801-.598z"/><path fill="#292F33" d="M11.359 21.319c-.22-.164-.266-.479-.102-.7l1.793-2.405c.164-.22.479-.266.7-.102.22.164.266.479.102.7l-1.793 2.405c-.164.221-.479.267-.7.102z"/><path fill="#292F33" d="M11.76 21.618l-.802-.598c-.22-.164-.266-.479-.102-.7.164-.22.479-.266.7-.102l.802.598c.22.164.266.479.102.7-.164.221-.479.267-.7.102z"/><path fill="#99AAB5" d="M.598 35.751c-.22-.164-.266-.479-.102-.7.164-.22.479-.266.7-.102.22.164.266.479.102.7-.165.22-.48.266-.7.102z"/><path fill="#292F33" d="M20.436 35.056s.061-.144.061-.448c0-.303-.156-.869-.199-.95-.043-.081-.09-.139-.194-.11-.079.022-.685.326-1.072.341-.719.027-1.066-.618-1.066-.618s-.399.228-.716.413c-.318.185-.687.462-.959.627-.232.141-.497.208-.771.243s-.497.023-.563.029c-.066.006-.621-.061-.641.488l.004.16s.987.397 2.344.397 1.566-.399 2.444-.399c.877 0 1.328-.173 1.328-.173z"/><path fill="#292F33" d="M18.685 35.926c-.058-.052-.123-.22-.173-.243-.05-.023-.57.089-.813.146-.243.058-.66.156-1.152.156-.491 0-1.126-.144-1.519-.243-.393-.098-.701-.23-.77-.274-.07-.043-.05-.063-.046-.096.004-.033.052-.202.052-.202s.251.132.678.237c.426.104.851.183 1.584.183s1.193-.109 1.574-.211c.475-.128 1.163-.267 1.656-.267.38 0 .648-.112.751-.139.024-.006.046.012.046.037v.649c0 .042-.035.139-.146.162-.112.024-1.664.157-1.722.105zm12.222-5.012s-.072-.142-.307-.343-.777-.454-.868-.473c-.091-.02-.167-.022-.213.078-.035.075-.199.746-.444 1.056-.454.575-1.184.418-1.184.418s-.087.46-.153.828-.096.838-.148 1.158c-.044.273-.167.523-.322.758-.154.236-.31.4-.35.456-.039.055-.457.441-.045.82l.127.101s.96-.502 1.857-1.555c.897-1.052.726-1.477 1.306-2.158.58-.68.744-1.144.744-1.144z"/><path fill="#292F33" d="M30.425 32.846c-.078.01-.252-.05-.303-.026-.051.024-.308.5-.424.727-.116.226-.316.615-.64.996s-.856.778-1.192 1.018c-.336.24-.642.391-.721.416s-.082-.003-.104-.028c-.022-.025-.122-.174-.122-.174s.269-.107.631-.369c.363-.261.705-.538 1.189-1.107.484-.568.704-.997.876-1.36.214-.452.562-1.078.887-1.46.251-.295.342-.576.388-.674.011-.023.04-.028.059-.012l.503.429c.033.028.085.118.029.22-.055.103-.978 1.394-1.056 1.404z"/><path fill="#F7DECE" d="M21.5 1.384c-1.593-.627-4.077.182-4.365 2.043-.287 1.848.239 4.747 1.863 4.572 1.702-.184 3.448-.554 4.138-2.307s-.042-3.681-1.636-4.308z"/><path fill="#F7DECE" d="M22.684 6.143c2.318-2.723-3.266-2.458-3.266-2.458-1.057.038-.329 1.799-.827 2.761-.341.665 1.095 1.018 1.095 1.018s.659-.01.694.79v.007c.008.204-.013.445-.108.769-.473 1.601 1.677 2.582 2.149.978.187-.635.114-1.193.02-1.708l-.009-.046c-.144-.766-.322-1.437.252-2.111z"/><path fill="#292F33" d="M23.32 2.026C22.259.784 20.74.125 18.301 1.235c-.994.452-1.439.285-1.58.484-.679.953.246 2.01.608 1.799 1.148-.669 2.183-.47 2.447.014s.021 1.354.234 1.359c.578.016.484-.551.714-.878.375-.534.946-.232 1.071.362.099.471 0 1.271-.77 1.412.523 1.151 1.56 1.502 1.56 1.502s.337.132.912-1.001c.576-1.134.877-3.029-.177-4.262z"/><path fill="#2A6797" d="M18.558 34.203c-1.266.109-1.853-.233-1.721-.416.165-.228.128-.397.13-.536.028-2.441-.472-5.991-.472-5.991 0-.348.003-.813.312-1.562.778-1.883 3.951-7.69 3.951-7.69.548-.958 1.771-1.293 2.729-.744.959.548 1.122 1.405.744 2.729-.715 2.508-2.965 5.602-3.903 7.477.224 2.121-.174 3.853.035 5.857.03.288-.54.767-1.805.876z"/><path fill="#4289C1" d="M29.292 31.931c-.364.553-.97.942-1.598.838-1.269-1.924-4.955-5.321-4.955-5.321-.241-.25-.562-.587-.86-1.341-.748-1.895-2.498-8.277-2.498-8.277-.272-1.07.376-2.16 1.446-2.43 1.07-.272 1.783.232 2.43 1.446 1.227 2.301 1.757 6.09 2.384 8.09 1.87 1.568 2.383 3.603 4.275 5.151-.064.857-.26 1.291-.624 1.844z"/><path fill="#77B255" d="M25.495 20s0 1-2 1h-4.898c-.415-2-.027-5.004.006-7.765.043-3.623 2.298-5.609 3.71-5.155 1.846.594 2.693 2.641 2.932 5.858.239 3.216.25 6.062.25 6.062z"/><path fill="#F7DECE" d="M20.029 11.693c-.781 1.172-2.291 3.808-2.518 3.909-1.205.534-2.549 1.22-3.445 1.314-.649.068-1.254.68-1.508.925-.316.304-.75 1.008-.63 1.37.075.226.571.488.742.253.332-.458.973-.535 1.49-.889 1.038-.712 3.284-.765 4.556-1.709.528-.391 1.677-1.309 3.2-3.9-.592-.426-1.887-1.273-1.887-1.273z"/><path fill="#292F33" d="M14.21 17.018c.477.152.847.624.557 1.114-.29.49.403.185.512-.045.223-.468-.178-1.158-.646-1.314-.468-.156-.746.142-.423.245z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f468-1f3fb-200d-1f9bc.svg b/public/emoji/1f468-1f3fb-200d-1f9bc.svg
new file mode 100644
index 0000000000000000000000000000000000000000..012784566977508c1abadd1ea9f6cff0cbcd58b4
--- /dev/null
+++ b/public/emoji/1f468-1f3fb-200d-1f9bc.svg
@@ -0,0 +1 @@
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#F7DECE" d="M26.007 1.015c-1.214-.871-3.488-.718-4.13.795-.638 1.502-.813 4.067.598 4.266 1.479.209 3.036.269 3.994-1.066.959-1.335.752-3.124-.462-3.995z"/><path fill="#F7DECE" d="M25.99 5.295c2.544-1.808-2.238-2.778-2.238-2.778-.902-.194-.664 1.452-1.29 2.159-.431.49.708 1.096.708 1.096s.56.133.419.817l-.002.006c-.037.174-.107.374-.256.627-.743 1.253.866 2.543 1.609 1.287.294-.497.352-.985.382-1.441l.003-.041c.043-.679.036-1.285.665-1.732z"/><path fill="#292F33" d="M27.409 1.948C26.777.671 25.632-.212 23.332.206c-.937.17-1.279-.066-1.441.071-.778.661-.222 1.753.13 1.652 1.114-.321 1.948.069 2.068.535.12.466-.272 1.15-.092 1.2.486.137.528-.363.791-.59.431-.371.85.006.829.535-.017.42-.272 1.075-.953 1.03.196 1.086.998 1.604.998 1.604s.256.184.986-.652c.729-.836 1.389-2.375.761-3.643zM8.22 28.583s.108-.118.211-.409c.104-.291.147-.888.133-.98-.014-.092-.039-.164-.148-.171-.083-.006-.768.08-1.145-.039-.699-.22-.812-.957-.812-.957s-.46.083-.829.152c-.368.069-.818.209-1.134.274-.271.056-.548.03-.823-.03-.275-.06-.485-.147-.55-.165-.066-.017-.575-.27-.782.25l-.051.154s.811.718 2.114 1.182c1.303.464 1.639.152 2.481.452.843.3 1.335.287 1.335.287z"/><path fill="#292F33" d="M6.243 28.821c-.038-.07-.043-.253-.083-.292-.04-.039-.577-.11-.83-.137-.253-.027-.687-.076-1.158-.244-.471-.168-1.032-.523-1.375-.752-.343-.228-.594-.46-.646-.526s-.026-.078-.011-.107.119-.176.119-.176.196.213.569.459.754.467 1.458.717c.703.25 1.182.303 1.583.335.499.039 1.207.141 1.681.309.365.13.66.114.768.123.025.002.04.027.032.051l-.222.623c-.014.041-.081.121-.196.105s-1.651-.419-1.689-.488z"/><path fill="#4289C1" d="M25.097 17.21c.069 1.432-.391 2.922-1.505 3.202-1.066.268-3.056-.151-3.056-.151s-.698.408-.531 1.189c.095.444.257.67.201.712-.05.038-.486-.022-.684-.032-.528-.027-1.1-.211-2.073-.484-.974-.273-1.421-.285-2.481-.577-1.175-.324-1.986-.835-2.33-1.956-.293-.956.277-2.123 1.654-2.63 1.12-.412 4.339-.347 5.539-.231 1.201.118 5.206-.287 5.266.958z"/><path fill="#4289C1" d="M7.002 27.225c-.646-.143-1.293-.6-1.419-1.224 1.346-1.871 3.671-7.538 3.671-7.538.695-1.744 1.517-3.426 3.133-3.182 2.081.315 5.629 1.028 5.629 1.028 2.276.329 1.144 1.007 1.778 1.912.635.903-1.294 1.99-2.786 1.891-2.602-.173-3.877-.453-5.522.846-.8 2.306-2.071 4.087-2.844 6.406-.826.244-.993.004-1.64-.139z"/><path fill="#77B255" d="M25.569 16.971c-.211.688-.149 1.604-.515 1.362-1.444-.957-5.521-2.045-5.521-2.045.049-1.673.979-3.969 1.559-6.148.762-2.86 3.067-3.951 4.171-3.289 1.443.865 1.75 2.668 1.308 5.266s-.791 4.166-1.002 4.854z"/><path fill="#66757F" d="M27.811 10.609l.425-5.242c.022-.274.265-.48.539-.458.274.022.48.265.458.539l-.425 5.242c-.022.274-.265.48-.539.458-.274-.022-.48-.265-.458-.539z"/><path fill="#292F33" d="M16 21v2s-2 0-2 2v3c0 1 1 2 2 2h10c1 0 2-1 2-2v-5c0-1-1-2-2-2H16z"/><path fill="#292F33" d="M22.956 22.559l-9.848-1.736c-.985-.174-.985-.174-.811-1.158.096-.542.617-.907 1.158-.811l9.848 1.736c.542.096.907.617.811 1.158-.173.985-.173.985-1.158.811z"/><path fill="#292F33" d="M25.238 19.023c-.193.922-.557 1.827-2.094 1.537-1.537-.29-1.782 1.225-.824 1.493.958.267 3.252.646 3.921-.446.668-1.092.78-2.139.713-2.606s-1.572-.66-1.716.022z"/><path fill="#DD2E44" d="M23.442 22.896l-10.833-1.91c-.271-.048-.453-.308-.406-.579.048-.271.308-.453.579-.406l10.833 1.91c.271.048.453.308.406.579-.048.271-.309.454-.579.406z"/><path fill="#292F33" d="M28.932 9.642l-1.736 9.848c-.174.985-.174.985-1.158.811-.542-.096-.907-.617-.811-1.158l1.736-9.848c.096-.542.617-.907 1.158-.811.984.173.984.173.811 1.158zm.992-7.49l-.713 4.025c-.087.493-.168 1.007-1.153.834-.542-.096-.882-.715-.763-1.398l.639-3.609c.163-.579.626-1.004 1.167-.909.985.173.91.564.823 1.057z"/><path fill="#DD2E44" d="M29.406 9.224l-1.91 10.833c-.048.271-.308.453-.579.406-.271-.048-.453-.308-.406-.579l1.91-10.833c.048-.271.308-.453.579-.406.272.048.454.308.406.579zm1.243-7.455l-.91 5.18c-.048.271-.308.453-.579.406-.271-.048-.453-.308-.406-.579l.91-5.18c.048-.271.308-.453.579-.406.271.047.454.308.406.579z"/><path fill="#292F33" d="M25.494 18.441l-7.466-1.316c-.747-.132-.747-.132-.617-.869.071-.405.466-.678.877-.606l7.466 1.316c.411.072.688.463.617.869-.13.738-.13.738-.877.606z"/><path fill="#DD2E44" d="M23.123 21.824c.993.175 2.954.521 3.475-2.433s1.506-2.781.985.174-2.237 3.667-4.634 3.245c-1.969-.348-1.796-1.333.174-.986zm-10.33-1.821c1.971.34 2.277 1.422.308 1.07-.873-.156-.984.212-1.251.958-.252.702-.611 1.757-1.144 3.23-.391 1.082-1.279.603-.95-.342.551-1.588 1.061-2.968 1.392-3.847.338-.895.613-1.247 1.645-1.069z"/><path fill="#DD2E44" d="M10.62 24.01c-.258-.094-.547.04-.641.299l-2.052 5.638c-.094.258.04.547.299.641.258.094.547-.04.641-.299l2.052-5.638c.094-.259-.041-.547-.299-.641z"/><path fill="#66757F" d="M8.226 30.588L4.467 29.22c-.258-.094-.393-.382-.299-.641.094-.258.382-.393.641-.299l3.759 1.368c.258.094.393.382.299.641-.094.258-.383.393-.641.299z"/><path fill="#DD2E44" d="M13.844 30.862l2.95-2.95c.194-.194.194-.513 0-.707-.194-.194-.513-.194-.707 0l-2.95 2.95c-.194.194-.194.513 0 .707.194.194.512.194.707 0zM32 34c-.55 0-1-.45-1-1v-3c0-.55.45-1 1-1s1 .45 1 1v3c0 .55-.45 1-1 1z"/><path fill="#DD2E44" d="M13.5 34c-.55 0-1-.45-1-1v-3c0-.55.45-1 1-1s1 .45 1 1v3c0 .55-.45 1-1 1zm12.983-6.005h2c.275 0 .5-.225.5-.5s-.225-.5-.5-.5h-2c-.275 0-.5.225-.5.5s.225.5.5.5z"/><path fill="#DD2E44" d="M31.123 30.803l-2.95-2.95c-.194-.194-.194-.513 0-.707.194-.194.513-.194.707 0l2.95 2.95c.194.194.194.513 0 .707-.194.195-.512.195-.707 0z"/><path fill="#292F33" d="M11.672 16.127c.742.318 2.05.936 2.339 1.047 0 0 .134-.891.49-.891 0 0 .134-.468.223-.668s.356-.134.379.245c.022.379-.089.512-.089.512s.334.423.134 1.002c0 0 .446.067.356.624-.089.557.067.98-.334 1.092-.401.111-1.916.535-1.938-.067-.022-.601-.401-1.069-1.136-1.515-.735-.446-1.27-.936-1.181-1.181.088-.244.133-.467.757-.2z"/><path fill="#DD2E44" d="M26.5 25h-11c-.275 0-.5-.225-.5-.5s.225-.5.5-.5h11c.275 0 .5.225.5.5s-.225.5-.5.5z"/><path fill="#F7DECE" d="M22.691 10.276c-.579 1.455-1.125 3.55-1.381 3.561-1.473.062-3.079.948-4.006.893-.672-.04-1.306-.167-1.651-.05-.552.187-1.159.289-1.351.632-.195.348.171.657 1.035.656.635 0 1.045.208 1.674.06.896-.21 3.986.754 5.665-.345.566-.371 1.441-1.871 2.525-4.663-1.084-.477-2.51-.744-2.51-.744z"/><circle fill="#66757F" cx="21.5" cy="31.5" r="4.5"/><circle fill="#66757F" cx="13.5" cy="33.5" r="2.5"/><circle fill="#66757F" cx="32" cy="34" r="2"/><circle fill="#CCD6DD" cx="21.5" cy="31.5" r="2.5"/><circle fill="#CCD6DD" cx="13.5" cy="33.5" r="1.5"/><circle fill="#292F33" cx="32" cy="34" r="1"/><g fill="#292F33"><circle cx="22" cy="30.634" r=".5"/><circle cx="21" cy="32.366" r=".5"/><circle cx="20.634" cy="31" r=".5"/><circle cx="22.366" cy="32" r=".5"/></g><circle fill="#292F33" cx="13.5" cy="33.5" r=".75"/><circle fill="#66757F" cx="32" cy="34" r=".5"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f468-1f3fb-200d-1f9bd.svg b/public/emoji/1f468-1f3fb-200d-1f9bd.svg
new file mode 100644
index 0000000000000000000000000000000000000000..7d0c06d0d7f7e93ae2478b561ad2863f40ec3257
--- /dev/null
+++ b/public/emoji/1f468-1f3fb-200d-1f9bd.svg
@@ -0,0 +1 @@
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#F7DECE" d="M21.96.974c-1.285-.762-3.537-.411-4.045 1.152-.504 1.552-.455 4.123.968 4.198 1.492.079 3.048.003 3.886-1.41.838-1.414.476-3.178-.809-3.94z"/><path fill="#F7DECE" d="M22.316 5.239c2.376-2.023-2.471-2.572-2.471-2.572-.916-.114-.535 1.504-1.097 2.263-.387.526.801 1.03.801 1.03s.569.083.488.777l-.001.006c-.021.177-.074.382-.2.647-.631 1.313 1.085 2.458 1.715 1.142.249-.521.265-1.012.255-1.469l-.001-.041c-.017-.68-.076-1.283.511-1.783z"/><path fill="#292F33" d="M23.439 1.781C22.698.564 21.481-.216 19.225.4c-.919.251-1.279.045-1.429.196-.718.726-.068 1.766.273 1.634 1.082-.417 1.946-.101 2.106.353.16.454-.171 1.169.013 1.204.496.094.494-.407.737-.657.397-.408.847-.068.872.461.02.419-.177 1.095-.86 1.109.29 1.065 1.134 1.511 1.134 1.511s.271.161.925-.735c.655-.896 1.178-2.486.443-3.695zM8.211 30.079s.097-.127.175-.426c.078-.299.069-.897.047-.988-.022-.091-.053-.16-.163-.158-.083.001-.759.146-1.144.061-.716-.158-.892-.883-.892-.883s-.452.123-.812.223c-.361.101-.796.279-1.106.372-.265.079-.543.078-.823.041-.279-.036-.496-.105-.563-.116s-.597-.219-.757.317l-.037.159s.871.645 2.209.993 1.646.009 2.511.234 1.355.171 1.355.171z"/><path fill="#292F33" d="M6.262 30.488c-.044-.066-.065-.248-.109-.284-.043-.036-.585-.059-.839-.064-.254-.005-.691-.016-1.175-.142s-1.074-.431-1.436-.629-.632-.407-.689-.468c-.057-.061-.033-.075-.02-.106.013-.031.103-.186.103-.186s.214.195.607.407.792.399 1.514.587 1.204.199 1.606.195c.501-.004 1.215.035 1.701.162.375.098.668.056.776.056.025 0 .043.023.036.048l-.167.64c-.011.042-.07.128-.186.122-.114-.004-1.679-.271-1.722-.338z"/><path fill="#4289C1" d="M24.032 17.279c.193 1.421-.135 2.945-1.22 3.321-1.039.36-3.058.116-3.058.116s-.66.468-.426 1.231c.133.434.314.645.262.692-.046.042-.486.02-.684.027-.528.02-1.114-.115-2.108-.301-.994-.187-1.44-.16-2.522-.359-1.198-.22-2.051-.659-2.491-1.745-.375-.927.091-2.139 1.419-2.764 1.08-.508 4.292-.724 5.498-.712 1.207.011 5.162-.741 5.33.494z"/><path fill="#4289C1" d="M6.879 28.832c-.656-.086-1.341-.485-1.521-1.095 1.178-1.982 3-7.829 3-7.829.541-1.798 1.213-3.546 2.843-3.443 2.1.133 5.697.533 5.697.533 2.296.13 1.228.904 1.938 1.75.712.845-1.115 2.095-2.611 2.126-2.607.054-3.902-.113-5.428 1.324-.596 2.367-1.706 4.252-2.275 6.63-.799.315-.987.091-1.643.004z"/><path fill="#77B255" d="M24.698 16.173c.029.719.15 1.674-.276 1.567-1.679-.424-5.438-.168-5.438-.168-.508-1.594-.392-4.069-.566-6.317-.229-2.95 1.585-4.744 2.845-4.485.513.105 1.136.428 1.511.77.278.253.924.961 1.141 1.169 1.106 1.06.124 1.405.327 2.596.444 2.597.427 4.149.456 4.868z"/><g fill="#DD2E44"><path d="M13.465 27.092l10.824.95c.274.024.518-.181.542-.455.024-.274-.181-.518-.455-.542l-10.824-.95c-.274-.024-.518.181-.542.455-.024.274.181.518.455.542z"/><path d="M24.288 28.041c-.274-.024-.478-.268-.455-.542l.436-4.981c.024-.274.268-.478.542-.455.274.024.478.268.455.542l-.436 4.981c-.024.275-.268.479-.542.455zm-10.738-7.58c-.274-.024-.518.181-.542.455l-1.015 11.597c-.024.274.181.518.455.542.274.024.518-.181.542-.455l1.015-11.597c.023-.274-.181-.518-.455-.542z"/></g><path fill="#292F33" d="M23.524 20.592c1.431-.206 2.834-.148 2.345.544-.489.692-1.575 1.905-3.418 1.707-1.844-.198.185-2.123 1.073-2.251z"/><path fill="#292F33" d="M22.45 22.843l-9.962-.872c-.996-.087-.996-.087-.909-1.083.048-.548.535-.957 1.083-.909l9.962.872c.548.048.957.535.909 1.083-.087.996-.087.996-1.083.909z"/><path fill="#DD2E44" d="M22.964 23.136l-10.958-.959c-.274-.024-.478-.268-.455-.542.024-.274.268-.478.542-.455l10.958.959c.274.024.478.268.455.542-.025.275-.268.479-.542.455z"/><path fill="#292F33" d="M27.278 9.454l-.872 9.962c-.087.996-.087.996-1.083.909-.548-.048-.957-.535-.909-1.083l.872-9.962c.048-.548.535-.957 1.083-.909.996.087.996.087.909 1.083z"/><path fill="#DD2E44" d="M27.714 8.996l-.959 10.958c-.024.274-.268.478-.542.455-.274-.024-.478-.268-.455-.542l.959-10.958c.024-.274.268-.478.542-.455.274.025.479.268.455.542z"/><path fill="#292F33" d="M24.62 18.519l-7.552-.661c-.755-.066-.755-.066-.69-.812.036-.41.405-.716.82-.68l7.552.661c.415.036.726.402.69.812-.064.746-.064.746-.82.68z"/><path fill="#DD2E44" d="M22.553 22.096c1.004.088 2.989.261 3.25-2.727s1.258-2.901.996.087-1.909 3.848-4.333 3.636c-1.993-.174-1.906-1.17.087-.996zm-10.449-.914c1.993.166 2.392 1.218.4 1.039-.883-.079-.962.297-1.163 1.063-.189.721-.456 1.803-.858 3.318-.295 1.112-1.221.712-.977-.257.411-1.63.798-3.05 1.052-3.953.258-.922.502-1.297 1.546-1.21z"/><g fill="#66757F"><circle cx="24.5" cy="27.5" r="1.5"/><path d="M31.245 30.817l-6.062-3.5 3.5-6.062-.866-.5-3.5 6.062-6.062-3.5-.5.866 6.062 3.5-3.5 6.062.866.5 3.5-6.062 6.062 3.5z"/><path d="M26.924 34.615l-1.812-6.761 6.762-1.812-.259-.966-6.761 1.812-1.812-6.762-.966.259 1.812 6.761-6.762 1.812.259.966 6.761-1.812 1.812 6.762z"/></g><path fill="#292F33" d="M24.5 19c-4.694 0-8.5 3.806-8.5 8.5s3.806 8.5 8.5 8.5 8.5-3.806 8.5-8.5-3.806-8.5-8.5-8.5zm0 15c-3.59 0-6.5-2.91-6.5-6.5s2.91-6.5 6.5-6.5 6.5 2.91 6.5 6.5-2.91 6.5-6.5 6.5z"/><path fill="#66757F" d="M24.5 20c-4.142 0-7.5 3.358-7.5 7.5s3.358 7.5 7.5 7.5 7.5-3.358 7.5-7.5-3.358-7.5-7.5-7.5zm0 14c-3.59 0-6.5-2.91-6.5-6.5s2.91-6.5 6.5-6.5 6.5 2.91 6.5 6.5-2.91 6.5-6.5 6.5zm-9.152-.433l-2.165-1.25 1.25-2.165-.866-.5-1.25 2.165-2.165-1.25-.5.866 2.165 1.25-1.25 2.165.866.5 1.25-2.165 2.165 1.25z"/><path fill="#292F33" d="M12.5 29C10.567 29 9 30.567 9 32.5s1.567 3.5 3.5 3.5 3.5-1.567 3.5-3.5-1.567-3.5-3.5-3.5zm0 6c-1.381 0-2.5-1.119-2.5-2.5s1.119-2.5 2.5-2.5 2.5 1.119 2.5 2.5-1.119 2.5-2.5 2.5z"/><path fill="#DD2E44" d="M10.288 25.363c-.266-.071-.541.088-.612.354l-1.553 5.796c-.071.266.088.541.354.612.266.071.541-.088.612-.354l1.553-5.796c.07-.265-.089-.541-.354-.612z"/><path fill="#66757F" d="M8.476 32.125L4.612 31.09c-.266-.071-.425-.347-.354-.612.071-.266.347-.425.612-.354l3.864 1.035c.266.071.426.346.354.612-.071.266-.346.425-.612.354z"/><path fill="#DD2E44" d="M30.103 9.969l-2.954-.521c-.271-.048-.453-.308-.406-.579.048-.271.308-.453.579-.406l2.954.521c.271.048.453.308.406.579-.048.272-.308.454-.579.406z"/><path fill="#292F33" d="M31.088 10.143l-2.615-.467c-.271-.048-.26-.274-.213-.545.048-.271.116-.487.386-.44l2.615.467c.271.048.453.308.406.579-.048.271-.308.454-.579.406z"/><path fill="#F7DECE" d="M22.118 10.597c1.142.988 3.458 2.697 3.436 2.951-.128 1.469.543 3.175.369 4.087-.126.661-.665 1.138-.594 1.495.667-.009.443 1.15.729 1.665.301.542 1.171-.093 1.282-.949.081-.629-.102-1.11-.167-1.752-.093-.915 1.094-3.661.22-5.467-.295-.609-1.531-2.277-3.635-4.122-.595.457-1.64 2.092-1.64 2.092z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f468-1f3fc-200d-1f91d-200d-1f468-1f3fb.svg b/public/emoji/1f468-1f3fc-200d-1f91d-200d-1f468-1f3fb.svg
new file mode 100644
index 0000000000000000000000000000000000000000..447fd47bfdcdeacc521d374eb535937b21fede7d
--- /dev/null
+++ b/public/emoji/1f468-1f3fc-200d-1f91d-200d-1f468-1f3fb.svg
@@ -0,0 +1 @@
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#FFE51E" d="M10.498 0c-1.186 0-2.282.379-3.18 1.018-1.847.096-3.32 1.611-3.32 3.482 0 1.542.007 3.484 2.038 4.208C7.035 10.094 8.659 11 10.498 11c3.037 0 5.5-2.462 5.5-5.499 0-3.038-2.462-5.501-5.5-5.501z"/><path fill="#F3D2A2" d="M17.896 26.76c.271.091.487-.159.586-.302.279-.405.422-1.309.004-2.227-.423-.927-.702-2.072-1.69-3.821-.115-.204-.494-2.746-1.242-4.354-.202-.435-1.495-.684-2.009-.529-.513.154.005.98.037 1.134.344 1.651 1.305 4.077 1.45 4.404.8 1.806 1.965 2.389 2.071 3.706.055.69.205 1.286.6 1.228.092.352.093.728.193.761zM3.3 26.964c-.257.126-.504-.094-.62-.222-.33-.365-.591-1.242-.296-2.208.297-.975.424-2.146 1.174-4.01.087-.217.129-2.787.66-4.479.143-.457 1.392-.875 1.922-.789.529.086.124.972.112 1.129-.124 1.682-.758 4.213-.859 4.556-.556 1.895-1.634 2.627-1.566 3.946.036.692-.034 1.302-.433 1.296-.048.363 0 .735-.094.781z"/><path fill="#AAB8C2" d="M13.554 29.5c.5-2.734.422-6.5.422-6.5H6.013s-.078 3.766.422 6.5c.063.344.188 3.344-.109 5.5-.066.479 2.886.937 2.844-.125-.078-1.969.264-3.513.328-4.5.035-.547.25-1.875.344-3.208.011-.018.295-.018.306 0 .094 1.333.308 2.661.344 3.208.064.987.406 2.531.328 4.5-.042 1.062 2.91.604 2.844.125-.298-2.156-.173-5.156-.11-5.5z"/><path fill="#292F33" d="M14.538 36c.499-.406-.041-1.161-1.42-1.402-1.163-.203-2.2-.032-2.363.35-.212.493-.05 1.052-.05 1.052h3.833zm-9.117 0c-.499-.406.041-1.161 1.42-1.402 1.163-.203 2.2-.032 2.363.35.212.493.05 1.052.05 1.052H5.421z"/><path fill="#4289C1" d="M14.795 14.766C13.577 14 11.998 14 11.998 14h-4s-1.578 0-2.797.766c-1.201.754-1.656 3-1.656 3l2.203.688.11 5.546h8.281l.109-5.547 2.203-.688c.001.001-.455-2.245-1.656-2.999z"/><path fill="#F3D2A2" d="M7.998 10.042v4c0 .682.896 1.305 2 1.305s2-.668 2-1.305v-4h-4z"/><path fill="#E2C196" d="M7.998 14.042c0 .682.896 1.305 2 1.305s2-.668 2-1.305V11l-4 .019v3.023z"/><path fill="#F3D2A2" d="M14.998 3h-10v6c0 2.762 2.238 5 5 5s5-2.237 5-5V3z"/><path fill="#FFE51E" d="M4.998 2.5l-.5 2.5.5 2c2.333 0 2.85-2.412 2.965-3.488C8.002 4.588 8.778 7 14.998 7l.5-2-.5-2.5h-10z"/><path fill="#C1694F" d="M11.998 12h-4s0 1 2 1 2-1 2-1z"/><circle fill="#662113" cx="7.498" cy="8.5" r=".5"/><circle fill="#662113" cx="12.498" cy="8.5" r=".5"/><path fill="#C1694F" d="M8.998 10h2s0 1-1 1-1-1-1-1z"/><path fill="#292F33" d="M26.5 0c-1.187 0-2.282.379-3.181 1.018C21.473 1.114 20 2.629 20 4.5c0 1.542.007 3.484 2.038 4.208C23.036 10.094 24.66 11 26.5 11c3.037 0 5.5-2.462 5.5-5.499C32 2.463 29.537 0 26.5 0z"/><path fill="#F7DECE" d="M18.117 26.76c-.271.091-.487-.159-.586-.302-.279-.405-.422-1.309-.004-2.227.423-.927.702-2.072 1.69-3.821.115-.204.494-2.746 1.242-4.354.202-.435 1.495-.684 2.009-.529.513.154-.005.98-.037 1.134-.344 1.651-1.305 4.077-1.45 4.404-.8 1.806-1.965 2.389-2.071 3.706-.055.69-.205 1.286-.6 1.228-.092.352-.094.728-.193.761zm14.595.204c.257.126.504-.094.62-.222.33-.365.591-1.242.296-2.208-.297-.975-.424-2.146-1.174-4.01-.087-.217-.129-2.787-.66-4.479-.143-.457-1.392-.875-1.922-.789-.529.086-.124.972-.112 1.129.124 1.682.758 4.213.859 4.556.556 1.895 1.634 2.627 1.566 3.946-.036.692.034 1.302.433 1.296.048.363 0 .735.094.781z"/><path fill="#F7DECE" d="M18.117 26.76c-.271.091-.487-.159-.586-.302-.279-.405-.422-1.309-.004-2.227.423-.927.702-2.072 1.69-3.821.115-.204.494-2.746 1.242-4.354.202-.435 1.495-.684 2.009-.529.513.154-.005.98-.037 1.134-.344 1.651-1.305 4.077-1.45 4.404-.8 1.806-1.965 2.389-2.071 3.706-.055.69-.205 1.286-.6 1.228-.092.352-.094.728-.193.761zm14.595.204c.257.126.504-.094.62-.222.33-.365.591-1.242.296-2.208-.297-.975-.424-2.146-1.174-4.01-.087-.217-.129-2.787-.66-4.479-.143-.457-1.392-.875-1.922-.789-.529.086-.124.972-.112 1.129.124 1.682.758 4.213.859 4.556.556 1.895 1.634 2.627 1.566 3.946-.036.692.034 1.302.433 1.296.048.363 0 .735.094.781z"/><path fill="#67757F" d="M29.555 29.5c.5-2.734.422-6.5.422-6.5h-7.963s-.078 3.766.422 6.5c.063.344.188 3.344-.109 5.5-.066.479 2.886.937 2.844-.125-.078-1.969.264-3.513.328-4.5.035-.547.25-1.875.344-3.208.011-.018.295-.018.306 0 .094 1.333.308 2.661.344 3.208.064.987.406 2.531.328 4.5-.042 1.062 2.91.604 2.844.125-.297-2.156-.172-5.156-.11-5.5z"/><path fill="#292F33" d="M30.54 36c.499-.406-.041-1.161-1.42-1.402-1.163-.203-2.2-.032-2.363.35-.212.493-.05 1.052-.05 1.052h3.833zm-9.117 0c-.499-.406.041-1.161 1.42-1.402 1.163-.203 2.2-.032 2.363.35.212.494.05 1.053.05 1.053L21.423 36z"/><path fill="#78B159" d="M30.797 14.766C29.578 14 28 14 28 14h-4s-1.578 0-2.797.766c-1.201.754-1.656 3-1.656 3l2.203.688.109 5.546h8.281l.109-5.547 2.203-.688c.001.001-.454-2.245-1.655-2.999z"/><path fill="#F7DECE" d="M24 10.042v4c0 .682.896 1.305 2 1.305s2-.668 2-1.305v-4h-4z"/><path fill="#EEC2AD" d="M24 14.042c0 .682.896 1.305 2 1.305s2-.668 2-1.305V11l-4 .019v3.023z"/><path fill="#F7DECE" d="M31 3H21v6c0 2.762 2.238 5 5 5s5-2.237 5-5V3z"/><path fill="#292F33" d="M21 2.5L20.5 5l.5 2c2.333 0 2.85-2.412 2.965-3.488C24.004 4.588 24.779 7 31 7l.5-2-.5-2.5H21z"/><path fill="#C1694F" d="M28 12h-4s0 1 2 1 2-1 2-1z"/><circle fill="#662113" cx="23.5" cy="8.5" r=".5"/><circle fill="#662113" cx="28.5" cy="8.5" r=".5"/><path fill="#C1694F" d="M25 10h2s0 1-1 1-1-1-1-1z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f468-1f3fc-200d-1f9af.svg b/public/emoji/1f468-1f3fc-200d-1f9af.svg
new file mode 100644
index 0000000000000000000000000000000000000000..77eb172863927b520df1581a14af84a2e530a335
--- /dev/null
+++ b/public/emoji/1f468-1f3fc-200d-1f9af.svg
@@ -0,0 +1 @@
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#CCD6DD" d="M12.154 19.416l.802.598L3.988 32.04l-.802-.598z"/><path fill="#DD2E44" d="M3.186 31.444L1.093 34.25c-.164.22-.119.535.102.7s.535.119.7-.102l2.092-2.806-.801-.598z"/><path fill="#292F33" d="M11.359 21.319c-.22-.164-.266-.479-.102-.7l1.793-2.405c.164-.22.479-.266.7-.102.22.164.266.479.102.7l-1.793 2.405c-.164.221-.479.267-.7.102z"/><path fill="#292F33" d="M11.76 21.618l-.802-.598c-.22-.164-.266-.479-.102-.7.164-.22.479-.266.7-.102l.802.598c.22.164.266.479.102.7-.164.221-.479.267-.7.102z"/><path fill="#99AAB5" d="M.598 35.751c-.22-.164-.266-.479-.102-.7.164-.22.479-.266.7-.102.22.164.266.479.102.7-.165.22-.48.266-.7.102z"/><path fill="#292F33" d="M20.436 35.056s.061-.144.061-.448c0-.303-.156-.869-.199-.95-.043-.081-.09-.139-.194-.11-.079.022-.685.326-1.072.341-.719.027-1.066-.618-1.066-.618s-.399.228-.716.413c-.318.185-.687.462-.959.627-.232.141-.497.208-.771.243s-.497.023-.563.029c-.066.006-.621-.061-.641.488l.004.16s.987.397 2.344.397 1.566-.399 2.444-.399c.877 0 1.328-.173 1.328-.173z"/><path fill="#292F33" d="M18.685 35.926c-.058-.052-.123-.22-.173-.243-.05-.023-.57.089-.813.146-.243.058-.66.156-1.152.156-.491 0-1.126-.144-1.519-.243-.393-.098-.701-.23-.77-.274-.07-.043-.05-.063-.046-.096.004-.033.052-.202.052-.202s.251.132.678.237c.426.104.851.183 1.584.183s1.193-.109 1.574-.211c.475-.128 1.163-.267 1.656-.267.38 0 .648-.112.751-.139.024-.006.046.012.046.037v.649c0 .042-.035.139-.146.162-.112.024-1.664.157-1.722.105zm12.222-5.012s-.072-.142-.307-.343-.777-.454-.868-.473c-.091-.02-.167-.022-.213.078-.035.075-.199.746-.444 1.056-.454.575-1.184.418-1.184.418s-.087.46-.153.828-.096.838-.148 1.158c-.044.273-.167.523-.322.758-.154.236-.31.4-.35.456-.039.055-.457.441-.045.82l.127.101s.96-.502 1.857-1.555c.897-1.052.726-1.477 1.306-2.158.58-.68.744-1.144.744-1.144z"/><path fill="#292F33" d="M30.425 32.846c-.078.01-.252-.05-.303-.026-.051.024-.308.5-.424.727-.116.226-.316.615-.64.996s-.856.778-1.192 1.018c-.336.24-.642.391-.721.416s-.082-.003-.104-.028c-.022-.025-.122-.174-.122-.174s.269-.107.631-.369c.363-.261.705-.538 1.189-1.107.484-.568.704-.997.876-1.36.214-.452.562-1.078.887-1.46.251-.295.342-.576.388-.674.011-.023.04-.028.059-.012l.503.429c.033.028.085.118.029.22-.055.103-.978 1.394-1.056 1.404z"/><path fill="#F3D2A2" d="M21.5 1.384c-1.593-.627-4.077.182-4.365 2.043-.287 1.848.239 4.747 1.863 4.572 1.702-.184 3.448-.554 4.138-2.307s-.042-3.681-1.636-4.308z"/><path fill="#F3D2A2" d="M22.684 6.143c2.318-2.723-3.266-2.458-3.266-2.458-1.057.038-.329 1.799-.827 2.761-.341.665 1.095 1.018 1.095 1.018s.659-.01.694.79v.007c.008.204-.013.445-.108.769-.473 1.601 1.677 2.582 2.149.978.187-.635.114-1.193.02-1.708l-.009-.046c-.144-.766-.322-1.437.252-2.111z"/><path fill="#FFE51E" d="M23.32 2.026C22.259.784 20.74.125 18.301 1.235c-.994.452-1.439.285-1.58.484-.679.953.246 2.01.608 1.799 1.148-.669 2.183-.47 2.447.014s.021 1.354.234 1.359c.578.016.484-.551.714-.878.375-.534.946-.232 1.071.362.099.471 0 1.271-.77 1.412.523 1.151 1.56 1.502 1.56 1.502s.337.132.912-1.001c.576-1.134.877-3.029-.177-4.262z"/><path fill="#2A6797" d="M18.558 34.203c-1.266.109-1.853-.233-1.721-.416.165-.228.128-.397.13-.536.028-2.441-.472-5.991-.472-5.991 0-.348.003-.813.312-1.562.778-1.883 3.951-7.69 3.951-7.69.548-.958 1.771-1.293 2.729-.744.959.548 1.122 1.405.744 2.729-.715 2.508-2.965 5.602-3.903 7.477.224 2.121-.174 3.853.035 5.857.03.288-.54.767-1.805.876z"/><path fill="#4289C1" d="M29.292 31.931c-.364.553-.97.942-1.598.838-1.269-1.924-4.955-5.321-4.955-5.321-.241-.25-.562-.587-.86-1.341-.748-1.895-2.498-8.277-2.498-8.277-.272-1.07.376-2.16 1.446-2.43 1.07-.272 1.783.232 2.43 1.446 1.227 2.301 1.757 6.09 2.384 8.09 1.87 1.568 2.383 3.603 4.275 5.151-.064.857-.26 1.291-.624 1.844z"/><path fill="#77B255" d="M25.495 20s0 1-2 1h-4.898c-.415-2-.027-5.004.006-7.765.043-3.623 2.298-5.609 3.71-5.155 1.846.594 2.693 2.641 2.932 5.858.239 3.216.25 6.062.25 6.062z"/><path fill="#F3D2A2" d="M20.029 11.693c-.781 1.172-2.291 3.808-2.518 3.909-1.205.534-2.549 1.22-3.445 1.314-.649.068-1.254.68-1.508.925-.316.304-.75 1.008-.63 1.37.075.226.571.488.742.253.332-.458.973-.535 1.49-.889 1.038-.712 3.284-.765 4.556-1.709.528-.391 1.677-1.309 3.2-3.9-.592-.426-1.887-1.273-1.887-1.273z"/><path fill="#292F33" d="M14.21 17.018c.477.152.847.624.557 1.114-.29.49.403.185.512-.045.223-.468-.178-1.158-.646-1.314-.468-.156-.746.142-.423.245z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f468-1f3fc-200d-1f9bc.svg b/public/emoji/1f468-1f3fc-200d-1f9bc.svg
new file mode 100644
index 0000000000000000000000000000000000000000..08bc53e6de289db760d1c25f106275f58637dd62
--- /dev/null
+++ b/public/emoji/1f468-1f3fc-200d-1f9bc.svg
@@ -0,0 +1 @@
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#F3D2A2" d="M26.007 1.015c-1.214-.871-3.488-.718-4.13.795-.638 1.502-.813 4.067.598 4.266 1.479.209 3.036.269 3.994-1.066.959-1.335.752-3.124-.462-3.995z"/><path fill="#F3D2A2" d="M25.99 5.295c2.544-1.808-2.238-2.778-2.238-2.778-.902-.194-.664 1.452-1.29 2.159-.431.49.708 1.096.708 1.096s.56.133.419.817l-.002.006c-.037.174-.107.374-.256.627-.743 1.253.866 2.543 1.609 1.287.294-.497.352-.985.382-1.441l.003-.041c.043-.679.036-1.285.665-1.732z"/><path fill="#FFE51E" d="M27.409 1.948C26.777.671 25.632-.212 23.332.206c-.937.17-1.279-.066-1.441.071-.778.661-.222 1.753.13 1.652 1.114-.321 1.948.069 2.068.535.12.466-.272 1.15-.092 1.2.486.137.528-.363.791-.59.431-.371.85.006.829.535-.017.42-.272 1.075-.953 1.03.196 1.086.998 1.604.998 1.604s.256.184.986-.652c.729-.836 1.389-2.375.761-3.643z"/><path fill="#292F33" d="M8.22 28.583s.108-.118.211-.409c.104-.291.147-.888.133-.98-.014-.092-.039-.164-.148-.171-.083-.006-.768.08-1.145-.039-.699-.22-.812-.957-.812-.957s-.46.083-.829.152c-.368.069-.818.209-1.134.274-.271.056-.548.03-.823-.03-.275-.06-.485-.147-.55-.165-.066-.017-.575-.27-.782.25l-.051.154s.811.718 2.114 1.182c1.303.464 1.639.152 2.481.452.843.3 1.335.287 1.335.287z"/><path fill="#292F33" d="M6.243 28.821c-.038-.07-.043-.253-.083-.292-.04-.039-.577-.11-.83-.137-.253-.027-.687-.076-1.158-.244-.471-.168-1.032-.523-1.375-.752-.343-.228-.594-.46-.646-.526s-.026-.078-.011-.107.119-.176.119-.176.196.213.569.459.754.467 1.458.717c.703.25 1.182.303 1.583.335.499.039 1.207.141 1.681.309.365.13.66.114.768.123.025.002.04.027.032.051l-.222.623c-.014.041-.081.121-.196.105s-1.651-.419-1.689-.488z"/><path fill="#4289C1" d="M25.097 17.21c.069 1.432-.391 2.922-1.505 3.202-1.066.268-3.056-.151-3.056-.151s-.698.408-.531 1.189c.095.444.257.67.201.712-.05.038-.486-.022-.684-.032-.528-.027-1.1-.211-2.073-.484-.974-.273-1.421-.285-2.481-.577-1.175-.324-1.986-.835-2.33-1.956-.293-.956.277-2.123 1.654-2.63 1.12-.412 4.339-.347 5.539-.231 1.201.118 5.206-.287 5.266.958z"/><path fill="#4289C1" d="M7.002 27.225c-.646-.143-1.293-.6-1.419-1.224 1.346-1.871 3.671-7.538 3.671-7.538.695-1.744 1.517-3.426 3.133-3.182 2.081.315 5.629 1.028 5.629 1.028 2.276.329 1.144 1.007 1.778 1.912.635.903-1.294 1.99-2.786 1.891-2.602-.173-3.877-.453-5.522.846-.8 2.306-2.071 4.087-2.844 6.406-.826.244-.993.004-1.64-.139z"/><path fill="#77B255" d="M25.569 16.971c-.211.688-.149 1.604-.515 1.362-1.444-.957-5.521-2.045-5.521-2.045.049-1.673.979-3.969 1.559-6.148.762-2.86 3.067-3.951 4.171-3.289 1.443.865 1.75 2.668 1.308 5.266s-.791 4.166-1.002 4.854z"/><path fill="#66757F" d="M27.811 10.609l.425-5.242c.022-.274.265-.48.539-.458.274.022.48.265.458.539l-.425 5.242c-.022.274-.265.48-.539.458-.274-.022-.48-.265-.458-.539z"/><path fill="#292F33" d="M16 21v2s-2 0-2 2v3c0 1 1 2 2 2h10c1 0 2-1 2-2v-5c0-1-1-2-2-2H16z"/><path fill="#292F33" d="M22.956 22.559l-9.848-1.736c-.985-.174-.985-.174-.811-1.158.096-.542.617-.907 1.158-.811l9.848 1.736c.542.096.907.617.811 1.158-.173.985-.173.985-1.158.811z"/><path fill="#292F33" d="M25.238 19.023c-.193.922-.557 1.827-2.094 1.537-1.537-.29-1.782 1.225-.824 1.493.958.267 3.252.646 3.921-.446.668-1.092.78-2.139.713-2.606s-1.572-.66-1.716.022z"/><path fill="#DD2E44" d="M23.442 22.896l-10.833-1.91c-.271-.048-.453-.308-.406-.579.048-.271.308-.453.579-.406l10.833 1.91c.271.048.453.308.406.579-.048.271-.309.454-.579.406z"/><path fill="#292F33" d="M28.932 9.642l-1.736 9.848c-.174.985-.174.985-1.158.811-.542-.096-.907-.617-.811-1.158l1.736-9.848c.096-.542.617-.907 1.158-.811.984.173.984.173.811 1.158zm.992-7.49l-.713 4.025c-.087.493-.168 1.007-1.153.834-.542-.096-.882-.715-.763-1.398l.639-3.609c.163-.579.626-1.004 1.167-.909.985.173.91.564.823 1.057z"/><path fill="#DD2E44" d="M29.406 9.224l-1.91 10.833c-.048.271-.308.453-.579.406-.271-.048-.453-.308-.406-.579l1.91-10.833c.048-.271.308-.453.579-.406.272.048.454.308.406.579zm1.243-7.455l-.91 5.18c-.048.271-.308.453-.579.406-.271-.048-.453-.308-.406-.579l.91-5.18c.048-.271.308-.453.579-.406.271.047.454.308.406.579z"/><path fill="#292F33" d="M25.494 18.441l-7.466-1.316c-.747-.132-.747-.132-.617-.869.071-.405.466-.678.877-.606l7.466 1.316c.411.072.688.463.617.869-.13.738-.13.738-.877.606z"/><path fill="#DD2E44" d="M23.123 21.824c.993.175 2.954.521 3.475-2.433s1.506-2.781.985.174-2.237 3.667-4.634 3.245c-1.969-.348-1.796-1.333.174-.986zm-10.33-1.821c1.971.34 2.277 1.422.308 1.07-.873-.156-.984.212-1.251.958-.252.702-.611 1.757-1.144 3.23-.391 1.082-1.279.603-.95-.342.551-1.588 1.061-2.968 1.392-3.847.338-.895.613-1.247 1.645-1.069z"/><path fill="#DD2E44" d="M10.62 24.01c-.258-.094-.547.04-.641.299l-2.052 5.638c-.094.258.04.547.299.641.258.094.547-.04.641-.299l2.052-5.638c.094-.259-.041-.547-.299-.641z"/><path fill="#66757F" d="M8.226 30.588L4.467 29.22c-.258-.094-.393-.382-.299-.641.094-.258.382-.393.641-.299l3.759 1.368c.258.094.393.382.299.641-.094.258-.383.393-.641.299z"/><path fill="#DD2E44" d="M13.844 30.862l2.95-2.95c.194-.194.194-.513 0-.707-.194-.194-.513-.194-.707 0l-2.95 2.95c-.194.194-.194.513 0 .707.194.194.512.194.707 0zM32 34c-.55 0-1-.45-1-1v-3c0-.55.45-1 1-1s1 .45 1 1v3c0 .55-.45 1-1 1z"/><path fill="#DD2E44" d="M13.5 34c-.55 0-1-.45-1-1v-3c0-.55.45-1 1-1s1 .45 1 1v3c0 .55-.45 1-1 1zm12.983-6.005h2c.275 0 .5-.225.5-.5s-.225-.5-.5-.5h-2c-.275 0-.5.225-.5.5s.225.5.5.5z"/><path fill="#DD2E44" d="M31.123 30.803l-2.95-2.95c-.194-.194-.194-.513 0-.707.194-.194.513-.194.707 0l2.95 2.95c.194.194.194.513 0 .707-.194.195-.512.195-.707 0z"/><path fill="#292F33" d="M11.672 16.127c.742.318 2.05.936 2.339 1.047 0 0 .134-.891.49-.891 0 0 .134-.468.223-.668s.356-.134.379.245c.022.379-.089.512-.089.512s.334.423.134 1.002c0 0 .446.067.356.624-.089.557.067.98-.334 1.092-.401.111-1.916.535-1.938-.067-.022-.601-.401-1.069-1.136-1.515-.735-.446-1.27-.936-1.181-1.181.088-.244.133-.467.757-.2z"/><path fill="#DD2E44" d="M26.5 25h-11c-.275 0-.5-.225-.5-.5s.225-.5.5-.5h11c.275 0 .5.225.5.5s-.225.5-.5.5z"/><path fill="#F3D2A2" d="M22.691 10.276c-.579 1.455-1.125 3.55-1.381 3.561-1.473.062-3.079.948-4.006.893-.672-.04-1.306-.167-1.651-.05-.552.187-1.159.289-1.351.632-.195.348.171.657 1.035.656.635 0 1.045.208 1.674.06.896-.21 3.986.754 5.665-.345.566-.371 1.441-1.871 2.525-4.663-1.084-.477-2.51-.744-2.51-.744z"/><circle fill="#66757F" cx="21.5" cy="31.5" r="4.5"/><circle fill="#66757F" cx="13.5" cy="33.5" r="2.5"/><circle fill="#66757F" cx="32" cy="34" r="2"/><circle fill="#CCD6DD" cx="21.5" cy="31.5" r="2.5"/><circle fill="#CCD6DD" cx="13.5" cy="33.5" r="1.5"/><circle fill="#292F33" cx="32" cy="34" r="1"/><g fill="#292F33"><circle cx="22" cy="30.634" r=".5"/><circle cx="21" cy="32.366" r=".5"/><circle cx="20.634" cy="31" r=".5"/><circle cx="22.366" cy="32" r=".5"/></g><circle fill="#292F33" cx="13.5" cy="33.5" r=".75"/><circle fill="#66757F" cx="32" cy="34" r=".5"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f468-1f3fc-200d-1f9bd.svg b/public/emoji/1f468-1f3fc-200d-1f9bd.svg
new file mode 100644
index 0000000000000000000000000000000000000000..6fbe0659ce462011f519e6fecb6fd4eda7bd5e5c
--- /dev/null
+++ b/public/emoji/1f468-1f3fc-200d-1f9bd.svg
@@ -0,0 +1 @@
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#F3D2A2" d="M21.96.974c-1.285-.762-3.537-.411-4.045 1.152-.504 1.552-.455 4.123.968 4.198 1.492.079 3.048.003 3.886-1.41.838-1.414.476-3.178-.809-3.94z"/><path fill="#F3D2A2" d="M22.316 5.239c2.376-2.023-2.471-2.572-2.471-2.572-.916-.114-.535 1.504-1.097 2.263-.387.526.801 1.03.801 1.03s.569.083.488.777l-.001.006c-.021.177-.074.382-.2.647-.631 1.313 1.085 2.458 1.715 1.142.249-.521.265-1.012.255-1.469l-.001-.041c-.017-.68-.076-1.283.511-1.783z"/><path fill="#FFE51E" d="M23.439 1.781C22.698.564 21.481-.216 19.225.4c-.919.251-1.279.045-1.429.196-.718.726-.068 1.766.273 1.634 1.082-.417 1.946-.101 2.106.353.16.454-.171 1.169.013 1.204.496.094.494-.407.737-.657.397-.408.847-.068.872.461.02.419-.177 1.095-.86 1.109.29 1.065 1.134 1.511 1.134 1.511s.271.161.925-.735c.655-.896 1.178-2.486.443-3.695z"/><path fill="#292F33" d="M8.211 30.079s.097-.127.175-.426c.078-.299.069-.897.047-.988-.022-.091-.053-.16-.163-.158-.083.001-.759.146-1.144.061-.716-.158-.892-.883-.892-.883s-.452.123-.812.223c-.361.101-.796.279-1.106.372-.265.079-.543.078-.823.041-.279-.036-.496-.105-.563-.116s-.597-.219-.757.317l-.037.159s.871.645 2.209.993 1.646.009 2.511.234 1.355.171 1.355.171z"/><path fill="#292F33" d="M6.262 30.488c-.044-.066-.065-.248-.109-.284-.043-.036-.585-.059-.839-.064-.254-.005-.691-.016-1.175-.142s-1.074-.431-1.436-.629-.632-.407-.689-.468c-.057-.061-.033-.075-.02-.106.013-.031.103-.186.103-.186s.214.195.607.407.792.399 1.514.587 1.204.199 1.606.195c.501-.004 1.215.035 1.701.162.375.098.668.056.776.056.025 0 .043.023.036.048l-.167.64c-.011.042-.07.128-.186.122-.114-.004-1.679-.271-1.722-.338z"/><path fill="#4289C1" d="M24.032 17.279c.193 1.421-.135 2.945-1.22 3.321-1.039.36-3.058.116-3.058.116s-.66.468-.426 1.231c.133.434.314.645.262.692-.046.042-.486.02-.684.027-.528.02-1.114-.115-2.108-.301-.994-.187-1.44-.16-2.522-.359-1.198-.22-2.051-.659-2.491-1.745-.375-.927.091-2.139 1.419-2.764 1.08-.508 4.292-.724 5.498-.712 1.207.011 5.162-.741 5.33.494z"/><path fill="#4289C1" d="M6.879 28.832c-.656-.086-1.341-.485-1.521-1.095 1.178-1.982 3-7.829 3-7.829.541-1.798 1.213-3.546 2.843-3.443 2.1.133 5.697.533 5.697.533 2.296.13 1.228.904 1.938 1.75.712.845-1.115 2.095-2.611 2.126-2.607.054-3.902-.113-5.428 1.324-.596 2.367-1.706 4.252-2.275 6.63-.799.315-.987.091-1.643.004z"/><path fill="#77B255" d="M24.698 16.173c.029.719.15 1.674-.276 1.567-1.679-.424-5.438-.168-5.438-.168-.508-1.594-.392-4.069-.566-6.317-.229-2.95 1.585-4.744 2.845-4.485.513.105 1.136.428 1.511.77.278.253.924.961 1.141 1.169 1.106 1.06.124 1.405.327 2.596.444 2.597.427 4.149.456 4.868z"/><g fill="#DD2E44"><path d="M13.465 27.092l10.824.95c.274.024.518-.181.542-.455.024-.274-.181-.518-.455-.542l-10.824-.95c-.274-.024-.518.181-.542.455-.024.274.181.518.455.542z"/><path d="M24.288 28.041c-.274-.024-.478-.268-.455-.542l.436-4.981c.024-.274.268-.478.542-.455.274.024.478.268.455.542l-.436 4.981c-.024.275-.268.479-.542.455zm-10.738-7.58c-.274-.024-.518.181-.542.455l-1.015 11.597c-.024.274.181.518.455.542.274.024.518-.181.542-.455l1.015-11.597c.023-.274-.181-.518-.455-.542z"/></g><path fill="#292F33" d="M23.524 20.592c1.431-.206 2.834-.148 2.345.544-.489.692-1.575 1.905-3.418 1.707-1.844-.198.185-2.123 1.073-2.251z"/><path fill="#292F33" d="M22.45 22.843l-9.962-.872c-.996-.087-.996-.087-.909-1.083.048-.548.535-.957 1.083-.909l9.962.872c.548.048.957.535.909 1.083-.087.996-.087.996-1.083.909z"/><path fill="#DD2E44" d="M22.964 23.136l-10.958-.959c-.274-.024-.478-.268-.455-.542.024-.274.268-.478.542-.455l10.958.959c.274.024.478.268.455.542-.025.275-.268.479-.542.455z"/><path fill="#292F33" d="M27.278 9.454l-.872 9.962c-.087.996-.087.996-1.083.909-.548-.048-.957-.535-.909-1.083l.872-9.962c.048-.548.535-.957 1.083-.909.996.087.996.087.909 1.083z"/><path fill="#DD2E44" d="M27.714 8.996l-.959 10.958c-.024.274-.268.478-.542.455-.274-.024-.478-.268-.455-.542l.959-10.958c.024-.274.268-.478.542-.455.274.025.479.268.455.542z"/><path fill="#292F33" d="M24.62 18.519l-7.552-.661c-.755-.066-.755-.066-.69-.812.036-.41.405-.716.82-.68l7.552.661c.415.036.726.402.69.812-.064.746-.064.746-.82.68z"/><path fill="#DD2E44" d="M22.553 22.096c1.004.088 2.989.261 3.25-2.727s1.258-2.901.996.087-1.909 3.848-4.333 3.636c-1.993-.174-1.906-1.17.087-.996zm-10.449-.914c1.993.166 2.392 1.218.4 1.039-.883-.079-.962.297-1.163 1.063-.189.721-.456 1.803-.858 3.318-.295 1.112-1.221.712-.977-.257.411-1.63.798-3.05 1.052-3.953.258-.922.502-1.297 1.546-1.21z"/><g fill="#66757F"><circle cx="24.5" cy="27.5" r="1.5"/><path d="M31.245 30.817l-6.062-3.5 3.5-6.062-.866-.5-3.5 6.062-6.062-3.5-.5.866 6.062 3.5-3.5 6.062.866.5 3.5-6.062 6.062 3.5z"/><path d="M26.924 34.615l-1.812-6.761 6.762-1.812-.259-.966-6.761 1.812-1.812-6.762-.966.259 1.812 6.761-6.762 1.812.259.966 6.761-1.812 1.812 6.762z"/></g><path fill="#292F33" d="M24.5 19c-4.694 0-8.5 3.806-8.5 8.5s3.806 8.5 8.5 8.5 8.5-3.806 8.5-8.5-3.806-8.5-8.5-8.5zm0 15c-3.59 0-6.5-2.91-6.5-6.5s2.91-6.5 6.5-6.5 6.5 2.91 6.5 6.5-2.91 6.5-6.5 6.5z"/><path fill="#66757F" d="M24.5 20c-4.142 0-7.5 3.358-7.5 7.5s3.358 7.5 7.5 7.5 7.5-3.358 7.5-7.5-3.358-7.5-7.5-7.5zm0 14c-3.59 0-6.5-2.91-6.5-6.5s2.91-6.5 6.5-6.5 6.5 2.91 6.5 6.5-2.91 6.5-6.5 6.5zm-9.152-.433l-2.165-1.25 1.25-2.165-.866-.5-1.25 2.165-2.165-1.25-.5.866 2.165 1.25-1.25 2.165.866.5 1.25-2.165 2.165 1.25z"/><path fill="#292F33" d="M12.5 29C10.567 29 9 30.567 9 32.5s1.567 3.5 3.5 3.5 3.5-1.567 3.5-3.5-1.567-3.5-3.5-3.5zm0 6c-1.381 0-2.5-1.119-2.5-2.5s1.119-2.5 2.5-2.5 2.5 1.119 2.5 2.5-1.119 2.5-2.5 2.5z"/><path fill="#DD2E44" d="M10.288 25.363c-.266-.071-.541.088-.612.354l-1.553 5.796c-.071.266.088.541.354.612.266.071.541-.088.612-.354l1.553-5.796c.07-.265-.089-.541-.354-.612z"/><path fill="#66757F" d="M8.476 32.125L4.612 31.09c-.266-.071-.425-.347-.354-.612.071-.266.347-.425.612-.354l3.864 1.035c.266.071.426.346.354.612-.071.266-.346.425-.612.354z"/><path fill="#DD2E44" d="M30.103 9.969l-2.954-.521c-.271-.048-.453-.308-.406-.579.048-.271.308-.453.579-.406l2.954.521c.271.048.453.308.406.579-.048.272-.308.454-.579.406z"/><path fill="#292F33" d="M31.088 10.143l-2.615-.467c-.271-.048-.26-.274-.213-.545.048-.271.116-.487.386-.44l2.615.467c.271.048.453.308.406.579-.048.271-.308.454-.579.406z"/><path fill="#F3D2A2" d="M22.118 10.597c1.142.988 3.458 2.697 3.436 2.951-.128 1.469.543 3.175.369 4.087-.126.661-.665 1.138-.594 1.495.667-.009.443 1.15.729 1.665.301.542 1.171-.093 1.282-.949.081-.629-.102-1.11-.167-1.752-.093-.915 1.094-3.661.22-5.467-.295-.609-1.531-2.277-3.635-4.122-.595.457-1.64 2.092-1.64 2.092z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f468-1f3fd-200d-1f91d-200d-1f468-1f3fb.svg b/public/emoji/1f468-1f3fd-200d-1f91d-200d-1f468-1f3fb.svg
new file mode 100644
index 0000000000000000000000000000000000000000..bb34ac8550ff5fe008974c7c4d1a455d76773b20
--- /dev/null
+++ b/public/emoji/1f468-1f3fd-200d-1f91d-200d-1f468-1f3fb.svg
@@ -0,0 +1 @@
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#963B22" d="M10.498 0c-1.186 0-2.282.379-3.18 1.018-1.847.096-3.32 1.611-3.32 3.482 0 1.542.007 3.484 2.038 4.208C7.035 10.094 8.659 11 10.498 11c3.037 0 5.5-2.462 5.5-5.499 0-3.038-2.462-5.501-5.5-5.501z"/><path fill="#D4AB88" d="M17.896 26.76c.271.091.487-.159.586-.302.279-.405.422-1.309.004-2.227-.423-.927-.702-2.072-1.69-3.821-.115-.204-.494-2.746-1.242-4.354-.202-.435-1.495-.684-2.009-.529-.513.154.005.98.037 1.134.344 1.651 1.305 4.077 1.45 4.404.8 1.806 1.965 2.389 2.071 3.706.055.69.205 1.286.6 1.228.092.352.093.728.193.761zM3.3 26.964c-.257.126-.504-.094-.62-.222-.33-.365-.591-1.242-.296-2.208.297-.975.424-2.146 1.174-4.01.087-.217.129-2.787.66-4.479.143-.457 1.392-.875 1.922-.789.529.086.124.972.112 1.129-.124 1.682-.758 4.213-.859 4.556-.556 1.895-1.634 2.627-1.566 3.946.036.692-.034 1.302-.433 1.296-.048.363 0 .735-.094.781z"/><path fill="#AAB8C2" d="M13.554 29.5c.5-2.734.422-6.5.422-6.5H6.013s-.078 3.766.422 6.5c.063.344.188 3.344-.109 5.5-.066.479 2.886.937 2.844-.125-.078-1.969.264-3.513.328-4.5.035-.547.25-1.875.344-3.208.011-.018.295-.018.306 0 .094 1.333.308 2.661.344 3.208.064.987.406 2.531.328 4.5-.042 1.062 2.91.604 2.844.125-.298-2.156-.173-5.156-.11-5.5z"/><path fill="#292F33" d="M14.538 36c.499-.406-.041-1.161-1.42-1.402-1.163-.203-2.2-.032-2.363.35-.212.493-.05 1.052-.05 1.052h3.833zm-9.117 0c-.499-.406.041-1.161 1.42-1.402 1.163-.203 2.2-.032 2.363.35.212.493.05 1.052.05 1.052H5.421z"/><path fill="#4289C1" d="M14.795 14.766C13.577 14 11.998 14 11.998 14h-4s-1.578 0-2.797.766c-1.201.754-1.656 3-1.656 3l2.203.688.11 5.546h8.281l.109-5.547 2.203-.688c.001.001-.455-2.245-1.656-2.999z"/><path fill="#D4AB88" d="M7.998 10.042v4c0 .682.896 1.305 2 1.305s2-.668 2-1.305v-4h-4z"/><path fill="#CC9B7A" d="M7.998 14.042c0 .682.896 1.305 2 1.305s2-.668 2-1.305V11l-4 .019v3.023z"/><path fill="#D4AB88" d="M14.998 3h-10v6c0 2.762 2.238 5 5 5s5-2.237 5-5V3z"/><path fill="#963B22" d="M4.998 2.5l-.5 2.5.5 2c2.333 0 2.85-2.412 2.965-3.488C8.002 4.588 8.778 7 14.998 7l.5-2-.5-2.5h-10z"/><path fill="#C1694F" d="M11.998 12h-4s0 1 2 1 2-1 2-1z"/><circle fill="#662113" cx="7.498" cy="8.5" r=".5"/><circle fill="#662113" cx="12.498" cy="8.5" r=".5"/><path fill="#C1694F" d="M8.998 10h2s0 1-1 1-1-1-1-1z"/><path fill="#292F33" d="M26.5 0c-1.187 0-2.282.379-3.181 1.018C21.473 1.114 20 2.629 20 4.5c0 1.542.007 3.484 2.038 4.208C23.036 10.094 24.66 11 26.5 11c3.037 0 5.5-2.462 5.5-5.499C32 2.463 29.537 0 26.5 0z"/><path fill="#F7DECE" d="M18.117 26.76c-.271.091-.487-.159-.586-.302-.279-.405-.422-1.309-.004-2.227.423-.927.702-2.072 1.69-3.821.115-.204.494-2.746 1.242-4.354.202-.435 1.495-.684 2.009-.529.513.154-.005.98-.037 1.134-.344 1.651-1.305 4.077-1.45 4.404-.8 1.806-1.965 2.389-2.071 3.706-.055.69-.205 1.286-.6 1.228-.092.352-.094.728-.193.761zm14.595.204c.257.126.504-.094.62-.222.33-.365.591-1.242.296-2.208-.297-.975-.424-2.146-1.174-4.01-.087-.217-.129-2.787-.66-4.479-.143-.457-1.392-.875-1.922-.789-.529.086-.124.972-.112 1.129.124 1.682.758 4.213.859 4.556.556 1.895 1.634 2.627 1.566 3.946-.036.692.034 1.302.433 1.296.048.363 0 .735.094.781z"/><path fill="#F7DECE" d="M18.117 26.76c-.271.091-.487-.159-.586-.302-.279-.405-.422-1.309-.004-2.227.423-.927.702-2.072 1.69-3.821.115-.204.494-2.746 1.242-4.354.202-.435 1.495-.684 2.009-.529.513.154-.005.98-.037 1.134-.344 1.651-1.305 4.077-1.45 4.404-.8 1.806-1.965 2.389-2.071 3.706-.055.69-.205 1.286-.6 1.228-.092.352-.094.728-.193.761zm14.595.204c.257.126.504-.094.62-.222.33-.365.591-1.242.296-2.208-.297-.975-.424-2.146-1.174-4.01-.087-.217-.129-2.787-.66-4.479-.143-.457-1.392-.875-1.922-.789-.529.086-.124.972-.112 1.129.124 1.682.758 4.213.859 4.556.556 1.895 1.634 2.627 1.566 3.946-.036.692.034 1.302.433 1.296.048.363 0 .735.094.781z"/><path fill="#67757F" d="M29.555 29.5c.5-2.734.422-6.5.422-6.5h-7.963s-.078 3.766.422 6.5c.063.344.188 3.344-.109 5.5-.066.479 2.886.937 2.844-.125-.078-1.969.264-3.513.328-4.5.035-.547.25-1.875.344-3.208.011-.018.295-.018.306 0 .094 1.333.308 2.661.344 3.208.064.987.406 2.531.328 4.5-.042 1.062 2.91.604 2.844.125-.297-2.156-.172-5.156-.11-5.5z"/><path fill="#292F33" d="M30.54 36c.499-.406-.041-1.161-1.42-1.402-1.163-.203-2.2-.032-2.363.35-.212.493-.05 1.052-.05 1.052h3.833zm-9.117 0c-.499-.406.041-1.161 1.42-1.402 1.163-.203 2.2-.032 2.363.35.212.494.05 1.053.05 1.053L21.423 36z"/><path fill="#78B159" d="M30.797 14.766C29.578 14 28 14 28 14h-4s-1.578 0-2.797.766c-1.201.754-1.656 3-1.656 3l2.203.688.109 5.546h8.281l.109-5.547 2.203-.688c.001.001-.454-2.245-1.655-2.999z"/><path fill="#F7DECE" d="M24 10.042v4c0 .682.896 1.305 2 1.305s2-.668 2-1.305v-4h-4z"/><path fill="#EEC2AD" d="M24 14.042c0 .682.896 1.305 2 1.305s2-.668 2-1.305V11l-4 .019v3.023z"/><path fill="#F7DECE" d="M31 3H21v6c0 2.762 2.238 5 5 5s5-2.237 5-5V3z"/><path fill="#292F33" d="M21 2.5L20.5 5l.5 2c2.333 0 2.85-2.412 2.965-3.488C24.004 4.588 24.779 7 31 7l.5-2-.5-2.5H21z"/><path fill="#C1694F" d="M28 12h-4s0 1 2 1 2-1 2-1z"/><circle fill="#662113" cx="23.5" cy="8.5" r=".5"/><circle fill="#662113" cx="28.5" cy="8.5" r=".5"/><path fill="#C1694F" d="M25 10h2s0 1-1 1-1-1-1-1z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f468-1f3fd-200d-1f91d-200d-1f468-1f3fc.svg b/public/emoji/1f468-1f3fd-200d-1f91d-200d-1f468-1f3fc.svg
new file mode 100644
index 0000000000000000000000000000000000000000..4d6b0dd69ca58c88c09db050c5d694dc56ab2f70
--- /dev/null
+++ b/public/emoji/1f468-1f3fd-200d-1f91d-200d-1f468-1f3fc.svg
@@ -0,0 +1 @@
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#963B22" d="M10.498 0c-1.186 0-2.282.379-3.18 1.018-1.847.096-3.32 1.611-3.32 3.482 0 1.542.007 3.484 2.038 4.208C7.035 10.094 8.659 11 10.498 11c3.037 0 5.5-2.462 5.5-5.499 0-3.038-2.462-5.501-5.5-5.501z"/><path fill="#D4AB88" d="M17.896 26.76c.271.091.487-.159.586-.302.279-.405.422-1.309.004-2.227-.423-.927-.702-2.072-1.69-3.821-.115-.204-.494-2.746-1.242-4.354-.202-.435-1.495-.684-2.009-.529-.513.154.005.98.037 1.134.344 1.651 1.305 4.077 1.45 4.404.8 1.806 1.965 2.389 2.071 3.706.055.69.205 1.286.6 1.228.092.352.093.728.193.761zM3.3 26.964c-.257.126-.504-.094-.62-.222-.33-.365-.591-1.242-.296-2.208.297-.975.424-2.146 1.174-4.01.087-.217.129-2.787.66-4.479.143-.457 1.392-.875 1.922-.789.529.086.124.972.112 1.129-.124 1.682-.758 4.213-.859 4.556-.556 1.895-1.634 2.627-1.566 3.946.036.692-.034 1.302-.433 1.296-.048.363 0 .735-.094.781z"/><path fill="#AAB8C2" d="M13.554 29.5c.5-2.734.422-6.5.422-6.5H6.013s-.078 3.766.422 6.5c.063.344.188 3.344-.109 5.5-.066.479 2.886.937 2.844-.125-.078-1.969.264-3.513.328-4.5.035-.547.25-1.875.344-3.208.011-.018.295-.018.306 0 .094 1.333.308 2.661.344 3.208.064.987.406 2.531.328 4.5-.042 1.062 2.91.604 2.844.125-.298-2.156-.173-5.156-.11-5.5z"/><path fill="#292F33" d="M14.538 36c.499-.406-.041-1.161-1.42-1.402-1.163-.203-2.2-.032-2.363.35-.212.493-.05 1.052-.05 1.052h3.833zm-9.117 0c-.499-.406.041-1.161 1.42-1.402 1.163-.203 2.2-.032 2.363.35.212.493.05 1.052.05 1.052H5.421z"/><path fill="#4289C1" d="M14.795 14.766C13.577 14 11.998 14 11.998 14h-4s-1.578 0-2.797.766c-1.201.754-1.656 3-1.656 3l2.203.688.11 5.546h8.281l.109-5.547 2.203-.688c.001.001-.455-2.245-1.656-2.999z"/><path fill="#D4AB88" d="M7.998 10.042v4c0 .682.896 1.305 2 1.305s2-.668 2-1.305v-4h-4z"/><path fill="#CC9B7A" d="M7.998 14.042c0 .682.896 1.305 2 1.305s2-.668 2-1.305V11l-4 .019v3.023z"/><path fill="#D4AB88" d="M14.998 3h-10v6c0 2.762 2.238 5 5 5s5-2.237 5-5V3z"/><path fill="#963B22" d="M4.998 2.5l-.5 2.5.5 2c2.333 0 2.85-2.412 2.965-3.488C8.002 4.588 8.778 7 14.998 7l.5-2-.5-2.5h-10z"/><path fill="#C1694F" d="M11.998 12h-4s0 1 2 1 2-1 2-1z"/><circle fill="#662113" cx="7.498" cy="8.5" r=".5"/><circle fill="#662113" cx="12.498" cy="8.5" r=".5"/><path fill="#C1694F" d="M8.998 10h2s0 1-1 1-1-1-1-1z"/><path fill="#FFE51E" d="M26.5 0c-1.187 0-2.282.379-3.181 1.018C21.473 1.114 20 2.629 20 4.5c0 1.542.007 3.484 2.038 4.208C23.036 10.094 24.66 11 26.5 11c3.037 0 5.5-2.462 5.5-5.499C32 2.463 29.537 0 26.5 0z"/><path fill="#F3D2A2" d="M18.117 26.76c-.271.091-.487-.159-.586-.302-.279-.405-.422-1.309-.004-2.227.423-.927.702-2.072 1.69-3.821.115-.204.494-2.746 1.242-4.354.202-.435 1.495-.684 2.009-.529.513.154-.005.98-.037 1.134-.344 1.651-1.305 4.077-1.45 4.404-.8 1.806-1.965 2.389-2.071 3.706-.055.69-.205 1.286-.6 1.228-.092.352-.094.728-.193.761zm14.595.204c.257.126.504-.094.62-.222.33-.365.591-1.242.296-2.208-.297-.975-.424-2.146-1.174-4.01-.087-.217-.129-2.787-.66-4.479-.143-.457-1.392-.875-1.922-.789-.529.086-.124.972-.112 1.129.124 1.682.758 4.213.859 4.556.556 1.895 1.634 2.627 1.566 3.946-.036.692.034 1.302.433 1.296.048.363 0 .735.094.781z"/><path fill="#F3D2A2" d="M18.117 26.76c-.271.091-.487-.159-.586-.302-.279-.405-.422-1.309-.004-2.227.423-.927.702-2.072 1.69-3.821.115-.204.494-2.746 1.242-4.354.202-.435 1.495-.684 2.009-.529.513.154-.005.98-.037 1.134-.344 1.651-1.305 4.077-1.45 4.404-.8 1.806-1.965 2.389-2.071 3.706-.055.69-.205 1.286-.6 1.228-.092.352-.094.728-.193.761zm14.595.204c.257.126.504-.094.62-.222.33-.365.591-1.242.296-2.208-.297-.975-.424-2.146-1.174-4.01-.087-.217-.129-2.787-.66-4.479-.143-.457-1.392-.875-1.922-.789-.529.086-.124.972-.112 1.129.124 1.682.758 4.213.859 4.556.556 1.895 1.634 2.627 1.566 3.946-.036.692.034 1.302.433 1.296.048.363 0 .735.094.781z"/><path fill="#67757F" d="M29.555 29.5c.5-2.734.422-6.5.422-6.5h-7.963s-.078 3.766.422 6.5c.063.344.188 3.344-.109 5.5-.066.479 2.886.937 2.844-.125-.078-1.969.264-3.513.328-4.5.035-.547.25-1.875.344-3.208.011-.018.295-.018.306 0 .094 1.333.308 2.661.344 3.208.064.987.406 2.531.328 4.5-.042 1.062 2.91.604 2.844.125-.297-2.156-.172-5.156-.11-5.5z"/><path fill="#292F33" d="M30.54 36c.499-.406-.041-1.161-1.42-1.402-1.163-.203-2.2-.032-2.363.35-.212.493-.05 1.052-.05 1.052h3.833zm-9.117 0c-.499-.406.041-1.161 1.42-1.402 1.163-.203 2.2-.032 2.363.35.212.494.05 1.053.05 1.053L21.423 36z"/><path fill="#78B159" d="M30.797 14.766C29.578 14 28 14 28 14h-4s-1.578 0-2.797.766c-1.201.754-1.656 3-1.656 3l2.203.688.109 5.546h8.281l.109-5.547 2.203-.688c.001.001-.454-2.245-1.655-2.999z"/><path fill="#F3D2A2" d="M24 10.042v4c0 .682.896 1.305 2 1.305s2-.668 2-1.305v-4h-4z"/><path fill="#E2C196" d="M24 14.042c0 .682.896 1.305 2 1.305s2-.668 2-1.305V11l-4 .019v3.023z"/><path fill="#F3D2A2" d="M31 3H21v6c0 2.762 2.238 5 5 5s5-2.237 5-5V3z"/><path fill="#FFE51E" d="M21 2.5L20.5 5l.5 2c2.333 0 2.85-2.412 2.965-3.488C24.004 4.588 24.779 7 31 7l.5-2-.5-2.5H21z"/><path fill="#C1694F" d="M28 12h-4s0 1 2 1 2-1 2-1z"/><circle fill="#662113" cx="23.5" cy="8.5" r=".5"/><circle fill="#662113" cx="28.5" cy="8.5" r=".5"/><path fill="#C1694F" d="M25 10h2s0 1-1 1-1-1-1-1z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f468-1f3fd-200d-1f9af.svg b/public/emoji/1f468-1f3fd-200d-1f9af.svg
new file mode 100644
index 0000000000000000000000000000000000000000..f28f13f2502f06835839ed4e7e9248f67b7dcb61
--- /dev/null
+++ b/public/emoji/1f468-1f3fd-200d-1f9af.svg
@@ -0,0 +1 @@
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#CCD6DD" d="M12.154 19.416l.802.598L3.988 32.04l-.802-.598z"/><path fill="#DD2E44" d="M3.186 31.444L1.093 34.25c-.164.22-.119.535.102.7s.535.119.7-.102l2.092-2.806-.801-.598z"/><path fill="#292F33" d="M11.359 21.319c-.22-.164-.266-.479-.102-.7l1.793-2.405c.164-.22.479-.266.7-.102.22.164.266.479.102.7l-1.793 2.405c-.164.221-.479.267-.7.102z"/><path fill="#292F33" d="M11.76 21.618l-.802-.598c-.22-.164-.266-.479-.102-.7.164-.22.479-.266.7-.102l.802.598c.22.164.266.479.102.7-.164.221-.479.267-.7.102z"/><path fill="#99AAB5" d="M.598 35.751c-.22-.164-.266-.479-.102-.7.164-.22.479-.266.7-.102.22.164.266.479.102.7-.165.22-.48.266-.7.102z"/><path fill="#292F33" d="M20.436 35.056s.061-.144.061-.448c0-.303-.156-.869-.199-.95-.043-.081-.09-.139-.194-.11-.079.022-.685.326-1.072.341-.719.027-1.066-.618-1.066-.618s-.399.228-.716.413c-.318.185-.687.462-.959.627-.232.141-.497.208-.771.243s-.497.023-.563.029c-.066.006-.621-.061-.641.488l.004.16s.987.397 2.344.397 1.566-.399 2.444-.399c.877 0 1.328-.173 1.328-.173z"/><path fill="#292F33" d="M18.685 35.926c-.058-.052-.123-.22-.173-.243-.05-.023-.57.089-.813.146-.243.058-.66.156-1.152.156-.491 0-1.126-.144-1.519-.243-.393-.098-.701-.23-.77-.274-.07-.043-.05-.063-.046-.096.004-.033.052-.202.052-.202s.251.132.678.237c.426.104.851.183 1.584.183s1.193-.109 1.574-.211c.475-.128 1.163-.267 1.656-.267.38 0 .648-.112.751-.139.024-.006.046.012.046.037v.649c0 .042-.035.139-.146.162-.112.024-1.664.157-1.722.105zm12.222-5.012s-.072-.142-.307-.343-.777-.454-.868-.473c-.091-.02-.167-.022-.213.078-.035.075-.199.746-.444 1.056-.454.575-1.184.418-1.184.418s-.087.46-.153.828-.096.838-.148 1.158c-.044.273-.167.523-.322.758-.154.236-.31.4-.35.456-.039.055-.457.441-.045.82l.127.101s.96-.502 1.857-1.555c.897-1.052.726-1.477 1.306-2.158.58-.68.744-1.144.744-1.144z"/><path fill="#292F33" d="M30.425 32.846c-.078.01-.252-.05-.303-.026-.051.024-.308.5-.424.727-.116.226-.316.615-.64.996s-.856.778-1.192 1.018c-.336.24-.642.391-.721.416s-.082-.003-.104-.028c-.022-.025-.122-.174-.122-.174s.269-.107.631-.369c.363-.261.705-.538 1.189-1.107.484-.568.704-.997.876-1.36.214-.452.562-1.078.887-1.46.251-.295.342-.576.388-.674.011-.023.04-.028.059-.012l.503.429c.033.028.085.118.029.22-.055.103-.978 1.394-1.056 1.404z"/><path fill="#D4AB88" d="M21.5 1.384c-1.593-.627-4.077.182-4.365 2.043-.287 1.848.239 4.747 1.863 4.572 1.702-.184 3.448-.554 4.138-2.307s-.042-3.681-1.636-4.308z"/><path fill="#D4AB88" d="M22.684 6.143c2.318-2.723-3.266-2.458-3.266-2.458-1.057.038-.329 1.799-.827 2.761-.341.665 1.095 1.018 1.095 1.018s.659-.01.694.79v.007c.008.204-.013.445-.108.769-.473 1.601 1.677 2.582 2.149.978.187-.635.114-1.193.02-1.708l-.009-.046c-.144-.766-.322-1.437.252-2.111z"/><path fill="#963B22" d="M23.32 2.026C22.259.784 20.74.125 18.301 1.235c-.994.452-1.439.285-1.58.484-.679.953.246 2.01.608 1.799 1.148-.669 2.183-.47 2.447.014s.021 1.354.234 1.359c.578.016.484-.551.714-.878.375-.534.946-.232 1.071.362.099.471 0 1.271-.77 1.412.523 1.151 1.56 1.502 1.56 1.502s.337.132.912-1.001c.576-1.134.877-3.029-.177-4.262z"/><path fill="#2A6797" d="M18.558 34.203c-1.266.109-1.853-.233-1.721-.416.165-.228.128-.397.13-.536.028-2.441-.472-5.991-.472-5.991 0-.348.003-.813.312-1.562.778-1.883 3.951-7.69 3.951-7.69.548-.958 1.771-1.293 2.729-.744.959.548 1.122 1.405.744 2.729-.715 2.508-2.965 5.602-3.903 7.477.224 2.121-.174 3.853.035 5.857.03.288-.54.767-1.805.876z"/><path fill="#4289C1" d="M29.292 31.931c-.364.553-.97.942-1.598.838-1.269-1.924-4.955-5.321-4.955-5.321-.241-.25-.562-.587-.86-1.341-.748-1.895-2.498-8.277-2.498-8.277-.272-1.07.376-2.16 1.446-2.43 1.07-.272 1.783.232 2.43 1.446 1.227 2.301 1.757 6.09 2.384 8.09 1.87 1.568 2.383 3.603 4.275 5.151-.064.857-.26 1.291-.624 1.844z"/><path fill="#77B255" d="M25.495 20s0 1-2 1h-4.898c-.415-2-.027-5.004.006-7.765.043-3.623 2.298-5.609 3.71-5.155 1.846.594 2.693 2.641 2.932 5.858.239 3.216.25 6.062.25 6.062z"/><path fill="#D4AB88" d="M20.029 11.693c-.781 1.172-2.291 3.808-2.518 3.909-1.205.534-2.549 1.22-3.445 1.314-.649.068-1.254.68-1.508.925-.316.304-.75 1.008-.63 1.37.075.226.571.488.742.253.332-.458.973-.535 1.49-.889 1.038-.712 3.284-.765 4.556-1.709.528-.391 1.677-1.309 3.2-3.9-.592-.426-1.887-1.273-1.887-1.273z"/><path fill="#292F33" d="M14.21 17.018c.477.152.847.624.557 1.114-.29.49.403.185.512-.045.223-.468-.178-1.158-.646-1.314-.468-.156-.746.142-.423.245z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f468-1f3fd-200d-1f9bc.svg b/public/emoji/1f468-1f3fd-200d-1f9bc.svg
new file mode 100644
index 0000000000000000000000000000000000000000..be45b679399462fe4bc0654477dd8fd7926ebe5e
--- /dev/null
+++ b/public/emoji/1f468-1f3fd-200d-1f9bc.svg
@@ -0,0 +1 @@
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#D4AB88" d="M26.007 1.015c-1.214-.871-3.488-.718-4.13.795-.638 1.502-.813 4.067.598 4.266 1.479.209 3.036.269 3.994-1.066.959-1.335.752-3.124-.462-3.995z"/><path fill="#D4AB88" d="M25.99 5.295c2.544-1.808-2.238-2.778-2.238-2.778-.902-.194-.664 1.452-1.29 2.159-.431.49.708 1.096.708 1.096s.56.133.419.817l-.002.006c-.037.174-.107.374-.256.627-.743 1.253.866 2.543 1.609 1.287.294-.497.352-.985.382-1.441l.003-.041c.043-.679.036-1.285.665-1.732z"/><path fill="#963B22" d="M27.409 1.948C26.777.671 25.632-.212 23.332.206c-.937.17-1.279-.066-1.441.071-.778.661-.222 1.753.13 1.652 1.114-.321 1.948.069 2.068.535.12.466-.272 1.15-.092 1.2.486.137.528-.363.791-.59.431-.371.85.006.829.535-.017.42-.272 1.075-.953 1.03.196 1.086.998 1.604.998 1.604s.256.184.986-.652c.729-.836 1.389-2.375.761-3.643z"/><path fill="#292F33" d="M8.22 28.583s.108-.118.211-.409c.104-.291.147-.888.133-.98-.014-.092-.039-.164-.148-.171-.083-.006-.768.08-1.145-.039-.699-.22-.812-.957-.812-.957s-.46.083-.829.152c-.368.069-.818.209-1.134.274-.271.056-.548.03-.823-.03-.275-.06-.485-.147-.55-.165-.066-.017-.575-.27-.782.25l-.051.154s.811.718 2.114 1.182c1.303.464 1.639.152 2.481.452.843.3 1.335.287 1.335.287z"/><path fill="#292F33" d="M6.243 28.821c-.038-.07-.043-.253-.083-.292-.04-.039-.577-.11-.83-.137-.253-.027-.687-.076-1.158-.244-.471-.168-1.032-.523-1.375-.752-.343-.228-.594-.46-.646-.526s-.026-.078-.011-.107.119-.176.119-.176.196.213.569.459.754.467 1.458.717c.703.25 1.182.303 1.583.335.499.039 1.207.141 1.681.309.365.13.66.114.768.123.025.002.04.027.032.051l-.222.623c-.014.041-.081.121-.196.105s-1.651-.419-1.689-.488z"/><path fill="#4289C1" d="M25.097 17.21c.069 1.432-.391 2.922-1.505 3.202-1.066.268-3.056-.151-3.056-.151s-.698.408-.531 1.189c.095.444.257.67.201.712-.05.038-.486-.022-.684-.032-.528-.027-1.1-.211-2.073-.484-.974-.273-1.421-.285-2.481-.577-1.175-.324-1.986-.835-2.33-1.956-.293-.956.277-2.123 1.654-2.63 1.12-.412 4.339-.347 5.539-.231 1.201.118 5.206-.287 5.266.958z"/><path fill="#4289C1" d="M7.002 27.225c-.646-.143-1.293-.6-1.419-1.224 1.346-1.871 3.671-7.538 3.671-7.538.695-1.744 1.517-3.426 3.133-3.182 2.081.315 5.629 1.028 5.629 1.028 2.276.329 1.144 1.007 1.778 1.912.635.903-1.294 1.99-2.786 1.891-2.602-.173-3.877-.453-5.522.846-.8 2.306-2.071 4.087-2.844 6.406-.826.244-.993.004-1.64-.139z"/><path fill="#77B255" d="M25.569 16.971c-.211.688-.149 1.604-.515 1.362-1.444-.957-5.521-2.045-5.521-2.045.049-1.673.979-3.969 1.559-6.148.762-2.86 3.067-3.951 4.171-3.289 1.443.865 1.75 2.668 1.308 5.266s-.791 4.166-1.002 4.854z"/><path fill="#66757F" d="M27.811 10.609l.425-5.242c.022-.274.265-.48.539-.458.274.022.48.265.458.539l-.425 5.242c-.022.274-.265.48-.539.458-.274-.022-.48-.265-.458-.539z"/><path fill="#292F33" d="M16 21v2s-2 0-2 2v3c0 1 1 2 2 2h10c1 0 2-1 2-2v-5c0-1-1-2-2-2H16z"/><path fill="#292F33" d="M22.956 22.559l-9.848-1.736c-.985-.174-.985-.174-.811-1.158.096-.542.617-.907 1.158-.811l9.848 1.736c.542.096.907.617.811 1.158-.173.985-.173.985-1.158.811z"/><path fill="#292F33" d="M25.238 19.023c-.193.922-.557 1.827-2.094 1.537-1.537-.29-1.782 1.225-.824 1.493.958.267 3.252.646 3.921-.446.668-1.092.78-2.139.713-2.606s-1.572-.66-1.716.022z"/><path fill="#DD2E44" d="M23.442 22.896l-10.833-1.91c-.271-.048-.453-.308-.406-.579.048-.271.308-.453.579-.406l10.833 1.91c.271.048.453.308.406.579-.048.271-.309.454-.579.406z"/><path fill="#292F33" d="M28.932 9.642l-1.736 9.848c-.174.985-.174.985-1.158.811-.542-.096-.907-.617-.811-1.158l1.736-9.848c.096-.542.617-.907 1.158-.811.984.173.984.173.811 1.158zm.992-7.49l-.713 4.025c-.087.493-.168 1.007-1.153.834-.542-.096-.882-.715-.763-1.398l.639-3.609c.163-.579.626-1.004 1.167-.909.985.173.91.564.823 1.057z"/><path fill="#DD2E44" d="M29.406 9.224l-1.91 10.833c-.048.271-.308.453-.579.406-.271-.048-.453-.308-.406-.579l1.91-10.833c.048-.271.308-.453.579-.406.272.048.454.308.406.579zm1.243-7.455l-.91 5.18c-.048.271-.308.453-.579.406-.271-.048-.453-.308-.406-.579l.91-5.18c.048-.271.308-.453.579-.406.271.047.454.308.406.579z"/><path fill="#292F33" d="M25.494 18.441l-7.466-1.316c-.747-.132-.747-.132-.617-.869.071-.405.466-.678.877-.606l7.466 1.316c.411.072.688.463.617.869-.13.738-.13.738-.877.606z"/><path fill="#DD2E44" d="M23.123 21.824c.993.175 2.954.521 3.475-2.433s1.506-2.781.985.174-2.237 3.667-4.634 3.245c-1.969-.348-1.796-1.333.174-.986zm-10.33-1.821c1.971.34 2.277 1.422.308 1.07-.873-.156-.984.212-1.251.958-.252.702-.611 1.757-1.144 3.23-.391 1.082-1.279.603-.95-.342.551-1.588 1.061-2.968 1.392-3.847.338-.895.613-1.247 1.645-1.069z"/><path fill="#DD2E44" d="M10.62 24.01c-.258-.094-.547.04-.641.299l-2.052 5.638c-.094.258.04.547.299.641.258.094.547-.04.641-.299l2.052-5.638c.094-.259-.041-.547-.299-.641z"/><path fill="#66757F" d="M8.226 30.588L4.467 29.22c-.258-.094-.393-.382-.299-.641.094-.258.382-.393.641-.299l3.759 1.368c.258.094.393.382.299.641-.094.258-.383.393-.641.299z"/><path fill="#DD2E44" d="M13.844 30.862l2.95-2.95c.194-.194.194-.513 0-.707-.194-.194-.513-.194-.707 0l-2.95 2.95c-.194.194-.194.513 0 .707.194.194.512.194.707 0zM32 34c-.55 0-1-.45-1-1v-3c0-.55.45-1 1-1s1 .45 1 1v3c0 .55-.45 1-1 1z"/><path fill="#DD2E44" d="M13.5 34c-.55 0-1-.45-1-1v-3c0-.55.45-1 1-1s1 .45 1 1v3c0 .55-.45 1-1 1zm12.983-6.005h2c.275 0 .5-.225.5-.5s-.225-.5-.5-.5h-2c-.275 0-.5.225-.5.5s.225.5.5.5z"/><path fill="#DD2E44" d="M31.123 30.803l-2.95-2.95c-.194-.194-.194-.513 0-.707.194-.194.513-.194.707 0l2.95 2.95c.194.194.194.513 0 .707-.194.195-.512.195-.707 0z"/><path fill="#292F33" d="M11.672 16.127c.742.318 2.05.936 2.339 1.047 0 0 .134-.891.49-.891 0 0 .134-.468.223-.668s.356-.134.379.245c.022.379-.089.512-.089.512s.334.423.134 1.002c0 0 .446.067.356.624-.089.557.067.98-.334 1.092-.401.111-1.916.535-1.938-.067-.022-.601-.401-1.069-1.136-1.515-.735-.446-1.27-.936-1.181-1.181.088-.244.133-.467.757-.2z"/><path fill="#DD2E44" d="M26.5 25h-11c-.275 0-.5-.225-.5-.5s.225-.5.5-.5h11c.275 0 .5.225.5.5s-.225.5-.5.5z"/><path fill="#D4AB88" d="M22.691 10.276c-.579 1.455-1.125 3.55-1.381 3.561-1.473.062-3.079.948-4.006.893-.672-.04-1.306-.167-1.651-.05-.552.187-1.159.289-1.351.632-.195.348.171.657 1.035.656.635 0 1.045.208 1.674.06.896-.21 3.986.754 5.665-.345.566-.371 1.441-1.871 2.525-4.663-1.084-.477-2.51-.744-2.51-.744z"/><circle fill="#66757F" cx="21.5" cy="31.5" r="4.5"/><circle fill="#66757F" cx="13.5" cy="33.5" r="2.5"/><circle fill="#66757F" cx="32" cy="34" r="2"/><circle fill="#CCD6DD" cx="21.5" cy="31.5" r="2.5"/><circle fill="#CCD6DD" cx="13.5" cy="33.5" r="1.5"/><circle fill="#292F33" cx="32" cy="34" r="1"/><g fill="#292F33"><circle cx="22" cy="30.634" r=".5"/><circle cx="21" cy="32.366" r=".5"/><circle cx="20.634" cy="31" r=".5"/><circle cx="22.366" cy="32" r=".5"/></g><circle fill="#292F33" cx="13.5" cy="33.5" r=".75"/><circle fill="#66757F" cx="32" cy="34" r=".5"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f468-1f3fd-200d-1f9bd.svg b/public/emoji/1f468-1f3fd-200d-1f9bd.svg
new file mode 100644
index 0000000000000000000000000000000000000000..64bf6233d62d6d96261c842420b4e062f250b3e1
--- /dev/null
+++ b/public/emoji/1f468-1f3fd-200d-1f9bd.svg
@@ -0,0 +1 @@
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#D4AB88" d="M21.96.974c-1.285-.762-3.537-.411-4.045 1.152-.504 1.552-.455 4.123.968 4.198 1.492.079 3.048.003 3.886-1.41.838-1.414.476-3.178-.809-3.94z"/><path fill="#D4AB88" d="M22.316 5.239c2.376-2.023-2.471-2.572-2.471-2.572-.916-.114-.535 1.504-1.097 2.263-.387.526.801 1.03.801 1.03s.569.083.488.777l-.001.006c-.021.177-.074.382-.2.647-.631 1.313 1.085 2.458 1.715 1.142.249-.521.265-1.012.255-1.469l-.001-.041c-.017-.68-.076-1.283.511-1.783z"/><path fill="#963B22" d="M23.439 1.781C22.698.564 21.481-.216 19.225.4c-.919.251-1.279.045-1.429.196-.718.726-.068 1.766.273 1.634 1.082-.417 1.946-.101 2.106.353.16.454-.171 1.169.013 1.204.496.094.494-.407.737-.657.397-.408.847-.068.872.461.02.419-.177 1.095-.86 1.109.29 1.065 1.134 1.511 1.134 1.511s.271.161.925-.735c.655-.896 1.178-2.486.443-3.695z"/><path fill="#292F33" d="M8.211 30.079s.097-.127.175-.426c.078-.299.069-.897.047-.988-.022-.091-.053-.16-.163-.158-.083.001-.759.146-1.144.061-.716-.158-.892-.883-.892-.883s-.452.123-.812.223c-.361.101-.796.279-1.106.372-.265.079-.543.078-.823.041-.279-.036-.496-.105-.563-.116s-.597-.219-.757.317l-.037.159s.871.645 2.209.993 1.646.009 2.511.234 1.355.171 1.355.171z"/><path fill="#292F33" d="M6.262 30.488c-.044-.066-.065-.248-.109-.284-.043-.036-.585-.059-.839-.064-.254-.005-.691-.016-1.175-.142s-1.074-.431-1.436-.629-.632-.407-.689-.468c-.057-.061-.033-.075-.02-.106.013-.031.103-.186.103-.186s.214.195.607.407.792.399 1.514.587 1.204.199 1.606.195c.501-.004 1.215.035 1.701.162.375.098.668.056.776.056.025 0 .043.023.036.048l-.167.64c-.011.042-.07.128-.186.122-.114-.004-1.679-.271-1.722-.338z"/><path fill="#4289C1" d="M24.032 17.279c.193 1.421-.135 2.945-1.22 3.321-1.039.36-3.058.116-3.058.116s-.66.468-.426 1.231c.133.434.314.645.262.692-.046.042-.486.02-.684.027-.528.02-1.114-.115-2.108-.301-.994-.187-1.44-.16-2.522-.359-1.198-.22-2.051-.659-2.491-1.745-.375-.927.091-2.139 1.419-2.764 1.08-.508 4.292-.724 5.498-.712 1.207.011 5.162-.741 5.33.494z"/><path fill="#4289C1" d="M6.879 28.832c-.656-.086-1.341-.485-1.521-1.095 1.178-1.982 3-7.829 3-7.829.541-1.798 1.213-3.546 2.843-3.443 2.1.133 5.697.533 5.697.533 2.296.13 1.228.904 1.938 1.75.712.845-1.115 2.095-2.611 2.126-2.607.054-3.902-.113-5.428 1.324-.596 2.367-1.706 4.252-2.275 6.63-.799.315-.987.091-1.643.004z"/><path fill="#77B255" d="M24.698 16.173c.029.719.15 1.674-.276 1.567-1.679-.424-5.438-.168-5.438-.168-.508-1.594-.392-4.069-.566-6.317-.229-2.95 1.585-4.744 2.845-4.485.513.105 1.136.428 1.511.77.278.253.924.961 1.141 1.169 1.106 1.06.124 1.405.327 2.596.444 2.597.427 4.149.456 4.868z"/><g fill="#DD2E44"><path d="M13.465 27.092l10.824.95c.274.024.518-.181.542-.455.024-.274-.181-.518-.455-.542l-10.824-.95c-.274-.024-.518.181-.542.455-.024.274.181.518.455.542z"/><path d="M24.288 28.041c-.274-.024-.478-.268-.455-.542l.436-4.981c.024-.274.268-.478.542-.455.274.024.478.268.455.542l-.436 4.981c-.024.275-.268.479-.542.455zm-10.738-7.58c-.274-.024-.518.181-.542.455l-1.015 11.597c-.024.274.181.518.455.542.274.024.518-.181.542-.455l1.015-11.597c.023-.274-.181-.518-.455-.542z"/></g><path fill="#292F33" d="M23.524 20.592c1.431-.206 2.834-.148 2.345.544-.489.692-1.575 1.905-3.418 1.707-1.844-.198.185-2.123 1.073-2.251z"/><path fill="#292F33" d="M22.45 22.843l-9.962-.872c-.996-.087-.996-.087-.909-1.083.048-.548.535-.957 1.083-.909l9.962.872c.548.048.957.535.909 1.083-.087.996-.087.996-1.083.909z"/><path fill="#DD2E44" d="M22.964 23.136l-10.958-.959c-.274-.024-.478-.268-.455-.542.024-.274.268-.478.542-.455l10.958.959c.274.024.478.268.455.542-.025.275-.268.479-.542.455z"/><path fill="#292F33" d="M27.278 9.454l-.872 9.962c-.087.996-.087.996-1.083.909-.548-.048-.957-.535-.909-1.083l.872-9.962c.048-.548.535-.957 1.083-.909.996.087.996.087.909 1.083z"/><path fill="#DD2E44" d="M27.714 8.996l-.959 10.958c-.024.274-.268.478-.542.455-.274-.024-.478-.268-.455-.542l.959-10.958c.024-.274.268-.478.542-.455.274.025.479.268.455.542z"/><path fill="#292F33" d="M24.62 18.519l-7.552-.661c-.755-.066-.755-.066-.69-.812.036-.41.405-.716.82-.68l7.552.661c.415.036.726.402.69.812-.064.746-.064.746-.82.68z"/><path fill="#DD2E44" d="M22.553 22.096c1.004.088 2.989.261 3.25-2.727s1.258-2.901.996.087-1.909 3.848-4.333 3.636c-1.993-.174-1.906-1.17.087-.996zm-10.449-.914c1.993.166 2.392 1.218.4 1.039-.883-.079-.962.297-1.163 1.063-.189.721-.456 1.803-.858 3.318-.295 1.112-1.221.712-.977-.257.411-1.63.798-3.05 1.052-3.953.258-.922.502-1.297 1.546-1.21z"/><g fill="#66757F"><circle cx="24.5" cy="27.5" r="1.5"/><path d="M31.245 30.817l-6.062-3.5 3.5-6.062-.866-.5-3.5 6.062-6.062-3.5-.5.866 6.062 3.5-3.5 6.062.866.5 3.5-6.062 6.062 3.5z"/><path d="M26.924 34.615l-1.812-6.761 6.762-1.812-.259-.966-6.761 1.812-1.812-6.762-.966.259 1.812 6.761-6.762 1.812.259.966 6.761-1.812 1.812 6.762z"/></g><path fill="#292F33" d="M24.5 19c-4.694 0-8.5 3.806-8.5 8.5s3.806 8.5 8.5 8.5 8.5-3.806 8.5-8.5-3.806-8.5-8.5-8.5zm0 15c-3.59 0-6.5-2.91-6.5-6.5s2.91-6.5 6.5-6.5 6.5 2.91 6.5 6.5-2.91 6.5-6.5 6.5z"/><path fill="#66757F" d="M24.5 20c-4.142 0-7.5 3.358-7.5 7.5s3.358 7.5 7.5 7.5 7.5-3.358 7.5-7.5-3.358-7.5-7.5-7.5zm0 14c-3.59 0-6.5-2.91-6.5-6.5s2.91-6.5 6.5-6.5 6.5 2.91 6.5 6.5-2.91 6.5-6.5 6.5zm-9.152-.433l-2.165-1.25 1.25-2.165-.866-.5-1.25 2.165-2.165-1.25-.5.866 2.165 1.25-1.25 2.165.866.5 1.25-2.165 2.165 1.25z"/><path fill="#292F33" d="M12.5 29C10.567 29 9 30.567 9 32.5s1.567 3.5 3.5 3.5 3.5-1.567 3.5-3.5-1.567-3.5-3.5-3.5zm0 6c-1.381 0-2.5-1.119-2.5-2.5s1.119-2.5 2.5-2.5 2.5 1.119 2.5 2.5-1.119 2.5-2.5 2.5z"/><path fill="#DD2E44" d="M10.288 25.363c-.266-.071-.541.088-.612.354l-1.553 5.796c-.071.266.088.541.354.612.266.071.541-.088.612-.354l1.553-5.796c.07-.265-.089-.541-.354-.612z"/><path fill="#66757F" d="M8.476 32.125L4.612 31.09c-.266-.071-.425-.347-.354-.612.071-.266.347-.425.612-.354l3.864 1.035c.266.071.426.346.354.612-.071.266-.346.425-.612.354z"/><path fill="#DD2E44" d="M30.103 9.969l-2.954-.521c-.271-.048-.453-.308-.406-.579.048-.271.308-.453.579-.406l2.954.521c.271.048.453.308.406.579-.048.272-.308.454-.579.406z"/><path fill="#292F33" d="M31.088 10.143l-2.615-.467c-.271-.048-.26-.274-.213-.545.048-.271.116-.487.386-.44l2.615.467c.271.048.453.308.406.579-.048.271-.308.454-.579.406z"/><path fill="#D4AB88" d="M22.118 10.597c1.142.988 3.458 2.697 3.436 2.951-.128 1.469.543 3.175.369 4.087-.126.661-.665 1.138-.594 1.495.667-.009.443 1.15.729 1.665.301.542 1.171-.093 1.282-.949.081-.629-.102-1.11-.167-1.752-.093-.915 1.094-3.661.22-5.467-.295-.609-1.531-2.277-3.635-4.122-.595.457-1.64 2.092-1.64 2.092z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f468-1f3fe-200d-1f91d-200d-1f468-1f3fb.svg b/public/emoji/1f468-1f3fe-200d-1f91d-200d-1f468-1f3fb.svg
new file mode 100644
index 0000000000000000000000000000000000000000..7c7ecbf2c6808250678543e3572f4b79fb0e9b0d
--- /dev/null
+++ b/public/emoji/1f468-1f3fe-200d-1f91d-200d-1f468-1f3fb.svg
@@ -0,0 +1 @@
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#60352A" d="M10.498 0c-1.186 0-2.282.379-3.18 1.018-1.847.096-3.32 1.611-3.32 3.482 0 1.542.007 3.484 2.038 4.208C7.035 10.094 8.659 11 10.498 11c3.037 0 5.5-2.462 5.5-5.499 0-3.038-2.462-5.501-5.5-5.501z"/><path fill="#AF7E57" d="M17.896 26.76c.271.091.487-.159.586-.302.279-.405.422-1.309.004-2.227-.423-.927-.702-2.072-1.69-3.821-.115-.204-.494-2.746-1.242-4.354-.202-.435-1.495-.684-2.009-.529-.513.154.005.98.037 1.134.344 1.651 1.305 4.077 1.45 4.404.8 1.806 1.965 2.389 2.071 3.706.055.69.205 1.286.6 1.228.092.352.093.728.193.761zM3.3 26.964c-.257.126-.504-.094-.62-.222-.33-.365-.591-1.242-.296-2.208.297-.975.424-2.146 1.174-4.01.087-.217.129-2.787.66-4.479.143-.457 1.392-.875 1.922-.789.529.086.124.972.112 1.129-.124 1.682-.758 4.213-.859 4.556-.556 1.895-1.634 2.627-1.566 3.946.036.692-.034 1.302-.433 1.296-.048.363 0 .735-.094.781z"/><path fill="#AAB8C2" d="M13.554 29.5c.5-2.734.422-6.5.422-6.5H6.013s-.078 3.766.422 6.5c.063.344.188 3.344-.109 5.5-.066.479 2.886.937 2.844-.125-.078-1.969.264-3.513.328-4.5.035-.547.25-1.875.344-3.208.011-.018.295-.018.306 0 .094 1.333.308 2.661.344 3.208.064.987.406 2.531.328 4.5-.042 1.062 2.91.604 2.844.125-.298-2.156-.173-5.156-.11-5.5z"/><path fill="#292F33" d="M14.538 36c.499-.406-.041-1.161-1.42-1.402-1.163-.203-2.2-.032-2.363.35-.212.493-.05 1.052-.05 1.052h3.833zm-9.117 0c-.499-.406.041-1.161 1.42-1.402 1.163-.203 2.2-.032 2.363.35.212.493.05 1.052.05 1.052H5.421z"/><path fill="#4289C1" d="M14.795 14.766C13.577 14 11.998 14 11.998 14h-4s-1.578 0-2.797.766c-1.201.754-1.656 3-1.656 3l2.203.688.11 5.546h8.281l.109-5.547 2.203-.688c.001.001-.455-2.245-1.656-2.999z"/><path fill="#AF7E57" d="M7.998 10.042v4c0 .682.896 1.305 2 1.305s2-.668 2-1.305v-4h-4z"/><path fill="#9B6A49" d="M7.998 14.042c0 .682.896 1.305 2 1.305s2-.668 2-1.305V11l-4 .019v3.023z"/><path fill="#AF7E57" d="M14.998 3h-10v6c0 2.762 2.238 5 5 5s5-2.237 5-5V3z"/><path fill="#60352A" d="M4.998 2.5l-.5 2.5.5 2c2.333 0 2.85-2.412 2.965-3.488C8.002 4.588 8.778 7 14.998 7l.5-2-.5-2.5h-10z"/><path fill="#915A34" d="M11.998 12h-4s0 1 2 1 2-1 2-1z"/><circle fill="#662113" cx="7.498" cy="8.5" r=".5"/><circle fill="#662113" cx="12.498" cy="8.5" r=".5"/><path fill="#915A34" d="M8.998 10h2s0 1-1 1-1-1-1-1z"/><path fill="#292F33" d="M26.5 0c-1.187 0-2.282.379-3.181 1.018C21.473 1.114 20 2.629 20 4.5c0 1.542.007 3.484 2.038 4.208C23.036 10.094 24.66 11 26.5 11c3.037 0 5.5-2.462 5.5-5.499C32 2.463 29.537 0 26.5 0z"/><path fill="#F7DECE" d="M18.117 26.76c-.271.091-.487-.159-.586-.302-.279-.405-.422-1.309-.004-2.227.423-.927.702-2.072 1.69-3.821.115-.204.494-2.746 1.242-4.354.202-.435 1.495-.684 2.009-.529.513.154-.005.98-.037 1.134-.344 1.651-1.305 4.077-1.45 4.404-.8 1.806-1.965 2.389-2.071 3.706-.055.69-.205 1.286-.6 1.228-.092.352-.094.728-.193.761zm14.595.204c.257.126.504-.094.62-.222.33-.365.591-1.242.296-2.208-.297-.975-.424-2.146-1.174-4.01-.087-.217-.129-2.787-.66-4.479-.143-.457-1.392-.875-1.922-.789-.529.086-.124.972-.112 1.129.124 1.682.758 4.213.859 4.556.556 1.895 1.634 2.627 1.566 3.946-.036.692.034 1.302.433 1.296.048.363 0 .735.094.781z"/><path fill="#F7DECE" d="M18.117 26.76c-.271.091-.487-.159-.586-.302-.279-.405-.422-1.309-.004-2.227.423-.927.702-2.072 1.69-3.821.115-.204.494-2.746 1.242-4.354.202-.435 1.495-.684 2.009-.529.513.154-.005.98-.037 1.134-.344 1.651-1.305 4.077-1.45 4.404-.8 1.806-1.965 2.389-2.071 3.706-.055.69-.205 1.286-.6 1.228-.092.352-.094.728-.193.761zm14.595.204c.257.126.504-.094.62-.222.33-.365.591-1.242.296-2.208-.297-.975-.424-2.146-1.174-4.01-.087-.217-.129-2.787-.66-4.479-.143-.457-1.392-.875-1.922-.789-.529.086-.124.972-.112 1.129.124 1.682.758 4.213.859 4.556.556 1.895 1.634 2.627 1.566 3.946-.036.692.034 1.302.433 1.296.048.363 0 .735.094.781z"/><path fill="#67757F" d="M29.555 29.5c.5-2.734.422-6.5.422-6.5h-7.963s-.078 3.766.422 6.5c.063.344.188 3.344-.109 5.5-.066.479 2.886.937 2.844-.125-.078-1.969.264-3.513.328-4.5.035-.547.25-1.875.344-3.208.011-.018.295-.018.306 0 .094 1.333.308 2.661.344 3.208.064.987.406 2.531.328 4.5-.042 1.062 2.91.604 2.844.125-.297-2.156-.172-5.156-.11-5.5z"/><path fill="#292F33" d="M30.54 36c.499-.406-.041-1.161-1.42-1.402-1.163-.203-2.2-.032-2.363.35-.212.493-.05 1.052-.05 1.052h3.833zm-9.117 0c-.499-.406.041-1.161 1.42-1.402 1.163-.203 2.2-.032 2.363.35.212.494.05 1.053.05 1.053L21.423 36z"/><path fill="#78B159" d="M30.797 14.766C29.578 14 28 14 28 14h-4s-1.578 0-2.797.766c-1.201.754-1.656 3-1.656 3l2.203.688.109 5.546h8.281l.109-5.547 2.203-.688c.001.001-.454-2.245-1.655-2.999z"/><path fill="#F7DECE" d="M24 10.042v4c0 .682.896 1.305 2 1.305s2-.668 2-1.305v-4h-4z"/><path fill="#EEC2AD" d="M24 14.042c0 .682.896 1.305 2 1.305s2-.668 2-1.305V11l-4 .019v3.023z"/><path fill="#F7DECE" d="M31 3H21v6c0 2.762 2.238 5 5 5s5-2.237 5-5V3z"/><path fill="#292F33" d="M21 2.5L20.5 5l.5 2c2.333 0 2.85-2.412 2.965-3.488C24.004 4.588 24.779 7 31 7l.5-2-.5-2.5H21z"/><path fill="#C1694F" d="M28 12h-4s0 1 2 1 2-1 2-1z"/><circle fill="#662113" cx="23.5" cy="8.5" r=".5"/><circle fill="#662113" cx="28.5" cy="8.5" r=".5"/><path fill="#C1694F" d="M25 10h2s0 1-1 1-1-1-1-1z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f468-1f3fe-200d-1f91d-200d-1f468-1f3fc.svg b/public/emoji/1f468-1f3fe-200d-1f91d-200d-1f468-1f3fc.svg
new file mode 100644
index 0000000000000000000000000000000000000000..bbe83212db1369f28c799f410b6637b82de888bf
--- /dev/null
+++ b/public/emoji/1f468-1f3fe-200d-1f91d-200d-1f468-1f3fc.svg
@@ -0,0 +1 @@
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#60352A" d="M10.498 0c-1.186 0-2.282.379-3.18 1.018-1.847.096-3.32 1.611-3.32 3.482 0 1.542.007 3.484 2.038 4.208C7.035 10.094 8.659 11 10.498 11c3.037 0 5.5-2.462 5.5-5.499 0-3.038-2.462-5.501-5.5-5.501z"/><path fill="#AF7E57" d="M17.896 26.76c.271.091.487-.159.586-.302.279-.405.422-1.309.004-2.227-.423-.927-.702-2.072-1.69-3.821-.115-.204-.494-2.746-1.242-4.354-.202-.435-1.495-.684-2.009-.529-.513.154.005.98.037 1.134.344 1.651 1.305 4.077 1.45 4.404.8 1.806 1.965 2.389 2.071 3.706.055.69.205 1.286.6 1.228.092.352.093.728.193.761zM3.3 26.964c-.257.126-.504-.094-.62-.222-.33-.365-.591-1.242-.296-2.208.297-.975.424-2.146 1.174-4.01.087-.217.129-2.787.66-4.479.143-.457 1.392-.875 1.922-.789.529.086.124.972.112 1.129-.124 1.682-.758 4.213-.859 4.556-.556 1.895-1.634 2.627-1.566 3.946.036.692-.034 1.302-.433 1.296-.048.363 0 .735-.094.781z"/><path fill="#AAB8C2" d="M13.554 29.5c.5-2.734.422-6.5.422-6.5H6.013s-.078 3.766.422 6.5c.063.344.188 3.344-.109 5.5-.066.479 2.886.937 2.844-.125-.078-1.969.264-3.513.328-4.5.035-.547.25-1.875.344-3.208.011-.018.295-.018.306 0 .094 1.333.308 2.661.344 3.208.064.987.406 2.531.328 4.5-.042 1.062 2.91.604 2.844.125-.298-2.156-.173-5.156-.11-5.5z"/><path fill="#292F33" d="M14.538 36c.499-.406-.041-1.161-1.42-1.402-1.163-.203-2.2-.032-2.363.35-.212.493-.05 1.052-.05 1.052h3.833zm-9.117 0c-.499-.406.041-1.161 1.42-1.402 1.163-.203 2.2-.032 2.363.35.212.493.05 1.052.05 1.052H5.421z"/><path fill="#4289C1" d="M14.795 14.766C13.577 14 11.998 14 11.998 14h-4s-1.578 0-2.797.766c-1.201.754-1.656 3-1.656 3l2.203.688.11 5.546h8.281l.109-5.547 2.203-.688c.001.001-.455-2.245-1.656-2.999z"/><path fill="#AF7E57" d="M7.998 10.042v4c0 .682.896 1.305 2 1.305s2-.668 2-1.305v-4h-4z"/><path fill="#9B6A49" d="M7.998 14.042c0 .682.896 1.305 2 1.305s2-.668 2-1.305V11l-4 .019v3.023z"/><path fill="#AF7E57" d="M14.998 3h-10v6c0 2.762 2.238 5 5 5s5-2.237 5-5V3z"/><path fill="#60352A" d="M4.998 2.5l-.5 2.5.5 2c2.333 0 2.85-2.412 2.965-3.488C8.002 4.588 8.778 7 14.998 7l.5-2-.5-2.5h-10z"/><path fill="#915A34" d="M11.998 12h-4s0 1 2 1 2-1 2-1z"/><circle fill="#662113" cx="7.498" cy="8.5" r=".5"/><circle fill="#662113" cx="12.498" cy="8.5" r=".5"/><path fill="#915A34" d="M8.998 10h2s0 1-1 1-1-1-1-1z"/><path fill="#FFE51E" d="M26.5 0c-1.187 0-2.282.379-3.181 1.018C21.473 1.114 20 2.629 20 4.5c0 1.542.007 3.484 2.038 4.208C23.036 10.094 24.66 11 26.5 11c3.037 0 5.5-2.462 5.5-5.499C32 2.463 29.537 0 26.5 0z"/><path fill="#F3D2A2" d="M18.117 26.76c-.271.091-.487-.159-.586-.302-.279-.405-.422-1.309-.004-2.227.423-.927.702-2.072 1.69-3.821.115-.204.494-2.746 1.242-4.354.202-.435 1.495-.684 2.009-.529.513.154-.005.98-.037 1.134-.344 1.651-1.305 4.077-1.45 4.404-.8 1.806-1.965 2.389-2.071 3.706-.055.69-.205 1.286-.6 1.228-.092.352-.094.728-.193.761zm14.595.204c.257.126.504-.094.62-.222.33-.365.591-1.242.296-2.208-.297-.975-.424-2.146-1.174-4.01-.087-.217-.129-2.787-.66-4.479-.143-.457-1.392-.875-1.922-.789-.529.086-.124.972-.112 1.129.124 1.682.758 4.213.859 4.556.556 1.895 1.634 2.627 1.566 3.946-.036.692.034 1.302.433 1.296.048.363 0 .735.094.781z"/><path fill="#F3D2A2" d="M18.117 26.76c-.271.091-.487-.159-.586-.302-.279-.405-.422-1.309-.004-2.227.423-.927.702-2.072 1.69-3.821.115-.204.494-2.746 1.242-4.354.202-.435 1.495-.684 2.009-.529.513.154-.005.98-.037 1.134-.344 1.651-1.305 4.077-1.45 4.404-.8 1.806-1.965 2.389-2.071 3.706-.055.69-.205 1.286-.6 1.228-.092.352-.094.728-.193.761zm14.595.204c.257.126.504-.094.62-.222.33-.365.591-1.242.296-2.208-.297-.975-.424-2.146-1.174-4.01-.087-.217-.129-2.787-.66-4.479-.143-.457-1.392-.875-1.922-.789-.529.086-.124.972-.112 1.129.124 1.682.758 4.213.859 4.556.556 1.895 1.634 2.627 1.566 3.946-.036.692.034 1.302.433 1.296.048.363 0 .735.094.781z"/><path fill="#67757F" d="M29.555 29.5c.5-2.734.422-6.5.422-6.5h-7.963s-.078 3.766.422 6.5c.063.344.188 3.344-.109 5.5-.066.479 2.886.937 2.844-.125-.078-1.969.264-3.513.328-4.5.035-.547.25-1.875.344-3.208.011-.018.295-.018.306 0 .094 1.333.308 2.661.344 3.208.064.987.406 2.531.328 4.5-.042 1.062 2.91.604 2.844.125-.297-2.156-.172-5.156-.11-5.5z"/><path fill="#292F33" d="M30.54 36c.499-.406-.041-1.161-1.42-1.402-1.163-.203-2.2-.032-2.363.35-.212.493-.05 1.052-.05 1.052h3.833zm-9.117 0c-.499-.406.041-1.161 1.42-1.402 1.163-.203 2.2-.032 2.363.35.212.494.05 1.053.05 1.053L21.423 36z"/><path fill="#78B159" d="M30.797 14.766C29.578 14 28 14 28 14h-4s-1.578 0-2.797.766c-1.201.754-1.656 3-1.656 3l2.203.688.109 5.546h8.281l.109-5.547 2.203-.688c.001.001-.454-2.245-1.655-2.999z"/><path fill="#F3D2A2" d="M24 10.042v4c0 .682.896 1.305 2 1.305s2-.668 2-1.305v-4h-4z"/><path fill="#E2C196" d="M24 14.042c0 .682.896 1.305 2 1.305s2-.668 2-1.305V11l-4 .019v3.023z"/><path fill="#F3D2A2" d="M31 3H21v6c0 2.762 2.238 5 5 5s5-2.237 5-5V3z"/><path fill="#FFE51E" d="M21 2.5L20.5 5l.5 2c2.333 0 2.85-2.412 2.965-3.488C24.004 4.588 24.779 7 31 7l.5-2-.5-2.5H21z"/><path fill="#C1694F" d="M28 12h-4s0 1 2 1 2-1 2-1z"/><circle fill="#662113" cx="23.5" cy="8.5" r=".5"/><circle fill="#662113" cx="28.5" cy="8.5" r=".5"/><path fill="#C1694F" d="M25 10h2s0 1-1 1-1-1-1-1z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f468-1f3fe-200d-1f91d-200d-1f468-1f3fd.svg b/public/emoji/1f468-1f3fe-200d-1f91d-200d-1f468-1f3fd.svg
new file mode 100644
index 0000000000000000000000000000000000000000..99a2b33d37628c4be6c13ff7e01a19b32f636cf8
--- /dev/null
+++ b/public/emoji/1f468-1f3fe-200d-1f91d-200d-1f468-1f3fd.svg
@@ -0,0 +1 @@
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#60352A" d="M10.498 0c-1.186 0-2.282.379-3.18 1.018-1.847.096-3.32 1.611-3.32 3.482 0 1.542.007 3.484 2.038 4.208C7.035 10.094 8.659 11 10.498 11c3.037 0 5.5-2.462 5.5-5.499 0-3.038-2.462-5.501-5.5-5.501z"/><path fill="#AF7E57" d="M17.896 26.76c.271.091.487-.159.586-.302.279-.405.422-1.309.004-2.227-.423-.927-.702-2.072-1.69-3.821-.115-.204-.494-2.746-1.242-4.354-.202-.435-1.495-.684-2.009-.529-.513.154.005.98.037 1.134.344 1.651 1.305 4.077 1.45 4.404.8 1.806 1.965 2.389 2.071 3.706.055.69.205 1.286.6 1.228.092.352.093.728.193.761zM3.3 26.964c-.257.126-.504-.094-.62-.222-.33-.365-.591-1.242-.296-2.208.297-.975.424-2.146 1.174-4.01.087-.217.129-2.787.66-4.479.143-.457 1.392-.875 1.922-.789.529.086.124.972.112 1.129-.124 1.682-.758 4.213-.859 4.556-.556 1.895-1.634 2.627-1.566 3.946.036.692-.034 1.302-.433 1.296-.048.363 0 .735-.094.781z"/><path fill="#AAB8C2" d="M13.554 29.5c.5-2.734.422-6.5.422-6.5H6.013s-.078 3.766.422 6.5c.063.344.188 3.344-.109 5.5-.066.479 2.886.937 2.844-.125-.078-1.969.264-3.513.328-4.5.035-.547.25-1.875.344-3.208.011-.018.295-.018.306 0 .094 1.333.308 2.661.344 3.208.064.987.406 2.531.328 4.5-.042 1.062 2.91.604 2.844.125-.298-2.156-.173-5.156-.11-5.5z"/><path fill="#292F33" d="M14.538 36c.499-.406-.041-1.161-1.42-1.402-1.163-.203-2.2-.032-2.363.35-.212.493-.05 1.052-.05 1.052h3.833zm-9.117 0c-.499-.406.041-1.161 1.42-1.402 1.163-.203 2.2-.032 2.363.35.212.493.05 1.052.05 1.052H5.421z"/><path fill="#4289C1" d="M14.795 14.766C13.577 14 11.998 14 11.998 14h-4s-1.578 0-2.797.766c-1.201.754-1.656 3-1.656 3l2.203.688.11 5.546h8.281l.109-5.547 2.203-.688c.001.001-.455-2.245-1.656-2.999z"/><path fill="#AF7E57" d="M7.998 10.042v4c0 .682.896 1.305 2 1.305s2-.668 2-1.305v-4h-4z"/><path fill="#9B6A49" d="M7.998 14.042c0 .682.896 1.305 2 1.305s2-.668 2-1.305V11l-4 .019v3.023z"/><path fill="#AF7E57" d="M14.998 3h-10v6c0 2.762 2.238 5 5 5s5-2.237 5-5V3z"/><path fill="#60352A" d="M4.998 2.5l-.5 2.5.5 2c2.333 0 2.85-2.412 2.965-3.488C8.002 4.588 8.778 7 14.998 7l.5-2-.5-2.5h-10z"/><path fill="#915A34" d="M11.998 12h-4s0 1 2 1 2-1 2-1z"/><circle fill="#662113" cx="7.498" cy="8.5" r=".5"/><circle fill="#662113" cx="12.498" cy="8.5" r=".5"/><path fill="#915A34" d="M8.998 10h2s0 1-1 1-1-1-1-1z"/><path fill="#963B22" d="M26.5 0c-1.187 0-2.282.379-3.181 1.018C21.473 1.114 20 2.629 20 4.5c0 1.542.007 3.484 2.038 4.208C23.036 10.094 24.66 11 26.5 11c3.037 0 5.5-2.462 5.5-5.499C32 2.463 29.537 0 26.5 0z"/><path fill="#D4AB88" d="M18.117 26.76c-.271.091-.487-.159-.586-.302-.279-.405-.422-1.309-.004-2.227.423-.927.702-2.072 1.69-3.821.115-.204.494-2.746 1.242-4.354.202-.435 1.495-.684 2.009-.529.513.154-.005.98-.037 1.134-.344 1.651-1.305 4.077-1.45 4.404-.8 1.806-1.965 2.389-2.071 3.706-.055.69-.205 1.286-.6 1.228-.092.352-.094.728-.193.761zm14.595.204c.257.126.504-.094.62-.222.33-.365.591-1.242.296-2.208-.297-.975-.424-2.146-1.174-4.01-.087-.217-.129-2.787-.66-4.479-.143-.457-1.392-.875-1.922-.789-.529.086-.124.972-.112 1.129.124 1.682.758 4.213.859 4.556.556 1.895 1.634 2.627 1.566 3.946-.036.692.034 1.302.433 1.296.048.363 0 .735.094.781z"/><path fill="#D4AB88" d="M18.117 26.76c-.271.091-.487-.159-.586-.302-.279-.405-.422-1.309-.004-2.227.423-.927.702-2.072 1.69-3.821.115-.204.494-2.746 1.242-4.354.202-.435 1.495-.684 2.009-.529.513.154-.005.98-.037 1.134-.344 1.651-1.305 4.077-1.45 4.404-.8 1.806-1.965 2.389-2.071 3.706-.055.69-.205 1.286-.6 1.228-.092.352-.094.728-.193.761zm14.595.204c.257.126.504-.094.62-.222.33-.365.591-1.242.296-2.208-.297-.975-.424-2.146-1.174-4.01-.087-.217-.129-2.787-.66-4.479-.143-.457-1.392-.875-1.922-.789-.529.086-.124.972-.112 1.129.124 1.682.758 4.213.859 4.556.556 1.895 1.634 2.627 1.566 3.946-.036.692.034 1.302.433 1.296.048.363 0 .735.094.781z"/><path fill="#67757F" d="M29.555 29.5c.5-2.734.422-6.5.422-6.5h-7.963s-.078 3.766.422 6.5c.063.344.188 3.344-.109 5.5-.066.479 2.886.937 2.844-.125-.078-1.969.264-3.513.328-4.5.035-.547.25-1.875.344-3.208.011-.018.295-.018.306 0 .094 1.333.308 2.661.344 3.208.064.987.406 2.531.328 4.5-.042 1.062 2.91.604 2.844.125-.297-2.156-.172-5.156-.11-5.5z"/><path fill="#292F33" d="M30.54 36c.499-.406-.041-1.161-1.42-1.402-1.163-.203-2.2-.032-2.363.35-.212.493-.05 1.052-.05 1.052h3.833zm-9.117 0c-.499-.406.041-1.161 1.42-1.402 1.163-.203 2.2-.032 2.363.35.212.494.05 1.053.05 1.053L21.423 36z"/><path fill="#78B159" d="M30.797 14.766C29.578 14 28 14 28 14h-4s-1.578 0-2.797.766c-1.201.754-1.656 3-1.656 3l2.203.688.109 5.546h8.281l.109-5.547 2.203-.688c.001.001-.454-2.245-1.655-2.999z"/><path fill="#D4AB88" d="M24 10.042v4c0 .682.896 1.305 2 1.305s2-.668 2-1.305v-4h-4z"/><path fill="#CC9B7A" d="M24 14.042c0 .682.896 1.305 2 1.305s2-.668 2-1.305V11l-4 .019v3.023z"/><path fill="#D4AB88" d="M31 3H21v6c0 2.762 2.238 5 5 5s5-2.237 5-5V3z"/><path fill="#963B22" d="M21 2.5L20.5 5l.5 2c2.333 0 2.85-2.412 2.965-3.488C24.004 4.588 24.779 7 31 7l.5-2-.5-2.5H21z"/><path fill="#C1694F" d="M28 12h-4s0 1 2 1 2-1 2-1z"/><circle fill="#662113" cx="23.5" cy="8.5" r=".5"/><circle fill="#662113" cx="28.5" cy="8.5" r=".5"/><path fill="#C1694F" d="M25 10h2s0 1-1 1-1-1-1-1z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f468-1f3fe-200d-1f9af.svg b/public/emoji/1f468-1f3fe-200d-1f9af.svg
new file mode 100644
index 0000000000000000000000000000000000000000..56845736e191be48dfb3d8dbe2e59b5fd73d27cd
--- /dev/null
+++ b/public/emoji/1f468-1f3fe-200d-1f9af.svg
@@ -0,0 +1 @@
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#CCD6DD" d="M12.154 19.416l.802.598L3.988 32.04l-.802-.598z"/><path fill="#DD2E44" d="M3.186 31.444L1.093 34.25c-.164.22-.119.535.102.7s.535.119.7-.102l2.092-2.806-.801-.598z"/><path fill="#292F33" d="M11.359 21.319c-.22-.164-.266-.479-.102-.7l1.793-2.405c.164-.22.479-.266.7-.102.22.164.266.479.102.7l-1.793 2.405c-.164.221-.479.267-.7.102z"/><path fill="#292F33" d="M11.76 21.618l-.802-.598c-.22-.164-.266-.479-.102-.7.164-.22.479-.266.7-.102l.802.598c.22.164.266.479.102.7-.164.221-.479.267-.7.102z"/><path fill="#99AAB5" d="M.598 35.751c-.22-.164-.266-.479-.102-.7.164-.22.479-.266.7-.102.22.164.266.479.102.7-.165.22-.48.266-.7.102z"/><path fill="#292F33" d="M20.436 35.056s.061-.144.061-.448c0-.303-.156-.869-.199-.95-.043-.081-.09-.139-.194-.11-.079.022-.685.326-1.072.341-.719.027-1.066-.618-1.066-.618s-.399.228-.716.413c-.318.185-.687.462-.959.627-.232.141-.497.208-.771.243s-.497.023-.563.029c-.066.006-.621-.061-.641.488l.004.16s.987.397 2.344.397 1.566-.399 2.444-.399c.877 0 1.328-.173 1.328-.173z"/><path fill="#292F33" d="M18.685 35.926c-.058-.052-.123-.22-.173-.243-.05-.023-.57.089-.813.146-.243.058-.66.156-1.152.156-.491 0-1.126-.144-1.519-.243-.393-.098-.701-.23-.77-.274-.07-.043-.05-.063-.046-.096.004-.033.052-.202.052-.202s.251.132.678.237c.426.104.851.183 1.584.183s1.193-.109 1.574-.211c.475-.128 1.163-.267 1.656-.267.38 0 .648-.112.751-.139.024-.006.046.012.046.037v.649c0 .042-.035.139-.146.162-.112.024-1.664.157-1.722.105zm12.222-5.012s-.072-.142-.307-.343-.777-.454-.868-.473c-.091-.02-.167-.022-.213.078-.035.075-.199.746-.444 1.056-.454.575-1.184.418-1.184.418s-.087.46-.153.828-.096.838-.148 1.158c-.044.273-.167.523-.322.758-.154.236-.31.4-.35.456-.039.055-.457.441-.045.82l.127.101s.96-.502 1.857-1.555c.897-1.052.726-1.477 1.306-2.158.58-.68.744-1.144.744-1.144z"/><path fill="#292F33" d="M30.425 32.846c-.078.01-.252-.05-.303-.026-.051.024-.308.5-.424.727-.116.226-.316.615-.64.996s-.856.778-1.192 1.018c-.336.24-.642.391-.721.416s-.082-.003-.104-.028c-.022-.025-.122-.174-.122-.174s.269-.107.631-.369c.363-.261.705-.538 1.189-1.107.484-.568.704-.997.876-1.36.214-.452.562-1.078.887-1.46.251-.295.342-.576.388-.674.011-.023.04-.028.059-.012l.503.429c.033.028.085.118.029.22-.055.103-.978 1.394-1.056 1.404z"/><path fill="#AF7E57" d="M21.5 1.384c-1.593-.627-4.077.182-4.365 2.043-.287 1.848.239 4.747 1.863 4.572 1.702-.184 3.448-.554 4.138-2.307s-.042-3.681-1.636-4.308z"/><path fill="#AF7E57" d="M22.684 6.143c2.318-2.723-3.266-2.458-3.266-2.458-1.057.038-.329 1.799-.827 2.761-.341.665 1.095 1.018 1.095 1.018s.659-.01.694.79v.007c.008.204-.013.445-.108.769-.473 1.601 1.677 2.582 2.149.978.187-.635.114-1.193.02-1.708l-.009-.046c-.144-.766-.322-1.437.252-2.111z"/><path fill="#60352A" d="M23.32 2.026C22.259.784 20.74.125 18.301 1.235c-.994.452-1.439.285-1.58.484-.679.953.246 2.01.608 1.799 1.148-.669 2.183-.47 2.447.014s.021 1.354.234 1.359c.578.016.484-.551.714-.878.375-.534.946-.232 1.071.362.099.471 0 1.271-.77 1.412.523 1.151 1.56 1.502 1.56 1.502s.337.132.912-1.001c.576-1.134.877-3.029-.177-4.262z"/><path fill="#2A6797" d="M18.558 34.203c-1.266.109-1.853-.233-1.721-.416.165-.228.128-.397.13-.536.028-2.441-.472-5.991-.472-5.991 0-.348.003-.813.312-1.562.778-1.883 3.951-7.69 3.951-7.69.548-.958 1.771-1.293 2.729-.744.959.548 1.122 1.405.744 2.729-.715 2.508-2.965 5.602-3.903 7.477.224 2.121-.174 3.853.035 5.857.03.288-.54.767-1.805.876z"/><path fill="#4289C1" d="M29.292 31.931c-.364.553-.97.942-1.598.838-1.269-1.924-4.955-5.321-4.955-5.321-.241-.25-.562-.587-.86-1.341-.748-1.895-2.498-8.277-2.498-8.277-.272-1.07.376-2.16 1.446-2.43 1.07-.272 1.783.232 2.43 1.446 1.227 2.301 1.757 6.09 2.384 8.09 1.87 1.568 2.383 3.603 4.275 5.151-.064.857-.26 1.291-.624 1.844z"/><path fill="#77B255" d="M25.495 20s0 1-2 1h-4.898c-.415-2-.027-5.004.006-7.765.043-3.623 2.298-5.609 3.71-5.155 1.846.594 2.693 2.641 2.932 5.858.239 3.216.25 6.062.25 6.062z"/><path fill="#AF7E57" d="M20.029 11.693c-.781 1.172-2.291 3.808-2.518 3.909-1.205.534-2.549 1.22-3.445 1.314-.649.068-1.254.68-1.508.925-.316.304-.75 1.008-.63 1.37.075.226.571.488.742.253.332-.458.973-.535 1.49-.889 1.038-.712 3.284-.765 4.556-1.709.528-.391 1.677-1.309 3.2-3.9-.592-.426-1.887-1.273-1.887-1.273z"/><path fill="#292F33" d="M14.21 17.018c.477.152.847.624.557 1.114-.29.49.403.185.512-.045.223-.468-.178-1.158-.646-1.314-.468-.156-.746.142-.423.245z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f468-1f3fe-200d-1f9bc.svg b/public/emoji/1f468-1f3fe-200d-1f9bc.svg
new file mode 100644
index 0000000000000000000000000000000000000000..0e2b8bed404a4b8fd6460b96d1a688bfc49c3ccc
--- /dev/null
+++ b/public/emoji/1f468-1f3fe-200d-1f9bc.svg
@@ -0,0 +1 @@
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#AF7E57" d="M26.007 1.015c-1.214-.871-3.488-.718-4.13.795-.638 1.502-.813 4.067.598 4.266 1.479.209 3.036.269 3.994-1.066.959-1.335.752-3.124-.462-3.995z"/><path fill="#AF7E57" d="M25.99 5.295c2.544-1.808-2.238-2.778-2.238-2.778-.902-.194-.664 1.452-1.29 2.159-.431.49.708 1.096.708 1.096s.56.133.419.817l-.002.006c-.037.174-.107.374-.256.627-.743 1.253.866 2.543 1.609 1.287.294-.497.352-.985.382-1.441l.003-.041c.043-.679.036-1.285.665-1.732z"/><path fill="#60352A" d="M27.409 1.948C26.777.671 25.632-.212 23.332.206c-.937.17-1.279-.066-1.441.071-.778.661-.222 1.753.13 1.652 1.114-.321 1.948.069 2.068.535.12.466-.272 1.15-.092 1.2.486.137.528-.363.791-.59.431-.371.85.006.829.535-.017.42-.272 1.075-.953 1.03.196 1.086.998 1.604.998 1.604s.256.184.986-.652c.729-.836 1.389-2.375.761-3.643z"/><path fill="#292F33" d="M8.22 28.583s.108-.118.211-.409c.104-.291.147-.888.133-.98-.014-.092-.039-.164-.148-.171-.083-.006-.768.08-1.145-.039-.699-.22-.812-.957-.812-.957s-.46.083-.829.152c-.368.069-.818.209-1.134.274-.271.056-.548.03-.823-.03-.275-.06-.485-.147-.55-.165-.066-.017-.575-.27-.782.25l-.051.154s.811.718 2.114 1.182c1.303.464 1.639.152 2.481.452.843.3 1.335.287 1.335.287z"/><path fill="#292F33" d="M6.243 28.821c-.038-.07-.043-.253-.083-.292-.04-.039-.577-.11-.83-.137-.253-.027-.687-.076-1.158-.244-.471-.168-1.032-.523-1.375-.752-.343-.228-.594-.46-.646-.526s-.026-.078-.011-.107.119-.176.119-.176.196.213.569.459.754.467 1.458.717c.703.25 1.182.303 1.583.335.499.039 1.207.141 1.681.309.365.13.66.114.768.123.025.002.04.027.032.051l-.222.623c-.014.041-.081.121-.196.105s-1.651-.419-1.689-.488z"/><path fill="#4289C1" d="M25.097 17.21c.069 1.432-.391 2.922-1.505 3.202-1.066.268-3.056-.151-3.056-.151s-.698.408-.531 1.189c.095.444.257.67.201.712-.05.038-.486-.022-.684-.032-.528-.027-1.1-.211-2.073-.484-.974-.273-1.421-.285-2.481-.577-1.175-.324-1.986-.835-2.33-1.956-.293-.956.277-2.123 1.654-2.63 1.12-.412 4.339-.347 5.539-.231 1.201.118 5.206-.287 5.266.958z"/><path fill="#4289C1" d="M7.002 27.225c-.646-.143-1.293-.6-1.419-1.224 1.346-1.871 3.671-7.538 3.671-7.538.695-1.744 1.517-3.426 3.133-3.182 2.081.315 5.629 1.028 5.629 1.028 2.276.329 1.144 1.007 1.778 1.912.635.903-1.294 1.99-2.786 1.891-2.602-.173-3.877-.453-5.522.846-.8 2.306-2.071 4.087-2.844 6.406-.826.244-.993.004-1.64-.139z"/><path fill="#77B255" d="M25.569 16.971c-.211.688-.149 1.604-.515 1.362-1.444-.957-5.521-2.045-5.521-2.045.049-1.673.979-3.969 1.559-6.148.762-2.86 3.067-3.951 4.171-3.289 1.443.865 1.75 2.668 1.308 5.266s-.791 4.166-1.002 4.854z"/><path fill="#66757F" d="M27.811 10.609l.425-5.242c.022-.274.265-.48.539-.458.274.022.48.265.458.539l-.425 5.242c-.022.274-.265.48-.539.458-.274-.022-.48-.265-.458-.539z"/><path fill="#292F33" d="M16 21v2s-2 0-2 2v3c0 1 1 2 2 2h10c1 0 2-1 2-2v-5c0-1-1-2-2-2H16z"/><path fill="#292F33" d="M22.956 22.559l-9.848-1.736c-.985-.174-.985-.174-.811-1.158.096-.542.617-.907 1.158-.811l9.848 1.736c.542.096.907.617.811 1.158-.173.985-.173.985-1.158.811z"/><path fill="#292F33" d="M25.238 19.023c-.193.922-.557 1.827-2.094 1.537-1.537-.29-1.782 1.225-.824 1.493.958.267 3.252.646 3.921-.446.668-1.092.78-2.139.713-2.606s-1.572-.66-1.716.022z"/><path fill="#DD2E44" d="M23.442 22.896l-10.833-1.91c-.271-.048-.453-.308-.406-.579.048-.271.308-.453.579-.406l10.833 1.91c.271.048.453.308.406.579-.048.271-.309.454-.579.406z"/><path fill="#292F33" d="M28.932 9.642l-1.736 9.848c-.174.985-.174.985-1.158.811-.542-.096-.907-.617-.811-1.158l1.736-9.848c.096-.542.617-.907 1.158-.811.984.173.984.173.811 1.158zm.992-7.49l-.713 4.025c-.087.493-.168 1.007-1.153.834-.542-.096-.882-.715-.763-1.398l.639-3.609c.163-.579.626-1.004 1.167-.909.985.173.91.564.823 1.057z"/><path fill="#DD2E44" d="M29.406 9.224l-1.91 10.833c-.048.271-.308.453-.579.406-.271-.048-.453-.308-.406-.579l1.91-10.833c.048-.271.308-.453.579-.406.272.048.454.308.406.579zm1.243-7.455l-.91 5.18c-.048.271-.308.453-.579.406-.271-.048-.453-.308-.406-.579l.91-5.18c.048-.271.308-.453.579-.406.271.047.454.308.406.579z"/><path fill="#292F33" d="M25.494 18.441l-7.466-1.316c-.747-.132-.747-.132-.617-.869.071-.405.466-.678.877-.606l7.466 1.316c.411.072.688.463.617.869-.13.738-.13.738-.877.606z"/><path fill="#DD2E44" d="M23.123 21.824c.993.175 2.954.521 3.475-2.433s1.506-2.781.985.174-2.237 3.667-4.634 3.245c-1.969-.348-1.796-1.333.174-.986zm-10.33-1.821c1.971.34 2.277 1.422.308 1.07-.873-.156-.984.212-1.251.958-.252.702-.611 1.757-1.144 3.23-.391 1.082-1.279.603-.95-.342.551-1.588 1.061-2.968 1.392-3.847.338-.895.613-1.247 1.645-1.069z"/><path fill="#DD2E44" d="M10.62 24.01c-.258-.094-.547.04-.641.299l-2.052 5.638c-.094.258.04.547.299.641.258.094.547-.04.641-.299l2.052-5.638c.094-.259-.041-.547-.299-.641z"/><path fill="#66757F" d="M8.226 30.588L4.467 29.22c-.258-.094-.393-.382-.299-.641.094-.258.382-.393.641-.299l3.759 1.368c.258.094.393.382.299.641-.094.258-.383.393-.641.299z"/><path fill="#DD2E44" d="M13.844 30.862l2.95-2.95c.194-.194.194-.513 0-.707-.194-.194-.513-.194-.707 0l-2.95 2.95c-.194.194-.194.513 0 .707.194.194.512.194.707 0zM32 34c-.55 0-1-.45-1-1v-3c0-.55.45-1 1-1s1 .45 1 1v3c0 .55-.45 1-1 1z"/><path fill="#DD2E44" d="M13.5 34c-.55 0-1-.45-1-1v-3c0-.55.45-1 1-1s1 .45 1 1v3c0 .55-.45 1-1 1zm12.983-6.005h2c.275 0 .5-.225.5-.5s-.225-.5-.5-.5h-2c-.275 0-.5.225-.5.5s.225.5.5.5z"/><path fill="#DD2E44" d="M31.123 30.803l-2.95-2.95c-.194-.194-.194-.513 0-.707.194-.194.513-.194.707 0l2.95 2.95c.194.194.194.513 0 .707-.194.195-.512.195-.707 0z"/><path fill="#292F33" d="M11.672 16.127c.742.318 2.05.936 2.339 1.047 0 0 .134-.891.49-.891 0 0 .134-.468.223-.668s.356-.134.379.245c.022.379-.089.512-.089.512s.334.423.134 1.002c0 0 .446.067.356.624-.089.557.067.98-.334 1.092-.401.111-1.916.535-1.938-.067-.022-.601-.401-1.069-1.136-1.515-.735-.446-1.27-.936-1.181-1.181.088-.244.133-.467.757-.2z"/><path fill="#DD2E44" d="M26.5 25h-11c-.275 0-.5-.225-.5-.5s.225-.5.5-.5h11c.275 0 .5.225.5.5s-.225.5-.5.5z"/><path fill="#AF7E57" d="M22.691 10.276c-.579 1.455-1.125 3.55-1.381 3.561-1.473.062-3.079.948-4.006.893-.672-.04-1.306-.167-1.651-.05-.552.187-1.159.289-1.351.632-.195.348.171.657 1.035.656.635 0 1.045.208 1.674.06.896-.21 3.986.754 5.665-.345.566-.371 1.441-1.871 2.525-4.663-1.084-.477-2.51-.744-2.51-.744z"/><circle fill="#66757F" cx="21.5" cy="31.5" r="4.5"/><circle fill="#66757F" cx="13.5" cy="33.5" r="2.5"/><circle fill="#66757F" cx="32" cy="34" r="2"/><circle fill="#CCD6DD" cx="21.5" cy="31.5" r="2.5"/><circle fill="#CCD6DD" cx="13.5" cy="33.5" r="1.5"/><circle fill="#292F33" cx="32" cy="34" r="1"/><g fill="#292F33"><circle cx="22" cy="30.634" r=".5"/><circle cx="21" cy="32.366" r=".5"/><circle cx="20.634" cy="31" r=".5"/><circle cx="22.366" cy="32" r=".5"/></g><circle fill="#292F33" cx="13.5" cy="33.5" r=".75"/><circle fill="#66757F" cx="32" cy="34" r=".5"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f468-1f3fe-200d-1f9bd.svg b/public/emoji/1f468-1f3fe-200d-1f9bd.svg
new file mode 100644
index 0000000000000000000000000000000000000000..655037085f2de638c6eb9241284dbbd538870682
--- /dev/null
+++ b/public/emoji/1f468-1f3fe-200d-1f9bd.svg
@@ -0,0 +1 @@
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#AF7E57" d="M21.96.974c-1.285-.762-3.537-.411-4.045 1.152-.504 1.552-.455 4.123.968 4.198 1.492.079 3.048.003 3.886-1.41.838-1.414.476-3.178-.809-3.94z"/><path fill="#AF7E57" d="M22.316 5.239c2.376-2.023-2.471-2.572-2.471-2.572-.916-.114-.535 1.504-1.097 2.263-.387.526.801 1.03.801 1.03s.569.083.488.777l-.001.006c-.021.177-.074.382-.2.647-.631 1.313 1.085 2.458 1.715 1.142.249-.521.265-1.012.255-1.469l-.001-.041c-.017-.68-.076-1.283.511-1.783z"/><path fill="#60352A" d="M23.439 1.781C22.698.564 21.481-.216 19.225.4c-.919.251-1.279.045-1.429.196-.718.726-.068 1.766.273 1.634 1.082-.417 1.946-.101 2.106.353.16.454-.171 1.169.013 1.204.496.094.494-.407.737-.657.397-.408.847-.068.872.461.02.419-.177 1.095-.86 1.109.29 1.065 1.134 1.511 1.134 1.511s.271.161.925-.735c.655-.896 1.178-2.486.443-3.695z"/><path fill="#292F33" d="M8.211 30.079s.097-.127.175-.426c.078-.299.069-.897.047-.988-.022-.091-.053-.16-.163-.158-.083.001-.759.146-1.144.061-.716-.158-.892-.883-.892-.883s-.452.123-.812.223c-.361.101-.796.279-1.106.372-.265.079-.543.078-.823.041-.279-.036-.496-.105-.563-.116s-.597-.219-.757.317l-.037.159s.871.645 2.209.993 1.646.009 2.511.234 1.355.171 1.355.171z"/><path fill="#292F33" d="M6.262 30.488c-.044-.066-.065-.248-.109-.284-.043-.036-.585-.059-.839-.064-.254-.005-.691-.016-1.175-.142s-1.074-.431-1.436-.629-.632-.407-.689-.468c-.057-.061-.033-.075-.02-.106.013-.031.103-.186.103-.186s.214.195.607.407.792.399 1.514.587 1.204.199 1.606.195c.501-.004 1.215.035 1.701.162.375.098.668.056.776.056.025 0 .043.023.036.048l-.167.64c-.011.042-.07.128-.186.122-.114-.004-1.679-.271-1.722-.338z"/><path fill="#4289C1" d="M24.032 17.279c.193 1.421-.135 2.945-1.22 3.321-1.039.36-3.058.116-3.058.116s-.66.468-.426 1.231c.133.434.314.645.262.692-.046.042-.486.02-.684.027-.528.02-1.114-.115-2.108-.301-.994-.187-1.44-.16-2.522-.359-1.198-.22-2.051-.659-2.491-1.745-.375-.927.091-2.139 1.419-2.764 1.08-.508 4.292-.724 5.498-.712 1.207.011 5.162-.741 5.33.494z"/><path fill="#4289C1" d="M6.879 28.832c-.656-.086-1.341-.485-1.521-1.095 1.178-1.982 3-7.829 3-7.829.541-1.798 1.213-3.546 2.843-3.443 2.1.133 5.697.533 5.697.533 2.296.13 1.228.904 1.938 1.75.712.845-1.115 2.095-2.611 2.126-2.607.054-3.902-.113-5.428 1.324-.596 2.367-1.706 4.252-2.275 6.63-.799.315-.987.091-1.643.004z"/><path fill="#77B255" d="M24.698 16.173c.029.719.15 1.674-.276 1.567-1.679-.424-5.438-.168-5.438-.168-.508-1.594-.392-4.069-.566-6.317-.229-2.95 1.585-4.744 2.845-4.485.513.105 1.136.428 1.511.77.278.253.924.961 1.141 1.169 1.106 1.06.124 1.405.327 2.596.444 2.597.427 4.149.456 4.868z"/><g fill="#DD2E44"><path d="M13.465 27.092l10.824.95c.274.024.518-.181.542-.455.024-.274-.181-.518-.455-.542l-10.824-.95c-.274-.024-.518.181-.542.455-.024.274.181.518.455.542z"/><path d="M24.288 28.041c-.274-.024-.478-.268-.455-.542l.436-4.981c.024-.274.268-.478.542-.455.274.024.478.268.455.542l-.436 4.981c-.024.275-.268.479-.542.455zm-10.738-7.58c-.274-.024-.518.181-.542.455l-1.015 11.597c-.024.274.181.518.455.542.274.024.518-.181.542-.455l1.015-11.597c.023-.274-.181-.518-.455-.542z"/></g><path fill="#292F33" d="M23.524 20.592c1.431-.206 2.834-.148 2.345.544-.489.692-1.575 1.905-3.418 1.707-1.844-.198.185-2.123 1.073-2.251z"/><path fill="#292F33" d="M22.45 22.843l-9.962-.872c-.996-.087-.996-.087-.909-1.083.048-.548.535-.957 1.083-.909l9.962.872c.548.048.957.535.909 1.083-.087.996-.087.996-1.083.909z"/><path fill="#DD2E44" d="M22.964 23.136l-10.958-.959c-.274-.024-.478-.268-.455-.542.024-.274.268-.478.542-.455l10.958.959c.274.024.478.268.455.542-.025.275-.268.479-.542.455z"/><path fill="#292F33" d="M27.278 9.454l-.872 9.962c-.087.996-.087.996-1.083.909-.548-.048-.957-.535-.909-1.083l.872-9.962c.048-.548.535-.957 1.083-.909.996.087.996.087.909 1.083z"/><path fill="#DD2E44" d="M27.714 8.996l-.959 10.958c-.024.274-.268.478-.542.455-.274-.024-.478-.268-.455-.542l.959-10.958c.024-.274.268-.478.542-.455.274.025.479.268.455.542z"/><path fill="#292F33" d="M24.62 18.519l-7.552-.661c-.755-.066-.755-.066-.69-.812.036-.41.405-.716.82-.68l7.552.661c.415.036.726.402.69.812-.064.746-.064.746-.82.68z"/><path fill="#DD2E44" d="M22.553 22.096c1.004.088 2.989.261 3.25-2.727s1.258-2.901.996.087-1.909 3.848-4.333 3.636c-1.993-.174-1.906-1.17.087-.996zm-10.449-.914c1.993.166 2.392 1.218.4 1.039-.883-.079-.962.297-1.163 1.063-.189.721-.456 1.803-.858 3.318-.295 1.112-1.221.712-.977-.257.411-1.63.798-3.05 1.052-3.953.258-.922.502-1.297 1.546-1.21z"/><g fill="#66757F"><circle cx="24.5" cy="27.5" r="1.5"/><path d="M31.245 30.817l-6.062-3.5 3.5-6.062-.866-.5-3.5 6.062-6.062-3.5-.5.866 6.062 3.5-3.5 6.062.866.5 3.5-6.062 6.062 3.5z"/><path d="M26.924 34.615l-1.812-6.761 6.762-1.812-.259-.966-6.761 1.812-1.812-6.762-.966.259 1.812 6.761-6.762 1.812.259.966 6.761-1.812 1.812 6.762z"/></g><path fill="#292F33" d="M24.5 19c-4.694 0-8.5 3.806-8.5 8.5s3.806 8.5 8.5 8.5 8.5-3.806 8.5-8.5-3.806-8.5-8.5-8.5zm0 15c-3.59 0-6.5-2.91-6.5-6.5s2.91-6.5 6.5-6.5 6.5 2.91 6.5 6.5-2.91 6.5-6.5 6.5z"/><path fill="#66757F" d="M24.5 20c-4.142 0-7.5 3.358-7.5 7.5s3.358 7.5 7.5 7.5 7.5-3.358 7.5-7.5-3.358-7.5-7.5-7.5zm0 14c-3.59 0-6.5-2.91-6.5-6.5s2.91-6.5 6.5-6.5 6.5 2.91 6.5 6.5-2.91 6.5-6.5 6.5zm-9.152-.433l-2.165-1.25 1.25-2.165-.866-.5-1.25 2.165-2.165-1.25-.5.866 2.165 1.25-1.25 2.165.866.5 1.25-2.165 2.165 1.25z"/><path fill="#292F33" d="M12.5 29C10.567 29 9 30.567 9 32.5s1.567 3.5 3.5 3.5 3.5-1.567 3.5-3.5-1.567-3.5-3.5-3.5zm0 6c-1.381 0-2.5-1.119-2.5-2.5s1.119-2.5 2.5-2.5 2.5 1.119 2.5 2.5-1.119 2.5-2.5 2.5z"/><path fill="#DD2E44" d="M10.288 25.363c-.266-.071-.541.088-.612.354l-1.553 5.796c-.071.266.088.541.354.612.266.071.541-.088.612-.354l1.553-5.796c.07-.265-.089-.541-.354-.612z"/><path fill="#66757F" d="M8.476 32.125L4.612 31.09c-.266-.071-.425-.347-.354-.612.071-.266.347-.425.612-.354l3.864 1.035c.266.071.426.346.354.612-.071.266-.346.425-.612.354z"/><path fill="#DD2E44" d="M30.103 9.969l-2.954-.521c-.271-.048-.453-.308-.406-.579.048-.271.308-.453.579-.406l2.954.521c.271.048.453.308.406.579-.048.272-.308.454-.579.406z"/><path fill="#292F33" d="M31.088 10.143l-2.615-.467c-.271-.048-.26-.274-.213-.545.048-.271.116-.487.386-.44l2.615.467c.271.048.453.308.406.579-.048.271-.308.454-.579.406z"/><path fill="#AF7E57" d="M22.118 10.597c1.142.988 3.458 2.697 3.436 2.951-.128 1.469.543 3.175.369 4.087-.126.661-.665 1.138-.594 1.495.667-.009.443 1.15.729 1.665.301.542 1.171-.093 1.282-.949.081-.629-.102-1.11-.167-1.752-.093-.915 1.094-3.661.22-5.467-.295-.609-1.531-2.277-3.635-4.122-.595.457-1.64 2.092-1.64 2.092z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f468-1f3ff-200d-1f91d-200d-1f468-1f3fb.svg b/public/emoji/1f468-1f3ff-200d-1f91d-200d-1f468-1f3fb.svg
new file mode 100644
index 0000000000000000000000000000000000000000..b2383477f13ef32b516e43e0fbbe97a41a1f83ae
--- /dev/null
+++ b/public/emoji/1f468-1f3ff-200d-1f91d-200d-1f468-1f3fb.svg
@@ -0,0 +1 @@
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#0B0200" d="M10.498 0c-1.186 0-2.282.379-3.18 1.018-1.847.096-3.32 1.611-3.32 3.482 0 1.542.007 3.484 2.038 4.208C7.035 10.094 8.659 11 10.498 11c3.037 0 5.5-2.462 5.5-5.499 0-3.038-2.462-5.501-5.5-5.501z"/><path fill="#7C533E" d="M17.896 26.76c.271.091.487-.159.586-.302.279-.405.422-1.309.004-2.227-.423-.927-.702-2.072-1.69-3.821-.115-.204-.494-2.746-1.242-4.354-.202-.435-1.495-.684-2.009-.529-.513.154.005.98.037 1.134.344 1.651 1.305 4.077 1.45 4.404.8 1.806 1.965 2.389 2.071 3.706.055.69.205 1.286.6 1.228.092.352.093.728.193.761zM3.3 26.964c-.257.126-.504-.094-.62-.222-.33-.365-.591-1.242-.296-2.208.297-.975.424-2.146 1.174-4.01.087-.217.129-2.787.66-4.479.143-.457 1.392-.875 1.922-.789.529.086.124.972.112 1.129-.124 1.682-.758 4.213-.859 4.556-.556 1.895-1.634 2.627-1.566 3.946.036.692-.034 1.302-.433 1.296-.048.363 0 .735-.094.781z"/><path fill="#AAB8C2" d="M13.554 29.5c.5-2.734.422-6.5.422-6.5H6.013s-.078 3.766.422 6.5c.063.344.188 3.344-.109 5.5-.066.479 2.886.937 2.844-.125-.078-1.969.264-3.513.328-4.5.035-.547.25-1.875.344-3.208.011-.018.295-.018.306 0 .094 1.333.308 2.661.344 3.208.064.987.406 2.531.328 4.5-.042 1.062 2.91.604 2.844.125-.298-2.156-.173-5.156-.11-5.5z"/><path fill="#292F33" d="M14.538 36c.499-.406-.041-1.161-1.42-1.402-1.163-.203-2.2-.032-2.363.35-.212.493-.05 1.052-.05 1.052h3.833zm-9.117 0c-.499-.406.041-1.161 1.42-1.402 1.163-.203 2.2-.032 2.363.35.212.493.05 1.052.05 1.052H5.421z"/><path fill="#4289C1" d="M14.795 14.766C13.577 14 11.998 14 11.998 14h-4s-1.578 0-2.797.766c-1.201.754-1.656 3-1.656 3l2.203.688.11 5.546h8.281l.109-5.547 2.203-.688c.001.001-.455-2.245-1.656-2.999z"/><path fill="#7C533E" d="M7.998 10.042v4c0 .682.896 1.305 2 1.305s2-.668 2-1.305v-4h-4z"/><path fill="#664131" d="M7.998 14.042c0 .682.896 1.305 2 1.305s2-.668 2-1.305V11l-4 .019v3.023z"/><path fill="#7C533E" d="M14.998 3h-10v6c0 2.762 2.238 5 5 5s5-2.237 5-5V3z"/><path fill="#0B0200" d="M4.998 2.5l-.5 2.5.5 2c2.333 0 2.85-2.412 2.965-3.488C8.002 4.588 8.778 7 14.998 7l.5-2-.5-2.5h-10z"/><path fill="#3D2E24" d="M11.998 12h-4s0 1 2 1 2-1 2-1z"/><circle cx="7.498" cy="8.5" r=".5"/><circle cx="12.498" cy="8.5" r=".5"/><path fill="#3D2E24" d="M8.998 10h2s0 1-1 1-1-1-1-1z"/><path fill="#292F33" d="M26.5 0c-1.187 0-2.282.379-3.181 1.018C21.473 1.114 20 2.629 20 4.5c0 1.542.007 3.484 2.038 4.208C23.036 10.094 24.66 11 26.5 11c3.037 0 5.5-2.462 5.5-5.499C32 2.463 29.537 0 26.5 0z"/><path fill="#F7DECE" d="M18.117 26.76c-.271.091-.487-.159-.586-.302-.279-.405-.422-1.309-.004-2.227.423-.927.702-2.072 1.69-3.821.115-.204.494-2.746 1.242-4.354.202-.435 1.495-.684 2.009-.529.513.154-.005.98-.037 1.134-.344 1.651-1.305 4.077-1.45 4.404-.8 1.806-1.965 2.389-2.071 3.706-.055.69-.205 1.286-.6 1.228-.092.352-.094.728-.193.761zm14.595.204c.257.126.504-.094.62-.222.33-.365.591-1.242.296-2.208-.297-.975-.424-2.146-1.174-4.01-.087-.217-.129-2.787-.66-4.479-.143-.457-1.392-.875-1.922-.789-.529.086-.124.972-.112 1.129.124 1.682.758 4.213.859 4.556.556 1.895 1.634 2.627 1.566 3.946-.036.692.034 1.302.433 1.296.048.363 0 .735.094.781z"/><path fill="#F7DECE" d="M18.117 26.76c-.271.091-.487-.159-.586-.302-.279-.405-.422-1.309-.004-2.227.423-.927.702-2.072 1.69-3.821.115-.204.494-2.746 1.242-4.354.202-.435 1.495-.684 2.009-.529.513.154-.005.98-.037 1.134-.344 1.651-1.305 4.077-1.45 4.404-.8 1.806-1.965 2.389-2.071 3.706-.055.69-.205 1.286-.6 1.228-.092.352-.094.728-.193.761zm14.595.204c.257.126.504-.094.62-.222.33-.365.591-1.242.296-2.208-.297-.975-.424-2.146-1.174-4.01-.087-.217-.129-2.787-.66-4.479-.143-.457-1.392-.875-1.922-.789-.529.086-.124.972-.112 1.129.124 1.682.758 4.213.859 4.556.556 1.895 1.634 2.627 1.566 3.946-.036.692.034 1.302.433 1.296.048.363 0 .735.094.781z"/><path fill="#67757F" d="M29.555 29.5c.5-2.734.422-6.5.422-6.5h-7.963s-.078 3.766.422 6.5c.063.344.188 3.344-.109 5.5-.066.479 2.886.937 2.844-.125-.078-1.969.264-3.513.328-4.5.035-.547.25-1.875.344-3.208.011-.018.295-.018.306 0 .094 1.333.308 2.661.344 3.208.064.987.406 2.531.328 4.5-.042 1.062 2.91.604 2.844.125-.297-2.156-.172-5.156-.11-5.5z"/><path fill="#292F33" d="M30.54 36c.499-.406-.041-1.161-1.42-1.402-1.163-.203-2.2-.032-2.363.35-.212.493-.05 1.052-.05 1.052h3.833zm-9.117 0c-.499-.406.041-1.161 1.42-1.402 1.163-.203 2.2-.032 2.363.35.212.494.05 1.053.05 1.053L21.423 36z"/><path fill="#78B159" d="M30.797 14.766C29.578 14 28 14 28 14h-4s-1.578 0-2.797.766c-1.201.754-1.656 3-1.656 3l2.203.688.109 5.546h8.281l.109-5.547 2.203-.688c.001.001-.454-2.245-1.655-2.999z"/><path fill="#F7DECE" d="M24 10.042v4c0 .682.896 1.305 2 1.305s2-.668 2-1.305v-4h-4z"/><path fill="#EEC2AD" d="M24 14.042c0 .682.896 1.305 2 1.305s2-.668 2-1.305V11l-4 .019v3.023z"/><path fill="#F7DECE" d="M31 3H21v6c0 2.762 2.238 5 5 5s5-2.237 5-5V3z"/><path fill="#292F33" d="M21 2.5L20.5 5l.5 2c2.333 0 2.85-2.412 2.965-3.488C24.004 4.588 24.779 7 31 7l.5-2-.5-2.5H21z"/><path fill="#C1694F" d="M28 12h-4s0 1 2 1 2-1 2-1z"/><circle fill="#662113" cx="23.5" cy="8.5" r=".5"/><circle fill="#662113" cx="28.5" cy="8.5" r=".5"/><path fill="#C1694F" d="M25 10h2s0 1-1 1-1-1-1-1z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f468-1f3ff-200d-1f91d-200d-1f468-1f3fc.svg b/public/emoji/1f468-1f3ff-200d-1f91d-200d-1f468-1f3fc.svg
new file mode 100644
index 0000000000000000000000000000000000000000..a7f8308d1cbee696ce0d213d77dd5dba1dcfc288
--- /dev/null
+++ b/public/emoji/1f468-1f3ff-200d-1f91d-200d-1f468-1f3fc.svg
@@ -0,0 +1 @@
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#0B0200" d="M10.498 0c-1.186 0-2.282.379-3.18 1.018-1.847.096-3.32 1.611-3.32 3.482 0 1.542.007 3.484 2.038 4.208C7.035 10.094 8.659 11 10.498 11c3.037 0 5.5-2.462 5.5-5.499 0-3.038-2.462-5.501-5.5-5.501z"/><path fill="#7C533E" d="M17.896 26.76c.271.091.487-.159.586-.302.279-.405.422-1.309.004-2.227-.423-.927-.702-2.072-1.69-3.821-.115-.204-.494-2.746-1.242-4.354-.202-.435-1.495-.684-2.009-.529-.513.154.005.98.037 1.134.344 1.651 1.305 4.077 1.45 4.404.8 1.806 1.965 2.389 2.071 3.706.055.69.205 1.286.6 1.228.092.352.093.728.193.761zM3.3 26.964c-.257.126-.504-.094-.62-.222-.33-.365-.591-1.242-.296-2.208.297-.975.424-2.146 1.174-4.01.087-.217.129-2.787.66-4.479.143-.457 1.392-.875 1.922-.789.529.086.124.972.112 1.129-.124 1.682-.758 4.213-.859 4.556-.556 1.895-1.634 2.627-1.566 3.946.036.692-.034 1.302-.433 1.296-.048.363 0 .735-.094.781z"/><path fill="#AAB8C2" d="M13.554 29.5c.5-2.734.422-6.5.422-6.5H6.013s-.078 3.766.422 6.5c.063.344.188 3.344-.109 5.5-.066.479 2.886.937 2.844-.125-.078-1.969.264-3.513.328-4.5.035-.547.25-1.875.344-3.208.011-.018.295-.018.306 0 .094 1.333.308 2.661.344 3.208.064.987.406 2.531.328 4.5-.042 1.062 2.91.604 2.844.125-.298-2.156-.173-5.156-.11-5.5z"/><path fill="#292F33" d="M14.538 36c.499-.406-.041-1.161-1.42-1.402-1.163-.203-2.2-.032-2.363.35-.212.493-.05 1.052-.05 1.052h3.833zm-9.117 0c-.499-.406.041-1.161 1.42-1.402 1.163-.203 2.2-.032 2.363.35.212.493.05 1.052.05 1.052H5.421z"/><path fill="#4289C1" d="M14.795 14.766C13.577 14 11.998 14 11.998 14h-4s-1.578 0-2.797.766c-1.201.754-1.656 3-1.656 3l2.203.688.11 5.546h8.281l.109-5.547 2.203-.688c.001.001-.455-2.245-1.656-2.999z"/><path fill="#7C533E" d="M7.998 10.042v4c0 .682.896 1.305 2 1.305s2-.668 2-1.305v-4h-4z"/><path fill="#664131" d="M7.998 14.042c0 .682.896 1.305 2 1.305s2-.668 2-1.305V11l-4 .019v3.023z"/><path fill="#7C533E" d="M14.998 3h-10v6c0 2.762 2.238 5 5 5s5-2.237 5-5V3z"/><path fill="#0B0200" d="M4.998 2.5l-.5 2.5.5 2c2.333 0 2.85-2.412 2.965-3.488C8.002 4.588 8.778 7 14.998 7l.5-2-.5-2.5h-10z"/><path fill="#3D2E24" d="M11.998 12h-4s0 1 2 1 2-1 2-1z"/><circle cx="7.498" cy="8.5" r=".5"/><circle cx="12.498" cy="8.5" r=".5"/><path fill="#3D2E24" d="M8.998 10h2s0 1-1 1-1-1-1-1z"/><path fill="#FFE51E" d="M26.5 0c-1.187 0-2.282.379-3.181 1.018C21.473 1.114 20 2.629 20 4.5c0 1.542.007 3.484 2.038 4.208C23.036 10.094 24.66 11 26.5 11c3.037 0 5.5-2.462 5.5-5.499C32 2.463 29.537 0 26.5 0z"/><path fill="#F3D2A2" d="M18.117 26.76c-.271.091-.487-.159-.586-.302-.279-.405-.422-1.309-.004-2.227.423-.927.702-2.072 1.69-3.821.115-.204.494-2.746 1.242-4.354.202-.435 1.495-.684 2.009-.529.513.154-.005.98-.037 1.134-.344 1.651-1.305 4.077-1.45 4.404-.8 1.806-1.965 2.389-2.071 3.706-.055.69-.205 1.286-.6 1.228-.092.352-.094.728-.193.761zm14.595.204c.257.126.504-.094.62-.222.33-.365.591-1.242.296-2.208-.297-.975-.424-2.146-1.174-4.01-.087-.217-.129-2.787-.66-4.479-.143-.457-1.392-.875-1.922-.789-.529.086-.124.972-.112 1.129.124 1.682.758 4.213.859 4.556.556 1.895 1.634 2.627 1.566 3.946-.036.692.034 1.302.433 1.296.048.363 0 .735.094.781z"/><path fill="#F3D2A2" d="M18.117 26.76c-.271.091-.487-.159-.586-.302-.279-.405-.422-1.309-.004-2.227.423-.927.702-2.072 1.69-3.821.115-.204.494-2.746 1.242-4.354.202-.435 1.495-.684 2.009-.529.513.154-.005.98-.037 1.134-.344 1.651-1.305 4.077-1.45 4.404-.8 1.806-1.965 2.389-2.071 3.706-.055.69-.205 1.286-.6 1.228-.092.352-.094.728-.193.761zm14.595.204c.257.126.504-.094.62-.222.33-.365.591-1.242.296-2.208-.297-.975-.424-2.146-1.174-4.01-.087-.217-.129-2.787-.66-4.479-.143-.457-1.392-.875-1.922-.789-.529.086-.124.972-.112 1.129.124 1.682.758 4.213.859 4.556.556 1.895 1.634 2.627 1.566 3.946-.036.692.034 1.302.433 1.296.048.363 0 .735.094.781z"/><path fill="#67757F" d="M29.555 29.5c.5-2.734.422-6.5.422-6.5h-7.963s-.078 3.766.422 6.5c.063.344.188 3.344-.109 5.5-.066.479 2.886.937 2.844-.125-.078-1.969.264-3.513.328-4.5.035-.547.25-1.875.344-3.208.011-.018.295-.018.306 0 .094 1.333.308 2.661.344 3.208.064.987.406 2.531.328 4.5-.042 1.062 2.91.604 2.844.125-.297-2.156-.172-5.156-.11-5.5z"/><path fill="#292F33" d="M30.54 36c.499-.406-.041-1.161-1.42-1.402-1.163-.203-2.2-.032-2.363.35-.212.493-.05 1.052-.05 1.052h3.833zm-9.117 0c-.499-.406.041-1.161 1.42-1.402 1.163-.203 2.2-.032 2.363.35.212.494.05 1.053.05 1.053L21.423 36z"/><path fill="#78B159" d="M30.797 14.766C29.578 14 28 14 28 14h-4s-1.578 0-2.797.766c-1.201.754-1.656 3-1.656 3l2.203.688.109 5.546h8.281l.109-5.547 2.203-.688c.001.001-.454-2.245-1.655-2.999z"/><path fill="#F3D2A2" d="M24 10.042v4c0 .682.896 1.305 2 1.305s2-.668 2-1.305v-4h-4z"/><path fill="#E2C196" d="M24 14.042c0 .682.896 1.305 2 1.305s2-.668 2-1.305V11l-4 .019v3.023z"/><path fill="#F3D2A2" d="M31 3H21v6c0 2.762 2.238 5 5 5s5-2.237 5-5V3z"/><path fill="#FFE51E" d="M21 2.5L20.5 5l.5 2c2.333 0 2.85-2.412 2.965-3.488C24.004 4.588 24.779 7 31 7l.5-2-.5-2.5H21z"/><path fill="#C1694F" d="M28 12h-4s0 1 2 1 2-1 2-1z"/><circle fill="#662113" cx="23.5" cy="8.5" r=".5"/><circle fill="#662113" cx="28.5" cy="8.5" r=".5"/><path fill="#C1694F" d="M25 10h2s0 1-1 1-1-1-1-1z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f468-1f3ff-200d-1f91d-200d-1f468-1f3fd.svg b/public/emoji/1f468-1f3ff-200d-1f91d-200d-1f468-1f3fd.svg
new file mode 100644
index 0000000000000000000000000000000000000000..e9fc548f684a71106cf00e1be3ca6c622386041f
--- /dev/null
+++ b/public/emoji/1f468-1f3ff-200d-1f91d-200d-1f468-1f3fd.svg
@@ -0,0 +1 @@
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#0B0200" d="M10.498 0c-1.186 0-2.282.379-3.18 1.018-1.847.096-3.32 1.611-3.32 3.482 0 1.542.007 3.484 2.038 4.208C7.035 10.094 8.659 11 10.498 11c3.037 0 5.5-2.462 5.5-5.499 0-3.038-2.462-5.501-5.5-5.501z"/><path fill="#7C533E" d="M17.896 26.76c.271.091.487-.159.586-.302.279-.405.422-1.309.004-2.227-.423-.927-.702-2.072-1.69-3.821-.115-.204-.494-2.746-1.242-4.354-.202-.435-1.495-.684-2.009-.529-.513.154.005.98.037 1.134.344 1.651 1.305 4.077 1.45 4.404.8 1.806 1.965 2.389 2.071 3.706.055.69.205 1.286.6 1.228.092.352.093.728.193.761zM3.3 26.964c-.257.126-.504-.094-.62-.222-.33-.365-.591-1.242-.296-2.208.297-.975.424-2.146 1.174-4.01.087-.217.129-2.787.66-4.479.143-.457 1.392-.875 1.922-.789.529.086.124.972.112 1.129-.124 1.682-.758 4.213-.859 4.556-.556 1.895-1.634 2.627-1.566 3.946.036.692-.034 1.302-.433 1.296-.048.363 0 .735-.094.781z"/><path fill="#AAB8C2" d="M13.554 29.5c.5-2.734.422-6.5.422-6.5H6.013s-.078 3.766.422 6.5c.063.344.188 3.344-.109 5.5-.066.479 2.886.937 2.844-.125-.078-1.969.264-3.513.328-4.5.035-.547.25-1.875.344-3.208.011-.018.295-.018.306 0 .094 1.333.308 2.661.344 3.208.064.987.406 2.531.328 4.5-.042 1.062 2.91.604 2.844.125-.298-2.156-.173-5.156-.11-5.5z"/><path fill="#292F33" d="M14.538 36c.499-.406-.041-1.161-1.42-1.402-1.163-.203-2.2-.032-2.363.35-.212.493-.05 1.052-.05 1.052h3.833zm-9.117 0c-.499-.406.041-1.161 1.42-1.402 1.163-.203 2.2-.032 2.363.35.212.493.05 1.052.05 1.052H5.421z"/><path fill="#4289C1" d="M14.795 14.766C13.577 14 11.998 14 11.998 14h-4s-1.578 0-2.797.766c-1.201.754-1.656 3-1.656 3l2.203.688.11 5.546h8.281l.109-5.547 2.203-.688c.001.001-.455-2.245-1.656-2.999z"/><path fill="#7C533E" d="M7.998 10.042v4c0 .682.896 1.305 2 1.305s2-.668 2-1.305v-4h-4z"/><path fill="#664131" d="M7.998 14.042c0 .682.896 1.305 2 1.305s2-.668 2-1.305V11l-4 .019v3.023z"/><path fill="#7C533E" d="M14.998 3h-10v6c0 2.762 2.238 5 5 5s5-2.237 5-5V3z"/><path fill="#0B0200" d="M4.998 2.5l-.5 2.5.5 2c2.333 0 2.85-2.412 2.965-3.488C8.002 4.588 8.778 7 14.998 7l.5-2-.5-2.5h-10z"/><path fill="#3D2E24" d="M11.998 12h-4s0 1 2 1 2-1 2-1z"/><circle cx="7.498" cy="8.5" r=".5"/><circle cx="12.498" cy="8.5" r=".5"/><path fill="#3D2E24" d="M8.998 10h2s0 1-1 1-1-1-1-1z"/><path fill="#963B22" d="M26.5 0c-1.187 0-2.282.379-3.181 1.018C21.473 1.114 20 2.629 20 4.5c0 1.542.007 3.484 2.038 4.208C23.036 10.094 24.66 11 26.5 11c3.037 0 5.5-2.462 5.5-5.499C32 2.463 29.537 0 26.5 0z"/><path fill="#D4AB88" d="M18.117 26.76c-.271.091-.487-.159-.586-.302-.279-.405-.422-1.309-.004-2.227.423-.927.702-2.072 1.69-3.821.115-.204.494-2.746 1.242-4.354.202-.435 1.495-.684 2.009-.529.513.154-.005.98-.037 1.134-.344 1.651-1.305 4.077-1.45 4.404-.8 1.806-1.965 2.389-2.071 3.706-.055.69-.205 1.286-.6 1.228-.092.352-.094.728-.193.761zm14.595.204c.257.126.504-.094.62-.222.33-.365.591-1.242.296-2.208-.297-.975-.424-2.146-1.174-4.01-.087-.217-.129-2.787-.66-4.479-.143-.457-1.392-.875-1.922-.789-.529.086-.124.972-.112 1.129.124 1.682.758 4.213.859 4.556.556 1.895 1.634 2.627 1.566 3.946-.036.692.034 1.302.433 1.296.048.363 0 .735.094.781z"/><path fill="#D4AB88" d="M18.117 26.76c-.271.091-.487-.159-.586-.302-.279-.405-.422-1.309-.004-2.227.423-.927.702-2.072 1.69-3.821.115-.204.494-2.746 1.242-4.354.202-.435 1.495-.684 2.009-.529.513.154-.005.98-.037 1.134-.344 1.651-1.305 4.077-1.45 4.404-.8 1.806-1.965 2.389-2.071 3.706-.055.69-.205 1.286-.6 1.228-.092.352-.094.728-.193.761zm14.595.204c.257.126.504-.094.62-.222.33-.365.591-1.242.296-2.208-.297-.975-.424-2.146-1.174-4.01-.087-.217-.129-2.787-.66-4.479-.143-.457-1.392-.875-1.922-.789-.529.086-.124.972-.112 1.129.124 1.682.758 4.213.859 4.556.556 1.895 1.634 2.627 1.566 3.946-.036.692.034 1.302.433 1.296.048.363 0 .735.094.781z"/><path fill="#67757F" d="M29.555 29.5c.5-2.734.422-6.5.422-6.5h-7.963s-.078 3.766.422 6.5c.063.344.188 3.344-.109 5.5-.066.479 2.886.937 2.844-.125-.078-1.969.264-3.513.328-4.5.035-.547.25-1.875.344-3.208.011-.018.295-.018.306 0 .094 1.333.308 2.661.344 3.208.064.987.406 2.531.328 4.5-.042 1.062 2.91.604 2.844.125-.297-2.156-.172-5.156-.11-5.5z"/><path fill="#292F33" d="M30.54 36c.499-.406-.041-1.161-1.42-1.402-1.163-.203-2.2-.032-2.363.35-.212.493-.05 1.052-.05 1.052h3.833zm-9.117 0c-.499-.406.041-1.161 1.42-1.402 1.163-.203 2.2-.032 2.363.35.212.494.05 1.053.05 1.053L21.423 36z"/><path fill="#78B159" d="M30.797 14.766C29.578 14 28 14 28 14h-4s-1.578 0-2.797.766c-1.201.754-1.656 3-1.656 3l2.203.688.109 5.546h8.281l.109-5.547 2.203-.688c.001.001-.454-2.245-1.655-2.999z"/><path fill="#D4AB88" d="M24 10.042v4c0 .682.896 1.305 2 1.305s2-.668 2-1.305v-4h-4z"/><path fill="#CC9B7A" d="M24 14.042c0 .682.896 1.305 2 1.305s2-.668 2-1.305V11l-4 .019v3.023z"/><path fill="#D4AB88" d="M31 3H21v6c0 2.762 2.238 5 5 5s5-2.237 5-5V3z"/><path fill="#963B22" d="M21 2.5L20.5 5l.5 2c2.333 0 2.85-2.412 2.965-3.488C24.004 4.588 24.779 7 31 7l.5-2-.5-2.5H21z"/><path fill="#C1694F" d="M28 12h-4s0 1 2 1 2-1 2-1z"/><circle fill="#662113" cx="23.5" cy="8.5" r=".5"/><circle fill="#662113" cx="28.5" cy="8.5" r=".5"/><path fill="#C1694F" d="M25 10h2s0 1-1 1-1-1-1-1z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f468-1f3ff-200d-1f91d-200d-1f468-1f3fe.svg b/public/emoji/1f468-1f3ff-200d-1f91d-200d-1f468-1f3fe.svg
new file mode 100644
index 0000000000000000000000000000000000000000..f55ff86f9f9e77b045349ec1bfa93c9e53324589
--- /dev/null
+++ b/public/emoji/1f468-1f3ff-200d-1f91d-200d-1f468-1f3fe.svg
@@ -0,0 +1 @@
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#0B0200" d="M10.498 0c-1.186 0-2.282.379-3.18 1.018-1.847.096-3.32 1.611-3.32 3.482 0 1.542.007 3.484 2.038 4.208C7.035 10.094 8.659 11 10.498 11c3.037 0 5.5-2.462 5.5-5.499 0-3.038-2.462-5.501-5.5-5.501z"/><path fill="#7C533E" d="M17.896 26.76c.271.091.487-.159.586-.302.279-.405.422-1.309.004-2.227-.423-.927-.702-2.072-1.69-3.821-.115-.204-.494-2.746-1.242-4.354-.202-.435-1.495-.684-2.009-.529-.513.154.005.98.037 1.134.344 1.651 1.305 4.077 1.45 4.404.8 1.806 1.965 2.389 2.071 3.706.055.69.205 1.286.6 1.228.092.352.093.728.193.761zM3.3 26.964c-.257.126-.504-.094-.62-.222-.33-.365-.591-1.242-.296-2.208.297-.975.424-2.146 1.174-4.01.087-.217.129-2.787.66-4.479.143-.457 1.392-.875 1.922-.789.529.086.124.972.112 1.129-.124 1.682-.758 4.213-.859 4.556-.556 1.895-1.634 2.627-1.566 3.946.036.692-.034 1.302-.433 1.296-.048.363 0 .735-.094.781z"/><path fill="#AAB8C2" d="M13.554 29.5c.5-2.734.422-6.5.422-6.5H6.013s-.078 3.766.422 6.5c.063.344.188 3.344-.109 5.5-.066.479 2.886.937 2.844-.125-.078-1.969.264-3.513.328-4.5.035-.547.25-1.875.344-3.208.011-.018.295-.018.306 0 .094 1.333.308 2.661.344 3.208.064.987.406 2.531.328 4.5-.042 1.062 2.91.604 2.844.125-.298-2.156-.173-5.156-.11-5.5z"/><path fill="#292F33" d="M14.538 36c.499-.406-.041-1.161-1.42-1.402-1.163-.203-2.2-.032-2.363.35-.212.493-.05 1.052-.05 1.052h3.833zm-9.117 0c-.499-.406.041-1.161 1.42-1.402 1.163-.203 2.2-.032 2.363.35.212.493.05 1.052.05 1.052H5.421z"/><path fill="#4289C1" d="M14.795 14.766C13.577 14 11.998 14 11.998 14h-4s-1.578 0-2.797.766c-1.201.754-1.656 3-1.656 3l2.203.688.11 5.546h8.281l.109-5.547 2.203-.688c.001.001-.455-2.245-1.656-2.999z"/><path fill="#7C533E" d="M7.998 10.042v4c0 .682.896 1.305 2 1.305s2-.668 2-1.305v-4h-4z"/><path fill="#664131" d="M7.998 14.042c0 .682.896 1.305 2 1.305s2-.668 2-1.305V11l-4 .019v3.023z"/><path fill="#7C533E" d="M14.998 3h-10v6c0 2.762 2.238 5 5 5s5-2.237 5-5V3z"/><path fill="#0B0200" d="M4.998 2.5l-.5 2.5.5 2c2.333 0 2.85-2.412 2.965-3.488C8.002 4.588 8.778 7 14.998 7l.5-2-.5-2.5h-10z"/><path fill="#3D2E24" d="M11.998 12h-4s0 1 2 1 2-1 2-1z"/><circle cx="7.498" cy="8.5" r=".5"/><circle cx="12.498" cy="8.5" r=".5"/><path fill="#3D2E24" d="M8.998 10h2s0 1-1 1-1-1-1-1z"/><path fill="#60352A" d="M26.5 0c-1.187 0-2.282.379-3.181 1.018C21.473 1.114 20 2.629 20 4.5c0 1.542.007 3.484 2.038 4.208C23.036 10.094 24.66 11 26.5 11c3.037 0 5.5-2.462 5.5-5.499C32 2.463 29.537 0 26.5 0z"/><path fill="#AF7E57" d="M18.117 26.76c-.271.091-.487-.159-.586-.302-.279-.405-.422-1.309-.004-2.227.423-.927.702-2.072 1.69-3.821.115-.204.494-2.746 1.242-4.354.202-.435 1.495-.684 2.009-.529.513.154-.005.98-.037 1.134-.344 1.651-1.305 4.077-1.45 4.404-.8 1.806-1.965 2.389-2.071 3.706-.055.69-.205 1.286-.6 1.228-.092.352-.094.728-.193.761zm14.595.204c.257.126.504-.094.62-.222.33-.365.591-1.242.296-2.208-.297-.975-.424-2.146-1.174-4.01-.087-.217-.129-2.787-.66-4.479-.143-.457-1.392-.875-1.922-.789-.529.086-.124.972-.112 1.129.124 1.682.758 4.213.859 4.556.556 1.895 1.634 2.627 1.566 3.946-.036.692.034 1.302.433 1.296.048.363 0 .735.094.781z"/><path fill="#AF7E57" d="M18.117 26.76c-.271.091-.487-.159-.586-.302-.279-.405-.422-1.309-.004-2.227.423-.927.702-2.072 1.69-3.821.115-.204.494-2.746 1.242-4.354.202-.435 1.495-.684 2.009-.529.513.154-.005.98-.037 1.134-.344 1.651-1.305 4.077-1.45 4.404-.8 1.806-1.965 2.389-2.071 3.706-.055.69-.205 1.286-.6 1.228-.092.352-.094.728-.193.761zm14.595.204c.257.126.504-.094.62-.222.33-.365.591-1.242.296-2.208-.297-.975-.424-2.146-1.174-4.01-.087-.217-.129-2.787-.66-4.479-.143-.457-1.392-.875-1.922-.789-.529.086-.124.972-.112 1.129.124 1.682.758 4.213.859 4.556.556 1.895 1.634 2.627 1.566 3.946-.036.692.034 1.302.433 1.296.048.363 0 .735.094.781z"/><path fill="#67757F" d="M29.555 29.5c.5-2.734.422-6.5.422-6.5h-7.963s-.078 3.766.422 6.5c.063.344.188 3.344-.109 5.5-.066.479 2.886.937 2.844-.125-.078-1.969.264-3.513.328-4.5.035-.547.25-1.875.344-3.208.011-.018.295-.018.306 0 .094 1.333.308 2.661.344 3.208.064.987.406 2.531.328 4.5-.042 1.062 2.91.604 2.844.125-.297-2.156-.172-5.156-.11-5.5z"/><path fill="#292F33" d="M30.54 36c.499-.406-.041-1.161-1.42-1.402-1.163-.203-2.2-.032-2.363.35-.212.493-.05 1.052-.05 1.052h3.833zm-9.117 0c-.499-.406.041-1.161 1.42-1.402 1.163-.203 2.2-.032 2.363.35.212.494.05 1.053.05 1.053L21.423 36z"/><path fill="#78B159" d="M30.797 14.766C29.578 14 28 14 28 14h-4s-1.578 0-2.797.766c-1.201.754-1.656 3-1.656 3l2.203.688.109 5.546h8.281l.109-5.547 2.203-.688c.001.001-.454-2.245-1.655-2.999z"/><path fill="#AF7E57" d="M24 10.042v4c0 .682.896 1.305 2 1.305s2-.668 2-1.305v-4h-4z"/><path fill="#9B6A49" d="M24 14.042c0 .682.896 1.305 2 1.305s2-.668 2-1.305V11l-4 .019v3.023z"/><path fill="#AF7E57" d="M31 3H21v6c0 2.762 2.238 5 5 5s5-2.237 5-5V3z"/><path fill="#60352A" d="M21 2.5L20.5 5l.5 2c2.333 0 2.85-2.412 2.965-3.488C24.004 4.588 24.779 7 31 7l.5-2-.5-2.5H21z"/><path fill="#915A34" d="M28 12h-4s0 1 2 1 2-1 2-1z"/><circle fill="#662113" cx="23.5" cy="8.5" r=".5"/><circle fill="#662113" cx="28.5" cy="8.5" r=".5"/><path fill="#915A34" d="M25 10h2s0 1-1 1-1-1-1-1z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f468-1f3ff-200d-1f9af.svg b/public/emoji/1f468-1f3ff-200d-1f9af.svg
new file mode 100644
index 0000000000000000000000000000000000000000..513caf1b32327da455d176fc150aa313247069a1
--- /dev/null
+++ b/public/emoji/1f468-1f3ff-200d-1f9af.svg
@@ -0,0 +1 @@
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#CCD6DD" d="M12.154 19.416l.802.598L3.988 32.04l-.802-.598z"/><path fill="#DD2E44" d="M3.186 31.444L1.093 34.25c-.164.22-.119.535.102.7s.535.119.7-.102l2.092-2.806-.801-.598z"/><path fill="#292F33" d="M11.359 21.319c-.22-.164-.266-.479-.102-.7l1.793-2.405c.164-.22.479-.266.7-.102.22.164.266.479.102.7l-1.793 2.405c-.164.221-.479.267-.7.102z"/><path fill="#292F33" d="M11.76 21.618l-.802-.598c-.22-.164-.266-.479-.102-.7.164-.22.479-.266.7-.102l.802.598c.22.164.266.479.102.7-.164.221-.479.267-.7.102z"/><path fill="#99AAB5" d="M.598 35.751c-.22-.164-.266-.479-.102-.7.164-.22.479-.266.7-.102.22.164.266.479.102.7-.165.22-.48.266-.7.102z"/><path fill="#292F33" d="M20.436 35.056s.061-.144.061-.448c0-.303-.156-.869-.199-.95-.043-.081-.09-.139-.194-.11-.079.022-.685.326-1.072.341-.719.027-1.066-.618-1.066-.618s-.399.228-.716.413c-.318.185-.687.462-.959.627-.232.141-.497.208-.771.243s-.497.023-.563.029c-.066.006-.621-.061-.641.488l.004.16s.987.397 2.344.397 1.566-.399 2.444-.399c.877 0 1.328-.173 1.328-.173z"/><path fill="#292F33" d="M18.685 35.926c-.058-.052-.123-.22-.173-.243-.05-.023-.57.089-.813.146-.243.058-.66.156-1.152.156-.491 0-1.126-.144-1.519-.243-.393-.098-.701-.23-.77-.274-.07-.043-.05-.063-.046-.096.004-.033.052-.202.052-.202s.251.132.678.237c.426.104.851.183 1.584.183s1.193-.109 1.574-.211c.475-.128 1.163-.267 1.656-.267.38 0 .648-.112.751-.139.024-.006.046.012.046.037v.649c0 .042-.035.139-.146.162-.112.024-1.664.157-1.722.105zm12.222-5.012s-.072-.142-.307-.343-.777-.454-.868-.473c-.091-.02-.167-.022-.213.078-.035.075-.199.746-.444 1.056-.454.575-1.184.418-1.184.418s-.087.46-.153.828-.096.838-.148 1.158c-.044.273-.167.523-.322.758-.154.236-.31.4-.35.456-.039.055-.457.441-.045.82l.127.101s.96-.502 1.857-1.555c.897-1.052.726-1.477 1.306-2.158.58-.68.744-1.144.744-1.144z"/><path fill="#292F33" d="M30.425 32.846c-.078.01-.252-.05-.303-.026-.051.024-.308.5-.424.727-.116.226-.316.615-.64.996s-.856.778-1.192 1.018c-.336.24-.642.391-.721.416s-.082-.003-.104-.028c-.022-.025-.122-.174-.122-.174s.269-.107.631-.369c.363-.261.705-.538 1.189-1.107.484-.568.704-.997.876-1.36.214-.452.562-1.078.887-1.46.251-.295.342-.576.388-.674.011-.023.04-.028.059-.012l.503.429c.033.028.085.118.029.22-.055.103-.978 1.394-1.056 1.404z"/><path fill="#7C533E" d="M21.5 1.384c-1.593-.627-4.077.182-4.365 2.043-.287 1.848.239 4.747 1.863 4.572 1.702-.184 3.448-.554 4.138-2.307s-.042-3.681-1.636-4.308z"/><path fill="#7C533E" d="M22.684 6.143c2.318-2.723-3.266-2.458-3.266-2.458-1.057.038-.329 1.799-.827 2.761-.341.665 1.095 1.018 1.095 1.018s.659-.01.694.79v.007c.008.204-.013.445-.108.769-.473 1.601 1.677 2.582 2.149.978.187-.635.114-1.193.02-1.708l-.009-.046c-.144-.766-.322-1.437.252-2.111z"/><path fill="#0B0200" d="M23.32 2.026C22.259.784 20.74.125 18.301 1.235c-.994.452-1.439.285-1.58.484-.679.953.246 2.01.608 1.799 1.148-.669 2.183-.47 2.447.014s.021 1.354.234 1.359c.578.016.484-.551.714-.878.375-.534.946-.232 1.071.362.099.471 0 1.271-.77 1.412.523 1.151 1.56 1.502 1.56 1.502s.337.132.912-1.001c.576-1.134.877-3.029-.177-4.262z"/><path fill="#2A6797" d="M18.558 34.203c-1.266.109-1.853-.233-1.721-.416.165-.228.128-.397.13-.536.028-2.441-.472-5.991-.472-5.991 0-.348.003-.813.312-1.562.778-1.883 3.951-7.69 3.951-7.69.548-.958 1.771-1.293 2.729-.744.959.548 1.122 1.405.744 2.729-.715 2.508-2.965 5.602-3.903 7.477.224 2.121-.174 3.853.035 5.857.03.288-.54.767-1.805.876z"/><path fill="#4289C1" d="M29.292 31.931c-.364.553-.97.942-1.598.838-1.269-1.924-4.955-5.321-4.955-5.321-.241-.25-.562-.587-.86-1.341-.748-1.895-2.498-8.277-2.498-8.277-.272-1.07.376-2.16 1.446-2.43 1.07-.272 1.783.232 2.43 1.446 1.227 2.301 1.757 6.09 2.384 8.09 1.87 1.568 2.383 3.603 4.275 5.151-.064.857-.26 1.291-.624 1.844z"/><path fill="#77B255" d="M25.495 20s0 1-2 1h-4.898c-.415-2-.027-5.004.006-7.765.043-3.623 2.298-5.609 3.71-5.155 1.846.594 2.693 2.641 2.932 5.858.239 3.216.25 6.062.25 6.062z"/><path fill="#7C533E" d="M20.029 11.693c-.781 1.172-2.291 3.808-2.518 3.909-1.205.534-2.549 1.22-3.445 1.314-.649.068-1.254.68-1.508.925-.316.304-.75 1.008-.63 1.37.075.226.571.488.742.253.332-.458.973-.535 1.49-.889 1.038-.712 3.284-.765 4.556-1.709.528-.391 1.677-1.309 3.2-3.9-.592-.426-1.887-1.273-1.887-1.273z"/><path fill="#292F33" d="M14.21 17.018c.477.152.847.624.557 1.114-.29.49.403.185.512-.045.223-.468-.178-1.158-.646-1.314-.468-.156-.746.142-.423.245z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f468-1f3ff-200d-1f9bc.svg b/public/emoji/1f468-1f3ff-200d-1f9bc.svg
new file mode 100644
index 0000000000000000000000000000000000000000..99ad94b9f5adb0b0a24acb263e1aec2f6972f754
--- /dev/null
+++ b/public/emoji/1f468-1f3ff-200d-1f9bc.svg
@@ -0,0 +1 @@
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#7C533E" d="M26.007 1.015c-1.214-.871-3.488-.718-4.13.795-.638 1.502-.813 4.067.598 4.266 1.479.209 3.036.269 3.994-1.066.959-1.335.752-3.124-.462-3.995z"/><path fill="#7C533E" d="M25.99 5.295c2.544-1.808-2.238-2.778-2.238-2.778-.902-.194-.664 1.452-1.29 2.159-.431.49.708 1.096.708 1.096s.56.133.419.817l-.002.006c-.037.174-.107.374-.256.627-.743 1.253.866 2.543 1.609 1.287.294-.497.352-.985.382-1.441l.003-.041c.043-.679.036-1.285.665-1.732z"/><path fill="#0B0200" d="M27.409 1.948C26.777.671 25.632-.212 23.332.206c-.937.17-1.279-.066-1.441.071-.778.661-.222 1.753.13 1.652 1.114-.321 1.948.069 2.068.535.12.466-.272 1.15-.092 1.2.486.137.528-.363.791-.59.431-.371.85.006.829.535-.017.42-.272 1.075-.953 1.03.196 1.086.998 1.604.998 1.604s.256.184.986-.652c.729-.836 1.389-2.375.761-3.643z"/><path fill="#292F33" d="M8.22 28.583s.108-.118.211-.409c.104-.291.147-.888.133-.98-.014-.092-.039-.164-.148-.171-.083-.006-.768.08-1.145-.039-.699-.22-.812-.957-.812-.957s-.46.083-.829.152c-.368.069-.818.209-1.134.274-.271.056-.548.03-.823-.03-.275-.06-.485-.147-.55-.165-.066-.017-.575-.27-.782.25l-.051.154s.811.718 2.114 1.182c1.303.464 1.639.152 2.481.452.843.3 1.335.287 1.335.287z"/><path fill="#292F33" d="M6.243 28.821c-.038-.07-.043-.253-.083-.292-.04-.039-.577-.11-.83-.137-.253-.027-.687-.076-1.158-.244-.471-.168-1.032-.523-1.375-.752-.343-.228-.594-.46-.646-.526s-.026-.078-.011-.107.119-.176.119-.176.196.213.569.459.754.467 1.458.717c.703.25 1.182.303 1.583.335.499.039 1.207.141 1.681.309.365.13.66.114.768.123.025.002.04.027.032.051l-.222.623c-.014.041-.081.121-.196.105s-1.651-.419-1.689-.488z"/><path fill="#4289C1" d="M25.097 17.21c.069 1.432-.391 2.922-1.505 3.202-1.066.268-3.056-.151-3.056-.151s-.698.408-.531 1.189c.095.444.257.67.201.712-.05.038-.486-.022-.684-.032-.528-.027-1.1-.211-2.073-.484-.974-.273-1.421-.285-2.481-.577-1.175-.324-1.986-.835-2.33-1.956-.293-.956.277-2.123 1.654-2.63 1.12-.412 4.339-.347 5.539-.231 1.201.118 5.206-.287 5.266.958z"/><path fill="#4289C1" d="M7.002 27.225c-.646-.143-1.293-.6-1.419-1.224 1.346-1.871 3.671-7.538 3.671-7.538.695-1.744 1.517-3.426 3.133-3.182 2.081.315 5.629 1.028 5.629 1.028 2.276.329 1.144 1.007 1.778 1.912.635.903-1.294 1.99-2.786 1.891-2.602-.173-3.877-.453-5.522.846-.8 2.306-2.071 4.087-2.844 6.406-.826.244-.993.004-1.64-.139z"/><path fill="#77B255" d="M25.569 16.971c-.211.688-.149 1.604-.515 1.362-1.444-.957-5.521-2.045-5.521-2.045.049-1.673.979-3.969 1.559-6.148.762-2.86 3.067-3.951 4.171-3.289 1.443.865 1.75 2.668 1.308 5.266s-.791 4.166-1.002 4.854z"/><path fill="#66757F" d="M27.811 10.609l.425-5.242c.022-.274.265-.48.539-.458.274.022.48.265.458.539l-.425 5.242c-.022.274-.265.48-.539.458-.274-.022-.48-.265-.458-.539z"/><path fill="#292F33" d="M16 21v2s-2 0-2 2v3c0 1 1 2 2 2h10c1 0 2-1 2-2v-5c0-1-1-2-2-2H16z"/><path fill="#292F33" d="M22.956 22.559l-9.848-1.736c-.985-.174-.985-.174-.811-1.158.096-.542.617-.907 1.158-.811l9.848 1.736c.542.096.907.617.811 1.158-.173.985-.173.985-1.158.811z"/><path fill="#292F33" d="M25.238 19.023c-.193.922-.557 1.827-2.094 1.537-1.537-.29-1.782 1.225-.824 1.493.958.267 3.252.646 3.921-.446.668-1.092.78-2.139.713-2.606s-1.572-.66-1.716.022z"/><path fill="#DD2E44" d="M23.442 22.896l-10.833-1.91c-.271-.048-.453-.308-.406-.579.048-.271.308-.453.579-.406l10.833 1.91c.271.048.453.308.406.579-.048.271-.309.454-.579.406z"/><path fill="#292F33" d="M28.932 9.642l-1.736 9.848c-.174.985-.174.985-1.158.811-.542-.096-.907-.617-.811-1.158l1.736-9.848c.096-.542.617-.907 1.158-.811.984.173.984.173.811 1.158zm.992-7.49l-.713 4.025c-.087.493-.168 1.007-1.153.834-.542-.096-.882-.715-.763-1.398l.639-3.609c.163-.579.626-1.004 1.167-.909.985.173.91.564.823 1.057z"/><path fill="#DD2E44" d="M29.406 9.224l-1.91 10.833c-.048.271-.308.453-.579.406-.271-.048-.453-.308-.406-.579l1.91-10.833c.048-.271.308-.453.579-.406.272.048.454.308.406.579zm1.243-7.455l-.91 5.18c-.048.271-.308.453-.579.406-.271-.048-.453-.308-.406-.579l.91-5.18c.048-.271.308-.453.579-.406.271.047.454.308.406.579z"/><path fill="#292F33" d="M25.494 18.441l-7.466-1.316c-.747-.132-.747-.132-.617-.869.071-.405.466-.678.877-.606l7.466 1.316c.411.072.688.463.617.869-.13.738-.13.738-.877.606z"/><path fill="#DD2E44" d="M23.123 21.824c.993.175 2.954.521 3.475-2.433s1.506-2.781.985.174-2.237 3.667-4.634 3.245c-1.969-.348-1.796-1.333.174-.986zm-10.33-1.821c1.971.34 2.277 1.422.308 1.07-.873-.156-.984.212-1.251.958-.252.702-.611 1.757-1.144 3.23-.391 1.082-1.279.603-.95-.342.551-1.588 1.061-2.968 1.392-3.847.338-.895.613-1.247 1.645-1.069z"/><path fill="#DD2E44" d="M10.62 24.01c-.258-.094-.547.04-.641.299l-2.052 5.638c-.094.258.04.547.299.641.258.094.547-.04.641-.299l2.052-5.638c.094-.259-.041-.547-.299-.641z"/><path fill="#66757F" d="M8.226 30.588L4.467 29.22c-.258-.094-.393-.382-.299-.641.094-.258.382-.393.641-.299l3.759 1.368c.258.094.393.382.299.641-.094.258-.383.393-.641.299z"/><path fill="#DD2E44" d="M13.844 30.862l2.95-2.95c.194-.194.194-.513 0-.707-.194-.194-.513-.194-.707 0l-2.95 2.95c-.194.194-.194.513 0 .707.194.194.512.194.707 0zM32 34c-.55 0-1-.45-1-1v-3c0-.55.45-1 1-1s1 .45 1 1v3c0 .55-.45 1-1 1z"/><path fill="#DD2E44" d="M13.5 34c-.55 0-1-.45-1-1v-3c0-.55.45-1 1-1s1 .45 1 1v3c0 .55-.45 1-1 1zm12.983-6.005h2c.275 0 .5-.225.5-.5s-.225-.5-.5-.5h-2c-.275 0-.5.225-.5.5s.225.5.5.5z"/><path fill="#DD2E44" d="M31.123 30.803l-2.95-2.95c-.194-.194-.194-.513 0-.707.194-.194.513-.194.707 0l2.95 2.95c.194.194.194.513 0 .707-.194.195-.512.195-.707 0z"/><path fill="#292F33" d="M11.672 16.127c.742.318 2.05.936 2.339 1.047 0 0 .134-.891.49-.891 0 0 .134-.468.223-.668s.356-.134.379.245c.022.379-.089.512-.089.512s.334.423.134 1.002c0 0 .446.067.356.624-.089.557.067.98-.334 1.092-.401.111-1.916.535-1.938-.067-.022-.601-.401-1.069-1.136-1.515-.735-.446-1.27-.936-1.181-1.181.088-.244.133-.467.757-.2z"/><path fill="#DD2E44" d="M26.5 25h-11c-.275 0-.5-.225-.5-.5s.225-.5.5-.5h11c.275 0 .5.225.5.5s-.225.5-.5.5z"/><path fill="#7C533E" d="M22.691 10.276c-.579 1.455-1.125 3.55-1.381 3.561-1.473.062-3.079.948-4.006.893-.672-.04-1.306-.167-1.651-.05-.552.187-1.159.289-1.351.632-.195.348.171.657 1.035.656.635 0 1.045.208 1.674.06.896-.21 3.986.754 5.665-.345.566-.371 1.441-1.871 2.525-4.663-1.084-.477-2.51-.744-2.51-.744z"/><circle fill="#66757F" cx="21.5" cy="31.5" r="4.5"/><circle fill="#66757F" cx="13.5" cy="33.5" r="2.5"/><circle fill="#66757F" cx="32" cy="34" r="2"/><circle fill="#CCD6DD" cx="21.5" cy="31.5" r="2.5"/><circle fill="#CCD6DD" cx="13.5" cy="33.5" r="1.5"/><circle fill="#292F33" cx="32" cy="34" r="1"/><g fill="#292F33"><circle cx="22" cy="30.634" r=".5"/><circle cx="21" cy="32.366" r=".5"/><circle cx="20.634" cy="31" r=".5"/><circle cx="22.366" cy="32" r=".5"/></g><circle fill="#292F33" cx="13.5" cy="33.5" r=".75"/><circle fill="#66757F" cx="32" cy="34" r=".5"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f468-1f3ff-200d-1f9bd.svg b/public/emoji/1f468-1f3ff-200d-1f9bd.svg
new file mode 100644
index 0000000000000000000000000000000000000000..4f6eba0776812a93fd5a4278677e5d71f68222fa
--- /dev/null
+++ b/public/emoji/1f468-1f3ff-200d-1f9bd.svg
@@ -0,0 +1 @@
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#7C533E" d="M21.96.974c-1.285-.762-3.537-.411-4.045 1.152-.504 1.552-.455 4.123.968 4.198 1.492.079 3.048.003 3.886-1.41.838-1.414.476-3.178-.809-3.94z"/><path fill="#7C533E" d="M22.316 5.239c2.376-2.023-2.471-2.572-2.471-2.572-.916-.114-.535 1.504-1.097 2.263-.387.526.801 1.03.801 1.03s.569.083.488.777l-.001.006c-.021.177-.074.382-.2.647-.631 1.313 1.085 2.458 1.715 1.142.249-.521.265-1.012.255-1.469l-.001-.041c-.017-.68-.076-1.283.511-1.783z"/><path fill="#0B0200" d="M23.439 1.781C22.698.564 21.481-.216 19.225.4c-.919.251-1.279.045-1.429.196-.718.726-.068 1.766.273 1.634 1.082-.417 1.946-.101 2.106.353.16.454-.171 1.169.013 1.204.496.094.494-.407.737-.657.397-.408.847-.068.872.461.02.419-.177 1.095-.86 1.109.29 1.065 1.134 1.511 1.134 1.511s.271.161.925-.735c.655-.896 1.178-2.486.443-3.695z"/><path fill="#292F33" d="M8.211 30.079s.097-.127.175-.426c.078-.299.069-.897.047-.988-.022-.091-.053-.16-.163-.158-.083.001-.759.146-1.144.061-.716-.158-.892-.883-.892-.883s-.452.123-.812.223c-.361.101-.796.279-1.106.372-.265.079-.543.078-.823.041-.279-.036-.496-.105-.563-.116s-.597-.219-.757.317l-.037.159s.871.645 2.209.993 1.646.009 2.511.234 1.355.171 1.355.171z"/><path fill="#292F33" d="M6.262 30.488c-.044-.066-.065-.248-.109-.284-.043-.036-.585-.059-.839-.064-.254-.005-.691-.016-1.175-.142s-1.074-.431-1.436-.629-.632-.407-.689-.468c-.057-.061-.033-.075-.02-.106.013-.031.103-.186.103-.186s.214.195.607.407.792.399 1.514.587 1.204.199 1.606.195c.501-.004 1.215.035 1.701.162.375.098.668.056.776.056.025 0 .043.023.036.048l-.167.64c-.011.042-.07.128-.186.122-.114-.004-1.679-.271-1.722-.338z"/><path fill="#4289C1" d="M24.032 17.279c.193 1.421-.135 2.945-1.22 3.321-1.039.36-3.058.116-3.058.116s-.66.468-.426 1.231c.133.434.314.645.262.692-.046.042-.486.02-.684.027-.528.02-1.114-.115-2.108-.301-.994-.187-1.44-.16-2.522-.359-1.198-.22-2.051-.659-2.491-1.745-.375-.927.091-2.139 1.419-2.764 1.08-.508 4.292-.724 5.498-.712 1.207.011 5.162-.741 5.33.494z"/><path fill="#4289C1" d="M6.879 28.832c-.656-.086-1.341-.485-1.521-1.095 1.178-1.982 3-7.829 3-7.829.541-1.798 1.213-3.546 2.843-3.443 2.1.133 5.697.533 5.697.533 2.296.13 1.228.904 1.938 1.75.712.845-1.115 2.095-2.611 2.126-2.607.054-3.902-.113-5.428 1.324-.596 2.367-1.706 4.252-2.275 6.63-.799.315-.987.091-1.643.004z"/><path fill="#77B255" d="M24.698 16.173c.029.719.15 1.674-.276 1.567-1.679-.424-5.438-.168-5.438-.168-.508-1.594-.392-4.069-.566-6.317-.229-2.95 1.585-4.744 2.845-4.485.513.105 1.136.428 1.511.77.278.253.924.961 1.141 1.169 1.106 1.06.124 1.405.327 2.596.444 2.597.427 4.149.456 4.868z"/><g fill="#DD2E44"><path d="M13.465 27.092l10.824.95c.274.024.518-.181.542-.455.024-.274-.181-.518-.455-.542l-10.824-.95c-.274-.024-.518.181-.542.455-.024.274.181.518.455.542z"/><path d="M24.288 28.041c-.274-.024-.478-.268-.455-.542l.436-4.981c.024-.274.268-.478.542-.455.274.024.478.268.455.542l-.436 4.981c-.024.275-.268.479-.542.455zm-10.738-7.58c-.274-.024-.518.181-.542.455l-1.015 11.597c-.024.274.181.518.455.542.274.024.518-.181.542-.455l1.015-11.597c.023-.274-.181-.518-.455-.542z"/></g><path fill="#292F33" d="M23.524 20.592c1.431-.206 2.834-.148 2.345.544-.489.692-1.575 1.905-3.418 1.707-1.844-.198.185-2.123 1.073-2.251z"/><path fill="#292F33" d="M22.45 22.843l-9.962-.872c-.996-.087-.996-.087-.909-1.083.048-.548.535-.957 1.083-.909l9.962.872c.548.048.957.535.909 1.083-.087.996-.087.996-1.083.909z"/><path fill="#DD2E44" d="M22.964 23.136l-10.958-.959c-.274-.024-.478-.268-.455-.542.024-.274.268-.478.542-.455l10.958.959c.274.024.478.268.455.542-.025.275-.268.479-.542.455z"/><path fill="#292F33" d="M27.278 9.454l-.872 9.962c-.087.996-.087.996-1.083.909-.548-.048-.957-.535-.909-1.083l.872-9.962c.048-.548.535-.957 1.083-.909.996.087.996.087.909 1.083z"/><path fill="#DD2E44" d="M27.714 8.996l-.959 10.958c-.024.274-.268.478-.542.455-.274-.024-.478-.268-.455-.542l.959-10.958c.024-.274.268-.478.542-.455.274.025.479.268.455.542z"/><path fill="#292F33" d="M24.62 18.519l-7.552-.661c-.755-.066-.755-.066-.69-.812.036-.41.405-.716.82-.68l7.552.661c.415.036.726.402.69.812-.064.746-.064.746-.82.68z"/><path fill="#DD2E44" d="M22.553 22.096c1.004.088 2.989.261 3.25-2.727s1.258-2.901.996.087-1.909 3.848-4.333 3.636c-1.993-.174-1.906-1.17.087-.996zm-10.449-.914c1.993.166 2.392 1.218.4 1.039-.883-.079-.962.297-1.163 1.063-.189.721-.456 1.803-.858 3.318-.295 1.112-1.221.712-.977-.257.411-1.63.798-3.05 1.052-3.953.258-.922.502-1.297 1.546-1.21z"/><g fill="#66757F"><circle cx="24.5" cy="27.5" r="1.5"/><path d="M31.245 30.817l-6.062-3.5 3.5-6.062-.866-.5-3.5 6.062-6.062-3.5-.5.866 6.062 3.5-3.5 6.062.866.5 3.5-6.062 6.062 3.5z"/><path d="M26.924 34.615l-1.812-6.761 6.762-1.812-.259-.966-6.761 1.812-1.812-6.762-.966.259 1.812 6.761-6.762 1.812.259.966 6.761-1.812 1.812 6.762z"/></g><path fill="#292F33" d="M24.5 19c-4.694 0-8.5 3.806-8.5 8.5s3.806 8.5 8.5 8.5 8.5-3.806 8.5-8.5-3.806-8.5-8.5-8.5zm0 15c-3.59 0-6.5-2.91-6.5-6.5s2.91-6.5 6.5-6.5 6.5 2.91 6.5 6.5-2.91 6.5-6.5 6.5z"/><path fill="#66757F" d="M24.5 20c-4.142 0-7.5 3.358-7.5 7.5s3.358 7.5 7.5 7.5 7.5-3.358 7.5-7.5-3.358-7.5-7.5-7.5zm0 14c-3.59 0-6.5-2.91-6.5-6.5s2.91-6.5 6.5-6.5 6.5 2.91 6.5 6.5-2.91 6.5-6.5 6.5zm-9.152-.433l-2.165-1.25 1.25-2.165-.866-.5-1.25 2.165-2.165-1.25-.5.866 2.165 1.25-1.25 2.165.866.5 1.25-2.165 2.165 1.25z"/><path fill="#292F33" d="M12.5 29C10.567 29 9 30.567 9 32.5s1.567 3.5 3.5 3.5 3.5-1.567 3.5-3.5-1.567-3.5-3.5-3.5zm0 6c-1.381 0-2.5-1.119-2.5-2.5s1.119-2.5 2.5-2.5 2.5 1.119 2.5 2.5-1.119 2.5-2.5 2.5z"/><path fill="#DD2E44" d="M10.288 25.363c-.266-.071-.541.088-.612.354l-1.553 5.796c-.071.266.088.541.354.612.266.071.541-.088.612-.354l1.553-5.796c.07-.265-.089-.541-.354-.612z"/><path fill="#66757F" d="M8.476 32.125L4.612 31.09c-.266-.071-.425-.347-.354-.612.071-.266.347-.425.612-.354l3.864 1.035c.266.071.426.346.354.612-.071.266-.346.425-.612.354z"/><path fill="#DD2E44" d="M30.103 9.969l-2.954-.521c-.271-.048-.453-.308-.406-.579.048-.271.308-.453.579-.406l2.954.521c.271.048.453.308.406.579-.048.272-.308.454-.579.406z"/><path fill="#292F33" d="M31.088 10.143l-2.615-.467c-.271-.048-.26-.274-.213-.545.048-.271.116-.487.386-.44l2.615.467c.271.048.453.308.406.579-.048.271-.308.454-.579.406z"/><path fill="#7C533E" d="M22.118 10.597c1.142.988 3.458 2.697 3.436 2.951-.128 1.469.543 3.175.369 4.087-.126.661-.665 1.138-.594 1.495.667-.009.443 1.15.729 1.665.301.542 1.171-.093 1.282-.949.081-.629-.102-1.11-.167-1.752-.093-.915 1.094-3.661.22-5.467-.295-.609-1.531-2.277-3.635-4.122-.595.457-1.64 2.092-1.64 2.092z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f468-200d-1f9af.svg b/public/emoji/1f468-200d-1f9af.svg
new file mode 100644
index 0000000000000000000000000000000000000000..321bc0d99ae59d95c9cbf5f1f33d8297bbfb8446
--- /dev/null
+++ b/public/emoji/1f468-200d-1f9af.svg
@@ -0,0 +1 @@
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#CCD6DD" d="M12.154 19.416l.802.598L3.988 32.04l-.802-.598z"/><path fill="#DD2E44" d="M3.186 31.444L1.093 34.25c-.164.22-.119.535.102.7s.535.119.7-.102l2.092-2.806-.801-.598z"/><path fill="#292F33" d="M11.359 21.319c-.22-.164-.266-.479-.102-.7l1.793-2.405c.164-.22.479-.266.7-.102.22.164.266.479.102.7l-1.793 2.405c-.164.221-.479.267-.7.102z"/><path fill="#292F33" d="M11.76 21.618l-.802-.598c-.22-.164-.266-.479-.102-.7.164-.22.479-.266.7-.102l.802.598c.22.164.266.479.102.7-.164.221-.479.267-.7.102z"/><path fill="#99AAB5" d="M.598 35.751c-.22-.164-.266-.479-.102-.7.164-.22.479-.266.7-.102.22.164.266.479.102.7-.165.22-.48.266-.7.102z"/><path fill="#292F33" d="M20.436 35.056s.061-.144.061-.448c0-.303-.156-.869-.199-.95-.043-.081-.09-.139-.194-.11-.079.022-.685.326-1.072.341-.719.027-1.066-.618-1.066-.618s-.399.228-.716.413c-.318.185-.687.462-.959.627-.232.141-.497.208-.771.243s-.497.023-.563.029c-.066.006-.621-.061-.641.488l.004.16s.987.397 2.344.397 1.566-.399 2.444-.399c.877 0 1.328-.173 1.328-.173z"/><path fill="#292F33" d="M18.685 35.926c-.058-.052-.123-.22-.173-.243-.05-.023-.57.089-.813.146-.243.058-.66.156-1.152.156-.491 0-1.126-.144-1.519-.243-.393-.098-.701-.23-.77-.274-.07-.043-.05-.063-.046-.096.004-.033.052-.202.052-.202s.251.132.678.237c.426.104.851.183 1.584.183s1.193-.109 1.574-.211c.475-.128 1.163-.267 1.656-.267.38 0 .648-.112.751-.139.024-.006.046.012.046.037v.649c0 .042-.035.139-.146.162-.112.024-1.664.157-1.722.105zm12.222-5.012s-.072-.142-.307-.343-.777-.454-.868-.473c-.091-.02-.167-.022-.213.078-.035.075-.199.746-.444 1.056-.454.575-1.184.418-1.184.418s-.087.46-.153.828-.096.838-.148 1.158c-.044.273-.167.523-.322.758-.154.236-.31.4-.35.456-.039.055-.457.441-.045.82l.127.101s.96-.502 1.857-1.555c.897-1.052.726-1.477 1.306-2.158.58-.68.744-1.144.744-1.144z"/><path fill="#292F33" d="M30.425 32.846c-.078.01-.252-.05-.303-.026-.051.024-.308.5-.424.727-.116.226-.316.615-.64.996s-.856.778-1.192 1.018c-.336.24-.642.391-.721.416s-.082-.003-.104-.028c-.022-.025-.122-.174-.122-.174s.269-.107.631-.369c.363-.261.705-.538 1.189-1.107.484-.568.704-.997.876-1.36.214-.452.562-1.078.887-1.46.251-.295.342-.576.388-.674.011-.023.04-.028.059-.012l.503.429c.033.028.085.118.029.22-.055.103-.978 1.394-1.056 1.404z"/><path fill="#FFDC5D" d="M21.5 1.384c-1.593-.627-4.077.182-4.365 2.043-.287 1.848.239 4.747 1.863 4.572 1.702-.184 3.448-.554 4.138-2.307s-.042-3.681-1.636-4.308z"/><path fill="#FFDC5D" d="M22.684 6.143c2.318-2.723-3.266-2.458-3.266-2.458-1.057.038-.329 1.799-.827 2.761-.341.665 1.095 1.018 1.095 1.018s.659-.01.694.79v.007c.008.204-.013.445-.108.769-.473 1.601 1.677 2.582 2.149.978.187-.635.114-1.193.02-1.708l-.009-.046c-.144-.766-.322-1.437.252-2.111z"/><path fill="#FFAC33" d="M23.32 2.026C22.259.784 20.74.125 18.301 1.235c-.994.452-1.439.285-1.58.484-.679.953.246 2.01.608 1.799 1.148-.669 2.183-.47 2.447.014s.021 1.354.234 1.359c.578.016.484-.551.714-.878.375-.534.946-.232 1.071.362.099.471 0 1.271-.77 1.412.523 1.151 1.56 1.502 1.56 1.502s.337.132.912-1.001c.576-1.134.877-3.029-.177-4.262z"/><path fill="#2A6797" d="M18.558 34.203c-1.266.109-1.853-.233-1.721-.416.165-.228.128-.397.13-.536.028-2.441-.472-5.991-.472-5.991 0-.348.003-.813.312-1.562.778-1.883 3.951-7.69 3.951-7.69.548-.958 1.771-1.293 2.729-.744.959.548 1.122 1.405.744 2.729-.715 2.508-2.965 5.602-3.903 7.477.224 2.121-.174 3.853.035 5.857.03.288-.54.767-1.805.876z"/><path fill="#4289C1" d="M29.292 31.931c-.364.553-.97.942-1.598.838-1.269-1.924-4.955-5.321-4.955-5.321-.241-.25-.562-.587-.86-1.341-.748-1.895-2.498-8.277-2.498-8.277-.272-1.07.376-2.16 1.446-2.43 1.07-.272 1.783.232 2.43 1.446 1.227 2.301 1.757 6.09 2.384 8.09 1.87 1.568 2.383 3.603 4.275 5.151-.064.857-.26 1.291-.624 1.844z"/><path fill="#77B255" d="M25.495 20s0 1-2 1h-4.898c-.415-2-.027-5.004.006-7.765.043-3.623 2.298-5.609 3.71-5.155 1.846.594 2.693 2.641 2.932 5.858.239 3.216.25 6.062.25 6.062z"/><path fill="#FFDC5D" d="M20.029 11.693c-.781 1.172-2.291 3.808-2.518 3.909-1.205.534-2.549 1.22-3.445 1.314-.649.068-1.254.68-1.508.925-.316.304-.75 1.008-.63 1.37.075.226.571.488.742.253.332-.458.973-.535 1.49-.889 1.038-.712 3.284-.765 4.556-1.709.528-.391 1.677-1.309 3.2-3.9-.592-.426-1.887-1.273-1.887-1.273z"/><path fill="#292F33" d="M14.21 17.018c.477.152.847.624.557 1.114-.29.49.403.185.512-.045.223-.468-.178-1.158-.646-1.314-.468-.156-.746.142-.423.245z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f468-200d-1f9bc.svg b/public/emoji/1f468-200d-1f9bc.svg
new file mode 100644
index 0000000000000000000000000000000000000000..7d37c87f680aba8bc5b1a953398e4d1dfd1dac68
--- /dev/null
+++ b/public/emoji/1f468-200d-1f9bc.svg
@@ -0,0 +1 @@
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#FFDC5D" d="M26.007 1.015c-1.214-.871-3.488-.718-4.13.795-.638 1.502-.813 4.067.598 4.266 1.479.209 3.036.269 3.994-1.066.959-1.335.752-3.124-.462-3.995z"/><path fill="#FFDC5D" d="M25.99 5.295c2.544-1.808-2.238-2.778-2.238-2.778-.902-.194-.664 1.452-1.29 2.159-.431.49.708 1.096.708 1.096s.56.133.419.817l-.002.006c-.037.174-.107.374-.256.627-.743 1.253.866 2.543 1.609 1.287.294-.497.352-.985.382-1.441l.003-.041c.043-.679.036-1.285.665-1.732z"/><path fill="#FFAC33" d="M27.409 1.948C26.777.671 25.632-.212 23.332.206c-.937.17-1.279-.066-1.441.071-.778.661-.222 1.753.13 1.652 1.114-.321 1.948.069 2.068.535.12.466-.272 1.15-.092 1.2.486.137.528-.363.791-.59.431-.371.85.006.829.535-.017.42-.272 1.075-.953 1.03.196 1.086.998 1.604.998 1.604s.256.184.986-.652c.729-.836 1.389-2.375.761-3.643z"/><path fill="#292F33" d="M8.22 28.583s.108-.118.211-.409c.104-.291.147-.888.133-.98-.014-.092-.039-.164-.148-.171-.083-.006-.768.08-1.145-.039-.699-.22-.812-.957-.812-.957s-.46.083-.829.152c-.368.069-.818.209-1.134.274-.271.056-.548.03-.823-.03-.275-.06-.485-.147-.55-.165-.066-.017-.575-.27-.782.25l-.051.154s.811.718 2.114 1.182c1.303.464 1.639.152 2.481.452.843.3 1.335.287 1.335.287z"/><path fill="#292F33" d="M6.243 28.821c-.038-.07-.043-.253-.083-.292-.04-.039-.577-.11-.83-.137-.253-.027-.687-.076-1.158-.244-.471-.168-1.032-.523-1.375-.752-.343-.228-.594-.46-.646-.526s-.026-.078-.011-.107.119-.176.119-.176.196.213.569.459.754.467 1.458.717c.703.25 1.182.303 1.583.335.499.039 1.207.141 1.681.309.365.13.66.114.768.123.025.002.04.027.032.051l-.222.623c-.014.041-.081.121-.196.105s-1.651-.419-1.689-.488z"/><path fill="#4289C1" d="M25.097 17.21c.069 1.432-.391 2.922-1.505 3.202-1.066.268-3.056-.151-3.056-.151s-.698.408-.531 1.189c.095.444.257.67.201.712-.05.038-.486-.022-.684-.032-.528-.027-1.1-.211-2.073-.484-.974-.273-1.421-.285-2.481-.577-1.175-.324-1.986-.835-2.33-1.956-.293-.956.277-2.123 1.654-2.63 1.12-.412 4.339-.347 5.539-.231 1.201.118 5.206-.287 5.266.958z"/><path fill="#4289C1" d="M7.002 27.225c-.646-.143-1.293-.6-1.419-1.224 1.346-1.871 3.671-7.538 3.671-7.538.695-1.744 1.517-3.426 3.133-3.182 2.081.315 5.629 1.028 5.629 1.028 2.276.329 1.144 1.007 1.778 1.912.635.903-1.294 1.99-2.786 1.891-2.602-.173-3.877-.453-5.522.846-.8 2.306-2.071 4.087-2.844 6.406-.826.244-.993.004-1.64-.139z"/><path fill="#77B255" d="M25.569 16.971c-.211.688-.149 1.604-.515 1.362-1.444-.957-5.521-2.045-5.521-2.045.049-1.673.979-3.969 1.559-6.148.762-2.86 3.067-3.951 4.171-3.289 1.443.865 1.75 2.668 1.308 5.266s-.791 4.166-1.002 4.854z"/><path fill="#66757F" d="M27.811 10.609l.425-5.242c.022-.274.265-.48.539-.458.274.022.48.265.458.539l-.425 5.242c-.022.274-.265.48-.539.458-.274-.022-.48-.265-.458-.539z"/><path fill="#292F33" d="M16 21v2s-2 0-2 2v3c0 1 1 2 2 2h10c1 0 2-1 2-2v-5c0-1-1-2-2-2H16z"/><path fill="#292F33" d="M22.956 22.559l-9.848-1.736c-.985-.174-.985-.174-.811-1.158.096-.542.617-.907 1.158-.811l9.848 1.736c.542.096.907.617.811 1.158-.173.985-.173.985-1.158.811z"/><path fill="#292F33" d="M25.238 19.023c-.193.922-.557 1.827-2.094 1.537-1.537-.29-1.782 1.225-.824 1.493.958.267 3.252.646 3.921-.446.668-1.092.78-2.139.713-2.606s-1.572-.66-1.716.022z"/><path fill="#DD2E44" d="M23.442 22.896l-10.833-1.91c-.271-.048-.453-.308-.406-.579.048-.271.308-.453.579-.406l10.833 1.91c.271.048.453.308.406.579-.048.271-.309.454-.579.406z"/><path fill="#292F33" d="M28.932 9.642l-1.736 9.848c-.174.985-.174.985-1.158.811-.542-.096-.907-.617-.811-1.158l1.736-9.848c.096-.542.617-.907 1.158-.811.984.173.984.173.811 1.158zm.992-7.49l-.713 4.025c-.087.493-.168 1.007-1.153.834-.542-.096-.882-.715-.763-1.398l.639-3.609c.163-.579.626-1.004 1.167-.909.985.173.91.564.823 1.057z"/><path fill="#DD2E44" d="M29.406 9.224l-1.91 10.833c-.048.271-.308.453-.579.406-.271-.048-.453-.308-.406-.579l1.91-10.833c.048-.271.308-.453.579-.406.272.048.454.308.406.579zm1.243-7.455l-.91 5.18c-.048.271-.308.453-.579.406-.271-.048-.453-.308-.406-.579l.91-5.18c.048-.271.308-.453.579-.406.271.047.454.308.406.579z"/><path fill="#292F33" d="M25.494 18.441l-7.466-1.316c-.747-.132-.747-.132-.617-.869.071-.405.466-.678.877-.606l7.466 1.316c.411.072.688.463.617.869-.13.738-.13.738-.877.606z"/><path fill="#DD2E44" d="M23.123 21.824c.993.175 2.954.521 3.475-2.433s1.506-2.781.985.174-2.237 3.667-4.634 3.245c-1.969-.348-1.796-1.333.174-.986zm-10.33-1.821c1.971.34 2.277 1.422.308 1.07-.873-.156-.984.212-1.251.958-.252.702-.611 1.757-1.144 3.23-.391 1.082-1.279.603-.95-.342.551-1.588 1.061-2.968 1.392-3.847.338-.895.613-1.247 1.645-1.069z"/><path fill="#DD2E44" d="M10.62 24.01c-.258-.094-.547.04-.641.299l-2.052 5.638c-.094.258.04.547.299.641.258.094.547-.04.641-.299l2.052-5.638c.094-.259-.041-.547-.299-.641z"/><path fill="#66757F" d="M8.226 30.588L4.467 29.22c-.258-.094-.393-.382-.299-.641.094-.258.382-.393.641-.299l3.759 1.368c.258.094.393.382.299.641-.094.258-.383.393-.641.299z"/><path fill="#DD2E44" d="M13.844 30.862l2.95-2.95c.194-.194.194-.513 0-.707-.194-.194-.513-.194-.707 0l-2.95 2.95c-.194.194-.194.513 0 .707.194.194.512.194.707 0zM32 34c-.55 0-1-.45-1-1v-3c0-.55.45-1 1-1s1 .45 1 1v3c0 .55-.45 1-1 1z"/><path fill="#DD2E44" d="M13.5 34c-.55 0-1-.45-1-1v-3c0-.55.45-1 1-1s1 .45 1 1v3c0 .55-.45 1-1 1zm12.983-6.005h2c.275 0 .5-.225.5-.5s-.225-.5-.5-.5h-2c-.275 0-.5.225-.5.5s.225.5.5.5z"/><path fill="#DD2E44" d="M31.123 30.803l-2.95-2.95c-.194-.194-.194-.513 0-.707.194-.194.513-.194.707 0l2.95 2.95c.194.194.194.513 0 .707-.194.195-.512.195-.707 0z"/><path fill="#292F33" d="M11.672 16.127c.742.318 2.05.936 2.339 1.047 0 0 .134-.891.49-.891 0 0 .134-.468.223-.668s.356-.134.379.245c.022.379-.089.512-.089.512s.334.423.134 1.002c0 0 .446.067.356.624-.089.557.067.98-.334 1.092-.401.111-1.916.535-1.938-.067-.022-.601-.401-1.069-1.136-1.515-.735-.446-1.27-.936-1.181-1.181.088-.244.133-.467.757-.2z"/><path fill="#DD2E44" d="M26.5 25h-11c-.275 0-.5-.225-.5-.5s.225-.5.5-.5h11c.275 0 .5.225.5.5s-.225.5-.5.5z"/><path fill="#FFDC5D" d="M22.691 10.276c-.579 1.455-1.125 3.55-1.381 3.561-1.473.062-3.079.948-4.006.893-.672-.04-1.306-.167-1.651-.05-.552.187-1.159.289-1.351.632-.195.348.171.657 1.035.656.635 0 1.045.208 1.674.06.896-.21 3.986.754 5.665-.345.566-.371 1.441-1.871 2.525-4.663-1.084-.477-2.51-.744-2.51-.744z"/><circle fill="#66757F" cx="21.5" cy="31.5" r="4.5"/><circle fill="#66757F" cx="13.5" cy="33.5" r="2.5"/><circle fill="#66757F" cx="32" cy="34" r="2"/><circle fill="#CCD6DD" cx="21.5" cy="31.5" r="2.5"/><circle fill="#CCD6DD" cx="13.5" cy="33.5" r="1.5"/><circle fill="#292F33" cx="32" cy="34" r="1"/><g fill="#292F33"><circle cx="22" cy="30.634" r=".5"/><circle cx="21" cy="32.366" r=".5"/><circle cx="20.634" cy="31" r=".5"/><circle cx="22.366" cy="32" r=".5"/></g><circle fill="#292F33" cx="13.5" cy="33.5" r=".75"/><circle fill="#66757F" cx="32" cy="34" r=".5"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f468-200d-1f9bd.svg b/public/emoji/1f468-200d-1f9bd.svg
new file mode 100644
index 0000000000000000000000000000000000000000..b8d2858f9af2326ca65cabdfeef278ebe492e991
--- /dev/null
+++ b/public/emoji/1f468-200d-1f9bd.svg
@@ -0,0 +1 @@
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#FFDC5D" d="M21.96.974c-1.285-.762-3.537-.411-4.045 1.152-.504 1.552-.455 4.123.968 4.198 1.492.079 3.048.003 3.886-1.41.838-1.414.476-3.178-.809-3.94z"/><path fill="#FFDC5D" d="M22.316 5.239c2.376-2.023-2.471-2.572-2.471-2.572-.916-.114-.535 1.504-1.097 2.263-.387.526.801 1.03.801 1.03s.569.083.488.777l-.001.006c-.021.177-.074.382-.2.647-.631 1.313 1.085 2.458 1.715 1.142.249-.521.265-1.012.255-1.469l-.001-.041c-.017-.68-.076-1.283.511-1.783z"/><path fill="#FFAC33" d="M23.439 1.781C22.698.564 21.481-.216 19.225.4c-.919.251-1.279.045-1.429.196-.718.726-.068 1.766.273 1.634 1.082-.417 1.946-.101 2.106.353.16.454-.171 1.169.013 1.204.496.094.494-.407.737-.657.397-.408.847-.068.872.461.02.419-.177 1.095-.86 1.109.29 1.065 1.134 1.511 1.134 1.511s.271.161.925-.735c.655-.896 1.178-2.486.443-3.695z"/><path fill="#292F33" d="M8.211 30.079s.097-.127.175-.426c.078-.299.069-.897.047-.988-.022-.091-.053-.16-.163-.158-.083.001-.759.146-1.144.061-.716-.158-.892-.883-.892-.883s-.452.123-.812.223c-.361.101-.796.279-1.106.372-.265.079-.543.078-.823.041-.279-.036-.496-.105-.563-.116s-.597-.219-.757.317l-.037.159s.871.645 2.209.993 1.646.009 2.511.234 1.355.171 1.355.171z"/><path fill="#292F33" d="M6.262 30.488c-.044-.066-.065-.248-.109-.284-.043-.036-.585-.059-.839-.064-.254-.005-.691-.016-1.175-.142s-1.074-.431-1.436-.629-.632-.407-.689-.468c-.057-.061-.033-.075-.02-.106.013-.031.103-.186.103-.186s.214.195.607.407.792.399 1.514.587 1.204.199 1.606.195c.501-.004 1.215.035 1.701.162.375.098.668.056.776.056.025 0 .043.023.036.048l-.167.64c-.011.042-.07.128-.186.122-.114-.004-1.679-.271-1.722-.338z"/><path fill="#4289C1" d="M24.032 17.279c.193 1.421-.135 2.945-1.22 3.321-1.039.36-3.058.116-3.058.116s-.66.468-.426 1.231c.133.434.314.645.262.692-.046.042-.486.02-.684.027-.528.02-1.114-.115-2.108-.301-.994-.187-1.44-.16-2.522-.359-1.198-.22-2.051-.659-2.491-1.745-.375-.927.091-2.139 1.419-2.764 1.08-.508 4.292-.724 5.498-.712 1.207.011 5.162-.741 5.33.494z"/><path fill="#4289C1" d="M6.879 28.832c-.656-.086-1.341-.485-1.521-1.095 1.178-1.982 3-7.829 3-7.829.541-1.798 1.213-3.546 2.843-3.443 2.1.133 5.697.533 5.697.533 2.296.13 1.228.904 1.938 1.75.712.845-1.115 2.095-2.611 2.126-2.607.054-3.902-.113-5.428 1.324-.596 2.367-1.706 4.252-2.275 6.63-.799.315-.987.091-1.643.004z"/><path fill="#77B255" d="M24.698 16.173c.029.719.15 1.674-.276 1.567-1.679-.424-5.438-.168-5.438-.168-.508-1.594-.392-4.069-.566-6.317-.229-2.95 1.585-4.744 2.845-4.485.513.105 1.136.428 1.511.77.278.253.924.961 1.141 1.169 1.106 1.06.124 1.405.327 2.596.444 2.597.427 4.149.456 4.868z"/><g fill="#DD2E44"><path d="M13.465 27.092l10.824.95c.274.024.518-.181.542-.455.024-.274-.181-.518-.455-.542l-10.824-.95c-.274-.024-.518.181-.542.455-.024.274.181.518.455.542z"/><path d="M24.288 28.041c-.274-.024-.478-.268-.455-.542l.436-4.981c.024-.274.268-.478.542-.455.274.024.478.268.455.542l-.436 4.981c-.024.275-.268.479-.542.455zm-10.738-7.58c-.274-.024-.518.181-.542.455l-1.015 11.597c-.024.274.181.518.455.542.274.024.518-.181.542-.455l1.015-11.597c.023-.274-.181-.518-.455-.542z"/></g><path fill="#292F33" d="M23.524 20.592c1.431-.206 2.834-.148 2.345.544-.489.692-1.575 1.905-3.418 1.707-1.844-.198.185-2.123 1.073-2.251z"/><path fill="#292F33" d="M22.45 22.843l-9.962-.872c-.996-.087-.996-.087-.909-1.083.048-.548.535-.957 1.083-.909l9.962.872c.548.048.957.535.909 1.083-.087.996-.087.996-1.083.909z"/><path fill="#DD2E44" d="M22.964 23.136l-10.958-.959c-.274-.024-.478-.268-.455-.542.024-.274.268-.478.542-.455l10.958.959c.274.024.478.268.455.542-.025.275-.268.479-.542.455z"/><path fill="#292F33" d="M27.278 9.454l-.872 9.962c-.087.996-.087.996-1.083.909-.548-.048-.957-.535-.909-1.083l.872-9.962c.048-.548.535-.957 1.083-.909.996.087.996.087.909 1.083z"/><path fill="#DD2E44" d="M27.714 8.996l-.959 10.958c-.024.274-.268.478-.542.455-.274-.024-.478-.268-.455-.542l.959-10.958c.024-.274.268-.478.542-.455.274.025.479.268.455.542z"/><path fill="#292F33" d="M24.62 18.519l-7.552-.661c-.755-.066-.755-.066-.69-.812.036-.41.405-.716.82-.68l7.552.661c.415.036.726.402.69.812-.064.746-.064.746-.82.68z"/><path fill="#DD2E44" d="M22.553 22.096c1.004.088 2.989.261 3.25-2.727s1.258-2.901.996.087-1.909 3.848-4.333 3.636c-1.993-.174-1.906-1.17.087-.996zm-10.449-.914c1.993.166 2.392 1.218.4 1.039-.883-.079-.962.297-1.163 1.063-.189.721-.456 1.803-.858 3.318-.295 1.112-1.221.712-.977-.257.411-1.63.798-3.05 1.052-3.953.258-.922.502-1.297 1.546-1.21z"/><g fill="#66757F"><circle cx="24.5" cy="27.5" r="1.5"/><path d="M31.245 30.817l-6.062-3.5 3.5-6.062-.866-.5-3.5 6.062-6.062-3.5-.5.866 6.062 3.5-3.5 6.062.866.5 3.5-6.062 6.062 3.5z"/><path d="M26.924 34.615l-1.812-6.761 6.762-1.812-.259-.966-6.761 1.812-1.812-6.762-.966.259 1.812 6.761-6.762 1.812.259.966 6.761-1.812 1.812 6.762z"/></g><path fill="#292F33" d="M24.5 19c-4.694 0-8.5 3.806-8.5 8.5s3.806 8.5 8.5 8.5 8.5-3.806 8.5-8.5-3.806-8.5-8.5-8.5zm0 15c-3.59 0-6.5-2.91-6.5-6.5s2.91-6.5 6.5-6.5 6.5 2.91 6.5 6.5-2.91 6.5-6.5 6.5z"/><path fill="#66757F" d="M24.5 20c-4.142 0-7.5 3.358-7.5 7.5s3.358 7.5 7.5 7.5 7.5-3.358 7.5-7.5-3.358-7.5-7.5-7.5zm0 14c-3.59 0-6.5-2.91-6.5-6.5s2.91-6.5 6.5-6.5 6.5 2.91 6.5 6.5-2.91 6.5-6.5 6.5zm-9.152-.433l-2.165-1.25 1.25-2.165-.866-.5-1.25 2.165-2.165-1.25-.5.866 2.165 1.25-1.25 2.165.866.5 1.25-2.165 2.165 1.25z"/><path fill="#292F33" d="M12.5 29C10.567 29 9 30.567 9 32.5s1.567 3.5 3.5 3.5 3.5-1.567 3.5-3.5-1.567-3.5-3.5-3.5zm0 6c-1.381 0-2.5-1.119-2.5-2.5s1.119-2.5 2.5-2.5 2.5 1.119 2.5 2.5-1.119 2.5-2.5 2.5z"/><path fill="#DD2E44" d="M10.288 25.363c-.266-.071-.541.088-.612.354l-1.553 5.796c-.071.266.088.541.354.612.266.071.541-.088.612-.354l1.553-5.796c.07-.265-.089-.541-.354-.612z"/><path fill="#66757F" d="M8.476 32.125L4.612 31.09c-.266-.071-.425-.347-.354-.612.071-.266.347-.425.612-.354l3.864 1.035c.266.071.426.346.354.612-.071.266-.346.425-.612.354z"/><path fill="#DD2E44" d="M30.103 9.969l-2.954-.521c-.271-.048-.453-.308-.406-.579.048-.271.308-.453.579-.406l2.954.521c.271.048.453.308.406.579-.048.272-.308.454-.579.406z"/><path fill="#292F33" d="M31.088 10.143l-2.615-.467c-.271-.048-.26-.274-.213-.545.048-.271.116-.487.386-.44l2.615.467c.271.048.453.308.406.579-.048.271-.308.454-.579.406z"/><path fill="#FFDC5D" d="M22.118 10.597c1.142.988 3.458 2.697 3.436 2.951-.128 1.469.543 3.175.369 4.087-.126.661-.665 1.138-.594 1.495.667-.009.443 1.15.729 1.665.301.542 1.171-.093 1.282-.949.081-.629-.102-1.11-.167-1.752-.093-.915 1.094-3.661.22-5.467-.295-.609-1.531-2.277-3.635-4.122-.595.457-1.64 2.092-1.64 2.092z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f468-200d-2764-fe0f-200d-1f468.svg b/public/emoji/1f468-200d-2764-fe0f-200d-1f468.svg
index c683290ee8b793b485adac940fef8b5df57ee863..cace24fc32f2e36aac0006f7f7ede878a4737a50 100644
--- a/public/emoji/1f468-200d-2764-fe0f-200d-1f468.svg
+++ b/public/emoji/1f468-200d-2764-fe0f-200d-1f468.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#FFAC33" d="M25 11.844c2.297-.669 3.315-3.565 3.734-5.369.953 1.477 3.036 3.68 7.266 4.805V.425C35.045.154 34.041 0 33 0c-6.075 0-11 4.925-11 11 0 3.009 1.211 5.733 3.168 7.719C25.061 18.162 25 17.589 25 17v-5.156z"/><path fill="#FFDC5D" d="M34 22h2V11.28c-4.23-1.125-6.313-3.328-7.266-4.804-.42 1.804-1.438 4.699-3.734 5.369V17c0 .589.061 1.162.168 1.719.61 3.15 2.863 5.706 5.832 6.757V27l3 5 2-3.396v-4.967c-.538.212-1.191.363-2 .363-3 0-4-2-4-2h4zm-1-3.5h2c.276 0 .5.224.5.5s-.224.5-.5.5h-2c-.276 0-.5-.224-.5-.5s.224-.5.5-.5zM30 16c-.553 0-1-.448-1-1v-1c0-.552.447-1 1-1s1 .448 1 1v1c0 .552-.447 1-1 1z"/><path fill="#3B94D9" d="M36 28.604L34 32l-3-5h-6c-2.209 0-4 1.791-4 4v5h15v-7.396z"/><path fill="#1C6399" d="M25 32h1v4h-1z"/><path fill="#BF6952" d="M31 22h-1s1 2 4 2c.809 0 1.462-.151 2-.363V22h-5z"/><path fill="#662113" d="M30 16c.553 0 1-.448 1-1v-1c0-.552-.447-1-1-1s-1 .448-1 1v1c0 .552.447 1 1 1z"/><path fill="#BF6952" d="M33 19.5h2c.276 0 .5-.224.5-.5s-.224-.5-.5-.5h-2c-.276 0-.5.224-.5.5s.224.5.5.5z"/><path fill="#FFAC33" d="M11 11.844c-2.297-.669-3.315-3.565-3.734-5.369C6.313 7.952 4.23 10.155 0 11.28V.425C.955.154 1.959 0 3 0c6.075 0 11 4.925 11 11 0 3.009-1.211 5.733-3.168 7.719.107-.557.168-1.13.168-1.719v-5.156z"/><path fill="#FFDC5D" d="M5 22h1s-1 2-4 2c-.809 0-1.462-.151-2-.363v4.967L2 32l3-5v-1.523c2.968-1.051 5.222-3.607 5.832-6.757.107-.558.168-1.131.168-1.72v-5.156c-2.297-.669-3.315-3.565-3.734-5.369C6.313 7.952 4.23 10.155 0 11.28V22h5zm-1.5-3c0 .276-.224.5-.5.5H1c-.276 0-.5-.224-.5-.5s.224-.5.5-.5h2c.276 0 .5.224.5.5zM5 15v-1c0-.552.447-1 1-1s1 .448 1 1v1c0 .552-.447 1-1 1s-1-.448-1-1z"/><path fill="#3B94D9" d="M0 28.604L2 32l3-5h6c2.209 0 4 1.791 4 4v5H0v-7.396z"/><path fill="#1C6399" d="M10 32h1v4h-1z"/><path fill="#BF6952" d="M5 22h1s-1 2-4 2c-.809 0-1.462-.151-2-.363V22h5z"/><path fill="#662113" d="M6 16c-.553 0-1-.448-1-1v-1c0-.552.447-1 1-1s1 .448 1 1v1c0 .552-.447 1-1 1z"/><path fill="#BF6952" d="M3 19.5H1c-.276 0-.5-.224-.5-.5s.224-.5.5-.5h2c.276 0 .5.224.5.5s-.224.5-.5.5z"/><path fill="#E75A70" d="M26.539 4.711c0-2.602-2.11-4.711-4.711-4.711C20.249 0 18.855.78 18 1.972 17.144.78 15.751 0 14.172 0c-2.601 0-4.711 2.109-4.711 4.711 0 .369.047.727.127 1.07.654 4.065 5.173 8.353 8.411 9.529 3.238-1.177 7.758-5.465 8.412-9.528.081-.344.128-.702.128-1.071z"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#FFAC33" d="M25 11.844c2.297-.669 3.315-3.565 3.734-5.369.953 1.477 3.036 3.68 7.266 4.805V.425C35.045.154 34.041 0 33 0c-6.075 0-11 4.925-11 11 0 3.009 1.211 5.733 3.168 7.719C25.061 18.162 25 17.589 25 17v-5.156z"/><path fill="#FFDC5D" d="M34 22h2V11.28c-4.23-1.125-6.313-3.328-7.266-4.804-.42 1.804-1.438 4.699-3.734 5.369V17c0 .589.061 1.162.168 1.719.61 3.15 2.863 5.706 5.832 6.757V27l3 5 2-3.396v-4.967c-.538.212-1.191.363-2 .363-3 0-4-2-4-2h4zm-1-3.5h2c.276 0 .5.224.5.5s-.224.5-.5.5h-2c-.276 0-.5-.224-.5-.5s.224-.5.5-.5zM30 16c-.553 0-1-.448-1-1v-1c0-.552.447-1 1-1s1 .448 1 1v1c0 .552-.447 1-1 1z"/><path fill="#3B94D9" d="M36 28.604L34 32l-3-5h-6c-2.209 0-4 1.791-4 4v5h15v-7.396z"/><path fill="#1C6399" d="M25 32h1v4h-1z"/><path fill="#BF6952" d="M31 22h-1s1 2 4 2c.809 0 1.462-.151 2-.363V22h-5z"/><path fill="#662113" d="M30 16c.553 0 1-.448 1-1v-1c0-.552-.447-1-1-1s-1 .448-1 1v1c0 .552.447 1 1 1z"/><path fill="#BF6952" d="M33 19.5h2c.276 0 .5-.224.5-.5s-.224-.5-.5-.5h-2c-.276 0-.5.224-.5.5s.224.5.5.5z"/><path fill="#FFAC33" d="M11 11.844c-2.297-.669-3.315-3.565-3.734-5.369C6.313 7.952 4.23 10.155 0 11.28V.425C.955.154 1.959 0 3 0c6.075 0 11 4.925 11 11 0 3.009-1.211 5.733-3.168 7.719.107-.557.168-1.13.168-1.719v-5.156z"/><path fill="#FFDC5D" d="M5 22h1s-1 2-4 2c-.809 0-1.462-.151-2-.363v4.967L2 32l3-5v-1.523c2.968-1.051 5.222-3.607 5.832-6.757.107-.558.168-1.131.168-1.72v-5.156c-2.297-.669-3.315-3.565-3.734-5.369C6.313 7.952 4.23 10.155 0 11.28V22h5zm-1.5-3c0 .276-.224.5-.5.5H1c-.276 0-.5-.224-.5-.5s.224-.5.5-.5h2c.276 0 .5.224.5.5zM5 15v-1c0-.552.447-1 1-1s1 .448 1 1v1c0 .552-.447 1-1 1s-1-.448-1-1z"/><path fill="#3B94D9" d="M0 28.604L2 32l3-5h6c2.209 0 4 1.791 4 4v5H0v-7.396z"/><path fill="#1C6399" d="M10 32h1v4h-1z"/><path fill="#BF6952" d="M5 22h1s-1 2-4 2c-.809 0-1.462-.151-2-.363V22h5z"/><path fill="#662113" d="M6 16c-.553 0-1-.448-1-1v-1c0-.552.447-1 1-1s1 .448 1 1v1c0 .552-.447 1-1 1z"/><path fill="#BF6952" d="M3 19.5H1c-.276 0-.5-.224-.5-.5s.224-.5.5-.5h2c.276 0 .5.224.5.5s-.224.5-.5.5z"/><path fill="#DD2E44" d="M26.539 4.711c0-2.602-2.11-4.711-4.711-4.711C20.249 0 18.855.78 18 1.972 17.144.78 15.751 0 14.172 0c-2.601 0-4.711 2.109-4.711 4.711 0 .369.047.727.127 1.07.654 4.065 5.173 8.353 8.411 9.529 3.238-1.177 7.758-5.465 8.412-9.528.081-.344.128-.702.128-1.071z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f468-200d-2764-fe0f-200d-1f48b-200d-1f468.svg b/public/emoji/1f468-200d-2764-fe0f-200d-1f48b-200d-1f468.svg
index 1c9a76ab82fdb1f39ee7626e6e214ec9837902bd..41dbd9681a2633671b5a9ddc76f5b71aea752f13 100644
--- a/public/emoji/1f468-200d-2764-fe0f-200d-1f48b-200d-1f468.svg
+++ b/public/emoji/1f468-200d-2764-fe0f-200d-1f48b-200d-1f468.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#FFDC5D" d="M31 8.042c-6.626 0-12 5.373-12 12 0 6.626 5.374 12 12 12 1.787 0 3.476-.401 5-1.102V9.143c-1.524-.7-3.213-1.101-5-1.101z"/><path fill="#FFAC33" d="M20.667 15.042c.055.06.128.115.197.171.72.716 1.753 1.477 3.219 2.036 3.691 1.407 9.121.297 9.121.297s-.748-1.198-2.101-2.492c1.809.549 3.463 1.358 4.897 2.371v-9.25c-1.81-.904-3.843-1.426-6-1.429-6.508-.008-9.915 3.393-10.059 6.135-.176.085-.352.168-.531.265 0 0 .237.641.902 1.459.077.094.161.191.249.29.038.048.064.101.106.147z"/><path fill="#642116" d="M26 21.542c-1.411 0-1.497-1.251-1.5-1.503-.001-.274-.225-.497-.5-.497-.276 0-.5.224-.5.5 0 .864.523 2.5 2.5 2.5.276 0 .5-.224.5-.5 0-.277-.224-.5-.5-.5zm5 0c-1.411 0-1.497-1.251-1.5-1.503-.001-.274-.225-.497-.5-.497-.276 0-.5.224-.5.5 0 .864.523 2.5 2.5 2.5.276 0 .5-.224.5-.5 0-.277-.224-.5-.5-.5zm-4.995 4c.273-.003.495-.226.495-.5 0-.276-.224-.5-.5-.5-.602 0-1.5.399-1.5 1.5 0 .438.143.765.352 1-.209.235-.352.562-.352 1 0 1.101.898 1.5 1.5 1.5.273 0 .493-.22.496-.494.004-.273-.217-.499-.49-.506-.231-.006-.506-.098-.506-.5s.275-.494.5-.5h.011c.272-.006.489-.228.489-.5 0-.274-.222-.497-.495-.5-.23-.006-.505-.098-.505-.5 0-.403.274-.494.505-.5z"/><path fill="#FFDC5D" d="M5 8.042c6.626 0 12 5.373 12 12 0 6.626-5.374 12-12 12-1.787 0-3.476-.401-5-1.102V9.143c1.524-.7 3.213-1.101 5-1.101z"/><path fill="#FFAC33" d="M15.333 15.042c-.055.06-.128.115-.197.171-.72.716-1.753 1.477-3.219 2.036-3.691 1.407-9.121.297-9.121.297s.748-1.198 2.101-2.492c-1.809.549-3.463 1.359-4.897 2.371v-9.25c1.81-.903 3.843-1.425 6-1.428 6.508-.008 9.915 3.393 10.059 6.135.176.085.352.168.531.265 0 0-.237.641-.902 1.459-.077.094-.161.191-.249.29-.038.047-.064.1-.106.146z"/><path fill="#642116" d="M10 21.542c1.411 0 1.497-1.251 1.5-1.503.001-.274.225-.497.5-.497.276 0 .5.224.5.5 0 .864-.523 2.5-2.5 2.5-.276 0-.5-.224-.5-.5 0-.277.224-.5.5-.5zm-5 0c1.411 0 1.497-1.251 1.5-1.503.001-.274.225-.497.5-.497.276 0 .5.224.5.5 0 .864-.523 2.5-2.5 2.5-.276 0-.5-.224-.5-.5 0-.277.224-.5.5-.5zm4.995 4c-.273-.003-.495-.226-.495-.5 0-.276.224-.5.5-.5.602 0 1.5.399 1.5 1.5 0 .438-.143.765-.352 1 .209.235.352.562.352 1 0 1.101-.898 1.5-1.5 1.5-.273 0-.493-.22-.496-.494-.004-.273.217-.499.49-.506.231-.006.506-.098.506-.5s-.275-.494-.5-.5h-.011c-.272-.006-.489-.228-.489-.5 0-.274.222-.497.495-.5.23-.006.505-.098.505-.5 0-.403-.274-.494-.505-.5z"/><path fill="#EA596E" d="M26.539 4.711c0-2.602-2.11-4.711-4.711-4.711C20.249 0 18.855.78 18 1.972 17.144.78 15.751 0 14.172 0c-2.601 0-4.711 2.109-4.711 4.711 0 .369.047.727.127 1.07.654 4.065 5.173 8.353 8.411 9.529 3.238-1.177 7.758-5.465 8.412-9.528.081-.344.128-.702.128-1.071z"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#FFDC5D" d="M31 8.042c-6.626 0-12 5.373-12 12 0 6.626 5.374 12 12 12 1.787 0 3.476-.401 5-1.102V9.143c-1.524-.7-3.213-1.101-5-1.101z"/><path fill="#FFAC33" d="M20.667 15.042c.055.06.128.115.197.171.72.716 1.753 1.477 3.219 2.036 3.691 1.407 9.121.297 9.121.297s-.748-1.198-2.101-2.492c1.809.549 3.463 1.358 4.897 2.371v-9.25c-1.81-.904-3.843-1.426-6-1.429-6.508-.008-9.915 3.393-10.059 6.135-.176.085-.352.168-.531.265 0 0 .237.641.902 1.459.077.094.161.191.249.29.038.048.064.101.106.147z"/><path fill="#642116" d="M26 21.542c-1.411 0-1.497-1.251-1.5-1.503-.001-.274-.225-.497-.5-.497-.276 0-.5.224-.5.5 0 .864.523 2.5 2.5 2.5.276 0 .5-.224.5-.5 0-.277-.224-.5-.5-.5zm5 0c-1.411 0-1.497-1.251-1.5-1.503-.001-.274-.225-.497-.5-.497-.276 0-.5.224-.5.5 0 .864.523 2.5 2.5 2.5.276 0 .5-.224.5-.5 0-.277-.224-.5-.5-.5zm-4.995 4c.273-.003.495-.226.495-.5 0-.276-.224-.5-.5-.5-.602 0-1.5.399-1.5 1.5 0 .438.143.765.352 1-.209.235-.352.562-.352 1 0 1.101.898 1.5 1.5 1.5.273 0 .493-.22.496-.494.004-.273-.217-.499-.49-.506-.231-.006-.506-.098-.506-.5s.275-.494.5-.5h.011c.272-.006.489-.228.489-.5 0-.274-.222-.497-.495-.5-.23-.006-.505-.098-.505-.5 0-.403.274-.494.505-.5z"/><path fill="#FFDC5D" d="M5 8.042c6.626 0 12 5.373 12 12 0 6.626-5.374 12-12 12-1.787 0-3.476-.401-5-1.102V9.143c1.524-.7 3.213-1.101 5-1.101z"/><path fill="#FFAC33" d="M15.333 15.042c-.055.06-.128.115-.197.171-.72.716-1.753 1.477-3.219 2.036-3.691 1.407-9.121.297-9.121.297s.748-1.198 2.101-2.492c-1.809.549-3.463 1.359-4.897 2.371v-9.25c1.81-.903 3.843-1.425 6-1.428 6.508-.008 9.915 3.393 10.059 6.135.176.085.352.168.531.265 0 0-.237.641-.902 1.459-.077.094-.161.191-.249.29-.038.047-.064.1-.106.146z"/><path fill="#642116" d="M10 21.542c1.411 0 1.497-1.251 1.5-1.503.001-.274.225-.497.5-.497.276 0 .5.224.5.5 0 .864-.523 2.5-2.5 2.5-.276 0-.5-.224-.5-.5 0-.277.224-.5.5-.5zm-5 0c1.411 0 1.497-1.251 1.5-1.503.001-.274.225-.497.5-.497.276 0 .5.224.5.5 0 .864-.523 2.5-2.5 2.5-.276 0-.5-.224-.5-.5 0-.277.224-.5.5-.5zm4.995 4c-.273-.003-.495-.226-.495-.5 0-.276.224-.5.5-.5.602 0 1.5.399 1.5 1.5 0 .438-.143.765-.352 1 .209.235.352.562.352 1 0 1.101-.898 1.5-1.5 1.5-.273 0-.493-.22-.496-.494-.004-.273.217-.499.49-.506.231-.006.506-.098.506-.5s-.275-.494-.5-.5h-.011c-.272-.006-.489-.228-.489-.5 0-.274.222-.497.495-.5.23-.006.505-.098.505-.5 0-.403-.274-.494-.505-.5z"/><path fill="#DD2E44" d="M26.539 4.711c0-2.602-2.11-4.711-4.711-4.711C20.249 0 18.855.78 18 1.972 17.144.78 15.751 0 14.172 0c-2.601 0-4.711 2.109-4.711 4.711 0 .369.047.727.127 1.07.654 4.065 5.173 8.353 8.411 9.529 3.238-1.177 7.758-5.465 8.412-9.528.081-.344.128-.702.128-1.071z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f469-1f3fb-200d-1f91d-200d-1f468-1f3fc.svg b/public/emoji/1f469-1f3fb-200d-1f91d-200d-1f468-1f3fc.svg
new file mode 100644
index 0000000000000000000000000000000000000000..c0a072e2f0dee68903a214f261761038e5a8bcc6
--- /dev/null
+++ b/public/emoji/1f469-1f3fb-200d-1f91d-200d-1f468-1f3fc.svg
@@ -0,0 +1 @@
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#292F33" d="M11 0C9.736 0 8.565.393 7.598 1.061 7.401 1.031 7.205 1 7 1 4.791 1 3 2.791 3 5v6c0 3.866 3.134 7 7 7s7-3.134 7-7V6.001C17 2.687 14.314 0 11 0z"/><path fill="#F7DECE" d="M11.213 34.309c-.052.682 1.849.953 2.129.791.299-.173-.698-.623-.702-.977-.019-1.797.53-1.648.311-3.492.443-1.625.672-2.592.672-3.131 0-1.25-3.312-.766-3.312 0 0 .344.365 1.681.417 3.131-.313 1.659.641 1.615.485 3.678zm-2.448 0c.052.682-1.849.953-2.129.791-.299-.173.698-.623.702-.977.019-1.797-.53-1.648-.311-3.492-.443-1.625-.672-2.592-.672-3.131 0-1.25 3.313-.766 3.313 0 0 .344-.365 1.681-.417 3.131.311 1.659-.642 1.615-.486 3.678z"/><path fill="#EEC2AD" d="M10.311 27.5c0 .206.13.771.246 1.5h2.817c.164-.689.249-1.175.249-1.5 0-1.25-3.312-.766-3.312 0zm-3.957 0c0 .325.085.811.249 1.5H9.42c.116-.729.247-1.294.247-1.5 0-.766-3.313-1.25-3.313 0z"/><path fill="#F7DECE" d="M3.258 26.96c-.258.124-.503-.097-.619-.227-.328-.367-.583-1.246-.282-2.209.303-.973.6-2.384 1.199-4.002.081-.22.499-3.764.805-4.445.197-.437 1.28-.896 1.81-.807.529.089.246.651.105 1.13 0 0-.916 3.953-1.016 4.296-.316 1.079-1.624 2.918-1.565 4.237.031.692.06 1.255-.339 1.246-.049.362-.003.735-.098.781zm14.984-.2c.271.091.487-.159.586-.302.279-.405.422-1.309.004-2.227-.423-.927-.894-2.29-1.69-3.821-.108-.208-.966-3.672-1.355-4.309-.25-.409-1.382-.729-1.897-.574-.513.154-.162.676.037 1.134 0 0 1.403 3.807 1.546 4.135.449 1.031 1.977 2.691 2.082 4.008.056.69.097 1.253.492 1.194.094.353.095.729.195.762z"/><path fill="#292F33" d="M13.945 36c.305 0 .372-.418.089-.629-.379-.285-.88-1.371-1.561-1.371h-1.245c-.229 0-.49 1.209-.41 1.48.102.345.433.52.812.52h2.315zm-7.913 0c-.305 0-.372-.418-.089-.629.379-.285.88-1.371 1.561-1.371h1.245c.229 0 .49 1.209.41 1.48-.102.345-.433.52-.811.52H6.032z"/><path fill="#E75A70" d="M14.354 17.771L16 16c-1.438-1.792-4-2-4-2H8s-2.562.208-4 2l1.646 1.771S6.25 20.688 6.25 21 5 25.75 5 28h10c0-2.25-1.25-6.688-1.25-7s.604-3.229.604-3.229z"/><path fill="#DA2F47" d="M13.75 21c0-.106.07-.512.161-1H6.089c.092.488.161.894.161 1 0 .083-.122.509-.223 1h7.942c-.108-.558-.219-.917-.219-1z"/><path fill="#F7DECE" d="M8 11v4c0 1.104.896 2 2 2s2-.896 2-2v-4H8z"/><path fill="#EEC2AD" d="M12 11l-4 .019V15s2 1 4 0v-4z"/><path fill="#F7DECE" d="M15 3H5v6c0 2.762 2.238 5 5 5s5-2.237 5-5V3z"/><path fill="#292F33" d="M15 2H5L4 7c4 0 4-4 4-4s0 4 8 4l-1-5z"/><path fill="#DF1F32" d="M12 12H8s0 1 2 1 2-1 2-1z"/><circle fill="#662113" cx="7.5" cy="8.5" r=".5"/><circle fill="#662113" cx="12.5" cy="8.5" r=".5"/><path fill="#C1694F" d="M9 10h2s0 1-1 1-1-1-1-1z"/><path fill="#FFE51E" d="M26.5 0c-1.187 0-2.282.379-3.181 1.018C21.473 1.114 20 2.629 20 4.5c0 1.542.007 3.484 2.038 4.208C23.036 10.094 24.66 11 26.5 11c3.037 0 5.5-2.462 5.5-5.499C32 2.463 29.537 0 26.5 0z"/><path fill="#F3D2A2" d="M18.117 26.76c-.271.091-.487-.159-.586-.302-.279-.405-.422-1.309-.004-2.227.423-.927.702-2.072 1.69-3.821.115-.204.494-2.746 1.242-4.354.202-.435 1.495-.684 2.009-.529.513.154-.005.98-.037 1.134-.344 1.651-1.305 4.077-1.45 4.404-.8 1.806-1.965 2.389-2.071 3.706-.055.69-.205 1.286-.6 1.228-.092.352-.094.728-.193.761zm14.595.204c.257.126.504-.094.62-.222.33-.365.591-1.242.296-2.208-.297-.975-.424-2.146-1.174-4.01-.087-.217-.129-2.787-.66-4.479-.143-.457-1.392-.875-1.922-.789-.529.086-.124.972-.112 1.129.124 1.682.758 4.213.859 4.556.556 1.895 1.634 2.627 1.566 3.946-.036.692.034 1.302.433 1.296.048.363 0 .735.094.781z"/><path fill="#AAB8C2" d="M29.555 29.5c.5-2.734.422-6.5.422-6.5h-7.963s-.078 3.766.422 6.5c.063.344.188 3.344-.109 5.5-.066.479 2.886.937 2.844-.125-.078-1.969.264-3.513.328-4.5.035-.547.25-1.875.344-3.208.011-.018.295-.018.306 0 .094 1.333.308 2.661.344 3.208.064.987.406 2.531.328 4.5-.042 1.062 2.91.604 2.844.125-.297-2.156-.172-5.156-.11-5.5z"/><path fill="#292F33" d="M30.54 36c.499-.406-.041-1.161-1.42-1.402-1.163-.203-2.2-.032-2.363.35-.212.493-.05 1.052-.05 1.052h3.833zm-9.117 0c-.499-.406.041-1.161 1.42-1.402 1.163-.203 2.2-.032 2.363.35.212.494.05 1.053.05 1.053L21.423 36z"/><path fill="#4289C1" d="M30.797 14.766C29.578 14 28 14 28 14h-4s-1.578 0-2.797.766c-1.201.754-1.656 3-1.656 3l2.203.688.109 5.546h8.281l.109-5.547 2.203-.688c.001.001-.454-2.245-1.655-2.999z"/><path fill="#F3D2A2" d="M24 10.042v4c0 .682.896 1.305 2 1.305s2-.668 2-1.305v-4h-4z"/><path fill="#E2C196" d="M24 14.042c0 .682.896 1.305 2 1.305s2-.668 2-1.305V11l-4 .019v3.023z"/><path fill="#F3D2A2" d="M31 3H21v6c0 2.762 2.238 5 5 5s5-2.237 5-5V3z"/><path fill="#FFE51E" d="M21 2.5L20.5 5l.5 2c2.333 0 2.85-2.412 2.965-3.488C24.004 4.588 24.779 7 31 7l.5-2-.5-2.5H21z"/><path fill="#C1694F" d="M28 12h-4s0 1 2 1 2-1 2-1z"/><circle fill="#662113" cx="23.5" cy="8.5" r=".5"/><circle fill="#662113" cx="28.5" cy="8.5" r=".5"/><path fill="#C1694F" d="M25 10h2s0 1-1 1-1-1-1-1z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f469-1f3fb-200d-1f91d-200d-1f468-1f3fd.svg b/public/emoji/1f469-1f3fb-200d-1f91d-200d-1f468-1f3fd.svg
new file mode 100644
index 0000000000000000000000000000000000000000..fa124a7f93f051dbf3ca2b37bc5e84c182fb5087
--- /dev/null
+++ b/public/emoji/1f469-1f3fb-200d-1f91d-200d-1f468-1f3fd.svg
@@ -0,0 +1 @@
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#292F33" d="M11 0C9.736 0 8.565.393 7.598 1.061 7.401 1.031 7.205 1 7 1 4.791 1 3 2.791 3 5v6c0 3.866 3.134 7 7 7s7-3.134 7-7V6.001C17 2.687 14.314 0 11 0z"/><path fill="#F7DECE" d="M11.213 34.309c-.052.682 1.849.953 2.129.791.299-.173-.698-.623-.702-.977-.019-1.797.53-1.648.311-3.492.443-1.625.672-2.592.672-3.131 0-1.25-3.312-.766-3.312 0 0 .344.365 1.681.417 3.131-.313 1.659.641 1.615.485 3.678zm-2.448 0c.052.682-1.849.953-2.129.791-.299-.173.698-.623.702-.977.019-1.797-.53-1.648-.311-3.492-.443-1.625-.672-2.592-.672-3.131 0-1.25 3.313-.766 3.313 0 0 .344-.365 1.681-.417 3.131.311 1.659-.642 1.615-.486 3.678z"/><path fill="#EEC2AD" d="M10.311 27.5c0 .206.13.771.246 1.5h2.817c.164-.689.249-1.175.249-1.5 0-1.25-3.312-.766-3.312 0zm-3.957 0c0 .325.085.811.249 1.5H9.42c.116-.729.247-1.294.247-1.5 0-.766-3.313-1.25-3.313 0z"/><path fill="#F7DECE" d="M3.258 26.96c-.258.124-.503-.097-.619-.227-.328-.367-.583-1.246-.282-2.209.303-.973.6-2.384 1.199-4.002.081-.22.499-3.764.805-4.445.197-.437 1.28-.896 1.81-.807.529.089.246.651.105 1.13 0 0-.916 3.953-1.016 4.296-.316 1.079-1.624 2.918-1.565 4.237.031.692.06 1.255-.339 1.246-.049.362-.003.735-.098.781zm14.984-.2c.271.091.487-.159.586-.302.279-.405.422-1.309.004-2.227-.423-.927-.894-2.29-1.69-3.821-.108-.208-.966-3.672-1.355-4.309-.25-.409-1.382-.729-1.897-.574-.513.154-.162.676.037 1.134 0 0 1.403 3.807 1.546 4.135.449 1.031 1.977 2.691 2.082 4.008.056.69.097 1.253.492 1.194.094.353.095.729.195.762z"/><path fill="#292F33" d="M13.945 36c.305 0 .372-.418.089-.629-.379-.285-.88-1.371-1.561-1.371h-1.245c-.229 0-.49 1.209-.41 1.48.102.345.433.52.812.52h2.315zm-7.913 0c-.305 0-.372-.418-.089-.629.379-.285.88-1.371 1.561-1.371h1.245c.229 0 .49 1.209.41 1.48-.102.345-.433.52-.811.52H6.032z"/><path fill="#E75A70" d="M14.354 17.771L16 16c-1.438-1.792-4-2-4-2H8s-2.562.208-4 2l1.646 1.771S6.25 20.688 6.25 21 5 25.75 5 28h10c0-2.25-1.25-6.688-1.25-7s.604-3.229.604-3.229z"/><path fill="#DA2F47" d="M13.75 21c0-.106.07-.512.161-1H6.089c.092.488.161.894.161 1 0 .083-.122.509-.223 1h7.942c-.108-.558-.219-.917-.219-1z"/><path fill="#F7DECE" d="M8 11v4c0 1.104.896 2 2 2s2-.896 2-2v-4H8z"/><path fill="#EEC2AD" d="M12 11l-4 .019V15s2 1 4 0v-4z"/><path fill="#F7DECE" d="M15 3H5v6c0 2.762 2.238 5 5 5s5-2.237 5-5V3z"/><path fill="#292F33" d="M15 2H5L4 7c4 0 4-4 4-4s0 4 8 4l-1-5z"/><path fill="#DF1F32" d="M12 12H8s0 1 2 1 2-1 2-1z"/><circle fill="#662113" cx="7.5" cy="8.5" r=".5"/><circle fill="#662113" cx="12.5" cy="8.5" r=".5"/><path fill="#C1694F" d="M9 10h2s0 1-1 1-1-1-1-1z"/><path fill="#963B22" d="M26.5 0c-1.187 0-2.282.379-3.181 1.018C21.473 1.114 20 2.629 20 4.5c0 1.542.007 3.484 2.038 4.208C23.036 10.094 24.66 11 26.5 11c3.037 0 5.5-2.462 5.5-5.499C32 2.463 29.537 0 26.5 0z"/><path fill="#D4AB88" d="M18.117 26.76c-.271.091-.487-.159-.586-.302-.279-.405-.422-1.309-.004-2.227.423-.927.702-2.072 1.69-3.821.115-.204.494-2.746 1.242-4.354.202-.435 1.495-.684 2.009-.529.513.154-.005.98-.037 1.134-.344 1.651-1.305 4.077-1.45 4.404-.8 1.806-1.965 2.389-2.071 3.706-.055.69-.205 1.286-.6 1.228-.092.352-.094.728-.193.761zm14.595.204c.257.126.504-.094.62-.222.33-.365.591-1.242.296-2.208-.297-.975-.424-2.146-1.174-4.01-.087-.217-.129-2.787-.66-4.479-.143-.457-1.392-.875-1.922-.789-.529.086-.124.972-.112 1.129.124 1.682.758 4.213.859 4.556.556 1.895 1.634 2.627 1.566 3.946-.036.692.034 1.302.433 1.296.048.363 0 .735.094.781z"/><path fill="#AAB8C2" d="M29.555 29.5c.5-2.734.422-6.5.422-6.5h-7.963s-.078 3.766.422 6.5c.063.344.188 3.344-.109 5.5-.066.479 2.886.937 2.844-.125-.078-1.969.264-3.513.328-4.5.035-.547.25-1.875.344-3.208.011-.018.295-.018.306 0 .094 1.333.308 2.661.344 3.208.064.987.406 2.531.328 4.5-.042 1.062 2.91.604 2.844.125-.297-2.156-.172-5.156-.11-5.5z"/><path fill="#292F33" d="M30.54 36c.499-.406-.041-1.161-1.42-1.402-1.163-.203-2.2-.032-2.363.35-.212.493-.05 1.052-.05 1.052h3.833zm-9.117 0c-.499-.406.041-1.161 1.42-1.402 1.163-.203 2.2-.032 2.363.35.212.494.05 1.053.05 1.053L21.423 36z"/><path fill="#4289C1" d="M30.797 14.766C29.578 14 28 14 28 14h-4s-1.578 0-2.797.766c-1.201.754-1.656 3-1.656 3l2.203.688.109 5.546h8.281l.109-5.547 2.203-.688c.001.001-.454-2.245-1.655-2.999z"/><path fill="#D4AB88" d="M24 10.042v4c0 .682.896 1.305 2 1.305s2-.668 2-1.305v-4h-4z"/><path fill="#CC9B7A" d="M24 14.042c0 .682.896 1.305 2 1.305s2-.668 2-1.305V11l-4 .019v3.023z"/><path fill="#D4AB88" d="M31 3H21v6c0 2.762 2.238 5 5 5s5-2.237 5-5V3z"/><path fill="#963B22" d="M21 2.5L20.5 5l.5 2c2.333 0 2.85-2.412 2.965-3.488C24.004 4.588 24.779 7 31 7l.5-2-.5-2.5H21z"/><path fill="#C1694F" d="M28 12h-4s0 1 2 1 2-1 2-1z"/><circle fill="#662113" cx="23.5" cy="8.5" r=".5"/><circle fill="#662113" cx="28.5" cy="8.5" r=".5"/><path fill="#C1694F" d="M25 10h2s0 1-1 1-1-1-1-1z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f469-1f3fb-200d-1f91d-200d-1f468-1f3fe.svg b/public/emoji/1f469-1f3fb-200d-1f91d-200d-1f468-1f3fe.svg
new file mode 100644
index 0000000000000000000000000000000000000000..97533c42df823e96e3b36b69298f9cf062751387
--- /dev/null
+++ b/public/emoji/1f469-1f3fb-200d-1f91d-200d-1f468-1f3fe.svg
@@ -0,0 +1 @@
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#292F33" d="M11 0C9.736 0 8.565.393 7.598 1.061 7.401 1.031 7.205 1 7 1 4.791 1 3 2.791 3 5v6c0 3.866 3.134 7 7 7s7-3.134 7-7V6.001C17 2.687 14.314 0 11 0z"/><path fill="#F7DECE" d="M11.213 34.309c-.052.682 1.849.953 2.129.791.299-.173-.698-.623-.702-.977-.019-1.797.53-1.648.311-3.492.443-1.625.672-2.592.672-3.131 0-1.25-3.312-.766-3.312 0 0 .344.365 1.681.417 3.131-.313 1.659.641 1.615.485 3.678zm-2.448 0c.052.682-1.849.953-2.129.791-.299-.173.698-.623.702-.977.019-1.797-.53-1.648-.311-3.492-.443-1.625-.672-2.592-.672-3.131 0-1.25 3.313-.766 3.313 0 0 .344-.365 1.681-.417 3.131.311 1.659-.642 1.615-.486 3.678z"/><path fill="#EEC2AD" d="M10.311 27.5c0 .206.13.771.246 1.5h2.817c.164-.689.249-1.175.249-1.5 0-1.25-3.312-.766-3.312 0zm-3.957 0c0 .325.085.811.249 1.5H9.42c.116-.729.247-1.294.247-1.5 0-.766-3.313-1.25-3.313 0z"/><path fill="#F7DECE" d="M3.258 26.96c-.258.124-.503-.097-.619-.227-.328-.367-.583-1.246-.282-2.209.303-.973.6-2.384 1.199-4.002.081-.22.499-3.764.805-4.445.197-.437 1.28-.896 1.81-.807.529.089.246.651.105 1.13 0 0-.916 3.953-1.016 4.296-.316 1.079-1.624 2.918-1.565 4.237.031.692.06 1.255-.339 1.246-.049.362-.003.735-.098.781zm14.984-.2c.271.091.487-.159.586-.302.279-.405.422-1.309.004-2.227-.423-.927-.894-2.29-1.69-3.821-.108-.208-.966-3.672-1.355-4.309-.25-.409-1.382-.729-1.897-.574-.513.154-.162.676.037 1.134 0 0 1.403 3.807 1.546 4.135.449 1.031 1.977 2.691 2.082 4.008.056.69.097 1.253.492 1.194.094.353.095.729.195.762z"/><path fill="#292F33" d="M13.945 36c.305 0 .372-.418.089-.629-.379-.285-.88-1.371-1.561-1.371h-1.245c-.229 0-.49 1.209-.41 1.48.102.345.433.52.812.52h2.315zm-7.913 0c-.305 0-.372-.418-.089-.629.379-.285.88-1.371 1.561-1.371h1.245c.229 0 .49 1.209.41 1.48-.102.345-.433.52-.811.52H6.032z"/><path fill="#E75A70" d="M14.354 17.771L16 16c-1.438-1.792-4-2-4-2H8s-2.562.208-4 2l1.646 1.771S6.25 20.688 6.25 21 5 25.75 5 28h10c0-2.25-1.25-6.688-1.25-7s.604-3.229.604-3.229z"/><path fill="#DA2F47" d="M13.75 21c0-.106.07-.512.161-1H6.089c.092.488.161.894.161 1 0 .083-.122.509-.223 1h7.942c-.108-.558-.219-.917-.219-1z"/><path fill="#F7DECE" d="M8 11v4c0 1.104.896 2 2 2s2-.896 2-2v-4H8z"/><path fill="#EEC2AD" d="M12 11l-4 .019V15s2 1 4 0v-4z"/><path fill="#F7DECE" d="M15 3H5v6c0 2.762 2.238 5 5 5s5-2.237 5-5V3z"/><path fill="#292F33" d="M15 2H5L4 7c4 0 4-4 4-4s0 4 8 4l-1-5z"/><path fill="#DF1F32" d="M12 12H8s0 1 2 1 2-1 2-1z"/><circle fill="#662113" cx="7.5" cy="8.5" r=".5"/><circle fill="#662113" cx="12.5" cy="8.5" r=".5"/><path fill="#C1694F" d="M9 10h2s0 1-1 1-1-1-1-1z"/><path fill="#60352A" d="M26.5 0c-1.187 0-2.282.379-3.181 1.018C21.473 1.114 20 2.629 20 4.5c0 1.542.007 3.484 2.038 4.208C23.036 10.094 24.66 11 26.5 11c3.037 0 5.5-2.462 5.5-5.499C32 2.463 29.537 0 26.5 0z"/><path fill="#AF7E57" d="M18.117 26.76c-.271.091-.487-.159-.586-.302-.279-.405-.422-1.309-.004-2.227.423-.927.702-2.072 1.69-3.821.115-.204.494-2.746 1.242-4.354.202-.435 1.495-.684 2.009-.529.513.154-.005.98-.037 1.134-.344 1.651-1.305 4.077-1.45 4.404-.8 1.806-1.965 2.389-2.071 3.706-.055.69-.205 1.286-.6 1.228-.092.352-.094.728-.193.761zm14.595.204c.257.126.504-.094.62-.222.33-.365.591-1.242.296-2.208-.297-.975-.424-2.146-1.174-4.01-.087-.217-.129-2.787-.66-4.479-.143-.457-1.392-.875-1.922-.789-.529.086-.124.972-.112 1.129.124 1.682.758 4.213.859 4.556.556 1.895 1.634 2.627 1.566 3.946-.036.692.034 1.302.433 1.296.048.363 0 .735.094.781z"/><path fill="#AAB8C2" d="M29.555 29.5c.5-2.734.422-6.5.422-6.5h-7.963s-.078 3.766.422 6.5c.063.344.188 3.344-.109 5.5-.066.479 2.886.937 2.844-.125-.078-1.969.264-3.513.328-4.5.035-.547.25-1.875.344-3.208.011-.018.295-.018.306 0 .094 1.333.308 2.661.344 3.208.064.987.406 2.531.328 4.5-.042 1.062 2.91.604 2.844.125-.297-2.156-.172-5.156-.11-5.5z"/><path fill="#292F33" d="M30.54 36c.499-.406-.041-1.161-1.42-1.402-1.163-.203-2.2-.032-2.363.35-.212.493-.05 1.052-.05 1.052h3.833zm-9.117 0c-.499-.406.041-1.161 1.42-1.402 1.163-.203 2.2-.032 2.363.35.212.494.05 1.053.05 1.053L21.423 36z"/><path fill="#4289C1" d="M30.797 14.766C29.578 14 28 14 28 14h-4s-1.578 0-2.797.766c-1.201.754-1.656 3-1.656 3l2.203.688.109 5.546h8.281l.109-5.547 2.203-.688c.001.001-.454-2.245-1.655-2.999z"/><path fill="#AF7E57" d="M24 10.042v4c0 .682.896 1.305 2 1.305s2-.668 2-1.305v-4h-4z"/><path fill="#9B6A49" d="M24 14.042c0 .682.896 1.305 2 1.305s2-.668 2-1.305V11l-4 .019v3.023z"/><path fill="#AF7E57" d="M31 3H21v6c0 2.762 2.238 5 5 5s5-2.237 5-5V3z"/><path fill="#60352A" d="M21 2.5L20.5 5l.5 2c2.333 0 2.85-2.412 2.965-3.488C24.004 4.588 24.779 7 31 7l.5-2-.5-2.5H21z"/><path fill="#915A34" d="M28 12h-4s0 1 2 1 2-1 2-1z"/><circle fill="#662113" cx="23.5" cy="8.5" r=".5"/><circle fill="#662113" cx="28.5" cy="8.5" r=".5"/><path fill="#915A34" d="M25 10h2s0 1-1 1-1-1-1-1z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f469-1f3fb-200d-1f91d-200d-1f468-1f3ff.svg b/public/emoji/1f469-1f3fb-200d-1f91d-200d-1f468-1f3ff.svg
new file mode 100644
index 0000000000000000000000000000000000000000..8d03f30f0fbe0460c25322bb7a94b0a9072324fe
--- /dev/null
+++ b/public/emoji/1f469-1f3fb-200d-1f91d-200d-1f468-1f3ff.svg
@@ -0,0 +1 @@
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#292F33" d="M11 0C9.736 0 8.565.393 7.598 1.061 7.401 1.031 7.205 1 7 1 4.791 1 3 2.791 3 5v6c0 3.866 3.134 7 7 7s7-3.134 7-7V6.001C17 2.687 14.314 0 11 0z"/><path fill="#F7DECE" d="M11.213 34.309c-.052.682 1.849.953 2.129.791.299-.173-.698-.623-.702-.977-.019-1.797.53-1.648.311-3.492.443-1.625.672-2.592.672-3.131 0-1.25-3.312-.766-3.312 0 0 .344.365 1.681.417 3.131-.313 1.659.641 1.615.485 3.678zm-2.448 0c.052.682-1.849.953-2.129.791-.299-.173.698-.623.702-.977.019-1.797-.53-1.648-.311-3.492-.443-1.625-.672-2.592-.672-3.131 0-1.25 3.313-.766 3.313 0 0 .344-.365 1.681-.417 3.131.311 1.659-.642 1.615-.486 3.678z"/><path fill="#EEC2AD" d="M10.311 27.5c0 .206.13.771.246 1.5h2.817c.164-.689.249-1.175.249-1.5 0-1.25-3.312-.766-3.312 0zm-3.957 0c0 .325.085.811.249 1.5H9.42c.116-.729.247-1.294.247-1.5 0-.766-3.313-1.25-3.313 0z"/><path fill="#F7DECE" d="M3.258 26.96c-.258.124-.503-.097-.619-.227-.328-.367-.583-1.246-.282-2.209.303-.973.6-2.384 1.199-4.002.081-.22.499-3.764.805-4.445.197-.437 1.28-.896 1.81-.807.529.089.246.651.105 1.13 0 0-.916 3.953-1.016 4.296-.316 1.079-1.624 2.918-1.565 4.237.031.692.06 1.255-.339 1.246-.049.362-.003.735-.098.781zm14.984-.2c.271.091.487-.159.586-.302.279-.405.422-1.309.004-2.227-.423-.927-.894-2.29-1.69-3.821-.108-.208-.966-3.672-1.355-4.309-.25-.409-1.382-.729-1.897-.574-.513.154-.162.676.037 1.134 0 0 1.403 3.807 1.546 4.135.449 1.031 1.977 2.691 2.082 4.008.056.69.097 1.253.492 1.194.094.353.095.729.195.762z"/><path fill="#292F33" d="M13.945 36c.305 0 .372-.418.089-.629-.379-.285-.88-1.371-1.561-1.371h-1.245c-.229 0-.49 1.209-.41 1.48.102.345.433.52.812.52h2.315zm-7.913 0c-.305 0-.372-.418-.089-.629.379-.285.88-1.371 1.561-1.371h1.245c.229 0 .49 1.209.41 1.48-.102.345-.433.52-.811.52H6.032z"/><path fill="#E75A70" d="M14.354 17.771L16 16c-1.438-1.792-4-2-4-2H8s-2.562.208-4 2l1.646 1.771S6.25 20.688 6.25 21 5 25.75 5 28h10c0-2.25-1.25-6.688-1.25-7s.604-3.229.604-3.229z"/><path fill="#DA2F47" d="M13.75 21c0-.106.07-.512.161-1H6.089c.092.488.161.894.161 1 0 .083-.122.509-.223 1h7.942c-.108-.558-.219-.917-.219-1z"/><path fill="#F7DECE" d="M8 11v4c0 1.104.896 2 2 2s2-.896 2-2v-4H8z"/><path fill="#EEC2AD" d="M12 11l-4 .019V15s2 1 4 0v-4z"/><path fill="#F7DECE" d="M15 3H5v6c0 2.762 2.238 5 5 5s5-2.237 5-5V3z"/><path fill="#292F33" d="M15 2H5L4 7c4 0 4-4 4-4s0 4 8 4l-1-5z"/><path fill="#DF1F32" d="M12 12H8s0 1 2 1 2-1 2-1z"/><circle fill="#662113" cx="7.5" cy="8.5" r=".5"/><circle fill="#662113" cx="12.5" cy="8.5" r=".5"/><path fill="#C1694F" d="M9 10h2s0 1-1 1-1-1-1-1z"/><path fill="#0B0200" d="M26.5 0c-1.187 0-2.282.379-3.181 1.018C21.473 1.114 20 2.629 20 4.5c0 1.542.007 3.484 2.038 4.208C23.036 10.094 24.66 11 26.5 11c3.037 0 5.5-2.462 5.5-5.499C32 2.463 29.537 0 26.5 0z"/><path fill="#7C533E" d="M18.117 26.76c-.271.091-.487-.159-.586-.302-.279-.405-.422-1.309-.004-2.227.423-.927.702-2.072 1.69-3.821.115-.204.494-2.746 1.242-4.354.202-.435 1.495-.684 2.009-.529.513.154-.005.98-.037 1.134-.344 1.651-1.305 4.077-1.45 4.404-.8 1.806-1.965 2.389-2.071 3.706-.055.69-.205 1.286-.6 1.228-.092.352-.094.728-.193.761zm14.595.204c.257.126.504-.094.62-.222.33-.365.591-1.242.296-2.208-.297-.975-.424-2.146-1.174-4.01-.087-.217-.129-2.787-.66-4.479-.143-.457-1.392-.875-1.922-.789-.529.086-.124.972-.112 1.129.124 1.682.758 4.213.859 4.556.556 1.895 1.634 2.627 1.566 3.946-.036.692.034 1.302.433 1.296.048.363 0 .735.094.781z"/><path fill="#AAB8C2" d="M29.555 29.5c.5-2.734.422-6.5.422-6.5h-7.963s-.078 3.766.422 6.5c.063.344.188 3.344-.109 5.5-.066.479 2.886.937 2.844-.125-.078-1.969.264-3.513.328-4.5.035-.547.25-1.875.344-3.208.011-.018.295-.018.306 0 .094 1.333.308 2.661.344 3.208.064.987.406 2.531.328 4.5-.042 1.062 2.91.604 2.844.125-.297-2.156-.172-5.156-.11-5.5z"/><path fill="#292F33" d="M30.54 36c.499-.406-.041-1.161-1.42-1.402-1.163-.203-2.2-.032-2.363.35-.212.493-.05 1.052-.05 1.052h3.833zm-9.117 0c-.499-.406.041-1.161 1.42-1.402 1.163-.203 2.2-.032 2.363.35.212.494.05 1.053.05 1.053L21.423 36z"/><path fill="#4289C1" d="M30.797 14.766C29.578 14 28 14 28 14h-4s-1.578 0-2.797.766c-1.201.754-1.656 3-1.656 3l2.203.688.109 5.546h8.281l.109-5.547 2.203-.688c.001.001-.454-2.245-1.655-2.999z"/><path fill="#7C533E" d="M24 10.042v4c0 .682.896 1.305 2 1.305s2-.668 2-1.305v-4h-4z"/><path fill="#664131" d="M24 14.042c0 .682.896 1.305 2 1.305s2-.668 2-1.305V11l-4 .019v3.023z"/><path fill="#7C533E" d="M31 3H21v6c0 2.762 2.238 5 5 5s5-2.237 5-5V3z"/><path fill="#0B0200" d="M21 2.5L20.5 5l.5 2c2.333 0 2.85-2.412 2.965-3.488C24.004 4.588 24.779 7 31 7l.5-2-.5-2.5H21z"/><path fill="#3D2E24" d="M28 12h-4s0 1 2 1 2-1 2-1z"/><circle cx="23.5" cy="8.5" r=".5"/><circle cx="28.5" cy="8.5" r=".5"/><path fill="#3D2E24" d="M25 10h2s0 1-1 1-1-1-1-1z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f469-1f3fb-200d-1f9af.svg b/public/emoji/1f469-1f3fb-200d-1f9af.svg
new file mode 100644
index 0000000000000000000000000000000000000000..3c58121836258c2765500139e3e3530765c3833e
--- /dev/null
+++ b/public/emoji/1f469-1f3fb-200d-1f9af.svg
@@ -0,0 +1 @@
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#CCD6DD" d="M12.154 19.416l.802.598L3.988 32.04l-.802-.598z"/><path fill="#DD2E44" d="M3.186 31.444L1.093 34.25c-.164.22-.119.535.102.7s.535.119.7-.102l2.092-2.806-.801-.598z"/><path fill="#292F33" d="M11.359 21.319c-.22-.164-.266-.479-.102-.7l1.793-2.405c.164-.22.479-.266.7-.102.22.164.266.479.102.7l-1.793 2.405c-.164.221-.479.267-.7.102z"/><path fill="#292F33" d="M11.76 21.618l-.802-.598c-.22-.164-.266-.479-.102-.7.164-.22.479-.266.7-.102l.802.598c.22.164.266.479.102.7-.164.221-.479.267-.7.102z"/><path fill="#99AAB5" d="M.598 35.751c-.22-.164-.266-.479-.102-.7.164-.22.479-.266.7-.102.22.164.266.479.102.7-.165.22-.48.266-.7.102z"/><path fill="#292F33" d="M20.476 35.056s.061-.144.061-.448c0-.303-.156-.869-.199-.95s-.09-.139-.194-.11c-.079.022-.685.326-1.072.341-.719.027-1.066-.618-1.066-.618s-.399.228-.716.413c-.318.185-.687.462-.959.627-.232.141-.497.208-.771.243s-.497.023-.563.029-.621-.061-.641.488l.004.16s.987.397 2.344.397c1.358 0 1.566-.399 2.444-.399s1.328-.173 1.328-.173z"/><path fill="#292F33" d="M18.726 35.926c-.058-.052-.123-.22-.173-.243s-.57.089-.813.146c-.243.058-.66.156-1.152.156-.491 0-1.126-.144-1.519-.243-.393-.098-.701-.23-.77-.274-.07-.043-.05-.063-.046-.096.004-.033.052-.202.052-.202s.251.132.678.237c.426.104.851.183 1.584.183s1.193-.109 1.574-.211c.475-.128 1.163-.267 1.656-.267.38 0 .648-.112.751-.139.024-.006.046.012.046.037v.649c0 .042-.035.139-.146.162-.112.024-1.664.157-1.722.105zm12.221-5.012s-.072-.142-.307-.343c-.235-.2-.777-.454-.868-.473-.091-.02-.167-.022-.213.078-.035.075-.199.746-.444 1.056-.454.575-1.184.418-1.184.418s-.087.46-.153.828c-.067.368-.096.838-.148 1.158-.044.273-.167.523-.322.758-.154.236-.31.4-.35.456-.039.055-.457.441-.045.82l.127.103s.96-.502 1.857-1.555c.897-1.052.726-1.477 1.306-2.158.581-.682.744-1.146.744-1.146z"/><path fill="#292F33" d="M30.465 32.846c-.078.01-.252-.05-.303-.026-.051.024-.308.5-.424.727-.116.226-.316.615-.64.996s-.856.778-1.192 1.018c-.336.24-.642.391-.721.416-.08.025-.082-.003-.104-.028-.022-.025-.122-.174-.122-.174s.269-.107.631-.369c.363-.261.705-.538 1.189-1.107s.704-.997.876-1.36c.214-.452.562-1.078.887-1.46.251-.295.342-.576.388-.674.011-.023.04-.028.059-.012l.503.429c.033.028.085.118.029.22-.055.103-.977 1.394-1.056 1.404z"/><path fill="#F7DECE" d="M21.541 1.384c-1.593-.627-4.077.182-4.365 2.043-.287 1.848.239 4.747 1.863 4.572 1.702-.184 3.448-.554 4.138-2.307s-.043-3.681-1.636-4.308z"/><path fill="#F7DECE" d="M22.724 6.143c2.318-2.723-3.266-2.458-3.266-2.458-1.057.038-.329 1.799-.827 2.761-.341.665 1.095 1.018 1.095 1.018s.659-.01.694.79v.007c.008.204-.013.445-.108.769-.473 1.601 1.677 2.582 2.149.978.187-.635.114-1.193.02-1.708l-.009-.046c-.143-.766-.321-1.437.252-2.111z"/><path fill="#292F33" d="M23.361 2.026C22.3.784 20.841.269 18.342 1.235c-2.183.844-1.481 2.579-.972 2.282 1.402-.817 2.332-.119 3.046 1.021.208-.56 1.122-.904 1.307-.085.208.921-.647 1.322-.533 1.573.038.084-.043-.076 0 0 .547.96 1.437 1.262 1.437 1.262s.337.132.912-1.001.875-3.028-.178-4.261z"/><path fill="#292F33" d="M22.787 3.332c2.163.467 1.275 3.839 1.487 5.08.261 1.528 1.761 1.582 1.761 1.582s-.247-1.064-.116-2.177c.183-1.543 1.189-2.789.127-4.296-1.356-1.924-4.604-.479-3.259-.189z"/><path fill="#2A6797" d="M18.598 34.203c-1.266.109-1.853-.233-1.721-.416.165-.228.128-.397.13-.536.028-2.441-.472-5.991-.472-5.991 0-.348.003-.813.312-1.562.778-1.883 3.951-7.69 3.951-7.69.548-.958 1.771-1.293 2.728-.744.959.548 1.122 1.405.744 2.729-.715 2.508-2.965 5.602-3.903 7.477.224 2.121-.174 3.853.035 5.857.032.288-.538.767-1.804.876z"/><path fill="#4289C1" d="M29.333 31.931c-.364.553-.97.942-1.598.838-1.269-1.924-4.955-5.321-4.955-5.321-.241-.25-.562-.587-.86-1.341-.748-1.895-2.498-8.277-2.498-8.277-.272-1.07.376-2.16 1.446-2.43 1.07-.272 1.783.232 2.43 1.446 1.227 2.301 1.757 6.09 2.384 8.09 1.87 1.568 2.383 3.603 4.275 5.151-.065.857-.261 1.291-.624 1.844z"/><path fill="#9268CA" d="M25.536 20s0 1-2 1h-4.898c-.415-2 .554-3.818-.102-6.5-.848-3.46 2.406-6.874 3.818-6.42 1.846.594 2.693 2.641 2.932 5.858.238 3.216.25 6.062.25 6.062z"/><path fill="#F7DECE" d="M20.142 11.64c-.783 1.171-2.299 3.804-2.526 3.904-1.206.531-2.551 1.215-3.448 1.307-.65.067-1.256.678-1.51.922-.316.304-.752 1.006-.633 1.369.074.226.57.489.741.254.333-.457.974-.533 1.492-.886 1.039-.71 3.285-.758 4.56-1.7.528-.39 1.583-1.134 3.111-3.722-.591-.426-1.787-1.448-1.787-1.448z"/><path fill="#292F33" d="M14.21 17.018c.477.152.847.624.557 1.114-.29.49.403.185.512-.045.223-.468-.178-1.158-.646-1.314-.468-.156-.746.142-.423.245z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f469-1f3fb-200d-1f9bc.svg b/public/emoji/1f469-1f3fb-200d-1f9bc.svg
new file mode 100644
index 0000000000000000000000000000000000000000..2f240ea5f8bf73b7552c8c9b15c11573ee450aad
--- /dev/null
+++ b/public/emoji/1f469-1f3fb-200d-1f9bc.svg
@@ -0,0 +1 @@
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#292F33" d="M8.22 28.583s.108-.118.211-.409c.104-.291.147-.888.133-.98-.014-.092-.039-.164-.148-.171-.083-.006-.768.08-1.145-.039-.699-.22-.812-.957-.812-.957s-.46.083-.829.152c-.368.069-.818.209-1.134.274-.271.056-.548.03-.823-.03-.275-.06-.485-.147-.55-.165-.066-.017-.575-.27-.782.25l-.051.154s.811.718 2.114 1.182c1.303.464 1.639.152 2.481.452.843.3 1.335.287 1.335.287z"/><path fill="#292F33" d="M6.243 28.821c-.038-.07-.043-.253-.083-.292-.04-.039-.577-.11-.83-.137-.253-.027-.687-.076-1.158-.244-.471-.168-1.032-.523-1.375-.752-.343-.228-.594-.46-.646-.526s-.026-.078-.011-.107.119-.176.119-.176.196.213.569.459.754.467 1.458.717c.703.25 1.182.303 1.583.335.499.039 1.207.141 1.681.309.365.13.66.114.768.123.025.002.04.027.032.051l-.222.623c-.014.041-.081.121-.196.105s-1.651-.419-1.689-.488z"/><path fill="#4289C1" d="M25.097 17.21c.069 1.432-.391 2.922-1.505 3.202-1.066.268-3.056-.151-3.056-.151s-.698.408-.531 1.189c.095.444.257.67.201.712-.05.038-.486-.022-.684-.032-.528-.027-1.1-.211-2.073-.484-.974-.273-1.421-.285-2.481-.577-1.175-.324-1.986-.835-2.33-1.956-.293-.956.277-2.123 1.654-2.63 1.12-.412 4.288.195 5.488.311 1.201.118 5.257-.829 5.317.416z"/><path fill="#4289C1" d="M7.127 27.177c-.646-.143-1.069-.49-1.426-1.025 1.678-1.899 3.787-7.307 3.787-7.307.695-1.744 1.62-2.914 3.252-2.851 2.317.089 5.748.535 5.748.535 2.276.329.671.789 1.305 1.693.635.903-1.294 1.99-2.786 1.891-2.602-.173-3.877-.453-5.522.846-.8 2.306-2.071 4.087-2.844 6.406-.489.079-.868-.045-1.514-.188z"/><path fill="#F7DECE" d="M24.879.905c-1.341-.8-3.695-.439-4.23 1.193-.531 1.621-.487 4.307 1 4.389 1.559.086 3.185.011 4.064-1.464.88-1.474.507-3.318-.834-4.118z"/><path fill="#F7DECE" d="M25.24 5.363c2.488-2.108-2.576-2.694-2.576-2.694-.957-.122-.563 1.57-1.152 2.362-.405.548.834 1.078.834 1.078s.594.089.508.813l-.001.007c-.023.184-.078.399-.211.676-.662 1.37 1.127 2.571 1.789 1.198.262-.544.279-1.056.27-1.534l-.001-.042c-.015-.712-.076-1.343.54-1.864z"/><path fill="#292F33" d="M26.422 1.752C25.651.478 24.415-.201 22.023.298c-2.089.436-1.714 2.102-1.212 1.91 1.382-.528 2.116.237 2.589 1.369.27-.473 1.143-.648 1.189.117.051.859-.778 1.094-.712 1.337.022.082-.028-.075 0 0 .35.945 1.106 1.348 1.106 1.348s.283.169.969-.766c.684-.934 1.235-2.595.47-3.861z"/><path fill="#292F33" d="M25.843 2.713c1.875.677.661 2.73.665 3.791.004 1.306 1.158 1.604 1.158 1.604s-.331-.74-.045-1.649c.397-1.26 1.797-2.079 1.069-3.475-.927-1.783-4.012-.692-2.847-.271z"/><path fill="#9268CA" d="M25.778 16.257c-.214 1.304-.659 2.456-.696 3.032-.02.32-.939-.237-1.604-.511-1.782-.735-3.317-1.825-3.317-1.825.398-1.193.696-3.032.149-5.268-.477-1.953 3.106-5.252 4.309-4.634 1.573.807 2.382 1.782 1.904 4.684l-.745 4.522z"/><path fill="#66757F" d="M27.811 10.609l.425-5.242c.022-.274.265-.48.539-.458.274.022.48.265.458.539l-.425 5.242c-.022.274-.265.48-.539.458-.274-.022-.48-.265-.458-.539z"/><path fill="#292F33" d="M16 21v2s-2 0-2 2v3c0 1 1 2 2 2h10c1 0 2-1 2-2v-5c0-1-1-2-2-2H16z"/><path fill="#292F33" d="M22.956 22.559l-9.848-1.736c-.985-.174-.985-.174-.811-1.158.096-.542.617-.907 1.158-.811l9.848 1.736c.542.096.907.617.811 1.158-.173.985-.173.985-1.158.811z"/><path fill="#292F33" d="M25.238 19.023c-.193.922-.557 1.827-2.094 1.537-1.537-.29-1.782 1.225-.824 1.493.958.267 3.252.646 3.921-.446.668-1.092.78-2.139.713-2.606s-1.572-.66-1.716.022z"/><path fill="#DD2E44" d="M23.442 22.896l-10.833-1.91c-.271-.048-.453-.308-.406-.579.048-.271.308-.453.579-.406l10.833 1.91c.271.048.453.308.406.579-.048.271-.309.454-.579.406z"/><path fill="#292F33" d="M28.932 9.642l-1.736 9.848c-.174.985-.174.985-1.158.811-.542-.096-.907-.617-.811-1.158l1.736-9.848c.096-.542.617-.907 1.158-.811.984.173.984.173.811 1.158zm.992-7.49l-.713 4.025c-.087.493-.168 1.007-1.153.834-.542-.096-.882-.715-.763-1.398l.639-3.609c.163-.579.626-1.004 1.167-.909.985.173.91.564.823 1.057z"/><path fill="#DD2E44" d="M29.406 9.224l-1.91 10.833c-.048.271-.308.453-.579.406-.271-.048-.453-.308-.406-.579l1.91-10.833c.048-.271.308-.453.579-.406.272.048.454.308.406.579zm1.243-7.455l-.91 5.18c-.048.271-.308.453-.579.406-.271-.048-.453-.308-.406-.579l.91-5.18c.048-.271.308-.453.579-.406.271.047.454.308.406.579z"/><path fill="#292F33" d="M25.494 18.441l-7.466-1.316c-.747-.132-.747-.132-.617-.869.071-.405.466-.678.877-.606l7.466 1.316c.411.072.688.463.617.869-.13.738-.13.738-.877.606z"/><path fill="#DD2E44" d="M23.123 21.824c.993.175 2.954.521 3.475-2.433s1.506-2.781.985.174-2.237 3.667-4.634 3.245c-1.969-.348-1.796-1.333.174-.986zm-10.33-1.821c1.971.34 2.277 1.422.308 1.07-.873-.156-.984.212-1.251.958-.252.702-.611 1.757-1.144 3.23-.391 1.082-1.279.603-.95-.342.551-1.588 1.061-2.968 1.392-3.847.338-.895.613-1.247 1.645-1.069z"/><path fill="#DD2E44" d="M10.62 24.01c-.258-.094-.547.04-.641.299l-2.052 5.638c-.094.258.04.547.299.641.258.094.547-.04.641-.299l2.052-5.638c.094-.259-.041-.547-.299-.641z"/><path fill="#66757F" d="M8.226 30.588L4.467 29.22c-.258-.094-.393-.382-.299-.641.094-.258.382-.393.641-.299l3.759 1.368c.258.094.393.382.299.641-.094.258-.383.393-.641.299z"/><path fill="#DD2E44" d="M13.844 30.862l2.95-2.95c.194-.194.194-.513 0-.707-.194-.194-.513-.194-.707 0l-2.95 2.95c-.194.194-.194.513 0 .707.194.194.512.194.707 0zM32 34c-.55 0-1-.45-1-1v-3c0-.55.45-1 1-1s1 .45 1 1v3c0 .55-.45 1-1 1z"/><path fill="#DD2E44" d="M13.5 34c-.55 0-1-.45-1-1v-3c0-.55.45-1 1-1s1 .45 1 1v3c0 .55-.45 1-1 1zm12.983-6.005h2c.275 0 .5-.225.5-.5s-.225-.5-.5-.5h-2c-.275 0-.5.225-.5.5s.225.5.5.5z"/><path fill="#DD2E44" d="M31.123 30.803l-2.95-2.95c-.194-.194-.194-.513 0-.707.194-.194.513-.194.707 0l2.95 2.95c.194.194.194.513 0 .707-.194.195-.512.195-.707 0z"/><path fill="#292F33" d="M11.672 16.127c.742.318 2.05.936 2.339 1.047 0 0 .134-.891.49-.891 0 0 .134-.468.223-.668s.356-.134.379.245c.022.379-.089.512-.089.512s.334.423.134 1.002c0 0 .446.067.356.624-.089.557.067.98-.334 1.092-.401.111-1.916.535-1.938-.067-.022-.601-.401-1.069-1.136-1.515-.735-.446-1.27-.936-1.181-1.181.088-.244.133-.467.757-.2z"/><path fill="#DD2E44" d="M26.5 25h-11c-.275 0-.5-.225-.5-.5s.225-.5.5-.5h11c.275 0 .5.225.5.5s-.225.5-.5.5z"/><path fill="#F7DECE" d="M22.691 10.276c-.579 1.455-.982 3.884-1.237 3.894-1.473.062-3.222.614-4.149.559-.672-.04-1.306-.167-1.651-.05-.552.187-1.159.289-1.351.632-.195.348.171.657 1.035.656.635 0 1.045.208 1.674.06.896-.21 4.492.479 5.665-.345.554-.389 1.272-1.95 2.356-4.742-1.084-.476-2.342-.664-2.342-.664z"/><circle fill="#66757F" cx="21.5" cy="31.5" r="4.5"/><circle fill="#66757F" cx="13.5" cy="33.5" r="2.5"/><circle fill="#66757F" cx="32" cy="34" r="2"/><circle fill="#CCD6DD" cx="21.5" cy="31.5" r="2.5"/><circle fill="#CCD6DD" cx="13.5" cy="33.5" r="1.5"/><circle fill="#292F33" cx="32" cy="34" r="1"/><g fill="#292F33"><circle cx="22" cy="30.634" r=".5"/><circle cx="21" cy="32.366" r=".5"/><circle cx="20.634" cy="31" r=".5"/><circle cx="22.366" cy="32" r=".5"/></g><circle fill="#292F33" cx="13.5" cy="33.5" r=".75"/><circle fill="#66757F" cx="32" cy="34" r=".5"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f469-1f3fb-200d-1f9bd.svg b/public/emoji/1f469-1f3fb-200d-1f9bd.svg
new file mode 100644
index 0000000000000000000000000000000000000000..68f49e076722f74fe6ada9e78d0d450123613d4d
--- /dev/null
+++ b/public/emoji/1f469-1f3fb-200d-1f9bd.svg
@@ -0,0 +1 @@
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#292F33" d="M7.981 29.995s.097-.127.175-.426.069-.897.047-.988-.053-.16-.163-.158c-.083.001-.759.146-1.144.061-.716-.158-.892-.883-.892-.883s-.452.123-.812.223c-.361.101-.796.279-1.106.372-.265.079-.543.078-.823.041s-.496-.105-.563-.116c-.067-.011-.597-.219-.757.317l-.037.159s.871.645 2.209.993 1.646.009 2.511.234c.866.226 1.355.171 1.355.171z"/><path fill="#292F33" d="M6.032 30.404c-.044-.066-.065-.248-.109-.284-.043-.036-.585-.059-.839-.064-.254-.005-.691-.016-1.175-.142-.484-.126-1.074-.431-1.436-.629s-.632-.407-.689-.468c-.057-.061-.033-.075-.02-.106.013-.031.103-.186.103-.186s.214.195.607.407.792.399 1.514.587 1.204.199 1.606.195c.501-.004 1.215.035 1.701.162.375.098.668.056.776.056.025 0 .043.023.036.048l-.167.64c-.011.042-.07.128-.186.122-.114-.005-1.678-.272-1.722-.338z"/><path fill="#4289C1" d="M23.802 17.195c.193 1.421-.135 2.945-1.22 3.321-1.039.36-3.058.116-3.058.116s-.66.468-.426 1.231c.133.434.314.645.262.692-.046.042-.486.02-.684.027-.528.02-1.114-.114-2.108-.301s-1.44-.16-2.522-.359c-1.198-.22-2.051-.659-2.491-1.745-.375-.927.091-2.139 1.419-2.764 1.08-.508 4.289-.179 5.495-.168s5.166-1.285 5.333-.05z"/><path fill="#4289C1" d="M6.77 28.689c-.656-.086-1.108-.395-1.51-.897 1.506-2.038 3.136-7.609 3.136-7.609.541-1.798 1.36-3.044 2.992-3.124 2.316-.113 5.772.032 5.772.032 2.296.13.738.727 1.448 1.573.712.845-1.115 2.095-2.611 2.126-2.607.054-3.902-.113-5.428 1.324-.596 2.367-1.706 4.252-2.275 6.63-.48.122-.868.031-1.524-.055z"/><path fill="#F7DECE" d="M21.842.878c-1.405-.68-3.719-.115-4.11 1.557-.388 1.661-.109 4.333 1.379 4.285 1.56-.05 3.174-.266 3.921-1.812.748-1.545.215-3.35-1.19-4.03z"/><path fill="#F7DECE" d="M22.59 5.288c2.295-2.316-2.801-2.46-2.801-2.46-.964-.038-.424 1.613-.942 2.453-.356.582.925 1.001.925 1.001s.6.036.577.766v.007c-.007.186-.043.404-.151.691-.54 1.423 1.347 2.463 1.887 1.037.213-.564.186-1.077.136-1.552l-.006-.041c-.077-.707-.193-1.329.375-1.902z"/><path fill="#292F33" d="M23.453 1.588C22.574.386 21.283-.183 18.944.523c-2.044.617-1.525 2.243-1.042 2.008 1.331-.647 2.128.052 2.699 1.138.228-.495 1.083-.745 1.194.013.126.852-.68 1.158-.593 1.394.029.079-.034-.072 0 0 .431.911 1.22 1.246 1.22 1.246s.297.144.898-.847 1.005-2.693.133-3.887z"/><path fill="#292F33" d="M22.934 2.681c1.968.317 1.157 2.559 1.358 3.601.247 1.283 1.436 1.361 1.436 1.361s-.463-.666-.35-1.611c.156-1.312 1.379-2.377.405-3.613-1.244-1.58-4.072.065-2.849.262z"/><path fill="#9268CA" d="M24.353 16.862c.015 1.321-.057 1.777.007 2.351.036.319-1.252-.021-1.954-.176-1.883-.415-3.583-1.221-3.583-1.221.184-1.244.869-3.07-.624-4.823-.455-.535-.375-1.854.369-3.041.828-1.321 1.751-2.535 2.926-2.661.812-.088 1.597.328 2.15 1.2 2.206 1.83.762 1.78.777 3.121.024 2.035-.083 3.929-.068 5.25z"/><g fill="#DD2E44"><path d="M13.465 27.092l10.824.95c.274.024.518-.181.542-.455.024-.274-.181-.518-.455-.542l-10.824-.95c-.274-.024-.518.181-.542.455-.024.274.181.518.455.542z"/><path d="M24.288 28.041c-.274-.024-.478-.268-.455-.542l.436-4.981c.024-.274.268-.478.542-.455.274.024.478.268.455.542l-.436 4.981c-.024.275-.268.479-.542.455zm-10.738-7.58c-.274-.024-.518.181-.542.455l-1.015 11.597c-.024.274.181.518.455.542.274.024.518-.181.542-.455l1.015-11.597c.023-.274-.181-.518-.455-.542z"/></g><path fill="#292F33" d="M23.524 20.592c1.431-.206 2.834-.148 2.345.544-.489.692-1.575 1.905-3.418 1.707-1.844-.198.185-2.123 1.073-2.251z"/><path fill="#292F33" d="M22.45 22.843l-9.962-.872c-.996-.087-.996-.087-.909-1.083.048-.548.535-.957 1.083-.909l9.962.872c.548.048.957.535.909 1.083-.087.996-.087.996-1.083.909z"/><path fill="#DD2E44" d="M22.964 23.136l-10.958-.959c-.274-.024-.478-.268-.455-.542.024-.274.268-.478.542-.455l10.958.959c.274.024.478.268.455.542-.025.275-.268.479-.542.455z"/><path fill="#292F33" d="M27.278 9.454l-.872 9.962c-.087.996-.087.996-1.083.909-.548-.048-.957-.535-.909-1.083l.872-9.962c.048-.548.535-.957 1.083-.909.996.087.996.087.909 1.083z"/><path fill="#DD2E44" d="M27.714 8.996l-.959 10.958c-.024.274-.268.478-.542.455-.274-.024-.478-.268-.455-.542l.959-10.958c.024-.274.268-.478.542-.455.274.025.479.268.455.542z"/><path fill="#292F33" d="M24.62 18.519l-7.552-.661c-.755-.066-.755-.066-.69-.812.036-.41.405-.716.82-.68l7.552.661c.415.036.726.402.69.812-.064.746-.064.746-.82.68z"/><path fill="#DD2E44" d="M22.553 22.096c1.004.088 2.989.261 3.25-2.727s1.258-2.901.996.087-1.909 3.848-4.333 3.636c-1.993-.174-1.906-1.17.087-.996zm-10.449-.914c1.993.166 2.392 1.218.4 1.039-.883-.079-.962.297-1.163 1.063-.189.721-.456 1.803-.858 3.318-.295 1.112-1.221.712-.977-.257.411-1.63.798-3.05 1.052-3.953.258-.922.502-1.297 1.546-1.21z"/><g fill="#66757F"><circle cx="24.5" cy="27.5" r="1.5"/><path d="M31.245 30.817l-6.062-3.5 3.5-6.062-.866-.5-3.5 6.062-6.062-3.5-.5.866 6.062 3.5-3.5 6.062.866.5 3.5-6.062 6.062 3.5z"/><path d="M26.924 34.615l-1.812-6.761 6.762-1.812-.259-.966-6.761 1.812-1.812-6.762-.966.259 1.812 6.761-6.762 1.812.259.966 6.761-1.812 1.812 6.762z"/></g><path fill="#292F33" d="M24.5 19c-4.694 0-8.5 3.806-8.5 8.5s3.806 8.5 8.5 8.5 8.5-3.806 8.5-8.5-3.806-8.5-8.5-8.5zm0 15c-3.59 0-6.5-2.91-6.5-6.5s2.91-6.5 6.5-6.5 6.5 2.91 6.5 6.5-2.91 6.5-6.5 6.5z"/><path fill="#66757F" d="M24.5 20c-4.142 0-7.5 3.358-7.5 7.5s3.358 7.5 7.5 7.5 7.5-3.358 7.5-7.5-3.358-7.5-7.5-7.5zm0 14c-3.59 0-6.5-2.91-6.5-6.5s2.91-6.5 6.5-6.5 6.5 2.91 6.5 6.5-2.91 6.5-6.5 6.5zm-9.152-.433l-2.165-1.25 1.25-2.165-.866-.5-1.25 2.165-2.165-1.25-.5.866 2.165 1.25-1.25 2.165.866.5 1.25-2.165 2.165 1.25z"/><path fill="#292F33" d="M12.5 29C10.567 29 9 30.567 9 32.5s1.567 3.5 3.5 3.5 3.5-1.567 3.5-3.5-1.567-3.5-3.5-3.5zm0 6c-1.381 0-2.5-1.119-2.5-2.5s1.119-2.5 2.5-2.5 2.5 1.119 2.5 2.5-1.119 2.5-2.5 2.5z"/><path fill="#DD2E44" d="M10.288 25.363c-.266-.071-.541.088-.612.354l-1.553 5.796c-.071.266.088.541.354.612.266.071.541-.088.612-.354l1.553-5.796c.07-.265-.089-.541-.354-.612z"/><path fill="#66757F" d="M8.476 32.125L4.612 31.09c-.266-.071-.425-.347-.354-.612.071-.266.347-.425.612-.354l3.864 1.035c.266.071.426.346.354.612-.071.266-.346.425-.612.354z"/><path fill="#DD2E44" d="M30.103 9.969l-2.954-.521c-.271-.048-.453-.308-.406-.579.048-.271.308-.453.579-.406l2.954.521c.271.048.453.308.406.579-.048.272-.308.454-.579.406z"/><path fill="#292F33" d="M31.088 10.143l-2.615-.467c-.271-.048-.26-.274-.213-.545.048-.271.116-.487.386-.44l2.615.467c.271.048.453.308.406.579-.048.271-.308.454-.579.406z"/><path fill="#F7DECE" d="M22.657 10.9c1.111 1.023 3.158 2.426 3.128 2.68-.174 1.464.402 3.203.2 4.11-.147.657-.805 1.117-.745 1.476.667.012.407 1.163.677 1.687.284.551 1.174-.056 1.311-.909.101-.627-.068-1.112-.113-1.757-.064-.918 1.207-3.625.39-5.457-.276-.618-1.167-1.842-3.212-3.751-.608.439-1.636 1.921-1.636 1.921z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f469-1f3fc-200d-1f91d-200d-1f468-1f3fb.svg b/public/emoji/1f469-1f3fc-200d-1f91d-200d-1f468-1f3fb.svg
new file mode 100644
index 0000000000000000000000000000000000000000..53e58734c2a17c7fffeeef7c7a97bb20193bf872
--- /dev/null
+++ b/public/emoji/1f469-1f3fc-200d-1f91d-200d-1f468-1f3fb.svg
@@ -0,0 +1 @@
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#FFE51E" d="M11 0C9.736 0 8.565.393 7.598 1.061 7.401 1.031 7.205 1 7 1 4.791 1 3 2.791 3 5v6c0 3.866 3.134 7 7 7s7-3.134 7-7V6.001C17 2.687 14.314 0 11 0z"/><path fill="#F3D2A2" d="M11.213 34.309c-.052.682 1.849.953 2.129.791.299-.173-.698-.623-.702-.977-.019-1.797.53-1.648.311-3.492.443-1.625.672-2.592.672-3.131 0-1.25-3.312-.766-3.312 0 0 .344.365 1.681.417 3.131-.313 1.659.641 1.615.485 3.678zm-2.448 0c.052.682-1.849.953-2.129.791-.299-.173.698-.623.702-.977.019-1.797-.53-1.648-.311-3.492-.443-1.625-.672-2.592-.672-3.131 0-1.25 3.313-.766 3.313 0 0 .344-.365 1.681-.417 3.131.311 1.659-.642 1.615-.486 3.678z"/><path fill="#E2C196" d="M10.311 27.5c0 .206.13.771.246 1.5h2.817c.164-.689.249-1.175.249-1.5 0-1.25-3.312-.766-3.312 0zm-3.957 0c0 .325.085.811.249 1.5H9.42c.116-.729.247-1.294.247-1.5 0-.766-3.313-1.25-3.313 0z"/><path fill="#F3D2A2" d="M3.258 26.96c-.258.124-.503-.097-.619-.227-.328-.367-.583-1.246-.282-2.209.303-.973.6-2.384 1.199-4.002.081-.22.499-3.764.805-4.445.197-.437 1.28-.896 1.81-.807.529.089.246.651.105 1.13 0 0-.916 3.953-1.016 4.296-.316 1.079-1.624 2.918-1.565 4.237.031.692.06 1.255-.339 1.246-.049.362-.003.735-.098.781zm14.984-.2c.271.091.487-.159.586-.302.279-.405.422-1.309.004-2.227-.423-.927-.894-2.29-1.69-3.821-.108-.208-.966-3.672-1.355-4.309-.25-.409-1.382-.729-1.897-.574-.513.154-.162.676.037 1.134 0 0 1.403 3.807 1.546 4.135.449 1.031 1.977 2.691 2.082 4.008.056.69.097 1.253.492 1.194.094.353.095.729.195.762z"/><path fill="#292F33" d="M13.945 36c.305 0 .372-.418.089-.629-.379-.285-.88-1.371-1.561-1.371h-1.245c-.229 0-.49 1.209-.41 1.48.102.345.433.52.812.52h2.315zm-7.913 0c-.305 0-.372-.418-.089-.629.379-.285.88-1.371 1.561-1.371h1.245c.229 0 .49 1.209.41 1.48-.102.345-.433.52-.811.52H6.032z"/><path fill="#E75A70" d="M14.354 17.771L16 16c-1.438-1.792-4-2-4-2H8s-2.562.208-4 2l1.646 1.771S6.25 20.688 6.25 21 5 25.75 5 28h10c0-2.25-1.25-6.688-1.25-7s.604-3.229.604-3.229z"/><path fill="#DA2F47" d="M13.75 21c0-.106.07-.512.161-1H6.089c.092.488.161.894.161 1 0 .083-.122.509-.223 1h7.942c-.108-.558-.219-.917-.219-1z"/><path fill="#F3D2A2" d="M8 11v4c0 1.104.896 2 2 2s2-.896 2-2v-4H8z"/><path fill="#E2C196" d="M12 11l-4 .019V15s2 1 4 0v-4z"/><path fill="#F3D2A2" d="M15 3H5v6c0 2.762 2.238 5 5 5s5-2.237 5-5V3z"/><path fill="#FFE51E" d="M15 2H5L4 7c4 0 4-4 4-4s0 4 8 4l-1-5z"/><path fill="#DF1F32" d="M12 12H8s0 1 2 1 2-1 2-1z"/><circle fill="#662113" cx="7.5" cy="8.5" r=".5"/><circle fill="#662113" cx="12.5" cy="8.5" r=".5"/><path fill="#C1694F" d="M9 10h2s0 1-1 1-1-1-1-1z"/><path fill="#292F33" d="M26.5 0c-1.187 0-2.282.379-3.181 1.018C21.473 1.114 20 2.629 20 4.5c0 1.542.007 3.484 2.038 4.208C23.036 10.094 24.66 11 26.5 11c3.037 0 5.5-2.462 5.5-5.499C32 2.463 29.537 0 26.5 0z"/><path fill="#F7DECE" d="M18.117 26.76c-.271.091-.487-.159-.586-.302-.279-.405-.422-1.309-.004-2.227.423-.927.702-2.072 1.69-3.821.115-.204.494-2.746 1.242-4.354.202-.435 1.495-.684 2.009-.529.513.154-.005.98-.037 1.134-.344 1.651-1.305 4.077-1.45 4.404-.8 1.806-1.965 2.389-2.071 3.706-.055.69-.205 1.286-.6 1.228-.092.352-.094.728-.193.761zm14.595.204c.257.126.504-.094.62-.222.33-.365.591-1.242.296-2.208-.297-.975-.424-2.146-1.174-4.01-.087-.217-.129-2.787-.66-4.479-.143-.457-1.392-.875-1.922-.789-.529.086-.124.972-.112 1.129.124 1.682.758 4.213.859 4.556.556 1.895 1.634 2.627 1.566 3.946-.036.692.034 1.302.433 1.296.048.363 0 .735.094.781z"/><path fill="#AAB8C2" d="M29.555 29.5c.5-2.734.422-6.5.422-6.5h-7.963s-.078 3.766.422 6.5c.063.344.188 3.344-.109 5.5-.066.479 2.886.937 2.844-.125-.078-1.969.264-3.513.328-4.5.035-.547.25-1.875.344-3.208.011-.018.295-.018.306 0 .094 1.333.308 2.661.344 3.208.064.987.406 2.531.328 4.5-.042 1.062 2.91.604 2.844.125-.297-2.156-.172-5.156-.11-5.5z"/><path fill="#292F33" d="M30.54 36c.499-.406-.041-1.161-1.42-1.402-1.163-.203-2.2-.032-2.363.35-.212.493-.05 1.052-.05 1.052h3.833zm-9.117 0c-.499-.406.041-1.161 1.42-1.402 1.163-.203 2.2-.032 2.363.35.212.494.05 1.053.05 1.053L21.423 36z"/><path fill="#4289C1" d="M30.797 14.766C29.578 14 28 14 28 14h-4s-1.578 0-2.797.766c-1.201.754-1.656 3-1.656 3l2.203.688.109 5.546h8.281l.109-5.547 2.203-.688c.001.001-.454-2.245-1.655-2.999z"/><path fill="#F7DECE" d="M24 10.042v4c0 .682.896 1.305 2 1.305s2-.668 2-1.305v-4h-4z"/><path fill="#EEC2AD" d="M24 14.042c0 .682.896 1.305 2 1.305s2-.668 2-1.305V11l-4 .019v3.023z"/><path fill="#F7DECE" d="M31 3H21v6c0 2.762 2.238 5 5 5s5-2.237 5-5V3z"/><path fill="#292F33" d="M21 2.5L20.5 5l.5 2c2.333 0 2.85-2.412 2.965-3.488C24.004 4.588 24.779 7 31 7l.5-2-.5-2.5H21z"/><path fill="#C1694F" d="M28 12h-4s0 1 2 1 2-1 2-1z"/><circle fill="#662113" cx="23.5" cy="8.5" r=".5"/><circle fill="#662113" cx="28.5" cy="8.5" r=".5"/><path fill="#C1694F" d="M25 10h2s0 1-1 1-1-1-1-1z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f469-1f3fc-200d-1f91d-200d-1f468-1f3fd.svg b/public/emoji/1f469-1f3fc-200d-1f91d-200d-1f468-1f3fd.svg
new file mode 100644
index 0000000000000000000000000000000000000000..16f79530790c35bc8027cdaaa2ab1106988fd00a
--- /dev/null
+++ b/public/emoji/1f469-1f3fc-200d-1f91d-200d-1f468-1f3fd.svg
@@ -0,0 +1 @@
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#FFE51E" d="M11 0C9.736 0 8.565.393 7.598 1.061 7.401 1.031 7.205 1 7 1 4.791 1 3 2.791 3 5v6c0 3.866 3.134 7 7 7s7-3.134 7-7V6.001C17 2.687 14.314 0 11 0z"/><path fill="#F3D2A2" d="M11.213 34.309c-.052.682 1.849.953 2.129.791.299-.173-.698-.623-.702-.977-.019-1.797.53-1.648.311-3.492.443-1.625.672-2.592.672-3.131 0-1.25-3.312-.766-3.312 0 0 .344.365 1.681.417 3.131-.313 1.659.641 1.615.485 3.678zm-2.448 0c.052.682-1.849.953-2.129.791-.299-.173.698-.623.702-.977.019-1.797-.53-1.648-.311-3.492-.443-1.625-.672-2.592-.672-3.131 0-1.25 3.313-.766 3.313 0 0 .344-.365 1.681-.417 3.131.311 1.659-.642 1.615-.486 3.678z"/><path fill="#E2C196" d="M10.311 27.5c0 .206.13.771.246 1.5h2.817c.164-.689.249-1.175.249-1.5 0-1.25-3.312-.766-3.312 0zm-3.957 0c0 .325.085.811.249 1.5H9.42c.116-.729.247-1.294.247-1.5 0-.766-3.313-1.25-3.313 0z"/><path fill="#F3D2A2" d="M3.258 26.96c-.258.124-.503-.097-.619-.227-.328-.367-.583-1.246-.282-2.209.303-.973.6-2.384 1.199-4.002.081-.22.499-3.764.805-4.445.197-.437 1.28-.896 1.81-.807.529.089.246.651.105 1.13 0 0-.916 3.953-1.016 4.296-.316 1.079-1.624 2.918-1.565 4.237.031.692.06 1.255-.339 1.246-.049.362-.003.735-.098.781zm14.984-.2c.271.091.487-.159.586-.302.279-.405.422-1.309.004-2.227-.423-.927-.894-2.29-1.69-3.821-.108-.208-.966-3.672-1.355-4.309-.25-.409-1.382-.729-1.897-.574-.513.154-.162.676.037 1.134 0 0 1.403 3.807 1.546 4.135.449 1.031 1.977 2.691 2.082 4.008.056.69.097 1.253.492 1.194.094.353.095.729.195.762z"/><path fill="#292F33" d="M13.945 36c.305 0 .372-.418.089-.629-.379-.285-.88-1.371-1.561-1.371h-1.245c-.229 0-.49 1.209-.41 1.48.102.345.433.52.812.52h2.315zm-7.913 0c-.305 0-.372-.418-.089-.629.379-.285.88-1.371 1.561-1.371h1.245c.229 0 .49 1.209.41 1.48-.102.345-.433.52-.811.52H6.032z"/><path fill="#E75A70" d="M14.354 17.771L16 16c-1.438-1.792-4-2-4-2H8s-2.562.208-4 2l1.646 1.771S6.25 20.688 6.25 21 5 25.75 5 28h10c0-2.25-1.25-6.688-1.25-7s.604-3.229.604-3.229z"/><path fill="#DA2F47" d="M13.75 21c0-.106.07-.512.161-1H6.089c.092.488.161.894.161 1 0 .083-.122.509-.223 1h7.942c-.108-.558-.219-.917-.219-1z"/><path fill="#F3D2A2" d="M8 11v4c0 1.104.896 2 2 2s2-.896 2-2v-4H8z"/><path fill="#E2C196" d="M12 11l-4 .019V15s2 1 4 0v-4z"/><path fill="#F3D2A2" d="M15 3H5v6c0 2.762 2.238 5 5 5s5-2.237 5-5V3z"/><path fill="#FFE51E" d="M15 2H5L4 7c4 0 4-4 4-4s0 4 8 4l-1-5z"/><path fill="#DF1F32" d="M12 12H8s0 1 2 1 2-1 2-1z"/><circle fill="#662113" cx="7.5" cy="8.5" r=".5"/><circle fill="#662113" cx="12.5" cy="8.5" r=".5"/><path fill="#C1694F" d="M9 10h2s0 1-1 1-1-1-1-1z"/><path fill="#963B22" d="M26.5 0c-1.187 0-2.282.379-3.181 1.018C21.473 1.114 20 2.629 20 4.5c0 1.542.007 3.484 2.038 4.208C23.036 10.094 24.66 11 26.5 11c3.037 0 5.5-2.462 5.5-5.499C32 2.463 29.537 0 26.5 0z"/><path fill="#D4AB88" d="M18.117 26.76c-.271.091-.487-.159-.586-.302-.279-.405-.422-1.309-.004-2.227.423-.927.702-2.072 1.69-3.821.115-.204.494-2.746 1.242-4.354.202-.435 1.495-.684 2.009-.529.513.154-.005.98-.037 1.134-.344 1.651-1.305 4.077-1.45 4.404-.8 1.806-1.965 2.389-2.071 3.706-.055.69-.205 1.286-.6 1.228-.092.352-.094.728-.193.761zm14.595.204c.257.126.504-.094.62-.222.33-.365.591-1.242.296-2.208-.297-.975-.424-2.146-1.174-4.01-.087-.217-.129-2.787-.66-4.479-.143-.457-1.392-.875-1.922-.789-.529.086-.124.972-.112 1.129.124 1.682.758 4.213.859 4.556.556 1.895 1.634 2.627 1.566 3.946-.036.692.034 1.302.433 1.296.048.363 0 .735.094.781z"/><path fill="#AAB8C2" d="M29.555 29.5c.5-2.734.422-6.5.422-6.5h-7.963s-.078 3.766.422 6.5c.063.344.188 3.344-.109 5.5-.066.479 2.886.937 2.844-.125-.078-1.969.264-3.513.328-4.5.035-.547.25-1.875.344-3.208.011-.018.295-.018.306 0 .094 1.333.308 2.661.344 3.208.064.987.406 2.531.328 4.5-.042 1.062 2.91.604 2.844.125-.297-2.156-.172-5.156-.11-5.5z"/><path fill="#292F33" d="M30.54 36c.499-.406-.041-1.161-1.42-1.402-1.163-.203-2.2-.032-2.363.35-.212.493-.05 1.052-.05 1.052h3.833zm-9.117 0c-.499-.406.041-1.161 1.42-1.402 1.163-.203 2.2-.032 2.363.35.212.494.05 1.053.05 1.053L21.423 36z"/><path fill="#4289C1" d="M30.797 14.766C29.578 14 28 14 28 14h-4s-1.578 0-2.797.766c-1.201.754-1.656 3-1.656 3l2.203.688.109 5.546h8.281l.109-5.547 2.203-.688c.001.001-.454-2.245-1.655-2.999z"/><path fill="#D4AB88" d="M24 10.042v4c0 .682.896 1.305 2 1.305s2-.668 2-1.305v-4h-4z"/><path fill="#CC9B7A" d="M24 14.042c0 .682.896 1.305 2 1.305s2-.668 2-1.305V11l-4 .019v3.023z"/><path fill="#D4AB88" d="M31 3H21v6c0 2.762 2.238 5 5 5s5-2.237 5-5V3z"/><path fill="#963B22" d="M21 2.5L20.5 5l.5 2c2.333 0 2.85-2.412 2.965-3.488C24.004 4.588 24.779 7 31 7l.5-2-.5-2.5H21z"/><path fill="#C1694F" d="M28 12h-4s0 1 2 1 2-1 2-1z"/><circle fill="#662113" cx="23.5" cy="8.5" r=".5"/><circle fill="#662113" cx="28.5" cy="8.5" r=".5"/><path fill="#C1694F" d="M25 10h2s0 1-1 1-1-1-1-1z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f469-1f3fc-200d-1f91d-200d-1f468-1f3fe.svg b/public/emoji/1f469-1f3fc-200d-1f91d-200d-1f468-1f3fe.svg
new file mode 100644
index 0000000000000000000000000000000000000000..47dd9158e939d77447ac2b5ab09a7f4bb07559f3
--- /dev/null
+++ b/public/emoji/1f469-1f3fc-200d-1f91d-200d-1f468-1f3fe.svg
@@ -0,0 +1 @@
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#FFE51E" d="M11 0C9.736 0 8.565.393 7.598 1.061 7.401 1.031 7.205 1 7 1 4.791 1 3 2.791 3 5v6c0 3.866 3.134 7 7 7s7-3.134 7-7V6.001C17 2.687 14.314 0 11 0z"/><path fill="#F3D2A2" d="M11.213 34.309c-.052.682 1.849.953 2.129.791.299-.173-.698-.623-.702-.977-.019-1.797.53-1.648.311-3.492.443-1.625.672-2.592.672-3.131 0-1.25-3.312-.766-3.312 0 0 .344.365 1.681.417 3.131-.313 1.659.641 1.615.485 3.678zm-2.448 0c.052.682-1.849.953-2.129.791-.299-.173.698-.623.702-.977.019-1.797-.53-1.648-.311-3.492-.443-1.625-.672-2.592-.672-3.131 0-1.25 3.313-.766 3.313 0 0 .344-.365 1.681-.417 3.131.311 1.659-.642 1.615-.486 3.678z"/><path fill="#E2C196" d="M10.311 27.5c0 .206.13.771.246 1.5h2.817c.164-.689.249-1.175.249-1.5 0-1.25-3.312-.766-3.312 0zm-3.957 0c0 .325.085.811.249 1.5H9.42c.116-.729.247-1.294.247-1.5 0-.766-3.313-1.25-3.313 0z"/><path fill="#F3D2A2" d="M3.258 26.96c-.258.124-.503-.097-.619-.227-.328-.367-.583-1.246-.282-2.209.303-.973.6-2.384 1.199-4.002.081-.22.499-3.764.805-4.445.197-.437 1.28-.896 1.81-.807.529.089.246.651.105 1.13 0 0-.916 3.953-1.016 4.296-.316 1.079-1.624 2.918-1.565 4.237.031.692.06 1.255-.339 1.246-.049.362-.003.735-.098.781zm14.984-.2c.271.091.487-.159.586-.302.279-.405.422-1.309.004-2.227-.423-.927-.894-2.29-1.69-3.821-.108-.208-.966-3.672-1.355-4.309-.25-.409-1.382-.729-1.897-.574-.513.154-.162.676.037 1.134 0 0 1.403 3.807 1.546 4.135.449 1.031 1.977 2.691 2.082 4.008.056.69.097 1.253.492 1.194.094.353.095.729.195.762z"/><path fill="#292F33" d="M13.945 36c.305 0 .372-.418.089-.629-.379-.285-.88-1.371-1.561-1.371h-1.245c-.229 0-.49 1.209-.41 1.48.102.345.433.52.812.52h2.315zm-7.913 0c-.305 0-.372-.418-.089-.629.379-.285.88-1.371 1.561-1.371h1.245c.229 0 .49 1.209.41 1.48-.102.345-.433.52-.811.52H6.032z"/><path fill="#E75A70" d="M14.354 17.771L16 16c-1.438-1.792-4-2-4-2H8s-2.562.208-4 2l1.646 1.771S6.25 20.688 6.25 21 5 25.75 5 28h10c0-2.25-1.25-6.688-1.25-7s.604-3.229.604-3.229z"/><path fill="#DA2F47" d="M13.75 21c0-.106.07-.512.161-1H6.089c.092.488.161.894.161 1 0 .083-.122.509-.223 1h7.942c-.108-.558-.219-.917-.219-1z"/><path fill="#F3D2A2" d="M8 11v4c0 1.104.896 2 2 2s2-.896 2-2v-4H8z"/><path fill="#E2C196" d="M12 11l-4 .019V15s2 1 4 0v-4z"/><path fill="#F3D2A2" d="M15 3H5v6c0 2.762 2.238 5 5 5s5-2.237 5-5V3z"/><path fill="#FFE51E" d="M15 2H5L4 7c4 0 4-4 4-4s0 4 8 4l-1-5z"/><path fill="#DF1F32" d="M12 12H8s0 1 2 1 2-1 2-1z"/><circle fill="#662113" cx="7.5" cy="8.5" r=".5"/><circle fill="#662113" cx="12.5" cy="8.5" r=".5"/><path fill="#C1694F" d="M9 10h2s0 1-1 1-1-1-1-1z"/><path fill="#60352A" d="M26.5 0c-1.187 0-2.282.379-3.181 1.018C21.473 1.114 20 2.629 20 4.5c0 1.542.007 3.484 2.038 4.208C23.036 10.094 24.66 11 26.5 11c3.037 0 5.5-2.462 5.5-5.499C32 2.463 29.537 0 26.5 0z"/><path fill="#AF7E57" d="M18.117 26.76c-.271.091-.487-.159-.586-.302-.279-.405-.422-1.309-.004-2.227.423-.927.702-2.072 1.69-3.821.115-.204.494-2.746 1.242-4.354.202-.435 1.495-.684 2.009-.529.513.154-.005.98-.037 1.134-.344 1.651-1.305 4.077-1.45 4.404-.8 1.806-1.965 2.389-2.071 3.706-.055.69-.205 1.286-.6 1.228-.092.352-.094.728-.193.761zm14.595.204c.257.126.504-.094.62-.222.33-.365.591-1.242.296-2.208-.297-.975-.424-2.146-1.174-4.01-.087-.217-.129-2.787-.66-4.479-.143-.457-1.392-.875-1.922-.789-.529.086-.124.972-.112 1.129.124 1.682.758 4.213.859 4.556.556 1.895 1.634 2.627 1.566 3.946-.036.692.034 1.302.433 1.296.048.363 0 .735.094.781z"/><path fill="#AAB8C2" d="M29.555 29.5c.5-2.734.422-6.5.422-6.5h-7.963s-.078 3.766.422 6.5c.063.344.188 3.344-.109 5.5-.066.479 2.886.937 2.844-.125-.078-1.969.264-3.513.328-4.5.035-.547.25-1.875.344-3.208.011-.018.295-.018.306 0 .094 1.333.308 2.661.344 3.208.064.987.406 2.531.328 4.5-.042 1.062 2.91.604 2.844.125-.297-2.156-.172-5.156-.11-5.5z"/><path fill="#292F33" d="M30.54 36c.499-.406-.041-1.161-1.42-1.402-1.163-.203-2.2-.032-2.363.35-.212.493-.05 1.052-.05 1.052h3.833zm-9.117 0c-.499-.406.041-1.161 1.42-1.402 1.163-.203 2.2-.032 2.363.35.212.494.05 1.053.05 1.053L21.423 36z"/><path fill="#4289C1" d="M30.797 14.766C29.578 14 28 14 28 14h-4s-1.578 0-2.797.766c-1.201.754-1.656 3-1.656 3l2.203.688.109 5.546h8.281l.109-5.547 2.203-.688c.001.001-.454-2.245-1.655-2.999z"/><path fill="#AF7E57" d="M24 10.042v4c0 .682.896 1.305 2 1.305s2-.668 2-1.305v-4h-4z"/><path fill="#9B6A49" d="M24 14.042c0 .682.896 1.305 2 1.305s2-.668 2-1.305V11l-4 .019v3.023z"/><path fill="#AF7E57" d="M31 3H21v6c0 2.762 2.238 5 5 5s5-2.237 5-5V3z"/><path fill="#60352A" d="M21 2.5L20.5 5l.5 2c2.333 0 2.85-2.412 2.965-3.488C24.004 4.588 24.779 7 31 7l.5-2-.5-2.5H21z"/><path fill="#915A34" d="M28 12h-4s0 1 2 1 2-1 2-1z"/><circle fill="#662113" cx="23.5" cy="8.5" r=".5"/><circle fill="#662113" cx="28.5" cy="8.5" r=".5"/><path fill="#915A34" d="M25 10h2s0 1-1 1-1-1-1-1z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f469-1f3fc-200d-1f91d-200d-1f468-1f3ff.svg b/public/emoji/1f469-1f3fc-200d-1f91d-200d-1f468-1f3ff.svg
new file mode 100644
index 0000000000000000000000000000000000000000..2cdda31da11e8123029ccf33fcf586a0af4530c8
--- /dev/null
+++ b/public/emoji/1f469-1f3fc-200d-1f91d-200d-1f468-1f3ff.svg
@@ -0,0 +1 @@
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#FFE51E" d="M11 0C9.736 0 8.565.393 7.598 1.061 7.401 1.031 7.205 1 7 1 4.791 1 3 2.791 3 5v6c0 3.866 3.134 7 7 7s7-3.134 7-7V6.001C17 2.687 14.314 0 11 0z"/><path fill="#F3D2A2" d="M11.213 34.309c-.052.682 1.849.953 2.129.791.299-.173-.698-.623-.702-.977-.019-1.797.53-1.648.311-3.492.443-1.625.672-2.592.672-3.131 0-1.25-3.312-.766-3.312 0 0 .344.365 1.681.417 3.131-.313 1.659.641 1.615.485 3.678zm-2.448 0c.052.682-1.849.953-2.129.791-.299-.173.698-.623.702-.977.019-1.797-.53-1.648-.311-3.492-.443-1.625-.672-2.592-.672-3.131 0-1.25 3.313-.766 3.313 0 0 .344-.365 1.681-.417 3.131.311 1.659-.642 1.615-.486 3.678z"/><path fill="#E2C196" d="M10.311 27.5c0 .206.13.771.246 1.5h2.817c.164-.689.249-1.175.249-1.5 0-1.25-3.312-.766-3.312 0zm-3.957 0c0 .325.085.811.249 1.5H9.42c.116-.729.247-1.294.247-1.5 0-.766-3.313-1.25-3.313 0z"/><path fill="#F3D2A2" d="M3.258 26.96c-.258.124-.503-.097-.619-.227-.328-.367-.583-1.246-.282-2.209.303-.973.6-2.384 1.199-4.002.081-.22.499-3.764.805-4.445.197-.437 1.28-.896 1.81-.807.529.089.246.651.105 1.13 0 0-.916 3.953-1.016 4.296-.316 1.079-1.624 2.918-1.565 4.237.031.692.06 1.255-.339 1.246-.049.362-.003.735-.098.781zm14.984-.2c.271.091.487-.159.586-.302.279-.405.422-1.309.004-2.227-.423-.927-.894-2.29-1.69-3.821-.108-.208-.966-3.672-1.355-4.309-.25-.409-1.382-.729-1.897-.574-.513.154-.162.676.037 1.134 0 0 1.403 3.807 1.546 4.135.449 1.031 1.977 2.691 2.082 4.008.056.69.097 1.253.492 1.194.094.353.095.729.195.762z"/><path fill="#292F33" d="M13.945 36c.305 0 .372-.418.089-.629-.379-.285-.88-1.371-1.561-1.371h-1.245c-.229 0-.49 1.209-.41 1.48.102.345.433.52.812.52h2.315zm-7.913 0c-.305 0-.372-.418-.089-.629.379-.285.88-1.371 1.561-1.371h1.245c.229 0 .49 1.209.41 1.48-.102.345-.433.52-.811.52H6.032z"/><path fill="#E75A70" d="M14.354 17.771L16 16c-1.438-1.792-4-2-4-2H8s-2.562.208-4 2l1.646 1.771S6.25 20.688 6.25 21 5 25.75 5 28h10c0-2.25-1.25-6.688-1.25-7s.604-3.229.604-3.229z"/><path fill="#DA2F47" d="M13.75 21c0-.106.07-.512.161-1H6.089c.092.488.161.894.161 1 0 .083-.122.509-.223 1h7.942c-.108-.558-.219-.917-.219-1z"/><path fill="#F3D2A2" d="M8 11v4c0 1.104.896 2 2 2s2-.896 2-2v-4H8z"/><path fill="#E2C196" d="M12 11l-4 .019V15s2 1 4 0v-4z"/><path fill="#F3D2A2" d="M15 3H5v6c0 2.762 2.238 5 5 5s5-2.237 5-5V3z"/><path fill="#FFE51E" d="M15 2H5L4 7c4 0 4-4 4-4s0 4 8 4l-1-5z"/><path fill="#DF1F32" d="M12 12H8s0 1 2 1 2-1 2-1z"/><circle fill="#662113" cx="7.5" cy="8.5" r=".5"/><circle fill="#662113" cx="12.5" cy="8.5" r=".5"/><path fill="#C1694F" d="M9 10h2s0 1-1 1-1-1-1-1z"/><path fill="#0B0200" d="M26.5 0c-1.187 0-2.282.379-3.181 1.018C21.473 1.114 20 2.629 20 4.5c0 1.542.007 3.484 2.038 4.208C23.036 10.094 24.66 11 26.5 11c3.037 0 5.5-2.462 5.5-5.499C32 2.463 29.537 0 26.5 0z"/><path fill="#7C533E" d="M18.117 26.76c-.271.091-.487-.159-.586-.302-.279-.405-.422-1.309-.004-2.227.423-.927.702-2.072 1.69-3.821.115-.204.494-2.746 1.242-4.354.202-.435 1.495-.684 2.009-.529.513.154-.005.98-.037 1.134-.344 1.651-1.305 4.077-1.45 4.404-.8 1.806-1.965 2.389-2.071 3.706-.055.69-.205 1.286-.6 1.228-.092.352-.094.728-.193.761zm14.595.204c.257.126.504-.094.62-.222.33-.365.591-1.242.296-2.208-.297-.975-.424-2.146-1.174-4.01-.087-.217-.129-2.787-.66-4.479-.143-.457-1.392-.875-1.922-.789-.529.086-.124.972-.112 1.129.124 1.682.758 4.213.859 4.556.556 1.895 1.634 2.627 1.566 3.946-.036.692.034 1.302.433 1.296.048.363 0 .735.094.781z"/><path fill="#AAB8C2" d="M29.555 29.5c.5-2.734.422-6.5.422-6.5h-7.963s-.078 3.766.422 6.5c.063.344.188 3.344-.109 5.5-.066.479 2.886.937 2.844-.125-.078-1.969.264-3.513.328-4.5.035-.547.25-1.875.344-3.208.011-.018.295-.018.306 0 .094 1.333.308 2.661.344 3.208.064.987.406 2.531.328 4.5-.042 1.062 2.91.604 2.844.125-.297-2.156-.172-5.156-.11-5.5z"/><path fill="#292F33" d="M30.54 36c.499-.406-.041-1.161-1.42-1.402-1.163-.203-2.2-.032-2.363.35-.212.493-.05 1.052-.05 1.052h3.833zm-9.117 0c-.499-.406.041-1.161 1.42-1.402 1.163-.203 2.2-.032 2.363.35.212.494.05 1.053.05 1.053L21.423 36z"/><path fill="#4289C1" d="M30.797 14.766C29.578 14 28 14 28 14h-4s-1.578 0-2.797.766c-1.201.754-1.656 3-1.656 3l2.203.688.109 5.546h8.281l.109-5.547 2.203-.688c.001.001-.454-2.245-1.655-2.999z"/><path fill="#7C533E" d="M24 10.042v4c0 .682.896 1.305 2 1.305s2-.668 2-1.305v-4h-4z"/><path fill="#664131" d="M24 14.042c0 .682.896 1.305 2 1.305s2-.668 2-1.305V11l-4 .019v3.023z"/><path fill="#7C533E" d="M31 3H21v6c0 2.762 2.238 5 5 5s5-2.237 5-5V3z"/><path fill="#0B0200" d="M21 2.5L20.5 5l.5 2c2.333 0 2.85-2.412 2.965-3.488C24.004 4.588 24.779 7 31 7l.5-2-.5-2.5H21z"/><path fill="#3D2E24" d="M28 12h-4s0 1 2 1 2-1 2-1z"/><circle cx="23.5" cy="8.5" r=".5"/><circle cx="28.5" cy="8.5" r=".5"/><path fill="#3D2E24" d="M25 10h2s0 1-1 1-1-1-1-1z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f469-1f3fc-200d-1f91d-200d-1f469-1f3fb.svg b/public/emoji/1f469-1f3fc-200d-1f91d-200d-1f469-1f3fb.svg
new file mode 100644
index 0000000000000000000000000000000000000000..0939b16d8b6489cfb3d71c631b95757cf335434e
--- /dev/null
+++ b/public/emoji/1f469-1f3fc-200d-1f91d-200d-1f469-1f3fb.svg
@@ -0,0 +1 @@
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#FFE51E" d="M11 0C9.736 0 8.565.393 7.598 1.061 7.401 1.031 7.205 1 7 1 4.791 1 3 2.791 3 5v6c0 3.866 3.134 7 7 7s7-3.134 7-7V6.001C17 2.687 14.314 0 11 0z"/><path fill="#F3D2A2" d="M11.213 34.309c-.052.682 1.849.953 2.129.791.299-.173-.698-.623-.702-.977-.019-1.797.53-1.648.311-3.492.443-1.625.672-2.592.672-3.131 0-1.25-3.312-.766-3.312 0 0 .344.365 1.681.417 3.131-.313 1.659.641 1.615.485 3.678zm-2.448 0c.052.682-1.849.953-2.129.791-.299-.173.698-.623.702-.977.019-1.797-.53-1.648-.311-3.492-.443-1.625-.672-2.592-.672-3.131 0-1.25 3.313-.766 3.313 0 0 .344-.365 1.681-.417 3.131.311 1.659-.642 1.615-.486 3.678z"/><path fill="#E2C196" d="M10.311 27.5c0 .206.13.771.246 1.5h2.817c.164-.689.249-1.175.249-1.5 0-1.25-3.312-.766-3.312 0zm-3.957 0c0 .325.085.811.249 1.5H9.42c.116-.729.247-1.294.247-1.5 0-.766-3.313-1.25-3.313 0z"/><path fill="#F3D2A2" d="M3.258 26.96c-.258.124-.503-.097-.619-.227-.328-.367-.583-1.246-.282-2.209.303-.973.6-2.384 1.199-4.002.081-.22.499-3.764.805-4.445.197-.437 1.28-.896 1.81-.807.529.089.246.651.105 1.13 0 0-.916 3.953-1.016 4.296-.316 1.079-1.624 2.918-1.565 4.237.031.692.06 1.255-.339 1.246-.049.362-.003.735-.098.781zm14.984-.2c.271.091.487-.159.586-.302.279-.405.422-1.309.004-2.227-.423-.927-.894-2.29-1.69-3.821-.108-.208-.966-3.672-1.355-4.309-.25-.409-1.382-.729-1.897-.574-.513.154-.162.676.037 1.134 0 0 1.403 3.807 1.546 4.135.449 1.031 1.977 2.691 2.082 4.008.056.69.097 1.253.492 1.194.094.353.095.729.195.762z"/><path fill="#292F33" d="M13.945 36c.305 0 .372-.418.089-.629-.379-.285-.88-1.371-1.561-1.371h-1.245c-.229 0-.49 1.209-.41 1.48.102.345.433.52.812.52h2.315zm-7.913 0c-.305 0-.372-.418-.089-.629.379-.285.88-1.371 1.561-1.371h1.245c.229 0 .49 1.209.41 1.48-.102.345-.433.52-.811.52H6.032z"/><path fill="#E75A70" d="M14.354 17.771L16 16c-1.438-1.792-4-2-4-2H8s-2.562.208-4 2l1.646 1.771S6.25 20.688 6.25 21 5 25.75 5 28h10c0-2.25-1.25-6.688-1.25-7s.604-3.229.604-3.229z"/><path fill="#DA2F47" d="M13.75 21c0-.106.07-.512.161-1H6.089c.092.488.161.894.161 1 0 .083-.122.509-.223 1h7.942c-.108-.558-.219-.917-.219-1z"/><path fill="#F3D2A2" d="M8 11v4c0 1.104.896 2 2 2s2-.896 2-2v-4H8z"/><path fill="#E2C196" d="M12 11l-4 .019V15s2 1 4 0v-4z"/><path fill="#F3D2A2" d="M15 3H5v6c0 2.762 2.238 5 5 5s5-2.237 5-5V3z"/><path fill="#FFE51E" d="M15 2H5L4 7c4 0 4-4 4-4s0 4 8 4l-1-5z"/><path fill="#DF1F32" d="M12 12H8s0 1 2 1 2-1 2-1z"/><circle fill="#662113" cx="7.5" cy="8.5" r=".5"/><circle fill="#662113" cx="12.5" cy="8.5" r=".5"/><path fill="#C1694F" d="M9 10h2s0 1-1 1-1-1-1-1z"/><path fill="#292F33" d="M33 6.001C33 2.687 30.313 0 27 0c-1.264 0-2.435.393-3.402 1.061C23.401 1.031 23.205 1 23 1c-2.209 0-4 1.791-4 4v6h14V6.001z"/><path fill="#F7DECE" d="M27.213 34.309c-.052.682 1.849.953 2.129.791.299-.173-.698-.623-.702-.977-.019-1.797.53-1.648.311-3.492.443-1.625.672-2.592.672-3.131 0-1.25-3.312-.766-3.312 0 0 .344.365 1.681.417 3.131-.313 1.659.641 1.615.485 3.678zm-2.448 0c.052.682-1.849.953-2.129.791-.299-.173.698-.623.702-.977.019-1.797-.53-1.648-.311-3.492-.443-1.625-.672-2.592-.672-3.131 0-1.25 3.312-.766 3.312 0 0 .344-.365 1.681-.417 3.131.312 1.659-.642 1.615-.485 3.678z"/><path fill="#EEC2AD" d="M26.311 27.5c0 .206.13.771.246 1.5h2.817c.164-.689.249-1.175.249-1.5 0-1.25-3.312-.766-3.312 0zm-3.957 0c0 .325.085.811.249 1.5h2.817c.116-.729.247-1.294.247-1.5 0-.766-3.313-1.25-3.313 0z"/><path fill="#F7DECE" d="M18.117 26.76c-.271.091-.487-.159-.586-.302-.279-.405-.422-1.309-.004-2.227.423-.927.702-2.072 1.69-3.821.115-.204.494-2.746 1.242-4.354.202-.435 1.495-.685 2.009-.529.513.154-.005.98-.037 1.134-.344 1.651-1.305 4.077-1.45 4.404-.8 1.806-1.965 2.389-2.071 3.706-.056.69-.205 1.286-.6 1.228-.092.352-.094.728-.193.761zm14.595.204c.257.126.504-.094.62-.222.33-.365.591-1.242.296-2.208-.297-.975-.424-2.146-1.174-4.01-.088-.217-.129-2.787-.66-4.479-.143-.458-1.392-.875-1.922-.789-.529.086-.124.972-.112 1.129.124 1.682.758 4.213.859 4.556.556 1.895 1.634 2.626 1.566 3.946-.036.692.034 1.302.433 1.296.048.363 0 .735.094.781z"/><path fill="#292F33" d="M29.945 36c.305 0 .372-.418.089-.629-.379-.285-.88-1.371-1.561-1.371h-1.245c-.229 0-.49 1.209-.41 1.48.102.345.433.52.812.52h2.315zm-7.913 0c-.305 0-.372-.418-.089-.629.379-.285.88-1.371 1.561-1.371h1.245c.229 0 .49 1.209.41 1.48-.102.345-.433.52-.811.52h-2.316z"/><path fill="#9268CA" d="M30.354 17.771L32 16c-1.438-1.792-4-2-4-2h-4s-2.562.208-4 2l1.646 1.771s.604 2.917.604 3.229S21 25.75 21 28h10c0-2.25-1.25-6.688-1.25-7s.604-3.229.604-3.229z"/><path fill="#AA8ED6" d="M29.75 21c0-.106.07-.512.161-1h-7.822c.092.488.161.894.161 1 0 .083-.122.509-.223 1h7.942c-.108-.558-.219-.917-.219-1z"/><path fill="#F7DECE" d="M24 11v4c0 1.104.896 2 2 2s2-.896 2-2v-4h-4z"/><path fill="#EEC2AD" d="M28 11l-4 .019V15s2 1 4 0v-4z"/><path fill="#F7DECE" d="M31 3H21v6c0 2.762 2.238 5 5 5s5-2.237 5-5V3z"/><path fill="#292F33" d="M31 2H21l-1 5c4 0 4-4 4-4s0 4 8 4l-1-5z"/><path fill="#DF1F32" d="M28 12h-4s0 1 2 1 2-1 2-1z"/><circle fill="#662113" cx="23.5" cy="8.5" r=".5"/><circle fill="#662113" cx="28.5" cy="8.5" r=".5"/><path fill="#C1694F" d="M25 10h2s0 1-1 1-1-1-1-1z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f469-1f3fc-200d-1f9af.svg b/public/emoji/1f469-1f3fc-200d-1f9af.svg
new file mode 100644
index 0000000000000000000000000000000000000000..ad8806b3f914e66b7cb746c8d997ed31204ba00f
--- /dev/null
+++ b/public/emoji/1f469-1f3fc-200d-1f9af.svg
@@ -0,0 +1 @@
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#CCD6DD" d="M12.154 19.416l.802.598L3.988 32.04l-.802-.598z"/><path fill="#DD2E44" d="M3.186 31.444L1.093 34.25c-.164.22-.119.535.102.7s.535.119.7-.102l2.092-2.806-.801-.598z"/><path fill="#292F33" d="M11.359 21.319c-.22-.164-.266-.479-.102-.7l1.793-2.405c.164-.22.479-.266.7-.102.22.164.266.479.102.7l-1.793 2.405c-.164.221-.479.267-.7.102z"/><path fill="#292F33" d="M11.76 21.618l-.802-.598c-.22-.164-.266-.479-.102-.7.164-.22.479-.266.7-.102l.802.598c.22.164.266.479.102.7-.164.221-.479.267-.7.102z"/><path fill="#99AAB5" d="M.598 35.751c-.22-.164-.266-.479-.102-.7.164-.22.479-.266.7-.102.22.164.266.479.102.7-.165.22-.48.266-.7.102z"/><path fill="#292F33" d="M20.476 35.056s.061-.144.061-.448c0-.303-.156-.869-.199-.95s-.09-.139-.194-.11c-.079.022-.685.326-1.072.341-.719.027-1.066-.618-1.066-.618s-.399.228-.716.413c-.318.185-.687.462-.959.627-.232.141-.497.208-.771.243s-.497.023-.563.029-.621-.061-.641.488l.004.16s.987.397 2.344.397c1.358 0 1.566-.399 2.444-.399s1.328-.173 1.328-.173z"/><path fill="#292F33" d="M18.726 35.926c-.058-.052-.123-.22-.173-.243s-.57.089-.813.146c-.243.058-.66.156-1.152.156-.491 0-1.126-.144-1.519-.243-.393-.098-.701-.23-.77-.274-.07-.043-.05-.063-.046-.096.004-.033.052-.202.052-.202s.251.132.678.237c.426.104.851.183 1.584.183s1.193-.109 1.574-.211c.475-.128 1.163-.267 1.656-.267.38 0 .648-.112.751-.139.024-.006.046.012.046.037v.649c0 .042-.035.139-.146.162-.112.024-1.664.157-1.722.105zm12.221-5.012s-.072-.142-.307-.343c-.235-.2-.777-.454-.868-.473-.091-.02-.167-.022-.213.078-.035.075-.199.746-.444 1.056-.454.575-1.184.418-1.184.418s-.087.46-.153.828c-.067.368-.096.838-.148 1.158-.044.273-.167.523-.322.758-.154.236-.31.4-.35.456-.039.055-.457.441-.045.82l.127.103s.96-.502 1.857-1.555c.897-1.052.726-1.477 1.306-2.158.581-.682.744-1.146.744-1.146z"/><path fill="#292F33" d="M30.465 32.846c-.078.01-.252-.05-.303-.026-.051.024-.308.5-.424.727-.116.226-.316.615-.64.996s-.856.778-1.192 1.018c-.336.24-.642.391-.721.416-.08.025-.082-.003-.104-.028-.022-.025-.122-.174-.122-.174s.269-.107.631-.369c.363-.261.705-.538 1.189-1.107s.704-.997.876-1.36c.214-.452.562-1.078.887-1.46.251-.295.342-.576.388-.674.011-.023.04-.028.059-.012l.503.429c.033.028.085.118.029.22-.055.103-.977 1.394-1.056 1.404z"/><path fill="#F3D2A2" d="M21.541 1.384c-1.593-.627-4.077.182-4.365 2.043-.287 1.848.239 4.747 1.863 4.572 1.702-.184 3.448-.554 4.138-2.307s-.043-3.681-1.636-4.308z"/><path fill="#F3D2A2" d="M22.724 6.143c2.318-2.723-3.266-2.458-3.266-2.458-1.057.038-.329 1.799-.827 2.761-.341.665 1.095 1.018 1.095 1.018s.659-.01.694.79v.007c.008.204-.013.445-.108.769-.473 1.601 1.677 2.582 2.149.978.187-.635.114-1.193.02-1.708l-.009-.046c-.143-.766-.321-1.437.252-2.111z"/><path fill="#FFE51E" d="M23.361 2.026C22.3.784 20.841.269 18.342 1.235c-2.183.844-1.481 2.579-.972 2.282 1.402-.817 2.332-.119 3.046 1.021.208-.56 1.122-.904 1.307-.085.208.921-.647 1.322-.533 1.573.038.084-.043-.076 0 0 .547.96 1.437 1.262 1.437 1.262s.337.132.912-1.001.875-3.028-.178-4.261z"/><path fill="#FFE51E" d="M22.787 3.332c2.163.467 1.275 3.839 1.487 5.08.261 1.528 1.761 1.582 1.761 1.582s-.247-1.064-.116-2.177c.183-1.543 1.189-2.789.127-4.296-1.356-1.924-4.604-.479-3.259-.189z"/><path fill="#2A6797" d="M18.598 34.203c-1.266.109-1.853-.233-1.721-.416.165-.228.128-.397.13-.536.028-2.441-.472-5.991-.472-5.991 0-.348.003-.813.312-1.562.778-1.883 3.951-7.69 3.951-7.69.548-.958 1.771-1.293 2.728-.744.959.548 1.122 1.405.744 2.729-.715 2.508-2.965 5.602-3.903 7.477.224 2.121-.174 3.853.035 5.857.032.288-.538.767-1.804.876z"/><path fill="#4289C1" d="M29.333 31.931c-.364.553-.97.942-1.598.838-1.269-1.924-4.955-5.321-4.955-5.321-.241-.25-.562-.587-.86-1.341-.748-1.895-2.498-8.277-2.498-8.277-.272-1.07.376-2.16 1.446-2.43 1.07-.272 1.783.232 2.43 1.446 1.227 2.301 1.757 6.09 2.384 8.09 1.87 1.568 2.383 3.603 4.275 5.151-.065.857-.261 1.291-.624 1.844z"/><path fill="#9268CA" d="M25.536 20s0 1-2 1h-4.898c-.415-2 .554-3.818-.102-6.5-.848-3.46 2.406-6.874 3.818-6.42 1.846.594 2.693 2.641 2.932 5.858.238 3.216.25 6.062.25 6.062z"/><path fill="#F3D2A2" d="M20.142 11.64c-.783 1.171-2.299 3.804-2.526 3.904-1.206.531-2.551 1.215-3.448 1.307-.65.067-1.256.678-1.51.922-.316.304-.752 1.006-.633 1.369.074.226.57.489.741.254.333-.457.974-.533 1.492-.886 1.039-.71 3.285-.758 4.56-1.7.528-.39 1.583-1.134 3.111-3.722-.591-.426-1.787-1.448-1.787-1.448z"/><path fill="#292F33" d="M14.21 17.018c.477.152.847.624.557 1.114-.29.49.403.185.512-.045.223-.468-.178-1.158-.646-1.314-.468-.156-.746.142-.423.245z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f469-1f3fc-200d-1f9bc.svg b/public/emoji/1f469-1f3fc-200d-1f9bc.svg
new file mode 100644
index 0000000000000000000000000000000000000000..ffea3a289bfa8b5573b79e1bd75db0a125d3d46a
--- /dev/null
+++ b/public/emoji/1f469-1f3fc-200d-1f9bc.svg
@@ -0,0 +1 @@
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#292F33" d="M8.22 28.583s.108-.118.211-.409c.104-.291.147-.888.133-.98-.014-.092-.039-.164-.148-.171-.083-.006-.768.08-1.145-.039-.699-.22-.812-.957-.812-.957s-.46.083-.829.152c-.368.069-.818.209-1.134.274-.271.056-.548.03-.823-.03-.275-.06-.485-.147-.55-.165-.066-.017-.575-.27-.782.25l-.051.154s.811.718 2.114 1.182c1.303.464 1.639.152 2.481.452.843.3 1.335.287 1.335.287z"/><path fill="#292F33" d="M6.243 28.821c-.038-.07-.043-.253-.083-.292-.04-.039-.577-.11-.83-.137-.253-.027-.687-.076-1.158-.244-.471-.168-1.032-.523-1.375-.752-.343-.228-.594-.46-.646-.526s-.026-.078-.011-.107.119-.176.119-.176.196.213.569.459.754.467 1.458.717c.703.25 1.182.303 1.583.335.499.039 1.207.141 1.681.309.365.13.66.114.768.123.025.002.04.027.032.051l-.222.623c-.014.041-.081.121-.196.105s-1.651-.419-1.689-.488z"/><path fill="#4289C1" d="M25.097 17.21c.069 1.432-.391 2.922-1.505 3.202-1.066.268-3.056-.151-3.056-.151s-.698.408-.531 1.189c.095.444.257.67.201.712-.05.038-.486-.022-.684-.032-.528-.027-1.1-.211-2.073-.484-.974-.273-1.421-.285-2.481-.577-1.175-.324-1.986-.835-2.33-1.956-.293-.956.277-2.123 1.654-2.63 1.12-.412 4.288.195 5.488.311 1.201.118 5.257-.829 5.317.416z"/><path fill="#4289C1" d="M7.127 27.177c-.646-.143-1.069-.49-1.426-1.025 1.678-1.899 3.787-7.307 3.787-7.307.695-1.744 1.62-2.914 3.252-2.851 2.317.089 5.748.535 5.748.535 2.276.329.671.789 1.305 1.693.635.903-1.294 1.99-2.786 1.891-2.602-.173-3.877-.453-5.522.846-.8 2.306-2.071 4.087-2.844 6.406-.489.079-.868-.045-1.514-.188z"/><path fill="#F3D2A2" d="M24.879.905c-1.341-.8-3.695-.439-4.23 1.193-.531 1.621-.487 4.307 1 4.389 1.559.086 3.185.011 4.064-1.464.88-1.474.507-3.318-.834-4.118z"/><path fill="#F3D2A2" d="M25.24 5.363c2.488-2.108-2.576-2.694-2.576-2.694-.957-.122-.563 1.57-1.152 2.362-.405.548.834 1.078.834 1.078s.594.089.508.813l-.001.007c-.023.184-.078.399-.211.676-.662 1.37 1.127 2.571 1.789 1.198.262-.544.279-1.056.27-1.534l-.001-.042c-.015-.712-.076-1.343.54-1.864z"/><path fill="#FFE51E" d="M26.422 1.752C25.651.478 24.415-.201 22.023.298c-2.089.436-1.714 2.102-1.212 1.91 1.382-.528 2.116.237 2.589 1.369.27-.473 1.143-.648 1.189.117.051.859-.778 1.094-.712 1.337.022.082-.028-.075 0 0 .35.945 1.106 1.348 1.106 1.348s.283.169.969-.766c.684-.934 1.235-2.595.47-3.861z"/><path fill="#FFE51E" d="M25.843 2.713c1.875.677.661 2.73.665 3.791.004 1.306 1.158 1.604 1.158 1.604s-.331-.74-.045-1.649c.397-1.26 1.797-2.079 1.069-3.475-.927-1.783-4.012-.692-2.847-.271z"/><path fill="#9268CA" d="M25.778 16.257c-.214 1.304-.659 2.456-.696 3.032-.02.32-.939-.237-1.604-.511-1.782-.735-3.317-1.825-3.317-1.825.398-1.193.696-3.032.149-5.268-.477-1.953 3.106-5.252 4.309-4.634 1.573.807 2.382 1.782 1.904 4.684l-.745 4.522z"/><path fill="#66757F" d="M27.811 10.609l.425-5.242c.022-.274.265-.48.539-.458.274.022.48.265.458.539l-.425 5.242c-.022.274-.265.48-.539.458-.274-.022-.48-.265-.458-.539z"/><path fill="#292F33" d="M16 21v2s-2 0-2 2v3c0 1 1 2 2 2h10c1 0 2-1 2-2v-5c0-1-1-2-2-2H16z"/><path fill="#292F33" d="M22.956 22.559l-9.848-1.736c-.985-.174-.985-.174-.811-1.158.096-.542.617-.907 1.158-.811l9.848 1.736c.542.096.907.617.811 1.158-.173.985-.173.985-1.158.811z"/><path fill="#292F33" d="M25.238 19.023c-.193.922-.557 1.827-2.094 1.537-1.537-.29-1.782 1.225-.824 1.493.958.267 3.252.646 3.921-.446.668-1.092.78-2.139.713-2.606s-1.572-.66-1.716.022z"/><path fill="#DD2E44" d="M23.442 22.896l-10.833-1.91c-.271-.048-.453-.308-.406-.579.048-.271.308-.453.579-.406l10.833 1.91c.271.048.453.308.406.579-.048.271-.309.454-.579.406z"/><path fill="#292F33" d="M28.932 9.642l-1.736 9.848c-.174.985-.174.985-1.158.811-.542-.096-.907-.617-.811-1.158l1.736-9.848c.096-.542.617-.907 1.158-.811.984.173.984.173.811 1.158zm.992-7.49l-.713 4.025c-.087.493-.168 1.007-1.153.834-.542-.096-.882-.715-.763-1.398l.639-3.609c.163-.579.626-1.004 1.167-.909.985.173.91.564.823 1.057z"/><path fill="#DD2E44" d="M29.406 9.224l-1.91 10.833c-.048.271-.308.453-.579.406-.271-.048-.453-.308-.406-.579l1.91-10.833c.048-.271.308-.453.579-.406.272.048.454.308.406.579zm1.243-7.455l-.91 5.18c-.048.271-.308.453-.579.406-.271-.048-.453-.308-.406-.579l.91-5.18c.048-.271.308-.453.579-.406.271.047.454.308.406.579z"/><path fill="#292F33" d="M25.494 18.441l-7.466-1.316c-.747-.132-.747-.132-.617-.869.071-.405.466-.678.877-.606l7.466 1.316c.411.072.688.463.617.869-.13.738-.13.738-.877.606z"/><path fill="#DD2E44" d="M23.123 21.824c.993.175 2.954.521 3.475-2.433s1.506-2.781.985.174-2.237 3.667-4.634 3.245c-1.969-.348-1.796-1.333.174-.986zm-10.33-1.821c1.971.34 2.277 1.422.308 1.07-.873-.156-.984.212-1.251.958-.252.702-.611 1.757-1.144 3.23-.391 1.082-1.279.603-.95-.342.551-1.588 1.061-2.968 1.392-3.847.338-.895.613-1.247 1.645-1.069z"/><path fill="#DD2E44" d="M10.62 24.01c-.258-.094-.547.04-.641.299l-2.052 5.638c-.094.258.04.547.299.641.258.094.547-.04.641-.299l2.052-5.638c.094-.259-.041-.547-.299-.641z"/><path fill="#66757F" d="M8.226 30.588L4.467 29.22c-.258-.094-.393-.382-.299-.641.094-.258.382-.393.641-.299l3.759 1.368c.258.094.393.382.299.641-.094.258-.383.393-.641.299z"/><path fill="#DD2E44" d="M13.844 30.862l2.95-2.95c.194-.194.194-.513 0-.707-.194-.194-.513-.194-.707 0l-2.95 2.95c-.194.194-.194.513 0 .707.194.194.512.194.707 0zM32 34c-.55 0-1-.45-1-1v-3c0-.55.45-1 1-1s1 .45 1 1v3c0 .55-.45 1-1 1z"/><path fill="#DD2E44" d="M13.5 34c-.55 0-1-.45-1-1v-3c0-.55.45-1 1-1s1 .45 1 1v3c0 .55-.45 1-1 1zm12.983-6.005h2c.275 0 .5-.225.5-.5s-.225-.5-.5-.5h-2c-.275 0-.5.225-.5.5s.225.5.5.5z"/><path fill="#DD2E44" d="M31.123 30.803l-2.95-2.95c-.194-.194-.194-.513 0-.707.194-.194.513-.194.707 0l2.95 2.95c.194.194.194.513 0 .707-.194.195-.512.195-.707 0z"/><path fill="#292F33" d="M11.672 16.127c.742.318 2.05.936 2.339 1.047 0 0 .134-.891.49-.891 0 0 .134-.468.223-.668s.356-.134.379.245c.022.379-.089.512-.089.512s.334.423.134 1.002c0 0 .446.067.356.624-.089.557.067.98-.334 1.092-.401.111-1.916.535-1.938-.067-.022-.601-.401-1.069-1.136-1.515-.735-.446-1.27-.936-1.181-1.181.088-.244.133-.467.757-.2z"/><path fill="#DD2E44" d="M26.5 25h-11c-.275 0-.5-.225-.5-.5s.225-.5.5-.5h11c.275 0 .5.225.5.5s-.225.5-.5.5z"/><path fill="#F3D2A2" d="M22.691 10.276c-.579 1.455-.982 3.884-1.237 3.894-1.473.062-3.222.614-4.149.559-.672-.04-1.306-.167-1.651-.05-.552.187-1.159.289-1.351.632-.195.348.171.657 1.035.656.635 0 1.045.208 1.674.06.896-.21 4.492.479 5.665-.345.554-.389 1.272-1.95 2.356-4.742-1.084-.476-2.342-.664-2.342-.664z"/><circle fill="#66757F" cx="21.5" cy="31.5" r="4.5"/><circle fill="#66757F" cx="13.5" cy="33.5" r="2.5"/><circle fill="#66757F" cx="32" cy="34" r="2"/><circle fill="#CCD6DD" cx="21.5" cy="31.5" r="2.5"/><circle fill="#CCD6DD" cx="13.5" cy="33.5" r="1.5"/><circle fill="#292F33" cx="32" cy="34" r="1"/><g fill="#292F33"><circle cx="22" cy="30.634" r=".5"/><circle cx="21" cy="32.366" r=".5"/><circle cx="20.634" cy="31" r=".5"/><circle cx="22.366" cy="32" r=".5"/></g><circle fill="#292F33" cx="13.5" cy="33.5" r=".75"/><circle fill="#66757F" cx="32" cy="34" r=".5"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f469-1f3fc-200d-1f9bd.svg b/public/emoji/1f469-1f3fc-200d-1f9bd.svg
new file mode 100644
index 0000000000000000000000000000000000000000..39843afd33cd29388ec624ebc980829dafe1dffb
--- /dev/null
+++ b/public/emoji/1f469-1f3fc-200d-1f9bd.svg
@@ -0,0 +1 @@
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#292F33" d="M7.981 29.995s.097-.127.175-.426.069-.897.047-.988-.053-.16-.163-.158c-.083.001-.759.146-1.144.061-.716-.158-.892-.883-.892-.883s-.452.123-.812.223c-.361.101-.796.279-1.106.372-.265.079-.543.078-.823.041s-.496-.105-.563-.116c-.067-.011-.597-.219-.757.317l-.037.159s.871.645 2.209.993 1.646.009 2.511.234c.866.226 1.355.171 1.355.171z"/><path fill="#292F33" d="M6.032 30.404c-.044-.066-.065-.248-.109-.284-.043-.036-.585-.059-.839-.064-.254-.005-.691-.016-1.175-.142-.484-.126-1.074-.431-1.436-.629s-.632-.407-.689-.468c-.057-.061-.033-.075-.02-.106.013-.031.103-.186.103-.186s.214.195.607.407.792.399 1.514.587 1.204.199 1.606.195c.501-.004 1.215.035 1.701.162.375.098.668.056.776.056.025 0 .043.023.036.048l-.167.64c-.011.042-.07.128-.186.122-.114-.005-1.678-.272-1.722-.338z"/><path fill="#4289C1" d="M23.802 17.195c.193 1.421-.135 2.945-1.22 3.321-1.039.36-3.058.116-3.058.116s-.66.468-.426 1.231c.133.434.314.645.262.692-.046.042-.486.02-.684.027-.528.02-1.114-.114-2.108-.301s-1.44-.16-2.522-.359c-1.198-.22-2.051-.659-2.491-1.745-.375-.927.091-2.139 1.419-2.764 1.08-.508 4.289-.179 5.495-.168s5.166-1.285 5.333-.05z"/><path fill="#4289C1" d="M6.77 28.689c-.656-.086-1.108-.395-1.51-.897 1.506-2.038 3.136-7.609 3.136-7.609.541-1.798 1.36-3.044 2.992-3.124 2.316-.113 5.772.032 5.772.032 2.296.13.738.727 1.448 1.573.712.845-1.115 2.095-2.611 2.126-2.607.054-3.902-.113-5.428 1.324-.596 2.367-1.706 4.252-2.275 6.63-.48.122-.868.031-1.524-.055z"/><path fill="#F3D2A2" d="M21.842.878c-1.405-.68-3.719-.115-4.11 1.557-.388 1.661-.109 4.333 1.379 4.285 1.56-.05 3.174-.266 3.921-1.812.748-1.545.215-3.35-1.19-4.03z"/><path fill="#F3D2A2" d="M22.59 5.288c2.295-2.316-2.801-2.46-2.801-2.46-.964-.038-.424 1.613-.942 2.453-.356.582.925 1.001.925 1.001s.6.036.577.766v.007c-.007.186-.043.404-.151.691-.54 1.423 1.347 2.463 1.887 1.037.213-.564.186-1.077.136-1.552l-.006-.041c-.077-.707-.193-1.329.375-1.902z"/><path fill="#FFE51E" d="M23.453 1.588C22.574.386 21.283-.183 18.944.523c-2.044.617-1.525 2.243-1.042 2.008 1.331-.647 2.128.052 2.699 1.138.228-.495 1.083-.745 1.194.013.126.852-.68 1.158-.593 1.394.029.079-.034-.072 0 0 .431.911 1.22 1.246 1.22 1.246s.297.144.898-.847 1.005-2.693.133-3.887z"/><path fill="#FFE51E" d="M22.934 2.681c1.968.317 1.157 2.559 1.358 3.601.247 1.283 1.436 1.361 1.436 1.361s-.463-.666-.35-1.611c.156-1.312 1.379-2.377.405-3.613-1.244-1.58-4.072.065-2.849.262z"/><path fill="#9268CA" d="M24.353 16.862c.015 1.321-.057 1.777.007 2.351.036.319-1.252-.021-1.954-.176-1.883-.415-3.583-1.221-3.583-1.221.184-1.244.869-3.07-.624-4.823-.455-.535-.375-1.854.369-3.041.828-1.321 1.751-2.535 2.926-2.661.812-.088 1.597.328 2.15 1.2 2.206 1.83.762 1.78.777 3.121.024 2.035-.083 3.929-.068 5.25z"/><g fill="#DD2E44"><path d="M13.465 27.092l10.824.95c.274.024.518-.181.542-.455.024-.274-.181-.518-.455-.542l-10.824-.95c-.274-.024-.518.181-.542.455-.024.274.181.518.455.542z"/><path d="M24.288 28.041c-.274-.024-.478-.268-.455-.542l.436-4.981c.024-.274.268-.478.542-.455.274.024.478.268.455.542l-.436 4.981c-.024.275-.268.479-.542.455zm-10.738-7.58c-.274-.024-.518.181-.542.455l-1.015 11.597c-.024.274.181.518.455.542.274.024.518-.181.542-.455l1.015-11.597c.023-.274-.181-.518-.455-.542z"/></g><path fill="#292F33" d="M23.524 20.592c1.431-.206 2.834-.148 2.345.544-.489.692-1.575 1.905-3.418 1.707-1.844-.198.185-2.123 1.073-2.251z"/><path fill="#292F33" d="M22.45 22.843l-9.962-.872c-.996-.087-.996-.087-.909-1.083.048-.548.535-.957 1.083-.909l9.962.872c.548.048.957.535.909 1.083-.087.996-.087.996-1.083.909z"/><path fill="#DD2E44" d="M22.964 23.136l-10.958-.959c-.274-.024-.478-.268-.455-.542.024-.274.268-.478.542-.455l10.958.959c.274.024.478.268.455.542-.025.275-.268.479-.542.455z"/><path fill="#292F33" d="M27.278 9.454l-.872 9.962c-.087.996-.087.996-1.083.909-.548-.048-.957-.535-.909-1.083l.872-9.962c.048-.548.535-.957 1.083-.909.996.087.996.087.909 1.083z"/><path fill="#DD2E44" d="M27.714 8.996l-.959 10.958c-.024.274-.268.478-.542.455-.274-.024-.478-.268-.455-.542l.959-10.958c.024-.274.268-.478.542-.455.274.025.479.268.455.542z"/><path fill="#292F33" d="M24.62 18.519l-7.552-.661c-.755-.066-.755-.066-.69-.812.036-.41.405-.716.82-.68l7.552.661c.415.036.726.402.69.812-.064.746-.064.746-.82.68z"/><path fill="#DD2E44" d="M22.553 22.096c1.004.088 2.989.261 3.25-2.727s1.258-2.901.996.087-1.909 3.848-4.333 3.636c-1.993-.174-1.906-1.17.087-.996zm-10.449-.914c1.993.166 2.392 1.218.4 1.039-.883-.079-.962.297-1.163 1.063-.189.721-.456 1.803-.858 3.318-.295 1.112-1.221.712-.977-.257.411-1.63.798-3.05 1.052-3.953.258-.922.502-1.297 1.546-1.21z"/><g fill="#66757F"><circle cx="24.5" cy="27.5" r="1.5"/><path d="M31.245 30.817l-6.062-3.5 3.5-6.062-.866-.5-3.5 6.062-6.062-3.5-.5.866 6.062 3.5-3.5 6.062.866.5 3.5-6.062 6.062 3.5z"/><path d="M26.924 34.615l-1.812-6.761 6.762-1.812-.259-.966-6.761 1.812-1.812-6.762-.966.259 1.812 6.761-6.762 1.812.259.966 6.761-1.812 1.812 6.762z"/></g><path fill="#292F33" d="M24.5 19c-4.694 0-8.5 3.806-8.5 8.5s3.806 8.5 8.5 8.5 8.5-3.806 8.5-8.5-3.806-8.5-8.5-8.5zm0 15c-3.59 0-6.5-2.91-6.5-6.5s2.91-6.5 6.5-6.5 6.5 2.91 6.5 6.5-2.91 6.5-6.5 6.5z"/><path fill="#66757F" d="M24.5 20c-4.142 0-7.5 3.358-7.5 7.5s3.358 7.5 7.5 7.5 7.5-3.358 7.5-7.5-3.358-7.5-7.5-7.5zm0 14c-3.59 0-6.5-2.91-6.5-6.5s2.91-6.5 6.5-6.5 6.5 2.91 6.5 6.5-2.91 6.5-6.5 6.5zm-9.152-.433l-2.165-1.25 1.25-2.165-.866-.5-1.25 2.165-2.165-1.25-.5.866 2.165 1.25-1.25 2.165.866.5 1.25-2.165 2.165 1.25z"/><path fill="#292F33" d="M12.5 29C10.567 29 9 30.567 9 32.5s1.567 3.5 3.5 3.5 3.5-1.567 3.5-3.5-1.567-3.5-3.5-3.5zm0 6c-1.381 0-2.5-1.119-2.5-2.5s1.119-2.5 2.5-2.5 2.5 1.119 2.5 2.5-1.119 2.5-2.5 2.5z"/><path fill="#DD2E44" d="M10.288 25.363c-.266-.071-.541.088-.612.354l-1.553 5.796c-.071.266.088.541.354.612.266.071.541-.088.612-.354l1.553-5.796c.07-.265-.089-.541-.354-.612z"/><path fill="#66757F" d="M8.476 32.125L4.612 31.09c-.266-.071-.425-.347-.354-.612.071-.266.347-.425.612-.354l3.864 1.035c.266.071.426.346.354.612-.071.266-.346.425-.612.354z"/><path fill="#DD2E44" d="M30.103 9.969l-2.954-.521c-.271-.048-.453-.308-.406-.579.048-.271.308-.453.579-.406l2.954.521c.271.048.453.308.406.579-.048.272-.308.454-.579.406z"/><path fill="#292F33" d="M31.088 10.143l-2.615-.467c-.271-.048-.26-.274-.213-.545.048-.271.116-.487.386-.44l2.615.467c.271.048.453.308.406.579-.048.271-.308.454-.579.406z"/><path fill="#F3D2A2" d="M22.657 10.9c1.111 1.023 3.158 2.426 3.128 2.68-.174 1.464.402 3.203.2 4.11-.147.657-.805 1.117-.745 1.476.667.012.407 1.163.677 1.687.284.551 1.174-.056 1.311-.909.101-.627-.068-1.112-.113-1.757-.064-.918 1.207-3.625.39-5.457-.276-.618-1.167-1.842-3.212-3.751-.608.439-1.636 1.921-1.636 1.921z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f469-1f3fd-200d-1f91d-200d-1f468-1f3fb.svg b/public/emoji/1f469-1f3fd-200d-1f91d-200d-1f468-1f3fb.svg
new file mode 100644
index 0000000000000000000000000000000000000000..adf04f14ea62b09978ba6d95b4a35ee0dd37255e
--- /dev/null
+++ b/public/emoji/1f469-1f3fd-200d-1f91d-200d-1f468-1f3fb.svg
@@ -0,0 +1 @@
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#963B22" d="M11 0C9.736 0 8.565.393 7.598 1.061 7.401 1.031 7.205 1 7 1 4.791 1 3 2.791 3 5v6c0 3.866 3.134 7 7 7s7-3.134 7-7V6.001C17 2.687 14.314 0 11 0z"/><path fill="#D4AB88" d="M11.213 34.309c-.052.682 1.849.953 2.129.791.299-.173-.698-.623-.702-.977-.019-1.797.53-1.648.311-3.492.443-1.625.672-2.592.672-3.131 0-1.25-3.312-.766-3.312 0 0 .344.365 1.681.417 3.131-.313 1.659.641 1.615.485 3.678zm-2.448 0c.052.682-1.849.953-2.129.791-.299-.173.698-.623.702-.977.019-1.797-.53-1.648-.311-3.492-.443-1.625-.672-2.592-.672-3.131 0-1.25 3.313-.766 3.313 0 0 .344-.365 1.681-.417 3.131.311 1.659-.642 1.615-.486 3.678z"/><path fill="#CC9B7A" d="M10.311 27.5c0 .206.13.771.246 1.5h2.817c.164-.689.249-1.175.249-1.5 0-1.25-3.312-.766-3.312 0zm-3.957 0c0 .325.085.811.249 1.5H9.42c.116-.729.247-1.294.247-1.5 0-.766-3.313-1.25-3.313 0z"/><path fill="#D4AB88" d="M3.258 26.96c-.258.124-.503-.097-.619-.227-.328-.367-.583-1.246-.282-2.209.303-.973.6-2.384 1.199-4.002.081-.22.499-3.764.805-4.445.197-.437 1.28-.896 1.81-.807.529.089.246.651.105 1.13 0 0-.916 3.953-1.016 4.296-.316 1.079-1.624 2.918-1.565 4.237.031.692.06 1.255-.339 1.246-.049.362-.003.735-.098.781zm14.984-.2c.271.091.487-.159.586-.302.279-.405.422-1.309.004-2.227-.423-.927-.894-2.29-1.69-3.821-.108-.208-.966-3.672-1.355-4.309-.25-.409-1.382-.729-1.897-.574-.513.154-.162.676.037 1.134 0 0 1.403 3.807 1.546 4.135.449 1.031 1.977 2.691 2.082 4.008.056.69.097 1.253.492 1.194.094.353.095.729.195.762z"/><path fill="#292F33" d="M13.945 36c.305 0 .372-.418.089-.629-.379-.285-.88-1.371-1.561-1.371h-1.245c-.229 0-.49 1.209-.41 1.48.102.345.433.52.812.52h2.315zm-7.913 0c-.305 0-.372-.418-.089-.629.379-.285.88-1.371 1.561-1.371h1.245c.229 0 .49 1.209.41 1.48-.102.345-.433.52-.811.52H6.032z"/><path fill="#E75A70" d="M14.354 17.771L16 16c-1.438-1.792-4-2-4-2H8s-2.562.208-4 2l1.646 1.771S6.25 20.688 6.25 21 5 25.75 5 28h10c0-2.25-1.25-6.688-1.25-7s.604-3.229.604-3.229z"/><path fill="#DA2F47" d="M13.75 21c0-.106.07-.512.161-1H6.089c.092.488.161.894.161 1 0 .083-.122.509-.223 1h7.942c-.108-.558-.219-.917-.219-1z"/><path fill="#D4AB88" d="M8 11v4c0 1.104.896 2 2 2s2-.896 2-2v-4H8z"/><path fill="#CC9B7A" d="M12 11l-4 .019V15s2 1 4 0v-4z"/><path fill="#D4AB88" d="M15 3H5v6c0 2.762 2.238 5 5 5s5-2.237 5-5V3z"/><path fill="#963B22" d="M15 2H5L4 7c4 0 4-4 4-4s0 4 8 4l-1-5z"/><path fill="#DF1F32" d="M12 12H8s0 1 2 1 2-1 2-1z"/><circle fill="#662113" cx="7.5" cy="8.5" r=".5"/><circle fill="#662113" cx="12.5" cy="8.5" r=".5"/><path fill="#C1694F" d="M9 10h2s0 1-1 1-1-1-1-1z"/><path fill="#292F33" d="M26.5 0c-1.187 0-2.282.379-3.181 1.018C21.473 1.114 20 2.629 20 4.5c0 1.542.007 3.484 2.038 4.208C23.036 10.094 24.66 11 26.5 11c3.037 0 5.5-2.462 5.5-5.499C32 2.463 29.537 0 26.5 0z"/><path fill="#F7DECE" d="M18.117 26.76c-.271.091-.487-.159-.586-.302-.279-.405-.422-1.309-.004-2.227.423-.927.702-2.072 1.69-3.821.115-.204.494-2.746 1.242-4.354.202-.435 1.495-.684 2.009-.529.513.154-.005.98-.037 1.134-.344 1.651-1.305 4.077-1.45 4.404-.8 1.806-1.965 2.389-2.071 3.706-.055.69-.205 1.286-.6 1.228-.092.352-.094.728-.193.761zm14.595.204c.257.126.504-.094.62-.222.33-.365.591-1.242.296-2.208-.297-.975-.424-2.146-1.174-4.01-.087-.217-.129-2.787-.66-4.479-.143-.457-1.392-.875-1.922-.789-.529.086-.124.972-.112 1.129.124 1.682.758 4.213.859 4.556.556 1.895 1.634 2.627 1.566 3.946-.036.692.034 1.302.433 1.296.048.363 0 .735.094.781z"/><path fill="#AAB8C2" d="M29.555 29.5c.5-2.734.422-6.5.422-6.5h-7.963s-.078 3.766.422 6.5c.063.344.188 3.344-.109 5.5-.066.479 2.886.937 2.844-.125-.078-1.969.264-3.513.328-4.5.035-.547.25-1.875.344-3.208.011-.018.295-.018.306 0 .094 1.333.308 2.661.344 3.208.064.987.406 2.531.328 4.5-.042 1.062 2.91.604 2.844.125-.297-2.156-.172-5.156-.11-5.5z"/><path fill="#292F33" d="M30.54 36c.499-.406-.041-1.161-1.42-1.402-1.163-.203-2.2-.032-2.363.35-.212.493-.05 1.052-.05 1.052h3.833zm-9.117 0c-.499-.406.041-1.161 1.42-1.402 1.163-.203 2.2-.032 2.363.35.212.494.05 1.053.05 1.053L21.423 36z"/><path fill="#4289C1" d="M30.797 14.766C29.578 14 28 14 28 14h-4s-1.578 0-2.797.766c-1.201.754-1.656 3-1.656 3l2.203.688.109 5.546h8.281l.109-5.547 2.203-.688c.001.001-.454-2.245-1.655-2.999z"/><path fill="#F7DECE" d="M24 10.042v4c0 .682.896 1.305 2 1.305s2-.668 2-1.305v-4h-4z"/><path fill="#EEC2AD" d="M24 14.042c0 .682.896 1.305 2 1.305s2-.668 2-1.305V11l-4 .019v3.023z"/><path fill="#F7DECE" d="M31 3H21v6c0 2.762 2.238 5 5 5s5-2.237 5-5V3z"/><path fill="#292F33" d="M21 2.5L20.5 5l.5 2c2.333 0 2.85-2.412 2.965-3.488C24.004 4.588 24.779 7 31 7l.5-2-.5-2.5H21z"/><path fill="#C1694F" d="M28 12h-4s0 1 2 1 2-1 2-1z"/><circle fill="#662113" cx="23.5" cy="8.5" r=".5"/><circle fill="#662113" cx="28.5" cy="8.5" r=".5"/><path fill="#C1694F" d="M25 10h2s0 1-1 1-1-1-1-1z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f469-1f3fd-200d-1f91d-200d-1f468-1f3fc.svg b/public/emoji/1f469-1f3fd-200d-1f91d-200d-1f468-1f3fc.svg
new file mode 100644
index 0000000000000000000000000000000000000000..724aede5b4678378be0ab634fc8eb68dcf052602
--- /dev/null
+++ b/public/emoji/1f469-1f3fd-200d-1f91d-200d-1f468-1f3fc.svg
@@ -0,0 +1 @@
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#963B22" d="M11 0C9.736 0 8.565.393 7.598 1.061 7.401 1.031 7.205 1 7 1 4.791 1 3 2.791 3 5v6c0 3.866 3.134 7 7 7s7-3.134 7-7V6.001C17 2.687 14.314 0 11 0z"/><path fill="#D4AB88" d="M11.213 34.309c-.052.682 1.849.953 2.129.791.299-.173-.698-.623-.702-.977-.019-1.797.53-1.648.311-3.492.443-1.625.672-2.592.672-3.131 0-1.25-3.312-.766-3.312 0 0 .344.365 1.681.417 3.131-.313 1.659.641 1.615.485 3.678zm-2.448 0c.052.682-1.849.953-2.129.791-.299-.173.698-.623.702-.977.019-1.797-.53-1.648-.311-3.492-.443-1.625-.672-2.592-.672-3.131 0-1.25 3.313-.766 3.313 0 0 .344-.365 1.681-.417 3.131.311 1.659-.642 1.615-.486 3.678z"/><path fill="#CC9B7A" d="M10.311 27.5c0 .206.13.771.246 1.5h2.817c.164-.689.249-1.175.249-1.5 0-1.25-3.312-.766-3.312 0zm-3.957 0c0 .325.085.811.249 1.5H9.42c.116-.729.247-1.294.247-1.5 0-.766-3.313-1.25-3.313 0z"/><path fill="#D4AB88" d="M3.258 26.96c-.258.124-.503-.097-.619-.227-.328-.367-.583-1.246-.282-2.209.303-.973.6-2.384 1.199-4.002.081-.22.499-3.764.805-4.445.197-.437 1.28-.896 1.81-.807.529.089.246.651.105 1.13 0 0-.916 3.953-1.016 4.296-.316 1.079-1.624 2.918-1.565 4.237.031.692.06 1.255-.339 1.246-.049.362-.003.735-.098.781zm14.984-.2c.271.091.487-.159.586-.302.279-.405.422-1.309.004-2.227-.423-.927-.894-2.29-1.69-3.821-.108-.208-.966-3.672-1.355-4.309-.25-.409-1.382-.729-1.897-.574-.513.154-.162.676.037 1.134 0 0 1.403 3.807 1.546 4.135.449 1.031 1.977 2.691 2.082 4.008.056.69.097 1.253.492 1.194.094.353.095.729.195.762z"/><path fill="#292F33" d="M13.945 36c.305 0 .372-.418.089-.629-.379-.285-.88-1.371-1.561-1.371h-1.245c-.229 0-.49 1.209-.41 1.48.102.345.433.52.812.52h2.315zm-7.913 0c-.305 0-.372-.418-.089-.629.379-.285.88-1.371 1.561-1.371h1.245c.229 0 .49 1.209.41 1.48-.102.345-.433.52-.811.52H6.032z"/><path fill="#E75A70" d="M14.354 17.771L16 16c-1.438-1.792-4-2-4-2H8s-2.562.208-4 2l1.646 1.771S6.25 20.688 6.25 21 5 25.75 5 28h10c0-2.25-1.25-6.688-1.25-7s.604-3.229.604-3.229z"/><path fill="#DA2F47" d="M13.75 21c0-.106.07-.512.161-1H6.089c.092.488.161.894.161 1 0 .083-.122.509-.223 1h7.942c-.108-.558-.219-.917-.219-1z"/><path fill="#D4AB88" d="M8 11v4c0 1.104.896 2 2 2s2-.896 2-2v-4H8z"/><path fill="#CC9B7A" d="M12 11l-4 .019V15s2 1 4 0v-4z"/><path fill="#D4AB88" d="M15 3H5v6c0 2.762 2.238 5 5 5s5-2.237 5-5V3z"/><path fill="#963B22" d="M15 2H5L4 7c4 0 4-4 4-4s0 4 8 4l-1-5z"/><path fill="#DF1F32" d="M12 12H8s0 1 2 1 2-1 2-1z"/><circle fill="#662113" cx="7.5" cy="8.5" r=".5"/><circle fill="#662113" cx="12.5" cy="8.5" r=".5"/><path fill="#C1694F" d="M9 10h2s0 1-1 1-1-1-1-1z"/><path fill="#FFE51E" d="M26.5 0c-1.187 0-2.282.379-3.181 1.018C21.473 1.114 20 2.629 20 4.5c0 1.542.007 3.484 2.038 4.208C23.036 10.094 24.66 11 26.5 11c3.037 0 5.5-2.462 5.5-5.499C32 2.463 29.537 0 26.5 0z"/><path fill="#F3D2A2" d="M18.117 26.76c-.271.091-.487-.159-.586-.302-.279-.405-.422-1.309-.004-2.227.423-.927.702-2.072 1.69-3.821.115-.204.494-2.746 1.242-4.354.202-.435 1.495-.684 2.009-.529.513.154-.005.98-.037 1.134-.344 1.651-1.305 4.077-1.45 4.404-.8 1.806-1.965 2.389-2.071 3.706-.055.69-.205 1.286-.6 1.228-.092.352-.094.728-.193.761zm14.595.204c.257.126.504-.094.62-.222.33-.365.591-1.242.296-2.208-.297-.975-.424-2.146-1.174-4.01-.087-.217-.129-2.787-.66-4.479-.143-.457-1.392-.875-1.922-.789-.529.086-.124.972-.112 1.129.124 1.682.758 4.213.859 4.556.556 1.895 1.634 2.627 1.566 3.946-.036.692.034 1.302.433 1.296.048.363 0 .735.094.781z"/><path fill="#AAB8C2" d="M29.555 29.5c.5-2.734.422-6.5.422-6.5h-7.963s-.078 3.766.422 6.5c.063.344.188 3.344-.109 5.5-.066.479 2.886.937 2.844-.125-.078-1.969.264-3.513.328-4.5.035-.547.25-1.875.344-3.208.011-.018.295-.018.306 0 .094 1.333.308 2.661.344 3.208.064.987.406 2.531.328 4.5-.042 1.062 2.91.604 2.844.125-.297-2.156-.172-5.156-.11-5.5z"/><path fill="#292F33" d="M30.54 36c.499-.406-.041-1.161-1.42-1.402-1.163-.203-2.2-.032-2.363.35-.212.493-.05 1.052-.05 1.052h3.833zm-9.117 0c-.499-.406.041-1.161 1.42-1.402 1.163-.203 2.2-.032 2.363.35.212.494.05 1.053.05 1.053L21.423 36z"/><path fill="#4289C1" d="M30.797 14.766C29.578 14 28 14 28 14h-4s-1.578 0-2.797.766c-1.201.754-1.656 3-1.656 3l2.203.688.109 5.546h8.281l.109-5.547 2.203-.688c.001.001-.454-2.245-1.655-2.999z"/><path fill="#F3D2A2" d="M24 10.042v4c0 .682.896 1.305 2 1.305s2-.668 2-1.305v-4h-4z"/><path fill="#E2C196" d="M24 14.042c0 .682.896 1.305 2 1.305s2-.668 2-1.305V11l-4 .019v3.023z"/><path fill="#F3D2A2" d="M31 3H21v6c0 2.762 2.238 5 5 5s5-2.237 5-5V3z"/><path fill="#FFE51E" d="M21 2.5L20.5 5l.5 2c2.333 0 2.85-2.412 2.965-3.488C24.004 4.588 24.779 7 31 7l.5-2-.5-2.5H21z"/><path fill="#C1694F" d="M28 12h-4s0 1 2 1 2-1 2-1z"/><circle fill="#662113" cx="23.5" cy="8.5" r=".5"/><circle fill="#662113" cx="28.5" cy="8.5" r=".5"/><path fill="#C1694F" d="M25 10h2s0 1-1 1-1-1-1-1z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f469-1f3fd-200d-1f91d-200d-1f468-1f3fe.svg b/public/emoji/1f469-1f3fd-200d-1f91d-200d-1f468-1f3fe.svg
new file mode 100644
index 0000000000000000000000000000000000000000..6ab1b4275e64544c868627bf202b97f0759ba897
--- /dev/null
+++ b/public/emoji/1f469-1f3fd-200d-1f91d-200d-1f468-1f3fe.svg
@@ -0,0 +1 @@
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#963B22" d="M11 0C9.736 0 8.565.393 7.598 1.061 7.401 1.031 7.205 1 7 1 4.791 1 3 2.791 3 5v6c0 3.866 3.134 7 7 7s7-3.134 7-7V6.001C17 2.687 14.314 0 11 0z"/><path fill="#D4AB88" d="M11.213 34.309c-.052.682 1.849.953 2.129.791.299-.173-.698-.623-.702-.977-.019-1.797.53-1.648.311-3.492.443-1.625.672-2.592.672-3.131 0-1.25-3.312-.766-3.312 0 0 .344.365 1.681.417 3.131-.313 1.659.641 1.615.485 3.678zm-2.448 0c.052.682-1.849.953-2.129.791-.299-.173.698-.623.702-.977.019-1.797-.53-1.648-.311-3.492-.443-1.625-.672-2.592-.672-3.131 0-1.25 3.313-.766 3.313 0 0 .344-.365 1.681-.417 3.131.311 1.659-.642 1.615-.486 3.678z"/><path fill="#CC9B7A" d="M10.311 27.5c0 .206.13.771.246 1.5h2.817c.164-.689.249-1.175.249-1.5 0-1.25-3.312-.766-3.312 0zm-3.957 0c0 .325.085.811.249 1.5H9.42c.116-.729.247-1.294.247-1.5 0-.766-3.313-1.25-3.313 0z"/><path fill="#D4AB88" d="M3.258 26.96c-.258.124-.503-.097-.619-.227-.328-.367-.583-1.246-.282-2.209.303-.973.6-2.384 1.199-4.002.081-.22.499-3.764.805-4.445.197-.437 1.28-.896 1.81-.807.529.089.246.651.105 1.13 0 0-.916 3.953-1.016 4.296-.316 1.079-1.624 2.918-1.565 4.237.031.692.06 1.255-.339 1.246-.049.362-.003.735-.098.781zm14.984-.2c.271.091.487-.159.586-.302.279-.405.422-1.309.004-2.227-.423-.927-.894-2.29-1.69-3.821-.108-.208-.966-3.672-1.355-4.309-.25-.409-1.382-.729-1.897-.574-.513.154-.162.676.037 1.134 0 0 1.403 3.807 1.546 4.135.449 1.031 1.977 2.691 2.082 4.008.056.69.097 1.253.492 1.194.094.353.095.729.195.762z"/><path fill="#292F33" d="M13.945 36c.305 0 .372-.418.089-.629-.379-.285-.88-1.371-1.561-1.371h-1.245c-.229 0-.49 1.209-.41 1.48.102.345.433.52.812.52h2.315zm-7.913 0c-.305 0-.372-.418-.089-.629.379-.285.88-1.371 1.561-1.371h1.245c.229 0 .49 1.209.41 1.48-.102.345-.433.52-.811.52H6.032z"/><path fill="#E75A70" d="M14.354 17.771L16 16c-1.438-1.792-4-2-4-2H8s-2.562.208-4 2l1.646 1.771S6.25 20.688 6.25 21 5 25.75 5 28h10c0-2.25-1.25-6.688-1.25-7s.604-3.229.604-3.229z"/><path fill="#DA2F47" d="M13.75 21c0-.106.07-.512.161-1H6.089c.092.488.161.894.161 1 0 .083-.122.509-.223 1h7.942c-.108-.558-.219-.917-.219-1z"/><path fill="#D4AB88" d="M8 11v4c0 1.104.896 2 2 2s2-.896 2-2v-4H8z"/><path fill="#CC9B7A" d="M12 11l-4 .019V15s2 1 4 0v-4z"/><path fill="#D4AB88" d="M15 3H5v6c0 2.762 2.238 5 5 5s5-2.237 5-5V3z"/><path fill="#963B22" d="M15 2H5L4 7c4 0 4-4 4-4s0 4 8 4l-1-5z"/><path fill="#DF1F32" d="M12 12H8s0 1 2 1 2-1 2-1z"/><circle fill="#662113" cx="7.5" cy="8.5" r=".5"/><circle fill="#662113" cx="12.5" cy="8.5" r=".5"/><path fill="#C1694F" d="M9 10h2s0 1-1 1-1-1-1-1z"/><path fill="#60352A" d="M26.5 0c-1.187 0-2.282.379-3.181 1.018C21.473 1.114 20 2.629 20 4.5c0 1.542.007 3.484 2.038 4.208C23.036 10.094 24.66 11 26.5 11c3.037 0 5.5-2.462 5.5-5.499C32 2.463 29.537 0 26.5 0z"/><path fill="#AF7E57" d="M18.117 26.76c-.271.091-.487-.159-.586-.302-.279-.405-.422-1.309-.004-2.227.423-.927.702-2.072 1.69-3.821.115-.204.494-2.746 1.242-4.354.202-.435 1.495-.684 2.009-.529.513.154-.005.98-.037 1.134-.344 1.651-1.305 4.077-1.45 4.404-.8 1.806-1.965 2.389-2.071 3.706-.055.69-.205 1.286-.6 1.228-.092.352-.094.728-.193.761zm14.595.204c.257.126.504-.094.62-.222.33-.365.591-1.242.296-2.208-.297-.975-.424-2.146-1.174-4.01-.087-.217-.129-2.787-.66-4.479-.143-.457-1.392-.875-1.922-.789-.529.086-.124.972-.112 1.129.124 1.682.758 4.213.859 4.556.556 1.895 1.634 2.627 1.566 3.946-.036.692.034 1.302.433 1.296.048.363 0 .735.094.781z"/><path fill="#AAB8C2" d="M29.555 29.5c.5-2.734.422-6.5.422-6.5h-7.963s-.078 3.766.422 6.5c.063.344.188 3.344-.109 5.5-.066.479 2.886.937 2.844-.125-.078-1.969.264-3.513.328-4.5.035-.547.25-1.875.344-3.208.011-.018.295-.018.306 0 .094 1.333.308 2.661.344 3.208.064.987.406 2.531.328 4.5-.042 1.062 2.91.604 2.844.125-.297-2.156-.172-5.156-.11-5.5z"/><path fill="#292F33" d="M30.54 36c.499-.406-.041-1.161-1.42-1.402-1.163-.203-2.2-.032-2.363.35-.212.493-.05 1.052-.05 1.052h3.833zm-9.117 0c-.499-.406.041-1.161 1.42-1.402 1.163-.203 2.2-.032 2.363.35.212.494.05 1.053.05 1.053L21.423 36z"/><path fill="#4289C1" d="M30.797 14.766C29.578 14 28 14 28 14h-4s-1.578 0-2.797.766c-1.201.754-1.656 3-1.656 3l2.203.688.109 5.546h8.281l.109-5.547 2.203-.688c.001.001-.454-2.245-1.655-2.999z"/><path fill="#AF7E57" d="M24 10.042v4c0 .682.896 1.305 2 1.305s2-.668 2-1.305v-4h-4z"/><path fill="#9B6A49" d="M24 14.042c0 .682.896 1.305 2 1.305s2-.668 2-1.305V11l-4 .019v3.023z"/><path fill="#AF7E57" d="M31 3H21v6c0 2.762 2.238 5 5 5s5-2.237 5-5V3z"/><path fill="#60352A" d="M21 2.5L20.5 5l.5 2c2.333 0 2.85-2.412 2.965-3.488C24.004 4.588 24.779 7 31 7l.5-2-.5-2.5H21z"/><path fill="#915A34" d="M28 12h-4s0 1 2 1 2-1 2-1z"/><circle fill="#662113" cx="23.5" cy="8.5" r=".5"/><circle fill="#662113" cx="28.5" cy="8.5" r=".5"/><path fill="#915A34" d="M25 10h2s0 1-1 1-1-1-1-1z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f469-1f3fd-200d-1f91d-200d-1f468-1f3ff.svg b/public/emoji/1f469-1f3fd-200d-1f91d-200d-1f468-1f3ff.svg
new file mode 100644
index 0000000000000000000000000000000000000000..edfadd0959b99701005e220f9f9be105add5186e
--- /dev/null
+++ b/public/emoji/1f469-1f3fd-200d-1f91d-200d-1f468-1f3ff.svg
@@ -0,0 +1 @@
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#963B22" d="M11 0C9.736 0 8.565.393 7.598 1.061 7.401 1.031 7.205 1 7 1 4.791 1 3 2.791 3 5v6c0 3.866 3.134 7 7 7s7-3.134 7-7V6.001C17 2.687 14.314 0 11 0z"/><path fill="#D4AB88" d="M11.213 34.309c-.052.682 1.849.953 2.129.791.299-.173-.698-.623-.702-.977-.019-1.797.53-1.648.311-3.492.443-1.625.672-2.592.672-3.131 0-1.25-3.312-.766-3.312 0 0 .344.365 1.681.417 3.131-.313 1.659.641 1.615.485 3.678zm-2.448 0c.052.682-1.849.953-2.129.791-.299-.173.698-.623.702-.977.019-1.797-.53-1.648-.311-3.492-.443-1.625-.672-2.592-.672-3.131 0-1.25 3.313-.766 3.313 0 0 .344-.365 1.681-.417 3.131.311 1.659-.642 1.615-.486 3.678z"/><path fill="#CC9B7A" d="M10.311 27.5c0 .206.13.771.246 1.5h2.817c.164-.689.249-1.175.249-1.5 0-1.25-3.312-.766-3.312 0zm-3.957 0c0 .325.085.811.249 1.5H9.42c.116-.729.247-1.294.247-1.5 0-.766-3.313-1.25-3.313 0z"/><path fill="#D4AB88" d="M3.258 26.96c-.258.124-.503-.097-.619-.227-.328-.367-.583-1.246-.282-2.209.303-.973.6-2.384 1.199-4.002.081-.22.499-3.764.805-4.445.197-.437 1.28-.896 1.81-.807.529.089.246.651.105 1.13 0 0-.916 3.953-1.016 4.296-.316 1.079-1.624 2.918-1.565 4.237.031.692.06 1.255-.339 1.246-.049.362-.003.735-.098.781zm14.984-.2c.271.091.487-.159.586-.302.279-.405.422-1.309.004-2.227-.423-.927-.894-2.29-1.69-3.821-.108-.208-.966-3.672-1.355-4.309-.25-.409-1.382-.729-1.897-.574-.513.154-.162.676.037 1.134 0 0 1.403 3.807 1.546 4.135.449 1.031 1.977 2.691 2.082 4.008.056.69.097 1.253.492 1.194.094.353.095.729.195.762z"/><path fill="#292F33" d="M13.945 36c.305 0 .372-.418.089-.629-.379-.285-.88-1.371-1.561-1.371h-1.245c-.229 0-.49 1.209-.41 1.48.102.345.433.52.812.52h2.315zm-7.913 0c-.305 0-.372-.418-.089-.629.379-.285.88-1.371 1.561-1.371h1.245c.229 0 .49 1.209.41 1.48-.102.345-.433.52-.811.52H6.032z"/><path fill="#E75A70" d="M14.354 17.771L16 16c-1.438-1.792-4-2-4-2H8s-2.562.208-4 2l1.646 1.771S6.25 20.688 6.25 21 5 25.75 5 28h10c0-2.25-1.25-6.688-1.25-7s.604-3.229.604-3.229z"/><path fill="#DA2F47" d="M13.75 21c0-.106.07-.512.161-1H6.089c.092.488.161.894.161 1 0 .083-.122.509-.223 1h7.942c-.108-.558-.219-.917-.219-1z"/><path fill="#D4AB88" d="M8 11v4c0 1.104.896 2 2 2s2-.896 2-2v-4H8z"/><path fill="#CC9B7A" d="M12 11l-4 .019V15s2 1 4 0v-4z"/><path fill="#D4AB88" d="M15 3H5v6c0 2.762 2.238 5 5 5s5-2.237 5-5V3z"/><path fill="#963B22" d="M15 2H5L4 7c4 0 4-4 4-4s0 4 8 4l-1-5z"/><path fill="#DF1F32" d="M12 12H8s0 1 2 1 2-1 2-1z"/><circle fill="#662113" cx="7.5" cy="8.5" r=".5"/><circle fill="#662113" cx="12.5" cy="8.5" r=".5"/><path fill="#C1694F" d="M9 10h2s0 1-1 1-1-1-1-1z"/><path fill="#0B0200" d="M26.5 0c-1.187 0-2.282.379-3.181 1.018C21.473 1.114 20 2.629 20 4.5c0 1.542.007 3.484 2.038 4.208C23.036 10.094 24.66 11 26.5 11c3.037 0 5.5-2.462 5.5-5.499C32 2.463 29.537 0 26.5 0z"/><path fill="#7C533E" d="M18.117 26.76c-.271.091-.487-.159-.586-.302-.279-.405-.422-1.309-.004-2.227.423-.927.702-2.072 1.69-3.821.115-.204.494-2.746 1.242-4.354.202-.435 1.495-.684 2.009-.529.513.154-.005.98-.037 1.134-.344 1.651-1.305 4.077-1.45 4.404-.8 1.806-1.965 2.389-2.071 3.706-.055.69-.205 1.286-.6 1.228-.092.352-.094.728-.193.761zm14.595.204c.257.126.504-.094.62-.222.33-.365.591-1.242.296-2.208-.297-.975-.424-2.146-1.174-4.01-.087-.217-.129-2.787-.66-4.479-.143-.457-1.392-.875-1.922-.789-.529.086-.124.972-.112 1.129.124 1.682.758 4.213.859 4.556.556 1.895 1.634 2.627 1.566 3.946-.036.692.034 1.302.433 1.296.048.363 0 .735.094.781z"/><path fill="#AAB8C2" d="M29.555 29.5c.5-2.734.422-6.5.422-6.5h-7.963s-.078 3.766.422 6.5c.063.344.188 3.344-.109 5.5-.066.479 2.886.937 2.844-.125-.078-1.969.264-3.513.328-4.5.035-.547.25-1.875.344-3.208.011-.018.295-.018.306 0 .094 1.333.308 2.661.344 3.208.064.987.406 2.531.328 4.5-.042 1.062 2.91.604 2.844.125-.297-2.156-.172-5.156-.11-5.5z"/><path fill="#292F33" d="M30.54 36c.499-.406-.041-1.161-1.42-1.402-1.163-.203-2.2-.032-2.363.35-.212.493-.05 1.052-.05 1.052h3.833zm-9.117 0c-.499-.406.041-1.161 1.42-1.402 1.163-.203 2.2-.032 2.363.35.212.494.05 1.053.05 1.053L21.423 36z"/><path fill="#4289C1" d="M30.797 14.766C29.578 14 28 14 28 14h-4s-1.578 0-2.797.766c-1.201.754-1.656 3-1.656 3l2.203.688.109 5.546h8.281l.109-5.547 2.203-.688c.001.001-.454-2.245-1.655-2.999z"/><path fill="#7C533E" d="M24 10.042v4c0 .682.896 1.305 2 1.305s2-.668 2-1.305v-4h-4z"/><path fill="#664131" d="M24 14.042c0 .682.896 1.305 2 1.305s2-.668 2-1.305V11l-4 .019v3.023z"/><path fill="#7C533E" d="M31 3H21v6c0 2.762 2.238 5 5 5s5-2.237 5-5V3z"/><path fill="#0B0200" d="M21 2.5L20.5 5l.5 2c2.333 0 2.85-2.412 2.965-3.488C24.004 4.588 24.779 7 31 7l.5-2-.5-2.5H21z"/><path fill="#3D2E24" d="M28 12h-4s0 1 2 1 2-1 2-1z"/><circle cx="23.5" cy="8.5" r=".5"/><circle cx="28.5" cy="8.5" r=".5"/><path fill="#3D2E24" d="M25 10h2s0 1-1 1-1-1-1-1z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f469-1f3fd-200d-1f91d-200d-1f469-1f3fb.svg b/public/emoji/1f469-1f3fd-200d-1f91d-200d-1f469-1f3fb.svg
new file mode 100644
index 0000000000000000000000000000000000000000..6a909b143e69747542898e836f86b998baa341d7
--- /dev/null
+++ b/public/emoji/1f469-1f3fd-200d-1f91d-200d-1f469-1f3fb.svg
@@ -0,0 +1 @@
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#963B22" d="M11 0C9.736 0 8.565.393 7.598 1.061 7.401 1.031 7.205 1 7 1 4.791 1 3 2.791 3 5v6c0 3.866 3.134 7 7 7s7-3.134 7-7V6.001C17 2.687 14.314 0 11 0z"/><path fill="#D4AB88" d="M11.213 34.309c-.052.682 1.849.953 2.129.791.299-.173-.698-.623-.702-.977-.019-1.797.53-1.648.311-3.492.443-1.625.672-2.592.672-3.131 0-1.25-3.312-.766-3.312 0 0 .344.365 1.681.417 3.131-.313 1.659.641 1.615.485 3.678zm-2.448 0c.052.682-1.849.953-2.129.791-.299-.173.698-.623.702-.977.019-1.797-.53-1.648-.311-3.492-.443-1.625-.672-2.592-.672-3.131 0-1.25 3.313-.766 3.313 0 0 .344-.365 1.681-.417 3.131.311 1.659-.642 1.615-.486 3.678z"/><path fill="#CC9B7A" d="M10.311 27.5c0 .206.13.771.246 1.5h2.817c.164-.689.249-1.175.249-1.5 0-1.25-3.312-.766-3.312 0zm-3.957 0c0 .325.085.811.249 1.5H9.42c.116-.729.247-1.294.247-1.5 0-.766-3.313-1.25-3.313 0z"/><path fill="#D4AB88" d="M3.258 26.96c-.258.124-.503-.097-.619-.227-.328-.367-.583-1.246-.282-2.209.303-.973.6-2.384 1.199-4.002.081-.22.499-3.764.805-4.445.197-.437 1.28-.896 1.81-.807.529.089.246.651.105 1.13 0 0-.916 3.953-1.016 4.296-.316 1.079-1.624 2.918-1.565 4.237.031.692.06 1.255-.339 1.246-.049.362-.003.735-.098.781zm14.984-.2c.271.091.487-.159.586-.302.279-.405.422-1.309.004-2.227-.423-.927-.894-2.29-1.69-3.821-.108-.208-.966-3.672-1.355-4.309-.25-.409-1.382-.729-1.897-.574-.513.154-.162.676.037 1.134 0 0 1.403 3.807 1.546 4.135.449 1.031 1.977 2.691 2.082 4.008.056.69.097 1.253.492 1.194.094.353.095.729.195.762z"/><path fill="#292F33" d="M13.945 36c.305 0 .372-.418.089-.629-.379-.285-.88-1.371-1.561-1.371h-1.245c-.229 0-.49 1.209-.41 1.48.102.345.433.52.812.52h2.315zm-7.913 0c-.305 0-.372-.418-.089-.629.379-.285.88-1.371 1.561-1.371h1.245c.229 0 .49 1.209.41 1.48-.102.345-.433.52-.811.52H6.032z"/><path fill="#E75A70" d="M14.354 17.771L16 16c-1.438-1.792-4-2-4-2H8s-2.562.208-4 2l1.646 1.771S6.25 20.688 6.25 21 5 25.75 5 28h10c0-2.25-1.25-6.688-1.25-7s.604-3.229.604-3.229z"/><path fill="#DA2F47" d="M13.75 21c0-.106.07-.512.161-1H6.089c.092.488.161.894.161 1 0 .083-.122.509-.223 1h7.942c-.108-.558-.219-.917-.219-1z"/><path fill="#D4AB88" d="M8 11v4c0 1.104.896 2 2 2s2-.896 2-2v-4H8z"/><path fill="#CC9B7A" d="M12 11l-4 .019V15s2 1 4 0v-4z"/><path fill="#D4AB88" d="M15 3H5v6c0 2.762 2.238 5 5 5s5-2.237 5-5V3z"/><path fill="#963B22" d="M15 2H5L4 7c4 0 4-4 4-4s0 4 8 4l-1-5z"/><path fill="#DF1F32" d="M12 12H8s0 1 2 1 2-1 2-1z"/><circle fill="#662113" cx="7.5" cy="8.5" r=".5"/><circle fill="#662113" cx="12.5" cy="8.5" r=".5"/><path fill="#C1694F" d="M9 10h2s0 1-1 1-1-1-1-1z"/><path fill="#292F33" d="M33 6.001C33 2.687 30.313 0 27 0c-1.264 0-2.435.393-3.402 1.061C23.401 1.031 23.205 1 23 1c-2.209 0-4 1.791-4 4v6h14V6.001z"/><path fill="#F7DECE" d="M27.213 34.309c-.052.682 1.849.953 2.129.791.299-.173-.698-.623-.702-.977-.019-1.797.53-1.648.311-3.492.443-1.625.672-2.592.672-3.131 0-1.25-3.312-.766-3.312 0 0 .344.365 1.681.417 3.131-.313 1.659.641 1.615.485 3.678zm-2.448 0c.052.682-1.849.953-2.129.791-.299-.173.698-.623.702-.977.019-1.797-.53-1.648-.311-3.492-.443-1.625-.672-2.592-.672-3.131 0-1.25 3.312-.766 3.312 0 0 .344-.365 1.681-.417 3.131.312 1.659-.642 1.615-.485 3.678z"/><path fill="#EEC2AD" d="M26.311 27.5c0 .206.13.771.246 1.5h2.817c.164-.689.249-1.175.249-1.5 0-1.25-3.312-.766-3.312 0zm-3.957 0c0 .325.085.811.249 1.5h2.817c.116-.729.247-1.294.247-1.5 0-.766-3.313-1.25-3.313 0z"/><path fill="#F7DECE" d="M18.117 26.76c-.271.091-.487-.159-.586-.302-.279-.405-.422-1.309-.004-2.227.423-.927.702-2.072 1.69-3.821.115-.204.494-2.746 1.242-4.354.202-.435 1.495-.685 2.009-.529.513.154-.005.98-.037 1.134-.344 1.651-1.305 4.077-1.45 4.404-.8 1.806-1.965 2.389-2.071 3.706-.056.69-.205 1.286-.6 1.228-.092.352-.094.728-.193.761zm14.595.204c.257.126.504-.094.62-.222.33-.365.591-1.242.296-2.208-.297-.975-.424-2.146-1.174-4.01-.088-.217-.129-2.787-.66-4.479-.143-.458-1.392-.875-1.922-.789-.529.086-.124.972-.112 1.129.124 1.682.758 4.213.859 4.556.556 1.895 1.634 2.626 1.566 3.946-.036.692.034 1.302.433 1.296.048.363 0 .735.094.781z"/><path fill="#292F33" d="M29.945 36c.305 0 .372-.418.089-.629-.379-.285-.88-1.371-1.561-1.371h-1.245c-.229 0-.49 1.209-.41 1.48.102.345.433.52.812.52h2.315zm-7.913 0c-.305 0-.372-.418-.089-.629.379-.285.88-1.371 1.561-1.371h1.245c.229 0 .49 1.209.41 1.48-.102.345-.433.52-.811.52h-2.316z"/><path fill="#9268CA" d="M30.354 17.771L32 16c-1.438-1.792-4-2-4-2h-4s-2.562.208-4 2l1.646 1.771s.604 2.917.604 3.229S21 25.75 21 28h10c0-2.25-1.25-6.688-1.25-7s.604-3.229.604-3.229z"/><path fill="#AA8ED6" d="M29.75 21c0-.106.07-.512.161-1h-7.822c.092.488.161.894.161 1 0 .083-.122.509-.223 1h7.942c-.108-.558-.219-.917-.219-1z"/><path fill="#F7DECE" d="M24 11v4c0 1.104.896 2 2 2s2-.896 2-2v-4h-4z"/><path fill="#EEC2AD" d="M28 11l-4 .019V15s2 1 4 0v-4z"/><path fill="#F7DECE" d="M31 3H21v6c0 2.762 2.238 5 5 5s5-2.237 5-5V3z"/><path fill="#292F33" d="M31 2H21l-1 5c4 0 4-4 4-4s0 4 8 4l-1-5z"/><path fill="#DF1F32" d="M28 12h-4s0 1 2 1 2-1 2-1z"/><circle fill="#662113" cx="23.5" cy="8.5" r=".5"/><circle fill="#662113" cx="28.5" cy="8.5" r=".5"/><path fill="#C1694F" d="M25 10h2s0 1-1 1-1-1-1-1z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f469-1f3fd-200d-1f91d-200d-1f469-1f3fc.svg b/public/emoji/1f469-1f3fd-200d-1f91d-200d-1f469-1f3fc.svg
new file mode 100644
index 0000000000000000000000000000000000000000..9ec331669cc026de541e69cf9d9756e5fc9819d7
--- /dev/null
+++ b/public/emoji/1f469-1f3fd-200d-1f91d-200d-1f469-1f3fc.svg
@@ -0,0 +1 @@
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#963B22" d="M11 0C9.736 0 8.565.393 7.598 1.061 7.401 1.031 7.205 1 7 1 4.791 1 3 2.791 3 5v6c0 3.866 3.134 7 7 7s7-3.134 7-7V6.001C17 2.687 14.314 0 11 0z"/><path fill="#D4AB88" d="M11.213 34.309c-.052.682 1.849.953 2.129.791.299-.173-.698-.623-.702-.977-.019-1.797.53-1.648.311-3.492.443-1.625.672-2.592.672-3.131 0-1.25-3.312-.766-3.312 0 0 .344.365 1.681.417 3.131-.313 1.659.641 1.615.485 3.678zm-2.448 0c.052.682-1.849.953-2.129.791-.299-.173.698-.623.702-.977.019-1.797-.53-1.648-.311-3.492-.443-1.625-.672-2.592-.672-3.131 0-1.25 3.313-.766 3.313 0 0 .344-.365 1.681-.417 3.131.311 1.659-.642 1.615-.486 3.678z"/><path fill="#CC9B7A" d="M10.311 27.5c0 .206.13.771.246 1.5h2.817c.164-.689.249-1.175.249-1.5 0-1.25-3.312-.766-3.312 0zm-3.957 0c0 .325.085.811.249 1.5H9.42c.116-.729.247-1.294.247-1.5 0-.766-3.313-1.25-3.313 0z"/><path fill="#D4AB88" d="M3.258 26.96c-.258.124-.503-.097-.619-.227-.328-.367-.583-1.246-.282-2.209.303-.973.6-2.384 1.199-4.002.081-.22.499-3.764.805-4.445.197-.437 1.28-.896 1.81-.807.529.089.246.651.105 1.13 0 0-.916 3.953-1.016 4.296-.316 1.079-1.624 2.918-1.565 4.237.031.692.06 1.255-.339 1.246-.049.362-.003.735-.098.781zm14.984-.2c.271.091.487-.159.586-.302.279-.405.422-1.309.004-2.227-.423-.927-.894-2.29-1.69-3.821-.108-.208-.966-3.672-1.355-4.309-.25-.409-1.382-.729-1.897-.574-.513.154-.162.676.037 1.134 0 0 1.403 3.807 1.546 4.135.449 1.031 1.977 2.691 2.082 4.008.056.69.097 1.253.492 1.194.094.353.095.729.195.762z"/><path fill="#292F33" d="M13.945 36c.305 0 .372-.418.089-.629-.379-.285-.88-1.371-1.561-1.371h-1.245c-.229 0-.49 1.209-.41 1.48.102.345.433.52.812.52h2.315zm-7.913 0c-.305 0-.372-.418-.089-.629.379-.285.88-1.371 1.561-1.371h1.245c.229 0 .49 1.209.41 1.48-.102.345-.433.52-.811.52H6.032z"/><path fill="#E75A70" d="M14.354 17.771L16 16c-1.438-1.792-4-2-4-2H8s-2.562.208-4 2l1.646 1.771S6.25 20.688 6.25 21 5 25.75 5 28h10c0-2.25-1.25-6.688-1.25-7s.604-3.229.604-3.229z"/><path fill="#DA2F47" d="M13.75 21c0-.106.07-.512.161-1H6.089c.092.488.161.894.161 1 0 .083-.122.509-.223 1h7.942c-.108-.558-.219-.917-.219-1z"/><path fill="#D4AB88" d="M8 11v4c0 1.104.896 2 2 2s2-.896 2-2v-4H8z"/><path fill="#CC9B7A" d="M12 11l-4 .019V15s2 1 4 0v-4z"/><path fill="#D4AB88" d="M15 3H5v6c0 2.762 2.238 5 5 5s5-2.237 5-5V3z"/><path fill="#963B22" d="M15 2H5L4 7c4 0 4-4 4-4s0 4 8 4l-1-5z"/><path fill="#DF1F32" d="M12 12H8s0 1 2 1 2-1 2-1z"/><circle fill="#662113" cx="7.5" cy="8.5" r=".5"/><circle fill="#662113" cx="12.5" cy="8.5" r=".5"/><path fill="#C1694F" d="M9 10h2s0 1-1 1-1-1-1-1z"/><path fill="#FFE51E" d="M33 6.001C33 2.687 30.313 0 27 0c-1.264 0-2.435.393-3.402 1.061C23.401 1.031 23.205 1 23 1c-2.209 0-4 1.791-4 4v6h14V6.001z"/><path fill="#F3D2A2" d="M27.213 34.309c-.052.682 1.849.953 2.129.791.299-.173-.698-.623-.702-.977-.019-1.797.53-1.648.311-3.492.443-1.625.672-2.592.672-3.131 0-1.25-3.312-.766-3.312 0 0 .344.365 1.681.417 3.131-.313 1.659.641 1.615.485 3.678zm-2.448 0c.052.682-1.849.953-2.129.791-.299-.173.698-.623.702-.977.019-1.797-.53-1.648-.311-3.492-.443-1.625-.672-2.592-.672-3.131 0-1.25 3.312-.766 3.312 0 0 .344-.365 1.681-.417 3.131.312 1.659-.642 1.615-.485 3.678z"/><path fill="#E2C196" d="M26.311 27.5c0 .206.13.771.246 1.5h2.817c.164-.689.249-1.175.249-1.5 0-1.25-3.312-.766-3.312 0zm-3.957 0c0 .325.085.811.249 1.5h2.817c.116-.729.247-1.294.247-1.5 0-.766-3.313-1.25-3.313 0z"/><path fill="#F3D2A2" d="M18.117 26.76c-.271.091-.487-.159-.586-.302-.279-.405-.422-1.309-.004-2.227.423-.927.702-2.072 1.69-3.821.115-.204.494-2.746 1.242-4.354.202-.435 1.495-.685 2.009-.529.513.154-.005.98-.037 1.134-.344 1.651-1.305 4.077-1.45 4.404-.8 1.806-1.965 2.389-2.071 3.706-.056.69-.205 1.286-.6 1.228-.092.352-.094.728-.193.761zm14.595.204c.257.126.504-.094.62-.222.33-.365.591-1.242.296-2.208-.297-.975-.424-2.146-1.174-4.01-.088-.217-.129-2.787-.66-4.479-.143-.458-1.392-.875-1.922-.789-.529.086-.124.972-.112 1.129.124 1.682.758 4.213.859 4.556.556 1.895 1.634 2.626 1.566 3.946-.036.692.034 1.302.433 1.296.048.363 0 .735.094.781z"/><path fill="#292F33" d="M29.945 36c.305 0 .372-.418.089-.629-.379-.285-.88-1.371-1.561-1.371h-1.245c-.229 0-.49 1.209-.41 1.48.102.345.433.52.812.52h2.315zm-7.913 0c-.305 0-.372-.418-.089-.629.379-.285.88-1.371 1.561-1.371h1.245c.229 0 .49 1.209.41 1.48-.102.345-.433.52-.811.52h-2.316z"/><path fill="#9268CA" d="M30.354 17.771L32 16c-1.438-1.792-4-2-4-2h-4s-2.562.208-4 2l1.646 1.771s.604 2.917.604 3.229S21 25.75 21 28h10c0-2.25-1.25-6.688-1.25-7s.604-3.229.604-3.229z"/><path fill="#AA8ED6" d="M29.75 21c0-.106.07-.512.161-1h-7.822c.092.488.161.894.161 1 0 .083-.122.509-.223 1h7.942c-.108-.558-.219-.917-.219-1z"/><path fill="#F3D2A2" d="M24 11v4c0 1.104.896 2 2 2s2-.896 2-2v-4h-4z"/><path fill="#E2C196" d="M28 11l-4 .019V15s2 1 4 0v-4z"/><path fill="#F3D2A2" d="M31 3H21v6c0 2.762 2.238 5 5 5s5-2.237 5-5V3z"/><path fill="#FFE51E" d="M31 2H21l-1 5c4 0 4-4 4-4s0 4 8 4l-1-5z"/><path fill="#DF1F32" d="M28 12h-4s0 1 2 1 2-1 2-1z"/><circle fill="#662113" cx="23.5" cy="8.5" r=".5"/><circle fill="#662113" cx="28.5" cy="8.5" r=".5"/><path fill="#C1694F" d="M25 10h2s0 1-1 1-1-1-1-1z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f469-1f3fd-200d-1f9af.svg b/public/emoji/1f469-1f3fd-200d-1f9af.svg
new file mode 100644
index 0000000000000000000000000000000000000000..c17b0ed288847f61dae52d75071c4cc1bfe73dd0
--- /dev/null
+++ b/public/emoji/1f469-1f3fd-200d-1f9af.svg
@@ -0,0 +1 @@
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#CCD6DD" d="M12.154 19.416l.802.598L3.988 32.04l-.802-.598z"/><path fill="#DD2E44" d="M3.186 31.444L1.093 34.25c-.164.22-.119.535.102.7s.535.119.7-.102l2.092-2.806-.801-.598z"/><path fill="#292F33" d="M11.359 21.319c-.22-.164-.266-.479-.102-.7l1.793-2.405c.164-.22.479-.266.7-.102.22.164.266.479.102.7l-1.793 2.405c-.164.221-.479.267-.7.102z"/><path fill="#292F33" d="M11.76 21.618l-.802-.598c-.22-.164-.266-.479-.102-.7.164-.22.479-.266.7-.102l.802.598c.22.164.266.479.102.7-.164.221-.479.267-.7.102z"/><path fill="#99AAB5" d="M.598 35.751c-.22-.164-.266-.479-.102-.7.164-.22.479-.266.7-.102.22.164.266.479.102.7-.165.22-.48.266-.7.102z"/><path fill="#292F33" d="M20.476 35.056s.061-.144.061-.448c0-.303-.156-.869-.199-.95s-.09-.139-.194-.11c-.079.022-.685.326-1.072.341-.719.027-1.066-.618-1.066-.618s-.399.228-.716.413c-.318.185-.687.462-.959.627-.232.141-.497.208-.771.243s-.497.023-.563.029-.621-.061-.641.488l.004.16s.987.397 2.344.397c1.358 0 1.566-.399 2.444-.399s1.328-.173 1.328-.173z"/><path fill="#292F33" d="M18.726 35.926c-.058-.052-.123-.22-.173-.243s-.57.089-.813.146c-.243.058-.66.156-1.152.156-.491 0-1.126-.144-1.519-.243-.393-.098-.701-.23-.77-.274-.07-.043-.05-.063-.046-.096.004-.033.052-.202.052-.202s.251.132.678.237c.426.104.851.183 1.584.183s1.193-.109 1.574-.211c.475-.128 1.163-.267 1.656-.267.38 0 .648-.112.751-.139.024-.006.046.012.046.037v.649c0 .042-.035.139-.146.162-.112.024-1.664.157-1.722.105zm12.221-5.012s-.072-.142-.307-.343c-.235-.2-.777-.454-.868-.473-.091-.02-.167-.022-.213.078-.035.075-.199.746-.444 1.056-.454.575-1.184.418-1.184.418s-.087.46-.153.828c-.067.368-.096.838-.148 1.158-.044.273-.167.523-.322.758-.154.236-.31.4-.35.456-.039.055-.457.441-.045.82l.127.103s.96-.502 1.857-1.555c.897-1.052.726-1.477 1.306-2.158.581-.682.744-1.146.744-1.146z"/><path fill="#292F33" d="M30.465 32.846c-.078.01-.252-.05-.303-.026-.051.024-.308.5-.424.727-.116.226-.316.615-.64.996s-.856.778-1.192 1.018c-.336.24-.642.391-.721.416-.08.025-.082-.003-.104-.028-.022-.025-.122-.174-.122-.174s.269-.107.631-.369c.363-.261.705-.538 1.189-1.107s.704-.997.876-1.36c.214-.452.562-1.078.887-1.46.251-.295.342-.576.388-.674.011-.023.04-.028.059-.012l.503.429c.033.028.085.118.029.22-.055.103-.977 1.394-1.056 1.404z"/><path fill="#D4AB88" d="M21.541 1.384c-1.593-.627-4.077.182-4.365 2.043-.287 1.848.239 4.747 1.863 4.572 1.702-.184 3.448-.554 4.138-2.307s-.043-3.681-1.636-4.308z"/><path fill="#D4AB88" d="M22.724 6.143c2.318-2.723-3.266-2.458-3.266-2.458-1.057.038-.329 1.799-.827 2.761-.341.665 1.095 1.018 1.095 1.018s.659-.01.694.79v.007c.008.204-.013.445-.108.769-.473 1.601 1.677 2.582 2.149.978.187-.635.114-1.193.02-1.708l-.009-.046c-.143-.766-.321-1.437.252-2.111z"/><path fill="#963B22" d="M23.361 2.026C22.3.784 20.841.269 18.342 1.235c-2.183.844-1.481 2.579-.972 2.282 1.402-.817 2.332-.119 3.046 1.021.208-.56 1.122-.904 1.307-.085.208.921-.647 1.322-.533 1.573.038.084-.043-.076 0 0 .547.96 1.437 1.262 1.437 1.262s.337.132.912-1.001.875-3.028-.178-4.261z"/><path fill="#963B22" d="M22.787 3.332c2.163.467 1.275 3.839 1.487 5.08.261 1.528 1.761 1.582 1.761 1.582s-.247-1.064-.116-2.177c.183-1.543 1.189-2.789.127-4.296-1.356-1.924-4.604-.479-3.259-.189z"/><path fill="#2A6797" d="M18.598 34.203c-1.266.109-1.853-.233-1.721-.416.165-.228.128-.397.13-.536.028-2.441-.472-5.991-.472-5.991 0-.348.003-.813.312-1.562.778-1.883 3.951-7.69 3.951-7.69.548-.958 1.771-1.293 2.728-.744.959.548 1.122 1.405.744 2.729-.715 2.508-2.965 5.602-3.903 7.477.224 2.121-.174 3.853.035 5.857.032.288-.538.767-1.804.876z"/><path fill="#4289C1" d="M29.333 31.931c-.364.553-.97.942-1.598.838-1.269-1.924-4.955-5.321-4.955-5.321-.241-.25-.562-.587-.86-1.341-.748-1.895-2.498-8.277-2.498-8.277-.272-1.07.376-2.16 1.446-2.43 1.07-.272 1.783.232 2.43 1.446 1.227 2.301 1.757 6.09 2.384 8.09 1.87 1.568 2.383 3.603 4.275 5.151-.065.857-.261 1.291-.624 1.844z"/><path fill="#9268CA" d="M25.536 20s0 1-2 1h-4.898c-.415-2 .554-3.818-.102-6.5-.848-3.46 2.406-6.874 3.818-6.42 1.846.594 2.693 2.641 2.932 5.858.238 3.216.25 6.062.25 6.062z"/><path fill="#D4AB88" d="M20.142 11.64c-.783 1.171-2.299 3.804-2.526 3.904-1.206.531-2.551 1.215-3.448 1.307-.65.067-1.256.678-1.51.922-.316.304-.752 1.006-.633 1.369.074.226.57.489.741.254.333-.457.974-.533 1.492-.886 1.039-.71 3.285-.758 4.56-1.7.528-.39 1.583-1.134 3.111-3.722-.591-.426-1.787-1.448-1.787-1.448z"/><path fill="#292F33" d="M14.21 17.018c.477.152.847.624.557 1.114-.29.49.403.185.512-.045.223-.468-.178-1.158-.646-1.314-.468-.156-.746.142-.423.245z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f469-1f3fd-200d-1f9bc.svg b/public/emoji/1f469-1f3fd-200d-1f9bc.svg
new file mode 100644
index 0000000000000000000000000000000000000000..798345314916cfe2425944c4627912fcaf299ec4
--- /dev/null
+++ b/public/emoji/1f469-1f3fd-200d-1f9bc.svg
@@ -0,0 +1 @@
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#292F33" d="M8.22 28.583s.108-.118.211-.409c.104-.291.147-.888.133-.98-.014-.092-.039-.164-.148-.171-.083-.006-.768.08-1.145-.039-.699-.22-.812-.957-.812-.957s-.46.083-.829.152c-.368.069-.818.209-1.134.274-.271.056-.548.03-.823-.03-.275-.06-.485-.147-.55-.165-.066-.017-.575-.27-.782.25l-.051.154s.811.718 2.114 1.182c1.303.464 1.639.152 2.481.452.843.3 1.335.287 1.335.287z"/><path fill="#292F33" d="M6.243 28.821c-.038-.07-.043-.253-.083-.292-.04-.039-.577-.11-.83-.137-.253-.027-.687-.076-1.158-.244-.471-.168-1.032-.523-1.375-.752-.343-.228-.594-.46-.646-.526s-.026-.078-.011-.107.119-.176.119-.176.196.213.569.459.754.467 1.458.717c.703.25 1.182.303 1.583.335.499.039 1.207.141 1.681.309.365.13.66.114.768.123.025.002.04.027.032.051l-.222.623c-.014.041-.081.121-.196.105s-1.651-.419-1.689-.488z"/><path fill="#4289C1" d="M25.097 17.21c.069 1.432-.391 2.922-1.505 3.202-1.066.268-3.056-.151-3.056-.151s-.698.408-.531 1.189c.095.444.257.67.201.712-.05.038-.486-.022-.684-.032-.528-.027-1.1-.211-2.073-.484-.974-.273-1.421-.285-2.481-.577-1.175-.324-1.986-.835-2.33-1.956-.293-.956.277-2.123 1.654-2.63 1.12-.412 4.288.195 5.488.311 1.201.118 5.257-.829 5.317.416z"/><path fill="#4289C1" d="M7.127 27.177c-.646-.143-1.069-.49-1.426-1.025 1.678-1.899 3.787-7.307 3.787-7.307.695-1.744 1.62-2.914 3.252-2.851 2.317.089 5.748.535 5.748.535 2.276.329.671.789 1.305 1.693.635.903-1.294 1.99-2.786 1.891-2.602-.173-3.877-.453-5.522.846-.8 2.306-2.071 4.087-2.844 6.406-.489.079-.868-.045-1.514-.188z"/><path fill="#D4AB88" d="M24.879.905c-1.341-.8-3.695-.439-4.23 1.193-.531 1.621-.487 4.307 1 4.389 1.559.086 3.185.011 4.064-1.464.88-1.474.507-3.318-.834-4.118z"/><path fill="#D4AB88" d="M25.24 5.363c2.488-2.108-2.576-2.694-2.576-2.694-.957-.122-.563 1.57-1.152 2.362-.405.548.834 1.078.834 1.078s.594.089.508.813l-.001.007c-.023.184-.078.399-.211.676-.662 1.37 1.127 2.571 1.789 1.198.262-.544.279-1.056.27-1.534l-.001-.042c-.015-.712-.076-1.343.54-1.864z"/><path fill="#963B22" d="M26.422 1.752C25.651.478 24.415-.201 22.023.298c-2.089.436-1.714 2.102-1.212 1.91 1.382-.528 2.116.237 2.589 1.369.27-.473 1.143-.648 1.189.117.051.859-.778 1.094-.712 1.337.022.082-.028-.075 0 0 .35.945 1.106 1.348 1.106 1.348s.283.169.969-.766c.684-.934 1.235-2.595.47-3.861z"/><path fill="#963B22" d="M25.843 2.713c1.875.677.661 2.73.665 3.791.004 1.306 1.158 1.604 1.158 1.604s-.331-.74-.045-1.649c.397-1.26 1.797-2.079 1.069-3.475-.927-1.783-4.012-.692-2.847-.271z"/><path fill="#9268CA" d="M25.778 16.257c-.214 1.304-.659 2.456-.696 3.032-.02.32-.939-.237-1.604-.511-1.782-.735-3.317-1.825-3.317-1.825.398-1.193.696-3.032.149-5.268-.477-1.953 3.106-5.252 4.309-4.634 1.573.807 2.382 1.782 1.904 4.684l-.745 4.522z"/><path fill="#66757F" d="M27.811 10.609l.425-5.242c.022-.274.265-.48.539-.458.274.022.48.265.458.539l-.425 5.242c-.022.274-.265.48-.539.458-.274-.022-.48-.265-.458-.539z"/><path fill="#292F33" d="M16 21v2s-2 0-2 2v3c0 1 1 2 2 2h10c1 0 2-1 2-2v-5c0-1-1-2-2-2H16z"/><path fill="#292F33" d="M22.956 22.559l-9.848-1.736c-.985-.174-.985-.174-.811-1.158.096-.542.617-.907 1.158-.811l9.848 1.736c.542.096.907.617.811 1.158-.173.985-.173.985-1.158.811z"/><path fill="#292F33" d="M25.238 19.023c-.193.922-.557 1.827-2.094 1.537-1.537-.29-1.782 1.225-.824 1.493.958.267 3.252.646 3.921-.446.668-1.092.78-2.139.713-2.606s-1.572-.66-1.716.022z"/><path fill="#DD2E44" d="M23.442 22.896l-10.833-1.91c-.271-.048-.453-.308-.406-.579.048-.271.308-.453.579-.406l10.833 1.91c.271.048.453.308.406.579-.048.271-.309.454-.579.406z"/><path fill="#292F33" d="M28.932 9.642l-1.736 9.848c-.174.985-.174.985-1.158.811-.542-.096-.907-.617-.811-1.158l1.736-9.848c.096-.542.617-.907 1.158-.811.984.173.984.173.811 1.158zm.992-7.49l-.713 4.025c-.087.493-.168 1.007-1.153.834-.542-.096-.882-.715-.763-1.398l.639-3.609c.163-.579.626-1.004 1.167-.909.985.173.91.564.823 1.057z"/><path fill="#DD2E44" d="M29.406 9.224l-1.91 10.833c-.048.271-.308.453-.579.406-.271-.048-.453-.308-.406-.579l1.91-10.833c.048-.271.308-.453.579-.406.272.048.454.308.406.579zm1.243-7.455l-.91 5.18c-.048.271-.308.453-.579.406-.271-.048-.453-.308-.406-.579l.91-5.18c.048-.271.308-.453.579-.406.271.047.454.308.406.579z"/><path fill="#292F33" d="M25.494 18.441l-7.466-1.316c-.747-.132-.747-.132-.617-.869.071-.405.466-.678.877-.606l7.466 1.316c.411.072.688.463.617.869-.13.738-.13.738-.877.606z"/><path fill="#DD2E44" d="M23.123 21.824c.993.175 2.954.521 3.475-2.433s1.506-2.781.985.174-2.237 3.667-4.634 3.245c-1.969-.348-1.796-1.333.174-.986zm-10.33-1.821c1.971.34 2.277 1.422.308 1.07-.873-.156-.984.212-1.251.958-.252.702-.611 1.757-1.144 3.23-.391 1.082-1.279.603-.95-.342.551-1.588 1.061-2.968 1.392-3.847.338-.895.613-1.247 1.645-1.069z"/><path fill="#DD2E44" d="M10.62 24.01c-.258-.094-.547.04-.641.299l-2.052 5.638c-.094.258.04.547.299.641.258.094.547-.04.641-.299l2.052-5.638c.094-.259-.041-.547-.299-.641z"/><path fill="#66757F" d="M8.226 30.588L4.467 29.22c-.258-.094-.393-.382-.299-.641.094-.258.382-.393.641-.299l3.759 1.368c.258.094.393.382.299.641-.094.258-.383.393-.641.299z"/><path fill="#DD2E44" d="M13.844 30.862l2.95-2.95c.194-.194.194-.513 0-.707-.194-.194-.513-.194-.707 0l-2.95 2.95c-.194.194-.194.513 0 .707.194.194.512.194.707 0zM32 34c-.55 0-1-.45-1-1v-3c0-.55.45-1 1-1s1 .45 1 1v3c0 .55-.45 1-1 1z"/><path fill="#DD2E44" d="M13.5 34c-.55 0-1-.45-1-1v-3c0-.55.45-1 1-1s1 .45 1 1v3c0 .55-.45 1-1 1zm12.983-6.005h2c.275 0 .5-.225.5-.5s-.225-.5-.5-.5h-2c-.275 0-.5.225-.5.5s.225.5.5.5z"/><path fill="#DD2E44" d="M31.123 30.803l-2.95-2.95c-.194-.194-.194-.513 0-.707.194-.194.513-.194.707 0l2.95 2.95c.194.194.194.513 0 .707-.194.195-.512.195-.707 0z"/><path fill="#292F33" d="M11.672 16.127c.742.318 2.05.936 2.339 1.047 0 0 .134-.891.49-.891 0 0 .134-.468.223-.668s.356-.134.379.245c.022.379-.089.512-.089.512s.334.423.134 1.002c0 0 .446.067.356.624-.089.557.067.98-.334 1.092-.401.111-1.916.535-1.938-.067-.022-.601-.401-1.069-1.136-1.515-.735-.446-1.27-.936-1.181-1.181.088-.244.133-.467.757-.2z"/><path fill="#DD2E44" d="M26.5 25h-11c-.275 0-.5-.225-.5-.5s.225-.5.5-.5h11c.275 0 .5.225.5.5s-.225.5-.5.5z"/><path fill="#D4AB88" d="M22.691 10.276c-.579 1.455-.982 3.884-1.237 3.894-1.473.062-3.222.614-4.149.559-.672-.04-1.306-.167-1.651-.05-.552.187-1.159.289-1.351.632-.195.348.171.657 1.035.656.635 0 1.045.208 1.674.06.896-.21 4.492.479 5.665-.345.554-.389 1.272-1.95 2.356-4.742-1.084-.476-2.342-.664-2.342-.664z"/><circle fill="#66757F" cx="21.5" cy="31.5" r="4.5"/><circle fill="#66757F" cx="13.5" cy="33.5" r="2.5"/><circle fill="#66757F" cx="32" cy="34" r="2"/><circle fill="#CCD6DD" cx="21.5" cy="31.5" r="2.5"/><circle fill="#CCD6DD" cx="13.5" cy="33.5" r="1.5"/><circle fill="#292F33" cx="32" cy="34" r="1"/><g fill="#292F33"><circle cx="22" cy="30.634" r=".5"/><circle cx="21" cy="32.366" r=".5"/><circle cx="20.634" cy="31" r=".5"/><circle cx="22.366" cy="32" r=".5"/></g><circle fill="#292F33" cx="13.5" cy="33.5" r=".75"/><circle fill="#66757F" cx="32" cy="34" r=".5"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f469-1f3fd-200d-1f9bd.svg b/public/emoji/1f469-1f3fd-200d-1f9bd.svg
new file mode 100644
index 0000000000000000000000000000000000000000..c128386d5462788fdf093c4c71ab45de22257127
--- /dev/null
+++ b/public/emoji/1f469-1f3fd-200d-1f9bd.svg
@@ -0,0 +1 @@
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#292F33" d="M7.981 29.995s.097-.127.175-.426.069-.897.047-.988-.053-.16-.163-.158c-.083.001-.759.146-1.144.061-.716-.158-.892-.883-.892-.883s-.452.123-.812.223c-.361.101-.796.279-1.106.372-.265.079-.543.078-.823.041s-.496-.105-.563-.116c-.067-.011-.597-.219-.757.317l-.037.159s.871.645 2.209.993 1.646.009 2.511.234c.866.226 1.355.171 1.355.171z"/><path fill="#292F33" d="M6.032 30.404c-.044-.066-.065-.248-.109-.284-.043-.036-.585-.059-.839-.064-.254-.005-.691-.016-1.175-.142-.484-.126-1.074-.431-1.436-.629s-.632-.407-.689-.468c-.057-.061-.033-.075-.02-.106.013-.031.103-.186.103-.186s.214.195.607.407.792.399 1.514.587 1.204.199 1.606.195c.501-.004 1.215.035 1.701.162.375.098.668.056.776.056.025 0 .043.023.036.048l-.167.64c-.011.042-.07.128-.186.122-.114-.005-1.678-.272-1.722-.338z"/><path fill="#4289C1" d="M23.802 17.195c.193 1.421-.135 2.945-1.22 3.321-1.039.36-3.058.116-3.058.116s-.66.468-.426 1.231c.133.434.314.645.262.692-.046.042-.486.02-.684.027-.528.02-1.114-.114-2.108-.301s-1.44-.16-2.522-.359c-1.198-.22-2.051-.659-2.491-1.745-.375-.927.091-2.139 1.419-2.764 1.08-.508 4.289-.179 5.495-.168s5.166-1.285 5.333-.05z"/><path fill="#4289C1" d="M6.77 28.689c-.656-.086-1.108-.395-1.51-.897 1.506-2.038 3.136-7.609 3.136-7.609.541-1.798 1.36-3.044 2.992-3.124 2.316-.113 5.772.032 5.772.032 2.296.13.738.727 1.448 1.573.712.845-1.115 2.095-2.611 2.126-2.607.054-3.902-.113-5.428 1.324-.596 2.367-1.706 4.252-2.275 6.63-.48.122-.868.031-1.524-.055z"/><path fill="#D4AB88" d="M21.842.878c-1.405-.68-3.719-.115-4.11 1.557-.388 1.661-.109 4.333 1.379 4.285 1.56-.05 3.174-.266 3.921-1.812.748-1.545.215-3.35-1.19-4.03z"/><path fill="#D4AB88" d="M22.59 5.288c2.295-2.316-2.801-2.46-2.801-2.46-.964-.038-.424 1.613-.942 2.453-.356.582.925 1.001.925 1.001s.6.036.577.766v.007c-.007.186-.043.404-.151.691-.54 1.423 1.347 2.463 1.887 1.037.213-.564.186-1.077.136-1.552l-.006-.041c-.077-.707-.193-1.329.375-1.902z"/><path fill="#963B22" d="M23.453 1.588C22.574.386 21.283-.183 18.944.523c-2.044.617-1.525 2.243-1.042 2.008 1.331-.647 2.128.052 2.699 1.138.228-.495 1.083-.745 1.194.013.126.852-.68 1.158-.593 1.394.029.079-.034-.072 0 0 .431.911 1.22 1.246 1.22 1.246s.297.144.898-.847 1.005-2.693.133-3.887z"/><path fill="#963B22" d="M22.934 2.681c1.968.317 1.157 2.559 1.358 3.601.247 1.283 1.436 1.361 1.436 1.361s-.463-.666-.35-1.611c.156-1.312 1.379-2.377.405-3.613-1.244-1.58-4.072.065-2.849.262z"/><path fill="#9268CA" d="M24.353 16.862c.015 1.321-.057 1.777.007 2.351.036.319-1.252-.021-1.954-.176-1.883-.415-3.583-1.221-3.583-1.221.184-1.244.869-3.07-.624-4.823-.455-.535-.375-1.854.369-3.041.828-1.321 1.751-2.535 2.926-2.661.812-.088 1.597.328 2.15 1.2 2.206 1.83.762 1.78.777 3.121.024 2.035-.083 3.929-.068 5.25z"/><g fill="#DD2E44"><path d="M13.465 27.092l10.824.95c.274.024.518-.181.542-.455.024-.274-.181-.518-.455-.542l-10.824-.95c-.274-.024-.518.181-.542.455-.024.274.181.518.455.542z"/><path d="M24.288 28.041c-.274-.024-.478-.268-.455-.542l.436-4.981c.024-.274.268-.478.542-.455.274.024.478.268.455.542l-.436 4.981c-.024.275-.268.479-.542.455zm-10.738-7.58c-.274-.024-.518.181-.542.455l-1.015 11.597c-.024.274.181.518.455.542.274.024.518-.181.542-.455l1.015-11.597c.023-.274-.181-.518-.455-.542z"/></g><path fill="#292F33" d="M23.524 20.592c1.431-.206 2.834-.148 2.345.544-.489.692-1.575 1.905-3.418 1.707-1.844-.198.185-2.123 1.073-2.251z"/><path fill="#292F33" d="M22.45 22.843l-9.962-.872c-.996-.087-.996-.087-.909-1.083.048-.548.535-.957 1.083-.909l9.962.872c.548.048.957.535.909 1.083-.087.996-.087.996-1.083.909z"/><path fill="#DD2E44" d="M22.964 23.136l-10.958-.959c-.274-.024-.478-.268-.455-.542.024-.274.268-.478.542-.455l10.958.959c.274.024.478.268.455.542-.025.275-.268.479-.542.455z"/><path fill="#292F33" d="M27.278 9.454l-.872 9.962c-.087.996-.087.996-1.083.909-.548-.048-.957-.535-.909-1.083l.872-9.962c.048-.548.535-.957 1.083-.909.996.087.996.087.909 1.083z"/><path fill="#DD2E44" d="M27.714 8.996l-.959 10.958c-.024.274-.268.478-.542.455-.274-.024-.478-.268-.455-.542l.959-10.958c.024-.274.268-.478.542-.455.274.025.479.268.455.542z"/><path fill="#292F33" d="M24.62 18.519l-7.552-.661c-.755-.066-.755-.066-.69-.812.036-.41.405-.716.82-.68l7.552.661c.415.036.726.402.69.812-.064.746-.064.746-.82.68z"/><path fill="#DD2E44" d="M22.553 22.096c1.004.088 2.989.261 3.25-2.727s1.258-2.901.996.087-1.909 3.848-4.333 3.636c-1.993-.174-1.906-1.17.087-.996zm-10.449-.914c1.993.166 2.392 1.218.4 1.039-.883-.079-.962.297-1.163 1.063-.189.721-.456 1.803-.858 3.318-.295 1.112-1.221.712-.977-.257.411-1.63.798-3.05 1.052-3.953.258-.922.502-1.297 1.546-1.21z"/><g fill="#66757F"><circle cx="24.5" cy="27.5" r="1.5"/><path d="M31.245 30.817l-6.062-3.5 3.5-6.062-.866-.5-3.5 6.062-6.062-3.5-.5.866 6.062 3.5-3.5 6.062.866.5 3.5-6.062 6.062 3.5z"/><path d="M26.924 34.615l-1.812-6.761 6.762-1.812-.259-.966-6.761 1.812-1.812-6.762-.966.259 1.812 6.761-6.762 1.812.259.966 6.761-1.812 1.812 6.762z"/></g><path fill="#292F33" d="M24.5 19c-4.694 0-8.5 3.806-8.5 8.5s3.806 8.5 8.5 8.5 8.5-3.806 8.5-8.5-3.806-8.5-8.5-8.5zm0 15c-3.59 0-6.5-2.91-6.5-6.5s2.91-6.5 6.5-6.5 6.5 2.91 6.5 6.5-2.91 6.5-6.5 6.5z"/><path fill="#66757F" d="M24.5 20c-4.142 0-7.5 3.358-7.5 7.5s3.358 7.5 7.5 7.5 7.5-3.358 7.5-7.5-3.358-7.5-7.5-7.5zm0 14c-3.59 0-6.5-2.91-6.5-6.5s2.91-6.5 6.5-6.5 6.5 2.91 6.5 6.5-2.91 6.5-6.5 6.5zm-9.152-.433l-2.165-1.25 1.25-2.165-.866-.5-1.25 2.165-2.165-1.25-.5.866 2.165 1.25-1.25 2.165.866.5 1.25-2.165 2.165 1.25z"/><path fill="#292F33" d="M12.5 29C10.567 29 9 30.567 9 32.5s1.567 3.5 3.5 3.5 3.5-1.567 3.5-3.5-1.567-3.5-3.5-3.5zm0 6c-1.381 0-2.5-1.119-2.5-2.5s1.119-2.5 2.5-2.5 2.5 1.119 2.5 2.5-1.119 2.5-2.5 2.5z"/><path fill="#DD2E44" d="M10.288 25.363c-.266-.071-.541.088-.612.354l-1.553 5.796c-.071.266.088.541.354.612.266.071.541-.088.612-.354l1.553-5.796c.07-.265-.089-.541-.354-.612z"/><path fill="#66757F" d="M8.476 32.125L4.612 31.09c-.266-.071-.425-.347-.354-.612.071-.266.347-.425.612-.354l3.864 1.035c.266.071.426.346.354.612-.071.266-.346.425-.612.354z"/><path fill="#DD2E44" d="M30.103 9.969l-2.954-.521c-.271-.048-.453-.308-.406-.579.048-.271.308-.453.579-.406l2.954.521c.271.048.453.308.406.579-.048.272-.308.454-.579.406z"/><path fill="#292F33" d="M31.088 10.143l-2.615-.467c-.271-.048-.26-.274-.213-.545.048-.271.116-.487.386-.44l2.615.467c.271.048.453.308.406.579-.048.271-.308.454-.579.406z"/><path fill="#D4AB88" d="M22.657 10.9c1.111 1.023 3.158 2.426 3.128 2.68-.174 1.464.402 3.203.2 4.11-.147.657-.805 1.117-.745 1.476.667.012.407 1.163.677 1.687.284.551 1.174-.056 1.311-.909.101-.627-.068-1.112-.113-1.757-.064-.918 1.207-3.625.39-5.457-.276-.618-1.167-1.842-3.212-3.751-.608.439-1.636 1.921-1.636 1.921z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f469-1f3fe-200d-1f91d-200d-1f468-1f3fb.svg b/public/emoji/1f469-1f3fe-200d-1f91d-200d-1f468-1f3fb.svg
new file mode 100644
index 0000000000000000000000000000000000000000..c14a8e794bc5ebb5a6dc275a7c4ea1b19611f926
--- /dev/null
+++ b/public/emoji/1f469-1f3fe-200d-1f91d-200d-1f468-1f3fb.svg
@@ -0,0 +1 @@
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#60352A" d="M11 0C9.736 0 8.565.393 7.598 1.061 7.401 1.031 7.205 1 7 1 4.791 1 3 2.791 3 5v6c0 3.866 3.134 7 7 7s7-3.134 7-7V6.001C17 2.687 14.314 0 11 0z"/><path fill="#AF7E57" d="M11.213 34.309c-.052.682 1.849.953 2.129.791.299-.173-.698-.623-.702-.977-.019-1.797.53-1.648.311-3.492.443-1.625.672-2.592.672-3.131 0-1.25-3.312-.766-3.312 0 0 .344.365 1.681.417 3.131-.313 1.659.641 1.615.485 3.678zm-2.448 0c.052.682-1.849.953-2.129.791-.299-.173.698-.623.702-.977.019-1.797-.53-1.648-.311-3.492-.443-1.625-.672-2.592-.672-3.131 0-1.25 3.313-.766 3.313 0 0 .344-.365 1.681-.417 3.131.311 1.659-.642 1.615-.486 3.678z"/><path fill="#9B6A49" d="M10.311 27.5c0 .206.13.771.246 1.5h2.817c.164-.689.249-1.175.249-1.5 0-1.25-3.312-.766-3.312 0zm-3.957 0c0 .325.085.811.249 1.5H9.42c.116-.729.247-1.294.247-1.5 0-.766-3.313-1.25-3.313 0z"/><path fill="#AF7E57" d="M3.258 26.96c-.258.124-.503-.097-.619-.227-.328-.367-.583-1.246-.282-2.209.303-.973.6-2.384 1.199-4.002.081-.22.499-3.764.805-4.445.197-.437 1.28-.896 1.81-.807.529.089.246.651.105 1.13 0 0-.916 3.953-1.016 4.296-.316 1.079-1.624 2.918-1.565 4.237.031.692.06 1.255-.339 1.246-.049.362-.003.735-.098.781zm14.984-.2c.271.091.487-.159.586-.302.279-.405.422-1.309.004-2.227-.423-.927-.894-2.29-1.69-3.821-.108-.208-.966-3.672-1.355-4.309-.25-.409-1.382-.729-1.897-.574-.513.154-.162.676.037 1.134 0 0 1.403 3.807 1.546 4.135.449 1.031 1.977 2.691 2.082 4.008.056.69.097 1.253.492 1.194.094.353.095.729.195.762z"/><path fill="#292F33" d="M13.945 36c.305 0 .372-.418.089-.629-.379-.285-.88-1.371-1.561-1.371h-1.245c-.229 0-.49 1.209-.41 1.48.102.345.433.52.812.52h2.315zm-7.913 0c-.305 0-.372-.418-.089-.629.379-.285.88-1.371 1.561-1.371h1.245c.229 0 .49 1.209.41 1.48-.102.345-.433.52-.811.52H6.032z"/><path fill="#E75A70" d="M14.354 17.771L16 16c-1.438-1.792-4-2-4-2H8s-2.562.208-4 2l1.646 1.771S6.25 20.688 6.25 21 5 25.75 5 28h10c0-2.25-1.25-6.688-1.25-7s.604-3.229.604-3.229z"/><path fill="#DA2F47" d="M13.75 21c0-.106.07-.512.161-1H6.089c.092.488.161.894.161 1 0 .083-.122.509-.223 1h7.942c-.108-.558-.219-.917-.219-1z"/><path fill="#AF7E57" d="M8 11v4c0 1.104.896 2 2 2s2-.896 2-2v-4H8z"/><path fill="#9B6A49" d="M12 11l-4 .019V15s2 1 4 0v-4z"/><path fill="#AF7E57" d="M15 3H5v6c0 2.762 2.238 5 5 5s5-2.237 5-5V3z"/><path fill="#60352A" d="M15 2H5L4 7c4 0 4-4 4-4s0 4 8 4l-1-5z"/><path fill="#DF1F32" d="M12 12H8s0 1 2 1 2-1 2-1z"/><circle fill="#662113" cx="7.5" cy="8.5" r=".5"/><circle fill="#662113" cx="12.5" cy="8.5" r=".5"/><path fill="#915A34" d="M9 10h2s0 1-1 1-1-1-1-1z"/><path fill="#292F33" d="M26.5 0c-1.187 0-2.282.379-3.181 1.018C21.473 1.114 20 2.629 20 4.5c0 1.542.007 3.484 2.038 4.208C23.036 10.094 24.66 11 26.5 11c3.037 0 5.5-2.462 5.5-5.499C32 2.463 29.537 0 26.5 0z"/><path fill="#F7DECE" d="M18.117 26.76c-.271.091-.487-.159-.586-.302-.279-.405-.422-1.309-.004-2.227.423-.927.702-2.072 1.69-3.821.115-.204.494-2.746 1.242-4.354.202-.435 1.495-.684 2.009-.529.513.154-.005.98-.037 1.134-.344 1.651-1.305 4.077-1.45 4.404-.8 1.806-1.965 2.389-2.071 3.706-.055.69-.205 1.286-.6 1.228-.092.352-.094.728-.193.761zm14.595.204c.257.126.504-.094.62-.222.33-.365.591-1.242.296-2.208-.297-.975-.424-2.146-1.174-4.01-.087-.217-.129-2.787-.66-4.479-.143-.457-1.392-.875-1.922-.789-.529.086-.124.972-.112 1.129.124 1.682.758 4.213.859 4.556.556 1.895 1.634 2.627 1.566 3.946-.036.692.034 1.302.433 1.296.048.363 0 .735.094.781z"/><path fill="#AAB8C2" d="M29.555 29.5c.5-2.734.422-6.5.422-6.5h-7.963s-.078 3.766.422 6.5c.063.344.188 3.344-.109 5.5-.066.479 2.886.937 2.844-.125-.078-1.969.264-3.513.328-4.5.035-.547.25-1.875.344-3.208.011-.018.295-.018.306 0 .094 1.333.308 2.661.344 3.208.064.987.406 2.531.328 4.5-.042 1.062 2.91.604 2.844.125-.297-2.156-.172-5.156-.11-5.5z"/><path fill="#292F33" d="M30.54 36c.499-.406-.041-1.161-1.42-1.402-1.163-.203-2.2-.032-2.363.35-.212.493-.05 1.052-.05 1.052h3.833zm-9.117 0c-.499-.406.041-1.161 1.42-1.402 1.163-.203 2.2-.032 2.363.35.212.494.05 1.053.05 1.053L21.423 36z"/><path fill="#4289C1" d="M30.797 14.766C29.578 14 28 14 28 14h-4s-1.578 0-2.797.766c-1.201.754-1.656 3-1.656 3l2.203.688.109 5.546h8.281l.109-5.547 2.203-.688c.001.001-.454-2.245-1.655-2.999z"/><path fill="#F7DECE" d="M24 10.042v4c0 .682.896 1.305 2 1.305s2-.668 2-1.305v-4h-4z"/><path fill="#EEC2AD" d="M24 14.042c0 .682.896 1.305 2 1.305s2-.668 2-1.305V11l-4 .019v3.023z"/><path fill="#F7DECE" d="M31 3H21v6c0 2.762 2.238 5 5 5s5-2.237 5-5V3z"/><path fill="#292F33" d="M21 2.5L20.5 5l.5 2c2.333 0 2.85-2.412 2.965-3.488C24.004 4.588 24.779 7 31 7l.5-2-.5-2.5H21z"/><path fill="#C1694F" d="M28 12h-4s0 1 2 1 2-1 2-1z"/><circle fill="#662113" cx="23.5" cy="8.5" r=".5"/><circle fill="#662113" cx="28.5" cy="8.5" r=".5"/><path fill="#C1694F" d="M25 10h2s0 1-1 1-1-1-1-1z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f469-1f3fe-200d-1f91d-200d-1f468-1f3fc.svg b/public/emoji/1f469-1f3fe-200d-1f91d-200d-1f468-1f3fc.svg
new file mode 100644
index 0000000000000000000000000000000000000000..dff165ed57119d69f7bfba5ef6c2f31092578a05
--- /dev/null
+++ b/public/emoji/1f469-1f3fe-200d-1f91d-200d-1f468-1f3fc.svg
@@ -0,0 +1 @@
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#60352A" d="M11 0C9.736 0 8.565.393 7.598 1.061 7.401 1.031 7.205 1 7 1 4.791 1 3 2.791 3 5v6c0 3.866 3.134 7 7 7s7-3.134 7-7V6.001C17 2.687 14.314 0 11 0z"/><path fill="#AF7E57" d="M11.213 34.309c-.052.682 1.849.953 2.129.791.299-.173-.698-.623-.702-.977-.019-1.797.53-1.648.311-3.492.443-1.625.672-2.592.672-3.131 0-1.25-3.312-.766-3.312 0 0 .344.365 1.681.417 3.131-.313 1.659.641 1.615.485 3.678zm-2.448 0c.052.682-1.849.953-2.129.791-.299-.173.698-.623.702-.977.019-1.797-.53-1.648-.311-3.492-.443-1.625-.672-2.592-.672-3.131 0-1.25 3.313-.766 3.313 0 0 .344-.365 1.681-.417 3.131.311 1.659-.642 1.615-.486 3.678z"/><path fill="#9B6A49" d="M10.311 27.5c0 .206.13.771.246 1.5h2.817c.164-.689.249-1.175.249-1.5 0-1.25-3.312-.766-3.312 0zm-3.957 0c0 .325.085.811.249 1.5H9.42c.116-.729.247-1.294.247-1.5 0-.766-3.313-1.25-3.313 0z"/><path fill="#AF7E57" d="M3.258 26.96c-.258.124-.503-.097-.619-.227-.328-.367-.583-1.246-.282-2.209.303-.973.6-2.384 1.199-4.002.081-.22.499-3.764.805-4.445.197-.437 1.28-.896 1.81-.807.529.089.246.651.105 1.13 0 0-.916 3.953-1.016 4.296-.316 1.079-1.624 2.918-1.565 4.237.031.692.06 1.255-.339 1.246-.049.362-.003.735-.098.781zm14.984-.2c.271.091.487-.159.586-.302.279-.405.422-1.309.004-2.227-.423-.927-.894-2.29-1.69-3.821-.108-.208-.966-3.672-1.355-4.309-.25-.409-1.382-.729-1.897-.574-.513.154-.162.676.037 1.134 0 0 1.403 3.807 1.546 4.135.449 1.031 1.977 2.691 2.082 4.008.056.69.097 1.253.492 1.194.094.353.095.729.195.762z"/><path fill="#292F33" d="M13.945 36c.305 0 .372-.418.089-.629-.379-.285-.88-1.371-1.561-1.371h-1.245c-.229 0-.49 1.209-.41 1.48.102.345.433.52.812.52h2.315zm-7.913 0c-.305 0-.372-.418-.089-.629.379-.285.88-1.371 1.561-1.371h1.245c.229 0 .49 1.209.41 1.48-.102.345-.433.52-.811.52H6.032z"/><path fill="#E75A70" d="M14.354 17.771L16 16c-1.438-1.792-4-2-4-2H8s-2.562.208-4 2l1.646 1.771S6.25 20.688 6.25 21 5 25.75 5 28h10c0-2.25-1.25-6.688-1.25-7s.604-3.229.604-3.229z"/><path fill="#DA2F47" d="M13.75 21c0-.106.07-.512.161-1H6.089c.092.488.161.894.161 1 0 .083-.122.509-.223 1h7.942c-.108-.558-.219-.917-.219-1z"/><path fill="#AF7E57" d="M8 11v4c0 1.104.896 2 2 2s2-.896 2-2v-4H8z"/><path fill="#9B6A49" d="M12 11l-4 .019V15s2 1 4 0v-4z"/><path fill="#AF7E57" d="M15 3H5v6c0 2.762 2.238 5 5 5s5-2.237 5-5V3z"/><path fill="#60352A" d="M15 2H5L4 7c4 0 4-4 4-4s0 4 8 4l-1-5z"/><path fill="#DF1F32" d="M12 12H8s0 1 2 1 2-1 2-1z"/><circle fill="#662113" cx="7.5" cy="8.5" r=".5"/><circle fill="#662113" cx="12.5" cy="8.5" r=".5"/><path fill="#915A34" d="M9 10h2s0 1-1 1-1-1-1-1z"/><path fill="#FFE51E" d="M26.5 0c-1.187 0-2.282.379-3.181 1.018C21.473 1.114 20 2.629 20 4.5c0 1.542.007 3.484 2.038 4.208C23.036 10.094 24.66 11 26.5 11c3.037 0 5.5-2.462 5.5-5.499C32 2.463 29.537 0 26.5 0z"/><path fill="#F3D2A2" d="M18.117 26.76c-.271.091-.487-.159-.586-.302-.279-.405-.422-1.309-.004-2.227.423-.927.702-2.072 1.69-3.821.115-.204.494-2.746 1.242-4.354.202-.435 1.495-.684 2.009-.529.513.154-.005.98-.037 1.134-.344 1.651-1.305 4.077-1.45 4.404-.8 1.806-1.965 2.389-2.071 3.706-.055.69-.205 1.286-.6 1.228-.092.352-.094.728-.193.761zm14.595.204c.257.126.504-.094.62-.222.33-.365.591-1.242.296-2.208-.297-.975-.424-2.146-1.174-4.01-.087-.217-.129-2.787-.66-4.479-.143-.457-1.392-.875-1.922-.789-.529.086-.124.972-.112 1.129.124 1.682.758 4.213.859 4.556.556 1.895 1.634 2.627 1.566 3.946-.036.692.034 1.302.433 1.296.048.363 0 .735.094.781z"/><path fill="#AAB8C2" d="M29.555 29.5c.5-2.734.422-6.5.422-6.5h-7.963s-.078 3.766.422 6.5c.063.344.188 3.344-.109 5.5-.066.479 2.886.937 2.844-.125-.078-1.969.264-3.513.328-4.5.035-.547.25-1.875.344-3.208.011-.018.295-.018.306 0 .094 1.333.308 2.661.344 3.208.064.987.406 2.531.328 4.5-.042 1.062 2.91.604 2.844.125-.297-2.156-.172-5.156-.11-5.5z"/><path fill="#292F33" d="M30.54 36c.499-.406-.041-1.161-1.42-1.402-1.163-.203-2.2-.032-2.363.35-.212.493-.05 1.052-.05 1.052h3.833zm-9.117 0c-.499-.406.041-1.161 1.42-1.402 1.163-.203 2.2-.032 2.363.35.212.494.05 1.053.05 1.053L21.423 36z"/><path fill="#4289C1" d="M30.797 14.766C29.578 14 28 14 28 14h-4s-1.578 0-2.797.766c-1.201.754-1.656 3-1.656 3l2.203.688.109 5.546h8.281l.109-5.547 2.203-.688c.001.001-.454-2.245-1.655-2.999z"/><path fill="#F3D2A2" d="M24 10.042v4c0 .682.896 1.305 2 1.305s2-.668 2-1.305v-4h-4z"/><path fill="#E2C196" d="M24 14.042c0 .682.896 1.305 2 1.305s2-.668 2-1.305V11l-4 .019v3.023z"/><path fill="#F3D2A2" d="M31 3H21v6c0 2.762 2.238 5 5 5s5-2.237 5-5V3z"/><path fill="#FFE51E" d="M21 2.5L20.5 5l.5 2c2.333 0 2.85-2.412 2.965-3.488C24.004 4.588 24.779 7 31 7l.5-2-.5-2.5H21z"/><path fill="#C1694F" d="M28 12h-4s0 1 2 1 2-1 2-1z"/><circle fill="#662113" cx="23.5" cy="8.5" r=".5"/><circle fill="#662113" cx="28.5" cy="8.5" r=".5"/><path fill="#C1694F" d="M25 10h2s0 1-1 1-1-1-1-1z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f469-1f3fe-200d-1f91d-200d-1f468-1f3fd.svg b/public/emoji/1f469-1f3fe-200d-1f91d-200d-1f468-1f3fd.svg
new file mode 100644
index 0000000000000000000000000000000000000000..19a8dab4ca0b2f8f912927f40d48890105f76cc9
--- /dev/null
+++ b/public/emoji/1f469-1f3fe-200d-1f91d-200d-1f468-1f3fd.svg
@@ -0,0 +1 @@
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#60352A" d="M11 0C9.736 0 8.565.393 7.598 1.061 7.401 1.031 7.205 1 7 1 4.791 1 3 2.791 3 5v6c0 3.866 3.134 7 7 7s7-3.134 7-7V6.001C17 2.687 14.314 0 11 0z"/><path fill="#AF7E57" d="M11.213 34.309c-.052.682 1.849.953 2.129.791.299-.173-.698-.623-.702-.977-.019-1.797.53-1.648.311-3.492.443-1.625.672-2.592.672-3.131 0-1.25-3.312-.766-3.312 0 0 .344.365 1.681.417 3.131-.313 1.659.641 1.615.485 3.678zm-2.448 0c.052.682-1.849.953-2.129.791-.299-.173.698-.623.702-.977.019-1.797-.53-1.648-.311-3.492-.443-1.625-.672-2.592-.672-3.131 0-1.25 3.313-.766 3.313 0 0 .344-.365 1.681-.417 3.131.311 1.659-.642 1.615-.486 3.678z"/><path fill="#9B6A49" d="M10.311 27.5c0 .206.13.771.246 1.5h2.817c.164-.689.249-1.175.249-1.5 0-1.25-3.312-.766-3.312 0zm-3.957 0c0 .325.085.811.249 1.5H9.42c.116-.729.247-1.294.247-1.5 0-.766-3.313-1.25-3.313 0z"/><path fill="#AF7E57" d="M3.258 26.96c-.258.124-.503-.097-.619-.227-.328-.367-.583-1.246-.282-2.209.303-.973.6-2.384 1.199-4.002.081-.22.499-3.764.805-4.445.197-.437 1.28-.896 1.81-.807.529.089.246.651.105 1.13 0 0-.916 3.953-1.016 4.296-.316 1.079-1.624 2.918-1.565 4.237.031.692.06 1.255-.339 1.246-.049.362-.003.735-.098.781zm14.984-.2c.271.091.487-.159.586-.302.279-.405.422-1.309.004-2.227-.423-.927-.894-2.29-1.69-3.821-.108-.208-.966-3.672-1.355-4.309-.25-.409-1.382-.729-1.897-.574-.513.154-.162.676.037 1.134 0 0 1.403 3.807 1.546 4.135.449 1.031 1.977 2.691 2.082 4.008.056.69.097 1.253.492 1.194.094.353.095.729.195.762z"/><path fill="#292F33" d="M13.945 36c.305 0 .372-.418.089-.629-.379-.285-.88-1.371-1.561-1.371h-1.245c-.229 0-.49 1.209-.41 1.48.102.345.433.52.812.52h2.315zm-7.913 0c-.305 0-.372-.418-.089-.629.379-.285.88-1.371 1.561-1.371h1.245c.229 0 .49 1.209.41 1.48-.102.345-.433.52-.811.52H6.032z"/><path fill="#E75A70" d="M14.354 17.771L16 16c-1.438-1.792-4-2-4-2H8s-2.562.208-4 2l1.646 1.771S6.25 20.688 6.25 21 5 25.75 5 28h10c0-2.25-1.25-6.688-1.25-7s.604-3.229.604-3.229z"/><path fill="#DA2F47" d="M13.75 21c0-.106.07-.512.161-1H6.089c.092.488.161.894.161 1 0 .083-.122.509-.223 1h7.942c-.108-.558-.219-.917-.219-1z"/><path fill="#AF7E57" d="M8 11v4c0 1.104.896 2 2 2s2-.896 2-2v-4H8z"/><path fill="#9B6A49" d="M12 11l-4 .019V15s2 1 4 0v-4z"/><path fill="#AF7E57" d="M15 3H5v6c0 2.762 2.238 5 5 5s5-2.237 5-5V3z"/><path fill="#60352A" d="M15 2H5L4 7c4 0 4-4 4-4s0 4 8 4l-1-5z"/><path fill="#DF1F32" d="M12 12H8s0 1 2 1 2-1 2-1z"/><circle fill="#662113" cx="7.5" cy="8.5" r=".5"/><circle fill="#662113" cx="12.5" cy="8.5" r=".5"/><path fill="#915A34" d="M9 10h2s0 1-1 1-1-1-1-1z"/><path fill="#963B22" d="M26.5 0c-1.187 0-2.282.379-3.181 1.018C21.473 1.114 20 2.629 20 4.5c0 1.542.007 3.484 2.038 4.208C23.036 10.094 24.66 11 26.5 11c3.037 0 5.5-2.462 5.5-5.499C32 2.463 29.537 0 26.5 0z"/><path fill="#D4AB88" d="M18.117 26.76c-.271.091-.487-.159-.586-.302-.279-.405-.422-1.309-.004-2.227.423-.927.702-2.072 1.69-3.821.115-.204.494-2.746 1.242-4.354.202-.435 1.495-.684 2.009-.529.513.154-.005.98-.037 1.134-.344 1.651-1.305 4.077-1.45 4.404-.8 1.806-1.965 2.389-2.071 3.706-.055.69-.205 1.286-.6 1.228-.092.352-.094.728-.193.761zm14.595.204c.257.126.504-.094.62-.222.33-.365.591-1.242.296-2.208-.297-.975-.424-2.146-1.174-4.01-.087-.217-.129-2.787-.66-4.479-.143-.457-1.392-.875-1.922-.789-.529.086-.124.972-.112 1.129.124 1.682.758 4.213.859 4.556.556 1.895 1.634 2.627 1.566 3.946-.036.692.034 1.302.433 1.296.048.363 0 .735.094.781z"/><path fill="#AAB8C2" d="M29.555 29.5c.5-2.734.422-6.5.422-6.5h-7.963s-.078 3.766.422 6.5c.063.344.188 3.344-.109 5.5-.066.479 2.886.937 2.844-.125-.078-1.969.264-3.513.328-4.5.035-.547.25-1.875.344-3.208.011-.018.295-.018.306 0 .094 1.333.308 2.661.344 3.208.064.987.406 2.531.328 4.5-.042 1.062 2.91.604 2.844.125-.297-2.156-.172-5.156-.11-5.5z"/><path fill="#292F33" d="M30.54 36c.499-.406-.041-1.161-1.42-1.402-1.163-.203-2.2-.032-2.363.35-.212.493-.05 1.052-.05 1.052h3.833zm-9.117 0c-.499-.406.041-1.161 1.42-1.402 1.163-.203 2.2-.032 2.363.35.212.494.05 1.053.05 1.053L21.423 36z"/><path fill="#4289C1" d="M30.797 14.766C29.578 14 28 14 28 14h-4s-1.578 0-2.797.766c-1.201.754-1.656 3-1.656 3l2.203.688.109 5.546h8.281l.109-5.547 2.203-.688c.001.001-.454-2.245-1.655-2.999z"/><path fill="#D4AB88" d="M24 10.042v4c0 .682.896 1.305 2 1.305s2-.668 2-1.305v-4h-4z"/><path fill="#CC9B7A" d="M24 14.042c0 .682.896 1.305 2 1.305s2-.668 2-1.305V11l-4 .019v3.023z"/><path fill="#D4AB88" d="M31 3H21v6c0 2.762 2.238 5 5 5s5-2.237 5-5V3z"/><path fill="#963B22" d="M21 2.5L20.5 5l.5 2c2.333 0 2.85-2.412 2.965-3.488C24.004 4.588 24.779 7 31 7l.5-2-.5-2.5H21z"/><path fill="#C1694F" d="M28 12h-4s0 1 2 1 2-1 2-1z"/><circle fill="#662113" cx="23.5" cy="8.5" r=".5"/><circle fill="#662113" cx="28.5" cy="8.5" r=".5"/><path fill="#C1694F" d="M25 10h2s0 1-1 1-1-1-1-1z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f469-1f3fe-200d-1f91d-200d-1f468-1f3ff.svg b/public/emoji/1f469-1f3fe-200d-1f91d-200d-1f468-1f3ff.svg
new file mode 100644
index 0000000000000000000000000000000000000000..6040c7be6a0803a2042c2e7eaa4fd3aca49ff3a7
--- /dev/null
+++ b/public/emoji/1f469-1f3fe-200d-1f91d-200d-1f468-1f3ff.svg
@@ -0,0 +1 @@
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#60352A" d="M11 0C9.736 0 8.565.393 7.598 1.061 7.401 1.031 7.205 1 7 1 4.791 1 3 2.791 3 5v6c0 3.866 3.134 7 7 7s7-3.134 7-7V6.001C17 2.687 14.314 0 11 0z"/><path fill="#AF7E57" d="M11.213 34.309c-.052.682 1.849.953 2.129.791.299-.173-.698-.623-.702-.977-.019-1.797.53-1.648.311-3.492.443-1.625.672-2.592.672-3.131 0-1.25-3.312-.766-3.312 0 0 .344.365 1.681.417 3.131-.313 1.659.641 1.615.485 3.678zm-2.448 0c.052.682-1.849.953-2.129.791-.299-.173.698-.623.702-.977.019-1.797-.53-1.648-.311-3.492-.443-1.625-.672-2.592-.672-3.131 0-1.25 3.313-.766 3.313 0 0 .344-.365 1.681-.417 3.131.311 1.659-.642 1.615-.486 3.678z"/><path fill="#9B6A49" d="M10.311 27.5c0 .206.13.771.246 1.5h2.817c.164-.689.249-1.175.249-1.5 0-1.25-3.312-.766-3.312 0zm-3.957 0c0 .325.085.811.249 1.5H9.42c.116-.729.247-1.294.247-1.5 0-.766-3.313-1.25-3.313 0z"/><path fill="#AF7E57" d="M3.258 26.96c-.258.124-.503-.097-.619-.227-.328-.367-.583-1.246-.282-2.209.303-.973.6-2.384 1.199-4.002.081-.22.499-3.764.805-4.445.197-.437 1.28-.896 1.81-.807.529.089.246.651.105 1.13 0 0-.916 3.953-1.016 4.296-.316 1.079-1.624 2.918-1.565 4.237.031.692.06 1.255-.339 1.246-.049.362-.003.735-.098.781zm14.984-.2c.271.091.487-.159.586-.302.279-.405.422-1.309.004-2.227-.423-.927-.894-2.29-1.69-3.821-.108-.208-.966-3.672-1.355-4.309-.25-.409-1.382-.729-1.897-.574-.513.154-.162.676.037 1.134 0 0 1.403 3.807 1.546 4.135.449 1.031 1.977 2.691 2.082 4.008.056.69.097 1.253.492 1.194.094.353.095.729.195.762z"/><path fill="#292F33" d="M13.945 36c.305 0 .372-.418.089-.629-.379-.285-.88-1.371-1.561-1.371h-1.245c-.229 0-.49 1.209-.41 1.48.102.345.433.52.812.52h2.315zm-7.913 0c-.305 0-.372-.418-.089-.629.379-.285.88-1.371 1.561-1.371h1.245c.229 0 .49 1.209.41 1.48-.102.345-.433.52-.811.52H6.032z"/><path fill="#E75A70" d="M14.354 17.771L16 16c-1.438-1.792-4-2-4-2H8s-2.562.208-4 2l1.646 1.771S6.25 20.688 6.25 21 5 25.75 5 28h10c0-2.25-1.25-6.688-1.25-7s.604-3.229.604-3.229z"/><path fill="#DA2F47" d="M13.75 21c0-.106.07-.512.161-1H6.089c.092.488.161.894.161 1 0 .083-.122.509-.223 1h7.942c-.108-.558-.219-.917-.219-1z"/><path fill="#AF7E57" d="M8 11v4c0 1.104.896 2 2 2s2-.896 2-2v-4H8z"/><path fill="#9B6A49" d="M12 11l-4 .019V15s2 1 4 0v-4z"/><path fill="#AF7E57" d="M15 3H5v6c0 2.762 2.238 5 5 5s5-2.237 5-5V3z"/><path fill="#60352A" d="M15 2H5L4 7c4 0 4-4 4-4s0 4 8 4l-1-5z"/><path fill="#DF1F32" d="M12 12H8s0 1 2 1 2-1 2-1z"/><circle fill="#662113" cx="7.5" cy="8.5" r=".5"/><circle fill="#662113" cx="12.5" cy="8.5" r=".5"/><path fill="#915A34" d="M9 10h2s0 1-1 1-1-1-1-1z"/><path fill="#0B0200" d="M26.5 0c-1.187 0-2.282.379-3.181 1.018C21.473 1.114 20 2.629 20 4.5c0 1.542.007 3.484 2.038 4.208C23.036 10.094 24.66 11 26.5 11c3.037 0 5.5-2.462 5.5-5.499C32 2.463 29.537 0 26.5 0z"/><path fill="#7C533E" d="M18.117 26.76c-.271.091-.487-.159-.586-.302-.279-.405-.422-1.309-.004-2.227.423-.927.702-2.072 1.69-3.821.115-.204.494-2.746 1.242-4.354.202-.435 1.495-.684 2.009-.529.513.154-.005.98-.037 1.134-.344 1.651-1.305 4.077-1.45 4.404-.8 1.806-1.965 2.389-2.071 3.706-.055.69-.205 1.286-.6 1.228-.092.352-.094.728-.193.761zm14.595.204c.257.126.504-.094.62-.222.33-.365.591-1.242.296-2.208-.297-.975-.424-2.146-1.174-4.01-.087-.217-.129-2.787-.66-4.479-.143-.457-1.392-.875-1.922-.789-.529.086-.124.972-.112 1.129.124 1.682.758 4.213.859 4.556.556 1.895 1.634 2.627 1.566 3.946-.036.692.034 1.302.433 1.296.048.363 0 .735.094.781z"/><path fill="#AAB8C2" d="M29.555 29.5c.5-2.734.422-6.5.422-6.5h-7.963s-.078 3.766.422 6.5c.063.344.188 3.344-.109 5.5-.066.479 2.886.937 2.844-.125-.078-1.969.264-3.513.328-4.5.035-.547.25-1.875.344-3.208.011-.018.295-.018.306 0 .094 1.333.308 2.661.344 3.208.064.987.406 2.531.328 4.5-.042 1.062 2.91.604 2.844.125-.297-2.156-.172-5.156-.11-5.5z"/><path fill="#292F33" d="M30.54 36c.499-.406-.041-1.161-1.42-1.402-1.163-.203-2.2-.032-2.363.35-.212.493-.05 1.052-.05 1.052h3.833zm-9.117 0c-.499-.406.041-1.161 1.42-1.402 1.163-.203 2.2-.032 2.363.35.212.494.05 1.053.05 1.053L21.423 36z"/><path fill="#4289C1" d="M30.797 14.766C29.578 14 28 14 28 14h-4s-1.578 0-2.797.766c-1.201.754-1.656 3-1.656 3l2.203.688.109 5.546h8.281l.109-5.547 2.203-.688c.001.001-.454-2.245-1.655-2.999z"/><path fill="#7C533E" d="M24 10.042v4c0 .682.896 1.305 2 1.305s2-.668 2-1.305v-4h-4z"/><path fill="#664131" d="M24 14.042c0 .682.896 1.305 2 1.305s2-.668 2-1.305V11l-4 .019v3.023z"/><path fill="#7C533E" d="M31 3H21v6c0 2.762 2.238 5 5 5s5-2.237 5-5V3z"/><path fill="#0B0200" d="M21 2.5L20.5 5l.5 2c2.333 0 2.85-2.412 2.965-3.488C24.004 4.588 24.779 7 31 7l.5-2-.5-2.5H21z"/><path fill="#3D2E24" d="M28 12h-4s0 1 2 1 2-1 2-1z"/><circle cx="23.5" cy="8.5" r=".5"/><circle cx="28.5" cy="8.5" r=".5"/><path fill="#3D2E24" d="M25 10h2s0 1-1 1-1-1-1-1z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f469-1f3fe-200d-1f91d-200d-1f469-1f3fb.svg b/public/emoji/1f469-1f3fe-200d-1f91d-200d-1f469-1f3fb.svg
new file mode 100644
index 0000000000000000000000000000000000000000..77a4bce68d9ea5089628396a2a2f5fe617a10920
--- /dev/null
+++ b/public/emoji/1f469-1f3fe-200d-1f91d-200d-1f469-1f3fb.svg
@@ -0,0 +1 @@
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#60352A" d="M11 0C9.736 0 8.565.393 7.598 1.061 7.401 1.031 7.205 1 7 1 4.791 1 3 2.791 3 5v6c0 3.866 3.134 7 7 7s7-3.134 7-7V6.001C17 2.687 14.314 0 11 0z"/><path fill="#AF7E57" d="M11.213 34.309c-.052.682 1.849.953 2.129.791.299-.173-.698-.623-.702-.977-.019-1.797.53-1.648.311-3.492.443-1.625.672-2.592.672-3.131 0-1.25-3.312-.766-3.312 0 0 .344.365 1.681.417 3.131-.313 1.659.641 1.615.485 3.678zm-2.448 0c.052.682-1.849.953-2.129.791-.299-.173.698-.623.702-.977.019-1.797-.53-1.648-.311-3.492-.443-1.625-.672-2.592-.672-3.131 0-1.25 3.313-.766 3.313 0 0 .344-.365 1.681-.417 3.131.311 1.659-.642 1.615-.486 3.678z"/><path fill="#9B6A49" d="M10.311 27.5c0 .206.13.771.246 1.5h2.817c.164-.689.249-1.175.249-1.5 0-1.25-3.312-.766-3.312 0zm-3.957 0c0 .325.085.811.249 1.5H9.42c.116-.729.247-1.294.247-1.5 0-.766-3.313-1.25-3.313 0z"/><path fill="#AF7E57" d="M3.258 26.96c-.258.124-.503-.097-.619-.227-.328-.367-.583-1.246-.282-2.209.303-.973.6-2.384 1.199-4.002.081-.22.499-3.764.805-4.445.197-.437 1.28-.896 1.81-.807.529.089.246.651.105 1.13 0 0-.916 3.953-1.016 4.296-.316 1.079-1.624 2.918-1.565 4.237.031.692.06 1.255-.339 1.246-.049.362-.003.735-.098.781zm14.984-.2c.271.091.487-.159.586-.302.279-.405.422-1.309.004-2.227-.423-.927-.894-2.29-1.69-3.821-.108-.208-.966-3.672-1.355-4.309-.25-.409-1.382-.729-1.897-.574-.513.154-.162.676.037 1.134 0 0 1.403 3.807 1.546 4.135.449 1.031 1.977 2.691 2.082 4.008.056.69.097 1.253.492 1.194.094.353.095.729.195.762z"/><path fill="#292F33" d="M13.945 36c.305 0 .372-.418.089-.629-.379-.285-.88-1.371-1.561-1.371h-1.245c-.229 0-.49 1.209-.41 1.48.102.345.433.52.812.52h2.315zm-7.913 0c-.305 0-.372-.418-.089-.629.379-.285.88-1.371 1.561-1.371h1.245c.229 0 .49 1.209.41 1.48-.102.345-.433.52-.811.52H6.032z"/><path fill="#E75A70" d="M14.354 17.771L16 16c-1.438-1.792-4-2-4-2H8s-2.562.208-4 2l1.646 1.771S6.25 20.688 6.25 21 5 25.75 5 28h10c0-2.25-1.25-6.688-1.25-7s.604-3.229.604-3.229z"/><path fill="#DA2F47" d="M13.75 21c0-.106.07-.512.161-1H6.089c.092.488.161.894.161 1 0 .083-.122.509-.223 1h7.942c-.108-.558-.219-.917-.219-1z"/><path fill="#AF7E57" d="M8 11v4c0 1.104.896 2 2 2s2-.896 2-2v-4H8z"/><path fill="#9B6A49" d="M12 11l-4 .019V15s2 1 4 0v-4z"/><path fill="#AF7E57" d="M15 3H5v6c0 2.762 2.238 5 5 5s5-2.237 5-5V3z"/><path fill="#60352A" d="M15 2H5L4 7c4 0 4-4 4-4s0 4 8 4l-1-5z"/><path fill="#DF1F32" d="M12 12H8s0 1 2 1 2-1 2-1z"/><circle fill="#662113" cx="7.5" cy="8.5" r=".5"/><circle fill="#662113" cx="12.5" cy="8.5" r=".5"/><path fill="#915A34" d="M9 10h2s0 1-1 1-1-1-1-1z"/><path fill="#292F33" d="M33 6.001C33 2.687 30.313 0 27 0c-1.264 0-2.435.393-3.402 1.061C23.401 1.031 23.205 1 23 1c-2.209 0-4 1.791-4 4v6h14V6.001z"/><path fill="#F7DECE" d="M27.213 34.309c-.052.682 1.849.953 2.129.791.299-.173-.698-.623-.702-.977-.019-1.797.53-1.648.311-3.492.443-1.625.672-2.592.672-3.131 0-1.25-3.312-.766-3.312 0 0 .344.365 1.681.417 3.131-.313 1.659.641 1.615.485 3.678zm-2.448 0c.052.682-1.849.953-2.129.791-.299-.173.698-.623.702-.977.019-1.797-.53-1.648-.311-3.492-.443-1.625-.672-2.592-.672-3.131 0-1.25 3.312-.766 3.312 0 0 .344-.365 1.681-.417 3.131.312 1.659-.642 1.615-.485 3.678z"/><path fill="#EEC2AD" d="M26.311 27.5c0 .206.13.771.246 1.5h2.817c.164-.689.249-1.175.249-1.5 0-1.25-3.312-.766-3.312 0zm-3.957 0c0 .325.085.811.249 1.5h2.817c.116-.729.247-1.294.247-1.5 0-.766-3.313-1.25-3.313 0z"/><path fill="#F7DECE" d="M18.117 26.76c-.271.091-.487-.159-.586-.302-.279-.405-.422-1.309-.004-2.227.423-.927.702-2.072 1.69-3.821.115-.204.494-2.746 1.242-4.354.202-.435 1.495-.685 2.009-.529.513.154-.005.98-.037 1.134-.344 1.651-1.305 4.077-1.45 4.404-.8 1.806-1.965 2.389-2.071 3.706-.056.69-.205 1.286-.6 1.228-.092.352-.094.728-.193.761zm14.595.204c.257.126.504-.094.62-.222.33-.365.591-1.242.296-2.208-.297-.975-.424-2.146-1.174-4.01-.088-.217-.129-2.787-.66-4.479-.143-.458-1.392-.875-1.922-.789-.529.086-.124.972-.112 1.129.124 1.682.758 4.213.859 4.556.556 1.895 1.634 2.626 1.566 3.946-.036.692.034 1.302.433 1.296.048.363 0 .735.094.781z"/><path fill="#292F33" d="M29.945 36c.305 0 .372-.418.089-.629-.379-.285-.88-1.371-1.561-1.371h-1.245c-.229 0-.49 1.209-.41 1.48.102.345.433.52.812.52h2.315zm-7.913 0c-.305 0-.372-.418-.089-.629.379-.285.88-1.371 1.561-1.371h1.245c.229 0 .49 1.209.41 1.48-.102.345-.433.52-.811.52h-2.316z"/><path fill="#9268CA" d="M30.354 17.771L32 16c-1.438-1.792-4-2-4-2h-4s-2.562.208-4 2l1.646 1.771s.604 2.917.604 3.229S21 25.75 21 28h10c0-2.25-1.25-6.688-1.25-7s.604-3.229.604-3.229z"/><path fill="#AA8ED6" d="M29.75 21c0-.106.07-.512.161-1h-7.822c.092.488.161.894.161 1 0 .083-.122.509-.223 1h7.942c-.108-.558-.219-.917-.219-1z"/><path fill="#F7DECE" d="M24 11v4c0 1.104.896 2 2 2s2-.896 2-2v-4h-4z"/><path fill="#EEC2AD" d="M28 11l-4 .019V15s2 1 4 0v-4z"/><path fill="#F7DECE" d="M31 3H21v6c0 2.762 2.238 5 5 5s5-2.237 5-5V3z"/><path fill="#292F33" d="M31 2H21l-1 5c4 0 4-4 4-4s0 4 8 4l-1-5z"/><path fill="#DF1F32" d="M28 12h-4s0 1 2 1 2-1 2-1z"/><circle fill="#662113" cx="23.5" cy="8.5" r=".5"/><circle fill="#662113" cx="28.5" cy="8.5" r=".5"/><path fill="#C1694F" d="M25 10h2s0 1-1 1-1-1-1-1z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f469-1f3fe-200d-1f91d-200d-1f469-1f3fc.svg b/public/emoji/1f469-1f3fe-200d-1f91d-200d-1f469-1f3fc.svg
new file mode 100644
index 0000000000000000000000000000000000000000..c30ccdf213a6d56594f011b94d76a5e1ecbbe589
--- /dev/null
+++ b/public/emoji/1f469-1f3fe-200d-1f91d-200d-1f469-1f3fc.svg
@@ -0,0 +1 @@
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#60352A" d="M11 0C9.736 0 8.565.393 7.598 1.061 7.401 1.031 7.205 1 7 1 4.791 1 3 2.791 3 5v6c0 3.866 3.134 7 7 7s7-3.134 7-7V6.001C17 2.687 14.314 0 11 0z"/><path fill="#AF7E57" d="M11.213 34.309c-.052.682 1.849.953 2.129.791.299-.173-.698-.623-.702-.977-.019-1.797.53-1.648.311-3.492.443-1.625.672-2.592.672-3.131 0-1.25-3.312-.766-3.312 0 0 .344.365 1.681.417 3.131-.313 1.659.641 1.615.485 3.678zm-2.448 0c.052.682-1.849.953-2.129.791-.299-.173.698-.623.702-.977.019-1.797-.53-1.648-.311-3.492-.443-1.625-.672-2.592-.672-3.131 0-1.25 3.313-.766 3.313 0 0 .344-.365 1.681-.417 3.131.311 1.659-.642 1.615-.486 3.678z"/><path fill="#9B6A49" d="M10.311 27.5c0 .206.13.771.246 1.5h2.817c.164-.689.249-1.175.249-1.5 0-1.25-3.312-.766-3.312 0zm-3.957 0c0 .325.085.811.249 1.5H9.42c.116-.729.247-1.294.247-1.5 0-.766-3.313-1.25-3.313 0z"/><path fill="#AF7E57" d="M3.258 26.96c-.258.124-.503-.097-.619-.227-.328-.367-.583-1.246-.282-2.209.303-.973.6-2.384 1.199-4.002.081-.22.499-3.764.805-4.445.197-.437 1.28-.896 1.81-.807.529.089.246.651.105 1.13 0 0-.916 3.953-1.016 4.296-.316 1.079-1.624 2.918-1.565 4.237.031.692.06 1.255-.339 1.246-.049.362-.003.735-.098.781zm14.984-.2c.271.091.487-.159.586-.302.279-.405.422-1.309.004-2.227-.423-.927-.894-2.29-1.69-3.821-.108-.208-.966-3.672-1.355-4.309-.25-.409-1.382-.729-1.897-.574-.513.154-.162.676.037 1.134 0 0 1.403 3.807 1.546 4.135.449 1.031 1.977 2.691 2.082 4.008.056.69.097 1.253.492 1.194.094.353.095.729.195.762z"/><path fill="#292F33" d="M13.945 36c.305 0 .372-.418.089-.629-.379-.285-.88-1.371-1.561-1.371h-1.245c-.229 0-.49 1.209-.41 1.48.102.345.433.52.812.52h2.315zm-7.913 0c-.305 0-.372-.418-.089-.629.379-.285.88-1.371 1.561-1.371h1.245c.229 0 .49 1.209.41 1.48-.102.345-.433.52-.811.52H6.032z"/><path fill="#E75A70" d="M14.354 17.771L16 16c-1.438-1.792-4-2-4-2H8s-2.562.208-4 2l1.646 1.771S6.25 20.688 6.25 21 5 25.75 5 28h10c0-2.25-1.25-6.688-1.25-7s.604-3.229.604-3.229z"/><path fill="#DA2F47" d="M13.75 21c0-.106.07-.512.161-1H6.089c.092.488.161.894.161 1 0 .083-.122.509-.223 1h7.942c-.108-.558-.219-.917-.219-1z"/><path fill="#AF7E57" d="M8 11v4c0 1.104.896 2 2 2s2-.896 2-2v-4H8z"/><path fill="#9B6A49" d="M12 11l-4 .019V15s2 1 4 0v-4z"/><path fill="#AF7E57" d="M15 3H5v6c0 2.762 2.238 5 5 5s5-2.237 5-5V3z"/><path fill="#60352A" d="M15 2H5L4 7c4 0 4-4 4-4s0 4 8 4l-1-5z"/><path fill="#DF1F32" d="M12 12H8s0 1 2 1 2-1 2-1z"/><circle fill="#662113" cx="7.5" cy="8.5" r=".5"/><circle fill="#662113" cx="12.5" cy="8.5" r=".5"/><path fill="#915A34" d="M9 10h2s0 1-1 1-1-1-1-1z"/><path fill="#FFE51E" d="M33 6.001C33 2.687 30.313 0 27 0c-1.264 0-2.435.393-3.402 1.061C23.401 1.031 23.205 1 23 1c-2.209 0-4 1.791-4 4v6h14V6.001z"/><path fill="#F3D2A2" d="M27.213 34.309c-.052.682 1.849.953 2.129.791.299-.173-.698-.623-.702-.977-.019-1.797.53-1.648.311-3.492.443-1.625.672-2.592.672-3.131 0-1.25-3.312-.766-3.312 0 0 .344.365 1.681.417 3.131-.313 1.659.641 1.615.485 3.678zm-2.448 0c.052.682-1.849.953-2.129.791-.299-.173.698-.623.702-.977.019-1.797-.53-1.648-.311-3.492-.443-1.625-.672-2.592-.672-3.131 0-1.25 3.312-.766 3.312 0 0 .344-.365 1.681-.417 3.131.312 1.659-.642 1.615-.485 3.678z"/><path fill="#E2C196" d="M26.311 27.5c0 .206.13.771.246 1.5h2.817c.164-.689.249-1.175.249-1.5 0-1.25-3.312-.766-3.312 0zm-3.957 0c0 .325.085.811.249 1.5h2.817c.116-.729.247-1.294.247-1.5 0-.766-3.313-1.25-3.313 0z"/><path fill="#F3D2A2" d="M18.117 26.76c-.271.091-.487-.159-.586-.302-.279-.405-.422-1.309-.004-2.227.423-.927.702-2.072 1.69-3.821.115-.204.494-2.746 1.242-4.354.202-.435 1.495-.685 2.009-.529.513.154-.005.98-.037 1.134-.344 1.651-1.305 4.077-1.45 4.404-.8 1.806-1.965 2.389-2.071 3.706-.056.69-.205 1.286-.6 1.228-.092.352-.094.728-.193.761zm14.595.204c.257.126.504-.094.62-.222.33-.365.591-1.242.296-2.208-.297-.975-.424-2.146-1.174-4.01-.088-.217-.129-2.787-.66-4.479-.143-.458-1.392-.875-1.922-.789-.529.086-.124.972-.112 1.129.124 1.682.758 4.213.859 4.556.556 1.895 1.634 2.626 1.566 3.946-.036.692.034 1.302.433 1.296.048.363 0 .735.094.781z"/><path fill="#292F33" d="M29.945 36c.305 0 .372-.418.089-.629-.379-.285-.88-1.371-1.561-1.371h-1.245c-.229 0-.49 1.209-.41 1.48.102.345.433.52.812.52h2.315zm-7.913 0c-.305 0-.372-.418-.089-.629.379-.285.88-1.371 1.561-1.371h1.245c.229 0 .49 1.209.41 1.48-.102.345-.433.52-.811.52h-2.316z"/><path fill="#9268CA" d="M30.354 17.771L32 16c-1.438-1.792-4-2-4-2h-4s-2.562.208-4 2l1.646 1.771s.604 2.917.604 3.229S21 25.75 21 28h10c0-2.25-1.25-6.688-1.25-7s.604-3.229.604-3.229z"/><path fill="#AA8ED6" d="M29.75 21c0-.106.07-.512.161-1h-7.822c.092.488.161.894.161 1 0 .083-.122.509-.223 1h7.942c-.108-.558-.219-.917-.219-1z"/><path fill="#F3D2A2" d="M24 11v4c0 1.104.896 2 2 2s2-.896 2-2v-4h-4z"/><path fill="#E2C196" d="M28 11l-4 .019V15s2 1 4 0v-4z"/><path fill="#F3D2A2" d="M31 3H21v6c0 2.762 2.238 5 5 5s5-2.237 5-5V3z"/><path fill="#FFE51E" d="M31 2H21l-1 5c4 0 4-4 4-4s0 4 8 4l-1-5z"/><path fill="#DF1F32" d="M28 12h-4s0 1 2 1 2-1 2-1z"/><circle fill="#662113" cx="23.5" cy="8.5" r=".5"/><circle fill="#662113" cx="28.5" cy="8.5" r=".5"/><path fill="#C1694F" d="M25 10h2s0 1-1 1-1-1-1-1z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f469-1f3fe-200d-1f91d-200d-1f469-1f3fd.svg b/public/emoji/1f469-1f3fe-200d-1f91d-200d-1f469-1f3fd.svg
new file mode 100644
index 0000000000000000000000000000000000000000..aa913dc9327349dca02a971465d44ef9c14fe919
--- /dev/null
+++ b/public/emoji/1f469-1f3fe-200d-1f91d-200d-1f469-1f3fd.svg
@@ -0,0 +1 @@
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#60352A" d="M11 0C9.736 0 8.565.393 7.598 1.061 7.401 1.031 7.205 1 7 1 4.791 1 3 2.791 3 5v6c0 3.866 3.134 7 7 7s7-3.134 7-7V6.001C17 2.687 14.314 0 11 0z"/><path fill="#AF7E57" d="M11.213 34.309c-.052.682 1.849.953 2.129.791.299-.173-.698-.623-.702-.977-.019-1.797.53-1.648.311-3.492.443-1.625.672-2.592.672-3.131 0-1.25-3.312-.766-3.312 0 0 .344.365 1.681.417 3.131-.313 1.659.641 1.615.485 3.678zm-2.448 0c.052.682-1.849.953-2.129.791-.299-.173.698-.623.702-.977.019-1.797-.53-1.648-.311-3.492-.443-1.625-.672-2.592-.672-3.131 0-1.25 3.313-.766 3.313 0 0 .344-.365 1.681-.417 3.131.311 1.659-.642 1.615-.486 3.678z"/><path fill="#9B6A49" d="M10.311 27.5c0 .206.13.771.246 1.5h2.817c.164-.689.249-1.175.249-1.5 0-1.25-3.312-.766-3.312 0zm-3.957 0c0 .325.085.811.249 1.5H9.42c.116-.729.247-1.294.247-1.5 0-.766-3.313-1.25-3.313 0z"/><path fill="#AF7E57" d="M3.258 26.96c-.258.124-.503-.097-.619-.227-.328-.367-.583-1.246-.282-2.209.303-.973.6-2.384 1.199-4.002.081-.22.499-3.764.805-4.445.197-.437 1.28-.896 1.81-.807.529.089.246.651.105 1.13 0 0-.916 3.953-1.016 4.296-.316 1.079-1.624 2.918-1.565 4.237.031.692.06 1.255-.339 1.246-.049.362-.003.735-.098.781zm14.984-.2c.271.091.487-.159.586-.302.279-.405.422-1.309.004-2.227-.423-.927-.894-2.29-1.69-3.821-.108-.208-.966-3.672-1.355-4.309-.25-.409-1.382-.729-1.897-.574-.513.154-.162.676.037 1.134 0 0 1.403 3.807 1.546 4.135.449 1.031 1.977 2.691 2.082 4.008.056.69.097 1.253.492 1.194.094.353.095.729.195.762z"/><path fill="#292F33" d="M13.945 36c.305 0 .372-.418.089-.629-.379-.285-.88-1.371-1.561-1.371h-1.245c-.229 0-.49 1.209-.41 1.48.102.345.433.52.812.52h2.315zm-7.913 0c-.305 0-.372-.418-.089-.629.379-.285.88-1.371 1.561-1.371h1.245c.229 0 .49 1.209.41 1.48-.102.345-.433.52-.811.52H6.032z"/><path fill="#E75A70" d="M14.354 17.771L16 16c-1.438-1.792-4-2-4-2H8s-2.562.208-4 2l1.646 1.771S6.25 20.688 6.25 21 5 25.75 5 28h10c0-2.25-1.25-6.688-1.25-7s.604-3.229.604-3.229z"/><path fill="#DA2F47" d="M13.75 21c0-.106.07-.512.161-1H6.089c.092.488.161.894.161 1 0 .083-.122.509-.223 1h7.942c-.108-.558-.219-.917-.219-1z"/><path fill="#AF7E57" d="M8 11v4c0 1.104.896 2 2 2s2-.896 2-2v-4H8z"/><path fill="#9B6A49" d="M12 11l-4 .019V15s2 1 4 0v-4z"/><path fill="#AF7E57" d="M15 3H5v6c0 2.762 2.238 5 5 5s5-2.237 5-5V3z"/><path fill="#60352A" d="M15 2H5L4 7c4 0 4-4 4-4s0 4 8 4l-1-5z"/><path fill="#DF1F32" d="M12 12H8s0 1 2 1 2-1 2-1z"/><circle fill="#662113" cx="7.5" cy="8.5" r=".5"/><circle fill="#662113" cx="12.5" cy="8.5" r=".5"/><path fill="#915A34" d="M9 10h2s0 1-1 1-1-1-1-1z"/><path fill="#963B22" d="M33 6.001C33 2.687 30.313 0 27 0c-1.264 0-2.435.393-3.402 1.061C23.401 1.031 23.205 1 23 1c-2.209 0-4 1.791-4 4v6h14V6.001z"/><path fill="#D4AB88" d="M27.213 34.309c-.052.682 1.849.953 2.129.791.299-.173-.698-.623-.702-.977-.019-1.797.53-1.648.311-3.492.443-1.625.672-2.592.672-3.131 0-1.25-3.312-.766-3.312 0 0 .344.365 1.681.417 3.131-.313 1.659.641 1.615.485 3.678zm-2.448 0c.052.682-1.849.953-2.129.791-.299-.173.698-.623.702-.977.019-1.797-.53-1.648-.311-3.492-.443-1.625-.672-2.592-.672-3.131 0-1.25 3.312-.766 3.312 0 0 .344-.365 1.681-.417 3.131.312 1.659-.642 1.615-.485 3.678z"/><path fill="#CC9B7A" d="M26.311 27.5c0 .206.13.771.246 1.5h2.817c.164-.689.249-1.175.249-1.5 0-1.25-3.312-.766-3.312 0zm-3.957 0c0 .325.085.811.249 1.5h2.817c.116-.729.247-1.294.247-1.5 0-.766-3.313-1.25-3.313 0z"/><path fill="#D4AB88" d="M18.117 26.76c-.271.091-.487-.159-.586-.302-.279-.405-.422-1.309-.004-2.227.423-.927.702-2.072 1.69-3.821.115-.204.494-2.746 1.242-4.354.202-.435 1.495-.685 2.009-.529.513.154-.005.98-.037 1.134-.344 1.651-1.305 4.077-1.45 4.404-.8 1.806-1.965 2.389-2.071 3.706-.056.69-.205 1.286-.6 1.228-.092.352-.094.728-.193.761zm14.595.204c.257.126.504-.094.62-.222.33-.365.591-1.242.296-2.208-.297-.975-.424-2.146-1.174-4.01-.088-.217-.129-2.787-.66-4.479-.143-.458-1.392-.875-1.922-.789-.529.086-.124.972-.112 1.129.124 1.682.758 4.213.859 4.556.556 1.895 1.634 2.626 1.566 3.946-.036.692.034 1.302.433 1.296.048.363 0 .735.094.781z"/><path fill="#292F33" d="M29.945 36c.305 0 .372-.418.089-.629-.379-.285-.88-1.371-1.561-1.371h-1.245c-.229 0-.49 1.209-.41 1.48.102.345.433.52.812.52h2.315zm-7.913 0c-.305 0-.372-.418-.089-.629.379-.285.88-1.371 1.561-1.371h1.245c.229 0 .49 1.209.41 1.48-.102.345-.433.52-.811.52h-2.316z"/><path fill="#9268CA" d="M30.354 17.771L32 16c-1.438-1.792-4-2-4-2h-4s-2.562.208-4 2l1.646 1.771s.604 2.917.604 3.229S21 25.75 21 28h10c0-2.25-1.25-6.688-1.25-7s.604-3.229.604-3.229z"/><path fill="#AA8ED6" d="M29.75 21c0-.106.07-.512.161-1h-7.822c.092.488.161.894.161 1 0 .083-.122.509-.223 1h7.942c-.108-.558-.219-.917-.219-1z"/><path fill="#D4AB88" d="M24 11v4c0 1.104.896 2 2 2s2-.896 2-2v-4h-4z"/><path fill="#CC9B7A" d="M28 11l-4 .019V15s2 1 4 0v-4z"/><path fill="#D4AB88" d="M31 3H21v6c0 2.762 2.238 5 5 5s5-2.237 5-5V3z"/><path fill="#963B22" d="M31 2H21l-1 5c4 0 4-4 4-4s0 4 8 4l-1-5z"/><path fill="#DF1F32" d="M28 12h-4s0 1 2 1 2-1 2-1z"/><circle fill="#662113" cx="23.5" cy="8.5" r=".5"/><circle fill="#662113" cx="28.5" cy="8.5" r=".5"/><path fill="#C1694F" d="M25 10h2s0 1-1 1-1-1-1-1z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f469-1f3fe-200d-1f9af.svg b/public/emoji/1f469-1f3fe-200d-1f9af.svg
new file mode 100644
index 0000000000000000000000000000000000000000..3b4b53958ac51b91fcfb7582d6e029615119716f
--- /dev/null
+++ b/public/emoji/1f469-1f3fe-200d-1f9af.svg
@@ -0,0 +1 @@
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#CCD6DD" d="M12.154 19.416l.802.598L3.988 32.04l-.802-.598z"/><path fill="#DD2E44" d="M3.186 31.444L1.093 34.25c-.164.22-.119.535.102.7s.535.119.7-.102l2.092-2.806-.801-.598z"/><path fill="#292F33" d="M11.359 21.319c-.22-.164-.266-.479-.102-.7l1.793-2.405c.164-.22.479-.266.7-.102.22.164.266.479.102.7l-1.793 2.405c-.164.221-.479.267-.7.102z"/><path fill="#292F33" d="M11.76 21.618l-.802-.598c-.22-.164-.266-.479-.102-.7.164-.22.479-.266.7-.102l.802.598c.22.164.266.479.102.7-.164.221-.479.267-.7.102z"/><path fill="#99AAB5" d="M.598 35.751c-.22-.164-.266-.479-.102-.7.164-.22.479-.266.7-.102.22.164.266.479.102.7-.165.22-.48.266-.7.102z"/><path fill="#292F33" d="M20.476 35.056s.061-.144.061-.448c0-.303-.156-.869-.199-.95s-.09-.139-.194-.11c-.079.022-.685.326-1.072.341-.719.027-1.066-.618-1.066-.618s-.399.228-.716.413c-.318.185-.687.462-.959.627-.232.141-.497.208-.771.243s-.497.023-.563.029-.621-.061-.641.488l.004.16s.987.397 2.344.397c1.358 0 1.566-.399 2.444-.399s1.328-.173 1.328-.173z"/><path fill="#292F33" d="M18.726 35.926c-.058-.052-.123-.22-.173-.243s-.57.089-.813.146c-.243.058-.66.156-1.152.156-.491 0-1.126-.144-1.519-.243-.393-.098-.701-.23-.77-.274-.07-.043-.05-.063-.046-.096.004-.033.052-.202.052-.202s.251.132.678.237c.426.104.851.183 1.584.183s1.193-.109 1.574-.211c.475-.128 1.163-.267 1.656-.267.38 0 .648-.112.751-.139.024-.006.046.012.046.037v.649c0 .042-.035.139-.146.162-.112.024-1.664.157-1.722.105zm12.221-5.012s-.072-.142-.307-.343c-.235-.2-.777-.454-.868-.473-.091-.02-.167-.022-.213.078-.035.075-.199.746-.444 1.056-.454.575-1.184.418-1.184.418s-.087.46-.153.828c-.067.368-.096.838-.148 1.158-.044.273-.167.523-.322.758-.154.236-.31.4-.35.456-.039.055-.457.441-.045.82l.127.103s.96-.502 1.857-1.555c.897-1.052.726-1.477 1.306-2.158.581-.682.744-1.146.744-1.146z"/><path fill="#292F33" d="M30.465 32.846c-.078.01-.252-.05-.303-.026-.051.024-.308.5-.424.727-.116.226-.316.615-.64.996s-.856.778-1.192 1.018c-.336.24-.642.391-.721.416-.08.025-.082-.003-.104-.028-.022-.025-.122-.174-.122-.174s.269-.107.631-.369c.363-.261.705-.538 1.189-1.107s.704-.997.876-1.36c.214-.452.562-1.078.887-1.46.251-.295.342-.576.388-.674.011-.023.04-.028.059-.012l.503.429c.033.028.085.118.029.22-.055.103-.977 1.394-1.056 1.404z"/><path fill="#AF7E57" d="M21.541 1.384c-1.593-.627-4.077.182-4.365 2.043-.287 1.848.239 4.747 1.863 4.572 1.702-.184 3.448-.554 4.138-2.307s-.043-3.681-1.636-4.308z"/><path fill="#AF7E57" d="M22.724 6.143c2.318-2.723-3.266-2.458-3.266-2.458-1.057.038-.329 1.799-.827 2.761-.341.665 1.095 1.018 1.095 1.018s.659-.01.694.79v.007c.008.204-.013.445-.108.769-.473 1.601 1.677 2.582 2.149.978.187-.635.114-1.193.02-1.708l-.009-.046c-.143-.766-.321-1.437.252-2.111z"/><path fill="#60352A" d="M23.361 2.026C22.3.784 20.841.269 18.342 1.235c-2.183.844-1.481 2.579-.972 2.282 1.402-.817 2.332-.119 3.046 1.021.208-.56 1.122-.904 1.307-.085.208.921-.647 1.322-.533 1.573.038.084-.043-.076 0 0 .547.96 1.437 1.262 1.437 1.262s.337.132.912-1.001.875-3.028-.178-4.261z"/><path fill="#60352A" d="M22.787 3.332c2.163.467 1.275 3.839 1.487 5.08.261 1.528 1.761 1.582 1.761 1.582s-.247-1.064-.116-2.177c.183-1.543 1.189-2.789.127-4.296-1.356-1.924-4.604-.479-3.259-.189z"/><path fill="#2A6797" d="M18.598 34.203c-1.266.109-1.853-.233-1.721-.416.165-.228.128-.397.13-.536.028-2.441-.472-5.991-.472-5.991 0-.348.003-.813.312-1.562.778-1.883 3.951-7.69 3.951-7.69.548-.958 1.771-1.293 2.728-.744.959.548 1.122 1.405.744 2.729-.715 2.508-2.965 5.602-3.903 7.477.224 2.121-.174 3.853.035 5.857.032.288-.538.767-1.804.876z"/><path fill="#4289C1" d="M29.333 31.931c-.364.553-.97.942-1.598.838-1.269-1.924-4.955-5.321-4.955-5.321-.241-.25-.562-.587-.86-1.341-.748-1.895-2.498-8.277-2.498-8.277-.272-1.07.376-2.16 1.446-2.43 1.07-.272 1.783.232 2.43 1.446 1.227 2.301 1.757 6.09 2.384 8.09 1.87 1.568 2.383 3.603 4.275 5.151-.065.857-.261 1.291-.624 1.844z"/><path fill="#9268CA" d="M25.536 20s0 1-2 1h-4.898c-.415-2 .554-3.818-.102-6.5-.848-3.46 2.406-6.874 3.818-6.42 1.846.594 2.693 2.641 2.932 5.858.238 3.216.25 6.062.25 6.062z"/><path fill="#AF7E57" d="M20.142 11.64c-.783 1.171-2.299 3.804-2.526 3.904-1.206.531-2.551 1.215-3.448 1.307-.65.067-1.256.678-1.51.922-.316.304-.752 1.006-.633 1.369.074.226.57.489.741.254.333-.457.974-.533 1.492-.886 1.039-.71 3.285-.758 4.56-1.7.528-.39 1.583-1.134 3.111-3.722-.591-.426-1.787-1.448-1.787-1.448z"/><path fill="#292F33" d="M14.21 17.018c.477.152.847.624.557 1.114-.29.49.403.185.512-.045.223-.468-.178-1.158-.646-1.314-.468-.156-.746.142-.423.245z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f469-1f3fe-200d-1f9bc.svg b/public/emoji/1f469-1f3fe-200d-1f9bc.svg
new file mode 100644
index 0000000000000000000000000000000000000000..ba5ca05435341676862b69dfb615ef1c1e3234aa
--- /dev/null
+++ b/public/emoji/1f469-1f3fe-200d-1f9bc.svg
@@ -0,0 +1 @@
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#292F33" d="M8.22 28.583s.108-.118.211-.409c.104-.291.147-.888.133-.98-.014-.092-.039-.164-.148-.171-.083-.006-.768.08-1.145-.039-.699-.22-.812-.957-.812-.957s-.46.083-.829.152c-.368.069-.818.209-1.134.274-.271.056-.548.03-.823-.03-.275-.06-.485-.147-.55-.165-.066-.017-.575-.27-.782.25l-.051.154s.811.718 2.114 1.182c1.303.464 1.639.152 2.481.452.843.3 1.335.287 1.335.287z"/><path fill="#292F33" d="M6.243 28.821c-.038-.07-.043-.253-.083-.292-.04-.039-.577-.11-.83-.137-.253-.027-.687-.076-1.158-.244-.471-.168-1.032-.523-1.375-.752-.343-.228-.594-.46-.646-.526s-.026-.078-.011-.107.119-.176.119-.176.196.213.569.459.754.467 1.458.717c.703.25 1.182.303 1.583.335.499.039 1.207.141 1.681.309.365.13.66.114.768.123.025.002.04.027.032.051l-.222.623c-.014.041-.081.121-.196.105s-1.651-.419-1.689-.488z"/><path fill="#4289C1" d="M25.097 17.21c.069 1.432-.391 2.922-1.505 3.202-1.066.268-3.056-.151-3.056-.151s-.698.408-.531 1.189c.095.444.257.67.201.712-.05.038-.486-.022-.684-.032-.528-.027-1.1-.211-2.073-.484-.974-.273-1.421-.285-2.481-.577-1.175-.324-1.986-.835-2.33-1.956-.293-.956.277-2.123 1.654-2.63 1.12-.412 4.288.195 5.488.311 1.201.118 5.257-.829 5.317.416z"/><path fill="#4289C1" d="M7.127 27.177c-.646-.143-1.069-.49-1.426-1.025 1.678-1.899 3.787-7.307 3.787-7.307.695-1.744 1.62-2.914 3.252-2.851 2.317.089 5.748.535 5.748.535 2.276.329.671.789 1.305 1.693.635.903-1.294 1.99-2.786 1.891-2.602-.173-3.877-.453-5.522.846-.8 2.306-2.071 4.087-2.844 6.406-.489.079-.868-.045-1.514-.188z"/><path fill="#AF7E57" d="M24.879.905c-1.341-.8-3.695-.439-4.23 1.193-.531 1.621-.487 4.307 1 4.389 1.559.086 3.185.011 4.064-1.464.88-1.474.507-3.318-.834-4.118z"/><path fill="#AF7E57" d="M25.24 5.363c2.488-2.108-2.576-2.694-2.576-2.694-.957-.122-.563 1.57-1.152 2.362-.405.548.834 1.078.834 1.078s.594.089.508.813l-.001.007c-.023.184-.078.399-.211.676-.662 1.37 1.127 2.571 1.789 1.198.262-.544.279-1.056.27-1.534l-.001-.042c-.015-.712-.076-1.343.54-1.864z"/><path fill="#60352A" d="M26.422 1.752C25.651.478 24.415-.201 22.023.298c-2.089.436-1.714 2.102-1.212 1.91 1.382-.528 2.116.237 2.589 1.369.27-.473 1.143-.648 1.189.117.051.859-.778 1.094-.712 1.337.022.082-.028-.075 0 0 .35.945 1.106 1.348 1.106 1.348s.283.169.969-.766c.684-.934 1.235-2.595.47-3.861z"/><path fill="#60352A" d="M25.843 2.713c1.875.677.661 2.73.665 3.791.004 1.306 1.158 1.604 1.158 1.604s-.331-.74-.045-1.649c.397-1.26 1.797-2.079 1.069-3.475-.927-1.783-4.012-.692-2.847-.271z"/><path fill="#9268CA" d="M25.778 16.257c-.214 1.304-.659 2.456-.696 3.032-.02.32-.939-.237-1.604-.511-1.782-.735-3.317-1.825-3.317-1.825.398-1.193.696-3.032.149-5.268-.477-1.953 3.106-5.252 4.309-4.634 1.573.807 2.382 1.782 1.904 4.684l-.745 4.522z"/><path fill="#66757F" d="M27.811 10.609l.425-5.242c.022-.274.265-.48.539-.458.274.022.48.265.458.539l-.425 5.242c-.022.274-.265.48-.539.458-.274-.022-.48-.265-.458-.539z"/><path fill="#292F33" d="M16 21v2s-2 0-2 2v3c0 1 1 2 2 2h10c1 0 2-1 2-2v-5c0-1-1-2-2-2H16z"/><path fill="#292F33" d="M22.956 22.559l-9.848-1.736c-.985-.174-.985-.174-.811-1.158.096-.542.617-.907 1.158-.811l9.848 1.736c.542.096.907.617.811 1.158-.173.985-.173.985-1.158.811z"/><path fill="#292F33" d="M25.238 19.023c-.193.922-.557 1.827-2.094 1.537-1.537-.29-1.782 1.225-.824 1.493.958.267 3.252.646 3.921-.446.668-1.092.78-2.139.713-2.606s-1.572-.66-1.716.022z"/><path fill="#DD2E44" d="M23.442 22.896l-10.833-1.91c-.271-.048-.453-.308-.406-.579.048-.271.308-.453.579-.406l10.833 1.91c.271.048.453.308.406.579-.048.271-.309.454-.579.406z"/><path fill="#292F33" d="M28.932 9.642l-1.736 9.848c-.174.985-.174.985-1.158.811-.542-.096-.907-.617-.811-1.158l1.736-9.848c.096-.542.617-.907 1.158-.811.984.173.984.173.811 1.158zm.992-7.49l-.713 4.025c-.087.493-.168 1.007-1.153.834-.542-.096-.882-.715-.763-1.398l.639-3.609c.163-.579.626-1.004 1.167-.909.985.173.91.564.823 1.057z"/><path fill="#DD2E44" d="M29.406 9.224l-1.91 10.833c-.048.271-.308.453-.579.406-.271-.048-.453-.308-.406-.579l1.91-10.833c.048-.271.308-.453.579-.406.272.048.454.308.406.579zm1.243-7.455l-.91 5.18c-.048.271-.308.453-.579.406-.271-.048-.453-.308-.406-.579l.91-5.18c.048-.271.308-.453.579-.406.271.047.454.308.406.579z"/><path fill="#292F33" d="M25.494 18.441l-7.466-1.316c-.747-.132-.747-.132-.617-.869.071-.405.466-.678.877-.606l7.466 1.316c.411.072.688.463.617.869-.13.738-.13.738-.877.606z"/><path fill="#DD2E44" d="M23.123 21.824c.993.175 2.954.521 3.475-2.433s1.506-2.781.985.174-2.237 3.667-4.634 3.245c-1.969-.348-1.796-1.333.174-.986zm-10.33-1.821c1.971.34 2.277 1.422.308 1.07-.873-.156-.984.212-1.251.958-.252.702-.611 1.757-1.144 3.23-.391 1.082-1.279.603-.95-.342.551-1.588 1.061-2.968 1.392-3.847.338-.895.613-1.247 1.645-1.069z"/><path fill="#DD2E44" d="M10.62 24.01c-.258-.094-.547.04-.641.299l-2.052 5.638c-.094.258.04.547.299.641.258.094.547-.04.641-.299l2.052-5.638c.094-.259-.041-.547-.299-.641z"/><path fill="#66757F" d="M8.226 30.588L4.467 29.22c-.258-.094-.393-.382-.299-.641.094-.258.382-.393.641-.299l3.759 1.368c.258.094.393.382.299.641-.094.258-.383.393-.641.299z"/><path fill="#DD2E44" d="M13.844 30.862l2.95-2.95c.194-.194.194-.513 0-.707-.194-.194-.513-.194-.707 0l-2.95 2.95c-.194.194-.194.513 0 .707.194.194.512.194.707 0zM32 34c-.55 0-1-.45-1-1v-3c0-.55.45-1 1-1s1 .45 1 1v3c0 .55-.45 1-1 1z"/><path fill="#DD2E44" d="M13.5 34c-.55 0-1-.45-1-1v-3c0-.55.45-1 1-1s1 .45 1 1v3c0 .55-.45 1-1 1zm12.983-6.005h2c.275 0 .5-.225.5-.5s-.225-.5-.5-.5h-2c-.275 0-.5.225-.5.5s.225.5.5.5z"/><path fill="#DD2E44" d="M31.123 30.803l-2.95-2.95c-.194-.194-.194-.513 0-.707.194-.194.513-.194.707 0l2.95 2.95c.194.194.194.513 0 .707-.194.195-.512.195-.707 0z"/><path fill="#292F33" d="M11.672 16.127c.742.318 2.05.936 2.339 1.047 0 0 .134-.891.49-.891 0 0 .134-.468.223-.668s.356-.134.379.245c.022.379-.089.512-.089.512s.334.423.134 1.002c0 0 .446.067.356.624-.089.557.067.98-.334 1.092-.401.111-1.916.535-1.938-.067-.022-.601-.401-1.069-1.136-1.515-.735-.446-1.27-.936-1.181-1.181.088-.244.133-.467.757-.2z"/><path fill="#DD2E44" d="M26.5 25h-11c-.275 0-.5-.225-.5-.5s.225-.5.5-.5h11c.275 0 .5.225.5.5s-.225.5-.5.5z"/><path fill="#AF7E57" d="M22.691 10.276c-.579 1.455-.982 3.884-1.237 3.894-1.473.062-3.222.614-4.149.559-.672-.04-1.306-.167-1.651-.05-.552.187-1.159.289-1.351.632-.195.348.171.657 1.035.656.635 0 1.045.208 1.674.06.896-.21 4.492.479 5.665-.345.554-.389 1.272-1.95 2.356-4.742-1.084-.476-2.342-.664-2.342-.664z"/><circle fill="#66757F" cx="21.5" cy="31.5" r="4.5"/><circle fill="#66757F" cx="13.5" cy="33.5" r="2.5"/><circle fill="#66757F" cx="32" cy="34" r="2"/><circle fill="#CCD6DD" cx="21.5" cy="31.5" r="2.5"/><circle fill="#CCD6DD" cx="13.5" cy="33.5" r="1.5"/><circle fill="#292F33" cx="32" cy="34" r="1"/><g fill="#292F33"><circle cx="22" cy="30.634" r=".5"/><circle cx="21" cy="32.366" r=".5"/><circle cx="20.634" cy="31" r=".5"/><circle cx="22.366" cy="32" r=".5"/></g><circle fill="#292F33" cx="13.5" cy="33.5" r=".75"/><circle fill="#66757F" cx="32" cy="34" r=".5"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f469-1f3fe-200d-1f9bd.svg b/public/emoji/1f469-1f3fe-200d-1f9bd.svg
new file mode 100644
index 0000000000000000000000000000000000000000..f481961b19923ac51865051ba292f0d0435b7da1
--- /dev/null
+++ b/public/emoji/1f469-1f3fe-200d-1f9bd.svg
@@ -0,0 +1 @@
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#292F33" d="M7.981 29.995s.097-.127.175-.426.069-.897.047-.988-.053-.16-.163-.158c-.083.001-.759.146-1.144.061-.716-.158-.892-.883-.892-.883s-.452.123-.812.223c-.361.101-.796.279-1.106.372-.265.079-.543.078-.823.041s-.496-.105-.563-.116c-.067-.011-.597-.219-.757.317l-.037.159s.871.645 2.209.993 1.646.009 2.511.234c.866.226 1.355.171 1.355.171z"/><path fill="#292F33" d="M6.032 30.404c-.044-.066-.065-.248-.109-.284-.043-.036-.585-.059-.839-.064-.254-.005-.691-.016-1.175-.142-.484-.126-1.074-.431-1.436-.629s-.632-.407-.689-.468c-.057-.061-.033-.075-.02-.106.013-.031.103-.186.103-.186s.214.195.607.407.792.399 1.514.587 1.204.199 1.606.195c.501-.004 1.215.035 1.701.162.375.098.668.056.776.056.025 0 .043.023.036.048l-.167.64c-.011.042-.07.128-.186.122-.114-.005-1.678-.272-1.722-.338z"/><path fill="#4289C1" d="M23.802 17.195c.193 1.421-.135 2.945-1.22 3.321-1.039.36-3.058.116-3.058.116s-.66.468-.426 1.231c.133.434.314.645.262.692-.046.042-.486.02-.684.027-.528.02-1.114-.114-2.108-.301s-1.44-.16-2.522-.359c-1.198-.22-2.051-.659-2.491-1.745-.375-.927.091-2.139 1.419-2.764 1.08-.508 4.289-.179 5.495-.168s5.166-1.285 5.333-.05z"/><path fill="#4289C1" d="M6.77 28.689c-.656-.086-1.108-.395-1.51-.897 1.506-2.038 3.136-7.609 3.136-7.609.541-1.798 1.36-3.044 2.992-3.124 2.316-.113 5.772.032 5.772.032 2.296.13.738.727 1.448 1.573.712.845-1.115 2.095-2.611 2.126-2.607.054-3.902-.113-5.428 1.324-.596 2.367-1.706 4.252-2.275 6.63-.48.122-.868.031-1.524-.055z"/><path fill="#AF7E57" d="M21.842.878c-1.405-.68-3.719-.115-4.11 1.557-.388 1.661-.109 4.333 1.379 4.285 1.56-.05 3.174-.266 3.921-1.812.748-1.545.215-3.35-1.19-4.03z"/><path fill="#AF7E57" d="M22.59 5.288c2.295-2.316-2.801-2.46-2.801-2.46-.964-.038-.424 1.613-.942 2.453-.356.582.925 1.001.925 1.001s.6.036.577.766v.007c-.007.186-.043.404-.151.691-.54 1.423 1.347 2.463 1.887 1.037.213-.564.186-1.077.136-1.552l-.006-.041c-.077-.707-.193-1.329.375-1.902z"/><path fill="#60352A" d="M23.453 1.588C22.574.386 21.283-.183 18.944.523c-2.044.617-1.525 2.243-1.042 2.008 1.331-.647 2.128.052 2.699 1.138.228-.495 1.083-.745 1.194.013.126.852-.68 1.158-.593 1.394.029.079-.034-.072 0 0 .431.911 1.22 1.246 1.22 1.246s.297.144.898-.847 1.005-2.693.133-3.887z"/><path fill="#60352A" d="M22.934 2.681c1.968.317 1.157 2.559 1.358 3.601.247 1.283 1.436 1.361 1.436 1.361s-.463-.666-.35-1.611c.156-1.312 1.379-2.377.405-3.613-1.244-1.58-4.072.065-2.849.262z"/><path fill="#9268CA" d="M24.353 16.862c.015 1.321-.057 1.777.007 2.351.036.319-1.252-.021-1.954-.176-1.883-.415-3.583-1.221-3.583-1.221.184-1.244.869-3.07-.624-4.823-.455-.535-.375-1.854.369-3.041.828-1.321 1.751-2.535 2.926-2.661.812-.088 1.597.328 2.15 1.2 2.206 1.83.762 1.78.777 3.121.024 2.035-.083 3.929-.068 5.25z"/><g fill="#DD2E44"><path d="M13.465 27.092l10.824.95c.274.024.518-.181.542-.455.024-.274-.181-.518-.455-.542l-10.824-.95c-.274-.024-.518.181-.542.455-.024.274.181.518.455.542z"/><path d="M24.288 28.041c-.274-.024-.478-.268-.455-.542l.436-4.981c.024-.274.268-.478.542-.455.274.024.478.268.455.542l-.436 4.981c-.024.275-.268.479-.542.455zm-10.738-7.58c-.274-.024-.518.181-.542.455l-1.015 11.597c-.024.274.181.518.455.542.274.024.518-.181.542-.455l1.015-11.597c.023-.274-.181-.518-.455-.542z"/></g><path fill="#292F33" d="M23.524 20.592c1.431-.206 2.834-.148 2.345.544-.489.692-1.575 1.905-3.418 1.707-1.844-.198.185-2.123 1.073-2.251z"/><path fill="#292F33" d="M22.45 22.843l-9.962-.872c-.996-.087-.996-.087-.909-1.083.048-.548.535-.957 1.083-.909l9.962.872c.548.048.957.535.909 1.083-.087.996-.087.996-1.083.909z"/><path fill="#DD2E44" d="M22.964 23.136l-10.958-.959c-.274-.024-.478-.268-.455-.542.024-.274.268-.478.542-.455l10.958.959c.274.024.478.268.455.542-.025.275-.268.479-.542.455z"/><path fill="#292F33" d="M27.278 9.454l-.872 9.962c-.087.996-.087.996-1.083.909-.548-.048-.957-.535-.909-1.083l.872-9.962c.048-.548.535-.957 1.083-.909.996.087.996.087.909 1.083z"/><path fill="#DD2E44" d="M27.714 8.996l-.959 10.958c-.024.274-.268.478-.542.455-.274-.024-.478-.268-.455-.542l.959-10.958c.024-.274.268-.478.542-.455.274.025.479.268.455.542z"/><path fill="#292F33" d="M24.62 18.519l-7.552-.661c-.755-.066-.755-.066-.69-.812.036-.41.405-.716.82-.68l7.552.661c.415.036.726.402.69.812-.064.746-.064.746-.82.68z"/><path fill="#DD2E44" d="M22.553 22.096c1.004.088 2.989.261 3.25-2.727s1.258-2.901.996.087-1.909 3.848-4.333 3.636c-1.993-.174-1.906-1.17.087-.996zm-10.449-.914c1.993.166 2.392 1.218.4 1.039-.883-.079-.962.297-1.163 1.063-.189.721-.456 1.803-.858 3.318-.295 1.112-1.221.712-.977-.257.411-1.63.798-3.05 1.052-3.953.258-.922.502-1.297 1.546-1.21z"/><g fill="#66757F"><circle cx="24.5" cy="27.5" r="1.5"/><path d="M31.245 30.817l-6.062-3.5 3.5-6.062-.866-.5-3.5 6.062-6.062-3.5-.5.866 6.062 3.5-3.5 6.062.866.5 3.5-6.062 6.062 3.5z"/><path d="M26.924 34.615l-1.812-6.761 6.762-1.812-.259-.966-6.761 1.812-1.812-6.762-.966.259 1.812 6.761-6.762 1.812.259.966 6.761-1.812 1.812 6.762z"/></g><path fill="#292F33" d="M24.5 19c-4.694 0-8.5 3.806-8.5 8.5s3.806 8.5 8.5 8.5 8.5-3.806 8.5-8.5-3.806-8.5-8.5-8.5zm0 15c-3.59 0-6.5-2.91-6.5-6.5s2.91-6.5 6.5-6.5 6.5 2.91 6.5 6.5-2.91 6.5-6.5 6.5z"/><path fill="#66757F" d="M24.5 20c-4.142 0-7.5 3.358-7.5 7.5s3.358 7.5 7.5 7.5 7.5-3.358 7.5-7.5-3.358-7.5-7.5-7.5zm0 14c-3.59 0-6.5-2.91-6.5-6.5s2.91-6.5 6.5-6.5 6.5 2.91 6.5 6.5-2.91 6.5-6.5 6.5zm-9.152-.433l-2.165-1.25 1.25-2.165-.866-.5-1.25 2.165-2.165-1.25-.5.866 2.165 1.25-1.25 2.165.866.5 1.25-2.165 2.165 1.25z"/><path fill="#292F33" d="M12.5 29C10.567 29 9 30.567 9 32.5s1.567 3.5 3.5 3.5 3.5-1.567 3.5-3.5-1.567-3.5-3.5-3.5zm0 6c-1.381 0-2.5-1.119-2.5-2.5s1.119-2.5 2.5-2.5 2.5 1.119 2.5 2.5-1.119 2.5-2.5 2.5z"/><path fill="#DD2E44" d="M10.288 25.363c-.266-.071-.541.088-.612.354l-1.553 5.796c-.071.266.088.541.354.612.266.071.541-.088.612-.354l1.553-5.796c.07-.265-.089-.541-.354-.612z"/><path fill="#66757F" d="M8.476 32.125L4.612 31.09c-.266-.071-.425-.347-.354-.612.071-.266.347-.425.612-.354l3.864 1.035c.266.071.426.346.354.612-.071.266-.346.425-.612.354z"/><path fill="#DD2E44" d="M30.103 9.969l-2.954-.521c-.271-.048-.453-.308-.406-.579.048-.271.308-.453.579-.406l2.954.521c.271.048.453.308.406.579-.048.272-.308.454-.579.406z"/><path fill="#292F33" d="M31.088 10.143l-2.615-.467c-.271-.048-.26-.274-.213-.545.048-.271.116-.487.386-.44l2.615.467c.271.048.453.308.406.579-.048.271-.308.454-.579.406z"/><path fill="#AF7E57" d="M22.657 10.9c1.111 1.023 3.158 2.426 3.128 2.68-.174 1.464.402 3.203.2 4.11-.147.657-.805 1.117-.745 1.476.667.012.407 1.163.677 1.687.284.551 1.174-.056 1.311-.909.101-.627-.068-1.112-.113-1.757-.064-.918 1.207-3.625.39-5.457-.276-.618-1.167-1.842-3.212-3.751-.608.439-1.636 1.921-1.636 1.921z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f469-1f3ff-200d-1f91d-200d-1f468-1f3fb.svg b/public/emoji/1f469-1f3ff-200d-1f91d-200d-1f468-1f3fb.svg
new file mode 100644
index 0000000000000000000000000000000000000000..cbcfecadc5c1d0921717daf16cff0b27560adcdb
--- /dev/null
+++ b/public/emoji/1f469-1f3ff-200d-1f91d-200d-1f468-1f3fb.svg
@@ -0,0 +1 @@
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#0B0200" d="M11 0C9.736 0 8.565.393 7.598 1.061 7.401 1.031 7.205 1 7 1 4.791 1 3 2.791 3 5v6c0 3.866 3.134 7 7 7s7-3.134 7-7V6.001C17 2.687 14.314 0 11 0z"/><path fill="#7C533E" d="M11.213 34.309c-.052.682 1.849.953 2.129.791.299-.173-.698-.623-.702-.977-.019-1.797.53-1.648.311-3.492.443-1.625.672-2.592.672-3.131 0-1.25-3.312-.766-3.312 0 0 .344.365 1.681.417 3.131-.313 1.659.641 1.615.485 3.678zm-2.448 0c.052.682-1.849.953-2.129.791-.299-.173.698-.623.702-.977.019-1.797-.53-1.648-.311-3.492-.443-1.625-.672-2.592-.672-3.131 0-1.25 3.313-.766 3.313 0 0 .344-.365 1.681-.417 3.131.311 1.659-.642 1.615-.486 3.678z"/><path fill="#664131" d="M10.311 27.5c0 .206.13.771.246 1.5h2.817c.164-.689.249-1.175.249-1.5 0-1.25-3.312-.766-3.312 0zm-3.957 0c0 .325.085.811.249 1.5H9.42c.116-.729.247-1.294.247-1.5 0-.766-3.313-1.25-3.313 0z"/><path fill="#7C533E" d="M3.258 26.96c-.258.124-.503-.097-.619-.227-.328-.367-.583-1.246-.282-2.209.303-.973.6-2.384 1.199-4.002.081-.22.499-3.764.805-4.445.197-.437 1.28-.896 1.81-.807.529.089.246.651.105 1.13 0 0-.916 3.953-1.016 4.296-.316 1.079-1.624 2.918-1.565 4.237.031.692.06 1.255-.339 1.246-.049.362-.003.735-.098.781zm14.984-.2c.271.091.487-.159.586-.302.279-.405.422-1.309.004-2.227-.423-.927-.894-2.29-1.69-3.821-.108-.208-.966-3.672-1.355-4.309-.25-.409-1.382-.729-1.897-.574-.513.154-.162.676.037 1.134 0 0 1.403 3.807 1.546 4.135.449 1.031 1.977 2.691 2.082 4.008.056.69.097 1.253.492 1.194.094.353.095.729.195.762z"/><path fill="#292F33" d="M13.945 36c.305 0 .372-.418.089-.629-.379-.285-.88-1.371-1.561-1.371h-1.245c-.229 0-.49 1.209-.41 1.48.102.345.433.52.812.52h2.315zm-7.913 0c-.305 0-.372-.418-.089-.629.379-.285.88-1.371 1.561-1.371h1.245c.229 0 .49 1.209.41 1.48-.102.345-.433.52-.811.52H6.032z"/><path fill="#E75A70" d="M14.354 17.771L16 16c-1.438-1.792-4-2-4-2H8s-2.562.208-4 2l1.646 1.771S6.25 20.688 6.25 21 5 25.75 5 28h10c0-2.25-1.25-6.688-1.25-7s.604-3.229.604-3.229z"/><path fill="#DA2F47" d="M13.75 21c0-.106.07-.512.161-1H6.089c.092.488.161.894.161 1 0 .083-.122.509-.223 1h7.942c-.108-.558-.219-.917-.219-1z"/><path fill="#7C533E" d="M8 11v4c0 1.104.896 2 2 2s2-.896 2-2v-4H8z"/><path fill="#664131" d="M12 11l-4 .019V15s2 1 4 0v-4z"/><path fill="#7C533E" d="M15 3H5v6c0 2.762 2.238 5 5 5s5-2.237 5-5V3z"/><path fill="#0B0200" d="M15 2H5L4 7c4 0 4-4 4-4s0 4 8 4l-1-5z"/><path fill="#DF1F32" d="M12 12H8s0 1 2 1 2-1 2-1z"/><circle cx="7.5" cy="8.5" r=".5"/><circle cx="12.5" cy="8.5" r=".5"/><path fill="#3D2E24" d="M9 10h2s0 1-1 1-1-1-1-1z"/><path fill="#292F33" d="M26.5 0c-1.187 0-2.282.379-3.181 1.018C21.473 1.114 20 2.629 20 4.5c0 1.542.007 3.484 2.038 4.208C23.036 10.094 24.66 11 26.5 11c3.037 0 5.5-2.462 5.5-5.499C32 2.463 29.537 0 26.5 0z"/><path fill="#F7DECE" d="M18.117 26.76c-.271.091-.487-.159-.586-.302-.279-.405-.422-1.309-.004-2.227.423-.927.702-2.072 1.69-3.821.115-.204.494-2.746 1.242-4.354.202-.435 1.495-.684 2.009-.529.513.154-.005.98-.037 1.134-.344 1.651-1.305 4.077-1.45 4.404-.8 1.806-1.965 2.389-2.071 3.706-.055.69-.205 1.286-.6 1.228-.092.352-.094.728-.193.761zm14.595.204c.257.126.504-.094.62-.222.33-.365.591-1.242.296-2.208-.297-.975-.424-2.146-1.174-4.01-.087-.217-.129-2.787-.66-4.479-.143-.457-1.392-.875-1.922-.789-.529.086-.124.972-.112 1.129.124 1.682.758 4.213.859 4.556.556 1.895 1.634 2.627 1.566 3.946-.036.692.034 1.302.433 1.296.048.363 0 .735.094.781z"/><path fill="#AAB8C2" d="M29.555 29.5c.5-2.734.422-6.5.422-6.5h-7.963s-.078 3.766.422 6.5c.063.344.188 3.344-.109 5.5-.066.479 2.886.937 2.844-.125-.078-1.969.264-3.513.328-4.5.035-.547.25-1.875.344-3.208.011-.018.295-.018.306 0 .094 1.333.308 2.661.344 3.208.064.987.406 2.531.328 4.5-.042 1.062 2.91.604 2.844.125-.297-2.156-.172-5.156-.11-5.5z"/><path fill="#292F33" d="M30.54 36c.499-.406-.041-1.161-1.42-1.402-1.163-.203-2.2-.032-2.363.35-.212.493-.05 1.052-.05 1.052h3.833zm-9.117 0c-.499-.406.041-1.161 1.42-1.402 1.163-.203 2.2-.032 2.363.35.212.494.05 1.053.05 1.053L21.423 36z"/><path fill="#4289C1" d="M30.797 14.766C29.578 14 28 14 28 14h-4s-1.578 0-2.797.766c-1.201.754-1.656 3-1.656 3l2.203.688.109 5.546h8.281l.109-5.547 2.203-.688c.001.001-.454-2.245-1.655-2.999z"/><path fill="#F7DECE" d="M24 10.042v4c0 .682.896 1.305 2 1.305s2-.668 2-1.305v-4h-4z"/><path fill="#EEC2AD" d="M24 14.042c0 .682.896 1.305 2 1.305s2-.668 2-1.305V11l-4 .019v3.023z"/><path fill="#F7DECE" d="M31 3H21v6c0 2.762 2.238 5 5 5s5-2.237 5-5V3z"/><path fill="#292F33" d="M21 2.5L20.5 5l.5 2c2.333 0 2.85-2.412 2.965-3.488C24.004 4.588 24.779 7 31 7l.5-2-.5-2.5H21z"/><path fill="#C1694F" d="M28 12h-4s0 1 2 1 2-1 2-1z"/><circle fill="#662113" cx="23.5" cy="8.5" r=".5"/><circle fill="#662113" cx="28.5" cy="8.5" r=".5"/><path fill="#C1694F" d="M25 10h2s0 1-1 1-1-1-1-1z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f469-1f3ff-200d-1f91d-200d-1f468-1f3fc.svg b/public/emoji/1f469-1f3ff-200d-1f91d-200d-1f468-1f3fc.svg
new file mode 100644
index 0000000000000000000000000000000000000000..fce4c918427717bfa5f2a1241b40b87f814a57a9
--- /dev/null
+++ b/public/emoji/1f469-1f3ff-200d-1f91d-200d-1f468-1f3fc.svg
@@ -0,0 +1 @@
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#0B0200" d="M11 0C9.736 0 8.565.393 7.598 1.061 7.401 1.031 7.205 1 7 1 4.791 1 3 2.791 3 5v6c0 3.866 3.134 7 7 7s7-3.134 7-7V6.001C17 2.687 14.314 0 11 0z"/><path fill="#7C533E" d="M11.213 34.309c-.052.682 1.849.953 2.129.791.299-.173-.698-.623-.702-.977-.019-1.797.53-1.648.311-3.492.443-1.625.672-2.592.672-3.131 0-1.25-3.312-.766-3.312 0 0 .344.365 1.681.417 3.131-.313 1.659.641 1.615.485 3.678zm-2.448 0c.052.682-1.849.953-2.129.791-.299-.173.698-.623.702-.977.019-1.797-.53-1.648-.311-3.492-.443-1.625-.672-2.592-.672-3.131 0-1.25 3.313-.766 3.313 0 0 .344-.365 1.681-.417 3.131.311 1.659-.642 1.615-.486 3.678z"/><path fill="#664131" d="M10.311 27.5c0 .206.13.771.246 1.5h2.817c.164-.689.249-1.175.249-1.5 0-1.25-3.312-.766-3.312 0zm-3.957 0c0 .325.085.811.249 1.5H9.42c.116-.729.247-1.294.247-1.5 0-.766-3.313-1.25-3.313 0z"/><path fill="#7C533E" d="M3.258 26.96c-.258.124-.503-.097-.619-.227-.328-.367-.583-1.246-.282-2.209.303-.973.6-2.384 1.199-4.002.081-.22.499-3.764.805-4.445.197-.437 1.28-.896 1.81-.807.529.089.246.651.105 1.13 0 0-.916 3.953-1.016 4.296-.316 1.079-1.624 2.918-1.565 4.237.031.692.06 1.255-.339 1.246-.049.362-.003.735-.098.781zm14.984-.2c.271.091.487-.159.586-.302.279-.405.422-1.309.004-2.227-.423-.927-.894-2.29-1.69-3.821-.108-.208-.966-3.672-1.355-4.309-.25-.409-1.382-.729-1.897-.574-.513.154-.162.676.037 1.134 0 0 1.403 3.807 1.546 4.135.449 1.031 1.977 2.691 2.082 4.008.056.69.097 1.253.492 1.194.094.353.095.729.195.762z"/><path fill="#292F33" d="M13.945 36c.305 0 .372-.418.089-.629-.379-.285-.88-1.371-1.561-1.371h-1.245c-.229 0-.49 1.209-.41 1.48.102.345.433.52.812.52h2.315zm-7.913 0c-.305 0-.372-.418-.089-.629.379-.285.88-1.371 1.561-1.371h1.245c.229 0 .49 1.209.41 1.48-.102.345-.433.52-.811.52H6.032z"/><path fill="#E75A70" d="M14.354 17.771L16 16c-1.438-1.792-4-2-4-2H8s-2.562.208-4 2l1.646 1.771S6.25 20.688 6.25 21 5 25.75 5 28h10c0-2.25-1.25-6.688-1.25-7s.604-3.229.604-3.229z"/><path fill="#DA2F47" d="M13.75 21c0-.106.07-.512.161-1H6.089c.092.488.161.894.161 1 0 .083-.122.509-.223 1h7.942c-.108-.558-.219-.917-.219-1z"/><path fill="#7C533E" d="M8 11v4c0 1.104.896 2 2 2s2-.896 2-2v-4H8z"/><path fill="#664131" d="M12 11l-4 .019V15s2 1 4 0v-4z"/><path fill="#7C533E" d="M15 3H5v6c0 2.762 2.238 5 5 5s5-2.237 5-5V3z"/><path fill="#0B0200" d="M15 2H5L4 7c4 0 4-4 4-4s0 4 8 4l-1-5z"/><path fill="#DF1F32" d="M12 12H8s0 1 2 1 2-1 2-1z"/><circle cx="7.5" cy="8.5" r=".5"/><circle cx="12.5" cy="8.5" r=".5"/><path fill="#3D2E24" d="M9 10h2s0 1-1 1-1-1-1-1z"/><path fill="#FFE51E" d="M26.5 0c-1.187 0-2.282.379-3.181 1.018C21.473 1.114 20 2.629 20 4.5c0 1.542.007 3.484 2.038 4.208C23.036 10.094 24.66 11 26.5 11c3.037 0 5.5-2.462 5.5-5.499C32 2.463 29.537 0 26.5 0z"/><path fill="#F3D2A2" d="M18.117 26.76c-.271.091-.487-.159-.586-.302-.279-.405-.422-1.309-.004-2.227.423-.927.702-2.072 1.69-3.821.115-.204.494-2.746 1.242-4.354.202-.435 1.495-.684 2.009-.529.513.154-.005.98-.037 1.134-.344 1.651-1.305 4.077-1.45 4.404-.8 1.806-1.965 2.389-2.071 3.706-.055.69-.205 1.286-.6 1.228-.092.352-.094.728-.193.761zm14.595.204c.257.126.504-.094.62-.222.33-.365.591-1.242.296-2.208-.297-.975-.424-2.146-1.174-4.01-.087-.217-.129-2.787-.66-4.479-.143-.457-1.392-.875-1.922-.789-.529.086-.124.972-.112 1.129.124 1.682.758 4.213.859 4.556.556 1.895 1.634 2.627 1.566 3.946-.036.692.034 1.302.433 1.296.048.363 0 .735.094.781z"/><path fill="#AAB8C2" d="M29.555 29.5c.5-2.734.422-6.5.422-6.5h-7.963s-.078 3.766.422 6.5c.063.344.188 3.344-.109 5.5-.066.479 2.886.937 2.844-.125-.078-1.969.264-3.513.328-4.5.035-.547.25-1.875.344-3.208.011-.018.295-.018.306 0 .094 1.333.308 2.661.344 3.208.064.987.406 2.531.328 4.5-.042 1.062 2.91.604 2.844.125-.297-2.156-.172-5.156-.11-5.5z"/><path fill="#292F33" d="M30.54 36c.499-.406-.041-1.161-1.42-1.402-1.163-.203-2.2-.032-2.363.35-.212.493-.05 1.052-.05 1.052h3.833zm-9.117 0c-.499-.406.041-1.161 1.42-1.402 1.163-.203 2.2-.032 2.363.35.212.494.05 1.053.05 1.053L21.423 36z"/><path fill="#4289C1" d="M30.797 14.766C29.578 14 28 14 28 14h-4s-1.578 0-2.797.766c-1.201.754-1.656 3-1.656 3l2.203.688.109 5.546h8.281l.109-5.547 2.203-.688c.001.001-.454-2.245-1.655-2.999z"/><path fill="#F3D2A2" d="M24 10.042v4c0 .682.896 1.305 2 1.305s2-.668 2-1.305v-4h-4z"/><path fill="#E2C196" d="M24 14.042c0 .682.896 1.305 2 1.305s2-.668 2-1.305V11l-4 .019v3.023z"/><path fill="#F3D2A2" d="M31 3H21v6c0 2.762 2.238 5 5 5s5-2.237 5-5V3z"/><path fill="#FFE51E" d="M21 2.5L20.5 5l.5 2c2.333 0 2.85-2.412 2.965-3.488C24.004 4.588 24.779 7 31 7l.5-2-.5-2.5H21z"/><path fill="#C1694F" d="M28 12h-4s0 1 2 1 2-1 2-1z"/><circle fill="#662113" cx="23.5" cy="8.5" r=".5"/><circle fill="#662113" cx="28.5" cy="8.5" r=".5"/><path fill="#C1694F" d="M25 10h2s0 1-1 1-1-1-1-1z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f469-1f3ff-200d-1f91d-200d-1f468-1f3fd.svg b/public/emoji/1f469-1f3ff-200d-1f91d-200d-1f468-1f3fd.svg
new file mode 100644
index 0000000000000000000000000000000000000000..84e2b2bd86423b0fba589466021945d2f12ec73b
--- /dev/null
+++ b/public/emoji/1f469-1f3ff-200d-1f91d-200d-1f468-1f3fd.svg
@@ -0,0 +1 @@
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#0B0200" d="M11 0C9.736 0 8.565.393 7.598 1.061 7.401 1.031 7.205 1 7 1 4.791 1 3 2.791 3 5v6c0 3.866 3.134 7 7 7s7-3.134 7-7V6.001C17 2.687 14.314 0 11 0z"/><path fill="#7C533E" d="M11.213 34.309c-.052.682 1.849.953 2.129.791.299-.173-.698-.623-.702-.977-.019-1.797.53-1.648.311-3.492.443-1.625.672-2.592.672-3.131 0-1.25-3.312-.766-3.312 0 0 .344.365 1.681.417 3.131-.313 1.659.641 1.615.485 3.678zm-2.448 0c.052.682-1.849.953-2.129.791-.299-.173.698-.623.702-.977.019-1.797-.53-1.648-.311-3.492-.443-1.625-.672-2.592-.672-3.131 0-1.25 3.313-.766 3.313 0 0 .344-.365 1.681-.417 3.131.311 1.659-.642 1.615-.486 3.678z"/><path fill="#664131" d="M10.311 27.5c0 .206.13.771.246 1.5h2.817c.164-.689.249-1.175.249-1.5 0-1.25-3.312-.766-3.312 0zm-3.957 0c0 .325.085.811.249 1.5H9.42c.116-.729.247-1.294.247-1.5 0-.766-3.313-1.25-3.313 0z"/><path fill="#7C533E" d="M3.258 26.96c-.258.124-.503-.097-.619-.227-.328-.367-.583-1.246-.282-2.209.303-.973.6-2.384 1.199-4.002.081-.22.499-3.764.805-4.445.197-.437 1.28-.896 1.81-.807.529.089.246.651.105 1.13 0 0-.916 3.953-1.016 4.296-.316 1.079-1.624 2.918-1.565 4.237.031.692.06 1.255-.339 1.246-.049.362-.003.735-.098.781zm14.984-.2c.271.091.487-.159.586-.302.279-.405.422-1.309.004-2.227-.423-.927-.894-2.29-1.69-3.821-.108-.208-.966-3.672-1.355-4.309-.25-.409-1.382-.729-1.897-.574-.513.154-.162.676.037 1.134 0 0 1.403 3.807 1.546 4.135.449 1.031 1.977 2.691 2.082 4.008.056.69.097 1.253.492 1.194.094.353.095.729.195.762z"/><path fill="#292F33" d="M13.945 36c.305 0 .372-.418.089-.629-.379-.285-.88-1.371-1.561-1.371h-1.245c-.229 0-.49 1.209-.41 1.48.102.345.433.52.812.52h2.315zm-7.913 0c-.305 0-.372-.418-.089-.629.379-.285.88-1.371 1.561-1.371h1.245c.229 0 .49 1.209.41 1.48-.102.345-.433.52-.811.52H6.032z"/><path fill="#E75A70" d="M14.354 17.771L16 16c-1.438-1.792-4-2-4-2H8s-2.562.208-4 2l1.646 1.771S6.25 20.688 6.25 21 5 25.75 5 28h10c0-2.25-1.25-6.688-1.25-7s.604-3.229.604-3.229z"/><path fill="#DA2F47" d="M13.75 21c0-.106.07-.512.161-1H6.089c.092.488.161.894.161 1 0 .083-.122.509-.223 1h7.942c-.108-.558-.219-.917-.219-1z"/><path fill="#7C533E" d="M8 11v4c0 1.104.896 2 2 2s2-.896 2-2v-4H8z"/><path fill="#664131" d="M12 11l-4 .019V15s2 1 4 0v-4z"/><path fill="#7C533E" d="M15 3H5v6c0 2.762 2.238 5 5 5s5-2.237 5-5V3z"/><path fill="#0B0200" d="M15 2H5L4 7c4 0 4-4 4-4s0 4 8 4l-1-5z"/><path fill="#DF1F32" d="M12 12H8s0 1 2 1 2-1 2-1z"/><circle cx="7.5" cy="8.5" r=".5"/><circle cx="12.5" cy="8.5" r=".5"/><path fill="#3D2E24" d="M9 10h2s0 1-1 1-1-1-1-1z"/><path fill="#963B22" d="M26.5 0c-1.187 0-2.282.379-3.181 1.018C21.473 1.114 20 2.629 20 4.5c0 1.542.007 3.484 2.038 4.208C23.036 10.094 24.66 11 26.5 11c3.037 0 5.5-2.462 5.5-5.499C32 2.463 29.537 0 26.5 0z"/><path fill="#D4AB88" d="M18.117 26.76c-.271.091-.487-.159-.586-.302-.279-.405-.422-1.309-.004-2.227.423-.927.702-2.072 1.69-3.821.115-.204.494-2.746 1.242-4.354.202-.435 1.495-.684 2.009-.529.513.154-.005.98-.037 1.134-.344 1.651-1.305 4.077-1.45 4.404-.8 1.806-1.965 2.389-2.071 3.706-.055.69-.205 1.286-.6 1.228-.092.352-.094.728-.193.761zm14.595.204c.257.126.504-.094.62-.222.33-.365.591-1.242.296-2.208-.297-.975-.424-2.146-1.174-4.01-.087-.217-.129-2.787-.66-4.479-.143-.457-1.392-.875-1.922-.789-.529.086-.124.972-.112 1.129.124 1.682.758 4.213.859 4.556.556 1.895 1.634 2.627 1.566 3.946-.036.692.034 1.302.433 1.296.048.363 0 .735.094.781z"/><path fill="#AAB8C2" d="M29.555 29.5c.5-2.734.422-6.5.422-6.5h-7.963s-.078 3.766.422 6.5c.063.344.188 3.344-.109 5.5-.066.479 2.886.937 2.844-.125-.078-1.969.264-3.513.328-4.5.035-.547.25-1.875.344-3.208.011-.018.295-.018.306 0 .094 1.333.308 2.661.344 3.208.064.987.406 2.531.328 4.5-.042 1.062 2.91.604 2.844.125-.297-2.156-.172-5.156-.11-5.5z"/><path fill="#292F33" d="M30.54 36c.499-.406-.041-1.161-1.42-1.402-1.163-.203-2.2-.032-2.363.35-.212.493-.05 1.052-.05 1.052h3.833zm-9.117 0c-.499-.406.041-1.161 1.42-1.402 1.163-.203 2.2-.032 2.363.35.212.494.05 1.053.05 1.053L21.423 36z"/><path fill="#4289C1" d="M30.797 14.766C29.578 14 28 14 28 14h-4s-1.578 0-2.797.766c-1.201.754-1.656 3-1.656 3l2.203.688.109 5.546h8.281l.109-5.547 2.203-.688c.001.001-.454-2.245-1.655-2.999z"/><path fill="#D4AB88" d="M24 10.042v4c0 .682.896 1.305 2 1.305s2-.668 2-1.305v-4h-4z"/><path fill="#CC9B7A" d="M24 14.042c0 .682.896 1.305 2 1.305s2-.668 2-1.305V11l-4 .019v3.023z"/><path fill="#D4AB88" d="M31 3H21v6c0 2.762 2.238 5 5 5s5-2.237 5-5V3z"/><path fill="#963B22" d="M21 2.5L20.5 5l.5 2c2.333 0 2.85-2.412 2.965-3.488C24.004 4.588 24.779 7 31 7l.5-2-.5-2.5H21z"/><path fill="#C1694F" d="M28 12h-4s0 1 2 1 2-1 2-1z"/><circle fill="#662113" cx="23.5" cy="8.5" r=".5"/><circle fill="#662113" cx="28.5" cy="8.5" r=".5"/><path fill="#C1694F" d="M25 10h2s0 1-1 1-1-1-1-1z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f469-1f3ff-200d-1f91d-200d-1f468-1f3fe.svg b/public/emoji/1f469-1f3ff-200d-1f91d-200d-1f468-1f3fe.svg
new file mode 100644
index 0000000000000000000000000000000000000000..d0ba4cd18806faf440ce130ce30d3a9fa26f67f9
--- /dev/null
+++ b/public/emoji/1f469-1f3ff-200d-1f91d-200d-1f468-1f3fe.svg
@@ -0,0 +1 @@
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#0B0200" d="M11 0C9.736 0 8.565.393 7.598 1.061 7.401 1.031 7.205 1 7 1 4.791 1 3 2.791 3 5v6c0 3.866 3.134 7 7 7s7-3.134 7-7V6.001C17 2.687 14.314 0 11 0z"/><path fill="#7C533E" d="M11.213 34.309c-.052.682 1.849.953 2.129.791.299-.173-.698-.623-.702-.977-.019-1.797.53-1.648.311-3.492.443-1.625.672-2.592.672-3.131 0-1.25-3.312-.766-3.312 0 0 .344.365 1.681.417 3.131-.313 1.659.641 1.615.485 3.678zm-2.448 0c.052.682-1.849.953-2.129.791-.299-.173.698-.623.702-.977.019-1.797-.53-1.648-.311-3.492-.443-1.625-.672-2.592-.672-3.131 0-1.25 3.313-.766 3.313 0 0 .344-.365 1.681-.417 3.131.311 1.659-.642 1.615-.486 3.678z"/><path fill="#664131" d="M10.311 27.5c0 .206.13.771.246 1.5h2.817c.164-.689.249-1.175.249-1.5 0-1.25-3.312-.766-3.312 0zm-3.957 0c0 .325.085.811.249 1.5H9.42c.116-.729.247-1.294.247-1.5 0-.766-3.313-1.25-3.313 0z"/><path fill="#7C533E" d="M3.258 26.96c-.258.124-.503-.097-.619-.227-.328-.367-.583-1.246-.282-2.209.303-.973.6-2.384 1.199-4.002.081-.22.499-3.764.805-4.445.197-.437 1.28-.896 1.81-.807.529.089.246.651.105 1.13 0 0-.916 3.953-1.016 4.296-.316 1.079-1.624 2.918-1.565 4.237.031.692.06 1.255-.339 1.246-.049.362-.003.735-.098.781zm14.984-.2c.271.091.487-.159.586-.302.279-.405.422-1.309.004-2.227-.423-.927-.894-2.29-1.69-3.821-.108-.208-.966-3.672-1.355-4.309-.25-.409-1.382-.729-1.897-.574-.513.154-.162.676.037 1.134 0 0 1.403 3.807 1.546 4.135.449 1.031 1.977 2.691 2.082 4.008.056.69.097 1.253.492 1.194.094.353.095.729.195.762z"/><path fill="#292F33" d="M13.945 36c.305 0 .372-.418.089-.629-.379-.285-.88-1.371-1.561-1.371h-1.245c-.229 0-.49 1.209-.41 1.48.102.345.433.52.812.52h2.315zm-7.913 0c-.305 0-.372-.418-.089-.629.379-.285.88-1.371 1.561-1.371h1.245c.229 0 .49 1.209.41 1.48-.102.345-.433.52-.811.52H6.032z"/><path fill="#E75A70" d="M14.354 17.771L16 16c-1.438-1.792-4-2-4-2H8s-2.562.208-4 2l1.646 1.771S6.25 20.688 6.25 21 5 25.75 5 28h10c0-2.25-1.25-6.688-1.25-7s.604-3.229.604-3.229z"/><path fill="#DA2F47" d="M13.75 21c0-.106.07-.512.161-1H6.089c.092.488.161.894.161 1 0 .083-.122.509-.223 1h7.942c-.108-.558-.219-.917-.219-1z"/><path fill="#7C533E" d="M8 11v4c0 1.104.896 2 2 2s2-.896 2-2v-4H8z"/><path fill="#664131" d="M12 11l-4 .019V15s2 1 4 0v-4z"/><path fill="#7C533E" d="M15 3H5v6c0 2.762 2.238 5 5 5s5-2.237 5-5V3z"/><path fill="#0B0200" d="M15 2H5L4 7c4 0 4-4 4-4s0 4 8 4l-1-5z"/><path fill="#DF1F32" d="M12 12H8s0 1 2 1 2-1 2-1z"/><circle cx="7.5" cy="8.5" r=".5"/><circle cx="12.5" cy="8.5" r=".5"/><path fill="#3D2E24" d="M9 10h2s0 1-1 1-1-1-1-1z"/><path fill="#60352A" d="M26.5 0c-1.187 0-2.282.379-3.181 1.018C21.473 1.114 20 2.629 20 4.5c0 1.542.007 3.484 2.038 4.208C23.036 10.094 24.66 11 26.5 11c3.037 0 5.5-2.462 5.5-5.499C32 2.463 29.537 0 26.5 0z"/><path fill="#AF7E57" d="M18.117 26.76c-.271.091-.487-.159-.586-.302-.279-.405-.422-1.309-.004-2.227.423-.927.702-2.072 1.69-3.821.115-.204.494-2.746 1.242-4.354.202-.435 1.495-.684 2.009-.529.513.154-.005.98-.037 1.134-.344 1.651-1.305 4.077-1.45 4.404-.8 1.806-1.965 2.389-2.071 3.706-.055.69-.205 1.286-.6 1.228-.092.352-.094.728-.193.761zm14.595.204c.257.126.504-.094.62-.222.33-.365.591-1.242.296-2.208-.297-.975-.424-2.146-1.174-4.01-.087-.217-.129-2.787-.66-4.479-.143-.457-1.392-.875-1.922-.789-.529.086-.124.972-.112 1.129.124 1.682.758 4.213.859 4.556.556 1.895 1.634 2.627 1.566 3.946-.036.692.034 1.302.433 1.296.048.363 0 .735.094.781z"/><path fill="#AAB8C2" d="M29.555 29.5c.5-2.734.422-6.5.422-6.5h-7.963s-.078 3.766.422 6.5c.063.344.188 3.344-.109 5.5-.066.479 2.886.937 2.844-.125-.078-1.969.264-3.513.328-4.5.035-.547.25-1.875.344-3.208.011-.018.295-.018.306 0 .094 1.333.308 2.661.344 3.208.064.987.406 2.531.328 4.5-.042 1.062 2.91.604 2.844.125-.297-2.156-.172-5.156-.11-5.5z"/><path fill="#292F33" d="M30.54 36c.499-.406-.041-1.161-1.42-1.402-1.163-.203-2.2-.032-2.363.35-.212.493-.05 1.052-.05 1.052h3.833zm-9.117 0c-.499-.406.041-1.161 1.42-1.402 1.163-.203 2.2-.032 2.363.35.212.494.05 1.053.05 1.053L21.423 36z"/><path fill="#4289C1" d="M30.797 14.766C29.578 14 28 14 28 14h-4s-1.578 0-2.797.766c-1.201.754-1.656 3-1.656 3l2.203.688.109 5.546h8.281l.109-5.547 2.203-.688c.001.001-.454-2.245-1.655-2.999z"/><path fill="#AF7E57" d="M24 10.042v4c0 .682.896 1.305 2 1.305s2-.668 2-1.305v-4h-4z"/><path fill="#9B6A49" d="M24 14.042c0 .682.896 1.305 2 1.305s2-.668 2-1.305V11l-4 .019v3.023z"/><path fill="#AF7E57" d="M31 3H21v6c0 2.762 2.238 5 5 5s5-2.237 5-5V3z"/><path fill="#60352A" d="M21 2.5L20.5 5l.5 2c2.333 0 2.85-2.412 2.965-3.488C24.004 4.588 24.779 7 31 7l.5-2-.5-2.5H21z"/><path fill="#915A34" d="M28 12h-4s0 1 2 1 2-1 2-1z"/><circle fill="#662113" cx="23.5" cy="8.5" r=".5"/><circle fill="#662113" cx="28.5" cy="8.5" r=".5"/><path fill="#915A34" d="M25 10h2s0 1-1 1-1-1-1-1z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f469-1f3ff-200d-1f91d-200d-1f469-1f3fb.svg b/public/emoji/1f469-1f3ff-200d-1f91d-200d-1f469-1f3fb.svg
new file mode 100644
index 0000000000000000000000000000000000000000..bfbb93bbf63f5c9526b4d09ec3994a6216b0813d
--- /dev/null
+++ b/public/emoji/1f469-1f3ff-200d-1f91d-200d-1f469-1f3fb.svg
@@ -0,0 +1 @@
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#0B0200" d="M11 0C9.736 0 8.565.393 7.598 1.061 7.401 1.031 7.205 1 7 1 4.791 1 3 2.791 3 5v6c0 3.866 3.134 7 7 7s7-3.134 7-7V6.001C17 2.687 14.314 0 11 0z"/><path fill="#7C533E" d="M11.213 34.309c-.052.682 1.849.953 2.129.791.299-.173-.698-.623-.702-.977-.019-1.797.53-1.648.311-3.492.443-1.625.672-2.592.672-3.131 0-1.25-3.312-.766-3.312 0 0 .344.365 1.681.417 3.131-.313 1.659.641 1.615.485 3.678zm-2.448 0c.052.682-1.849.953-2.129.791-.299-.173.698-.623.702-.977.019-1.797-.53-1.648-.311-3.492-.443-1.625-.672-2.592-.672-3.131 0-1.25 3.313-.766 3.313 0 0 .344-.365 1.681-.417 3.131.311 1.659-.642 1.615-.486 3.678z"/><path fill="#664131" d="M10.311 27.5c0 .206.13.771.246 1.5h2.817c.164-.689.249-1.175.249-1.5 0-1.25-3.312-.766-3.312 0zm-3.957 0c0 .325.085.811.249 1.5H9.42c.116-.729.247-1.294.247-1.5 0-.766-3.313-1.25-3.313 0z"/><path fill="#7C533E" d="M3.258 26.96c-.258.124-.503-.097-.619-.227-.328-.367-.583-1.246-.282-2.209.303-.973.6-2.384 1.199-4.002.081-.22.499-3.764.805-4.445.197-.437 1.28-.896 1.81-.807.529.089.246.651.105 1.13 0 0-.916 3.953-1.016 4.296-.316 1.079-1.624 2.918-1.565 4.237.031.692.06 1.255-.339 1.246-.049.362-.003.735-.098.781zm14.984-.2c.271.091.487-.159.586-.302.279-.405.422-1.309.004-2.227-.423-.927-.894-2.29-1.69-3.821-.108-.208-.966-3.672-1.355-4.309-.25-.409-1.382-.729-1.897-.574-.513.154-.162.676.037 1.134 0 0 1.403 3.807 1.546 4.135.449 1.031 1.977 2.691 2.082 4.008.056.69.097 1.253.492 1.194.094.353.095.729.195.762z"/><path fill="#292F33" d="M13.945 36c.305 0 .372-.418.089-.629-.379-.285-.88-1.371-1.561-1.371h-1.245c-.229 0-.49 1.209-.41 1.48.102.345.433.52.812.52h2.315zm-7.913 0c-.305 0-.372-.418-.089-.629.379-.285.88-1.371 1.561-1.371h1.245c.229 0 .49 1.209.41 1.48-.102.345-.433.52-.811.52H6.032z"/><path fill="#E75A70" d="M14.354 17.771L16 16c-1.438-1.792-4-2-4-2H8s-2.562.208-4 2l1.646 1.771S6.25 20.688 6.25 21 5 25.75 5 28h10c0-2.25-1.25-6.688-1.25-7s.604-3.229.604-3.229z"/><path fill="#DA2F47" d="M13.75 21c0-.106.07-.512.161-1H6.089c.092.488.161.894.161 1 0 .083-.122.509-.223 1h7.942c-.108-.558-.219-.917-.219-1z"/><path fill="#7C533E" d="M8 11v4c0 1.104.896 2 2 2s2-.896 2-2v-4H8z"/><path fill="#664131" d="M12 11l-4 .019V15s2 1 4 0v-4z"/><path fill="#7C533E" d="M15 3H5v6c0 2.762 2.238 5 5 5s5-2.237 5-5V3z"/><path fill="#0B0200" d="M15 2H5L4 7c4 0 4-4 4-4s0 4 8 4l-1-5z"/><path fill="#DF1F32" d="M12 12H8s0 1 2 1 2-1 2-1z"/><circle cx="7.5" cy="8.5" r=".5"/><circle cx="12.5" cy="8.5" r=".5"/><path fill="#3D2E24" d="M9 10h2s0 1-1 1-1-1-1-1z"/><path fill="#292F33" d="M33 6.001C33 2.687 30.313 0 27 0c-1.264 0-2.435.393-3.402 1.061C23.401 1.031 23.205 1 23 1c-2.209 0-4 1.791-4 4v6h14V6.001z"/><path fill="#F7DECE" d="M27.213 34.309c-.052.682 1.849.953 2.129.791.299-.173-.698-.623-.702-.977-.019-1.797.53-1.648.311-3.492.443-1.625.672-2.592.672-3.131 0-1.25-3.312-.766-3.312 0 0 .344.365 1.681.417 3.131-.313 1.659.641 1.615.485 3.678zm-2.448 0c.052.682-1.849.953-2.129.791-.299-.173.698-.623.702-.977.019-1.797-.53-1.648-.311-3.492-.443-1.625-.672-2.592-.672-3.131 0-1.25 3.312-.766 3.312 0 0 .344-.365 1.681-.417 3.131.312 1.659-.642 1.615-.485 3.678z"/><path fill="#EEC2AD" d="M26.311 27.5c0 .206.13.771.246 1.5h2.817c.164-.689.249-1.175.249-1.5 0-1.25-3.312-.766-3.312 0zm-3.957 0c0 .325.085.811.249 1.5h2.817c.116-.729.247-1.294.247-1.5 0-.766-3.313-1.25-3.313 0z"/><path fill="#F7DECE" d="M18.117 26.76c-.271.091-.487-.159-.586-.302-.279-.405-.422-1.309-.004-2.227.423-.927.702-2.072 1.69-3.821.115-.204.494-2.746 1.242-4.354.202-.435 1.495-.685 2.009-.529.513.154-.005.98-.037 1.134-.344 1.651-1.305 4.077-1.45 4.404-.8 1.806-1.965 2.389-2.071 3.706-.056.69-.205 1.286-.6 1.228-.092.352-.094.728-.193.761zm14.595.204c.257.126.504-.094.62-.222.33-.365.591-1.242.296-2.208-.297-.975-.424-2.146-1.174-4.01-.088-.217-.129-2.787-.66-4.479-.143-.458-1.392-.875-1.922-.789-.529.086-.124.972-.112 1.129.124 1.682.758 4.213.859 4.556.556 1.895 1.634 2.626 1.566 3.946-.036.692.034 1.302.433 1.296.048.363 0 .735.094.781z"/><path fill="#292F33" d="M29.945 36c.305 0 .372-.418.089-.629-.379-.285-.88-1.371-1.561-1.371h-1.245c-.229 0-.49 1.209-.41 1.48.102.345.433.52.812.52h2.315zm-7.913 0c-.305 0-.372-.418-.089-.629.379-.285.88-1.371 1.561-1.371h1.245c.229 0 .49 1.209.41 1.48-.102.345-.433.52-.811.52h-2.316z"/><path fill="#9268CA" d="M30.354 17.771L32 16c-1.438-1.792-4-2-4-2h-4s-2.562.208-4 2l1.646 1.771s.604 2.917.604 3.229S21 25.75 21 28h10c0-2.25-1.25-6.688-1.25-7s.604-3.229.604-3.229z"/><path fill="#AA8ED6" d="M29.75 21c0-.106.07-.512.161-1h-7.822c.092.488.161.894.161 1 0 .083-.122.509-.223 1h7.942c-.108-.558-.219-.917-.219-1z"/><path fill="#F7DECE" d="M24 11v4c0 1.104.896 2 2 2s2-.896 2-2v-4h-4z"/><path fill="#EEC2AD" d="M28 11l-4 .019V15s2 1 4 0v-4z"/><path fill="#F7DECE" d="M31 3H21v6c0 2.762 2.238 5 5 5s5-2.237 5-5V3z"/><path fill="#292F33" d="M31 2H21l-1 5c4 0 4-4 4-4s0 4 8 4l-1-5z"/><path fill="#DF1F32" d="M28 12h-4s0 1 2 1 2-1 2-1z"/><circle fill="#662113" cx="23.5" cy="8.5" r=".5"/><circle fill="#662113" cx="28.5" cy="8.5" r=".5"/><path fill="#C1694F" d="M25 10h2s0 1-1 1-1-1-1-1z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f469-1f3ff-200d-1f91d-200d-1f469-1f3fc.svg b/public/emoji/1f469-1f3ff-200d-1f91d-200d-1f469-1f3fc.svg
new file mode 100644
index 0000000000000000000000000000000000000000..36dec92572116638c8fb9a7fd1a0b806e1ed20a5
--- /dev/null
+++ b/public/emoji/1f469-1f3ff-200d-1f91d-200d-1f469-1f3fc.svg
@@ -0,0 +1 @@
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#0B0200" d="M11 0C9.736 0 8.565.393 7.598 1.061 7.401 1.031 7.205 1 7 1 4.791 1 3 2.791 3 5v6c0 3.866 3.134 7 7 7s7-3.134 7-7V6.001C17 2.687 14.314 0 11 0z"/><path fill="#7C533E" d="M11.213 34.309c-.052.682 1.849.953 2.129.791.299-.173-.698-.623-.702-.977-.019-1.797.53-1.648.311-3.492.443-1.625.672-2.592.672-3.131 0-1.25-3.312-.766-3.312 0 0 .344.365 1.681.417 3.131-.313 1.659.641 1.615.485 3.678zm-2.448 0c.052.682-1.849.953-2.129.791-.299-.173.698-.623.702-.977.019-1.797-.53-1.648-.311-3.492-.443-1.625-.672-2.592-.672-3.131 0-1.25 3.313-.766 3.313 0 0 .344-.365 1.681-.417 3.131.311 1.659-.642 1.615-.486 3.678z"/><path fill="#664131" d="M10.311 27.5c0 .206.13.771.246 1.5h2.817c.164-.689.249-1.175.249-1.5 0-1.25-3.312-.766-3.312 0zm-3.957 0c0 .325.085.811.249 1.5H9.42c.116-.729.247-1.294.247-1.5 0-.766-3.313-1.25-3.313 0z"/><path fill="#7C533E" d="M3.258 26.96c-.258.124-.503-.097-.619-.227-.328-.367-.583-1.246-.282-2.209.303-.973.6-2.384 1.199-4.002.081-.22.499-3.764.805-4.445.197-.437 1.28-.896 1.81-.807.529.089.246.651.105 1.13 0 0-.916 3.953-1.016 4.296-.316 1.079-1.624 2.918-1.565 4.237.031.692.06 1.255-.339 1.246-.049.362-.003.735-.098.781zm14.984-.2c.271.091.487-.159.586-.302.279-.405.422-1.309.004-2.227-.423-.927-.894-2.29-1.69-3.821-.108-.208-.966-3.672-1.355-4.309-.25-.409-1.382-.729-1.897-.574-.513.154-.162.676.037 1.134 0 0 1.403 3.807 1.546 4.135.449 1.031 1.977 2.691 2.082 4.008.056.69.097 1.253.492 1.194.094.353.095.729.195.762z"/><path fill="#292F33" d="M13.945 36c.305 0 .372-.418.089-.629-.379-.285-.88-1.371-1.561-1.371h-1.245c-.229 0-.49 1.209-.41 1.48.102.345.433.52.812.52h2.315zm-7.913 0c-.305 0-.372-.418-.089-.629.379-.285.88-1.371 1.561-1.371h1.245c.229 0 .49 1.209.41 1.48-.102.345-.433.52-.811.52H6.032z"/><path fill="#E75A70" d="M14.354 17.771L16 16c-1.438-1.792-4-2-4-2H8s-2.562.208-4 2l1.646 1.771S6.25 20.688 6.25 21 5 25.75 5 28h10c0-2.25-1.25-6.688-1.25-7s.604-3.229.604-3.229z"/><path fill="#DA2F47" d="M13.75 21c0-.106.07-.512.161-1H6.089c.092.488.161.894.161 1 0 .083-.122.509-.223 1h7.942c-.108-.558-.219-.917-.219-1z"/><path fill="#7C533E" d="M8 11v4c0 1.104.896 2 2 2s2-.896 2-2v-4H8z"/><path fill="#664131" d="M12 11l-4 .019V15s2 1 4 0v-4z"/><path fill="#7C533E" d="M15 3H5v6c0 2.762 2.238 5 5 5s5-2.237 5-5V3z"/><path fill="#0B0200" d="M15 2H5L4 7c4 0 4-4 4-4s0 4 8 4l-1-5z"/><path fill="#DF1F32" d="M12 12H8s0 1 2 1 2-1 2-1z"/><circle cx="7.5" cy="8.5" r=".5"/><circle cx="12.5" cy="8.5" r=".5"/><path fill="#3D2E24" d="M9 10h2s0 1-1 1-1-1-1-1z"/><path fill="#FFE51E" d="M33 6.001C33 2.687 30.313 0 27 0c-1.264 0-2.435.393-3.402 1.061C23.401 1.031 23.205 1 23 1c-2.209 0-4 1.791-4 4v6h14V6.001z"/><path fill="#F3D2A2" d="M27.213 34.309c-.052.682 1.849.953 2.129.791.299-.173-.698-.623-.702-.977-.019-1.797.53-1.648.311-3.492.443-1.625.672-2.592.672-3.131 0-1.25-3.312-.766-3.312 0 0 .344.365 1.681.417 3.131-.313 1.659.641 1.615.485 3.678zm-2.448 0c.052.682-1.849.953-2.129.791-.299-.173.698-.623.702-.977.019-1.797-.53-1.648-.311-3.492-.443-1.625-.672-2.592-.672-3.131 0-1.25 3.312-.766 3.312 0 0 .344-.365 1.681-.417 3.131.312 1.659-.642 1.615-.485 3.678z"/><path fill="#E2C196" d="M26.311 27.5c0 .206.13.771.246 1.5h2.817c.164-.689.249-1.175.249-1.5 0-1.25-3.312-.766-3.312 0zm-3.957 0c0 .325.085.811.249 1.5h2.817c.116-.729.247-1.294.247-1.5 0-.766-3.313-1.25-3.313 0z"/><path fill="#F3D2A2" d="M18.117 26.76c-.271.091-.487-.159-.586-.302-.279-.405-.422-1.309-.004-2.227.423-.927.702-2.072 1.69-3.821.115-.204.494-2.746 1.242-4.354.202-.435 1.495-.685 2.009-.529.513.154-.005.98-.037 1.134-.344 1.651-1.305 4.077-1.45 4.404-.8 1.806-1.965 2.389-2.071 3.706-.056.69-.205 1.286-.6 1.228-.092.352-.094.728-.193.761zm14.595.204c.257.126.504-.094.62-.222.33-.365.591-1.242.296-2.208-.297-.975-.424-2.146-1.174-4.01-.088-.217-.129-2.787-.66-4.479-.143-.458-1.392-.875-1.922-.789-.529.086-.124.972-.112 1.129.124 1.682.758 4.213.859 4.556.556 1.895 1.634 2.626 1.566 3.946-.036.692.034 1.302.433 1.296.048.363 0 .735.094.781z"/><path fill="#292F33" d="M29.945 36c.305 0 .372-.418.089-.629-.379-.285-.88-1.371-1.561-1.371h-1.245c-.229 0-.49 1.209-.41 1.48.102.345.433.52.812.52h2.315zm-7.913 0c-.305 0-.372-.418-.089-.629.379-.285.88-1.371 1.561-1.371h1.245c.229 0 .49 1.209.41 1.48-.102.345-.433.52-.811.52h-2.316z"/><path fill="#9268CA" d="M30.354 17.771L32 16c-1.438-1.792-4-2-4-2h-4s-2.562.208-4 2l1.646 1.771s.604 2.917.604 3.229S21 25.75 21 28h10c0-2.25-1.25-6.688-1.25-7s.604-3.229.604-3.229z"/><path fill="#AA8ED6" d="M29.75 21c0-.106.07-.512.161-1h-7.822c.092.488.161.894.161 1 0 .083-.122.509-.223 1h7.942c-.108-.558-.219-.917-.219-1z"/><path fill="#F3D2A2" d="M24 11v4c0 1.104.896 2 2 2s2-.896 2-2v-4h-4z"/><path fill="#E2C196" d="M28 11l-4 .019V15s2 1 4 0v-4z"/><path fill="#F3D2A2" d="M31 3H21v6c0 2.762 2.238 5 5 5s5-2.237 5-5V3z"/><path fill="#FFE51E" d="M31 2H21l-1 5c4 0 4-4 4-4s0 4 8 4l-1-5z"/><path fill="#DF1F32" d="M28 12h-4s0 1 2 1 2-1 2-1z"/><circle fill="#662113" cx="23.5" cy="8.5" r=".5"/><circle fill="#662113" cx="28.5" cy="8.5" r=".5"/><path fill="#C1694F" d="M25 10h2s0 1-1 1-1-1-1-1z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f469-1f3ff-200d-1f91d-200d-1f469-1f3fd.svg b/public/emoji/1f469-1f3ff-200d-1f91d-200d-1f469-1f3fd.svg
new file mode 100644
index 0000000000000000000000000000000000000000..f18bc69bc86460a0f3e5aa8f79ce7e77541dbe29
--- /dev/null
+++ b/public/emoji/1f469-1f3ff-200d-1f91d-200d-1f469-1f3fd.svg
@@ -0,0 +1 @@
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#0B0200" d="M11 0C9.736 0 8.565.393 7.598 1.061 7.401 1.031 7.205 1 7 1 4.791 1 3 2.791 3 5v6c0 3.866 3.134 7 7 7s7-3.134 7-7V6.001C17 2.687 14.314 0 11 0z"/><path fill="#7C533E" d="M11.213 34.309c-.052.682 1.849.953 2.129.791.299-.173-.698-.623-.702-.977-.019-1.797.53-1.648.311-3.492.443-1.625.672-2.592.672-3.131 0-1.25-3.312-.766-3.312 0 0 .344.365 1.681.417 3.131-.313 1.659.641 1.615.485 3.678zm-2.448 0c.052.682-1.849.953-2.129.791-.299-.173.698-.623.702-.977.019-1.797-.53-1.648-.311-3.492-.443-1.625-.672-2.592-.672-3.131 0-1.25 3.313-.766 3.313 0 0 .344-.365 1.681-.417 3.131.311 1.659-.642 1.615-.486 3.678z"/><path fill="#664131" d="M10.311 27.5c0 .206.13.771.246 1.5h2.817c.164-.689.249-1.175.249-1.5 0-1.25-3.312-.766-3.312 0zm-3.957 0c0 .325.085.811.249 1.5H9.42c.116-.729.247-1.294.247-1.5 0-.766-3.313-1.25-3.313 0z"/><path fill="#7C533E" d="M3.258 26.96c-.258.124-.503-.097-.619-.227-.328-.367-.583-1.246-.282-2.209.303-.973.6-2.384 1.199-4.002.081-.22.499-3.764.805-4.445.197-.437 1.28-.896 1.81-.807.529.089.246.651.105 1.13 0 0-.916 3.953-1.016 4.296-.316 1.079-1.624 2.918-1.565 4.237.031.692.06 1.255-.339 1.246-.049.362-.003.735-.098.781zm14.984-.2c.271.091.487-.159.586-.302.279-.405.422-1.309.004-2.227-.423-.927-.894-2.29-1.69-3.821-.108-.208-.966-3.672-1.355-4.309-.25-.409-1.382-.729-1.897-.574-.513.154-.162.676.037 1.134 0 0 1.403 3.807 1.546 4.135.449 1.031 1.977 2.691 2.082 4.008.056.69.097 1.253.492 1.194.094.353.095.729.195.762z"/><path fill="#292F33" d="M13.945 36c.305 0 .372-.418.089-.629-.379-.285-.88-1.371-1.561-1.371h-1.245c-.229 0-.49 1.209-.41 1.48.102.345.433.52.812.52h2.315zm-7.913 0c-.305 0-.372-.418-.089-.629.379-.285.88-1.371 1.561-1.371h1.245c.229 0 .49 1.209.41 1.48-.102.345-.433.52-.811.52H6.032z"/><path fill="#E75A70" d="M14.354 17.771L16 16c-1.438-1.792-4-2-4-2H8s-2.562.208-4 2l1.646 1.771S6.25 20.688 6.25 21 5 25.75 5 28h10c0-2.25-1.25-6.688-1.25-7s.604-3.229.604-3.229z"/><path fill="#DA2F47" d="M13.75 21c0-.106.07-.512.161-1H6.089c.092.488.161.894.161 1 0 .083-.122.509-.223 1h7.942c-.108-.558-.219-.917-.219-1z"/><path fill="#7C533E" d="M8 11v4c0 1.104.896 2 2 2s2-.896 2-2v-4H8z"/><path fill="#664131" d="M12 11l-4 .019V15s2 1 4 0v-4z"/><path fill="#7C533E" d="M15 3H5v6c0 2.762 2.238 5 5 5s5-2.237 5-5V3z"/><path fill="#0B0200" d="M15 2H5L4 7c4 0 4-4 4-4s0 4 8 4l-1-5z"/><path fill="#DF1F32" d="M12 12H8s0 1 2 1 2-1 2-1z"/><circle cx="7.5" cy="8.5" r=".5"/><circle cx="12.5" cy="8.5" r=".5"/><path fill="#3D2E24" d="M9 10h2s0 1-1 1-1-1-1-1z"/><path fill="#963B22" d="M33 6.001C33 2.687 30.313 0 27 0c-1.264 0-2.435.393-3.402 1.061C23.401 1.031 23.205 1 23 1c-2.209 0-4 1.791-4 4v6h14V6.001z"/><path fill="#D4AB88" d="M27.213 34.309c-.052.682 1.849.953 2.129.791.299-.173-.698-.623-.702-.977-.019-1.797.53-1.648.311-3.492.443-1.625.672-2.592.672-3.131 0-1.25-3.312-.766-3.312 0 0 .344.365 1.681.417 3.131-.313 1.659.641 1.615.485 3.678zm-2.448 0c.052.682-1.849.953-2.129.791-.299-.173.698-.623.702-.977.019-1.797-.53-1.648-.311-3.492-.443-1.625-.672-2.592-.672-3.131 0-1.25 3.312-.766 3.312 0 0 .344-.365 1.681-.417 3.131.312 1.659-.642 1.615-.485 3.678z"/><path fill="#CC9B7A" d="M26.311 27.5c0 .206.13.771.246 1.5h2.817c.164-.689.249-1.175.249-1.5 0-1.25-3.312-.766-3.312 0zm-3.957 0c0 .325.085.811.249 1.5h2.817c.116-.729.247-1.294.247-1.5 0-.766-3.313-1.25-3.313 0z"/><path fill="#D4AB88" d="M18.117 26.76c-.271.091-.487-.159-.586-.302-.279-.405-.422-1.309-.004-2.227.423-.927.702-2.072 1.69-3.821.115-.204.494-2.746 1.242-4.354.202-.435 1.495-.685 2.009-.529.513.154-.005.98-.037 1.134-.344 1.651-1.305 4.077-1.45 4.404-.8 1.806-1.965 2.389-2.071 3.706-.056.69-.205 1.286-.6 1.228-.092.352-.094.728-.193.761zm14.595.204c.257.126.504-.094.62-.222.33-.365.591-1.242.296-2.208-.297-.975-.424-2.146-1.174-4.01-.088-.217-.129-2.787-.66-4.479-.143-.458-1.392-.875-1.922-.789-.529.086-.124.972-.112 1.129.124 1.682.758 4.213.859 4.556.556 1.895 1.634 2.626 1.566 3.946-.036.692.034 1.302.433 1.296.048.363 0 .735.094.781z"/><path fill="#292F33" d="M29.945 36c.305 0 .372-.418.089-.629-.379-.285-.88-1.371-1.561-1.371h-1.245c-.229 0-.49 1.209-.41 1.48.102.345.433.52.812.52h2.315zm-7.913 0c-.305 0-.372-.418-.089-.629.379-.285.88-1.371 1.561-1.371h1.245c.229 0 .49 1.209.41 1.48-.102.345-.433.52-.811.52h-2.316z"/><path fill="#9268CA" d="M30.354 17.771L32 16c-1.438-1.792-4-2-4-2h-4s-2.562.208-4 2l1.646 1.771s.604 2.917.604 3.229S21 25.75 21 28h10c0-2.25-1.25-6.688-1.25-7s.604-3.229.604-3.229z"/><path fill="#AA8ED6" d="M29.75 21c0-.106.07-.512.161-1h-7.822c.092.488.161.894.161 1 0 .083-.122.509-.223 1h7.942c-.108-.558-.219-.917-.219-1z"/><path fill="#D4AB88" d="M24 11v4c0 1.104.896 2 2 2s2-.896 2-2v-4h-4z"/><path fill="#CC9B7A" d="M28 11l-4 .019V15s2 1 4 0v-4z"/><path fill="#D4AB88" d="M31 3H21v6c0 2.762 2.238 5 5 5s5-2.237 5-5V3z"/><path fill="#963B22" d="M31 2H21l-1 5c4 0 4-4 4-4s0 4 8 4l-1-5z"/><path fill="#DF1F32" d="M28 12h-4s0 1 2 1 2-1 2-1z"/><circle fill="#662113" cx="23.5" cy="8.5" r=".5"/><circle fill="#662113" cx="28.5" cy="8.5" r=".5"/><path fill="#C1694F" d="M25 10h2s0 1-1 1-1-1-1-1z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f469-1f3ff-200d-1f91d-200d-1f469-1f3fe.svg b/public/emoji/1f469-1f3ff-200d-1f91d-200d-1f469-1f3fe.svg
new file mode 100644
index 0000000000000000000000000000000000000000..ac2fe9944be6d2276c600e7a271eb133c3b6227b
--- /dev/null
+++ b/public/emoji/1f469-1f3ff-200d-1f91d-200d-1f469-1f3fe.svg
@@ -0,0 +1 @@
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#0B0200" d="M11 0C9.736 0 8.565.393 7.598 1.061 7.401 1.031 7.205 1 7 1 4.791 1 3 2.791 3 5v6c0 3.866 3.134 7 7 7s7-3.134 7-7V6.001C17 2.687 14.314 0 11 0z"/><path fill="#7C533E" d="M11.213 34.309c-.052.682 1.849.953 2.129.791.299-.173-.698-.623-.702-.977-.019-1.797.53-1.648.311-3.492.443-1.625.672-2.592.672-3.131 0-1.25-3.312-.766-3.312 0 0 .344.365 1.681.417 3.131-.313 1.659.641 1.615.485 3.678zm-2.448 0c.052.682-1.849.953-2.129.791-.299-.173.698-.623.702-.977.019-1.797-.53-1.648-.311-3.492-.443-1.625-.672-2.592-.672-3.131 0-1.25 3.313-.766 3.313 0 0 .344-.365 1.681-.417 3.131.311 1.659-.642 1.615-.486 3.678z"/><path fill="#664131" d="M10.311 27.5c0 .206.13.771.246 1.5h2.817c.164-.689.249-1.175.249-1.5 0-1.25-3.312-.766-3.312 0zm-3.957 0c0 .325.085.811.249 1.5H9.42c.116-.729.247-1.294.247-1.5 0-.766-3.313-1.25-3.313 0z"/><path fill="#7C533E" d="M3.258 26.96c-.258.124-.503-.097-.619-.227-.328-.367-.583-1.246-.282-2.209.303-.973.6-2.384 1.199-4.002.081-.22.499-3.764.805-4.445.197-.437 1.28-.896 1.81-.807.529.089.246.651.105 1.13 0 0-.916 3.953-1.016 4.296-.316 1.079-1.624 2.918-1.565 4.237.031.692.06 1.255-.339 1.246-.049.362-.003.735-.098.781zm14.984-.2c.271.091.487-.159.586-.302.279-.405.422-1.309.004-2.227-.423-.927-.894-2.29-1.69-3.821-.108-.208-.966-3.672-1.355-4.309-.25-.409-1.382-.729-1.897-.574-.513.154-.162.676.037 1.134 0 0 1.403 3.807 1.546 4.135.449 1.031 1.977 2.691 2.082 4.008.056.69.097 1.253.492 1.194.094.353.095.729.195.762z"/><path fill="#292F33" d="M13.945 36c.305 0 .372-.418.089-.629-.379-.285-.88-1.371-1.561-1.371h-1.245c-.229 0-.49 1.209-.41 1.48.102.345.433.52.812.52h2.315zm-7.913 0c-.305 0-.372-.418-.089-.629.379-.285.88-1.371 1.561-1.371h1.245c.229 0 .49 1.209.41 1.48-.102.345-.433.52-.811.52H6.032z"/><path fill="#E75A70" d="M14.354 17.771L16 16c-1.438-1.792-4-2-4-2H8s-2.562.208-4 2l1.646 1.771S6.25 20.688 6.25 21 5 25.75 5 28h10c0-2.25-1.25-6.688-1.25-7s.604-3.229.604-3.229z"/><path fill="#DA2F47" d="M13.75 21c0-.106.07-.512.161-1H6.089c.092.488.161.894.161 1 0 .083-.122.509-.223 1h7.942c-.108-.558-.219-.917-.219-1z"/><path fill="#7C533E" d="M8 11v4c0 1.104.896 2 2 2s2-.896 2-2v-4H8z"/><path fill="#664131" d="M12 11l-4 .019V15s2 1 4 0v-4z"/><path fill="#7C533E" d="M15 3H5v6c0 2.762 2.238 5 5 5s5-2.237 5-5V3z"/><path fill="#0B0200" d="M15 2H5L4 7c4 0 4-4 4-4s0 4 8 4l-1-5z"/><path fill="#DF1F32" d="M12 12H8s0 1 2 1 2-1 2-1z"/><circle cx="7.5" cy="8.5" r=".5"/><circle cx="12.5" cy="8.5" r=".5"/><path fill="#3D2E24" d="M9 10h2s0 1-1 1-1-1-1-1z"/><path fill="#60352A" d="M33 6.001C33 2.687 30.313 0 27 0c-1.264 0-2.435.393-3.402 1.061C23.401 1.031 23.205 1 23 1c-2.209 0-4 1.791-4 4v6h14V6.001z"/><path fill="#AF7E57" d="M27.213 34.309c-.052.682 1.849.953 2.129.791.299-.173-.698-.623-.702-.977-.019-1.797.53-1.648.311-3.492.443-1.625.672-2.592.672-3.131 0-1.25-3.312-.766-3.312 0 0 .344.365 1.681.417 3.131-.313 1.659.641 1.615.485 3.678zm-2.448 0c.052.682-1.849.953-2.129.791-.299-.173.698-.623.702-.977.019-1.797-.53-1.648-.311-3.492-.443-1.625-.672-2.592-.672-3.131 0-1.25 3.312-.766 3.312 0 0 .344-.365 1.681-.417 3.131.312 1.659-.642 1.615-.485 3.678z"/><path fill="#9B6A49" d="M26.311 27.5c0 .206.13.771.246 1.5h2.817c.164-.689.249-1.175.249-1.5 0-1.25-3.312-.766-3.312 0zm-3.957 0c0 .325.085.811.249 1.5h2.817c.116-.729.247-1.294.247-1.5 0-.766-3.313-1.25-3.313 0z"/><path fill="#AF7E57" d="M18.117 26.76c-.271.091-.487-.159-.586-.302-.279-.405-.422-1.309-.004-2.227.423-.927.702-2.072 1.69-3.821.115-.204.494-2.746 1.242-4.354.202-.435 1.495-.685 2.009-.529.513.154-.005.98-.037 1.134-.344 1.651-1.305 4.077-1.45 4.404-.8 1.806-1.965 2.389-2.071 3.706-.056.69-.205 1.286-.6 1.228-.092.352-.094.728-.193.761zm14.595.204c.257.126.504-.094.62-.222.33-.365.591-1.242.296-2.208-.297-.975-.424-2.146-1.174-4.01-.088-.217-.129-2.787-.66-4.479-.143-.458-1.392-.875-1.922-.789-.529.086-.124.972-.112 1.129.124 1.682.758 4.213.859 4.556.556 1.895 1.634 2.626 1.566 3.946-.036.692.034 1.302.433 1.296.048.363 0 .735.094.781z"/><path fill="#292F33" d="M29.945 36c.305 0 .372-.418.089-.629-.379-.285-.88-1.371-1.561-1.371h-1.245c-.229 0-.49 1.209-.41 1.48.102.345.433.52.812.52h2.315zm-7.913 0c-.305 0-.372-.418-.089-.629.379-.285.88-1.371 1.561-1.371h1.245c.229 0 .49 1.209.41 1.48-.102.345-.433.52-.811.52h-2.316z"/><path fill="#9268CA" d="M30.354 17.771L32 16c-1.438-1.792-4-2-4-2h-4s-2.562.208-4 2l1.646 1.771s.604 2.917.604 3.229S21 25.75 21 28h10c0-2.25-1.25-6.688-1.25-7s.604-3.229.604-3.229z"/><path fill="#AA8ED6" d="M29.75 21c0-.106.07-.512.161-1h-7.822c.092.488.161.894.161 1 0 .083-.122.509-.223 1h7.942c-.108-.558-.219-.917-.219-1z"/><path fill="#AF7E57" d="M24 11v4c0 1.104.896 2 2 2s2-.896 2-2v-4h-4z"/><path fill="#9B6A49" d="M28 11l-4 .019V15s2 1 4 0v-4z"/><path fill="#AF7E57" d="M31 3H21v6c0 2.762 2.238 5 5 5s5-2.237 5-5V3z"/><path fill="#60352A" d="M31 2H21l-1 5c4 0 4-4 4-4s0 4 8 4l-1-5z"/><path fill="#DF1F32" d="M28 12h-4s0 1 2 1 2-1 2-1z"/><circle fill="#662113" cx="23.5" cy="8.5" r=".5"/><circle fill="#662113" cx="28.5" cy="8.5" r=".5"/><path fill="#915A34" d="M25 10h2s0 1-1 1-1-1-1-1z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f469-1f3ff-200d-1f9af.svg b/public/emoji/1f469-1f3ff-200d-1f9af.svg
new file mode 100644
index 0000000000000000000000000000000000000000..aafa3bce67939126b99f90fc7a89667c287eb494
--- /dev/null
+++ b/public/emoji/1f469-1f3ff-200d-1f9af.svg
@@ -0,0 +1 @@
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#CCD6DD" d="M12.154 19.416l.802.598L3.988 32.04l-.802-.598z"/><path fill="#DD2E44" d="M3.186 31.444L1.093 34.25c-.164.22-.119.535.102.7s.535.119.7-.102l2.092-2.806-.801-.598z"/><path fill="#292F33" d="M11.359 21.319c-.22-.164-.266-.479-.102-.7l1.793-2.405c.164-.22.479-.266.7-.102.22.164.266.479.102.7l-1.793 2.405c-.164.221-.479.267-.7.102z"/><path fill="#292F33" d="M11.76 21.618l-.802-.598c-.22-.164-.266-.479-.102-.7.164-.22.479-.266.7-.102l.802.598c.22.164.266.479.102.7-.164.221-.479.267-.7.102z"/><path fill="#99AAB5" d="M.598 35.751c-.22-.164-.266-.479-.102-.7.164-.22.479-.266.7-.102.22.164.266.479.102.7-.165.22-.48.266-.7.102z"/><path fill="#292F33" d="M20.476 35.056s.061-.144.061-.448c0-.303-.156-.869-.199-.95s-.09-.139-.194-.11c-.079.022-.685.326-1.072.341-.719.027-1.066-.618-1.066-.618s-.399.228-.716.413c-.318.185-.687.462-.959.627-.232.141-.497.208-.771.243s-.497.023-.563.029-.621-.061-.641.488l.004.16s.987.397 2.344.397c1.358 0 1.566-.399 2.444-.399s1.328-.173 1.328-.173z"/><path fill="#292F33" d="M18.726 35.926c-.058-.052-.123-.22-.173-.243s-.57.089-.813.146c-.243.058-.66.156-1.152.156-.491 0-1.126-.144-1.519-.243-.393-.098-.701-.23-.77-.274-.07-.043-.05-.063-.046-.096.004-.033.052-.202.052-.202s.251.132.678.237c.426.104.851.183 1.584.183s1.193-.109 1.574-.211c.475-.128 1.163-.267 1.656-.267.38 0 .648-.112.751-.139.024-.006.046.012.046.037v.649c0 .042-.035.139-.146.162-.112.024-1.664.157-1.722.105zm12.221-5.012s-.072-.142-.307-.343c-.235-.2-.777-.454-.868-.473-.091-.02-.167-.022-.213.078-.035.075-.199.746-.444 1.056-.454.575-1.184.418-1.184.418s-.087.46-.153.828c-.067.368-.096.838-.148 1.158-.044.273-.167.523-.322.758-.154.236-.31.4-.35.456-.039.055-.457.441-.045.82l.127.103s.96-.502 1.857-1.555c.897-1.052.726-1.477 1.306-2.158.581-.682.744-1.146.744-1.146z"/><path fill="#292F33" d="M30.465 32.846c-.078.01-.252-.05-.303-.026-.051.024-.308.5-.424.727-.116.226-.316.615-.64.996s-.856.778-1.192 1.018c-.336.24-.642.391-.721.416-.08.025-.082-.003-.104-.028-.022-.025-.122-.174-.122-.174s.269-.107.631-.369c.363-.261.705-.538 1.189-1.107s.704-.997.876-1.36c.214-.452.562-1.078.887-1.46.251-.295.342-.576.388-.674.011-.023.04-.028.059-.012l.503.429c.033.028.085.118.029.22-.055.103-.977 1.394-1.056 1.404z"/><path fill="#7C533E" d="M21.541 1.384c-1.593-.627-4.077.182-4.365 2.043-.287 1.848.239 4.747 1.863 4.572 1.702-.184 3.448-.554 4.138-2.307s-.043-3.681-1.636-4.308z"/><path fill="#7C533E" d="M22.724 6.143c2.318-2.723-3.266-2.458-3.266-2.458-1.057.038-.329 1.799-.827 2.761-.341.665 1.095 1.018 1.095 1.018s.659-.01.694.79v.007c.008.204-.013.445-.108.769-.473 1.601 1.677 2.582 2.149.978.187-.635.114-1.193.02-1.708l-.009-.046c-.143-.766-.321-1.437.252-2.111z"/><path fill="#0B0200" d="M23.361 2.026C22.3.784 20.841.269 18.342 1.235c-2.183.844-1.481 2.579-.972 2.282 1.402-.817 2.332-.119 3.046 1.021.208-.56 1.122-.904 1.307-.085.208.921-.647 1.322-.533 1.573.038.084-.043-.076 0 0 .547.96 1.437 1.262 1.437 1.262s.337.132.912-1.001.875-3.028-.178-4.261z"/><path fill="#0B0200" d="M22.787 3.332c2.163.467 1.275 3.839 1.487 5.08.261 1.528 1.761 1.582 1.761 1.582s-.247-1.064-.116-2.177c.183-1.543 1.189-2.789.127-4.296-1.356-1.924-4.604-.479-3.259-.189z"/><path fill="#2A6797" d="M18.598 34.203c-1.266.109-1.853-.233-1.721-.416.165-.228.128-.397.13-.536.028-2.441-.472-5.991-.472-5.991 0-.348.003-.813.312-1.562.778-1.883 3.951-7.69 3.951-7.69.548-.958 1.771-1.293 2.728-.744.959.548 1.122 1.405.744 2.729-.715 2.508-2.965 5.602-3.903 7.477.224 2.121-.174 3.853.035 5.857.032.288-.538.767-1.804.876z"/><path fill="#4289C1" d="M29.333 31.931c-.364.553-.97.942-1.598.838-1.269-1.924-4.955-5.321-4.955-5.321-.241-.25-.562-.587-.86-1.341-.748-1.895-2.498-8.277-2.498-8.277-.272-1.07.376-2.16 1.446-2.43 1.07-.272 1.783.232 2.43 1.446 1.227 2.301 1.757 6.09 2.384 8.09 1.87 1.568 2.383 3.603 4.275 5.151-.065.857-.261 1.291-.624 1.844z"/><path fill="#9268CA" d="M25.536 20s0 1-2 1h-4.898c-.415-2 .554-3.818-.102-6.5-.848-3.46 2.406-6.874 3.818-6.42 1.846.594 2.693 2.641 2.932 5.858.238 3.216.25 6.062.25 6.062z"/><path fill="#7C533E" d="M20.142 11.64c-.783 1.171-2.299 3.804-2.526 3.904-1.206.531-2.551 1.215-3.448 1.307-.65.067-1.256.678-1.51.922-.316.304-.752 1.006-.633 1.369.074.226.57.489.741.254.333-.457.974-.533 1.492-.886 1.039-.71 3.285-.758 4.56-1.7.528-.39 1.583-1.134 3.111-3.722-.591-.426-1.787-1.448-1.787-1.448z"/><path fill="#292F33" d="M14.21 17.018c.477.152.847.624.557 1.114-.29.49.403.185.512-.045.223-.468-.178-1.158-.646-1.314-.468-.156-.746.142-.423.245z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f469-1f3ff-200d-1f9bc.svg b/public/emoji/1f469-1f3ff-200d-1f9bc.svg
new file mode 100644
index 0000000000000000000000000000000000000000..39f0c6a75e495643d46c8f84759b9176edeba75d
--- /dev/null
+++ b/public/emoji/1f469-1f3ff-200d-1f9bc.svg
@@ -0,0 +1 @@
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#292F33" d="M8.22 28.583s.108-.118.211-.409c.104-.291.147-.888.133-.98-.014-.092-.039-.164-.148-.171-.083-.006-.768.08-1.145-.039-.699-.22-.812-.957-.812-.957s-.46.083-.829.152c-.368.069-.818.209-1.134.274-.271.056-.548.03-.823-.03-.275-.06-.485-.147-.55-.165-.066-.017-.575-.27-.782.25l-.051.154s.811.718 2.114 1.182c1.303.464 1.639.152 2.481.452.843.3 1.335.287 1.335.287z"/><path fill="#292F33" d="M6.243 28.821c-.038-.07-.043-.253-.083-.292-.04-.039-.577-.11-.83-.137-.253-.027-.687-.076-1.158-.244-.471-.168-1.032-.523-1.375-.752-.343-.228-.594-.46-.646-.526s-.026-.078-.011-.107.119-.176.119-.176.196.213.569.459.754.467 1.458.717c.703.25 1.182.303 1.583.335.499.039 1.207.141 1.681.309.365.13.66.114.768.123.025.002.04.027.032.051l-.222.623c-.014.041-.081.121-.196.105s-1.651-.419-1.689-.488z"/><path fill="#4289C1" d="M25.097 17.21c.069 1.432-.391 2.922-1.505 3.202-1.066.268-3.056-.151-3.056-.151s-.698.408-.531 1.189c.095.444.257.67.201.712-.05.038-.486-.022-.684-.032-.528-.027-1.1-.211-2.073-.484-.974-.273-1.421-.285-2.481-.577-1.175-.324-1.986-.835-2.33-1.956-.293-.956.277-2.123 1.654-2.63 1.12-.412 4.288.195 5.488.311 1.201.118 5.257-.829 5.317.416z"/><path fill="#4289C1" d="M7.127 27.177c-.646-.143-1.069-.49-1.426-1.025 1.678-1.899 3.787-7.307 3.787-7.307.695-1.744 1.62-2.914 3.252-2.851 2.317.089 5.748.535 5.748.535 2.276.329.671.789 1.305 1.693.635.903-1.294 1.99-2.786 1.891-2.602-.173-3.877-.453-5.522.846-.8 2.306-2.071 4.087-2.844 6.406-.489.079-.868-.045-1.514-.188z"/><path fill="#7C533E" d="M24.879.905c-1.341-.8-3.695-.439-4.23 1.193-.531 1.621-.487 4.307 1 4.389 1.559.086 3.185.011 4.064-1.464.88-1.474.507-3.318-.834-4.118z"/><path fill="#7C533E" d="M25.24 5.363c2.488-2.108-2.576-2.694-2.576-2.694-.957-.122-.563 1.57-1.152 2.362-.405.548.834 1.078.834 1.078s.594.089.508.813l-.001.007c-.023.184-.078.399-.211.676-.662 1.37 1.127 2.571 1.789 1.198.262-.544.279-1.056.27-1.534l-.001-.042c-.015-.712-.076-1.343.54-1.864z"/><path fill="#0B0200" d="M26.422 1.752C25.651.478 24.415-.201 22.023.298c-2.089.436-1.714 2.102-1.212 1.91 1.382-.528 2.116.237 2.589 1.369.27-.473 1.143-.648 1.189.117.051.859-.778 1.094-.712 1.337.022.082-.028-.075 0 0 .35.945 1.106 1.348 1.106 1.348s.283.169.969-.766c.684-.934 1.235-2.595.47-3.861z"/><path fill="#0B0200" d="M25.843 2.713c1.875.677.661 2.73.665 3.791.004 1.306 1.158 1.604 1.158 1.604s-.331-.74-.045-1.649c.397-1.26 1.797-2.079 1.069-3.475-.927-1.783-4.012-.692-2.847-.271z"/><path fill="#9268CA" d="M25.778 16.257c-.214 1.304-.659 2.456-.696 3.032-.02.32-.939-.237-1.604-.511-1.782-.735-3.317-1.825-3.317-1.825.398-1.193.696-3.032.149-5.268-.477-1.953 3.106-5.252 4.309-4.634 1.573.807 2.382 1.782 1.904 4.684l-.745 4.522z"/><path fill="#66757F" d="M27.811 10.609l.425-5.242c.022-.274.265-.48.539-.458.274.022.48.265.458.539l-.425 5.242c-.022.274-.265.48-.539.458-.274-.022-.48-.265-.458-.539z"/><path fill="#292F33" d="M16 21v2s-2 0-2 2v3c0 1 1 2 2 2h10c1 0 2-1 2-2v-5c0-1-1-2-2-2H16z"/><path fill="#292F33" d="M22.956 22.559l-9.848-1.736c-.985-.174-.985-.174-.811-1.158.096-.542.617-.907 1.158-.811l9.848 1.736c.542.096.907.617.811 1.158-.173.985-.173.985-1.158.811z"/><path fill="#292F33" d="M25.238 19.023c-.193.922-.557 1.827-2.094 1.537-1.537-.29-1.782 1.225-.824 1.493.958.267 3.252.646 3.921-.446.668-1.092.78-2.139.713-2.606s-1.572-.66-1.716.022z"/><path fill="#DD2E44" d="M23.442 22.896l-10.833-1.91c-.271-.048-.453-.308-.406-.579.048-.271.308-.453.579-.406l10.833 1.91c.271.048.453.308.406.579-.048.271-.309.454-.579.406z"/><path fill="#292F33" d="M28.932 9.642l-1.736 9.848c-.174.985-.174.985-1.158.811-.542-.096-.907-.617-.811-1.158l1.736-9.848c.096-.542.617-.907 1.158-.811.984.173.984.173.811 1.158zm.992-7.49l-.713 4.025c-.087.493-.168 1.007-1.153.834-.542-.096-.882-.715-.763-1.398l.639-3.609c.163-.579.626-1.004 1.167-.909.985.173.91.564.823 1.057z"/><path fill="#DD2E44" d="M29.406 9.224l-1.91 10.833c-.048.271-.308.453-.579.406-.271-.048-.453-.308-.406-.579l1.91-10.833c.048-.271.308-.453.579-.406.272.048.454.308.406.579zm1.243-7.455l-.91 5.18c-.048.271-.308.453-.579.406-.271-.048-.453-.308-.406-.579l.91-5.18c.048-.271.308-.453.579-.406.271.047.454.308.406.579z"/><path fill="#292F33" d="M25.494 18.441l-7.466-1.316c-.747-.132-.747-.132-.617-.869.071-.405.466-.678.877-.606l7.466 1.316c.411.072.688.463.617.869-.13.738-.13.738-.877.606z"/><path fill="#DD2E44" d="M23.123 21.824c.993.175 2.954.521 3.475-2.433s1.506-2.781.985.174-2.237 3.667-4.634 3.245c-1.969-.348-1.796-1.333.174-.986zm-10.33-1.821c1.971.34 2.277 1.422.308 1.07-.873-.156-.984.212-1.251.958-.252.702-.611 1.757-1.144 3.23-.391 1.082-1.279.603-.95-.342.551-1.588 1.061-2.968 1.392-3.847.338-.895.613-1.247 1.645-1.069z"/><path fill="#DD2E44" d="M10.62 24.01c-.258-.094-.547.04-.641.299l-2.052 5.638c-.094.258.04.547.299.641.258.094.547-.04.641-.299l2.052-5.638c.094-.259-.041-.547-.299-.641z"/><path fill="#66757F" d="M8.226 30.588L4.467 29.22c-.258-.094-.393-.382-.299-.641.094-.258.382-.393.641-.299l3.759 1.368c.258.094.393.382.299.641-.094.258-.383.393-.641.299z"/><path fill="#DD2E44" d="M13.844 30.862l2.95-2.95c.194-.194.194-.513 0-.707-.194-.194-.513-.194-.707 0l-2.95 2.95c-.194.194-.194.513 0 .707.194.194.512.194.707 0zM32 34c-.55 0-1-.45-1-1v-3c0-.55.45-1 1-1s1 .45 1 1v3c0 .55-.45 1-1 1z"/><path fill="#DD2E44" d="M13.5 34c-.55 0-1-.45-1-1v-3c0-.55.45-1 1-1s1 .45 1 1v3c0 .55-.45 1-1 1zm12.983-6.005h2c.275 0 .5-.225.5-.5s-.225-.5-.5-.5h-2c-.275 0-.5.225-.5.5s.225.5.5.5z"/><path fill="#DD2E44" d="M31.123 30.803l-2.95-2.95c-.194-.194-.194-.513 0-.707.194-.194.513-.194.707 0l2.95 2.95c.194.194.194.513 0 .707-.194.195-.512.195-.707 0z"/><path fill="#292F33" d="M11.672 16.127c.742.318 2.05.936 2.339 1.047 0 0 .134-.891.49-.891 0 0 .134-.468.223-.668s.356-.134.379.245c.022.379-.089.512-.089.512s.334.423.134 1.002c0 0 .446.067.356.624-.089.557.067.98-.334 1.092-.401.111-1.916.535-1.938-.067-.022-.601-.401-1.069-1.136-1.515-.735-.446-1.27-.936-1.181-1.181.088-.244.133-.467.757-.2z"/><path fill="#DD2E44" d="M26.5 25h-11c-.275 0-.5-.225-.5-.5s.225-.5.5-.5h11c.275 0 .5.225.5.5s-.225.5-.5.5z"/><path fill="#7C533E" d="M22.691 10.276c-.579 1.455-.982 3.884-1.237 3.894-1.473.062-3.222.614-4.149.559-.672-.04-1.306-.167-1.651-.05-.552.187-1.159.289-1.351.632-.195.348.171.657 1.035.656.635 0 1.045.208 1.674.06.896-.21 4.492.479 5.665-.345.554-.389 1.272-1.95 2.356-4.742-1.084-.476-2.342-.664-2.342-.664z"/><circle fill="#66757F" cx="21.5" cy="31.5" r="4.5"/><circle fill="#66757F" cx="13.5" cy="33.5" r="2.5"/><circle fill="#66757F" cx="32" cy="34" r="2"/><circle fill="#CCD6DD" cx="21.5" cy="31.5" r="2.5"/><circle fill="#CCD6DD" cx="13.5" cy="33.5" r="1.5"/><circle fill="#292F33" cx="32" cy="34" r="1"/><g fill="#292F33"><circle cx="22" cy="30.634" r=".5"/><circle cx="21" cy="32.366" r=".5"/><circle cx="20.634" cy="31" r=".5"/><circle cx="22.366" cy="32" r=".5"/></g><circle fill="#292F33" cx="13.5" cy="33.5" r=".75"/><circle fill="#66757F" cx="32" cy="34" r=".5"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f469-1f3ff-200d-1f9bd.svg b/public/emoji/1f469-1f3ff-200d-1f9bd.svg
new file mode 100644
index 0000000000000000000000000000000000000000..4eea4dc722fe1d87857b53782dd15d21f2fe5b68
--- /dev/null
+++ b/public/emoji/1f469-1f3ff-200d-1f9bd.svg
@@ -0,0 +1 @@
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#292F33" d="M7.981 29.995s.097-.127.175-.426.069-.897.047-.988-.053-.16-.163-.158c-.083.001-.759.146-1.144.061-.716-.158-.892-.883-.892-.883s-.452.123-.812.223c-.361.101-.796.279-1.106.372-.265.079-.543.078-.823.041s-.496-.105-.563-.116c-.067-.011-.597-.219-.757.317l-.037.159s.871.645 2.209.993 1.646.009 2.511.234c.866.226 1.355.171 1.355.171z"/><path fill="#292F33" d="M6.032 30.404c-.044-.066-.065-.248-.109-.284-.043-.036-.585-.059-.839-.064-.254-.005-.691-.016-1.175-.142-.484-.126-1.074-.431-1.436-.629s-.632-.407-.689-.468c-.057-.061-.033-.075-.02-.106.013-.031.103-.186.103-.186s.214.195.607.407.792.399 1.514.587 1.204.199 1.606.195c.501-.004 1.215.035 1.701.162.375.098.668.056.776.056.025 0 .043.023.036.048l-.167.64c-.011.042-.07.128-.186.122-.114-.005-1.678-.272-1.722-.338z"/><path fill="#4289C1" d="M23.802 17.195c.193 1.421-.135 2.945-1.22 3.321-1.039.36-3.058.116-3.058.116s-.66.468-.426 1.231c.133.434.314.645.262.692-.046.042-.486.02-.684.027-.528.02-1.114-.114-2.108-.301s-1.44-.16-2.522-.359c-1.198-.22-2.051-.659-2.491-1.745-.375-.927.091-2.139 1.419-2.764 1.08-.508 4.289-.179 5.495-.168s5.166-1.285 5.333-.05z"/><path fill="#4289C1" d="M6.77 28.689c-.656-.086-1.108-.395-1.51-.897 1.506-2.038 3.136-7.609 3.136-7.609.541-1.798 1.36-3.044 2.992-3.124 2.316-.113 5.772.032 5.772.032 2.296.13.738.727 1.448 1.573.712.845-1.115 2.095-2.611 2.126-2.607.054-3.902-.113-5.428 1.324-.596 2.367-1.706 4.252-2.275 6.63-.48.122-.868.031-1.524-.055z"/><path fill="#7C533E" d="M21.842.878c-1.405-.68-3.719-.115-4.11 1.557-.388 1.661-.109 4.333 1.379 4.285 1.56-.05 3.174-.266 3.921-1.812.748-1.545.215-3.35-1.19-4.03z"/><path fill="#7C533E" d="M22.59 5.288c2.295-2.316-2.801-2.46-2.801-2.46-.964-.038-.424 1.613-.942 2.453-.356.582.925 1.001.925 1.001s.6.036.577.766v.007c-.007.186-.043.404-.151.691-.54 1.423 1.347 2.463 1.887 1.037.213-.564.186-1.077.136-1.552l-.006-.041c-.077-.707-.193-1.329.375-1.902z"/><path fill="#0B0200" d="M23.453 1.588C22.574.386 21.283-.183 18.944.523c-2.044.617-1.525 2.243-1.042 2.008 1.331-.647 2.128.052 2.699 1.138.228-.495 1.083-.745 1.194.013.126.852-.68 1.158-.593 1.394.029.079-.034-.072 0 0 .431.911 1.22 1.246 1.22 1.246s.297.144.898-.847 1.005-2.693.133-3.887z"/><path fill="#0B0200" d="M22.934 2.681c1.968.317 1.157 2.559 1.358 3.601.247 1.283 1.436 1.361 1.436 1.361s-.463-.666-.35-1.611c.156-1.312 1.379-2.377.405-3.613-1.244-1.58-4.072.065-2.849.262z"/><path fill="#9268CA" d="M24.353 16.862c.015 1.321-.057 1.777.007 2.351.036.319-1.252-.021-1.954-.176-1.883-.415-3.583-1.221-3.583-1.221.184-1.244.869-3.07-.624-4.823-.455-.535-.375-1.854.369-3.041.828-1.321 1.751-2.535 2.926-2.661.812-.088 1.597.328 2.15 1.2 2.206 1.83.762 1.78.777 3.121.024 2.035-.083 3.929-.068 5.25z"/><g fill="#DD2E44"><path d="M13.465 27.092l10.824.95c.274.024.518-.181.542-.455.024-.274-.181-.518-.455-.542l-10.824-.95c-.274-.024-.518.181-.542.455-.024.274.181.518.455.542z"/><path d="M24.288 28.041c-.274-.024-.478-.268-.455-.542l.436-4.981c.024-.274.268-.478.542-.455.274.024.478.268.455.542l-.436 4.981c-.024.275-.268.479-.542.455zm-10.738-7.58c-.274-.024-.518.181-.542.455l-1.015 11.597c-.024.274.181.518.455.542.274.024.518-.181.542-.455l1.015-11.597c.023-.274-.181-.518-.455-.542z"/></g><path fill="#292F33" d="M23.524 20.592c1.431-.206 2.834-.148 2.345.544-.489.692-1.575 1.905-3.418 1.707-1.844-.198.185-2.123 1.073-2.251z"/><path fill="#292F33" d="M22.45 22.843l-9.962-.872c-.996-.087-.996-.087-.909-1.083.048-.548.535-.957 1.083-.909l9.962.872c.548.048.957.535.909 1.083-.087.996-.087.996-1.083.909z"/><path fill="#DD2E44" d="M22.964 23.136l-10.958-.959c-.274-.024-.478-.268-.455-.542.024-.274.268-.478.542-.455l10.958.959c.274.024.478.268.455.542-.025.275-.268.479-.542.455z"/><path fill="#292F33" d="M27.278 9.454l-.872 9.962c-.087.996-.087.996-1.083.909-.548-.048-.957-.535-.909-1.083l.872-9.962c.048-.548.535-.957 1.083-.909.996.087.996.087.909 1.083z"/><path fill="#DD2E44" d="M27.714 8.996l-.959 10.958c-.024.274-.268.478-.542.455-.274-.024-.478-.268-.455-.542l.959-10.958c.024-.274.268-.478.542-.455.274.025.479.268.455.542z"/><path fill="#292F33" d="M24.62 18.519l-7.552-.661c-.755-.066-.755-.066-.69-.812.036-.41.405-.716.82-.68l7.552.661c.415.036.726.402.69.812-.064.746-.064.746-.82.68z"/><path fill="#DD2E44" d="M22.553 22.096c1.004.088 2.989.261 3.25-2.727s1.258-2.901.996.087-1.909 3.848-4.333 3.636c-1.993-.174-1.906-1.17.087-.996zm-10.449-.914c1.993.166 2.392 1.218.4 1.039-.883-.079-.962.297-1.163 1.063-.189.721-.456 1.803-.858 3.318-.295 1.112-1.221.712-.977-.257.411-1.63.798-3.05 1.052-3.953.258-.922.502-1.297 1.546-1.21z"/><g fill="#66757F"><circle cx="24.5" cy="27.5" r="1.5"/><path d="M31.245 30.817l-6.062-3.5 3.5-6.062-.866-.5-3.5 6.062-6.062-3.5-.5.866 6.062 3.5-3.5 6.062.866.5 3.5-6.062 6.062 3.5z"/><path d="M26.924 34.615l-1.812-6.761 6.762-1.812-.259-.966-6.761 1.812-1.812-6.762-.966.259 1.812 6.761-6.762 1.812.259.966 6.761-1.812 1.812 6.762z"/></g><path fill="#292F33" d="M24.5 19c-4.694 0-8.5 3.806-8.5 8.5s3.806 8.5 8.5 8.5 8.5-3.806 8.5-8.5-3.806-8.5-8.5-8.5zm0 15c-3.59 0-6.5-2.91-6.5-6.5s2.91-6.5 6.5-6.5 6.5 2.91 6.5 6.5-2.91 6.5-6.5 6.5z"/><path fill="#66757F" d="M24.5 20c-4.142 0-7.5 3.358-7.5 7.5s3.358 7.5 7.5 7.5 7.5-3.358 7.5-7.5-3.358-7.5-7.5-7.5zm0 14c-3.59 0-6.5-2.91-6.5-6.5s2.91-6.5 6.5-6.5 6.5 2.91 6.5 6.5-2.91 6.5-6.5 6.5zm-9.152-.433l-2.165-1.25 1.25-2.165-.866-.5-1.25 2.165-2.165-1.25-.5.866 2.165 1.25-1.25 2.165.866.5 1.25-2.165 2.165 1.25z"/><path fill="#292F33" d="M12.5 29C10.567 29 9 30.567 9 32.5s1.567 3.5 3.5 3.5 3.5-1.567 3.5-3.5-1.567-3.5-3.5-3.5zm0 6c-1.381 0-2.5-1.119-2.5-2.5s1.119-2.5 2.5-2.5 2.5 1.119 2.5 2.5-1.119 2.5-2.5 2.5z"/><path fill="#DD2E44" d="M10.288 25.363c-.266-.071-.541.088-.612.354l-1.553 5.796c-.071.266.088.541.354.612.266.071.541-.088.612-.354l1.553-5.796c.07-.265-.089-.541-.354-.612z"/><path fill="#66757F" d="M8.476 32.125L4.612 31.09c-.266-.071-.425-.347-.354-.612.071-.266.347-.425.612-.354l3.864 1.035c.266.071.426.346.354.612-.071.266-.346.425-.612.354z"/><path fill="#DD2E44" d="M30.103 9.969l-2.954-.521c-.271-.048-.453-.308-.406-.579.048-.271.308-.453.579-.406l2.954.521c.271.048.453.308.406.579-.048.272-.308.454-.579.406z"/><path fill="#292F33" d="M31.088 10.143l-2.615-.467c-.271-.048-.26-.274-.213-.545.048-.271.116-.487.386-.44l2.615.467c.271.048.453.308.406.579-.048.271-.308.454-.579.406z"/><path fill="#7C533E" d="M22.657 10.9c1.111 1.023 3.158 2.426 3.128 2.68-.174 1.464.402 3.203.2 4.11-.147.657-.805 1.117-.745 1.476.667.012.407 1.163.677 1.687.284.551 1.174-.056 1.311-.909.101-.627-.068-1.112-.113-1.757-.064-.918 1.207-3.625.39-5.457-.276-.618-1.167-1.842-3.212-3.751-.608.439-1.636 1.921-1.636 1.921z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f469-200d-1f9af.svg b/public/emoji/1f469-200d-1f9af.svg
new file mode 100644
index 0000000000000000000000000000000000000000..fe5558732f7c6ca34195c605dd2a7125f52429c6
--- /dev/null
+++ b/public/emoji/1f469-200d-1f9af.svg
@@ -0,0 +1 @@
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#CCD6DD" d="M12.154 19.416l.802.598L3.988 32.04l-.802-.598z"/><path fill="#DD2E44" d="M3.186 31.444L1.093 34.25c-.164.22-.119.535.102.7s.535.119.7-.102l2.092-2.806-.801-.598z"/><path fill="#292F33" d="M11.359 21.319c-.22-.164-.266-.479-.102-.7l1.793-2.405c.164-.22.479-.266.7-.102.22.164.266.479.102.7l-1.793 2.405c-.164.221-.479.267-.7.102z"/><path fill="#292F33" d="M11.76 21.618l-.802-.598c-.22-.164-.266-.479-.102-.7.164-.22.479-.266.7-.102l.802.598c.22.164.266.479.102.7-.164.221-.479.267-.7.102z"/><path fill="#99AAB5" d="M.598 35.751c-.22-.164-.266-.479-.102-.7.164-.22.479-.266.7-.102.22.164.266.479.102.7-.165.22-.48.266-.7.102z"/><path fill="#292F33" d="M20.476 35.056s.061-.144.061-.448c0-.303-.156-.869-.199-.95s-.09-.139-.194-.11c-.079.022-.685.326-1.072.341-.719.027-1.066-.618-1.066-.618s-.399.228-.716.413c-.318.185-.687.462-.959.627-.232.141-.497.208-.771.243s-.497.023-.563.029-.621-.061-.641.488l.004.16s.987.397 2.344.397c1.358 0 1.566-.399 2.444-.399s1.328-.173 1.328-.173z"/><path fill="#292F33" d="M18.726 35.926c-.058-.052-.123-.22-.173-.243s-.57.089-.813.146c-.243.058-.66.156-1.152.156-.491 0-1.126-.144-1.519-.243-.393-.098-.701-.23-.77-.274-.07-.043-.05-.063-.046-.096.004-.033.052-.202.052-.202s.251.132.678.237c.426.104.851.183 1.584.183s1.193-.109 1.574-.211c.475-.128 1.163-.267 1.656-.267.38 0 .648-.112.751-.139.024-.006.046.012.046.037v.649c0 .042-.035.139-.146.162-.112.024-1.664.157-1.722.105zm12.221-5.012s-.072-.142-.307-.343c-.235-.2-.777-.454-.868-.473-.091-.02-.167-.022-.213.078-.035.075-.199.746-.444 1.056-.454.575-1.184.418-1.184.418s-.087.46-.153.828c-.067.368-.096.838-.148 1.158-.044.273-.167.523-.322.758-.154.236-.31.4-.35.456-.039.055-.457.441-.045.82l.127.103s.96-.502 1.857-1.555c.897-1.052.726-1.477 1.306-2.158.581-.682.744-1.146.744-1.146z"/><path fill="#292F33" d="M30.465 32.846c-.078.01-.252-.05-.303-.026-.051.024-.308.5-.424.727-.116.226-.316.615-.64.996s-.856.778-1.192 1.018c-.336.24-.642.391-.721.416-.08.025-.082-.003-.104-.028-.022-.025-.122-.174-.122-.174s.269-.107.631-.369c.363-.261.705-.538 1.189-1.107s.704-.997.876-1.36c.214-.452.562-1.078.887-1.46.251-.295.342-.576.388-.674.011-.023.04-.028.059-.012l.503.429c.033.028.085.118.029.22-.055.103-.977 1.394-1.056 1.404z"/><path fill="#FFDC5D" d="M21.541 1.384c-1.593-.627-4.077.182-4.365 2.043-.287 1.848.239 4.747 1.863 4.572 1.702-.184 3.448-.554 4.138-2.307s-.043-3.681-1.636-4.308z"/><path fill="#FFDC5D" d="M22.724 6.143c2.318-2.723-3.266-2.458-3.266-2.458-1.057.038-.329 1.799-.827 2.761-.341.665 1.095 1.018 1.095 1.018s.659-.01.694.79v.007c.008.204-.013.445-.108.769-.473 1.601 1.677 2.582 2.149.978.187-.635.114-1.193.02-1.708l-.009-.046c-.143-.766-.321-1.437.252-2.111z"/><path fill="#FFAC33" d="M23.361 2.026C22.3.784 20.841.269 18.342 1.235c-2.183.844-1.481 2.579-.972 2.282 1.402-.817 2.332-.119 3.046 1.021.208-.56 1.122-.904 1.307-.085.208.921-.647 1.322-.533 1.573.038.084-.043-.076 0 0 .547.96 1.437 1.262 1.437 1.262s.337.132.912-1.001.875-3.028-.178-4.261z"/><path fill="#FFAC33" d="M22.787 3.332c2.163.467 1.275 3.839 1.487 5.08.261 1.528 1.761 1.582 1.761 1.582s-.247-1.064-.116-2.177c.183-1.543 1.189-2.789.127-4.296-1.356-1.924-4.604-.479-3.259-.189z"/><path fill="#2A6797" d="M18.598 34.203c-1.266.109-1.853-.233-1.721-.416.165-.228.128-.397.13-.536.028-2.441-.472-5.991-.472-5.991 0-.348.003-.813.312-1.562.778-1.883 3.951-7.69 3.951-7.69.548-.958 1.771-1.293 2.728-.744.959.548 1.122 1.405.744 2.729-.715 2.508-2.965 5.602-3.903 7.477.224 2.121-.174 3.853.035 5.857.032.288-.538.767-1.804.876z"/><path fill="#4289C1" d="M29.333 31.931c-.364.553-.97.942-1.598.838-1.269-1.924-4.955-5.321-4.955-5.321-.241-.25-.562-.587-.86-1.341-.748-1.895-2.498-8.277-2.498-8.277-.272-1.07.376-2.16 1.446-2.43 1.07-.272 1.783.232 2.43 1.446 1.227 2.301 1.757 6.09 2.384 8.09 1.87 1.568 2.383 3.603 4.275 5.151-.065.857-.261 1.291-.624 1.844z"/><path fill="#9268CA" d="M25.536 20s0 1-2 1h-4.898c-.415-2 .554-3.818-.102-6.5-.848-3.46 2.406-6.874 3.818-6.42 1.846.594 2.693 2.641 2.932 5.858.238 3.216.25 6.062.25 6.062z"/><path fill="#FFDC5D" d="M20.142 11.64c-.783 1.171-2.299 3.804-2.526 3.904-1.206.531-2.551 1.215-3.448 1.307-.65.067-1.256.678-1.51.922-.316.304-.752 1.006-.633 1.369.074.226.57.489.741.254.333-.457.974-.533 1.492-.886 1.039-.71 3.285-.758 4.56-1.7.528-.39 1.583-1.134 3.111-3.722-.591-.426-1.787-1.448-1.787-1.448z"/><path fill="#292F33" d="M14.21 17.018c.477.152.847.624.557 1.114-.29.49.403.185.512-.045.223-.468-.178-1.158-.646-1.314-.468-.156-.746.142-.423.245z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f469-200d-1f9bc.svg b/public/emoji/1f469-200d-1f9bc.svg
new file mode 100644
index 0000000000000000000000000000000000000000..6706ec81560f4eb6b06a7451d6ff3ec908cba970
--- /dev/null
+++ b/public/emoji/1f469-200d-1f9bc.svg
@@ -0,0 +1 @@
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#292F33" d="M8.22 28.583s.108-.118.211-.409c.104-.291.147-.888.133-.98-.014-.092-.039-.164-.148-.171-.083-.006-.768.08-1.145-.039-.699-.22-.812-.957-.812-.957s-.46.083-.829.152c-.368.069-.818.209-1.134.274-.271.056-.548.03-.823-.03-.275-.06-.485-.147-.55-.165-.066-.017-.575-.27-.782.25l-.051.154s.811.718 2.114 1.182c1.303.464 1.639.152 2.481.452.843.3 1.335.287 1.335.287z"/><path fill="#292F33" d="M6.243 28.821c-.038-.07-.043-.253-.083-.292-.04-.039-.577-.11-.83-.137-.253-.027-.687-.076-1.158-.244-.471-.168-1.032-.523-1.375-.752-.343-.228-.594-.46-.646-.526s-.026-.078-.011-.107.119-.176.119-.176.196.213.569.459.754.467 1.458.717c.703.25 1.182.303 1.583.335.499.039 1.207.141 1.681.309.365.13.66.114.768.123.025.002.04.027.032.051l-.222.623c-.014.041-.081.121-.196.105s-1.651-.419-1.689-.488z"/><path fill="#4289C1" d="M25.097 17.21c.069 1.432-.391 2.922-1.505 3.202-1.066.268-3.056-.151-3.056-.151s-.698.408-.531 1.189c.095.444.257.67.201.712-.05.038-.486-.022-.684-.032-.528-.027-1.1-.211-2.073-.484-.974-.273-1.421-.285-2.481-.577-1.175-.324-1.986-.835-2.33-1.956-.293-.956.277-2.123 1.654-2.63 1.12-.412 4.288.195 5.488.311 1.201.118 5.257-.829 5.317.416z"/><path fill="#4289C1" d="M7.127 27.177c-.646-.143-1.069-.49-1.426-1.025 1.678-1.899 3.787-7.307 3.787-7.307.695-1.744 1.62-2.914 3.252-2.851 2.317.089 5.748.535 5.748.535 2.276.329.671.789 1.305 1.693.635.903-1.294 1.99-2.786 1.891-2.602-.173-3.877-.453-5.522.846-.8 2.306-2.071 4.087-2.844 6.406-.489.079-.868-.045-1.514-.188z"/><path fill="#FFDC5D" d="M24.879.905c-1.341-.8-3.695-.439-4.23 1.193-.531 1.621-.487 4.307 1 4.389 1.559.086 3.185.011 4.064-1.464.88-1.474.507-3.318-.834-4.118z"/><path fill="#FFDC5D" d="M25.24 5.363c2.488-2.108-2.576-2.694-2.576-2.694-.957-.122-.563 1.57-1.152 2.362-.405.548.834 1.078.834 1.078s.594.089.508.813l-.001.007c-.023.184-.078.399-.211.676-.662 1.37 1.127 2.571 1.789 1.198.262-.544.279-1.056.27-1.534l-.001-.042c-.015-.712-.076-1.343.54-1.864z"/><path fill="#FFAC33" d="M26.422 1.752C25.651.478 24.415-.201 22.023.298c-2.089.436-1.714 2.102-1.212 1.91 1.382-.528 2.116.237 2.589 1.369.27-.473 1.143-.648 1.189.117.051.859-.778 1.094-.712 1.337.022.082-.028-.075 0 0 .35.945 1.106 1.348 1.106 1.348s.283.169.969-.766c.684-.934 1.235-2.595.47-3.861z"/><path fill="#FFAC33" d="M25.843 2.713c1.875.677.661 2.73.665 3.791.004 1.306 1.158 1.604 1.158 1.604s-.331-.74-.045-1.649c.397-1.26 1.797-2.079 1.069-3.475-.927-1.783-4.012-.692-2.847-.271z"/><path fill="#9268CA" d="M25.778 16.257c-.214 1.304-.659 2.456-.696 3.032-.02.32-.939-.237-1.604-.511-1.782-.735-3.317-1.825-3.317-1.825.398-1.193.696-3.032.149-5.268-.477-1.953 3.106-5.252 4.309-4.634 1.573.807 2.382 1.782 1.904 4.684l-.745 4.522z"/><path fill="#66757F" d="M27.811 10.609l.425-5.242c.022-.274.265-.48.539-.458.274.022.48.265.458.539l-.425 5.242c-.022.274-.265.48-.539.458-.274-.022-.48-.265-.458-.539z"/><path fill="#292F33" d="M16 21v2s-2 0-2 2v3c0 1 1 2 2 2h10c1 0 2-1 2-2v-5c0-1-1-2-2-2H16z"/><path fill="#292F33" d="M22.956 22.559l-9.848-1.736c-.985-.174-.985-.174-.811-1.158.096-.542.617-.907 1.158-.811l9.848 1.736c.542.096.907.617.811 1.158-.173.985-.173.985-1.158.811z"/><path fill="#292F33" d="M25.238 19.023c-.193.922-.557 1.827-2.094 1.537-1.537-.29-1.782 1.225-.824 1.493.958.267 3.252.646 3.921-.446.668-1.092.78-2.139.713-2.606s-1.572-.66-1.716.022z"/><path fill="#DD2E44" d="M23.442 22.896l-10.833-1.91c-.271-.048-.453-.308-.406-.579.048-.271.308-.453.579-.406l10.833 1.91c.271.048.453.308.406.579-.048.271-.309.454-.579.406z"/><path fill="#292F33" d="M28.932 9.642l-1.736 9.848c-.174.985-.174.985-1.158.811-.542-.096-.907-.617-.811-1.158l1.736-9.848c.096-.542.617-.907 1.158-.811.984.173.984.173.811 1.158zm.992-7.49l-.713 4.025c-.087.493-.168 1.007-1.153.834-.542-.096-.882-.715-.763-1.398l.639-3.609c.163-.579.626-1.004 1.167-.909.985.173.91.564.823 1.057z"/><path fill="#DD2E44" d="M29.406 9.224l-1.91 10.833c-.048.271-.308.453-.579.406-.271-.048-.453-.308-.406-.579l1.91-10.833c.048-.271.308-.453.579-.406.272.048.454.308.406.579zm1.243-7.455l-.91 5.18c-.048.271-.308.453-.579.406-.271-.048-.453-.308-.406-.579l.91-5.18c.048-.271.308-.453.579-.406.271.047.454.308.406.579z"/><path fill="#292F33" d="M25.494 18.441l-7.466-1.316c-.747-.132-.747-.132-.617-.869.071-.405.466-.678.877-.606l7.466 1.316c.411.072.688.463.617.869-.13.738-.13.738-.877.606z"/><path fill="#DD2E44" d="M23.123 21.824c.993.175 2.954.521 3.475-2.433s1.506-2.781.985.174-2.237 3.667-4.634 3.245c-1.969-.348-1.796-1.333.174-.986zm-10.33-1.821c1.971.34 2.277 1.422.308 1.07-.873-.156-.984.212-1.251.958-.252.702-.611 1.757-1.144 3.23-.391 1.082-1.279.603-.95-.342.551-1.588 1.061-2.968 1.392-3.847.338-.895.613-1.247 1.645-1.069z"/><path fill="#DD2E44" d="M10.62 24.01c-.258-.094-.547.04-.641.299l-2.052 5.638c-.094.258.04.547.299.641.258.094.547-.04.641-.299l2.052-5.638c.094-.259-.041-.547-.299-.641z"/><path fill="#66757F" d="M8.226 30.588L4.467 29.22c-.258-.094-.393-.382-.299-.641.094-.258.382-.393.641-.299l3.759 1.368c.258.094.393.382.299.641-.094.258-.383.393-.641.299z"/><path fill="#DD2E44" d="M13.844 30.862l2.95-2.95c.194-.194.194-.513 0-.707-.194-.194-.513-.194-.707 0l-2.95 2.95c-.194.194-.194.513 0 .707.194.194.512.194.707 0zM32 34c-.55 0-1-.45-1-1v-3c0-.55.45-1 1-1s1 .45 1 1v3c0 .55-.45 1-1 1z"/><path fill="#DD2E44" d="M13.5 34c-.55 0-1-.45-1-1v-3c0-.55.45-1 1-1s1 .45 1 1v3c0 .55-.45 1-1 1zm12.983-6.005h2c.275 0 .5-.225.5-.5s-.225-.5-.5-.5h-2c-.275 0-.5.225-.5.5s.225.5.5.5z"/><path fill="#DD2E44" d="M31.123 30.803l-2.95-2.95c-.194-.194-.194-.513 0-.707.194-.194.513-.194.707 0l2.95 2.95c.194.194.194.513 0 .707-.194.195-.512.195-.707 0z"/><path fill="#292F33" d="M11.672 16.127c.742.318 2.05.936 2.339 1.047 0 0 .134-.891.49-.891 0 0 .134-.468.223-.668s.356-.134.379.245c.022.379-.089.512-.089.512s.334.423.134 1.002c0 0 .446.067.356.624-.089.557.067.98-.334 1.092-.401.111-1.916.535-1.938-.067-.022-.601-.401-1.069-1.136-1.515-.735-.446-1.27-.936-1.181-1.181.088-.244.133-.467.757-.2z"/><path fill="#DD2E44" d="M26.5 25h-11c-.275 0-.5-.225-.5-.5s.225-.5.5-.5h11c.275 0 .5.225.5.5s-.225.5-.5.5z"/><path fill="#FFDC5D" d="M22.691 10.276c-.579 1.455-.982 3.884-1.237 3.894-1.473.062-3.222.614-4.149.559-.672-.04-1.306-.167-1.651-.05-.552.187-1.159.289-1.351.632-.195.348.171.657 1.035.656.635 0 1.045.208 1.674.06.896-.21 4.492.479 5.665-.345.554-.389 1.272-1.95 2.356-4.742-1.084-.476-2.342-.664-2.342-.664z"/><circle fill="#66757F" cx="21.5" cy="31.5" r="4.5"/><circle fill="#66757F" cx="13.5" cy="33.5" r="2.5"/><circle fill="#66757F" cx="32" cy="34" r="2"/><circle fill="#CCD6DD" cx="21.5" cy="31.5" r="2.5"/><circle fill="#CCD6DD" cx="13.5" cy="33.5" r="1.5"/><circle fill="#292F33" cx="32" cy="34" r="1"/><g fill="#292F33"><circle cx="22" cy="30.634" r=".5"/><circle cx="21" cy="32.366" r=".5"/><circle cx="20.634" cy="31" r=".5"/><circle cx="22.366" cy="32" r=".5"/></g><circle fill="#292F33" cx="13.5" cy="33.5" r=".75"/><circle fill="#66757F" cx="32" cy="34" r=".5"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f469-200d-1f9bd.svg b/public/emoji/1f469-200d-1f9bd.svg
new file mode 100644
index 0000000000000000000000000000000000000000..1d6b02cfaa4579afbed4b2a3907bb460d8b00d7d
--- /dev/null
+++ b/public/emoji/1f469-200d-1f9bd.svg
@@ -0,0 +1 @@
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#292F33" d="M7.981 29.995s.097-.127.175-.426.069-.897.047-.988-.053-.16-.163-.158c-.083.001-.759.146-1.144.061-.716-.158-.892-.883-.892-.883s-.452.123-.812.223c-.361.101-.796.279-1.106.372-.265.079-.543.078-.823.041s-.496-.105-.563-.116c-.067-.011-.597-.219-.757.317l-.037.159s.871.645 2.209.993 1.646.009 2.511.234c.866.226 1.355.171 1.355.171z"/><path fill="#292F33" d="M6.032 30.404c-.044-.066-.065-.248-.109-.284-.043-.036-.585-.059-.839-.064-.254-.005-.691-.016-1.175-.142-.484-.126-1.074-.431-1.436-.629s-.632-.407-.689-.468c-.057-.061-.033-.075-.02-.106.013-.031.103-.186.103-.186s.214.195.607.407.792.399 1.514.587 1.204.199 1.606.195c.501-.004 1.215.035 1.701.162.375.098.668.056.776.056.025 0 .043.023.036.048l-.167.64c-.011.042-.07.128-.186.122-.114-.005-1.678-.272-1.722-.338z"/><path fill="#4289C1" d="M23.802 17.195c.193 1.421-.135 2.945-1.22 3.321-1.039.36-3.058.116-3.058.116s-.66.468-.426 1.231c.133.434.314.645.262.692-.046.042-.486.02-.684.027-.528.02-1.114-.114-2.108-.301s-1.44-.16-2.522-.359c-1.198-.22-2.051-.659-2.491-1.745-.375-.927.091-2.139 1.419-2.764 1.08-.508 4.289-.179 5.495-.168s5.166-1.285 5.333-.05z"/><path fill="#4289C1" d="M6.77 28.689c-.656-.086-1.108-.395-1.51-.897 1.506-2.038 3.136-7.609 3.136-7.609.541-1.798 1.36-3.044 2.992-3.124 2.316-.113 5.772.032 5.772.032 2.296.13.738.727 1.448 1.573.712.845-1.115 2.095-2.611 2.126-2.607.054-3.902-.113-5.428 1.324-.596 2.367-1.706 4.252-2.275 6.63-.48.122-.868.031-1.524-.055z"/><path fill="#FFDC5D" d="M21.842.878c-1.405-.68-3.719-.115-4.11 1.557-.388 1.661-.109 4.333 1.379 4.285 1.56-.05 3.174-.266 3.921-1.812.748-1.545.215-3.35-1.19-4.03z"/><path fill="#FFDC5D" d="M22.59 5.288c2.295-2.316-2.801-2.46-2.801-2.46-.964-.038-.424 1.613-.942 2.453-.356.582.925 1.001.925 1.001s.6.036.577.766v.007c-.007.186-.043.404-.151.691-.54 1.423 1.347 2.463 1.887 1.037.213-.564.186-1.077.136-1.552l-.006-.041c-.077-.707-.193-1.329.375-1.902z"/><path fill="#FFAC33" d="M23.453 1.588C22.574.386 21.283-.183 18.944.523c-2.044.617-1.525 2.243-1.042 2.008 1.331-.647 2.128.052 2.699 1.138.228-.495 1.083-.745 1.194.013.126.852-.68 1.158-.593 1.394.029.079-.034-.072 0 0 .431.911 1.22 1.246 1.22 1.246s.297.144.898-.847 1.005-2.693.133-3.887z"/><path fill="#FFAC33" d="M22.934 2.681c1.968.317 1.157 2.559 1.358 3.601.247 1.283 1.436 1.361 1.436 1.361s-.463-.666-.35-1.611c.156-1.312 1.379-2.377.405-3.613-1.244-1.58-4.072.065-2.849.262z"/><path fill="#9268CA" d="M24.353 16.862c.015 1.321-.057 1.777.007 2.351.036.319-1.252-.021-1.954-.176-1.883-.415-3.583-1.221-3.583-1.221.184-1.244.869-3.07-.624-4.823-.455-.535-.375-1.854.369-3.041.828-1.321 1.751-2.535 2.926-2.661.812-.088 1.597.328 2.15 1.2 2.206 1.83.762 1.78.777 3.121.024 2.035-.083 3.929-.068 5.25z"/><g fill="#DD2E44"><path d="M13.465 27.092l10.824.95c.274.024.518-.181.542-.455.024-.274-.181-.518-.455-.542l-10.824-.95c-.274-.024-.518.181-.542.455-.024.274.181.518.455.542z"/><path d="M24.288 28.041c-.274-.024-.478-.268-.455-.542l.436-4.981c.024-.274.268-.478.542-.455.274.024.478.268.455.542l-.436 4.981c-.024.275-.268.479-.542.455zm-10.738-7.58c-.274-.024-.518.181-.542.455l-1.015 11.597c-.024.274.181.518.455.542.274.024.518-.181.542-.455l1.015-11.597c.023-.274-.181-.518-.455-.542z"/></g><path fill="#292F33" d="M23.524 20.592c1.431-.206 2.834-.148 2.345.544-.489.692-1.575 1.905-3.418 1.707-1.844-.198.185-2.123 1.073-2.251z"/><path fill="#292F33" d="M22.45 22.843l-9.962-.872c-.996-.087-.996-.087-.909-1.083.048-.548.535-.957 1.083-.909l9.962.872c.548.048.957.535.909 1.083-.087.996-.087.996-1.083.909z"/><path fill="#DD2E44" d="M22.964 23.136l-10.958-.959c-.274-.024-.478-.268-.455-.542.024-.274.268-.478.542-.455l10.958.959c.274.024.478.268.455.542-.025.275-.268.479-.542.455z"/><path fill="#292F33" d="M27.278 9.454l-.872 9.962c-.087.996-.087.996-1.083.909-.548-.048-.957-.535-.909-1.083l.872-9.962c.048-.548.535-.957 1.083-.909.996.087.996.087.909 1.083z"/><path fill="#DD2E44" d="M27.714 8.996l-.959 10.958c-.024.274-.268.478-.542.455-.274-.024-.478-.268-.455-.542l.959-10.958c.024-.274.268-.478.542-.455.274.025.479.268.455.542z"/><path fill="#292F33" d="M24.62 18.519l-7.552-.661c-.755-.066-.755-.066-.69-.812.036-.41.405-.716.82-.68l7.552.661c.415.036.726.402.69.812-.064.746-.064.746-.82.68z"/><path fill="#DD2E44" d="M22.553 22.096c1.004.088 2.989.261 3.25-2.727s1.258-2.901.996.087-1.909 3.848-4.333 3.636c-1.993-.174-1.906-1.17.087-.996zm-10.449-.914c1.993.166 2.392 1.218.4 1.039-.883-.079-.962.297-1.163 1.063-.189.721-.456 1.803-.858 3.318-.295 1.112-1.221.712-.977-.257.411-1.63.798-3.05 1.052-3.953.258-.922.502-1.297 1.546-1.21z"/><g fill="#66757F"><circle cx="24.5" cy="27.5" r="1.5"/><path d="M31.245 30.817l-6.062-3.5 3.5-6.062-.866-.5-3.5 6.062-6.062-3.5-.5.866 6.062 3.5-3.5 6.062.866.5 3.5-6.062 6.062 3.5z"/><path d="M26.924 34.615l-1.812-6.761 6.762-1.812-.259-.966-6.761 1.812-1.812-6.762-.966.259 1.812 6.761-6.762 1.812.259.966 6.761-1.812 1.812 6.762z"/></g><path fill="#292F33" d="M24.5 19c-4.694 0-8.5 3.806-8.5 8.5s3.806 8.5 8.5 8.5 8.5-3.806 8.5-8.5-3.806-8.5-8.5-8.5zm0 15c-3.59 0-6.5-2.91-6.5-6.5s2.91-6.5 6.5-6.5 6.5 2.91 6.5 6.5-2.91 6.5-6.5 6.5z"/><path fill="#66757F" d="M24.5 20c-4.142 0-7.5 3.358-7.5 7.5s3.358 7.5 7.5 7.5 7.5-3.358 7.5-7.5-3.358-7.5-7.5-7.5zm0 14c-3.59 0-6.5-2.91-6.5-6.5s2.91-6.5 6.5-6.5 6.5 2.91 6.5 6.5-2.91 6.5-6.5 6.5zm-9.152-.433l-2.165-1.25 1.25-2.165-.866-.5-1.25 2.165-2.165-1.25-.5.866 2.165 1.25-1.25 2.165.866.5 1.25-2.165 2.165 1.25z"/><path fill="#292F33" d="M12.5 29C10.567 29 9 30.567 9 32.5s1.567 3.5 3.5 3.5 3.5-1.567 3.5-3.5-1.567-3.5-3.5-3.5zm0 6c-1.381 0-2.5-1.119-2.5-2.5s1.119-2.5 2.5-2.5 2.5 1.119 2.5 2.5-1.119 2.5-2.5 2.5z"/><path fill="#DD2E44" d="M10.288 25.363c-.266-.071-.541.088-.612.354l-1.553 5.796c-.071.266.088.541.354.612.266.071.541-.088.612-.354l1.553-5.796c.07-.265-.089-.541-.354-.612z"/><path fill="#66757F" d="M8.476 32.125L4.612 31.09c-.266-.071-.425-.347-.354-.612.071-.266.347-.425.612-.354l3.864 1.035c.266.071.426.346.354.612-.071.266-.346.425-.612.354z"/><path fill="#DD2E44" d="M30.103 9.969l-2.954-.521c-.271-.048-.453-.308-.406-.579.048-.271.308-.453.579-.406l2.954.521c.271.048.453.308.406.579-.048.272-.308.454-.579.406z"/><path fill="#292F33" d="M31.088 10.143l-2.615-.467c-.271-.048-.26-.274-.213-.545.048-.271.116-.487.386-.44l2.615.467c.271.048.453.308.406.579-.048.271-.308.454-.579.406z"/><path fill="#FFDC5D" d="M22.657 10.9c1.111 1.023 3.158 2.426 3.128 2.68-.174 1.464.402 3.203.2 4.11-.147.657-.805 1.117-.745 1.476.667.012.407 1.163.677 1.687.284.551 1.174-.056 1.311-.909.101-.627-.068-1.112-.113-1.757-.064-.918 1.207-3.625.39-5.457-.276-.618-1.167-1.842-3.212-3.751-.608.439-1.636 1.921-1.636 1.921z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f469-200d-2764-fe0f-200d-1f468.svg b/public/emoji/1f469-200d-2764-fe0f-200d-1f468.svg
index b01d6565e2aef6e70c5265f7f1e537074e6988be..ece280dc0d3ab8a2376bdc94b56bdbd1900609c8 100644
--- a/public/emoji/1f469-200d-2764-fe0f-200d-1f468.svg
+++ b/public/emoji/1f469-200d-2764-fe0f-200d-1f468.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#FFAC33" d="M13.982 20H14v-9C14 4.925 9.075 0 3 0 1.956 0 .955.165 0 .44v31.037c.652.11 1.317.179 2 .179 6.511 0 11.799-5.189 11.982-11.656z"/><path fill="#9268CA" d="M11.431 27C11.287 26.984 0 27 0 27v9h15v-5c0-2.061-1.566-3.782-3.569-4z"/><path fill="#7450A8" d="M10 32h1v4h-1z"/><path fill="#FFDC5D" d="M0 8.018v22.204C.532 30.7 1.228 31 2 31c1.657 0 3-1.343 3-3v-2.523c3.494-1.237 6-4.56 6-8.477v-5.019c-5.92-.2-9.207-2.168-11-3.963z"/><path fill="#DF1F32" d="M0 22v1.637c.538.212 1.191.363 2 .363 1.413 0 2.369-.445 3-.915C5.707 22.558 6 22 6 22H0z"/><path fill="#C1694F" d="M3 19.5H1c-.276 0-.5-.224-.5-.5s.224-.5.5-.5h2c.276 0 .5.224.5.5s-.224.5-.5.5z"/><path fill="#662113" d="M6 16c-.552 0-1-.448-1-1v-1c0-.552.448-1 1-1s1 .448 1 1v1c0 .552-.448 1-1 1z"/><path fill="#FFAC33" d="M33 0c-6.075 0-11 4.925-11 11s4.925 11 11 11c1.041 0 2.045-.154 3-.425V.425C35.045.154 34.041 0 33 0z"/><path fill="#4289C1" d="M25 27c-2.209 0-4 1.791-4 4v5h15v-9H25z"/><path fill="#2A6797" d="M25 32h1v4h-1z"/><path fill="#FFDC5D" d="M36 11.28c-4.23-1.125-6.313-3.328-7.266-4.804-.42 1.804-1.438 4.699-3.734 5.369V17c0 .589.061 1.162.168 1.719.61 3.15 2.863 5.706 5.832 6.757V27l3 5 2-3.396V11.28z"/><path fill="#C1694F" d="M30 22s.293.558 1 1.085c.63.469 1.587.915 3 .915.809 0 1.462-.151 2-.363V22h-6zm5-2.5h-2c-.276 0-.5-.224-.5-.5s.224-.5.5-.5h2c.276 0 .5.224.5.5s-.224.5-.5.5z"/><path fill="#662113" d="M30 16c-.553 0-1-.448-1-1v-1c0-.552.447-1 1-1s1 .448 1 1v1c0 .552-.447 1-1 1z"/><path fill="#E75A70" d="M26.539 4.711c0-2.602-2.11-4.711-4.711-4.711C20.249 0 18.855.78 18 1.972 17.144.78 15.75 0 14.172 0c-2.601 0-4.711 2.109-4.711 4.711 0 .369.047.727.127 1.07.654 4.065 5.173 8.353 8.411 9.529 3.238-1.177 7.758-5.465 8.412-9.528.081-.344.128-.702.128-1.071z"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#FFAC33" d="M13.982 20H14v-9C14 4.925 9.075 0 3 0 1.956 0 .955.165 0 .44v31.037c.652.11 1.317.179 2 .179 6.511 0 11.799-5.189 11.982-11.656z"/><path fill="#9268CA" d="M11.431 27C11.287 26.984 0 27 0 27v9h15v-5c0-2.061-1.566-3.782-3.569-4z"/><path fill="#7450A8" d="M10 32h1v4h-1z"/><path fill="#FFDC5D" d="M0 8.018v22.204C.532 30.7 1.228 31 2 31c1.657 0 3-1.343 3-3v-2.523c3.494-1.237 6-4.56 6-8.477v-5.019c-5.92-.2-9.207-2.168-11-3.963z"/><path fill="#DF1F32" d="M0 22v1.637c.538.212 1.191.363 2 .363 1.413 0 2.369-.445 3-.915C5.707 22.558 6 22 6 22H0z"/><path fill="#C1694F" d="M3 19.5H1c-.276 0-.5-.224-.5-.5s.224-.5.5-.5h2c.276 0 .5.224.5.5s-.224.5-.5.5z"/><path fill="#662113" d="M6 16c-.552 0-1-.448-1-1v-1c0-.552.448-1 1-1s1 .448 1 1v1c0 .552-.448 1-1 1z"/><path fill="#FFAC33" d="M33 0c-6.075 0-11 4.925-11 11s4.925 11 11 11c1.041 0 2.045-.154 3-.425V.425C35.045.154 34.041 0 33 0z"/><path fill="#4289C1" d="M25 27c-2.209 0-4 1.791-4 4v5h15v-9H25z"/><path fill="#2A6797" d="M25 32h1v4h-1z"/><path fill="#FFDC5D" d="M36 11.28c-4.23-1.125-6.313-3.328-7.266-4.804-.42 1.804-1.438 4.699-3.734 5.369V17c0 .589.061 1.162.168 1.719.61 3.15 2.863 5.706 5.832 6.757V27l3 5 2-3.396V11.28z"/><path fill="#C1694F" d="M30 22s.293.558 1 1.085c.63.469 1.587.915 3 .915.809 0 1.462-.151 2-.363V22h-6zm5-2.5h-2c-.276 0-.5-.224-.5-.5s.224-.5.5-.5h2c.276 0 .5.224.5.5s-.224.5-.5.5z"/><path fill="#662113" d="M30 16c-.553 0-1-.448-1-1v-1c0-.552.447-1 1-1s1 .448 1 1v1c0 .552-.447 1-1 1z"/><path fill="#DD2E44" d="M26.539 4.711c0-2.602-2.11-4.711-4.711-4.711C20.249 0 18.855.78 18 1.972 17.144.78 15.75 0 14.172 0c-2.601 0-4.711 2.109-4.711 4.711 0 .369.047.727.127 1.07.654 4.065 5.173 8.353 8.411 9.529 3.238-1.177 7.758-5.465 8.412-9.528.081-.344.128-.702.128-1.071z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f469-200d-2764-fe0f-200d-1f469.svg b/public/emoji/1f469-200d-2764-fe0f-200d-1f469.svg
index 70fc6b7c2518fd0975d595ba96919dc94b66c00e..62abb03e74ec45bc66bd1b67312e7d1afa9423be 100644
--- a/public/emoji/1f469-200d-2764-fe0f-200d-1f469.svg
+++ b/public/emoji/1f469-200d-2764-fe0f-200d-1f469.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#FFAC33" d="M13.982 20H14v-9C14 4.925 9.075 0 3 0 1.956 0 .955.165 0 .44v31.037c.652.11 1.317.179 2 .179 6.511 0 11.799-5.189 11.982-11.656z"/><path fill="#9268CA" d="M11.431 27C11.287 26.984 0 27 0 27v9h15v-5c0-2.061-1.566-3.782-3.569-4z"/><path fill="#7450A8" d="M10 32h1v4h-1z"/><path fill="#FFDC5D" d="M0 8.018v22.204C.532 30.7 1.228 31 2 31c1.657 0 3-1.343 3-3v-2.523c3.494-1.237 6-4.56 6-8.477v-5.019c-5.92-.2-9.207-2.168-11-3.963z"/><path fill="#DF1F32" d="M0 22v1.637c.538.212 1.191.363 2 .363 1.413 0 2.369-.445 3-.915C5.707 22.558 6 22 6 22H0z"/><path fill="#C1694F" d="M3 19.5H1c-.276 0-.5-.224-.5-.5s.224-.5.5-.5h2c.276 0 .5.224.5.5s-.224.5-.5.5z"/><path fill="#662113" d="M6 16c-.552 0-1-.448-1-1v-1c0-.552.448-1 1-1s1 .448 1 1v1c0 .552-.448 1-1 1z"/><path fill="#FFAC33" d="M22.018 20H22v-9c0-6.075 4.925-11 11-11 1.044 0 2.045.165 3 .44v31.037c-.652.11-1.317.179-2 .179-6.511 0-11.799-5.189-11.982-11.656z"/><path fill="#9268CA" d="M24.569 27C24.713 26.984 36 27 36 27v9H21v-5c0-2.061 1.566-3.782 3.569-4z"/><path fill="#7450A8" d="M25 32h1v4h-1z"/><path fill="#FFDC5D" d="M36 8.018v22.204c-.532.478-1.228.778-2 .778-1.657 0-3-1.343-3-3v-2.523c-3.494-1.237-6-4.56-6-8.477v-5.019c5.92-.2 9.207-2.168 11-3.963z"/><path fill="#DF1F32" d="M36 22v1.637c-.538.212-1.191.363-2 .363-1.413 0-2.369-.445-3-.915-.707-.527-1-1.085-1-1.085h6z"/><path fill="#C1694F" d="M33 19.5h2c.276 0 .5-.224.5-.5s-.224-.5-.5-.5h-2c-.276 0-.5.224-.5.5s.224.5.5.5z"/><path fill="#662113" d="M30 16c.552 0 1-.448 1-1v-1c0-.552-.448-1-1-1s-1 .448-1 1v1c0 .552.448 1 1 1z"/><path fill="#E75A70" d="M26.539 4.711c0-2.602-2.11-4.711-4.711-4.711C20.249 0 18.855.78 18 1.972 17.144.78 15.751 0 14.172 0c-2.601 0-4.711 2.109-4.711 4.711 0 .369.047.727.127 1.07.654 4.065 5.173 8.353 8.411 9.529 3.238-1.177 7.758-5.465 8.412-9.528.081-.344.128-.702.128-1.071z"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#FFAC33" d="M13.982 20H14v-9C14 4.925 9.075 0 3 0 1.956 0 .955.165 0 .44v31.037c.652.11 1.317.179 2 .179 6.511 0 11.799-5.189 11.982-11.656z"/><path fill="#9268CA" d="M11.431 27C11.287 26.984 0 27 0 27v9h15v-5c0-2.061-1.566-3.782-3.569-4z"/><path fill="#7450A8" d="M10 32h1v4h-1z"/><path fill="#FFDC5D" d="M0 8.018v22.204C.532 30.7 1.228 31 2 31c1.657 0 3-1.343 3-3v-2.523c3.494-1.237 6-4.56 6-8.477v-5.019c-5.92-.2-9.207-2.168-11-3.963z"/><path fill="#DF1F32" d="M0 22v1.637c.538.212 1.191.363 2 .363 1.413 0 2.369-.445 3-.915C5.707 22.558 6 22 6 22H0z"/><path fill="#C1694F" d="M3 19.5H1c-.276 0-.5-.224-.5-.5s.224-.5.5-.5h2c.276 0 .5.224.5.5s-.224.5-.5.5z"/><path fill="#662113" d="M6 16c-.552 0-1-.448-1-1v-1c0-.552.448-1 1-1s1 .448 1 1v1c0 .552-.448 1-1 1z"/><path fill="#FFAC33" d="M22.018 20H22v-9c0-6.075 4.925-11 11-11 1.044 0 2.045.165 3 .44v31.037c-.652.11-1.317.179-2 .179-6.511 0-11.799-5.189-11.982-11.656z"/><path fill="#9268CA" d="M24.569 27C24.713 26.984 36 27 36 27v9H21v-5c0-2.061 1.566-3.782 3.569-4z"/><path fill="#7450A8" d="M25 32h1v4h-1z"/><path fill="#FFDC5D" d="M36 8.018v22.204c-.532.478-1.228.778-2 .778-1.657 0-3-1.343-3-3v-2.523c-3.494-1.237-6-4.56-6-8.477v-5.019c5.92-.2 9.207-2.168 11-3.963z"/><path fill="#DF1F32" d="M36 22v1.637c-.538.212-1.191.363-2 .363-1.413 0-2.369-.445-3-.915-.707-.527-1-1.085-1-1.085h6z"/><path fill="#C1694F" d="M33 19.5h2c.276 0 .5-.224.5-.5s-.224-.5-.5-.5h-2c-.276 0-.5.224-.5.5s.224.5.5.5z"/><path fill="#662113" d="M30 16c.552 0 1-.448 1-1v-1c0-.552-.448-1-1-1s-1 .448-1 1v1c0 .552.448 1 1 1z"/><path fill="#DD2E44" d="M26.539 4.711c0-2.602-2.11-4.711-4.711-4.711C20.249 0 18.855.78 18 1.972 17.144.78 15.751 0 14.172 0c-2.601 0-4.711 2.109-4.711 4.711 0 .369.047.727.127 1.07.654 4.065 5.173 8.353 8.411 9.529 3.238-1.177 7.758-5.465 8.412-9.528.081-.344.128-.702.128-1.071z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f469-200d-2764-fe0f-200d-1f48b-200d-1f468.svg b/public/emoji/1f469-200d-2764-fe0f-200d-1f48b-200d-1f468.svg
index e3fe65293c2c2429a57878b06ec744db7b734b93..8248ed607b9c09b56d96b6d3d41f393c06a1ffa2 100644
--- a/public/emoji/1f469-200d-2764-fe0f-200d-1f48b-200d-1f468.svg
+++ b/public/emoji/1f469-200d-2764-fe0f-200d-1f48b-200d-1f468.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#FFDC5D" d="M31 8.042c-6.626 0-12 5.373-12 12 0 6.626 5.374 12 12 12 1.787 0 3.476-.401 5-1.102V9.143c-1.524-.7-3.213-1.101-5-1.101z"/><path fill="#FFAC33" d="M20.667 15.042c.055.06.128.115.197.171.72.716 1.753 1.477 3.219 2.036 3.691 1.407 9.121.297 9.121.297s-.748-1.198-2.101-2.492c1.809.549 3.463 1.358 4.897 2.371v-9.25c-1.81-.904-3.843-1.426-6-1.429-6.508-.008-9.915 3.393-10.059 6.135-.176.085-.352.168-.531.265 0 0 .237.641.902 1.459.077.094.161.191.249.29.038.048.064.101.106.147z"/><path fill="#642116" d="M26 21.542c-1.411 0-1.497-1.251-1.5-1.503-.001-.274-.225-.497-.5-.497-.276 0-.5.224-.5.5 0 .864.523 2.5 2.5 2.5.276 0 .5-.224.5-.5 0-.277-.224-.5-.5-.5zm5 0c-1.411 0-1.497-1.251-1.5-1.503-.001-.274-.225-.497-.5-.497-.276 0-.5.224-.5.5 0 .864.523 2.5 2.5 2.5.276 0 .5-.224.5-.5 0-.277-.224-.5-.5-.5zm-4.995 4c.273-.003.495-.226.495-.5 0-.276-.224-.5-.5-.5-.602 0-1.5.399-1.5 1.5 0 .438.143.765.352 1-.209.235-.352.562-.352 1 0 1.101.898 1.5 1.5 1.5.273 0 .493-.22.496-.494.004-.273-.217-.499-.49-.506-.231-.006-.506-.098-.506-.5s.275-.494.5-.5h.011c.272-.006.489-.228.489-.5 0-.274-.222-.497-.495-.5-.23-.006-.505-.098-.505-.5 0-.403.274-.494.505-.5z"/><path fill="#FFAC33" d="M17.046 22.804c.015-.003.03-.005.044-.01.188-.055.328-.215.356-.412.261-1.897.124-3.785-.407-5.609C14.956 9.627 7.447 5.508.301 7.59c-.103.03-.199.073-.301.105V36h19.595c-2.291-5.75-2.539-10.675-2.549-13.196z"/><path fill="#FFDC5D" d="M16.687 22.728c-.079-.051-.151-.117-.192-.207-2.272-5.017-5.82-8.573-12.403-7.875 0 2.693-2.15 3.877-4.092 4.872V30.94c1.524.701 3.213 1.102 5 1.102 5.702 0 10.466-3.983 11.687-9.314z"/><path fill="#642116" d="M10 21.542c-.276 0-.5.224-.5.5s.224.5.5.5c1.977 0 2.5-1.636 2.5-2.5 0-.276-.224-.5-.5-.5-.275 0-.499.223-.5.497-.003.252-.089 1.503-1.5 1.503zm-2.5-1.5c0-.276-.224-.5-.5-.5-.275 0-.499.223-.5.497-.003.252-.089 1.503-1.5 1.503-.276 0-.5.224-.5.5s.224.5.5.5c1.977 0 2.5-1.636 2.5-2.5zm2.5 4.5c-.276 0-.5.224-.5.5 0 .274.222.497.495.5.23.006.505.098.505.5s-.274.494-.505.5c-.273.003-.495.226-.495.5 0 .272.218.494.489.5H10c.225.006.5.098.5.5s-.275.494-.506.5c-.273.007-.494.232-.49.506.003.274.223.494.496.494.602 0 1.5-.399 1.5-1.5 0-.438-.143-.765-.352-1 .209-.235.352-.562.352-1 0-1.101-.898-1.5-1.5-1.5z"/><path fill="#EA596E" d="M26.539 4.711c0-2.602-2.11-4.711-4.711-4.711C20.249 0 18.855.78 18 1.972 17.144.78 15.751 0 14.172 0c-2.601 0-4.711 2.109-4.711 4.711 0 .369.047.727.127 1.07.654 4.065 5.173 8.353 8.411 9.529 3.238-1.177 7.758-5.465 8.412-9.528.081-.344.128-.702.128-1.071z"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#FFDC5D" d="M31 8.042c-6.626 0-12 5.373-12 12 0 6.626 5.374 12 12 12 1.787 0 3.476-.401 5-1.102V9.143c-1.524-.7-3.213-1.101-5-1.101z"/><path fill="#FFAC33" d="M20.667 15.042c.055.06.128.115.197.171.72.716 1.753 1.477 3.219 2.036 3.691 1.407 9.121.297 9.121.297s-.748-1.198-2.101-2.492c1.809.549 3.463 1.358 4.897 2.371v-9.25c-1.81-.904-3.843-1.426-6-1.429-6.508-.008-9.915 3.393-10.059 6.135-.176.085-.352.168-.531.265 0 0 .237.641.902 1.459.077.094.161.191.249.29.038.048.064.101.106.147z"/><path fill="#642116" d="M26 21.542c-1.411 0-1.497-1.251-1.5-1.503-.001-.274-.225-.497-.5-.497-.276 0-.5.224-.5.5 0 .864.523 2.5 2.5 2.5.276 0 .5-.224.5-.5 0-.277-.224-.5-.5-.5zm5 0c-1.411 0-1.497-1.251-1.5-1.503-.001-.274-.225-.497-.5-.497-.276 0-.5.224-.5.5 0 .864.523 2.5 2.5 2.5.276 0 .5-.224.5-.5 0-.277-.224-.5-.5-.5zm-4.995 4c.273-.003.495-.226.495-.5 0-.276-.224-.5-.5-.5-.602 0-1.5.399-1.5 1.5 0 .438.143.765.352 1-.209.235-.352.562-.352 1 0 1.101.898 1.5 1.5 1.5.273 0 .493-.22.496-.494.004-.273-.217-.499-.49-.506-.231-.006-.506-.098-.506-.5s.275-.494.5-.5h.011c.272-.006.489-.228.489-.5 0-.274-.222-.497-.495-.5-.23-.006-.505-.098-.505-.5 0-.403.274-.494.505-.5z"/><path fill="#FFAC33" d="M17.046 22.804c.015-.003.03-.005.044-.01.188-.055.328-.215.356-.412.261-1.897.124-3.785-.407-5.609C14.956 9.627 7.447 5.508.301 7.59c-.103.03-.199.073-.301.105V36h19.595c-2.291-5.75-2.539-10.675-2.549-13.196z"/><path fill="#FFDC5D" d="M16.687 22.728c-.079-.051-.151-.117-.192-.207-2.272-5.017-5.82-8.573-12.403-7.875 0 2.693-2.15 3.877-4.092 4.872V30.94c1.524.701 3.213 1.102 5 1.102 5.702 0 10.466-3.983 11.687-9.314z"/><path fill="#642116" d="M10 21.542c-.276 0-.5.224-.5.5s.224.5.5.5c1.977 0 2.5-1.636 2.5-2.5 0-.276-.224-.5-.5-.5-.275 0-.499.223-.5.497-.003.252-.089 1.503-1.5 1.503zm-2.5-1.5c0-.276-.224-.5-.5-.5-.275 0-.499.223-.5.497-.003.252-.089 1.503-1.5 1.503-.276 0-.5.224-.5.5s.224.5.5.5c1.977 0 2.5-1.636 2.5-2.5zm2.5 4.5c-.276 0-.5.224-.5.5 0 .274.222.497.495.5.23.006.505.098.505.5s-.274.494-.505.5c-.273.003-.495.226-.495.5 0 .272.218.494.489.5H10c.225.006.5.098.5.5s-.275.494-.506.5c-.273.007-.494.232-.49.506.003.274.223.494.496.494.602 0 1.5-.399 1.5-1.5 0-.438-.143-.765-.352-1 .209-.235.352-.562.352-1 0-1.101-.898-1.5-1.5-1.5z"/><path fill="#DD2E44" d="M26.539 4.711c0-2.602-2.11-4.711-4.711-4.711C20.249 0 18.855.78 18 1.972 17.144.78 15.751 0 14.172 0c-2.601 0-4.711 2.109-4.711 4.711 0 .369.047.727.127 1.07.654 4.065 5.173 8.353 8.411 9.529 3.238-1.177 7.758-5.465 8.412-9.528.081-.344.128-.702.128-1.071z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f469-200d-2764-fe0f-200d-1f48b-200d-1f469.svg b/public/emoji/1f469-200d-2764-fe0f-200d-1f48b-200d-1f469.svg
index 93a147cdbc5e6685356864cd87d34f7ecd28e391..e46dfcaebd9c7f3633cf7aef5869ee192771ce11 100644
--- a/public/emoji/1f469-200d-2764-fe0f-200d-1f48b-200d-1f469.svg
+++ b/public/emoji/1f469-200d-2764-fe0f-200d-1f48b-200d-1f469.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#FFAC33" d="M0 7.139C6.911 5.55 13.967 9.61 15.976 16.503c.532 1.825.669 3.712.407 5.609-.028.197-.168.357-.356.412l-.044.01c.009 2.306.219 6.623 2.006 11.744.197.565.415 1.139.653 1.722H0V7.139z"/><path fill="#FFDC5D" d="M3.03 14.375c6.583-.698 10.13 2.858 12.403 7.875.041.09.113.156.192.207-1.222 5.332-5.986 9.314-11.687 9.314-1.381 0-2.702-.245-3.937-.675V18.679c1.587-.906 3.029-2.099 3.029-4.304z"/><path fill="#642116" d="M3.937 22.271c1.978 0 2.5-1.636 2.5-2.5 0-.276-.224-.5-.5-.5-.275 0-.499.223-.5.497-.003.252-.089 1.503-1.5 1.503-.276 0-.5.224-.5.5s.224.5.5.5zm5 0c1.977 0 2.5-1.636 2.5-2.5 0-.276-.224-.5-.5-.5-.275 0-.499.223-.5.497-.003.252-.089 1.503-1.5 1.503-.276 0-.5.224-.5.5s.224.5.5.5zm0 7c.602 0 1.5-.399 1.5-1.5 0-.438-.143-.765-.352-1 .209-.235.352-.562.352-1 0-1.101-.898-1.5-1.5-1.5-.276 0-.5.224-.5.5 0 .274.222.497.495.5.231.006.505.098.505.5s-.274.494-.505.5c-.273.003-.495.226-.495.5 0 .272.218.494.489.5h.011c.225.006.5.098.5.5s-.275.494-.506.5c-.273.007-.494.232-.49.506.003.274.223.494.496.494z"/><path fill="#F18F26" d="M36 7.139C29.089 5.55 22.033 9.61 20.024 16.503c-.532 1.825-.669 3.712-.407 5.609.028.197.168.357.356.412l.044.01c-.009 2.306-.219 6.623-2.006 11.744-.197.565-.415 1.139-.653 1.722H36V7.139z"/><path fill="#FFDC5D" d="M32.97 14.375c-6.583-.698-10.13 2.858-12.403 7.875-.041.09-.113.156-.192.207 1.222 5.332 5.986 9.314 11.687 9.314 1.381 0 2.702-.245 3.937-.675V18.679c-1.587-.906-3.029-2.099-3.029-4.304z"/><path fill="#642116" d="M32.063 22.271c-1.978 0-2.5-1.636-2.5-2.5 0-.276.224-.5.5-.5.275 0 .499.223.5.497.003.252.089 1.503 1.5 1.503.276 0 .5.224.5.5s-.224.5-.5.5zm-5 0c-1.977 0-2.5-1.636-2.5-2.5 0-.276.224-.5.5-.5.275 0 .499.223.5.497.003.252.089 1.503 1.5 1.503.276 0 .5.224.5.5s-.224.5-.5.5zm0 7c-.602 0-1.5-.399-1.5-1.5 0-.438.143-.765.352-1-.209-.235-.352-.562-.352-1 0-1.101.898-1.5 1.5-1.5.276 0 .5.224.5.5 0 .274-.222.497-.495.5-.23.006-.505.098-.505.5s.274.494.505.5c.273.003.495.226.495.5 0 .272-.218.494-.489.5h-.011c-.225.006-.5.098-.5.5s.275.494.506.5c.273.007.494.232.49.506-.003.274-.223.494-.496.494z"/><path fill="#E75A70" d="M26.539 4.711c0-2.602-2.11-4.711-4.711-4.711C20.249 0 18.855.78 18 1.971 17.144.78 15.751 0 14.172 0c-2.601 0-4.711 2.109-4.711 4.711 0 .369.047.727.127 1.07.654 4.065 5.173 8.353 8.411 9.529 3.238-1.177 7.758-5.465 8.412-9.528.081-.345.128-.702.128-1.071z"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#FFAC33" d="M0 7.139C6.911 5.55 13.967 9.61 15.976 16.503c.532 1.825.669 3.712.407 5.609-.028.197-.168.357-.356.412l-.044.01c.009 2.306.219 6.623 2.006 11.744.197.565.415 1.139.653 1.722H0V7.139z"/><path fill="#FFDC5D" d="M3.03 14.375c6.583-.698 10.13 2.858 12.403 7.875.041.09.113.156.192.207-1.222 5.332-5.986 9.314-11.687 9.314-1.381 0-2.702-.245-3.937-.675V18.679c1.587-.906 3.029-2.099 3.029-4.304z"/><path fill="#642116" d="M3.937 22.271c1.978 0 2.5-1.636 2.5-2.5 0-.276-.224-.5-.5-.5-.275 0-.499.223-.5.497-.003.252-.089 1.503-1.5 1.503-.276 0-.5.224-.5.5s.224.5.5.5zm5 0c1.977 0 2.5-1.636 2.5-2.5 0-.276-.224-.5-.5-.5-.275 0-.499.223-.5.497-.003.252-.089 1.503-1.5 1.503-.276 0-.5.224-.5.5s.224.5.5.5zm0 7c.602 0 1.5-.399 1.5-1.5 0-.438-.143-.765-.352-1 .209-.235.352-.562.352-1 0-1.101-.898-1.5-1.5-1.5-.276 0-.5.224-.5.5 0 .274.222.497.495.5.231.006.505.098.505.5s-.274.494-.505.5c-.273.003-.495.226-.495.5 0 .272.218.494.489.5h.011c.225.006.5.098.5.5s-.275.494-.506.5c-.273.007-.494.232-.49.506.003.274.223.494.496.494z"/><path fill="#F18F26" d="M36 7.139C29.089 5.55 22.033 9.61 20.024 16.503c-.532 1.825-.669 3.712-.407 5.609.028.197.168.357.356.412l.044.01c-.009 2.306-.219 6.623-2.006 11.744-.197.565-.415 1.139-.653 1.722H36V7.139z"/><path fill="#FFDC5D" d="M32.97 14.375c-6.583-.698-10.13 2.858-12.403 7.875-.041.09-.113.156-.192.207 1.222 5.332 5.986 9.314 11.687 9.314 1.381 0 2.702-.245 3.937-.675V18.679c-1.587-.906-3.029-2.099-3.029-4.304z"/><path fill="#642116" d="M32.063 22.271c-1.978 0-2.5-1.636-2.5-2.5 0-.276.224-.5.5-.5.275 0 .499.223.5.497.003.252.089 1.503 1.5 1.503.276 0 .5.224.5.5s-.224.5-.5.5zm-5 0c-1.977 0-2.5-1.636-2.5-2.5 0-.276.224-.5.5-.5.275 0 .499.223.5.497.003.252.089 1.503 1.5 1.503.276 0 .5.224.5.5s-.224.5-.5.5zm0 7c-.602 0-1.5-.399-1.5-1.5 0-.438.143-.765.352-1-.209-.235-.352-.562-.352-1 0-1.101.898-1.5 1.5-1.5.276 0 .5.224.5.5 0 .274-.222.497-.495.5-.23.006-.505.098-.505.5s.274.494.505.5c.273.003.495.226.495.5 0 .272-.218.494-.489.5h-.011c-.225.006-.5.098-.5.5s.275.494.506.5c.273.007.494.232.49.506-.003.274-.223.494-.496.494z"/><path fill="#DD2E44" d="M26.539 4.711c0-2.602-2.11-4.711-4.711-4.711C20.249 0 18.855.78 18 1.971 17.144.78 15.751 0 14.172 0c-2.601 0-4.711 2.109-4.711 4.711 0 .369.047.727.127 1.07.654 4.065 5.173 8.353 8.411 9.529 3.238-1.177 7.758-5.465 8.412-9.528.081-.345.128-.702.128-1.071z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f46b-1f3fb.svg b/public/emoji/1f46b-1f3fb.svg
new file mode 100644
index 0000000000000000000000000000000000000000..5fedd969b5d3a8066c587db4027958d87e63d34e
--- /dev/null
+++ b/public/emoji/1f46b-1f3fb.svg
@@ -0,0 +1 @@
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#292F33" d="M11 0C9.736 0 8.565.393 7.598 1.061 7.401 1.031 7.205 1 7 1 4.791 1 3 2.791 3 5v6c0 3.866 3.134 7 7 7s7-3.134 7-7V6.001C17 2.687 14.314 0 11 0z"/><path fill="#F7DECE" d="M11.213 34.309c-.052.682 1.849.953 2.129.791.299-.173-.698-.623-.702-.977-.019-1.797.53-1.648.311-3.492.443-1.625.672-2.592.672-3.131 0-1.25-3.312-.766-3.312 0 0 .344.365 1.681.417 3.131-.313 1.659.641 1.615.485 3.678zm-2.448 0c.052.682-1.849.953-2.129.791-.299-.173.698-.623.702-.977.019-1.797-.53-1.648-.311-3.492-.443-1.625-.672-2.592-.672-3.131 0-1.25 3.313-.766 3.313 0 0 .344-.365 1.681-.417 3.131.311 1.659-.642 1.615-.486 3.678z"/><path fill="#EEC2AD" d="M10.311 27.5c0 .206.13.771.246 1.5h2.817c.164-.689.249-1.175.249-1.5 0-1.25-3.312-.766-3.312 0zm-3.957 0c0 .325.085.811.249 1.5H9.42c.116-.729.247-1.294.247-1.5 0-.766-3.313-1.25-3.313 0z"/><path fill="#F7DECE" d="M3.258 26.96c-.258.124-.503-.097-.619-.227-.328-.367-.583-1.246-.282-2.209.303-.973.6-2.384 1.199-4.002.081-.22.499-3.764.805-4.445.197-.437 1.28-.896 1.81-.807.529.089.246.651.105 1.13 0 0-.916 3.953-1.016 4.296-.316 1.079-1.624 2.918-1.565 4.237.031.692.06 1.255-.339 1.246-.049.362-.003.735-.098.781zm14.984-.2c.271.091.487-.159.586-.302.279-.405.422-1.309.004-2.227-.423-.927-.894-2.29-1.69-3.821-.108-.208-.966-3.672-1.355-4.309-.25-.409-1.382-.729-1.897-.574-.513.154-.162.676.037 1.134 0 0 1.403 3.807 1.546 4.135.449 1.031 1.977 2.691 2.082 4.008.056.69.097 1.253.492 1.194.094.353.095.729.195.762z"/><path fill="#292F33" d="M13.945 36c.305 0 .372-.418.089-.629-.379-.285-.88-1.371-1.561-1.371h-1.245c-.229 0-.49 1.209-.41 1.48.102.345.433.52.812.52h2.315zm-7.913 0c-.305 0-.372-.418-.089-.629.379-.285.88-1.371 1.561-1.371h1.245c.229 0 .49 1.209.41 1.48-.102.345-.433.52-.811.52H6.032z"/><path fill="#E75A70" d="M14.354 17.771L16 16c-1.438-1.792-4-2-4-2H8s-2.562.208-4 2l1.646 1.771S6.25 20.688 6.25 21 5 25.75 5 28h10c0-2.25-1.25-6.688-1.25-7s.604-3.229.604-3.229z"/><path fill="#DA2F47" d="M13.75 21c0-.106.07-.512.161-1H6.089c.092.488.161.894.161 1 0 .083-.122.509-.223 1h7.942c-.108-.558-.219-.917-.219-1z"/><path fill="#F7DECE" d="M8 11v4c0 1.104.896 2 2 2s2-.896 2-2v-4H8z"/><path fill="#EEC2AD" d="M12 11l-4 .019V15s2 1 4 0v-4z"/><path fill="#F7DECE" d="M15 3H5v6c0 2.762 2.238 5 5 5s5-2.237 5-5V3z"/><path fill="#292F33" d="M15 2H5L4 7c4 0 4-4 4-4s0 4 8 4l-1-5z"/><path fill="#DF1F32" d="M12 12H8s0 1 2 1 2-1 2-1z"/><circle fill="#662113" cx="7.5" cy="8.5" r=".5"/><circle fill="#662113" cx="12.5" cy="8.5" r=".5"/><path fill="#C1694F" d="M9 10h2s0 1-1 1-1-1-1-1z"/><path fill="#292F33" d="M26.5 0c-1.187 0-2.282.379-3.181 1.018C21.473 1.114 20 2.629 20 4.5c0 1.542.007 3.484 2.038 4.208C23.036 10.094 24.66 11 26.5 11c3.037 0 5.5-2.462 5.5-5.499C32 2.463 29.537 0 26.5 0z"/><path fill="#F7DECE" d="M18.117 26.76c-.271.091-.487-.159-.586-.302-.279-.405-.422-1.309-.004-2.227.423-.927.702-2.072 1.69-3.821.115-.204.494-2.746 1.242-4.354.202-.435 1.495-.684 2.009-.529.513.154-.005.98-.037 1.134-.344 1.651-1.305 4.077-1.45 4.404-.8 1.806-1.965 2.389-2.071 3.706-.055.69-.205 1.286-.6 1.228-.092.352-.094.728-.193.761zm14.595.204c.257.126.504-.094.62-.222.33-.365.591-1.242.296-2.208-.297-.975-.424-2.146-1.174-4.01-.087-.217-.129-2.787-.66-4.479-.143-.457-1.392-.875-1.922-.789-.529.086-.124.972-.112 1.129.124 1.682.758 4.213.859 4.556.556 1.895 1.634 2.627 1.566 3.946-.036.692.034 1.302.433 1.296.048.363 0 .735.094.781z"/><path fill="#AAB8C2" d="M29.555 29.5c.5-2.734.422-6.5.422-6.5h-7.963s-.078 3.766.422 6.5c.063.344.188 3.344-.109 5.5-.066.479 2.886.937 2.844-.125-.078-1.969.264-3.513.328-4.5.035-.547.25-1.875.344-3.208.011-.018.295-.018.306 0 .094 1.333.308 2.661.344 3.208.064.987.406 2.531.328 4.5-.042 1.062 2.91.604 2.844.125-.297-2.156-.172-5.156-.11-5.5z"/><path fill="#292F33" d="M30.54 36c.499-.406-.041-1.161-1.42-1.402-1.163-.203-2.2-.032-2.363.35-.212.493-.05 1.052-.05 1.052h3.833zm-9.117 0c-.499-.406.041-1.161 1.42-1.402 1.163-.203 2.2-.032 2.363.35.212.494.05 1.053.05 1.053L21.423 36z"/><path fill="#4289C1" d="M30.797 14.766C29.578 14 28 14 28 14h-4s-1.578 0-2.797.766c-1.201.754-1.656 3-1.656 3l2.203.688.109 5.546h8.281l.109-5.547 2.203-.688c.001.001-.454-2.245-1.655-2.999z"/><path fill="#F7DECE" d="M24 10.042v4c0 .682.896 1.305 2 1.305s2-.668 2-1.305v-4h-4z"/><path fill="#EEC2AD" d="M24 14.042c0 .682.896 1.305 2 1.305s2-.668 2-1.305V11l-4 .019v3.023z"/><path fill="#F7DECE" d="M31 3H21v6c0 2.762 2.238 5 5 5s5-2.237 5-5V3z"/><path fill="#292F33" d="M21 2.5L20.5 5l.5 2c2.333 0 2.85-2.412 2.965-3.488C24.004 4.588 24.779 7 31 7l.5-2-.5-2.5H21z"/><path fill="#C1694F" d="M28 12h-4s0 1 2 1 2-1 2-1z"/><circle fill="#662113" cx="23.5" cy="8.5" r=".5"/><circle fill="#662113" cx="28.5" cy="8.5" r=".5"/><path fill="#C1694F" d="M25 10h2s0 1-1 1-1-1-1-1z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f46b-1f3fc.svg b/public/emoji/1f46b-1f3fc.svg
new file mode 100644
index 0000000000000000000000000000000000000000..d5be6fe590ab9eae4c9a93085f7d8a9603dfeaef
--- /dev/null
+++ b/public/emoji/1f46b-1f3fc.svg
@@ -0,0 +1 @@
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#FFE51E" d="M11 0C9.736 0 8.565.393 7.598 1.061 7.401 1.031 7.205 1 7 1 4.791 1 3 2.791 3 5v6c0 3.866 3.134 7 7 7s7-3.134 7-7V6.001C17 2.687 14.314 0 11 0z"/><path fill="#F3D2A2" d="M11.213 34.309c-.052.682 1.849.953 2.129.791.299-.173-.698-.623-.702-.977-.019-1.797.53-1.648.311-3.492.443-1.625.672-2.592.672-3.131 0-1.25-3.312-.766-3.312 0 0 .344.365 1.681.417 3.131-.313 1.659.641 1.615.485 3.678zm-2.448 0c.052.682-1.849.953-2.129.791-.299-.173.698-.623.702-.977.019-1.797-.53-1.648-.311-3.492-.443-1.625-.672-2.592-.672-3.131 0-1.25 3.313-.766 3.313 0 0 .344-.365 1.681-.417 3.131.311 1.659-.642 1.615-.486 3.678z"/><path fill="#E2C196" d="M10.311 27.5c0 .206.13.771.246 1.5h2.817c.164-.689.249-1.175.249-1.5 0-1.25-3.312-.766-3.312 0zm-3.957 0c0 .325.085.811.249 1.5H9.42c.116-.729.247-1.294.247-1.5 0-.766-3.313-1.25-3.313 0z"/><path fill="#F3D2A2" d="M3.258 26.96c-.258.124-.503-.097-.619-.227-.328-.367-.583-1.246-.282-2.209.303-.973.6-2.384 1.199-4.002.081-.22.499-3.764.805-4.445.197-.437 1.28-.896 1.81-.807.529.089.246.651.105 1.13 0 0-.916 3.953-1.016 4.296-.316 1.079-1.624 2.918-1.565 4.237.031.692.06 1.255-.339 1.246-.049.362-.003.735-.098.781zm14.984-.2c.271.091.487-.159.586-.302.279-.405.422-1.309.004-2.227-.423-.927-.894-2.29-1.69-3.821-.108-.208-.966-3.672-1.355-4.309-.25-.409-1.382-.729-1.897-.574-.513.154-.162.676.037 1.134 0 0 1.403 3.807 1.546 4.135.449 1.031 1.977 2.691 2.082 4.008.056.69.097 1.253.492 1.194.094.353.095.729.195.762z"/><path fill="#292F33" d="M13.945 36c.305 0 .372-.418.089-.629-.379-.285-.88-1.371-1.561-1.371h-1.245c-.229 0-.49 1.209-.41 1.48.102.345.433.52.812.52h2.315zm-7.913 0c-.305 0-.372-.418-.089-.629.379-.285.88-1.371 1.561-1.371h1.245c.229 0 .49 1.209.41 1.48-.102.345-.433.52-.811.52H6.032z"/><path fill="#E75A70" d="M14.354 17.771L16 16c-1.438-1.792-4-2-4-2H8s-2.562.208-4 2l1.646 1.771S6.25 20.688 6.25 21 5 25.75 5 28h10c0-2.25-1.25-6.688-1.25-7s.604-3.229.604-3.229z"/><path fill="#DA2F47" d="M13.75 21c0-.106.07-.512.161-1H6.089c.092.488.161.894.161 1 0 .083-.122.509-.223 1h7.942c-.108-.558-.219-.917-.219-1z"/><path fill="#F3D2A2" d="M8 11v4c0 1.104.896 2 2 2s2-.896 2-2v-4H8z"/><path fill="#E2C196" d="M12 11l-4 .019V15s2 1 4 0v-4z"/><path fill="#F3D2A2" d="M15 3H5v6c0 2.762 2.238 5 5 5s5-2.237 5-5V3z"/><path fill="#FFE51E" d="M15 2H5L4 7c4 0 4-4 4-4s0 4 8 4l-1-5z"/><path fill="#DF1F32" d="M12 12H8s0 1 2 1 2-1 2-1z"/><circle fill="#662113" cx="7.5" cy="8.5" r=".5"/><circle fill="#662113" cx="12.5" cy="8.5" r=".5"/><path fill="#C1694F" d="M9 10h2s0 1-1 1-1-1-1-1z"/><path fill="#FFE51E" d="M26.5 0c-1.187 0-2.282.379-3.181 1.018C21.473 1.114 20 2.629 20 4.5c0 1.542.007 3.484 2.038 4.208C23.036 10.094 24.66 11 26.5 11c3.037 0 5.5-2.462 5.5-5.499C32 2.463 29.537 0 26.5 0z"/><path fill="#F3D2A2" d="M18.117 26.76c-.271.091-.487-.159-.586-.302-.279-.405-.422-1.309-.004-2.227.423-.927.702-2.072 1.69-3.821.115-.204.494-2.746 1.242-4.354.202-.435 1.495-.684 2.009-.529.513.154-.005.98-.037 1.134-.344 1.651-1.305 4.077-1.45 4.404-.8 1.806-1.965 2.389-2.071 3.706-.055.69-.205 1.286-.6 1.228-.092.352-.094.728-.193.761zm14.595.204c.257.126.504-.094.62-.222.33-.365.591-1.242.296-2.208-.297-.975-.424-2.146-1.174-4.01-.087-.217-.129-2.787-.66-4.479-.143-.457-1.392-.875-1.922-.789-.529.086-.124.972-.112 1.129.124 1.682.758 4.213.859 4.556.556 1.895 1.634 2.627 1.566 3.946-.036.692.034 1.302.433 1.296.048.363 0 .735.094.781z"/><path fill="#AAB8C2" d="M29.555 29.5c.5-2.734.422-6.5.422-6.5h-7.963s-.078 3.766.422 6.5c.063.344.188 3.344-.109 5.5-.066.479 2.886.937 2.844-.125-.078-1.969.264-3.513.328-4.5.035-.547.25-1.875.344-3.208.011-.018.295-.018.306 0 .094 1.333.308 2.661.344 3.208.064.987.406 2.531.328 4.5-.042 1.062 2.91.604 2.844.125-.297-2.156-.172-5.156-.11-5.5z"/><path fill="#292F33" d="M30.54 36c.499-.406-.041-1.161-1.42-1.402-1.163-.203-2.2-.032-2.363.35-.212.493-.05 1.052-.05 1.052h3.833zm-9.117 0c-.499-.406.041-1.161 1.42-1.402 1.163-.203 2.2-.032 2.363.35.212.494.05 1.053.05 1.053L21.423 36z"/><path fill="#4289C1" d="M30.797 14.766C29.578 14 28 14 28 14h-4s-1.578 0-2.797.766c-1.201.754-1.656 3-1.656 3l2.203.688.109 5.546h8.281l.109-5.547 2.203-.688c.001.001-.454-2.245-1.655-2.999z"/><path fill="#F3D2A2" d="M24 10.042v4c0 .682.896 1.305 2 1.305s2-.668 2-1.305v-4h-4z"/><path fill="#E2C196" d="M24 14.042c0 .682.896 1.305 2 1.305s2-.668 2-1.305V11l-4 .019v3.023z"/><path fill="#F3D2A2" d="M31 3H21v6c0 2.762 2.238 5 5 5s5-2.237 5-5V3z"/><path fill="#FFE51E" d="M21 2.5L20.5 5l.5 2c2.333 0 2.85-2.412 2.965-3.488C24.004 4.588 24.779 7 31 7l.5-2-.5-2.5H21z"/><path fill="#C1694F" d="M28 12h-4s0 1 2 1 2-1 2-1z"/><circle fill="#662113" cx="23.5" cy="8.5" r=".5"/><circle fill="#662113" cx="28.5" cy="8.5" r=".5"/><path fill="#C1694F" d="M25 10h2s0 1-1 1-1-1-1-1z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f46b-1f3fd.svg b/public/emoji/1f46b-1f3fd.svg
new file mode 100644
index 0000000000000000000000000000000000000000..15c9bdfedea2a4df0af5d91c330104c7eecf5f12
--- /dev/null
+++ b/public/emoji/1f46b-1f3fd.svg
@@ -0,0 +1 @@
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#963B22" d="M11 0C9.736 0 8.565.393 7.598 1.061 7.401 1.031 7.205 1 7 1 4.791 1 3 2.791 3 5v6c0 3.866 3.134 7 7 7s7-3.134 7-7V6.001C17 2.687 14.314 0 11 0z"/><path fill="#D4AB88" d="M11.213 34.309c-.052.682 1.849.953 2.129.791.299-.173-.698-.623-.702-.977-.019-1.797.53-1.648.311-3.492.443-1.625.672-2.592.672-3.131 0-1.25-3.312-.766-3.312 0 0 .344.365 1.681.417 3.131-.313 1.659.641 1.615.485 3.678zm-2.448 0c.052.682-1.849.953-2.129.791-.299-.173.698-.623.702-.977.019-1.797-.53-1.648-.311-3.492-.443-1.625-.672-2.592-.672-3.131 0-1.25 3.313-.766 3.313 0 0 .344-.365 1.681-.417 3.131.311 1.659-.642 1.615-.486 3.678z"/><path fill="#CC9B7A" d="M10.311 27.5c0 .206.13.771.246 1.5h2.817c.164-.689.249-1.175.249-1.5 0-1.25-3.312-.766-3.312 0zm-3.957 0c0 .325.085.811.249 1.5H9.42c.116-.729.247-1.294.247-1.5 0-.766-3.313-1.25-3.313 0z"/><path fill="#D4AB88" d="M3.258 26.96c-.258.124-.503-.097-.619-.227-.328-.367-.583-1.246-.282-2.209.303-.973.6-2.384 1.199-4.002.081-.22.499-3.764.805-4.445.197-.437 1.28-.896 1.81-.807.529.089.246.651.105 1.13 0 0-.916 3.953-1.016 4.296-.316 1.079-1.624 2.918-1.565 4.237.031.692.06 1.255-.339 1.246-.049.362-.003.735-.098.781zm14.984-.2c.271.091.487-.159.586-.302.279-.405.422-1.309.004-2.227-.423-.927-.894-2.29-1.69-3.821-.108-.208-.966-3.672-1.355-4.309-.25-.409-1.382-.729-1.897-.574-.513.154-.162.676.037 1.134 0 0 1.403 3.807 1.546 4.135.449 1.031 1.977 2.691 2.082 4.008.056.69.097 1.253.492 1.194.094.353.095.729.195.762z"/><path fill="#292F33" d="M13.945 36c.305 0 .372-.418.089-.629-.379-.285-.88-1.371-1.561-1.371h-1.245c-.229 0-.49 1.209-.41 1.48.102.345.433.52.812.52h2.315zm-7.913 0c-.305 0-.372-.418-.089-.629.379-.285.88-1.371 1.561-1.371h1.245c.229 0 .49 1.209.41 1.48-.102.345-.433.52-.811.52H6.032z"/><path fill="#E75A70" d="M14.354 17.771L16 16c-1.438-1.792-4-2-4-2H8s-2.562.208-4 2l1.646 1.771S6.25 20.688 6.25 21 5 25.75 5 28h10c0-2.25-1.25-6.688-1.25-7s.604-3.229.604-3.229z"/><path fill="#DA2F47" d="M13.75 21c0-.106.07-.512.161-1H6.089c.092.488.161.894.161 1 0 .083-.122.509-.223 1h7.942c-.108-.558-.219-.917-.219-1z"/><path fill="#D4AB88" d="M8 11v4c0 1.104.896 2 2 2s2-.896 2-2v-4H8z"/><path fill="#CC9B7A" d="M12 11l-4 .019V15s2 1 4 0v-4z"/><path fill="#D4AB88" d="M15 3H5v6c0 2.762 2.238 5 5 5s5-2.237 5-5V3z"/><path fill="#963B22" d="M15 2H5L4 7c4 0 4-4 4-4s0 4 8 4l-1-5z"/><path fill="#DF1F32" d="M12 12H8s0 1 2 1 2-1 2-1z"/><circle fill="#662113" cx="7.5" cy="8.5" r=".5"/><circle fill="#662113" cx="12.5" cy="8.5" r=".5"/><path fill="#C1694F" d="M9 10h2s0 1-1 1-1-1-1-1z"/><path fill="#963B22" d="M26.5 0c-1.187 0-2.282.379-3.181 1.018C21.473 1.114 20 2.629 20 4.5c0 1.542.007 3.484 2.038 4.208C23.036 10.094 24.66 11 26.5 11c3.037 0 5.5-2.462 5.5-5.499C32 2.463 29.537 0 26.5 0z"/><path fill="#D4AB88" d="M18.117 26.76c-.271.091-.487-.159-.586-.302-.279-.405-.422-1.309-.004-2.227.423-.927.702-2.072 1.69-3.821.115-.204.494-2.746 1.242-4.354.202-.435 1.495-.684 2.009-.529.513.154-.005.98-.037 1.134-.344 1.651-1.305 4.077-1.45 4.404-.8 1.806-1.965 2.389-2.071 3.706-.055.69-.205 1.286-.6 1.228-.092.352-.094.728-.193.761zm14.595.204c.257.126.504-.094.62-.222.33-.365.591-1.242.296-2.208-.297-.975-.424-2.146-1.174-4.01-.087-.217-.129-2.787-.66-4.479-.143-.457-1.392-.875-1.922-.789-.529.086-.124.972-.112 1.129.124 1.682.758 4.213.859 4.556.556 1.895 1.634 2.627 1.566 3.946-.036.692.034 1.302.433 1.296.048.363 0 .735.094.781z"/><path fill="#AAB8C2" d="M29.555 29.5c.5-2.734.422-6.5.422-6.5h-7.963s-.078 3.766.422 6.5c.063.344.188 3.344-.109 5.5-.066.479 2.886.937 2.844-.125-.078-1.969.264-3.513.328-4.5.035-.547.25-1.875.344-3.208.011-.018.295-.018.306 0 .094 1.333.308 2.661.344 3.208.064.987.406 2.531.328 4.5-.042 1.062 2.91.604 2.844.125-.297-2.156-.172-5.156-.11-5.5z"/><path fill="#292F33" d="M30.54 36c.499-.406-.041-1.161-1.42-1.402-1.163-.203-2.2-.032-2.363.35-.212.493-.05 1.052-.05 1.052h3.833zm-9.117 0c-.499-.406.041-1.161 1.42-1.402 1.163-.203 2.2-.032 2.363.35.212.494.05 1.053.05 1.053L21.423 36z"/><path fill="#4289C1" d="M30.797 14.766C29.578 14 28 14 28 14h-4s-1.578 0-2.797.766c-1.201.754-1.656 3-1.656 3l2.203.688.109 5.546h8.281l.109-5.547 2.203-.688c.001.001-.454-2.245-1.655-2.999z"/><path fill="#D4AB88" d="M24 10.042v4c0 .682.896 1.305 2 1.305s2-.668 2-1.305v-4h-4z"/><path fill="#CC9B7A" d="M24 14.042c0 .682.896 1.305 2 1.305s2-.668 2-1.305V11l-4 .019v3.023z"/><path fill="#D4AB88" d="M31 3H21v6c0 2.762 2.238 5 5 5s5-2.237 5-5V3z"/><path fill="#963B22" d="M21 2.5L20.5 5l.5 2c2.333 0 2.85-2.412 2.965-3.488C24.004 4.588 24.779 7 31 7l.5-2-.5-2.5H21z"/><path fill="#C1694F" d="M28 12h-4s0 1 2 1 2-1 2-1z"/><circle fill="#662113" cx="23.5" cy="8.5" r=".5"/><circle fill="#662113" cx="28.5" cy="8.5" r=".5"/><path fill="#C1694F" d="M25 10h2s0 1-1 1-1-1-1-1z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f46b-1f3fe.svg b/public/emoji/1f46b-1f3fe.svg
new file mode 100644
index 0000000000000000000000000000000000000000..54c46de874c4d2b912948747d53edc841ca81b5b
--- /dev/null
+++ b/public/emoji/1f46b-1f3fe.svg
@@ -0,0 +1 @@
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#60352A" d="M11 0C9.736 0 8.565.393 7.598 1.061 7.401 1.031 7.205 1 7 1 4.791 1 3 2.791 3 5v6c0 3.866 3.134 7 7 7s7-3.134 7-7V6.001C17 2.687 14.314 0 11 0z"/><path fill="#AF7E57" d="M11.213 34.309c-.052.682 1.849.953 2.129.791.299-.173-.698-.623-.702-.977-.019-1.797.53-1.648.311-3.492.443-1.625.672-2.592.672-3.131 0-1.25-3.312-.766-3.312 0 0 .344.365 1.681.417 3.131-.313 1.659.641 1.615.485 3.678zm-2.448 0c.052.682-1.849.953-2.129.791-.299-.173.698-.623.702-.977.019-1.797-.53-1.648-.311-3.492-.443-1.625-.672-2.592-.672-3.131 0-1.25 3.313-.766 3.313 0 0 .344-.365 1.681-.417 3.131.311 1.659-.642 1.615-.486 3.678z"/><path fill="#9B6A49" d="M10.311 27.5c0 .206.13.771.246 1.5h2.817c.164-.689.249-1.175.249-1.5 0-1.25-3.312-.766-3.312 0zm-3.957 0c0 .325.085.811.249 1.5H9.42c.116-.729.247-1.294.247-1.5 0-.766-3.313-1.25-3.313 0z"/><path fill="#AF7E57" d="M3.258 26.96c-.258.124-.503-.097-.619-.227-.328-.367-.583-1.246-.282-2.209.303-.973.6-2.384 1.199-4.002.081-.22.499-3.764.805-4.445.197-.437 1.28-.896 1.81-.807.529.089.246.651.105 1.13 0 0-.916 3.953-1.016 4.296-.316 1.079-1.624 2.918-1.565 4.237.031.692.06 1.255-.339 1.246-.049.362-.003.735-.098.781zm14.984-.2c.271.091.487-.159.586-.302.279-.405.422-1.309.004-2.227-.423-.927-.894-2.29-1.69-3.821-.108-.208-.966-3.672-1.355-4.309-.25-.409-1.382-.729-1.897-.574-.513.154-.162.676.037 1.134 0 0 1.403 3.807 1.546 4.135.449 1.031 1.977 2.691 2.082 4.008.056.69.097 1.253.492 1.194.094.353.095.729.195.762z"/><path fill="#292F33" d="M13.945 36c.305 0 .372-.418.089-.629-.379-.285-.88-1.371-1.561-1.371h-1.245c-.229 0-.49 1.209-.41 1.48.102.345.433.52.812.52h2.315zm-7.913 0c-.305 0-.372-.418-.089-.629.379-.285.88-1.371 1.561-1.371h1.245c.229 0 .49 1.209.41 1.48-.102.345-.433.52-.811.52H6.032z"/><path fill="#E75A70" d="M14.354 17.771L16 16c-1.438-1.792-4-2-4-2H8s-2.562.208-4 2l1.646 1.771S6.25 20.688 6.25 21 5 25.75 5 28h10c0-2.25-1.25-6.688-1.25-7s.604-3.229.604-3.229z"/><path fill="#DA2F47" d="M13.75 21c0-.106.07-.512.161-1H6.089c.092.488.161.894.161 1 0 .083-.122.509-.223 1h7.942c-.108-.558-.219-.917-.219-1z"/><path fill="#AF7E57" d="M8 11v4c0 1.104.896 2 2 2s2-.896 2-2v-4H8z"/><path fill="#9B6A49" d="M12 11l-4 .019V15s2 1 4 0v-4z"/><path fill="#AF7E57" d="M15 3H5v6c0 2.762 2.238 5 5 5s5-2.237 5-5V3z"/><path fill="#60352A" d="M15 2H5L4 7c4 0 4-4 4-4s0 4 8 4l-1-5z"/><path fill="#DF1F32" d="M12 12H8s0 1 2 1 2-1 2-1z"/><circle fill="#662113" cx="7.5" cy="8.5" r=".5"/><circle fill="#662113" cx="12.5" cy="8.5" r=".5"/><path fill="#915A34" d="M9 10h2s0 1-1 1-1-1-1-1z"/><path fill="#60352A" d="M26.5 0c-1.187 0-2.282.379-3.181 1.018C21.473 1.114 20 2.629 20 4.5c0 1.542.007 3.484 2.038 4.208C23.036 10.094 24.66 11 26.5 11c3.037 0 5.5-2.462 5.5-5.499C32 2.463 29.537 0 26.5 0z"/><path fill="#AF7E57" d="M18.117 26.76c-.271.091-.487-.159-.586-.302-.279-.405-.422-1.309-.004-2.227.423-.927.702-2.072 1.69-3.821.115-.204.494-2.746 1.242-4.354.202-.435 1.495-.684 2.009-.529.513.154-.005.98-.037 1.134-.344 1.651-1.305 4.077-1.45 4.404-.8 1.806-1.965 2.389-2.071 3.706-.055.69-.205 1.286-.6 1.228-.092.352-.094.728-.193.761zm14.595.204c.257.126.504-.094.62-.222.33-.365.591-1.242.296-2.208-.297-.975-.424-2.146-1.174-4.01-.087-.217-.129-2.787-.66-4.479-.143-.457-1.392-.875-1.922-.789-.529.086-.124.972-.112 1.129.124 1.682.758 4.213.859 4.556.556 1.895 1.634 2.627 1.566 3.946-.036.692.034 1.302.433 1.296.048.363 0 .735.094.781z"/><path fill="#AAB8C2" d="M29.555 29.5c.5-2.734.422-6.5.422-6.5h-7.963s-.078 3.766.422 6.5c.063.344.188 3.344-.109 5.5-.066.479 2.886.937 2.844-.125-.078-1.969.264-3.513.328-4.5.035-.547.25-1.875.344-3.208.011-.018.295-.018.306 0 .094 1.333.308 2.661.344 3.208.064.987.406 2.531.328 4.5-.042 1.062 2.91.604 2.844.125-.297-2.156-.172-5.156-.11-5.5z"/><path fill="#292F33" d="M30.54 36c.499-.406-.041-1.161-1.42-1.402-1.163-.203-2.2-.032-2.363.35-.212.493-.05 1.052-.05 1.052h3.833zm-9.117 0c-.499-.406.041-1.161 1.42-1.402 1.163-.203 2.2-.032 2.363.35.212.494.05 1.053.05 1.053L21.423 36z"/><path fill="#4289C1" d="M30.797 14.766C29.578 14 28 14 28 14h-4s-1.578 0-2.797.766c-1.201.754-1.656 3-1.656 3l2.203.688.109 5.546h8.281l.109-5.547 2.203-.688c.001.001-.454-2.245-1.655-2.999z"/><path fill="#AF7E57" d="M24 10.042v4c0 .682.896 1.305 2 1.305s2-.668 2-1.305v-4h-4z"/><path fill="#9B6A49" d="M24 14.042c0 .682.896 1.305 2 1.305s2-.668 2-1.305V11l-4 .019v3.023z"/><path fill="#AF7E57" d="M31 3H21v6c0 2.762 2.238 5 5 5s5-2.237 5-5V3z"/><path fill="#60352A" d="M21 2.5L20.5 5l.5 2c2.333 0 2.85-2.412 2.965-3.488C24.004 4.588 24.779 7 31 7l.5-2-.5-2.5H21z"/><path fill="#915A34" d="M28 12h-4s0 1 2 1 2-1 2-1z"/><circle fill="#662113" cx="23.5" cy="8.5" r=".5"/><circle fill="#662113" cx="28.5" cy="8.5" r=".5"/><path fill="#915A34" d="M25 10h2s0 1-1 1-1-1-1-1z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f46b-1f3ff.svg b/public/emoji/1f46b-1f3ff.svg
new file mode 100644
index 0000000000000000000000000000000000000000..e0cb1e2bb950994aee5c21091ce2bef7256d5e53
--- /dev/null
+++ b/public/emoji/1f46b-1f3ff.svg
@@ -0,0 +1 @@
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#0B0200" d="M11 0C9.736 0 8.565.393 7.598 1.061 7.401 1.031 7.205 1 7 1 4.791 1 3 2.791 3 5v6c0 3.866 3.134 7 7 7s7-3.134 7-7V6.001C17 2.687 14.314 0 11 0z"/><path fill="#7C533E" d="M11.213 34.309c-.052.682 1.849.953 2.129.791.299-.173-.698-.623-.702-.977-.019-1.797.53-1.648.311-3.492.443-1.625.672-2.592.672-3.131 0-1.25-3.312-.766-3.312 0 0 .344.365 1.681.417 3.131-.313 1.659.641 1.615.485 3.678zm-2.448 0c.052.682-1.849.953-2.129.791-.299-.173.698-.623.702-.977.019-1.797-.53-1.648-.311-3.492-.443-1.625-.672-2.592-.672-3.131 0-1.25 3.313-.766 3.313 0 0 .344-.365 1.681-.417 3.131.311 1.659-.642 1.615-.486 3.678z"/><path fill="#664131" d="M10.311 27.5c0 .206.13.771.246 1.5h2.817c.164-.689.249-1.175.249-1.5 0-1.25-3.312-.766-3.312 0zm-3.957 0c0 .325.085.811.249 1.5H9.42c.116-.729.247-1.294.247-1.5 0-.766-3.313-1.25-3.313 0z"/><path fill="#7C533E" d="M3.258 26.96c-.258.124-.503-.097-.619-.227-.328-.367-.583-1.246-.282-2.209.303-.973.6-2.384 1.199-4.002.081-.22.499-3.764.805-4.445.197-.437 1.28-.896 1.81-.807.529.089.246.651.105 1.13 0 0-.916 3.953-1.016 4.296-.316 1.079-1.624 2.918-1.565 4.237.031.692.06 1.255-.339 1.246-.049.362-.003.735-.098.781zm14.984-.2c.271.091.487-.159.586-.302.279-.405.422-1.309.004-2.227-.423-.927-.894-2.29-1.69-3.821-.108-.208-.966-3.672-1.355-4.309-.25-.409-1.382-.729-1.897-.574-.513.154-.162.676.037 1.134 0 0 1.403 3.807 1.546 4.135.449 1.031 1.977 2.691 2.082 4.008.056.69.097 1.253.492 1.194.094.353.095.729.195.762z"/><path fill="#292F33" d="M13.945 36c.305 0 .372-.418.089-.629-.379-.285-.88-1.371-1.561-1.371h-1.245c-.229 0-.49 1.209-.41 1.48.102.345.433.52.812.52h2.315zm-7.913 0c-.305 0-.372-.418-.089-.629.379-.285.88-1.371 1.561-1.371h1.245c.229 0 .49 1.209.41 1.48-.102.345-.433.52-.811.52H6.032z"/><path fill="#E75A70" d="M14.354 17.771L16 16c-1.438-1.792-4-2-4-2H8s-2.562.208-4 2l1.646 1.771S6.25 20.688 6.25 21 5 25.75 5 28h10c0-2.25-1.25-6.688-1.25-7s.604-3.229.604-3.229z"/><path fill="#DA2F47" d="M13.75 21c0-.106.07-.512.161-1H6.089c.092.488.161.894.161 1 0 .083-.122.509-.223 1h7.942c-.108-.558-.219-.917-.219-1z"/><path fill="#7C533E" d="M8 11v4c0 1.104.896 2 2 2s2-.896 2-2v-4H8z"/><path fill="#664131" d="M12 11l-4 .019V15s2 1 4 0v-4z"/><path fill="#7C533E" d="M15 3H5v6c0 2.762 2.238 5 5 5s5-2.237 5-5V3z"/><path fill="#0B0200" d="M15 2H5L4 7c4 0 4-4 4-4s0 4 8 4l-1-5z"/><path fill="#DF1F32" d="M12 12H8s0 1 2 1 2-1 2-1z"/><circle cx="7.5" cy="8.5" r=".5"/><circle cx="12.5" cy="8.5" r=".5"/><path fill="#3D2E24" d="M9 10h2s0 1-1 1-1-1-1-1z"/><path fill="#0B0200" d="M26.5 0c-1.187 0-2.282.379-3.181 1.018C21.473 1.114 20 2.629 20 4.5c0 1.542.007 3.484 2.038 4.208C23.036 10.094 24.66 11 26.5 11c3.037 0 5.5-2.462 5.5-5.499C32 2.463 29.537 0 26.5 0z"/><path fill="#7C533E" d="M18.117 26.76c-.271.091-.487-.159-.586-.302-.279-.405-.422-1.309-.004-2.227.423-.927.702-2.072 1.69-3.821.115-.204.494-2.746 1.242-4.354.202-.435 1.495-.684 2.009-.529.513.154-.005.98-.037 1.134-.344 1.651-1.305 4.077-1.45 4.404-.8 1.806-1.965 2.389-2.071 3.706-.055.69-.205 1.286-.6 1.228-.092.352-.094.728-.193.761zm14.595.204c.257.126.504-.094.62-.222.33-.365.591-1.242.296-2.208-.297-.975-.424-2.146-1.174-4.01-.087-.217-.129-2.787-.66-4.479-.143-.457-1.392-.875-1.922-.789-.529.086-.124.972-.112 1.129.124 1.682.758 4.213.859 4.556.556 1.895 1.634 2.627 1.566 3.946-.036.692.034 1.302.433 1.296.048.363 0 .735.094.781z"/><path fill="#AAB8C2" d="M29.555 29.5c.5-2.734.422-6.5.422-6.5h-7.963s-.078 3.766.422 6.5c.063.344.188 3.344-.109 5.5-.066.479 2.886.937 2.844-.125-.078-1.969.264-3.513.328-4.5.035-.547.25-1.875.344-3.208.011-.018.295-.018.306 0 .094 1.333.308 2.661.344 3.208.064.987.406 2.531.328 4.5-.042 1.062 2.91.604 2.844.125-.297-2.156-.172-5.156-.11-5.5z"/><path fill="#292F33" d="M30.54 36c.499-.406-.041-1.161-1.42-1.402-1.163-.203-2.2-.032-2.363.35-.212.493-.05 1.052-.05 1.052h3.833zm-9.117 0c-.499-.406.041-1.161 1.42-1.402 1.163-.203 2.2-.032 2.363.35.212.494.05 1.053.05 1.053L21.423 36z"/><path fill="#4289C1" d="M30.797 14.766C29.578 14 28 14 28 14h-4s-1.578 0-2.797.766c-1.201.754-1.656 3-1.656 3l2.203.688.109 5.546h8.281l.109-5.547 2.203-.688c.001.001-.454-2.245-1.655-2.999z"/><path fill="#7C533E" d="M24 10.042v4c0 .682.896 1.305 2 1.305s2-.668 2-1.305v-4h-4z"/><path fill="#664131" d="M24 14.042c0 .682.896 1.305 2 1.305s2-.668 2-1.305V11l-4 .019v3.023z"/><path fill="#7C533E" d="M31 3H21v6c0 2.762 2.238 5 5 5s5-2.237 5-5V3z"/><path fill="#0B0200" d="M21 2.5L20.5 5l.5 2c2.333 0 2.85-2.412 2.965-3.488C24.004 4.588 24.779 7 31 7l.5-2-.5-2.5H21z"/><path fill="#3D2E24" d="M28 12h-4s0 1 2 1 2-1 2-1z"/><circle cx="23.5" cy="8.5" r=".5"/><circle cx="28.5" cy="8.5" r=".5"/><path fill="#3D2E24" d="M25 10h2s0 1-1 1-1-1-1-1z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f46b.svg b/public/emoji/1f46b.svg
index 3877f5cd933e01c0223d883e7908732a05ea288b..f7e46f21075a743cffabce365853b40a14e5c054 100644
--- a/public/emoji/1f46b.svg
+++ b/public/emoji/1f46b.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#FFAC33" d="M11 0C9.736 0 8.565.393 7.598 1.061 7.401 1.031 7.205 1 7 1 4.791 1 3 2.791 3 5v6c0 3.866 3.134 7 7 7s7-3.134 7-7V6.001C17 2.687 14.314 0 11 0z"/><path fill="#FFDC5D" d="M6 27h3v8H6zm5 0h3v8h-3z"/><path fill="#F9CA55" d="M6 27h3v1H6zm5 0h3v1h-3z"/><path fill="#292F33" d="M5 36v-1s0-1 2-1 2 1 2 1v1H5zm6 0v-1s0-1 2-1 2 1 2 1v1h-4z"/><path fill="#FFDC5D" d="M.999 26c-.164 0-.331-.04-.485-.126-.482-.269-.657-.877-.388-1.359l5-9c.268-.483.876-.657 1.36-.388.482.268.657.877.388 1.36l-5 9c-.183.328-.523.513-.875.513zm18.002 0c-.352 0-.692-.185-.875-.515l-5-9c-.269-.483-.094-1.092.388-1.36.483-.269 1.092-.094 1.36.388l5 9c.269.483.095 1.091-.389 1.359-.153.088-.32.128-.484.128z"/><path fill="#E75A70" d="M4 27h12l-2-6v-4h2v-1c0-1.104-.896-2-2-2H6c-1.104 0-2 .896-2 2v1h2v4l-2 6z"/><path fill="#DA2F47" d="M6 19h8v2H6z"/><path fill="#FFDC5D" d="M8 11v4c0 1.104.896 2 2 2s2-.896 2-2v-4H8z"/><path fill="#F9CA55" d="M12 11l-4 .019V15s2 1 4 0v-4z"/><path fill="#FFDC5D" d="M15 3H5v6c0 2.762 2.238 5 5 5s5-2.237 5-5V3z"/><path fill="#FFAC33" d="M8 3s0 4 8 4V3H8zm0 0s0 4-4 4V3h4z"/><path fill="#DF1F32" d="M12 12H8s0 1 2 1 2-1 2-1z"/><circle fill="#662113" cx="7.5" cy="8.5" r=".5"/><circle fill="#662113" cx="12.5" cy="8.5" r=".5"/><path fill="#C1694F" d="M9 10h2s0 1-1 1-1-1-1-1z"/><path fill="#FFAC33" d="M26.5 0c-1.187 0-2.282.379-3.181 1.018C21.473 1.114 20 2.629 20 4.5c0 1.542.007 3.484 2.038 4.208C23.036 10.094 24.66 11 26.5 11c3.037 0 5.5-2.462 5.5-5.499C32 2.463 29.537 0 26.5 0z"/><path fill="#AAB8C2" d="M27 23h-5v12h3v-8h2v8h3V23z"/><path fill="#292F33" d="M21 36v-1s0-1 2-1 2 1 2 1v1h-4zm6 0v-1s0-1 2-1 2 1 2 1v1h-4z"/><path fill="#FFDC5D" d="M16.999 26c-.164 0-.331-.04-.485-.126-.483-.269-.657-.877-.388-1.359l5-9c.268-.483.878-.657 1.359-.388.483.268.657.877.389 1.36l-5 9c-.183.328-.523.513-.875.513zm18.002 0c-.352 0-.692-.185-.875-.515l-5-9c-.269-.483-.095-1.092.389-1.36.483-.269 1.092-.094 1.359.388l5 9c.269.483.095 1.091-.389 1.359-.153.088-.32.128-.484.128z"/><path fill="#4289C1" d="M32 16c0-1.104-.896-2-2-2h-8c-1.104 0-2 .896-2 2v1h2v7h8v-7h2v-1z"/><path fill="#FFDC5D" d="M24 11v4c0 1.104.896 2 2 2s2-.896 2-2v-4h-4z"/><path fill="#F9CA55" d="M28 11l-4 .019V15s2 1 4 0v-4z"/><path fill="#FFDC5D" d="M31 3H21v6c0 2.762 2.238 5 5 5s5-2.237 5-5V3z"/><path fill="#FFAC33" d="M24 3h-3v4c2.333 0 2.85-2.412 2.965-3.488C24.004 4.588 24.779 7 31 7V3h-7z"/><path fill="#C1694F" d="M28 12h-4s0 1 2 1 2-1 2-1z"/><circle fill="#662113" cx="23.5" cy="8.5" r=".5"/><circle fill="#662113" cx="28.5" cy="8.5" r=".5"/><path fill="#C1694F" d="M25 10h2s0 1-1 1-1-1-1-1z"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#FFAC33" d="M11 0C9.736 0 8.565.393 7.598 1.061 7.401 1.031 7.205 1 7 1 4.791 1 3 2.791 3 5v6c0 3.866 3.134 7 7 7s7-3.134 7-7V6.001C17 2.687 14.314 0 11 0z"/><path fill="#FFDC5D" d="M11.213 34.309c-.052.682 1.849.953 2.129.791.299-.173-.698-.623-.702-.977-.019-1.797.53-1.648.311-3.492.443-1.625.672-2.592.672-3.131 0-1.25-3.312-.766-3.312 0 0 .344.365 1.681.417 3.131-.313 1.659.641 1.615.485 3.678zm-2.448 0c.052.682-1.849.953-2.129.791-.299-.173.698-.623.702-.977.019-1.797-.53-1.648-.311-3.492-.443-1.625-.672-2.592-.672-3.131 0-1.25 3.313-.766 3.313 0 0 .344-.365 1.681-.417 3.131.311 1.659-.642 1.615-.486 3.678z"/><path fill="#F9CA55" d="M10.311 27.5c0 .206.13.771.246 1.5h2.817c.164-.689.249-1.175.249-1.5 0-1.25-3.312-.766-3.312 0zm-3.957 0c0 .325.085.811.249 1.5H9.42c.116-.729.247-1.294.247-1.5 0-.766-3.313-1.25-3.313 0z"/><path fill="#FFDC5D" d="M3.258 26.96c-.258.124-.503-.097-.619-.227-.328-.367-.583-1.246-.282-2.209.303-.973.6-2.384 1.199-4.002.081-.22.499-3.764.805-4.445.197-.437 1.28-.896 1.81-.807.529.089.246.651.105 1.13 0 0-.916 3.953-1.016 4.296-.316 1.079-1.624 2.918-1.565 4.237.031.692.06 1.255-.339 1.246-.049.362-.003.735-.098.781zm14.984-.2c.271.091.487-.159.586-.302.279-.405.422-1.309.004-2.227-.423-.927-.894-2.29-1.69-3.821-.108-.208-.966-3.672-1.355-4.309-.25-.409-1.382-.729-1.897-.574-.513.154-.162.676.037 1.134 0 0 1.403 3.807 1.546 4.135.449 1.031 1.977 2.691 2.082 4.008.056.69.097 1.253.492 1.194.094.353.095.729.195.762z"/><path fill="#292F33" d="M13.945 36c.305 0 .372-.418.089-.629-.379-.285-.88-1.371-1.561-1.371h-1.245c-.229 0-.49 1.209-.41 1.48.102.345.433.52.812.52h2.315zm-7.913 0c-.305 0-.372-.418-.089-.629.379-.285.88-1.371 1.561-1.371h1.245c.229 0 .49 1.209.41 1.48-.102.345-.433.52-.811.52H6.032z"/><path fill="#E75A70" d="M14.354 17.771L16 16c-1.438-1.792-4-2-4-2H8s-2.562.208-4 2l1.646 1.771S6.25 20.688 6.25 21 5 25.75 5 28h10c0-2.25-1.25-6.688-1.25-7s.604-3.229.604-3.229z"/><path fill="#DA2F47" d="M13.75 21c0-.106.07-.512.161-1H6.089c.092.488.161.894.161 1 0 .083-.122.509-.223 1h7.942c-.108-.558-.219-.917-.219-1z"/><path fill="#FFDC5D" d="M8 11v4c0 1.104.896 2 2 2s2-.896 2-2v-4H8z"/><path fill="#F9CA55" d="M12 11l-4 .019V15s2 1 4 0v-4z"/><path fill="#FFDC5D" d="M15 3H5v6c0 2.762 2.238 5 5 5s5-2.237 5-5V3z"/><path fill="#FFAC33" d="M15 2H5L4 7c4 0 4-4 4-4s0 4 8 4l-1-5z"/><path fill="#DF1F32" d="M12 12H8s0 1 2 1 2-1 2-1z"/><circle fill="#662113" cx="7.5" cy="8.5" r=".5"/><circle fill="#662113" cx="12.5" cy="8.5" r=".5"/><path fill="#C1694F" d="M9 10h2s0 1-1 1-1-1-1-1z"/><path fill="#FFAC33" d="M26.5 0c-1.187 0-2.282.379-3.181 1.018C21.473 1.114 20 2.629 20 4.5c0 1.542.007 3.484 2.038 4.208C23.036 10.094 24.66 11 26.5 11c3.037 0 5.5-2.462 5.5-5.499C32 2.463 29.537 0 26.5 0z"/><path fill="#FFDC5D" d="M18.117 26.76c-.271.091-.487-.159-.586-.302-.279-.405-.422-1.309-.004-2.227.423-.927.702-2.072 1.69-3.821.115-.204.494-2.746 1.242-4.354.202-.435 1.495-.684 2.009-.529.513.154-.005.98-.037 1.134-.344 1.651-1.305 4.077-1.45 4.404-.8 1.806-1.965 2.389-2.071 3.706-.055.69-.205 1.286-.6 1.228-.092.352-.094.728-.193.761zm14.595.204c.257.126.504-.094.62-.222.33-.365.591-1.242.296-2.208-.297-.975-.424-2.146-1.174-4.01-.087-.217-.129-2.787-.66-4.479-.143-.457-1.392-.875-1.922-.789-.529.086-.124.972-.112 1.129.124 1.682.758 4.213.859 4.556.556 1.895 1.634 2.627 1.566 3.946-.036.692.034 1.302.433 1.296.048.363 0 .735.094.781z"/><path fill="#AAB8C2" d="M29.555 29.5c.5-2.734.422-6.5.422-6.5h-7.963s-.078 3.766.422 6.5c.063.344.188 3.344-.109 5.5-.066.479 2.886.937 2.844-.125-.078-1.969.264-3.513.328-4.5.035-.547.25-1.875.344-3.208.011-.018.295-.018.306 0 .094 1.333.308 2.661.344 3.208.064.987.406 2.531.328 4.5-.042 1.062 2.91.604 2.844.125-.297-2.156-.172-5.156-.11-5.5z"/><path fill="#292F33" d="M30.54 36c.499-.406-.041-1.161-1.42-1.402-1.163-.203-2.2-.032-2.363.35-.212.493-.05 1.052-.05 1.052h3.833zm-9.117 0c-.499-.406.041-1.161 1.42-1.402 1.163-.203 2.2-.032 2.363.35.212.494.05 1.053.05 1.053L21.423 36z"/><path fill="#4289C1" d="M30.797 14.766C29.578 14 28 14 28 14h-4s-1.578 0-2.797.766c-1.201.754-1.656 3-1.656 3l2.203.688.109 5.546h8.281l.109-5.547 2.203-.688c.001.001-.454-2.245-1.655-2.999z"/><path fill="#FFDC5D" d="M24 10.042v4c0 .682.896 1.305 2 1.305s2-.668 2-1.305v-4h-4z"/><path fill="#F9CA55" d="M24 14.042c0 .682.896 1.305 2 1.305s2-.668 2-1.305V11l-4 .019v3.023z"/><path fill="#FFDC5D" d="M31 3H21v6c0 2.762 2.238 5 5 5s5-2.237 5-5V3z"/><path fill="#FFAC33" d="M21 2.5L20.5 5l.5 2c2.333 0 2.85-2.412 2.965-3.488C24.004 4.588 24.779 7 31 7l.5-2-.5-2.5H21z"/><path fill="#C1694F" d="M28 12h-4s0 1 2 1 2-1 2-1z"/><circle fill="#662113" cx="23.5" cy="8.5" r=".5"/><circle fill="#662113" cx="28.5" cy="8.5" r=".5"/><path fill="#C1694F" d="M25 10h2s0 1-1 1-1-1-1-1z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f46c-1f3fb.svg b/public/emoji/1f46c-1f3fb.svg
new file mode 100644
index 0000000000000000000000000000000000000000..18c40167f1707cc7df5501a9f730decda5df0e89
--- /dev/null
+++ b/public/emoji/1f46c-1f3fb.svg
@@ -0,0 +1 @@
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#292F33" d="M10.498 0c-1.186 0-2.282.379-3.18 1.018-1.847.096-3.32 1.611-3.32 3.482 0 1.542.007 3.484 2.038 4.208C7.035 10.094 8.659 11 10.498 11c3.037 0 5.5-2.462 5.5-5.499 0-3.038-2.462-5.501-5.5-5.501z"/><path fill="#F7DECE" d="M17.896 26.76c.271.091.487-.159.586-.302.279-.405.422-1.309.004-2.227-.423-.927-.702-2.072-1.69-3.821-.115-.204-.494-2.746-1.242-4.354-.202-.435-1.495-.684-2.009-.529-.513.154.005.98.037 1.134.344 1.651 1.305 4.077 1.45 4.404.8 1.806 1.965 2.389 2.071 3.706.055.69.205 1.286.6 1.228.092.352.093.728.193.761zM3.3 26.964c-.257.126-.504-.094-.62-.222-.33-.365-.591-1.242-.296-2.208.297-.975.424-2.146 1.174-4.01.087-.217.129-2.787.66-4.479.143-.457 1.392-.875 1.922-.789.529.086.124.972.112 1.129-.124 1.682-.758 4.213-.859 4.556-.556 1.895-1.634 2.627-1.566 3.946.036.692-.034 1.302-.433 1.296-.048.363 0 .735-.094.781z"/><path fill="#AAB8C2" d="M13.554 29.5c.5-2.734.422-6.5.422-6.5H6.013s-.078 3.766.422 6.5c.063.344.188 3.344-.109 5.5-.066.479 2.886.937 2.844-.125-.078-1.969.264-3.513.328-4.5.035-.547.25-1.875.344-3.208.011-.018.295-.018.306 0 .094 1.333.308 2.661.344 3.208.064.987.406 2.531.328 4.5-.042 1.062 2.91.604 2.844.125-.298-2.156-.173-5.156-.11-5.5z"/><path fill="#292F33" d="M14.538 36c.499-.406-.041-1.161-1.42-1.402-1.163-.203-2.2-.032-2.363.35-.212.493-.05 1.052-.05 1.052h3.833zm-9.117 0c-.499-.406.041-1.161 1.42-1.402 1.163-.203 2.2-.032 2.363.35.212.493.05 1.052.05 1.052H5.421z"/><path fill="#4289C1" d="M14.795 14.766C13.577 14 11.998 14 11.998 14h-4s-1.578 0-2.797.766c-1.201.754-1.656 3-1.656 3l2.203.688.11 5.546h8.281l.109-5.547 2.203-.688c.001.001-.455-2.245-1.656-2.999z"/><path fill="#F7DECE" d="M7.998 10.042v4c0 .682.896 1.305 2 1.305s2-.668 2-1.305v-4h-4z"/><path fill="#EEC2AD" d="M7.998 14.042c0 .682.896 1.305 2 1.305s2-.668 2-1.305V11l-4 .019v3.023z"/><path fill="#F7DECE" d="M14.998 3h-10v6c0 2.762 2.238 5 5 5s5-2.237 5-5V3z"/><path fill="#292F33" d="M4.998 2.5l-.5 2.5.5 2c2.333 0 2.85-2.412 2.965-3.488C8.002 4.588 8.778 7 14.998 7l.5-2-.5-2.5h-10z"/><path fill="#C1694F" d="M11.998 12h-4s0 1 2 1 2-1 2-1z"/><circle fill="#662113" cx="7.498" cy="8.5" r=".5"/><circle fill="#662113" cx="12.498" cy="8.5" r=".5"/><path fill="#C1694F" d="M8.998 10h2s0 1-1 1-1-1-1-1z"/><path fill="#292F33" d="M26.5 0c-1.187 0-2.282.379-3.181 1.018C21.473 1.114 20 2.629 20 4.5c0 1.542.007 3.484 2.038 4.208C23.036 10.094 24.66 11 26.5 11c3.037 0 5.5-2.462 5.5-5.499C32 2.463 29.537 0 26.5 0z"/><path fill="#F7DECE" d="M18.117 26.76c-.271.091-.487-.159-.586-.302-.279-.405-.422-1.309-.004-2.227.423-.927.702-2.072 1.69-3.821.115-.204.494-2.746 1.242-4.354.202-.435 1.495-.684 2.009-.529.513.154-.005.98-.037 1.134-.344 1.651-1.305 4.077-1.45 4.404-.8 1.806-1.965 2.389-2.071 3.706-.055.69-.205 1.286-.6 1.228-.092.352-.094.728-.193.761zm14.595.204c.257.126.504-.094.62-.222.33-.365.591-1.242.296-2.208-.297-.975-.424-2.146-1.174-4.01-.087-.217-.129-2.787-.66-4.479-.143-.457-1.392-.875-1.922-.789-.529.086-.124.972-.112 1.129.124 1.682.758 4.213.859 4.556.556 1.895 1.634 2.627 1.566 3.946-.036.692.034 1.302.433 1.296.048.363 0 .735.094.781z"/><path fill="#F7DECE" d="M18.117 26.76c-.271.091-.487-.159-.586-.302-.279-.405-.422-1.309-.004-2.227.423-.927.702-2.072 1.69-3.821.115-.204.494-2.746 1.242-4.354.202-.435 1.495-.684 2.009-.529.513.154-.005.98-.037 1.134-.344 1.651-1.305 4.077-1.45 4.404-.8 1.806-1.965 2.389-2.071 3.706-.055.69-.205 1.286-.6 1.228-.092.352-.094.728-.193.761zm14.595.204c.257.126.504-.094.62-.222.33-.365.591-1.242.296-2.208-.297-.975-.424-2.146-1.174-4.01-.087-.217-.129-2.787-.66-4.479-.143-.457-1.392-.875-1.922-.789-.529.086-.124.972-.112 1.129.124 1.682.758 4.213.859 4.556.556 1.895 1.634 2.627 1.566 3.946-.036.692.034 1.302.433 1.296.048.363 0 .735.094.781z"/><path fill="#67757F" d="M29.555 29.5c.5-2.734.422-6.5.422-6.5h-7.963s-.078 3.766.422 6.5c.063.344.188 3.344-.109 5.5-.066.479 2.886.937 2.844-.125-.078-1.969.264-3.513.328-4.5.035-.547.25-1.875.344-3.208.011-.018.295-.018.306 0 .094 1.333.308 2.661.344 3.208.064.987.406 2.531.328 4.5-.042 1.062 2.91.604 2.844.125-.297-2.156-.172-5.156-.11-5.5z"/><path fill="#292F33" d="M30.54 36c.499-.406-.041-1.161-1.42-1.402-1.163-.203-2.2-.032-2.363.35-.212.493-.05 1.052-.05 1.052h3.833zm-9.117 0c-.499-.406.041-1.161 1.42-1.402 1.163-.203 2.2-.032 2.363.35.212.494.05 1.053.05 1.053L21.423 36z"/><path fill="#78B159" d="M30.797 14.766C29.578 14 28 14 28 14h-4s-1.578 0-2.797.766c-1.201.754-1.656 3-1.656 3l2.203.688.109 5.546h8.281l.109-5.547 2.203-.688c.001.001-.454-2.245-1.655-2.999z"/><path fill="#F7DECE" d="M24 10.042v4c0 .682.896 1.305 2 1.305s2-.668 2-1.305v-4h-4z"/><path fill="#EEC2AD" d="M24 14.042c0 .682.896 1.305 2 1.305s2-.668 2-1.305V11l-4 .019v3.023z"/><path fill="#F7DECE" d="M31 3H21v6c0 2.762 2.238 5 5 5s5-2.237 5-5V3z"/><path fill="#292F33" d="M21 2.5L20.5 5l.5 2c2.333 0 2.85-2.412 2.965-3.488C24.004 4.588 24.779 7 31 7l.5-2-.5-2.5H21z"/><path fill="#C1694F" d="M28 12h-4s0 1 2 1 2-1 2-1z"/><circle fill="#662113" cx="23.5" cy="8.5" r=".5"/><circle fill="#662113" cx="28.5" cy="8.5" r=".5"/><path fill="#C1694F" d="M25 10h2s0 1-1 1-1-1-1-1z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f46c-1f3fc.svg b/public/emoji/1f46c-1f3fc.svg
new file mode 100644
index 0000000000000000000000000000000000000000..c7665eaf9af9edf73e1997eeec6c5ed4239c36f1
--- /dev/null
+++ b/public/emoji/1f46c-1f3fc.svg
@@ -0,0 +1 @@
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#FFE51E" d="M10.498 0c-1.186 0-2.282.379-3.18 1.018-1.847.096-3.32 1.611-3.32 3.482 0 1.542.007 3.484 2.038 4.208C7.035 10.094 8.659 11 10.498 11c3.037 0 5.5-2.462 5.5-5.499 0-3.038-2.462-5.501-5.5-5.501z"/><path fill="#F3D2A2" d="M17.896 26.76c.271.091.487-.159.586-.302.279-.405.422-1.309.004-2.227-.423-.927-.702-2.072-1.69-3.821-.115-.204-.494-2.746-1.242-4.354-.202-.435-1.495-.684-2.009-.529-.513.154.005.98.037 1.134.344 1.651 1.305 4.077 1.45 4.404.8 1.806 1.965 2.389 2.071 3.706.055.69.205 1.286.6 1.228.092.352.093.728.193.761zM3.3 26.964c-.257.126-.504-.094-.62-.222-.33-.365-.591-1.242-.296-2.208.297-.975.424-2.146 1.174-4.01.087-.217.129-2.787.66-4.479.143-.457 1.392-.875 1.922-.789.529.086.124.972.112 1.129-.124 1.682-.758 4.213-.859 4.556-.556 1.895-1.634 2.627-1.566 3.946.036.692-.034 1.302-.433 1.296-.048.363 0 .735-.094.781z"/><path fill="#AAB8C2" d="M13.554 29.5c.5-2.734.422-6.5.422-6.5H6.013s-.078 3.766.422 6.5c.063.344.188 3.344-.109 5.5-.066.479 2.886.937 2.844-.125-.078-1.969.264-3.513.328-4.5.035-.547.25-1.875.344-3.208.011-.018.295-.018.306 0 .094 1.333.308 2.661.344 3.208.064.987.406 2.531.328 4.5-.042 1.062 2.91.604 2.844.125-.298-2.156-.173-5.156-.11-5.5z"/><path fill="#292F33" d="M14.538 36c.499-.406-.041-1.161-1.42-1.402-1.163-.203-2.2-.032-2.363.35-.212.493-.05 1.052-.05 1.052h3.833zm-9.117 0c-.499-.406.041-1.161 1.42-1.402 1.163-.203 2.2-.032 2.363.35.212.493.05 1.052.05 1.052H5.421z"/><path fill="#4289C1" d="M14.795 14.766C13.577 14 11.998 14 11.998 14h-4s-1.578 0-2.797.766c-1.201.754-1.656 3-1.656 3l2.203.688.11 5.546h8.281l.109-5.547 2.203-.688c.001.001-.455-2.245-1.656-2.999z"/><path fill="#F3D2A2" d="M7.998 10.042v4c0 .682.896 1.305 2 1.305s2-.668 2-1.305v-4h-4z"/><path fill="#E2C196" d="M7.998 14.042c0 .682.896 1.305 2 1.305s2-.668 2-1.305V11l-4 .019v3.023z"/><path fill="#F3D2A2" d="M14.998 3h-10v6c0 2.762 2.238 5 5 5s5-2.237 5-5V3z"/><path fill="#FFE51E" d="M4.998 2.5l-.5 2.5.5 2c2.333 0 2.85-2.412 2.965-3.488C8.002 4.588 8.778 7 14.998 7l.5-2-.5-2.5h-10z"/><path fill="#C1694F" d="M11.998 12h-4s0 1 2 1 2-1 2-1z"/><circle fill="#662113" cx="7.498" cy="8.5" r=".5"/><circle fill="#662113" cx="12.498" cy="8.5" r=".5"/><path fill="#C1694F" d="M8.998 10h2s0 1-1 1-1-1-1-1z"/><path fill="#FFE51E" d="M26.5 0c-1.187 0-2.282.379-3.181 1.018C21.473 1.114 20 2.629 20 4.5c0 1.542.007 3.484 2.038 4.208C23.036 10.094 24.66 11 26.5 11c3.037 0 5.5-2.462 5.5-5.499C32 2.463 29.537 0 26.5 0z"/><path fill="#F3D2A2" d="M18.117 26.76c-.271.091-.487-.159-.586-.302-.279-.405-.422-1.309-.004-2.227.423-.927.702-2.072 1.69-3.821.115-.204.494-2.746 1.242-4.354.202-.435 1.495-.684 2.009-.529.513.154-.005.98-.037 1.134-.344 1.651-1.305 4.077-1.45 4.404-.8 1.806-1.965 2.389-2.071 3.706-.055.69-.205 1.286-.6 1.228-.092.352-.094.728-.193.761zm14.595.204c.257.126.504-.094.62-.222.33-.365.591-1.242.296-2.208-.297-.975-.424-2.146-1.174-4.01-.087-.217-.129-2.787-.66-4.479-.143-.457-1.392-.875-1.922-.789-.529.086-.124.972-.112 1.129.124 1.682.758 4.213.859 4.556.556 1.895 1.634 2.627 1.566 3.946-.036.692.034 1.302.433 1.296.048.363 0 .735.094.781z"/><path fill="#F3D2A2" d="M18.117 26.76c-.271.091-.487-.159-.586-.302-.279-.405-.422-1.309-.004-2.227.423-.927.702-2.072 1.69-3.821.115-.204.494-2.746 1.242-4.354.202-.435 1.495-.684 2.009-.529.513.154-.005.98-.037 1.134-.344 1.651-1.305 4.077-1.45 4.404-.8 1.806-1.965 2.389-2.071 3.706-.055.69-.205 1.286-.6 1.228-.092.352-.094.728-.193.761zm14.595.204c.257.126.504-.094.62-.222.33-.365.591-1.242.296-2.208-.297-.975-.424-2.146-1.174-4.01-.087-.217-.129-2.787-.66-4.479-.143-.457-1.392-.875-1.922-.789-.529.086-.124.972-.112 1.129.124 1.682.758 4.213.859 4.556.556 1.895 1.634 2.627 1.566 3.946-.036.692.034 1.302.433 1.296.048.363 0 .735.094.781z"/><path fill="#67757F" d="M29.555 29.5c.5-2.734.422-6.5.422-6.5h-7.963s-.078 3.766.422 6.5c.063.344.188 3.344-.109 5.5-.066.479 2.886.937 2.844-.125-.078-1.969.264-3.513.328-4.5.035-.547.25-1.875.344-3.208.011-.018.295-.018.306 0 .094 1.333.308 2.661.344 3.208.064.987.406 2.531.328 4.5-.042 1.062 2.91.604 2.844.125-.297-2.156-.172-5.156-.11-5.5z"/><path fill="#292F33" d="M30.54 36c.499-.406-.041-1.161-1.42-1.402-1.163-.203-2.2-.032-2.363.35-.212.493-.05 1.052-.05 1.052h3.833zm-9.117 0c-.499-.406.041-1.161 1.42-1.402 1.163-.203 2.2-.032 2.363.35.212.494.05 1.053.05 1.053L21.423 36z"/><path fill="#78B159" d="M30.797 14.766C29.578 14 28 14 28 14h-4s-1.578 0-2.797.766c-1.201.754-1.656 3-1.656 3l2.203.688.109 5.546h8.281l.109-5.547 2.203-.688c.001.001-.454-2.245-1.655-2.999z"/><path fill="#F3D2A2" d="M24 10.042v4c0 .682.896 1.305 2 1.305s2-.668 2-1.305v-4h-4z"/><path fill="#E2C196" d="M24 14.042c0 .682.896 1.305 2 1.305s2-.668 2-1.305V11l-4 .019v3.023z"/><path fill="#F3D2A2" d="M31 3H21v6c0 2.762 2.238 5 5 5s5-2.237 5-5V3z"/><path fill="#FFE51E" d="M21 2.5L20.5 5l.5 2c2.333 0 2.85-2.412 2.965-3.488C24.004 4.588 24.779 7 31 7l.5-2-.5-2.5H21z"/><path fill="#C1694F" d="M28 12h-4s0 1 2 1 2-1 2-1z"/><circle fill="#662113" cx="23.5" cy="8.5" r=".5"/><circle fill="#662113" cx="28.5" cy="8.5" r=".5"/><path fill="#C1694F" d="M25 10h2s0 1-1 1-1-1-1-1z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f46c-1f3fd.svg b/public/emoji/1f46c-1f3fd.svg
new file mode 100644
index 0000000000000000000000000000000000000000..adf95058f4c05afa875cb90199c8ed42ded4e4ba
--- /dev/null
+++ b/public/emoji/1f46c-1f3fd.svg
@@ -0,0 +1 @@
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#963B22" d="M10.498 0c-1.186 0-2.282.379-3.18 1.018-1.847.096-3.32 1.611-3.32 3.482 0 1.542.007 3.484 2.038 4.208C7.035 10.094 8.659 11 10.498 11c3.037 0 5.5-2.462 5.5-5.499 0-3.038-2.462-5.501-5.5-5.501z"/><path fill="#D4AB88" d="M17.896 26.76c.271.091.487-.159.586-.302.279-.405.422-1.309.004-2.227-.423-.927-.702-2.072-1.69-3.821-.115-.204-.494-2.746-1.242-4.354-.202-.435-1.495-.684-2.009-.529-.513.154.005.98.037 1.134.344 1.651 1.305 4.077 1.45 4.404.8 1.806 1.965 2.389 2.071 3.706.055.69.205 1.286.6 1.228.092.352.093.728.193.761zM3.3 26.964c-.257.126-.504-.094-.62-.222-.33-.365-.591-1.242-.296-2.208.297-.975.424-2.146 1.174-4.01.087-.217.129-2.787.66-4.479.143-.457 1.392-.875 1.922-.789.529.086.124.972.112 1.129-.124 1.682-.758 4.213-.859 4.556-.556 1.895-1.634 2.627-1.566 3.946.036.692-.034 1.302-.433 1.296-.048.363 0 .735-.094.781z"/><path fill="#AAB8C2" d="M13.554 29.5c.5-2.734.422-6.5.422-6.5H6.013s-.078 3.766.422 6.5c.063.344.188 3.344-.109 5.5-.066.479 2.886.937 2.844-.125-.078-1.969.264-3.513.328-4.5.035-.547.25-1.875.344-3.208.011-.018.295-.018.306 0 .094 1.333.308 2.661.344 3.208.064.987.406 2.531.328 4.5-.042 1.062 2.91.604 2.844.125-.298-2.156-.173-5.156-.11-5.5z"/><path fill="#292F33" d="M14.538 36c.499-.406-.041-1.161-1.42-1.402-1.163-.203-2.2-.032-2.363.35-.212.493-.05 1.052-.05 1.052h3.833zm-9.117 0c-.499-.406.041-1.161 1.42-1.402 1.163-.203 2.2-.032 2.363.35.212.493.05 1.052.05 1.052H5.421z"/><path fill="#4289C1" d="M14.795 14.766C13.577 14 11.998 14 11.998 14h-4s-1.578 0-2.797.766c-1.201.754-1.656 3-1.656 3l2.203.688.11 5.546h8.281l.109-5.547 2.203-.688c.001.001-.455-2.245-1.656-2.999z"/><path fill="#D4AB88" d="M7.998 10.042v4c0 .682.896 1.305 2 1.305s2-.668 2-1.305v-4h-4z"/><path fill="#CC9B7A" d="M7.998 14.042c0 .682.896 1.305 2 1.305s2-.668 2-1.305V11l-4 .019v3.023z"/><path fill="#D4AB88" d="M14.998 3h-10v6c0 2.762 2.238 5 5 5s5-2.237 5-5V3z"/><path fill="#963B22" d="M4.998 2.5l-.5 2.5.5 2c2.333 0 2.85-2.412 2.965-3.488C8.002 4.588 8.778 7 14.998 7l.5-2-.5-2.5h-10z"/><path fill="#C1694F" d="M11.998 12h-4s0 1 2 1 2-1 2-1z"/><circle fill="#662113" cx="7.498" cy="8.5" r=".5"/><circle fill="#662113" cx="12.498" cy="8.5" r=".5"/><path fill="#C1694F" d="M8.998 10h2s0 1-1 1-1-1-1-1z"/><path fill="#963B22" d="M26.5 0c-1.187 0-2.282.379-3.181 1.018C21.473 1.114 20 2.629 20 4.5c0 1.542.007 3.484 2.038 4.208C23.036 10.094 24.66 11 26.5 11c3.037 0 5.5-2.462 5.5-5.499C32 2.463 29.537 0 26.5 0z"/><path fill="#D4AB88" d="M18.117 26.76c-.271.091-.487-.159-.586-.302-.279-.405-.422-1.309-.004-2.227.423-.927.702-2.072 1.69-3.821.115-.204.494-2.746 1.242-4.354.202-.435 1.495-.684 2.009-.529.513.154-.005.98-.037 1.134-.344 1.651-1.305 4.077-1.45 4.404-.8 1.806-1.965 2.389-2.071 3.706-.055.69-.205 1.286-.6 1.228-.092.352-.094.728-.193.761zm14.595.204c.257.126.504-.094.62-.222.33-.365.591-1.242.296-2.208-.297-.975-.424-2.146-1.174-4.01-.087-.217-.129-2.787-.66-4.479-.143-.457-1.392-.875-1.922-.789-.529.086-.124.972-.112 1.129.124 1.682.758 4.213.859 4.556.556 1.895 1.634 2.627 1.566 3.946-.036.692.034 1.302.433 1.296.048.363 0 .735.094.781z"/><path fill="#D4AB88" d="M18.117 26.76c-.271.091-.487-.159-.586-.302-.279-.405-.422-1.309-.004-2.227.423-.927.702-2.072 1.69-3.821.115-.204.494-2.746 1.242-4.354.202-.435 1.495-.684 2.009-.529.513.154-.005.98-.037 1.134-.344 1.651-1.305 4.077-1.45 4.404-.8 1.806-1.965 2.389-2.071 3.706-.055.69-.205 1.286-.6 1.228-.092.352-.094.728-.193.761zm14.595.204c.257.126.504-.094.62-.222.33-.365.591-1.242.296-2.208-.297-.975-.424-2.146-1.174-4.01-.087-.217-.129-2.787-.66-4.479-.143-.457-1.392-.875-1.922-.789-.529.086-.124.972-.112 1.129.124 1.682.758 4.213.859 4.556.556 1.895 1.634 2.627 1.566 3.946-.036.692.034 1.302.433 1.296.048.363 0 .735.094.781z"/><path fill="#67757F" d="M29.555 29.5c.5-2.734.422-6.5.422-6.5h-7.963s-.078 3.766.422 6.5c.063.344.188 3.344-.109 5.5-.066.479 2.886.937 2.844-.125-.078-1.969.264-3.513.328-4.5.035-.547.25-1.875.344-3.208.011-.018.295-.018.306 0 .094 1.333.308 2.661.344 3.208.064.987.406 2.531.328 4.5-.042 1.062 2.91.604 2.844.125-.297-2.156-.172-5.156-.11-5.5z"/><path fill="#292F33" d="M30.54 36c.499-.406-.041-1.161-1.42-1.402-1.163-.203-2.2-.032-2.363.35-.212.493-.05 1.052-.05 1.052h3.833zm-9.117 0c-.499-.406.041-1.161 1.42-1.402 1.163-.203 2.2-.032 2.363.35.212.494.05 1.053.05 1.053L21.423 36z"/><path fill="#78B159" d="M30.797 14.766C29.578 14 28 14 28 14h-4s-1.578 0-2.797.766c-1.201.754-1.656 3-1.656 3l2.203.688.109 5.546h8.281l.109-5.547 2.203-.688c.001.001-.454-2.245-1.655-2.999z"/><path fill="#D4AB88" d="M24 10.042v4c0 .682.896 1.305 2 1.305s2-.668 2-1.305v-4h-4z"/><path fill="#CC9B7A" d="M24 14.042c0 .682.896 1.305 2 1.305s2-.668 2-1.305V11l-4 .019v3.023z"/><path fill="#D4AB88" d="M31 3H21v6c0 2.762 2.238 5 5 5s5-2.237 5-5V3z"/><path fill="#963B22" d="M21 2.5L20.5 5l.5 2c2.333 0 2.85-2.412 2.965-3.488C24.004 4.588 24.779 7 31 7l.5-2-.5-2.5H21z"/><path fill="#C1694F" d="M28 12h-4s0 1 2 1 2-1 2-1z"/><circle fill="#662113" cx="23.5" cy="8.5" r=".5"/><circle fill="#662113" cx="28.5" cy="8.5" r=".5"/><path fill="#C1694F" d="M25 10h2s0 1-1 1-1-1-1-1z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f46c-1f3fe.svg b/public/emoji/1f46c-1f3fe.svg
new file mode 100644
index 0000000000000000000000000000000000000000..48468365957dd71609bb97d17e7c025abe11a8f3
--- /dev/null
+++ b/public/emoji/1f46c-1f3fe.svg
@@ -0,0 +1 @@
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#60352A" d="M10.498 0c-1.186 0-2.282.379-3.18 1.018-1.847.096-3.32 1.611-3.32 3.482 0 1.542.007 3.484 2.038 4.208C7.035 10.094 8.659 11 10.498 11c3.037 0 5.5-2.462 5.5-5.499 0-3.038-2.462-5.501-5.5-5.501z"/><path fill="#AF7E57" d="M17.896 26.76c.271.091.487-.159.586-.302.279-.405.422-1.309.004-2.227-.423-.927-.702-2.072-1.69-3.821-.115-.204-.494-2.746-1.242-4.354-.202-.435-1.495-.684-2.009-.529-.513.154.005.98.037 1.134.344 1.651 1.305 4.077 1.45 4.404.8 1.806 1.965 2.389 2.071 3.706.055.69.205 1.286.6 1.228.092.352.093.728.193.761zM3.3 26.964c-.257.126-.504-.094-.62-.222-.33-.365-.591-1.242-.296-2.208.297-.975.424-2.146 1.174-4.01.087-.217.129-2.787.66-4.479.143-.457 1.392-.875 1.922-.789.529.086.124.972.112 1.129-.124 1.682-.758 4.213-.859 4.556-.556 1.895-1.634 2.627-1.566 3.946.036.692-.034 1.302-.433 1.296-.048.363 0 .735-.094.781z"/><path fill="#AAB8C2" d="M13.554 29.5c.5-2.734.422-6.5.422-6.5H6.013s-.078 3.766.422 6.5c.063.344.188 3.344-.109 5.5-.066.479 2.886.937 2.844-.125-.078-1.969.264-3.513.328-4.5.035-.547.25-1.875.344-3.208.011-.018.295-.018.306 0 .094 1.333.308 2.661.344 3.208.064.987.406 2.531.328 4.5-.042 1.062 2.91.604 2.844.125-.298-2.156-.173-5.156-.11-5.5z"/><path fill="#292F33" d="M14.538 36c.499-.406-.041-1.161-1.42-1.402-1.163-.203-2.2-.032-2.363.35-.212.493-.05 1.052-.05 1.052h3.833zm-9.117 0c-.499-.406.041-1.161 1.42-1.402 1.163-.203 2.2-.032 2.363.35.212.493.05 1.052.05 1.052H5.421z"/><path fill="#4289C1" d="M14.795 14.766C13.577 14 11.998 14 11.998 14h-4s-1.578 0-2.797.766c-1.201.754-1.656 3-1.656 3l2.203.688.11 5.546h8.281l.109-5.547 2.203-.688c.001.001-.455-2.245-1.656-2.999z"/><path fill="#AF7E57" d="M7.998 10.042v4c0 .682.896 1.305 2 1.305s2-.668 2-1.305v-4h-4z"/><path fill="#9B6A49" d="M7.998 14.042c0 .682.896 1.305 2 1.305s2-.668 2-1.305V11l-4 .019v3.023z"/><path fill="#AF7E57" d="M14.998 3h-10v6c0 2.762 2.238 5 5 5s5-2.237 5-5V3z"/><path fill="#60352A" d="M4.998 2.5l-.5 2.5.5 2c2.333 0 2.85-2.412 2.965-3.488C8.002 4.588 8.778 7 14.998 7l.5-2-.5-2.5h-10z"/><path fill="#915A34" d="M11.998 12h-4s0 1 2 1 2-1 2-1z"/><circle fill="#662113" cx="7.498" cy="8.5" r=".5"/><circle fill="#662113" cx="12.498" cy="8.5" r=".5"/><path fill="#915A34" d="M8.998 10h2s0 1-1 1-1-1-1-1z"/><path fill="#60352A" d="M26.5 0c-1.187 0-2.282.379-3.181 1.018C21.473 1.114 20 2.629 20 4.5c0 1.542.007 3.484 2.038 4.208C23.036 10.094 24.66 11 26.5 11c3.037 0 5.5-2.462 5.5-5.499C32 2.463 29.537 0 26.5 0z"/><path fill="#AF7E57" d="M18.117 26.76c-.271.091-.487-.159-.586-.302-.279-.405-.422-1.309-.004-2.227.423-.927.702-2.072 1.69-3.821.115-.204.494-2.746 1.242-4.354.202-.435 1.495-.684 2.009-.529.513.154-.005.98-.037 1.134-.344 1.651-1.305 4.077-1.45 4.404-.8 1.806-1.965 2.389-2.071 3.706-.055.69-.205 1.286-.6 1.228-.092.352-.094.728-.193.761zm14.595.204c.257.126.504-.094.62-.222.33-.365.591-1.242.296-2.208-.297-.975-.424-2.146-1.174-4.01-.087-.217-.129-2.787-.66-4.479-.143-.457-1.392-.875-1.922-.789-.529.086-.124.972-.112 1.129.124 1.682.758 4.213.859 4.556.556 1.895 1.634 2.627 1.566 3.946-.036.692.034 1.302.433 1.296.048.363 0 .735.094.781z"/><path fill="#AF7E57" d="M18.117 26.76c-.271.091-.487-.159-.586-.302-.279-.405-.422-1.309-.004-2.227.423-.927.702-2.072 1.69-3.821.115-.204.494-2.746 1.242-4.354.202-.435 1.495-.684 2.009-.529.513.154-.005.98-.037 1.134-.344 1.651-1.305 4.077-1.45 4.404-.8 1.806-1.965 2.389-2.071 3.706-.055.69-.205 1.286-.6 1.228-.092.352-.094.728-.193.761zm14.595.204c.257.126.504-.094.62-.222.33-.365.591-1.242.296-2.208-.297-.975-.424-2.146-1.174-4.01-.087-.217-.129-2.787-.66-4.479-.143-.457-1.392-.875-1.922-.789-.529.086-.124.972-.112 1.129.124 1.682.758 4.213.859 4.556.556 1.895 1.634 2.627 1.566 3.946-.036.692.034 1.302.433 1.296.048.363 0 .735.094.781z"/><path fill="#67757F" d="M29.555 29.5c.5-2.734.422-6.5.422-6.5h-7.963s-.078 3.766.422 6.5c.063.344.188 3.344-.109 5.5-.066.479 2.886.937 2.844-.125-.078-1.969.264-3.513.328-4.5.035-.547.25-1.875.344-3.208.011-.018.295-.018.306 0 .094 1.333.308 2.661.344 3.208.064.987.406 2.531.328 4.5-.042 1.062 2.91.604 2.844.125-.297-2.156-.172-5.156-.11-5.5z"/><path fill="#292F33" d="M30.54 36c.499-.406-.041-1.161-1.42-1.402-1.163-.203-2.2-.032-2.363.35-.212.493-.05 1.052-.05 1.052h3.833zm-9.117 0c-.499-.406.041-1.161 1.42-1.402 1.163-.203 2.2-.032 2.363.35.212.494.05 1.053.05 1.053L21.423 36z"/><path fill="#78B159" d="M30.797 14.766C29.578 14 28 14 28 14h-4s-1.578 0-2.797.766c-1.201.754-1.656 3-1.656 3l2.203.688.109 5.546h8.281l.109-5.547 2.203-.688c.001.001-.454-2.245-1.655-2.999z"/><path fill="#AF7E57" d="M24 10.042v4c0 .682.896 1.305 2 1.305s2-.668 2-1.305v-4h-4z"/><path fill="#9B6A49" d="M24 14.042c0 .682.896 1.305 2 1.305s2-.668 2-1.305V11l-4 .019v3.023z"/><path fill="#AF7E57" d="M31 3H21v6c0 2.762 2.238 5 5 5s5-2.237 5-5V3z"/><path fill="#60352A" d="M21 2.5L20.5 5l.5 2c2.333 0 2.85-2.412 2.965-3.488C24.004 4.588 24.779 7 31 7l.5-2-.5-2.5H21z"/><path fill="#915A34" d="M28 12h-4s0 1 2 1 2-1 2-1z"/><circle fill="#662113" cx="23.5" cy="8.5" r=".5"/><circle fill="#662113" cx="28.5" cy="8.5" r=".5"/><path fill="#915A34" d="M25 10h2s0 1-1 1-1-1-1-1z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f46c-1f3ff.svg b/public/emoji/1f46c-1f3ff.svg
new file mode 100644
index 0000000000000000000000000000000000000000..f6fc112021d2b056a488c3b31d5719f2f3132241
--- /dev/null
+++ b/public/emoji/1f46c-1f3ff.svg
@@ -0,0 +1 @@
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#0B0200" d="M10.498 0c-1.186 0-2.282.379-3.18 1.018-1.847.096-3.32 1.611-3.32 3.482 0 1.542.007 3.484 2.038 4.208C7.035 10.094 8.659 11 10.498 11c3.037 0 5.5-2.462 5.5-5.499 0-3.038-2.462-5.501-5.5-5.501z"/><path fill="#7C533E" d="M17.896 26.76c.271.091.487-.159.586-.302.279-.405.422-1.309.004-2.227-.423-.927-.702-2.072-1.69-3.821-.115-.204-.494-2.746-1.242-4.354-.202-.435-1.495-.684-2.009-.529-.513.154.005.98.037 1.134.344 1.651 1.305 4.077 1.45 4.404.8 1.806 1.965 2.389 2.071 3.706.055.69.205 1.286.6 1.228.092.352.093.728.193.761zM3.3 26.964c-.257.126-.504-.094-.62-.222-.33-.365-.591-1.242-.296-2.208.297-.975.424-2.146 1.174-4.01.087-.217.129-2.787.66-4.479.143-.457 1.392-.875 1.922-.789.529.086.124.972.112 1.129-.124 1.682-.758 4.213-.859 4.556-.556 1.895-1.634 2.627-1.566 3.946.036.692-.034 1.302-.433 1.296-.048.363 0 .735-.094.781z"/><path fill="#AAB8C2" d="M13.554 29.5c.5-2.734.422-6.5.422-6.5H6.013s-.078 3.766.422 6.5c.063.344.188 3.344-.109 5.5-.066.479 2.886.937 2.844-.125-.078-1.969.264-3.513.328-4.5.035-.547.25-1.875.344-3.208.011-.018.295-.018.306 0 .094 1.333.308 2.661.344 3.208.064.987.406 2.531.328 4.5-.042 1.062 2.91.604 2.844.125-.298-2.156-.173-5.156-.11-5.5z"/><path fill="#292F33" d="M14.538 36c.499-.406-.041-1.161-1.42-1.402-1.163-.203-2.2-.032-2.363.35-.212.493-.05 1.052-.05 1.052h3.833zm-9.117 0c-.499-.406.041-1.161 1.42-1.402 1.163-.203 2.2-.032 2.363.35.212.493.05 1.052.05 1.052H5.421z"/><path fill="#4289C1" d="M14.795 14.766C13.577 14 11.998 14 11.998 14h-4s-1.578 0-2.797.766c-1.201.754-1.656 3-1.656 3l2.203.688.11 5.546h8.281l.109-5.547 2.203-.688c.001.001-.455-2.245-1.656-2.999z"/><path fill="#7C533E" d="M7.998 10.042v4c0 .682.896 1.305 2 1.305s2-.668 2-1.305v-4h-4z"/><path fill="#664131" d="M7.998 14.042c0 .682.896 1.305 2 1.305s2-.668 2-1.305V11l-4 .019v3.023z"/><path fill="#7C533E" d="M14.998 3h-10v6c0 2.762 2.238 5 5 5s5-2.237 5-5V3z"/><path fill="#0B0200" d="M4.998 2.5l-.5 2.5.5 2c2.333 0 2.85-2.412 2.965-3.488C8.002 4.588 8.778 7 14.998 7l.5-2-.5-2.5h-10z"/><path fill="#3D2E24" d="M11.998 12h-4s0 1 2 1 2-1 2-1z"/><circle cx="7.498" cy="8.5" r=".5"/><circle cx="12.498" cy="8.5" r=".5"/><path fill="#3D2E24" d="M8.998 10h2s0 1-1 1-1-1-1-1z"/><path fill="#0B0200" d="M26.5 0c-1.187 0-2.282.379-3.181 1.018C21.473 1.114 20 2.629 20 4.5c0 1.542.007 3.484 2.038 4.208C23.036 10.094 24.66 11 26.5 11c3.037 0 5.5-2.462 5.5-5.499C32 2.463 29.537 0 26.5 0z"/><path fill="#7C533E" d="M18.117 26.76c-.271.091-.487-.159-.586-.302-.279-.405-.422-1.309-.004-2.227.423-.927.702-2.072 1.69-3.821.115-.204.494-2.746 1.242-4.354.202-.435 1.495-.684 2.009-.529.513.154-.005.98-.037 1.134-.344 1.651-1.305 4.077-1.45 4.404-.8 1.806-1.965 2.389-2.071 3.706-.055.69-.205 1.286-.6 1.228-.092.352-.094.728-.193.761zm14.595.204c.257.126.504-.094.62-.222.33-.365.591-1.242.296-2.208-.297-.975-.424-2.146-1.174-4.01-.087-.217-.129-2.787-.66-4.479-.143-.457-1.392-.875-1.922-.789-.529.086-.124.972-.112 1.129.124 1.682.758 4.213.859 4.556.556 1.895 1.634 2.627 1.566 3.946-.036.692.034 1.302.433 1.296.048.363 0 .735.094.781z"/><path fill="#7C533E" d="M18.117 26.76c-.271.091-.487-.159-.586-.302-.279-.405-.422-1.309-.004-2.227.423-.927.702-2.072 1.69-3.821.115-.204.494-2.746 1.242-4.354.202-.435 1.495-.684 2.009-.529.513.154-.005.98-.037 1.134-.344 1.651-1.305 4.077-1.45 4.404-.8 1.806-1.965 2.389-2.071 3.706-.055.69-.205 1.286-.6 1.228-.092.352-.094.728-.193.761zm14.595.204c.257.126.504-.094.62-.222.33-.365.591-1.242.296-2.208-.297-.975-.424-2.146-1.174-4.01-.087-.217-.129-2.787-.66-4.479-.143-.457-1.392-.875-1.922-.789-.529.086-.124.972-.112 1.129.124 1.682.758 4.213.859 4.556.556 1.895 1.634 2.627 1.566 3.946-.036.692.034 1.302.433 1.296.048.363 0 .735.094.781z"/><path fill="#67757F" d="M29.555 29.5c.5-2.734.422-6.5.422-6.5h-7.963s-.078 3.766.422 6.5c.063.344.188 3.344-.109 5.5-.066.479 2.886.937 2.844-.125-.078-1.969.264-3.513.328-4.5.035-.547.25-1.875.344-3.208.011-.018.295-.018.306 0 .094 1.333.308 2.661.344 3.208.064.987.406 2.531.328 4.5-.042 1.062 2.91.604 2.844.125-.297-2.156-.172-5.156-.11-5.5z"/><path fill="#292F33" d="M30.54 36c.499-.406-.041-1.161-1.42-1.402-1.163-.203-2.2-.032-2.363.35-.212.493-.05 1.052-.05 1.052h3.833zm-9.117 0c-.499-.406.041-1.161 1.42-1.402 1.163-.203 2.2-.032 2.363.35.212.494.05 1.053.05 1.053L21.423 36z"/><path fill="#78B159" d="M30.797 14.766C29.578 14 28 14 28 14h-4s-1.578 0-2.797.766c-1.201.754-1.656 3-1.656 3l2.203.688.109 5.546h8.281l.109-5.547 2.203-.688c.001.001-.454-2.245-1.655-2.999z"/><path fill="#7C533E" d="M24 10.042v4c0 .682.896 1.305 2 1.305s2-.668 2-1.305v-4h-4z"/><path fill="#664131" d="M24 14.042c0 .682.896 1.305 2 1.305s2-.668 2-1.305V11l-4 .019v3.023z"/><path fill="#7C533E" d="M31 3H21v6c0 2.762 2.238 5 5 5s5-2.237 5-5V3z"/><path fill="#0B0200" d="M21 2.5L20.5 5l.5 2c2.333 0 2.85-2.412 2.965-3.488C24.004 4.588 24.779 7 31 7l.5-2-.5-2.5H21z"/><path fill="#3D2E24" d="M28 12h-4s0 1 2 1 2-1 2-1z"/><circle cx="23.5" cy="8.5" r=".5"/><circle cx="28.5" cy="8.5" r=".5"/><path fill="#3D2E24" d="M25 10h2s0 1-1 1-1-1-1-1z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f46c.svg b/public/emoji/1f46c.svg
index f61d4c4341a3fa81cc0b8f0fa6fe4c3c492e6289..0aa9dcb33e58aa989adbc31cc834b9ca5b740f08 100644
--- a/public/emoji/1f46c.svg
+++ b/public/emoji/1f46c.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#AAB8C2" d="M11 23H6v12h3v-8h2v8h3V23z"/><path fill="#292F33" d="M5 36v-1s0-1 2-1 2 1 2 1v1H5zm6 0v-1s0-1 2-1 2 1 2 1v1h-4z"/><path fill="#FFDC5D" d="M.999 26c-.164 0-.331-.04-.485-.126-.482-.269-.657-.877-.388-1.359l5-9c.268-.483.876-.657 1.36-.388.482.268.657.877.388 1.36l-5 9c-.183.328-.523.513-.875.513zm18.002 0c-.352 0-.692-.185-.875-.515l-5-9c-.269-.483-.094-1.092.388-1.36.483-.269 1.092-.094 1.36.388l5 9c.269.483.095 1.091-.389 1.359-.153.088-.32.128-.484.128z"/><path fill="#4289C1" d="M16 16c0-1.104-.896-2-2-2H6c-1.104 0-2 .896-2 2v1h2v7h8v-7h2v-1z"/><path fill="#FFDC5D" d="M8 11v4c0 1.104.896 2 2 2s2-.896 2-2v-4H8z"/><path fill="#F9CA55" d="M12 11l-4 .019V15s2 1 4 0v-4z"/><path fill="#FFDC5D" d="M15 7C8.779 7 8.004 4.588 7.965 3.512 7.85 4.588 7.333 7 5 7v2c0 2.762 2.238 5 5 5s5-2.237 5-5V7z"/><path fill="#FFAC33" d="M7.965 3.512C8.004 4.588 8.779 7 15 7v1.656c.628-.894 1-1.98 1-3.155C16 2.463 13.537 0 10.5 0 9.314 0 8.218.379 7.319 1.018 5.473 1.114 4 2.629 4 4.5c0 1.209.019 2.655 1 3.576V7c2.333 0 2.85-2.412 2.965-3.488z"/><path fill="#C1694F" d="M12 12H8s0 1 2 1 2-1 2-1z"/><circle fill="#662113" cx="7.5" cy="8.5" r=".5"/><circle fill="#662113" cx="12.5" cy="8.5" r=".5"/><path fill="#C1694F" d="M9 10h2s0 1-1 1-1-1-1-1z"/><path fill="#67757F" d="M27 23h-5v12h3v-8h2v8h3V23z"/><path fill="#292F33" d="M21 36v-1s0-1 2-1 2 1 2 1v1h-4zm6 0v-1s0-1 2-1 2 1 2 1v1h-4z"/><path fill="#FFDC5D" d="M16.999 26c-.164 0-.331-.04-.485-.126-.483-.269-.657-.877-.388-1.359l5-9c.268-.483.878-.657 1.359-.388.483.268.657.877.389 1.36l-5 9c-.183.328-.523.513-.875.513zm18.002 0c-.352 0-.692-.185-.875-.515l-5-9c-.269-.483-.095-1.092.389-1.36.483-.269 1.092-.094 1.359.388l5 9c.269.483.095 1.091-.389 1.359-.153.088-.32.128-.484.128z"/><path fill="#77B255" d="M32 16c0-1.104-.896-2-2-2h-8c-1.104 0-2 .896-2 2v1h2v7h8v-7h2v-1z"/><path fill="#FFDC5D" d="M24 11v4c0 1.104.896 2 2 2s2-.896 2-2v-4h-4z"/><path fill="#F9CA55" d="M28 11l-4 .019V15s2 1 4 0v-4z"/><path fill="#FFAC33" d="M32 4.5c0-1.871-1.473-3.386-3.319-3.482C27.782.379 26.687 0 25.5 0 22.463 0 20 2.463 20 5.501c0 1.175.372 2.262 1 3.155V7c6.221 0 6.996-2.412 7.035-3.488C28.15 4.588 28.667 7 31 7v1.076c.981-.921 1-2.367 1-3.576z"/><path fill="#FFDC5D" d="M28.035 3.512C27.996 4.588 27.221 7 21 7v2c0 2.762 2.238 5 5 5s5-2.237 5-5V7c-2.333 0-2.85-2.412-2.965-3.488z"/><path fill="#C1694F" d="M28 12h-4s0 1 2 1 2-1 2-1z"/><circle fill="#662113" cx="23.5" cy="8.5" r=".5"/><circle fill="#662113" cx="28.5" cy="8.5" r=".5"/><path fill="#C1694F" d="M25 10h2s0 1-1 1-1-1-1-1z"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#FFAC33" d="M10.498 0c-1.186 0-2.282.379-3.18 1.018-1.847.096-3.32 1.611-3.32 3.482 0 1.542.007 3.484 2.038 4.208C7.035 10.094 8.659 11 10.498 11c3.037 0 5.5-2.462 5.5-5.499 0-3.038-2.462-5.501-5.5-5.501z"/><path fill="#FFDC5D" d="M17.896 26.76c.271.091.487-.159.586-.302.279-.405.422-1.309.004-2.227-.423-.927-.702-2.072-1.69-3.821-.115-.204-.494-2.746-1.242-4.354-.202-.435-1.495-.684-2.009-.529-.513.154.005.98.037 1.134.344 1.651 1.305 4.077 1.45 4.404.8 1.806 1.965 2.389 2.071 3.706.055.69.205 1.286.6 1.228.092.352.093.728.193.761zM3.3 26.964c-.257.126-.504-.094-.62-.222-.33-.365-.591-1.242-.296-2.208.297-.975.424-2.146 1.174-4.01.087-.217.129-2.787.66-4.479.143-.457 1.392-.875 1.922-.789.529.086.124.972.112 1.129-.124 1.682-.758 4.213-.859 4.556-.556 1.895-1.634 2.627-1.566 3.946.036.692-.034 1.302-.433 1.296-.048.363 0 .735-.094.781z"/><path fill="#AAB8C2" d="M13.554 29.5c.5-2.734.422-6.5.422-6.5H6.013s-.078 3.766.422 6.5c.063.344.188 3.344-.109 5.5-.066.479 2.886.937 2.844-.125-.078-1.969.264-3.513.328-4.5.035-.547.25-1.875.344-3.208.011-.018.295-.018.306 0 .094 1.333.308 2.661.344 3.208.064.987.406 2.531.328 4.5-.042 1.062 2.91.604 2.844.125-.298-2.156-.173-5.156-.11-5.5z"/><path fill="#292F33" d="M14.538 36c.499-.406-.041-1.161-1.42-1.402-1.163-.203-2.2-.032-2.363.35-.212.493-.05 1.052-.05 1.052h3.833zm-9.117 0c-.499-.406.041-1.161 1.42-1.402 1.163-.203 2.2-.032 2.363.35.212.493.05 1.052.05 1.052H5.421z"/><path fill="#4289C1" d="M14.795 14.766C13.577 14 11.998 14 11.998 14h-4s-1.578 0-2.797.766c-1.201.754-1.656 3-1.656 3l2.203.688.11 5.546h8.281l.109-5.547 2.203-.688c.001.001-.455-2.245-1.656-2.999z"/><path fill="#FFDC5D" d="M7.998 10.042v4c0 .682.896 1.305 2 1.305s2-.668 2-1.305v-4h-4z"/><path fill="#F9CA55" d="M7.998 14.042c0 .682.896 1.305 2 1.305s2-.668 2-1.305V11l-4 .019v3.023z"/><path fill="#FFDC5D" d="M14.998 3h-10v6c0 2.762 2.238 5 5 5s5-2.237 5-5V3z"/><path fill="#FFAC33" d="M4.998 2.5l-.5 2.5.5 2c2.333 0 2.85-2.412 2.965-3.488C8.002 4.588 8.778 7 14.998 7l.5-2-.5-2.5h-10z"/><path fill="#C1694F" d="M11.998 12h-4s0 1 2 1 2-1 2-1z"/><circle fill="#662113" cx="7.498" cy="8.5" r=".5"/><circle fill="#662113" cx="12.498" cy="8.5" r=".5"/><path fill="#C1694F" d="M8.998 10h2s0 1-1 1-1-1-1-1z"/><path fill="#FFAC33" d="M26.5 0c-1.187 0-2.282.379-3.181 1.018C21.473 1.114 20 2.629 20 4.5c0 1.542.007 3.484 2.038 4.208C23.036 10.094 24.66 11 26.5 11c3.037 0 5.5-2.462 5.5-5.499C32 2.463 29.537 0 26.5 0z"/><path fill="#FFDC5D" d="M18.117 26.76c-.271.091-.487-.159-.586-.302-.279-.405-.422-1.309-.004-2.227.423-.927.702-2.072 1.69-3.821.115-.204.494-2.746 1.242-4.354.202-.435 1.495-.684 2.009-.529.513.154-.005.98-.037 1.134-.344 1.651-1.305 4.077-1.45 4.404-.8 1.806-1.965 2.389-2.071 3.706-.055.69-.205 1.286-.6 1.228-.092.352-.094.728-.193.761zm14.595.204c.257.126.504-.094.62-.222.33-.365.591-1.242.296-2.208-.297-.975-.424-2.146-1.174-4.01-.087-.217-.129-2.787-.66-4.479-.143-.457-1.392-.875-1.922-.789-.529.086-.124.972-.112 1.129.124 1.682.758 4.213.859 4.556.556 1.895 1.634 2.627 1.566 3.946-.036.692.034 1.302.433 1.296.048.363 0 .735.094.781z"/><path fill="#FFDC5D" d="M18.117 26.76c-.271.091-.487-.159-.586-.302-.279-.405-.422-1.309-.004-2.227.423-.927.702-2.072 1.69-3.821.115-.204.494-2.746 1.242-4.354.202-.435 1.495-.684 2.009-.529.513.154-.005.98-.037 1.134-.344 1.651-1.305 4.077-1.45 4.404-.8 1.806-1.965 2.389-2.071 3.706-.055.69-.205 1.286-.6 1.228-.092.352-.094.728-.193.761zm14.595.204c.257.126.504-.094.62-.222.33-.365.591-1.242.296-2.208-.297-.975-.424-2.146-1.174-4.01-.087-.217-.129-2.787-.66-4.479-.143-.457-1.392-.875-1.922-.789-.529.086-.124.972-.112 1.129.124 1.682.758 4.213.859 4.556.556 1.895 1.634 2.627 1.566 3.946-.036.692.034 1.302.433 1.296.048.363 0 .735.094.781z"/><path fill="#67757F" d="M29.555 29.5c.5-2.734.422-6.5.422-6.5h-7.963s-.078 3.766.422 6.5c.063.344.188 3.344-.109 5.5-.066.479 2.886.937 2.844-.125-.078-1.969.264-3.513.328-4.5.035-.547.25-1.875.344-3.208.011-.018.295-.018.306 0 .094 1.333.308 2.661.344 3.208.064.987.406 2.531.328 4.5-.042 1.062 2.91.604 2.844.125-.297-2.156-.172-5.156-.11-5.5z"/><path fill="#292F33" d="M30.54 36c.499-.406-.041-1.161-1.42-1.402-1.163-.203-2.2-.032-2.363.35-.212.493-.05 1.052-.05 1.052h3.833zm-9.117 0c-.499-.406.041-1.161 1.42-1.402 1.163-.203 2.2-.032 2.363.35.212.494.05 1.053.05 1.053L21.423 36z"/><path fill="#78B159" d="M30.797 14.766C29.578 14 28 14 28 14h-4s-1.578 0-2.797.766c-1.201.754-1.656 3-1.656 3l2.203.688.109 5.546h8.281l.109-5.547 2.203-.688c.001.001-.454-2.245-1.655-2.999z"/><path fill="#FFDC5D" d="M24 10.042v4c0 .682.896 1.305 2 1.305s2-.668 2-1.305v-4h-4z"/><path fill="#F9CA55" d="M24 14.042c0 .682.896 1.305 2 1.305s2-.668 2-1.305V11l-4 .019v3.023z"/><path fill="#FFDC5D" d="M31 3H21v6c0 2.762 2.238 5 5 5s5-2.237 5-5V3z"/><path fill="#FFAC33" d="M21 2.5L20.5 5l.5 2c2.333 0 2.85-2.412 2.965-3.488C24.004 4.588 24.779 7 31 7l.5-2-.5-2.5H21z"/><path fill="#C1694F" d="M28 12h-4s0 1 2 1 2-1 2-1z"/><circle fill="#662113" cx="23.5" cy="8.5" r=".5"/><circle fill="#662113" cx="28.5" cy="8.5" r=".5"/><path fill="#C1694F" d="M25 10h2s0 1-1 1-1-1-1-1z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f46d-1f3fb.svg b/public/emoji/1f46d-1f3fb.svg
new file mode 100644
index 0000000000000000000000000000000000000000..8bc44aae267d0757ba64ced2306ecad0e70db357
--- /dev/null
+++ b/public/emoji/1f46d-1f3fb.svg
@@ -0,0 +1 @@
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#292F33" d="M11 0C9.736 0 8.565.393 7.598 1.061 7.401 1.031 7.205 1 7 1 4.791 1 3 2.791 3 5v6c0 3.866 3.134 7 7 7s7-3.134 7-7V6.001C17 2.687 14.314 0 11 0z"/><path fill="#F7DECE" d="M11.213 34.309c-.052.682 1.849.953 2.129.791.299-.173-.698-.623-.702-.977-.019-1.797.53-1.648.311-3.492.443-1.625.672-2.592.672-3.131 0-1.25-3.312-.766-3.312 0 0 .344.365 1.681.417 3.131-.313 1.659.641 1.615.485 3.678zm-2.448 0c.052.682-1.849.953-2.129.791-.299-.173.698-.623.702-.977.019-1.797-.53-1.648-.311-3.492-.443-1.625-.672-2.592-.672-3.131 0-1.25 3.313-.766 3.313 0 0 .344-.365 1.681-.417 3.131.311 1.659-.642 1.615-.486 3.678z"/><path fill="#EEC2AD" d="M10.311 27.5c0 .206.13.771.246 1.5h2.817c.164-.689.249-1.175.249-1.5 0-1.25-3.312-.766-3.312 0zm-3.957 0c0 .325.085.811.249 1.5H9.42c.116-.729.247-1.294.247-1.5 0-.766-3.313-1.25-3.313 0z"/><path fill="#F7DECE" d="M3.258 26.96c-.258.124-.503-.097-.619-.227-.328-.367-.583-1.246-.282-2.209.303-.973.6-2.384 1.199-4.002.081-.22.499-3.764.805-4.445.197-.437 1.28-.896 1.81-.807.529.089.246.651.105 1.13 0 0-.916 3.953-1.016 4.296-.316 1.079-1.624 2.918-1.565 4.237.031.692.06 1.255-.339 1.246-.049.362-.003.735-.098.781zm14.984-.2c.271.091.487-.159.586-.302.279-.405.422-1.309.004-2.227-.423-.927-.894-2.29-1.69-3.821-.108-.208-.966-3.672-1.355-4.309-.25-.409-1.382-.729-1.897-.574-.513.154-.162.676.037 1.134 0 0 1.403 3.807 1.546 4.135.449 1.031 1.977 2.691 2.082 4.008.056.69.097 1.253.492 1.194.094.353.095.729.195.762z"/><path fill="#292F33" d="M13.945 36c.305 0 .372-.418.089-.629-.379-.285-.88-1.371-1.561-1.371h-1.245c-.229 0-.49 1.209-.41 1.48.102.345.433.52.812.52h2.315zm-7.913 0c-.305 0-.372-.418-.089-.629.379-.285.88-1.371 1.561-1.371h1.245c.229 0 .49 1.209.41 1.48-.102.345-.433.52-.811.52H6.032z"/><path fill="#E75A70" d="M14.354 17.771L16 16c-1.438-1.792-4-2-4-2H8s-2.562.208-4 2l1.646 1.771S6.25 20.688 6.25 21 5 25.75 5 28h10c0-2.25-1.25-6.688-1.25-7s.604-3.229.604-3.229z"/><path fill="#DA2F47" d="M13.75 21c0-.106.07-.512.161-1H6.089c.092.488.161.894.161 1 0 .083-.122.509-.223 1h7.942c-.108-.558-.219-.917-.219-1z"/><path fill="#F7DECE" d="M8 11v4c0 1.104.896 2 2 2s2-.896 2-2v-4H8z"/><path fill="#EEC2AD" d="M12 11l-4 .019V15s2 1 4 0v-4z"/><path fill="#F7DECE" d="M15 3H5v6c0 2.762 2.238 5 5 5s5-2.237 5-5V3z"/><path fill="#292F33" d="M15 2H5L4 7c4 0 4-4 4-4s0 4 8 4l-1-5z"/><path fill="#DF1F32" d="M12 12H8s0 1 2 1 2-1 2-1z"/><circle fill="#662113" cx="7.5" cy="8.5" r=".5"/><circle fill="#662113" cx="12.5" cy="8.5" r=".5"/><path fill="#C1694F" d="M9 10h2s0 1-1 1-1-1-1-1z"/><path fill="#292F33" d="M33 6.001C33 2.687 30.313 0 27 0c-1.264 0-2.435.393-3.402 1.061C23.401 1.031 23.205 1 23 1c-2.209 0-4 1.791-4 4v6h14V6.001z"/><path fill="#F7DECE" d="M27.213 34.309c-.052.682 1.849.953 2.129.791.299-.173-.698-.623-.702-.977-.019-1.797.53-1.648.311-3.492.443-1.625.672-2.592.672-3.131 0-1.25-3.312-.766-3.312 0 0 .344.365 1.681.417 3.131-.313 1.659.641 1.615.485 3.678zm-2.448 0c.052.682-1.849.953-2.129.791-.299-.173.698-.623.702-.977.019-1.797-.53-1.648-.311-3.492-.443-1.625-.672-2.592-.672-3.131 0-1.25 3.312-.766 3.312 0 0 .344-.365 1.681-.417 3.131.312 1.659-.642 1.615-.485 3.678z"/><path fill="#EEC2AD" d="M26.311 27.5c0 .206.13.771.246 1.5h2.817c.164-.689.249-1.175.249-1.5 0-1.25-3.312-.766-3.312 0zm-3.957 0c0 .325.085.811.249 1.5h2.817c.116-.729.247-1.294.247-1.5 0-.766-3.313-1.25-3.313 0z"/><path fill="#F7DECE" d="M18.117 26.76c-.271.091-.487-.159-.586-.302-.279-.405-.422-1.309-.004-2.227.423-.927.702-2.072 1.69-3.821.115-.204.494-2.746 1.242-4.354.202-.435 1.495-.685 2.009-.529.513.154-.005.98-.037 1.134-.344 1.651-1.305 4.077-1.45 4.404-.8 1.806-1.965 2.389-2.071 3.706-.056.69-.205 1.286-.6 1.228-.092.352-.094.728-.193.761zm14.595.204c.257.126.504-.094.62-.222.33-.365.591-1.242.296-2.208-.297-.975-.424-2.146-1.174-4.01-.088-.217-.129-2.787-.66-4.479-.143-.458-1.392-.875-1.922-.789-.529.086-.124.972-.112 1.129.124 1.682.758 4.213.859 4.556.556 1.895 1.634 2.626 1.566 3.946-.036.692.034 1.302.433 1.296.048.363 0 .735.094.781z"/><path fill="#292F33" d="M29.945 36c.305 0 .372-.418.089-.629-.379-.285-.88-1.371-1.561-1.371h-1.245c-.229 0-.49 1.209-.41 1.48.102.345.433.52.812.52h2.315zm-7.913 0c-.305 0-.372-.418-.089-.629.379-.285.88-1.371 1.561-1.371h1.245c.229 0 .49 1.209.41 1.48-.102.345-.433.52-.811.52h-2.316z"/><path fill="#9268CA" d="M30.354 17.771L32 16c-1.438-1.792-4-2-4-2h-4s-2.562.208-4 2l1.646 1.771s.604 2.917.604 3.229S21 25.75 21 28h10c0-2.25-1.25-6.688-1.25-7s.604-3.229.604-3.229z"/><path fill="#AA8ED6" d="M29.75 21c0-.106.07-.512.161-1h-7.822c.092.488.161.894.161 1 0 .083-.122.509-.223 1h7.942c-.108-.558-.219-.917-.219-1z"/><path fill="#F7DECE" d="M24 11v4c0 1.104.896 2 2 2s2-.896 2-2v-4h-4z"/><path fill="#EEC2AD" d="M28 11l-4 .019V15s2 1 4 0v-4z"/><path fill="#F7DECE" d="M31 3H21v6c0 2.762 2.238 5 5 5s5-2.237 5-5V3z"/><path fill="#292F33" d="M31 2H21l-1 5c4 0 4-4 4-4s0 4 8 4l-1-5z"/><path fill="#DF1F32" d="M28 12h-4s0 1 2 1 2-1 2-1z"/><circle fill="#662113" cx="23.5" cy="8.5" r=".5"/><circle fill="#662113" cx="28.5" cy="8.5" r=".5"/><path fill="#C1694F" d="M25 10h2s0 1-1 1-1-1-1-1z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f46d-1f3fc.svg b/public/emoji/1f46d-1f3fc.svg
new file mode 100644
index 0000000000000000000000000000000000000000..555fcbb5bd87d3ff127ed487267428a82d1d59a1
--- /dev/null
+++ b/public/emoji/1f46d-1f3fc.svg
@@ -0,0 +1 @@
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#FFE51E" d="M11 0C9.736 0 8.565.393 7.598 1.061 7.401 1.031 7.205 1 7 1 4.791 1 3 2.791 3 5v6c0 3.866 3.134 7 7 7s7-3.134 7-7V6.001C17 2.687 14.314 0 11 0z"/><path fill="#F3D2A2" d="M11.213 34.309c-.052.682 1.849.953 2.129.791.299-.173-.698-.623-.702-.977-.019-1.797.53-1.648.311-3.492.443-1.625.672-2.592.672-3.131 0-1.25-3.312-.766-3.312 0 0 .344.365 1.681.417 3.131-.313 1.659.641 1.615.485 3.678zm-2.448 0c.052.682-1.849.953-2.129.791-.299-.173.698-.623.702-.977.019-1.797-.53-1.648-.311-3.492-.443-1.625-.672-2.592-.672-3.131 0-1.25 3.313-.766 3.313 0 0 .344-.365 1.681-.417 3.131.311 1.659-.642 1.615-.486 3.678z"/><path fill="#E2C196" d="M10.311 27.5c0 .206.13.771.246 1.5h2.817c.164-.689.249-1.175.249-1.5 0-1.25-3.312-.766-3.312 0zm-3.957 0c0 .325.085.811.249 1.5H9.42c.116-.729.247-1.294.247-1.5 0-.766-3.313-1.25-3.313 0z"/><path fill="#F3D2A2" d="M3.258 26.96c-.258.124-.503-.097-.619-.227-.328-.367-.583-1.246-.282-2.209.303-.973.6-2.384 1.199-4.002.081-.22.499-3.764.805-4.445.197-.437 1.28-.896 1.81-.807.529.089.246.651.105 1.13 0 0-.916 3.953-1.016 4.296-.316 1.079-1.624 2.918-1.565 4.237.031.692.06 1.255-.339 1.246-.049.362-.003.735-.098.781zm14.984-.2c.271.091.487-.159.586-.302.279-.405.422-1.309.004-2.227-.423-.927-.894-2.29-1.69-3.821-.108-.208-.966-3.672-1.355-4.309-.25-.409-1.382-.729-1.897-.574-.513.154-.162.676.037 1.134 0 0 1.403 3.807 1.546 4.135.449 1.031 1.977 2.691 2.082 4.008.056.69.097 1.253.492 1.194.094.353.095.729.195.762z"/><path fill="#292F33" d="M13.945 36c.305 0 .372-.418.089-.629-.379-.285-.88-1.371-1.561-1.371h-1.245c-.229 0-.49 1.209-.41 1.48.102.345.433.52.812.52h2.315zm-7.913 0c-.305 0-.372-.418-.089-.629.379-.285.88-1.371 1.561-1.371h1.245c.229 0 .49 1.209.41 1.48-.102.345-.433.52-.811.52H6.032z"/><path fill="#E75A70" d="M14.354 17.771L16 16c-1.438-1.792-4-2-4-2H8s-2.562.208-4 2l1.646 1.771S6.25 20.688 6.25 21 5 25.75 5 28h10c0-2.25-1.25-6.688-1.25-7s.604-3.229.604-3.229z"/><path fill="#DA2F47" d="M13.75 21c0-.106.07-.512.161-1H6.089c.092.488.161.894.161 1 0 .083-.122.509-.223 1h7.942c-.108-.558-.219-.917-.219-1z"/><path fill="#F3D2A2" d="M8 11v4c0 1.104.896 2 2 2s2-.896 2-2v-4H8z"/><path fill="#E2C196" d="M12 11l-4 .019V15s2 1 4 0v-4z"/><path fill="#F3D2A2" d="M15 3H5v6c0 2.762 2.238 5 5 5s5-2.237 5-5V3z"/><path fill="#FFE51E" d="M15 2H5L4 7c4 0 4-4 4-4s0 4 8 4l-1-5z"/><path fill="#DF1F32" d="M12 12H8s0 1 2 1 2-1 2-1z"/><circle fill="#662113" cx="7.5" cy="8.5" r=".5"/><circle fill="#662113" cx="12.5" cy="8.5" r=".5"/><path fill="#C1694F" d="M9 10h2s0 1-1 1-1-1-1-1z"/><path fill="#FFE51E" d="M33 6.001C33 2.687 30.313 0 27 0c-1.264 0-2.435.393-3.402 1.061C23.401 1.031 23.205 1 23 1c-2.209 0-4 1.791-4 4v6h14V6.001z"/><path fill="#F3D2A2" d="M27.213 34.309c-.052.682 1.849.953 2.129.791.299-.173-.698-.623-.702-.977-.019-1.797.53-1.648.311-3.492.443-1.625.672-2.592.672-3.131 0-1.25-3.312-.766-3.312 0 0 .344.365 1.681.417 3.131-.313 1.659.641 1.615.485 3.678zm-2.448 0c.052.682-1.849.953-2.129.791-.299-.173.698-.623.702-.977.019-1.797-.53-1.648-.311-3.492-.443-1.625-.672-2.592-.672-3.131 0-1.25 3.312-.766 3.312 0 0 .344-.365 1.681-.417 3.131.312 1.659-.642 1.615-.485 3.678z"/><path fill="#E2C196" d="M26.311 27.5c0 .206.13.771.246 1.5h2.817c.164-.689.249-1.175.249-1.5 0-1.25-3.312-.766-3.312 0zm-3.957 0c0 .325.085.811.249 1.5h2.817c.116-.729.247-1.294.247-1.5 0-.766-3.313-1.25-3.313 0z"/><path fill="#F3D2A2" d="M18.117 26.76c-.271.091-.487-.159-.586-.302-.279-.405-.422-1.309-.004-2.227.423-.927.702-2.072 1.69-3.821.115-.204.494-2.746 1.242-4.354.202-.435 1.495-.685 2.009-.529.513.154-.005.98-.037 1.134-.344 1.651-1.305 4.077-1.45 4.404-.8 1.806-1.965 2.389-2.071 3.706-.056.69-.205 1.286-.6 1.228-.092.352-.094.728-.193.761zm14.595.204c.257.126.504-.094.62-.222.33-.365.591-1.242.296-2.208-.297-.975-.424-2.146-1.174-4.01-.088-.217-.129-2.787-.66-4.479-.143-.458-1.392-.875-1.922-.789-.529.086-.124.972-.112 1.129.124 1.682.758 4.213.859 4.556.556 1.895 1.634 2.626 1.566 3.946-.036.692.034 1.302.433 1.296.048.363 0 .735.094.781z"/><path fill="#292F33" d="M29.945 36c.305 0 .372-.418.089-.629-.379-.285-.88-1.371-1.561-1.371h-1.245c-.229 0-.49 1.209-.41 1.48.102.345.433.52.812.52h2.315zm-7.913 0c-.305 0-.372-.418-.089-.629.379-.285.88-1.371 1.561-1.371h1.245c.229 0 .49 1.209.41 1.48-.102.345-.433.52-.811.52h-2.316z"/><path fill="#9268CA" d="M30.354 17.771L32 16c-1.438-1.792-4-2-4-2h-4s-2.562.208-4 2l1.646 1.771s.604 2.917.604 3.229S21 25.75 21 28h10c0-2.25-1.25-6.688-1.25-7s.604-3.229.604-3.229z"/><path fill="#AA8ED6" d="M29.75 21c0-.106.07-.512.161-1h-7.822c.092.488.161.894.161 1 0 .083-.122.509-.223 1h7.942c-.108-.558-.219-.917-.219-1z"/><path fill="#F3D2A2" d="M24 11v4c0 1.104.896 2 2 2s2-.896 2-2v-4h-4z"/><path fill="#E2C196" d="M28 11l-4 .019V15s2 1 4 0v-4z"/><path fill="#F3D2A2" d="M31 3H21v6c0 2.762 2.238 5 5 5s5-2.237 5-5V3z"/><path fill="#FFE51E" d="M31 2H21l-1 5c4 0 4-4 4-4s0 4 8 4l-1-5z"/><path fill="#DF1F32" d="M28 12h-4s0 1 2 1 2-1 2-1z"/><circle fill="#662113" cx="23.5" cy="8.5" r=".5"/><circle fill="#662113" cx="28.5" cy="8.5" r=".5"/><path fill="#C1694F" d="M25 10h2s0 1-1 1-1-1-1-1z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f46d-1f3fd.svg b/public/emoji/1f46d-1f3fd.svg
new file mode 100644
index 0000000000000000000000000000000000000000..5db65de5a7042f53da7003078993286744b1771a
--- /dev/null
+++ b/public/emoji/1f46d-1f3fd.svg
@@ -0,0 +1 @@
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#963B22" d="M11 0C9.736 0 8.565.393 7.598 1.061 7.401 1.031 7.205 1 7 1 4.791 1 3 2.791 3 5v6c0 3.866 3.134 7 7 7s7-3.134 7-7V6.001C17 2.687 14.314 0 11 0z"/><path fill="#D4AB88" d="M11.213 34.309c-.052.682 1.849.953 2.129.791.299-.173-.698-.623-.702-.977-.019-1.797.53-1.648.311-3.492.443-1.625.672-2.592.672-3.131 0-1.25-3.312-.766-3.312 0 0 .344.365 1.681.417 3.131-.313 1.659.641 1.615.485 3.678zm-2.448 0c.052.682-1.849.953-2.129.791-.299-.173.698-.623.702-.977.019-1.797-.53-1.648-.311-3.492-.443-1.625-.672-2.592-.672-3.131 0-1.25 3.313-.766 3.313 0 0 .344-.365 1.681-.417 3.131.311 1.659-.642 1.615-.486 3.678z"/><path fill="#CC9B7A" d="M10.311 27.5c0 .206.13.771.246 1.5h2.817c.164-.689.249-1.175.249-1.5 0-1.25-3.312-.766-3.312 0zm-3.957 0c0 .325.085.811.249 1.5H9.42c.116-.729.247-1.294.247-1.5 0-.766-3.313-1.25-3.313 0z"/><path fill="#D4AB88" d="M3.258 26.96c-.258.124-.503-.097-.619-.227-.328-.367-.583-1.246-.282-2.209.303-.973.6-2.384 1.199-4.002.081-.22.499-3.764.805-4.445.197-.437 1.28-.896 1.81-.807.529.089.246.651.105 1.13 0 0-.916 3.953-1.016 4.296-.316 1.079-1.624 2.918-1.565 4.237.031.692.06 1.255-.339 1.246-.049.362-.003.735-.098.781zm14.984-.2c.271.091.487-.159.586-.302.279-.405.422-1.309.004-2.227-.423-.927-.894-2.29-1.69-3.821-.108-.208-.966-3.672-1.355-4.309-.25-.409-1.382-.729-1.897-.574-.513.154-.162.676.037 1.134 0 0 1.403 3.807 1.546 4.135.449 1.031 1.977 2.691 2.082 4.008.056.69.097 1.253.492 1.194.094.353.095.729.195.762z"/><path fill="#292F33" d="M13.945 36c.305 0 .372-.418.089-.629-.379-.285-.88-1.371-1.561-1.371h-1.245c-.229 0-.49 1.209-.41 1.48.102.345.433.52.812.52h2.315zm-7.913 0c-.305 0-.372-.418-.089-.629.379-.285.88-1.371 1.561-1.371h1.245c.229 0 .49 1.209.41 1.48-.102.345-.433.52-.811.52H6.032z"/><path fill="#E75A70" d="M14.354 17.771L16 16c-1.438-1.792-4-2-4-2H8s-2.562.208-4 2l1.646 1.771S6.25 20.688 6.25 21 5 25.75 5 28h10c0-2.25-1.25-6.688-1.25-7s.604-3.229.604-3.229z"/><path fill="#DA2F47" d="M13.75 21c0-.106.07-.512.161-1H6.089c.092.488.161.894.161 1 0 .083-.122.509-.223 1h7.942c-.108-.558-.219-.917-.219-1z"/><path fill="#D4AB88" d="M8 11v4c0 1.104.896 2 2 2s2-.896 2-2v-4H8z"/><path fill="#CC9B7A" d="M12 11l-4 .019V15s2 1 4 0v-4z"/><path fill="#D4AB88" d="M15 3H5v6c0 2.762 2.238 5 5 5s5-2.237 5-5V3z"/><path fill="#963B22" d="M15 2H5L4 7c4 0 4-4 4-4s0 4 8 4l-1-5z"/><path fill="#DF1F32" d="M12 12H8s0 1 2 1 2-1 2-1z"/><circle fill="#662113" cx="7.5" cy="8.5" r=".5"/><circle fill="#662113" cx="12.5" cy="8.5" r=".5"/><path fill="#C1694F" d="M9 10h2s0 1-1 1-1-1-1-1z"/><path fill="#963B22" d="M33 6.001C33 2.687 30.313 0 27 0c-1.264 0-2.435.393-3.402 1.061C23.401 1.031 23.205 1 23 1c-2.209 0-4 1.791-4 4v6h14V6.001z"/><path fill="#D4AB88" d="M27.213 34.309c-.052.682 1.849.953 2.129.791.299-.173-.698-.623-.702-.977-.019-1.797.53-1.648.311-3.492.443-1.625.672-2.592.672-3.131 0-1.25-3.312-.766-3.312 0 0 .344.365 1.681.417 3.131-.313 1.659.641 1.615.485 3.678zm-2.448 0c.052.682-1.849.953-2.129.791-.299-.173.698-.623.702-.977.019-1.797-.53-1.648-.311-3.492-.443-1.625-.672-2.592-.672-3.131 0-1.25 3.312-.766 3.312 0 0 .344-.365 1.681-.417 3.131.312 1.659-.642 1.615-.485 3.678z"/><path fill="#CC9B7A" d="M26.311 27.5c0 .206.13.771.246 1.5h2.817c.164-.689.249-1.175.249-1.5 0-1.25-3.312-.766-3.312 0zm-3.957 0c0 .325.085.811.249 1.5h2.817c.116-.729.247-1.294.247-1.5 0-.766-3.313-1.25-3.313 0z"/><path fill="#D4AB88" d="M18.117 26.76c-.271.091-.487-.159-.586-.302-.279-.405-.422-1.309-.004-2.227.423-.927.702-2.072 1.69-3.821.115-.204.494-2.746 1.242-4.354.202-.435 1.495-.685 2.009-.529.513.154-.005.98-.037 1.134-.344 1.651-1.305 4.077-1.45 4.404-.8 1.806-1.965 2.389-2.071 3.706-.056.69-.205 1.286-.6 1.228-.092.352-.094.728-.193.761zm14.595.204c.257.126.504-.094.62-.222.33-.365.591-1.242.296-2.208-.297-.975-.424-2.146-1.174-4.01-.088-.217-.129-2.787-.66-4.479-.143-.458-1.392-.875-1.922-.789-.529.086-.124.972-.112 1.129.124 1.682.758 4.213.859 4.556.556 1.895 1.634 2.626 1.566 3.946-.036.692.034 1.302.433 1.296.048.363 0 .735.094.781z"/><path fill="#292F33" d="M29.945 36c.305 0 .372-.418.089-.629-.379-.285-.88-1.371-1.561-1.371h-1.245c-.229 0-.49 1.209-.41 1.48.102.345.433.52.812.52h2.315zm-7.913 0c-.305 0-.372-.418-.089-.629.379-.285.88-1.371 1.561-1.371h1.245c.229 0 .49 1.209.41 1.48-.102.345-.433.52-.811.52h-2.316z"/><path fill="#9268CA" d="M30.354 17.771L32 16c-1.438-1.792-4-2-4-2h-4s-2.562.208-4 2l1.646 1.771s.604 2.917.604 3.229S21 25.75 21 28h10c0-2.25-1.25-6.688-1.25-7s.604-3.229.604-3.229z"/><path fill="#AA8ED6" d="M29.75 21c0-.106.07-.512.161-1h-7.822c.092.488.161.894.161 1 0 .083-.122.509-.223 1h7.942c-.108-.558-.219-.917-.219-1z"/><path fill="#D4AB88" d="M24 11v4c0 1.104.896 2 2 2s2-.896 2-2v-4h-4z"/><path fill="#CC9B7A" d="M28 11l-4 .019V15s2 1 4 0v-4z"/><path fill="#D4AB88" d="M31 3H21v6c0 2.762 2.238 5 5 5s5-2.237 5-5V3z"/><path fill="#963B22" d="M31 2H21l-1 5c4 0 4-4 4-4s0 4 8 4l-1-5z"/><path fill="#DF1F32" d="M28 12h-4s0 1 2 1 2-1 2-1z"/><circle fill="#662113" cx="23.5" cy="8.5" r=".5"/><circle fill="#662113" cx="28.5" cy="8.5" r=".5"/><path fill="#C1694F" d="M25 10h2s0 1-1 1-1-1-1-1z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f46d-1f3fe.svg b/public/emoji/1f46d-1f3fe.svg
new file mode 100644
index 0000000000000000000000000000000000000000..d122ab64f1665eaedfbd3d227f255b34879c8101
--- /dev/null
+++ b/public/emoji/1f46d-1f3fe.svg
@@ -0,0 +1 @@
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#60352A" d="M11 0C9.736 0 8.565.393 7.598 1.061 7.401 1.031 7.205 1 7 1 4.791 1 3 2.791 3 5v6c0 3.866 3.134 7 7 7s7-3.134 7-7V6.001C17 2.687 14.314 0 11 0z"/><path fill="#AF7E57" d="M11.213 34.309c-.052.682 1.849.953 2.129.791.299-.173-.698-.623-.702-.977-.019-1.797.53-1.648.311-3.492.443-1.625.672-2.592.672-3.131 0-1.25-3.312-.766-3.312 0 0 .344.365 1.681.417 3.131-.313 1.659.641 1.615.485 3.678zm-2.448 0c.052.682-1.849.953-2.129.791-.299-.173.698-.623.702-.977.019-1.797-.53-1.648-.311-3.492-.443-1.625-.672-2.592-.672-3.131 0-1.25 3.313-.766 3.313 0 0 .344-.365 1.681-.417 3.131.311 1.659-.642 1.615-.486 3.678z"/><path fill="#9B6A49" d="M10.311 27.5c0 .206.13.771.246 1.5h2.817c.164-.689.249-1.175.249-1.5 0-1.25-3.312-.766-3.312 0zm-3.957 0c0 .325.085.811.249 1.5H9.42c.116-.729.247-1.294.247-1.5 0-.766-3.313-1.25-3.313 0z"/><path fill="#AF7E57" d="M3.258 26.96c-.258.124-.503-.097-.619-.227-.328-.367-.583-1.246-.282-2.209.303-.973.6-2.384 1.199-4.002.081-.22.499-3.764.805-4.445.197-.437 1.28-.896 1.81-.807.529.089.246.651.105 1.13 0 0-.916 3.953-1.016 4.296-.316 1.079-1.624 2.918-1.565 4.237.031.692.06 1.255-.339 1.246-.049.362-.003.735-.098.781zm14.984-.2c.271.091.487-.159.586-.302.279-.405.422-1.309.004-2.227-.423-.927-.894-2.29-1.69-3.821-.108-.208-.966-3.672-1.355-4.309-.25-.409-1.382-.729-1.897-.574-.513.154-.162.676.037 1.134 0 0 1.403 3.807 1.546 4.135.449 1.031 1.977 2.691 2.082 4.008.056.69.097 1.253.492 1.194.094.353.095.729.195.762z"/><path fill="#292F33" d="M13.945 36c.305 0 .372-.418.089-.629-.379-.285-.88-1.371-1.561-1.371h-1.245c-.229 0-.49 1.209-.41 1.48.102.345.433.52.812.52h2.315zm-7.913 0c-.305 0-.372-.418-.089-.629.379-.285.88-1.371 1.561-1.371h1.245c.229 0 .49 1.209.41 1.48-.102.345-.433.52-.811.52H6.032z"/><path fill="#E75A70" d="M14.354 17.771L16 16c-1.438-1.792-4-2-4-2H8s-2.562.208-4 2l1.646 1.771S6.25 20.688 6.25 21 5 25.75 5 28h10c0-2.25-1.25-6.688-1.25-7s.604-3.229.604-3.229z"/><path fill="#DA2F47" d="M13.75 21c0-.106.07-.512.161-1H6.089c.092.488.161.894.161 1 0 .083-.122.509-.223 1h7.942c-.108-.558-.219-.917-.219-1z"/><path fill="#AF7E57" d="M8 11v4c0 1.104.896 2 2 2s2-.896 2-2v-4H8z"/><path fill="#9B6A49" d="M12 11l-4 .019V15s2 1 4 0v-4z"/><path fill="#AF7E57" d="M15 3H5v6c0 2.762 2.238 5 5 5s5-2.237 5-5V3z"/><path fill="#60352A" d="M15 2H5L4 7c4 0 4-4 4-4s0 4 8 4l-1-5z"/><path fill="#DF1F32" d="M12 12H8s0 1 2 1 2-1 2-1z"/><circle fill="#662113" cx="7.5" cy="8.5" r=".5"/><circle fill="#662113" cx="12.5" cy="8.5" r=".5"/><path fill="#915A34" d="M9 10h2s0 1-1 1-1-1-1-1z"/><path fill="#60352A" d="M33 6.001C33 2.687 30.313 0 27 0c-1.264 0-2.435.393-3.402 1.061C23.401 1.031 23.205 1 23 1c-2.209 0-4 1.791-4 4v6h14V6.001z"/><path fill="#AF7E57" d="M27.213 34.309c-.052.682 1.849.953 2.129.791.299-.173-.698-.623-.702-.977-.019-1.797.53-1.648.311-3.492.443-1.625.672-2.592.672-3.131 0-1.25-3.312-.766-3.312 0 0 .344.365 1.681.417 3.131-.313 1.659.641 1.615.485 3.678zm-2.448 0c.052.682-1.849.953-2.129.791-.299-.173.698-.623.702-.977.019-1.797-.53-1.648-.311-3.492-.443-1.625-.672-2.592-.672-3.131 0-1.25 3.312-.766 3.312 0 0 .344-.365 1.681-.417 3.131.312 1.659-.642 1.615-.485 3.678z"/><path fill="#9B6A49" d="M26.311 27.5c0 .206.13.771.246 1.5h2.817c.164-.689.249-1.175.249-1.5 0-1.25-3.312-.766-3.312 0zm-3.957 0c0 .325.085.811.249 1.5h2.817c.116-.729.247-1.294.247-1.5 0-.766-3.313-1.25-3.313 0z"/><path fill="#AF7E57" d="M18.117 26.76c-.271.091-.487-.159-.586-.302-.279-.405-.422-1.309-.004-2.227.423-.927.702-2.072 1.69-3.821.115-.204.494-2.746 1.242-4.354.202-.435 1.495-.685 2.009-.529.513.154-.005.98-.037 1.134-.344 1.651-1.305 4.077-1.45 4.404-.8 1.806-1.965 2.389-2.071 3.706-.056.69-.205 1.286-.6 1.228-.092.352-.094.728-.193.761zm14.595.204c.257.126.504-.094.62-.222.33-.365.591-1.242.296-2.208-.297-.975-.424-2.146-1.174-4.01-.088-.217-.129-2.787-.66-4.479-.143-.458-1.392-.875-1.922-.789-.529.086-.124.972-.112 1.129.124 1.682.758 4.213.859 4.556.556 1.895 1.634 2.626 1.566 3.946-.036.692.034 1.302.433 1.296.048.363 0 .735.094.781z"/><path fill="#292F33" d="M29.945 36c.305 0 .372-.418.089-.629-.379-.285-.88-1.371-1.561-1.371h-1.245c-.229 0-.49 1.209-.41 1.48.102.345.433.52.812.52h2.315zm-7.913 0c-.305 0-.372-.418-.089-.629.379-.285.88-1.371 1.561-1.371h1.245c.229 0 .49 1.209.41 1.48-.102.345-.433.52-.811.52h-2.316z"/><path fill="#9268CA" d="M30.354 17.771L32 16c-1.438-1.792-4-2-4-2h-4s-2.562.208-4 2l1.646 1.771s.604 2.917.604 3.229S21 25.75 21 28h10c0-2.25-1.25-6.688-1.25-7s.604-3.229.604-3.229z"/><path fill="#AA8ED6" d="M29.75 21c0-.106.07-.512.161-1h-7.822c.092.488.161.894.161 1 0 .083-.122.509-.223 1h7.942c-.108-.558-.219-.917-.219-1z"/><path fill="#AF7E57" d="M24 11v4c0 1.104.896 2 2 2s2-.896 2-2v-4h-4z"/><path fill="#9B6A49" d="M28 11l-4 .019V15s2 1 4 0v-4z"/><path fill="#AF7E57" d="M31 3H21v6c0 2.762 2.238 5 5 5s5-2.237 5-5V3z"/><path fill="#60352A" d="M31 2H21l-1 5c4 0 4-4 4-4s0 4 8 4l-1-5z"/><path fill="#DF1F32" d="M28 12h-4s0 1 2 1 2-1 2-1z"/><circle fill="#662113" cx="23.5" cy="8.5" r=".5"/><circle fill="#662113" cx="28.5" cy="8.5" r=".5"/><path fill="#915A34" d="M25 10h2s0 1-1 1-1-1-1-1z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f46d-1f3ff.svg b/public/emoji/1f46d-1f3ff.svg
new file mode 100644
index 0000000000000000000000000000000000000000..5f292d55d1b13443c996b8accb17f8b01782acf1
--- /dev/null
+++ b/public/emoji/1f46d-1f3ff.svg
@@ -0,0 +1 @@
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#0B0200" d="M11 0C9.736 0 8.565.393 7.598 1.061 7.401 1.031 7.205 1 7 1 4.791 1 3 2.791 3 5v6c0 3.866 3.134 7 7 7s7-3.134 7-7V6.001C17 2.687 14.314 0 11 0z"/><path fill="#7C533E" d="M11.213 34.309c-.052.682 1.849.953 2.129.791.299-.173-.698-.623-.702-.977-.019-1.797.53-1.648.311-3.492.443-1.625.672-2.592.672-3.131 0-1.25-3.312-.766-3.312 0 0 .344.365 1.681.417 3.131-.313 1.659.641 1.615.485 3.678zm-2.448 0c.052.682-1.849.953-2.129.791-.299-.173.698-.623.702-.977.019-1.797-.53-1.648-.311-3.492-.443-1.625-.672-2.592-.672-3.131 0-1.25 3.313-.766 3.313 0 0 .344-.365 1.681-.417 3.131.311 1.659-.642 1.615-.486 3.678z"/><path fill="#664131" d="M10.311 27.5c0 .206.13.771.246 1.5h2.817c.164-.689.249-1.175.249-1.5 0-1.25-3.312-.766-3.312 0zm-3.957 0c0 .325.085.811.249 1.5H9.42c.116-.729.247-1.294.247-1.5 0-.766-3.313-1.25-3.313 0z"/><path fill="#7C533E" d="M3.258 26.96c-.258.124-.503-.097-.619-.227-.328-.367-.583-1.246-.282-2.209.303-.973.6-2.384 1.199-4.002.081-.22.499-3.764.805-4.445.197-.437 1.28-.896 1.81-.807.529.089.246.651.105 1.13 0 0-.916 3.953-1.016 4.296-.316 1.079-1.624 2.918-1.565 4.237.031.692.06 1.255-.339 1.246-.049.362-.003.735-.098.781zm14.984-.2c.271.091.487-.159.586-.302.279-.405.422-1.309.004-2.227-.423-.927-.894-2.29-1.69-3.821-.108-.208-.966-3.672-1.355-4.309-.25-.409-1.382-.729-1.897-.574-.513.154-.162.676.037 1.134 0 0 1.403 3.807 1.546 4.135.449 1.031 1.977 2.691 2.082 4.008.056.69.097 1.253.492 1.194.094.353.095.729.195.762z"/><path fill="#292F33" d="M13.945 36c.305 0 .372-.418.089-.629-.379-.285-.88-1.371-1.561-1.371h-1.245c-.229 0-.49 1.209-.41 1.48.102.345.433.52.812.52h2.315zm-7.913 0c-.305 0-.372-.418-.089-.629.379-.285.88-1.371 1.561-1.371h1.245c.229 0 .49 1.209.41 1.48-.102.345-.433.52-.811.52H6.032z"/><path fill="#E75A70" d="M14.354 17.771L16 16c-1.438-1.792-4-2-4-2H8s-2.562.208-4 2l1.646 1.771S6.25 20.688 6.25 21 5 25.75 5 28h10c0-2.25-1.25-6.688-1.25-7s.604-3.229.604-3.229z"/><path fill="#DA2F47" d="M13.75 21c0-.106.07-.512.161-1H6.089c.092.488.161.894.161 1 0 .083-.122.509-.223 1h7.942c-.108-.558-.219-.917-.219-1z"/><path fill="#7C533E" d="M8 11v4c0 1.104.896 2 2 2s2-.896 2-2v-4H8z"/><path fill="#664131" d="M12 11l-4 .019V15s2 1 4 0v-4z"/><path fill="#7C533E" d="M15 3H5v6c0 2.762 2.238 5 5 5s5-2.237 5-5V3z"/><path fill="#0B0200" d="M15 2H5L4 7c4 0 4-4 4-4s0 4 8 4l-1-5z"/><path fill="#DF1F32" d="M12 12H8s0 1 2 1 2-1 2-1z"/><circle cx="7.5" cy="8.5" r=".5"/><circle cx="12.5" cy="8.5" r=".5"/><path fill="#3D2E24" d="M9 10h2s0 1-1 1-1-1-1-1z"/><path fill="#0B0200" d="M33 6.001C33 2.687 30.313 0 27 0c-1.264 0-2.435.393-3.402 1.061C23.401 1.031 23.205 1 23 1c-2.209 0-4 1.791-4 4v6h14V6.001z"/><path fill="#7C533E" d="M27.213 34.309c-.052.682 1.849.953 2.129.791.299-.173-.698-.623-.702-.977-.019-1.797.53-1.648.311-3.492.443-1.625.672-2.592.672-3.131 0-1.25-3.312-.766-3.312 0 0 .344.365 1.681.417 3.131-.313 1.659.641 1.615.485 3.678zm-2.448 0c.052.682-1.849.953-2.129.791-.299-.173.698-.623.702-.977.019-1.797-.53-1.648-.311-3.492-.443-1.625-.672-2.592-.672-3.131 0-1.25 3.312-.766 3.312 0 0 .344-.365 1.681-.417 3.131.312 1.659-.642 1.615-.485 3.678z"/><path fill="#664131" d="M26.311 27.5c0 .206.13.771.246 1.5h2.817c.164-.689.249-1.175.249-1.5 0-1.25-3.312-.766-3.312 0zm-3.957 0c0 .325.085.811.249 1.5h2.817c.116-.729.247-1.294.247-1.5 0-.766-3.313-1.25-3.313 0z"/><path fill="#7C533E" d="M18.117 26.76c-.271.091-.487-.159-.586-.302-.279-.405-.422-1.309-.004-2.227.423-.927.702-2.072 1.69-3.821.115-.204.494-2.746 1.242-4.354.202-.435 1.495-.685 2.009-.529.513.154-.005.98-.037 1.134-.344 1.651-1.305 4.077-1.45 4.404-.8 1.806-1.965 2.389-2.071 3.706-.056.69-.205 1.286-.6 1.228-.092.352-.094.728-.193.761zm14.595.204c.257.126.504-.094.62-.222.33-.365.591-1.242.296-2.208-.297-.975-.424-2.146-1.174-4.01-.088-.217-.129-2.787-.66-4.479-.143-.458-1.392-.875-1.922-.789-.529.086-.124.972-.112 1.129.124 1.682.758 4.213.859 4.556.556 1.895 1.634 2.626 1.566 3.946-.036.692.034 1.302.433 1.296.048.363 0 .735.094.781z"/><path fill="#292F33" d="M29.945 36c.305 0 .372-.418.089-.629-.379-.285-.88-1.371-1.561-1.371h-1.245c-.229 0-.49 1.209-.41 1.48.102.345.433.52.812.52h2.315zm-7.913 0c-.305 0-.372-.418-.089-.629.379-.285.88-1.371 1.561-1.371h1.245c.229 0 .49 1.209.41 1.48-.102.345-.433.52-.811.52h-2.316z"/><path fill="#9268CA" d="M30.354 17.771L32 16c-1.438-1.792-4-2-4-2h-4s-2.562.208-4 2l1.646 1.771s.604 2.917.604 3.229S21 25.75 21 28h10c0-2.25-1.25-6.688-1.25-7s.604-3.229.604-3.229z"/><path fill="#AA8ED6" d="M29.75 21c0-.106.07-.512.161-1h-7.822c.092.488.161.894.161 1 0 .083-.122.509-.223 1h7.942c-.108-.558-.219-.917-.219-1z"/><path fill="#7C533E" d="M24 11v4c0 1.104.896 2 2 2s2-.896 2-2v-4h-4z"/><path fill="#664131" d="M28 11l-4 .019V15s2 1 4 0v-4z"/><path fill="#7C533E" d="M31 3H21v6c0 2.762 2.238 5 5 5s5-2.237 5-5V3z"/><path fill="#0B0200" d="M31 2H21l-1 5c4 0 4-4 4-4s0 4 8 4l-1-5z"/><path fill="#DF1F32" d="M28 12h-4s0 1 2 1 2-1 2-1z"/><circle cx="23.5" cy="8.5" r=".5"/><circle cx="28.5" cy="8.5" r=".5"/><path fill="#3D2E24" d="M25 10h2s0 1-1 1-1-1-1-1z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f46d.svg b/public/emoji/1f46d.svg
index 29d2b85970ba6a702df87e066de7bafd57397412..8f8ea9cfbb8520233e70427164907d86869b2d71 100644
--- a/public/emoji/1f46d.svg
+++ b/public/emoji/1f46d.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#FFAC33" d="M11 0C9.736 0 8.565.393 7.598 1.061 7.401 1.031 7.205 1 7 1 4.791 1 3 2.791 3 5v6c0 3.866 3.134 7 7 7s7-3.134 7-7V6.001C17 2.687 14.314 0 11 0z"/><path fill="#FFDC5D" d="M6 27h3v8H6zm5 0h3v8h-3z"/><path fill="#F9CA55" d="M6 27h3v1H6zm5 0h3v1h-3z"/><path fill="#292F33" d="M5 36v-1s0-1 2-1 2 1 2 1v1H5zm6 0v-1s0-1 2-1 2 1 2 1v1h-4z"/><path fill="#FFDC5D" d="M.999 26c-.164 0-.331-.04-.485-.126-.482-.269-.657-.877-.388-1.359l5-9c.268-.483.876-.657 1.36-.388.482.268.657.877.388 1.36l-5 9c-.183.328-.523.513-.875.513zm18.002 0c-.352 0-.692-.185-.875-.515l-5-9c-.269-.483-.094-1.092.388-1.36.483-.269 1.092-.094 1.36.388l5 9c.269.483.095 1.091-.389 1.359-.153.088-.32.128-.484.128z"/><path fill="#E75A70" d="M4 27h12l-2-6v-4h2v-1c0-1.104-.896-2-2-2H6c-1.104 0-2 .896-2 2v1h2v4l-2 6z"/><path fill="#DA2F47" d="M6 19h8v2H6z"/><path fill="#FFDC5D" d="M8 11v4c0 1.104.896 2 2 2s2-.896 2-2v-4H8z"/><path fill="#F9CA55" d="M12 11l-4 .019V15s2 1 4 0v-4z"/><path fill="#FFDC5D" d="M15 3H5v6c0 2.762 2.238 5 5 5s5-2.237 5-5V3z"/><path fill="#FFAC33" d="M8 3s0 4 8 4V3H8zm0 0s0 4-4 4V3h4z"/><path fill="#DF1F32" d="M12 12H8s0 1 2 1 2-1 2-1z"/><circle fill="#662113" cx="7.5" cy="8.5" r=".5"/><circle fill="#662113" cx="12.5" cy="8.5" r=".5"/><path fill="#C1694F" d="M9 10h2s0 1-1 1-1-1-1-1z"/><path fill="#FFAC33" d="M33 6.001C33 2.687 30.313 0 27 0c-1.264 0-2.435.393-3.402 1.061C23.401 1.031 23.205 1 23 1c-2.209 0-4 1.791-4 4v6h4.685c.949.631 2.088 1 3.315 1 1.226 0 2.364-.369 3.315-1H33V6.001z"/><path fill="#FFDC5D" d="M22 27h3v8h-3zm5 0h3v8h-3z"/><path fill="#F9CA55" d="M22 27h3v1h-3zm5 0h3v1h-3z"/><path fill="#292F33" d="M21 36v-1s0-1 2-1 2 1 2 1v1h-4zm6 0v-1s0-1 2-1 2 1 2 1v1h-4z"/><path fill="#FFDC5D" d="M16.999 26c-.164 0-.331-.04-.485-.126-.483-.269-.657-.877-.388-1.359l5-9c.268-.483.878-.657 1.359-.388.483.268.657.877.389 1.36l-5 9c-.183.328-.523.513-.875.513zm18.002 0c-.352 0-.692-.185-.875-.515l-5-9c-.269-.483-.095-1.092.389-1.36.483-.269 1.092-.094 1.359.388l5 9c.269.483.095 1.091-.389 1.359-.153.088-.32.128-.484.128z"/><path fill="#9268CA" d="M32 17v-1c0-1.104-.896-2-2-2h-8c-1.104 0-2 .896-2 2v1h2v4l-2 6h12l-2-6v-4h2z"/><path fill="#AA8ED6" d="M22 19h8v2h-8z"/><path fill="#FFDC5D" d="M24 11v4c0 1.104.896 2 2 2s2-.896 2-2v-4h-4z"/><path fill="#F9CA55" d="M28 11l-4 .019V15s2 1 4 0v-4z"/><path fill="#FFDC5D" d="M31 3H21v6c0 2.762 2.238 5 5 5s5-2.237 5-5V3z"/><path fill="#FFAC33" d="M24 3s0 4 8 4V3h-8zm0 0s0 4-4 4V3h4z"/><path fill="#DF1F32" d="M28 12h-4s0 1 2 1 2-1 2-1z"/><circle fill="#662113" cx="23.5" cy="8.5" r=".5"/><circle fill="#662113" cx="28.5" cy="8.5" r=".5"/><path fill="#C1694F" d="M25 10h2s0 1-1 1-1-1-1-1z"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#FFAC33" d="M11 0C9.736 0 8.565.393 7.598 1.061 7.401 1.031 7.205 1 7 1 4.791 1 3 2.791 3 5v6c0 3.866 3.134 7 7 7s7-3.134 7-7V6.001C17 2.687 14.314 0 11 0z"/><path fill="#FFDC5D" d="M11.213 34.309c-.052.682 1.849.953 2.129.791.299-.173-.698-.623-.702-.977-.019-1.797.53-1.648.311-3.492.443-1.625.672-2.592.672-3.131 0-1.25-3.312-.766-3.312 0 0 .344.365 1.681.417 3.131-.313 1.659.641 1.615.485 3.678zm-2.448 0c.052.682-1.849.953-2.129.791-.299-.173.698-.623.702-.977.019-1.797-.53-1.648-.311-3.492-.443-1.625-.672-2.592-.672-3.131 0-1.25 3.313-.766 3.313 0 0 .344-.365 1.681-.417 3.131.311 1.659-.642 1.615-.486 3.678z"/><path fill="#F9CA55" d="M10.311 27.5c0 .206.13.771.246 1.5h2.817c.164-.689.249-1.175.249-1.5 0-1.25-3.312-.766-3.312 0zm-3.957 0c0 .325.085.811.249 1.5H9.42c.116-.729.247-1.294.247-1.5 0-.766-3.313-1.25-3.313 0z"/><path fill="#FFDC5D" d="M3.258 26.96c-.258.124-.503-.097-.619-.227-.328-.367-.583-1.246-.282-2.209.303-.973.6-2.384 1.199-4.002.081-.22.499-3.764.805-4.445.197-.437 1.28-.896 1.81-.807.529.089.246.651.105 1.13 0 0-.916 3.953-1.016 4.296-.316 1.079-1.624 2.918-1.565 4.237.031.692.06 1.255-.339 1.246-.049.362-.003.735-.098.781zm14.984-.2c.271.091.487-.159.586-.302.279-.405.422-1.309.004-2.227-.423-.927-.894-2.29-1.69-3.821-.108-.208-.966-3.672-1.355-4.309-.25-.409-1.382-.729-1.897-.574-.513.154-.162.676.037 1.134 0 0 1.403 3.807 1.546 4.135.449 1.031 1.977 2.691 2.082 4.008.056.69.097 1.253.492 1.194.094.353.095.729.195.762z"/><path fill="#292F33" d="M13.945 36c.305 0 .372-.418.089-.629-.379-.285-.88-1.371-1.561-1.371h-1.245c-.229 0-.49 1.209-.41 1.48.102.345.433.52.812.52h2.315zm-7.913 0c-.305 0-.372-.418-.089-.629.379-.285.88-1.371 1.561-1.371h1.245c.229 0 .49 1.209.41 1.48-.102.345-.433.52-.811.52H6.032z"/><path fill="#E75A70" d="M14.354 17.771L16 16c-1.438-1.792-4-2-4-2H8s-2.562.208-4 2l1.646 1.771S6.25 20.688 6.25 21 5 25.75 5 28h10c0-2.25-1.25-6.688-1.25-7s.604-3.229.604-3.229z"/><path fill="#DA2F47" d="M13.75 21c0-.106.07-.512.161-1H6.089c.092.488.161.894.161 1 0 .083-.122.509-.223 1h7.942c-.108-.558-.219-.917-.219-1z"/><path fill="#FFDC5D" d="M8 11v4c0 1.104.896 2 2 2s2-.896 2-2v-4H8z"/><path fill="#F9CA55" d="M12 11l-4 .019V15s2 1 4 0v-4z"/><path fill="#FFDC5D" d="M15 3H5v6c0 2.762 2.238 5 5 5s5-2.237 5-5V3z"/><path fill="#FFAC33" d="M15 2H5L4 7c4 0 4-4 4-4s0 4 8 4l-1-5z"/><path fill="#DF1F32" d="M12 12H8s0 1 2 1 2-1 2-1z"/><circle fill="#662113" cx="7.5" cy="8.5" r=".5"/><circle fill="#662113" cx="12.5" cy="8.5" r=".5"/><path fill="#C1694F" d="M9 10h2s0 1-1 1-1-1-1-1z"/><path fill="#FFAC33" d="M33 6.001C33 2.687 30.313 0 27 0c-1.264 0-2.435.393-3.402 1.061C23.401 1.031 23.205 1 23 1c-2.209 0-4 1.791-4 4v6h14V6.001z"/><path fill="#FFDC5D" d="M27.213 34.309c-.052.682 1.849.953 2.129.791.299-.173-.698-.623-.702-.977-.019-1.797.53-1.648.311-3.492.443-1.625.672-2.592.672-3.131 0-1.25-3.312-.766-3.312 0 0 .344.365 1.681.417 3.131-.313 1.659.641 1.615.485 3.678zm-2.448 0c.052.682-1.849.953-2.129.791-.299-.173.698-.623.702-.977.019-1.797-.53-1.648-.311-3.492-.443-1.625-.672-2.592-.672-3.131 0-1.25 3.312-.766 3.312 0 0 .344-.365 1.681-.417 3.131.312 1.659-.642 1.615-.485 3.678z"/><path fill="#F9CA55" d="M26.311 27.5c0 .206.13.771.246 1.5h2.817c.164-.689.249-1.175.249-1.5 0-1.25-3.312-.766-3.312 0zm-3.957 0c0 .325.085.811.249 1.5h2.817c.116-.729.247-1.294.247-1.5 0-.766-3.313-1.25-3.313 0z"/><path fill="#FFDC5D" d="M18.117 26.76c-.271.091-.487-.159-.586-.302-.279-.405-.422-1.309-.004-2.227.423-.927.702-2.072 1.69-3.821.115-.204.494-2.746 1.242-4.354.202-.435 1.495-.685 2.009-.529.513.154-.005.98-.037 1.134-.344 1.651-1.305 4.077-1.45 4.404-.8 1.806-1.965 2.389-2.071 3.706-.056.69-.205 1.286-.6 1.228-.092.352-.094.728-.193.761zm14.595.204c.257.126.504-.094.62-.222.33-.365.591-1.242.296-2.208-.297-.975-.424-2.146-1.174-4.01-.088-.217-.129-2.787-.66-4.479-.143-.458-1.392-.875-1.922-.789-.529.086-.124.972-.112 1.129.124 1.682.758 4.213.859 4.556.556 1.895 1.634 2.626 1.566 3.946-.036.692.034 1.302.433 1.296.048.363 0 .735.094.781z"/><path fill="#292F33" d="M29.945 36c.305 0 .372-.418.089-.629-.379-.285-.88-1.371-1.561-1.371h-1.245c-.229 0-.49 1.209-.41 1.48.102.345.433.52.812.52h2.315zm-7.913 0c-.305 0-.372-.418-.089-.629.379-.285.88-1.371 1.561-1.371h1.245c.229 0 .49 1.209.41 1.48-.102.345-.433.52-.811.52h-2.316z"/><path fill="#9268CA" d="M30.354 17.771L32 16c-1.438-1.792-4-2-4-2h-4s-2.562.208-4 2l1.646 1.771s.604 2.917.604 3.229S21 25.75 21 28h10c0-2.25-1.25-6.688-1.25-7s.604-3.229.604-3.229z"/><path fill="#AA8ED6" d="M29.75 21c0-.106.07-.512.161-1h-7.822c.092.488.161.894.161 1 0 .083-.122.509-.223 1h7.942c-.108-.558-.219-.917-.219-1z"/><path fill="#FFDC5D" d="M24 11v4c0 1.104.896 2 2 2s2-.896 2-2v-4h-4z"/><path fill="#F9CA55" d="M28 11l-4 .019V15s2 1 4 0v-4z"/><path fill="#FFDC5D" d="M31 3H21v6c0 2.762 2.238 5 5 5s5-2.237 5-5V3z"/><path fill="#FFAC33" d="M31 2H21l-1 5c4 0 4-4 4-4s0 4 8 4l-1-5z"/><path fill="#DF1F32" d="M28 12h-4s0 1 2 1 2-1 2-1z"/><circle fill="#662113" cx="23.5" cy="8.5" r=".5"/><circle fill="#662113" cx="28.5" cy="8.5" r=".5"/><path fill="#C1694F" d="M25 10h2s0 1-1 1-1-1-1-1z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f46f-200d-2640-fe0f.svg b/public/emoji/1f46f-200d-2640-fe0f.svg
index 4d00a954a4696273137f04f0581f424ad7792004..6559253b8ec01410ec0134190ce835f53583eb96 100644
--- a/public/emoji/1f46f-200d-2640-fe0f.svg
+++ b/public/emoji/1f46f-200d-2640-fe0f.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#FFDC5D" d="M8 35H5l1-9.712h3zm5.875-1.208l-1.834-1.333s3.167-3.012 2.531-3.994c-.636-.981-3.782-1.688-3.782-1.688l1.918-2.307s3.958 1.904 4.77 3.333c.827 1.452-3.603 5.989-3.603 5.989z"/><path fill="#292F33" d="M4 36v-1s0-1 2-1 2 1 2 1v1H4zm10.553-.517l.421-.908s.419-.907-1.396-1.747c-1.813-.841-2.233.066-2.233.066l-.42.907 3.628 1.682z"/><path fill="#FFDC5D" d="M5 26.288c-.256 0-.512-.098-.707-.293l-3-3c-.36-.36-.392-.934-.074-1.332l4-3.288c.345-.432.975-.501 1.405-.156.432.345.501.974.156 1.406l-3.44 2.589 2.367 2.367c.391.391.391 1.023 0 1.414-.195.195-.451.293-.707.293zm10 0c-.256 0-.512-.098-.707-.293-.391-.391-.391-1.023 0-1.414l2.367-2.367-3.441-2.589c-.345-.432-.275-1.06.156-1.406.43-.345 1.06-.276 1.405.156l4.001 3.288c.318.398.286.972-.074 1.332l-3 3c-.195.195-.451.293-.707.293z"/><path fill="#292F33" d="M16 19c0-1.104-.896-2-2-2H6c-1.104 0-2 .896-2 2v1h2v5.288l3 2h2l3-2V20h2v-1z"/><path fill="#FFDC5D" d="M12 17v-3H8v3H7v1s0 3 3 3 3-3 3-3v-1h-1z"/><path fill="#F9CA55" d="M12 14l-4 .019V18s2 1 4 0v-4z"/><path fill="#FFAC33" d="M17 9.001C17 5.687 14.313 3 10.999 3c-1.263 0-2.434.393-3.401 1.06C7.401 4.031 7.204 4 7 4 4.791 4 3 5.791 3 8v6h2.422C5.153 13.387 5 12.713 5 12V9.894C7.989 9.285 8 6 8 6s.019 3.644 7 3.968V12c0 .712-.154 1.387-.422 2H17V9.001z"/><path fill="#FFDC5D" d="M15 12V9.968C8.018 9.644 8 6 8 6s-.011 3.285-3 3.894V12c0 .712.154 1.387.422 2 .772 1.765 2.528 3 4.578 3 2.05 0 3.807-1.235 4.579-3 .267-.613.421-1.287.421-2z"/><path fill="#DF1F32" d="M12 15H8s0 1 2 1 2-1 2-1z"/><circle fill="#662113" cx="7.5" cy="11.5" r=".5"/><circle fill="#662113" cx="12.5" cy="11.5" r=".5"/><path fill="#C1694F" d="M9 13h2s0 1-1 1-1-1-1-1z"/><path fill="#292F33" d="M4.687 1.125c2.625-.219 3.75 2.875 3 4.25-1.968 0-3.937-1.813-3-4.25zm9.988.063c-2.625-.219-3.75 2.875-3 4.25 1.968 0 3.937-1.813 3-4.25z"/><path fill="#292F33" d="M7.312 4.25c1.812-1.438 4.344-1.062 5.156.156.031.312-.37 1.178-.688 1.031-.811-.375-2.186-.937-4.061-.062-.094-.063-.441-1.098-.407-1.125z"/><path fill="#FFDC5D" d="M24 35h-3l1-9.712h3zm5.875-1.208l-1.833-1.333s3.167-3.012 2.531-3.994c-.636-.981-3.782-1.688-3.782-1.688l1.918-2.307s3.958 1.904 4.77 3.333c.826 1.452-3.604 5.989-3.604 5.989z"/><path fill="#292F33" d="M30.553 35.483l.422-.908s.418-.907-1.396-1.747c-1.812-.841-2.232.066-2.232.066l-.42.907 3.626 1.682zM20 36v-1s0-1 2-1 2 1 2 1v1h-4z"/><path fill="#FFDC5D" d="M21 26.288c-.256 0-.512-.098-.707-.293l-3-3c-.36-.36-.392-.934-.074-1.332l4-3.288c.346-.432.976-.501 1.406-.156.432.345.501.974.156 1.406l-3.441 2.589 2.367 2.367c.391.391.391 1.023 0 1.414-.195.195-.451.293-.707.293zm10 0c-.256 0-.512-.098-.707-.293-.391-.391-.391-1.023 0-1.414l2.367-2.367-3.441-2.589c-.345-.432-.275-1.06.156-1.406.431-.345 1.06-.276 1.406.156l4 3.288c.318.398.286.972-.074 1.332l-3 3c-.195.195-.451.293-.707.293z"/><path fill="#292F33" d="M32 19c0-1.104-.896-2-2-2h-8c-1.104 0-2 .896-2 2v1h2v5.288l3 2h2l3-2V20h2v-1z"/><path fill="#FFDC5D" d="M28 17v-3h-4v3h-1v1s0 3 3 3 3-3 3-3v-1h-1z"/><path fill="#F9CA55" d="M28 14l-4 .019V18s2 1 4 0v-4z"/><path fill="#FFAC33" d="M33 9.001C33 5.687 30.313 3 27 3c-1.264 0-2.435.393-3.402 1.06C23.401 4.031 23.205 4 23 4c-2.209 0-4 1.791-4 4v6h2.422c-.269-.613-.422-1.287-.422-2V9.894C23.989 9.285 24 6 24 6s.019 3.644 7 3.968V12c0 .712-.154 1.387-.422 2H33V9.001z"/><path fill="#FFDC5D" d="M31 12V9.968C24.018 9.644 24 6 24 6s-.011 3.285-3 3.894V12c0 .712.154 1.387.422 2 .772 1.765 2.529 3 4.578 3s3.806-1.235 4.578-3c.268-.613.422-1.287.422-2z"/><path fill="#DF1F32" d="M28 15h-4s0 1 2 1 2-1 2-1z"/><circle fill="#662113" cx="23.5" cy="11.5" r=".5"/><circle fill="#662113" cx="28.5" cy="11.5" r=".5"/><path fill="#C1694F" d="M25 13h2s0 1-1 1-1-1-1-1z"/><path fill="#292F33" d="M20.781 1.125c2.625-.219 3.75 2.875 3 4.25-1.969 0-3.937-1.813-3-4.25zm9.987.063c-2.625-.219-3.75 2.875-3 4.25 1.969 0 3.938-1.813 3-4.25z"/><path fill="#292F33" d="M23.406 4.25c1.812-1.438 4.344-1.062 5.156.156.031.312-.37 1.178-.688 1.031-.812-.375-2.188-.938-4.062-.062-.093-.063-.441-1.098-.406-1.125z"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#FFDC5D" d="M8.564 34.435c.131.787-2.091 1.454-2.376 1.326-.305-.137.988-.808.967-1.226-.106-2.12-.904-1.961-.818-4.18-.802-2.376-.735-4.653-.772-5.287-.087-1.472 3.528.615 3.509 1.518-.038 1.776-.663 2.321-.687 3.502.42 1.882-.131 2.499.177 4.347zm7.189-.872c.353.715.726 1.971.416 1.931-.331-.043-1.396-.505-1.736-1.427-.734-1.991-1.804-1.447-2.364-3.596-1.047-1.579-2.186-3.886-2.406-4.482-.509-1.384 3.441-1.701 3.683-.832.477 1.711.287 3.328.607 4.465.948 1.68.97 2.262 1.8 3.941z"/><path fill="#FFDC5D" d="M5.621 26.494c-.164.146-.57.212-.669.182-.232-.07-.745-.46-1.026-.831-.513-.675-2.601-1.446-3.103-2.856-.085-.238-.067-.524.118-.86.113-.205 1.505-2.37 2.77-3.655.336-.342 1.248-.428 1.676-.104.427.323.483.579.233 1.04-.811 1.497-2.441 2.342-3.119 3.194.974.847.851 1.353 2.193 2.22.156-.088.457-.158.538-.136.08.022.264.154.224.397.024.02.226.196.271.286.126.245.107.934-.106 1.123zm8.023.065c.176.132.586.163.682.125.225-.089.703-.521.953-.914.454-.715 2.471-1.659 2.853-3.106.065-.244.023-.528-.19-.847-.13-.195-1.698-2.235-3.066-3.41-.364-.312-1.279-.322-1.679.037-.399.358-.433.617-.146 1.056.934 1.424 2.628 2.129 3.375 2.922-.9.925-.735 1.419-2 2.396-.163-.075-.469-.119-.547-.09-.078.029-.25.176-.19.414-.022.021-.209.214-.246.307-.103.255-.027.94.201 1.11z"/><path fill="#292F33" d="M15.511 18.712C14.558 17.265 12.827 17 11.722 17H9.387v.002V17H7.053c-1.104 0-2.835.265-3.788 1.712L5.388 20s-.131 1.332.682 2.988c-.713 1.04-.535 2.02-.535 2.02s1.277 1.248 3.297 2.376c.153.086 1.427.024 1.555-.096 1.706-1.6 3-2 3-2s-.488-1.153-1.05-2.181c.812-1.656 1.05-3.107 1.05-3.107l2.124-1.288z"/><path fill="#FFDC5D" d="M12.386 17.935c0-.588-.445-.935-1-.935v-3H7.388v3c-.555 0-1 .347-1 .935 0 .323 0 3.063 2.997 3.064h.004c2.997-.001 2.997-2.74 2.997-3.064z"/><path fill="#F9CA55" d="M11.388 14l-4 .019V18s2 1 4 0v-4z"/><path fill="#FFAC33" d="M16.388 9.001C16.388 5.687 13.701 3 10.387 3c-1.263 0-2.434.393-3.401 1.061C6.789 4.031 6.592 4 6.388 4c-2.209 0-4 1.791-4 4v6h14V9.001z"/><path fill="#FFDC5D" d="M14.388 6h-10v6c0 2.762 2.238 5 5 5s5-2.237 5-5V6z"/><path fill="#FFAC33" d="M14.449 5h-10l-1 5c4 0 4-4 4-4s0 4 8 4l-1-5z"/><path fill="#DF1F32" d="M11.388 15h-4s0 1 2 1 2-1 2-1z"/><circle fill="#662113" cx="6.888" cy="11.5" r=".5"/><circle fill="#662113" cx="11.888" cy="11.5" r=".5"/><path fill="#C1694F" d="M8.388 13h2s0 1-1 1-1-1-1-1z"/><path fill="#292F33" d="M4.075 1.125C6.7.906 7.825 4 7.075 5.375c-1.968 0-3.937-1.813-3-4.25zm9.988.063c-2.625-.219-3.75 2.875-3 4.25 1.969 0 3.937-1.813 3-4.25z"/><path fill="#292F33" d="M6.7 4.25c1.812-1.438 4.344-1.062 5.156.156.031.312-.37 1.178-.688 1.031-.811-.375-2.186-.937-4.061-.062-.094-.063-.441-1.098-.407-1.125zm7.657 29.788c-.386.475.511 1.883 1.188 2.168.564.238 1.545.149 1.842-.446.186-.373-1.04-1.842-1.426-1.931-.386-.089.594.475-.356.564-.684.065-1.248-.355-1.248-.355zm-5.793.397c.505.435.654 1.474-1.069 1.801-1.268.241-2.228.086-2.347-.386-.148-.594 1.486-1.277 1.902-1.367.416-.089-.475.564.238.535.712-.03 1.276-.583 1.276-.583z"/><path fill="#FFDC5D" d="M25.647 34.435c.131.787-2.091 1.454-2.376 1.326-.305-.137.988-.808.967-1.226-.106-2.12-.904-1.961-.818-4.18-.802-2.376-.735-4.653-.772-5.287-.087-1.472 3.528.615 3.509 1.518-.038 1.776-.663 2.321-.687 3.502.419 1.882-.132 2.499.177 4.347zm7.188-.872c.353.715.726 1.971.416 1.931-.331-.043-1.396-.505-1.736-1.427-.734-1.991-1.804-1.447-2.364-3.596-1.047-1.579-2.186-3.886-2.406-4.482-.509-1.384 3.441-1.701 3.683-.832.477 1.711.287 3.328.607 4.465.948 1.68.97 2.262 1.8 3.941z"/><path fill="#FFDC5D" d="M22.703 26.494c-.164.146-.57.212-.669.182-.232-.07-.745-.46-1.026-.831-.513-.675-2.601-1.446-3.103-2.856-.085-.238-.067-.524.118-.86.113-.205 1.505-2.37 2.77-3.655.336-.342 1.248-.428 1.676-.104.427.323.483.579.233 1.04-.811 1.497-2.441 2.342-3.119 3.194.974.847.851 1.353 2.193 2.22.156-.088.457-.158.538-.136.08.022.264.154.224.397.024.02.226.196.271.286.126.245.107.934-.106 1.123zm8.023.065c.176.132.586.163.682.125.225-.089.703-.521.953-.914.454-.715 2.471-1.659 2.853-3.106.065-.244.023-.528-.19-.847-.13-.195-1.698-2.235-3.066-3.41-.364-.312-1.279-.322-1.679.037-.399.358-.433.617-.146 1.056.934 1.424 2.628 2.129 3.375 2.922-.9.925-.735 1.419-2 2.396-.163-.075-.469-.119-.547-.09s-.25.176-.19.414c-.022.021-.209.214-.246.307-.103.255-.027.94.201 1.11z"/><path fill="#292F33" d="M32.593 18.712C31.64 17.265 29.909 17 28.805 17H26.47v.002V17h-2.335c-1.104 0-2.835.265-3.788 1.712L22.47 20s-.131 1.332.682 2.988c-.713 1.04-.535 2.02-.535 2.02s1.277 1.248 3.297 2.376c.153.086 1.427.024 1.555-.096 1.706-1.6 3-2 3-2s-.488-1.153-1.05-2.181c.812-1.656 1.05-3.107 1.05-3.107l2.124-1.288z"/><path fill="#FFDC5D" d="M29.468 17.935c0-.588-.445-.935-1-.935v-3H24.47v3c-.555 0-1 .347-1 .935 0 .323 0 3.063 2.997 3.064h.004c2.997-.001 2.997-2.74 2.997-3.064z"/><path fill="#F9CA55" d="M28.47 14l-4 .019V18s2 1 4 0v-4z"/><path fill="#FFAC33" d="M33.47 9.001C33.47 5.687 30.784 3 27.469 3c-1.264 0-2.435.393-3.402 1.061-.196-.03-.392-.061-.597-.061-2.209 0-4 1.791-4 4v6h14V9.001z"/><path fill="#FFDC5D" d="M31.47 6h-10v6c0 2.762 2.238 5 5 5s5-2.237 5-5V6z"/><path fill="#FFAC33" d="M31.531 5h-10l-1 5c4 0 4-4 4-4s0 4 8 4l-1-5z"/><path fill="#DF1F32" d="M28.47 15h-4s0 1 2 1 2-1 2-1z"/><circle fill="#662113" cx="23.97" cy="11.5" r=".5"/><circle fill="#662113" cx="28.97" cy="11.5" r=".5"/><path fill="#C1694F" d="M25.47 13h2s0 1-1 1-1-1-1-1z"/><path fill="#292F33" d="M21.158 1.125c2.625-.219 3.75 2.875 3 4.25-1.969 0-3.938-1.813-3-4.25zm9.987.063c-2.625-.219-3.75 2.875-3 4.25 1.969 0 3.937-1.813 3-4.25z"/><path fill="#292F33" d="M23.783 4.25c1.812-1.438 4.344-1.062 5.156.156.031.312-.37 1.178-.688 1.031-.812-.375-2.188-.938-4.063-.062-.093-.063-.44-1.098-.405-1.125zm7.656 29.788c-.386.475.511 1.883 1.188 2.168.564.238 1.545.149 1.842-.446.186-.373-1.04-1.842-1.426-1.931-.386-.089.594.475-.356.564-.684.065-1.248-.355-1.248-.355zm-5.792.397c.505.435.654 1.474-1.069 1.801-1.268.241-2.228.086-2.347-.386-.149-.594 1.485-1.277 1.901-1.366.416-.089-.475.564.238.535.712-.031 1.277-.584 1.277-.584z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f46f-200d-2642-fe0f.svg b/public/emoji/1f46f-200d-2642-fe0f.svg
index db3d12a260416b7915d3cbbbcbe521e1c8c6d452..04254cd9952682789ab6d1cbccc0facab4287541 100644
--- a/public/emoji/1f46f-200d-2642-fe0f.svg
+++ b/public/emoji/1f46f-200d-2642-fe0f.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#FFDC5D" d="M8 35H5l1-9.712h3zm5.875-1.208l-1.834-1.333s3.167-3.012 2.531-3.994c-.636-.981-3.782-1.688-3.782-1.688l1.918-2.307s3.958 1.904 4.77 3.333c.827 1.452-3.603 5.989-3.603 5.989z"/><path fill="#292F33" d="M4 36v-1s0-1 2-1 2 1 2 1v1H4zm10.553-.517l.421-.908s.419-.907-1.396-1.747c-1.813-.841-2.233.066-2.233.066l-.42.907 3.628 1.682z"/><path fill="#FFDC5D" d="M5 26.288c-.256 0-.512-.098-.707-.293l-3-3c-.36-.36-.392-.934-.074-1.332l4-3.288c.345-.432.975-.501 1.405-.156.432.345.501.974.156 1.406l-3.44 2.589 2.367 2.367c.391.391.391 1.023 0 1.414-.195.195-.451.293-.707.293zm10 0c-.256 0-.512-.098-.707-.293-.391-.391-.391-1.023 0-1.414l2.367-2.367-3.441-2.589c-.345-.432-.275-1.06.156-1.406.43-.345 1.06-.276 1.405.156l4.001 3.288c.318.398.286.972-.074 1.332l-3 3c-.195.195-.451.293-.707.293z"/><path fill="#292F33" d="M16 19c0-1.104-.896-2-2-2H6c-1.104 0-2 .896-2 2v1h2v5.288l3 2h2l3-2V20h2v-1z"/><path fill="#FFAC33" d="M10.5 3c-1.187 0-2.282.379-3.181 1.018C5.473 4.114 4 5.629 4 7.5c0 1.542.007 3.484 2.038 4.207C7.036 13.094 8.66 14 10.5 14c3.037 0 5.5-2.462 5.5-5.499C16 5.463 13.537 3 10.5 3z"/><path fill="#FFDC5D" d="M8 15v3c0 1.104.896 2 2 2s2-.896 2-2v-3H8z"/><path fill="#292F33" d="M9 27l-.344 3.219-3.312-.344L6 25.288zm4.134-2.381l2.631 1.325-1.356 2.711L11 27.288z"/><path fill="#F9CA55" d="M12 14l-4 .019V18s2 1 4 0v-4z"/><path fill="#FFDC5D" d="M15 6H5v6c0 2.762 2.238 5 5 5s5-2.237 5-5V6z"/><path fill="#292F33" d="M14.875 1.188c-1.763-.147-2.846 1.201-3.142 2.519-.982-.51-2.456-.545-3.736.163-.216-1.384-1.32-2.9-3.185-2.745-.938 2.438 1.031 4.25 3 4.25 1.875-.875 3.25-.312 4.062.062 1.97.001 3.938-1.812 3.001-4.249z"/><path fill="#FFAC33" d="M8 6H5v4c2.333 0 2.85-2.412 2.965-3.488C8.004 7.588 8.779 10 15 10V6H8z"/><circle fill="#662113" cx="7.5" cy="11.5" r=".5"/><circle fill="#662113" cx="12.5" cy="11.5" r=".5"/><path fill="#C1694F" d="M9 13h2s0 1-1 1-1-1-1-1zm3 2H8s0 1 2 1 2-1 2-1z"/><path fill="#FFDC5D" d="M24 35h-3l1-9.712h3zm5.875-1.208l-1.833-1.333s3.167-3.012 2.531-3.994c-.636-.981-3.782-1.688-3.782-1.688l1.918-2.307s3.958 1.904 4.77 3.333c.826 1.452-3.604 5.989-3.604 5.989z"/><path fill="#292F33" d="M30.553 35.483l.422-.908s.418-.907-1.396-1.747c-1.812-.841-2.232.066-2.232.066l-.42.907 3.626 1.682zM20 36v-1s0-1 2-1 2 1 2 1v1h-4z"/><path fill="#FFDC5D" d="M21 26.288c-.256 0-.512-.098-.707-.293l-3-3c-.36-.36-.392-.934-.074-1.332l4-3.288c.346-.432.976-.501 1.406-.156.432.345.501.974.156 1.406l-3.441 2.589 2.367 2.367c.391.391.391 1.023 0 1.414-.195.195-.451.293-.707.293zm10 0c-.256 0-.512-.098-.707-.293-.391-.391-.391-1.023 0-1.414l2.367-2.367-3.441-2.589c-.345-.432-.275-1.06.156-1.406.431-.345 1.06-.276 1.406.156l4 3.288c.318.398.286.972-.074 1.332l-3 3c-.195.195-.451.293-.707.293z"/><path fill="#FFDC5D" d="M28 17v-3h-4v3h-1v1s0 3 3 3 3-3 3-3v-1h-1z"/><path fill="#292F33" d="M30 17h-8c-1.104 0-2 .896-2 2v1h2v5.288l3 2h2l3-2V20h2v-1c0-1.104-.896-2-2-2z"/><path fill="#292F33" d="M25 27l-.344 3.219-3.312-.344.656-4.587zm4.134-2.381l2.631 1.325-1.356 2.711L27 27.288z"/><path fill="#FFDC5D" d="M24 15v3c0 1.104.896 2 2 2s2-.896 2-2v-3h-4z"/><path fill="#F9CA55" d="M28 14l-4 .019V18s2 1 4 0v-4z"/><path fill="#FFAC33" d="M26.5 3c-1.187 0-2.282.379-3.181 1.018C21.473 4.114 20 5.629 20 7.5c0 1.542.007 3.484 2.038 4.207C23.036 13.094 24.66 14 26.5 14c3.037 0 5.5-2.462 5.5-5.499C32 5.463 29.537 3 26.5 3z"/><path fill="#FFDC5D" d="M31 6H21v6c0 2.762 2.238 5 5 5s5-2.237 5-5V6z"/><path fill="#292F33" d="M30.875 1.188c-1.763-.147-2.846 1.201-3.142 2.519-.982-.509-2.456-.544-3.736.164-.216-1.384-1.319-2.901-3.184-2.745-.938 2.438 1.031 4.25 3 4.25 1.875-.875 3.25-.312 4.062.062 1.969 0 3.937-1.813 3-4.25z"/><path fill="#FFAC33" d="M24 6h-3v4c2.333 0 2.85-2.412 2.965-3.488C24.004 7.588 24.779 10 31 10V6h-7z"/><circle fill="#662113" cx="23.5" cy="11.5" r=".5"/><circle fill="#662113" cx="28.5" cy="11.5" r=".5"/><path fill="#C1694F" d="M25 13h2s0 1-1 1-1-1-1-1zm3 2h-4s0 1 2 1 2-1 2-1z"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#FFDC5D" d="M8.564 34.435c.131.787-2.091 1.454-2.376 1.326-.305-.137.988-.808.967-1.226-.106-2.12-.904-1.961-.818-4.18-.802-2.376-.735-4.653-.772-5.287-.087-1.472 3.804.623 3.682 1.518-.204 1.488-.663 2.321-.687 3.502.42 1.882-.304 2.499.004 4.347zm7.189-.872c.353.715.726 1.971.416 1.931-.331-.043-1.396-.505-1.736-1.427-.734-1.991-1.962-1.447-2.522-3.596-1.047-1.579-2.186-3.886-2.406-4.482-.509-1.384 3.391-1.737 3.619-.863.5 1.914.509 3.359.829 4.496.948 1.68.97 2.262 1.8 3.941z"/><path fill="#FFDC5D" d="M5.621 26.494c-.164.146-.57.212-.669.182-.232-.07-.745-.46-1.026-.831-.513-.675-2.601-1.446-3.103-2.856-.085-.238-.067-.524.118-.86.113-.205 1.505-2.37 2.77-3.655.336-.342 1.248-.428 1.676-.104.427.323 1.483.579 1.233 1.04-.811 1.497-3.441 2.342-4.119 3.194.974.847.851 1.353 2.193 2.22.156-.088.457-.158.538-.136.08.022.264.154.224.397.024.02.226.196.271.286.126.245.107.934-.106 1.123zm8.023.065c.176.132.586.163.682.125.225-.089.703-.521.953-.914.454-.715 2.471-1.659 2.853-3.106.065-.244.023-.528-.19-.847-.13-.195-1.698-2.235-3.066-3.41-.364-.312-1.279-.322-1.679.037-.399.358-1.433.617-1.146 1.056.934 1.424 3.628 2.129 4.375 2.922-.9.925-.735 1.419-2 2.396-.163-.075-.469-.119-.547-.09-.078.029-.25.176-.19.414-.022.021-.209.214-.246.307-.103.255-.027.94.201 1.11z"/><path fill="#292F33" d="M15.511 18.712C14.558 17.265 12.827 17 11.722 17H9.387v.002V17H7.053c-1.104 0-2.835.265-3.788 1.712L5.388 21l.147 4.008s.028 3.179.402 4.206c.564.04 1.958.198 2.797.315.043.006.203-1.076.509-2.106.238.009.587-.017.803-.065.407.69 1.073 2.028 1.101 2.002.812-.255 2.042-.664 2.621-.928-.084-1.174-.381-3.143-.381-3.143V21l2.124-2.288z"/><path fill="#FFDC5D" d="M12.059 17.692c0-.435-.117-.692-.672-.692v-3H7.388v3c-.555 0-.672.257-.672.692 0 .239 0 2.264 2.67 2.265h.003c2.669-.001 2.67-2.026 2.67-2.265z"/><path fill="#F9CA55" d="M11.388 14l-4 .019V18s2 1 4 0v-4z"/><path fill="#FFAC33" d="M9.888 3c-1.187 0-2.282.379-3.181 1.018-1.846.096-3.319 1.611-3.319 3.482 0 1.542.007 3.484 2.038 4.208C6.424 13.094 8.048 14 9.888 14c3.037 0 5.5-2.462 5.5-5.499 0-3.038-2.463-5.501-5.5-5.501z"/><path fill="#FFDC5D" d="M14.388 6h-10v6c0 2.762 2.238 5 5 5s5-2.237 5-5V6z"/><path fill="#FFAC33" d="M4.417 5.5l-.5 2 .471 2.5c2.333 0 2.85-2.412 2.965-3.488C7.392 7.588 8.167 10 14.388 10l.529-2.5-.5-2h-10z"/><path fill="#C1694F" d="M11.388 15h-4s0 1 2 1 2-1 2-1z"/><circle fill="#662113" cx="6.888" cy="11.5" r=".5"/><circle fill="#662113" cx="11.888" cy="11.5" r=".5"/><path fill="#C1694F" d="M8.388 13h2s0 1-1 1-1-1-1-1z"/><path fill="#292F33" d="M4.075 1.125C6.7.906 7.825 4 7.075 5.375c-1.968 0-3.937-1.813-3-4.25zm9.988.063c-2.625-.219-3.75 2.875-3 4.25 1.969 0 3.937-1.813 3-4.25z"/><path fill="#292F33" d="M6.7 4.25c1.812-1.438 4.344-1.062 5.156.156.031.312-.37 1.178-.688 1.031-.811-.375-2.186-.937-4.061-.062-.094-.063-.441-1.098-.407-1.125zm7.657 29.788c-.386.475.511 1.883 1.188 2.168.564.238 1.545.149 1.842-.446.186-.373-1.04-1.842-1.426-1.931-.386-.089.594.475-.356.564-.684.065-1.248-.355-1.248-.355zm-5.793.397c.505.435.654 1.474-1.069 1.801-1.268.241-2.228.086-2.347-.386-.148-.594 1.486-1.277 1.902-1.367.416-.089-.475.564.238.535.712-.03 1.276-.583 1.276-.583z"/><path fill="#FFDC5D" d="M25.647 34.435c.131.787-2.091 1.454-2.376 1.326-.305-.137.988-.808.967-1.226-.106-2.12-.904-1.961-.818-4.18-.802-2.376-.735-4.653-.772-5.287-.087-1.472 3.804.623 3.682 1.518-.204 1.488-.663 2.321-.687 3.502.42 1.882-.304 2.499.004 4.347zm7.188-.872c.353.715.726 1.971.416 1.931-.331-.043-1.396-.505-1.736-1.427-.734-1.991-1.962-1.447-2.522-3.596-1.047-1.579-2.186-3.886-2.406-4.482-.509-1.384 3.391-1.737 3.619-.863.5 1.914.509 3.359.829 4.496.949 1.68.971 2.262 1.8 3.941z"/><path fill="#FFDC5D" d="M22.704 26.494c-.164.146-.57.212-.669.182-.232-.07-.745-.46-1.026-.831-.513-.675-2.601-1.446-3.103-2.856-.085-.238-.067-.524.118-.86.113-.205 1.505-2.37 2.77-3.655.336-.342 1.248-.428 1.676-.104.427.323 1.483.579 1.233 1.04-.811 1.497-3.441 2.342-4.119 3.194.974.847.851 1.353 2.193 2.22.156-.088.457-.158.538-.136.08.022.264.154.224.397.024.02.226.196.271.286.125.245.106.934-.106 1.123zm8.022.065c.176.132.586.163.682.125.225-.089.703-.521.953-.914.454-.715 2.471-1.659 2.853-3.106.065-.244.023-.528-.19-.847-.13-.195-1.698-2.235-3.066-3.41-.364-.312-1.279-.322-1.679.037-.399.358-1.433.617-1.146 1.056.934 1.424 3.628 2.129 4.375 2.922-.9.925-.735 1.419-2 2.396-.163-.075-.469-.119-.547-.09s-.25.176-.19.414c-.022.021-.209.214-.246.307-.103.255-.026.94.201 1.11z"/><path fill="#292F33" d="M32.593 18.712C31.64 17.265 29.91 17 28.805 17H26.47v.002V17h-2.335c-1.104 0-2.835.265-3.788 1.712L22.471 21l.147 4.008s.028 3.179.402 4.206c.564.04 1.958.198 2.797.315.043.006.203-1.076.509-2.106.238.009.587-.017.803-.065.407.69 1.073 2.028 1.101 2.002.812-.255 2.042-.664 2.621-.928-.084-1.174-.381-3.143-.381-3.143V21l2.123-2.288z"/><path fill="#FFDC5D" d="M29.141 17.692c0-.435-.117-.692-.672-.692v-3h-3.998v3c-.555 0-.672.257-.672.692 0 .239 0 2.264 2.67 2.265h.003c2.669-.001 2.669-2.026 2.669-2.265z"/><path fill="#F9CA55" d="M28.471 14l-4 .019V18s2 1 4 0v-4z"/><path fill="#FFAC33" d="M26.971 3c-1.186 0-2.282.379-3.181 1.018-1.847.096-3.319 1.611-3.319 3.482 0 1.542.007 3.484 2.038 4.208.998 1.386 2.622 2.292 4.462 2.292 3.037 0 5.5-2.462 5.5-5.499 0-3.038-2.463-5.501-5.5-5.501z"/><path fill="#FFDC5D" d="M31.471 6h-10v6c0 2.762 2.238 5 5 5s5-2.237 5-5V6z"/><path fill="#FFAC33" d="M21.5 5.5l-.5 2 .471 2.5c2.333 0 2.85-2.412 2.965-3.488.038 1.076.814 3.488 7.035 3.488L32 7.5l-.5-2h-10z"/><path fill="#C1694F" d="M28.471 15h-4s0 1 2 1 2-1 2-1z"/><circle fill="#662113" cx="23.971" cy="11.5" r=".5"/><circle fill="#662113" cx="28.971" cy="11.5" r=".5"/><path fill="#C1694F" d="M25.471 13h2s0 1-1 1-1-1-1-1z"/><path fill="#292F33" d="M21.158 1.125c2.625-.219 3.75 2.875 3 4.25-1.969 0-3.937-1.813-3-4.25zm9.987.063c-2.625-.219-3.75 2.875-3 4.25 1.969 0 3.938-1.813 3-4.25z"/><path fill="#292F33" d="M23.783 4.25c1.812-1.438 4.344-1.062 5.156.156.031.312-.37 1.178-.688 1.031-.812-.375-2.188-.938-4.063-.062-.092-.063-.44-1.098-.405-1.125zm7.656 29.788c-.386.475.511 1.883 1.188 2.168.564.238 1.545.149 1.842-.446.186-.373-1.04-1.842-1.426-1.931-.386-.089.594.475-.356.564-.683.065-1.248-.355-1.248-.355zm-5.792.397c.505.435.654 1.474-1.069 1.801-1.268.241-2.228.086-2.347-.386-.149-.594 1.485-1.277 1.901-1.366.416-.089-.475.564.238.535.713-.031 1.277-.584 1.277-.584z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f46f.svg b/public/emoji/1f46f.svg
index 4d00a954a4696273137f04f0581f424ad7792004..6559253b8ec01410ec0134190ce835f53583eb96 100644
--- a/public/emoji/1f46f.svg
+++ b/public/emoji/1f46f.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#FFDC5D" d="M8 35H5l1-9.712h3zm5.875-1.208l-1.834-1.333s3.167-3.012 2.531-3.994c-.636-.981-3.782-1.688-3.782-1.688l1.918-2.307s3.958 1.904 4.77 3.333c.827 1.452-3.603 5.989-3.603 5.989z"/><path fill="#292F33" d="M4 36v-1s0-1 2-1 2 1 2 1v1H4zm10.553-.517l.421-.908s.419-.907-1.396-1.747c-1.813-.841-2.233.066-2.233.066l-.42.907 3.628 1.682z"/><path fill="#FFDC5D" d="M5 26.288c-.256 0-.512-.098-.707-.293l-3-3c-.36-.36-.392-.934-.074-1.332l4-3.288c.345-.432.975-.501 1.405-.156.432.345.501.974.156 1.406l-3.44 2.589 2.367 2.367c.391.391.391 1.023 0 1.414-.195.195-.451.293-.707.293zm10 0c-.256 0-.512-.098-.707-.293-.391-.391-.391-1.023 0-1.414l2.367-2.367-3.441-2.589c-.345-.432-.275-1.06.156-1.406.43-.345 1.06-.276 1.405.156l4.001 3.288c.318.398.286.972-.074 1.332l-3 3c-.195.195-.451.293-.707.293z"/><path fill="#292F33" d="M16 19c0-1.104-.896-2-2-2H6c-1.104 0-2 .896-2 2v1h2v5.288l3 2h2l3-2V20h2v-1z"/><path fill="#FFDC5D" d="M12 17v-3H8v3H7v1s0 3 3 3 3-3 3-3v-1h-1z"/><path fill="#F9CA55" d="M12 14l-4 .019V18s2 1 4 0v-4z"/><path fill="#FFAC33" d="M17 9.001C17 5.687 14.313 3 10.999 3c-1.263 0-2.434.393-3.401 1.06C7.401 4.031 7.204 4 7 4 4.791 4 3 5.791 3 8v6h2.422C5.153 13.387 5 12.713 5 12V9.894C7.989 9.285 8 6 8 6s.019 3.644 7 3.968V12c0 .712-.154 1.387-.422 2H17V9.001z"/><path fill="#FFDC5D" d="M15 12V9.968C8.018 9.644 8 6 8 6s-.011 3.285-3 3.894V12c0 .712.154 1.387.422 2 .772 1.765 2.528 3 4.578 3 2.05 0 3.807-1.235 4.579-3 .267-.613.421-1.287.421-2z"/><path fill="#DF1F32" d="M12 15H8s0 1 2 1 2-1 2-1z"/><circle fill="#662113" cx="7.5" cy="11.5" r=".5"/><circle fill="#662113" cx="12.5" cy="11.5" r=".5"/><path fill="#C1694F" d="M9 13h2s0 1-1 1-1-1-1-1z"/><path fill="#292F33" d="M4.687 1.125c2.625-.219 3.75 2.875 3 4.25-1.968 0-3.937-1.813-3-4.25zm9.988.063c-2.625-.219-3.75 2.875-3 4.25 1.968 0 3.937-1.813 3-4.25z"/><path fill="#292F33" d="M7.312 4.25c1.812-1.438 4.344-1.062 5.156.156.031.312-.37 1.178-.688 1.031-.811-.375-2.186-.937-4.061-.062-.094-.063-.441-1.098-.407-1.125z"/><path fill="#FFDC5D" d="M24 35h-3l1-9.712h3zm5.875-1.208l-1.833-1.333s3.167-3.012 2.531-3.994c-.636-.981-3.782-1.688-3.782-1.688l1.918-2.307s3.958 1.904 4.77 3.333c.826 1.452-3.604 5.989-3.604 5.989z"/><path fill="#292F33" d="M30.553 35.483l.422-.908s.418-.907-1.396-1.747c-1.812-.841-2.232.066-2.232.066l-.42.907 3.626 1.682zM20 36v-1s0-1 2-1 2 1 2 1v1h-4z"/><path fill="#FFDC5D" d="M21 26.288c-.256 0-.512-.098-.707-.293l-3-3c-.36-.36-.392-.934-.074-1.332l4-3.288c.346-.432.976-.501 1.406-.156.432.345.501.974.156 1.406l-3.441 2.589 2.367 2.367c.391.391.391 1.023 0 1.414-.195.195-.451.293-.707.293zm10 0c-.256 0-.512-.098-.707-.293-.391-.391-.391-1.023 0-1.414l2.367-2.367-3.441-2.589c-.345-.432-.275-1.06.156-1.406.431-.345 1.06-.276 1.406.156l4 3.288c.318.398.286.972-.074 1.332l-3 3c-.195.195-.451.293-.707.293z"/><path fill="#292F33" d="M32 19c0-1.104-.896-2-2-2h-8c-1.104 0-2 .896-2 2v1h2v5.288l3 2h2l3-2V20h2v-1z"/><path fill="#FFDC5D" d="M28 17v-3h-4v3h-1v1s0 3 3 3 3-3 3-3v-1h-1z"/><path fill="#F9CA55" d="M28 14l-4 .019V18s2 1 4 0v-4z"/><path fill="#FFAC33" d="M33 9.001C33 5.687 30.313 3 27 3c-1.264 0-2.435.393-3.402 1.06C23.401 4.031 23.205 4 23 4c-2.209 0-4 1.791-4 4v6h2.422c-.269-.613-.422-1.287-.422-2V9.894C23.989 9.285 24 6 24 6s.019 3.644 7 3.968V12c0 .712-.154 1.387-.422 2H33V9.001z"/><path fill="#FFDC5D" d="M31 12V9.968C24.018 9.644 24 6 24 6s-.011 3.285-3 3.894V12c0 .712.154 1.387.422 2 .772 1.765 2.529 3 4.578 3s3.806-1.235 4.578-3c.268-.613.422-1.287.422-2z"/><path fill="#DF1F32" d="M28 15h-4s0 1 2 1 2-1 2-1z"/><circle fill="#662113" cx="23.5" cy="11.5" r=".5"/><circle fill="#662113" cx="28.5" cy="11.5" r=".5"/><path fill="#C1694F" d="M25 13h2s0 1-1 1-1-1-1-1z"/><path fill="#292F33" d="M20.781 1.125c2.625-.219 3.75 2.875 3 4.25-1.969 0-3.937-1.813-3-4.25zm9.987.063c-2.625-.219-3.75 2.875-3 4.25 1.969 0 3.938-1.813 3-4.25z"/><path fill="#292F33" d="M23.406 4.25c1.812-1.438 4.344-1.062 5.156.156.031.312-.37 1.178-.688 1.031-.812-.375-2.188-.938-4.062-.062-.093-.063-.441-1.098-.406-1.125z"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#FFDC5D" d="M8.564 34.435c.131.787-2.091 1.454-2.376 1.326-.305-.137.988-.808.967-1.226-.106-2.12-.904-1.961-.818-4.18-.802-2.376-.735-4.653-.772-5.287-.087-1.472 3.528.615 3.509 1.518-.038 1.776-.663 2.321-.687 3.502.42 1.882-.131 2.499.177 4.347zm7.189-.872c.353.715.726 1.971.416 1.931-.331-.043-1.396-.505-1.736-1.427-.734-1.991-1.804-1.447-2.364-3.596-1.047-1.579-2.186-3.886-2.406-4.482-.509-1.384 3.441-1.701 3.683-.832.477 1.711.287 3.328.607 4.465.948 1.68.97 2.262 1.8 3.941z"/><path fill="#FFDC5D" d="M5.621 26.494c-.164.146-.57.212-.669.182-.232-.07-.745-.46-1.026-.831-.513-.675-2.601-1.446-3.103-2.856-.085-.238-.067-.524.118-.86.113-.205 1.505-2.37 2.77-3.655.336-.342 1.248-.428 1.676-.104.427.323.483.579.233 1.04-.811 1.497-2.441 2.342-3.119 3.194.974.847.851 1.353 2.193 2.22.156-.088.457-.158.538-.136.08.022.264.154.224.397.024.02.226.196.271.286.126.245.107.934-.106 1.123zm8.023.065c.176.132.586.163.682.125.225-.089.703-.521.953-.914.454-.715 2.471-1.659 2.853-3.106.065-.244.023-.528-.19-.847-.13-.195-1.698-2.235-3.066-3.41-.364-.312-1.279-.322-1.679.037-.399.358-.433.617-.146 1.056.934 1.424 2.628 2.129 3.375 2.922-.9.925-.735 1.419-2 2.396-.163-.075-.469-.119-.547-.09-.078.029-.25.176-.19.414-.022.021-.209.214-.246.307-.103.255-.027.94.201 1.11z"/><path fill="#292F33" d="M15.511 18.712C14.558 17.265 12.827 17 11.722 17H9.387v.002V17H7.053c-1.104 0-2.835.265-3.788 1.712L5.388 20s-.131 1.332.682 2.988c-.713 1.04-.535 2.02-.535 2.02s1.277 1.248 3.297 2.376c.153.086 1.427.024 1.555-.096 1.706-1.6 3-2 3-2s-.488-1.153-1.05-2.181c.812-1.656 1.05-3.107 1.05-3.107l2.124-1.288z"/><path fill="#FFDC5D" d="M12.386 17.935c0-.588-.445-.935-1-.935v-3H7.388v3c-.555 0-1 .347-1 .935 0 .323 0 3.063 2.997 3.064h.004c2.997-.001 2.997-2.74 2.997-3.064z"/><path fill="#F9CA55" d="M11.388 14l-4 .019V18s2 1 4 0v-4z"/><path fill="#FFAC33" d="M16.388 9.001C16.388 5.687 13.701 3 10.387 3c-1.263 0-2.434.393-3.401 1.061C6.789 4.031 6.592 4 6.388 4c-2.209 0-4 1.791-4 4v6h14V9.001z"/><path fill="#FFDC5D" d="M14.388 6h-10v6c0 2.762 2.238 5 5 5s5-2.237 5-5V6z"/><path fill="#FFAC33" d="M14.449 5h-10l-1 5c4 0 4-4 4-4s0 4 8 4l-1-5z"/><path fill="#DF1F32" d="M11.388 15h-4s0 1 2 1 2-1 2-1z"/><circle fill="#662113" cx="6.888" cy="11.5" r=".5"/><circle fill="#662113" cx="11.888" cy="11.5" r=".5"/><path fill="#C1694F" d="M8.388 13h2s0 1-1 1-1-1-1-1z"/><path fill="#292F33" d="M4.075 1.125C6.7.906 7.825 4 7.075 5.375c-1.968 0-3.937-1.813-3-4.25zm9.988.063c-2.625-.219-3.75 2.875-3 4.25 1.969 0 3.937-1.813 3-4.25z"/><path fill="#292F33" d="M6.7 4.25c1.812-1.438 4.344-1.062 5.156.156.031.312-.37 1.178-.688 1.031-.811-.375-2.186-.937-4.061-.062-.094-.063-.441-1.098-.407-1.125zm7.657 29.788c-.386.475.511 1.883 1.188 2.168.564.238 1.545.149 1.842-.446.186-.373-1.04-1.842-1.426-1.931-.386-.089.594.475-.356.564-.684.065-1.248-.355-1.248-.355zm-5.793.397c.505.435.654 1.474-1.069 1.801-1.268.241-2.228.086-2.347-.386-.148-.594 1.486-1.277 1.902-1.367.416-.089-.475.564.238.535.712-.03 1.276-.583 1.276-.583z"/><path fill="#FFDC5D" d="M25.647 34.435c.131.787-2.091 1.454-2.376 1.326-.305-.137.988-.808.967-1.226-.106-2.12-.904-1.961-.818-4.18-.802-2.376-.735-4.653-.772-5.287-.087-1.472 3.528.615 3.509 1.518-.038 1.776-.663 2.321-.687 3.502.419 1.882-.132 2.499.177 4.347zm7.188-.872c.353.715.726 1.971.416 1.931-.331-.043-1.396-.505-1.736-1.427-.734-1.991-1.804-1.447-2.364-3.596-1.047-1.579-2.186-3.886-2.406-4.482-.509-1.384 3.441-1.701 3.683-.832.477 1.711.287 3.328.607 4.465.948 1.68.97 2.262 1.8 3.941z"/><path fill="#FFDC5D" d="M22.703 26.494c-.164.146-.57.212-.669.182-.232-.07-.745-.46-1.026-.831-.513-.675-2.601-1.446-3.103-2.856-.085-.238-.067-.524.118-.86.113-.205 1.505-2.37 2.77-3.655.336-.342 1.248-.428 1.676-.104.427.323.483.579.233 1.04-.811 1.497-2.441 2.342-3.119 3.194.974.847.851 1.353 2.193 2.22.156-.088.457-.158.538-.136.08.022.264.154.224.397.024.02.226.196.271.286.126.245.107.934-.106 1.123zm8.023.065c.176.132.586.163.682.125.225-.089.703-.521.953-.914.454-.715 2.471-1.659 2.853-3.106.065-.244.023-.528-.19-.847-.13-.195-1.698-2.235-3.066-3.41-.364-.312-1.279-.322-1.679.037-.399.358-.433.617-.146 1.056.934 1.424 2.628 2.129 3.375 2.922-.9.925-.735 1.419-2 2.396-.163-.075-.469-.119-.547-.09s-.25.176-.19.414c-.022.021-.209.214-.246.307-.103.255-.027.94.201 1.11z"/><path fill="#292F33" d="M32.593 18.712C31.64 17.265 29.909 17 28.805 17H26.47v.002V17h-2.335c-1.104 0-2.835.265-3.788 1.712L22.47 20s-.131 1.332.682 2.988c-.713 1.04-.535 2.02-.535 2.02s1.277 1.248 3.297 2.376c.153.086 1.427.024 1.555-.096 1.706-1.6 3-2 3-2s-.488-1.153-1.05-2.181c.812-1.656 1.05-3.107 1.05-3.107l2.124-1.288z"/><path fill="#FFDC5D" d="M29.468 17.935c0-.588-.445-.935-1-.935v-3H24.47v3c-.555 0-1 .347-1 .935 0 .323 0 3.063 2.997 3.064h.004c2.997-.001 2.997-2.74 2.997-3.064z"/><path fill="#F9CA55" d="M28.47 14l-4 .019V18s2 1 4 0v-4z"/><path fill="#FFAC33" d="M33.47 9.001C33.47 5.687 30.784 3 27.469 3c-1.264 0-2.435.393-3.402 1.061-.196-.03-.392-.061-.597-.061-2.209 0-4 1.791-4 4v6h14V9.001z"/><path fill="#FFDC5D" d="M31.47 6h-10v6c0 2.762 2.238 5 5 5s5-2.237 5-5V6z"/><path fill="#FFAC33" d="M31.531 5h-10l-1 5c4 0 4-4 4-4s0 4 8 4l-1-5z"/><path fill="#DF1F32" d="M28.47 15h-4s0 1 2 1 2-1 2-1z"/><circle fill="#662113" cx="23.97" cy="11.5" r=".5"/><circle fill="#662113" cx="28.97" cy="11.5" r=".5"/><path fill="#C1694F" d="M25.47 13h2s0 1-1 1-1-1-1-1z"/><path fill="#292F33" d="M21.158 1.125c2.625-.219 3.75 2.875 3 4.25-1.969 0-3.938-1.813-3-4.25zm9.987.063c-2.625-.219-3.75 2.875-3 4.25 1.969 0 3.937-1.813 3-4.25z"/><path fill="#292F33" d="M23.783 4.25c1.812-1.438 4.344-1.062 5.156.156.031.312-.37 1.178-.688 1.031-.812-.375-2.188-.938-4.063-.062-.093-.063-.44-1.098-.405-1.125zm7.656 29.788c-.386.475.511 1.883 1.188 2.168.564.238 1.545.149 1.842-.446.186-.373-1.04-1.842-1.426-1.931-.386-.089.594.475-.356.564-.684.065-1.248-.355-1.248-.355zm-5.792.397c.505.435.654 1.474-1.069 1.801-1.268.241-2.228.086-2.347-.386-.149-.594 1.485-1.277 1.901-1.366.416-.089-.475.564.238.535.712-.031 1.277-.584 1.277-.584z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f483-1f3fb.svg b/public/emoji/1f483-1f3fb.svg
index f0fcf19fb7ef9645c9f7fff74927b789a5516278..72c8f2cef57ff2510a170b2e66a9568f0822b5cd 100644
--- a/public/emoji/1f483-1f3fb.svg
+++ b/public/emoji/1f483-1f3fb.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#292F33" d="M16 1c.203-.378.538-.985 1.806-.602C19.722.978 18 2 18 2s2 1 2 4-1 1.838-1 5c0 2-2 0-2 0l-3 3c-4 4-6-1-5-3s0-2 0-4 2-2 2-4 2-3 3-3 2 1 2 1z"/><ellipse fill="#F7DECE" cx="14.625" cy="5" rx="2.625" ry="3"/><path fill="#292F33" d="M14.5 1c-.927 0-1.727.306-2.158.755C11.239 1.548 11.864 3.272 11 5c-1 2 1 4 1 3s0-4 2-4h.5c1.381 0 2.5-.671 2.5-1.5S15.881 1 14.5 1z"/><path fill="#F7DECE" d="M22.707 10.293c-.373-.373-1.806-1.217-7.027-1.286l-.432-3.883c-.061-.549-.562-.948-1.104-.883-.549.061-.944.555-.883 1.104L13.667 9H9.083l-5.918-.986c-.55-.091-1.06.278-1.151.822-.091.544.277 1.06.821 1.15l6 1c.055.01.11.014.165.014h2.749c.009.262.086.588.251 1 1 2.5 3 8 3 8 2.209 0 3-5.015 3-7.5 0-.604-.048-1.06-.15-1.407 1.206.087 2.027.223 2.567.351L18.2 14.4c-.331.442-.242 1.069.2 1.4.18.135.391.2.599.2.305 0 .604-.138.801-.4l3-4c.299-.398.259-.955-.093-1.307zM15.998 33c-.489 0-.917-.359-.988-.858l-1-7c-.078-.547.302-1.054.848-1.132.548-.073 1.054.302 1.131.849l1 7c.078.547-.302 1.054-.848 1.132-.048.006-.095.009-.143.009z"/><path fill="#F7DECE" d="M15.999 21c-.472 0-.892-.335-.982-.815-.102-.543.256-1.066.799-1.167l15.999-3c.552-.102 1.066.256 1.167.799.103.542-.255 1.065-.798 1.167l-16.001 3c-.061.01-.123.016-.184.016z"/><path fill="#DD2E44" d="M12 13s1 1 1 3 0 3-2 6-4 3-5 5 0 2 2 1 1 4 4 4 2-3 4-3 3 3 5 3 2.581-2.419 1-4c-1-1 2-3 3-2 1.581 1.581 3.236-.764 1-3-1-1-1.789-2.105 0-3 2-1 2.5-5 0-4-3.344 1.338-8 3.161-8 0v-4s-2 0-2-3c0 0-1.25 4-3.25 0 0 0 1.25 3-.75 4z"/><path fill="#DD2E44" d="M16 36c-.552 0-1-.447-1-1v-3c0-.553.448-1 1-1s1 .447 1 1v3c0 .553-.448 1-1 1zm16.429-17.37c-.22 0-.441-.072-.626-.221-.431-.347-.498-.976-.151-1.406l1.781-2.211c.346-.428.975-.498 1.405-.151.431.347.498.976.151 1.406l-1.781 2.211c-.197.245-.486.372-.779.372z"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#DD2E44" d="M16.908 32.178c.05-.603-.299-1.018-.755-1.024h-.188c-.456.006-.805.421-.755 1.024.075.905-.017 1.4-.052 2.318-.025.674.296 1.498.901 1.491.605.007.926-.817.901-1.491-.035-.918-.127-1.413-.052-2.318z"/><path fill="#F7DECE" d="M17.021 27.471c.001-.268-.486-.398-.962-.394-.476-.004-.963.126-.962.394 0 0 .409 3.448.331 6.691-.007.286.313.44.631.443.318-.003.638-.156.631-.443-.078-3.243.331-6.691.331-6.691z"/><path fill="#DD2E44" d="M15.385 32.081h1.365v.65h-1.365z"/><path fill="#F7DECE" d="M24.23 20.819s3.162-2.282 3.598-2.309c.247-.016 1.883-.13 2.23-.163 1.259-.125 3.854-.67 4.081-.719.228-.05.322.031.839-.806.517-.838-.044-.64-.044-.64s-.354.293-.547.379-.562.173-.909.166c-1.085-.023-7.175-.281-7.175-.281-.848.049-1.288.04-1.615.673-.574 1.104-.493 3.138-.458 3.7z"/><path fill="#292F33" d="M16.043 1.013c.203-.378.538-.985 1.806-.602 1.915.579.194 1.602.194 1.602s2 1 2 4-2.344 2.369-2.344 5.531l-.359.534s.644-.438-1.356 1.562c-4 4-6.782-1.274-6.412-2.754.542-2.169-.529-1.873-.529-3.873s2-2 2-4 2-3 3-3 2 1 2 1z"/><ellipse fill="#F7DECE" cx="14.668" cy="5.013" rx="2.625" ry="3"/><path fill="#292F33" d="M14.543 1.013c-.927 0-1.727.306-2.158.755-1.103-.208-.477 1.517-1.342 3.245-1 2 1 4 1 3s0-4 2-4h.5c1.381 0 2.5-.671 2.5-1.5s-1.119-1.5-2.5-1.5z"/><path fill="#F7DECE" d="M18.6 9.333c-.98-.334-1.68-.297-2.877-.313l-.432-3.883c-.061-.549-.562-.948-1.104-.883-.549.061-.944.555-.883 1.104l.406 3.656-1.94.046.022 1.953c.009.262.086.588.251 1 1 2.5 6 2.985 6 .5 0-.604-.048-1.06-.15-1.407 1.205.088 3.366-.867.707-1.773z"/><path fill="#DD2E44" d="M13.043 16.013c0 2 0 3-2 6s-4 3-5 5 0 2 2 1 1 4 4 4 2-3 4-3 3 3 5 3 2.581-2.419 1-4c-1-1 2-3 3-2 1.581 1.581 3.236-.764 1-3-1-1-1.789-2.105 0-3 2-1 2.5-5 0-4-3.344 1.338-8 3.161-8 0v-4s-1.359-.364-1.791-2.983l-.188-.006s-.561 3.494-2.821.008l-.212.002s.86 2.616-.65 3.77c-.101.076.662 1.209.662 3.209z"/><path d="M26.043 18.888c-1.122.561-1.23 1.205-.908 1.854.159-.253.446-.498.908-.729 1.251-.625 1.915-2.424 1.625-3.439-.187.902-.766 1.885-1.625 2.314zm-5 12c-2 0-3-3-5-3s-1 3-4 3-2-5-4-4c-1.08.54-1.853.773-2.192.572-.611 1.526.362 1.468 2.192.553 2-1 1 4 4 4s2-3 4-3 3 3 5 3c1.421 0 2.106-1.222 1.828-2.496-.209.783-.844 1.371-1.828 1.371zm4-6c-1-1-4 1-3 2 .014.014.021.03.034.044.613-.86 2.271-1.614 2.966-.919 1.191 1.191 2.422.154 2.003-1.385-.266.814-1.143 1.12-2.003.26z" fill="#A0041E"/><path fill="#DD2E44" d="M35.85 15.69s-.423-.21-.785.319c-.072.107-.132.172-.132.172.041.072.027.15.005.217-.13.398-.472.696-1.126.79-.272.039-.49.087-.684.138l.019-.605-.65-.021-.028.874c-.296.17-.39.348-.434.481-.096.292.556.637.963.771.368.121.688.175.91.182.245.007 1.136.225 1.136.225l.088-.269s-.72-.335-.966-.446c-.198-.09-.079-.582.224-.635.805-.141.997-.076 1.12-.454l.448-1.375c.083-.248-.108-.364-.108-.364z"/><path fill="#F7DECE" d="M12.386 9.254c-.101-.078-.216-.132-.34-.161-.167-.04-.351-.035-.547.013-.39.097-.964.206-1.572.322-.83.158-1.931.476-2.229.476s-1.515-.391-2.634-.537c-.37-.048-1.552-.165-1.804-.193-.342-.038-.756-.08-1.073-.15-.146-.032-.713-.184-.943-.225-.436-.078-1.161-.115-1.202-.03-.176.368.763.233 1.538.913.454.398.916.381 1.355.349.347-.025 1.447.573 2.326.841.635.194 2.056.533 2.26.562s1.296-.052 2.023-.11c.735-.057 1.371-.107 1.879-.075.485.031.849-.079 1.083-.326.292-.309.286-.742.278-.867-.024-.339-.165-.624-.398-.802zm11.198 1.335c-.168-.229-.565-.565-1.412-.8-.657-.183-3.994-.629-4.649-.707-.508-.061-.197 1.809.06 1.966.165.101.365.11.667.141 1.223.126 3.062.028 3.392-.005.143-.014.209.038.218.129-.063.29-.287.669-.477 1.104-.318.727-.656 1.714-.778 1.827l-.111.101c-.251.046-.549.174-.815.391-.095.077-.184.172-.252.364-.094.268.17.299.234.138.027-.067.091-.183.239-.221-.005.031-.015.057-.016.093-.002.058-.017.106-.027.158-.228.395-.682.553-.651.706.007.033.048.035.08.044-.154.104-.274.176-.264.256.008.065.08.08.178.071-.071.053-.117.1-.111.149.026.209.556-.116.81-.219.433-.176.686-.36.986-.636.349-.322.518-.787.669-1.045.111-.19 1.441-1.807 1.736-2.348.435-.798.462-1.428.294-1.657z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f483-1f3fc.svg b/public/emoji/1f483-1f3fc.svg
index 8f68656c5649c08817d9574e6be93419062352a2..972ac6a544b652984b05601f507e36ec66ea3456 100644
--- a/public/emoji/1f483-1f3fc.svg
+++ b/public/emoji/1f483-1f3fc.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#FFE51E" d="M16 1c.203-.378.538-.985 1.806-.602C19.722.978 18 2 18 2s2 1 2 4-1 1.838-1 5c0 2-2 0-2 0l-3 3c-4 4-6-1-5-3s0-2 0-4 2-2 2-4 2-3 3-3 2 1 2 1z"/><ellipse fill="#F3D2A2" cx="14.625" cy="5" rx="2.625" ry="3"/><path fill="#FFE51E" d="M14.5 1c-.927 0-1.727.306-2.158.755C11.239 1.548 11.864 3.272 11 5c-1 2 1 4 1 3s0-4 2-4h.5c1.381 0 2.5-.671 2.5-1.5S15.881 1 14.5 1z"/><path fill="#F3D2A2" d="M22.707 10.293c-.373-.373-1.806-1.217-7.027-1.286l-.432-3.883c-.061-.549-.562-.948-1.104-.883-.549.061-.944.555-.883 1.104L13.667 9H9.083l-5.918-.986c-.55-.091-1.06.278-1.151.822-.091.544.277 1.06.821 1.15l6 1c.055.01.11.014.165.014h2.749c.009.262.086.588.251 1 1 2.5 3 8 3 8 2.209 0 3-5.015 3-7.5 0-.604-.048-1.06-.15-1.407 1.206.087 2.027.223 2.567.351L18.2 14.4c-.331.442-.242 1.069.2 1.4.18.135.391.2.599.2.305 0 .604-.138.801-.4l3-4c.299-.398.259-.955-.093-1.307zM15.998 33c-.489 0-.917-.359-.988-.858l-1-7c-.078-.547.302-1.054.848-1.132.548-.073 1.054.302 1.131.849l1 7c.078.547-.302 1.054-.848 1.132-.048.006-.095.009-.143.009z"/><path fill="#F3D2A2" d="M15.999 21c-.472 0-.892-.335-.982-.815-.102-.543.256-1.066.799-1.167l15.999-3c.552-.102 1.066.256 1.167.799.103.542-.255 1.065-.798 1.167l-16.001 3c-.061.01-.123.016-.184.016z"/><path fill="#DD2E44" d="M12 13s1 1 1 3 0 3-2 6-4 3-5 5 0 2 2 1 1 4 4 4 2-3 4-3 3 3 5 3 2.581-2.419 1-4c-1-1 2-3 3-2 1.581 1.581 3.236-.764 1-3-1-1-1.789-2.105 0-3 2-1 2.5-5 0-4-3.344 1.338-8 3.161-8 0v-4s-2 0-2-3c0 0-1.25 4-3.25 0 0 0 1.25 3-.75 4z"/><path fill="#DD2E44" d="M16 36c-.552 0-1-.447-1-1v-3c0-.553.448-1 1-1s1 .447 1 1v3c0 .553-.448 1-1 1zm16.429-17.37c-.22 0-.441-.072-.626-.221-.431-.347-.498-.976-.151-1.406l1.781-2.211c.346-.428.975-.498 1.405-.151.431.347.498.976.151 1.406l-1.781 2.211c-.197.245-.486.372-.779.372z"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#DD2E44" d="M16.908 32.178c.05-.603-.299-1.018-.755-1.024h-.188c-.456.006-.805.421-.755 1.024.075.905-.017 1.4-.052 2.318-.025.674.296 1.498.901 1.491.605.007.926-.817.901-1.491-.035-.918-.127-1.413-.052-2.318z"/><path fill="#F3D2A2" d="M17.021 27.471c.001-.268-.486-.398-.962-.394-.476-.004-.963.126-.962.394 0 0 .409 3.448.331 6.691-.007.286.313.44.631.443.318-.003.638-.156.631-.443-.078-3.243.331-6.691.331-6.691z"/><path fill="#DD2E44" d="M15.385 32.081h1.365v.65h-1.365z"/><path fill="#F3D2A2" d="M24.23 20.819s3.162-2.282 3.598-2.309c.247-.016 1.883-.13 2.23-.163 1.259-.125 3.854-.67 4.081-.719.228-.05.322.031.839-.806.517-.838-.044-.64-.044-.64s-.354.293-.547.379-.562.173-.909.166c-1.085-.023-7.175-.281-7.175-.281-.848.049-1.288.04-1.615.673-.574 1.104-.493 3.138-.458 3.7z"/><path fill="#FFE51E" d="M16.043 1.013c.203-.378.538-.985 1.806-.602 1.915.579.194 1.602.194 1.602s2 1 2 4-2.344 2.369-2.344 5.531l-.359.534s.644-.438-1.356 1.562c-4 4-6.782-1.274-6.412-2.754.542-2.169-.529-1.873-.529-3.873s2-2 2-4 2-3 3-3 2 1 2 1z"/><ellipse fill="#F3D2A2" cx="14.668" cy="5.013" rx="2.625" ry="3"/><path fill="#FFE51E" d="M14.543 1.013c-.927 0-1.727.306-2.158.755-1.103-.208-.477 1.517-1.342 3.245-1 2 1 4 1 3s0-4 2-4h.5c1.381 0 2.5-.671 2.5-1.5s-1.119-1.5-2.5-1.5z"/><path fill="#F3D2A2" d="M18.6 9.333c-.98-.334-1.68-.297-2.877-.313l-.432-3.883c-.061-.549-.562-.948-1.104-.883-.549.061-.944.555-.883 1.104l.406 3.656-1.94.046.022 1.953c.009.262.086.588.251 1 1 2.5 6 2.985 6 .5 0-.604-.048-1.06-.15-1.407 1.205.088 3.366-.867.707-1.773z"/><path fill="#DD2E44" d="M13.043 16.013c0 2 0 3-2 6s-4 3-5 5 0 2 2 1 1 4 4 4 2-3 4-3 3 3 5 3 2.581-2.419 1-4c-1-1 2-3 3-2 1.581 1.581 3.236-.764 1-3-1-1-1.789-2.105 0-3 2-1 2.5-5 0-4-3.344 1.338-8 3.161-8 0v-4s-1.359-.364-1.791-2.983l-.188-.006s-.561 3.494-2.821.008l-.212.002s.86 2.616-.65 3.77c-.101.076.662 1.209.662 3.209z"/><path d="M26.043 18.888c-1.122.561-1.23 1.205-.908 1.854.159-.253.446-.498.908-.729 1.251-.625 1.915-2.424 1.625-3.439-.187.902-.766 1.885-1.625 2.314zm-5 12c-2 0-3-3-5-3s-1 3-4 3-2-5-4-4c-1.08.54-1.853.773-2.192.572-.611 1.526.362 1.468 2.192.553 2-1 1 4 4 4s2-3 4-3 3 3 5 3c1.421 0 2.106-1.222 1.828-2.496-.209.783-.844 1.371-1.828 1.371zm4-6c-1-1-4 1-3 2 .014.014.021.03.034.044.613-.86 2.271-1.614 2.966-.919 1.191 1.191 2.422.154 2.003-1.385-.266.814-1.143 1.12-2.003.26z" fill="#A0041E"/><path fill="#DD2E44" d="M35.85 15.69s-.423-.21-.785.319c-.072.107-.132.172-.132.172.041.072.027.15.005.217-.13.398-.472.696-1.126.79-.272.039-.49.087-.684.138l.019-.605-.65-.021-.028.874c-.296.17-.39.348-.434.481-.096.292.556.637.963.771.368.121.688.175.91.182.245.007 1.136.225 1.136.225l.088-.269s-.72-.335-.966-.446c-.198-.09-.079-.582.224-.635.805-.141.997-.076 1.12-.454l.448-1.375c.083-.248-.108-.364-.108-.364z"/><path fill="#F3D2A2" d="M12.386 9.254c-.101-.078-.216-.132-.34-.161-.167-.04-.351-.035-.547.013-.39.097-.964.206-1.572.322-.83.158-1.931.476-2.229.476s-1.515-.391-2.634-.537c-.37-.048-1.552-.165-1.804-.193-.342-.038-.756-.08-1.073-.15-.146-.032-.713-.184-.943-.225-.436-.078-1.161-.115-1.202-.03-.176.368.763.233 1.538.913.454.398.916.381 1.355.349.347-.025 1.447.573 2.326.841.635.194 2.056.533 2.26.562s1.296-.052 2.023-.11c.735-.057 1.371-.107 1.879-.075.485.031.849-.079 1.083-.326.292-.309.286-.742.278-.867-.024-.339-.165-.624-.398-.802zm11.198 1.335c-.168-.229-.565-.565-1.412-.8-.657-.183-3.994-.629-4.649-.707-.508-.061-.197 1.809.06 1.966.165.101.365.11.667.141 1.223.126 3.062.028 3.392-.005.143-.014.209.038.218.129-.063.29-.287.669-.477 1.104-.318.727-.656 1.714-.778 1.827l-.111.101c-.251.046-.549.174-.815.391-.095.077-.184.172-.252.364-.094.268.17.299.234.138.027-.067.091-.183.239-.221-.005.031-.015.057-.016.093-.002.058-.017.106-.027.158-.228.395-.682.553-.651.706.007.033.048.035.08.044-.154.104-.274.176-.264.256.008.065.08.08.178.071-.071.053-.117.1-.111.149.026.209.556-.116.81-.219.433-.176.686-.36.986-.636.349-.322.518-.787.669-1.045.111-.19 1.441-1.807 1.736-2.348.435-.798.462-1.428.294-1.657z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f483-1f3fd.svg b/public/emoji/1f483-1f3fd.svg
index 518d5fee5e719241079f7c092f747c051420d019..50377b68735e2d7cb1025cfde3b1fe4b37ff181f 100644
--- a/public/emoji/1f483-1f3fd.svg
+++ b/public/emoji/1f483-1f3fd.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#963B22" d="M16 1c.203-.378.538-.985 1.806-.602C19.722.978 18 2 18 2s2 1 2 4-1 1.838-1 5c0 2-2 0-2 0l-3 3c-4 4-6-1-5-3s0-2 0-4 2-2 2-4 2-3 3-3 2 1 2 1z"/><ellipse fill="#D5AB88" cx="14.625" cy="5" rx="2.625" ry="3"/><path fill="#963B22" d="M14.5 1c-.927 0-1.727.306-2.158.755C11.239 1.548 11.864 3.272 11 5c-1 2 1 4 1 3s0-4 2-4h.5c1.381 0 2.5-.671 2.5-1.5S15.881 1 14.5 1z"/><path fill="#D5AB88" d="M22.707 10.293c-.373-.373-1.806-1.217-7.027-1.286l-.432-3.883c-.061-.549-.562-.948-1.104-.883-.549.061-.944.555-.883 1.104L13.667 9H9.083l-5.918-.986c-.55-.091-1.06.278-1.151.822-.091.544.277 1.06.821 1.15l6 1c.055.01.11.014.165.014h2.749c.009.262.086.588.251 1 1 2.5 3 8 3 8 2.209 0 3-5.015 3-7.5 0-.604-.048-1.06-.15-1.407 1.206.087 2.027.223 2.567.351L18.2 14.4c-.331.442-.242 1.069.2 1.4.18.135.391.2.599.2.305 0 .604-.138.801-.4l3-4c.299-.398.259-.955-.093-1.307zM15.998 33c-.489 0-.917-.359-.988-.858l-1-7c-.078-.547.302-1.054.848-1.132.548-.073 1.054.302 1.131.849l1 7c.078.547-.302 1.054-.848 1.132-.048.006-.095.009-.143.009z"/><path fill="#D5AB88" d="M15.999 21c-.472 0-.892-.335-.982-.815-.102-.543.256-1.066.799-1.167l15.999-3c.552-.102 1.066.256 1.167.799.103.542-.255 1.065-.798 1.167l-16.001 3c-.061.01-.123.016-.184.016z"/><path fill="#DD2E44" d="M12 13s1 1 1 3 0 3-2 6-4 3-5 5 0 2 2 1 1 4 4 4 2-3 4-3 3 3 5 3 2.581-2.419 1-4c-1-1 2-3 3-2 1.581 1.581 3.236-.764 1-3-1-1-1.789-2.105 0-3 2-1 2.5-5 0-4-3.344 1.338-8 3.161-8 0v-4s-2 0-2-3c0 0-1.25 4-3.25 0 0 0 1.25 3-.75 4z"/><path fill="#DD2E44" d="M16 36c-.552 0-1-.447-1-1v-3c0-.553.448-1 1-1s1 .447 1 1v3c0 .553-.448 1-1 1zm16.429-17.37c-.22 0-.441-.072-.626-.221-.431-.347-.498-.976-.151-1.406l1.781-2.211c.346-.428.975-.498 1.405-.151.431.347.498.976.151 1.406l-1.781 2.211c-.197.245-.486.372-.779.372z"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#DD2E44" d="M16.908 32.178c.05-.603-.299-1.018-.755-1.024h-.188c-.456.006-.805.421-.755 1.024.075.905-.017 1.4-.052 2.318-.025.674.296 1.498.901 1.491.605.007.926-.817.901-1.491-.035-.918-.127-1.413-.052-2.318z"/><path fill="#D4AB88" d="M17.021 27.471c.001-.268-.486-.398-.962-.394-.476-.004-.963.126-.962.394 0 0 .409 3.448.331 6.691-.007.286.313.44.631.443.318-.003.638-.156.631-.443-.078-3.243.331-6.691.331-6.691z"/><path fill="#DD2E44" d="M15.385 32.081h1.365v.65h-1.365z"/><path fill="#D4AB88" d="M24.23 20.819s3.162-2.282 3.598-2.309c.247-.016 1.883-.13 2.23-.163 1.259-.125 3.854-.67 4.081-.719.228-.05.322.031.839-.806.517-.838-.044-.64-.044-.64s-.354.293-.547.379-.562.173-.909.166c-1.085-.023-7.175-.281-7.175-.281-.848.049-1.288.04-1.615.673-.574 1.104-.493 3.138-.458 3.7z"/><path fill="#963B22" d="M16.043 1.013c.203-.378.538-.985 1.806-.602 1.915.579.194 1.602.194 1.602s2 1 2 4-2.344 2.369-2.344 5.531l-.359.534s.644-.438-1.356 1.562c-4 4-6.782-1.274-6.412-2.754.542-2.169-.529-1.873-.529-3.873s2-2 2-4 2-3 3-3 2 1 2 1z"/><ellipse fill="#D4AB88" cx="14.668" cy="5.013" rx="2.625" ry="3"/><path fill="#963B22" d="M14.543 1.013c-.927 0-1.727.306-2.158.755-1.103-.208-.477 1.517-1.342 3.245-1 2 1 4 1 3s0-4 2-4h.5c1.381 0 2.5-.671 2.5-1.5s-1.119-1.5-2.5-1.5z"/><path fill="#D4AB88" d="M18.6 9.333c-.98-.334-1.68-.297-2.877-.313l-.432-3.883c-.061-.549-.562-.948-1.104-.883-.549.061-.944.555-.883 1.104l.406 3.656-1.94.046.022 1.953c.009.262.086.588.251 1 1 2.5 6 2.985 6 .5 0-.604-.048-1.06-.15-1.407 1.205.088 3.366-.867.707-1.773z"/><path fill="#DD2E44" d="M13.043 16.013c0 2 0 3-2 6s-4 3-5 5 0 2 2 1 1 4 4 4 2-3 4-3 3 3 5 3 2.581-2.419 1-4c-1-1 2-3 3-2 1.581 1.581 3.236-.764 1-3-1-1-1.789-2.105 0-3 2-1 2.5-5 0-4-3.344 1.338-8 3.161-8 0v-4s-1.359-.364-1.791-2.983l-.188-.006s-.561 3.494-2.821.008l-.212.002s.86 2.616-.65 3.77c-.101.076.662 1.209.662 3.209z"/><path d="M26.043 18.888c-1.122.561-1.23 1.205-.908 1.854.159-.253.446-.498.908-.729 1.251-.625 1.915-2.424 1.625-3.439-.187.902-.766 1.885-1.625 2.314zm-5 12c-2 0-3-3-5-3s-1 3-4 3-2-5-4-4c-1.08.54-1.853.773-2.192.572-.611 1.526.362 1.468 2.192.553 2-1 1 4 4 4s2-3 4-3 3 3 5 3c1.421 0 2.106-1.222 1.828-2.496-.209.783-.844 1.371-1.828 1.371zm4-6c-1-1-4 1-3 2 .014.014.021.03.034.044.613-.86 2.271-1.614 2.966-.919 1.191 1.191 2.422.154 2.003-1.385-.266.814-1.143 1.12-2.003.26z" fill="#A0041E"/><path fill="#DD2E44" d="M35.85 15.69s-.423-.21-.785.319c-.072.107-.132.172-.132.172.041.072.027.15.005.217-.13.398-.472.696-1.126.79-.272.039-.49.087-.684.138l.019-.605-.65-.021-.028.874c-.296.17-.39.348-.434.481-.096.292.556.637.963.771.368.121.688.175.91.182.245.007 1.136.225 1.136.225l.088-.269s-.72-.335-.966-.446c-.198-.09-.079-.582.224-.635.805-.141.997-.076 1.12-.454l.448-1.375c.083-.248-.108-.364-.108-.364z"/><path fill="#D4AB88" d="M12.386 9.254c-.101-.078-.216-.132-.34-.161-.167-.04-.351-.035-.547.013-.39.097-.964.206-1.572.322-.83.158-1.931.476-2.229.476s-1.515-.391-2.634-.537c-.37-.048-1.552-.165-1.804-.193-.342-.038-.756-.08-1.073-.15-.146-.032-.713-.184-.943-.225-.436-.078-1.161-.115-1.202-.03-.176.368.763.233 1.538.913.454.398.916.381 1.355.349.347-.025 1.447.573 2.326.841.635.194 2.056.533 2.26.562s1.296-.052 2.023-.11c.735-.057 1.371-.107 1.879-.075.485.031.849-.079 1.083-.326.292-.309.286-.742.278-.867-.024-.339-.165-.624-.398-.802zm11.198 1.335c-.168-.229-.565-.565-1.412-.8-.657-.183-3.994-.629-4.649-.707-.508-.061-.197 1.809.06 1.966.165.101.365.11.667.141 1.223.126 3.062.028 3.392-.005.143-.014.209.038.218.129-.063.29-.287.669-.477 1.104-.318.727-.656 1.714-.778 1.827l-.111.101c-.251.046-.549.174-.815.391-.095.077-.184.172-.252.364-.094.268.17.299.234.138.027-.067.091-.183.239-.221-.005.031-.015.057-.016.093-.002.058-.017.106-.027.158-.228.395-.682.553-.651.706.007.033.048.035.08.044-.154.104-.274.176-.264.256.008.065.08.08.178.071-.071.053-.117.1-.111.149.026.209.556-.116.81-.219.433-.176.686-.36.986-.636.349-.322.518-.787.669-1.045.111-.19 1.441-1.807 1.736-2.348.435-.798.462-1.428.294-1.657z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f483-1f3fe.svg b/public/emoji/1f483-1f3fe.svg
index 2b7025cc3cf4b6241dd350adcca3760d6d916f43..e4dde292fdaa9feafc73f81ac57b3d23ca678c9a 100644
--- a/public/emoji/1f483-1f3fe.svg
+++ b/public/emoji/1f483-1f3fe.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#60352A" d="M16 1c.203-.378.538-.985 1.806-.602C19.722.978 18 2 18 2s2 1 2 4-1 1.838-1 5c0 2-2 0-2 0l-3 3c-4 4-6-1-5-3s0-2 0-4 2-2 2-4 2-3 3-3 2 1 2 1z"/><ellipse fill="#AF7E57" cx="14.625" cy="5" rx="2.625" ry="3"/><path fill="#60352A" d="M14.5 1c-.927 0-1.727.306-2.158.755C11.239 1.548 11.864 3.272 11 5c-1 2 1 4 1 3s0-4 2-4h.5c1.381 0 2.5-.671 2.5-1.5S15.881 1 14.5 1z"/><path fill="#AF7E57" d="M22.707 10.293c-.373-.373-1.806-1.217-7.027-1.286l-.432-3.883c-.061-.549-.562-.948-1.104-.883-.549.061-.944.555-.883 1.104L13.667 9H9.083l-5.918-.986c-.55-.091-1.06.278-1.151.822-.091.544.277 1.06.821 1.15l6 1c.055.01.11.014.165.014h2.749c.009.262.086.588.251 1 1 2.5 3 8 3 8 2.209 0 3-5.015 3-7.5 0-.604-.048-1.06-.15-1.407 1.206.087 2.027.223 2.567.351L18.2 14.4c-.331.442-.242 1.069.2 1.4.18.135.391.2.599.2.305 0 .604-.138.801-.4l3-4c.299-.398.259-.955-.093-1.307zM15.998 33c-.489 0-.917-.359-.988-.858l-1-7c-.078-.547.302-1.054.848-1.132.548-.073 1.054.302 1.131.849l1 7c.078.547-.302 1.054-.848 1.132-.048.006-.095.009-.143.009z"/><path fill="#AF7E57" d="M15.999 21c-.472 0-.892-.335-.982-.815-.102-.543.256-1.066.799-1.167l15.999-3c.552-.102 1.066.256 1.167.799.103.542-.255 1.065-.798 1.167l-16.001 3c-.061.01-.123.016-.184.016z"/><path fill="#DD2E44" d="M12 13s1 1 1 3 0 3-2 6-4 3-5 5 0 2 2 1 1 4 4 4 2-3 4-3 3 3 5 3 2.581-2.419 1-4c-1-1 2-3 3-2 1.581 1.581 3.236-.764 1-3-1-1-1.789-2.105 0-3 2-1 2.5-5 0-4-3.344 1.338-8 3.161-8 0v-4s-2 0-2-3c0 0-1.25 4-3.25 0 0 0 1.25 3-.75 4z"/><path fill="#DD2E44" d="M16 36c-.552 0-1-.447-1-1v-3c0-.553.448-1 1-1s1 .447 1 1v3c0 .553-.448 1-1 1zm16.429-17.37c-.22 0-.441-.072-.626-.221-.431-.347-.498-.976-.151-1.406l1.781-2.211c.346-.428.975-.498 1.405-.151.431.347.498.976.151 1.406l-1.781 2.211c-.197.245-.486.372-.779.372z"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#DD2E44" d="M16.908 32.178c.05-.603-.299-1.018-.755-1.024h-.188c-.456.006-.805.421-.755 1.024.075.905-.017 1.4-.052 2.318-.025.674.296 1.498.901 1.491.605.007.926-.817.901-1.491-.035-.918-.127-1.413-.052-2.318z"/><path fill="#AF7E57" d="M17.021 27.471c.001-.268-.486-.398-.962-.394-.476-.004-.963.126-.962.394 0 0 .409 3.448.331 6.691-.007.286.313.44.631.443.318-.003.638-.156.631-.443-.078-3.243.331-6.691.331-6.691z"/><path fill="#DD2E44" d="M15.385 32.081h1.365v.65h-1.365z"/><path fill="#AF7E57" d="M24.23 20.819s3.162-2.282 3.598-2.309c.247-.016 1.883-.13 2.23-.163 1.259-.125 3.854-.67 4.081-.719.228-.05.322.031.839-.806.517-.838-.044-.64-.044-.64s-.354.293-.547.379-.562.173-.909.166c-1.085-.023-7.175-.281-7.175-.281-.848.049-1.288.04-1.615.673-.574 1.104-.493 3.138-.458 3.7z"/><path fill="#60352A" d="M16.043 1.013c.203-.378.538-.985 1.806-.602 1.915.579.194 1.602.194 1.602s2 1 2 4-2.344 2.369-2.344 5.531l-.359.534s.644-.438-1.356 1.562c-4 4-6.782-1.274-6.412-2.754.542-2.169-.529-1.873-.529-3.873s2-2 2-4 2-3 3-3 2 1 2 1z"/><ellipse fill="#AF7E57" cx="14.668" cy="5.013" rx="2.625" ry="3"/><path fill="#60352A" d="M14.543 1.013c-.927 0-1.727.306-2.158.755-1.103-.208-.477 1.517-1.342 3.245-1 2 1 4 1 3s0-4 2-4h.5c1.381 0 2.5-.671 2.5-1.5s-1.119-1.5-2.5-1.5z"/><path fill="#AF7E57" d="M18.6 9.333c-.98-.334-1.68-.297-2.877-.313l-.432-3.883c-.061-.549-.562-.948-1.104-.883-.549.061-.944.555-.883 1.104l.406 3.656-1.94.046.022 1.953c.009.262.086.588.251 1 1 2.5 6 2.985 6 .5 0-.604-.048-1.06-.15-1.407 1.205.088 3.366-.867.707-1.773z"/><path fill="#DD2E44" d="M13.043 16.013c0 2 0 3-2 6s-4 3-5 5 0 2 2 1 1 4 4 4 2-3 4-3 3 3 5 3 2.581-2.419 1-4c-1-1 2-3 3-2 1.581 1.581 3.236-.764 1-3-1-1-1.789-2.105 0-3 2-1 2.5-5 0-4-3.344 1.338-8 3.161-8 0v-4s-1.359-.364-1.791-2.983l-.188-.006s-.561 3.494-2.821.008l-.212.002s.86 2.616-.65 3.77c-.101.076.662 1.209.662 3.209z"/><path d="M26.043 18.888c-1.122.561-1.23 1.205-.908 1.854.159-.253.446-.498.908-.729 1.251-.625 1.915-2.424 1.625-3.439-.187.902-.766 1.885-1.625 2.314zm-5 12c-2 0-3-3-5-3s-1 3-4 3-2-5-4-4c-1.08.54-1.853.773-2.192.572-.611 1.526.362 1.468 2.192.553 2-1 1 4 4 4s2-3 4-3 3 3 5 3c1.421 0 2.106-1.222 1.828-2.496-.209.783-.844 1.371-1.828 1.371zm4-6c-1-1-4 1-3 2 .014.014.021.03.034.044.613-.86 2.271-1.614 2.966-.919 1.191 1.191 2.422.154 2.003-1.385-.266.814-1.143 1.12-2.003.26z" fill="#A0041E"/><path fill="#DD2E44" d="M35.85 15.69s-.423-.21-.785.319c-.072.107-.132.172-.132.172.041.072.027.15.005.217-.13.398-.472.696-1.126.79-.272.039-.49.087-.684.138l.019-.605-.65-.021-.028.874c-.296.17-.39.348-.434.481-.096.292.556.637.963.771.368.121.688.175.91.182.245.007 1.136.225 1.136.225l.088-.269s-.72-.335-.966-.446c-.198-.09-.079-.582.224-.635.805-.141.997-.076 1.12-.454l.448-1.375c.083-.248-.108-.364-.108-.364z"/><path fill="#AF7E57" d="M12.386 9.254c-.101-.078-.216-.132-.34-.161-.167-.04-.351-.035-.547.013-.39.097-.964.206-1.572.322-.83.158-1.931.476-2.229.476s-1.515-.391-2.634-.537c-.37-.048-1.552-.165-1.804-.193-.342-.038-.756-.08-1.073-.15-.146-.032-.713-.184-.943-.225-.436-.078-1.161-.115-1.202-.03-.176.368.763.233 1.538.913.454.398.916.381 1.355.349.347-.025 1.447.573 2.326.841.635.194 2.056.533 2.26.562s1.296-.052 2.023-.11c.735-.057 1.371-.107 1.879-.075.485.031.849-.079 1.083-.326.292-.309.286-.742.278-.867-.024-.339-.165-.624-.398-.802zm11.198 1.335c-.168-.229-.565-.565-1.412-.8-.657-.183-3.994-.629-4.649-.707-.508-.061-.197 1.809.06 1.966.165.101.365.11.667.141 1.223.126 3.062.028 3.392-.005.143-.014.209.038.218.129-.063.29-.287.669-.477 1.104-.318.727-.656 1.714-.778 1.827l-.111.101c-.251.046-.549.174-.815.391-.095.077-.184.172-.252.364-.094.268.17.299.234.138.027-.067.091-.183.239-.221-.005.031-.015.057-.016.093-.002.058-.017.106-.027.158-.228.395-.682.553-.651.706.007.033.048.035.08.044-.154.104-.274.176-.264.256.008.065.08.08.178.071-.071.053-.117.1-.111.149.026.209.556-.116.81-.219.433-.176.686-.36.986-.636.349-.322.518-.787.669-1.045.111-.19 1.441-1.807 1.736-2.348.435-.798.462-1.428.294-1.657z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f483-1f3ff.svg b/public/emoji/1f483-1f3ff.svg
index edafd473fa398fd5a42b92082b7c382c0f1873ae..ac535068781939ed58ac32106e8e737a4afde9ec 100644
--- a/public/emoji/1f483-1f3ff.svg
+++ b/public/emoji/1f483-1f3ff.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#0B0200" d="M16 1c.203-.378.538-.985 1.806-.602C19.722.978 18 2 18 2s2 1 2 4-1 1.838-1 5c0 2-2 0-2 0l-3 3c-4 4-6-1-5-3s0-2 0-4 2-2 2-4 2-3 3-3 2 1 2 1z"/><ellipse fill="#7C533E" cx="14.625" cy="5" rx="2.625" ry="3"/><path fill="#0B0200" d="M14.5 1c-.927 0-1.727.306-2.158.755C11.239 1.548 11.864 3.272 11 5c-1 2 1 4 1 3s0-4 2-4h.5c1.381 0 2.5-.671 2.5-1.5S15.881 1 14.5 1z"/><path fill="#7C533E" d="M22.707 10.293c-.373-.373-1.806-1.217-7.027-1.286l-.432-3.883c-.061-.549-.562-.948-1.104-.883-.549.061-.944.555-.883 1.104L13.667 9H9.083l-5.918-.986c-.55-.091-1.06.278-1.151.822-.091.544.277 1.06.821 1.15l6 1c.055.01.11.014.165.014h2.749c.009.262.086.588.251 1 1 2.5 3 8 3 8 2.209 0 3-5.015 3-7.5 0-.604-.048-1.06-.15-1.407 1.206.087 2.027.223 2.567.351L18.2 14.4c-.331.442-.242 1.069.2 1.4.18.135.391.2.599.2.305 0 .604-.138.801-.4l3-4c.299-.398.259-.955-.093-1.307zM15.998 33c-.489 0-.917-.359-.988-.858l-1-7c-.078-.547.302-1.054.848-1.132.548-.073 1.054.302 1.131.849l1 7c.078.547-.302 1.054-.848 1.132-.048.006-.095.009-.143.009z"/><path fill="#7C533E" d="M15.999 21c-.472 0-.892-.335-.982-.815-.102-.543.256-1.066.799-1.167l15.999-3c.552-.102 1.066.256 1.167.799.103.542-.255 1.065-.798 1.167l-16.001 3c-.061.01-.123.016-.184.016z"/><path fill="#DD2E44" d="M12 13s1 1 1 3 0 3-2 6-4 3-5 5 0 2 2 1 1 4 4 4 2-3 4-3 3 3 5 3 2.581-2.419 1-4c-1-1 2-3 3-2 1.581 1.581 3.236-.764 1-3-1-1-1.789-2.105 0-3 2-1 2.5-5 0-4-3.344 1.338-8 3.161-8 0v-4s-2 0-2-3c0 0-1.25 4-3.25 0 0 0 1.25 3-.75 4z"/><path fill="#DD2E44" d="M16 36c-.552 0-1-.447-1-1v-3c0-.553.448-1 1-1s1 .447 1 1v3c0 .553-.448 1-1 1zm16.429-17.37c-.22 0-.441-.072-.626-.221-.431-.347-.498-.976-.151-1.406l1.781-2.211c.346-.428.975-.498 1.405-.151.431.347.498.976.151 1.406l-1.781 2.211c-.197.245-.486.372-.779.372z"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#DD2E44" d="M16.908 32.178c.05-.603-.299-1.018-.755-1.024h-.188c-.456.006-.805.421-.755 1.024.075.905-.017 1.4-.052 2.318-.025.674.296 1.498.901 1.491.605.007.926-.817.901-1.491-.035-.918-.127-1.413-.052-2.318z"/><path fill="#7C533E" d="M17.021 27.471c.001-.268-.486-.398-.962-.394-.476-.004-.963.126-.962.394 0 0 .409 3.448.331 6.691-.007.286.313.44.631.443.318-.003.638-.156.631-.443-.078-3.243.331-6.691.331-6.691z"/><path fill="#DD2E44" d="M15.385 32.081h1.365v.65h-1.365z"/><path fill="#7C533E" d="M24.23 20.819s3.162-2.282 3.598-2.309c.247-.016 1.883-.13 2.23-.163 1.259-.125 3.854-.67 4.081-.719.228-.05.322.031.839-.806.517-.838-.044-.64-.044-.64s-.354.293-.547.379-.562.173-.909.166c-1.085-.023-7.175-.281-7.175-.281-.848.049-1.288.04-1.615.673-.574 1.104-.493 3.138-.458 3.7z"/><path fill="#0B0200" d="M16.043 1.013c.203-.378.538-.985 1.806-.602 1.915.579.194 1.602.194 1.602s2 1 2 4-2.344 2.369-2.344 5.531l-.359.534s.644-.438-1.356 1.562c-4 4-6.782-1.274-6.412-2.754.542-2.169-.529-1.873-.529-3.873s2-2 2-4 2-3 3-3 2 1 2 1z"/><ellipse fill="#7C533E" cx="14.668" cy="5.013" rx="2.625" ry="3"/><path fill="#0B0200" d="M14.543 1.013c-.927 0-1.727.306-2.158.755-1.103-.208-.477 1.517-1.342 3.245-1 2 1 4 1 3s0-4 2-4h.5c1.381 0 2.5-.671 2.5-1.5s-1.119-1.5-2.5-1.5z"/><path fill="#7C533E" d="M18.6 9.333c-.98-.334-1.68-.297-2.877-.313l-.432-3.883c-.061-.549-.562-.948-1.104-.883-.549.061-.944.555-.883 1.104l.406 3.656-1.94.046.022 1.953c.009.262.086.588.251 1 1 2.5 6 2.985 6 .5 0-.604-.048-1.06-.15-1.407 1.205.088 3.366-.867.707-1.773z"/><path fill="#DD2E44" d="M13.043 16.013c0 2 0 3-2 6s-4 3-5 5 0 2 2 1 1 4 4 4 2-3 4-3 3 3 5 3 2.581-2.419 1-4c-1-1 2-3 3-2 1.581 1.581 3.236-.764 1-3-1-1-1.789-2.105 0-3 2-1 2.5-5 0-4-3.344 1.338-8 3.161-8 0v-4s-1.359-.364-1.791-2.983l-.188-.006s-.561 3.494-2.821.008l-.212.002s.86 2.616-.65 3.77c-.101.076.662 1.209.662 3.209z"/><path d="M26.043 18.888c-1.122.561-1.23 1.205-.908 1.854.159-.253.446-.498.908-.729 1.251-.625 1.915-2.424 1.625-3.439-.187.902-.766 1.885-1.625 2.314zm-5 12c-2 0-3-3-5-3s-1 3-4 3-2-5-4-4c-1.08.54-1.853.773-2.192.572-.611 1.526.362 1.468 2.192.553 2-1 1 4 4 4s2-3 4-3 3 3 5 3c1.421 0 2.106-1.222 1.828-2.496-.209.783-.844 1.371-1.828 1.371zm4-6c-1-1-4 1-3 2 .014.014.021.03.034.044.613-.86 2.271-1.614 2.966-.919 1.191 1.191 2.422.154 2.003-1.385-.266.814-1.143 1.12-2.003.26z" fill="#A0041E"/><path fill="#DD2E44" d="M35.85 15.69s-.423-.21-.785.319c-.072.107-.132.172-.132.172.041.072.027.15.005.217-.13.398-.472.696-1.126.79-.272.039-.49.087-.684.138l.019-.605-.65-.021-.028.874c-.296.17-.39.348-.434.481-.096.292.556.637.963.771.368.121.688.175.91.182.245.007 1.136.225 1.136.225l.088-.269s-.72-.335-.966-.446c-.198-.09-.079-.582.224-.635.805-.141.997-.076 1.12-.454l.448-1.375c.083-.248-.108-.364-.108-.364z"/><path fill="#7C533E" d="M12.386 9.254c-.101-.078-.216-.132-.34-.161-.167-.04-.351-.035-.547.013-.39.097-.964.206-1.572.322-.83.158-1.931.476-2.229.476s-1.515-.391-2.634-.537c-.37-.048-1.552-.165-1.804-.193-.342-.038-.756-.08-1.073-.15-.146-.032-.713-.184-.943-.225-.436-.078-1.161-.115-1.202-.03-.176.368.763.233 1.538.913.454.398.916.381 1.355.349.347-.025 1.447.573 2.326.841.635.194 2.056.533 2.26.562s1.296-.052 2.023-.11c.735-.057 1.371-.107 1.879-.075.485.031.849-.079 1.083-.326.292-.309.286-.742.278-.867-.024-.339-.165-.624-.398-.802zm11.198 1.335c-.168-.229-.565-.565-1.412-.8-.657-.183-3.994-.629-4.649-.707-.508-.061-.197 1.809.06 1.966.165.101.365.11.667.141 1.223.126 3.062.028 3.392-.005.143-.014.209.038.218.129-.063.29-.287.669-.477 1.104-.318.727-.656 1.714-.778 1.827l-.111.101c-.251.046-.549.174-.815.391-.095.077-.184.172-.252.364-.094.268.17.299.234.138.027-.067.091-.183.239-.221-.005.031-.015.057-.016.093-.002.058-.017.106-.027.158-.228.395-.682.553-.651.706.007.033.048.035.08.044-.154.104-.274.176-.264.256.008.065.08.08.178.071-.071.053-.117.1-.111.149.026.209.556-.116.81-.219.433-.176.686-.36.986-.636.349-.322.518-.787.669-1.045.111-.19 1.441-1.807 1.736-2.348.435-.798.462-1.428.294-1.657z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f483.svg b/public/emoji/1f483.svg
index 33e8827de5a342b1304b9db5bd428b7b9a93da1a..abc19e5f7b1d851d70f77eded24c5b6455b90121 100644
--- a/public/emoji/1f483.svg
+++ b/public/emoji/1f483.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#FFAC33" d="M16 1c.203-.378.538-.985 1.806-.602C19.722.978 18 2 18 2s2 1 2 4-1 1.838-1 5c0 2-2 0-2 0l-3 3c-4 4-6-1-5-3s0-2 0-4 2-2 2-4 2-3 3-3 2 1 2 1z"/><ellipse fill="#FFDC5D" cx="14.625" cy="5" rx="2.625" ry="3"/><path fill="#FFAC33" d="M14.5 1c-.927 0-1.727.306-2.158.755C11.239 1.548 11.864 3.272 11 5c-1 2 1 4 1 3s0-4 2-4h.5c1.381 0 2.5-.671 2.5-1.5S15.881 1 14.5 1z"/><path fill="#FFDC5D" d="M22.707 10.293c-.373-.373-1.806-1.217-7.027-1.286l-.432-3.883c-.061-.549-.562-.948-1.104-.883-.549.061-.944.555-.883 1.104L13.667 9H9.083l-5.918-.986c-.55-.091-1.06.278-1.151.822-.091.544.277 1.06.821 1.15l6 1c.055.01.11.014.165.014h2.749c.009.262.086.588.251 1 1 2.5 3 8 3 8 2.209 0 3-5.015 3-7.5 0-.604-.048-1.06-.15-1.407 1.206.087 2.027.223 2.567.351L18.2 14.4c-.331.442-.242 1.069.2 1.4.18.135.391.2.599.2.305 0 .604-.138.801-.4l3-4c.299-.398.259-.955-.093-1.307zM15.998 33c-.489 0-.917-.359-.988-.858l-1-7c-.078-.547.302-1.054.848-1.132.548-.073 1.054.302 1.131.849l1 7c.078.547-.302 1.054-.848 1.132-.048.006-.095.009-.143.009z"/><path fill="#FFDC5D" d="M15.999 21c-.472 0-.892-.335-.982-.815-.102-.543.256-1.066.799-1.167l15.999-3c.552-.102 1.066.256 1.167.799.103.542-.255 1.065-.798 1.167l-16.001 3c-.061.01-.123.016-.184.016z"/><path fill="#DD2E44" d="M12 13s1 1 1 3 0 3-2 6-4 3-5 5 0 2 2 1 1 4 4 4 2-3 4-3 3 3 5 3 2.581-2.419 1-4c-1-1 2-3 3-2 1.581 1.581 3.236-.764 1-3-1-1-1.789-2.105 0-3 2-1 2.5-5 0-4-3.344 1.338-8 3.161-8 0v-4s-2 0-2-3c0 0-1.25 4-3.25 0 0 0 1.25 3-.75 4z"/><path fill="#DD2E44" d="M16 36c-.552 0-1-.447-1-1v-3c0-.553.448-1 1-1s1 .447 1 1v3c0 .553-.448 1-1 1zm16.429-17.37c-.22 0-.441-.072-.626-.221-.431-.347-.498-.976-.151-1.406l1.781-2.211c.346-.428.975-.498 1.405-.151.431.347.498.976.151 1.406l-1.781 2.211c-.197.245-.486.372-.779.372z"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#DD2E44" d="M16.908 32.178c.05-.603-.299-1.018-.755-1.024h-.188c-.456.006-.805.421-.755 1.024.075.905-.017 1.4-.052 2.318-.025.674.296 1.498.901 1.491.605.007.926-.817.901-1.491-.035-.918-.127-1.413-.052-2.318z"/><path fill="#FFDC5D" d="M17.021 27.471c.001-.268-.486-.398-.962-.394-.476-.004-.963.126-.962.394 0 0 .409 3.448.331 6.691-.007.286.313.44.631.443.318-.003.638-.156.631-.443-.078-3.243.331-6.691.331-6.691z"/><path fill="#DD2E44" d="M15.385 32.081h1.365v.65h-1.365z"/><path fill="#FFDC5D" d="M24.23 20.819s3.162-2.282 3.598-2.309c.247-.016 1.883-.13 2.23-.163 1.259-.125 3.854-.67 4.081-.719.228-.05.322.031.839-.806.517-.838-.044-.64-.044-.64s-.354.293-.547.379-.562.173-.909.166c-1.085-.023-7.175-.281-7.175-.281-.848.049-1.288.04-1.615.673-.574 1.104-.493 3.138-.458 3.7z"/><path fill="#FFAC33" d="M16.043 1.013c.203-.378.538-.985 1.806-.602 1.915.579.194 1.602.194 1.602s2 1 2 4-2.344 2.369-2.344 5.531l-.359.534s.644-.438-1.356 1.562c-4 4-6.782-1.274-6.412-2.754.542-2.169-.529-1.873-.529-3.873s2-2 2-4 2-3 3-3 2 1 2 1z"/><ellipse fill="#FFDC5D" cx="14.668" cy="5.013" rx="2.625" ry="3"/><path fill="#FFAC33" d="M14.543 1.013c-.927 0-1.727.306-2.158.755-1.103-.208-.477 1.517-1.342 3.245-1 2 1 4 1 3s0-4 2-4h.5c1.381 0 2.5-.671 2.5-1.5s-1.119-1.5-2.5-1.5z"/><path fill="#FFDC5D" d="M18.6 9.333c-.98-.334-1.68-.297-2.877-.313l-.432-3.883c-.061-.549-.562-.948-1.104-.883-.549.061-.944.555-.883 1.104l.406 3.656-1.94.046.022 1.953c.009.262.086.588.251 1 1 2.5 6 2.985 6 .5 0-.604-.048-1.06-.15-1.407 1.205.088 3.366-.867.707-1.773z"/><path fill="#DD2E44" d="M13.043 16.013c0 2 0 3-2 6s-4 3-5 5 0 2 2 1 1 4 4 4 2-3 4-3 3 3 5 3 2.581-2.419 1-4c-1-1 2-3 3-2 1.581 1.581 3.236-.764 1-3-1-1-1.789-2.105 0-3 2-1 2.5-5 0-4-3.344 1.338-8 3.161-8 0v-4s-1.359-.364-1.791-2.983l-.188-.006s-.561 3.494-2.821.008l-.212.002s.86 2.616-.65 3.77c-.101.076.662 1.209.662 3.209z"/><path d="M26.043 18.888c-1.122.561-1.23 1.205-.908 1.854.159-.253.446-.498.908-.729 1.251-.625 1.915-2.424 1.625-3.439-.187.902-.766 1.885-1.625 2.314zm-5 12c-2 0-3-3-5-3s-1 3-4 3-2-5-4-4c-1.08.54-1.853.773-2.192.572-.611 1.526.362 1.468 2.192.553 2-1 1 4 4 4s2-3 4-3 3 3 5 3c1.421 0 2.106-1.222 1.828-2.496-.209.783-.844 1.371-1.828 1.371zm4-6c-1-1-4 1-3 2 .014.014.021.03.034.044.613-.86 2.271-1.614 2.966-.919 1.191 1.191 2.422.154 2.003-1.385-.266.814-1.143 1.12-2.003.26z" fill="#A0041E"/><path fill="#DD2E44" d="M35.85 15.69s-.423-.21-.785.319c-.072.107-.132.172-.132.172.041.072.027.15.005.217-.13.398-.472.696-1.126.79-.272.039-.49.087-.684.138l.019-.605-.65-.021-.028.874c-.296.17-.39.348-.434.481-.096.292.556.637.963.771.368.121.688.175.91.182.245.007 1.136.225 1.136.225l.088-.269s-.72-.335-.966-.446c-.198-.09-.079-.582.224-.635.805-.141.997-.076 1.12-.454l.448-1.375c.083-.248-.108-.364-.108-.364z"/><path fill="#FFDC5D" d="M12.386 9.254c-.101-.078-.216-.132-.34-.161-.167-.04-.351-.035-.547.013-.39.097-.964.206-1.572.322-.83.158-1.931.476-2.229.476s-1.515-.391-2.634-.537c-.37-.048-1.552-.165-1.804-.193-.342-.038-.756-.08-1.073-.15-.146-.032-.713-.184-.943-.225-.436-.078-1.161-.115-1.202-.03-.176.368.763.233 1.538.913.454.398.916.381 1.355.349.347-.025 1.447.573 2.326.841.635.194 2.056.533 2.26.562s1.296-.052 2.023-.11c.735-.057 1.371-.107 1.879-.075.485.031.849-.079 1.083-.326.292-.309.286-.742.278-.867-.024-.339-.165-.624-.398-.802zm11.198 1.335c-.168-.229-.565-.565-1.412-.8-.657-.183-3.994-.629-4.649-.707-.508-.061-.197 1.809.06 1.966.165.101.365.11.667.141 1.223.126 3.062.028 3.392-.005.143-.014.209.038.218.129-.063.29-.287.669-.477 1.104-.318.727-.656 1.714-.778 1.827l-.111.101c-.251.046-.549.174-.815.391-.095.077-.184.172-.252.364-.094.268.17.299.234.138.027-.067.091-.183.239-.221-.005.031-.015.057-.016.093-.002.058-.017.106-.027.158-.228.395-.682.553-.651.706.007.033.048.035.08.044-.154.104-.274.176-.264.256.008.065.08.08.178.071-.071.053-.117.1-.111.149.026.209.556-.116.81-.219.433-.176.686-.36.986-.636.349-.322.518-.787.669-1.045.111-.19 1.441-1.807 1.736-2.348.435-.798.462-1.428.294-1.657z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f48b.svg b/public/emoji/1f48b.svg
index 8a1454a501365f702cc90f177b1d0d267d8349f4..f71fc97fc0382d17722ee4d892057b5953e4079b 100644
--- a/public/emoji/1f48b.svg
+++ b/public/emoji/1f48b.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#E75A70" d="M32.201 7.791c-2.223-.36-7.568-3.963-11.411-2.762s-3.542 2.162-5.464 2.763c-1.922.601-2.222-.36-6.065.841-3.842 1.201-6.184 7.206-7.805 8.768 0 0-1.603 1.621-1.021 3.483.583 1.861 2.523 1.32 2.523 1.32 6.726-2.102 9.007-4.925 9.007-4.925s3.482 1.021 6.364.12c2.882-.901 5.164-3.724 5.164-3.724s3.484 1.021 10.209-1.081c0 0 1.902-.661 1.32-2.522-.583-1.862-2.821-2.281-2.821-2.281zm-1.082 6.666c-5.764 1.801-4.562 5.644-11.288 7.747-6.726 2.102-7.927-1.74-13.691.061-1.921.601-2.582 1.861-2.281 2.824.9 2.881 8.407 10.025 18.976 6.723 10.568-3.303 12.67-13.452 11.769-16.333-.301-.963-1.564-1.623-3.485-1.022z"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#DD2E44" d="M32.201 7.791c-2.223-.36-7.568-3.963-11.411-2.762s-3.542 2.162-5.464 2.763c-1.922.601-2.222-.36-6.065.841-3.842 1.201-6.184 7.206-7.805 8.768 0 0-1.603 1.621-1.021 3.483.583 1.861 2.523 1.32 2.523 1.32 6.726-2.102 9.007-4.925 9.007-4.925s3.482 1.021 6.364.12c2.882-.901 5.164-3.724 5.164-3.724s3.484 1.021 10.209-1.081c0 0 1.902-.661 1.32-2.522-.583-1.862-2.821-2.281-2.821-2.281zm-1.082 6.666c-5.764 1.801-4.562 5.644-11.288 7.747-6.726 2.102-7.927-1.74-13.691.061-1.921.601-2.582 1.861-2.281 2.824.9 2.881 8.407 10.025 18.976 6.723 10.568-3.303 12.67-13.452 11.769-16.333-.301-.963-1.564-1.623-3.485-1.022z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f48c.svg b/public/emoji/1f48c.svg
index 966105d334ec68f22621f24a8ca1dc802950a571..0734ecf23907fda58d95d09dbf77c9137d98772f 100644
--- a/public/emoji/1f48c.svg
+++ b/public/emoji/1f48c.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#CCD6DD" d="M36 27c0 2.209-1.791 4-4 4H4c-2.209 0-4-1.791-4-4V9c0-2.209 1.791-4 4-4h28c2.209 0 4 1.791 4 4v18z"/><path fill="#99AAB5" d="M11.949 17.636L.637 28.948c-.027.029-.037.064-.06.092.34.57.814 1.043 1.384 1.384.029-.023.063-.033.09-.06L13.365 19.05c.39-.391.39-1.023 0-1.414-.392-.391-1.024-.391-1.416 0M35.423 29.04c-.021-.028-.033-.063-.06-.09L24.051 17.636c-.392-.391-1.024-.391-1.415 0-.391.392-.391 1.024 0 1.414l11.313 11.314c.026.026.062.037.09.06.571-.34 1.044-.814 1.384-1.384"/><path fill="#99AAB5" d="M32 5H4C1.791 5 0 6.791 0 9v1.03l14.527 14.496c1.895 1.893 4.988 1.893 6.885 0L36 10.009V9c0-2.209-1.791-4-4-4"/><path fill="#E1E8ED" d="M32 5H4C2.412 5 1.051 5.934.405 7.275l14.766 14.767c1.562 1.562 4.096 1.562 5.657 0L35.595 7.275C34.949 5.934 33.589 5 32 5"/><path fill="#E75A70" d="M27 16.78c0-2.754-2.232-4.987-4.986-4.987-1.672 0-3.148.826-4.053 2.087-.906-1.261-2.381-2.087-4.051-2.087-2.754 0-4.987 2.233-4.987 4.987 0 .391.05.769.134 1.133.693 4.302 5.476 8.841 8.904 10.087 3.428-1.246 8.212-5.785 8.904-10.086.085-.365.135-.744.135-1.134z"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#CCD6DD" d="M36 27c0 2.209-1.791 4-4 4H4c-2.209 0-4-1.791-4-4V9c0-2.209 1.791-4 4-4h28c2.209 0 4 1.791 4 4v18z"/><path fill="#99AAB5" d="M11.949 17.636L.637 28.948c-.027.029-.037.064-.06.092.34.57.814 1.043 1.384 1.384.029-.023.063-.033.09-.06L13.365 19.05c.39-.391.39-1.023 0-1.414-.392-.391-1.024-.391-1.416 0M35.423 29.04c-.021-.028-.033-.063-.06-.09L24.051 17.636c-.392-.391-1.024-.391-1.415 0-.391.392-.391 1.024 0 1.414l11.313 11.314c.026.026.062.037.09.06.571-.34 1.044-.814 1.384-1.384"/><path fill="#99AAB5" d="M32 5H4C1.791 5 0 6.791 0 9v1.03l14.527 14.496c1.895 1.893 4.988 1.893 6.885 0L36 10.009V9c0-2.209-1.791-4-4-4"/><path fill="#E1E8ED" d="M32 5H4C2.412 5 1.051 5.934.405 7.275l14.766 14.767c1.562 1.562 4.096 1.562 5.657 0L35.595 7.275C34.949 5.934 33.589 5 32 5"/><path fill="#DD2E44" d="M27 16.78c0-2.754-2.232-4.987-4.986-4.987-1.672 0-3.148.826-4.053 2.087-.906-1.261-2.381-2.087-4.051-2.087-2.754 0-4.987 2.233-4.987 4.987 0 .391.05.769.134 1.133.693 4.302 5.476 8.841 8.904 10.087 3.428-1.246 8.212-5.785 8.904-10.086.085-.365.135-.744.135-1.134z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f48f.svg b/public/emoji/1f48f.svg
index e3fe65293c2c2429a57878b06ec744db7b734b93..8248ed607b9c09b56d96b6d3d41f393c06a1ffa2 100644
--- a/public/emoji/1f48f.svg
+++ b/public/emoji/1f48f.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#FFDC5D" d="M31 8.042c-6.626 0-12 5.373-12 12 0 6.626 5.374 12 12 12 1.787 0 3.476-.401 5-1.102V9.143c-1.524-.7-3.213-1.101-5-1.101z"/><path fill="#FFAC33" d="M20.667 15.042c.055.06.128.115.197.171.72.716 1.753 1.477 3.219 2.036 3.691 1.407 9.121.297 9.121.297s-.748-1.198-2.101-2.492c1.809.549 3.463 1.358 4.897 2.371v-9.25c-1.81-.904-3.843-1.426-6-1.429-6.508-.008-9.915 3.393-10.059 6.135-.176.085-.352.168-.531.265 0 0 .237.641.902 1.459.077.094.161.191.249.29.038.048.064.101.106.147z"/><path fill="#642116" d="M26 21.542c-1.411 0-1.497-1.251-1.5-1.503-.001-.274-.225-.497-.5-.497-.276 0-.5.224-.5.5 0 .864.523 2.5 2.5 2.5.276 0 .5-.224.5-.5 0-.277-.224-.5-.5-.5zm5 0c-1.411 0-1.497-1.251-1.5-1.503-.001-.274-.225-.497-.5-.497-.276 0-.5.224-.5.5 0 .864.523 2.5 2.5 2.5.276 0 .5-.224.5-.5 0-.277-.224-.5-.5-.5zm-4.995 4c.273-.003.495-.226.495-.5 0-.276-.224-.5-.5-.5-.602 0-1.5.399-1.5 1.5 0 .438.143.765.352 1-.209.235-.352.562-.352 1 0 1.101.898 1.5 1.5 1.5.273 0 .493-.22.496-.494.004-.273-.217-.499-.49-.506-.231-.006-.506-.098-.506-.5s.275-.494.5-.5h.011c.272-.006.489-.228.489-.5 0-.274-.222-.497-.495-.5-.23-.006-.505-.098-.505-.5 0-.403.274-.494.505-.5z"/><path fill="#FFAC33" d="M17.046 22.804c.015-.003.03-.005.044-.01.188-.055.328-.215.356-.412.261-1.897.124-3.785-.407-5.609C14.956 9.627 7.447 5.508.301 7.59c-.103.03-.199.073-.301.105V36h19.595c-2.291-5.75-2.539-10.675-2.549-13.196z"/><path fill="#FFDC5D" d="M16.687 22.728c-.079-.051-.151-.117-.192-.207-2.272-5.017-5.82-8.573-12.403-7.875 0 2.693-2.15 3.877-4.092 4.872V30.94c1.524.701 3.213 1.102 5 1.102 5.702 0 10.466-3.983 11.687-9.314z"/><path fill="#642116" d="M10 21.542c-.276 0-.5.224-.5.5s.224.5.5.5c1.977 0 2.5-1.636 2.5-2.5 0-.276-.224-.5-.5-.5-.275 0-.499.223-.5.497-.003.252-.089 1.503-1.5 1.503zm-2.5-1.5c0-.276-.224-.5-.5-.5-.275 0-.499.223-.5.497-.003.252-.089 1.503-1.5 1.503-.276 0-.5.224-.5.5s.224.5.5.5c1.977 0 2.5-1.636 2.5-2.5zm2.5 4.5c-.276 0-.5.224-.5.5 0 .274.222.497.495.5.23.006.505.098.505.5s-.274.494-.505.5c-.273.003-.495.226-.495.5 0 .272.218.494.489.5H10c.225.006.5.098.5.5s-.275.494-.506.5c-.273.007-.494.232-.49.506.003.274.223.494.496.494.602 0 1.5-.399 1.5-1.5 0-.438-.143-.765-.352-1 .209-.235.352-.562.352-1 0-1.101-.898-1.5-1.5-1.5z"/><path fill="#EA596E" d="M26.539 4.711c0-2.602-2.11-4.711-4.711-4.711C20.249 0 18.855.78 18 1.972 17.144.78 15.751 0 14.172 0c-2.601 0-4.711 2.109-4.711 4.711 0 .369.047.727.127 1.07.654 4.065 5.173 8.353 8.411 9.529 3.238-1.177 7.758-5.465 8.412-9.528.081-.344.128-.702.128-1.071z"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#FFDC5D" d="M31 8.042c-6.626 0-12 5.373-12 12 0 6.626 5.374 12 12 12 1.787 0 3.476-.401 5-1.102V9.143c-1.524-.7-3.213-1.101-5-1.101z"/><path fill="#FFAC33" d="M20.667 15.042c.055.06.128.115.197.171.72.716 1.753 1.477 3.219 2.036 3.691 1.407 9.121.297 9.121.297s-.748-1.198-2.101-2.492c1.809.549 3.463 1.358 4.897 2.371v-9.25c-1.81-.904-3.843-1.426-6-1.429-6.508-.008-9.915 3.393-10.059 6.135-.176.085-.352.168-.531.265 0 0 .237.641.902 1.459.077.094.161.191.249.29.038.048.064.101.106.147z"/><path fill="#642116" d="M26 21.542c-1.411 0-1.497-1.251-1.5-1.503-.001-.274-.225-.497-.5-.497-.276 0-.5.224-.5.5 0 .864.523 2.5 2.5 2.5.276 0 .5-.224.5-.5 0-.277-.224-.5-.5-.5zm5 0c-1.411 0-1.497-1.251-1.5-1.503-.001-.274-.225-.497-.5-.497-.276 0-.5.224-.5.5 0 .864.523 2.5 2.5 2.5.276 0 .5-.224.5-.5 0-.277-.224-.5-.5-.5zm-4.995 4c.273-.003.495-.226.495-.5 0-.276-.224-.5-.5-.5-.602 0-1.5.399-1.5 1.5 0 .438.143.765.352 1-.209.235-.352.562-.352 1 0 1.101.898 1.5 1.5 1.5.273 0 .493-.22.496-.494.004-.273-.217-.499-.49-.506-.231-.006-.506-.098-.506-.5s.275-.494.5-.5h.011c.272-.006.489-.228.489-.5 0-.274-.222-.497-.495-.5-.23-.006-.505-.098-.505-.5 0-.403.274-.494.505-.5z"/><path fill="#FFAC33" d="M17.046 22.804c.015-.003.03-.005.044-.01.188-.055.328-.215.356-.412.261-1.897.124-3.785-.407-5.609C14.956 9.627 7.447 5.508.301 7.59c-.103.03-.199.073-.301.105V36h19.595c-2.291-5.75-2.539-10.675-2.549-13.196z"/><path fill="#FFDC5D" d="M16.687 22.728c-.079-.051-.151-.117-.192-.207-2.272-5.017-5.82-8.573-12.403-7.875 0 2.693-2.15 3.877-4.092 4.872V30.94c1.524.701 3.213 1.102 5 1.102 5.702 0 10.466-3.983 11.687-9.314z"/><path fill="#642116" d="M10 21.542c-.276 0-.5.224-.5.5s.224.5.5.5c1.977 0 2.5-1.636 2.5-2.5 0-.276-.224-.5-.5-.5-.275 0-.499.223-.5.497-.003.252-.089 1.503-1.5 1.503zm-2.5-1.5c0-.276-.224-.5-.5-.5-.275 0-.499.223-.5.497-.003.252-.089 1.503-1.5 1.503-.276 0-.5.224-.5.5s.224.5.5.5c1.977 0 2.5-1.636 2.5-2.5zm2.5 4.5c-.276 0-.5.224-.5.5 0 .274.222.497.495.5.23.006.505.098.505.5s-.274.494-.505.5c-.273.003-.495.226-.495.5 0 .272.218.494.489.5H10c.225.006.5.098.5.5s-.275.494-.506.5c-.273.007-.494.232-.49.506.003.274.223.494.496.494.602 0 1.5-.399 1.5-1.5 0-.438-.143-.765-.352-1 .209-.235.352-.562.352-1 0-1.101-.898-1.5-1.5-1.5z"/><path fill="#DD2E44" d="M26.539 4.711c0-2.602-2.11-4.711-4.711-4.711C20.249 0 18.855.78 18 1.972 17.144.78 15.751 0 14.172 0c-2.601 0-4.711 2.109-4.711 4.711 0 .369.047.727.127 1.07.654 4.065 5.173 8.353 8.411 9.529 3.238-1.177 7.758-5.465 8.412-9.528.081-.344.128-.702.128-1.071z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f491.svg b/public/emoji/1f491.svg
index b01d6565e2aef6e70c5265f7f1e537074e6988be..ece280dc0d3ab8a2376bdc94b56bdbd1900609c8 100644
--- a/public/emoji/1f491.svg
+++ b/public/emoji/1f491.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#FFAC33" d="M13.982 20H14v-9C14 4.925 9.075 0 3 0 1.956 0 .955.165 0 .44v31.037c.652.11 1.317.179 2 .179 6.511 0 11.799-5.189 11.982-11.656z"/><path fill="#9268CA" d="M11.431 27C11.287 26.984 0 27 0 27v9h15v-5c0-2.061-1.566-3.782-3.569-4z"/><path fill="#7450A8" d="M10 32h1v4h-1z"/><path fill="#FFDC5D" d="M0 8.018v22.204C.532 30.7 1.228 31 2 31c1.657 0 3-1.343 3-3v-2.523c3.494-1.237 6-4.56 6-8.477v-5.019c-5.92-.2-9.207-2.168-11-3.963z"/><path fill="#DF1F32" d="M0 22v1.637c.538.212 1.191.363 2 .363 1.413 0 2.369-.445 3-.915C5.707 22.558 6 22 6 22H0z"/><path fill="#C1694F" d="M3 19.5H1c-.276 0-.5-.224-.5-.5s.224-.5.5-.5h2c.276 0 .5.224.5.5s-.224.5-.5.5z"/><path fill="#662113" d="M6 16c-.552 0-1-.448-1-1v-1c0-.552.448-1 1-1s1 .448 1 1v1c0 .552-.448 1-1 1z"/><path fill="#FFAC33" d="M33 0c-6.075 0-11 4.925-11 11s4.925 11 11 11c1.041 0 2.045-.154 3-.425V.425C35.045.154 34.041 0 33 0z"/><path fill="#4289C1" d="M25 27c-2.209 0-4 1.791-4 4v5h15v-9H25z"/><path fill="#2A6797" d="M25 32h1v4h-1z"/><path fill="#FFDC5D" d="M36 11.28c-4.23-1.125-6.313-3.328-7.266-4.804-.42 1.804-1.438 4.699-3.734 5.369V17c0 .589.061 1.162.168 1.719.61 3.15 2.863 5.706 5.832 6.757V27l3 5 2-3.396V11.28z"/><path fill="#C1694F" d="M30 22s.293.558 1 1.085c.63.469 1.587.915 3 .915.809 0 1.462-.151 2-.363V22h-6zm5-2.5h-2c-.276 0-.5-.224-.5-.5s.224-.5.5-.5h2c.276 0 .5.224.5.5s-.224.5-.5.5z"/><path fill="#662113" d="M30 16c-.553 0-1-.448-1-1v-1c0-.552.447-1 1-1s1 .448 1 1v1c0 .552-.447 1-1 1z"/><path fill="#E75A70" d="M26.539 4.711c0-2.602-2.11-4.711-4.711-4.711C20.249 0 18.855.78 18 1.972 17.144.78 15.75 0 14.172 0c-2.601 0-4.711 2.109-4.711 4.711 0 .369.047.727.127 1.07.654 4.065 5.173 8.353 8.411 9.529 3.238-1.177 7.758-5.465 8.412-9.528.081-.344.128-.702.128-1.071z"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#FFAC33" d="M13.982 20H14v-9C14 4.925 9.075 0 3 0 1.956 0 .955.165 0 .44v31.037c.652.11 1.317.179 2 .179 6.511 0 11.799-5.189 11.982-11.656z"/><path fill="#9268CA" d="M11.431 27C11.287 26.984 0 27 0 27v9h15v-5c0-2.061-1.566-3.782-3.569-4z"/><path fill="#7450A8" d="M10 32h1v4h-1z"/><path fill="#FFDC5D" d="M0 8.018v22.204C.532 30.7 1.228 31 2 31c1.657 0 3-1.343 3-3v-2.523c3.494-1.237 6-4.56 6-8.477v-5.019c-5.92-.2-9.207-2.168-11-3.963z"/><path fill="#DF1F32" d="M0 22v1.637c.538.212 1.191.363 2 .363 1.413 0 2.369-.445 3-.915C5.707 22.558 6 22 6 22H0z"/><path fill="#C1694F" d="M3 19.5H1c-.276 0-.5-.224-.5-.5s.224-.5.5-.5h2c.276 0 .5.224.5.5s-.224.5-.5.5z"/><path fill="#662113" d="M6 16c-.552 0-1-.448-1-1v-1c0-.552.448-1 1-1s1 .448 1 1v1c0 .552-.448 1-1 1z"/><path fill="#FFAC33" d="M33 0c-6.075 0-11 4.925-11 11s4.925 11 11 11c1.041 0 2.045-.154 3-.425V.425C35.045.154 34.041 0 33 0z"/><path fill="#4289C1" d="M25 27c-2.209 0-4 1.791-4 4v5h15v-9H25z"/><path fill="#2A6797" d="M25 32h1v4h-1z"/><path fill="#FFDC5D" d="M36 11.28c-4.23-1.125-6.313-3.328-7.266-4.804-.42 1.804-1.438 4.699-3.734 5.369V17c0 .589.061 1.162.168 1.719.61 3.15 2.863 5.706 5.832 6.757V27l3 5 2-3.396V11.28z"/><path fill="#C1694F" d="M30 22s.293.558 1 1.085c.63.469 1.587.915 3 .915.809 0 1.462-.151 2-.363V22h-6zm5-2.5h-2c-.276 0-.5-.224-.5-.5s.224-.5.5-.5h2c.276 0 .5.224.5.5s-.224.5-.5.5z"/><path fill="#662113" d="M30 16c-.553 0-1-.448-1-1v-1c0-.552.447-1 1-1s1 .448 1 1v1c0 .552-.447 1-1 1z"/><path fill="#DD2E44" d="M26.539 4.711c0-2.602-2.11-4.711-4.711-4.711C20.249 0 18.855.78 18 1.972 17.144.78 15.75 0 14.172 0c-2.601 0-4.711 2.109-4.711 4.711 0 .369.047.727.127 1.07.654 4.065 5.173 8.353 8.411 9.529 3.238-1.177 7.758-5.465 8.412-9.528.081-.344.128-.702.128-1.071z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f492.svg b/public/emoji/1f492.svg
index 723eba8a27d027d023a72bfce62ce1f82daba21b..974ddac8f784b2a95e5e18cef19a8d48f089e746 100644
--- a/public/emoji/1f492.svg
+++ b/public/emoji/1f492.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#BCBEC0" d="M20 2h-1V1c0-.552-.447-1-1-1s-1 .448-1 1v1h-1c-.553 0-1 .448-1 1s.447 1 1 1h1v6c0 .552.447 1 1 1s1-.448 1-1V4h1c.553 0 1-.448 1-1s-.447-1-1-1z"/><path fill="#F4ABBA" d="M18 9l-5.143 4H13v9h10v-9h.143z"/><path fill="#662113" d="M19.999 15c0-1.104-.896-2-1.999-2-1.105 0-2 .896-2 2v7h4l-.001-7z"/><path fill="#F4ABBA" d="M17.999 18L4 26v9c0 .553.448 1 1 1h26c.553 0 1-.447 1-1v-9l-14.001-8z"/><path fill="#DD2E44" d="M31.998 27c-.168 0-.339-.042-.495-.132l-13.504-7.717-13.504 7.717c-.478.276-1.09.107-1.364-.372s-.107-1.09.372-1.364l14-8c.308-.176.685-.176.992 0l14 8c.48.274.647.885.372 1.364-.184.323-.521.504-.869.504zm-8.999-13c-.219 0-.439-.072-.624-.219l-4.376-3.5-4.374 3.5c-.432.343-1.061.275-1.406-.156-.345-.432-.275-1.061.156-1.406l4.999-4c.365-.292.884-.292 1.25 0l5.001 4c.431.345.501.974.156 1.405-.198.247-.488.376-.782.376z"/><path fill="#662113" d="M12.999 31c0-1.104-.895-2-1.999-2-1.105 0-2 .896-2 2v5h4v-5h-.001zm7-2c0-1.104-.896-2-1.999-2-1.105 0-2 .896-2 2v7h4l-.001-7zm7 2c0-1.104-.896-2-1.999-2-1.105 0-2 .896-2 2v5h4l-.001-5z"/><path fill="#EA596E" d="M1 6c0-2.761 3.963-4 5 0 1.121-4 5-2.761 5 0 0 3-5 6-5 6S1 9 1 6zm24 0c0-2.761 3.963-4 5 0 1.121-4 5-2.761 5 0 0 3-5 6-5 6s-5-3-5-6z"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#BCBEC0" d="M20 2h-1V1c0-.552-.447-1-1-1s-1 .448-1 1v1h-1c-.553 0-1 .448-1 1s.447 1 1 1h1v6c0 .552.447 1 1 1s1-.448 1-1V4h1c.553 0 1-.448 1-1s-.447-1-1-1z"/><path fill="#F4ABBA" d="M18 9l-5.143 4H13v9h10v-9h.143z"/><path fill="#662113" d="M19.999 15c0-1.104-.896-2-1.999-2-1.105 0-2 .896-2 2v7h4l-.001-7z"/><path fill="#F4ABBA" d="M17.999 18L4 26v9c0 .553.448 1 1 1h26c.553 0 1-.447 1-1v-9l-14.001-8z"/><path fill="#DD2E44" d="M31.998 27c-.168 0-.339-.042-.495-.132l-13.504-7.717-13.504 7.717c-.478.276-1.09.107-1.364-.372s-.107-1.09.372-1.364l14-8c.308-.176.685-.176.992 0l14 8c.48.274.647.885.372 1.364-.184.323-.521.504-.869.504zm-8.999-13c-.219 0-.439-.072-.624-.219l-4.376-3.5-4.374 3.5c-.432.343-1.061.275-1.406-.156-.345-.432-.275-1.061.156-1.406l4.999-4c.365-.292.884-.292 1.25 0l5.001 4c.431.345.501.974.156 1.405-.198.247-.488.376-.782.376z"/><path fill="#662113" d="M12.999 31c0-1.104-.895-2-1.999-2-1.105 0-2 .896-2 2v5h4v-5h-.001zm7-2c0-1.104-.896-2-1.999-2-1.105 0-2 .896-2 2v7h4l-.001-7zm7 2c0-1.104-.896-2-1.999-2-1.105 0-2 .896-2 2v5h4l-.001-5z"/><path fill="#DD2E44" d="M1 6c0-2.761 3.963-4 5 0 1.121-4 5-2.761 5 0 0 3-5 6-5 6S1 9 1 6zm24 0c0-2.761 3.963-4 5 0 1.121-4 5-2.761 5 0 0 3-5 6-5 6s-5-3-5-6z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f493.svg b/public/emoji/1f493.svg
index 79d69c61fa12a94743a38abead01831911a68fba..404a6e769475635ca9c619aa00b354fb2b535552 100644
--- a/public/emoji/1f493.svg
+++ b/public/emoji/1f493.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#E75A70" d="M33.885 15.764c0-4.841-3.924-8.764-8.764-8.764-2.938 0-5.53 1.45-7.121 3.667C16.41 8.45 13.816 7 10.879 7c-4.84 0-8.764 3.923-8.764 8.764 0 .685.087 1.35.236 1.99C3.568 25.315 11.975 33.292 18 35.482c6.024-2.19 14.432-10.167 15.647-17.728.151-.64.238-1.304.238-1.99z"/><path fill="#FDCB58" d="M1.499 11.042c-.15 0-.303-.034-.446-.106-.494-.247-.694-.848-.447-1.342 1.016-2.031 3.793-5.195 7.283-5.588.549-.061 1.043.333 1.105.882.062.549-.333 1.044-.882 1.106-2.679.302-4.928 2.917-5.717 4.495-.176.35-.529.553-.896.553zm-.458-5.417c-.193 0-.388-.056-.56-.172-.457-.31-.577-.932-.267-1.389.936-1.381 2.895-2.909 4.682-3.021.552-.043 1.025.385 1.06.936.035.551-.384 1.026-.935 1.061-.961.06-2.404 1.042-3.151 2.146-.194.285-.509.439-.829.439zm33.46 5.417c-.367 0-.72-.202-.896-.553-.789-1.578-3.039-4.193-5.718-4.495-.549-.062-.943-.557-.882-1.106.062-.548.549-.945 1.106-.882 3.489.393 6.267 3.557 7.282 5.588.247.494.047 1.095-.447 1.342-.143.072-.295.106-.445.106zm.458-5.417c-.32 0-.636-.154-.829-.439-.747-1.104-2.19-2.086-3.151-2.146-.551-.035-.97-.509-.935-1.061.034-.552.51-.981 1.06-.936 1.788.112 3.747 1.64 4.683 3.021.31.457.19 1.079-.268 1.389-.172.116-.366.172-.56.172z"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#DD2E44" d="M33.885 15.764c0-4.841-3.924-8.764-8.764-8.764-2.938 0-5.53 1.45-7.121 3.667C16.41 8.45 13.816 7 10.879 7c-4.84 0-8.764 3.923-8.764 8.764 0 .685.087 1.35.236 1.99C3.568 25.315 11.975 33.292 18 35.482c6.024-2.19 14.432-10.167 15.647-17.728.151-.64.238-1.304.238-1.99z"/><path fill="#FDCB58" d="M1.499 11.042c-.15 0-.303-.034-.446-.106-.494-.247-.694-.848-.447-1.342 1.016-2.031 3.793-5.195 7.283-5.588.549-.061 1.043.333 1.105.882.062.549-.333 1.044-.882 1.106-2.679.302-4.928 2.917-5.717 4.495-.176.35-.529.553-.896.553zm-.458-5.417c-.193 0-.388-.056-.56-.172-.457-.31-.577-.932-.267-1.389.936-1.381 2.895-2.909 4.682-3.021.552-.043 1.025.385 1.06.936.035.551-.384 1.026-.935 1.061-.961.06-2.404 1.042-3.151 2.146-.194.285-.509.439-.829.439zm33.46 5.417c-.367 0-.72-.202-.896-.553-.789-1.578-3.039-4.193-5.718-4.495-.549-.062-.943-.557-.882-1.106.062-.548.549-.945 1.106-.882 3.489.393 6.267 3.557 7.282 5.588.247.494.047 1.095-.447 1.342-.143.072-.295.106-.445.106zm.458-5.417c-.32 0-.636-.154-.829-.439-.747-1.104-2.19-2.086-3.151-2.146-.551-.035-.97-.509-.935-1.061.034-.552.51-.981 1.06-.936 1.788.112 3.747 1.64 4.683 3.021.31.457.19 1.079-.268 1.389-.172.116-.366.172-.56.172z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f494.svg b/public/emoji/1f494.svg
index 697ecc6a9427c18cce5224609b36086ec00f7533..d50c7704731fdd0fa4a720af77259a229fb7a4b4 100644
--- a/public/emoji/1f494.svg
+++ b/public/emoji/1f494.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><g fill="#E75A70"><path d="M13.589 26.521c-.297-.495-.284-1.117.035-1.599l4.395-6.646-5.995-5.139c-.556-.476-.686-1.283-.31-1.911l4.304-7.172c-1.669-1.301-3.755-2.09-6.035-2.09-5.45 0-9.868 4.417-9.868 9.868 0 .772.098 1.52.266 2.241C1.751 22.587 11.216 31.568 18 34.034c.025-.009.052-.022.077-.032l-4.488-7.481z"/><path d="M26.018 1.966c-2.765 0-5.248 1.151-7.037 2.983l-4.042 6.737 6.039 5.176c.574.492.691 1.335.274 1.966l-4.604 6.962 4.161 6.935c6.338-3.529 13.621-11.263 14.809-18.649.17-.721.268-1.469.268-2.241-.001-5.452-4.419-9.869-9.868-9.869z"/></g></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><g fill="#DD2E44"><path d="M13.589 26.521c-.297-.495-.284-1.117.035-1.599l4.395-6.646-5.995-5.139c-.556-.476-.686-1.283-.31-1.911l4.304-7.172c-1.669-1.301-3.755-2.09-6.035-2.09-5.45 0-9.868 4.417-9.868 9.868 0 .772.098 1.52.266 2.241C1.751 22.587 11.216 31.568 18 34.034c.025-.009.052-.022.077-.032l-4.488-7.481z"/><path d="M26.018 1.966c-2.765 0-5.248 1.151-7.037 2.983l-4.042 6.737 6.039 5.176c.574.492.691 1.335.274 1.966l-4.604 6.962 4.161 6.935c6.338-3.529 13.621-11.263 14.809-18.649.17-.721.268-1.469.268-2.241-.001-5.452-4.419-9.869-9.868-9.869z"/></g></svg>
\ No newline at end of file
diff --git a/public/emoji/1f495.svg b/public/emoji/1f495.svg
index 724469b8e8d1d3c936900a16709ed2811395dcd2..b4b3216f359e3f1bda45ad5449fda23305bd0b7d 100644
--- a/public/emoji/1f495.svg
+++ b/public/emoji/1f495.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#E75A70" d="M24.77 19.715c0-3.757-3.045-6.801-6.801-6.801-2.28 0-4.292 1.125-5.526 2.845-1.234-1.72-3.247-2.845-5.526-2.845-3.756 0-6.801 3.044-6.801 6.801 0 .531.067 1.049.183 1.545.945 5.867 7.468 12.059 12.144 13.758 4.675-1.699 11.2-7.891 12.142-13.756.117-.498.185-1.016.185-1.547zM35.885 5.693c0-2.602-2.109-4.711-4.711-4.711-1.579 0-2.973.78-3.828 1.972-.855-1.191-2.249-1.972-3.827-1.972-2.602 0-4.711 2.109-4.711 4.711 0 .369.047.727.127 1.07.654 4.064 5.173 8.353 8.411 9.529 3.238-1.177 7.758-5.465 8.412-9.528.08-.344.127-.702.127-1.071z"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#DD2E44" d="M24.77 19.715c0-3.757-3.045-6.801-6.801-6.801-2.28 0-4.292 1.125-5.526 2.845-1.234-1.72-3.247-2.845-5.526-2.845-3.756 0-6.801 3.044-6.801 6.801 0 .531.067 1.049.183 1.545.945 5.867 7.468 12.059 12.144 13.758 4.675-1.699 11.2-7.891 12.142-13.756.117-.498.185-1.016.185-1.547zM35.885 5.693c0-2.602-2.109-4.711-4.711-4.711-1.579 0-2.973.78-3.828 1.972-.855-1.191-2.249-1.972-3.827-1.972-2.602 0-4.711 2.109-4.711 4.711 0 .369.047.727.127 1.07.654 4.064 5.173 8.353 8.411 9.529 3.238-1.177 7.758-5.465 8.412-9.528.08-.344.127-.702.127-1.071z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f496.svg b/public/emoji/1f496.svg
index d5da4b4f6aae1993cbe4f5d2dbf7e86be3318515..aa3abbca7cd3b2a6cccfa355b3209321c7c77b12 100644
--- a/public/emoji/1f496.svg
+++ b/public/emoji/1f496.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#E75A70" d="M35.885 11.833c0-5.45-4.418-9.868-9.867-9.868-3.308 0-6.227 1.633-8.018 4.129-1.791-2.496-4.71-4.129-8.017-4.129-5.45 0-9.868 4.417-9.868 9.868 0 .772.098 1.52.266 2.241C1.751 22.587 11.216 31.568 18 34.034c6.783-2.466 16.249-11.447 17.617-19.959.17-.721.268-1.469.268-2.242z"/><path fill="#FDCB58" d="M34.347 23.894l-3.824-1.416-1.416-3.824c-.145-.394-.52-.654-.938-.654-.418 0-.793.26-.938.653l-1.416 3.824-3.824 1.416c-.393.144-.653.519-.653.938 0 .418.261.793.653.938l3.824 1.416 1.416 3.824c.145.393.52.653.938.653.418 0 .793-.261.938-.653l1.416-3.824 3.824-1.416c.392-.145.653-.52.653-.938 0-.418-.261-.793-.653-.937zm-23-16.001l-2.365-.875-.875-2.365C7.961 4.26 7.587 4 7.169 4c-.419 0-.793.26-.938.653l-.876 2.365-2.364.875c-.393.146-.653.52-.653.938 0 .418.26.792.653.938l2.365.875.875 2.365c.146.393.52.653.938.653.418 0 .792-.26.938-.653l.875-2.365 2.365-.875c.393-.146.653-.519.653-.938 0-.418-.26-.792-.653-.938z"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#DD2E44" d="M35.885 11.833c0-5.45-4.418-9.868-9.867-9.868-3.308 0-6.227 1.633-8.018 4.129-1.791-2.496-4.71-4.129-8.017-4.129-5.45 0-9.868 4.417-9.868 9.868 0 .772.098 1.52.266 2.241C1.751 22.587 11.216 31.568 18 34.034c6.783-2.466 16.249-11.447 17.617-19.959.17-.721.268-1.469.268-2.242z"/><path fill="#FDCB58" d="M34.347 23.894l-3.824-1.416-1.416-3.824c-.145-.394-.52-.654-.938-.654-.418 0-.793.26-.938.653l-1.416 3.824-3.824 1.416c-.393.144-.653.519-.653.938 0 .418.261.793.653.938l3.824 1.416 1.416 3.824c.145.393.52.653.938.653.418 0 .793-.261.938-.653l1.416-3.824 3.824-1.416c.392-.145.653-.52.653-.938 0-.418-.261-.793-.653-.937zm-23-16.001l-2.365-.875-.875-2.365C7.961 4.26 7.587 4 7.169 4c-.419 0-.793.26-.938.653l-.876 2.365-2.364.875c-.393.146-.653.52-.653.938 0 .418.26.792.653.938l2.365.875.875 2.365c.146.393.52.653.938.653.418 0 .792-.26.938-.653l.875-2.365 2.365-.875c.393-.146.653-.519.653-.938 0-.418-.26-.792-.653-.938z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f497.svg b/public/emoji/1f497.svg
index 1808f480bec5333621234c5a125b5c3abca52b8f..295f9d48e8603e52bd49098c3cd3387ba890c605 100644
--- a/public/emoji/1f497.svg
+++ b/public/emoji/1f497.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#F2ABBA" d="M35.885 11.833c0-5.45-4.418-9.868-9.867-9.868-3.308 0-6.227 1.633-8.018 4.129-1.791-2.496-4.71-4.129-8.017-4.129-5.45 0-9.868 4.417-9.868 9.868 0 .772.098 1.52.266 2.241C1.751 22.587 11.216 31.568 18 34.034c6.783-2.466 16.249-11.447 17.617-19.959.17-.721.268-1.469.268-2.242z"/><path fill="#E75A70" d="M31.423 13.372c0-4.091-3.315-7.406-7.405-7.406-2.482 0-4.673 1.225-6.018 3.099-1.344-1.874-3.535-3.099-6.017-3.099-4.09 0-7.406 3.315-7.406 7.406 0 .579.074 1.141.199 1.681C5.805 21.442 12.908 28.184 18 30.034c5.091-1.851 12.195-8.592 13.223-14.98.127-.541.2-1.103.2-1.682z"/><path fill="#BB1A34" d="M27.191 14.831c0-2.801-2.27-5.072-5.07-5.072-1.7 0-3.2.839-4.121 2.123-.92-1.284-2.421-2.123-4.121-2.123-2.801 0-5.072 2.271-5.072 5.072 0 .397.05.781.136 1.151.705 4.376 5.569 8.992 9.056 10.259 3.485-1.268 8.352-5.884 9.055-10.259.088-.37.137-.755.137-1.151z"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#F4ABBA" d="M35.885 11.833c0-5.45-4.418-9.868-9.867-9.868-3.308 0-6.227 1.633-8.018 4.129-1.791-2.496-4.71-4.129-8.017-4.129-5.45 0-9.868 4.417-9.868 9.868 0 .772.098 1.52.266 2.241C1.751 22.587 11.216 31.568 18 34.034c6.783-2.466 16.249-11.447 17.617-19.959.17-.721.268-1.469.268-2.242z"/><path fill="#EA596E" d="M31.423 13.372c0-4.091-3.315-7.406-7.405-7.406-2.482 0-4.673 1.225-6.018 3.099-1.344-1.874-3.535-3.099-6.017-3.099-4.09 0-7.406 3.315-7.406 7.406 0 .579.074 1.141.199 1.681C5.805 21.442 12.908 28.184 18 30.034c5.091-1.851 12.195-8.592 13.223-14.98.127-.541.2-1.103.2-1.682z"/><path fill="#DD2E44" d="M27.191 14.831c0-2.801-2.27-5.072-5.07-5.072-1.7 0-3.2.839-4.121 2.123-.92-1.284-2.421-2.123-4.121-2.123-2.801 0-5.072 2.271-5.072 5.072 0 .397.05.781.136 1.151.705 4.376 5.569 8.992 9.056 10.259 3.485-1.268 8.352-5.884 9.055-10.259.088-.37.137-.755.137-1.151z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f498.svg b/public/emoji/1f498.svg
index 8fdd3155af8f93910329a5e943edf0a6bbbc7ade..32d819fe4a39a161ea2f6c019222b8622cac7b55 100644
--- a/public/emoji/1f498.svg
+++ b/public/emoji/1f498.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#4289C1" d="M16.13 17.444L2.129 3.445c-.391-.39 1.023-1.804 1.414-1.415l14.001 14c.391.391-1.219 1.61-1.414 1.414z"/><path fill="#E75A70" d="M34.197 14.488c0-4.841-3.924-8.764-8.764-8.764-2.938 0-5.53 1.45-7.121 3.667-1.59-2.217-4.184-3.667-7.121-3.667-4.84 0-8.764 3.923-8.764 8.764 0 .686.087 1.351.236 1.99 1.217 7.562 9.624 15.538 15.649 17.729 6.024-2.19 14.432-10.167 15.647-17.728.151-.64.238-1.305.238-1.991z"/><path fill="#5DADEC" d="M34.648 25.764s-4.509-4.45-6.41-4.45l-5.657-.009-1.195 1.195.009 5.657c0 1.901 4.45 6.41 4.45 6.41.858.787 1.925 1.204 2.695 1.204.634 0 1.14-.276 1.505-.775.31-.427.426-.992.426-1.682 0-1.254-.556-2.864-1.39-4.313 1.449.833 3.059 1.39 4.313 1.39.689 0 1.255-.116 1.682-.426.499-.365.775-.871.775-1.505.001-.771-.416-1.837-1.203-2.696z"/><path fill="#2A6797" d="M31.569 32.542c-.256 0-.487-.122-.683-.317L17.497 18.827c-.391-.391 1.023-1.805 1.414-1.415l13.39 13.399c.391.391.378 1.036-.013 1.427-.194.194-.462.304-.719.304zM.161 1.123c0-.259.101-.511.286-.701.248-.252.611-.355.955-.27l6.541 1.625c.452.113.73.521.759.989-.009.465-.337.864-.793.961-.144.031-3.636.833-4.005 4.051-.055.477-.44.848-.92.883-.478.036-.915-.274-1.039-.738L.195 1.381C.172 1.296.161 1.21.161 1.123z"/><path fill="#DA2F47" d="M22.184 16.015c-.031.487-.415.89-.916.931-3.268.269-3.75 2.12-4.217 3.91l-.108.411c-.147.533-.697.846-1.229.7-.532-.147-.843-.694-.7-1.229l.103-.386c.489-1.875 1.306-5.013 5.988-5.399.551-.045 1.034.364 1.079.914.003.051.003.1 0 .148z"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#FFAC33" d="M16.13 17.444L2.129 3.445c-.391-.39 1.023-1.804 1.414-1.415l14.001 14c.391.391-1.219 1.61-1.414 1.414z"/><path fill="#DD2E44" d="M34.197 14.488c0-4.841-3.924-8.764-8.764-8.764-2.938 0-5.53 1.45-7.121 3.667-1.59-2.217-4.184-3.667-7.121-3.667-4.84 0-8.764 3.923-8.764 8.764 0 .686.087 1.351.236 1.99 1.217 7.562 9.624 15.538 15.649 17.729 6.024-2.19 14.432-10.167 15.647-17.728.151-.64.238-1.305.238-1.991z"/><path fill="#FFCC4D" d="M34.648 25.764s-4.509-4.45-6.41-4.45l-5.657-.009-1.195 1.195.009 5.657c0 1.901 4.45 6.41 4.45 6.41.858.787 1.925 1.204 2.695 1.204.634 0 1.14-.276 1.505-.775.31-.427.426-.992.426-1.682 0-1.254-.556-2.864-1.39-4.313 1.449.833 3.059 1.39 4.313 1.39.689 0 1.255-.116 1.682-.426.499-.365.775-.871.775-1.505.001-.771-.416-1.837-1.203-2.696z"/><path fill="#FFAC33" d="M31.569 32.542c-.256 0-.487-.122-.683-.317L17.497 18.827c-.391-.391 1.023-1.805 1.414-1.415l13.39 13.399c.391.391.378 1.036-.013 1.427-.194.194-.462.304-.719.304z"/><path fill="#FFCC4D" d="M.161 1.123c0-.259.101-.511.286-.701.248-.252.611-.355.955-.27l6.541 1.625c.452.113.73.521.759.989-.009.465-.337.864-.793.961-.144.031-3.636.833-4.005 4.051-.055.477-.44.848-.92.883-.478.036-.915-.274-1.039-.738L.195 1.381C.172 1.296.161 1.21.161 1.123z"/><path fill="#A0041E" d="M22.184 16.015c-.031.487-.415.89-.916.931-3.268.269-3.75 2.12-4.217 3.91l-.108.411c-.147.533-.697.846-1.229.7-.532-.147-.843-.694-.7-1.229l.103-.386c.489-1.875 1.306-5.013 5.988-5.399.551-.045 1.034.364 1.079.914.003.051.003.1 0 .148z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f49d.svg b/public/emoji/1f49d.svg
index 72f8e7afa4a9a14879b061f1ccaa79c63df0f345..5db2632ff1e75c53f61484a9c652a3025ff163e8 100644
--- a/public/emoji/1f49d.svg
+++ b/public/emoji/1f49d.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#E75A70" d="M35.885 11.833c0-5.45-4.418-9.868-9.867-9.868-3.308 0-6.227 1.633-8.018 4.129-1.791-2.496-4.71-4.129-8.017-4.129-5.45 0-9.868 4.417-9.868 9.868 0 .772.098 1.52.266 2.241C1.751 22.587 11.216 31.568 18 34.034c6.783-2.466 16.249-11.447 17.617-19.959.17-.721.268-1.469.268-2.242z"/><path fill="#FDD888" d="M36 15c-1 5-4 8-4 8H4s-3-3-4-8h36z"/><path fill="#FDD888" d="M14 18v18l-5-5-5 5V18z"/><path fill="#FDCB58" d="M16.802 9.194l-7.879 5.515-7.878-5.515C.47 8.792 0 9.036 0 9.738v14.658c0 .703.48.965 1.069.582l7.854-5.106 7.854 5.106c.588.383 1.069.121 1.069-.582V9.738c.001-.702-.47-.946-1.044-.544z"/><circle fill="#FDD888" cx="9" cy="17" r="4"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#DD2E44" d="M35.885 11.833c0-5.45-4.418-9.868-9.867-9.868-3.308 0-6.227 1.633-8.018 4.129-1.791-2.496-4.71-4.129-8.017-4.129-5.45 0-9.868 4.417-9.868 9.868 0 .772.098 1.52.266 2.241C1.751 22.587 11.216 31.568 18 34.034c6.783-2.466 16.249-11.447 17.617-19.959.17-.721.268-1.469.268-2.242z"/><path fill="#FDD888" d="M36 15c-1 5-4 8-4 8H4s-3-3-4-8h36z"/><path fill="#FDD888" d="M14 18v18l-5-5-5 5V18z"/><path fill="#FDCB58" d="M16.802 9.194l-7.879 5.515-7.878-5.515C.47 8.792 0 9.036 0 9.738v14.658c0 .703.48.965 1.069.582l7.854-5.106 7.854 5.106c.588.383 1.069.121 1.069-.582V9.738c.001-.702-.47-.946-1.044-.544z"/><circle fill="#FDD888" cx="9" cy="17" r="4"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f49e.svg b/public/emoji/1f49e.svg
index f61f1276cc52da3a2ea3018b5568da7073c749e6..b9459b7d56c05536f02f9041271a8e3074a1b6a6 100644
--- a/public/emoji/1f49e.svg
+++ b/public/emoji/1f49e.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#F2ABBA" d="M35.977 16.672c-.25 4.574-8.194 8.248-17.977 8.248-3.285 0-6.352-.422-9-1.145v3.588c2.65 1.023 5.718 1.619 9 1.619 9.941 0 18-5.373 18-12 0-.104-.02-.207-.023-.31zM27 6.6c-2.646-1.024-5.717-1.617-9-1.617-9.018 0-16.465 4.426-17.774 10.194C1.535 11.106 8.982 7.982 18 7.982c3.283 0 6.354.418 9 1.142V6.6z"/><path fill="#E75A70" d="M24.77 19.715c0-3.757-3.045-6.801-6.801-6.801-2.28 0-4.292 1.125-5.526 2.845-1.234-1.72-3.247-2.845-5.526-2.845-3.756 0-6.801 3.044-6.801 6.801 0 .531.067 1.049.183 1.545.945 5.867 7.468 12.059 12.144 13.758 4.675-1.699 11.2-7.891 12.142-13.756.117-.498.185-1.016.185-1.547zM35.885 5.693c0-2.602-2.109-4.711-4.711-4.711-1.579 0-2.973.78-3.828 1.972-.855-1.191-2.249-1.972-3.827-1.972-2.602 0-4.711 2.109-4.711 4.711 0 .369.047.727.127 1.07.654 4.064 5.173 8.353 8.411 9.529 3.238-1.177 7.758-5.465 8.412-9.528.08-.344.127-.702.127-1.071z"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#F4ABBA" d="M35.977 16.672c-.25 4.574-8.194 8.248-17.977 8.248-3.285 0-6.352-.422-9-1.145v3.588c2.65 1.023 5.718 1.619 9 1.619 9.941 0 18-5.373 18-12 0-.104-.02-.207-.023-.31zM27 6.6c-2.646-1.024-5.717-1.617-9-1.617-9.018 0-16.465 4.426-17.774 10.194C1.535 11.106 8.982 7.982 18 7.982c3.283 0 6.354.418 9 1.142V6.6z"/><path fill="#DD2E44" d="M24.77 19.715c0-3.757-3.045-6.801-6.801-6.801-2.28 0-4.292 1.125-5.526 2.845-1.234-1.72-3.247-2.845-5.526-2.845-3.756 0-6.801 3.044-6.801 6.801 0 .531.067 1.049.183 1.545.945 5.867 7.468 12.059 12.144 13.758 4.675-1.699 11.2-7.891 12.142-13.756.117-.498.185-1.016.185-1.547zM35.885 5.693c0-2.602-2.109-4.711-4.711-4.711-1.579 0-2.973.78-3.828 1.972-.855-1.191-2.249-1.972-3.827-1.972-2.602 0-4.711 2.109-4.711 4.711 0 .369.047.727.127 1.07.654 4.064 5.173 8.353 8.411 9.529 3.238-1.177 7.758-5.465 8.412-9.528.08-.344.127-.702.127-1.071z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f49f.svg b/public/emoji/1f49f.svg
index 66fa36112c978dfd505fbe76f06cbcd0f069fd11..71adb414fd9fa138e53ab7f177554f2e1550d38a 100644
--- a/public/emoji/1f49f.svg
+++ b/public/emoji/1f49f.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#E75A70" d="M36 32c0 2.209-1.791 4-4 4H4c-2.209 0-4-1.791-4-4V4c0-2.209 1.791-4 4-4h28c2.209 0 4 1.791 4 4v28z"/><path fill="#F5F8FA" d="M31.885 13.764c0-4.231-3.43-7.661-7.66-7.661-2.567 0-4.834 1.268-6.225 3.206-1.39-1.938-3.657-3.206-6.224-3.206-4.231 0-7.661 3.43-7.661 7.661 0 .6.076 1.18.206 1.74C5.385 22.113 12.733 29.085 18 31c5.266-1.915 12.614-8.887 13.678-15.496.131-.56.207-1.14.207-1.74z"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#DD2E44" d="M36 32c0 2.209-1.791 4-4 4H4c-2.209 0-4-1.791-4-4V4c0-2.209 1.791-4 4-4h28c2.209 0 4 1.791 4 4v28z"/><path fill="#F5F8FA" d="M31.885 13.764c0-4.231-3.43-7.661-7.66-7.661-2.567 0-4.834 1.268-6.225 3.206-1.39-1.938-3.657-3.206-6.224-3.206-4.231 0-7.661 3.43-7.661 7.661 0 .6.076 1.18.206 1.74C5.385 22.113 12.733 29.085 18 31c5.266-1.915 12.614-8.887 13.678-15.496.131-.56.207-1.14.207-1.74z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f4a3.svg b/public/emoji/1f4a3.svg
index d18d8a2e298fdd521343ccd4961f0ad3ff8a414e..feb2c9d29c1604137570859e48aa2ca72ea9682d 100644
--- a/public/emoji/1f4a3.svg
+++ b/public/emoji/1f4a3.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#CCD6DD" d="M24.187 9.657l5.658-5.654L32 6.16l-5.658 5.655z"/><circle fill="#292F33" cx="14" cy="22" r="14"/><path fill="#292F33" d="M19 11.342l5.658-5.657 5.657 5.658L24.657 17z"/><circle fill="#F18F26" cx="32" cy="4" r="4"/><circle fill="#FDCB58" cx="32" cy="4" r="2"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#CCD6DD" d="M24.187 9.657l5.658-5.654L32 6.16l-5.658 5.655z"/><circle fill="#31373D" cx="14" cy="22" r="14"/><path fill="#31373D" d="M19 11.342l5.658-5.657 5.657 5.658L24.657 17z"/><circle fill="#F18F26" cx="32" cy="4" r="4"/><circle fill="#FDCB58" cx="32" cy="4" r="2"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f4be.svg b/public/emoji/1f4be.svg
index addfae6f4bd0205cdb02c80182bff82f6c444a4f..7c97626958942c72934a9aaa6f3f6aa3b737447b 100644
--- a/public/emoji/1f4be.svg
+++ b/public/emoji/1f4be.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#292F33" d="M4 36s-4 0-4-4V4s0-4 4-4h26c1 0 2 1 2 1l3 3s1 1 1 2v26s0 4-4 4H4z"/><path fill="#55ACEE" d="M5 19v-1s0-2 2-2h21c2 0 2 2 2 2v1H5z"/><path fill="#E1E8ED" d="M5 32.021V19h25v13s0 2-2 2H7c-2 0-2-1.979-2-1.979zM10 3s0-1 1-1h18c1.048 0 1 1 1 1v10s0 1-1 1H11s-1 0-1-1V3zm12 10h5V3h-5v10z"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#31373D" d="M4 36s-4 0-4-4V4s0-4 4-4h26c1 0 2 1 2 1l3 3s1 1 1 2v26s0 4-4 4H4z"/><path fill="#55ACEE" d="M5 19v-1s0-2 2-2h21c2 0 2 2 2 2v1H5z"/><path fill="#E1E8ED" d="M5 32.021V19h25v13s0 2-2 2H7c-2 0-2-1.979-2-1.979zM10 3s0-1 1-1h18c1.048 0 1 1 1 1v10s0 1-1 1H11s-1 0-1-1V3zm12 10h5V3h-5v10z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f4de.svg b/public/emoji/1f4de.svg
index 5ace10d4aee4c76105f2584e7c1756214078c187..cfaf7ca8f762be12930bfbd37995c4d25136fb1a 100644
--- a/public/emoji/1f4de.svg
+++ b/public/emoji/1f4de.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#292F33" d="M34.06 26.407l-3.496-3.496c-1.93-1.93-5.06-1.93-6.989 0-.719.718-1.167 1.603-1.351 2.528-5.765-1.078-11.372-6.662-11.721-11.653.947-.176 1.854-.627 2.586-1.36 1.93-1.93 1.93-5.06 0-6.99L9.594 1.94c-1.93-1.93-5.06-1.93-6.99 0-10.486 10.486 20.97 41.942 31.456 31.456 1.929-1.929 1.929-5.059 0-6.989z"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#31373D" d="M34.06 26.407l-3.496-3.496c-1.93-1.93-5.06-1.93-6.989 0-.719.718-1.167 1.603-1.351 2.528-5.765-1.078-11.372-6.662-11.721-11.653.947-.176 1.854-.627 2.586-1.36 1.93-1.93 1.93-5.06 0-6.99L9.594 1.94c-1.93-1.93-5.06-1.93-6.99 0-10.486 10.486 20.97 41.942 31.456 31.456 1.929-1.929 1.929-5.059 0-6.989z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f4df.svg b/public/emoji/1f4df.svg
index f4f240fdbc5c6d634bdeae38949e694527017949..d7d4b5fa59f559e5233f9ac64835029ec3a0964b 100644
--- a/public/emoji/1f4df.svg
+++ b/public/emoji/1f4df.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#292F33" d="M36 27c0 2.209-1.791 4-4 4H4c-2.209 0-4-1.791-4-4V9c0-2.209 1.791-4 4-4h28c2.209 0 4 1.791 4 4v18z"/><path fill="#C6E5B3" d="M34 21c0 1.104-.896 2-2 2H4c-1.104 0-2-.896-2-2V9c0-1.104.896-2 2-2h28c1.104 0 2 .896 2 2v12z"/><path fill="#66757F" d="M14 27c0 1.104-.896 2-2 2H4c-1.104 0-2-.896-2-2s.896-2 2-2h8c1.104 0 2 .896 2 2zm14 0c0 1.104-.896 2-2 2h-8c-1.104 0-2-.896-2-2s.896-2 2-2h8c1.104 0 2 .896 2 2z"/><circle fill="#DD2E44" cx="32" cy="27" r="2"/><path d="M24.616 16.138c-.291 0-.416-.196-.416-.351 0-.131.048-.202.083-.262l1.332-2.414c.131-.238.297-.345.606-.345.345 0 .684.22.684.761v1.826h.101c.232 0 .416.155.416.393 0 .238-.184.392-.416.392h-.101v.506c0 .315-.125.464-.428.464s-.428-.149-.428-.464v-.506h-1.433zm1.433-2.444h-.012l-.803 1.659h.815v-1.659zm-5.744 1.171c0-.961.372-2.17 1.563-2.17 1.192 0 1.563 1.209 1.563 2.17s-.372 2.171-1.563 2.171c-1.191 0-1.563-1.209-1.563-2.171zm2.206 0c0-.448-.041-1.368-.643-1.368s-.643.92-.643 1.368c0 .419.041 1.368.643 1.368.602.001.643-.949.643-1.368zm-5.781 1.201c-.291 0-.416-.196-.416-.351 0-.131.048-.202.083-.262l1.332-2.414c.131-.238.297-.345.606-.345.345 0 .684.22.684.761v1.826h.101c.232 0 .416.155.416.393 0 .238-.184.392-.416.392h-.101v.506c0 .315-.125.464-.428.464s-.428-.149-.428-.464v-.506H16.73zm1.433-2.444h-.012l-.803 1.659h.815v-1.659zm-5.744 1.315c0-.961.372-2.17 1.563-2.17 1.192 0 1.563 1.209 1.563 2.17s-.372 2.171-1.563 2.171c-1.191-.001-1.563-1.21-1.563-2.171zm2.206 0c0-.448-.041-1.368-.643-1.368s-.643.92-.643 1.368c0 .419.041 1.368.643 1.368s.643-.95.643-1.368zm-5.781 1.201c-.291 0-.416-.196-.416-.351 0-.131.048-.202.083-.262l1.332-2.414c.131-.238.297-.345.606-.345.345 0 .684.22.684.761v1.826h.101c.232 0 .416.155.416.393 0 .238-.184.392-.416.392h-.101v.506c0 .315-.125.464-.428.464s-.428-.149-.428-.464v-.506H8.844zm1.433-2.444h-.012l-.803 1.659h.815v-1.659z" fill="#77B255"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#31373D" d="M36 27c0 2.209-1.791 4-4 4H4c-2.209 0-4-1.791-4-4V9c0-2.209 1.791-4 4-4h28c2.209 0 4 1.791 4 4v18z"/><path fill="#C6E5B3" d="M34 21c0 1.104-.896 2-2 2H4c-1.104 0-2-.896-2-2V9c0-1.104.896-2 2-2h28c1.104 0 2 .896 2 2v12z"/><path fill="#66757F" d="M14 27c0 1.104-.896 2-2 2H4c-1.104 0-2-.896-2-2s.896-2 2-2h8c1.104 0 2 .896 2 2zm14 0c0 1.104-.896 2-2 2h-8c-1.104 0-2-.896-2-2s.896-2 2-2h8c1.104 0 2 .896 2 2z"/><circle fill="#DD2E44" cx="32" cy="27" r="2"/><path d="M24.616 16.138c-.291 0-.416-.196-.416-.351 0-.131.048-.202.083-.262l1.332-2.414c.131-.238.297-.345.606-.345.345 0 .684.22.684.761v1.826h.101c.232 0 .416.155.416.393 0 .238-.184.392-.416.392h-.101v.506c0 .315-.125.464-.428.464s-.428-.149-.428-.464v-.506h-1.433zm1.433-2.444h-.012l-.803 1.659h.815v-1.659zm-5.744 1.171c0-.961.372-2.17 1.563-2.17 1.192 0 1.563 1.209 1.563 2.17s-.372 2.171-1.563 2.171c-1.191 0-1.563-1.209-1.563-2.171zm2.206 0c0-.448-.041-1.368-.643-1.368s-.643.92-.643 1.368c0 .419.041 1.368.643 1.368.602.001.643-.949.643-1.368zm-5.781 1.201c-.291 0-.416-.196-.416-.351 0-.131.048-.202.083-.262l1.332-2.414c.131-.238.297-.345.606-.345.345 0 .684.22.684.761v1.826h.101c.232 0 .416.155.416.393 0 .238-.184.392-.416.392h-.101v.506c0 .315-.125.464-.428.464s-.428-.149-.428-.464v-.506H16.73zm1.433-2.444h-.012l-.803 1.659h.815v-1.659zm-5.744 1.315c0-.961.372-2.17 1.563-2.17 1.192 0 1.563 1.209 1.563 2.17s-.372 2.171-1.563 2.171c-1.191-.001-1.563-1.21-1.563-2.171zm2.206 0c0-.448-.041-1.368-.643-1.368s-.643.92-.643 1.368c0 .419.041 1.368.643 1.368s.643-.95.643-1.368zm-5.781 1.201c-.291 0-.416-.196-.416-.351 0-.131.048-.202.083-.262l1.332-2.414c.131-.238.297-.345.606-.345.345 0 .684.22.684.761v1.826h.101c.232 0 .416.155.416.393 0 .238-.184.392-.416.392h-.101v.506c0 .315-.125.464-.428.464s-.428-.149-.428-.464v-.506H8.844zm1.433-2.444h-.012l-.803 1.659h.815v-1.659z" fill="#77B255"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f4f1.svg b/public/emoji/1f4f1.svg
index a96e40b8c2f39528fa062760d1c75bde6dadaaf3..81c4e99cbda0ba6a3dcbe3f66e6496effd2fff2f 100644
--- a/public/emoji/1f4f1.svg
+++ b/public/emoji/1f4f1.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#292F33" d="M11 36s-4 0-4-4V4s0-4 4-4h14s4 0 4 4v28s0 4-4 4H11z"/><path fill="#55ACEE" d="M9 5h18v26H9z"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#31373D" d="M11 36s-4 0-4-4V4s0-4 4-4h14s4 0 4 4v28s0 4-4 4H11z"/><path fill="#55ACEE" d="M9 5h18v26H9z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f4f2.svg b/public/emoji/1f4f2.svg
index a73e8a6cb0307abb0f4db5f3dcf87c48cd76ae4f..82f5293e7c9141c0738d4e99dbbf5dc9c9ad6654 100644
--- a/public/emoji/1f4f2.svg
+++ b/public/emoji/1f4f2.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#292F33" d="M18 36s-4 0-4-4V4s0-4 4-4h14s4 0 4 4v28s0 4-4 4H18z"/><path fill="#55ACEE" d="M16 5h18v26H16zm-3 11s1 1 1 2-1 2-1 2l-5 5c-1 1-3 1-3-1v-3H2s-2 0-2-2v-2c0-2 2-2 2-2h3v-3c0-2 2-2 3-1l5 5z"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#31373D" d="M18 36s-4 0-4-4V4s0-4 4-4h14s4 0 4 4v28s0 4-4 4H18z"/><path fill="#55ACEE" d="M16 5h18v26H16zm-3 11s1 1 1 2-1 2-1 2l-5 5c-1 1-3 1-3-1v-3H2s-2 0-2-2v-2c0-2 2-2 2-2h3v-3c0-2 2-2 3-1l5 5z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f4f7.svg b/public/emoji/1f4f7.svg
index a5c1fdf6a7f741964aef83753e6e56322dd49eb2..aa2d9c50353b5c008bcf3c3ddf3cfaadaeab61cb 100644
--- a/public/emoji/1f4f7.svg
+++ b/public/emoji/1f4f7.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#66757F" d="M4 5s0-1 1-1h6s1 0 1 1v2H4V5z"/><path fill="#292F33" d="M0 10s0-4 4-4h28s4 0 4 4v18s0 4-4 4H4s-4 0-4-4V10z"/><circle fill="#CCD6DD" cx="21" cy="19" r="10"/><circle fill="#292F33" cx="21" cy="19" r="8"/><circle fill="#3B88C3" cx="21" cy="19" r="5"/><circle fill="#FFF" cx="32.5" cy="9.5" r="1.5"/><path fill="#F5F8FA" d="M12 9.5c0 .829-.671 1.5-1.5 1.5h-5C4.671 11 4 10.329 4 9.5S4.671 8 5.5 8h5c.829 0 1.5.671 1.5 1.5z"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#66757F" d="M4 5s0-1 1-1h6s1 0 1 1v2H4V5z"/><path fill="#31373D" d="M0 10s0-4 4-4h28s4 0 4 4v18s0 4-4 4H4s-4 0-4-4V10z"/><circle fill="#CCD6DD" cx="21" cy="19" r="10"/><circle fill="#31373D" cx="21" cy="19" r="8"/><circle fill="#3B88C3" cx="21" cy="19" r="5"/><circle fill="#FFF" cx="32.5" cy="9.5" r="1.5"/><path fill="#F5F8FA" d="M12 9.5c0 .829-.671 1.5-1.5 1.5h-5C4.671 11 4 10.329 4 9.5S4.671 8 5.5 8h5c.829 0 1.5.671 1.5 1.5z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f4f8.svg b/public/emoji/1f4f8.svg
index f8e1dd092eea10ccb06ec16df40e78ee61988f20..9bf3cf70b8bfd24868946230c9e2f9a0cc7b6773 100644
--- a/public/emoji/1f4f8.svg
+++ b/public/emoji/1f4f8.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#292F33" d="M0 10s0-4 4-4h28s4 0 4 4v18s0 4-4 4H4s-4 0-4-4V10z"/><circle fill="#CCD6DD" cx="21" cy="19" r="10"/><circle fill="#292F33" cx="21" cy="19" r="8"/><circle fill="#3B88C3" cx="21" cy="19" r="5"/><circle fill="#FFF" cx="32.5" cy="9.5" r="1.5"/><path fill="#FFAC33" d="M16 9l3-6-6 2-4-5-2 5-6-1 4 6-5 4h6l-2 6 6-3 6 5-1-8 6-1z"/><path fill="#FFF" d="M10 14l-3 2 1-3-3-1 3-2-3-3h4l1-3 2 3 3-1-2 3 3 3-3 1 1 4z"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#31373D" d="M0 10s0-4 4-4h28s4 0 4 4v18s0 4-4 4H4s-4 0-4-4V10z"/><circle fill="#CCD6DD" cx="21" cy="19" r="10"/><circle fill="#31373D" cx="21" cy="19" r="8"/><circle fill="#3B88C3" cx="21" cy="19" r="5"/><circle fill="#FFF" cx="32.5" cy="9.5" r="1.5"/><path fill="#FFAC33" d="M16 9l3-6-6 2-4-5-2 5-6-1 4 6-5 4h6l-2 6 6-3 6 5-1-8 6-1z"/><path fill="#FFF" d="M10 14l-3 2 1-3-3-1 3-2-3-3h4l1-3 2 3 3-1-2 3 3 3-3 1 1 4z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f4f9.svg b/public/emoji/1f4f9.svg
index c6c0477b42fce039e606a34138c4742913b74cad..f1abb5901c56aa25320e03a4ddd446954880d66a 100644
--- a/public/emoji/1f4f9.svg
+++ b/public/emoji/1f4f9.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#292F33" d="M29 18H16c-3.668 0-5-2.99-5-5v-2H7c-3 0-3 3-3 3s-2-1-3-1-1 1-1 1v10s0 1 1 1 3-1 3-1v7c0 4 4 4 4 4h18c4 0 4-4 4-4V17.894c-.347.069-.685.106-1 .106z"/><path fill="#66757F" d="M35 6c-.559 0-2.05.934-3.26 1.76C31.413 6.934 30.674 6 29 6H18s-5 0-5 5v2s0 3 3 3h13s2.075-.006 2.771-1.739C32.976 15.082 34.446 16 35 16c1 0 1-1 1-1V7s0-1-1-1zM9 35v-9s0-3 2.75-3H22s3 0 3 3v9h-2v-9s0-1-1-1H12s-1 0-1 1v9H9z"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#31373D" d="M29 18H16c-3.668 0-5-2.99-5-5v-2H7c-3 0-3 3-3 3s-2-1-3-1-1 1-1 1v10s0 1 1 1 3-1 3-1v7c0 4 4 4 4 4h18c4 0 4-4 4-4V17.894c-.347.069-.685.106-1 .106z"/><path fill="#66757F" d="M35 6c-.559 0-2.05.934-3.26 1.76C31.413 6.934 30.674 6 29 6H18s-5 0-5 5v2s0 3 3 3h13s2.075-.006 2.771-1.739C32.976 15.082 34.446 16 35 16c1 0 1-1 1-1V7s0-1-1-1zM9 35v-9s0-3 2.75-3H22s3 0 3 3v9h-2v-9s0-1-1-1H12s-1 0-1 1v9H9z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f4fa.svg b/public/emoji/1f4fa.svg
index 795f6cdee1ab15d9c0fb6183dc2cd308212831e4..5f864dee55a01d49f61e25e59bed5b4e7685484d 100644
--- a/public/emoji/1f4fa.svg
+++ b/public/emoji/1f4fa.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#292F33" d="M35 31s0 4-4 4H5c-4 0-4-4-4-4V12c0-4 4-4 4-4h26s4 0 4 4v19z"/><path fill="#292F33" d="M21.303 10.389c.391.391.391 1.023 0 1.414s-1.023.391-1.414 0l-9.192-9.192c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l9.192 9.192z"/><path fill="#292F33" d="M14.697 10.389c-.391.391-.391 1.023 0 1.414s1.023.391 1.414 0l9.192-9.192c.391-.391.391-1.023 0-1.414s-1.023-.391-1.414 0l-9.192 9.192z"/><path fill="#55ACEE" d="M18 11c8 0 10 1 11 2s2 3 2 8-1 7-2 8-3 2-11 2-10-1-11-2-2-3-2-8 1-7 2-8 3-2 11-2z"/><circle fill="#66757F" cx="31.5" cy="31.5" r="1.5"/><circle fill="#66757F" cx="4.5" cy="31.5" r="1.5"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#31373D" d="M35 31s0 4-4 4H5c-4 0-4-4-4-4V12c0-4 4-4 4-4h26s4 0 4 4v19z"/><path fill="#31373D" d="M21.303 10.389c.391.391.391 1.023 0 1.414s-1.023.391-1.414 0l-9.192-9.192c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l9.192 9.192z"/><path fill="#31373D" d="M14.697 10.389c-.391.391-.391 1.023 0 1.414s1.023.391 1.414 0l9.192-9.192c.391-.391.391-1.023 0-1.414s-1.023-.391-1.414 0l-9.192 9.192z"/><path fill="#55ACEE" d="M18 11c8 0 10 1 11 2s2 3 2 8-1 7-2 8-3 2-11 2-10-1-11-2-2-3-2-8 1-7 2-8 3-2 11-2z"/><circle fill="#66757F" cx="31.5" cy="31.5" r="1.5"/><circle fill="#66757F" cx="4.5" cy="31.5" r="1.5"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f4fc.svg b/public/emoji/1f4fc.svg
index a5f770d48905001666537d55074228b4ea474f96..31024baf1a45110967c28947d6c9fcb810049802 100644
--- a/public/emoji/1f4fc.svg
+++ b/public/emoji/1f4fc.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#292F33" d="M36 25s0 4-4 4H4s-4 0-4-4V10c0-4 4-4 4-4h28s4 0 4 4v15z"/><path fill="#CCD6DD" d="M32 12h-6s-1 0-1 1v8s0 1 1 1h6c1 0 2-2 2-5s-1-5-2-5z"/><path d="M29.894 12H26s-1 0-1 1v1c1.656 0 3 1.343 3 3s-1.344 3-3 3v1s0 1 1 1h3.895C31.193 20.73 32 18.96 32 17c0-1.959-.808-3.729-2.106-5z"/><path fill="#66757F" d="M28 17c0-1.657-1.344-3-3-3v6c1.656 0 3-1.343 3-3z"/><path fill="#CCD6DD" d="M4 12h6s1 0 1 1v8s0 1-1 1H4c-1 0-2-2-2-5s1-5 2-5z"/><path d="M11 20c-1.657 0-3-1.343-3-3s1.343-3 3-3v-1c0-1-1-1-1-1H6.106C4.808 13.271 4 15.04 4 17s.808 3.729 2.106 5H10c1 0 1-1 1-1v-1z"/><path fill="#66757F" d="M8 17c0 1.657 1.343 3 3 3v-6c-1.657 0-3 1.343-3 3z"/><path fill="#88C9F9" d="M13 14s0-1 1-1h8s1 0 1 1v6s0 1-1 1h-8s-1 0-1-1v-6z"/><path d="M34 26c0 .553-.447 1-1 1H3c-.552 0-1-.447-1-1 0-.553.448-1 1-1h30c.553 0 1 .447 1 1z"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#31373D" d="M36 25s0 4-4 4H4s-4 0-4-4V10c0-4 4-4 4-4h28s4 0 4 4v15z"/><path fill="#CCD6DD" d="M32 12h-6s-1 0-1 1v8s0 1 1 1h6c1 0 2-2 2-5s-1-5-2-5z"/><path d="M29.894 12H26s-1 0-1 1v1c1.656 0 3 1.343 3 3s-1.344 3-3 3v1s0 1 1 1h3.895C31.193 20.73 32 18.96 32 17c0-1.959-.808-3.729-2.106-5z"/><path fill="#66757F" d="M28 17c0-1.657-1.344-3-3-3v6c1.656 0 3-1.343 3-3z"/><path fill="#CCD6DD" d="M4 12h6s1 0 1 1v8s0 1-1 1H4c-1 0-2-2-2-5s1-5 2-5z"/><path d="M11 20c-1.657 0-3-1.343-3-3s1.343-3 3-3v-1c0-1-1-1-1-1H6.106C4.808 13.271 4 15.04 4 17s.808 3.729 2.106 5H10c1 0 1-1 1-1v-1z"/><path fill="#66757F" d="M8 17c0 1.657 1.343 3 3 3v-6c-1.657 0-3 1.343-3 3z"/><path fill="#88C9F9" d="M13 14s0-1 1-1h8s1 0 1 1v6s0 1-1 1h-8s-1 0-1-1v-6z"/><path d="M34 26c0 .553-.447 1-1 1H3c-.552 0-1-.447-1-1 0-.553.448-1 1-1h30c.553 0 1 .447 1 1z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f4fd.svg b/public/emoji/1f4fd.svg
index d5744ba8368587109a3e5ed178a3264b5597cb9f..b12b42ce9072de83f8ee5a4eaac6a5a5a3f46cd0 100644
--- a/public/emoji/1f4fd.svg
+++ b/public/emoji/1f4fd.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#292F33" d="M34.074 18l-4.832 3H28v-4c0-.088-.02-.169-.026-.256C31.436 15.864 34 12.735 34 9c0-4.418-3.582-8-8-8s-8.001 3.582-8.001 8c0 1.463.412 2.822 1.099 4H14.92c.047-.328.08-.66.08-1 0-3.866-3.134-7-7-7-3.865 0-7 3.134-7 7 0 2.79 1.638 5.193 4 6.317V29c0 2.209 1.791 4 4 4h15c2.209 0 4-1.791 4-4v-3h1.242l4.832 3H35V18h-.926zM28.727 3.977c1.762.959 2.961 2.819 2.984 4.961L28.18 8.35c-.112-.376-.31-.715-.583-.982l1.13-3.391zm-.9 6.342l3.552.592c-.66 1.857-2.254 3.26-4.214 3.669-.37-.483-.843-.875-1.392-1.148l.625-2.19c.556-.113 1.076-.452 1.429-.923zM26 3.285c.282 0 .557.027.828.067l-1.131 3.392c-.404.054-.772.21-1.081.446L21.42 5.592c1.042-1.397 2.703-2.307 4.58-2.307zM20.285 9c0-.563.085-1.106.236-1.62l3.194 1.597-.002.023c0 .657.313 1.245.771 1.662L23.816 13h-1.871c-1.02-1.03-1.66-2.436-1.66-4zm-9.088-.385c.901.851 1.47 2.048 1.47 3.385 0 .344-.043.677-.113 1H10.1c.145-.304.233-.641.233-1 0-.478-.145-.922-.392-1.292l1.256-2.093zM8 7.333c.519 0 1.01.105 1.476.261L8.22 9.688c-.073-.007-.145-.022-.22-.022-.478 0-.922.145-1.292.392L4.615 8.803c.851-.901 2.048-1.47 3.385-1.47zM3.333 12c0-.519.105-1.01.261-1.477l2.095 1.257c-.007.073-.022.144-.022.22 0 .75.36 1.41.91 1.837-.624.479-1.097 1.134-1.353 1.895-1.141-.851-1.891-2.199-1.891-3.732z"/><circle fill="#8899A6" cx="24" cy="19" r="2"/><circle fill="#8899A6" cx="9" cy="19" r="2"/><path fill="#8899A6" d="M24 27c0-1.104-.896-2-2-2H11c-1.104 0-2 .896-2 2v6c0 1.104.896 2 2 2h11c1.104 0 2-.896 2-2v-6z"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#31373D" d="M34.074 18l-4.832 3H28v-4c0-.088-.02-.169-.026-.256C31.436 15.864 34 12.735 34 9c0-4.418-3.582-8-8-8s-8.001 3.582-8.001 8c0 1.463.412 2.822 1.099 4H14.92c.047-.328.08-.66.08-1 0-3.866-3.134-7-7-7-3.865 0-7 3.134-7 7 0 2.79 1.638 5.193 4 6.317V29c0 2.209 1.791 4 4 4h15c2.209 0 4-1.791 4-4v-3h1.242l4.832 3H35V18h-.926zM28.727 3.977c1.762.959 2.961 2.819 2.984 4.961L28.18 8.35c-.112-.376-.31-.715-.583-.982l1.13-3.391zm-.9 6.342l3.552.592c-.66 1.857-2.254 3.26-4.214 3.669-.37-.483-.843-.875-1.392-1.148l.625-2.19c.556-.113 1.076-.452 1.429-.923zM26 3.285c.282 0 .557.027.828.067l-1.131 3.392c-.404.054-.772.21-1.081.446L21.42 5.592c1.042-1.397 2.703-2.307 4.58-2.307zM20.285 9c0-.563.085-1.106.236-1.62l3.194 1.597-.002.023c0 .657.313 1.245.771 1.662L23.816 13h-1.871c-1.02-1.03-1.66-2.436-1.66-4zm-9.088-.385c.901.851 1.47 2.048 1.47 3.385 0 .344-.043.677-.113 1H10.1c.145-.304.233-.641.233-1 0-.478-.145-.922-.392-1.292l1.256-2.093zM8 7.333c.519 0 1.01.105 1.476.261L8.22 9.688c-.073-.007-.145-.022-.22-.022-.478 0-.922.145-1.292.392L4.615 8.803c.851-.901 2.048-1.47 3.385-1.47zM3.333 12c0-.519.105-1.01.261-1.477l2.095 1.257c-.007.073-.022.144-.022.22 0 .75.36 1.41.91 1.837-.624.479-1.097 1.134-1.353 1.895-1.141-.851-1.891-2.199-1.891-3.732z"/><circle fill="#8899A6" cx="24" cy="19" r="2"/><circle fill="#8899A6" cx="9" cy="19" r="2"/><path fill="#8899A6" d="M24 27c0-1.104-.896-2-2-2H11c-1.104 0-2 .896-2 2v6c0 1.104.896 2 2 2h11c1.104 0 2-.896 2-2v-6z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f50c.svg b/public/emoji/1f50c.svg
index 9f9b7ee29f78c538f92a0eff6e695353d9bcd837..8f432f0dec2cff6fb85d9335eef63896a5246db0 100644
--- a/public/emoji/1f50c.svg
+++ b/public/emoji/1f50c.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#9AAAB4" d="M11.858 16.264c.389.389.389 1.025 0 1.414s-1.025.389-1.414 0L1.959 9.192c-.389-.389-.389-1.025 0-1.414s1.025-.389 1.414 0l8.485 8.486zm7.072-7.071c.389.389.389 1.025 0 1.414s-1.025.389-1.414 0L9.029 2.121c-.389-.389-.389-1.025 0-1.414s1.025-.389 1.414 0l8.487 8.486z"/><path fill="#292F33" d="M34 36c0-4.966-2.56-8.581-4.562-10.65.898-1.532.704-3.529-.61-4.844l-1.099-1.099c.352-1.332.021-2.806-1.022-3.851l-4.949-4.95c.78-.781.78-2.047 0-2.828-.781-.781-2.049-.781-2.829-.001l-2.826 2.826-.003.002-4.242 4.243-2.828 2.828c-.781.781-.781 2.047 0 2.828.781.781 2.047.781 2.828 0l4.95 4.95c1.044 1.044 2.519 1.373 3.85 1.021l1.101 1.101c1.318 1.318 3.323 1.51 4.857.602C28.099 29.726 30 32.404 30 36h4z"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#9AAAB4" d="M11.858 16.264c.389.389.389 1.025 0 1.414s-1.025.389-1.414 0L1.959 9.192c-.389-.389-.389-1.025 0-1.414s1.025-.389 1.414 0l8.485 8.486zm7.072-7.071c.389.389.389 1.025 0 1.414s-1.025.389-1.414 0L9.029 2.121c-.389-.389-.389-1.025 0-1.414s1.025-.389 1.414 0l8.487 8.486z"/><path fill="#31373D" d="M34 36c0-4.966-2.56-8.581-4.562-10.65.898-1.532.704-3.529-.61-4.844l-1.099-1.099c.352-1.332.021-2.806-1.022-3.851l-4.949-4.95c.78-.781.78-2.047 0-2.828-.781-.781-2.049-.781-2.829-.001l-2.826 2.826-.003.002-4.242 4.243-2.828 2.828c-.781.781-.781 2.047 0 2.828.781.781 2.047.781 2.828 0l4.95 4.95c1.044 1.044 2.519 1.373 3.85 1.021l1.101 1.101c1.318 1.318 3.323 1.51 4.857.602C28.099 29.726 30 32.404 30 36h4z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f519.svg b/public/emoji/1f519.svg
index 08e03126699d3269e4b538da9976eeed0be7ffaa..ddf8fbd3ea8e194e28ed5958b340f25721e9f638 100644
--- a/public/emoji/1f519.svg
+++ b/public/emoji/1f519.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#292F33" d="M34 3H12.475V1.128c0-1.046-.74-1.435-1.645-.865L.69 6.652c-.905.57-.922 1.527-.038 2.127l10.215 6.931c.884.602 1.607.235 1.607-.811V13H34c1.104 0 2-.896 2-2V5c0-1.104-.896-2-2-2zM.024 26.184c0-.727.5-1.137 1.197-1.137H4.13c1.576 0 2.849 1.061 2.849 2.667 0 1.061-.439 1.772-1.409 2.227v.03c1.288.183 2.303 1.258 2.303 2.576 0 2.137-1.424 3.288-3.516 3.288h-3.12c-.697 0-1.212-.439-1.212-1.151v-8.5zm2.273 3.135h1.182c.742 0 1.227-.439 1.227-1.196 0-.713-.561-1.076-1.227-1.076H2.297v2.272zm0 4.516h1.788c.818 0 1.424-.47 1.424-1.318 0-.712-.545-1.197-1.606-1.197H2.297v2.515zm9.217-7.713c.258-.696.85-1.257 1.621-1.257.805 0 1.365.53 1.621 1.257l2.971 8.243c.092.242.121.454.121.561 0 .591-.484 1-1.045 1-.637 0-.955-.333-1.107-.788l-.453-1.424H11.03l-.455 1.409c-.15.47-.469.803-1.09.803-.607 0-1.122-.454-1.122-1.061 0-.242.076-.424.106-.5l3.045-8.243zm.168 5.501h2.879l-1.41-4.395h-.029l-1.44 4.395zm11.378-6.758c1.106 0 3.258.363 3.258 1.696 0 .546-.379 1.016-.94 1.016-.621 0-1.046-.53-2.318-.53-1.879 0-2.849 1.591-2.849 3.439 0 1.803.985 3.349 2.849 3.349 1.272 0 1.788-.637 2.409-.637.682 0 1 .682 1 1.03 0 1.455-2.288 1.788-3.409 1.788-3.076 0-5.212-2.439-5.212-5.576 0-3.151 2.121-5.575 5.212-5.575zm4.471 1.212c0-.621.455-1.121 1.137-1.121.651 0 1.137.424 1.137 1.121v3.273l3.727-3.97c.167-.182.455-.424.879-.424.576 0 1.121.439 1.121 1.091 0 .393-.242.712-.742 1.212l-2.863 2.818 3.5 3.651c.363.364.637.697.637 1.152 0 .712-.562 1.045-1.183 1.045-.44 0-.727-.258-1.151-.712l-3.924-4.243v3.864c0 .591-.455 1.091-1.137 1.091-.651 0-1.137-.424-1.137-1.091v-8.757z"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#31373D" d="M34 3H12.475V1.128c0-1.046-.74-1.435-1.645-.865L.69 6.652c-.905.57-.922 1.527-.038 2.127l10.215 6.931c.884.602 1.607.235 1.607-.811V13H34c1.104 0 2-.896 2-2V5c0-1.104-.896-2-2-2zM.024 26.184c0-.727.5-1.137 1.197-1.137H4.13c1.576 0 2.849 1.061 2.849 2.667 0 1.061-.439 1.772-1.409 2.227v.03c1.288.183 2.303 1.258 2.303 2.576 0 2.137-1.424 3.288-3.516 3.288h-3.12c-.697 0-1.212-.439-1.212-1.151v-8.5zm2.273 3.135h1.182c.742 0 1.227-.439 1.227-1.196 0-.713-.561-1.076-1.227-1.076H2.297v2.272zm0 4.516h1.788c.818 0 1.424-.47 1.424-1.318 0-.712-.545-1.197-1.606-1.197H2.297v2.515zm9.217-7.713c.258-.696.85-1.257 1.621-1.257.805 0 1.365.53 1.621 1.257l2.971 8.243c.092.242.121.454.121.561 0 .591-.484 1-1.045 1-.637 0-.955-.333-1.107-.788l-.453-1.424H11.03l-.455 1.409c-.15.47-.469.803-1.09.803-.607 0-1.122-.454-1.122-1.061 0-.242.076-.424.106-.5l3.045-8.243zm.168 5.501h2.879l-1.41-4.395h-.029l-1.44 4.395zm11.378-6.758c1.106 0 3.258.363 3.258 1.696 0 .546-.379 1.016-.94 1.016-.621 0-1.046-.53-2.318-.53-1.879 0-2.849 1.591-2.849 3.439 0 1.803.985 3.349 2.849 3.349 1.272 0 1.788-.637 2.409-.637.682 0 1 .682 1 1.03 0 1.455-2.288 1.788-3.409 1.788-3.076 0-5.212-2.439-5.212-5.576 0-3.151 2.121-5.575 5.212-5.575zm4.471 1.212c0-.621.455-1.121 1.137-1.121.651 0 1.137.424 1.137 1.121v3.273l3.727-3.97c.167-.182.455-.424.879-.424.576 0 1.121.439 1.121 1.091 0 .393-.242.712-.742 1.212l-2.863 2.818 3.5 3.651c.363.364.637.697.637 1.152 0 .712-.562 1.045-1.183 1.045-.44 0-.727-.258-1.151-.712l-3.924-4.243v3.864c0 .591-.455 1.091-1.137 1.091-.651 0-1.137-.424-1.137-1.091v-8.757z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f51a.svg b/public/emoji/1f51a.svg
index 3d45f5d61e9d8c42d8439fe9778ee293a4effb48..d964c524e1cec18125d6b7ef4596557adcac4cfe 100644
--- a/public/emoji/1f51a.svg
+++ b/public/emoji/1f51a.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#292F33" d="M34 3H12.475V1.128c0-1.046-.74-1.434-1.644-.865L.69 6.652c-.905.57-.922 1.527-.038 2.127l10.215 6.931c.884.602 1.607.235 1.607-.811V13H34c1.104 0 2-.896 2-2V5c0-1.104-.896-2-2-2zM.088 22.915c0-1.03.515-1.791 1.606-1.791h5.108c.989 0 1.462.7 1.462 1.421 0 .7-.495 1.421-1.462 1.421H3.178v3.008h3.378c1.009 0 1.503.699 1.503 1.421 0 .699-.515 1.42-1.503 1.42H3.178v3.131h3.811c.988 0 1.462.701 1.462 1.421 0 .701-.495 1.422-1.462 1.422H1.675c-.906 0-1.586-.617-1.586-1.544v-11.33zm9.419-.309c0-1.029.659-1.606 1.545-1.606.392 0 1.03.31 1.298.68l6.529 8.712h.041v-7.785c0-1.029.659-1.606 1.545-1.606.886 0 1.545.577 1.545 1.606v11.699c0 1.03-.659 1.606-1.545 1.606-.391 0-1.009-.309-1.297-.681l-6.53-8.608h-.041v7.683c0 1.03-.659 1.606-1.544 1.606s-1.545-.576-1.545-1.606v-11.7zm14.239.104c0-.948.659-1.586 1.586-1.586h3.419c4.612 0 7.249 2.965 7.249 7.537 0 4.326-2.801 7.127-7.043 7.127h-3.584c-.68 0-1.627-.37-1.627-1.544V22.71zm3.09 10.235h2.08c2.656 0 3.872-1.957 3.872-4.429 0-2.637-1.235-4.551-4.078-4.551h-1.874v8.98z"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#31373D" d="M34 3H12.475V1.128c0-1.046-.74-1.434-1.644-.865L.69 6.652c-.905.57-.922 1.527-.038 2.127l10.215 6.931c.884.602 1.607.235 1.607-.811V13H34c1.104 0 2-.896 2-2V5c0-1.104-.896-2-2-2zM.088 22.915c0-1.03.515-1.791 1.606-1.791h5.108c.989 0 1.462.7 1.462 1.421 0 .7-.495 1.421-1.462 1.421H3.178v3.008h3.378c1.009 0 1.503.699 1.503 1.421 0 .699-.515 1.42-1.503 1.42H3.178v3.131h3.811c.988 0 1.462.701 1.462 1.421 0 .701-.495 1.422-1.462 1.422H1.675c-.906 0-1.586-.617-1.586-1.544v-11.33zm9.419-.309c0-1.029.659-1.606 1.545-1.606.392 0 1.03.31 1.298.68l6.529 8.712h.041v-7.785c0-1.029.659-1.606 1.545-1.606.886 0 1.545.577 1.545 1.606v11.699c0 1.03-.659 1.606-1.545 1.606-.391 0-1.009-.309-1.297-.681l-6.53-8.608h-.041v7.683c0 1.03-.659 1.606-1.544 1.606s-1.545-.576-1.545-1.606v-11.7zm14.239.104c0-.948.659-1.586 1.586-1.586h3.419c4.612 0 7.249 2.965 7.249 7.537 0 4.326-2.801 7.127-7.043 7.127h-3.584c-.68 0-1.627-.37-1.627-1.544V22.71zm3.09 10.235h2.08c2.656 0 3.872-1.957 3.872-4.429 0-2.637-1.235-4.551-4.078-4.551h-1.874v8.98z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f51b.svg b/public/emoji/1f51b.svg
index eeed72c1fcd12eb283ba831a13dbde8eb1b6924f..a885bab4f3652e3949bf8ca611db9d52ffecc182 100644
--- a/public/emoji/1f51b.svg
+++ b/public/emoji/1f51b.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#292F33" d="M35.311 6.652L25.17.263c-.904-.569-1.645-.181-1.645.865V3h-11.05V1.128c0-1.046-.74-1.434-1.644-.865L.689 6.652c-.904.57-.922 1.527-.037 2.127l10.215 6.932c.885.602 1.607.234 1.607-.812V13h11.051v1.899c0 1.046.723 1.413 1.607.811l10.215-6.931c.885-.6.868-1.557-.036-2.127zM.204 27.986c0-4.529 3.048-8.014 7.49-8.014 4.377 0 7.491 3.594 7.491 8.014 0 4.506-3.027 8.014-7.491 8.014-4.42 0-7.49-3.508-7.49-8.014zm11.584 0c0-2.635-1.372-5.01-4.094-5.01-2.721 0-4.094 2.375-4.094 5.01 0 2.656 1.33 5.008 4.094 5.008 2.765 0 4.094-2.351 4.094-5.008zm4.625-6.184c0-1.089.696-1.699 1.632-1.699.415 0 1.089.327 1.373.72l6.902 9.211h.045v-8.231c0-1.089.694-1.699 1.633-1.699.937 0 1.633.61 1.633 1.699V34.17c0 1.088-.696 1.697-1.633 1.697-.415 0-1.067-.326-1.372-.717l-6.903-9.102h-.044v8.121c0 1.088-.697 1.697-1.633 1.697s-1.632-.609-1.632-1.697V21.802zm16.013 12.499c0-.936.762-1.699 1.698-1.699.936 0 1.698.764 1.698 1.699 0 .936-.763 1.699-1.698 1.699-.936 0-1.698-.764-1.698-1.699zm.131-12.848c0-.914.673-1.48 1.567-1.48.87 0 1.567.588 1.567 1.48v8.384c0 .894-.697 1.479-1.567 1.479-.895 0-1.567-.564-1.567-1.479v-8.384z"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#31373D" d="M35.311 6.652L25.17.263c-.904-.569-1.645-.181-1.645.865V3h-11.05V1.128c0-1.046-.74-1.434-1.644-.865L.689 6.652c-.904.57-.922 1.527-.037 2.127l10.215 6.932c.885.602 1.607.234 1.607-.812V13h11.051v1.899c0 1.046.723 1.413 1.607.811l10.215-6.931c.885-.6.868-1.557-.036-2.127zM.204 27.986c0-4.529 3.048-8.014 7.49-8.014 4.377 0 7.491 3.594 7.491 8.014 0 4.506-3.027 8.014-7.491 8.014-4.42 0-7.49-3.508-7.49-8.014zm11.584 0c0-2.635-1.372-5.01-4.094-5.01-2.721 0-4.094 2.375-4.094 5.01 0 2.656 1.33 5.008 4.094 5.008 2.765 0 4.094-2.351 4.094-5.008zm4.625-6.184c0-1.089.696-1.699 1.632-1.699.415 0 1.089.327 1.373.72l6.902 9.211h.045v-8.231c0-1.089.694-1.699 1.633-1.699.937 0 1.633.61 1.633 1.699V34.17c0 1.088-.696 1.697-1.633 1.697-.415 0-1.067-.326-1.372-.717l-6.903-9.102h-.044v8.121c0 1.088-.697 1.697-1.633 1.697s-1.632-.609-1.632-1.697V21.802zm16.013 12.499c0-.936.762-1.699 1.698-1.699.936 0 1.698.764 1.698 1.699 0 .936-.763 1.699-1.698 1.699-.936 0-1.698-.764-1.698-1.699zm.131-12.848c0-.914.673-1.48 1.567-1.48.87 0 1.567.588 1.567 1.48v8.384c0 .894-.697 1.479-1.567 1.479-.895 0-1.567-.564-1.567-1.479v-8.384z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f51c.svg b/public/emoji/1f51c.svg
index c9aaa2d267df6ac76733332ae3b46ef23ec766c6..690428101a278c628d3576e80c0441d163dcc3d8 100644
--- a/public/emoji/1f51c.svg
+++ b/public/emoji/1f51c.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#292F33" d="M35.311 6.652L25.17.263c-.904-.569-1.645-.181-1.645.865V3H2C.896 3 0 3.895 0 5v6c0 1.104.896 2 2 2h21.525v1.899c0 1.046.723 1.413 1.607.811l10.215-6.931c.885-.6.868-1.557-.036-2.127zM6.303 27.263c0 .537-.357 1.018-.921 1.018-.563 0-1.002-.412-1.826-.412-.591 0-1.126.316-1.126.893 0 1.414 4.587.509 4.587 4.052C7.017 34.776 5.396 36 3.501 36c-1.058 0-3.337-.248-3.337-1.539 0-.535.356-.976.92-.976.645 0 1.415.536 2.308.536.907 0 1.401-.509 1.401-1.182 0-1.62-4.588-.645-4.588-3.832 0-1.923 1.58-3.118 3.407-3.118.768.001 2.691.289 2.691 1.374zm1.213 3.681c0-2.855 1.922-5.055 4.725-5.055 2.761 0 4.725 2.268 4.725 5.055 0 2.844-1.91 5.056-4.725 5.056-2.788 0-4.725-2.212-4.725-5.056zm7.307 0c0-1.661-.866-3.159-2.583-3.159s-2.582 1.498-2.582 3.159c0 1.676.838 3.159 2.582 3.159 1.745.001 2.583-1.483 2.583-3.159zm2.615 0c0-2.855 1.923-5.055 4.725-5.055 2.76 0 4.725 2.268 4.725 5.055 0 2.844-1.909 5.056-4.725 5.056-2.789 0-4.725-2.212-4.725-5.056zm7.306 0c0-1.661-.864-3.159-2.581-3.159-1.718 0-2.582 1.498-2.582 3.159 0 1.676.838 3.159 2.582 3.159 1.743.001 2.581-1.483 2.581-3.159zm2.918-3.9c0-.688.44-1.072 1.03-1.072.261 0 .687.206.865.454l4.353 5.81h.028v-5.191c0-.688.439-1.072 1.031-1.072.589 0 1.029.385 1.029 1.072v7.802c0 .688-.44 1.072-1.029 1.072-.263 0-.675-.206-.866-.454l-4.354-5.741h-.027v5.123c0 .688-.44 1.072-1.03 1.072s-1.03-.385-1.03-1.072v-7.803z"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#31373D" d="M35.311 6.652L25.17.263c-.904-.569-1.645-.181-1.645.865V3H2C.896 3 0 3.895 0 5v6c0 1.104.896 2 2 2h21.525v1.899c0 1.046.723 1.413 1.607.811l10.215-6.931c.885-.6.868-1.557-.036-2.127zM6.303 27.263c0 .537-.357 1.018-.921 1.018-.563 0-1.002-.412-1.826-.412-.591 0-1.126.316-1.126.893 0 1.414 4.587.509 4.587 4.052C7.017 34.776 5.396 36 3.501 36c-1.058 0-3.337-.248-3.337-1.539 0-.535.356-.976.92-.976.645 0 1.415.536 2.308.536.907 0 1.401-.509 1.401-1.182 0-1.62-4.588-.645-4.588-3.832 0-1.923 1.58-3.118 3.407-3.118.768.001 2.691.289 2.691 1.374zm1.213 3.681c0-2.855 1.922-5.055 4.725-5.055 2.761 0 4.725 2.268 4.725 5.055 0 2.844-1.91 5.056-4.725 5.056-2.788 0-4.725-2.212-4.725-5.056zm7.307 0c0-1.661-.866-3.159-2.583-3.159s-2.582 1.498-2.582 3.159c0 1.676.838 3.159 2.582 3.159 1.745.001 2.583-1.483 2.583-3.159zm2.615 0c0-2.855 1.923-5.055 4.725-5.055 2.76 0 4.725 2.268 4.725 5.055 0 2.844-1.909 5.056-4.725 5.056-2.789 0-4.725-2.212-4.725-5.056zm7.306 0c0-1.661-.864-3.159-2.581-3.159-1.718 0-2.582 1.498-2.582 3.159 0 1.676.838 3.159 2.582 3.159 1.743.001 2.581-1.483 2.581-3.159zm2.918-3.9c0-.688.44-1.072 1.03-1.072.261 0 .687.206.865.454l4.353 5.81h.028v-5.191c0-.688.439-1.072 1.031-1.072.589 0 1.029.385 1.029 1.072v7.802c0 .688-.44 1.072-1.029 1.072-.263 0-.675-.206-.866-.454l-4.354-5.741h-.027v5.123c0 .688-.44 1.072-1.03 1.072s-1.03-.385-1.03-1.072v-7.803z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f51d.svg b/public/emoji/1f51d.svg
index e5d0ca5c02672a6b700983325997c9a83f818d1f..54ab898eb19d7a64ed631dc022eba858c8af6ea5 100644
--- a/public/emoji/1f51d.svg
+++ b/public/emoji/1f51d.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#292F33" d="M25.711 10.867L18.779.652c-.602-.885-1.558-.867-2.127.037l-6.39 10.141c-.569.904-.181 1.644.865 1.644H13V16c0 1.104.896 2 2 2h6c1.105 0 2-.896 2-2v-3.525h1.898c1.047 0 1.414-.723.813-1.608zM3.651 23.575H1.438c-.975 0-1.381-.712-1.381-1.401 0-.71.508-1.399 1.381-1.399h7.469c.874 0 1.381.689 1.381 1.399 0 .69-.406 1.401-1.381 1.401H6.696v10.189c0 1.016-.649 1.584-1.522 1.584s-1.522-.568-1.522-1.584V23.575zM10.396 28c0-4.222 2.841-7.471 6.982-7.471 4.079 0 6.983 3.351 6.983 7.471 0 4.201-2.821 7.471-6.983 7.471-4.121 0-6.982-3.27-6.982-7.471zm10.798 0c0-2.456-1.279-4.67-3.816-4.67s-3.816 2.214-3.816 4.67c0 2.476 1.239 4.668 3.816 4.668 2.578 0 3.816-2.192 3.816-4.668zm4.433-5.644c0-.954.569-1.582 1.585-1.582h3.591c2.985 0 5.197 1.947 5.197 4.851 0 2.963-2.293 4.811-5.074 4.811h-2.253v3.329c0 1.016-.649 1.584-1.521 1.584-.874 0-1.524-.568-1.524-1.584V22.356zm3.046 5.4h2.071c1.277 0 2.089-.934 2.089-2.151 0-1.219-.812-2.152-2.089-2.152h-2.071v4.303z"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#31373D" d="M25.711 10.867L18.779.652c-.602-.885-1.558-.867-2.127.037l-6.39 10.141c-.569.904-.181 1.644.865 1.644H13V16c0 1.104.896 2 2 2h6c1.105 0 2-.896 2-2v-3.525h1.898c1.047 0 1.414-.723.813-1.608zM3.651 23.575H1.438c-.975 0-1.381-.712-1.381-1.401 0-.71.508-1.399 1.381-1.399h7.469c.874 0 1.381.689 1.381 1.399 0 .69-.406 1.401-1.381 1.401H6.696v10.189c0 1.016-.649 1.584-1.522 1.584s-1.522-.568-1.522-1.584V23.575zM10.396 28c0-4.222 2.841-7.471 6.982-7.471 4.079 0 6.983 3.351 6.983 7.471 0 4.201-2.821 7.471-6.983 7.471-4.121 0-6.982-3.27-6.982-7.471zm10.798 0c0-2.456-1.279-4.67-3.816-4.67s-3.816 2.214-3.816 4.67c0 2.476 1.239 4.668 3.816 4.668 2.578 0 3.816-2.192 3.816-4.668zm4.433-5.644c0-.954.569-1.582 1.585-1.582h3.591c2.985 0 5.197 1.947 5.197 4.851 0 2.963-2.293 4.811-5.074 4.811h-2.253v3.329c0 1.016-.649 1.584-1.521 1.584-.874 0-1.524-.568-1.524-1.584V22.356zm3.046 5.4h2.071c1.277 0 2.089-.934 2.089-2.151 0-1.219-.812-2.152-2.089-2.152h-2.071v4.303z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f52a.svg b/public/emoji/1f52a.svg
index fa23e9e7161f3e079cc8aacf363906e500e5fe90..d2ba9e7f09491e54962279cb664e12b889610c9e 100644
--- a/public/emoji/1f52a.svg
+++ b/public/emoji/1f52a.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#CCD6DD" d="M35.875 34.604L19.796 15.113s-5.637 3.692-7.689 9.676c0 0 4.667 5.292 9.79 8.225 6.368 3.646 11.642 2.855 13.703 2.391.362-.081.511-.513.275-.801z"/><path fill="#AAB8C2" d="M18.071 13.005l-4.035 3.559c.066.028.316.45.174 1.107-.402 1.865-2.346 4.288-2.974 5.098-.194.25-.224.691.026 1.007l.845 1.013c1.821-3.964 6.556-8.694 7.689-9.676l-1.725-2.108z"/><path fill="#292F33" d="M18.071 13.005s-3.32-4.216-5.763-6.986S8.208 1.658 6.625.64C5.01-.398 3.285.205 1.981 1.354S-.722 5.082.787 6.793c.826.937 2.785.078 3.791 1.219.683.774 1.031 1.365 3.464 3.859 3.759 3.854 5.994 4.692 5.994 4.692s1.251-1.042 1.932-1.648c.682-.604 2.103-1.91 2.103-1.91z"/><circle fill="#F5F8FA" cx="11.618" cy="10.543" r="1.365"/><circle fill="#F5F8FA" cx="5.903" cy="4.653" r="1.365"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#CCD6DD" d="M35.875 34.604L19.796 15.113s-5.637 3.692-7.689 9.676c0 0 4.667 5.292 9.79 8.225 6.368 3.646 11.642 2.855 13.703 2.391.362-.081.511-.513.275-.801z"/><path fill="#AAB8C2" d="M18.071 13.005l-4.035 3.559c.066.028.316.45.174 1.107-.402 1.865-2.346 4.288-2.974 5.098-.194.25-.224.691.026 1.007l.845 1.013c1.821-3.964 6.556-8.694 7.689-9.676l-1.725-2.108z"/><path fill="#31373D" d="M18.071 13.005s-3.32-4.216-5.763-6.986S8.208 1.658 6.625.64C5.01-.398 3.285.205 1.981 1.354S-.722 5.082.787 6.793c.826.937 2.785.078 3.791 1.219.683.774 1.031 1.365 3.464 3.859 3.759 3.854 5.994 4.692 5.994 4.692s1.251-1.042 1.932-1.648c.682-.604 2.103-1.91 2.103-1.91z"/><circle fill="#F5F8FA" cx="11.618" cy="10.543" r="1.365"/><circle fill="#F5F8FA" cx="5.903" cy="4.653" r="1.365"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f532.svg b/public/emoji/1f532.svg
index 262a671fc977926c14390920ac891851aa51ac01..a2e37de7f4315dcc775a6e0412a76f745671c1b1 100644
--- a/public/emoji/1f532.svg
+++ b/public/emoji/1f532.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#292F33" d="M36 32c0 2.209-1.791 4-4 4H4c-2.209 0-4-1.791-4-4V4c0-2.209 1.791-4 4-4h28c2.209 0 4 1.791 4 4v28z"/><path fill="#E6E7E8" d="M30 28c0 1.104-.896 2-2 2H8c-1.104 0-2-.896-2-2V8c0-1.104.896-2 2-2h20c1.104 0 2 .896 2 2v20z"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#31373D" d="M36 32c0 2.209-1.791 4-4 4H4c-2.209 0-4-1.791-4-4V4c0-2.209 1.791-4 4-4h28c2.209 0 4 1.791 4 4v28z"/><path fill="#E6E7E8" d="M30 28c0 1.104-.896 2-2 2H8c-1.104 0-2-.896-2-2V8c0-1.104.896-2 2-2h20c1.104 0 2 .896 2 2v20z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f533.svg b/public/emoji/1f533.svg
index e82e1e853d53d455a78c82e8f592cb28d4e49abd..13f35b71a0fd3c50ee96a2cac7ca9f5887b3bf8d 100644
--- a/public/emoji/1f533.svg
+++ b/public/emoji/1f533.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#E6E7E8" d="M36 32c0 2.209-1.791 4-4 4H4c-2.209 0-4-1.791-4-4V4c0-2.209 1.791-4 4-4h28c2.209 0 4 1.791 4 4v28z"/><path fill="#292F33" d="M30 28c0 1.104-.896 2-2 2H8c-1.104 0-2-.896-2-2V8c0-1.104.896-2 2-2h20c1.104 0 2 .896 2 2v20z"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#E6E7E8" d="M36 32c0 2.209-1.791 4-4 4H4c-2.209 0-4-1.791-4-4V4c0-2.209 1.791-4 4-4h28c2.209 0 4 1.791 4 4v28z"/><path fill="#31373D" d="M30 28c0 1.104-.896 2-2 2H8c-1.104 0-2-.896-2-2V8c0-1.104.896-2 2-2h20c1.104 0 2 .896 2 2v20z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f573.svg b/public/emoji/1f573.svg
index 983d21de359286225edb218da70b309a6bbac5f5..213a6ab694c6315c5df8529a8b9c1aa94ba26041 100644
--- a/public/emoji/1f573.svg
+++ b/public/emoji/1f573.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#292F33" d="M18 11.001c-9.389 0-17 3.358-17 7.5s7.611 7.5 17 7.5 17-3.358 17-7.5-7.611-7.5-17-7.5z"/><path fill="#7D8B93" d="M33.871 19.284c.079-.256.129-.516.129-.783 0-1.418-1.16-2.676-3-3.699v2.778c1.083.51 2.05 1.08 2.871 1.704zM5 14.802c-1.84 1.023-3 2.281-3 3.699 0 .267.05.527.129.783C2.95 18.66 3.917 18.09 5 17.58v-2.778z"/><path fill="#CCD6DD" d="M18 12.001c-4.766 0-9.87 1.06-13 2.801v2.778c3.398-1.598 7.967-2.579 13-2.579s9.602.981 13 2.579v-2.778c-3.13-1.741-8.234-2.801-13-2.801z"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#31373D" d="M18 11.001c-9.389 0-17 3.358-17 7.5s7.611 7.5 17 7.5 17-3.358 17-7.5-7.611-7.5-17-7.5z"/><path fill="#7D8B93" d="M33.871 19.284c.079-.256.129-.516.129-.783 0-1.418-1.16-2.676-3-3.699v2.778c1.083.51 2.05 1.08 2.871 1.704zM5 14.802c-1.84 1.023-3 2.281-3 3.699 0 .267.05.527.129.783C2.95 18.66 3.917 18.09 5 17.58v-2.778z"/><path fill="#CCD6DD" d="M18 12.001c-4.766 0-9.87 1.06-13 2.801v2.778c3.398-1.598 7.967-2.579 13-2.579s9.602.981 13 2.579v-2.778c-3.13-1.741-8.234-2.801-13-2.801z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f574-1f3fb-200d-2642-fe0f.svg b/public/emoji/1f574-1f3fb-200d-2642-fe0f.svg
index d9b230be1a0b322fb9dd240f322f27f248192c14..97bc7b5a5bc6cb23368f4e63995580bd5d0a06a6 100644
--- a/public/emoji/1f574-1f3fb-200d-2642-fe0f.svg
+++ b/public/emoji/1f574-1f3fb-200d-2642-fe0f.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#F7DECE" d="M14 22c0 .553-.448 1-1 1s-1-.447-1-1v-8c0-.552.448-1 1-1s1 .448 1 1v8zm10 0c0 .553-.447 1-1 1-.553 0-1-.447-1-1v-8c0-.552.447-1 1-1 .553 0 1 .448 1 1v8z"/><path fill="#66757F" d="M19 19h-5l1 11h3v-7 7h3l1-11z"/><path fill="#546170" d="M18 23c-.552 0-1 7-1 7 0 .553.448 0 1 0 .553 0 1 .553 1 0 0 0-.447-7-1-7z"/><path fill="#292F33" d="M22 11h-8c-1.104 0-2 .896-2 2v8h2v1h2l2-1 2 1h2v-1h2v-8c0-1.104-.896-2-2-2zm-5.36 18.479c1.105 0 1.346.159 1.359.521.052 1.375-1.786 3.479-3.141 2.979-.86-.317-.422-1.901.141-2.979.23-.441.962-.521 1.641-.521z"/><path fill="#292F33" d="M19.36 29.479c-1.105 0-1.346.159-1.359.521-.051 1.375 1.787 3.479 3.141 2.979.86-.317.422-1.901-.141-2.979-.23-.441-.961-.521-1.641-.521z"/><path fill="#E1E8ED" d="M18 18l-2-7h4z"/><path fill="#55ACEE" d="M17 15l1 3 1-3-1-2.417z"/><path fill="#F7DECE" d="M16.799 10v1.592L18 12l1.201-.408V10zm-1.495-3.181c0 .592-.3 1.071-.67 1.071-.37 0-.67-.48-.67-1.071 0-.592.3-1.071.67-1.071.37-.001.67.479.67 1.071zm6.696 0c0 .592-.3 1.071-.67 1.071-.37 0-.67-.48-.67-1.071 0-.592.3-1.071.67-1.071.37-.001.67.479.67 1.071z"/><path fill="#F7DECE" d="M18 10.906c-1.923 0-3.482-1.851-3.482-4.135S16.077 2.636 18 2.636s3.482 1.851 3.482 4.135-1.559 4.135-3.482 4.135"/><path fill="#C1694F" d="M19.305 9.096c-.015-.025-.043-.041-.073-.041h-2.453c-.03 0-.058.015-.073.041-.015.025-.017.057-.003.084.015.029.372.704 1.303.704.931 0 1.288-.676 1.303-.704.013-.026.011-.058-.004-.084zm-1.297-1.16c-.269 0-.478-.048-.646-.122.055.198.21.474.646.474.436 0 .59-.276.646-.474-.168.074-.377.122-.646.122z"/><path fill="#292F33" d="M14.827 6.396c.06-.296.148-.546.246-.771h-.777c.121.874.465 1.095.531.771zm6.346-.125c.239.47.475.152.55-.771h-.942l.392.771z"/><path fill="#66757F" d="M16 11l-1 3 1.25.344-.688 1.125L18 18zm4 0l1 3-1.25.344.688 1.125L18 18z"/><path fill="#55ACEE" d="M17 12l1 1 1-1-1-.417z"/><path fill="#F5F8FA" d="M16.562 10.562L18 11.583l-.938.995L16 11zm2.876 0L18 11.583l.938.995L20 11z"/><ellipse fill="#99AAB5" cx="18" cy="35" rx="6" ry="1"/><path fill="#292F33" d="M23.227 4.833c0 .66-2.337 1.333-5.219 1.333s-5.219-.673-5.219-1.333 1.196-.896 5.219-.896 5.219.236 5.219.896z"/><path fill="#292F33" d="M20.191 4.016c.678-.163 1.224-.45 1.224-.45s-.141-.578-.283-.95c-.442-1.154-1.175-1.729-1.849-1.558-1.019.259-1.496.11-2.712-.034-1.215-.144-1.773 1.682-1.967 2.542 0 0 .322.274.902.403 1.22.273 3.76.269 4.685.047z"/><path fill="#66757F" d="M21.583 4.225c-.012-.069-.027-.145-.043-.22-.048-.225-.126-.439-.126-.439s-1.101.429-3.406.429-3.406-.429-3.406-.429-.078.214-.126.439c-.016.076-.031.152-.043.22-.048.273.081.461.966.649.6.127 1.582.241 2.608.22 1.026.021 2.009-.093 2.608-.22.888-.188 1.017-.376.968-.649z"/><path fill="#292F33" d="M21.492 5.897l-.958.316c-.337-.047-1.038-.066-1.779.015-.197.022-.272.078-.739.078-.466 0-.542-.056-.739-.078-.741-.081-1.442-.062-1.779-.015l-.958-.316c-.093-.033-.191.019-.221.111s.02.19.111.221l.894.295c.066.051.208.148.242.248.039.116.117.861.35 1.055.241.2 1.148.125 1.322.039.389-.194.437-.82.505-1.094.039-.155.272-.155.272-.155s.233 0 .272.155c.069.274.117.902.505 1.096.174.087 1.081.161 1.322-.039.233-.194.311-.941.35-1.057.033-.1.175-.196.241-.247l.895-.295c.092-.03.142-.129.111-.221-.029-.093-.132-.144-.219-.112z"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#F7DECE" d="M14 22c0 .553-.448 1-1 1s-1-.447-1-1v-8c0-.552.448-1 1-1s1 .448 1 1v8zm10 0c0 .553-.447 1-1 1-.553 0-1-.447-1-1v-8c0-.552.447-1 1-1 .553 0 1 .448 1 1v8z"/><path fill="#66757F" d="M19 19h-5l1 11h3v-7 7h3l1-11z"/><path fill="#546170" d="M18 23c-.552 0-1 7-1 7 0 .553.448 0 1 0 .553 0 1 .553 1 0 0 0-.447-7-1-7z"/><path fill="#292F33" d="M22 11h-8c-1.104 0-2 .896-2 2v8h2v1h2l2-1 2 1h2v-1h2v-8c0-1.104-.896-2-2-2zm-5.36 18.479c1.105 0 1.346.159 1.359.521.052 1.375-1.786 3.479-3.141 2.979-.86-.317-.422-1.901.141-2.979.23-.441.962-.521 1.641-.521z"/><path fill="#292F33" d="M19.36 29.479c-1.105 0-1.346.159-1.359.521-.051 1.375 1.787 3.479 3.141 2.979.86-.317.422-1.901-.141-2.979-.23-.441-.961-.521-1.641-.521z"/><path fill="#F7DECE" d="M16.799 10h2.402v1.592h-2.402zm-1.495-3.181c0 .592-.3 1.071-.67 1.071-.37 0-.67-.48-.67-1.071 0-.592.3-1.071.67-1.071.37-.001.67.479.67 1.071zm6.696 0c0 .592-.3 1.071-.67 1.071-.37 0-.67-.48-.67-1.071 0-.592.3-1.071.67-1.071.37-.001.67.479.67 1.071z"/><path fill="#F7DECE" d="M18 10.906c-1.923 0-3.482-1.851-3.482-4.135S16.077 2.636 18 2.636s3.482 1.851 3.482 4.135-1.559 4.135-3.482 4.135"/><path fill="#C1694F" d="M19.305 9.096c-.015-.025-.043-.041-.073-.041h-2.453c-.03 0-.058.015-.073.041-.015.025-.017.057-.003.084.015.029.372.704 1.303.704.931 0 1.288-.676 1.303-.704.013-.026.011-.058-.004-.084zm-1.297-1.16c-.269 0-.478-.048-.646-.122.055.198.21.474.646.474.436 0 .59-.276.646-.474-.168.074-.377.122-.646.122z"/><path fill="#292F33" d="M14.827 6.396c.06-.296.148-.546.246-.771h-.777c.121.874.465 1.095.531.771zm6.346-.125c.239.47.475.152.55-.771h-.942l.392.771z"/><path fill="#546170" d="M19.8 13.2l1.276-1.2-.49-1H19.8z"/><path fill="#66757F" d="M17.997 18l3.099-5.045-1.271-1.361z"/><path fill="#546170" d="M16.2 13.2L14.924 12l.49-1h.786z"/><path fill="#66757F" d="M18 18l-3.099-5.045 1.271-1.361z"/><path fill="#E1E8ED" d="M18 18l-2-7 2 1 2-1z"/><path fill="#55ACEE" d="M19 12l-1-.417L17 12l.878.878-.793 1.918L18 18l.915-3.204-.793-1.918z"/><path fill="#F5F8FA" d="M16.562 10.562L18 11.583l-.938.995L16 11zm2.876 0L18 11.583l.938.995L20 11z"/><ellipse fill="#99AAB5" cx="18" cy="35" rx="6" ry="1"/><path fill="#292F33" d="M20.324 3.977c.612-.166 1.091-.411 1.091-.411s-.141-.578-.283-.95c-.442-1.154-1.175-1.729-1.849-1.558-1.019.259-1.496.11-2.712-.034-1.215-.144-1.773 1.682-1.968 2.542 0 0 .322.274.902.403.022.005.05.008.073.013-2.094.094-2.787.351-2.787.852 0 .66 2.336 1.333 5.219 1.333 2.882 0 5.219-.673 5.219-1.333-.002-.511-.723-.767-2.905-.857z"/><path fill="#66757F" d="M21.583 4.225c-.012-.069-.027-.145-.043-.22-.048-.225-.126-.439-.126-.439s-1.101.429-3.406.429-3.406-.429-3.406-.429-.078.214-.126.439c-.016.076-.031.152-.043.22-.048.273.081.461.966.649.6.127 1.582.241 2.608.22 1.026.021 2.009-.093 2.608-.22.888-.188 1.017-.376.968-.649z"/><path fill="#292F33" d="M21.492 5.897l-.958.316c-.337-.047-1.038-.066-1.779.015-.197.022-.272.078-.739.078-.466 0-.542-.056-.739-.078-.741-.081-1.442-.062-1.779-.015l-.958-.316c-.093-.033-.191.019-.221.111s.02.19.111.221l.894.295c.066.051.208.148.242.248.039.116.117.861.35 1.055.241.2 1.148.125 1.322.039.389-.194.437-.82.505-1.094.039-.155.272-.155.272-.155s.233 0 .272.155c.069.274.117.902.505 1.096.174.087 1.081.161 1.322-.039.233-.194.311-.941.35-1.057.033-.1.175-.196.241-.247l.895-.295c.092-.03.142-.129.111-.221-.029-.093-.132-.144-.219-.112z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f574-1f3fb.svg b/public/emoji/1f574-1f3fb.svg
index d9b230be1a0b322fb9dd240f322f27f248192c14..97bc7b5a5bc6cb23368f4e63995580bd5d0a06a6 100644
--- a/public/emoji/1f574-1f3fb.svg
+++ b/public/emoji/1f574-1f3fb.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#F7DECE" d="M14 22c0 .553-.448 1-1 1s-1-.447-1-1v-8c0-.552.448-1 1-1s1 .448 1 1v8zm10 0c0 .553-.447 1-1 1-.553 0-1-.447-1-1v-8c0-.552.447-1 1-1 .553 0 1 .448 1 1v8z"/><path fill="#66757F" d="M19 19h-5l1 11h3v-7 7h3l1-11z"/><path fill="#546170" d="M18 23c-.552 0-1 7-1 7 0 .553.448 0 1 0 .553 0 1 .553 1 0 0 0-.447-7-1-7z"/><path fill="#292F33" d="M22 11h-8c-1.104 0-2 .896-2 2v8h2v1h2l2-1 2 1h2v-1h2v-8c0-1.104-.896-2-2-2zm-5.36 18.479c1.105 0 1.346.159 1.359.521.052 1.375-1.786 3.479-3.141 2.979-.86-.317-.422-1.901.141-2.979.23-.441.962-.521 1.641-.521z"/><path fill="#292F33" d="M19.36 29.479c-1.105 0-1.346.159-1.359.521-.051 1.375 1.787 3.479 3.141 2.979.86-.317.422-1.901-.141-2.979-.23-.441-.961-.521-1.641-.521z"/><path fill="#E1E8ED" d="M18 18l-2-7h4z"/><path fill="#55ACEE" d="M17 15l1 3 1-3-1-2.417z"/><path fill="#F7DECE" d="M16.799 10v1.592L18 12l1.201-.408V10zm-1.495-3.181c0 .592-.3 1.071-.67 1.071-.37 0-.67-.48-.67-1.071 0-.592.3-1.071.67-1.071.37-.001.67.479.67 1.071zm6.696 0c0 .592-.3 1.071-.67 1.071-.37 0-.67-.48-.67-1.071 0-.592.3-1.071.67-1.071.37-.001.67.479.67 1.071z"/><path fill="#F7DECE" d="M18 10.906c-1.923 0-3.482-1.851-3.482-4.135S16.077 2.636 18 2.636s3.482 1.851 3.482 4.135-1.559 4.135-3.482 4.135"/><path fill="#C1694F" d="M19.305 9.096c-.015-.025-.043-.041-.073-.041h-2.453c-.03 0-.058.015-.073.041-.015.025-.017.057-.003.084.015.029.372.704 1.303.704.931 0 1.288-.676 1.303-.704.013-.026.011-.058-.004-.084zm-1.297-1.16c-.269 0-.478-.048-.646-.122.055.198.21.474.646.474.436 0 .59-.276.646-.474-.168.074-.377.122-.646.122z"/><path fill="#292F33" d="M14.827 6.396c.06-.296.148-.546.246-.771h-.777c.121.874.465 1.095.531.771zm6.346-.125c.239.47.475.152.55-.771h-.942l.392.771z"/><path fill="#66757F" d="M16 11l-1 3 1.25.344-.688 1.125L18 18zm4 0l1 3-1.25.344.688 1.125L18 18z"/><path fill="#55ACEE" d="M17 12l1 1 1-1-1-.417z"/><path fill="#F5F8FA" d="M16.562 10.562L18 11.583l-.938.995L16 11zm2.876 0L18 11.583l.938.995L20 11z"/><ellipse fill="#99AAB5" cx="18" cy="35" rx="6" ry="1"/><path fill="#292F33" d="M23.227 4.833c0 .66-2.337 1.333-5.219 1.333s-5.219-.673-5.219-1.333 1.196-.896 5.219-.896 5.219.236 5.219.896z"/><path fill="#292F33" d="M20.191 4.016c.678-.163 1.224-.45 1.224-.45s-.141-.578-.283-.95c-.442-1.154-1.175-1.729-1.849-1.558-1.019.259-1.496.11-2.712-.034-1.215-.144-1.773 1.682-1.967 2.542 0 0 .322.274.902.403 1.22.273 3.76.269 4.685.047z"/><path fill="#66757F" d="M21.583 4.225c-.012-.069-.027-.145-.043-.22-.048-.225-.126-.439-.126-.439s-1.101.429-3.406.429-3.406-.429-3.406-.429-.078.214-.126.439c-.016.076-.031.152-.043.22-.048.273.081.461.966.649.6.127 1.582.241 2.608.22 1.026.021 2.009-.093 2.608-.22.888-.188 1.017-.376.968-.649z"/><path fill="#292F33" d="M21.492 5.897l-.958.316c-.337-.047-1.038-.066-1.779.015-.197.022-.272.078-.739.078-.466 0-.542-.056-.739-.078-.741-.081-1.442-.062-1.779-.015l-.958-.316c-.093-.033-.191.019-.221.111s.02.19.111.221l.894.295c.066.051.208.148.242.248.039.116.117.861.35 1.055.241.2 1.148.125 1.322.039.389-.194.437-.82.505-1.094.039-.155.272-.155.272-.155s.233 0 .272.155c.069.274.117.902.505 1.096.174.087 1.081.161 1.322-.039.233-.194.311-.941.35-1.057.033-.1.175-.196.241-.247l.895-.295c.092-.03.142-.129.111-.221-.029-.093-.132-.144-.219-.112z"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#F7DECE" d="M14 22c0 .553-.448 1-1 1s-1-.447-1-1v-8c0-.552.448-1 1-1s1 .448 1 1v8zm10 0c0 .553-.447 1-1 1-.553 0-1-.447-1-1v-8c0-.552.447-1 1-1 .553 0 1 .448 1 1v8z"/><path fill="#66757F" d="M19 19h-5l1 11h3v-7 7h3l1-11z"/><path fill="#546170" d="M18 23c-.552 0-1 7-1 7 0 .553.448 0 1 0 .553 0 1 .553 1 0 0 0-.447-7-1-7z"/><path fill="#292F33" d="M22 11h-8c-1.104 0-2 .896-2 2v8h2v1h2l2-1 2 1h2v-1h2v-8c0-1.104-.896-2-2-2zm-5.36 18.479c1.105 0 1.346.159 1.359.521.052 1.375-1.786 3.479-3.141 2.979-.86-.317-.422-1.901.141-2.979.23-.441.962-.521 1.641-.521z"/><path fill="#292F33" d="M19.36 29.479c-1.105 0-1.346.159-1.359.521-.051 1.375 1.787 3.479 3.141 2.979.86-.317.422-1.901-.141-2.979-.23-.441-.961-.521-1.641-.521z"/><path fill="#F7DECE" d="M16.799 10h2.402v1.592h-2.402zm-1.495-3.181c0 .592-.3 1.071-.67 1.071-.37 0-.67-.48-.67-1.071 0-.592.3-1.071.67-1.071.37-.001.67.479.67 1.071zm6.696 0c0 .592-.3 1.071-.67 1.071-.37 0-.67-.48-.67-1.071 0-.592.3-1.071.67-1.071.37-.001.67.479.67 1.071z"/><path fill="#F7DECE" d="M18 10.906c-1.923 0-3.482-1.851-3.482-4.135S16.077 2.636 18 2.636s3.482 1.851 3.482 4.135-1.559 4.135-3.482 4.135"/><path fill="#C1694F" d="M19.305 9.096c-.015-.025-.043-.041-.073-.041h-2.453c-.03 0-.058.015-.073.041-.015.025-.017.057-.003.084.015.029.372.704 1.303.704.931 0 1.288-.676 1.303-.704.013-.026.011-.058-.004-.084zm-1.297-1.16c-.269 0-.478-.048-.646-.122.055.198.21.474.646.474.436 0 .59-.276.646-.474-.168.074-.377.122-.646.122z"/><path fill="#292F33" d="M14.827 6.396c.06-.296.148-.546.246-.771h-.777c.121.874.465 1.095.531.771zm6.346-.125c.239.47.475.152.55-.771h-.942l.392.771z"/><path fill="#546170" d="M19.8 13.2l1.276-1.2-.49-1H19.8z"/><path fill="#66757F" d="M17.997 18l3.099-5.045-1.271-1.361z"/><path fill="#546170" d="M16.2 13.2L14.924 12l.49-1h.786z"/><path fill="#66757F" d="M18 18l-3.099-5.045 1.271-1.361z"/><path fill="#E1E8ED" d="M18 18l-2-7 2 1 2-1z"/><path fill="#55ACEE" d="M19 12l-1-.417L17 12l.878.878-.793 1.918L18 18l.915-3.204-.793-1.918z"/><path fill="#F5F8FA" d="M16.562 10.562L18 11.583l-.938.995L16 11zm2.876 0L18 11.583l.938.995L20 11z"/><ellipse fill="#99AAB5" cx="18" cy="35" rx="6" ry="1"/><path fill="#292F33" d="M20.324 3.977c.612-.166 1.091-.411 1.091-.411s-.141-.578-.283-.95c-.442-1.154-1.175-1.729-1.849-1.558-1.019.259-1.496.11-2.712-.034-1.215-.144-1.773 1.682-1.968 2.542 0 0 .322.274.902.403.022.005.05.008.073.013-2.094.094-2.787.351-2.787.852 0 .66 2.336 1.333 5.219 1.333 2.882 0 5.219-.673 5.219-1.333-.002-.511-.723-.767-2.905-.857z"/><path fill="#66757F" d="M21.583 4.225c-.012-.069-.027-.145-.043-.22-.048-.225-.126-.439-.126-.439s-1.101.429-3.406.429-3.406-.429-3.406-.429-.078.214-.126.439c-.016.076-.031.152-.043.22-.048.273.081.461.966.649.6.127 1.582.241 2.608.22 1.026.021 2.009-.093 2.608-.22.888-.188 1.017-.376.968-.649z"/><path fill="#292F33" d="M21.492 5.897l-.958.316c-.337-.047-1.038-.066-1.779.015-.197.022-.272.078-.739.078-.466 0-.542-.056-.739-.078-.741-.081-1.442-.062-1.779-.015l-.958-.316c-.093-.033-.191.019-.221.111s.02.19.111.221l.894.295c.066.051.208.148.242.248.039.116.117.861.35 1.055.241.2 1.148.125 1.322.039.389-.194.437-.82.505-1.094.039-.155.272-.155.272-.155s.233 0 .272.155c.069.274.117.902.505 1.096.174.087 1.081.161 1.322-.039.233-.194.311-.941.35-1.057.033-.1.175-.196.241-.247l.895-.295c.092-.03.142-.129.111-.221-.029-.093-.132-.144-.219-.112z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f574-1f3fc-200d-2642-fe0f.svg b/public/emoji/1f574-1f3fc-200d-2642-fe0f.svg
index 4f27f75c750cd4cd6d8797022981f5d3a897ffaa..27c10f151d083d724f422eb4d2db15a399f67ef3 100644
--- a/public/emoji/1f574-1f3fc-200d-2642-fe0f.svg
+++ b/public/emoji/1f574-1f3fc-200d-2642-fe0f.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#F3D2A2" d="M14 22c0 .553-.448 1-1 1s-1-.447-1-1v-8c0-.552.448-1 1-1s1 .448 1 1v8zm10 0c0 .553-.447 1-1 1-.553 0-1-.447-1-1v-8c0-.552.447-1 1-1 .553 0 1 .448 1 1v8z"/><path fill="#66757F" d="M19 19h-5l1 11h3v-7 7h3l1-11z"/><path fill="#546170" d="M18 23c-.552 0-1 7-1 7 0 .553.448 0 1 0 .553 0 1 .553 1 0 0 0-.447-7-1-7z"/><path fill="#292F33" d="M22 11h-8c-1.104 0-2 .896-2 2v8h2v1h2l2-1 2 1h2v-1h2v-8c0-1.104-.896-2-2-2zm-5.36 18.479c1.105 0 1.346.159 1.359.521.052 1.375-1.786 3.479-3.141 2.979-.86-.317-.422-1.901.141-2.979.23-.441.962-.521 1.641-.521z"/><path fill="#292F33" d="M19.36 29.479c-1.105 0-1.346.159-1.359.521-.051 1.375 1.787 3.479 3.141 2.979.86-.317.422-1.901-.141-2.979-.23-.441-.961-.521-1.641-.521z"/><path fill="#E1E8ED" d="M18 18l-2-7h4z"/><path fill="#55ACEE" d="M17 15l1 3 1-3-1-2.417z"/><path fill="#F3D2A2" d="M16.799 10v1.592L18 12l1.201-.408V10zm-1.495-3.181c0 .592-.3 1.071-.67 1.071-.37 0-.67-.48-.67-1.071 0-.592.3-1.071.67-1.071.37-.001.67.479.67 1.071zm6.696 0c0 .592-.3 1.071-.67 1.071-.37 0-.67-.48-.67-1.071 0-.592.3-1.071.67-1.071.37-.001.67.479.67 1.071z"/><path fill="#F3D2A2" d="M18 10.906c-1.923 0-3.482-1.851-3.482-4.135S16.077 2.636 18 2.636s3.482 1.851 3.482 4.135-1.559 4.135-3.482 4.135"/><path fill="#C1694F" d="M19.305 9.096c-.015-.025-.043-.041-.073-.041h-2.453c-.03 0-.058.015-.073.041-.015.025-.017.057-.003.084.015.029.372.704 1.303.704.931 0 1.288-.676 1.303-.704.013-.026.011-.058-.004-.084zm-1.297-1.16c-.269 0-.478-.048-.646-.122.055.198.21.474.646.474.436 0 .59-.276.646-.474-.168.074-.377.122-.646.122z"/><path fill="#FFE51E" d="M14.827 6.396c.06-.296.148-.546.246-.771h-.777c.121.874.465 1.095.531.771zm6.346-.125c.239.47.475.152.55-.771h-.942l.392.771z"/><path fill="#66757F" d="M16 11l-1 3 1.25.344-.688 1.125L18 18zm4 0l1 3-1.25.344.688 1.125L18 18z"/><path fill="#55ACEE" d="M17 12l1 1 1-1-1-.417z"/><path fill="#F5F8FA" d="M16.562 10.562L18 11.583l-.938.995L16 11zm2.876 0L18 11.583l.938.995L20 11z"/><ellipse fill="#99AAB5" cx="18" cy="35" rx="6" ry="1"/><path fill="#292F33" d="M23.227 4.833c0 .66-2.337 1.333-5.219 1.333s-5.219-.673-5.219-1.333 1.196-.896 5.219-.896 5.219.236 5.219.896z"/><path fill="#292F33" d="M20.191 4.016c.678-.163 1.224-.45 1.224-.45s-.141-.578-.283-.95c-.442-1.154-1.175-1.729-1.849-1.558-1.019.259-1.496.11-2.712-.034-1.215-.144-1.773 1.682-1.967 2.542 0 0 .322.274.902.403 1.22.273 3.76.269 4.685.047z"/><path fill="#66757F" d="M21.583 4.225c-.012-.069-.027-.145-.043-.22-.048-.225-.126-.439-.126-.439s-1.101.429-3.406.429-3.406-.429-3.406-.429-.078.214-.126.439c-.016.076-.031.152-.043.22-.048.273.081.461.966.649.6.127 1.582.241 2.608.22 1.026.021 2.009-.093 2.608-.22.888-.188 1.017-.376.968-.649z"/><path fill="#292F33" d="M21.492 5.897l-.958.316c-.337-.047-1.038-.066-1.779.015-.197.022-.272.078-.739.078-.466 0-.542-.056-.739-.078-.741-.081-1.442-.062-1.779-.015l-.958-.316c-.093-.033-.191.019-.221.111s.02.19.111.221l.894.295c.066.051.208.148.242.248.039.116.117.861.35 1.055.241.2 1.148.125 1.322.039.389-.194.437-.82.505-1.094.039-.155.272-.155.272-.155s.233 0 .272.155c.069.274.117.902.505 1.096.174.087 1.081.161 1.322-.039.233-.194.311-.941.35-1.057.033-.1.175-.196.241-.247l.895-.295c.092-.03.142-.129.111-.221-.029-.093-.132-.144-.219-.112z"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#F3D2A2" d="M14 22c0 .553-.448 1-1 1s-1-.447-1-1v-8c0-.552.448-1 1-1s1 .448 1 1v8zm10 0c0 .553-.447 1-1 1-.553 0-1-.447-1-1v-8c0-.552.447-1 1-1 .553 0 1 .448 1 1v8z"/><path fill="#66757F" d="M19 19h-5l1 11h3v-7 7h3l1-11z"/><path fill="#546170" d="M18 23c-.552 0-1 7-1 7 0 .553.448 0 1 0 .553 0 1 .553 1 0 0 0-.447-7-1-7z"/><path fill="#292F33" d="M22 11h-8c-1.104 0-2 .896-2 2v8h2v1h2l2-1 2 1h2v-1h2v-8c0-1.104-.896-2-2-2zm-5.36 18.479c1.105 0 1.346.159 1.359.521.052 1.375-1.786 3.479-3.141 2.979-.86-.317-.422-1.901.141-2.979.23-.441.962-.521 1.641-.521z"/><path fill="#292F33" d="M19.36 29.479c-1.105 0-1.346.159-1.359.521-.051 1.375 1.787 3.479 3.141 2.979.86-.317.422-1.901-.141-2.979-.23-.441-.961-.521-1.641-.521z"/><path fill="#F3D2A2" d="M16.799 10h2.402v1.592h-2.402zm-1.495-3.181c0 .592-.3 1.071-.67 1.071-.37 0-.67-.48-.67-1.071 0-.592.3-1.071.67-1.071.37-.001.67.479.67 1.071zm6.696 0c0 .592-.3 1.071-.67 1.071-.37 0-.67-.48-.67-1.071 0-.592.3-1.071.67-1.071.37-.001.67.479.67 1.071z"/><path fill="#F3D2A2" d="M18 10.906c-1.923 0-3.482-1.851-3.482-4.135S16.077 2.636 18 2.636s3.482 1.851 3.482 4.135-1.559 4.135-3.482 4.135"/><path fill="#C1694F" d="M19.305 9.096c-.015-.025-.043-.041-.073-.041h-2.453c-.03 0-.058.015-.073.041-.015.025-.017.057-.003.084.015.029.372.704 1.303.704.931 0 1.288-.676 1.303-.704.013-.026.011-.058-.004-.084zm-1.297-1.16c-.269 0-.478-.048-.646-.122.055.198.21.474.646.474.436 0 .59-.276.646-.474-.168.074-.377.122-.646.122z"/><path fill="#FFE51E" d="M14.827 6.396c.06-.296.148-.546.246-.771h-.777c.121.874.465 1.095.531.771zm6.346-.125c.239.47.475.152.55-.771h-.942l.392.771z"/><path fill="#546170" d="M19.8 13.2l1.276-1.2-.49-1H19.8z"/><path fill="#66757F" d="M17.997 18l3.099-5.045-1.271-1.361z"/><path fill="#546170" d="M16.2 13.2L14.924 12l.49-1h.786z"/><path fill="#66757F" d="M18 18l-3.099-5.045 1.271-1.361z"/><path fill="#E1E8ED" d="M18 18l-2-7 2 1 2-1z"/><path fill="#55ACEE" d="M19 12l-1-.417L17 12l.878.878-.793 1.918L18 18l.915-3.204-.793-1.918z"/><path fill="#F5F8FA" d="M16.562 10.562L18 11.583l-.938.995L16 11zm2.876 0L18 11.583l.938.995L20 11z"/><ellipse fill="#99AAB5" cx="18" cy="35" rx="6" ry="1"/><path fill="#292F33" d="M20.324 3.977c.612-.166 1.091-.411 1.091-.411s-.141-.578-.283-.95c-.442-1.154-1.175-1.729-1.849-1.558-1.019.259-1.496.11-2.712-.034-1.215-.144-1.773 1.682-1.968 2.542 0 0 .322.274.902.403.022.005.05.008.073.013-2.094.094-2.787.351-2.787.852 0 .66 2.336 1.333 5.219 1.333 2.882 0 5.219-.673 5.219-1.333-.002-.511-.723-.767-2.905-.857z"/><path fill="#66757F" d="M21.583 4.225c-.012-.069-.027-.145-.043-.22-.048-.225-.126-.439-.126-.439s-1.101.429-3.406.429-3.406-.429-3.406-.429-.078.214-.126.439c-.016.076-.031.152-.043.22-.048.273.081.461.966.649.6.127 1.582.241 2.608.22 1.026.021 2.009-.093 2.608-.22.888-.188 1.017-.376.968-.649z"/><path fill="#292F33" d="M21.492 5.897l-.958.316c-.337-.047-1.038-.066-1.779.015-.197.022-.272.078-.739.078-.466 0-.542-.056-.739-.078-.741-.081-1.442-.062-1.779-.015l-.958-.316c-.093-.033-.191.019-.221.111s.02.19.111.221l.894.295c.066.051.208.148.242.248.039.116.117.861.35 1.055.241.2 1.148.125 1.322.039.389-.194.437-.82.505-1.094.039-.155.272-.155.272-.155s.233 0 .272.155c.069.274.117.902.505 1.096.174.087 1.081.161 1.322-.039.233-.194.311-.941.35-1.057.033-.1.175-.196.241-.247l.895-.295c.092-.03.142-.129.111-.221-.029-.093-.132-.144-.219-.112z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f574-1f3fc.svg b/public/emoji/1f574-1f3fc.svg
index 4f27f75c750cd4cd6d8797022981f5d3a897ffaa..27c10f151d083d724f422eb4d2db15a399f67ef3 100644
--- a/public/emoji/1f574-1f3fc.svg
+++ b/public/emoji/1f574-1f3fc.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#F3D2A2" d="M14 22c0 .553-.448 1-1 1s-1-.447-1-1v-8c0-.552.448-1 1-1s1 .448 1 1v8zm10 0c0 .553-.447 1-1 1-.553 0-1-.447-1-1v-8c0-.552.447-1 1-1 .553 0 1 .448 1 1v8z"/><path fill="#66757F" d="M19 19h-5l1 11h3v-7 7h3l1-11z"/><path fill="#546170" d="M18 23c-.552 0-1 7-1 7 0 .553.448 0 1 0 .553 0 1 .553 1 0 0 0-.447-7-1-7z"/><path fill="#292F33" d="M22 11h-8c-1.104 0-2 .896-2 2v8h2v1h2l2-1 2 1h2v-1h2v-8c0-1.104-.896-2-2-2zm-5.36 18.479c1.105 0 1.346.159 1.359.521.052 1.375-1.786 3.479-3.141 2.979-.86-.317-.422-1.901.141-2.979.23-.441.962-.521 1.641-.521z"/><path fill="#292F33" d="M19.36 29.479c-1.105 0-1.346.159-1.359.521-.051 1.375 1.787 3.479 3.141 2.979.86-.317.422-1.901-.141-2.979-.23-.441-.961-.521-1.641-.521z"/><path fill="#E1E8ED" d="M18 18l-2-7h4z"/><path fill="#55ACEE" d="M17 15l1 3 1-3-1-2.417z"/><path fill="#F3D2A2" d="M16.799 10v1.592L18 12l1.201-.408V10zm-1.495-3.181c0 .592-.3 1.071-.67 1.071-.37 0-.67-.48-.67-1.071 0-.592.3-1.071.67-1.071.37-.001.67.479.67 1.071zm6.696 0c0 .592-.3 1.071-.67 1.071-.37 0-.67-.48-.67-1.071 0-.592.3-1.071.67-1.071.37-.001.67.479.67 1.071z"/><path fill="#F3D2A2" d="M18 10.906c-1.923 0-3.482-1.851-3.482-4.135S16.077 2.636 18 2.636s3.482 1.851 3.482 4.135-1.559 4.135-3.482 4.135"/><path fill="#C1694F" d="M19.305 9.096c-.015-.025-.043-.041-.073-.041h-2.453c-.03 0-.058.015-.073.041-.015.025-.017.057-.003.084.015.029.372.704 1.303.704.931 0 1.288-.676 1.303-.704.013-.026.011-.058-.004-.084zm-1.297-1.16c-.269 0-.478-.048-.646-.122.055.198.21.474.646.474.436 0 .59-.276.646-.474-.168.074-.377.122-.646.122z"/><path fill="#FFE51E" d="M14.827 6.396c.06-.296.148-.546.246-.771h-.777c.121.874.465 1.095.531.771zm6.346-.125c.239.47.475.152.55-.771h-.942l.392.771z"/><path fill="#66757F" d="M16 11l-1 3 1.25.344-.688 1.125L18 18zm4 0l1 3-1.25.344.688 1.125L18 18z"/><path fill="#55ACEE" d="M17 12l1 1 1-1-1-.417z"/><path fill="#F5F8FA" d="M16.562 10.562L18 11.583l-.938.995L16 11zm2.876 0L18 11.583l.938.995L20 11z"/><ellipse fill="#99AAB5" cx="18" cy="35" rx="6" ry="1"/><path fill="#292F33" d="M23.227 4.833c0 .66-2.337 1.333-5.219 1.333s-5.219-.673-5.219-1.333 1.196-.896 5.219-.896 5.219.236 5.219.896z"/><path fill="#292F33" d="M20.191 4.016c.678-.163 1.224-.45 1.224-.45s-.141-.578-.283-.95c-.442-1.154-1.175-1.729-1.849-1.558-1.019.259-1.496.11-2.712-.034-1.215-.144-1.773 1.682-1.967 2.542 0 0 .322.274.902.403 1.22.273 3.76.269 4.685.047z"/><path fill="#66757F" d="M21.583 4.225c-.012-.069-.027-.145-.043-.22-.048-.225-.126-.439-.126-.439s-1.101.429-3.406.429-3.406-.429-3.406-.429-.078.214-.126.439c-.016.076-.031.152-.043.22-.048.273.081.461.966.649.6.127 1.582.241 2.608.22 1.026.021 2.009-.093 2.608-.22.888-.188 1.017-.376.968-.649z"/><path fill="#292F33" d="M21.492 5.897l-.958.316c-.337-.047-1.038-.066-1.779.015-.197.022-.272.078-.739.078-.466 0-.542-.056-.739-.078-.741-.081-1.442-.062-1.779-.015l-.958-.316c-.093-.033-.191.019-.221.111s.02.19.111.221l.894.295c.066.051.208.148.242.248.039.116.117.861.35 1.055.241.2 1.148.125 1.322.039.389-.194.437-.82.505-1.094.039-.155.272-.155.272-.155s.233 0 .272.155c.069.274.117.902.505 1.096.174.087 1.081.161 1.322-.039.233-.194.311-.941.35-1.057.033-.1.175-.196.241-.247l.895-.295c.092-.03.142-.129.111-.221-.029-.093-.132-.144-.219-.112z"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#F3D2A2" d="M14 22c0 .553-.448 1-1 1s-1-.447-1-1v-8c0-.552.448-1 1-1s1 .448 1 1v8zm10 0c0 .553-.447 1-1 1-.553 0-1-.447-1-1v-8c0-.552.447-1 1-1 .553 0 1 .448 1 1v8z"/><path fill="#66757F" d="M19 19h-5l1 11h3v-7 7h3l1-11z"/><path fill="#546170" d="M18 23c-.552 0-1 7-1 7 0 .553.448 0 1 0 .553 0 1 .553 1 0 0 0-.447-7-1-7z"/><path fill="#292F33" d="M22 11h-8c-1.104 0-2 .896-2 2v8h2v1h2l2-1 2 1h2v-1h2v-8c0-1.104-.896-2-2-2zm-5.36 18.479c1.105 0 1.346.159 1.359.521.052 1.375-1.786 3.479-3.141 2.979-.86-.317-.422-1.901.141-2.979.23-.441.962-.521 1.641-.521z"/><path fill="#292F33" d="M19.36 29.479c-1.105 0-1.346.159-1.359.521-.051 1.375 1.787 3.479 3.141 2.979.86-.317.422-1.901-.141-2.979-.23-.441-.961-.521-1.641-.521z"/><path fill="#F3D2A2" d="M16.799 10h2.402v1.592h-2.402zm-1.495-3.181c0 .592-.3 1.071-.67 1.071-.37 0-.67-.48-.67-1.071 0-.592.3-1.071.67-1.071.37-.001.67.479.67 1.071zm6.696 0c0 .592-.3 1.071-.67 1.071-.37 0-.67-.48-.67-1.071 0-.592.3-1.071.67-1.071.37-.001.67.479.67 1.071z"/><path fill="#F3D2A2" d="M18 10.906c-1.923 0-3.482-1.851-3.482-4.135S16.077 2.636 18 2.636s3.482 1.851 3.482 4.135-1.559 4.135-3.482 4.135"/><path fill="#C1694F" d="M19.305 9.096c-.015-.025-.043-.041-.073-.041h-2.453c-.03 0-.058.015-.073.041-.015.025-.017.057-.003.084.015.029.372.704 1.303.704.931 0 1.288-.676 1.303-.704.013-.026.011-.058-.004-.084zm-1.297-1.16c-.269 0-.478-.048-.646-.122.055.198.21.474.646.474.436 0 .59-.276.646-.474-.168.074-.377.122-.646.122z"/><path fill="#FFE51E" d="M14.827 6.396c.06-.296.148-.546.246-.771h-.777c.121.874.465 1.095.531.771zm6.346-.125c.239.47.475.152.55-.771h-.942l.392.771z"/><path fill="#546170" d="M19.8 13.2l1.276-1.2-.49-1H19.8z"/><path fill="#66757F" d="M17.997 18l3.099-5.045-1.271-1.361z"/><path fill="#546170" d="M16.2 13.2L14.924 12l.49-1h.786z"/><path fill="#66757F" d="M18 18l-3.099-5.045 1.271-1.361z"/><path fill="#E1E8ED" d="M18 18l-2-7 2 1 2-1z"/><path fill="#55ACEE" d="M19 12l-1-.417L17 12l.878.878-.793 1.918L18 18l.915-3.204-.793-1.918z"/><path fill="#F5F8FA" d="M16.562 10.562L18 11.583l-.938.995L16 11zm2.876 0L18 11.583l.938.995L20 11z"/><ellipse fill="#99AAB5" cx="18" cy="35" rx="6" ry="1"/><path fill="#292F33" d="M20.324 3.977c.612-.166 1.091-.411 1.091-.411s-.141-.578-.283-.95c-.442-1.154-1.175-1.729-1.849-1.558-1.019.259-1.496.11-2.712-.034-1.215-.144-1.773 1.682-1.968 2.542 0 0 .322.274.902.403.022.005.05.008.073.013-2.094.094-2.787.351-2.787.852 0 .66 2.336 1.333 5.219 1.333 2.882 0 5.219-.673 5.219-1.333-.002-.511-.723-.767-2.905-.857z"/><path fill="#66757F" d="M21.583 4.225c-.012-.069-.027-.145-.043-.22-.048-.225-.126-.439-.126-.439s-1.101.429-3.406.429-3.406-.429-3.406-.429-.078.214-.126.439c-.016.076-.031.152-.043.22-.048.273.081.461.966.649.6.127 1.582.241 2.608.22 1.026.021 2.009-.093 2.608-.22.888-.188 1.017-.376.968-.649z"/><path fill="#292F33" d="M21.492 5.897l-.958.316c-.337-.047-1.038-.066-1.779.015-.197.022-.272.078-.739.078-.466 0-.542-.056-.739-.078-.741-.081-1.442-.062-1.779-.015l-.958-.316c-.093-.033-.191.019-.221.111s.02.19.111.221l.894.295c.066.051.208.148.242.248.039.116.117.861.35 1.055.241.2 1.148.125 1.322.039.389-.194.437-.82.505-1.094.039-.155.272-.155.272-.155s.233 0 .272.155c.069.274.117.902.505 1.096.174.087 1.081.161 1.322-.039.233-.194.311-.941.35-1.057.033-.1.175-.196.241-.247l.895-.295c.092-.03.142-.129.111-.221-.029-.093-.132-.144-.219-.112z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f574-1f3fd-200d-2642-fe0f.svg b/public/emoji/1f574-1f3fd-200d-2642-fe0f.svg
index 047933f9b10d2f82956a3b2d8639761a0d6edf22..4e980b002c008ff0beb0986e6c0c1687f106a9f7 100644
--- a/public/emoji/1f574-1f3fd-200d-2642-fe0f.svg
+++ b/public/emoji/1f574-1f3fd-200d-2642-fe0f.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#D5AB88" d="M14 22c0 .553-.448 1-1 1s-1-.447-1-1v-8c0-.552.448-1 1-1s1 .448 1 1v8zm10 0c0 .553-.447 1-1 1-.553 0-1-.447-1-1v-8c0-.552.447-1 1-1 .553 0 1 .448 1 1v8z"/><path fill="#66757F" d="M19 19h-5l1 11h3v-7 7h3l1-11z"/><path fill="#546170" d="M18 23c-.552 0-1 7-1 7 0 .553.448 0 1 0 .553 0 1 .553 1 0 0 0-.447-7-1-7z"/><path fill="#292F33" d="M22 11h-8c-1.104 0-2 .896-2 2v8h2v1h2l2-1 2 1h2v-1h2v-8c0-1.104-.896-2-2-2zm-5.36 18.479c1.105 0 1.346.159 1.359.521.052 1.375-1.786 3.479-3.141 2.979-.86-.317-.422-1.901.141-2.979.23-.441.962-.521 1.641-.521z"/><path fill="#292F33" d="M19.36 29.479c-1.105 0-1.346.159-1.359.521-.051 1.375 1.787 3.479 3.141 2.979.86-.317.422-1.901-.141-2.979-.23-.441-.961-.521-1.641-.521z"/><path fill="#E1E8ED" d="M18 18l-2-7h4z"/><path fill="#55ACEE" d="M17 15l1 3 1-3-1-2.417z"/><path fill="#D5AB88" d="M16.799 10v1.592L18 12l1.201-.408V10zm-1.495-3.181c0 .592-.3 1.071-.67 1.071-.37 0-.67-.48-.67-1.071 0-.592.3-1.071.67-1.071.37-.001.67.479.67 1.071zm6.696 0c0 .592-.3 1.071-.67 1.071-.37 0-.67-.48-.67-1.071 0-.592.3-1.071.67-1.071.37-.001.67.479.67 1.071z"/><path fill="#D5AB88" d="M18 10.906c-1.923 0-3.482-1.851-3.482-4.135S16.077 2.636 18 2.636s3.482 1.851 3.482 4.135-1.559 4.135-3.482 4.135"/><path fill="#C1694F" d="M19.305 9.096c-.015-.025-.043-.041-.073-.041h-2.453c-.03 0-.058.015-.073.041-.015.025-.017.057-.003.084.015.029.372.704 1.303.704.931 0 1.288-.676 1.303-.704.013-.026.011-.058-.004-.084zm-1.297-1.16c-.269 0-.478-.048-.646-.122.055.198.21.474.646.474.436 0 .59-.276.646-.474-.168.074-.377.122-.646.122z"/><path fill="#963B22" d="M14.827 6.396c.06-.296.148-.546.246-.771h-.777c.121.874.465 1.095.531.771zm6.346-.125c.239.47.475.152.55-.771h-.942l.392.771z"/><path fill="#66757F" d="M16 11l-1 3 1.25.344-.688 1.125L18 18zm4 0l1 3-1.25.344.688 1.125L18 18z"/><path fill="#55ACEE" d="M17 12l1 1 1-1-1-.417z"/><path fill="#F5F8FA" d="M16.562 10.562L18 11.583l-.938.995L16 11zm2.876 0L18 11.583l.938.995L20 11z"/><ellipse fill="#99AAB5" cx="18" cy="35" rx="6" ry="1"/><path fill="#292F33" d="M23.227 4.833c0 .66-2.337 1.333-5.219 1.333s-5.219-.673-5.219-1.333 1.196-.896 5.219-.896 5.219.236 5.219.896z"/><path fill="#292F33" d="M20.191 4.016c.678-.163 1.224-.45 1.224-.45s-.141-.578-.283-.95c-.442-1.154-1.175-1.729-1.849-1.558-1.019.259-1.496.11-2.712-.034-1.215-.144-1.773 1.682-1.967 2.542 0 0 .322.274.902.403 1.22.273 3.76.269 4.685.047z"/><path fill="#66757F" d="M21.583 4.225c-.012-.069-.027-.145-.043-.22-.048-.225-.126-.439-.126-.439s-1.101.429-3.406.429-3.406-.429-3.406-.429-.078.214-.126.439c-.016.076-.031.152-.043.22-.048.273.081.461.966.649.6.127 1.582.241 2.608.22 1.026.021 2.009-.093 2.608-.22.888-.188 1.017-.376.968-.649z"/><path fill="#292F33" d="M21.492 5.897l-.958.316c-.337-.047-1.038-.066-1.779.015-.197.022-.272.078-.739.078-.466 0-.542-.056-.739-.078-.741-.081-1.442-.062-1.779-.015l-.958-.316c-.093-.033-.191.019-.221.111s.02.19.111.221l.894.295c.066.051.208.148.242.248.039.116.117.861.35 1.055.241.2 1.148.125 1.322.039.389-.194.437-.82.505-1.094.039-.155.272-.155.272-.155s.233 0 .272.155c.069.274.117.902.505 1.096.174.087 1.081.161 1.322-.039.233-.194.311-.941.35-1.057.033-.1.175-.196.241-.247l.895-.295c.092-.03.142-.129.111-.221-.029-.093-.132-.144-.219-.112z"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#D4AB88" d="M14 22c0 .553-.448 1-1 1s-1-.447-1-1v-8c0-.552.448-1 1-1s1 .448 1 1v8zm10 0c0 .553-.447 1-1 1-.553 0-1-.447-1-1v-8c0-.552.447-1 1-1 .553 0 1 .448 1 1v8z"/><path fill="#66757F" d="M19 19h-5l1 11h3v-7 7h3l1-11z"/><path fill="#546170" d="M18 23c-.552 0-1 7-1 7 0 .553.448 0 1 0 .553 0 1 .553 1 0 0 0-.447-7-1-7z"/><path fill="#292F33" d="M22 11h-8c-1.104 0-2 .896-2 2v8h2v1h2l2-1 2 1h2v-1h2v-8c0-1.104-.896-2-2-2zm-5.36 18.479c1.105 0 1.346.159 1.359.521.052 1.375-1.786 3.479-3.141 2.979-.86-.317-.422-1.901.141-2.979.23-.441.962-.521 1.641-.521z"/><path fill="#292F33" d="M19.36 29.479c-1.105 0-1.346.159-1.359.521-.051 1.375 1.787 3.479 3.141 2.979.86-.317.422-1.901-.141-2.979-.23-.441-.961-.521-1.641-.521z"/><path fill="#D4AB88" d="M16.799 10h2.402v1.592h-2.402zm-1.495-3.181c0 .592-.3 1.071-.67 1.071-.37 0-.67-.48-.67-1.071 0-.592.3-1.071.67-1.071.37-.001.67.479.67 1.071zm6.696 0c0 .592-.3 1.071-.67 1.071-.37 0-.67-.48-.67-1.071 0-.592.3-1.071.67-1.071.37-.001.67.479.67 1.071z"/><path fill="#D4AB88" d="M18 10.906c-1.923 0-3.482-1.851-3.482-4.135S16.077 2.636 18 2.636s3.482 1.851 3.482 4.135-1.559 4.135-3.482 4.135"/><path fill="#C1694F" d="M19.305 9.096c-.015-.025-.043-.041-.073-.041h-2.453c-.03 0-.058.015-.073.041-.015.025-.017.057-.003.084.015.029.372.704 1.303.704.931 0 1.288-.676 1.303-.704.013-.026.011-.058-.004-.084zm-1.297-1.16c-.269 0-.478-.048-.646-.122.055.198.21.474.646.474.436 0 .59-.276.646-.474-.168.074-.377.122-.646.122z"/><path fill="#963B22" d="M14.827 6.396c.06-.296.148-.546.246-.771h-.777c.121.874.465 1.095.531.771zm6.346-.125c.239.47.475.152.55-.771h-.942l.392.771z"/><path fill="#546170" d="M19.8 13.2l1.276-1.2-.49-1H19.8z"/><path fill="#66757F" d="M17.997 18l3.099-5.045-1.271-1.361z"/><path fill="#546170" d="M16.2 13.2L14.924 12l.49-1h.786z"/><path fill="#66757F" d="M18 18l-3.099-5.045 1.271-1.361z"/><path fill="#E1E8ED" d="M18 18l-2-7 2 1 2-1z"/><path fill="#55ACEE" d="M19 12l-1-.417L17 12l.878.878-.793 1.918L18 18l.915-3.204-.793-1.918z"/><path fill="#F5F8FA" d="M16.562 10.562L18 11.583l-.938.995L16 11zm2.876 0L18 11.583l.938.995L20 11z"/><ellipse fill="#99AAB5" cx="18" cy="35" rx="6" ry="1"/><path fill="#292F33" d="M20.324 3.977c.612-.166 1.091-.411 1.091-.411s-.141-.578-.283-.95c-.442-1.154-1.175-1.729-1.849-1.558-1.019.259-1.496.11-2.712-.034-1.215-.144-1.773 1.682-1.968 2.542 0 0 .322.274.902.403.022.005.05.008.073.013-2.094.094-2.787.351-2.787.852 0 .66 2.336 1.333 5.219 1.333 2.882 0 5.219-.673 5.219-1.333-.002-.511-.723-.767-2.905-.857z"/><path fill="#66757F" d="M21.583 4.225c-.012-.069-.027-.145-.043-.22-.048-.225-.126-.439-.126-.439s-1.101.429-3.406.429-3.406-.429-3.406-.429-.078.214-.126.439c-.016.076-.031.152-.043.22-.048.273.081.461.966.649.6.127 1.582.241 2.608.22 1.026.021 2.009-.093 2.608-.22.888-.188 1.017-.376.968-.649z"/><path fill="#292F33" d="M21.492 5.897l-.958.316c-.337-.047-1.038-.066-1.779.015-.197.022-.272.078-.739.078-.466 0-.542-.056-.739-.078-.741-.081-1.442-.062-1.779-.015l-.958-.316c-.093-.033-.191.019-.221.111s.02.19.111.221l.894.295c.066.051.208.148.242.248.039.116.117.861.35 1.055.241.2 1.148.125 1.322.039.389-.194.437-.82.505-1.094.039-.155.272-.155.272-.155s.233 0 .272.155c.069.274.117.902.505 1.096.174.087 1.081.161 1.322-.039.233-.194.311-.941.35-1.057.033-.1.175-.196.241-.247l.895-.295c.092-.03.142-.129.111-.221-.029-.093-.132-.144-.219-.112z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f574-1f3fd.svg b/public/emoji/1f574-1f3fd.svg
index 047933f9b10d2f82956a3b2d8639761a0d6edf22..4e980b002c008ff0beb0986e6c0c1687f106a9f7 100644
--- a/public/emoji/1f574-1f3fd.svg
+++ b/public/emoji/1f574-1f3fd.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#D5AB88" d="M14 22c0 .553-.448 1-1 1s-1-.447-1-1v-8c0-.552.448-1 1-1s1 .448 1 1v8zm10 0c0 .553-.447 1-1 1-.553 0-1-.447-1-1v-8c0-.552.447-1 1-1 .553 0 1 .448 1 1v8z"/><path fill="#66757F" d="M19 19h-5l1 11h3v-7 7h3l1-11z"/><path fill="#546170" d="M18 23c-.552 0-1 7-1 7 0 .553.448 0 1 0 .553 0 1 .553 1 0 0 0-.447-7-1-7z"/><path fill="#292F33" d="M22 11h-8c-1.104 0-2 .896-2 2v8h2v1h2l2-1 2 1h2v-1h2v-8c0-1.104-.896-2-2-2zm-5.36 18.479c1.105 0 1.346.159 1.359.521.052 1.375-1.786 3.479-3.141 2.979-.86-.317-.422-1.901.141-2.979.23-.441.962-.521 1.641-.521z"/><path fill="#292F33" d="M19.36 29.479c-1.105 0-1.346.159-1.359.521-.051 1.375 1.787 3.479 3.141 2.979.86-.317.422-1.901-.141-2.979-.23-.441-.961-.521-1.641-.521z"/><path fill="#E1E8ED" d="M18 18l-2-7h4z"/><path fill="#55ACEE" d="M17 15l1 3 1-3-1-2.417z"/><path fill="#D5AB88" d="M16.799 10v1.592L18 12l1.201-.408V10zm-1.495-3.181c0 .592-.3 1.071-.67 1.071-.37 0-.67-.48-.67-1.071 0-.592.3-1.071.67-1.071.37-.001.67.479.67 1.071zm6.696 0c0 .592-.3 1.071-.67 1.071-.37 0-.67-.48-.67-1.071 0-.592.3-1.071.67-1.071.37-.001.67.479.67 1.071z"/><path fill="#D5AB88" d="M18 10.906c-1.923 0-3.482-1.851-3.482-4.135S16.077 2.636 18 2.636s3.482 1.851 3.482 4.135-1.559 4.135-3.482 4.135"/><path fill="#C1694F" d="M19.305 9.096c-.015-.025-.043-.041-.073-.041h-2.453c-.03 0-.058.015-.073.041-.015.025-.017.057-.003.084.015.029.372.704 1.303.704.931 0 1.288-.676 1.303-.704.013-.026.011-.058-.004-.084zm-1.297-1.16c-.269 0-.478-.048-.646-.122.055.198.21.474.646.474.436 0 .59-.276.646-.474-.168.074-.377.122-.646.122z"/><path fill="#963B22" d="M14.827 6.396c.06-.296.148-.546.246-.771h-.777c.121.874.465 1.095.531.771zm6.346-.125c.239.47.475.152.55-.771h-.942l.392.771z"/><path fill="#66757F" d="M16 11l-1 3 1.25.344-.688 1.125L18 18zm4 0l1 3-1.25.344.688 1.125L18 18z"/><path fill="#55ACEE" d="M17 12l1 1 1-1-1-.417z"/><path fill="#F5F8FA" d="M16.562 10.562L18 11.583l-.938.995L16 11zm2.876 0L18 11.583l.938.995L20 11z"/><ellipse fill="#99AAB5" cx="18" cy="35" rx="6" ry="1"/><path fill="#292F33" d="M23.227 4.833c0 .66-2.337 1.333-5.219 1.333s-5.219-.673-5.219-1.333 1.196-.896 5.219-.896 5.219.236 5.219.896z"/><path fill="#292F33" d="M20.191 4.016c.678-.163 1.224-.45 1.224-.45s-.141-.578-.283-.95c-.442-1.154-1.175-1.729-1.849-1.558-1.019.259-1.496.11-2.712-.034-1.215-.144-1.773 1.682-1.967 2.542 0 0 .322.274.902.403 1.22.273 3.76.269 4.685.047z"/><path fill="#66757F" d="M21.583 4.225c-.012-.069-.027-.145-.043-.22-.048-.225-.126-.439-.126-.439s-1.101.429-3.406.429-3.406-.429-3.406-.429-.078.214-.126.439c-.016.076-.031.152-.043.22-.048.273.081.461.966.649.6.127 1.582.241 2.608.22 1.026.021 2.009-.093 2.608-.22.888-.188 1.017-.376.968-.649z"/><path fill="#292F33" d="M21.492 5.897l-.958.316c-.337-.047-1.038-.066-1.779.015-.197.022-.272.078-.739.078-.466 0-.542-.056-.739-.078-.741-.081-1.442-.062-1.779-.015l-.958-.316c-.093-.033-.191.019-.221.111s.02.19.111.221l.894.295c.066.051.208.148.242.248.039.116.117.861.35 1.055.241.2 1.148.125 1.322.039.389-.194.437-.82.505-1.094.039-.155.272-.155.272-.155s.233 0 .272.155c.069.274.117.902.505 1.096.174.087 1.081.161 1.322-.039.233-.194.311-.941.35-1.057.033-.1.175-.196.241-.247l.895-.295c.092-.03.142-.129.111-.221-.029-.093-.132-.144-.219-.112z"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#D4AB88" d="M14 22c0 .553-.448 1-1 1s-1-.447-1-1v-8c0-.552.448-1 1-1s1 .448 1 1v8zm10 0c0 .553-.447 1-1 1-.553 0-1-.447-1-1v-8c0-.552.447-1 1-1 .553 0 1 .448 1 1v8z"/><path fill="#66757F" d="M19 19h-5l1 11h3v-7 7h3l1-11z"/><path fill="#546170" d="M18 23c-.552 0-1 7-1 7 0 .553.448 0 1 0 .553 0 1 .553 1 0 0 0-.447-7-1-7z"/><path fill="#292F33" d="M22 11h-8c-1.104 0-2 .896-2 2v8h2v1h2l2-1 2 1h2v-1h2v-8c0-1.104-.896-2-2-2zm-5.36 18.479c1.105 0 1.346.159 1.359.521.052 1.375-1.786 3.479-3.141 2.979-.86-.317-.422-1.901.141-2.979.23-.441.962-.521 1.641-.521z"/><path fill="#292F33" d="M19.36 29.479c-1.105 0-1.346.159-1.359.521-.051 1.375 1.787 3.479 3.141 2.979.86-.317.422-1.901-.141-2.979-.23-.441-.961-.521-1.641-.521z"/><path fill="#D4AB88" d="M16.799 10h2.402v1.592h-2.402zm-1.495-3.181c0 .592-.3 1.071-.67 1.071-.37 0-.67-.48-.67-1.071 0-.592.3-1.071.67-1.071.37-.001.67.479.67 1.071zm6.696 0c0 .592-.3 1.071-.67 1.071-.37 0-.67-.48-.67-1.071 0-.592.3-1.071.67-1.071.37-.001.67.479.67 1.071z"/><path fill="#D4AB88" d="M18 10.906c-1.923 0-3.482-1.851-3.482-4.135S16.077 2.636 18 2.636s3.482 1.851 3.482 4.135-1.559 4.135-3.482 4.135"/><path fill="#C1694F" d="M19.305 9.096c-.015-.025-.043-.041-.073-.041h-2.453c-.03 0-.058.015-.073.041-.015.025-.017.057-.003.084.015.029.372.704 1.303.704.931 0 1.288-.676 1.303-.704.013-.026.011-.058-.004-.084zm-1.297-1.16c-.269 0-.478-.048-.646-.122.055.198.21.474.646.474.436 0 .59-.276.646-.474-.168.074-.377.122-.646.122z"/><path fill="#963B22" d="M14.827 6.396c.06-.296.148-.546.246-.771h-.777c.121.874.465 1.095.531.771zm6.346-.125c.239.47.475.152.55-.771h-.942l.392.771z"/><path fill="#546170" d="M19.8 13.2l1.276-1.2-.49-1H19.8z"/><path fill="#66757F" d="M17.997 18l3.099-5.045-1.271-1.361z"/><path fill="#546170" d="M16.2 13.2L14.924 12l.49-1h.786z"/><path fill="#66757F" d="M18 18l-3.099-5.045 1.271-1.361z"/><path fill="#E1E8ED" d="M18 18l-2-7 2 1 2-1z"/><path fill="#55ACEE" d="M19 12l-1-.417L17 12l.878.878-.793 1.918L18 18l.915-3.204-.793-1.918z"/><path fill="#F5F8FA" d="M16.562 10.562L18 11.583l-.938.995L16 11zm2.876 0L18 11.583l.938.995L20 11z"/><ellipse fill="#99AAB5" cx="18" cy="35" rx="6" ry="1"/><path fill="#292F33" d="M20.324 3.977c.612-.166 1.091-.411 1.091-.411s-.141-.578-.283-.95c-.442-1.154-1.175-1.729-1.849-1.558-1.019.259-1.496.11-2.712-.034-1.215-.144-1.773 1.682-1.968 2.542 0 0 .322.274.902.403.022.005.05.008.073.013-2.094.094-2.787.351-2.787.852 0 .66 2.336 1.333 5.219 1.333 2.882 0 5.219-.673 5.219-1.333-.002-.511-.723-.767-2.905-.857z"/><path fill="#66757F" d="M21.583 4.225c-.012-.069-.027-.145-.043-.22-.048-.225-.126-.439-.126-.439s-1.101.429-3.406.429-3.406-.429-3.406-.429-.078.214-.126.439c-.016.076-.031.152-.043.22-.048.273.081.461.966.649.6.127 1.582.241 2.608.22 1.026.021 2.009-.093 2.608-.22.888-.188 1.017-.376.968-.649z"/><path fill="#292F33" d="M21.492 5.897l-.958.316c-.337-.047-1.038-.066-1.779.015-.197.022-.272.078-.739.078-.466 0-.542-.056-.739-.078-.741-.081-1.442-.062-1.779-.015l-.958-.316c-.093-.033-.191.019-.221.111s.02.19.111.221l.894.295c.066.051.208.148.242.248.039.116.117.861.35 1.055.241.2 1.148.125 1.322.039.389-.194.437-.82.505-1.094.039-.155.272-.155.272-.155s.233 0 .272.155c.069.274.117.902.505 1.096.174.087 1.081.161 1.322-.039.233-.194.311-.941.35-1.057.033-.1.175-.196.241-.247l.895-.295c.092-.03.142-.129.111-.221-.029-.093-.132-.144-.219-.112z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f574-1f3fe-200d-2642-fe0f.svg b/public/emoji/1f574-1f3fe-200d-2642-fe0f.svg
index 43ac9ee41c69398ce0000a8120211e7f168d0d10..88a3061648a8ae3c76f345de029cbfec2e1f8763 100644
--- a/public/emoji/1f574-1f3fe-200d-2642-fe0f.svg
+++ b/public/emoji/1f574-1f3fe-200d-2642-fe0f.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#AF7E57" d="M14 22c0 .553-.448 1-1 1s-1-.447-1-1v-8c0-.552.448-1 1-1s1 .448 1 1v8zm10 0c0 .553-.447 1-1 1-.553 0-1-.447-1-1v-8c0-.552.447-1 1-1 .553 0 1 .448 1 1v8z"/><path fill="#66757F" d="M19 19h-5l1 11h3v-7 7h3l1-11z"/><path fill="#546170" d="M18 23c-.552 0-1 7-1 7 0 .553.448 0 1 0 .553 0 1 .553 1 0 0 0-.447-7-1-7z"/><path fill="#292F33" d="M22 11h-8c-1.104 0-2 .896-2 2v8h2v1h2l2-1 2 1h2v-1h2v-8c0-1.104-.896-2-2-2zm-5.36 18.479c1.105 0 1.346.159 1.359.521.052 1.375-1.786 3.479-3.141 2.979-.86-.317-.422-1.901.141-2.979.23-.441.962-.521 1.641-.521z"/><path fill="#292F33" d="M19.36 29.479c-1.105 0-1.346.159-1.359.521-.051 1.375 1.787 3.479 3.141 2.979.86-.317.422-1.901-.141-2.979-.23-.441-.961-.521-1.641-.521z"/><path fill="#E1E8ED" d="M18 18l-2-7h4z"/><path fill="#55ACEE" d="M17 15l1 3 1-3-1-2.417z"/><path fill="#AF7E57" d="M16.799 10v1.592L18 12l1.201-.408V10zm-1.495-3.181c0 .592-.3 1.071-.67 1.071-.37 0-.67-.48-.67-1.071 0-.592.3-1.071.67-1.071.37-.001.67.479.67 1.071zm6.696 0c0 .592-.3 1.071-.67 1.071-.37 0-.67-.48-.67-1.071 0-.592.3-1.071.67-1.071.37-.001.67.479.67 1.071z"/><path fill="#AF7E57" d="M18 10.906c-1.923 0-3.482-1.851-3.482-4.135S16.077 2.636 18 2.636s3.482 1.851 3.482 4.135-1.559 4.135-3.482 4.135"/><path fill="#915A34" d="M19.305 9.096c-.015-.025-.043-.041-.073-.041h-2.453c-.03 0-.058.015-.073.041-.015.025-.017.057-.003.084.015.029.372.704 1.303.704.931 0 1.288-.676 1.303-.704.013-.026.011-.058-.004-.084zm-1.297-1.16c-.269 0-.478-.048-.646-.122.055.198.21.474.646.474.436 0 .59-.276.646-.474-.168.074-.377.122-.646.122z"/><path fill="#60352A" d="M14.827 6.396c.06-.296.148-.546.246-.771h-.777c.121.874.465 1.095.531.771zm6.346-.125c.239.47.475.152.55-.771h-.942l.392.771z"/><path fill="#66757F" d="M16 11l-1 3 1.25.344-.688 1.125L18 18zm4 0l1 3-1.25.344.688 1.125L18 18z"/><path fill="#55ACEE" d="M17 12l1 1 1-1-1-.417z"/><path fill="#F5F8FA" d="M16.562 10.562L18 11.583l-.938.995L16 11zm2.876 0L18 11.583l.938.995L20 11z"/><ellipse fill="#99AAB5" cx="18" cy="35" rx="6" ry="1"/><path fill="#292F33" d="M23.227 4.833c0 .66-2.337 1.333-5.219 1.333s-5.219-.673-5.219-1.333 1.196-.896 5.219-.896 5.219.236 5.219.896z"/><path fill="#292F33" d="M20.191 4.016c.678-.163 1.224-.45 1.224-.45s-.141-.578-.283-.95c-.442-1.154-1.175-1.729-1.849-1.558-1.019.259-1.496.11-2.712-.034-1.215-.144-1.773 1.682-1.967 2.542 0 0 .322.274.902.403 1.22.273 3.76.269 4.685.047z"/><path fill="#66757F" d="M21.583 4.225c-.012-.069-.027-.145-.043-.22-.048-.225-.126-.439-.126-.439s-1.101.429-3.406.429-3.406-.429-3.406-.429-.078.214-.126.439c-.016.076-.031.152-.043.22-.048.273.081.461.966.649.6.127 1.582.241 2.608.22 1.026.021 2.009-.093 2.608-.22.888-.188 1.017-.376.968-.649z"/><path fill="#292F33" d="M21.492 5.897l-.958.316c-.337-.047-1.038-.066-1.779.015-.197.022-.272.078-.739.078-.466 0-.542-.056-.739-.078-.741-.081-1.442-.062-1.779-.015l-.958-.316c-.093-.033-.191.019-.221.111s.02.19.111.221l.894.295c.066.051.208.148.242.248.039.116.117.861.35 1.055.241.2 1.148.125 1.322.039.389-.194.437-.82.505-1.094.039-.155.272-.155.272-.155s.233 0 .272.155c.069.274.117.902.505 1.096.174.087 1.081.161 1.322-.039.233-.194.311-.941.35-1.057.033-.1.175-.196.241-.247l.895-.295c.092-.03.142-.129.111-.221-.029-.093-.132-.144-.219-.112z"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#AF7E57" d="M14 22c0 .553-.448 1-1 1s-1-.447-1-1v-8c0-.552.448-1 1-1s1 .448 1 1v8zm10 0c0 .553-.447 1-1 1-.553 0-1-.447-1-1v-8c0-.552.447-1 1-1 .553 0 1 .448 1 1v8z"/><path fill="#66757F" d="M19 19h-5l1 11h3v-7 7h3l1-11z"/><path fill="#546170" d="M18 23c-.552 0-1 7-1 7 0 .553.448 0 1 0 .553 0 1 .553 1 0 0 0-.447-7-1-7z"/><path fill="#292F33" d="M22 11h-8c-1.104 0-2 .896-2 2v8h2v1h2l2-1 2 1h2v-1h2v-8c0-1.104-.896-2-2-2zm-5.36 18.479c1.105 0 1.346.159 1.359.521.052 1.375-1.786 3.479-3.141 2.979-.86-.317-.422-1.901.141-2.979.23-.441.962-.521 1.641-.521z"/><path fill="#292F33" d="M19.36 29.479c-1.105 0-1.346.159-1.359.521-.051 1.375 1.787 3.479 3.141 2.979.86-.317.422-1.901-.141-2.979-.23-.441-.961-.521-1.641-.521z"/><path fill="#AF7E57" d="M16.799 10h2.402v1.592h-2.402zm-1.495-3.181c0 .592-.3 1.071-.67 1.071-.37 0-.67-.48-.67-1.071 0-.592.3-1.071.67-1.071.37-.001.67.479.67 1.071zm6.696 0c0 .592-.3 1.071-.67 1.071-.37 0-.67-.48-.67-1.071 0-.592.3-1.071.67-1.071.37-.001.67.479.67 1.071z"/><path fill="#AF7E57" d="M18 10.906c-1.923 0-3.482-1.851-3.482-4.135S16.077 2.636 18 2.636s3.482 1.851 3.482 4.135-1.559 4.135-3.482 4.135"/><path fill="#915A34" d="M19.305 9.096c-.015-.025-.043-.041-.073-.041h-2.453c-.03 0-.058.015-.073.041-.015.025-.017.057-.003.084.015.029.372.704 1.303.704.931 0 1.288-.676 1.303-.704.013-.026.011-.058-.004-.084zm-1.297-1.16c-.269 0-.478-.048-.646-.122.055.198.21.474.646.474.436 0 .59-.276.646-.474-.168.074-.377.122-.646.122z"/><path fill="#60352A" d="M14.827 6.396c.06-.296.148-.546.246-.771h-.777c.121.874.465 1.095.531.771zm6.346-.125c.239.47.475.152.55-.771h-.942l.392.771z"/><path fill="#546170" d="M19.8 13.2l1.276-1.2-.49-1H19.8z"/><path fill="#66757F" d="M17.997 18l3.099-5.045-1.271-1.361z"/><path fill="#546170" d="M16.2 13.2L14.924 12l.49-1h.786z"/><path fill="#66757F" d="M18 18l-3.099-5.045 1.271-1.361z"/><path fill="#E1E8ED" d="M18 18l-2-7 2 1 2-1z"/><path fill="#55ACEE" d="M19 12l-1-.417L17 12l.878.878-.793 1.918L18 18l.915-3.204-.793-1.918z"/><path fill="#F5F8FA" d="M16.562 10.562L18 11.583l-.938.995L16 11zm2.876 0L18 11.583l.938.995L20 11z"/><ellipse fill="#99AAB5" cx="18" cy="35" rx="6" ry="1"/><path fill="#292F33" d="M20.324 3.977c.612-.166 1.091-.411 1.091-.411s-.141-.578-.283-.95c-.442-1.154-1.175-1.729-1.849-1.558-1.019.259-1.496.11-2.712-.034-1.215-.144-1.773 1.682-1.968 2.542 0 0 .322.274.902.403.022.005.05.008.073.013-2.094.094-2.787.351-2.787.852 0 .66 2.336 1.333 5.219 1.333 2.882 0 5.219-.673 5.219-1.333-.002-.511-.723-.767-2.905-.857z"/><path fill="#66757F" d="M21.583 4.225c-.012-.069-.027-.145-.043-.22-.048-.225-.126-.439-.126-.439s-1.101.429-3.406.429-3.406-.429-3.406-.429-.078.214-.126.439c-.016.076-.031.152-.043.22-.048.273.081.461.966.649.6.127 1.582.241 2.608.22 1.026.021 2.009-.093 2.608-.22.888-.188 1.017-.376.968-.649z"/><path fill="#292F33" d="M21.492 5.897l-.958.316c-.337-.047-1.038-.066-1.779.015-.197.022-.272.078-.739.078-.466 0-.542-.056-.739-.078-.741-.081-1.442-.062-1.779-.015l-.958-.316c-.093-.033-.191.019-.221.111s.02.19.111.221l.894.295c.066.051.208.148.242.248.039.116.117.861.35 1.055.241.2 1.148.125 1.322.039.389-.194.437-.82.505-1.094.039-.155.272-.155.272-.155s.233 0 .272.155c.069.274.117.902.505 1.096.174.087 1.081.161 1.322-.039.233-.194.311-.941.35-1.057.033-.1.175-.196.241-.247l.895-.295c.092-.03.142-.129.111-.221-.029-.093-.132-.144-.219-.112z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f574-1f3fe.svg b/public/emoji/1f574-1f3fe.svg
index 43ac9ee41c69398ce0000a8120211e7f168d0d10..88a3061648a8ae3c76f345de029cbfec2e1f8763 100644
--- a/public/emoji/1f574-1f3fe.svg
+++ b/public/emoji/1f574-1f3fe.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#AF7E57" d="M14 22c0 .553-.448 1-1 1s-1-.447-1-1v-8c0-.552.448-1 1-1s1 .448 1 1v8zm10 0c0 .553-.447 1-1 1-.553 0-1-.447-1-1v-8c0-.552.447-1 1-1 .553 0 1 .448 1 1v8z"/><path fill="#66757F" d="M19 19h-5l1 11h3v-7 7h3l1-11z"/><path fill="#546170" d="M18 23c-.552 0-1 7-1 7 0 .553.448 0 1 0 .553 0 1 .553 1 0 0 0-.447-7-1-7z"/><path fill="#292F33" d="M22 11h-8c-1.104 0-2 .896-2 2v8h2v1h2l2-1 2 1h2v-1h2v-8c0-1.104-.896-2-2-2zm-5.36 18.479c1.105 0 1.346.159 1.359.521.052 1.375-1.786 3.479-3.141 2.979-.86-.317-.422-1.901.141-2.979.23-.441.962-.521 1.641-.521z"/><path fill="#292F33" d="M19.36 29.479c-1.105 0-1.346.159-1.359.521-.051 1.375 1.787 3.479 3.141 2.979.86-.317.422-1.901-.141-2.979-.23-.441-.961-.521-1.641-.521z"/><path fill="#E1E8ED" d="M18 18l-2-7h4z"/><path fill="#55ACEE" d="M17 15l1 3 1-3-1-2.417z"/><path fill="#AF7E57" d="M16.799 10v1.592L18 12l1.201-.408V10zm-1.495-3.181c0 .592-.3 1.071-.67 1.071-.37 0-.67-.48-.67-1.071 0-.592.3-1.071.67-1.071.37-.001.67.479.67 1.071zm6.696 0c0 .592-.3 1.071-.67 1.071-.37 0-.67-.48-.67-1.071 0-.592.3-1.071.67-1.071.37-.001.67.479.67 1.071z"/><path fill="#AF7E57" d="M18 10.906c-1.923 0-3.482-1.851-3.482-4.135S16.077 2.636 18 2.636s3.482 1.851 3.482 4.135-1.559 4.135-3.482 4.135"/><path fill="#915A34" d="M19.305 9.096c-.015-.025-.043-.041-.073-.041h-2.453c-.03 0-.058.015-.073.041-.015.025-.017.057-.003.084.015.029.372.704 1.303.704.931 0 1.288-.676 1.303-.704.013-.026.011-.058-.004-.084zm-1.297-1.16c-.269 0-.478-.048-.646-.122.055.198.21.474.646.474.436 0 .59-.276.646-.474-.168.074-.377.122-.646.122z"/><path fill="#60352A" d="M14.827 6.396c.06-.296.148-.546.246-.771h-.777c.121.874.465 1.095.531.771zm6.346-.125c.239.47.475.152.55-.771h-.942l.392.771z"/><path fill="#66757F" d="M16 11l-1 3 1.25.344-.688 1.125L18 18zm4 0l1 3-1.25.344.688 1.125L18 18z"/><path fill="#55ACEE" d="M17 12l1 1 1-1-1-.417z"/><path fill="#F5F8FA" d="M16.562 10.562L18 11.583l-.938.995L16 11zm2.876 0L18 11.583l.938.995L20 11z"/><ellipse fill="#99AAB5" cx="18" cy="35" rx="6" ry="1"/><path fill="#292F33" d="M23.227 4.833c0 .66-2.337 1.333-5.219 1.333s-5.219-.673-5.219-1.333 1.196-.896 5.219-.896 5.219.236 5.219.896z"/><path fill="#292F33" d="M20.191 4.016c.678-.163 1.224-.45 1.224-.45s-.141-.578-.283-.95c-.442-1.154-1.175-1.729-1.849-1.558-1.019.259-1.496.11-2.712-.034-1.215-.144-1.773 1.682-1.967 2.542 0 0 .322.274.902.403 1.22.273 3.76.269 4.685.047z"/><path fill="#66757F" d="M21.583 4.225c-.012-.069-.027-.145-.043-.22-.048-.225-.126-.439-.126-.439s-1.101.429-3.406.429-3.406-.429-3.406-.429-.078.214-.126.439c-.016.076-.031.152-.043.22-.048.273.081.461.966.649.6.127 1.582.241 2.608.22 1.026.021 2.009-.093 2.608-.22.888-.188 1.017-.376.968-.649z"/><path fill="#292F33" d="M21.492 5.897l-.958.316c-.337-.047-1.038-.066-1.779.015-.197.022-.272.078-.739.078-.466 0-.542-.056-.739-.078-.741-.081-1.442-.062-1.779-.015l-.958-.316c-.093-.033-.191.019-.221.111s.02.19.111.221l.894.295c.066.051.208.148.242.248.039.116.117.861.35 1.055.241.2 1.148.125 1.322.039.389-.194.437-.82.505-1.094.039-.155.272-.155.272-.155s.233 0 .272.155c.069.274.117.902.505 1.096.174.087 1.081.161 1.322-.039.233-.194.311-.941.35-1.057.033-.1.175-.196.241-.247l.895-.295c.092-.03.142-.129.111-.221-.029-.093-.132-.144-.219-.112z"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#AF7E57" d="M14 22c0 .553-.448 1-1 1s-1-.447-1-1v-8c0-.552.448-1 1-1s1 .448 1 1v8zm10 0c0 .553-.447 1-1 1-.553 0-1-.447-1-1v-8c0-.552.447-1 1-1 .553 0 1 .448 1 1v8z"/><path fill="#66757F" d="M19 19h-5l1 11h3v-7 7h3l1-11z"/><path fill="#546170" d="M18 23c-.552 0-1 7-1 7 0 .553.448 0 1 0 .553 0 1 .553 1 0 0 0-.447-7-1-7z"/><path fill="#292F33" d="M22 11h-8c-1.104 0-2 .896-2 2v8h2v1h2l2-1 2 1h2v-1h2v-8c0-1.104-.896-2-2-2zm-5.36 18.479c1.105 0 1.346.159 1.359.521.052 1.375-1.786 3.479-3.141 2.979-.86-.317-.422-1.901.141-2.979.23-.441.962-.521 1.641-.521z"/><path fill="#292F33" d="M19.36 29.479c-1.105 0-1.346.159-1.359.521-.051 1.375 1.787 3.479 3.141 2.979.86-.317.422-1.901-.141-2.979-.23-.441-.961-.521-1.641-.521z"/><path fill="#AF7E57" d="M16.799 10h2.402v1.592h-2.402zm-1.495-3.181c0 .592-.3 1.071-.67 1.071-.37 0-.67-.48-.67-1.071 0-.592.3-1.071.67-1.071.37-.001.67.479.67 1.071zm6.696 0c0 .592-.3 1.071-.67 1.071-.37 0-.67-.48-.67-1.071 0-.592.3-1.071.67-1.071.37-.001.67.479.67 1.071z"/><path fill="#AF7E57" d="M18 10.906c-1.923 0-3.482-1.851-3.482-4.135S16.077 2.636 18 2.636s3.482 1.851 3.482 4.135-1.559 4.135-3.482 4.135"/><path fill="#915A34" d="M19.305 9.096c-.015-.025-.043-.041-.073-.041h-2.453c-.03 0-.058.015-.073.041-.015.025-.017.057-.003.084.015.029.372.704 1.303.704.931 0 1.288-.676 1.303-.704.013-.026.011-.058-.004-.084zm-1.297-1.16c-.269 0-.478-.048-.646-.122.055.198.21.474.646.474.436 0 .59-.276.646-.474-.168.074-.377.122-.646.122z"/><path fill="#60352A" d="M14.827 6.396c.06-.296.148-.546.246-.771h-.777c.121.874.465 1.095.531.771zm6.346-.125c.239.47.475.152.55-.771h-.942l.392.771z"/><path fill="#546170" d="M19.8 13.2l1.276-1.2-.49-1H19.8z"/><path fill="#66757F" d="M17.997 18l3.099-5.045-1.271-1.361z"/><path fill="#546170" d="M16.2 13.2L14.924 12l.49-1h.786z"/><path fill="#66757F" d="M18 18l-3.099-5.045 1.271-1.361z"/><path fill="#E1E8ED" d="M18 18l-2-7 2 1 2-1z"/><path fill="#55ACEE" d="M19 12l-1-.417L17 12l.878.878-.793 1.918L18 18l.915-3.204-.793-1.918z"/><path fill="#F5F8FA" d="M16.562 10.562L18 11.583l-.938.995L16 11zm2.876 0L18 11.583l.938.995L20 11z"/><ellipse fill="#99AAB5" cx="18" cy="35" rx="6" ry="1"/><path fill="#292F33" d="M20.324 3.977c.612-.166 1.091-.411 1.091-.411s-.141-.578-.283-.95c-.442-1.154-1.175-1.729-1.849-1.558-1.019.259-1.496.11-2.712-.034-1.215-.144-1.773 1.682-1.968 2.542 0 0 .322.274.902.403.022.005.05.008.073.013-2.094.094-2.787.351-2.787.852 0 .66 2.336 1.333 5.219 1.333 2.882 0 5.219-.673 5.219-1.333-.002-.511-.723-.767-2.905-.857z"/><path fill="#66757F" d="M21.583 4.225c-.012-.069-.027-.145-.043-.22-.048-.225-.126-.439-.126-.439s-1.101.429-3.406.429-3.406-.429-3.406-.429-.078.214-.126.439c-.016.076-.031.152-.043.22-.048.273.081.461.966.649.6.127 1.582.241 2.608.22 1.026.021 2.009-.093 2.608-.22.888-.188 1.017-.376.968-.649z"/><path fill="#292F33" d="M21.492 5.897l-.958.316c-.337-.047-1.038-.066-1.779.015-.197.022-.272.078-.739.078-.466 0-.542-.056-.739-.078-.741-.081-1.442-.062-1.779-.015l-.958-.316c-.093-.033-.191.019-.221.111s.02.19.111.221l.894.295c.066.051.208.148.242.248.039.116.117.861.35 1.055.241.2 1.148.125 1.322.039.389-.194.437-.82.505-1.094.039-.155.272-.155.272-.155s.233 0 .272.155c.069.274.117.902.505 1.096.174.087 1.081.161 1.322-.039.233-.194.311-.941.35-1.057.033-.1.175-.196.241-.247l.895-.295c.092-.03.142-.129.111-.221-.029-.093-.132-.144-.219-.112z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f574-1f3ff-200d-2642-fe0f.svg b/public/emoji/1f574-1f3ff-200d-2642-fe0f.svg
index 28fd4074eec211706abb156b2677d8c2acbd4b04..57aec606d3426a16474d4887730f08c52a2fd5ea 100644
--- a/public/emoji/1f574-1f3ff-200d-2642-fe0f.svg
+++ b/public/emoji/1f574-1f3ff-200d-2642-fe0f.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#7C533E" d="M14 22c0 .553-.448 1-1 1s-1-.447-1-1v-8c0-.552.448-1 1-1s1 .448 1 1v8zm10 0c0 .553-.447 1-1 1-.553 0-1-.447-1-1v-8c0-.552.447-1 1-1 .553 0 1 .448 1 1v8z"/><path fill="#66757F" d="M19 19h-5l1 11h3v-7 7h3l1-11z"/><path fill="#546170" d="M18 23c-.552 0-1 7-1 7 0 .553.448 0 1 0 .553 0 1 .553 1 0 0 0-.447-7-1-7z"/><path fill="#292F33" d="M22 11h-8c-1.104 0-2 .896-2 2v8h2v1h2l2-1 2 1h2v-1h2v-8c0-1.104-.896-2-2-2zm-5.36 18.479c1.105 0 1.346.159 1.359.521.052 1.375-1.786 3.479-3.141 2.979-.86-.317-.422-1.901.141-2.979.23-.441.962-.521 1.641-.521z"/><path fill="#292F33" d="M19.36 29.479c-1.105 0-1.346.159-1.359.521-.051 1.375 1.787 3.479 3.141 2.979.86-.317.422-1.901-.141-2.979-.23-.441-.961-.521-1.641-.521z"/><path fill="#E1E8ED" d="M18 18l-2-7h4z"/><path fill="#55ACEE" d="M17 15l1 3 1-3-1-2.417z"/><path fill="#7C533E" d="M16.799 10v1.592L18 12l1.201-.408V10zm-1.495-3.181c0 .592-.3 1.071-.67 1.071-.37 0-.67-.48-.67-1.071 0-.592.3-1.071.67-1.071.37-.001.67.479.67 1.071zm6.696 0c0 .592-.3 1.071-.67 1.071-.37 0-.67-.48-.67-1.071 0-.592.3-1.071.67-1.071.37-.001.67.479.67 1.071z"/><path fill="#7C533E" d="M18 10.906c-1.923 0-3.482-1.851-3.482-4.135S16.077 2.636 18 2.636s3.482 1.851 3.482 4.135-1.559 4.135-3.482 4.135"/><path fill="#3D2E24" d="M19.305 9.096c-.015-.025-.043-.041-.073-.041h-2.453c-.03 0-.058.015-.073.041-.015.025-.017.057-.003.084.015.029.372.704 1.303.704.931 0 1.288-.676 1.303-.704.013-.026.011-.058-.004-.084zm-1.297-1.16c-.269 0-.478-.048-.646-.122.055.198.21.474.646.474.436 0 .59-.276.646-.474-.168.074-.377.122-.646.122z"/><path fill="#0B0200" d="M14.827 6.396c.06-.296.148-.546.246-.771h-.777c.121.874.465 1.095.531.771zm6.346-.125c.239.47.475.152.55-.771h-.942l.392.771z"/><path fill="#66757F" d="M16 11l-1 3 1.25.344-.688 1.125L18 18zm4 0l1 3-1.25.344.688 1.125L18 18z"/><path fill="#55ACEE" d="M17 12l1 1 1-1-1-.417z"/><path fill="#F5F8FA" d="M16.562 10.562L18 11.583l-.938.995L16 11zm2.876 0L18 11.583l.938.995L20 11z"/><ellipse fill="#99AAB5" cx="18" cy="35" rx="6" ry="1"/><path fill="#292F33" d="M23.227 4.833c0 .66-2.337 1.333-5.219 1.333s-5.219-.673-5.219-1.333 1.196-.896 5.219-.896 5.219.236 5.219.896z"/><path fill="#292F33" d="M20.191 4.016c.678-.163 1.224-.45 1.224-.45s-.141-.578-.283-.95c-.442-1.154-1.175-1.729-1.849-1.558-1.019.259-1.496.11-2.712-.034-1.215-.144-1.773 1.682-1.967 2.542 0 0 .322.274.902.403 1.22.273 3.76.269 4.685.047z"/><path fill="#66757F" d="M21.583 4.225c-.012-.069-.027-.145-.043-.22-.048-.225-.126-.439-.126-.439s-1.101.429-3.406.429-3.406-.429-3.406-.429-.078.214-.126.439c-.016.076-.031.152-.043.22-.048.273.081.461.966.649.6.127 1.582.241 2.608.22 1.026.021 2.009-.093 2.608-.22.888-.188 1.017-.376.968-.649z"/><path fill="#292F33" d="M21.492 5.897l-.958.316c-.337-.047-1.038-.066-1.779.015-.197.022-.272.078-.739.078-.466 0-.542-.056-.739-.078-.741-.081-1.442-.062-1.779-.015l-.958-.316c-.093-.033-.191.019-.221.111s.02.19.111.221l.894.295c.066.051.208.148.242.248.039.116.117.861.35 1.055.241.2 1.148.125 1.322.039.389-.194.437-.82.505-1.094.039-.155.272-.155.272-.155s.233 0 .272.155c.069.274.117.902.505 1.096.174.087 1.081.161 1.322-.039.233-.194.311-.941.35-1.057.033-.1.175-.196.241-.247l.895-.295c.092-.03.142-.129.111-.221-.029-.093-.132-.144-.219-.112z"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#7C533E" d="M14 22c0 .553-.448 1-1 1s-1-.447-1-1v-8c0-.552.448-1 1-1s1 .448 1 1v8zm10 0c0 .553-.447 1-1 1-.553 0-1-.447-1-1v-8c0-.552.447-1 1-1 .553 0 1 .448 1 1v8z"/><path fill="#66757F" d="M19 19h-5l1 11h3v-7 7h3l1-11z"/><path fill="#546170" d="M18 23c-.552 0-1 7-1 7 0 .553.448 0 1 0 .553 0 1 .553 1 0 0 0-.447-7-1-7z"/><path fill="#292F33" d="M22 11h-8c-1.104 0-2 .896-2 2v8h2v1h2l2-1 2 1h2v-1h2v-8c0-1.104-.896-2-2-2zm-5.36 18.479c1.105 0 1.346.159 1.359.521.052 1.375-1.786 3.479-3.141 2.979-.86-.317-.422-1.901.141-2.979.23-.441.962-.521 1.641-.521z"/><path fill="#292F33" d="M19.36 29.479c-1.105 0-1.346.159-1.359.521-.051 1.375 1.787 3.479 3.141 2.979.86-.317.422-1.901-.141-2.979-.23-.441-.961-.521-1.641-.521z"/><path fill="#7C533E" d="M16.799 10h2.402v1.592h-2.402zm-1.495-3.181c0 .592-.3 1.071-.67 1.071-.37 0-.67-.48-.67-1.071 0-.592.3-1.071.67-1.071.37-.001.67.479.67 1.071zm6.696 0c0 .592-.3 1.071-.67 1.071-.37 0-.67-.48-.67-1.071 0-.592.3-1.071.67-1.071.37-.001.67.479.67 1.071z"/><path fill="#7C533E" d="M18 10.906c-1.923 0-3.482-1.851-3.482-4.135S16.077 2.636 18 2.636s3.482 1.851 3.482 4.135-1.559 4.135-3.482 4.135"/><path fill="#3D2E24" d="M19.305 9.096c-.015-.025-.043-.041-.073-.041h-2.453c-.03 0-.058.015-.073.041-.015.025-.017.057-.003.084.015.029.372.704 1.303.704.931 0 1.288-.676 1.303-.704.013-.026.011-.058-.004-.084zm-1.297-1.16c-.269 0-.478-.048-.646-.122.055.198.21.474.646.474.436 0 .59-.276.646-.474-.168.074-.377.122-.646.122z"/><path fill="#0B0200" d="M14.827 6.396c.06-.296.148-.546.246-.771h-.777c.121.874.465 1.095.531.771zm6.346-.125c.239.47.475.152.55-.771h-.942l.392.771z"/><path fill="#546170" d="M19.8 13.2l1.276-1.2-.49-1H19.8z"/><path fill="#66757F" d="M17.997 18l3.099-5.045-1.271-1.361z"/><path fill="#546170" d="M16.2 13.2L14.924 12l.49-1h.786z"/><path fill="#66757F" d="M18 18l-3.099-5.045 1.271-1.361z"/><path fill="#E1E8ED" d="M18 18l-2-7 2 1 2-1z"/><path fill="#55ACEE" d="M19 12l-1-.417L17 12l.878.878-.793 1.918L18 18l.915-3.204-.793-1.918z"/><path fill="#F5F8FA" d="M16.562 10.562L18 11.583l-.938.995L16 11zm2.876 0L18 11.583l.938.995L20 11z"/><ellipse fill="#99AAB5" cx="18" cy="35" rx="6" ry="1"/><path fill="#292F33" d="M20.324 3.977c.612-.166 1.091-.411 1.091-.411s-.141-.578-.283-.95c-.442-1.154-1.175-1.729-1.849-1.558-1.019.259-1.496.11-2.712-.034-1.215-.144-1.773 1.682-1.968 2.542 0 0 .322.274.902.403.022.005.05.008.073.013-2.094.094-2.787.351-2.787.852 0 .66 2.336 1.333 5.219 1.333 2.882 0 5.219-.673 5.219-1.333-.002-.511-.723-.767-2.905-.857z"/><path fill="#66757F" d="M21.583 4.225c-.012-.069-.027-.145-.043-.22-.048-.225-.126-.439-.126-.439s-1.101.429-3.406.429-3.406-.429-3.406-.429-.078.214-.126.439c-.016.076-.031.152-.043.22-.048.273.081.461.966.649.6.127 1.582.241 2.608.22 1.026.021 2.009-.093 2.608-.22.888-.188 1.017-.376.968-.649z"/><path fill="#292F33" d="M21.492 5.897l-.958.316c-.337-.047-1.038-.066-1.779.015-.197.022-.272.078-.739.078-.466 0-.542-.056-.739-.078-.741-.081-1.442-.062-1.779-.015l-.958-.316c-.093-.033-.191.019-.221.111s.02.19.111.221l.894.295c.066.051.208.148.242.248.039.116.117.861.35 1.055.241.2 1.148.125 1.322.039.389-.194.437-.82.505-1.094.039-.155.272-.155.272-.155s.233 0 .272.155c.069.274.117.902.505 1.096.174.087 1.081.161 1.322-.039.233-.194.311-.941.35-1.057.033-.1.175-.196.241-.247l.895-.295c.092-.03.142-.129.111-.221-.029-.093-.132-.144-.219-.112z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f574-1f3ff.svg b/public/emoji/1f574-1f3ff.svg
index 28fd4074eec211706abb156b2677d8c2acbd4b04..57aec606d3426a16474d4887730f08c52a2fd5ea 100644
--- a/public/emoji/1f574-1f3ff.svg
+++ b/public/emoji/1f574-1f3ff.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#7C533E" d="M14 22c0 .553-.448 1-1 1s-1-.447-1-1v-8c0-.552.448-1 1-1s1 .448 1 1v8zm10 0c0 .553-.447 1-1 1-.553 0-1-.447-1-1v-8c0-.552.447-1 1-1 .553 0 1 .448 1 1v8z"/><path fill="#66757F" d="M19 19h-5l1 11h3v-7 7h3l1-11z"/><path fill="#546170" d="M18 23c-.552 0-1 7-1 7 0 .553.448 0 1 0 .553 0 1 .553 1 0 0 0-.447-7-1-7z"/><path fill="#292F33" d="M22 11h-8c-1.104 0-2 .896-2 2v8h2v1h2l2-1 2 1h2v-1h2v-8c0-1.104-.896-2-2-2zm-5.36 18.479c1.105 0 1.346.159 1.359.521.052 1.375-1.786 3.479-3.141 2.979-.86-.317-.422-1.901.141-2.979.23-.441.962-.521 1.641-.521z"/><path fill="#292F33" d="M19.36 29.479c-1.105 0-1.346.159-1.359.521-.051 1.375 1.787 3.479 3.141 2.979.86-.317.422-1.901-.141-2.979-.23-.441-.961-.521-1.641-.521z"/><path fill="#E1E8ED" d="M18 18l-2-7h4z"/><path fill="#55ACEE" d="M17 15l1 3 1-3-1-2.417z"/><path fill="#7C533E" d="M16.799 10v1.592L18 12l1.201-.408V10zm-1.495-3.181c0 .592-.3 1.071-.67 1.071-.37 0-.67-.48-.67-1.071 0-.592.3-1.071.67-1.071.37-.001.67.479.67 1.071zm6.696 0c0 .592-.3 1.071-.67 1.071-.37 0-.67-.48-.67-1.071 0-.592.3-1.071.67-1.071.37-.001.67.479.67 1.071z"/><path fill="#7C533E" d="M18 10.906c-1.923 0-3.482-1.851-3.482-4.135S16.077 2.636 18 2.636s3.482 1.851 3.482 4.135-1.559 4.135-3.482 4.135"/><path fill="#3D2E24" d="M19.305 9.096c-.015-.025-.043-.041-.073-.041h-2.453c-.03 0-.058.015-.073.041-.015.025-.017.057-.003.084.015.029.372.704 1.303.704.931 0 1.288-.676 1.303-.704.013-.026.011-.058-.004-.084zm-1.297-1.16c-.269 0-.478-.048-.646-.122.055.198.21.474.646.474.436 0 .59-.276.646-.474-.168.074-.377.122-.646.122z"/><path fill="#0B0200" d="M14.827 6.396c.06-.296.148-.546.246-.771h-.777c.121.874.465 1.095.531.771zm6.346-.125c.239.47.475.152.55-.771h-.942l.392.771z"/><path fill="#66757F" d="M16 11l-1 3 1.25.344-.688 1.125L18 18zm4 0l1 3-1.25.344.688 1.125L18 18z"/><path fill="#55ACEE" d="M17 12l1 1 1-1-1-.417z"/><path fill="#F5F8FA" d="M16.562 10.562L18 11.583l-.938.995L16 11zm2.876 0L18 11.583l.938.995L20 11z"/><ellipse fill="#99AAB5" cx="18" cy="35" rx="6" ry="1"/><path fill="#292F33" d="M23.227 4.833c0 .66-2.337 1.333-5.219 1.333s-5.219-.673-5.219-1.333 1.196-.896 5.219-.896 5.219.236 5.219.896z"/><path fill="#292F33" d="M20.191 4.016c.678-.163 1.224-.45 1.224-.45s-.141-.578-.283-.95c-.442-1.154-1.175-1.729-1.849-1.558-1.019.259-1.496.11-2.712-.034-1.215-.144-1.773 1.682-1.967 2.542 0 0 .322.274.902.403 1.22.273 3.76.269 4.685.047z"/><path fill="#66757F" d="M21.583 4.225c-.012-.069-.027-.145-.043-.22-.048-.225-.126-.439-.126-.439s-1.101.429-3.406.429-3.406-.429-3.406-.429-.078.214-.126.439c-.016.076-.031.152-.043.22-.048.273.081.461.966.649.6.127 1.582.241 2.608.22 1.026.021 2.009-.093 2.608-.22.888-.188 1.017-.376.968-.649z"/><path fill="#292F33" d="M21.492 5.897l-.958.316c-.337-.047-1.038-.066-1.779.015-.197.022-.272.078-.739.078-.466 0-.542-.056-.739-.078-.741-.081-1.442-.062-1.779-.015l-.958-.316c-.093-.033-.191.019-.221.111s.02.19.111.221l.894.295c.066.051.208.148.242.248.039.116.117.861.35 1.055.241.2 1.148.125 1.322.039.389-.194.437-.82.505-1.094.039-.155.272-.155.272-.155s.233 0 .272.155c.069.274.117.902.505 1.096.174.087 1.081.161 1.322-.039.233-.194.311-.941.35-1.057.033-.1.175-.196.241-.247l.895-.295c.092-.03.142-.129.111-.221-.029-.093-.132-.144-.219-.112z"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#7C533E" d="M14 22c0 .553-.448 1-1 1s-1-.447-1-1v-8c0-.552.448-1 1-1s1 .448 1 1v8zm10 0c0 .553-.447 1-1 1-.553 0-1-.447-1-1v-8c0-.552.447-1 1-1 .553 0 1 .448 1 1v8z"/><path fill="#66757F" d="M19 19h-5l1 11h3v-7 7h3l1-11z"/><path fill="#546170" d="M18 23c-.552 0-1 7-1 7 0 .553.448 0 1 0 .553 0 1 .553 1 0 0 0-.447-7-1-7z"/><path fill="#292F33" d="M22 11h-8c-1.104 0-2 .896-2 2v8h2v1h2l2-1 2 1h2v-1h2v-8c0-1.104-.896-2-2-2zm-5.36 18.479c1.105 0 1.346.159 1.359.521.052 1.375-1.786 3.479-3.141 2.979-.86-.317-.422-1.901.141-2.979.23-.441.962-.521 1.641-.521z"/><path fill="#292F33" d="M19.36 29.479c-1.105 0-1.346.159-1.359.521-.051 1.375 1.787 3.479 3.141 2.979.86-.317.422-1.901-.141-2.979-.23-.441-.961-.521-1.641-.521z"/><path fill="#7C533E" d="M16.799 10h2.402v1.592h-2.402zm-1.495-3.181c0 .592-.3 1.071-.67 1.071-.37 0-.67-.48-.67-1.071 0-.592.3-1.071.67-1.071.37-.001.67.479.67 1.071zm6.696 0c0 .592-.3 1.071-.67 1.071-.37 0-.67-.48-.67-1.071 0-.592.3-1.071.67-1.071.37-.001.67.479.67 1.071z"/><path fill="#7C533E" d="M18 10.906c-1.923 0-3.482-1.851-3.482-4.135S16.077 2.636 18 2.636s3.482 1.851 3.482 4.135-1.559 4.135-3.482 4.135"/><path fill="#3D2E24" d="M19.305 9.096c-.015-.025-.043-.041-.073-.041h-2.453c-.03 0-.058.015-.073.041-.015.025-.017.057-.003.084.015.029.372.704 1.303.704.931 0 1.288-.676 1.303-.704.013-.026.011-.058-.004-.084zm-1.297-1.16c-.269 0-.478-.048-.646-.122.055.198.21.474.646.474.436 0 .59-.276.646-.474-.168.074-.377.122-.646.122z"/><path fill="#0B0200" d="M14.827 6.396c.06-.296.148-.546.246-.771h-.777c.121.874.465 1.095.531.771zm6.346-.125c.239.47.475.152.55-.771h-.942l.392.771z"/><path fill="#546170" d="M19.8 13.2l1.276-1.2-.49-1H19.8z"/><path fill="#66757F" d="M17.997 18l3.099-5.045-1.271-1.361z"/><path fill="#546170" d="M16.2 13.2L14.924 12l.49-1h.786z"/><path fill="#66757F" d="M18 18l-3.099-5.045 1.271-1.361z"/><path fill="#E1E8ED" d="M18 18l-2-7 2 1 2-1z"/><path fill="#55ACEE" d="M19 12l-1-.417L17 12l.878.878-.793 1.918L18 18l.915-3.204-.793-1.918z"/><path fill="#F5F8FA" d="M16.562 10.562L18 11.583l-.938.995L16 11zm2.876 0L18 11.583l.938.995L20 11z"/><ellipse fill="#99AAB5" cx="18" cy="35" rx="6" ry="1"/><path fill="#292F33" d="M20.324 3.977c.612-.166 1.091-.411 1.091-.411s-.141-.578-.283-.95c-.442-1.154-1.175-1.729-1.849-1.558-1.019.259-1.496.11-2.712-.034-1.215-.144-1.773 1.682-1.968 2.542 0 0 .322.274.902.403.022.005.05.008.073.013-2.094.094-2.787.351-2.787.852 0 .66 2.336 1.333 5.219 1.333 2.882 0 5.219-.673 5.219-1.333-.002-.511-.723-.767-2.905-.857z"/><path fill="#66757F" d="M21.583 4.225c-.012-.069-.027-.145-.043-.22-.048-.225-.126-.439-.126-.439s-1.101.429-3.406.429-3.406-.429-3.406-.429-.078.214-.126.439c-.016.076-.031.152-.043.22-.048.273.081.461.966.649.6.127 1.582.241 2.608.22 1.026.021 2.009-.093 2.608-.22.888-.188 1.017-.376.968-.649z"/><path fill="#292F33" d="M21.492 5.897l-.958.316c-.337-.047-1.038-.066-1.779.015-.197.022-.272.078-.739.078-.466 0-.542-.056-.739-.078-.741-.081-1.442-.062-1.779-.015l-.958-.316c-.093-.033-.191.019-.221.111s.02.19.111.221l.894.295c.066.051.208.148.242.248.039.116.117.861.35 1.055.241.2 1.148.125 1.322.039.389-.194.437-.82.505-1.094.039-.155.272-.155.272-.155s.233 0 .272.155c.069.274.117.902.505 1.096.174.087 1.081.161 1.322-.039.233-.194.311-.941.35-1.057.033-.1.175-.196.241-.247l.895-.295c.092-.03.142-.129.111-.221-.029-.093-.132-.144-.219-.112z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f574-fe0f-200d-2642-fe0f.svg b/public/emoji/1f574-fe0f-200d-2642-fe0f.svg
index a9bd641c9a3cea1ff9db58c915cbb1a5ef663b2c..a834fd4b99c856db0aabab9030e7efde043461ee 100644
--- a/public/emoji/1f574-fe0f-200d-2642-fe0f.svg
+++ b/public/emoji/1f574-fe0f-200d-2642-fe0f.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#FFDC5D" d="M14 22c0 .553-.448 1-1 1s-1-.447-1-1v-8c0-.552.448-1 1-1s1 .448 1 1v8zm10 0c0 .553-.447 1-1 1-.553 0-1-.447-1-1v-8c0-.552.447-1 1-1 .553 0 1 .448 1 1v8z"/><path fill="#66757F" d="M19 19h-5l1 11h3v-7 7h3l1-11z"/><path fill="#546170" d="M18 23c-.552 0-1 7-1 7 0 .553.448 0 1 0 .553 0 1 .553 1 0 0 0-.447-7-1-7z"/><path fill="#292F33" d="M22 11h-8c-1.104 0-2 .896-2 2v8h2v1h2l2-1 2 1h2v-1h2v-8c0-1.104-.896-2-2-2zm-5.36 18.479c1.105 0 1.346.159 1.359.521.052 1.375-1.786 3.479-3.141 2.979-.86-.317-.422-1.901.141-2.979.23-.441.962-.521 1.641-.521z"/><path fill="#292F33" d="M19.36 29.479c-1.105 0-1.346.159-1.359.521-.051 1.375 1.787 3.479 3.141 2.979.86-.317.422-1.901-.141-2.979-.23-.441-.961-.521-1.641-.521z"/><path fill="#E1E8ED" d="M18 18l-2-7h4z"/><path fill="#55ACEE" d="M17 15l1 3 1-3-1-2.417z"/><path fill="#FFDC5D" d="M16.799 10v1.592L18 12l1.201-.408V10zm-1.495-3.181c0 .592-.3 1.071-.67 1.071-.37 0-.67-.48-.67-1.071 0-.592.3-1.071.67-1.071.37-.001.67.479.67 1.071zm6.696 0c0 .592-.3 1.071-.67 1.071-.37 0-.67-.48-.67-1.071 0-.592.3-1.071.67-1.071.37-.001.67.479.67 1.071z"/><path fill="#FFDC5D" d="M18 10.906c-1.923 0-3.482-1.851-3.482-4.135S16.077 2.636 18 2.636s3.482 1.851 3.482 4.135-1.559 4.135-3.482 4.135"/><path fill="#C1694F" d="M19.305 9.096c-.015-.025-.043-.041-.073-.041h-2.453c-.03 0-.058.015-.073.041-.015.025-.017.057-.003.084.015.029.372.704 1.303.704.931 0 1.288-.676 1.303-.704.013-.026.011-.058-.004-.084zm-1.297-1.16c-.269 0-.478-.048-.646-.122.055.198.21.474.646.474.436 0 .59-.276.646-.474-.168.074-.377.122-.646.122z"/><path fill="#FFAC33" d="M14.827 6.396c.06-.296.148-.546.246-.771h-.777c.121.874.465 1.095.531.771zm6.346-.125c.239.47.475.152.55-.771h-.942l.392.771z"/><path fill="#66757F" d="M16 11l-1 3 1.25.344-.688 1.125L18 18zm4 0l1 3-1.25.344.688 1.125L18 18z"/><path fill="#55ACEE" d="M17 12l1 1 1-1-1-.417z"/><path fill="#F5F8FA" d="M16.562 10.562L18 11.583l-.938.995L16 11zm2.876 0L18 11.583l.938.995L20 11z"/><ellipse fill="#99AAB5" cx="18" cy="35" rx="6" ry="1"/><path fill="#292F33" d="M23.227 4.833c0 .66-2.337 1.333-5.219 1.333s-5.219-.673-5.219-1.333 1.196-.896 5.219-.896 5.219.236 5.219.896z"/><path fill="#292F33" d="M20.191 4.016c.678-.163 1.224-.45 1.224-.45s-.141-.578-.283-.95c-.442-1.154-1.175-1.729-1.849-1.558-1.019.259-1.496.11-2.712-.034-1.215-.144-1.773 1.682-1.967 2.542 0 0 .322.274.902.403 1.22.273 3.76.269 4.685.047z"/><path fill="#66757F" d="M21.583 4.225c-.012-.069-.027-.145-.043-.22-.048-.225-.126-.439-.126-.439s-1.101.429-3.406.429-3.406-.429-3.406-.429-.078.214-.126.439c-.016.076-.031.152-.043.22-.048.273.081.461.966.649.6.127 1.582.241 2.608.22 1.026.021 2.009-.093 2.608-.22.888-.188 1.017-.376.968-.649z"/><path fill="#292F33" d="M21.492 5.897l-.958.316c-.337-.047-1.038-.066-1.779.015-.197.022-.272.078-.739.078-.466 0-.542-.056-.739-.078-.741-.081-1.442-.062-1.779-.015l-.958-.316c-.093-.033-.191.019-.221.111s.02.19.111.221l.894.295c.066.051.208.148.242.248.039.116.117.861.35 1.055.241.2 1.148.125 1.322.039.389-.194.437-.82.505-1.094.039-.155.272-.155.272-.155s.233 0 .272.155c.069.274.117.902.505 1.096.174.087 1.081.161 1.322-.039.233-.194.311-.941.35-1.057.033-.1.175-.196.241-.247l.895-.295c.092-.03.142-.129.111-.221-.029-.093-.132-.144-.219-.112z"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#FFDC5D" d="M14 22c0 .553-.448 1-1 1s-1-.447-1-1v-8c0-.552.448-1 1-1s1 .448 1 1v8zm10 0c0 .553-.447 1-1 1-.553 0-1-.447-1-1v-8c0-.552.447-1 1-1 .553 0 1 .448 1 1v8z"/><path fill="#66757F" d="M19 19h-5l1 11h3v-7 7h3l1-11z"/><path fill="#546170" d="M18 23c-.552 0-1 7-1 7 0 .553.448 0 1 0 .553 0 1 .553 1 0 0 0-.447-7-1-7z"/><path fill="#292F33" d="M22 11h-8c-1.104 0-2 .896-2 2v8h2v1h2l2-1 2 1h2v-1h2v-8c0-1.104-.896-2-2-2zm-5.36 18.479c1.105 0 1.346.159 1.359.521.052 1.375-1.786 3.479-3.141 2.979-.86-.317-.422-1.901.141-2.979.23-.441.962-.521 1.641-.521z"/><path fill="#292F33" d="M19.36 29.479c-1.105 0-1.346.159-1.359.521-.051 1.375 1.787 3.479 3.141 2.979.86-.317.422-1.901-.141-2.979-.23-.441-.961-.521-1.641-.521z"/><path fill="#FFDC5D" d="M16.799 10h2.402v1.592h-2.402zm-1.495-3.181c0 .592-.3 1.071-.67 1.071-.37 0-.67-.48-.67-1.071 0-.592.3-1.071.67-1.071.37-.001.67.479.67 1.071zm6.696 0c0 .592-.3 1.071-.67 1.071-.37 0-.67-.48-.67-1.071 0-.592.3-1.071.67-1.071.37-.001.67.479.67 1.071z"/><path fill="#FFDC5D" d="M18 10.906c-1.923 0-3.482-1.851-3.482-4.135S16.077 2.636 18 2.636s3.482 1.851 3.482 4.135-1.559 4.135-3.482 4.135"/><path fill="#C1694F" d="M19.305 9.096c-.015-.025-.043-.041-.073-.041h-2.453c-.03 0-.058.015-.073.041-.015.025-.017.057-.003.084.015.029.372.704 1.303.704.931 0 1.288-.676 1.303-.704.013-.026.011-.058-.004-.084zm-1.297-1.16c-.269 0-.478-.048-.646-.122.055.198.21.474.646.474.436 0 .59-.276.646-.474-.168.074-.377.122-.646.122z"/><path fill="#FFAC33" d="M14.827 6.396c.06-.296.148-.546.246-.771h-.777c.121.874.465 1.095.531.771zm6.346-.125c.239.47.475.152.55-.771h-.942l.392.771z"/><path fill="#546170" d="M19.8 13.2l1.276-1.2-.49-1H19.8z"/><path fill="#66757F" d="M17.997 18l3.099-5.045-1.271-1.361z"/><path fill="#546170" d="M16.2 13.2L14.924 12l.49-1h.786z"/><path fill="#66757F" d="M18 18l-3.099-5.045 1.271-1.361z"/><path fill="#E1E8ED" d="M18 18l-2-7 2 1 2-1z"/><path fill="#55ACEE" d="M19 12l-1-.417L17 12l.878.878-.793 1.918L18 18l.915-3.204-.793-1.918z"/><path fill="#F5F8FA" d="M16.562 10.562L18 11.583l-.938.995L16 11zm2.876 0L18 11.583l.938.995L20 11z"/><ellipse fill="#99AAB5" cx="18" cy="35" rx="6" ry="1"/><path fill="#292F33" d="M20.324 3.977c.612-.166 1.091-.411 1.091-.411s-.141-.578-.283-.95c-.442-1.154-1.175-1.729-1.849-1.558-1.019.259-1.496.11-2.712-.034-1.215-.144-1.773 1.682-1.968 2.542 0 0 .322.274.902.403.022.005.05.008.073.013-2.094.094-2.787.351-2.787.852 0 .66 2.336 1.333 5.219 1.333 2.882 0 5.219-.673 5.219-1.333-.002-.511-.723-.767-2.905-.857z"/><path fill="#66757F" d="M21.583 4.225c-.012-.069-.027-.145-.043-.22-.048-.225-.126-.439-.126-.439s-1.101.429-3.406.429-3.406-.429-3.406-.429-.078.214-.126.439c-.016.076-.031.152-.043.22-.048.273.081.461.966.649.6.127 1.582.241 2.608.22 1.026.021 2.009-.093 2.608-.22.888-.188 1.017-.376.968-.649z"/><path fill="#292F33" d="M21.492 5.897l-.958.316c-.337-.047-1.038-.066-1.779.015-.197.022-.272.078-.739.078-.466 0-.542-.056-.739-.078-.741-.081-1.442-.062-1.779-.015l-.958-.316c-.093-.033-.191.019-.221.111s.02.19.111.221l.894.295c.066.051.208.148.242.248.039.116.117.861.35 1.055.241.2 1.148.125 1.322.039.389-.194.437-.82.505-1.094.039-.155.272-.155.272-.155s.233 0 .272.155c.069.274.117.902.505 1.096.174.087 1.081.161 1.322-.039.233-.194.311-.941.35-1.057.033-.1.175-.196.241-.247l.895-.295c.092-.03.142-.129.111-.221-.029-.093-.132-.144-.219-.112z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f574.svg b/public/emoji/1f574.svg
index a9bd641c9a3cea1ff9db58c915cbb1a5ef663b2c..a834fd4b99c856db0aabab9030e7efde043461ee 100644
--- a/public/emoji/1f574.svg
+++ b/public/emoji/1f574.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#FFDC5D" d="M14 22c0 .553-.448 1-1 1s-1-.447-1-1v-8c0-.552.448-1 1-1s1 .448 1 1v8zm10 0c0 .553-.447 1-1 1-.553 0-1-.447-1-1v-8c0-.552.447-1 1-1 .553 0 1 .448 1 1v8z"/><path fill="#66757F" d="M19 19h-5l1 11h3v-7 7h3l1-11z"/><path fill="#546170" d="M18 23c-.552 0-1 7-1 7 0 .553.448 0 1 0 .553 0 1 .553 1 0 0 0-.447-7-1-7z"/><path fill="#292F33" d="M22 11h-8c-1.104 0-2 .896-2 2v8h2v1h2l2-1 2 1h2v-1h2v-8c0-1.104-.896-2-2-2zm-5.36 18.479c1.105 0 1.346.159 1.359.521.052 1.375-1.786 3.479-3.141 2.979-.86-.317-.422-1.901.141-2.979.23-.441.962-.521 1.641-.521z"/><path fill="#292F33" d="M19.36 29.479c-1.105 0-1.346.159-1.359.521-.051 1.375 1.787 3.479 3.141 2.979.86-.317.422-1.901-.141-2.979-.23-.441-.961-.521-1.641-.521z"/><path fill="#E1E8ED" d="M18 18l-2-7h4z"/><path fill="#55ACEE" d="M17 15l1 3 1-3-1-2.417z"/><path fill="#FFDC5D" d="M16.799 10v1.592L18 12l1.201-.408V10zm-1.495-3.181c0 .592-.3 1.071-.67 1.071-.37 0-.67-.48-.67-1.071 0-.592.3-1.071.67-1.071.37-.001.67.479.67 1.071zm6.696 0c0 .592-.3 1.071-.67 1.071-.37 0-.67-.48-.67-1.071 0-.592.3-1.071.67-1.071.37-.001.67.479.67 1.071z"/><path fill="#FFDC5D" d="M18 10.906c-1.923 0-3.482-1.851-3.482-4.135S16.077 2.636 18 2.636s3.482 1.851 3.482 4.135-1.559 4.135-3.482 4.135"/><path fill="#C1694F" d="M19.305 9.096c-.015-.025-.043-.041-.073-.041h-2.453c-.03 0-.058.015-.073.041-.015.025-.017.057-.003.084.015.029.372.704 1.303.704.931 0 1.288-.676 1.303-.704.013-.026.011-.058-.004-.084zm-1.297-1.16c-.269 0-.478-.048-.646-.122.055.198.21.474.646.474.436 0 .59-.276.646-.474-.168.074-.377.122-.646.122z"/><path fill="#FFAC33" d="M14.827 6.396c.06-.296.148-.546.246-.771h-.777c.121.874.465 1.095.531.771zm6.346-.125c.239.47.475.152.55-.771h-.942l.392.771z"/><path fill="#66757F" d="M16 11l-1 3 1.25.344-.688 1.125L18 18zm4 0l1 3-1.25.344.688 1.125L18 18z"/><path fill="#55ACEE" d="M17 12l1 1 1-1-1-.417z"/><path fill="#F5F8FA" d="M16.562 10.562L18 11.583l-.938.995L16 11zm2.876 0L18 11.583l.938.995L20 11z"/><ellipse fill="#99AAB5" cx="18" cy="35" rx="6" ry="1"/><path fill="#292F33" d="M23.227 4.833c0 .66-2.337 1.333-5.219 1.333s-5.219-.673-5.219-1.333 1.196-.896 5.219-.896 5.219.236 5.219.896z"/><path fill="#292F33" d="M20.191 4.016c.678-.163 1.224-.45 1.224-.45s-.141-.578-.283-.95c-.442-1.154-1.175-1.729-1.849-1.558-1.019.259-1.496.11-2.712-.034-1.215-.144-1.773 1.682-1.967 2.542 0 0 .322.274.902.403 1.22.273 3.76.269 4.685.047z"/><path fill="#66757F" d="M21.583 4.225c-.012-.069-.027-.145-.043-.22-.048-.225-.126-.439-.126-.439s-1.101.429-3.406.429-3.406-.429-3.406-.429-.078.214-.126.439c-.016.076-.031.152-.043.22-.048.273.081.461.966.649.6.127 1.582.241 2.608.22 1.026.021 2.009-.093 2.608-.22.888-.188 1.017-.376.968-.649z"/><path fill="#292F33" d="M21.492 5.897l-.958.316c-.337-.047-1.038-.066-1.779.015-.197.022-.272.078-.739.078-.466 0-.542-.056-.739-.078-.741-.081-1.442-.062-1.779-.015l-.958-.316c-.093-.033-.191.019-.221.111s.02.19.111.221l.894.295c.066.051.208.148.242.248.039.116.117.861.35 1.055.241.2 1.148.125 1.322.039.389-.194.437-.82.505-1.094.039-.155.272-.155.272-.155s.233 0 .272.155c.069.274.117.902.505 1.096.174.087 1.081.161 1.322-.039.233-.194.311-.941.35-1.057.033-.1.175-.196.241-.247l.895-.295c.092-.03.142-.129.111-.221-.029-.093-.132-.144-.219-.112z"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#FFDC5D" d="M14 22c0 .553-.448 1-1 1s-1-.447-1-1v-8c0-.552.448-1 1-1s1 .448 1 1v8zm10 0c0 .553-.447 1-1 1-.553 0-1-.447-1-1v-8c0-.552.447-1 1-1 .553 0 1 .448 1 1v8z"/><path fill="#66757F" d="M19 19h-5l1 11h3v-7 7h3l1-11z"/><path fill="#546170" d="M18 23c-.552 0-1 7-1 7 0 .553.448 0 1 0 .553 0 1 .553 1 0 0 0-.447-7-1-7z"/><path fill="#292F33" d="M22 11h-8c-1.104 0-2 .896-2 2v8h2v1h2l2-1 2 1h2v-1h2v-8c0-1.104-.896-2-2-2zm-5.36 18.479c1.105 0 1.346.159 1.359.521.052 1.375-1.786 3.479-3.141 2.979-.86-.317-.422-1.901.141-2.979.23-.441.962-.521 1.641-.521z"/><path fill="#292F33" d="M19.36 29.479c-1.105 0-1.346.159-1.359.521-.051 1.375 1.787 3.479 3.141 2.979.86-.317.422-1.901-.141-2.979-.23-.441-.961-.521-1.641-.521z"/><path fill="#FFDC5D" d="M16.799 10h2.402v1.592h-2.402zm-1.495-3.181c0 .592-.3 1.071-.67 1.071-.37 0-.67-.48-.67-1.071 0-.592.3-1.071.67-1.071.37-.001.67.479.67 1.071zm6.696 0c0 .592-.3 1.071-.67 1.071-.37 0-.67-.48-.67-1.071 0-.592.3-1.071.67-1.071.37-.001.67.479.67 1.071z"/><path fill="#FFDC5D" d="M18 10.906c-1.923 0-3.482-1.851-3.482-4.135S16.077 2.636 18 2.636s3.482 1.851 3.482 4.135-1.559 4.135-3.482 4.135"/><path fill="#C1694F" d="M19.305 9.096c-.015-.025-.043-.041-.073-.041h-2.453c-.03 0-.058.015-.073.041-.015.025-.017.057-.003.084.015.029.372.704 1.303.704.931 0 1.288-.676 1.303-.704.013-.026.011-.058-.004-.084zm-1.297-1.16c-.269 0-.478-.048-.646-.122.055.198.21.474.646.474.436 0 .59-.276.646-.474-.168.074-.377.122-.646.122z"/><path fill="#FFAC33" d="M14.827 6.396c.06-.296.148-.546.246-.771h-.777c.121.874.465 1.095.531.771zm6.346-.125c.239.47.475.152.55-.771h-.942l.392.771z"/><path fill="#546170" d="M19.8 13.2l1.276-1.2-.49-1H19.8z"/><path fill="#66757F" d="M17.997 18l3.099-5.045-1.271-1.361z"/><path fill="#546170" d="M16.2 13.2L14.924 12l.49-1h.786z"/><path fill="#66757F" d="M18 18l-3.099-5.045 1.271-1.361z"/><path fill="#E1E8ED" d="M18 18l-2-7 2 1 2-1z"/><path fill="#55ACEE" d="M19 12l-1-.417L17 12l.878.878-.793 1.918L18 18l.915-3.204-.793-1.918z"/><path fill="#F5F8FA" d="M16.562 10.562L18 11.583l-.938.995L16 11zm2.876 0L18 11.583l.938.995L20 11z"/><ellipse fill="#99AAB5" cx="18" cy="35" rx="6" ry="1"/><path fill="#292F33" d="M20.324 3.977c.612-.166 1.091-.411 1.091-.411s-.141-.578-.283-.95c-.442-1.154-1.175-1.729-1.849-1.558-1.019.259-1.496.11-2.712-.034-1.215-.144-1.773 1.682-1.968 2.542 0 0 .322.274.902.403.022.005.05.008.073.013-2.094.094-2.787.351-2.787.852 0 .66 2.336 1.333 5.219 1.333 2.882 0 5.219-.673 5.219-1.333-.002-.511-.723-.767-2.905-.857z"/><path fill="#66757F" d="M21.583 4.225c-.012-.069-.027-.145-.043-.22-.048-.225-.126-.439-.126-.439s-1.101.429-3.406.429-3.406-.429-3.406-.429-.078.214-.126.439c-.016.076-.031.152-.043.22-.048.273.081.461.966.649.6.127 1.582.241 2.608.22 1.026.021 2.009-.093 2.608-.22.888-.188 1.017-.376.968-.649z"/><path fill="#292F33" d="M21.492 5.897l-.958.316c-.337-.047-1.038-.066-1.779.015-.197.022-.272.078-.739.078-.466 0-.542-.056-.739-.078-.741-.081-1.442-.062-1.779-.015l-.958-.316c-.093-.033-.191.019-.221.111s.02.19.111.221l.894.295c.066.051.208.148.242.248.039.116.117.861.35 1.055.241.2 1.148.125 1.322.039.389-.194.437-.82.505-1.094.039-.155.272-.155.272-.155s.233 0 .272.155c.069.274.117.902.505 1.096.174.087 1.081.161 1.322-.039.233-.194.311-.941.35-1.057.033-.1.175-.196.241-.247l.895-.295c.092-.03.142-.129.111-.221-.029-.093-.132-.144-.219-.112z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f576.svg b/public/emoji/1f576.svg
index 2244dcdd80c0f684b4cd4b048888d5d5faa491ab..5d5c04fb8b1a1130f2cff5e4d9dc820129a6e2a9 100644
--- a/public/emoji/1f576.svg
+++ b/public/emoji/1f576.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill-rule="evenodd" clip-rule="evenodd" fill="#292F33" d="M1.24 15.018c.24.239 1.438.957 1.677 1.675.24.717.72 5.307 2.158 6.504 1.483 1.232 7.077.773 8.148.24 2.397-1.195 2.691-5.055 3.115-6.745.239-.957 1.677-.957 1.677-.957s1.438 0 1.678.956c.424 1.691.72 5.562 3.115 6.755 1.072.535 6.666.994 8.151-.238 1.436-1.197 1.915-5.799 2.155-6.517.238-.717 1.438-1.435 1.677-1.674.241-.239.241-1.196 0-1.436-.479-.478-6.134-.904-12.223-.239-1.215.133-1.677.478-4.554.478-2.875 0-3.339-.346-4.553-.478-6.085-.664-11.741-.238-12.221.24-.239.239-.239 1.197 0 1.436z"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill-rule="evenodd" clip-rule="evenodd" fill="#31373D" d="M1.24 15.018c.24.239 1.438.957 1.677 1.675.24.717.72 5.307 2.158 6.504 1.483 1.232 7.077.773 8.148.24 2.397-1.195 2.691-5.055 3.115-6.745.239-.957 1.677-.957 1.677-.957s1.438 0 1.678.956c.424 1.691.72 5.562 3.115 6.755 1.072.535 6.666.994 8.151-.238 1.436-1.197 1.915-5.799 2.155-6.517.238-.717 1.438-1.435 1.677-1.674.241-.239.241-1.196 0-1.436-.479-.478-6.134-.904-12.223-.239-1.215.133-1.677.478-4.554.478-2.875 0-3.339-.346-4.553-.478-6.085-.664-11.741-.238-12.221.24-.239.239-.239 1.197 0 1.436z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f577.svg b/public/emoji/1f577.svg
index f98a440fef18244abdc34d7b91e9449179f7a548..a156865108e97ba3930f426581b91573c4e25a22 100644
--- a/public/emoji/1f577.svg
+++ b/public/emoji/1f577.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#292F33" d="M14.999 17c-.208 0-.419-.065-.599-.2C9.863 13.397 6.959 7.585 7 1.993c.004-.553.412-.975 1.007-.993.553.004.997.455.993 1.007-.037 4.98 2.554 10.159 6.6 13.193.442.331.531.958.2 1.4-.196.262-.497.4-.801.4z"/><path fill="#292F33" d="M16 19c-.377 0-9.273-.098-12.919-8.606-.218-.508.018-1.096.525-1.313.508-.218 1.096.018 1.313.525C8.052 16.916 15.677 17 16 17c.552 0 1 .448 1 1 0 .553-.448 1-1 1z"/><path fill="#292F33" d="M4 29c-.104 0-.211-.017-.316-.052-.524-.174-.807-.74-.632-1.265 1.388-4.164 4.719-9.054 12.71-8.692.102.005.183.009.238.009.552 0 1 .447 1 1s-.448 1-1 1c-.076 0-.187-.005-.328-.011-5.411-.237-9.021 2.222-10.723 7.327-.14.419-.53.684-.949.684z"/><path fill="#292F33" d="M8 36c-.552 0-1-.447-1-1 0-4.495 3.228-12.703 8.485-15.857.474-.284 1.088-.131 1.372.343s.131 1.088-.343 1.372C11.997 23.568 9 31.165 9 35c0 .553-.448 1-1 1zm13.001-19c-.305 0-.604-.138-.801-.4-.332-.442-.242-1.069.2-1.4 4.046-3.035 6.637-8.213 6.6-13.193-.004-.552.44-1.003.992-1.007H28c.549 0 .996.443 1 .993.042 5.592-2.863 11.404-7.4 14.807-.18.135-.39.2-.599.2z"/><path fill="#292F33" d="M20 19c-.553 0-1-.447-1-1 0-.552.447-1 1-1 .323 0 7.948-.084 11.081-7.394.218-.507.808-.742 1.312-.525.508.217.743.805.525 1.313C29.272 18.902 20.377 19 20 19z"/><path fill="#292F33" d="M32 29c-.419 0-.809-.265-.948-.684-1.702-5.105-5.293-7.559-10.724-7.327-.141.006-.252.011-.328.011-.553 0-1-.447-1-1s.447-1 1-1c.055 0 .136-.004.238-.009 7.979-.36 11.323 4.528 12.71 8.692.175.524-.108 1.091-.632 1.265-.105.035-.212.052-.316.052z"/><path fill="#292F33" d="M28 36c-.553 0-1-.447-1-1 0-3.835-2.997-11.432-7.515-14.143-.474-.284-.627-.898-.343-1.372.284-.473.897-.627 1.372-.343C25.771 22.297 29 30.505 29 35c0 .553-.447 1-1 1z"/><ellipse fill="#292F33" cx="18" cy="25.208" rx="6" ry="6.792"/><ellipse fill="#292F33" cx="18" cy="17" rx="4" ry="6"/><path fill="#292F33" d="M16 14c-.256 0-.512-.098-.707-.293C14 12.414 14 11.076 14 10c0-.552.448-1 1-1s1 .448 1 1c0 .92 0 1.586.707 2.293.391.391.391 1.023 0 1.414-.195.195-.451.293-.707.293zm4 0c-.256 0-.512-.098-.707-.293-.391-.391-.391-1.023 0-1.414C20 11.586 20 10.92 20 10c0-.552.447-1 1-1s1 .448 1 1c0 1.076 0 2.414-1.293 3.707-.195.195-.451.293-.707.293z"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#31373D" d="M14.999 17c-.208 0-.419-.065-.599-.2C9.863 13.397 6.959 7.585 7 1.993c.004-.553.412-.975 1.007-.993.553.004.997.455.993 1.007-.037 4.98 2.554 10.159 6.6 13.193.442.331.531.958.2 1.4-.196.262-.497.4-.801.4z"/><path fill="#31373D" d="M16 19c-.377 0-9.273-.098-12.919-8.606-.218-.508.018-1.096.525-1.313.508-.218 1.096.018 1.313.525C8.052 16.916 15.677 17 16 17c.552 0 1 .448 1 1 0 .553-.448 1-1 1z"/><path fill="#31373D" d="M4 29c-.104 0-.211-.017-.316-.052-.524-.174-.807-.74-.632-1.265 1.388-4.164 4.719-9.054 12.71-8.692.102.005.183.009.238.009.552 0 1 .447 1 1s-.448 1-1 1c-.076 0-.187-.005-.328-.011-5.411-.237-9.021 2.222-10.723 7.327-.14.419-.53.684-.949.684z"/><path fill="#31373D" d="M8 36c-.552 0-1-.447-1-1 0-4.495 3.228-12.703 8.485-15.857.474-.284 1.088-.131 1.372.343s.131 1.088-.343 1.372C11.997 23.568 9 31.165 9 35c0 .553-.448 1-1 1zm13.001-19c-.305 0-.604-.138-.801-.4-.332-.442-.242-1.069.2-1.4 4.046-3.035 6.637-8.213 6.6-13.193-.004-.552.44-1.003.992-1.007H28c.549 0 .996.443 1 .993.042 5.592-2.863 11.404-7.4 14.807-.18.135-.39.2-.599.2z"/><path fill="#31373D" d="M20 19c-.553 0-1-.447-1-1 0-.552.447-1 1-1 .323 0 7.948-.084 11.081-7.394.218-.507.808-.742 1.312-.525.508.217.743.805.525 1.313C29.272 18.902 20.377 19 20 19z"/><path fill="#31373D" d="M32 29c-.419 0-.809-.265-.948-.684-1.702-5.105-5.293-7.559-10.724-7.327-.141.006-.252.011-.328.011-.553 0-1-.447-1-1s.447-1 1-1c.055 0 .136-.004.238-.009 7.979-.36 11.323 4.528 12.71 8.692.175.524-.108 1.091-.632 1.265-.105.035-.212.052-.316.052z"/><path fill="#31373D" d="M28 36c-.553 0-1-.447-1-1 0-3.835-2.997-11.432-7.515-14.143-.474-.284-.627-.898-.343-1.372.284-.473.897-.627 1.372-.343C25.771 22.297 29 30.505 29 35c0 .553-.447 1-1 1z"/><ellipse fill="#31373D" cx="18" cy="25.208" rx="6" ry="6.792"/><ellipse fill="#31373D" cx="18" cy="17" rx="4" ry="6"/><path fill="#31373D" d="M16 14c-.256 0-.512-.098-.707-.293C14 12.414 14 11.076 14 10c0-.552.448-1 1-1s1 .448 1 1c0 .92 0 1.586.707 2.293.391.391.391 1.023 0 1.414-.195.195-.451.293-.707.293zm4 0c-.256 0-.512-.098-.707-.293-.391-.391-.391-1.023 0-1.414C20 11.586 20 10.92 20 10c0-.552.447-1 1-1s1 .448 1 1c0 1.076 0 2.414-1.293 3.707-.195.195-.451.293-.707.293z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f579.svg b/public/emoji/1f579.svg
index a7467e3cb85914670402ea312e9c375df3fdb78e..33479b504841d53f4aeb30f47dfad333a026f442 100644
--- a/public/emoji/1f579.svg
+++ b/public/emoji/1f579.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#99AAB5" d="M16 9h4v17h-4z"/><path fill="#DA2F47" d="M10 24.5c0 .828-.672 1.5-1.5 1.5h-3c-.828 0-1.5-.672-1.5-1.5S4.672 23 5.5 23h3c.828 0 1.5.672 1.5 1.5z"/><path fill="#292F33" d="M34 33c0 1.104-.896 2-2 2H4c-1.104 0-2-.896-2-2v-6c0-1.104.896-2 2-2h28c1.104 0 2 .896 2 2v6z"/><path fill="#292F33" d="M10 34.5c0 .828-.671 1.5-1.5 1.5h-3c-.829 0-1.5-.672-1.5-1.5S4.671 33 5.5 33h3c.829 0 1.5.672 1.5 1.5zm22 0c0 .828-.672 1.5-1.5 1.5h-3c-.828 0-1.5-.672-1.5-1.5s.672-1.5 1.5-1.5h3c.828 0 1.5.672 1.5 1.5z"/><circle fill="#DA2F47" cx="18" cy="7" r="5"/><path fill="#292F33" d="M25 26c0 1.104-.896 2-2 2H13c-1.104 0-2-.896-2-2v-1c0-1.104 3.896-6 5-6h4c1.104 0 5 4.896 5 6v1z"/><path fill="#66757F" d="M33 28c0 .553-.447 1-1 1H4c-.552 0-1-.447-1-1 0-.553.448-1 1-1h28c.553 0 1 .447 1 1z"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#99AAB5" d="M16 9h4v17h-4z"/><path fill="#DA2F47" d="M10 24.5c0 .828-.672 1.5-1.5 1.5h-3c-.828 0-1.5-.672-1.5-1.5S4.672 23 5.5 23h3c.828 0 1.5.672 1.5 1.5z"/><path fill="#31373D" d="M34 33c0 1.104-.896 2-2 2H4c-1.104 0-2-.896-2-2v-6c0-1.104.896-2 2-2h28c1.104 0 2 .896 2 2v6z"/><path fill="#31373D" d="M10 34.5c0 .828-.671 1.5-1.5 1.5h-3c-.829 0-1.5-.672-1.5-1.5S4.671 33 5.5 33h3c.829 0 1.5.672 1.5 1.5zm22 0c0 .828-.672 1.5-1.5 1.5h-3c-.828 0-1.5-.672-1.5-1.5s.672-1.5 1.5-1.5h3c.828 0 1.5.672 1.5 1.5z"/><circle fill="#DA2F47" cx="18" cy="7" r="5"/><path fill="#31373D" d="M25 26c0 1.104-.896 2-2 2H13c-1.104 0-2-.896-2-2v-1c0-1.104 3.896-6 5-6h4c1.104 0 5 4.896 5 6v1z"/><path fill="#66757F" d="M33 28c0 .553-.447 1-1 1H4c-.552 0-1-.447-1-1 0-.553.448-1 1-1h28c.553 0 1 .447 1 1z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f57a-1f3fb.svg b/public/emoji/1f57a-1f3fb.svg
index 215ffcb0db2e3f533af16295a361d00d6ced5efd..1eb5928c8dd93aebb9872bbb1d37ff0b2ca35008 100644
--- a/public/emoji/1f57a-1f3fb.svg
+++ b/public/emoji/1f57a-1f3fb.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#292F33" d="M21.826 35.661c-.154-.19-.249-.433-.249-.698-.004-.617.493-1.118 1.109-1.121l3.17-.016c.614-.001 1.117.492 1.119 1.109.004.617-.491 1.118-1.108 1.121l-3.169.017c-.35.001-.666-.159-.872-.412zm-14.506 0c-.154-.19-.248-.433-.248-.698-.004-.617.493-1.118 1.109-1.121l3.17-.016c.613-.001 1.117.492 1.119 1.109.004.617-.493 1.118-1.109 1.121l-3.169.017c-.35.001-.664-.159-.872-.412z"/><path fill="#F7DECE" d="M28.151 9.007c-.423-.35-.535-.964-.24-1.441l2.247-1.63c.499-.363 1.196-.252 1.562.247.356.501.248 1.194-.249 1.558l-1.657.991c-.323.524-1.01.69-1.535.368-.047-.03-.089-.059-.128-.093z"/><path fill="#292F33" d="M28.648 6.667l-4.044 2.58-5.079.429s-6.822.855-9.048 1.472c-3.818 1.058-1.925 3.991-1.925 3.991l2.583 4.167 1.322-1.723-1.736-3.708 4.871-.906 4.001.544 6.613-1.754 3.905-2.755-1.463-2.337z"/><path fill="#F7DECE" d="M20.336 5.354c0-1.848-1.309-3.347-2.927-3.347S14.48 3.506 14.48 5.354c0 1.433.791 2.646 1.899 3.123l.253 2.498c.062.613.608 1.06 1.222.997.613-.061 1.059-.609.997-1.221l-.238-2.353c1.014-.526 1.723-1.688 1.723-3.044z"/><path fill="#292F33" d="M18.982 3.075s-1.14 1.07-2.349 1.255c0 0-.723 1.171-.768 1.847 0 0-.45-1.081-.81-.9-.36.18-.496.855-.18 1.305.315.451.705 1.226.363 1.003-.689-.45-.79-.768-.976-1.07-.127-.206-.425-.943-.465-2.162-.024-.721.232-2.116 1.707-2.857 1.278-.644 3.287-.315 4.231.359.945.676 1.18 2.38.594 3.056 0 0-.085-.63-.488-1.14-.225-.282-.859-.696-.859-.696z"/><path fill="#DD2E44" d="M13.5 10.531s.257 3.954-.29 8.34c.968-.009 7.373-.024 7.373-.024s1.156-2.033.994-4.213c-.161-2.181-1.039-4.815-1.039-4.815l-1.082-.108-.212-1.011-1.056.4-.151 1.751-.456-1.666-1.548-.135-.185 1.066-2.348.415z"/><path fill="#292F33" d="M12.874 10.651s.689 2.443.385 7.5c2.228-.038 3.963-.732 3.963-.732s.146-1.919-.228-3.615c-.546-2.469-1.105-3.921-1.105-3.921l-3.015.768zm6.516-1.246s.623 3.271.484 5.224c-.14 1.953-.235 2.694-.235 2.694s.35.32 1.479.3c.467-1.222.843-3.514.786-5.018-.059-1.585-1.002-3.127-1.002-3.127l-1.512-.073zm-6.18 9.467s-.682 5.616-1.425 7.125c-.79 2.579-4.54 8.368-4.54 8.368l2.527.585s4.298-4.64 5.43-6.582c1.212-2.185 2.2-5.511 2.2-5.511s2.576 2.267 3.728 3.958c.727 2.003.448 8.148.448 8.148l3.028-.014s1.545-6.364.288-9.574c-.604-1.559-4.311-6.527-4.311-6.527l-7.373.024z"/><path fill="#F7DECE" d="M14.731 20.108c-.27.476-.854.692-1.376.487l-2.218-1.289 1.322-1.723 1.713.935c.573.226.854.873.629 1.447-.021.052-.044.098-.07.143z"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#292F33" d="M26.157 35.26c-.005-.034-.055-.214-.055-.214l-.057.027.004-.134c-.021-.58-.608-.51-.678-.516-.07-.006-.305.006-.596-.031-.29-.037-.57-.108-.816-.257-.287-.174-.678-.467-1.014-.663s-.758-.437-.758-.437-.367.682-1.127.654c-.409-.015-1.05-.337-1.133-.36-.11-.031-.159.031-.205.116-.046.086-.211.684-.211 1.005 0 .204.025.333.044.405l-.055-.017c-.025-.007-.049.012-.049.039v.687c0 .045.037.147.155.171.118.024 1.759.165 1.821.11s.13-.232.183-.257c.053-.024.603.094.859.155s.698.165 1.218.165 1.191-.153 1.607-.257c.415-.104.741-.243.815-.289.074-.046.053-.067.048-.102z"/><path fill="#4B545D" d="M21.19 35.405l-.41-.287c.008-.013.829-1.147 2.439-.666.092-.126.23-.324.363-.544l.428.26c-.24.396-.491.718-.501.731l-.111.142-.17-.061c-1.379-.491-2.031.415-2.038.425z"/><path fill="#292F33" d="M14.268 35.26c-.005-.034-.055-.214-.055-.214l-.057.027.004-.134c-.021-.58-.608-.51-.678-.516-.07-.006-.305.006-.596-.031s-.57-.108-.816-.257c-.287-.174-.678-.467-1.014-.663s-.758-.437-.758-.437-.367.682-1.127.654c-.409-.015-1.05-.337-1.133-.36-.11-.031-.159.031-.205.116-.046.086-.211.684-.211 1.005 0 .204.025.333.044.405l-.055-.017c-.025-.007-.049.012-.049.039v.687c0 .045.037.147.155.171.118.024 1.759.165 1.821.11s.13-.232.183-.257c.053-.024.603.094.859.155s.698.165 1.218.165 1.191-.153 1.607-.257c.415-.104.741-.243.815-.289.073-.046.053-.067.048-.102z"/><path fill="#4B545D" d="M9.3 35.406l-.409-.288c.008-.012.823-1.149 2.439-.666.091-.126.23-.324.363-.544l.428.26c-.24.396-.491.718-.501.731l-.111.142-.17-.061c-1.366-.488-2.012.388-2.039.426z"/><path fill="#F7DECE" d="M28.658 1.816c-.19-.089-.279.102-.279.102l-.378.812c.007-.014-.083-.071-.077-.082l.56-1.201s.089-.19-.102-.279-.279.102-.279.102l-.054.115-.472 1.013c.001-.003-.093-.049-.092-.051l.622-1.336s.089-.19-.102-.279c-.19-.089-.279.102-.279.102l-.622 1.336c-.001.002-.097-.039-.099-.036l.515-1.106s.089-.19-.102-.279c-.19-.089-.279.102-.279.102l-.702 1.507c-.048.103-.139.105-.179.078-.106-.072-.05-.26-.079-.424-.045-.25-.196-.415-.355-.418-.176-.003-.206.138-.192.187.028.095.073.254.126.506.037.177-.017.324-.017.324-.023.072-.085.318-.038.604.028.169.092.352.205.52l-.332.714 1.507.659.366-.956c.267-.119.5-.319.633-.604l.044-.095.631-1.355c.003-.004.091-.194-.099-.282z"/><path fill="#E0AA94" d="M26.348 2.443c.04-.012.06-.036.075-.058.168.108.389.272.491.543.132.351.054.627-.028.798-.066.138-.172.168-.099-.047.092-.27.143-.866-.455-1.205l-.055-.03c.001 0 .037.009.071-.001z"/><path fill="#F7DECE" d="M11.397 20.373c-.076-.064-.202-.171-.385-.352-.129-.128-.165-.279-.165-.279-.021-.073-.105-.312-.303-.524-.117-.126-.271-.243-.459-.319l-.116-.779-1.62.284.224.999c-.156.247-.24.542-.193.854l.016.104.224 1.478s.031.207.239.176.176-.239.176-.239L8.9 20.89c.002.015.108.013.11.026l.198 1.31s.031.207.239.176c.207-.031.176-.239.176-.239l-.019-.126-.167-1.105c0 .003.104-.01.105-.009l.221 1.457s.031.207.239.176c.207-.031.176-.239.176-.239l-.22-1.457c0-.002.103-.021.102-.024l.182 1.206s.031.207.239.176c.207-.031.176-.239.176-.239l-.249-1.644c-.017-.112.057-.165.106-.164.128.001.185.189.3.309.176.183.393.237.527.152.148-.092.095-.227.056-.259z"/><path fill="#292F33" d="M25.814 3.729S23.755 8.05 23.512 8.19c-.219.126-1.719-.042-3.699.354-1.979.396-2.744-.155-4.769-.075-1.176.046-2.413.452-3.227.648-1.237.299-3.276 3.237-3.848 4.26-.443.791-.421 1.68-.327 2.372.078.578.058 1.486.82 3.41l1.719-.281s-.289-3.783-.043-4.192c.102-.169 1.323-2.119 2.303-2.473l8.188-.385s3.375-.485 4.302-1.167c.708-.521 2.497-6.251 2.497-6.251l-1.614-.681z"/><path fill="#F7DECE" d="M15.546 5.857c.175-.172.407-.289.671-.314.613-.064 1.16.383 1.222.997l.319 3.153c.061.611-.384 1.16-.997 1.221-.615.063-1.161-.384-1.222-.997l-.32-3.153c-.035-.35.095-.676.327-.907z"/><path fill="#F7DECE" d="M19.243 4.296c0 1.849-1.309 3.348-2.927 3.348s-2.929-1.499-2.929-3.348c0-1.848 1.311-3.347 2.929-3.347 1.618 0 2.927 1.499 2.927 3.347z"/><path fill="#292F33" d="M17.89 2.018s-1.14 1.07-2.349 1.255c0 0-.723 1.171-.768 1.847 0 0-.45-1.081-.81-.9-.36.18-.496.855-.18 1.305.315.451.705 1.226.363 1.003-.689-.45-.79-.768-.976-1.07-.127-.206-.425-.943-.465-2.162-.024-.721.232-2.116 1.707-2.857 1.278-.644 3.287-.315 4.231.359.945.676 1.18 2.38.594 3.056 0 0-.085-.63-.488-1.14-.226-.283-.859-.696-.859-.696z"/><path fill="#DD2E44" d="M12.407 9.474v9.253l7.083-.024s.625-2.703 1.034-4.549c.474-2.135-1.079-5.392-1.079-5.392l-1.082-.108-.212-1.011-1.056.4-.151 1.751-.456-1.666-1.548-.135-.184 1.067-2.349.414z"/><path fill="#292F33" d="M11.781 9.593s.688 2.443.385 7.5c2.228-.038 3.963-.732 3.963-.732s.146-1.919-.228-3.615c-.546-2.469-1.105-3.921-1.105-3.921l-3.015.768zm6.516-1.246s.623 3.271.484 5.224c-.14 1.953-.235 2.694-.235 2.694s.441.486 1.57.466c.467-1.222.752-3.679.695-5.183-.059-1.585-1.002-3.127-1.002-3.127l-1.512-.074zm-5.89 10.38s-.607 6.995-.982 8.307c-.334 1.168-3.799 6.742-3.799 6.742s1.646.406 3.229.094c0 0 3.163-3.836 3.99-5.688.24-.539 1.835-5.521 1.835-5.521s1.712 1.908 2.863 3.599c.728 2.003.09 7.442.09 7.442s1.483.312 2.899.042c0 0 .859-5.397.651-7.688-.033-.367-.103-1.05-.245-1.309-.619-1.123-1.963-3.231-2.822-4.172-.774-.847-.625-1.873-.625-1.873l-7.084.025z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f57a-1f3fc.svg b/public/emoji/1f57a-1f3fc.svg
index b8ff07cdaf5e0af74c95fbe257e8a84a0a04de44..37bfbee9c3717a46b1acb65e98e3b9c8d8f2915f 100644
--- a/public/emoji/1f57a-1f3fc.svg
+++ b/public/emoji/1f57a-1f3fc.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#292F33" d="M21.826 35.661c-.154-.19-.249-.433-.249-.698-.004-.617.493-1.118 1.109-1.121l3.17-.016c.614-.001 1.117.492 1.119 1.109.004.617-.491 1.118-1.108 1.121l-3.169.017c-.35.001-.666-.159-.872-.412zm-14.506 0c-.154-.19-.248-.433-.248-.698-.004-.617.493-1.118 1.109-1.121l3.17-.016c.613-.001 1.117.492 1.119 1.109.004.617-.493 1.118-1.109 1.121l-3.169.017c-.35.001-.664-.159-.872-.412z"/><path fill="#F3D2A2" d="M28.151 9.007c-.423-.35-.535-.964-.24-1.441l2.247-1.63c.499-.363 1.196-.252 1.562.247.356.501.248 1.194-.249 1.558l-1.657.991c-.323.524-1.01.69-1.535.368-.047-.03-.089-.059-.128-.093z"/><path fill="#292F33" d="M28.648 6.667l-4.044 2.58-5.079.429s-6.822.855-9.048 1.472c-3.818 1.058-1.925 3.991-1.925 3.991l2.583 4.167 1.322-1.723-1.736-3.708 4.871-.906 4.001.544 6.613-1.754 3.905-2.755-1.463-2.337z"/><path fill="#F3D2A2" d="M20.336 5.354c0-1.848-1.309-3.347-2.927-3.347S14.48 3.506 14.48 5.354c0 1.433.791 2.646 1.899 3.123l.253 2.498c.062.613.608 1.06 1.222.997.613-.061 1.059-.609.997-1.221l-.238-2.353c1.014-.526 1.723-1.688 1.723-3.044z"/><path fill="#FFE51E" d="M18.982 3.075s-1.14 1.07-2.349 1.255c0 0-.723 1.171-.768 1.847 0 0-.45-1.081-.81-.9-.36.18-.496.855-.18 1.305.315.451.705 1.226.363 1.003-.689-.45-.79-.768-.976-1.07-.127-.206-.425-.943-.465-2.162-.024-.721.232-2.116 1.707-2.857 1.278-.644 3.287-.315 4.231.359.945.676 1.18 2.38.594 3.056 0 0-.085-.63-.488-1.14-.225-.282-.859-.696-.859-.696z"/><path fill="#DD2E44" d="M13.5 10.531s.257 3.954-.29 8.34c.968-.009 7.373-.024 7.373-.024s1.156-2.033.994-4.213c-.161-2.181-1.039-4.815-1.039-4.815l-1.082-.108-.212-1.011-1.056.4-.151 1.751-.456-1.666-1.548-.135-.185 1.066-2.348.415z"/><path fill="#292F33" d="M12.874 10.651s.689 2.443.385 7.5c2.228-.038 3.963-.732 3.963-.732s.146-1.919-.228-3.615c-.546-2.469-1.105-3.921-1.105-3.921l-3.015.768zm6.516-1.246s.623 3.271.484 5.224c-.14 1.953-.235 2.694-.235 2.694s.35.32 1.479.3c.467-1.222.843-3.514.786-5.018-.059-1.585-1.002-3.127-1.002-3.127l-1.512-.073zm-6.18 9.467s-.682 5.616-1.425 7.125c-.79 2.579-4.54 8.368-4.54 8.368l2.527.585s4.298-4.64 5.43-6.582c1.212-2.185 2.2-5.511 2.2-5.511s2.576 2.267 3.728 3.958c.727 2.003.448 8.148.448 8.148l3.028-.014s1.545-6.364.288-9.574c-.604-1.559-4.311-6.527-4.311-6.527l-7.373.024z"/><path fill="#F3D2A2" d="M14.731 20.108c-.27.476-.854.692-1.376.487l-2.218-1.289 1.322-1.723 1.713.935c.573.226.854.873.629 1.447-.021.052-.044.098-.07.143z"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#292F33" d="M26.157 35.26c-.005-.034-.055-.214-.055-.214l-.057.027.004-.134c-.021-.58-.608-.51-.678-.516-.07-.006-.305.006-.596-.031-.29-.037-.57-.108-.816-.257-.287-.174-.678-.467-1.014-.663s-.758-.437-.758-.437-.367.682-1.127.654c-.409-.015-1.05-.337-1.133-.36-.11-.031-.159.031-.205.116-.046.086-.211.684-.211 1.005 0 .204.025.333.044.405l-.055-.017c-.025-.007-.049.012-.049.039v.687c0 .045.037.147.155.171.118.024 1.759.165 1.821.11s.13-.232.183-.257c.053-.024.603.094.859.155s.698.165 1.218.165 1.191-.153 1.607-.257c.415-.104.741-.243.815-.289.074-.046.053-.067.048-.102z"/><path fill="#4B545D" d="M21.19 35.405l-.41-.287c.008-.013.829-1.147 2.439-.666.092-.126.23-.324.363-.544l.428.26c-.24.396-.491.718-.501.731l-.111.142-.17-.061c-1.379-.491-2.031.415-2.038.425z"/><path fill="#292F33" d="M14.268 35.26c-.005-.034-.055-.214-.055-.214l-.057.027.004-.134c-.021-.58-.608-.51-.678-.516-.07-.006-.305.006-.596-.031s-.57-.108-.816-.257c-.287-.174-.678-.467-1.014-.663s-.758-.437-.758-.437-.367.682-1.127.654c-.409-.015-1.05-.337-1.133-.36-.11-.031-.159.031-.205.116-.046.086-.211.684-.211 1.005 0 .204.025.333.044.405l-.055-.017c-.025-.007-.049.012-.049.039v.687c0 .045.037.147.155.171.118.024 1.759.165 1.821.11s.13-.232.183-.257c.053-.024.603.094.859.155s.698.165 1.218.165 1.191-.153 1.607-.257c.415-.104.741-.243.815-.289.073-.046.053-.067.048-.102z"/><path fill="#4B545D" d="M9.3 35.406l-.409-.288c.008-.012.823-1.149 2.439-.666.091-.126.23-.324.363-.544l.428.26c-.24.396-.491.718-.501.731l-.111.142-.17-.061c-1.366-.488-2.012.388-2.039.426z"/><path fill="#F3D2A2" d="M28.658 1.816c-.19-.089-.279.102-.279.102l-.378.812c.007-.014-.083-.071-.077-.082l.56-1.201s.089-.19-.102-.279-.279.102-.279.102l-.054.115-.472 1.013c.001-.003-.093-.049-.092-.051l.622-1.336s.089-.19-.102-.279c-.19-.089-.279.102-.279.102l-.622 1.336c-.001.002-.097-.039-.099-.036l.515-1.106s.089-.19-.102-.279c-.19-.089-.279.102-.279.102l-.702 1.507c-.048.103-.139.105-.179.078-.106-.072-.05-.26-.079-.424-.045-.25-.196-.415-.355-.418-.176-.003-.206.138-.192.187.028.095.073.254.126.506.037.177-.017.324-.017.324-.023.072-.085.318-.038.604.028.169.092.352.205.52l-.332.714 1.507.659.366-.956c.267-.119.5-.319.633-.604l.044-.095.631-1.355c.003-.004.091-.194-.099-.282z"/><path fill="#D2A077" d="M26.348 2.443c.04-.012.06-.036.075-.058.168.108.389.272.491.543.132.351.054.627-.028.798-.066.138-.172.168-.099-.047.092-.27.143-.866-.455-1.205l-.055-.03c.001 0 .037.009.071-.001z"/><path fill="#F3D2A2" d="M11.397 20.373c-.076-.064-.202-.171-.385-.352-.129-.128-.165-.279-.165-.279-.021-.073-.105-.312-.303-.524-.117-.126-.271-.243-.459-.319l-.116-.779-1.62.284.224.999c-.156.247-.24.542-.193.854l.016.104.224 1.478s.031.207.239.176.176-.239.176-.239L8.9 20.89c.002.015.108.013.11.026l.198 1.31s.031.207.239.176c.207-.031.176-.239.176-.239l-.019-.126-.167-1.105c0 .003.104-.01.105-.009l.221 1.457s.031.207.239.176c.207-.031.176-.239.176-.239l-.22-1.457c0-.002.103-.021.102-.024l.182 1.206s.031.207.239.176c.207-.031.176-.239.176-.239l-.249-1.644c-.017-.112.057-.165.106-.164.128.001.185.189.3.309.176.183.393.237.527.152.148-.092.095-.227.056-.259z"/><path fill="#292F33" d="M25.814 3.729S23.755 8.05 23.512 8.19c-.219.126-1.719-.042-3.699.354-1.979.396-2.744-.155-4.769-.075-1.176.046-2.413.452-3.227.648-1.237.299-3.276 3.237-3.848 4.26-.443.791-.421 1.68-.327 2.372.078.578.058 1.486.82 3.41l1.719-.281s-.289-3.783-.043-4.192c.102-.169 1.323-2.119 2.303-2.473l8.188-.385s3.375-.485 4.302-1.167c.708-.521 2.497-6.251 2.497-6.251l-1.614-.681z"/><path fill="#F3D2A2" d="M15.546 5.857c.175-.172.407-.289.671-.314.613-.064 1.16.383 1.222.997l.319 3.153c.061.611-.384 1.16-.997 1.221-.615.063-1.161-.384-1.222-.997l-.32-3.153c-.035-.35.095-.676.327-.907z"/><path fill="#F3D2A2" d="M19.243 4.296c0 1.849-1.309 3.348-2.927 3.348s-2.929-1.499-2.929-3.348c0-1.848 1.311-3.347 2.929-3.347 1.618 0 2.927 1.499 2.927 3.347z"/><path fill="#FFE51E" d="M17.89 2.018s-1.14 1.07-2.349 1.255c0 0-.723 1.171-.768 1.847 0 0-.45-1.081-.81-.9-.36.18-.496.855-.18 1.305.315.451.705 1.226.363 1.003-.689-.45-.79-.768-.976-1.07-.127-.206-.425-.943-.465-2.162-.024-.721.232-2.116 1.707-2.857 1.278-.644 3.287-.315 4.231.359.945.676 1.18 2.38.594 3.056 0 0-.085-.63-.488-1.14-.226-.283-.859-.696-.859-.696z"/><path fill="#DD2E44" d="M12.407 9.474v9.253l7.083-.024s.625-2.703 1.034-4.549c.474-2.135-1.079-5.392-1.079-5.392l-1.082-.108-.212-1.011-1.056.4-.151 1.751-.456-1.666-1.548-.135-.184 1.067-2.349.414z"/><path fill="#292F33" d="M11.781 9.593s.688 2.443.385 7.5c2.228-.038 3.963-.732 3.963-.732s.146-1.919-.228-3.615c-.546-2.469-1.105-3.921-1.105-3.921l-3.015.768zm6.516-1.246s.623 3.271.484 5.224c-.14 1.953-.235 2.694-.235 2.694s.441.486 1.57.466c.467-1.222.752-3.679.695-5.183-.059-1.585-1.002-3.127-1.002-3.127l-1.512-.074zm-5.89 10.38s-.607 6.995-.982 8.307c-.334 1.168-3.799 6.742-3.799 6.742s1.646.406 3.229.094c0 0 3.163-3.836 3.99-5.688.24-.539 1.835-5.521 1.835-5.521s1.712 1.908 2.863 3.599c.728 2.003.09 7.442.09 7.442s1.483.312 2.899.042c0 0 .859-5.397.651-7.688-.033-.367-.103-1.05-.245-1.309-.619-1.123-1.963-3.231-2.822-4.172-.774-.847-.625-1.873-.625-1.873l-7.084.025z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f57a-1f3fd.svg b/public/emoji/1f57a-1f3fd.svg
index 14e536b4f604ae59ee13e9bd537f34341e06bf33..586b6c5e9ec88a74d4be842a6ba5bd9312a26ecf 100644
--- a/public/emoji/1f57a-1f3fd.svg
+++ b/public/emoji/1f57a-1f3fd.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#292F33" d="M21.826 35.661c-.154-.19-.249-.433-.249-.698-.004-.617.493-1.118 1.109-1.121l3.17-.016c.614-.001 1.117.492 1.119 1.109.004.617-.491 1.118-1.108 1.121l-3.169.017c-.35.001-.666-.159-.872-.412zm-14.506 0c-.154-.19-.248-.433-.248-.698-.004-.617.493-1.118 1.109-1.121l3.17-.016c.613-.001 1.117.492 1.119 1.109.004.617-.493 1.118-1.109 1.121l-3.169.017c-.35.001-.664-.159-.872-.412z"/><path fill="#D5AB88" d="M28.151 9.007c-.423-.35-.535-.964-.24-1.441l2.247-1.63c.499-.363 1.196-.252 1.562.247.356.501.248 1.194-.249 1.558l-1.657.991c-.323.524-1.01.69-1.535.368-.047-.03-.089-.059-.128-.093z"/><path fill="#292F33" d="M28.648 6.667l-4.044 2.58-5.079.429s-6.822.855-9.048 1.472c-3.818 1.058-1.925 3.991-1.925 3.991l2.583 4.167 1.322-1.723-1.736-3.708 4.871-.906 4.001.544 6.613-1.754 3.905-2.755-1.463-2.337z"/><path fill="#D5AB88" d="M20.336 5.354c0-1.848-1.309-3.347-2.927-3.347S14.48 3.506 14.48 5.354c0 1.433.791 2.646 1.899 3.123l.253 2.498c.062.613.608 1.06 1.222.997.613-.061 1.059-.609.997-1.221l-.238-2.353c1.014-.526 1.723-1.688 1.723-3.044z"/><path fill="#963B22" d="M18.982 3.075s-1.14 1.07-2.349 1.255c0 0-.723 1.171-.768 1.847 0 0-.45-1.081-.81-.9-.36.18-.496.855-.18 1.305.315.451.705 1.226.363 1.003-.689-.45-.79-.768-.976-1.07-.127-.206-.425-.943-.465-2.162-.024-.721.232-2.116 1.707-2.857 1.278-.644 3.287-.315 4.231.359.945.676 1.18 2.38.594 3.056 0 0-.085-.63-.488-1.14-.225-.282-.859-.696-.859-.696z"/><path fill="#DD2E44" d="M13.5 10.531s.257 3.954-.29 8.34c.968-.009 7.373-.024 7.373-.024s1.156-2.033.994-4.213c-.161-2.181-1.039-4.815-1.039-4.815l-1.082-.108-.212-1.011-1.056.4-.151 1.751-.456-1.666-1.548-.135-.185 1.066-2.348.415z"/><path fill="#292F33" d="M12.874 10.651s.689 2.443.385 7.5c2.228-.038 3.963-.732 3.963-.732s.146-1.919-.228-3.615c-.546-2.469-1.105-3.921-1.105-3.921l-3.015.768zm6.516-1.246s.623 3.271.484 5.224c-.14 1.953-.235 2.694-.235 2.694s.35.32 1.479.3c.467-1.222.843-3.514.786-5.018-.059-1.585-1.002-3.127-1.002-3.127l-1.512-.073zm-6.18 9.467s-.682 5.616-1.425 7.125c-.79 2.579-4.54 8.368-4.54 8.368l2.527.585s4.298-4.64 5.43-6.582c1.212-2.185 2.2-5.511 2.2-5.511s2.576 2.267 3.728 3.958c.727 2.003.448 8.148.448 8.148l3.028-.014s1.545-6.364.288-9.574c-.604-1.559-4.311-6.527-4.311-6.527l-7.373.024z"/><path fill="#D5AB88" d="M14.731 20.108c-.27.476-.854.692-1.376.487l-2.218-1.289 1.322-1.723 1.713.935c.573.226.854.873.629 1.447-.021.052-.044.098-.07.143z"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#292F33" d="M26.157 35.26c-.005-.034-.055-.214-.055-.214l-.057.027.004-.134c-.021-.58-.608-.51-.678-.516-.07-.006-.305.006-.596-.031-.29-.037-.57-.108-.816-.257-.287-.174-.678-.467-1.014-.663s-.758-.437-.758-.437-.367.682-1.127.654c-.409-.015-1.05-.337-1.133-.36-.11-.031-.159.031-.205.116-.046.086-.211.684-.211 1.005 0 .204.025.333.044.405l-.055-.017c-.025-.007-.049.012-.049.039v.687c0 .045.037.147.155.171.118.024 1.759.165 1.821.11s.13-.232.183-.257c.053-.024.603.094.859.155s.698.165 1.218.165 1.191-.153 1.607-.257c.415-.104.741-.243.815-.289.074-.046.053-.067.048-.102z"/><path fill="#4B545D" d="M21.19 35.405l-.41-.287c.008-.013.829-1.147 2.439-.666.092-.126.23-.324.363-.544l.428.26c-.24.396-.491.718-.501.731l-.111.142-.17-.061c-1.379-.491-2.031.415-2.038.425z"/><path fill="#292F33" d="M14.268 35.26c-.005-.034-.055-.214-.055-.214l-.057.027.004-.134c-.021-.58-.608-.51-.678-.516-.07-.006-.305.006-.596-.031s-.57-.108-.816-.257c-.287-.174-.678-.467-1.014-.663s-.758-.437-.758-.437-.367.682-1.127.654c-.409-.015-1.05-.337-1.133-.36-.11-.031-.159.031-.205.116-.046.086-.211.684-.211 1.005 0 .204.025.333.044.405l-.055-.017c-.025-.007-.049.012-.049.039v.687c0 .045.037.147.155.171.118.024 1.759.165 1.821.11s.13-.232.183-.257c.053-.024.603.094.859.155s.698.165 1.218.165 1.191-.153 1.607-.257c.415-.104.741-.243.815-.289.073-.046.053-.067.048-.102z"/><path fill="#4B545D" d="M9.3 35.406l-.409-.288c.008-.012.823-1.149 2.439-.666.091-.126.23-.324.363-.544l.428.26c-.24.396-.491.718-.501.731l-.111.142-.17-.061c-1.366-.488-2.012.388-2.039.426z"/><path fill="#D4AB88" d="M28.658 1.816c-.19-.089-.279.102-.279.102l-.378.812c.007-.014-.083-.071-.077-.082l.56-1.201s.089-.19-.102-.279-.279.102-.279.102l-.054.115-.472 1.013c.001-.003-.093-.049-.092-.051l.622-1.336s.089-.19-.102-.279c-.19-.089-.279.102-.279.102l-.622 1.336c-.001.002-.097-.039-.099-.036l.515-1.106s.089-.19-.102-.279c-.19-.089-.279.102-.279.102l-.702 1.507c-.048.103-.139.105-.179.078-.106-.072-.05-.26-.079-.424-.045-.25-.196-.415-.355-.418-.176-.003-.206.138-.192.187.028.095.073.254.126.506.037.177-.017.324-.017.324-.023.072-.085.318-.038.604.028.169.092.352.205.52l-.332.714 1.507.659.366-.956c.267-.119.5-.319.633-.604l.044-.095.631-1.355c.003-.004.091-.194-.099-.282z"/><path fill="#B78B60" d="M26.348 2.443c.04-.012.06-.036.075-.058.168.108.389.272.491.543.132.351.054.627-.028.798-.066.138-.172.168-.099-.047.092-.27.143-.866-.455-1.205l-.055-.03c.001 0 .037.009.071-.001z"/><path fill="#D4AB88" d="M11.397 20.373c-.076-.064-.202-.171-.385-.352-.129-.128-.165-.279-.165-.279-.021-.073-.105-.312-.303-.524-.117-.126-.271-.243-.459-.319l-.116-.779-1.62.284.224.999c-.156.247-.24.542-.193.854l.016.104.224 1.478s.031.207.239.176.176-.239.176-.239L8.9 20.89c.002.015.108.013.11.026l.198 1.31s.031.207.239.176c.207-.031.176-.239.176-.239l-.019-.126-.167-1.105c0 .003.104-.01.105-.009l.221 1.457s.031.207.239.176c.207-.031.176-.239.176-.239l-.22-1.457c0-.002.103-.021.102-.024l.182 1.206s.031.207.239.176c.207-.031.176-.239.176-.239l-.249-1.644c-.017-.112.057-.165.106-.164.128.001.185.189.3.309.176.183.393.237.527.152.148-.092.095-.227.056-.259z"/><path fill="#292F33" d="M25.814 3.729S23.755 8.05 23.512 8.19c-.219.126-1.719-.042-3.699.354-1.979.396-2.744-.155-4.769-.075-1.176.046-2.413.452-3.227.648-1.237.299-3.276 3.237-3.848 4.26-.443.791-.421 1.68-.327 2.372.078.578.058 1.486.82 3.41l1.719-.281s-.289-3.783-.043-4.192c.102-.169 1.323-2.119 2.303-2.473l8.188-.385s3.375-.485 4.302-1.167c.708-.521 2.497-6.251 2.497-6.251l-1.614-.681z"/><path fill="#D4AB88" d="M15.546 5.857c.175-.172.407-.289.671-.314.613-.064 1.16.383 1.222.997l.319 3.153c.061.611-.384 1.16-.997 1.221-.615.063-1.161-.384-1.222-.997l-.32-3.153c-.035-.35.095-.676.327-.907z"/><path fill="#D4AB88" d="M19.243 4.296c0 1.849-1.309 3.348-2.927 3.348s-2.929-1.499-2.929-3.348c0-1.848 1.311-3.347 2.929-3.347 1.618 0 2.927 1.499 2.927 3.347z"/><path fill="#963B22" d="M17.89 2.018s-1.14 1.07-2.349 1.255c0 0-.723 1.171-.768 1.847 0 0-.45-1.081-.81-.9-.36.18-.496.855-.18 1.305.315.451.705 1.226.363 1.003-.689-.45-.79-.768-.976-1.07-.127-.206-.425-.943-.465-2.162-.024-.721.232-2.116 1.707-2.857 1.278-.644 3.287-.315 4.231.359.945.676 1.18 2.38.594 3.056 0 0-.085-.63-.488-1.14-.226-.283-.859-.696-.859-.696z"/><path fill="#DD2E44" d="M12.407 9.474v9.253l7.083-.024s.625-2.703 1.034-4.549c.474-2.135-1.079-5.392-1.079-5.392l-1.082-.108-.212-1.011-1.056.4-.151 1.751-.456-1.666-1.548-.135-.184 1.067-2.349.414z"/><path fill="#292F33" d="M11.781 9.593s.688 2.443.385 7.5c2.228-.038 3.963-.732 3.963-.732s.146-1.919-.228-3.615c-.546-2.469-1.105-3.921-1.105-3.921l-3.015.768zm6.516-1.246s.623 3.271.484 5.224c-.14 1.953-.235 2.694-.235 2.694s.441.486 1.57.466c.467-1.222.752-3.679.695-5.183-.059-1.585-1.002-3.127-1.002-3.127l-1.512-.074zm-5.89 10.38s-.607 6.995-.982 8.307c-.334 1.168-3.799 6.742-3.799 6.742s1.646.406 3.229.094c0 0 3.163-3.836 3.99-5.688.24-.539 1.835-5.521 1.835-5.521s1.712 1.908 2.863 3.599c.728 2.003.09 7.442.09 7.442s1.483.312 2.899.042c0 0 .859-5.397.651-7.688-.033-.367-.103-1.05-.245-1.309-.619-1.123-1.963-3.231-2.822-4.172-.774-.847-.625-1.873-.625-1.873l-7.084.025z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f57a-1f3fe.svg b/public/emoji/1f57a-1f3fe.svg
index 6697af06fc8c27ceae931dd54b7838350920da25..02824e9cbf13d28f5a0d2ffeb4e03f7c5afda1c3 100644
--- a/public/emoji/1f57a-1f3fe.svg
+++ b/public/emoji/1f57a-1f3fe.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#292F33" d="M21.826 35.661c-.154-.19-.249-.433-.249-.698-.004-.617.493-1.118 1.109-1.121l3.17-.016c.614-.001 1.117.492 1.119 1.109.004.617-.491 1.118-1.108 1.121l-3.169.017c-.35.001-.666-.159-.872-.412zm-14.506 0c-.154-.19-.248-.433-.248-.698-.004-.617.493-1.118 1.109-1.121l3.17-.016c.613-.001 1.117.492 1.119 1.109.004.617-.493 1.118-1.109 1.121l-3.169.017c-.35.001-.664-.159-.872-.412z"/><path fill="#AF7E57" d="M28.151 9.007c-.423-.35-.535-.964-.24-1.441l2.247-1.63c.499-.363 1.196-.252 1.562.247.356.501.248 1.194-.249 1.558l-1.657.991c-.323.524-1.01.69-1.535.368-.047-.03-.089-.059-.128-.093z"/><path fill="#292F33" d="M28.648 6.667l-4.044 2.58-5.079.429s-6.822.855-9.048 1.472c-3.818 1.058-1.925 3.991-1.925 3.991l2.583 4.167 1.322-1.723-1.736-3.708 4.871-.906 4.001.544 6.613-1.754 3.905-2.755-1.463-2.337z"/><path fill="#AF7E57" d="M20.336 5.354c0-1.848-1.309-3.347-2.927-3.347S14.48 3.506 14.48 5.354c0 1.433.791 2.646 1.899 3.123l.253 2.498c.062.613.608 1.06 1.222.997.613-.061 1.059-.609.997-1.221l-.238-2.353c1.014-.526 1.723-1.688 1.723-3.044z"/><path fill="#60352A" d="M18.982 3.075s-1.14 1.07-2.349 1.255c0 0-.723 1.171-.768 1.847 0 0-.45-1.081-.81-.9-.36.18-.496.855-.18 1.305.315.451.705 1.226.363 1.003-.689-.45-.79-.768-.976-1.07-.127-.206-.425-.943-.465-2.162-.024-.721.232-2.116 1.707-2.857 1.278-.644 3.287-.315 4.231.359.945.676 1.18 2.38.594 3.056 0 0-.085-.63-.488-1.14-.225-.282-.859-.696-.859-.696z"/><path fill="#DD2E44" d="M13.5 10.531s.257 3.954-.29 8.34c.968-.009 7.373-.024 7.373-.024s1.156-2.033.994-4.213c-.161-2.181-1.039-4.815-1.039-4.815l-1.082-.108-.212-1.011-1.056.4-.151 1.751-.456-1.666-1.548-.135-.185 1.066-2.348.415z"/><path fill="#292F33" d="M12.874 10.651s.689 2.443.385 7.5c2.228-.038 3.963-.732 3.963-.732s.146-1.919-.228-3.615c-.546-2.469-1.105-3.921-1.105-3.921l-3.015.768zm6.516-1.246s.623 3.271.484 5.224c-.14 1.953-.235 2.694-.235 2.694s.35.32 1.479.3c.467-1.222.843-3.514.786-5.018-.059-1.585-1.002-3.127-1.002-3.127l-1.512-.073zm-6.18 9.467s-.682 5.616-1.425 7.125c-.79 2.579-4.54 8.368-4.54 8.368l2.527.585s4.298-4.64 5.43-6.582c1.212-2.185 2.2-5.511 2.2-5.511s2.576 2.267 3.728 3.958c.727 2.003.448 8.148.448 8.148l3.028-.014s1.545-6.364.288-9.574c-.604-1.559-4.311-6.527-4.311-6.527l-7.373.024z"/><path fill="#AF7E57" d="M14.731 20.108c-.27.476-.854.692-1.376.487l-2.218-1.289 1.322-1.723 1.713.935c.573.226.854.873.629 1.447-.021.052-.044.098-.07.143z"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#292F33" d="M26.157 35.26c-.005-.034-.055-.214-.055-.214l-.057.027.004-.134c-.021-.58-.608-.51-.678-.516-.07-.006-.305.006-.596-.031-.29-.037-.57-.108-.816-.257-.287-.174-.678-.467-1.014-.663s-.758-.437-.758-.437-.367.682-1.127.654c-.409-.015-1.05-.337-1.133-.36-.11-.031-.159.031-.205.116-.046.086-.211.684-.211 1.005 0 .204.025.333.044.405l-.055-.017c-.025-.007-.049.012-.049.039v.687c0 .045.037.147.155.171.118.024 1.759.165 1.821.11s.13-.232.183-.257c.053-.024.603.094.859.155s.698.165 1.218.165 1.191-.153 1.607-.257c.415-.104.741-.243.815-.289.074-.046.053-.067.048-.102z"/><path fill="#4B545D" d="M21.19 35.405l-.41-.287c.008-.013.829-1.147 2.439-.666.092-.126.23-.324.363-.544l.428.26c-.24.396-.491.718-.501.731l-.111.142-.17-.061c-1.379-.491-2.031.415-2.038.425z"/><path fill="#292F33" d="M14.268 35.26c-.005-.034-.055-.214-.055-.214l-.057.027.004-.134c-.021-.58-.608-.51-.678-.516-.07-.006-.305.006-.596-.031s-.57-.108-.816-.257c-.287-.174-.678-.467-1.014-.663s-.758-.437-.758-.437-.367.682-1.127.654c-.409-.015-1.05-.337-1.133-.36-.11-.031-.159.031-.205.116-.046.086-.211.684-.211 1.005 0 .204.025.333.044.405l-.055-.017c-.025-.007-.049.012-.049.039v.687c0 .045.037.147.155.171.118.024 1.759.165 1.821.11s.13-.232.183-.257c.053-.024.603.094.859.155s.698.165 1.218.165 1.191-.153 1.607-.257c.415-.104.741-.243.815-.289.073-.046.053-.067.048-.102z"/><path fill="#4B545D" d="M9.3 35.406l-.409-.288c.008-.012.823-1.149 2.439-.666.091-.126.23-.324.363-.544l.428.26c-.24.396-.491.718-.501.731l-.111.142-.17-.061c-1.366-.488-2.012.388-2.039.426z"/><path fill="#AF7E57" d="M28.658 1.816c-.19-.089-.279.102-.279.102l-.378.812c.007-.014-.083-.071-.077-.082l.56-1.201s.089-.19-.102-.279-.279.102-.279.102l-.054.115-.472 1.013c.001-.003-.093-.049-.092-.051l.622-1.336s.089-.19-.102-.279c-.19-.089-.279.102-.279.102l-.622 1.336c-.001.002-.097-.039-.099-.036l.515-1.106s.089-.19-.102-.279c-.19-.089-.279.102-.279.102l-.702 1.507c-.048.103-.139.105-.179.078-.106-.072-.05-.26-.079-.424-.045-.25-.196-.415-.355-.418-.176-.003-.206.138-.192.187.028.095.073.254.126.506.037.177-.017.324-.017.324-.023.072-.085.318-.038.604.028.169.092.352.205.52l-.332.714 1.507.659.366-.956c.267-.119.5-.319.633-.604l.044-.095.631-1.355c.003-.004.091-.194-.099-.282z"/><path fill="#90603E" d="M26.348 2.443c.04-.012.06-.036.075-.058.168.108.389.272.491.543.132.351.054.627-.028.798-.066.138-.172.168-.099-.047.092-.27.143-.866-.455-1.205l-.055-.03c.001 0 .037.009.071-.001z"/><path fill="#AF7E57" d="M11.397 20.373c-.076-.064-.202-.171-.385-.352-.129-.128-.165-.279-.165-.279-.021-.073-.105-.312-.303-.524-.117-.126-.271-.243-.459-.319l-.116-.779-1.62.284.224.999c-.156.247-.24.542-.193.854l.016.104.224 1.478s.031.207.239.176.176-.239.176-.239L8.9 20.89c.002.015.108.013.11.026l.198 1.31s.031.207.239.176c.207-.031.176-.239.176-.239l-.019-.126-.167-1.105c0 .003.104-.01.105-.009l.221 1.457s.031.207.239.176c.207-.031.176-.239.176-.239l-.22-1.457c0-.002.103-.021.102-.024l.182 1.206s.031.207.239.176c.207-.031.176-.239.176-.239l-.249-1.644c-.017-.112.057-.165.106-.164.128.001.185.189.3.309.176.183.393.237.527.152.148-.092.095-.227.056-.259z"/><path fill="#292F33" d="M25.814 3.729S23.755 8.05 23.512 8.19c-.219.126-1.719-.042-3.699.354-1.979.396-2.744-.155-4.769-.075-1.176.046-2.413.452-3.227.648-1.237.299-3.276 3.237-3.848 4.26-.443.791-.421 1.68-.327 2.372.078.578.058 1.486.82 3.41l1.719-.281s-.289-3.783-.043-4.192c.102-.169 1.323-2.119 2.303-2.473l8.188-.385s3.375-.485 4.302-1.167c.708-.521 2.497-6.251 2.497-6.251l-1.614-.681z"/><path fill="#AF7E57" d="M15.546 5.857c.175-.172.407-.289.671-.314.613-.064 1.16.383 1.222.997l.319 3.153c.061.611-.384 1.16-.997 1.221-.615.063-1.161-.384-1.222-.997l-.32-3.153c-.035-.35.095-.676.327-.907z"/><path fill="#AF7E57" d="M19.243 4.296c0 1.849-1.309 3.348-2.927 3.348s-2.929-1.499-2.929-3.348c0-1.848 1.311-3.347 2.929-3.347 1.618 0 2.927 1.499 2.927 3.347z"/><path fill="#60352A" d="M17.89 2.018s-1.14 1.07-2.349 1.255c0 0-.723 1.171-.768 1.847 0 0-.45-1.081-.81-.9-.36.18-.496.855-.18 1.305.315.451.705 1.226.363 1.003-.689-.45-.79-.768-.976-1.07-.127-.206-.425-.943-.465-2.162-.024-.721.232-2.116 1.707-2.857 1.278-.644 3.287-.315 4.231.359.945.676 1.18 2.38.594 3.056 0 0-.085-.63-.488-1.14-.226-.283-.859-.696-.859-.696z"/><path fill="#DD2E44" d="M12.407 9.474v9.253l7.083-.024s.625-2.703 1.034-4.549c.474-2.135-1.079-5.392-1.079-5.392l-1.082-.108-.212-1.011-1.056.4-.151 1.751-.456-1.666-1.548-.135-.184 1.067-2.349.414z"/><path fill="#292F33" d="M11.781 9.593s.688 2.443.385 7.5c2.228-.038 3.963-.732 3.963-.732s.146-1.919-.228-3.615c-.546-2.469-1.105-3.921-1.105-3.921l-3.015.768zm6.516-1.246s.623 3.271.484 5.224c-.14 1.953-.235 2.694-.235 2.694s.441.486 1.57.466c.467-1.222.752-3.679.695-5.183-.059-1.585-1.002-3.127-1.002-3.127l-1.512-.074zm-5.89 10.38s-.607 6.995-.982 8.307c-.334 1.168-3.799 6.742-3.799 6.742s1.646.406 3.229.094c0 0 3.163-3.836 3.99-5.688.24-.539 1.835-5.521 1.835-5.521s1.712 1.908 2.863 3.599c.728 2.003.09 7.442.09 7.442s1.483.312 2.899.042c0 0 .859-5.397.651-7.688-.033-.367-.103-1.05-.245-1.309-.619-1.123-1.963-3.231-2.822-4.172-.774-.847-.625-1.873-.625-1.873l-7.084.025z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f57a-1f3ff.svg b/public/emoji/1f57a-1f3ff.svg
index e8e68b6cbe50ceeabcff9568e027beb83a2f86fe..f43787a0f2dc02e5f42e53d2a54b8538dc7296b4 100644
--- a/public/emoji/1f57a-1f3ff.svg
+++ b/public/emoji/1f57a-1f3ff.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#292F33" d="M21.826 35.661c-.154-.19-.249-.433-.249-.698-.004-.617.493-1.118 1.109-1.121l3.17-.016c.614-.001 1.117.492 1.119 1.109.004.617-.491 1.118-1.108 1.121l-3.169.017c-.35.001-.666-.159-.872-.412zm-14.506 0c-.154-.19-.248-.433-.248-.698-.004-.617.493-1.118 1.109-1.121l3.17-.016c.613-.001 1.117.492 1.119 1.109.004.617-.493 1.118-1.109 1.121l-3.169.017c-.35.001-.664-.159-.872-.412z"/><path fill="#7C533E" d="M28.151 9.007c-.423-.35-.535-.964-.24-1.441l2.247-1.63c.499-.363 1.196-.252 1.562.247.356.501.248 1.194-.249 1.558l-1.657.991c-.323.524-1.01.69-1.535.368-.047-.03-.089-.059-.128-.093z"/><path fill="#292F33" d="M28.648 6.667l-4.044 2.58-5.079.429s-6.822.855-9.048 1.472c-3.818 1.058-1.925 3.991-1.925 3.991l2.583 4.167 1.322-1.723-1.736-3.708 4.871-.906 4.001.544 6.613-1.754 3.905-2.755-1.463-2.337z"/><path fill="#7C533E" d="M20.336 5.354c0-1.848-1.309-3.347-2.927-3.347S14.48 3.506 14.48 5.354c0 1.433.791 2.646 1.899 3.123l.253 2.498c.062.613.608 1.06 1.222.997.613-.061 1.059-.609.997-1.221l-.238-2.353c1.014-.526 1.723-1.688 1.723-3.044z"/><path fill="#0B0200" d="M18.982 3.075s-1.14 1.07-2.349 1.255c0 0-.723 1.171-.768 1.847 0 0-.45-1.081-.81-.9-.36.18-.496.855-.18 1.305.315.451.705 1.226.363 1.003-.689-.45-.79-.768-.976-1.07-.127-.206-.425-.943-.465-2.162-.024-.721.232-2.116 1.707-2.857 1.278-.644 3.287-.315 4.231.359.945.676 1.18 2.38.594 3.056 0 0-.085-.63-.488-1.14-.225-.282-.859-.696-.859-.696z"/><path fill="#DD2E44" d="M13.5 10.531s.257 3.954-.29 8.34c.968-.009 7.373-.024 7.373-.024s1.156-2.033.994-4.213c-.161-2.181-1.039-4.815-1.039-4.815l-1.082-.108-.212-1.011-1.056.4-.151 1.751-.456-1.666-1.548-.135-.185 1.066-2.348.415z"/><path fill="#292F33" d="M12.874 10.651s.689 2.443.385 7.5c2.228-.038 3.963-.732 3.963-.732s.146-1.919-.228-3.615c-.546-2.469-1.105-3.921-1.105-3.921l-3.015.768zm6.516-1.246s.623 3.271.484 5.224c-.14 1.953-.235 2.694-.235 2.694s.35.32 1.479.3c.467-1.222.843-3.514.786-5.018-.059-1.585-1.002-3.127-1.002-3.127l-1.512-.073zm-6.18 9.467s-.682 5.616-1.425 7.125c-.79 2.579-4.54 8.368-4.54 8.368l2.527.585s4.298-4.64 5.43-6.582c1.212-2.185 2.2-5.511 2.2-5.511s2.576 2.267 3.728 3.958c.727 2.003.448 8.148.448 8.148l3.028-.014s1.545-6.364.288-9.574c-.604-1.559-4.311-6.527-4.311-6.527l-7.373.024z"/><path fill="#7C533E" d="M14.731 20.108c-.27.476-.854.692-1.376.487l-2.218-1.289 1.322-1.723 1.713.935c.573.226.854.873.629 1.447-.021.052-.044.098-.07.143z"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#292F33" d="M26.157 35.26c-.005-.034-.055-.214-.055-.214l-.057.027.004-.134c-.021-.58-.608-.51-.678-.516-.07-.006-.305.006-.596-.031-.29-.037-.57-.108-.816-.257-.287-.174-.678-.467-1.014-.663s-.758-.437-.758-.437-.367.682-1.127.654c-.409-.015-1.05-.337-1.133-.36-.11-.031-.159.031-.205.116-.046.086-.211.684-.211 1.005 0 .204.025.333.044.405l-.055-.017c-.025-.007-.049.012-.049.039v.687c0 .045.037.147.155.171.118.024 1.759.165 1.821.11s.13-.232.183-.257c.053-.024.603.094.859.155s.698.165 1.218.165 1.191-.153 1.607-.257c.415-.104.741-.243.815-.289.074-.046.053-.067.048-.102z"/><path fill="#4B545D" d="M21.19 35.405l-.41-.287c.008-.013.829-1.147 2.439-.666.092-.126.23-.324.363-.544l.428.26c-.24.396-.491.718-.501.731l-.111.142-.17-.061c-1.379-.491-2.031.415-2.038.425z"/><path fill="#292F33" d="M14.268 35.26c-.005-.034-.055-.214-.055-.214l-.057.027.004-.134c-.021-.58-.608-.51-.678-.516-.07-.006-.305.006-.596-.031s-.57-.108-.816-.257c-.287-.174-.678-.467-1.014-.663s-.758-.437-.758-.437-.367.682-1.127.654c-.409-.015-1.05-.337-1.133-.36-.11-.031-.159.031-.205.116-.046.086-.211.684-.211 1.005 0 .204.025.333.044.405l-.055-.017c-.025-.007-.049.012-.049.039v.687c0 .045.037.147.155.171.118.024 1.759.165 1.821.11s.13-.232.183-.257c.053-.024.603.094.859.155s.698.165 1.218.165 1.191-.153 1.607-.257c.415-.104.741-.243.815-.289.073-.046.053-.067.048-.102z"/><path fill="#4B545D" d="M9.3 35.406l-.409-.288c.008-.012.823-1.149 2.439-.666.091-.126.23-.324.363-.544l.428.26c-.24.396-.491.718-.501.731l-.111.142-.17-.061c-1.366-.488-2.012.388-2.039.426z"/><path fill="#7C533E" d="M28.658 1.816c-.19-.089-.279.102-.279.102l-.378.812c.007-.014-.083-.071-.077-.082l.56-1.201s.089-.19-.102-.279-.279.102-.279.102l-.054.115-.472 1.013c.001-.003-.093-.049-.092-.051l.622-1.336s.089-.19-.102-.279c-.19-.089-.279.102-.279.102l-.622 1.336c-.001.002-.097-.039-.099-.036l.515-1.106s.089-.19-.102-.279c-.19-.089-.279.102-.279.102l-.702 1.507c-.048.103-.139.105-.179.078-.106-.072-.05-.26-.079-.424-.045-.25-.196-.415-.355-.418-.176-.003-.206.138-.192.187.028.095.073.254.126.506.037.177-.017.324-.017.324-.023.072-.085.318-.038.604.028.169.092.352.205.52l-.332.714 1.507.659.366-.956c.267-.119.5-.319.633-.604l.044-.095.631-1.355c.003-.004.091-.194-.099-.282z"/><path fill="#583529" d="M26.348 2.443c.04-.012.06-.036.075-.058.168.108.389.272.491.543.132.351.054.627-.028.798-.066.138-.172.168-.099-.047.092-.27.143-.866-.455-1.205l-.055-.03c.001 0 .037.009.071-.001z"/><path fill="#7C533E" d="M11.397 20.373c-.076-.064-.202-.171-.385-.352-.129-.128-.165-.279-.165-.279-.021-.073-.105-.312-.303-.524-.117-.126-.271-.243-.459-.319l-.116-.779-1.62.284.224.999c-.156.247-.24.542-.193.854l.016.104.224 1.478s.031.207.239.176.176-.239.176-.239L8.9 20.89c.002.015.108.013.11.026l.198 1.31s.031.207.239.176c.207-.031.176-.239.176-.239l-.019-.126-.167-1.105c0 .003.104-.01.105-.009l.221 1.457s.031.207.239.176c.207-.031.176-.239.176-.239l-.22-1.457c0-.002.103-.021.102-.024l.182 1.206s.031.207.239.176c.207-.031.176-.239.176-.239l-.249-1.644c-.017-.112.057-.165.106-.164.128.001.185.189.3.309.176.183.393.237.527.152.148-.092.095-.227.056-.259z"/><path fill="#292F33" d="M25.814 3.729S23.755 8.05 23.512 8.19c-.219.126-1.719-.042-3.699.354-1.979.396-2.744-.155-4.769-.075-1.176.046-2.413.452-3.227.648-1.237.299-3.276 3.237-3.848 4.26-.443.791-.421 1.68-.327 2.372.078.578.058 1.486.82 3.41l1.719-.281s-.289-3.783-.043-4.192c.102-.169 1.323-2.119 2.303-2.473l8.188-.385s3.375-.485 4.302-1.167c.708-.521 2.497-6.251 2.497-6.251l-1.614-.681z"/><path fill="#7C533E" d="M15.546 5.857c.175-.172.407-.289.671-.314.613-.064 1.16.383 1.222.997l.319 3.153c.061.611-.384 1.16-.997 1.221-.615.063-1.161-.384-1.222-.997l-.32-3.153c-.035-.35.095-.676.327-.907z"/><path fill="#7C533E" d="M19.243 4.296c0 1.849-1.309 3.348-2.927 3.348s-2.929-1.499-2.929-3.348c0-1.848 1.311-3.347 2.929-3.347 1.618 0 2.927 1.499 2.927 3.347z"/><path fill="#0B0200" d="M17.89 2.018s-1.14 1.07-2.349 1.255c0 0-.723 1.171-.768 1.847 0 0-.45-1.081-.81-.9-.36.18-.496.855-.18 1.305.315.451.705 1.226.363 1.003-.689-.45-.79-.768-.976-1.07-.127-.206-.425-.943-.465-2.162-.024-.721.232-2.116 1.707-2.857 1.278-.644 3.287-.315 4.231.359.945.676 1.18 2.38.594 3.056 0 0-.085-.63-.488-1.14-.226-.283-.859-.696-.859-.696z"/><path fill="#DD2E44" d="M12.407 9.474v9.253l7.083-.024s.625-2.703 1.034-4.549c.474-2.135-1.079-5.392-1.079-5.392l-1.082-.108-.212-1.011-1.056.4-.151 1.751-.456-1.666-1.548-.135-.184 1.067-2.349.414z"/><path fill="#292F33" d="M11.781 9.593s.688 2.443.385 7.5c2.228-.038 3.963-.732 3.963-.732s.146-1.919-.228-3.615c-.546-2.469-1.105-3.921-1.105-3.921l-3.015.768zm6.516-1.246s.623 3.271.484 5.224c-.14 1.953-.235 2.694-.235 2.694s.441.486 1.57.466c.467-1.222.752-3.679.695-5.183-.059-1.585-1.002-3.127-1.002-3.127l-1.512-.074zm-5.89 10.38s-.607 6.995-.982 8.307c-.334 1.168-3.799 6.742-3.799 6.742s1.646.406 3.229.094c0 0 3.163-3.836 3.99-5.688.24-.539 1.835-5.521 1.835-5.521s1.712 1.908 2.863 3.599c.728 2.003.09 7.442.09 7.442s1.483.312 2.899.042c0 0 .859-5.397.651-7.688-.033-.367-.103-1.05-.245-1.309-.619-1.123-1.963-3.231-2.822-4.172-.774-.847-.625-1.873-.625-1.873l-7.084.025z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f57a.svg b/public/emoji/1f57a.svg
index 6597b5ce1873c4a45ab1aad2f7bf36b33caf1618..e63c1ec8464b5b3e255ec89f0906e8beb0a48a31 100644
--- a/public/emoji/1f57a.svg
+++ b/public/emoji/1f57a.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#292F33" d="M21.826 35.661c-.154-.19-.249-.433-.249-.698-.004-.617.493-1.118 1.109-1.121l3.17-.016c.614-.001 1.117.492 1.119 1.109.004.617-.491 1.118-1.108 1.121l-3.169.017c-.35.001-.666-.159-.872-.412zm-14.506 0c-.154-.19-.248-.433-.248-.698-.004-.617.493-1.118 1.109-1.121l3.17-.016c.613-.001 1.117.492 1.119 1.109.004.617-.493 1.118-1.109 1.121l-3.169.017c-.35.001-.664-.159-.872-.412z"/><path fill="#FFDC5D" d="M28.151 9.007c-.423-.35-.535-.964-.24-1.441l2.247-1.63c.499-.363 1.196-.252 1.562.247.356.501.248 1.194-.249 1.558l-1.657.991c-.323.524-1.01.69-1.535.368-.047-.03-.089-.059-.128-.093z"/><path fill="#292F33" d="M28.648 6.667l-4.044 2.58-5.079.429s-6.822.855-9.048 1.472c-3.818 1.058-1.925 3.991-1.925 3.991l2.583 4.167 1.322-1.723-1.736-3.708 4.871-.906 4.001.544 6.613-1.754 3.905-2.755-1.463-2.337z"/><path fill="#FFDC5D" d="M16.639 6.915c.175-.172.407-.289.671-.314.613-.064 1.16.383 1.222.997l.319 3.153c.062.611-.384 1.16-.997 1.221-.615.063-1.161-.384-1.222-.997l-.32-3.153c-.035-.35.094-.676.327-.907z"/><path fill="#FFDC5D" d="M20.336 5.354c0 1.849-1.309 3.348-2.927 3.348S14.48 7.203 14.48 5.354c0-1.848 1.311-3.347 2.929-3.347 1.617-.001 2.927 1.498 2.927 3.347z"/><path fill="#FFAC33" d="M18.982 3.075s-1.14 1.07-2.349 1.255c0 0-.723 1.171-.768 1.847 0 0-.45-1.081-.81-.9-.36.18-.496.855-.18 1.305.315.451.705 1.226.363 1.003-.689-.45-.79-.768-.976-1.07-.127-.206-.425-.943-.465-2.162-.024-.721.232-2.116 1.707-2.857 1.278-.644 3.287-.315 4.231.359.945.676 1.18 2.38.594 3.056 0 0-.085-.63-.488-1.14-.225-.282-.859-.696-.859-.696z"/><path fill="#DD2E44" d="M13.5 10.531s.257 3.954-.29 8.34c.968-.009 7.373-.024 7.373-.024s1.156-2.033.994-4.213c-.161-2.181-1.039-4.815-1.039-4.815l-1.082-.108-.212-1.011-1.056.4-.151 1.751-.456-1.666-1.548-.135-.185 1.066-2.348.415z"/><path fill="#292F33" d="M12.874 10.651s.689 2.443.385 7.5c2.228-.038 3.963-.732 3.963-.732s.146-1.919-.228-3.615c-.546-2.469-1.105-3.921-1.105-3.921l-3.015.768zm6.516-1.246s.623 3.271.484 5.224c-.14 1.953-.235 2.694-.235 2.694s.35.32 1.479.3c.467-1.222.843-3.514.786-5.018-.059-1.585-1.002-3.127-1.002-3.127l-1.512-.073zm-6.18 9.467s-.682 5.616-1.425 7.125c-.79 2.579-4.54 8.368-4.54 8.368l2.527.585s4.298-4.64 5.43-6.582c1.212-2.185 2.2-5.511 2.2-5.511s2.576 2.267 3.728 3.958c.727 2.003.448 8.148.448 8.148l3.028-.014s1.545-6.364.288-9.574c-.604-1.559-4.311-6.527-4.311-6.527l-7.373.024z"/><path fill="#FFDC5D" d="M14.731 20.108c-.27.476-.854.692-1.376.487l-2.218-1.289 1.322-1.723 1.713.935c.573.226.854.873.629 1.447-.021.052-.044.098-.07.143z"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#292F33" d="M26.157 35.26c-.005-.034-.055-.214-.055-.214l-.057.027.004-.134c-.021-.58-.608-.51-.678-.516-.07-.006-.305.006-.596-.031-.29-.037-.57-.108-.816-.257-.287-.174-.678-.467-1.014-.663s-.758-.437-.758-.437-.367.682-1.127.654c-.409-.015-1.05-.337-1.133-.36-.11-.031-.159.031-.205.116-.046.086-.211.684-.211 1.005 0 .204.025.333.044.405l-.055-.017c-.025-.007-.049.012-.049.039v.687c0 .045.037.147.155.171.118.024 1.759.165 1.821.11s.13-.232.183-.257c.053-.024.603.094.859.155s.698.165 1.218.165 1.191-.153 1.607-.257c.415-.104.741-.243.815-.289.074-.046.053-.067.048-.102z"/><path fill="#4B545D" d="M21.19 35.405l-.41-.287c.008-.013.829-1.147 2.439-.666.092-.126.23-.324.363-.544l.428.26c-.24.396-.491.718-.501.731l-.111.142-.17-.061c-1.379-.491-2.031.415-2.038.425z"/><path fill="#292F33" d="M14.268 35.26c-.005-.034-.055-.214-.055-.214l-.057.027.004-.134c-.021-.58-.608-.51-.678-.516-.07-.006-.305.006-.596-.031s-.57-.108-.816-.257c-.287-.174-.678-.467-1.014-.663s-.758-.437-.758-.437-.367.682-1.127.654c-.409-.015-1.05-.337-1.133-.36-.11-.031-.159.031-.205.116-.046.086-.211.684-.211 1.005 0 .204.025.333.044.405l-.055-.017c-.025-.007-.049.012-.049.039v.687c0 .045.037.147.155.171.118.024 1.759.165 1.821.11s.13-.232.183-.257c.053-.024.603.094.859.155s.698.165 1.218.165 1.191-.153 1.607-.257c.415-.104.741-.243.815-.289.073-.046.053-.067.048-.102z"/><path fill="#4B545D" d="M9.3 35.406l-.409-.288c.008-.012.823-1.149 2.439-.666.091-.126.23-.324.363-.544l.428.26c-.24.396-.491.718-.501.731l-.111.142-.17-.061c-1.366-.488-2.012.388-2.039.426z"/><path fill="#FFDC5D" d="M28.658 1.816c-.19-.089-.279.102-.279.102l-.378.812c.007-.014-.083-.071-.077-.082l.56-1.201s.089-.19-.102-.279-.279.102-.279.102l-.054.115-.472 1.013c.001-.003-.093-.049-.092-.051l.622-1.336s.089-.19-.102-.279c-.19-.089-.279.102-.279.102l-.622 1.336c-.001.002-.097-.039-.099-.036l.515-1.106s.089-.19-.102-.279c-.19-.089-.279.102-.279.102l-.702 1.507c-.048.103-.139.105-.179.078-.106-.072-.05-.26-.079-.424-.045-.25-.196-.415-.355-.418-.176-.003-.206.138-.192.187.028.095.073.254.126.506.037.177-.017.324-.017.324-.023.072-.085.318-.038.604.028.169.092.352.205.52l-.332.714 1.507.659.366-.956c.267-.119.5-.319.633-.604l.044-.095.631-1.355c.003-.004.091-.194-.099-.282z"/><path fill="#EF9645" d="M26.348 2.443c.04-.012.06-.036.075-.058.168.108.389.272.491.543.132.351.054.627-.028.798-.066.138-.172.168-.099-.047.092-.27.143-.866-.455-1.205l-.055-.03c.001 0 .037.009.071-.001z"/><path fill="#FFDC5D" d="M11.397 20.373c-.076-.064-.202-.171-.385-.352-.129-.128-.165-.279-.165-.279-.021-.073-.105-.312-.303-.524-.117-.126-.271-.243-.459-.319l-.116-.779-1.62.284.224.999c-.156.247-.24.542-.193.854l.016.104.224 1.478s.031.207.239.176.176-.239.176-.239L8.9 20.89c.002.015.108.013.11.026l.198 1.31s.031.207.239.176c.207-.031.176-.239.176-.239l-.019-.126-.167-1.105c0 .003.104-.01.105-.009l.221 1.457s.031.207.239.176c.207-.031.176-.239.176-.239l-.22-1.457c0-.002.103-.021.102-.024l.182 1.206s.031.207.239.176c.207-.031.176-.239.176-.239l-.249-1.644c-.017-.112.057-.165.106-.164.128.001.185.189.3.309.176.183.393.237.527.152.148-.092.095-.227.056-.259z"/><path fill="#292F33" d="M25.814 3.729S23.755 8.05 23.512 8.19c-.219.126-1.719-.042-3.699.354-1.979.396-2.744-.155-4.769-.075-1.176.046-2.413.452-3.227.648-1.237.299-3.276 3.237-3.848 4.26-.443.791-.421 1.68-.327 2.372.078.578.058 1.486.82 3.41l1.719-.281s-.289-3.783-.043-4.192c.102-.169 1.323-2.119 2.303-2.473l8.188-.385s3.375-.485 4.302-1.167c.708-.521 2.497-6.251 2.497-6.251l-1.614-.681z"/><path fill="#FFDC5D" d="M15.546 5.857c.175-.172.407-.289.671-.314.613-.064 1.16.383 1.222.997l.319 3.153c.061.611-.384 1.16-.997 1.221-.615.063-1.161-.384-1.222-.997l-.32-3.153c-.035-.35.095-.676.327-.907z"/><path fill="#FFDC5D" d="M19.243 4.296c0 1.849-1.309 3.348-2.927 3.348s-2.929-1.499-2.929-3.348c0-1.848 1.311-3.347 2.929-3.347 1.618 0 2.927 1.499 2.927 3.347z"/><path fill="#FFAC33" d="M17.89 2.018s-1.14 1.07-2.349 1.255c0 0-.723 1.171-.768 1.847 0 0-.45-1.081-.81-.9-.36.18-.496.855-.18 1.305.315.451.705 1.226.363 1.003-.689-.45-.79-.768-.976-1.07-.127-.206-.425-.943-.465-2.162-.024-.721.232-2.116 1.707-2.857 1.278-.644 3.287-.315 4.231.359.945.676 1.18 2.38.594 3.056 0 0-.085-.63-.488-1.14-.226-.283-.859-.696-.859-.696z"/><path fill="#DD2E44" d="M12.407 9.474v9.253l7.083-.024s.625-2.703 1.034-4.549c.474-2.135-1.079-5.392-1.079-5.392l-1.082-.108-.212-1.011-1.056.4-.151 1.751-.456-1.666-1.548-.135-.184 1.067-2.349.414z"/><path fill="#292F33" d="M11.781 9.593s.688 2.443.385 7.5c2.228-.038 3.963-.732 3.963-.732s.146-1.919-.228-3.615c-.546-2.469-1.105-3.921-1.105-3.921l-3.015.768zm6.516-1.246s.623 3.271.484 5.224c-.14 1.953-.235 2.694-.235 2.694s.441.486 1.57.466c.467-1.222.752-3.679.695-5.183-.059-1.585-1.002-3.127-1.002-3.127l-1.512-.074zm-5.89 10.38s-.607 6.995-.982 8.307c-.334 1.168-3.799 6.742-3.799 6.742s1.646.406 3.229.094c0 0 3.163-3.836 3.99-5.688.24-.539 1.835-5.521 1.835-5.521s1.712 1.908 2.863 3.599c.728 2.003.09 7.442.09 7.442s1.483.312 2.899.042c0 0 .859-5.397.651-7.688-.033-.367-.103-1.05-.245-1.309-.619-1.123-1.963-3.231-2.822-4.172-.774-.847-.625-1.873-.625-1.873l-7.084.025z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f58a.svg b/public/emoji/1f58a.svg
index ae22c0984221d97b2c67a75c9aa7e12ec5f475e7..4e791e6ac2b5ae48df6067412012e38a77c92cb6 100644
--- a/public/emoji/1f58a.svg
+++ b/public/emoji/1f58a.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#C1694F" d="M3.968 33.446C2.211 35.204.47 36.312.079 35.921c-.391-.391.718-2.132 2.475-3.889 1.757-1.758 3.498-2.866 3.889-2.475.39.391-.718 2.131-2.475 3.889z"/><path fill="#FFCC4D" d="M6.443 29.558l-2.122-2.122s-1.083 1.393-2.284 3.63C1.137 32.742.786 33.8.786 33.8l.707.707.707.707s1.059-.352 2.734-1.251c2.237-1.201 3.629-2.284 3.629-2.284l-2.12-2.121z"/><path fill="#292F33" d="M34.02 1.98c-3.535-3.536-18.164 10.297-18.871 11.004-.707.707-1.304 1.348-.928 1.724L12.1 16.829c-2.122 2.122-8.486 9.899-7.779 10.606l2.122 2.122 2.121 2.121c.707.707 8.485-5.657 10.607-7.778l2.121-2.121c.376.376 1.017-.222 1.724-.929.707-.706 14.54-15.334 11.004-18.87z"/><path fill="#FFCC4D" d="M23.016 20.851c.085-.084.362-.375.774-.817l-7.823-7.822c-.442.411-.732.689-.817.774-.707.707-1.304 1.348-.928 1.724l3.535 3.536 3.536 3.535c.375.374 1.016-.223 1.723-.93z"/><path fill="#FFAC33" d="M31.212 2.001C30.285 1.074 29.048.102 27.28.986c-1.768.884-7.313 4.441-9.878 7.005-1.322 1.322-1.247 2.102-.751 2.165.821.106 1.37.088 2.122-.663.75-.751.883-2.033.883-2.033s3.05-2.342 5.458-3.778c2.409-1.437 3.268-1.682 4.11-.84.842.842 1.988-.841 1.988-.841z"/><path fill="#FFAC33" d="M28.87 2.487l4.643 4.643c.353-.709.631-1.384.818-2.011l-3.45-3.45c-.627.188-1.301.466-2.011.818z"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#C1694F" d="M3.968 33.446C2.211 35.204.47 36.312.079 35.921c-.391-.391.718-2.132 2.475-3.889 1.757-1.758 3.498-2.866 3.889-2.475.39.391-.718 2.131-2.475 3.889z"/><path fill="#FFCC4D" d="M6.443 29.558l-2.122-2.122s-1.083 1.393-2.284 3.63C1.137 32.742.786 33.8.786 33.8l.707.707.707.707s1.059-.352 2.734-1.251c2.237-1.201 3.629-2.284 3.629-2.284l-2.12-2.121z"/><path fill="#31373D" d="M34.02 1.98c-3.535-3.536-18.164 10.297-18.871 11.004-.707.707-1.304 1.348-.928 1.724L12.1 16.829c-2.122 2.122-8.486 9.899-7.779 10.606l2.122 2.122 2.121 2.121c.707.707 8.485-5.657 10.607-7.778l2.121-2.121c.376.376 1.017-.222 1.724-.929.707-.706 14.54-15.334 11.004-18.87z"/><path fill="#FFCC4D" d="M23.016 20.851c.085-.084.362-.375.774-.817l-7.823-7.822c-.442.411-.732.689-.817.774-.707.707-1.304 1.348-.928 1.724l3.535 3.536 3.536 3.535c.375.374 1.016-.223 1.723-.93z"/><path fill="#FFAC33" d="M31.212 2.001C30.285 1.074 29.048.102 27.28.986c-1.768.884-7.313 4.441-9.878 7.005-1.322 1.322-1.247 2.102-.751 2.165.821.106 1.37.088 2.122-.663.75-.751.883-2.033.883-2.033s3.05-2.342 5.458-3.778c2.409-1.437 3.268-1.682 4.11-.84.842.842 1.988-.841 1.988-.841z"/><path fill="#FFAC33" d="M28.87 2.487l4.643 4.643c.353-.709.631-1.384.818-2.011l-3.45-3.45c-.627.188-1.301.466-2.011.818z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f58b.svg b/public/emoji/1f58b.svg
index dbc17919751081ba9701854b55c781bea29bb625..8a7f77359228c16c80b90730881c71c77555e104 100644
--- a/public/emoji/1f58b.svg
+++ b/public/emoji/1f58b.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#99AAB5" d="M4.167 32.729c.292.167.626.271.987.271 1.105 0 2-.896 2-2s-.895-2-2-2-2 .896-2 2c0 .361.103.695.27.987L.278 35.133 1.154 28l9-7 5 5-7 9-7.134.876 3.147-3.147z"/><path fill="#66757F" d="M22.511 5.308c-1.151 1.151-1.151 3.016 0 4.167l4.167 4.168c1.151 1.15 3.018 1.15 4.167 0l4.167-4.168c1.15-1.151 1.15-3.016 0-4.167l-4.167-4.167c-1.15-1.151-3.016-1.151-4.167 0l-4.167 4.167z"/><path fill="#292F33" d="M9.511 18.309L26.713 1.105l8.333 8.335-17.201 17.203c-1.15 1.15-3.016 1.15-4.168 0l-4.166-4.168c-1.151-1.151-1.151-3.016 0-4.166z"/><path fill="#66757F" d="M17.469 10.35l2.125-2.125 8.334 8.334-2.125 2.125z"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#99AAB5" d="M4.167 32.729c.292.167.626.271.987.271 1.105 0 2-.896 2-2s-.895-2-2-2-2 .896-2 2c0 .361.103.695.27.987L.278 35.133 1.154 28l9-7 5 5-7 9-7.134.876 3.147-3.147z"/><path fill="#66757F" d="M22.511 5.308c-1.151 1.151-1.151 3.016 0 4.167l4.167 4.168c1.151 1.15 3.018 1.15 4.167 0l4.167-4.168c1.15-1.151 1.15-3.016 0-4.167l-4.167-4.167c-1.15-1.151-3.016-1.151-4.167 0l-4.167 4.167z"/><path fill="#31373D" d="M9.511 18.309L26.713 1.105l8.333 8.335-17.201 17.203c-1.15 1.15-3.016 1.15-4.168 0l-4.166-4.168c-1.151-1.151-1.151-3.016 0-4.166z"/><path fill="#66757F" d="M17.469 10.35l2.125-2.125 8.334 8.334-2.125 2.125z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f590-1f3fb.svg b/public/emoji/1f590-1f3fb.svg
index b366d3afb4088e572b97fc5fd0a9b5f866d0ff5d..f106ae7dd90cddf6cf1ef5e05b5abebc6bcf6868 100644
--- a/public/emoji/1f590-1f3fb.svg
+++ b/public/emoji/1f590-1f3fb.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#F7DECE" d="M11.136 19.038c.259.967-.314 1.961-1.281 2.221l-.362.097c-.967.259-1.961-.314-2.22-1.281L4.069 8.121c-.258-.967.316-1.962 1.283-2.221l.361-.097c.967-.26 1.961.314 2.221 1.281l3.202 11.954zm4.795-1.94c.159 1.023-.542 1.982-1.564 2.14l-.248.039c-1.023.158-1.981-.542-2.14-1.565l-2.34-15.07c-.16-1.023.542-1.981 1.564-2.14l.248-.039c1.023-.159 1.982.542 2.141 1.565l2.339 15.07zm4.665-.117c-.058 1.011-.925 1.783-1.937 1.726l-.244-.015c-1.013-.059-1.785-.925-1.727-1.937l.857-14.898C17.604.846 18.471.072 19.483.13l.244.014c1.012.058 1.783.926 1.727 1.938l-.858 14.899zm4.592 1.959c-.219.941-1.157 1.528-2.101 1.31l-.486-.112c-.942-.219-1.528-1.158-1.311-2.1l3.273-14.125c.219-.941 1.158-1.528 2.1-1.31l.487.113c.942.219 1.527 1.159 1.31 2.1L25.188 18.94zm3.739 8.419c-.522.903-1.677 1.213-2.581.691l-.191-.111c-.904-.522-1.214-1.677-.691-2.58l5.609-9.718c.522-.903 1.678-1.214 2.582-.692l.191.111c.904.521 1.213 1.678.691 2.581l-5.61 9.718z"/><path fill="#F7DECE" d="M6.183 16.007C6.663 18.35 6 21.192 6 24s2.125 12 12 12 10.5-8.234 12-10.666c1.5-2.432-.369-6.515-1.813-4.704-1.957 2.453-3.466 2.053-2.646-2.69.611-3.537-2.964-5.244-3.603-2.052-.493 2.467-1.299 1.952-1.186-.775.137-3.283-3.679-3.641-3.875.091-.142 2.707-1.049 1.551-1.322-.273-.234-1.563-4.389-2.721-4.013-.319.593 3.785-.182 4.833-1.458.723-.806-2.595-4.382-1.671-3.901.672z"/><path fill="#E0AA94" d="M25.965 22.053c-.3-.122-.51-.486-.599-1.114-1.892.259-4.396.77-6.366 2.695-2.556 2.499-2.992 5.2-2.971 7.007.017 1.457.812 2.147 1.045-.012.294-2.727 2.243-8.128 8.891-8.576z"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#F7DECE" d="M32.375 16.219c-1.381-.611-3.354.208-4.75 2.188-.917 1.3-1.187 3.151-2.391 3.344-.46.074-.71-.206-.84-.609-.137-.68-.107-1.731.147-3.201l2.74-12.315c.218-.941-.293-1.852-1.523-2.149s-2.155.306-2.374 1.247L20.938 15.89c-.493 2.466-1.407 2.018-1.186-.775v-.001l.701-13.092C20.51 1.01 19.732.183 18.582.139c-1.15-.044-1.979.646-2.038 1.657l-.668 13.409c-.143 2.707-1.112 1.687-1.322-.274L13 4.083c-.159-1.023-1.118-1.73-2.268-1.546-1.15.185-1.845 1.136-1.686 2.159l1.495 9.914c.593 3.785-.182 4.833-1.458.723L7.489 9.308c-.26-.967-1.213-1.567-2.41-1.231-1.197.336-1.713 1.299-1.454 2.266l1.558 5.663c.651 4.077.651 5.686.651 8.493S7.125 36 17 36s11.906-10.031 12-10.666c0 0 .123-1.48 1.156-2.865 1.469-1.969 2.5-3.156 3.125-3.866.317-.359.625-1.707-.906-2.384z"/><path fill="#E0AA94" d="M24.911 21.741c-.3-.122-.554-.436-.584-1.119-1.892.259-4.451.789-6.42 2.715-2.556 2.499-2.992 5.2-2.971 7.007.017 1.457.812 2.147 1.045-.012.293-2.727 2.282-8.143 8.93-8.591z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f590-1f3fc.svg b/public/emoji/1f590-1f3fc.svg
index c9b02942beb485636e3a7b6f4cd15c794c1bb0a9..9944090ec7d8cbee1fc8c3b0da619bd812716041 100644
--- a/public/emoji/1f590-1f3fc.svg
+++ b/public/emoji/1f590-1f3fc.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#F3D2A2" d="M11.136 19.038c.259.967-.314 1.961-1.281 2.221l-.362.097c-.967.259-1.961-.314-2.22-1.281L4.069 8.121c-.258-.967.316-1.962 1.283-2.221l.361-.097c.967-.26 1.961.314 2.221 1.281l3.202 11.954zm4.795-1.94c.159 1.023-.542 1.982-1.564 2.14l-.248.039c-1.023.158-1.981-.542-2.14-1.565l-2.34-15.07c-.16-1.023.542-1.981 1.564-2.14l.248-.039c1.023-.159 1.982.542 2.141 1.565l2.339 15.07zm4.665-.117c-.058 1.011-.925 1.783-1.937 1.726l-.244-.015c-1.013-.059-1.785-.925-1.727-1.937l.857-14.898C17.604.846 18.471.072 19.483.13l.244.014c1.012.058 1.783.926 1.727 1.938l-.858 14.899zm4.592 1.959c-.219.941-1.157 1.528-2.101 1.31l-.486-.112c-.942-.219-1.528-1.158-1.311-2.1l3.273-14.125c.219-.941 1.158-1.528 2.1-1.31l.487.113c.942.219 1.527 1.159 1.31 2.1L25.188 18.94zm3.739 8.419c-.522.903-1.677 1.213-2.581.691l-.191-.111c-.904-.522-1.214-1.677-.691-2.58l5.609-9.718c.522-.903 1.678-1.214 2.582-.692l.191.111c.904.521 1.213 1.678.691 2.581l-5.61 9.718z"/><path fill="#F3D2A2" d="M6.183 16.007C6.663 18.35 6 21.192 6 24s2.125 12 12 12 10.5-8.234 12-10.666c1.5-2.432-.369-6.515-1.813-4.704-1.957 2.453-3.466 2.053-2.646-2.69.611-3.537-2.964-5.244-3.603-2.052-.493 2.467-1.299 1.952-1.186-.775.137-3.283-3.679-3.641-3.875.091-.142 2.707-1.049 1.551-1.322-.273-.234-1.563-4.389-2.721-4.013-.319.593 3.785-.182 4.833-1.458.723-.806-2.595-4.382-1.671-3.901.672z"/><path fill="#D2A077" d="M25.965 22.053c-.3-.122-.51-.486-.599-1.114-1.892.259-4.396.77-6.366 2.695-2.556 2.499-2.992 5.2-2.971 7.007.017 1.457.812 2.147 1.045-.012.294-2.727 2.243-8.128 8.891-8.576z"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#F3D2A2" d="M32.375 16.219c-1.381-.611-3.354.208-4.75 2.188-.917 1.3-1.187 3.151-2.391 3.344-.46.074-.71-.206-.84-.609-.137-.68-.107-1.731.147-3.201l2.74-12.315c.218-.941-.293-1.852-1.523-2.149s-2.155.306-2.374 1.247L20.938 15.89c-.493 2.466-1.407 2.018-1.186-.775v-.001l.701-13.092C20.51 1.01 19.732.183 18.582.139c-1.15-.044-1.979.646-2.038 1.657l-.668 13.409c-.143 2.707-1.112 1.687-1.322-.274L13 4.083c-.159-1.023-1.118-1.73-2.268-1.546-1.15.185-1.845 1.136-1.686 2.159l1.495 9.914c.593 3.785-.182 4.833-1.458.723L7.489 9.308c-.26-.967-1.213-1.567-2.41-1.231-1.197.336-1.713 1.299-1.454 2.266l1.558 5.663c.651 4.077.651 5.686.651 8.493S7.125 36 17 36s11.906-10.031 12-10.666c0 0 .123-1.48 1.156-2.865 1.469-1.969 2.5-3.156 3.125-3.866.317-.359.625-1.707-.906-2.384z"/><path fill="#D2A077" d="M24.911 21.741c-.3-.122-.554-.436-.584-1.119-1.892.259-4.451.789-6.42 2.715-2.556 2.499-2.992 5.2-2.971 7.007.017 1.457.812 2.147 1.045-.012.293-2.727 2.282-8.143 8.93-8.591z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f590-1f3fd.svg b/public/emoji/1f590-1f3fd.svg
index 7a924e462afe55afcbcefb2787dbe512dfdd73e0..296a8f7952e532007f59003c045264843f5d3389 100644
--- a/public/emoji/1f590-1f3fd.svg
+++ b/public/emoji/1f590-1f3fd.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#D5AB88" d="M11.136 19.038c.259.967-.314 1.961-1.281 2.221l-.362.097c-.967.259-1.961-.314-2.22-1.281L4.069 8.121c-.258-.967.316-1.962 1.283-2.221l.361-.097c.967-.26 1.961.314 2.221 1.281l3.202 11.954zm4.795-1.94c.159 1.023-.542 1.982-1.564 2.14l-.248.039c-1.023.158-1.981-.542-2.14-1.565l-2.34-15.07c-.16-1.023.542-1.981 1.564-2.14l.248-.039c1.023-.159 1.982.542 2.141 1.565l2.339 15.07zm4.665-.117c-.058 1.011-.925 1.783-1.937 1.726l-.244-.015c-1.013-.059-1.785-.925-1.727-1.937l.857-14.898C17.604.846 18.471.072 19.483.13l.244.014c1.012.058 1.783.926 1.727 1.938l-.858 14.899zm4.592 1.959c-.219.941-1.157 1.528-2.101 1.31l-.486-.112c-.942-.219-1.528-1.158-1.311-2.1l3.273-14.125c.219-.941 1.158-1.528 2.1-1.31l.487.113c.942.219 1.527 1.159 1.31 2.1L25.188 18.94zm3.739 8.419c-.522.903-1.677 1.213-2.581.691l-.191-.111c-.904-.522-1.214-1.677-.691-2.58l5.609-9.718c.522-.903 1.678-1.214 2.582-.692l.191.111c.904.521 1.213 1.678.691 2.581l-5.61 9.718z"/><path fill="#D5AB88" d="M6.183 16.007C6.663 18.35 6 21.192 6 24s2.125 12 12 12 10.5-8.234 12-10.666c1.5-2.432-.369-6.515-1.813-4.704-1.957 2.453-3.466 2.053-2.646-2.69.611-3.537-2.964-5.244-3.603-2.052-.493 2.467-1.299 1.952-1.186-.775.137-3.283-3.679-3.641-3.875.091-.142 2.707-1.049 1.551-1.322-.273-.234-1.563-4.389-2.721-4.013-.319.593 3.785-.182 4.833-1.458.723-.806-2.595-4.382-1.671-3.901.672z"/><path fill="#B78B60" d="M25.965 22.053c-.3-.122-.51-.486-.599-1.114-1.892.259-4.396.77-6.366 2.695-2.556 2.499-2.992 5.2-2.971 7.007.017 1.457.812 2.147 1.045-.012.294-2.727 2.243-8.128 8.891-8.576z"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#D5AB88" d="M32.375 16.219c-1.381-.611-3.354.208-4.75 2.188-.917 1.3-1.187 3.151-2.391 3.344-.46.074-.71-.206-.84-.609-.137-.68-.107-1.731.147-3.201l2.74-12.315c.218-.941-.293-1.852-1.523-2.149s-2.155.306-2.374 1.247L20.938 15.89c-.493 2.466-1.407 2.018-1.186-.775v-.001l.701-13.092C20.51 1.01 19.732.183 18.582.139c-1.15-.044-1.979.646-2.038 1.657l-.668 13.409c-.143 2.707-1.112 1.687-1.322-.274L13 4.083c-.159-1.023-1.118-1.73-2.268-1.546-1.15.185-1.845 1.136-1.686 2.159l1.495 9.914c.593 3.785-.182 4.833-1.458.723L7.489 9.308c-.26-.967-1.213-1.567-2.41-1.231-1.197.336-1.713 1.299-1.454 2.266l1.558 5.663c.651 4.077.651 5.686.651 8.493S7.125 36 17 36s11.906-10.031 12-10.666c0 0 .123-1.48 1.156-2.865 1.469-1.969 2.5-3.156 3.125-3.866.317-.359.625-1.707-.906-2.384z"/><path fill="#B78B60" d="M24.911 21.741c-.3-.122-.554-.436-.584-1.119-1.892.259-4.451.789-6.42 2.715-2.556 2.499-2.992 5.2-2.971 7.007.017 1.457.812 2.147 1.045-.012.293-2.727 2.282-8.143 8.93-8.591z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f590-1f3fe.svg b/public/emoji/1f590-1f3fe.svg
index 74ed3da4f3933dfeaa79aef696f740ff41833ac4..9ec61de595ad6fe3654f9567d15e0dd076c5f0b3 100644
--- a/public/emoji/1f590-1f3fe.svg
+++ b/public/emoji/1f590-1f3fe.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#AF7E57" d="M11.136 19.038c.259.967-.314 1.961-1.281 2.221l-.362.097c-.967.259-1.961-.314-2.22-1.281L4.069 8.121c-.258-.967.316-1.962 1.283-2.221l.361-.097c.967-.26 1.961.314 2.221 1.281l3.202 11.954zm4.795-1.94c.159 1.023-.542 1.982-1.564 2.14l-.248.039c-1.023.158-1.981-.542-2.14-1.565l-2.34-15.07c-.16-1.023.542-1.981 1.564-2.14l.248-.039c1.023-.159 1.982.542 2.141 1.565l2.339 15.07zm4.665-.117c-.058 1.011-.925 1.783-1.937 1.726l-.244-.015c-1.013-.059-1.785-.925-1.727-1.937l.857-14.898C17.604.846 18.471.072 19.483.13l.244.014c1.012.058 1.783.926 1.727 1.938l-.858 14.899zm4.592 1.959c-.219.941-1.157 1.528-2.101 1.31l-.486-.112c-.942-.219-1.528-1.158-1.311-2.1l3.273-14.125c.219-.941 1.158-1.528 2.1-1.31l.487.113c.942.219 1.527 1.159 1.31 2.1L25.188 18.94zm3.739 8.419c-.522.903-1.677 1.213-2.581.691l-.191-.111c-.904-.522-1.214-1.677-.691-2.58l5.609-9.718c.522-.903 1.678-1.214 2.582-.692l.191.111c.904.521 1.213 1.678.691 2.581l-5.61 9.718z"/><path fill="#AF7E57" d="M6.183 16.007C6.663 18.35 6 21.192 6 24s2.125 12 12 12 10.5-8.234 12-10.666c1.5-2.432-.369-6.515-1.813-4.704-1.957 2.453-3.466 2.053-2.646-2.69.611-3.537-2.964-5.244-3.603-2.052-.493 2.467-1.299 1.952-1.186-.775.137-3.283-3.679-3.641-3.875.091-.142 2.707-1.049 1.551-1.322-.273-.234-1.563-4.389-2.721-4.013-.319.593 3.785-.182 4.833-1.458.723-.806-2.595-4.382-1.671-3.901.672z"/><path fill="#90603E" d="M25.965 22.053c-.3-.122-.51-.486-.599-1.114-1.892.259-4.396.77-6.366 2.695-2.556 2.499-2.992 5.2-2.971 7.007.017 1.457.812 2.147 1.045-.012.294-2.727 2.243-8.128 8.891-8.576z"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#AF7E57" d="M32.375 16.219c-1.381-.611-3.354.208-4.75 2.188-.917 1.3-1.187 3.151-2.391 3.344-.46.074-.71-.206-.84-.609-.137-.68-.107-1.731.147-3.201l2.74-12.315c.218-.941-.293-1.852-1.523-2.149s-2.155.306-2.374 1.247L20.938 15.89c-.493 2.466-1.407 2.018-1.186-.775v-.001l.701-13.092C20.51 1.01 19.732.183 18.582.139c-1.15-.044-1.979.646-2.038 1.657l-.668 13.409c-.143 2.707-1.112 1.687-1.322-.274L13 4.083c-.159-1.023-1.118-1.73-2.268-1.546-1.15.185-1.845 1.136-1.686 2.159l1.495 9.914c.593 3.785-.182 4.833-1.458.723L7.489 9.308c-.26-.967-1.213-1.567-2.41-1.231-1.197.336-1.713 1.299-1.454 2.266l1.558 5.663c.651 4.077.651 5.686.651 8.493S7.125 36 17 36s11.906-10.031 12-10.666c0 0 .123-1.48 1.156-2.865 1.469-1.969 2.5-3.156 3.125-3.866.317-.359.625-1.707-.906-2.384z"/><path fill="#90603E" d="M24.911 21.741c-.3-.122-.554-.436-.584-1.119-1.892.259-4.451.789-6.42 2.715-2.556 2.499-2.992 5.2-2.971 7.007.017 1.457.812 2.147 1.045-.012.293-2.727 2.282-8.143 8.93-8.591z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f590-1f3ff.svg b/public/emoji/1f590-1f3ff.svg
index acb4dcd9ddc20d453d283657f6c6fd9ebb4340ab..0a4d174bec8db12a7d0c6750d244de4cab6ce8bd 100644
--- a/public/emoji/1f590-1f3ff.svg
+++ b/public/emoji/1f590-1f3ff.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#7C533E" d="M11.136 19.038c.259.967-.314 1.961-1.281 2.221l-.362.097c-.967.259-1.961-.314-2.22-1.281L4.069 8.121c-.258-.967.316-1.962 1.283-2.221l.361-.097c.967-.26 1.961.314 2.221 1.281l3.202 11.954zm4.795-1.94c.159 1.023-.542 1.982-1.564 2.14l-.248.039c-1.023.158-1.981-.542-2.14-1.565l-2.34-15.07c-.16-1.023.542-1.981 1.564-2.14l.248-.039c1.023-.159 1.982.542 2.141 1.565l2.339 15.07zm4.665-.117c-.058 1.011-.925 1.783-1.937 1.726l-.244-.015c-1.013-.059-1.785-.925-1.727-1.937l.857-14.898C17.604.846 18.471.072 19.483.13l.244.014c1.012.058 1.783.926 1.727 1.938l-.858 14.899zm4.592 1.959c-.219.941-1.157 1.528-2.101 1.31l-.486-.112c-.942-.219-1.528-1.158-1.311-2.1l3.273-14.125c.219-.941 1.158-1.528 2.1-1.31l.487.113c.942.219 1.527 1.159 1.31 2.1L25.188 18.94zm3.739 8.419c-.522.903-1.677 1.213-2.581.691l-.191-.111c-.904-.522-1.214-1.677-.691-2.58l5.609-9.718c.522-.903 1.678-1.214 2.582-.692l.191.111c.904.521 1.213 1.678.691 2.581l-5.61 9.718z"/><path fill="#7C533E" d="M6.183 16.007C6.663 18.35 6 21.192 6 24s2.125 12 12 12 10.5-8.234 12-10.666c1.5-2.432-.369-6.515-1.813-4.704-1.957 2.453-3.466 2.053-2.646-2.69.611-3.537-2.964-5.244-3.603-2.052-.493 2.467-1.299 1.952-1.186-.775.137-3.283-3.679-3.641-3.875.091-.142 2.707-1.049 1.551-1.322-.273-.234-1.563-4.389-2.721-4.013-.319.593 3.785-.182 4.833-1.458.723-.806-2.595-4.382-1.671-3.901.672z"/><path fill="#583529" d="M25.965 22.053c-.3-.122-.51-.486-.599-1.114-1.892.259-4.396.77-6.366 2.695-2.556 2.499-2.992 5.2-2.971 7.007.017 1.457.812 2.147 1.045-.012.294-2.727 2.243-8.128 8.891-8.576z"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#7C533E" d="M32.375 16.219c-1.381-.611-3.354.208-4.75 2.188-.917 1.3-1.187 3.151-2.391 3.344-.46.074-.71-.206-.84-.609-.137-.68-.107-1.731.147-3.201l2.74-12.315c.218-.941-.293-1.852-1.523-2.149s-2.155.306-2.374 1.247L20.938 15.89c-.493 2.466-1.407 2.018-1.186-.775v-.001l.701-13.092C20.51 1.01 19.732.183 18.582.139c-1.15-.044-1.979.646-2.038 1.657l-.668 13.409c-.143 2.707-1.112 1.687-1.322-.274L13 4.083c-.159-1.023-1.118-1.73-2.268-1.546-1.15.185-1.845 1.136-1.686 2.159l1.495 9.914c.593 3.785-.182 4.833-1.458.723L7.489 9.308c-.26-.967-1.213-1.567-2.41-1.231-1.197.336-1.713 1.299-1.454 2.266l1.558 5.663c.651 4.077.651 5.686.651 8.493S7.125 36 17 36s11.906-10.031 12-10.666c0 0 .123-1.48 1.156-2.865 1.469-1.969 2.5-3.156 3.125-3.866.317-.359.625-1.707-.906-2.384z"/><path fill="#583529" d="M24.911 21.741c-.3-.122-.554-.436-.584-1.119-1.892.259-4.451.789-6.42 2.715-2.556 2.499-2.992 5.2-2.971 7.007.017 1.457.812 2.147 1.045-.012.293-2.727 2.282-8.143 8.93-8.591z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f590.svg b/public/emoji/1f590.svg
index 2c9d033cff2907940bb26fdd51337bf343397fff..1c8dd6849ab63d7766fd33d93e682995af883118 100644
--- a/public/emoji/1f590.svg
+++ b/public/emoji/1f590.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#FFDC5D" d="M11.136 19.038c.259.967-.314 1.961-1.281 2.221l-.362.097c-.967.259-1.961-.314-2.22-1.281L4.069 8.121c-.258-.967.316-1.962 1.283-2.221l.361-.097c.967-.26 1.961.314 2.221 1.281l3.202 11.954zm4.795-1.94c.159 1.023-.542 1.982-1.564 2.14l-.248.039c-1.023.158-1.981-.542-2.14-1.565l-2.34-15.07c-.16-1.023.542-1.981 1.564-2.14l.248-.039c1.023-.159 1.982.542 2.141 1.565l2.339 15.07zm4.665-.117c-.058 1.011-.925 1.783-1.937 1.726l-.244-.015c-1.013-.059-1.785-.925-1.727-1.937l.857-14.898C17.604.846 18.471.072 19.483.13l.244.014c1.012.058 1.783.926 1.727 1.938l-.858 14.899zm4.592 1.959c-.219.941-1.157 1.528-2.101 1.31l-.486-.112c-.942-.219-1.528-1.158-1.311-2.1l3.273-14.125c.219-.941 1.158-1.528 2.1-1.31l.487.113c.942.219 1.527 1.159 1.31 2.1L25.188 18.94zm3.739 8.419c-.522.903-1.677 1.213-2.581.691l-.191-.111c-.904-.522-1.214-1.677-.691-2.58l5.609-9.718c.522-.903 1.678-1.214 2.582-.692l.191.111c.904.521 1.213 1.678.691 2.581l-5.61 9.718z"/><path fill="#FFDC5D" d="M6.183 16.007C6.663 18.35 6 21.192 6 24s2.125 12 12 12 10.5-8.234 12-10.666c1.5-2.432-.369-6.515-1.813-4.704-1.957 2.453-3.466 2.053-2.646-2.69.611-3.537-2.964-5.244-3.603-2.052-.493 2.467-1.299 1.952-1.186-.775.137-3.283-3.679-3.641-3.875.091-.142 2.707-1.049 1.551-1.322-.273-.234-1.563-4.389-2.721-4.013-.319.593 3.785-.182 4.833-1.458.723-.806-2.595-4.382-1.671-3.901.672z"/><path fill="#EF9645" d="M25.965 22.053c-.3-.122-.51-.486-.599-1.114-1.892.259-4.396.77-6.366 2.695-2.556 2.499-2.992 5.2-2.971 7.007.017 1.457.812 2.147 1.045-.012.294-2.727 2.243-8.128 8.891-8.576z"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#FFDC5D" d="M32.375 16.219c-1.381-.611-3.354.208-4.75 2.188-.917 1.3-1.187 3.151-2.391 3.344-.46.074-.71-.206-.84-.609-.137-.68-.107-1.731.147-3.201l2.74-12.315c.218-.941-.293-1.852-1.523-2.149s-2.155.306-2.374 1.247L20.938 15.89c-.493 2.466-1.407 2.018-1.186-.775v-.001l.701-13.092C20.51 1.01 19.732.183 18.582.139c-1.15-.044-1.979.646-2.038 1.657l-.668 13.409c-.143 2.707-1.112 1.687-1.322-.274L13 4.083c-.159-1.023-1.118-1.73-2.268-1.546-1.15.185-1.845 1.136-1.686 2.159l1.495 9.914c.593 3.785-.182 4.833-1.458.723L7.489 9.308c-.26-.967-1.213-1.567-2.41-1.231-1.197.336-1.713 1.299-1.454 2.266l1.558 5.663c.651 4.077.651 5.686.651 8.493S7.125 36 17 36s11.906-10.031 12-10.666c0 0 .123-1.48 1.156-2.865 1.469-1.969 2.5-3.156 3.125-3.866.317-.359.625-1.707-.906-2.384z"/><path fill="#EF9645" d="M24.911 21.741c-.3-.122-.554-.436-.584-1.119-1.892.259-4.451.789-6.42 2.715-2.556 2.499-2.992 5.2-2.971 7.007.017 1.457.812 2.147 1.045-.012.293-2.727 2.282-8.143 8.93-8.591z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f5a4.svg b/public/emoji/1f5a4.svg
index 4b3ff616ce93f779e9fe51fc5b2742de4b83200e..51ec883f87eb571ef25292956a0fc88332acaaed 100644
--- a/public/emoji/1f5a4.svg
+++ b/public/emoji/1f5a4.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#292F33" d="M35.885 11.833c0-5.45-4.418-9.868-9.867-9.868-3.308 0-6.227 1.633-8.018 4.129-1.791-2.496-4.71-4.129-8.017-4.129-5.45 0-9.868 4.417-9.868 9.868 0 .772.098 1.52.266 2.241C1.751 22.587 11.216 31.568 18 34.034c6.783-2.466 16.249-11.447 17.617-19.959.17-.721.268-1.469.268-2.242z"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#31373D" d="M35.885 11.833c0-5.45-4.418-9.868-9.867-9.868-3.308 0-6.227 1.633-8.018 4.129-1.791-2.496-4.71-4.129-8.017-4.129-5.45 0-9.868 4.417-9.868 9.868 0 .772.098 1.52.266 2.241C1.751 22.587 11.216 31.568 18 34.034c6.783-2.466 16.249-11.447 17.617-19.959.17-.721.268-1.469.268-2.242z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f5dd.svg b/public/emoji/1f5dd.svg
index 74e28dc4648770b65bcd2b8990cbaa441d3225ce..9e97cea6e0f403fea770eb457ce211274129ca82 100644
--- a/public/emoji/1f5dd.svg
+++ b/public/emoji/1f5dd.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#292F33" d="M7.915 34.868c.725.725 1.313 1.313 2.417.21 1.103-1.103-.665-2.871.439-3.975l.552-.552c1.104-1.104 2.872.664 3.974-.438 1.104-1.104.516-1.692-.21-2.417L12.41 25.02c-.725-.725-1.808-.819-2.417-.209l-4.964 4.964c-.61.609-.516 1.692.209 2.417l2.677 2.676z"/><path fill="#67757F" d="M1.03 33.772c.781.781 2.047.781 2.829 0l19.07-19.069c-.101-2.727 4.95-4.95 3.536-6.364-.781-.781-4.243 5.657-6.971 4.142L1.03 30.944c-.781.782-.781 2.048 0 2.828z"/><path fill="#292F33" d="M16.919 3.743c-2.148 2.147-2.149 5.63 0 7.778 2.148 2.148 5.63 2.148 7.778 0 2.147-2.148 2.147-5.63 0-7.778-2.148-2.148-5.631-2.148-7.778 0zm6.363 6.364c-1.366 1.367-3.583 1.367-4.95 0s-1.367-3.583 0-4.95 3.583-1.367 4.95 0 1.367 3.583 0 4.95z"/><path fill="#292F33" d="M26.111 1.622c-2.148 2.147-2.148 5.63 0 7.778 2.148 2.148 5.63 2.148 7.777 0 2.148-2.148 2.148-5.631 0-7.778-2.147-2.148-5.629-2.148-7.777 0zm6.364 6.364c-1.366 1.366-3.583 1.366-4.949 0-1.367-1.368-1.367-3.583 0-4.95 1.366-1.367 3.582-1.368 4.949 0 1.367 1.366 1.367 3.583 0 4.95z"/><path fill="#292F33" d="M23.989 10.814c-2.147 2.147-2.147 5.63 0 7.778 2.147 2.148 5.631 2.148 7.778 0 2.147-2.148 2.147-5.63 0-7.778-2.147-2.147-5.63-2.147-7.778 0zm6.365 6.364c-1.366 1.367-3.583 1.367-4.95 0s-1.366-3.583 0-4.949c1.367-1.367 3.583-1.368 4.95 0 1.366 1.366 1.366 3.582 0 4.949z"/><path fill="#67757F" d="M19.394 18.238c.781.781.781 2.048 0 2.829-.781.78-2.048.78-2.829 0l-2.829-2.829c-.781-.78-.781-2.047 0-2.828.781-.781 2.048-.781 2.829 0l2.829 2.828z"/><circle fill="#292F33" cx="26" cy="9" r="1"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#31373D" d="M7.915 34.868c.725.725 1.313 1.313 2.417.21 1.103-1.103-.665-2.871.439-3.975l.552-.552c1.104-1.104 2.872.664 3.974-.438 1.104-1.104.516-1.692-.21-2.417L12.41 25.02c-.725-.725-1.808-.819-2.417-.209l-4.964 4.964c-.61.609-.516 1.692.209 2.417l2.677 2.676z"/><path fill="#67757F" d="M1.03 33.772c.781.781 2.047.781 2.829 0l19.07-19.069c-.101-2.727 4.95-4.95 3.536-6.364-.781-.781-4.243 5.657-6.971 4.142L1.03 30.944c-.781.782-.781 2.048 0 2.828z"/><path fill="#31373D" d="M16.919 3.743c-2.148 2.147-2.149 5.63 0 7.778 2.148 2.148 5.63 2.148 7.778 0 2.147-2.148 2.147-5.63 0-7.778-2.148-2.148-5.631-2.148-7.778 0zm6.363 6.364c-1.366 1.367-3.583 1.367-4.95 0s-1.367-3.583 0-4.95 3.583-1.367 4.95 0 1.367 3.583 0 4.95z"/><path fill="#31373D" d="M26.111 1.622c-2.148 2.147-2.148 5.63 0 7.778 2.148 2.148 5.63 2.148 7.777 0 2.148-2.148 2.148-5.631 0-7.778-2.147-2.148-5.629-2.148-7.777 0zm6.364 6.364c-1.366 1.366-3.583 1.366-4.949 0-1.367-1.368-1.367-3.583 0-4.95 1.366-1.367 3.582-1.368 4.949 0 1.367 1.366 1.367 3.583 0 4.95z"/><path fill="#31373D" d="M23.989 10.814c-2.147 2.147-2.147 5.63 0 7.778 2.147 2.148 5.631 2.148 7.778 0 2.147-2.148 2.147-5.63 0-7.778-2.147-2.147-5.63-2.147-7.778 0zm6.365 6.364c-1.366 1.367-3.583 1.367-4.95 0s-1.366-3.583 0-4.949c1.367-1.367 3.583-1.368 4.95 0 1.366 1.366 1.366 3.582 0 4.949z"/><path fill="#67757F" d="M19.394 18.238c.781.781.781 2.048 0 2.829-.781.78-2.048.78-2.829 0l-2.829-2.829c-.781-.78-.781-2.047 0-2.828.781-.781 2.048-.781 2.829 0l2.829 2.828z"/><circle fill="#31373D" cx="26" cy="9" r="1"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f5e1.svg b/public/emoji/1f5e1.svg
index 74bbf3c4334e788795da2e109d62a5e323c2f11b..2741fb89d40a0aaa82bc553a944729fe6239b40d 100644
--- a/public/emoji/1f5e1.svg
+++ b/public/emoji/1f5e1.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#CCD6DD" d="M12.622 16.971C13.33 16.264 19.694 4.243 35.25 0c-1.414 1.415-19.54 21.691-19.54 21.691l-3.088-4.72z"/><path fill="#9AAAB4" d="M18.279 22.629C18.986 21.922 31.008 15.556 35.25 0L14.037 21.214l4.242 1.415z"/><path fill="#292F33" d="M15.451 24.043c.781-.781.655-2.174-.283-3.112l-.848-.849c-.938-.938-2.331-1.063-3.112-.282L3.43 27.578c-.781.781-.654 2.174.283 3.111l.848.848c.938.938 2.331 1.064 3.111.283l7.779-7.777z"/><path d="M7.108 23.9l7.071 1.414 1.271-1.271c.133-.133.23-.288.311-.452L8.807 22.2l-1.699 1.7zm7.212-3.818c-.938-.938-2.331-1.063-3.112-.282l-.826.826 5.328 1.065c-.131-.27-.312-.529-.543-.76l-.847-.849zM5.408 25.6l-1.699 1.699 7.071 1.414 1.699-1.699zm-2.422 3.793c.107.46.346.916.727 1.297l.848.848c.103.103.213.192.325.275l2.11.422c.252-.084.483-.22.676-.414l1.242-1.242-5.928-1.186z" fill="#67757F"/><circle fill="#292F33" cx="4.142" cy="31.104" r="4"/><path fill="#292F33" d="M19.693 26.164c-.586.586-1.536.586-2.121 0l-8.839-8.839c-.586-.586-.586-1.536 0-2.121.586-.586 1.535-.586 2.121 0l8.839 8.839c.586.584.586 1.535 0 2.121z"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#CCD6DD" d="M12.622 16.971C13.33 16.264 19.694 4.243 35.25 0c-1.414 1.415-19.54 21.691-19.54 21.691l-3.088-4.72z"/><path fill="#9AAAB4" d="M18.279 22.629C18.986 21.922 31.008 15.556 35.25 0L14.037 21.214l4.242 1.415z"/><path fill="#31373D" d="M15.451 24.043c.781-.781.655-2.174-.283-3.112l-.848-.849c-.938-.938-2.331-1.063-3.112-.282L3.43 27.578c-.781.781-.654 2.174.283 3.111l.848.848c.938.938 2.331 1.064 3.111.283l7.779-7.777z"/><path d="M7.108 23.9l7.071 1.414 1.271-1.271c.133-.133.23-.288.311-.452L8.807 22.2l-1.699 1.7zm7.212-3.818c-.938-.938-2.331-1.063-3.112-.282l-.826.826 5.328 1.065c-.131-.27-.312-.529-.543-.76l-.847-.849zM5.408 25.6l-1.699 1.699 7.071 1.414 1.699-1.699zm-2.422 3.793c.107.46.346.916.727 1.297l.848.848c.103.103.213.192.325.275l2.11.422c.252-.084.483-.22.676-.414l1.242-1.242-5.928-1.186z" fill="#67757F"/><circle fill="#31373D" cx="4.142" cy="31.104" r="4"/><path fill="#31373D" d="M19.693 26.164c-.586.586-1.536.586-2.121 0l-8.839-8.839c-.586-.586-.586-1.536 0-2.121.586-.586 1.535-.586 2.121 0l8.839 8.839c.586.584.586 1.535 0 2.121z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f5e3.svg b/public/emoji/1f5e3.svg
index 5607d68c07380240985130a1edd43de89c153a32..4e613c0465983468233bca64dab5646e25695907 100644
--- a/public/emoji/1f5e3.svg
+++ b/public/emoji/1f5e3.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#FA743E" d="M35.838 23.159c.003.553-.443 1.002-.998 1.003l-5 .013c-.552.002-.999-.446-1-.997-.003-.555.444-1.002.995-1.004l5-.013c.553 0 1.002.445 1.003.998zm-1.587-5.489c.238.499.025 1.095-.475 1.333l-4.517 2.145c-.498.236-1.094.023-1.33-.476-.239-.498-.025-1.094.474-1.333l4.516-2.144c.5-.236 1.095-.024 1.332.475zm.027 10.987c.234-.501.02-1.096-.48-1.33l-4.527-2.122c-.501-.235-1.095-.02-1.33.48-.234.501-.019 1.096.482 1.33l4.526 2.123c.499.234 1.096.019 1.329-.481z"/><path fill="#292F33" d="M27.979 14.875c-1.42-.419-2.693-1.547-3.136-2.25-.76-1.208.157-1.521-.153-4.889C24.405 4.653 20.16 1.337 15 1c-2.346-.153-4.786.326-7.286 1.693-6.42 3.511-8.964 10.932-4.006 18.099 4.47 6.46.276 9.379.276 9.379s.166 1.36 2.914 3.188c2.749 1.827 6.121.588 6.121.588s1.112-3.954 4.748-3.59c2.606.384 6.266-.129 7.191-1.024.865-.837-.151-1.886.539-4.224-2.365-.232-3.665-1.359-3.79-2.948 2.625.255 3.708-.578 4.458-1.495-.021-.54-.075-1.686-.127-2.454 2.322-.672 3.212-2.962 1.941-3.337z"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#FA743E" d="M35.838 23.159c.003.553-.443 1.002-.998 1.003l-5 .013c-.552.002-.999-.446-1-.997-.003-.555.444-1.002.995-1.004l5-.013c.553 0 1.002.445 1.003.998zm-1.587-5.489c.238.499.025 1.095-.475 1.333l-4.517 2.145c-.498.236-1.094.023-1.33-.476-.239-.498-.025-1.094.474-1.333l4.516-2.144c.5-.236 1.095-.024 1.332.475zm.027 10.987c.234-.501.02-1.096-.48-1.33l-4.527-2.122c-.501-.235-1.095-.02-1.33.48-.234.501-.019 1.096.482 1.33l4.526 2.123c.499.234 1.096.019 1.329-.481z"/><path fill="#269" d="M27.979 14.875c-1.42-.419-2.693-1.547-3.136-2.25-.76-1.208.157-1.521-.153-4.889C24.405 4.653 20.16 1.337 15 1c-2.346-.153-4.786.326-7.286 1.693-6.42 3.511-8.964 10.932-4.006 18.099 4.47 6.46.276 9.379.276 9.379s.166 1.36 2.914 3.188c2.749 1.827 6.121.588 6.121.588s1.112-3.954 4.748-3.59c2.606.384 6.266-.129 7.191-1.024.865-.837-.151-1.886.539-4.224-2.365-.232-3.665-1.359-3.79-2.948 2.625.255 3.708-.578 4.458-1.495-.021-.54-.075-1.686-.127-2.454 2.322-.672 3.212-2.962 1.941-3.337z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f5f3.svg b/public/emoji/1f5f3.svg
index edd19d4164dbbe6c1b06ebcc4eadf75d24118dac..9c643d363eefc4e725458f29037af386123f50a9 100644
--- a/public/emoji/1f5f3.svg
+++ b/public/emoji/1f5f3.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#CCD6DD" d="M34.5 24.995c0 2.209-1.791 2-4 2h-25c-2.209 0-4 .209-4-2L3.5 11c.293-1.75 1-2 2-2h25c1 0 1.791.208 2 2l2 13.995z"/><path fill="#67757F" d="M13.5 16zm0 0zm0 12z"/><path fill="#292F33" d="M28.5 16.5c0 .829-.672 1.5-1.5 1.5H9c-.829 0-1.5-.671-1.5-1.5S8.172 15 9 15h18c.828 0 1.5.671 1.5 1.5z"/><path fill="#5DADEC" d="M26.5 17V3c0-1.105-.895-2-2-2h-13c-1.104 0-2 .895-2 2v14h17z"/><path fill="#9AAAB4" d="M34.5 25c0-1.104-.896-2-2-2h-29c-1.104 0-2 .896-2 2v8c0 1.104.896 2 2 2h29c1.104 0 2-.896 2-2v-8z"/><path fill="#5DADEC" d="M18.5 22zm0 0z"/><path fill="#67757F" d="M13.5 23v6c0 1.104.896 2 2 2h5c1.105 0 2-.896 2-2v-6h-9z"/><path fill="#9AAAB4" d="M22.5 23v-1c0-1.104-.895-2-2-2h-5c-1.104 0-2 .896-2 2v1h9zm-3 4.5c0 .828-.672 1.5-1.5 1.5-.829 0-1.5-.672-1.5-1.5v-1c0-.828.671-1.5 1.5-1.5.828 0 1.5.672 1.5 1.5v1z"/><path fill="#FFF" d="M18.806 8.997l2.778-2.778c.222-.222.222-.581 0-.803-.222-.222-.581-.222-.803 0l-2.778 2.778-2.778-2.778c-.221-.222-.581-.222-.803 0-.222.222-.222.581 0 .803L17.2 8.997l-2.784 2.784c-.222.222-.222.581 0 .803.111.111.256.166.401.166.145 0 .291-.056.401-.166L18.002 9.8l2.778 2.778c.111.111.256.166.401.166.145 0 .29-.055.401-.166.222-.222.222-.581 0-.803l-2.776-2.778z"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#8CCAF7" d="M34.5 24.995c0 2.209-1.791 2-4 2h-25c-2.209 0-4 .209-4-2L3.5 11c.293-1.75 1-2 2-2h25c1 0 1.791.208 2 2l2 13.995z"/><path fill="#292F33" d="M28.5 16.5c0 .829-.672 1.5-1.5 1.5H9c-.829 0-1.5-.671-1.5-1.5S8.172 15 9 15h18c.828 0 1.5.671 1.5 1.5z"/><path fill="#FFD983" d="M26.25 17.188v-14c0-1.105-.895-2-2-2h-13c-1.104 0-2 .895-2 2v14h17z"/><path fill="#5DADEC" d="M34.5 25c0-1.104-.896-2-2-2h-29c-1.104 0-2 .896-2 2v8c0 1.104.896 2 2 2h29c1.104 0 2-.896 2-2v-8z"/><path fill="#4289C1" d="M13.5 23v6c0 1.104.896 2 2 2h5c1.105 0 2-.896 2-2v-6h-9z"/><path fill="#5DADEC" d="M22.5 23v-1c0-1.104-.895-2-2-2h-5c-1.104 0-2 .896-2 2v1h9zm-3 4.5c0 .828-.672 1.5-1.5 1.5-.829 0-1.5-.672-1.5-1.5v-1c0-.828.671-1.5 1.5-1.5.828 0 1.5.672 1.5 1.5v1z"/><path d="M24 5c0 .276-.224.5-.5.5H16c-.276 0-.5-.224-.5-.5s.224-.5.5-.5h7.5c.276 0 .5.224.5.5m0 4c0 .276-.224.5-.5.5H16c-.276 0-.5-.224-.5-.5s.224-.5.5-.5h7.5c.276 0 .5.224.5.5m0 4c0 .276-.224.5-.5.5H16c-.276 0-.5-.224-.5-.5s.224-.5.5-.5h7.5c.276 0 .5.224.5.5" fill="#C1694F"/><g fill="#C1694F"><circle cx="13" cy="5" r="1"/><circle cx="13" cy="9" r="1"/><circle cx="13" cy="13" r="1"/></g></svg>
\ No newline at end of file
diff --git a/public/emoji/1f60d.svg b/public/emoji/1f60d.svg
index a745838c6071b188b15e366bda05353b70953fb9..18b1867c185ddbe96078855a504fbcc4971a5cdc 100644
--- a/public/emoji/1f60d.svg
+++ b/public/emoji/1f60d.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#FFCC4D" d="M36 18c0 9.941-8.059 18-18 18S0 27.941 0 18 8.059 0 18 0s18 8.059 18 18"/><path fill="#664500" d="M18 21.849c-2.966 0-4.935-.346-7.369-.819-.557-.106-1.638 0-1.638 1.638 0 3.275 3.763 7.369 9.007 7.369s9.007-4.094 9.007-7.369c0-1.638-1.082-1.745-1.638-1.638-2.434.473-4.402.819-7.369.819"/><path fill="#E75A70" d="M16.65 3.281C15.791.85 13.126-.426 10.694.431c-1.476.52-2.521 1.711-2.928 3.104-1.191-.829-2.751-1.1-4.225-.58C1.111 3.813-.167 6.48.692 8.911c.122.344.284.663.472.958 1.951 3.582 7.588 6.1 11.001 6.131 2.637-2.167 5.446-7.665 4.718-11.677-.038-.348-.113-.698-.233-1.042zm2.7 0C20.209.85 22.875-.426 25.306.431c1.476.52 2.521 1.711 2.929 3.104 1.191-.829 2.751-1.1 4.225-.58 2.43.858 3.707 3.525 2.85 5.956-.123.344-.284.663-.473.958-1.951 3.582-7.588 6.1-11.002 6.131-2.637-2.167-5.445-7.665-4.717-11.677.037-.348.112-.698.232-1.042z"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#FFCC4D" d="M36 18c0 9.941-8.059 18-18 18S0 27.941 0 18 8.059 0 18 0s18 8.059 18 18"/><path fill="#664500" d="M18 21.849c-2.966 0-4.935-.346-7.369-.819-.557-.106-1.638 0-1.638 1.638 0 3.275 3.763 7.369 9.007 7.369s9.007-4.094 9.007-7.369c0-1.638-1.082-1.745-1.638-1.638-2.434.473-4.402.819-7.369.819"/><path fill="#DD2E44" d="M16.65 3.281C15.791.85 13.126-.426 10.694.431c-1.476.52-2.521 1.711-2.928 3.104-1.191-.829-2.751-1.1-4.225-.58C1.111 3.813-.167 6.48.692 8.911c.122.344.284.663.472.958 1.951 3.582 7.588 6.1 11.001 6.131 2.637-2.167 5.446-7.665 4.718-11.677-.038-.348-.113-.698-.233-1.042zm2.7 0C20.209.85 22.875-.426 25.306.431c1.476.52 2.521 1.711 2.929 3.104 1.191-.829 2.751-1.1 4.225-.58 2.43.858 3.707 3.525 2.85 5.956-.123.344-.284.663-.473.958-1.951 3.582-7.588 6.1-11.002 6.131-2.637-2.167-5.445-7.665-4.717-11.677.037-.348.112-.698.232-1.042z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f618.svg b/public/emoji/1f618.svg
index da48c23a9712a783e436285019f4ef4dd5db353b..5e00b8e4d6b26cd5234fd57d762464b74171959b 100644
--- a/public/emoji/1f618.svg
+++ b/public/emoji/1f618.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><circle fill="#FFCC4D" cx="18" cy="18" r="18"/><ellipse fill="#664500" cx="11.5" cy="15.5" rx="2.5" ry="3.5"/><path fill="#664500" d="M28.457 17.797c-.06-.135-1.499-3.297-4.457-3.297-2.957 0-4.397 3.162-4.457 3.297-.092.207-.032.449.145.591.175.142.426.147.61.014.012-.009 1.262-.902 3.702-.902 2.426 0 3.674.881 3.702.901.088.066.194.099.298.099.11 0 .221-.037.312-.109.177-.142.238-.386.145-.594zM5.999 11c-.208 0-.419-.065-.599-.2-.442-.331-.531-.958-.2-1.4C8.462 5.05 12.816 5 13 5c.552 0 1 .448 1 1 0 .551-.445.998-.996 1-.155.002-3.568.086-6.204 3.6-.196.262-.497.4-.801.4zm23.002 3c-.305 0-.604-.138-.801-.4-2.592-3.456-6.961-2.628-7.004-2.62-.547.11-1.068-.244-1.177-.784-.108-.541.243-1.068.784-1.177.231-.047 5.657-1.072 8.996 3.38.332.442.242 1.069-.2 1.4-.179.136-.389.201-.598.201zm-8.922 13.042c1.335-.412 2.629-1.156 2.629-2.5 0-2.619-4.912-2.968-5.472-2.999-.274-.026-.509.193-.527.468-.017.274.19.511.464.53.035.002 3.535.299 3.535 2.001s-3.5 1.999-3.535 2.001c-.014.001-.024.009-.037.011-.052.006-.101.018-.146.04l-.019.011c-.047.026-.088.057-.125.098-.014.015-.024.031-.036.048-.023.032-.044.063-.059.102-.012.029-.018.061-.024.092-.004.023-.016.044-.018.067 0 .011.004.021.004.031s-.005.021-.004.031c.001.024.013.045.018.068.006.031.011.061.023.09.013.03.031.057.049.084.017.024.032.05.052.071.023.023.05.041.078.061.024.017.046.034.074.047.032.015.066.021.101.027.024.006.044.018.069.02.035.002 3.535.299 3.535 2.001s-3.5 1.999-3.535 2.001c-.274.02-.481.257-.464.53.017.265.237.469.499.469l.028-.001c.56-.031 5.472-.38 5.472-2.999 0-1.345-1.294-2.089-2.629-2.501z"/><path fill="#FFAC33" d="M34.202 25.803c-.236-.79-.779-1.486-1.578-1.875-.922-.449-1.956-.391-2.793.06-.16-.936-.75-1.789-1.67-2.237-1.517-.74-3.348-.11-4.087 1.406-.105.215-.18.437-.23.659-.775 2.556.64 6.341 2.192 7.948 1.23.13 2.953-.198 4.513-.873 1.5-1.46 2.733-3.183 3.653-5.088z"/><path fill="#E75A70" d="M35.654 27.222c.739-1.516.11-3.347-1.405-4.086-.922-.449-1.956-.391-2.793.06-.16-.936-.75-1.789-1.67-2.237-1.517-.74-3.348-.109-4.087 1.406-.105.215-.18.437-.23.659-.774 2.556.64 6.341 2.192 7.948 2.223.234 6.077-.979 7.615-3.161.145-.179.273-.374.378-.589z"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><circle fill="#FFCC4D" cx="18" cy="18" r="18"/><ellipse fill="#664500" cx="11.5" cy="15.5" rx="2.5" ry="3.5"/><path fill="#664500" d="M28.457 17.797c-.06-.135-1.499-3.297-4.457-3.297-2.957 0-4.397 3.162-4.457 3.297-.092.207-.032.449.145.591.175.142.426.147.61.014.012-.009 1.262-.902 3.702-.902 2.426 0 3.674.881 3.702.901.088.066.194.099.298.099.11 0 .221-.037.312-.109.177-.142.238-.386.145-.594zM5.999 11c-.208 0-.419-.065-.599-.2-.442-.331-.531-.958-.2-1.4C8.462 5.05 12.816 5 13 5c.552 0 1 .448 1 1 0 .551-.445.998-.996 1-.155.002-3.568.086-6.204 3.6-.196.262-.497.4-.801.4zm23.002 3c-.305 0-.604-.138-.801-.4-2.592-3.456-6.961-2.628-7.004-2.62-.547.11-1.068-.244-1.177-.784-.108-.541.243-1.068.784-1.177.231-.047 5.657-1.072 8.996 3.38.332.442.242 1.069-.2 1.4-.179.136-.389.201-.598.201zm-8.922 13.042c1.335-.412 2.629-1.156 2.629-2.5 0-2.619-4.912-2.968-5.472-2.999-.274-.026-.509.193-.527.468-.017.274.19.511.464.53.035.002 3.535.299 3.535 2.001s-3.5 1.999-3.535 2.001c-.014.001-.024.009-.037.011-.052.006-.101.018-.146.04l-.019.011c-.047.026-.088.057-.125.098-.014.015-.024.031-.036.048-.023.032-.044.063-.059.102-.012.029-.018.061-.024.092-.004.023-.016.044-.018.067 0 .011.004.021.004.031s-.005.021-.004.031c.001.024.013.045.018.068.006.031.011.061.023.09.013.03.031.057.049.084.017.024.032.05.052.071.023.023.05.041.078.061.024.017.046.034.074.047.032.015.066.021.101.027.024.006.044.018.069.02.035.002 3.535.299 3.535 2.001s-3.5 1.999-3.535 2.001c-.274.02-.481.257-.464.53.017.265.237.469.499.469l.028-.001c.56-.031 5.472-.38 5.472-2.999 0-1.345-1.294-2.089-2.629-2.501z"/><path fill="#FFAC33" d="M34.202 25.803c-.236-.79-.779-1.486-1.578-1.875-.922-.449-1.956-.391-2.793.06-.16-.936-.75-1.789-1.67-2.237-1.517-.74-3.348-.11-4.087 1.406-.105.215-.18.437-.23.659-.775 2.556.64 6.341 2.192 7.948 1.23.13 2.953-.198 4.513-.873 1.5-1.46 2.733-3.183 3.653-5.088z"/><path fill="#DD2E44" d="M35.654 27.222c.739-1.516.11-3.347-1.405-4.086-.922-.449-1.956-.391-2.793.06-.16-.936-.75-1.789-1.67-2.237-1.517-.74-3.348-.109-4.087 1.406-.105.215-.18.437-.23.659-.774 2.556.64 6.341 2.192 7.948 2.223.234 6.077-.979 7.615-3.161.145-.179.273-.374.378-.589z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f61e.svg b/public/emoji/1f61e.svg
index b55a69c010a92362004a025ed212792a991a828b..7ae60a58d4444f55dc1f41c4501ef3d8b2d9bc67 100644
--- a/public/emoji/1f61e.svg
+++ b/public/emoji/1f61e.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#FFCC4D" d="M36 18c0 9.941-8.059 18-18 18S0 27.941 0 18 8.059 0 18 0s18 8.059 18 18"/><path fill="#664500" d="M23.485 28.879C23.474 28.835 22.34 24.5 18 24.5s-5.474 4.335-5.485 4.379c-.053.213.044.431.232.544.188.112.433.086.596-.06.009-.008 1.013-.863 4.657-.863 3.59 0 4.617.83 4.656.863.095.09.219.137.344.137.084 0 .169-.021.246-.064.196-.112.294-.339.239-.557zm2.295-13.238c-.341-.093-.692-.14-1.043-.14-2.345 0-4.053 2.06-4.125 2.147-.143.176-.148.425-.017.609.134.184.374.253.586.173.005-.002.572-.214 1.564-.214.714 0 1.469.107 2.244.319 2.342.638 3.313 1.818 3.334 1.844.098.124.243.191.394.191.066 0 .134-.014.197-.041.209-.09.331-.31.297-.534-.021-.146-.577-3.576-3.431-4.354zm-14.554-.129c-.317 0-.636.039-.947.116-2.87.707-3.513 4.121-3.539 4.267-.04.223.076.443.281.54.067.031.14.047.211.047.145 0 .287-.063.385-.18.01-.012 1.01-1.178 3.379-1.761.714-.176 1.412-.265 2.073-.265 1.104 0 1.732.253 1.735.254.067.028.131.04.207.04.272.012.509-.221.509-.5 0-.165-.08-.311-.203-.402-.367-.435-1.953-2.156-4.091-2.156z"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><circle fill="#FFCC4D" cx="18" cy="18" r="18"/><path fill="#664500" d="M23.485 28.879C23.474 28.835 22.34 24.5 18 24.5s-5.474 4.335-5.485 4.379c-.053.213.044.431.232.544.188.112.433.086.596-.06.009-.008 1.013-.863 4.657-.863 3.59 0 4.617.83 4.656.863.095.09.219.137.344.137.084 0 .169-.021.246-.064.196-.112.294-.339.239-.557zM11.226 15.512c-.317 0-.636.039-.947.116-2.87.707-3.513 4.121-3.539 4.267-.04.223.076.443.281.54.067.031.14.047.211.047.145 0 .287-.063.385-.18.01-.012 1.01-1.178 3.379-1.761.714-.176 1.412-.265 2.073-.265 1.104 0 1.732.253 1.735.254.067.028.131.04.207.04.272.012.509-.221.509-.5 0-.165-.08-.311-.203-.402-.367-.435-1.953-2.156-4.091-2.156zm13.548 0c.317 0 .636.039.947.116 2.87.707 3.513 4.121 3.539 4.267.04.223-.076.443-.281.54-.067.031-.14.047-.211.047-.145 0-.287-.063-.385-.18-.01-.012-1.01-1.178-3.379-1.761-.714-.176-1.412-.265-2.073-.265-1.104 0-1.731.253-1.735.254-.067.028-.131.04-.206.04-.272.012-.509-.221-.509-.5 0-.165.08-.311.203-.402.366-.435 1.952-2.156 4.09-2.156z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f638.svg b/public/emoji/1f638.svg
index 98a25a5a93863f85b22d923c300da1716a9cda18..4e125ab97094cede7bf668a54316f818087b1d18 100644
--- a/public/emoji/1f638.svg
+++ b/public/emoji/1f638.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#FFCC4D" d="M34.964 11.955L35 12s1-10 0-11c-.91-.91-6.771.66-7.822.951C24.752.717 21.735 0 18 0c-3.729 0-6.742.719-9.166 1.954C7.814 1.671 1.913.087 1 1 0 2 1 12 1 12l.047-.059C.308 14.494 0 17.251 0 20c0 9.941 11 16 18 16s18-6 18-16c0-2.751-.306-5.502-1.036-8.045z"/><path fill="#292F33" d="M31.404 23.705c-.123-.169-.338-.245-.542-.186-.069.02-7 1.98-12.863 1.98-5.858 0-12.793-1.961-12.862-1.98-.209-.062-.431.021-.552.2-.121.18-.113.416.02.587.292.377 7.221 9.194 13.395 9.194 7.185 0 13.166-8.846 13.417-9.223.115-.174.11-.402-.013-.572z"/><path fill="#F5F8FA" d="M8 25s5 2 10 2 10-2 10-2 0 3-1 3-2-1-2-1-4 2-7 2-7-2-7-2-1 1-2 1-1-3-1-3z"/><path fill="#67757F" d="M18 19.5c3 0 3 .5 3 1.5s-1.5 3-3 3-3-2-3-3-.001-1.5 3-1.5z"/><path d="M26 20.5c-.209 0-.404-.133-.475-.342-.087-.262.055-.545.316-.633l9-3c.264-.087.545.054.633.316.087.262-.055.545-.316.632l-9 3c-.053.019-.105.027-.158.027zm-1.001 2c-.233 0-.441-.164-.489-.402-.055-.271.121-.534.392-.588l10-2c.26-.054.533.12.588.392.055.271-.121.534-.393.588l-10 2c-.032.007-.065.01-.098.01zM10 20.5c-.052 0-.106-.008-.158-.025l-9-3c-.262-.087-.403-.37-.316-.632.087-.262.368-.404.632-.316l9 3c.262.088.403.371.316.633-.07.207-.264.34-.474.34zm1 2c-.032 0-.065-.003-.099-.01l-10-2c-.271-.054-.446-.317-.392-.588.054-.271.313-.449.588-.392l10 2c.271.054.446.317.392.588-.046.238-.255.402-.489.402z" fill="#9AAAB4"/><path fill="#292F33" d="M28.416 17.723C28.355 17.632 26.901 15.5 24 15.5c-2.9 0-4.355 2.132-4.416 2.223-.135.202-.104.47.071.638.174.167.446.185.643.042.012-.01 1.262-.903 3.702-.903 2.426 0 3.674.881 3.702.901.089.066.194.099.298.099.124 0 .248-.046.344-.137.177-.167.207-.438.072-.64zm-12 0C16.355 17.632 14.901 15.5 12 15.5c-2.9 0-4.355 2.132-4.416 2.223-.134.202-.104.47.071.638.175.167.447.185.642.042.013-.01 1.262-.903 3.703-.903 2.426 0 3.674.881 3.702.901.089.066.194.099.298.099.124 0 .248-.046.344-.137.177-.167.207-.438.072-.64zM31.001 16c-.305 0-.604-.138-.801-.4-2.641-3.521-6.061-3.599-6.206-3.6-.55-.006-.994-.456-.991-1.005.003-.551.447-.995.997-.995.184 0 4.537.05 7.8 4.4.332.442.242 1.069-.2 1.4-.18.135-.39.2-.599.2zM4.999 16c-.208 0-.419-.065-.599-.2-.442-.331-.531-.958-.2-1.4C7.462 10.05 11.816 10 12 10c.552 0 1 .448 1 1 0 .551-.445.998-.996 1-.156.002-3.569.086-6.205 3.6-.195.262-.496.4-.8.4z"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#FFCC4D" d="M35.734 19.929C35.375 16.66 35 15 34 13c0 0 3-9 1-12.7-.674-1.246-7.404 1.688-10 3.7 0 0-4-.998-7-.998S11 4 11 4C8.404 1.988 1.674-.946 1 .3-1 4 2 13 2 13 1 15 .625 16.66.266 19.929-.129 23.513.657 26.37 1 27c.39.716 2.367 3.025 5 5 4 3 10 4 12 4s8-1 12-4c2.633-1.975 4.61-4.284 5-5 .343-.63 1.129-3.487.734-7.071z"/><path fill="#E75A70" d="M18 19.5c3 0 3 .5 3 1.5s-1.5 3-3 3-3-2-3-3-.001-1.5 3-1.5z"/><path fill="#F18F26" d="M2 3c.447-1.342 5.64 1 6.64 2C8.64 5 4 8 3 11c0 0-2-5-1-8zm32 0c-.447-1.342-5.64 1-6.64 2 0 0 4.64 3 5.64 6 0 0 2-5 1-8z"/><path fill="#FFCC4D" d="M4.934 5.603C4.934 4.189 11 7 10 8s-2 1.603-3 2.603-2.066-4-2.066-5zm26.132 0C31.066 4.189 25 7 26 8s2 1.603 3 2.603 2.066-4 2.066-5z"/><path fill="#FEE7B8" d="M.701 25c-.148 0-.294-.065-.393-.19-.171-.217-.134-.531.083-.702.162-.127 4.02-3.12 10.648-2.605.275.02.481.261.46.536-.021.275-.257.501-.537.46-6.233-.474-9.915 2.366-9.951 2.395-.093.071-.202.106-.31.106zm8.868-4.663c-.049 0-.1-.007-.149-.022-4.79-1.497-8.737-.347-8.777-.336-.265.081-.543-.07-.623-.335-.079-.265.071-.543.335-.622.173-.052 4.286-1.247 9.362.338.264.083.411.363.328.627-.066.213-.263.35-.476.35zM35.299 25c.148 0 .294-.065.393-.19.171-.217.134-.531-.083-.702-.162-.127-4.02-3.12-10.648-2.605-.275.02-.481.261-.46.536.021.275.257.501.537.46 6.233-.474 9.915 2.366 9.951 2.395.093.071.202.106.31.106zm-8.868-4.663c.049 0 .1-.007.149-.022 4.79-1.497 8.737-.347 8.777-.336.265.081.543-.07.623-.335.079-.265-.071-.543-.335-.622-.173-.052-4.286-1.247-9.362.338-.264.083-.411.363-.328.627.065.213.263.35.476.35z"/><path fill="#292F33" d="M28.023 24.191C27.046 24.383 23 26 18 26s-9.046-1.617-10.023-1.809C7 24 6.885 25.264 7.442 27.132 8 29 11 33 18 33s10-4 10.558-5.868c.557-1.868.442-3.132-.535-2.941z"/><path fill="#F5F8FA" d="M8 25s5 2 10 2 10-2 10-2-.5 3-1.5 3-1.5-1-1.5-1-4 2-7 2-7-2-7-2-.5 1-1.5 1S8 25 8 25z"/><path d="M28.416 17.723C28.355 17.632 26.901 15.5 24 15.5c-2.9 0-4.355 2.132-4.416 2.223-.135.202-.104.47.071.638.174.167.446.185.643.042.012-.01 1.262-.903 3.702-.903 2.426 0 3.674.881 3.702.901.089.066.194.099.298.099.124 0 .248-.046.344-.137.177-.167.207-.438.072-.64zm-12 0C16.355 17.632 14.901 15.5 12 15.5c-2.9 0-4.355 2.132-4.416 2.223-.134.202-.104.47.071.638.175.167.447.185.642.042.013-.01 1.262-.903 3.703-.903 2.426 0 3.674.881 3.702.901.089.066.194.099.298.099.124 0 .248-.046.344-.137.177-.167.207-.438.072-.64zM31.001 16c-.305 0-.604-.138-.801-.4-2.641-3.521-6.061-3.599-6.206-3.6-.55-.006-.994-.456-.991-1.005.003-.551.447-.995.997-.995.184 0 4.537.05 7.8 4.4.332.442.242 1.069-.2 1.4-.18.135-.39.2-.599.2zM4.999 16c-.208 0-.419-.065-.599-.2-.442-.331-.531-.958-.2-1.4C7.462 10.05 11.816 10 12 10c.552 0 1 .448 1 1 0 .551-.445.998-.996 1-.156.002-3.569.086-6.205 3.6-.195.262-.496.4-.8.4z" fill="#292F33"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f639.svg b/public/emoji/1f639.svg
index b468daa6755f6166c985bcdfbd1fedffa6397c02..92f9022d9b476ebe83cc92743088561082844ef2 100644
--- a/public/emoji/1f639.svg
+++ b/public/emoji/1f639.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#FFCC4D" d="M34.964 11.955L35 12s1-10 0-11c-.91-.91-6.771.66-7.822.951C24.752.717 21.735 0 18 0c-3.729 0-6.742.719-9.166 1.954C7.814 1.671 1.913.087 1 1 0 2 1 12 1 12l.047-.059C.308 14.494 0 17.251 0 20c0 9.941 11 16 18 16s18-6 18-16c0-2.751-.306-5.502-1.036-8.045z"/><path fill="#292F33" d="M31.404 23.705c-.123-.169-.338-.245-.542-.186-.069.02-7 1.98-12.863 1.98-5.858 0-12.793-1.961-12.862-1.98-.209-.062-.431.021-.552.2-.121.18-.113.416.02.587.292.377 7.221 9.194 13.395 9.194 7.185 0 13.166-8.846 13.417-9.223.115-.174.11-.402-.013-.572z"/><path fill="#F5F8FA" d="M8 25s5 2 10 2 10-2 10-2 0 3-1 3-2-1-2-1-4 2-7 2-7-2-7-2-1 1-2 1-1-3-1-3z"/><path fill="#67757F" d="M18 19.5c3 0 3 .5 3 1.5s-1.5 3-3 3-3-2-3-3-.001-1.5 3-1.5z"/><path d="M26 20.5c-.209 0-.404-.133-.475-.342-.087-.262.055-.545.316-.633l9-3c.264-.087.545.054.633.316.087.262-.055.545-.316.632l-9 3c-.053.019-.105.027-.158.027zm-1.001 2c-.233 0-.441-.164-.489-.402-.055-.271.121-.534.392-.588l10-2c.26-.054.533.12.588.392.055.271-.121.534-.393.588l-10 2c-.032.007-.065.01-.098.01zM10 20.5c-.052 0-.106-.008-.158-.025l-9-3c-.262-.087-.403-.37-.316-.632.087-.262.368-.404.632-.316l9 3c.262.088.403.371.316.633-.07.207-.264.34-.474.34zm1 2c-.032 0-.065-.003-.099-.01l-10-2c-.271-.054-.446-.317-.392-.588.054-.271.313-.449.588-.392l10 2c.271.054.446.317.392.588-.046.238-.255.402-.489.402z" fill="#9AAAB4"/><path fill="#292F33" d="M28.416 17.723C28.355 17.632 26.901 15.5 24 15.5c-2.9 0-4.355 2.132-4.416 2.223-.135.202-.104.47.071.638.174.167.446.185.643.042.012-.01 1.262-.903 3.702-.903 2.426 0 3.674.881 3.702.901.089.066.194.099.298.099.124 0 .248-.046.344-.137.177-.167.207-.438.072-.64zm-12 0C16.355 17.632 14.901 15.5 12 15.5c-2.9 0-4.355 2.132-4.416 2.223-.134.202-.104.47.071.638.175.167.447.185.642.042.013-.01 1.262-.903 3.703-.903 2.426 0 3.674.881 3.702.901.089.066.194.099.298.099.124 0 .248-.046.344-.137.177-.167.207-.438.072-.64z"/><path fill="#5DADEC" d="M27 19c5 2 9 5 9 10 0 4-3 4-3 4-6 0-2-8-6-14zM9 19c-5 2-9 5-9 10 0 4 3 4 3 4 6 0 2-8 6-14z"/><path fill="#292F33" d="M31.001 16c-.305 0-.604-.138-.801-.4-2.641-3.521-6.061-3.599-6.206-3.6-.55-.006-.994-.456-.991-1.005.003-.551.447-.995.997-.995.184 0 4.537.05 7.8 4.4.332.442.242 1.069-.2 1.4-.18.135-.39.2-.599.2zM4.999 16c-.208 0-.419-.065-.599-.2-.442-.331-.531-.958-.2-1.4C7.462 10.05 11.816 10 12 10c.552 0 1 .448 1 1 0 .551-.445.998-.996 1-.156.002-3.569.086-6.205 3.6-.195.262-.496.4-.8.4z"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#FFCC4D" d="M35.734 19.929C35.375 16.66 35 15 34 13c0 0 3-9 1-12.7-.674-1.246-7.404 1.688-10 3.7 0 0-4-.998-7-.998S11 4 11 4C8.404 1.988 1.674-.946 1 .3-1 4 2 13 2 13 1 15 .625 16.66.266 19.929-.129 23.513.657 26.37 1 27c.39.716 2.367 3.025 5 5 4 3 10 4 12 4s8-1 12-4c2.633-1.975 4.61-4.284 5-5 .343-.63 1.129-3.487.734-7.071z"/><path fill="#E75A70" d="M18 19.5c3 0 3 .5 3 1.5s-1.5 3-3 3-3-2-3-3-.001-1.5 3-1.5z"/><path fill="#F18F26" d="M2 3c.447-1.342 5.64 1 6.64 2C8.64 5 4 8 3 11c0 0-2-5-1-8zm32 0c-.447-1.342-5.64 1-6.64 2 0 0 4.64 3 5.64 6 0 0 2-5 1-8z"/><path fill="#FFCC4D" d="M4.934 5.603C4.934 4.189 11 7 10 8s-2 1.603-3 2.603-2.066-4-2.066-5zm26.132 0C31.066 4.189 25 7 26 8s2 1.603 3 2.603 2.066-4 2.066-5z"/><path fill="#FEE7B8" d="M.701 25c-.148 0-.294-.065-.393-.19-.171-.217-.134-.531.083-.702.162-.127 4.02-3.12 10.648-2.605.275.02.481.261.46.536-.021.275-.257.501-.537.46-6.233-.474-9.915 2.366-9.951 2.395-.093.071-.202.106-.31.106zm8.868-4.663c-.049 0-.1-.007-.149-.022-4.79-1.497-8.737-.347-8.777-.336-.265.081-.543-.07-.623-.335-.079-.265.071-.543.335-.622.173-.052 4.286-1.247 9.362.338.264.083.411.363.328.627-.066.213-.263.35-.476.35zM35.299 25c.148 0 .294-.065.393-.19.171-.217.134-.531-.083-.702-.162-.127-4.02-3.12-10.648-2.605-.275.02-.481.261-.46.536.021.275.257.501.537.46 6.233-.474 9.915 2.366 9.951 2.395.093.071.202.106.31.106zm-8.868-4.663c.049 0 .1-.007.149-.022 4.79-1.497 8.737-.347 8.777-.336.265.081.543-.07.623-.335.079-.265-.071-.543-.335-.622-.173-.052-4.286-1.247-9.362.338-.264.083-.411.363-.328.627.065.213.263.35.476.35z"/><path fill="#292F33" d="M28.023 24.191C27.046 24.383 23 26 18 26s-9.046-1.617-10.023-1.809C7 24 6.885 25.264 7.442 27.132 8 29 11 33 18 33s10-4 10.558-5.868c.557-1.868.442-3.132-.535-2.941z"/><path fill="#F5F8FA" d="M8 25s5 2 10 2 10-2 10-2-.5 3-1.5 3-1.5-1-1.5-1-4 2-7 2-7-2-7-2-.5 1-1.5 1S8 25 8 25z"/><path d="M28.416 17.723C28.355 17.632 26.901 15.5 24 15.5c-2.9 0-4.355 2.132-4.416 2.223-.135.202-.104.47.071.638.174.167.446.185.643.042.012-.01 1.262-.903 3.702-.903 2.426 0 3.674.881 3.702.901.089.066.194.099.298.099.124 0 .248-.046.344-.137.177-.167.207-.438.072-.64zm-12 0C16.355 17.632 14.901 15.5 12 15.5c-2.9 0-4.355 2.132-4.416 2.223-.134.202-.104.47.071.638.175.167.447.185.642.042.013-.01 1.262-.903 3.703-.903 2.426 0 3.674.881 3.702.901.089.066.194.099.298.099.124 0 .248-.046.344-.137.177-.167.207-.438.072-.64zM31.001 16c-.305 0-.604-.138-.801-.4-2.641-3.521-6.061-3.599-6.206-3.6-.55-.006-.994-.456-.991-1.005.003-.551.447-.995.997-.995.184 0 4.537.05 7.8 4.4.332.442.242 1.069-.2 1.4-.18.135-.39.2-.599.2zM4.999 16c-.208 0-.419-.065-.599-.2-.442-.331-.531-.958-.2-1.4C7.462 10.05 11.816 10 12 10c.552 0 1 .448 1 1 0 .551-.445.998-.996 1-.156.002-3.569.086-6.205 3.6-.195.262-.496.4-.8.4z" fill="#292F33"/><path d="M27 19c5 2 9 5 9 10 0 4-3 4-3 4-6 0-2-8-6-14zM9 19c-5 2-9 5-9 10 0 4 3 4 3 4 6 0 2-8 6-14z" fill="#5DADEC"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f63a.svg b/public/emoji/1f63a.svg
index 97dfc19ab1d6edaeedfbf6c4a75c3a01f268f047..88057ceb0d23ca91207bf31d920b0431f702f541 100644
--- a/public/emoji/1f63a.svg
+++ b/public/emoji/1f63a.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#FFCC4D" d="M36 20c0 10-11 16-18 16S0 29.941 0 20C0 10.059 4 0 18 0s18 10 18 20z"/><path fill="#FFCC4D" d="M35 1c1 1 0 11 0 11L27 2s7-2 8-1zM1 1C0 2 1 12 1 12L9 2S2 0 1 1z"/><path fill="#292F33" d="M31.404 23.705c-.123-.169-.338-.245-.542-.186-.069.02-7 1.98-12.863 1.98-5.858 0-12.793-1.961-12.862-1.98-.209-.062-.431.021-.552.2-.121.18-.113.416.02.587.292.377 7.221 9.194 13.395 9.194 7.185 0 13.166-8.846 13.417-9.223.115-.174.11-.402-.013-.572z"/><ellipse fill="#292F33" cx="12" cy="14.5" rx="2" ry="3.5"/><ellipse fill="#292F33" cx="24" cy="14.5" rx="2" ry="3.5"/><path fill="#F5F8FA" d="M8 25s5 2 10 2 10-2 10-2 0 3-1 3-2-1-2-1-4 2-7 2-7-2-7-2-1 1-2 1-1-3-1-3z"/><path fill="#67757F" d="M18 19.5c3 0 3 .5 3 1.5s-1.5 3-3 3-3-2-3-3-.001-1.5 3-1.5z"/><path d="M26 20.5c-.209 0-.404-.133-.475-.342-.087-.262.055-.545.316-.633l9-3c.264-.087.545.054.633.316.087.262-.055.545-.316.632l-9 3c-.053.019-.105.027-.158.027zm-1.001 2c-.233 0-.441-.164-.489-.402-.055-.271.121-.534.392-.588l10-2c.26-.054.533.12.588.392.055.271-.121.534-.393.588l-10 2c-.032.007-.065.01-.098.01zM10 20.5c-.052 0-.106-.008-.158-.025l-9-3c-.262-.087-.403-.37-.316-.632.087-.262.368-.404.632-.316l9 3c.262.088.403.371.316.633-.07.207-.264.34-.474.34zm1 2c-.032 0-.065-.003-.099-.01l-10-2c-.271-.054-.446-.317-.392-.588.054-.271.313-.449.588-.392l10 2c.271.054.446.317.392.588-.046.238-.255.402-.489.402z" fill="#9AAAB4"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#FFCC4D" d="M35.734 19.929C35.375 16.66 35 15 34 13c0 0 3-9 1-12.7-.674-1.246-7.404 1.688-10 3.7 0 0-4-.998-7-.998S11 4 11 4C8.404 1.988 1.674-.946 1 .3-1 4 2 13 2 13 1 15 .625 16.66.266 19.929-.129 23.513.657 26.37 1 27c.39.716 2.367 3.025 5 5 4 3 10 4 12 4s8-1 12-4c2.633-1.975 4.61-4.284 5-5 .343-.63 1.129-3.487.734-7.071z"/><path fill="#E75A70" d="M18 19.5c3 0 3 .5 3 1.5s-1.5 3-3 3-3-2-3-3-.001-1.5 3-1.5z"/><path fill="#F18F26" d="M2 3c.447-1.342 5.64 1 6.64 2C8.64 5 4 8 3 11c0 0-2-5-1-8zm32 0c-.447-1.342-5.64 1-6.64 2 0 0 4.64 3 5.64 6 0 0 2-5 1-8z"/><path fill="#FFCC4D" d="M4.934 5.603C4.934 4.189 11 7 10 8s-2 1.603-3 2.603-2.066-4-2.066-5zm26.132 0C31.066 4.189 25 7 26 8s2 1.603 3 2.603 2.066-4 2.066-5z"/><path fill="#FEE7B8" d="M.701 25c-.148 0-.294-.065-.393-.19-.171-.217-.134-.531.083-.702.162-.127 4.02-3.12 10.648-2.605.275.02.481.261.46.536-.021.275-.257.501-.537.46-6.233-.474-9.915 2.366-9.951 2.395-.093.071-.202.106-.31.106zm8.868-4.663c-.049 0-.1-.007-.149-.022-4.79-1.497-8.737-.347-8.777-.336-.265.081-.543-.07-.623-.335-.079-.265.071-.543.335-.622.173-.052 4.286-1.247 9.362.338.264.083.411.363.328.627-.066.213-.263.35-.476.35zM35.299 25c.148 0 .294-.065.393-.19.171-.217.134-.531-.083-.702-.162-.127-4.02-3.12-10.648-2.605-.275.02-.481.261-.46.536.021.275.257.501.537.46 6.233-.474 9.915 2.366 9.951 2.395.093.071.202.106.31.106zm-8.868-4.663c.049 0 .1-.007.149-.022 4.79-1.497 8.737-.347 8.777-.336.265.081.543-.07.623-.335.079-.265-.071-.543-.335-.622-.173-.052-4.286-1.247-9.362.338-.264.083-.411.363-.328.627.065.213.263.35.476.35z"/><path fill="#292F33" d="M28.023 24.191C27.046 24.383 23 26 18 26s-9.046-1.617-10.023-1.809C7 24 6.885 25.264 7.442 27.132 8 29 11 33 18 33s10-4 10.558-5.868c.557-1.868.442-3.132-.535-2.941z"/><path fill="#F5F8FA" d="M8 25s5 2 10 2 10-2 10-2-.5 3-1.5 3-1.5-1-1.5-1-4 2-7 2-7-2-7-2-.5 1-1.5 1S8 25 8 25z"/><g fill="#292F33"><ellipse cx="12" cy="14.5" rx="2" ry="3.5"/><ellipse cx="24" cy="14.5" rx="2" ry="3.5"/></g></svg>
\ No newline at end of file
diff --git a/public/emoji/1f63b.svg b/public/emoji/1f63b.svg
index 0255ef366dd3dd496b2065f1b345e13989592366..a4dd7e46b8ef1b2c813df7cfe49a43f9b4bbc56d 100644
--- a/public/emoji/1f63b.svg
+++ b/public/emoji/1f63b.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#FFCC4D" d="M36 20c0 10-11 16-18 16S0 29.941 0 20C0 10.059 4 0 18 0s18 10 18 20z"/><path fill="#FFCC4D" d="M35 1c1 1 0 11 0 11L27 2s7-2 8-1zM1 1C0 2 1 12 1 12L9 2S2 0 1 1z"/><path fill="#292F33" d="M31.404 23.705c-.123-.169-.338-.245-.542-.186-.069.02-7 1.98-12.863 1.98-5.858 0-12.793-1.961-12.862-1.98-.209-.062-.431.021-.552.2-.121.18-.113.416.02.587.292.377 7.221 9.194 13.395 9.194 7.185 0 13.166-8.846 13.417-9.223.115-.174.11-.402-.013-.572z"/><path fill="#F5F8FA" d="M8 25s5 2 10 2 10-2 10-2 0 3-1 3-2-1-2-1-4 2-7 2-7-2-7-2-1 1-2 1-1-3-1-3z"/><path fill="#67757F" d="M18 19.5c3 0 3 .5 3 1.5s-1.5 3-3 3-3-2-3-3-.001-1.5 3-1.5z"/><path d="M26 20.5c-.209 0-.404-.133-.475-.342-.087-.262.055-.545.316-.633l9-3c.264-.087.545.054.633.316.087.262-.055.545-.316.632l-9 3c-.053.019-.105.027-.158.027zm-1.001 2c-.233 0-.441-.164-.489-.402-.055-.271.121-.534.392-.588l10-2c.26-.054.533.12.588.392.055.271-.121.534-.393.588l-10 2c-.032.007-.065.01-.098.01zM10 20.5c-.052 0-.106-.008-.158-.025l-9-3c-.262-.087-.403-.37-.316-.632.087-.262.368-.404.632-.316l9 3c.262.088.403.371.316.633-.07.207-.264.34-.474.34zm1 2c-.032 0-.065-.003-.099-.01l-10-2c-.271-.054-.446-.317-.392-.588.054-.271.313-.449.588-.392l10 2c.271.054.446.317.392.588-.046.238-.255.402-.489.402z" fill="#9AAAB4"/><path fill="#E75A70" d="M16.226 5.117c-.859-2.431-3.525-3.707-5.956-2.85-1.477.52-2.521 1.711-2.928 3.104-1.191-.829-2.751-1.1-4.225-.58-2.431.857-3.708 3.525-2.85 5.956.122.345.284.663.472.958 1.951 3.582 7.588 6.1 11.002 6.131 2.637-2.167 5.445-7.664 4.717-11.677-.038-.348-.113-.698-.232-1.042zm3.548 0c.859-2.431 3.525-3.707 5.956-2.85 1.477.52 2.521 1.711 2.929 3.104 1.191-.829 2.751-1.1 4.225-.58 2.43.857 3.707 3.525 2.85 5.956-.123.345-.284.663-.473.958-1.951 3.582-7.588 6.1-11.002 6.131-2.637-2.167-5.445-7.664-4.717-11.677.038-.348.113-.698.232-1.042z"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#FFCC4D" d="M35.734 19.929C35.375 16.66 35 15 34 13c0 0 3-9 1-12.7-.674-1.246-7.404 1.688-10 3.7 0 0-4-.998-7-.998S11 4 11 4C8.404 1.988 1.674-.946 1 .3-1 4 2 13 2 13 1 15 .625 16.66.266 19.929-.129 23.513.657 26.37 1 27c.39.716 2.367 3.025 5 5 4 3 10 4 12 4s8-1 12-4c2.633-1.975 4.61-4.284 5-5 .343-.63 1.129-3.487.734-7.071z"/><path fill="#E75A70" d="M18 19.5c3 0 3 .5 3 1.5s-1.5 3-3 3-3-2-3-3-.001-1.5 3-1.5z"/><path fill="#F18F26" d="M2 3c.447-1.342 5.64 1 6.64 2C8.64 5 4 8 3 11c0 0-2-5-1-8zm32 0c-.447-1.342-5.64 1-6.64 2 0 0 4.64 3 5.64 6 0 0 2-5 1-8z"/><path fill="#FFCC4D" d="M4.934 5.603C4.934 4.189 11 7 10 8s-2 1.603-3 2.603-2.066-4-2.066-5zm26.132 0C31.066 4.189 25 7 26 8s2 1.603 3 2.603 2.066-4 2.066-5z"/><path fill="#FEE7B8" d="M.701 25c-.148 0-.294-.065-.393-.19-.171-.217-.134-.531.083-.702.162-.127 4.02-3.12 10.648-2.605.275.02.481.261.46.536-.021.275-.257.501-.537.46-6.233-.474-9.915 2.366-9.951 2.395-.093.071-.202.106-.31.106zm8.868-4.663c-.049 0-.1-.007-.149-.022-4.79-1.497-8.737-.347-8.777-.336-.265.081-.543-.07-.623-.335-.079-.265.071-.543.335-.622.173-.052 4.286-1.247 9.362.338.264.083.411.363.328.627-.066.213-.263.35-.476.35zM35.299 25c.148 0 .294-.065.393-.19.171-.217.134-.531-.083-.702-.162-.127-4.02-3.12-10.648-2.605-.275.02-.481.261-.46.536.021.275.257.501.537.46 6.233-.474 9.915 2.366 9.951 2.395.093.071.202.106.31.106zm-8.868-4.663c.049 0 .1-.007.149-.022 4.79-1.497 8.737-.347 8.777-.336.265.081.543-.07.623-.335.079-.265-.071-.543-.335-.622-.173-.052-4.286-1.247-9.362.338-.264.083-.411.363-.328.627.065.213.263.35.476.35z"/><path fill="#292F33" d="M28.023 24.191C27.046 24.383 23 26 18 26s-9.046-1.617-10.023-1.809C7 24 6.885 25.264 7.442 27.132 8 29 11 33 18 33s10-4 10.558-5.868c.557-1.868.442-3.132-.535-2.941z"/><path fill="#F5F8FA" d="M8 25s5 2 10 2 10-2 10-2-.5 3-1.5 3-1.5-1-1.5-1-4 2-7 2-7-2-7-2-.5 1-1.5 1S8 25 8 25z"/><path d="M16.226 5.117c-.859-2.431-3.525-3.707-5.956-2.85-1.477.52-2.521 1.711-2.928 3.104-1.191-.829-2.751-1.1-4.225-.58-2.431.857-3.708 3.525-2.85 5.956.122.345.284.663.472.958 1.951 3.582 7.588 6.1 11.002 6.131 2.637-2.167 5.445-7.664 4.717-11.677-.038-.349-.113-.698-.232-1.042zm3.548 0c.859-2.431 3.525-3.707 5.956-2.85 1.477.52 2.521 1.711 2.929 3.104 1.191-.829 2.751-1.1 4.225-.58 2.43.857 3.707 3.525 2.85 5.956-.123.345-.284.663-.473.958-1.951 3.582-7.588 6.1-11.002 6.131-2.637-2.167-5.445-7.664-4.717-11.677.038-.349.113-.698.232-1.042z" fill="#DD2E44"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f63c.svg b/public/emoji/1f63c.svg
index 5235cbc62b5c83f47c656bd5e243e0848977e5bf..198ad47a5aaf1541288136ed6872e92a3afc9f2f 100644
--- a/public/emoji/1f63c.svg
+++ b/public/emoji/1f63c.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#FFCC4D" d="M36 20c0 10-11 16-18 16S0 29.941 0 20C0 10.059 4 0 18 0s18 10 18 20z"/><path fill="#FFCC4D" d="M35 1c1 1 0 11 0 11L27 2s7-2 8-1zM1 1C0 2 1 12 1 12L9 2S2 0 1 1z"/><ellipse fill="#292F33" cx="12" cy="14.5" rx="2" ry="3.5"/><ellipse fill="#292F33" cx="24" cy="14.5" rx="2" ry="3.5"/><path fill="#67757F" d="M18 19.5c3 0 3 .5 3 1.5s-1.5 3-3 3-3-2-3-3-.001-1.5 3-1.5z"/><path d="M26 20.5c-.209 0-.404-.133-.475-.342-.087-.262.055-.545.316-.633l9-3c.264-.087.545.054.633.316.087.262-.055.545-.316.632l-9 3c-.053.019-.105.027-.158.027zm-1.001 2c-.233 0-.441-.164-.489-.402-.055-.271.121-.534.392-.588l10-2c.26-.054.533.12.588.392.055.271-.121.534-.393.588l-10 2c-.032.007-.065.01-.098.01zM10 20.5c-.052 0-.106-.008-.158-.025l-9-3c-.262-.087-.403-.37-.316-.632.087-.262.368-.404.632-.316l9 3c.262.088.403.371.316.633-.07.207-.264.34-.474.34zm1 2c-.032 0-.065-.003-.099-.01l-10-2c-.271-.054-.446-.317-.392-.588.054-.271.313-.449.588-.392l10 2c.271.054.446.317.392.588-.046.238-.255.402-.489.402z" fill="#9AAAB4"/><path fill="#292F33" d="M25.327 25.622c-.152-.132-.369-.159-.551-.069l-4 2c-1.871.935-6.727.947-6.776.947-.276 0-.5.224-.5.5 0 .185.101.347.25.433v.001h.001v.001c.071.04.153.063.24.065h7.008c2.658 0 4.089-2.186 4.475-3.342.064-.192.006-.403-.147-.536zM21 12c-.256 0-.512-.098-.707-.293-.391-.391-.391-1.023 0-1.414C24.537 6.049 28.819 6 29 6c.553 0 1 .448 1 1 0 .551-.445.998-.995 1-.065.001-3.687.096-7.298 3.707-.195.195-.451.293-.707.293zm-6 0c-.256 0-.512-.098-.707-.293C10.667 8.082 7.031 8 6.995 8c-.551-.006-.995-.455-.992-1.005C6.006 6.444 6.45 6 7 6c.18 0 4.463.049 8.707 4.293.391.391.391 1.023 0 1.414-.195.195-.451.293-.707.293z"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#FFCC4D" d="M35.734 19.929C35.375 16.66 35 15 34 13c0 0 3-9 1-12.7-.674-1.246-7.404 1.688-10 3.7 0 0-4-.998-7-.998S11 4 11 4C8.404 1.988 1.674-.946 1 .3-1 4 2 13 2 13 1 15 .625 16.66.266 19.929-.129 23.513.657 26.37 1 27c.39.716 2.367 3.025 5 5 4 3 10 4 12 4s8-1 12-4c2.633-1.975 4.61-4.284 5-5 .343-.63 1.129-3.487.734-7.071z"/><path fill="#E75A70" d="M18 19.5c3 0 3 .5 3 1.5s-1.5 3-3 3-3-2-3-3-.001-1.5 3-1.5z"/><path fill="#F18F26" d="M2 3c.447-1.342 5.64 1 6.64 2C8.64 5 4 8 3 11c0 0-2-5-1-8zm32 0c-.447-1.342-5.64 1-6.64 2 0 0 4.64 3 5.64 6 0 0 2-5 1-8z"/><path fill="#FFCC4D" d="M4.934 5.603C4.934 4.189 11 7 10 8s-2 1.603-3 2.603-2.066-4-2.066-5zm26.132 0C31.066 4.189 25 7 26 8s2 1.603 3 2.603 2.066-4 2.066-5z"/><path fill="#FEE7B8" d="M.701 25c-.148 0-.294-.065-.393-.19-.171-.217-.134-.531.083-.702.162-.127 4.02-3.12 10.648-2.605.275.02.481.261.46.536-.021.275-.257.501-.537.46-6.233-.474-9.915 2.366-9.951 2.395-.093.071-.202.106-.31.106zm8.868-4.663c-.049 0-.1-.007-.149-.022-4.79-1.497-8.737-.347-8.777-.336-.265.081-.543-.07-.623-.335-.079-.265.071-.543.335-.622.173-.052 4.286-1.247 9.362.338.264.083.411.363.328.627-.066.213-.263.35-.476.35zM35.299 25c.148 0 .294-.065.393-.19.171-.217.134-.531-.083-.702-.162-.127-4.02-3.12-10.648-2.605-.275.02-.481.261-.46.536.021.275.257.501.537.46 6.233-.474 9.915 2.366 9.951 2.395.093.071.202.106.31.106zm-8.868-4.663c.049 0 .1-.007.149-.022 4.79-1.497 8.737-.347 8.777-.336.265.081.543-.07.623-.335.079-.265-.071-.543-.335-.622-.173-.052-4.286-1.247-9.362.338-.264.083-.411.363-.328.627.065.213.263.35.476.35z"/><path fill="#292F33" d="M25.327 25.622c-.152-.132-.369-.159-.551-.069l-4 2c-1.871.935-6.727.947-6.776.947-.276 0-.5.224-.5.5 0 .185.101.347.25.433v.001h.001v.001c.071.04.153.063.24.065h7.008c2.658 0 4.089-2.186 4.475-3.342.064-.192.006-.403-.147-.536z"/><g fill="#292F33"><ellipse cx="12" cy="14.5" rx="2" ry="3.5"/><ellipse cx="24" cy="14.5" rx="2" ry="3.5"/><path d="M21 12c-.256 0-.512-.098-.707-.293-.391-.391-.391-1.023 0-1.414C24.537 6.049 28.819 6 29 6c.553 0 1 .448 1 1 0 .551-.445.998-.995 1-.065.001-3.687.096-7.298 3.707-.195.195-.451.293-.707.293zm-6 0c-.256 0-.512-.098-.707-.293C10.667 8.082 7.031 8 6.995 8c-.551-.006-.995-.455-.992-1.005C6.006 6.444 6.45 6 7 6c.18 0 4.463.049 8.707 4.293.391.391.391 1.023 0 1.414-.195.195-.451.293-.707.293z"/></g></svg>
\ No newline at end of file
diff --git a/public/emoji/1f63d.svg b/public/emoji/1f63d.svg
index 5e7e3e86be9a8315da221ebed362c925d7d99385..e982de7a3f72db247837001dc6f0efb05d6bf7f7 100644
--- a/public/emoji/1f63d.svg
+++ b/public/emoji/1f63d.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#FFCC4D" d="M36 20c0 10-11 16-18 16S0 29.941 0 20C0 10.059 4 0 18 0s18 10 18 20z"/><path fill="#FFCC4D" d="M35 1c1 1 0 11 0 11L27 2s7-2 8-1zM1 1C0 2 1 12 1 12L9 2S2 0 1 1z"/><path fill="#67757F" d="M18 19.5c3 0 3 .5 3 1.5s-1.5 3-3 3-3-2-3-3-.001-1.5 3-1.5z"/><path d="M26 20.5c-.209 0-.404-.133-.475-.342-.087-.262.055-.545.316-.633l9-3c.264-.087.545.054.633.316.087.262-.055.545-.316.632l-9 3c-.053.019-.105.027-.158.027zm-1.001 2c-.233 0-.441-.164-.489-.402-.055-.271.121-.534.392-.588l10-2c.26-.054.533.12.588.392.055.271-.121.534-.393.588l-10 2c-.032.007-.065.01-.098.01zM10 20.5c-.052 0-.106-.008-.158-.025l-9-3c-.262-.087-.403-.37-.316-.632.087-.262.368-.404.632-.316l9 3c.262.088.403.371.316.633-.07.207-.264.34-.474.34zm1 2c-.032 0-.065-.003-.099-.01l-10-2c-.271-.054-.446-.317-.392-.588.054-.271.313-.449.588-.392l10 2c.271.054.446.317.392.588-.046.238-.255.402-.489.402z" fill="#9AAAB4"/><path fill="#292F33" d="M28.416 17.723C28.355 17.632 26.901 15.5 24 15.5c-2.9 0-4.355 2.132-4.416 2.223-.135.202-.104.47.071.638.174.167.446.185.643.042.012-.01 1.262-.903 3.702-.903 2.426 0 3.674.881 3.702.901.089.066.194.099.298.099.124 0 .248-.046.344-.137.177-.167.207-.438.072-.64zM12 15.5c-2.9 0-4.355 2.132-4.416 2.223-.134.202-.104.47.071.638.175.167.447.185.642.042.013-.01 1.262-.903 3.703-.903 2.426 0 3.674.881 3.702.901.089.066.194.099.298.099.124 0 .248-.046.344-.137.177-.167.208-.438.072-.641-.061-.09-1.515-2.222-4.416-2.222zM21.871 30c1.335-.412 2.629-1.156 2.629-2.5 0-2.619-4.912-2.968-5.473-2.999-.277-.035-.51.194-.526.468-.017.274.19.511.464.53.035.002 3.535.299 3.535 2.001s-3.5 1.999-3.535 2.001c-.01.001-.017.006-.027.008-.123.008-.229.064-.308.157-.006.007-.011.016-.017.022-.028.039-.054.078-.072.124-.011.027-.016.057-.021.086-.005.023-.017.046-.019.07-.001.011.004.021.004.032s-.005.021-.004.031c.002.025.013.046.019.07.006.029.011.059.022.087.013.032.032.06.051.088.017.023.03.047.05.067.023.024.052.043.081.062.024.017.045.033.071.046.031.015.065.021.101.027.023.006.044.018.069.02.035.003 3.535.3 3.535 2.002 0 1.702-3.5 1.999-3.535 2.001-.273.02-.481.257-.464.53.017.265.236.469.499.469l.027-.001c.561-.031 5.473-.38 5.473-2.999 0-1.344-1.294-2.088-2.629-2.5zm9.13-14c-.305 0-.604-.138-.801-.4-2.641-3.521-6.061-3.599-6.206-3.6-.55-.006-.994-.456-.991-1.005.003-.551.447-.995.997-.995.184 0 4.537.05 7.8 4.4.332.442.242 1.069-.2 1.4-.18.135-.39.2-.599.2zM4.999 16c-.208 0-.419-.065-.599-.2-.442-.331-.531-.958-.2-1.4C7.462 10.05 11.816 10 12 10c.552 0 1 .448 1 1 0 .551-.445.998-.996 1-.156.002-3.569.086-6.205 3.6-.195.262-.496.4-.8.4z"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#FFCC4D" d="M35.734 19.929C35.375 16.66 35 15 34 13c0 0 3-9 1-12.7-.674-1.246-7.404 1.688-10 3.7 0 0-4-.998-7-.998S11 4 11 4C8.404 1.988 1.674-.946 1 .3-1 4 2 13 2 13 1 15 .625 16.66.266 19.929-.129 23.513.657 26.37 1 27c.39.716 2.367 3.025 5 5 4 3 10 4 12 4s8-1 12-4c2.633-1.975 4.61-4.284 5-5 .343-.63 1.129-3.487.734-7.071z"/><path fill="#E75A70" d="M18 19.5c3 0 3 .5 3 1.5s-1.5 3-3 3-3-2-3-3-.001-1.5 3-1.5z"/><path fill="#F18F26" d="M2 3c.447-1.342 5.64 1 6.64 2C8.64 5 4 8 3 11c0 0-2-5-1-8zm32 0c-.447-1.342-5.64 1-6.64 2 0 0 4.64 3 5.64 6 0 0 2-5 1-8z"/><path fill="#FFCC4D" d="M4.934 5.603C4.934 4.189 11 7 10 8s-2 1.603-3 2.603-2.066-4-2.066-5zm26.132 0C31.066 4.189 25 7 26 8s2 1.603 3 2.603 2.066-4 2.066-5z"/><path fill="#FEE7B8" d="M.701 25c-.148 0-.294-.065-.393-.19-.171-.217-.134-.531.083-.702.162-.127 4.02-3.12 10.648-2.605.275.02.481.261.46.536-.021.275-.257.501-.537.46-6.233-.474-9.915 2.366-9.951 2.395-.093.071-.202.106-.31.106zm8.868-4.663c-.049 0-.1-.007-.149-.022-4.79-1.497-8.737-.347-8.777-.336-.265.081-.543-.07-.623-.335-.079-.265.071-.543.335-.622.173-.052 4.286-1.247 9.362.338.264.083.411.363.328.627-.066.213-.263.35-.476.35zM35.299 25c.148 0 .294-.065.393-.19.171-.217.134-.531-.083-.702-.162-.127-4.02-3.12-10.648-2.605-.275.02-.481.261-.46.536.021.275.257.501.537.46 6.233-.474 9.915 2.366 9.951 2.395.093.071.202.106.31.106zm-8.868-4.663c.049 0 .1-.007.149-.022 4.79-1.497 8.737-.347 8.777-.336.265.081.543-.07.623-.335.079-.265-.071-.543-.335-.622-.173-.052-4.286-1.247-9.362.338-.264.083-.411.363-.328.627.065.213.263.35.476.35z"/><path fill="#292F33" d="M21.871 30c1.335-.412 2.629-1.156 2.629-2.5 0-2.619-4.912-2.968-5.473-2.999-.277-.035-.51.194-.526.468-.017.274.19.511.464.53.035.002 3.535.299 3.535 2.001s-3.5 1.999-3.535 2.001c-.01.001-.017.006-.027.008-.123.008-.229.064-.308.157-.006.007-.011.016-.017.022-.028.039-.054.078-.072.124-.011.027-.016.057-.021.086-.005.023-.017.046-.019.07-.001.011.004.021.004.032s-.005.021-.004.031c.002.025.013.046.019.07.006.029.011.059.022.087.013.032.032.06.051.088.017.023.03.047.05.067.023.024.052.043.081.062.024.017.045.033.071.046.031.015.065.021.101.027.023.006.044.018.069.02.035.003 3.535.3 3.535 2.002 0 1.702-3.5 1.999-3.535 2.001-.273.02-.481.257-.464.53.017.265.236.469.499.469l.027-.001c.561-.031 5.473-.38 5.473-2.999 0-1.344-1.294-2.088-2.629-2.5zm6.545-12.277C28.355 17.632 26.901 15.5 24 15.5c-2.9 0-4.355 2.132-4.416 2.223-.135.202-.104.47.071.638.174.167.446.185.643.042.012-.01 1.262-.903 3.702-.903 2.426 0 3.674.881 3.702.901.089.066.194.099.298.099.124 0 .248-.046.344-.137.177-.167.207-.438.072-.64zm-12 0C16.355 17.632 14.901 15.5 12 15.5c-2.9 0-4.355 2.132-4.416 2.223-.134.202-.104.47.071.638.175.167.447.185.642.042.013-.01 1.262-.903 3.703-.903 2.426 0 3.674.881 3.702.901.089.066.194.099.298.099.124 0 .248-.046.344-.137.177-.167.207-.438.072-.64zM31.001 16c-.305 0-.604-.138-.801-.4-2.641-3.521-6.061-3.599-6.206-3.6-.55-.006-.994-.456-.991-1.005.003-.551.447-.995.997-.995.184 0 4.537.05 7.8 4.4.332.442.242 1.069-.2 1.4-.18.135-.39.2-.599.2zM4.999 16c-.208 0-.419-.065-.599-.2-.442-.331-.531-.958-.2-1.4C7.462 10.05 11.816 10 12 10c.552 0 1 .448 1 1 0 .551-.445.998-.996 1-.156.002-3.569.086-6.205 3.6-.195.262-.496.4-.8.4z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f63e.svg b/public/emoji/1f63e.svg
index f93d26cbf691f4032b0139c3daf505b1c70de16f..19a41d75b8f0514880ed2f1014c0bb8f47cd9a3c 100644
--- a/public/emoji/1f63e.svg
+++ b/public/emoji/1f63e.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#FFCC4D" d="M36 20c0 10-11 16-18 16S0 29.941 0 20C0 10.059 4 0 18 0s18 10 18 20z"/><path fill="#FFCC4D" d="M35 1c1 1 0 11 0 11L27 2s7-2 8-1zM1 1C0 2 1 12 1 12L9 2S2 0 1 1z"/><ellipse fill="#292F33" cx="12" cy="14.5" rx="2" ry="3.5"/><ellipse fill="#292F33" cx="24" cy="14.5" rx="2" ry="3.5"/><path fill="#67757F" d="M18 19.5c3 0 3 .5 3 1.5s-1.5 3-3 3-3-2-3-3-.001-1.5 3-1.5z"/><path d="M26 20.5c-.209 0-.404-.133-.475-.342-.087-.262.055-.545.316-.633l9-3c.264-.087.545.054.633.316.087.262-.055.545-.316.632l-9 3c-.053.019-.105.027-.158.027zm-1.001 2c-.233 0-.441-.164-.489-.402-.055-.271.121-.534.392-.588l10-2c.26-.054.533.12.588.392.055.271-.121.534-.393.588l-10 2c-.032.007-.065.01-.098.01zM10 20.5c-.052 0-.106-.008-.158-.025l-9-3c-.262-.087-.403-.37-.316-.632.087-.262.368-.404.632-.316l9 3c.262.088.403.371.316.633-.07.207-.264.34-.474.34zm1 2c-.032 0-.065-.003-.099-.01l-10-2c-.271-.054-.446-.317-.392-.588.054-.271.313-.449.588-.392l10 2c.271.054.446.317.392.588-.046.238-.255.402-.489.402z" fill="#9AAAB4"/><path fill="#292F33" d="M30.708 10.647c-.215.215-.525.33-.849.283-4.357-.623-6.831 1.742-6.934 1.843-.393.385-1.025.381-1.412-.01s-.387-1.02.002-1.408c.13-.13 3.243-3.173 8.626-2.404.547.078.927.584.848 1.131-.031.223-.133.417-.281.565zm-25.416 0c.215.215.525.33.849.283 4.357-.623 6.831 1.742 6.934 1.843.393.385 1.025.381 1.412-.01s.387-1.02-.002-1.408c-.13-.13-3.243-3.173-8.626-2.404-.548.077-.927.584-.849 1.131.032.223.134.417.282.565zm20.193 19.232c-.045-.179-1.168-4.379-7.486-4.379s-7.44 4.2-7.485 4.379c-.055.217.043.442.237.554.195.109.439.079.6-.077.019-.019 1.954-1.855 6.648-1.855s6.63 1.837 6.648 1.855c.096.095.224.145.352.145.084 0 .169-.021.246-.064.197-.113.294-.34.24-.558z"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#FFCC4D" d="M35.734 19.929C35.375 16.66 35 15 34 13c0 0 3-9 1-12.7-.674-1.246-7.404 1.688-10 3.7 0 0-4-.998-7-.998S11 4 11 4C8.404 1.988 1.674-.946 1 .3-1 4 2 13 2 13 1 15 .625 16.66.266 19.929-.129 23.513.657 26.37 1 27c.39.716 2.367 3.025 5 5 4 3 10 4 12 4s8-1 12-4c2.633-1.975 4.61-4.284 5-5 .343-.63 1.129-3.487.734-7.071z"/><path fill="#E75A70" d="M18 19.5c3 0 3 .5 3 1.5s-1.5 3-3 3-3-2-3-3-.001-1.5 3-1.5z"/><path fill="#F18F26" d="M2 3c.447-1.342 5.64 1 6.64 2C8.64 5 4 8 3 11c0 0-2-5-1-8zm32 0c-.447-1.342-5.64 1-6.64 2 0 0 4.64 3 5.64 6 0 0 2-5 1-8z"/><path fill="#FFCC4D" d="M4.934 5.603C4.934 4.189 11 7 10 8s-2 1.603-3 2.603-2.066-4-2.066-5zm26.132 0C31.066 4.189 25 7 26 8s2 1.603 3 2.603 2.066-4 2.066-5z"/><path fill="#FEE7B8" d="M.701 25c-.148 0-.294-.065-.393-.19-.171-.217-.134-.531.083-.702.162-.127 4.02-3.12 10.648-2.605.275.02.481.261.46.536-.021.275-.257.501-.537.46-6.233-.474-9.915 2.366-9.951 2.395-.093.071-.202.106-.31.106zm8.868-4.663c-.049 0-.1-.007-.149-.022-4.79-1.497-8.737-.347-8.777-.336-.265.081-.543-.07-.623-.335-.079-.265.071-.543.335-.622.173-.052 4.286-1.247 9.362.338.264.083.411.363.328.627-.066.213-.263.35-.476.35zM35.299 25c.148 0 .294-.065.393-.19.171-.217.134-.531-.083-.702-.162-.127-4.02-3.12-10.648-2.605-.275.02-.481.261-.46.536.021.275.257.501.537.46 6.233-.474 9.915 2.366 9.951 2.395.093.071.202.106.31.106zm-8.868-4.663c.049 0 .1-.007.149-.022 4.79-1.497 8.737-.347 8.777-.336.265.081.543-.07.623-.335.079-.265-.071-.543-.335-.622-.173-.052-4.286-1.247-9.362.338-.264.083-.411.363-.328.627.065.213.263.35.476.35z"/><path fill="#292F33" d="M25.362 30.28C24.879 29.642 21.947 26 18 26c-4.234 0-7.3 4.191-7.428 4.37-.121.167-.085.381.084.516.094.075.219.114.344.114.096 0 .193-.023.277-.07.029-.016 2.918-1.597 6.722-1.597 3.792 0 6.695 1.581 6.723 1.597.086.048.215.08.281.07.277-.003.516-.182.516-.417.001-.119-.059-.226-.157-.303z"/><g fill="#292F33"><ellipse cx="12" cy="14.5" rx="2" ry="3.5"/><ellipse cx="24" cy="14.5" rx="2" ry="3.5"/><path d="M21.137 13.031c-.225-.06-.425-.215-.547-.45-.243-.469-.079-1.081.366-1.366 4.834-3.099 8.616-2.136 8.775-2.093.486.13.764.668.621 1.202-.142.532-.65.859-1.135.731-.058-.015-3.27-.777-7.383 1.859-.221.144-.471.178-.697.117zm-6.274.001c-.225.06-.476.026-.698-.116-4.13-2.647-7.352-1.867-7.384-1.859-.486.124-.993-.205-1.133-.737s.136-1.066.62-1.196c.159-.042 3.941-1.005 8.775 2.093.445.285.609.896.366 1.366-.121.234-.321.388-.546.449z"/></g></svg>
\ No newline at end of file
diff --git a/public/emoji/1f63f.svg b/public/emoji/1f63f.svg
index 4cc6054c2ee6c3e489409c4c07652b0317a06342..cdd84393f1940ec0770b8ea97da38b4343d80f9d 100644
--- a/public/emoji/1f63f.svg
+++ b/public/emoji/1f63f.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#FFCC4D" d="M36 20c0 10-11 16-18 16S0 29.941 0 20C0 10.059 4 0 18 0s18 10 18 20z"/><path fill="#FFCC4D" d="M35 1c1 1 0 11 0 11L27 2s7-2 8-1zM1 1C0 2 1 12 1 12L9 2S2 0 1 1z"/><path fill="#292F33" d="M25.362 30.636C24.879 29.87 21.947 25.5 18 25.5c-4.234 0-7.3 5.028-7.428 5.243-.121.2-.085.457.084.619.094.091.219.138.344.138.096 0 .193-.027.277-.084.029-.02 2.918-1.916 6.723-1.916 3.792 0 6.695 1.897 6.723 1.916.086.058.215.096.281.084.277-.004.516-.219.516-.5 0-.144-.06-.272-.158-.364z"/><ellipse fill="#292F33" cx="12" cy="14.5" rx="2" ry="3.5"/><ellipse fill="#292F33" cx="24" cy="14.5" rx="2" ry="3.5"/><path fill="#67757F" d="M18 19.5c3 0 3 .5 3 1.5s-1.5 3-3 3-3-2-3-3-.001-1.5 3-1.5z"/><path d="M26 20.5c-.209 0-.404-.133-.475-.342-.087-.262.055-.545.316-.633l9-3c.264-.087.545.054.633.316.087.262-.055.545-.316.632l-9 3c-.053.019-.105.027-.158.027zm-1.001 2c-.233 0-.441-.164-.489-.402-.055-.271.121-.534.392-.588l10-2c.26-.054.533.12.588.392.055.271-.121.534-.393.588l-10 2c-.032.007-.065.01-.098.01zM10 20.5c-.052 0-.106-.008-.158-.025l-9-3c-.262-.087-.403-.37-.316-.632.087-.262.368-.404.632-.316l9 3c.262.088.403.371.316.633-.07.207-.264.34-.474.34zm1 2c-.032 0-.065-.003-.099-.01l-10-2c-.271-.054-.446-.317-.392-.588.054-.271.313-.449.588-.392l10 2c.271.054.446.317.392.588-.046.238-.255.402-.489.402z" fill="#9AAAB4"/><path fill="#292F33" d="M31.001 14c-.305 0-.604-.138-.801-.4-2.641-3.521-6.061-3.599-6.206-3.6-.55-.006-.994-.456-.991-1.005C23.006 8.444 23.45 8 24 8c.184 0 4.537.05 7.8 4.4.332.442.242 1.069-.2 1.4-.18.135-.39.2-.599.2zM4.999 14c-.208 0-.419-.065-.599-.2-.442-.331-.531-.958-.2-1.4C7.462 8.05 11.816 8 12 8c.552 0 1 .448 1 1 0 .551-.445.998-.996 1-.156.002-3.569.086-6.205 3.6-.195.262-.496.4-.8.4z"/><path fill="#5DADEC" d="M15 31c0 2.762-2.239 5-5 5s-5-2.238-5-5 4-13 5-13 5 10.238 5 13z"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#FFCC4D" d="M35.734 19.929C35.375 16.66 35 15 34 13c0 0 3-9 1-12.7-.674-1.246-7.404 1.688-10 3.7 0 0-4-.998-7-.998S11 4 11 4C8.404 1.988 1.674-.946 1 .3-1 4 2 13 2 13 1 15 .625 16.66.266 19.929-.129 23.513.657 26.37 1 27c.39.716 2.367 3.025 5 5 4 3 10 4 12 4s8-1 12-4c2.633-1.975 4.61-4.284 5-5 .343-.63 1.129-3.487.734-7.071z"/><path fill="#E75A70" d="M18 19.5c3 0 3 .5 3 1.5s-1.5 3-3 3-3-2-3-3-.001-1.5 3-1.5z"/><path fill="#F18F26" d="M2 3c.447-1.342 5.64 1 6.64 2C8.64 5 4 8 3 11c0 0-2-5-1-8zm32 0c-.447-1.342-5.64 1-6.64 2 0 0 4.64 3 5.64 6 0 0 2-5 1-8z"/><path fill="#FFCC4D" d="M4.934 5.603C4.934 4.189 11 7 10 8s-2 1.603-3 2.603-2.066-4-2.066-5zm26.132 0C31.066 4.189 25 7 26 8s2 1.603 3 2.603 2.066-4 2.066-5z"/><path fill="#FEE7B8" d="M.701 25c-.148 0-.294-.065-.393-.19-.171-.217-.134-.531.083-.702.162-.127 4.02-3.12 10.648-2.605.275.02.481.261.46.536-.021.275-.257.501-.537.46-6.233-.474-9.915 2.366-9.951 2.395-.093.071-.202.106-.31.106zm8.868-4.663c-.049 0-.1-.007-.149-.022-4.79-1.497-8.737-.347-8.777-.336-.265.081-.543-.07-.623-.335-.079-.265.071-.543.335-.622.173-.052 4.286-1.247 9.362.338.264.083.411.363.328.627-.066.213-.263.35-.476.35zM35.299 25c.148 0 .294-.065.393-.19.171-.217.134-.531-.083-.702-.162-.127-4.02-3.12-10.648-2.605-.275.02-.481.261-.46.536.021.275.257.501.537.46 6.233-.474 9.915 2.366 9.951 2.395.093.071.202.106.31.106zm-8.868-4.663c.049 0 .1-.007.149-.022 4.79-1.497 8.737-.347 8.777-.336.265.081.543-.07.623-.335.079-.265-.071-.543-.335-.622-.173-.052-4.286-1.247-9.362.338-.264.083-.411.363-.328.627.065.213.263.35.476.35z"/><path fill="#292F33" d="M25.362 30.636C24.879 29.87 21.947 25.5 18 25.5c-4.234 0-7.3 5.028-7.428 5.243-.121.2-.085.457.084.619.094.091.219.138.344.138.096 0 .193-.027.277-.084.029-.02 2.918-1.916 6.723-1.916 3.792 0 6.695 1.897 6.723 1.916.086.058.215.096.281.084.277-.004.516-.219.516-.5 0-.144-.06-.272-.158-.364z"/><g fill="#292F33"><ellipse cx="12" cy="14.5" rx="2" ry="3.5"/><ellipse cx="24" cy="14.5" rx="2" ry="3.5"/><path d="M31.001 14c-.305 0-.604-.138-.801-.4-2.641-3.521-6.061-3.599-6.206-3.6-.55-.006-.994-.456-.991-1.005C23.006 8.444 23.45 8 24 8c.184 0 4.537.05 7.8 4.4.332.442.242 1.069-.2 1.4-.18.135-.39.2-.599.2zM4.999 14c-.208 0-.419-.065-.599-.2-.442-.331-.531-.958-.2-1.4C7.462 8.05 11.816 8 12 8c.552 0 1 .448 1 1 0 .551-.445.998-.996 1-.156.002-3.569.086-6.205 3.6-.195.262-.496.4-.8.4z"/></g><path fill="#5DADEC" d="M15 31c0 2.762-2.239 5-5 5s-5-2.238-5-5 4-13 5-13 5 10.238 5 13z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f640.svg b/public/emoji/1f640.svg
index c071e39ff8a0d79c36d49545fb471f6062cd5280..65ea8a5a265b56364cdf3609d9e2a44a19998136 100644
--- a/public/emoji/1f640.svg
+++ b/public/emoji/1f640.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#FFCC4D" d="M34.964 11.955L35 12s1-10 0-11c-.91-.91-6.771.66-7.822.951C24.752.717 21.735 0 18 0c-3.729 0-6.742.719-9.166 1.954C7.814 1.671 1.913.087 1 1 0 2 1 12 1 12l.047-.059C.308 14.494 0 17.251 0 20c0 5.506 3.376 9.818 7.577 12.572C7.658 26.155 5.32 19 1.404 19c-.464 0-.84.066-1.153.183C.554 18.426 1.211 18 2.44 18c4.246 0 6.638 8.411 6.102 15.173C11.688 35.01 15.171 36 18 36c2.83 0 6.315-.981 9.461-2.812-.546-6.79 1.848-15.188 6.1-15.188 1.233 0 1.892.426 2.192 1.183-.314-.117-.691-.183-1.157-.183-3.924 0-6.264 7.151-6.171 13.592C32.624 29.847 36 25.538 36 20c0-2.751-.306-5.502-1.036-8.045z"/><path fill="#292F33" d="M18 21c-2.209 0-4 1.791-4 4v6c0 2.209 1.791 4 4 4s4-1.791 4-4v-6c0-2.209-1.791-4-4-4z"/><path fill="#67757F" d="M18 15c3 0 3 .5 3 1.5s-1.5 3-3 3-3-2-3-3-.001-1.5 3-1.5z"/><path fill="#9AAAB4" d="M29.924 20.506l-5.021 1.004c-.271.054-.447.317-.392.588.048.238.256.402.489.402.033 0 .066-.003.099-.01l4.197-.84c.195-.409.405-.792.628-1.144zM33.561 18l.016.001 1.582-.527c.262-.087.403-.37.316-.632-.088-.262-.369-.403-.633-.316l-9 3c-.262.088-.403.371-.316.633.07.208.265.341.474.341.053 0 .105-.008.158-.025l5.431-1.81c.602-.424 1.261-.665 1.972-.665zm-22.463 3.51L6.07 20.504c.223.354.433.736.629 1.146l4.203.841c.033.007.066.01.099.01.233 0 .442-.164.49-.402.053-.272-.122-.536-.393-.589zm-.94-1.985l-9-3c-.264-.088-.545.054-.632.316-.087.262.054.545.316.632l1.583.528c.006.001.01-.001.015-.001.708 0 1.363.24 1.963.661l5.438 1.813c.053.018.107.026.159.026.21 0 .404-.133.474-.342.087-.262-.054-.545-.316-.633z"/><path fill="#F5F8FA" d="M7.347 10.665c-.946 3.176.107 6.293 2.352 6.962 2.246.67 4.834-1.362 5.779-4.538.947-3.175-.106-6.293-2.35-6.962-2.245-.669-4.834 1.364-5.781 4.538zm21.305 0c.946 3.176-.107 6.293-2.352 6.962-2.246.67-4.834-1.362-5.779-4.538-.946-3.175.107-6.293 2.351-6.962 2.245-.669 4.833 1.364 5.78 4.538z"/><path fill="#FCAB40" d="M35.753 19.183c-.314-.117-.691-.183-1.157-.183-4.641 0-7.065 10.002-5.873 17h6.46c-1.906-7.045 1.656-14.089.57-16.817zM1.404 19c-.464 0-.84.066-1.153.183.072-.179.167-.336.281-.476C-1.33 20.998 2.849 28.54.818 36h6.46c1.19-6.96-1.235-17-5.874-17z"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#FFCC4D" d="M35 .3C34.326-.946 27.596 1.988 25 4c0 0-4-.998-7-.998S11 4 11 4C8.404 1.988 1.674-.946 1 .3-1 4 2 13 2 13 1.102 14.796.709 16.328.377 18.987c.353-.097.76-.157 1.265-.157 5.002 0 7.857 8.145 7.352 14.925C12.541 35.401 16.458 36 18 36c1.549 0 5.497-.605 9.058-2.27-.497-6.775 2.357-14.9 7.353-14.9.48 0 .868.058 1.21.145C35.29 16.323 34.897 14.793 34 13c0 0 3-9 1-12.7z"/><path fill="#E75A70" d="M18 15c3 0 3 .5 3 1.5s-1.5 3-3 3-3-2-3-3-.001-1.5 3-1.5z"/><path fill="#F18F26" d="M2 3c.447-1.342 5.64 1 6.64 2C8.64 5 4 8 3 11c0 0-2-5-1-8zm32 0c-.447-1.342-5.64 1-6.64 2 0 0 4.64 3 5.64 6 0 0 2-5 1-8z"/><path fill="#FFCC4D" d="M4.934 5.603C4.934 4.189 11 7 10 8s-2 1.603-3 2.603-2.066-4-2.066-5zm26.132 0C31.066 4.189 25 7 26 8s2 1.603 3 2.603 2.066-4 2.066-5z"/><path fill="#FEE7B8" d="M11.039 21.502c-1.801-.14-3.389-.016-4.762.234.198.292.386.6.565.924 1.208-.193 2.586-.279 4.12-.162.28.041.516-.184.537-.46.02-.275-.185-.516-.46-.536zm-1.321-2.143c-4.002-1.25-7.396-.772-8.742-.488.206-.024.421-.042.666-.042.889 0 1.71.26 2.457.722 1.482-.021 3.326.14 5.321.764.049.016.1.022.149.022.213 0 .41-.137.477-.351.083-.263-.064-.544-.328-.627zm20.053 2.386c-1.384-.256-2.988-.384-4.809-.243-.275.02-.481.261-.46.536.021.275.257.501.537.46 1.554-.118 2.95-.03 4.17.169.177-.323.364-.631.562-.922zm2.183-2.194c.747-.462 1.568-.722 2.458-.722.216 0 .403.018.589.037-1.361-.284-4.739-.75-8.718.493-.264.083-.411.363-.328.627.067.214.264.351.477.351.049 0 .1-.007.149-.022 2.018-.632 3.883-.79 5.373-.764z"/><path fill="#292F33" d="M18 21c-2.209 0-4 1.791-4 4v6c0 2.209 1.791 4 4 4s4-1.791 4-4v-6c0-2.209-1.791-4-4-4z"/><path fill="#F5F8FA" d="M7.347 10.665c-.946 3.176.107 6.293 2.352 6.962 2.246.67 4.834-1.362 5.779-4.538.947-3.175-.106-6.293-2.35-6.962-2.245-.669-4.834 1.364-5.781 4.538zm21.305 0c.946 3.176-.107 6.293-2.352 6.962-2.246.67-4.834-1.362-5.779-4.538-.946-3.175.107-6.293 2.351-6.962 2.245-.669 4.833 1.364 5.78 4.538z"/><path fill="#FCAB40" d="M35.753 19.183c-.314-.117-.691-.183-1.157-.183-4.641 0-7.065 10.002-5.873 17h6.46c-1.906-7.045 1.656-14.089.57-16.817zM1.404 19c-.464 0-.84.066-1.153.183l-.001.014C-.832 21.94 2.722 29.006.818 36h6.46c1.19-6.96-1.235-17-5.874-17z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f645-1f3fb-200d-2640-fe0f.svg b/public/emoji/1f645-1f3fb-200d-2640-fe0f.svg
index 5070955e071d77d699a8226256184fc794ac4ef3..d3d6161f27a983ea9be8d19e7d9b63f65211331f 100644
--- a/public/emoji/1f645-1f3fb-200d-2640-fe0f.svg
+++ b/public/emoji/1f645-1f3fb-200d-2640-fe0f.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#292F33" d="M19 0c-1.721 0-3.343.406-4.793 1.111C13.814 1.043 13.412 1 13 1 9.134 1 6 4.134 6 8v12h.018C6.201 26.467 11.489 31.656 18 31.656S29.799 26.467 29.982 20H30v-9c0-6.075-4.925-11-11-11z"/><path fill="#F7DECE" d="M14 5s-.003 5.308-5 5.936V17c0 4.971 4.029 9 9 9s9-4.029 9-9v-5.019C15.89 11.605 14 5 14 5z"/><circle fill="#DF1F32" cx="18" cy="22" r="1"/><path fill="#9268CA" d="M27 27H9c-2.209 0-4 1.791-4 4v5h26v-5c0-2.209-1.791-4-4-4z"/><path fill="#EEC2AD" d="M2.58 13c-.074 0-1.015-.653-1.557-.541-.693.144-1.139.822-.997 1.517L.58 16.65V19c0 1.104.896 2 2 2h2l-2-8z"/><path fill="#F7DECE" d="M1.58 8c-.552 0-1 .447-1 1l1 6v5c0 .553.448 1 1 1h2v-2L4 15 2.58 9s-.447-1-1-1z"/><path fill="#9268CA" d="M27 27c4 0 0 9 0 9L4 21v-6l23 12z"/><path fill="#7450A8" d="M19.347 31.408l7.326-4.579-1.938-1.011L9 36h3l5.731-3.582L24 36h3zm2.195-7.255l-4.819-2.515-6.647 3.324 3.056 1.994z"/><path fill="#EEC2AD" d="M34.977 12.459c-.541-.112-1.064.142-1.341.586C33.564 13.029 31.42 21 31.42 21h2c1.104 0 2-.896 2-2v-2.35l.554-2.675c.141-.694-.304-1.373-.997-1.516z"/><path fill="#F7DECE" d="M34.42 8c.552 0 1 .447 1 1l-1 6v5c0 .553-.448 1-1 1h-2v-2l.58-4 1.42-6s.447-1 1-1z"/><path fill="#9268CA" d="M32 15L9 27c-2.209 0-4 1.791-4 4v5h4l9.035-5.846L18 30.13 32 21v-6z"/><path fill="#C1694F" d="M19 19.5h-2c-.276 0-.5-.224-.5-.5s.224-.5.5-.5h2c.276 0 .5.224.5.5s-.224.5-.5.5z"/><path fill="#662113" d="M14 16c-.552 0-1-.448-1-1v-1c0-.552.448-1 1-1s1 .448 1 1v1c0 .552-.448 1-1 1zm8 0c-.553 0-1-.448-1-1v-1c0-.552.447-1 1-1s1 .448 1 1v1c0 .552-.447 1-1 1z"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#292F33" d="M19 0c-1.721 0-3.343.406-4.793 1.111C13.814 1.043 13.412 1 13 1 9.134 1 6 4.134 6 8v12h.018C6.201 26.467 11.489 31.656 18 31.656S29.799 26.467 29.982 20H30v-9c0-6.075-4.925-11-11-11z"/><path fill="#F7DECE" d="M14 5s-.003 5.308-5 5.936V17c0 4.971 4.029 9 9 9s9-4.029 9-9v-5.019C15.889 11.605 14 5 14 5z"/><circle fill="#DF1F32" cx="18" cy="22" r="1"/><path fill="#7450A8" d="M6 28h24v8H6z"/><path fill="#C1694F" d="M19 19.5h-2c-.276 0-.5-.224-.5-.5s.224-.5.5-.5h2c.276 0 .5.224.5.5s-.224.5-.5.5z"/><path fill="#662113" d="M14 16c-.552 0-1-.448-1-1v-1c0-.552.448-1 1-1s1 .448 1 1v1c0 .552-.448 1-1 1zm8 0c-.553 0-1-.448-1-1v-1c0-.552.447-1 1-1s1 .448 1 1v1c0 .552-.447 1-1 1z"/><path fill="#EEC2AD" d="M3.195 18.025c.263-.484.776-.74 1.268-.694.034-.064 7.084 2.942 7.084 2.942l-1.268 1.547c-.7.854-1.907 1.023-2.696.376l-1.677-1.375-2.26-1.137c-.586-.297-.788-1.039-.451-1.659z"/><path fill="#F7DECE" d="M.365 14.985c-.35.427-.315 1.035.08 1.359l4.917 2.738 3.569 2.926c.395.323.998.239 1.348-.188l1.268-1.547-1.428-1.17-3.223-1.893-5.183-2.413c-.001 0-.998-.239-1.348.188z"/><path fill="#9268CA" d="M9.52 18.438s19.597 8.657 20.108 8.884c1.19.529 3.154 1.7 3.154 3.678l-.351 4.75c0 .138-.112.25-.25.25h-3.323c-.05 0-.098-.015-.139-.043L9.279 22.898c-.069-.046-.111-.124-.111-.207v-4.025c.001-.181.186-.302.352-.228z"/><path fill="#7450A8" d="M18.226 22.266l-.779-.324-6.462 2.109 1.482 1.031zm5.203 2.316l1.007.445-5.175 4.594-3.821-.025z"/><path fill="#EEC2AD" d="M32.752 18.025c-.263-.484-.776-.74-1.268-.694-.034-.064-7.084 2.942-7.084 2.942l1.268 1.547c.7.854 1.907 1.023 2.696.376l1.677-1.375 2.26-1.137c.586-.297.788-1.039.451-1.659z"/><path fill="#F7DECE" d="M35.582 14.985c.35.427.315 1.035-.08 1.359l-4.917 2.738-3.569 2.926c-.395.323-.998.239-1.348-.188L24.4 20.273l1.428-1.17 3.223-1.892 5.183-2.413c0-.001.998-.24 1.348.187z"/><path fill="#9268CA" d="M26.427 18.438S6.83 27.095 6.319 27.322c-1.19.529-3.154 1.7-3.154 3.678l.351 4.75c0 .138.112.25.25.25h3.323c.05 0 .098-.015.139-.043l19.439-13.059c.069-.046.111-.124.111-.207v-4.025c0-.181-.186-.302-.351-.228z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f645-1f3fb-200d-2642-fe0f.svg b/public/emoji/1f645-1f3fb-200d-2642-fe0f.svg
index 159d67c9ff6656a941dfee9cc925f4d5aa40b54e..47b17497d6cee469970ce642f88b1e51480101eb 100644
--- a/public/emoji/1f645-1f3fb-200d-2642-fe0f.svg
+++ b/public/emoji/1f645-1f3fb-200d-2642-fe0f.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#F7DECE" d="M28.729 13.715c0-1.548-.769-2.801-1.729-2.852V6.25L9 5.938v4.926c-.96.051-1.729 1.304-1.729 2.852 0 1.548.77 2.801 1.729 2.852V17c0 4.971 4.029 9 9 9s9-4.029 9-9v-.433c.96-.051 1.729-1.304 1.729-2.852z"/><path fill="#292F33" d="M18 .823c-7.019 0-10.139 4.684-10.139 8.588 0 3.903 1.343 4.986 1.56 3.903.78-3.903 3.12-5.101 3.12-5.101 4.68 3.904 3.9.781 3.9.781 4.679 4.684 2.34 0 2.34 0 1.56 1.562 6.239 1.562 6.239 1.562s.78 1.198 1.559 2.759c.78 1.562 1.56 0 1.56-3.903 0-3.905-3.9-8.589-10.139-8.589z"/><path fill="#C1694F" d="M14 22h8s-1 2-4 2-4-2-4-2z"/><path fill="#4289C1" d="M27 27H9c-2.209 0-4 1.791-4 4v5h26v-5c0-2.209-1.791-4-4-4z"/><path fill="#EEC2AD" d="M2.58 13c-.074 0-1.015-.653-1.557-.541-.693.144-1.139.822-.997 1.517L.58 16.65V19c0 1.104.896 2 2 2h2l-2-8z"/><path fill="#F7DECE" d="M1.58 8c-.552 0-1 .447-1 1l1 6v5c0 .553.448 1 1 1h2v-2L4 15 2.58 9s-.447-1-1-1z"/><path fill="#4289C1" d="M27 27c4 0 0 9 0 9L4 21v-6l23 12z"/><path fill="#2A6797" d="M19.347 31.408l7.326-4.579-1.938-1.011L9 36h3l5.731-3.582L24 36h3zm2.195-7.255l-4.819-2.515-6.647 3.324 3.056 1.994z"/><path fill="#EEC2AD" d="M34.977 12.459c-.541-.112-1.064.142-1.341.586C33.564 13.029 31.42 21 31.42 21h2c1.104 0 2-.896 2-2v-2.35l.554-2.675c.141-.694-.304-1.373-.997-1.516z"/><path fill="#F7DECE" d="M34.42 8c.552 0 1 .447 1 1l-1 6v5c0 .553-.448 1-1 1h-2v-2l.58-4 1.42-6s.447-1 1-1z"/><path fill="#4289C1" d="M32 15L9 27c-2.209 0-4 1.791-4 4v5h4l9.035-5.846L18 30.13 32 21v-6z"/><path fill="#C1694F" d="M19 19.5h-2c-.276 0-.5-.224-.5-.5s.224-.5.5-.5h2c.276 0 .5.224.5.5s-.224.5-.5.5z"/><path fill="#662113" d="M14 16c-.552 0-1-.448-1-1v-1c0-.552.448-1 1-1s1 .448 1 1v1c0 .552-.448 1-1 1zm8 0c-.552 0-1-.448-1-1v-1c0-.552.448-1 1-1s1 .448 1 1v1c0 .552-.448 1-1 1z"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#F7DECE" d="M28.752 13.715c0-1.548-.769-2.801-1.729-2.852V6.25l-18-.312v4.926c-.96.051-1.729 1.304-1.729 2.852 0 1.548.77 2.801 1.729 2.852V17c0 4.971 4.029 9 9 9s9-4.029 9-9v-.433c.96-.051 1.729-1.304 1.729-2.852z"/><path fill="#292F33" d="M18.023.823c-7.019 0-10.139 4.684-10.139 8.588 0 3.903 1.343 4.986 1.56 3.903.78-3.903 3.12-5.101 3.12-5.101 4.68 3.904 3.9.781 3.9.781 4.679 4.684 2.34 0 2.34 0 1.56 1.562 6.239 1.562 6.239 1.562s.78 1.198 1.559 2.759c.78 1.562 1.56 0 1.56-3.903 0-3.905-3.9-8.589-10.139-8.589z"/><path fill="#C1694F" d="M14.023 22h8s-1 2-4 2-4-2-4-2z"/><path fill="#2A6797" d="M6 28h24v8H6z"/><path fill="#C1694F" d="M19.023 19.5h-2c-.276 0-.5-.224-.5-.5s.224-.5.5-.5h2c.276 0 .5.224.5.5s-.224.5-.5.5z"/><path fill="#662113" d="M14.023 16c-.552 0-1-.448-1-1v-1c0-.552.448-1 1-1s1 .448 1 1v1c0 .552-.448 1-1 1zm8 0c-.552 0-1-.448-1-1v-1c0-.552.448-1 1-1s1 .448 1 1v1c0 .552-.448 1-1 1z"/><path fill="#EEC2AD" d="M3.195 18.025c.263-.484.776-.74 1.268-.694.034-.064 7.084 2.942 7.084 2.942l-1.268 1.547c-.7.854-1.907 1.023-2.696.376l-1.677-1.375-2.26-1.137c-.586-.297-.788-1.039-.451-1.659z"/><path fill="#F7DECE" d="M.365 14.985c-.35.427-.315 1.035.08 1.359l4.917 2.738 3.569 2.926c.395.323.998.239 1.348-.188l1.268-1.547-1.428-1.17-3.223-1.893-5.183-2.413c-.001 0-.998-.239-1.348.188z"/><path fill="#4289C1" d="M9.52 18.438s19.597 8.657 20.108 8.884c1.19.529 3.154 1.7 3.154 3.678l-.351 4.75c0 .138-.112.25-.25.25h-3.323c-.05 0-.098-.015-.139-.043L9.279 22.898c-.069-.046-.111-.124-.111-.207v-4.025c.001-.181.186-.302.352-.228z"/><path fill="#2A6797" d="M18.226 22.266l-.779-.324-6.462 2.109 1.482 1.031zm5.203 2.316l1.007.445-5.175 4.594-3.821-.025z"/><path fill="#EEC2AD" d="M32.752 18.025c-.263-.484-.776-.74-1.268-.694-.034-.064-7.084 2.942-7.084 2.942l1.268 1.547c.7.854 1.907 1.023 2.696.376l1.677-1.375 2.26-1.137c.586-.297.788-1.039.451-1.659z"/><path fill="#F7DECE" d="M35.582 14.985c.35.427.315 1.035-.08 1.359l-4.917 2.738-3.569 2.926c-.395.323-.998.239-1.348-.188L24.4 20.273l1.428-1.17 3.223-1.892 5.183-2.413c0-.001.998-.24 1.348.187z"/><path fill="#4289C1" d="M26.427 18.438S6.83 27.095 6.319 27.322c-1.19.529-3.154 1.7-3.154 3.678l.351 4.75c0 .138.112.25.25.25h3.323c.05 0 .098-.015.139-.043l19.439-13.059c.069-.046.111-.124.111-.207v-4.025c0-.181-.186-.302-.351-.228z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f645-1f3fb.svg b/public/emoji/1f645-1f3fb.svg
index 5070955e071d77d699a8226256184fc794ac4ef3..d3d6161f27a983ea9be8d19e7d9b63f65211331f 100644
--- a/public/emoji/1f645-1f3fb.svg
+++ b/public/emoji/1f645-1f3fb.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#292F33" d="M19 0c-1.721 0-3.343.406-4.793 1.111C13.814 1.043 13.412 1 13 1 9.134 1 6 4.134 6 8v12h.018C6.201 26.467 11.489 31.656 18 31.656S29.799 26.467 29.982 20H30v-9c0-6.075-4.925-11-11-11z"/><path fill="#F7DECE" d="M14 5s-.003 5.308-5 5.936V17c0 4.971 4.029 9 9 9s9-4.029 9-9v-5.019C15.89 11.605 14 5 14 5z"/><circle fill="#DF1F32" cx="18" cy="22" r="1"/><path fill="#9268CA" d="M27 27H9c-2.209 0-4 1.791-4 4v5h26v-5c0-2.209-1.791-4-4-4z"/><path fill="#EEC2AD" d="M2.58 13c-.074 0-1.015-.653-1.557-.541-.693.144-1.139.822-.997 1.517L.58 16.65V19c0 1.104.896 2 2 2h2l-2-8z"/><path fill="#F7DECE" d="M1.58 8c-.552 0-1 .447-1 1l1 6v5c0 .553.448 1 1 1h2v-2L4 15 2.58 9s-.447-1-1-1z"/><path fill="#9268CA" d="M27 27c4 0 0 9 0 9L4 21v-6l23 12z"/><path fill="#7450A8" d="M19.347 31.408l7.326-4.579-1.938-1.011L9 36h3l5.731-3.582L24 36h3zm2.195-7.255l-4.819-2.515-6.647 3.324 3.056 1.994z"/><path fill="#EEC2AD" d="M34.977 12.459c-.541-.112-1.064.142-1.341.586C33.564 13.029 31.42 21 31.42 21h2c1.104 0 2-.896 2-2v-2.35l.554-2.675c.141-.694-.304-1.373-.997-1.516z"/><path fill="#F7DECE" d="M34.42 8c.552 0 1 .447 1 1l-1 6v5c0 .553-.448 1-1 1h-2v-2l.58-4 1.42-6s.447-1 1-1z"/><path fill="#9268CA" d="M32 15L9 27c-2.209 0-4 1.791-4 4v5h4l9.035-5.846L18 30.13 32 21v-6z"/><path fill="#C1694F" d="M19 19.5h-2c-.276 0-.5-.224-.5-.5s.224-.5.5-.5h2c.276 0 .5.224.5.5s-.224.5-.5.5z"/><path fill="#662113" d="M14 16c-.552 0-1-.448-1-1v-1c0-.552.448-1 1-1s1 .448 1 1v1c0 .552-.448 1-1 1zm8 0c-.553 0-1-.448-1-1v-1c0-.552.447-1 1-1s1 .448 1 1v1c0 .552-.447 1-1 1z"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#292F33" d="M19 0c-1.721 0-3.343.406-4.793 1.111C13.814 1.043 13.412 1 13 1 9.134 1 6 4.134 6 8v12h.018C6.201 26.467 11.489 31.656 18 31.656S29.799 26.467 29.982 20H30v-9c0-6.075-4.925-11-11-11z"/><path fill="#F7DECE" d="M14 5s-.003 5.308-5 5.936V17c0 4.971 4.029 9 9 9s9-4.029 9-9v-5.019C15.889 11.605 14 5 14 5z"/><circle fill="#DF1F32" cx="18" cy="22" r="1"/><path fill="#7450A8" d="M6 28h24v8H6z"/><path fill="#C1694F" d="M19 19.5h-2c-.276 0-.5-.224-.5-.5s.224-.5.5-.5h2c.276 0 .5.224.5.5s-.224.5-.5.5z"/><path fill="#662113" d="M14 16c-.552 0-1-.448-1-1v-1c0-.552.448-1 1-1s1 .448 1 1v1c0 .552-.448 1-1 1zm8 0c-.553 0-1-.448-1-1v-1c0-.552.447-1 1-1s1 .448 1 1v1c0 .552-.447 1-1 1z"/><path fill="#EEC2AD" d="M3.195 18.025c.263-.484.776-.74 1.268-.694.034-.064 7.084 2.942 7.084 2.942l-1.268 1.547c-.7.854-1.907 1.023-2.696.376l-1.677-1.375-2.26-1.137c-.586-.297-.788-1.039-.451-1.659z"/><path fill="#F7DECE" d="M.365 14.985c-.35.427-.315 1.035.08 1.359l4.917 2.738 3.569 2.926c.395.323.998.239 1.348-.188l1.268-1.547-1.428-1.17-3.223-1.893-5.183-2.413c-.001 0-.998-.239-1.348.188z"/><path fill="#9268CA" d="M9.52 18.438s19.597 8.657 20.108 8.884c1.19.529 3.154 1.7 3.154 3.678l-.351 4.75c0 .138-.112.25-.25.25h-3.323c-.05 0-.098-.015-.139-.043L9.279 22.898c-.069-.046-.111-.124-.111-.207v-4.025c.001-.181.186-.302.352-.228z"/><path fill="#7450A8" d="M18.226 22.266l-.779-.324-6.462 2.109 1.482 1.031zm5.203 2.316l1.007.445-5.175 4.594-3.821-.025z"/><path fill="#EEC2AD" d="M32.752 18.025c-.263-.484-.776-.74-1.268-.694-.034-.064-7.084 2.942-7.084 2.942l1.268 1.547c.7.854 1.907 1.023 2.696.376l1.677-1.375 2.26-1.137c.586-.297.788-1.039.451-1.659z"/><path fill="#F7DECE" d="M35.582 14.985c.35.427.315 1.035-.08 1.359l-4.917 2.738-3.569 2.926c-.395.323-.998.239-1.348-.188L24.4 20.273l1.428-1.17 3.223-1.892 5.183-2.413c0-.001.998-.24 1.348.187z"/><path fill="#9268CA" d="M26.427 18.438S6.83 27.095 6.319 27.322c-1.19.529-3.154 1.7-3.154 3.678l.351 4.75c0 .138.112.25.25.25h3.323c.05 0 .098-.015.139-.043l19.439-13.059c.069-.046.111-.124.111-.207v-4.025c0-.181-.186-.302-.351-.228z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f645-1f3fc-200d-2640-fe0f.svg b/public/emoji/1f645-1f3fc-200d-2640-fe0f.svg
index 1db0387cd29d36bd8718a2543e38849e241f73fc..061e83da3ffa99bbe5b315a3c17a83dba58ed739 100644
--- a/public/emoji/1f645-1f3fc-200d-2640-fe0f.svg
+++ b/public/emoji/1f645-1f3fc-200d-2640-fe0f.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#FFE51E" d="M19 0c-1.721 0-3.343.406-4.793 1.111C13.814 1.043 13.412 1 13 1 9.134 1 6 4.134 6 8v12h.018C6.201 26.467 11.489 31.656 18 31.656S29.799 26.467 29.982 20H30v-9c0-6.075-4.925-11-11-11z"/><path fill="#F3D2A2" d="M14 5s-.003 5.308-5 5.936V17c0 4.971 4.029 9 9 9s9-4.029 9-9v-5.019C15.89 11.605 14 5 14 5z"/><circle fill="#DF1F32" cx="18" cy="22" r="1"/><path fill="#9268CA" d="M27 27H9c-2.209 0-4 1.791-4 4v5h26v-5c0-2.209-1.791-4-4-4z"/><path fill="#E2C196" d="M2.58 13c-.074 0-1.015-.653-1.557-.541-.693.144-1.139.822-.997 1.517L.58 16.65V19c0 1.104.896 2 2 2h2l-2-8z"/><path fill="#F3D2A2" d="M1.58 8c-.552 0-1 .447-1 1l1 6v5c0 .553.448 1 1 1h2v-2L4 15 2.58 9s-.447-1-1-1z"/><path fill="#9268CA" d="M27 27c4 0 0 9 0 9L4 21v-6l23 12z"/><path fill="#7450A8" d="M19.347 31.408l7.326-4.579-1.938-1.011L9 36h3l5.731-3.582L24 36h3zm2.195-7.255l-4.819-2.515-6.647 3.324 3.056 1.994z"/><path fill="#E2C196" d="M34.977 12.459c-.541-.112-1.064.142-1.341.586C33.564 13.029 31.42 21 31.42 21h2c1.104 0 2-.896 2-2v-2.35l.554-2.675c.141-.694-.304-1.373-.997-1.516z"/><path fill="#F3D2A2" d="M34.42 8c.552 0 1 .447 1 1l-1 6v5c0 .553-.448 1-1 1h-2v-2l.58-4 1.42-6s.447-1 1-1z"/><path fill="#9268CA" d="M32 15L9 27c-2.209 0-4 1.791-4 4v5h4l9.035-5.846L18 30.13 32 21v-6z"/><path fill="#C1694F" d="M19 19.5h-2c-.276 0-.5-.224-.5-.5s.224-.5.5-.5h2c.276 0 .5.224.5.5s-.224.5-.5.5z"/><path fill="#662113" d="M14 16c-.552 0-1-.448-1-1v-1c0-.552.448-1 1-1s1 .448 1 1v1c0 .552-.448 1-1 1zm8 0c-.553 0-1-.448-1-1v-1c0-.552.447-1 1-1s1 .448 1 1v1c0 .552-.447 1-1 1z"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#FFE51E" d="M19 0c-1.721 0-3.343.406-4.793 1.111C13.814 1.043 13.412 1 13 1 9.134 1 6 4.134 6 8v12h.018C6.201 26.467 11.489 31.656 18 31.656S29.799 26.467 29.982 20H30v-9c0-6.075-4.925-11-11-11z"/><path fill="#F3D2A2" d="M14 5s-.003 5.308-5 5.936V17c0 4.971 4.029 9 9 9s9-4.029 9-9v-5.019C15.889 11.605 14 5 14 5z"/><circle fill="#DF1F32" cx="18" cy="22" r="1"/><path fill="#7450A8" d="M6 28h24v8H6z"/><path fill="#C1694F" d="M19 19.5h-2c-.276 0-.5-.224-.5-.5s.224-.5.5-.5h2c.276 0 .5.224.5.5s-.224.5-.5.5z"/><path fill="#662113" d="M14 16c-.552 0-1-.448-1-1v-1c0-.552.448-1 1-1s1 .448 1 1v1c0 .552-.448 1-1 1zm8 0c-.553 0-1-.448-1-1v-1c0-.552.447-1 1-1s1 .448 1 1v1c0 .552-.447 1-1 1z"/><path fill="#E2C196" d="M3.195 18.025c.263-.484.776-.74 1.268-.694.034-.064 7.084 2.942 7.084 2.942l-1.268 1.547c-.7.854-1.907 1.023-2.696.376l-1.677-1.375-2.26-1.137c-.586-.297-.788-1.039-.451-1.659z"/><path fill="#F3D2A2" d="M.365 14.985c-.35.427-.315 1.035.08 1.359l4.917 2.738 3.569 2.926c.395.323.998.239 1.348-.188l1.268-1.547-1.428-1.17-3.223-1.893-5.183-2.413c-.001 0-.998-.239-1.348.188z"/><path fill="#9268CA" d="M9.52 18.438s19.597 8.657 20.108 8.884c1.19.529 3.154 1.7 3.154 3.678l-.351 4.75c0 .138-.112.25-.25.25h-3.323c-.05 0-.098-.015-.139-.043L9.279 22.898c-.069-.046-.111-.124-.111-.207v-4.025c.001-.181.186-.302.352-.228z"/><path fill="#7450A8" d="M18.226 22.266l-.779-.324-6.462 2.109 1.482 1.031zm5.203 2.316l1.007.445-5.175 4.594-3.821-.025z"/><path fill="#E2C196" d="M32.752 18.025c-.263-.484-.776-.74-1.268-.694-.034-.064-7.084 2.942-7.084 2.942l1.268 1.547c.7.854 1.907 1.023 2.696.376l1.677-1.375 2.26-1.137c.586-.297.788-1.039.451-1.659z"/><path fill="#F3D2A2" d="M35.582 14.985c.35.427.315 1.035-.08 1.359l-4.917 2.738-3.569 2.926c-.395.323-.998.239-1.348-.188L24.4 20.273l1.428-1.17 3.223-1.892 5.183-2.413c0-.001.998-.24 1.348.187z"/><path fill="#9268CA" d="M26.427 18.438S6.83 27.095 6.319 27.322c-1.19.529-3.154 1.7-3.154 3.678l.351 4.75c0 .138.112.25.25.25h3.323c.05 0 .098-.015.139-.043l19.439-13.059c.069-.046.111-.124.111-.207v-4.025c0-.181-.186-.302-.351-.228z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f645-1f3fc-200d-2642-fe0f.svg b/public/emoji/1f645-1f3fc-200d-2642-fe0f.svg
index 5e2c4124898c2b644e247ba891c4e754f911cb05..47109a9c2b23c8ecb55ce0c2b660f0826e3df41e 100644
--- a/public/emoji/1f645-1f3fc-200d-2642-fe0f.svg
+++ b/public/emoji/1f645-1f3fc-200d-2642-fe0f.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#F3D2A2" d="M28.729 13.715c0-1.548-.769-2.801-1.729-2.852V6.25L9 5.938v4.926c-.96.051-1.729 1.304-1.729 2.852 0 1.548.77 2.801 1.729 2.852V17c0 4.971 4.029 9 9 9s9-4.029 9-9v-.433c.96-.051 1.729-1.304 1.729-2.852z"/><path fill="#FFE51E" d="M18 .823c-7.019 0-10.139 4.684-10.139 8.588 0 3.903 1.343 4.986 1.56 3.903.78-3.903 3.12-5.101 3.12-5.101 4.68 3.904 3.9.781 3.9.781 4.679 4.684 2.34 0 2.34 0 1.56 1.562 6.239 1.562 6.239 1.562s.78 1.198 1.559 2.759c.78 1.562 1.56 0 1.56-3.903 0-3.905-3.9-8.589-10.139-8.589z"/><path fill="#C1694F" d="M14 22h8s-1 2-4 2-4-2-4-2z"/><path fill="#4289C1" d="M27 27H9c-2.209 0-4 1.791-4 4v5h26v-5c0-2.209-1.791-4-4-4z"/><path fill="#E2C196" d="M2.58 13c-.074 0-1.015-.653-1.557-.541-.693.144-1.139.822-.997 1.517L.58 16.65V19c0 1.104.896 2 2 2h2l-2-8z"/><path fill="#F3D2A2" d="M1.58 8c-.552 0-1 .447-1 1l1 6v5c0 .553.448 1 1 1h2v-2L4 15 2.58 9s-.447-1-1-1z"/><path fill="#4289C1" d="M27 27c4 0 0 9 0 9L4 21v-6l23 12z"/><path fill="#2A6797" d="M19.347 31.408l7.326-4.579-1.938-1.011L9 36h3l5.731-3.582L24 36h3zm2.195-7.255l-4.819-2.515-6.647 3.324 3.056 1.994z"/><path fill="#E2C196" d="M34.977 12.459c-.541-.112-1.064.142-1.341.586C33.564 13.029 31.42 21 31.42 21h2c1.104 0 2-.896 2-2v-2.35l.554-2.675c.141-.694-.304-1.373-.997-1.516z"/><path fill="#F3D2A2" d="M34.42 8c.552 0 1 .447 1 1l-1 6v5c0 .553-.448 1-1 1h-2v-2l.58-4 1.42-6s.447-1 1-1z"/><path fill="#4289C1" d="M32 15L9 27c-2.209 0-4 1.791-4 4v5h4l9.035-5.846L18 30.13 32 21v-6z"/><path fill="#C1694F" d="M19 19.5h-2c-.276 0-.5-.224-.5-.5s.224-.5.5-.5h2c.276 0 .5.224.5.5s-.224.5-.5.5z"/><path fill="#662113" d="M14 16c-.552 0-1-.448-1-1v-1c0-.552.448-1 1-1s1 .448 1 1v1c0 .552-.448 1-1 1zm8 0c-.552 0-1-.448-1-1v-1c0-.552.448-1 1-1s1 .448 1 1v1c0 .552-.448 1-1 1z"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#F3D2A2" d="M28.752 13.715c0-1.548-.769-2.801-1.729-2.852V6.25l-18-.312v4.926c-.96.051-1.729 1.304-1.729 2.852 0 1.548.77 2.801 1.729 2.852V17c0 4.971 4.029 9 9 9s9-4.029 9-9v-.433c.96-.051 1.729-1.304 1.729-2.852z"/><path fill="#FFE51E" d="M18.023.823c-7.019 0-10.139 4.684-10.139 8.588 0 3.903 1.343 4.986 1.56 3.903.78-3.903 3.12-5.101 3.12-5.101 4.68 3.904 3.9.781 3.9.781 4.679 4.684 2.34 0 2.34 0 1.56 1.562 6.239 1.562 6.239 1.562s.78 1.198 1.559 2.759c.78 1.562 1.56 0 1.56-3.903 0-3.905-3.9-8.589-10.139-8.589z"/><path fill="#C1694F" d="M14.023 22h8s-1 2-4 2-4-2-4-2z"/><path fill="#2A6797" d="M6 28h24v8H6z"/><path fill="#C1694F" d="M19.023 19.5h-2c-.276 0-.5-.224-.5-.5s.224-.5.5-.5h2c.276 0 .5.224.5.5s-.224.5-.5.5z"/><path fill="#662113" d="M14.023 16c-.552 0-1-.448-1-1v-1c0-.552.448-1 1-1s1 .448 1 1v1c0 .552-.448 1-1 1zm8 0c-.552 0-1-.448-1-1v-1c0-.552.448-1 1-1s1 .448 1 1v1c0 .552-.448 1-1 1z"/><path fill="#E2C196" d="M3.195 18.025c.263-.484.776-.74 1.268-.694.034-.064 7.084 2.942 7.084 2.942l-1.268 1.547c-.7.854-1.907 1.023-2.696.376l-1.677-1.375-2.26-1.137c-.586-.297-.788-1.039-.451-1.659z"/><path fill="#F3D2A2" d="M.365 14.985c-.35.427-.315 1.035.08 1.359l4.917 2.738 3.569 2.926c.395.323.998.239 1.348-.188l1.268-1.547-1.428-1.17-3.223-1.893-5.183-2.413c-.001 0-.998-.239-1.348.188z"/><path fill="#4289C1" d="M9.52 18.438s19.597 8.657 20.108 8.884c1.19.529 3.154 1.7 3.154 3.678l-.351 4.75c0 .138-.112.25-.25.25h-3.323c-.05 0-.098-.015-.139-.043L9.279 22.898c-.069-.046-.111-.124-.111-.207v-4.025c.001-.181.186-.302.352-.228z"/><path fill="#2A6797" d="M18.226 22.266l-.779-.324-6.462 2.109 1.482 1.031zm5.203 2.316l1.007.445-5.175 4.594-3.821-.025z"/><path fill="#E2C196" d="M32.752 18.025c-.263-.484-.776-.74-1.268-.694-.034-.064-7.084 2.942-7.084 2.942l1.268 1.547c.7.854 1.907 1.023 2.696.376l1.677-1.375 2.26-1.137c.586-.297.788-1.039.451-1.659z"/><path fill="#F3D2A2" d="M35.582 14.985c.35.427.315 1.035-.08 1.359l-4.917 2.738-3.569 2.926c-.395.323-.998.239-1.348-.188L24.4 20.273l1.428-1.17 3.223-1.892 5.183-2.413c0-.001.998-.24 1.348.187z"/><path fill="#4289C1" d="M26.427 18.438S6.83 27.095 6.319 27.322c-1.19.529-3.154 1.7-3.154 3.678l.351 4.75c0 .138.112.25.25.25h3.323c.05 0 .098-.015.139-.043l19.439-13.059c.069-.046.111-.124.111-.207v-4.025c0-.181-.186-.302-.351-.228z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f645-1f3fc.svg b/public/emoji/1f645-1f3fc.svg
index 1db0387cd29d36bd8718a2543e38849e241f73fc..061e83da3ffa99bbe5b315a3c17a83dba58ed739 100644
--- a/public/emoji/1f645-1f3fc.svg
+++ b/public/emoji/1f645-1f3fc.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#FFE51E" d="M19 0c-1.721 0-3.343.406-4.793 1.111C13.814 1.043 13.412 1 13 1 9.134 1 6 4.134 6 8v12h.018C6.201 26.467 11.489 31.656 18 31.656S29.799 26.467 29.982 20H30v-9c0-6.075-4.925-11-11-11z"/><path fill="#F3D2A2" d="M14 5s-.003 5.308-5 5.936V17c0 4.971 4.029 9 9 9s9-4.029 9-9v-5.019C15.89 11.605 14 5 14 5z"/><circle fill="#DF1F32" cx="18" cy="22" r="1"/><path fill="#9268CA" d="M27 27H9c-2.209 0-4 1.791-4 4v5h26v-5c0-2.209-1.791-4-4-4z"/><path fill="#E2C196" d="M2.58 13c-.074 0-1.015-.653-1.557-.541-.693.144-1.139.822-.997 1.517L.58 16.65V19c0 1.104.896 2 2 2h2l-2-8z"/><path fill="#F3D2A2" d="M1.58 8c-.552 0-1 .447-1 1l1 6v5c0 .553.448 1 1 1h2v-2L4 15 2.58 9s-.447-1-1-1z"/><path fill="#9268CA" d="M27 27c4 0 0 9 0 9L4 21v-6l23 12z"/><path fill="#7450A8" d="M19.347 31.408l7.326-4.579-1.938-1.011L9 36h3l5.731-3.582L24 36h3zm2.195-7.255l-4.819-2.515-6.647 3.324 3.056 1.994z"/><path fill="#E2C196" d="M34.977 12.459c-.541-.112-1.064.142-1.341.586C33.564 13.029 31.42 21 31.42 21h2c1.104 0 2-.896 2-2v-2.35l.554-2.675c.141-.694-.304-1.373-.997-1.516z"/><path fill="#F3D2A2" d="M34.42 8c.552 0 1 .447 1 1l-1 6v5c0 .553-.448 1-1 1h-2v-2l.58-4 1.42-6s.447-1 1-1z"/><path fill="#9268CA" d="M32 15L9 27c-2.209 0-4 1.791-4 4v5h4l9.035-5.846L18 30.13 32 21v-6z"/><path fill="#C1694F" d="M19 19.5h-2c-.276 0-.5-.224-.5-.5s.224-.5.5-.5h2c.276 0 .5.224.5.5s-.224.5-.5.5z"/><path fill="#662113" d="M14 16c-.552 0-1-.448-1-1v-1c0-.552.448-1 1-1s1 .448 1 1v1c0 .552-.448 1-1 1zm8 0c-.553 0-1-.448-1-1v-1c0-.552.447-1 1-1s1 .448 1 1v1c0 .552-.447 1-1 1z"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#FFE51E" d="M19 0c-1.721 0-3.343.406-4.793 1.111C13.814 1.043 13.412 1 13 1 9.134 1 6 4.134 6 8v12h.018C6.201 26.467 11.489 31.656 18 31.656S29.799 26.467 29.982 20H30v-9c0-6.075-4.925-11-11-11z"/><path fill="#F3D2A2" d="M14 5s-.003 5.308-5 5.936V17c0 4.971 4.029 9 9 9s9-4.029 9-9v-5.019C15.889 11.605 14 5 14 5z"/><circle fill="#DF1F32" cx="18" cy="22" r="1"/><path fill="#7450A8" d="M6 28h24v8H6z"/><path fill="#C1694F" d="M19 19.5h-2c-.276 0-.5-.224-.5-.5s.224-.5.5-.5h2c.276 0 .5.224.5.5s-.224.5-.5.5z"/><path fill="#662113" d="M14 16c-.552 0-1-.448-1-1v-1c0-.552.448-1 1-1s1 .448 1 1v1c0 .552-.448 1-1 1zm8 0c-.553 0-1-.448-1-1v-1c0-.552.447-1 1-1s1 .448 1 1v1c0 .552-.447 1-1 1z"/><path fill="#E2C196" d="M3.195 18.025c.263-.484.776-.74 1.268-.694.034-.064 7.084 2.942 7.084 2.942l-1.268 1.547c-.7.854-1.907 1.023-2.696.376l-1.677-1.375-2.26-1.137c-.586-.297-.788-1.039-.451-1.659z"/><path fill="#F3D2A2" d="M.365 14.985c-.35.427-.315 1.035.08 1.359l4.917 2.738 3.569 2.926c.395.323.998.239 1.348-.188l1.268-1.547-1.428-1.17-3.223-1.893-5.183-2.413c-.001 0-.998-.239-1.348.188z"/><path fill="#9268CA" d="M9.52 18.438s19.597 8.657 20.108 8.884c1.19.529 3.154 1.7 3.154 3.678l-.351 4.75c0 .138-.112.25-.25.25h-3.323c-.05 0-.098-.015-.139-.043L9.279 22.898c-.069-.046-.111-.124-.111-.207v-4.025c.001-.181.186-.302.352-.228z"/><path fill="#7450A8" d="M18.226 22.266l-.779-.324-6.462 2.109 1.482 1.031zm5.203 2.316l1.007.445-5.175 4.594-3.821-.025z"/><path fill="#E2C196" d="M32.752 18.025c-.263-.484-.776-.74-1.268-.694-.034-.064-7.084 2.942-7.084 2.942l1.268 1.547c.7.854 1.907 1.023 2.696.376l1.677-1.375 2.26-1.137c.586-.297.788-1.039.451-1.659z"/><path fill="#F3D2A2" d="M35.582 14.985c.35.427.315 1.035-.08 1.359l-4.917 2.738-3.569 2.926c-.395.323-.998.239-1.348-.188L24.4 20.273l1.428-1.17 3.223-1.892 5.183-2.413c0-.001.998-.24 1.348.187z"/><path fill="#9268CA" d="M26.427 18.438S6.83 27.095 6.319 27.322c-1.19.529-3.154 1.7-3.154 3.678l.351 4.75c0 .138.112.25.25.25h3.323c.05 0 .098-.015.139-.043l19.439-13.059c.069-.046.111-.124.111-.207v-4.025c0-.181-.186-.302-.351-.228z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f645-1f3fd-200d-2640-fe0f.svg b/public/emoji/1f645-1f3fd-200d-2640-fe0f.svg
index 1378f80d2397efc2e4984bcda913ec700bb6226e..3ba6194b505137363cae1b0c19385069ef755faf 100644
--- a/public/emoji/1f645-1f3fd-200d-2640-fe0f.svg
+++ b/public/emoji/1f645-1f3fd-200d-2640-fe0f.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#963B22" d="M19 0c-1.721 0-3.343.406-4.793 1.111C13.814 1.043 13.412 1 13 1 9.134 1 6 4.134 6 8v12h.018C6.201 26.467 11.489 31.656 18 31.656S29.799 26.467 29.982 20H30v-9c0-6.075-4.925-11-11-11z"/><path fill="#D5AB88" d="M14 5s-.003 5.308-5 5.936V17c0 4.971 4.029 9 9 9s9-4.029 9-9v-5.019C15.89 11.605 14 5 14 5z"/><circle fill="#DF1F32" cx="18" cy="22" r="1"/><path fill="#9268CA" d="M27 27H9c-2.209 0-4 1.791-4 4v5h26v-5c0-2.209-1.791-4-4-4z"/><path fill="#CC9B7A" d="M2.58 13c-.074 0-1.015-.653-1.557-.541-.693.144-1.139.822-.997 1.517L.58 16.65V19c0 1.104.896 2 2 2h2l-2-8z"/><path fill="#D5AB88" d="M1.58 8c-.552 0-1 .447-1 1l1 6v5c0 .553.448 1 1 1h2v-2L4 15 2.58 9s-.447-1-1-1z"/><path fill="#9268CA" d="M27 27c4 0 0 9 0 9L4 21v-6l23 12z"/><path fill="#7450A8" d="M19.347 31.408l7.326-4.579-1.938-1.011L9 36h3l5.731-3.582L24 36h3zm2.195-7.255l-4.819-2.515-6.647 3.324 3.056 1.994z"/><path fill="#CC9B7A" d="M34.977 12.459c-.541-.112-1.064.142-1.341.586C33.564 13.029 31.42 21 31.42 21h2c1.104 0 2-.896 2-2v-2.35l.554-2.675c.141-.694-.304-1.373-.997-1.516z"/><path fill="#D5AB88" d="M34.42 8c.552 0 1 .447 1 1l-1 6v5c0 .553-.448 1-1 1h-2v-2l.58-4 1.42-6s.447-1 1-1z"/><path fill="#9268CA" d="M32 15L9 27c-2.209 0-4 1.791-4 4v5h4l9.035-5.846L18 30.13 32 21v-6z"/><path fill="#C1694F" d="M19 19.5h-2c-.276 0-.5-.224-.5-.5s.224-.5.5-.5h2c.276 0 .5.224.5.5s-.224.5-.5.5z"/><path fill="#662113" d="M14 16c-.552 0-1-.448-1-1v-1c0-.552.448-1 1-1s1 .448 1 1v1c0 .552-.448 1-1 1zm8 0c-.553 0-1-.448-1-1v-1c0-.552.447-1 1-1s1 .448 1 1v1c0 .552-.447 1-1 1z"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#963B22" d="M19 0c-1.721 0-3.343.406-4.793 1.111C13.814 1.043 13.412 1 13 1 9.134 1 6 4.134 6 8v12h.018C6.201 26.467 11.489 31.656 18 31.656S29.799 26.467 29.982 20H30v-9c0-6.075-4.925-11-11-11z"/><path fill="#D5AB88" d="M14 5s-.003 5.308-5 5.936V17c0 4.971 4.029 9 9 9s9-4.029 9-9v-5.019C15.889 11.605 14 5 14 5z"/><circle fill="#DF1F32" cx="18" cy="22" r="1"/><path fill="#7450A8" d="M6 28h24v8H6z"/><path fill="#C1694F" d="M19 19.5h-2c-.276 0-.5-.224-.5-.5s.224-.5.5-.5h2c.276 0 .5.224.5.5s-.224.5-.5.5z"/><path fill="#662113" d="M14 16c-.552 0-1-.448-1-1v-1c0-.552.448-1 1-1s1 .448 1 1v1c0 .552-.448 1-1 1zm8 0c-.553 0-1-.448-1-1v-1c0-.552.447-1 1-1s1 .448 1 1v1c0 .552-.447 1-1 1z"/><path fill="#CC9B7A" d="M3.195 18.025c.263-.484.776-.74 1.268-.694.034-.064 7.084 2.942 7.084 2.942l-1.268 1.547c-.7.854-1.907 1.023-2.696.376l-1.677-1.375-2.26-1.137c-.586-.297-.788-1.039-.451-1.659z"/><path fill="#D5AB88" d="M.365 14.985c-.35.427-.315 1.035.08 1.359l4.917 2.738 3.569 2.926c.395.323.998.239 1.348-.188l1.268-1.547-1.428-1.17-3.223-1.893-5.183-2.413c-.001 0-.998-.239-1.348.188z"/><path fill="#9268CA" d="M9.52 18.438s19.597 8.657 20.108 8.884c1.19.529 3.154 1.7 3.154 3.678l-.351 4.75c0 .138-.112.25-.25.25h-3.323c-.05 0-.098-.015-.139-.043L9.279 22.898c-.069-.046-.111-.124-.111-.207v-4.025c.001-.181.186-.302.352-.228z"/><path fill="#7450A8" d="M18.226 22.266l-.779-.324-6.462 2.109 1.482 1.031zm5.203 2.316l1.007.445-5.175 4.594-3.821-.025z"/><path fill="#CC9B7A" d="M32.752 18.025c-.263-.484-.776-.74-1.268-.694-.034-.064-7.084 2.942-7.084 2.942l1.268 1.547c.7.854 1.907 1.023 2.696.376l1.677-1.375 2.26-1.137c.586-.297.788-1.039.451-1.659z"/><path fill="#D5AB88" d="M35.582 14.985c.35.427.315 1.035-.08 1.359l-4.917 2.738-3.569 2.926c-.395.323-.998.239-1.348-.188L24.4 20.273l1.428-1.17 3.223-1.892 5.183-2.413c0-.001.998-.24 1.348.187z"/><path fill="#9268CA" d="M26.427 18.438S6.83 27.095 6.319 27.322c-1.19.529-3.154 1.7-3.154 3.678l.351 4.75c0 .138.112.25.25.25h3.323c.05 0 .098-.015.139-.043l19.439-13.059c.069-.046.111-.124.111-.207v-4.025c0-.181-.186-.302-.351-.228z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f645-1f3fd-200d-2642-fe0f.svg b/public/emoji/1f645-1f3fd-200d-2642-fe0f.svg
index 50a2cecdcfe025d727076b3462480a0477371bc0..5e7487e7941430efafcd989eeb3ddb4973097b76 100644
--- a/public/emoji/1f645-1f3fd-200d-2642-fe0f.svg
+++ b/public/emoji/1f645-1f3fd-200d-2642-fe0f.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#D5AB88" d="M28.729 13.715c0-1.548-.769-2.801-1.729-2.852V6.25L9 5.938v4.926c-.96.051-1.729 1.304-1.729 2.852 0 1.548.77 2.801 1.729 2.852V17c0 4.971 4.029 9 9 9s9-4.029 9-9v-.433c.96-.051 1.729-1.304 1.729-2.852z"/><path fill="#963B22" d="M18 .823c-7.019 0-10.139 4.684-10.139 8.588 0 3.903 1.343 4.986 1.56 3.903.78-3.903 3.12-5.101 3.12-5.101 4.68 3.904 3.9.781 3.9.781 4.679 4.684 2.34 0 2.34 0 1.56 1.562 6.239 1.562 6.239 1.562s.78 1.198 1.559 2.759c.78 1.562 1.56 0 1.56-3.903 0-3.905-3.9-8.589-10.139-8.589z"/><path fill="#C1694F" d="M14 22h8s-1 2-4 2-4-2-4-2z"/><path fill="#4289C1" d="M27 27H9c-2.209 0-4 1.791-4 4v5h26v-5c0-2.209-1.791-4-4-4z"/><path fill="#CC9B7A" d="M2.58 13c-.074 0-1.015-.653-1.557-.541-.693.144-1.139.822-.997 1.517L.58 16.65V19c0 1.104.896 2 2 2h2l-2-8z"/><path fill="#D5AB88" d="M1.58 8c-.552 0-1 .447-1 1l1 6v5c0 .553.448 1 1 1h2v-2L4 15 2.58 9s-.447-1-1-1z"/><path fill="#4289C1" d="M27 27c4 0 0 9 0 9L4 21v-6l23 12z"/><path fill="#2A6797" d="M19.347 31.408l7.326-4.579-1.938-1.011L9 36h3l5.731-3.582L24 36h3zm2.195-7.255l-4.819-2.515-6.647 3.324 3.056 1.994z"/><path fill="#CC9B7A" d="M34.977 12.459c-.541-.112-1.064.142-1.341.586C33.564 13.029 31.42 21 31.42 21h2c1.104 0 2-.896 2-2v-2.35l.554-2.675c.141-.694-.304-1.373-.997-1.516z"/><path fill="#D5AB88" d="M34.42 8c.552 0 1 .447 1 1l-1 6v5c0 .553-.448 1-1 1h-2v-2l.58-4 1.42-6s.447-1 1-1z"/><path fill="#4289C1" d="M32 15L9 27c-2.209 0-4 1.791-4 4v5h4l9.035-5.846L18 30.13 32 21v-6z"/><path fill="#C1694F" d="M19 19.5h-2c-.276 0-.5-.224-.5-.5s.224-.5.5-.5h2c.276 0 .5.224.5.5s-.224.5-.5.5z"/><path fill="#662113" d="M14 16c-.552 0-1-.448-1-1v-1c0-.552.448-1 1-1s1 .448 1 1v1c0 .552-.448 1-1 1zm8 0c-.552 0-1-.448-1-1v-1c0-.552.448-1 1-1s1 .448 1 1v1c0 .552-.448 1-1 1z"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#D5AB88" d="M28.752 13.715c0-1.548-.769-2.801-1.729-2.852V6.25l-18-.312v4.926c-.96.051-1.729 1.304-1.729 2.852 0 1.548.77 2.801 1.729 2.852V17c0 4.971 4.029 9 9 9s9-4.029 9-9v-.433c.96-.051 1.729-1.304 1.729-2.852z"/><path fill="#963B22" d="M18.023.823c-7.019 0-10.139 4.684-10.139 8.588 0 3.903 1.343 4.986 1.56 3.903.78-3.903 3.12-5.101 3.12-5.101 4.68 3.904 3.9.781 3.9.781 4.679 4.684 2.34 0 2.34 0 1.56 1.562 6.239 1.562 6.239 1.562s.78 1.198 1.559 2.759c.78 1.562 1.56 0 1.56-3.903 0-3.905-3.9-8.589-10.139-8.589z"/><path fill="#C1694F" d="M14.023 22h8s-1 2-4 2-4-2-4-2z"/><path fill="#2A6797" d="M6 28h24v8H6z"/><path fill="#C1694F" d="M19.023 19.5h-2c-.276 0-.5-.224-.5-.5s.224-.5.5-.5h2c.276 0 .5.224.5.5s-.224.5-.5.5z"/><path fill="#662113" d="M14.023 16c-.552 0-1-.448-1-1v-1c0-.552.448-1 1-1s1 .448 1 1v1c0 .552-.448 1-1 1zm8 0c-.552 0-1-.448-1-1v-1c0-.552.448-1 1-1s1 .448 1 1v1c0 .552-.448 1-1 1z"/><path fill="#CC9B7A" d="M3.195 18.025c.263-.484.776-.74 1.268-.694.034-.064 7.084 2.942 7.084 2.942l-1.268 1.547c-.7.854-1.907 1.023-2.696.376l-1.677-1.375-2.26-1.137c-.586-.297-.788-1.039-.451-1.659z"/><path fill="#D5AB88" d="M.365 14.985c-.35.427-.315 1.035.08 1.359l4.917 2.738 3.569 2.926c.395.323.998.239 1.348-.188l1.268-1.547-1.428-1.17-3.223-1.893-5.183-2.413c-.001 0-.998-.239-1.348.188z"/><path fill="#4289C1" d="M9.52 18.438s19.597 8.657 20.108 8.884c1.19.529 3.154 1.7 3.154 3.678l-.351 4.75c0 .138-.112.25-.25.25h-3.323c-.05 0-.098-.015-.139-.043L9.279 22.898c-.069-.046-.111-.124-.111-.207v-4.025c.001-.181.186-.302.352-.228z"/><path fill="#2A6797" d="M18.226 22.266l-.779-.324-6.462 2.109 1.482 1.031zm5.203 2.316l1.007.445-5.175 4.594-3.821-.025z"/><path fill="#CC9B7A" d="M32.752 18.025c-.263-.484-.776-.74-1.268-.694-.034-.064-7.084 2.942-7.084 2.942l1.268 1.547c.7.854 1.907 1.023 2.696.376l1.677-1.375 2.26-1.137c.586-.297.788-1.039.451-1.659z"/><path fill="#D5AB88" d="M35.582 14.985c.35.427.315 1.035-.08 1.359l-4.917 2.738-3.569 2.926c-.395.323-.998.239-1.348-.188L24.4 20.273l1.428-1.17 3.223-1.892 5.183-2.413c0-.001.998-.24 1.348.187z"/><path fill="#4289C1" d="M26.427 18.438S6.83 27.095 6.319 27.322c-1.19.529-3.154 1.7-3.154 3.678l.351 4.75c0 .138.112.25.25.25h3.323c.05 0 .098-.015.139-.043l19.439-13.059c.069-.046.111-.124.111-.207v-4.025c0-.181-.186-.302-.351-.228z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f645-1f3fd.svg b/public/emoji/1f645-1f3fd.svg
index 1378f80d2397efc2e4984bcda913ec700bb6226e..3ba6194b505137363cae1b0c19385069ef755faf 100644
--- a/public/emoji/1f645-1f3fd.svg
+++ b/public/emoji/1f645-1f3fd.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#963B22" d="M19 0c-1.721 0-3.343.406-4.793 1.111C13.814 1.043 13.412 1 13 1 9.134 1 6 4.134 6 8v12h.018C6.201 26.467 11.489 31.656 18 31.656S29.799 26.467 29.982 20H30v-9c0-6.075-4.925-11-11-11z"/><path fill="#D5AB88" d="M14 5s-.003 5.308-5 5.936V17c0 4.971 4.029 9 9 9s9-4.029 9-9v-5.019C15.89 11.605 14 5 14 5z"/><circle fill="#DF1F32" cx="18" cy="22" r="1"/><path fill="#9268CA" d="M27 27H9c-2.209 0-4 1.791-4 4v5h26v-5c0-2.209-1.791-4-4-4z"/><path fill="#CC9B7A" d="M2.58 13c-.074 0-1.015-.653-1.557-.541-.693.144-1.139.822-.997 1.517L.58 16.65V19c0 1.104.896 2 2 2h2l-2-8z"/><path fill="#D5AB88" d="M1.58 8c-.552 0-1 .447-1 1l1 6v5c0 .553.448 1 1 1h2v-2L4 15 2.58 9s-.447-1-1-1z"/><path fill="#9268CA" d="M27 27c4 0 0 9 0 9L4 21v-6l23 12z"/><path fill="#7450A8" d="M19.347 31.408l7.326-4.579-1.938-1.011L9 36h3l5.731-3.582L24 36h3zm2.195-7.255l-4.819-2.515-6.647 3.324 3.056 1.994z"/><path fill="#CC9B7A" d="M34.977 12.459c-.541-.112-1.064.142-1.341.586C33.564 13.029 31.42 21 31.42 21h2c1.104 0 2-.896 2-2v-2.35l.554-2.675c.141-.694-.304-1.373-.997-1.516z"/><path fill="#D5AB88" d="M34.42 8c.552 0 1 .447 1 1l-1 6v5c0 .553-.448 1-1 1h-2v-2l.58-4 1.42-6s.447-1 1-1z"/><path fill="#9268CA" d="M32 15L9 27c-2.209 0-4 1.791-4 4v5h4l9.035-5.846L18 30.13 32 21v-6z"/><path fill="#C1694F" d="M19 19.5h-2c-.276 0-.5-.224-.5-.5s.224-.5.5-.5h2c.276 0 .5.224.5.5s-.224.5-.5.5z"/><path fill="#662113" d="M14 16c-.552 0-1-.448-1-1v-1c0-.552.448-1 1-1s1 .448 1 1v1c0 .552-.448 1-1 1zm8 0c-.553 0-1-.448-1-1v-1c0-.552.447-1 1-1s1 .448 1 1v1c0 .552-.447 1-1 1z"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#963B22" d="M19 0c-1.721 0-3.343.406-4.793 1.111C13.814 1.043 13.412 1 13 1 9.134 1 6 4.134 6 8v12h.018C6.201 26.467 11.489 31.656 18 31.656S29.799 26.467 29.982 20H30v-9c0-6.075-4.925-11-11-11z"/><path fill="#D5AB88" d="M14 5s-.003 5.308-5 5.936V17c0 4.971 4.029 9 9 9s9-4.029 9-9v-5.019C15.889 11.605 14 5 14 5z"/><circle fill="#DF1F32" cx="18" cy="22" r="1"/><path fill="#7450A8" d="M6 28h24v8H6z"/><path fill="#C1694F" d="M19 19.5h-2c-.276 0-.5-.224-.5-.5s.224-.5.5-.5h2c.276 0 .5.224.5.5s-.224.5-.5.5z"/><path fill="#662113" d="M14 16c-.552 0-1-.448-1-1v-1c0-.552.448-1 1-1s1 .448 1 1v1c0 .552-.448 1-1 1zm8 0c-.553 0-1-.448-1-1v-1c0-.552.447-1 1-1s1 .448 1 1v1c0 .552-.447 1-1 1z"/><path fill="#CC9B7A" d="M3.195 18.025c.263-.484.776-.74 1.268-.694.034-.064 7.084 2.942 7.084 2.942l-1.268 1.547c-.7.854-1.907 1.023-2.696.376l-1.677-1.375-2.26-1.137c-.586-.297-.788-1.039-.451-1.659z"/><path fill="#D5AB88" d="M.365 14.985c-.35.427-.315 1.035.08 1.359l4.917 2.738 3.569 2.926c.395.323.998.239 1.348-.188l1.268-1.547-1.428-1.17-3.223-1.893-5.183-2.413c-.001 0-.998-.239-1.348.188z"/><path fill="#9268CA" d="M9.52 18.438s19.597 8.657 20.108 8.884c1.19.529 3.154 1.7 3.154 3.678l-.351 4.75c0 .138-.112.25-.25.25h-3.323c-.05 0-.098-.015-.139-.043L9.279 22.898c-.069-.046-.111-.124-.111-.207v-4.025c.001-.181.186-.302.352-.228z"/><path fill="#7450A8" d="M18.226 22.266l-.779-.324-6.462 2.109 1.482 1.031zm5.203 2.316l1.007.445-5.175 4.594-3.821-.025z"/><path fill="#CC9B7A" d="M32.752 18.025c-.263-.484-.776-.74-1.268-.694-.034-.064-7.084 2.942-7.084 2.942l1.268 1.547c.7.854 1.907 1.023 2.696.376l1.677-1.375 2.26-1.137c.586-.297.788-1.039.451-1.659z"/><path fill="#D5AB88" d="M35.582 14.985c.35.427.315 1.035-.08 1.359l-4.917 2.738-3.569 2.926c-.395.323-.998.239-1.348-.188L24.4 20.273l1.428-1.17 3.223-1.892 5.183-2.413c0-.001.998-.24 1.348.187z"/><path fill="#9268CA" d="M26.427 18.438S6.83 27.095 6.319 27.322c-1.19.529-3.154 1.7-3.154 3.678l.351 4.75c0 .138.112.25.25.25h3.323c.05 0 .098-.015.139-.043l19.439-13.059c.069-.046.111-.124.111-.207v-4.025c0-.181-.186-.302-.351-.228z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f645-1f3fe-200d-2640-fe0f.svg b/public/emoji/1f645-1f3fe-200d-2640-fe0f.svg
index 8a775425a105949d2b6dbd323f152dc309cd110e..5eacdc63dbf2c36db4b9aa068d61ba50cbf42742 100644
--- a/public/emoji/1f645-1f3fe-200d-2640-fe0f.svg
+++ b/public/emoji/1f645-1f3fe-200d-2640-fe0f.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#60352A" d="M19 0c-1.721 0-3.343.406-4.793 1.111C13.814 1.043 13.412 1 13 1 9.134 1 6 4.134 6 8v12h.018C6.201 26.467 11.489 31.656 18 31.656S29.799 26.467 29.982 20H30v-9c0-6.075-4.925-11-11-11z"/><path fill="#AF7E57" d="M14 5s-.003 5.308-5 5.936V17c0 4.971 4.029 9 9 9s9-4.029 9-9v-5.019C15.89 11.605 14 5 14 5z"/><circle fill="#DF1F32" cx="18" cy="22" r="1"/><path fill="#9268CA" d="M27 27H9c-2.209 0-4 1.791-4 4v5h26v-5c0-2.209-1.791-4-4-4z"/><path fill="#9B6A49" d="M2.58 13c-.074 0-1.015-.653-1.557-.541-.693.144-1.139.822-.997 1.517L.58 16.65V19c0 1.104.896 2 2 2h2l-2-8z"/><path fill="#AF7E57" d="M1.58 8c-.552 0-1 .447-1 1l1 6v5c0 .553.448 1 1 1h2v-2L4 15 2.58 9s-.447-1-1-1z"/><path fill="#9268CA" d="M27 27c4 0 0 9 0 9L4 21v-6l23 12z"/><path fill="#7450A8" d="M19.347 31.408l7.326-4.579-1.938-1.011L9 36h3l5.731-3.582L24 36h3zm2.195-7.255l-4.819-2.515-6.647 3.324 3.056 1.994z"/><path fill="#9B6A49" d="M34.977 12.459c-.541-.112-1.064.142-1.341.586C33.564 13.029 31.42 21 31.42 21h2c1.104 0 2-.896 2-2v-2.35l.554-2.675c.141-.694-.304-1.373-.997-1.516z"/><path fill="#AF7E57" d="M34.42 8c.552 0 1 .447 1 1l-1 6v5c0 .553-.448 1-1 1h-2v-2l.58-4 1.42-6s.447-1 1-1z"/><path fill="#9268CA" d="M32 15L9 27c-2.209 0-4 1.791-4 4v5h4l9.035-5.846L18 30.13 32 21v-6z"/><path fill="#915A34" d="M19 19.5h-2c-.276 0-.5-.224-.5-.5s.224-.5.5-.5h2c.276 0 .5.224.5.5s-.224.5-.5.5z"/><path fill="#60352A" d="M14 16c-.552 0-1-.448-1-1v-1c0-.552.448-1 1-1s1 .448 1 1v1c0 .552-.448 1-1 1zm8 0c-.553 0-1-.448-1-1v-1c0-.552.447-1 1-1s1 .448 1 1v1c0 .552-.447 1-1 1z"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#60352A" d="M19 0c-1.721 0-3.343.406-4.793 1.111C13.814 1.043 13.412 1 13 1 9.134 1 6 4.134 6 8v12h.018C6.201 26.467 11.489 31.656 18 31.656S29.799 26.467 29.982 20H30v-9c0-6.075-4.925-11-11-11z"/><path fill="#AF7E57" d="M14 5s-.003 5.308-5 5.936V17c0 4.971 4.029 9 9 9s9-4.029 9-9v-5.019C15.889 11.605 14 5 14 5z"/><circle fill="#DF1F32" cx="18" cy="22" r="1"/><path fill="#7450A8" d="M6 28h24v8H6z"/><path fill="#915A34" d="M19 19.5h-2c-.276 0-.5-.224-.5-.5s.224-.5.5-.5h2c.276 0 .5.224.5.5s-.224.5-.5.5z"/><path fill="#60352A" d="M14 16c-.552 0-1-.448-1-1v-1c0-.552.448-1 1-1s1 .448 1 1v1c0 .552-.448 1-1 1zm8 0c-.553 0-1-.448-1-1v-1c0-.552.447-1 1-1s1 .448 1 1v1c0 .552-.447 1-1 1z"/><path fill="#9B6A49" d="M3.195 18.025c.263-.484.776-.74 1.268-.694.034-.064 7.084 2.942 7.084 2.942l-1.268 1.547c-.7.854-1.907 1.023-2.696.376l-1.677-1.375-2.26-1.137c-.586-.297-.788-1.039-.451-1.659z"/><path fill="#AF7E57" d="M.365 14.985c-.35.427-.315 1.035.08 1.359l4.917 2.738 3.569 2.926c.395.323.998.239 1.348-.188l1.268-1.547-1.428-1.17-3.223-1.893-5.183-2.413c-.001 0-.998-.239-1.348.188z"/><path fill="#9268CA" d="M9.52 18.438s19.597 8.657 20.108 8.884c1.19.529 3.154 1.7 3.154 3.678l-.351 4.75c0 .138-.112.25-.25.25h-3.323c-.05 0-.098-.015-.139-.043L9.279 22.898c-.069-.046-.111-.124-.111-.207v-4.025c.001-.181.186-.302.352-.228z"/><path fill="#7450A8" d="M18.226 22.266l-.779-.324-6.462 2.109 1.482 1.031zm5.203 2.316l1.007.445-5.175 4.594-3.821-.025z"/><path fill="#9B6A49" d="M32.752 18.025c-.263-.484-.776-.74-1.268-.694-.034-.064-7.084 2.942-7.084 2.942l1.268 1.547c.7.854 1.907 1.023 2.696.376l1.677-1.375 2.26-1.137c.586-.297.788-1.039.451-1.659z"/><path fill="#AF7E57" d="M35.582 14.985c.35.427.315 1.035-.08 1.359l-4.917 2.738-3.569 2.926c-.395.323-.998.239-1.348-.188L24.4 20.273l1.428-1.17 3.223-1.892 5.183-2.413c0-.001.998-.24 1.348.187z"/><path fill="#9268CA" d="M26.427 18.438S6.83 27.095 6.319 27.322c-1.19.529-3.154 1.7-3.154 3.678l.351 4.75c0 .138.112.25.25.25h3.323c.05 0 .098-.015.139-.043l19.439-13.059c.069-.046.111-.124.111-.207v-4.025c0-.181-.186-.302-.351-.228z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f645-1f3fe-200d-2642-fe0f.svg b/public/emoji/1f645-1f3fe-200d-2642-fe0f.svg
index 58749e06d3bbc6ca03e9031e7c77731f2e49e24f..da7e789351db9c3b06ec2ffa492ac2cba74a115f 100644
--- a/public/emoji/1f645-1f3fe-200d-2642-fe0f.svg
+++ b/public/emoji/1f645-1f3fe-200d-2642-fe0f.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#AF7E57" d="M28.729 13.715c0-1.548-.769-2.801-1.729-2.852V6.25L9 5.938v4.926c-.96.051-1.729 1.304-1.729 2.852 0 1.548.77 2.801 1.729 2.852V17c0 4.971 4.029 9 9 9s9-4.029 9-9v-.433c.96-.051 1.729-1.304 1.729-2.852z"/><path fill="#60352A" d="M18 .823c-7.019 0-10.139 4.684-10.139 8.588 0 3.903 1.343 4.986 1.56 3.903.78-3.903 3.12-5.101 3.12-5.101 4.68 3.904 3.9.781 3.9.781 4.679 4.684 2.34 0 2.34 0 1.56 1.562 6.239 1.562 6.239 1.562s.78 1.198 1.559 2.759c.78 1.562 1.56 0 1.56-3.903 0-3.905-3.9-8.589-10.139-8.589z"/><path fill="#915A34" d="M14 22h8s-1 2-4 2-4-2-4-2z"/><path fill="#4289C1" d="M27 27H9c-2.209 0-4 1.791-4 4v5h26v-5c0-2.209-1.791-4-4-4z"/><path fill="#9B6A49" d="M2.58 13c-.074 0-1.015-.653-1.557-.541-.693.144-1.139.822-.997 1.517L.58 16.65V19c0 1.104.896 2 2 2h2l-2-8z"/><path fill="#AF7E57" d="M1.58 8c-.552 0-1 .447-1 1l1 6v5c0 .553.448 1 1 1h2v-2L4 15 2.58 9s-.447-1-1-1z"/><path fill="#4289C1" d="M27 27c4 0 0 9 0 9L4 21v-6l23 12z"/><path fill="#2A6797" d="M19.347 31.408l7.326-4.579-1.938-1.011L9 36h3l5.731-3.582L24 36h3zm2.195-7.255l-4.819-2.515-6.647 3.324 3.056 1.994z"/><path fill="#9B6A49" d="M34.977 12.459c-.541-.112-1.064.142-1.341.586C33.564 13.029 31.42 21 31.42 21h2c1.104 0 2-.896 2-2v-2.35l.554-2.675c.141-.694-.304-1.373-.997-1.516z"/><path fill="#AF7E57" d="M34.42 8c.552 0 1 .447 1 1l-1 6v5c0 .553-.448 1-1 1h-2v-2l.58-4 1.42-6s.447-1 1-1z"/><path fill="#4289C1" d="M32 15L9 27c-2.209 0-4 1.791-4 4v5h4l9.035-5.846L18 30.13 32 21v-6z"/><path fill="#915A34" d="M19 19.5h-2c-.276 0-.5-.224-.5-.5s.224-.5.5-.5h2c.276 0 .5.224.5.5s-.224.5-.5.5z"/><path fill="#60352A" d="M14 16c-.552 0-1-.448-1-1v-1c0-.552.448-1 1-1s1 .448 1 1v1c0 .552-.448 1-1 1zm8 0c-.552 0-1-.448-1-1v-1c0-.552.448-1 1-1s1 .448 1 1v1c0 .552-.448 1-1 1z"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#AF7E57" d="M28.752 13.715c0-1.548-.769-2.801-1.729-2.852V6.25l-18-.312v4.926c-.96.051-1.729 1.304-1.729 2.852 0 1.548.77 2.801 1.729 2.852V17c0 4.971 4.029 9 9 9s9-4.029 9-9v-.433c.96-.051 1.729-1.304 1.729-2.852z"/><path fill="#60352A" d="M18.023.823c-7.019 0-10.139 4.684-10.139 8.588 0 3.903 1.343 4.986 1.56 3.903.78-3.903 3.12-5.101 3.12-5.101 4.68 3.904 3.9.781 3.9.781 4.679 4.684 2.34 0 2.34 0 1.56 1.562 6.239 1.562 6.239 1.562s.78 1.198 1.559 2.759c.78 1.562 1.56 0 1.56-3.903 0-3.905-3.9-8.589-10.139-8.589z"/><path fill="#915A34" d="M14.023 22h8s-1 2-4 2-4-2-4-2z"/><path fill="#2A6797" d="M6 28h24v8H6z"/><path fill="#915A34" d="M19.023 19.5h-2c-.276 0-.5-.224-.5-.5s.224-.5.5-.5h2c.276 0 .5.224.5.5s-.224.5-.5.5z"/><path fill="#60352A" d="M14.023 16c-.552 0-1-.448-1-1v-1c0-.552.448-1 1-1s1 .448 1 1v1c0 .552-.448 1-1 1zm8 0c-.552 0-1-.448-1-1v-1c0-.552.448-1 1-1s1 .448 1 1v1c0 .552-.448 1-1 1z"/><path fill="#9B6A49" d="M3.195 18.025c.263-.484.776-.74 1.268-.694.034-.064 7.084 2.942 7.084 2.942l-1.268 1.547c-.7.854-1.907 1.023-2.696.376l-1.677-1.375-2.26-1.137c-.586-.297-.788-1.039-.451-1.659z"/><path fill="#AF7E57" d="M.365 14.985c-.35.427-.315 1.035.08 1.359l4.917 2.738 3.569 2.926c.395.323.998.239 1.348-.188l1.268-1.547-1.428-1.17-3.223-1.893-5.183-2.413c-.001 0-.998-.239-1.348.188z"/><path fill="#4289C1" d="M9.52 18.438s19.597 8.657 20.108 8.884c1.19.529 3.154 1.7 3.154 3.678l-.351 4.75c0 .138-.112.25-.25.25h-3.323c-.05 0-.098-.015-.139-.043L9.279 22.898c-.069-.046-.111-.124-.111-.207v-4.025c.001-.181.186-.302.352-.228z"/><path fill="#2A6797" d="M18.226 22.266l-.779-.324-6.462 2.109 1.482 1.031zm5.203 2.316l1.007.445-5.175 4.594-3.821-.025z"/><path fill="#9B6A49" d="M32.752 18.025c-.263-.484-.776-.74-1.268-.694-.034-.064-7.084 2.942-7.084 2.942l1.268 1.547c.7.854 1.907 1.023 2.696.376l1.677-1.375 2.26-1.137c.586-.297.788-1.039.451-1.659z"/><path fill="#AF7E57" d="M35.582 14.985c.35.427.315 1.035-.08 1.359l-4.917 2.738-3.569 2.926c-.395.323-.998.239-1.348-.188L24.4 20.273l1.428-1.17 3.223-1.892 5.183-2.413c0-.001.998-.24 1.348.187z"/><path fill="#4289C1" d="M26.427 18.438S6.83 27.095 6.319 27.322c-1.19.529-3.154 1.7-3.154 3.678l.351 4.75c0 .138.112.25.25.25h3.323c.05 0 .098-.015.139-.043l19.439-13.059c.069-.046.111-.124.111-.207v-4.025c0-.181-.186-.302-.351-.228z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f645-1f3fe.svg b/public/emoji/1f645-1f3fe.svg
index 8a775425a105949d2b6dbd323f152dc309cd110e..5eacdc63dbf2c36db4b9aa068d61ba50cbf42742 100644
--- a/public/emoji/1f645-1f3fe.svg
+++ b/public/emoji/1f645-1f3fe.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#60352A" d="M19 0c-1.721 0-3.343.406-4.793 1.111C13.814 1.043 13.412 1 13 1 9.134 1 6 4.134 6 8v12h.018C6.201 26.467 11.489 31.656 18 31.656S29.799 26.467 29.982 20H30v-9c0-6.075-4.925-11-11-11z"/><path fill="#AF7E57" d="M14 5s-.003 5.308-5 5.936V17c0 4.971 4.029 9 9 9s9-4.029 9-9v-5.019C15.89 11.605 14 5 14 5z"/><circle fill="#DF1F32" cx="18" cy="22" r="1"/><path fill="#9268CA" d="M27 27H9c-2.209 0-4 1.791-4 4v5h26v-5c0-2.209-1.791-4-4-4z"/><path fill="#9B6A49" d="M2.58 13c-.074 0-1.015-.653-1.557-.541-.693.144-1.139.822-.997 1.517L.58 16.65V19c0 1.104.896 2 2 2h2l-2-8z"/><path fill="#AF7E57" d="M1.58 8c-.552 0-1 .447-1 1l1 6v5c0 .553.448 1 1 1h2v-2L4 15 2.58 9s-.447-1-1-1z"/><path fill="#9268CA" d="M27 27c4 0 0 9 0 9L4 21v-6l23 12z"/><path fill="#7450A8" d="M19.347 31.408l7.326-4.579-1.938-1.011L9 36h3l5.731-3.582L24 36h3zm2.195-7.255l-4.819-2.515-6.647 3.324 3.056 1.994z"/><path fill="#9B6A49" d="M34.977 12.459c-.541-.112-1.064.142-1.341.586C33.564 13.029 31.42 21 31.42 21h2c1.104 0 2-.896 2-2v-2.35l.554-2.675c.141-.694-.304-1.373-.997-1.516z"/><path fill="#AF7E57" d="M34.42 8c.552 0 1 .447 1 1l-1 6v5c0 .553-.448 1-1 1h-2v-2l.58-4 1.42-6s.447-1 1-1z"/><path fill="#9268CA" d="M32 15L9 27c-2.209 0-4 1.791-4 4v5h4l9.035-5.846L18 30.13 32 21v-6z"/><path fill="#915A34" d="M19 19.5h-2c-.276 0-.5-.224-.5-.5s.224-.5.5-.5h2c.276 0 .5.224.5.5s-.224.5-.5.5z"/><path fill="#60352A" d="M14 16c-.552 0-1-.448-1-1v-1c0-.552.448-1 1-1s1 .448 1 1v1c0 .552-.448 1-1 1zm8 0c-.553 0-1-.448-1-1v-1c0-.552.447-1 1-1s1 .448 1 1v1c0 .552-.447 1-1 1z"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#60352A" d="M19 0c-1.721 0-3.343.406-4.793 1.111C13.814 1.043 13.412 1 13 1 9.134 1 6 4.134 6 8v12h.018C6.201 26.467 11.489 31.656 18 31.656S29.799 26.467 29.982 20H30v-9c0-6.075-4.925-11-11-11z"/><path fill="#AF7E57" d="M14 5s-.003 5.308-5 5.936V17c0 4.971 4.029 9 9 9s9-4.029 9-9v-5.019C15.889 11.605 14 5 14 5z"/><circle fill="#DF1F32" cx="18" cy="22" r="1"/><path fill="#7450A8" d="M6 28h24v8H6z"/><path fill="#915A34" d="M19 19.5h-2c-.276 0-.5-.224-.5-.5s.224-.5.5-.5h2c.276 0 .5.224.5.5s-.224.5-.5.5z"/><path fill="#60352A" d="M14 16c-.552 0-1-.448-1-1v-1c0-.552.448-1 1-1s1 .448 1 1v1c0 .552-.448 1-1 1zm8 0c-.553 0-1-.448-1-1v-1c0-.552.447-1 1-1s1 .448 1 1v1c0 .552-.447 1-1 1z"/><path fill="#9B6A49" d="M3.195 18.025c.263-.484.776-.74 1.268-.694.034-.064 7.084 2.942 7.084 2.942l-1.268 1.547c-.7.854-1.907 1.023-2.696.376l-1.677-1.375-2.26-1.137c-.586-.297-.788-1.039-.451-1.659z"/><path fill="#AF7E57" d="M.365 14.985c-.35.427-.315 1.035.08 1.359l4.917 2.738 3.569 2.926c.395.323.998.239 1.348-.188l1.268-1.547-1.428-1.17-3.223-1.893-5.183-2.413c-.001 0-.998-.239-1.348.188z"/><path fill="#9268CA" d="M9.52 18.438s19.597 8.657 20.108 8.884c1.19.529 3.154 1.7 3.154 3.678l-.351 4.75c0 .138-.112.25-.25.25h-3.323c-.05 0-.098-.015-.139-.043L9.279 22.898c-.069-.046-.111-.124-.111-.207v-4.025c.001-.181.186-.302.352-.228z"/><path fill="#7450A8" d="M18.226 22.266l-.779-.324-6.462 2.109 1.482 1.031zm5.203 2.316l1.007.445-5.175 4.594-3.821-.025z"/><path fill="#9B6A49" d="M32.752 18.025c-.263-.484-.776-.74-1.268-.694-.034-.064-7.084 2.942-7.084 2.942l1.268 1.547c.7.854 1.907 1.023 2.696.376l1.677-1.375 2.26-1.137c.586-.297.788-1.039.451-1.659z"/><path fill="#AF7E57" d="M35.582 14.985c.35.427.315 1.035-.08 1.359l-4.917 2.738-3.569 2.926c-.395.323-.998.239-1.348-.188L24.4 20.273l1.428-1.17 3.223-1.892 5.183-2.413c0-.001.998-.24 1.348.187z"/><path fill="#9268CA" d="M26.427 18.438S6.83 27.095 6.319 27.322c-1.19.529-3.154 1.7-3.154 3.678l.351 4.75c0 .138.112.25.25.25h3.323c.05 0 .098-.015.139-.043l19.439-13.059c.069-.046.111-.124.111-.207v-4.025c0-.181-.186-.302-.351-.228z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f645-1f3ff-200d-2640-fe0f.svg b/public/emoji/1f645-1f3ff-200d-2640-fe0f.svg
index a43091f999a5a11c52afe9683c0ec697eb9080cd..e38dfd1cd1c6e8323e477ccc7e30c5d447beee6c 100644
--- a/public/emoji/1f645-1f3ff-200d-2640-fe0f.svg
+++ b/public/emoji/1f645-1f3ff-200d-2640-fe0f.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#0B0200" d="M19 0c-1.721 0-3.343.406-4.793 1.111C13.814 1.043 13.412 1 13 1 9.134 1 6 4.134 6 8v12h.018C6.201 26.467 11.489 31.656 18 31.656S29.799 26.467 29.982 20H30v-9c0-6.075-4.925-11-11-11z"/><path fill="#7C533E" d="M14 5s-.003 5.308-5 5.936V17c0 4.971 4.029 9 9 9s9-4.029 9-9v-5.019C15.89 11.605 14 5 14 5z"/><circle fill="#DF1F32" cx="18" cy="22" r="1"/><path fill="#9268CA" d="M27 27H9c-2.209 0-4 1.791-4 4v5h26v-5c0-2.209-1.791-4-4-4z"/><path fill="#664131" d="M2.58 13c-.074 0-1.015-.653-1.557-.541-.693.144-1.139.822-.997 1.517L.58 16.65V19c0 1.104.896 2 2 2h2l-2-8z"/><path fill="#7C533E" d="M1.58 8c-.552 0-1 .447-1 1l1 6v5c0 .553.448 1 1 1h2v-2L4 15 2.58 9s-.447-1-1-1z"/><path fill="#9268CA" d="M27 27c4 0 0 9 0 9L4 21v-6l23 12z"/><path fill="#7450A8" d="M19.347 31.408l7.326-4.579-1.938-1.011L9 36h3l5.731-3.582L24 36h3zm2.195-7.255l-4.819-2.515-6.647 3.324 3.056 1.994z"/><path fill="#664131" d="M34.977 12.459c-.541-.112-1.064.142-1.341.586C33.564 13.029 31.42 21 31.42 21h2c1.104 0 2-.896 2-2v-2.35l.554-2.675c.141-.694-.304-1.373-.997-1.516z"/><path fill="#7C533E" d="M34.42 8c.552 0 1 .447 1 1l-1 6v5c0 .553-.448 1-1 1h-2v-2l.58-4 1.42-6s.447-1 1-1z"/><path fill="#9268CA" d="M32 15L9 27c-2.209 0-4 1.791-4 4v5h4l9.035-5.846L18 30.13 32 21v-6z"/><path fill="#3D2E24" d="M19 19.5h-2c-.276 0-.5-.224-.5-.5s.224-.5.5-.5h2c.276 0 .5.224.5.5s-.224.5-.5.5z"/><path d="M14 16c-.552 0-1-.448-1-1v-1c0-.552.448-1 1-1s1 .448 1 1v1c0 .552-.448 1-1 1zm8 0c-.553 0-1-.448-1-1v-1c0-.552.447-1 1-1s1 .448 1 1v1c0 .552-.447 1-1 1z"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#0B0200" d="M19 0c-1.721 0-3.343.406-4.793 1.111C13.814 1.043 13.412 1 13 1 9.134 1 6 4.134 6 8v12h.018C6.201 26.467 11.489 31.656 18 31.656S29.799 26.467 29.982 20H30v-9c0-6.075-4.925-11-11-11z"/><path fill="#7C533E" d="M14 5s-.003 5.308-5 5.936V17c0 4.971 4.029 9 9 9s9-4.029 9-9v-5.019C15.889 11.605 14 5 14 5z"/><circle fill="#DF1F32" cx="18" cy="22" r="1"/><path fill="#7450A8" d="M6 28h24v8H6z"/><path fill="#3D2E24" d="M19 19.5h-2c-.276 0-.5-.224-.5-.5s.224-.5.5-.5h2c.276 0 .5.224.5.5s-.224.5-.5.5z"/><path d="M14 16c-.552 0-1-.448-1-1v-1c0-.552.448-1 1-1s1 .448 1 1v1c0 .552-.448 1-1 1zm8 0c-.553 0-1-.448-1-1v-1c0-.552.447-1 1-1s1 .448 1 1v1c0 .552-.447 1-1 1z"/><path fill="#664131" d="M3.195 18.025c.263-.484.776-.74 1.268-.694.034-.064 7.084 2.942 7.084 2.942l-1.268 1.547c-.7.854-1.907 1.023-2.696.376l-1.677-1.375-2.26-1.137c-.586-.297-.788-1.039-.451-1.659z"/><path fill="#7C533E" d="M.365 14.985c-.35.427-.315 1.035.08 1.359l4.917 2.738 3.569 2.926c.395.323.998.239 1.348-.188l1.268-1.547-1.428-1.17-3.223-1.893-5.183-2.413c-.001 0-.998-.239-1.348.188z"/><path fill="#9268CA" d="M9.52 18.438s19.597 8.657 20.108 8.884c1.19.529 3.154 1.7 3.154 3.678l-.351 4.75c0 .138-.112.25-.25.25h-3.323c-.05 0-.098-.015-.139-.043L9.279 22.898c-.069-.046-.111-.124-.111-.207v-4.025c.001-.181.186-.302.352-.228z"/><path fill="#7450A8" d="M18.226 22.266l-.779-.324-6.462 2.109 1.482 1.031zm5.203 2.316l1.007.445-5.175 4.594-3.821-.025z"/><path fill="#664131" d="M32.752 18.025c-.263-.484-.776-.74-1.268-.694-.034-.064-7.084 2.942-7.084 2.942l1.268 1.547c.7.854 1.907 1.023 2.696.376l1.677-1.375 2.26-1.137c.586-.297.788-1.039.451-1.659z"/><path fill="#7C533E" d="M35.582 14.985c.35.427.315 1.035-.08 1.359l-4.917 2.738-3.569 2.926c-.395.323-.998.239-1.348-.188L24.4 20.273l1.428-1.17 3.223-1.892 5.183-2.413c0-.001.998-.24 1.348.187z"/><path fill="#9268CA" d="M26.427 18.438S6.83 27.095 6.319 27.322c-1.19.529-3.154 1.7-3.154 3.678l.351 4.75c0 .138.112.25.25.25h3.323c.05 0 .098-.015.139-.043l19.439-13.059c.069-.046.111-.124.111-.207v-4.025c0-.181-.186-.302-.351-.228z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f645-1f3ff-200d-2642-fe0f.svg b/public/emoji/1f645-1f3ff-200d-2642-fe0f.svg
index 773a01625e6e4ef13e0db4a0dd1326df3f1b0cef..1fb2443b64c6217ced6ce4409beccab54733847c 100644
--- a/public/emoji/1f645-1f3ff-200d-2642-fe0f.svg
+++ b/public/emoji/1f645-1f3ff-200d-2642-fe0f.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#7C533E" d="M28.729 13.715c0-1.548-.769-2.801-1.729-2.852V6.25L9 5.938v4.926c-.96.051-1.729 1.304-1.729 2.852 0 1.548.77 2.801 1.729 2.852V17c0 4.971 4.029 9 9 9s9-4.029 9-9v-.433c.96-.051 1.729-1.304 1.729-2.852z"/><path fill="#0B0200" d="M18 .823c-7.019 0-10.139 4.684-10.139 8.588 0 3.903 1.343 4.986 1.56 3.903.78-3.903 3.12-5.101 3.12-5.101 4.68 3.904 3.9.781 3.9.781 4.679 4.684 2.34 0 2.34 0 1.56 1.562 6.239 1.562 6.239 1.562s.78 1.198 1.559 2.759c.78 1.562 1.56 0 1.56-3.903 0-3.905-3.9-8.589-10.139-8.589z"/><path fill="#3D2E24" d="M14 22h8s-1 2-4 2-4-2-4-2z"/><path fill="#4289C1" d="M27 27H9c-2.209 0-4 1.791-4 4v5h26v-5c0-2.209-1.791-4-4-4z"/><path fill="#664131" d="M2.58 13c-.074 0-1.015-.653-1.557-.541-.693.144-1.139.822-.997 1.517L.58 16.65V19c0 1.104.896 2 2 2h2l-2-8z"/><path fill="#7C533E" d="M1.58 8c-.552 0-1 .447-1 1l1 6v5c0 .553.448 1 1 1h2v-2L4 15 2.58 9s-.447-1-1-1z"/><path fill="#4289C1" d="M27 27c4 0 0 9 0 9L4 21v-6l23 12z"/><path fill="#2A6797" d="M19.347 31.408l7.326-4.579-1.938-1.011L9 36h3l5.731-3.582L24 36h3zm2.195-7.255l-4.819-2.515-6.647 3.324 3.056 1.994z"/><path fill="#664131" d="M34.977 12.459c-.541-.112-1.064.142-1.341.586C33.564 13.029 31.42 21 31.42 21h2c1.104 0 2-.896 2-2v-2.35l.554-2.675c.141-.694-.304-1.373-.997-1.516z"/><path fill="#7C533E" d="M34.42 8c.552 0 1 .447 1 1l-1 6v5c0 .553-.448 1-1 1h-2v-2l.58-4 1.42-6s.447-1 1-1z"/><path fill="#4289C1" d="M32 15L9 27c-2.209 0-4 1.791-4 4v5h4l9.035-5.846L18 30.13 32 21v-6z"/><path fill="#3D2E24" d="M19 19.5h-2c-.276 0-.5-.224-.5-.5s.224-.5.5-.5h2c.276 0 .5.224.5.5s-.224.5-.5.5z"/><path d="M14 16c-.552 0-1-.448-1-1v-1c0-.552.448-1 1-1s1 .448 1 1v1c0 .552-.448 1-1 1zm8 0c-.552 0-1-.448-1-1v-1c0-.552.448-1 1-1s1 .448 1 1v1c0 .552-.448 1-1 1z"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#7C533E" d="M28.752 13.715c0-1.548-.769-2.801-1.729-2.852V6.25l-18-.312v4.926c-.96.051-1.729 1.304-1.729 2.852 0 1.548.77 2.801 1.729 2.852V17c0 4.971 4.029 9 9 9s9-4.029 9-9v-.433c.96-.051 1.729-1.304 1.729-2.852z"/><path fill="#0B0200" d="M18.023.823c-7.019 0-10.139 4.684-10.139 8.588 0 3.903 1.343 4.986 1.56 3.903.78-3.903 3.12-5.101 3.12-5.101 4.68 3.904 3.9.781 3.9.781 4.679 4.684 2.34 0 2.34 0 1.56 1.562 6.239 1.562 6.239 1.562s.78 1.198 1.559 2.759c.78 1.562 1.56 0 1.56-3.903 0-3.905-3.9-8.589-10.139-8.589z"/><path fill="#3D2E24" d="M14.023 22h8s-1 2-4 2-4-2-4-2z"/><path fill="#2A6797" d="M6 28h24v8H6z"/><path fill="#3D2E24" d="M19.023 19.5h-2c-.276 0-.5-.224-.5-.5s.224-.5.5-.5h2c.276 0 .5.224.5.5s-.224.5-.5.5z"/><path d="M14.023 16c-.552 0-1-.448-1-1v-1c0-.552.448-1 1-1s1 .448 1 1v1c0 .552-.448 1-1 1zm8 0c-.552 0-1-.448-1-1v-1c0-.552.448-1 1-1s1 .448 1 1v1c0 .552-.448 1-1 1z"/><path fill="#664131" d="M3.195 18.025c.263-.484.776-.74 1.268-.694.034-.064 7.084 2.942 7.084 2.942l-1.268 1.547c-.7.854-1.907 1.023-2.696.376l-1.677-1.375-2.26-1.137c-.586-.297-.788-1.039-.451-1.659z"/><path fill="#7C533E" d="M.365 14.985c-.35.427-.315 1.035.08 1.359l4.917 2.738 3.569 2.926c.395.323.998.239 1.348-.188l1.268-1.547-1.428-1.17-3.223-1.893-5.183-2.413c-.001 0-.998-.239-1.348.188z"/><path fill="#4289C1" d="M9.52 18.438s19.597 8.657 20.108 8.884c1.19.529 3.154 1.7 3.154 3.678l-.351 4.75c0 .138-.112.25-.25.25h-3.323c-.05 0-.098-.015-.139-.043L9.279 22.898c-.069-.046-.111-.124-.111-.207v-4.025c.001-.181.186-.302.352-.228z"/><path fill="#2A6797" d="M18.226 22.266l-.779-.324-6.462 2.109 1.482 1.031zm5.203 2.316l1.007.445-5.175 4.594-3.821-.025z"/><path fill="#664131" d="M32.752 18.025c-.263-.484-.776-.74-1.268-.694-.034-.064-7.084 2.942-7.084 2.942l1.268 1.547c.7.854 1.907 1.023 2.696.376l1.677-1.375 2.26-1.137c.586-.297.788-1.039.451-1.659z"/><path fill="#7C533E" d="M35.582 14.985c.35.427.315 1.035-.08 1.359l-4.917 2.738-3.569 2.926c-.395.323-.998.239-1.348-.188L24.4 20.273l1.428-1.17 3.223-1.892 5.183-2.413c0-.001.998-.24 1.348.187z"/><path fill="#4289C1" d="M26.427 18.438S6.83 27.095 6.319 27.322c-1.19.529-3.154 1.7-3.154 3.678l.351 4.75c0 .138.112.25.25.25h3.323c.05 0 .098-.015.139-.043l19.439-13.059c.069-.046.111-.124.111-.207v-4.025c0-.181-.186-.302-.351-.228z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f645-1f3ff.svg b/public/emoji/1f645-1f3ff.svg
index a43091f999a5a11c52afe9683c0ec697eb9080cd..e38dfd1cd1c6e8323e477ccc7e30c5d447beee6c 100644
--- a/public/emoji/1f645-1f3ff.svg
+++ b/public/emoji/1f645-1f3ff.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#0B0200" d="M19 0c-1.721 0-3.343.406-4.793 1.111C13.814 1.043 13.412 1 13 1 9.134 1 6 4.134 6 8v12h.018C6.201 26.467 11.489 31.656 18 31.656S29.799 26.467 29.982 20H30v-9c0-6.075-4.925-11-11-11z"/><path fill="#7C533E" d="M14 5s-.003 5.308-5 5.936V17c0 4.971 4.029 9 9 9s9-4.029 9-9v-5.019C15.89 11.605 14 5 14 5z"/><circle fill="#DF1F32" cx="18" cy="22" r="1"/><path fill="#9268CA" d="M27 27H9c-2.209 0-4 1.791-4 4v5h26v-5c0-2.209-1.791-4-4-4z"/><path fill="#664131" d="M2.58 13c-.074 0-1.015-.653-1.557-.541-.693.144-1.139.822-.997 1.517L.58 16.65V19c0 1.104.896 2 2 2h2l-2-8z"/><path fill="#7C533E" d="M1.58 8c-.552 0-1 .447-1 1l1 6v5c0 .553.448 1 1 1h2v-2L4 15 2.58 9s-.447-1-1-1z"/><path fill="#9268CA" d="M27 27c4 0 0 9 0 9L4 21v-6l23 12z"/><path fill="#7450A8" d="M19.347 31.408l7.326-4.579-1.938-1.011L9 36h3l5.731-3.582L24 36h3zm2.195-7.255l-4.819-2.515-6.647 3.324 3.056 1.994z"/><path fill="#664131" d="M34.977 12.459c-.541-.112-1.064.142-1.341.586C33.564 13.029 31.42 21 31.42 21h2c1.104 0 2-.896 2-2v-2.35l.554-2.675c.141-.694-.304-1.373-.997-1.516z"/><path fill="#7C533E" d="M34.42 8c.552 0 1 .447 1 1l-1 6v5c0 .553-.448 1-1 1h-2v-2l.58-4 1.42-6s.447-1 1-1z"/><path fill="#9268CA" d="M32 15L9 27c-2.209 0-4 1.791-4 4v5h4l9.035-5.846L18 30.13 32 21v-6z"/><path fill="#3D2E24" d="M19 19.5h-2c-.276 0-.5-.224-.5-.5s.224-.5.5-.5h2c.276 0 .5.224.5.5s-.224.5-.5.5z"/><path d="M14 16c-.552 0-1-.448-1-1v-1c0-.552.448-1 1-1s1 .448 1 1v1c0 .552-.448 1-1 1zm8 0c-.553 0-1-.448-1-1v-1c0-.552.447-1 1-1s1 .448 1 1v1c0 .552-.447 1-1 1z"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#0B0200" d="M19 0c-1.721 0-3.343.406-4.793 1.111C13.814 1.043 13.412 1 13 1 9.134 1 6 4.134 6 8v12h.018C6.201 26.467 11.489 31.656 18 31.656S29.799 26.467 29.982 20H30v-9c0-6.075-4.925-11-11-11z"/><path fill="#7C533E" d="M14 5s-.003 5.308-5 5.936V17c0 4.971 4.029 9 9 9s9-4.029 9-9v-5.019C15.889 11.605 14 5 14 5z"/><circle fill="#DF1F32" cx="18" cy="22" r="1"/><path fill="#7450A8" d="M6 28h24v8H6z"/><path fill="#3D2E24" d="M19 19.5h-2c-.276 0-.5-.224-.5-.5s.224-.5.5-.5h2c.276 0 .5.224.5.5s-.224.5-.5.5z"/><path d="M14 16c-.552 0-1-.448-1-1v-1c0-.552.448-1 1-1s1 .448 1 1v1c0 .552-.448 1-1 1zm8 0c-.553 0-1-.448-1-1v-1c0-.552.447-1 1-1s1 .448 1 1v1c0 .552-.447 1-1 1z"/><path fill="#664131" d="M3.195 18.025c.263-.484.776-.74 1.268-.694.034-.064 7.084 2.942 7.084 2.942l-1.268 1.547c-.7.854-1.907 1.023-2.696.376l-1.677-1.375-2.26-1.137c-.586-.297-.788-1.039-.451-1.659z"/><path fill="#7C533E" d="M.365 14.985c-.35.427-.315 1.035.08 1.359l4.917 2.738 3.569 2.926c.395.323.998.239 1.348-.188l1.268-1.547-1.428-1.17-3.223-1.893-5.183-2.413c-.001 0-.998-.239-1.348.188z"/><path fill="#9268CA" d="M9.52 18.438s19.597 8.657 20.108 8.884c1.19.529 3.154 1.7 3.154 3.678l-.351 4.75c0 .138-.112.25-.25.25h-3.323c-.05 0-.098-.015-.139-.043L9.279 22.898c-.069-.046-.111-.124-.111-.207v-4.025c.001-.181.186-.302.352-.228z"/><path fill="#7450A8" d="M18.226 22.266l-.779-.324-6.462 2.109 1.482 1.031zm5.203 2.316l1.007.445-5.175 4.594-3.821-.025z"/><path fill="#664131" d="M32.752 18.025c-.263-.484-.776-.74-1.268-.694-.034-.064-7.084 2.942-7.084 2.942l1.268 1.547c.7.854 1.907 1.023 2.696.376l1.677-1.375 2.26-1.137c.586-.297.788-1.039.451-1.659z"/><path fill="#7C533E" d="M35.582 14.985c.35.427.315 1.035-.08 1.359l-4.917 2.738-3.569 2.926c-.395.323-.998.239-1.348-.188L24.4 20.273l1.428-1.17 3.223-1.892 5.183-2.413c0-.001.998-.24 1.348.187z"/><path fill="#9268CA" d="M26.427 18.438S6.83 27.095 6.319 27.322c-1.19.529-3.154 1.7-3.154 3.678l.351 4.75c0 .138.112.25.25.25h3.323c.05 0 .098-.015.139-.043l19.439-13.059c.069-.046.111-.124.111-.207v-4.025c0-.181-.186-.302-.351-.228z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f645-200d-2640-fe0f.svg b/public/emoji/1f645-200d-2640-fe0f.svg
index bdb511b33f273c8e81a76242d20e84c78589a9ca..2e47b6710fdfcccb74629ded52d04151f6403dd6 100644
--- a/public/emoji/1f645-200d-2640-fe0f.svg
+++ b/public/emoji/1f645-200d-2640-fe0f.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#FFAC33" d="M19 0c-1.721 0-3.343.406-4.793 1.111C13.814 1.043 13.412 1 13 1 9.134 1 6 4.134 6 8v12h.018C6.201 26.467 11.489 31.656 18 31.656S29.799 26.467 29.982 20H30v-9c0-6.075-4.925-11-11-11z"/><path fill="#FFDC5D" d="M14 5s-.003 5.308-5 5.936V17c0 4.971 4.029 9 9 9s9-4.029 9-9v-5.019C15.89 11.605 14 5 14 5z"/><circle fill="#DF1F32" cx="18" cy="22" r="1"/><path fill="#9268CA" d="M27 27H9c-2.209 0-4 1.791-4 4v5h26v-5c0-2.209-1.791-4-4-4z"/><path fill="#F9CA55" d="M2.58 13c-.074 0-1.015-.653-1.557-.541-.693.144-1.139.822-.997 1.517L.58 16.65V19c0 1.104.896 2 2 2h2l-2-8z"/><path fill="#FFDC5D" d="M1.58 8c-.552 0-1 .447-1 1l1 6v5c0 .553.448 1 1 1h2v-2L4 15 2.58 9s-.447-1-1-1z"/><path fill="#9268CA" d="M27 27c4 0 0 9 0 9L4 21v-6l23 12z"/><path fill="#7450A8" d="M19.347 31.408l7.326-4.579-1.938-1.011L9 36h3l5.731-3.582L24 36h3zm2.195-7.255l-4.819-2.515-6.647 3.324 3.056 1.994z"/><path fill="#F9CA55" d="M34.977 12.459c-.541-.112-1.064.142-1.341.586C33.564 13.029 31.42 21 31.42 21h2c1.104 0 2-.896 2-2v-2.35l.554-2.675c.141-.694-.304-1.373-.997-1.516z"/><path fill="#FFDC5D" d="M34.42 8c.552 0 1 .447 1 1l-1 6v5c0 .553-.448 1-1 1h-2v-2l.58-4 1.42-6s.447-1 1-1z"/><path fill="#9268CA" d="M32 15L9 27c-2.209 0-4 1.791-4 4v5h4l9.035-5.846L18 30.13 32 21v-6z"/><path fill="#C1694F" d="M19 19.5h-2c-.276 0-.5-.224-.5-.5s.224-.5.5-.5h2c.276 0 .5.224.5.5s-.224.5-.5.5z"/><path fill="#662113" d="M14 16c-.552 0-1-.448-1-1v-1c0-.552.448-1 1-1s1 .448 1 1v1c0 .552-.448 1-1 1zm8 0c-.553 0-1-.448-1-1v-1c0-.552.447-1 1-1s1 .448 1 1v1c0 .552-.447 1-1 1z"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#FFAC33" d="M19 0c-1.721 0-3.343.406-4.793 1.111C13.814 1.043 13.412 1 13 1 9.134 1 6 4.134 6 8v12h.018C6.201 26.467 11.489 31.656 18 31.656S29.799 26.467 29.982 20H30v-9c0-6.075-4.925-11-11-11z"/><path fill="#FFDC5D" d="M14 5s-.003 5.308-5 5.936V17c0 4.971 4.029 9 9 9s9-4.029 9-9v-5.019C15.889 11.605 14 5 14 5z"/><circle fill="#DF1F32" cx="18" cy="22" r="1"/><path fill="#7450A8" d="M6 28h24v8H6z"/><path fill="#C1694F" d="M19 19.5h-2c-.276 0-.5-.224-.5-.5s.224-.5.5-.5h2c.276 0 .5.224.5.5s-.224.5-.5.5z"/><path fill="#662113" d="M14 16c-.552 0-1-.448-1-1v-1c0-.552.448-1 1-1s1 .448 1 1v1c0 .552-.448 1-1 1zm8 0c-.553 0-1-.448-1-1v-1c0-.552.447-1 1-1s1 .448 1 1v1c0 .552-.447 1-1 1z"/><path fill="#F9CA55" d="M3.195 18.025c.263-.484.776-.74 1.268-.694.034-.064 7.084 2.942 7.084 2.942l-1.268 1.547c-.7.854-1.907 1.023-2.696.376l-1.677-1.375-2.26-1.137c-.586-.297-.788-1.039-.451-1.659z"/><path fill="#FFDC5D" d="M.365 14.985c-.35.427-.315 1.035.08 1.359l4.917 2.738 3.569 2.926c.395.323.998.239 1.348-.188l1.268-1.547-1.428-1.17-3.223-1.893-5.183-2.413c-.001 0-.998-.239-1.348.188z"/><path fill="#9268CA" d="M9.52 18.438s19.597 8.657 20.108 8.884c1.19.529 3.154 1.7 3.154 3.678l-.351 4.75c0 .138-.112.25-.25.25h-3.323c-.05 0-.098-.015-.139-.043L9.279 22.898c-.069-.046-.111-.124-.111-.207v-4.025c.001-.181.186-.302.352-.228z"/><path fill="#7450A8" d="M18.226 22.266l-.779-.324-6.462 2.109 1.482 1.031zm5.203 2.316l1.007.445-5.175 4.594-3.821-.025z"/><path fill="#F9CA55" d="M32.752 18.025c-.263-.484-.776-.74-1.268-.694-.034-.064-7.084 2.942-7.084 2.942l1.268 1.547c.7.854 1.907 1.023 2.696.376l1.677-1.375 2.26-1.137c.586-.297.788-1.039.451-1.659z"/><path fill="#FFDC5D" d="M35.582 14.985c.35.427.315 1.035-.08 1.359l-4.917 2.738-3.569 2.926c-.395.323-.998.239-1.348-.188L24.4 20.273l1.428-1.17 3.223-1.892 5.183-2.413c0-.001.998-.24 1.348.187z"/><path fill="#9268CA" d="M26.427 18.438S6.83 27.095 6.319 27.322c-1.19.529-3.154 1.7-3.154 3.678l.351 4.75c0 .138.112.25.25.25h3.323c.05 0 .098-.015.139-.043l19.439-13.059c.069-.046.111-.124.111-.207v-4.025c0-.181-.186-.302-.351-.228z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f645-200d-2642-fe0f.svg b/public/emoji/1f645-200d-2642-fe0f.svg
index 99f4d97247f9e3e00ccfd4db34b34d30ea487094..ba0fc8e83672c64d2394f314465b34ea322b8fca 100644
--- a/public/emoji/1f645-200d-2642-fe0f.svg
+++ b/public/emoji/1f645-200d-2642-fe0f.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#FFDC5D" d="M28.729 13.715c0-1.548-.769-2.801-1.729-2.852V6.25L9 5.938v4.926c-.96.051-1.729 1.304-1.729 2.852 0 1.548.77 2.801 1.729 2.852V17c0 4.971 4.029 9 9 9s9-4.029 9-9v-.433c.96-.051 1.729-1.304 1.729-2.852z"/><path fill="#FFAC33" d="M18 .823c-7.019 0-10.139 4.684-10.139 8.588 0 3.903 1.343 4.986 1.56 3.903.78-3.903 3.12-5.101 3.12-5.101 4.68 3.904 3.9.781 3.9.781 4.679 4.684 2.34 0 2.34 0 1.56 1.562 6.239 1.562 6.239 1.562s.78 1.198 1.559 2.759c.78 1.562 1.56 0 1.56-3.903 0-3.905-3.9-8.589-10.139-8.589z"/><path fill="#C1694F" d="M14 22h8s-1 2-4 2-4-2-4-2z"/><path fill="#4289C1" d="M27 27H9c-2.209 0-4 1.791-4 4v5h26v-5c0-2.209-1.791-4-4-4z"/><path fill="#F9CA55" d="M2.58 13c-.074 0-1.015-.653-1.557-.541-.693.144-1.139.822-.997 1.517L.58 16.65V19c0 1.104.896 2 2 2h2l-2-8z"/><path fill="#FFDC5D" d="M1.58 8c-.552 0-1 .447-1 1l1 6v5c0 .553.448 1 1 1h2v-2L4 15 2.58 9s-.447-1-1-1z"/><path fill="#4289C1" d="M27 27c4 0 0 9 0 9L4 21v-6l23 12z"/><path fill="#2A6797" d="M19.347 31.408l7.326-4.579-1.938-1.011L9 36h3l5.731-3.582L24 36h3zm2.195-7.255l-4.819-2.515-6.647 3.324 3.056 1.994z"/><path fill="#F9CA55" d="M34.977 12.459c-.541-.112-1.064.142-1.341.586C33.564 13.029 31.42 21 31.42 21h2c1.104 0 2-.896 2-2v-2.35l.554-2.675c.141-.694-.304-1.373-.997-1.516z"/><path fill="#FFDC5D" d="M34.42 8c.552 0 1 .447 1 1l-1 6v5c0 .553-.448 1-1 1h-2v-2l.58-4 1.42-6s.447-1 1-1z"/><path fill="#4289C1" d="M32 15L9 27c-2.209 0-4 1.791-4 4v5h4l9.035-5.846L18 30.13 32 21v-6z"/><path fill="#C1694F" d="M19 19.5h-2c-.276 0-.5-.224-.5-.5s.224-.5.5-.5h2c.276 0 .5.224.5.5s-.224.5-.5.5z"/><path fill="#662113" d="M14 16c-.552 0-1-.448-1-1v-1c0-.552.448-1 1-1s1 .448 1 1v1c0 .552-.448 1-1 1zm8 0c-.552 0-1-.448-1-1v-1c0-.552.448-1 1-1s1 .448 1 1v1c0 .552-.448 1-1 1z"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#FDD54C" d="M28.752 13.715c0-1.548-.769-2.801-1.729-2.852V6.25l-18-.312v4.926c-.96.051-1.729 1.304-1.729 2.852 0 1.548.77 2.801 1.729 2.852V17c0 4.971 4.029 9 9 9s9-4.029 9-9v-.433c.96-.051 1.729-1.304 1.729-2.852z"/><path fill="#FFAC33" d="M18.023.823c-7.019 0-10.139 4.684-10.139 8.588 0 3.903 1.343 4.986 1.56 3.903.78-3.903 3.12-5.101 3.12-5.101 4.68 3.904 3.9.781 3.9.781 4.679 4.684 2.34 0 2.34 0 1.56 1.562 6.239 1.562 6.239 1.562s.78 1.198 1.559 2.759c.78 1.562 1.56 0 1.56-3.903 0-3.905-3.9-8.589-10.139-8.589z"/><path fill="#C1694F" d="M14.023 22h8s-1 2-4 2-4-2-4-2z"/><path fill="#2A6797" d="M6 28h24v8H6z"/><path fill="#C1694F" d="M19.023 19.5h-2c-.276 0-.5-.224-.5-.5s.224-.5.5-.5h2c.276 0 .5.224.5.5s-.224.5-.5.5z"/><path fill="#662113" d="M14.023 16c-.552 0-1-.448-1-1v-1c0-.552.448-1 1-1s1 .448 1 1v1c0 .552-.448 1-1 1zm8 0c-.552 0-1-.448-1-1v-1c0-.552.448-1 1-1s1 .448 1 1v1c0 .552-.448 1-1 1z"/><path fill="#F5BF44" d="M3.195 18.025c.263-.484.776-.74 1.268-.694.034-.064 7.084 2.942 7.084 2.942l-1.268 1.547c-.7.854-1.907 1.023-2.696.376l-1.677-1.375-2.26-1.137c-.586-.297-.788-1.039-.451-1.659z"/><path fill="#FDD54C" d="M.365 14.985c-.35.427-.315 1.035.08 1.359l4.917 2.738 3.569 2.926c.395.323.998.239 1.348-.188l1.268-1.547-1.428-1.17-3.223-1.893-5.183-2.413c-.001 0-.998-.239-1.348.188z"/><path fill="#4289C1" d="M9.52 18.438s19.597 8.657 20.108 8.884c1.19.529 3.154 1.7 3.154 3.678l-.351 4.75c0 .138-.112.25-.25.25h-3.323c-.05 0-.098-.015-.139-.043L9.279 22.898c-.069-.046-.111-.124-.111-.207v-4.025c.001-.181.186-.302.352-.228z"/><path fill="#2A6797" d="M18.226 22.266l-.779-.324-6.462 2.109 1.482 1.031zm5.203 2.316l1.007.445-5.175 4.594-3.821-.025z"/><path fill="#F5BF44" d="M32.752 18.025c-.263-.484-.776-.74-1.268-.694-.034-.064-7.084 2.942-7.084 2.942l1.268 1.547c.7.854 1.907 1.023 2.696.376l1.677-1.375 2.26-1.137c.586-.297.788-1.039.451-1.659z"/><path fill="#FDD54C" d="M35.582 14.985c.35.427.315 1.035-.08 1.359l-4.917 2.738-3.569 2.926c-.395.323-.998.239-1.348-.188L24.4 20.273l1.428-1.17 3.223-1.892 5.183-2.413c0-.001.998-.24 1.348.187z"/><path fill="#4289C1" d="M26.427 18.438S6.83 27.095 6.319 27.322c-1.19.529-3.154 1.7-3.154 3.678l.351 4.75c0 .138.112.25.25.25h3.323c.05 0 .098-.015.139-.043l19.439-13.059c.069-.046.111-.124.111-.207v-4.025c0-.181-.186-.302-.351-.228z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f645.svg b/public/emoji/1f645.svg
index bdb511b33f273c8e81a76242d20e84c78589a9ca..2e47b6710fdfcccb74629ded52d04151f6403dd6 100644
--- a/public/emoji/1f645.svg
+++ b/public/emoji/1f645.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#FFAC33" d="M19 0c-1.721 0-3.343.406-4.793 1.111C13.814 1.043 13.412 1 13 1 9.134 1 6 4.134 6 8v12h.018C6.201 26.467 11.489 31.656 18 31.656S29.799 26.467 29.982 20H30v-9c0-6.075-4.925-11-11-11z"/><path fill="#FFDC5D" d="M14 5s-.003 5.308-5 5.936V17c0 4.971 4.029 9 9 9s9-4.029 9-9v-5.019C15.89 11.605 14 5 14 5z"/><circle fill="#DF1F32" cx="18" cy="22" r="1"/><path fill="#9268CA" d="M27 27H9c-2.209 0-4 1.791-4 4v5h26v-5c0-2.209-1.791-4-4-4z"/><path fill="#F9CA55" d="M2.58 13c-.074 0-1.015-.653-1.557-.541-.693.144-1.139.822-.997 1.517L.58 16.65V19c0 1.104.896 2 2 2h2l-2-8z"/><path fill="#FFDC5D" d="M1.58 8c-.552 0-1 .447-1 1l1 6v5c0 .553.448 1 1 1h2v-2L4 15 2.58 9s-.447-1-1-1z"/><path fill="#9268CA" d="M27 27c4 0 0 9 0 9L4 21v-6l23 12z"/><path fill="#7450A8" d="M19.347 31.408l7.326-4.579-1.938-1.011L9 36h3l5.731-3.582L24 36h3zm2.195-7.255l-4.819-2.515-6.647 3.324 3.056 1.994z"/><path fill="#F9CA55" d="M34.977 12.459c-.541-.112-1.064.142-1.341.586C33.564 13.029 31.42 21 31.42 21h2c1.104 0 2-.896 2-2v-2.35l.554-2.675c.141-.694-.304-1.373-.997-1.516z"/><path fill="#FFDC5D" d="M34.42 8c.552 0 1 .447 1 1l-1 6v5c0 .553-.448 1-1 1h-2v-2l.58-4 1.42-6s.447-1 1-1z"/><path fill="#9268CA" d="M32 15L9 27c-2.209 0-4 1.791-4 4v5h4l9.035-5.846L18 30.13 32 21v-6z"/><path fill="#C1694F" d="M19 19.5h-2c-.276 0-.5-.224-.5-.5s.224-.5.5-.5h2c.276 0 .5.224.5.5s-.224.5-.5.5z"/><path fill="#662113" d="M14 16c-.552 0-1-.448-1-1v-1c0-.552.448-1 1-1s1 .448 1 1v1c0 .552-.448 1-1 1zm8 0c-.553 0-1-.448-1-1v-1c0-.552.447-1 1-1s1 .448 1 1v1c0 .552-.447 1-1 1z"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#FFAC33" d="M19 0c-1.721 0-3.343.406-4.793 1.111C13.814 1.043 13.412 1 13 1 9.134 1 6 4.134 6 8v12h.018C6.201 26.467 11.489 31.656 18 31.656S29.799 26.467 29.982 20H30v-9c0-6.075-4.925-11-11-11z"/><path fill="#FFDC5D" d="M14 5s-.003 5.308-5 5.936V17c0 4.971 4.029 9 9 9s9-4.029 9-9v-5.019C15.889 11.605 14 5 14 5z"/><circle fill="#DF1F32" cx="18" cy="22" r="1"/><path fill="#7450A8" d="M6 28h24v8H6z"/><path fill="#C1694F" d="M19 19.5h-2c-.276 0-.5-.224-.5-.5s.224-.5.5-.5h2c.276 0 .5.224.5.5s-.224.5-.5.5z"/><path fill="#662113" d="M14 16c-.552 0-1-.448-1-1v-1c0-.552.448-1 1-1s1 .448 1 1v1c0 .552-.448 1-1 1zm8 0c-.553 0-1-.448-1-1v-1c0-.552.447-1 1-1s1 .448 1 1v1c0 .552-.447 1-1 1z"/><path fill="#F9CA55" d="M3.195 18.025c.263-.484.776-.74 1.268-.694.034-.064 7.084 2.942 7.084 2.942l-1.268 1.547c-.7.854-1.907 1.023-2.696.376l-1.677-1.375-2.26-1.137c-.586-.297-.788-1.039-.451-1.659z"/><path fill="#FFDC5D" d="M.365 14.985c-.35.427-.315 1.035.08 1.359l4.917 2.738 3.569 2.926c.395.323.998.239 1.348-.188l1.268-1.547-1.428-1.17-3.223-1.893-5.183-2.413c-.001 0-.998-.239-1.348.188z"/><path fill="#9268CA" d="M9.52 18.438s19.597 8.657 20.108 8.884c1.19.529 3.154 1.7 3.154 3.678l-.351 4.75c0 .138-.112.25-.25.25h-3.323c-.05 0-.098-.015-.139-.043L9.279 22.898c-.069-.046-.111-.124-.111-.207v-4.025c.001-.181.186-.302.352-.228z"/><path fill="#7450A8" d="M18.226 22.266l-.779-.324-6.462 2.109 1.482 1.031zm5.203 2.316l1.007.445-5.175 4.594-3.821-.025z"/><path fill="#F9CA55" d="M32.752 18.025c-.263-.484-.776-.74-1.268-.694-.034-.064-7.084 2.942-7.084 2.942l1.268 1.547c.7.854 1.907 1.023 2.696.376l1.677-1.375 2.26-1.137c.586-.297.788-1.039.451-1.659z"/><path fill="#FFDC5D" d="M35.582 14.985c.35.427.315 1.035-.08 1.359l-4.917 2.738-3.569 2.926c-.395.323-.998.239-1.348-.188L24.4 20.273l1.428-1.17 3.223-1.892 5.183-2.413c0-.001.998-.24 1.348.187z"/><path fill="#9268CA" d="M26.427 18.438S6.83 27.095 6.319 27.322c-1.19.529-3.154 1.7-3.154 3.678l.351 4.75c0 .138.112.25.25.25h3.323c.05 0 .098-.015.139-.043l19.439-13.059c.069-.046.111-.124.111-.207v-4.025c0-.181-.186-.302-.351-.228z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f6a3-1f3fb-200d-2640-fe0f.svg b/public/emoji/1f6a3-1f3fb-200d-2640-fe0f.svg
index de89bf2ef0c01e4105e935e741083386be199b0f..e5c19c94637c2a685eb9e0916d5e5e93f543383b 100644
--- a/public/emoji/1f6a3-1f3fb-200d-2640-fe0f.svg
+++ b/public/emoji/1f6a3-1f3fb-200d-2640-fe0f.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#F7DECE" d="M16.631 10.798c.15-1.054 1.129-1.397.867-2.313-.627-2.193 2.545-.565 2.545-.565.603.301-1.152 2.123-1.152 2.123s-.604-.301-.753.754c-.149 1.055-1.656 1.057-1.507.001z"/><path d="M15.356 15.875l3.083 1.158-1.156 3.084s-4.55-1.004-5.259-2.113c-.709-1.111.602-2.729.602-2.729l2.73.6z"/><path fill="#C1694F" d="M2 17h32s0 2-1 7c-.86 4.302-21 1-24.601 0C5.316 23.144 2 17 2 17z"/><path fill="#F4900C" d="M35 18c0 .553-.447 1-1 1H2c-.552 0-1-.447-1-1 0-.553.448-1 1-1h32c.553 0 1 .447 1 1z"/><path fill="#55ACEE" d="M0 24h36v12H0z"/><path fill="#F7DECE" d="M18.615 5.87c1.205.031 2.156 1.033 2.125 2.238-.031 1.205-1.033 2.156-2.238 2.125-1.205-.031-2.156-1.033-2.125-2.237.031-1.206 1.033-2.157 2.238-2.126z"/><path fill="#292F33" d="M14.115 8.48c.568-.028 1.117-.092 2.056-1.302.624-.804 1.207-1.32 2.649-1.307 1.531.014 2.814 1.317 1.831 1.969-.429.284-.788.149-1.476.342-1.081.303-1.245 1.453-2.221 1.711-1.912.505-3.407-1.386-2.839-1.413z"/><path fill="#9266CC" d="M20.233 12.407s-.563-.683-.678-.856c-.482-.732-.833-1.126-1.568-1.288-1.287-.284-2.912.308-4.222 1.927-.829 1.024-.947 2.174-2.259 3.794 0 0 4.199.447 4.754.092.556-.354.758-1.265.959-2.174.2-.91.671-1.255 1.04-.71.24.354.728.624.728.624l1.246-1.409z"/><path fill="#F7DECE" d="M18.988 13.816l1.245-1.41c.942.928 2.453 1.492 2.959 1.166.556-.353 1.916.904.806 1.613-1.11.71-1.417-.007-2.31-.264-1.032-.296-1.61-.546-2.7-1.105z"/><path fill="#FFAC33" d="M12 27c-.256 0-.512-.098-.707-.293-.391-.391-.391-1.023 0-1.414l11-11c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-11.001 11c-.195.195-.451.293-.706.293z"/><path fill="#FFCC4D" d="M11 29c-.512 0-1.024-.195-1.414-.586-.781-.781-.781-2.047 0-2.828l3-3c.78-.781 2.048-.781 2.828 0 .781.781.781 2.047 0 2.828l-3 3c-.391.391-.903.586-1.414.586z"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path d="M15.356 15.875l3.083 1.158-1.156 3.084s-4.55-1.004-5.259-2.113c-.709-1.111.602-2.729.602-2.729l2.73.6z"/><path fill="#C1694F" d="M2 17h32s0 2-1 7c-.86 4.302-21 1-24.601 0C5.316 23.144 2 17 2 17z"/><path fill="#F4900C" d="M35 18c0 .553-.447 1-1 1H2c-.552 0-1-.447-1-1 0-.553.448-1 1-1h32c.553 0 1 .447 1 1z"/><path fill="#55ACEE" d="M0 23.933V34c0 1.105.895 2 2 2h32c1.105 0 2-.895 2-2v-9.637c0-.637-.585-1.097-1.21-.976-11.333 2.19-22.667-2.809-34-.439-.461.096-.79.514-.79.985z"/><path fill="#1C6399" d="M24.646 13.533c-.171-.171-.448-.171-.619 0l-8.031 8.031c-2.225 2.224-2.691.599-5.033 2.941l-3.231 3.231c-.2.199-.199.523 0 .723l.994.994.994.994c.2.2.523.2.722 0l3.231-3.231c2.342-2.342.717-2.809 2.941-5.033l8.031-8.031c.172-.171.172-.448.001-.619z"/><path fill="#F7DECE" d="M17.028 9.229c-.176-.21-.314-.46-.388-.773-.265-1.118.345-2.22 1.362-2.461 1.017-.241 2.447.464 2.46 1.613.013 1.141-.556 2.847-1.522 2.6-.255-.065-.51-.138-.754-.228-.098.125-.153.592-.096.987.147 1.008-1.245 1.167-1.391.157-.116-.798.365-1.327.329-1.895z"/><path fill="#292F33" d="M13.809 8.258c.568-.028 1.117-.092 2.056-1.302.624-.804 1.207-1.32 2.649-1.307 1.531.014 2.814 1.317 1.831 1.969-.429.284-.788.149-1.476.342-1.081.303-1.245 1.453-2.221 1.711-1.912.506-3.406-1.385-2.839-1.413z"/><path fill="#F7DECE" d="M24.039 13.96c-.331-.341-.519.068-.754.058-.139-.006-2.338-.872-2.623-1.143-.285-.271-1.105-1.326-1.929-1.875-.824-.549-1.384-.171-1.597.237-.282.541-.146 1.165.412 1.517.397.25 1.755 1.106 2.535 1.54.561.311 2.569.67 2.744.741.236.095.555.618.787.57.232-.048.479-.425.719-.809.239-.385.037-.495-.294-.836z"/><path fill="#9266CC" d="M20.25 12.366l-.738-.759c-.482-.732-.789-1.183-1.524-1.344-1.287-.284-2.912.308-4.222 1.927-.829 1.024-.947 2.174-2.259 3.794 0 0 4.444.604 4.552.092.137-.653.753-1.253 1.055-2.174.78-.345.86-.869.88-.855.447.326 1.073.678 1.073.678l1.183-1.359z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f6a3-1f3fb-200d-2642-fe0f.svg b/public/emoji/1f6a3-1f3fb-200d-2642-fe0f.svg
index 85a6921456e2ad52bafe30dfc5c9b52cea2af9d8..a9651dca4bc2459ddd608ef73e3463dbba5b5b86 100644
--- a/public/emoji/1f6a3-1f3fb-200d-2642-fe0f.svg
+++ b/public/emoji/1f6a3-1f3fb-200d-2642-fe0f.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#F7DECE" d="M18.988 13.816l1.245-1.41c.942.928 2.453 1.492 2.959 1.166.556-.353 1.916.904.806 1.613-1.11.71-1.417-.007-2.31-.264-1.032-.296-1.61-.546-2.7-1.105zm.979-6.691c.91.201-.046.961.236 2.329.312 1.516-2.047 0-1.826 2.171.149 1.464-1.865 1.973-2.019.507-.154-1.464 1.045-2.254.385-3.394-1.578-2.731 3.224-1.613 3.224-1.613z"/><path d="M15.356 15.875l3.083 1.158-1.156 3.084s-4.55-1.004-5.259-2.113c-.709-1.111.602-2.729.602-2.729l2.73.6z"/><path fill="#292F33" d="M19.967 7.55c.808.668.57-.862 0-1.335-.806-.667-2.418-.668-3.224 0-.806.667-.806 2.003 0 2.67.57.472.806 1.335.806 0s.807 0 .807-.667c-.001-.668 1.611-.668 1.611-.668z"/><path fill="#C1694F" d="M2 17h32s0 2-1 7c-.86 4.302-21 1-24.601 0C5.316 23.144 2 17 2 17z"/><path fill="#F4900C" d="M35 18c0 .553-.447 1-1 1H2c-.552 0-1-.447-1-1 0-.553.448-1 1-1h32c.553 0 1 .447 1 1z"/><path fill="#55ACEE" d="M0 24h36v12H0z"/><path fill="#FFAC33" d="M12 27c-.256 0-.512-.098-.707-.293-.391-.391-.391-1.023 0-1.414l11-11c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-11.001 11c-.195.195-.451.293-.706.293z"/><path fill="#FFCC4D" d="M11 29c-.512 0-1.024-.195-1.414-.586-.781-.781-.781-2.047 0-2.828l3-3c.78-.781 2.048-.781 2.828 0 .781.781.781 2.047 0 2.828l-3 3c-.391.391-.903.586-1.414.586z"/><path fill="#77B255" d="M20.233 12.407s-.563-.683-.678-.856c-.482-.732-.833-1.126-1.568-1.288-1.287-.284-2.912.308-4.222 1.927-.829 1.024-.947 2.174-2.259 3.794 0 0 4.199.447 4.754.092.556-.354.758-1.265.959-2.174.2-.91.671-1.255 1.04-.71.24.354.728.624.728.624l1.246-1.409z"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path d="M15.356 15.875l3.083 1.158-1.156 3.084s-4.55-1.004-5.259-2.113c-.709-1.111.602-2.729.602-2.729l2.73.6z"/><path fill="#C1694F" d="M2 17h32s0 2-1 7c-.86 4.302-21 1-24.601 0C5.316 23.144 2 17 2 17z"/><path fill="#F4900C" d="M35 18c0 .553-.447 1-1 1H2c-.552 0-1-.447-1-1 0-.553.448-1 1-1h32c.553 0 1 .447 1 1z"/><path fill="#55ACEE" d="M0 23.933V34c0 1.105.895 2 2 2h32c1.105 0 2-.895 2-2v-9.637c0-.637-.585-1.097-1.21-.976-11.333 2.19-22.667-2.809-34-.439-.461.096-.79.514-.79.985z"/><path fill="#1C6399" d="M24.646 13.533c-.171-.171-.448-.171-.619 0l-8.031 8.031c-2.225 2.224-2.691.599-5.033 2.941l-3.231 3.231c-.2.199-.199.523 0 .723l.994.994.994.994c.2.2.523.2.722 0l3.231-3.231c2.342-2.342.717-2.809 2.941-5.033l8.031-8.031c.172-.171.172-.448.001-.619z"/><path fill="#F7DECE" d="M17.028 9.229c-.176-.21-.314-.46-.388-.773-.265-1.118.345-2.22 1.362-2.461 1.017-.241 2.447.464 2.46 1.613.013 1.141-.556 2.847-1.522 2.6-.255-.065-.51-.138-.754-.228-.098.125-.153.592-.096.987.147 1.008-1.245 1.167-1.391.157-.116-.798.365-1.327.329-1.895z"/><path fill="#292F33" d="M19.947 6.183c-1.426-.8-2.352-.616-3.1.042-.743.653-.726 1.824-.477 2.559.249.735.464.684.464.684s1.04.186 1.072-.772c.01-.303-.333-.45.011-.91.222-.296.752-.178.773.233.022.411.228.324.228.324l.567-1.117s.531-.055.85.42c.202.298.857-.764-.388-1.463z"/><path fill="#F7DECE" d="M24.229 14.008l-.118-.118c-.271-.28-.494-.141-.642-.049-.064.04-.126.078-.172.078h-.004c-.178-.025-2.298-.865-2.562-1.116-.072-.069-.182-.192-.321-.348-.399-.449-1.004-1.126-1.621-1.538-.484-.323-.858-.319-1.086-.26-.277.071-.515.266-.655.534-.315.605-.131 1.283.447 1.647 1.135.716 2.013 1.25 2.539 1.542.41.227 1.505.465 2.229.624.248.054.482.105.526.123.079.032.188.141.292.247.163.165.331.333.502.333.017 0 .033-.001.051-.005.267-.055.513-.419.783-.854.252-.403.067-.586-.188-.84z"/><path fill="#77B255" d="M19.556 11.55c-.482-.732-.833-1.126-1.568-1.288-1.287-.284-2.912.308-4.222 1.927-.829 1.024-.947 2.174-2.259 3.794 0 0 4.199.447 4.754.092.556-.354.758-1.265.959-2.174.106-.482.288-.806.491-.922.426.358 1.277.837 1.277.837l1.306-1.507c0 .001-.525-.587-.738-.759z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f6a3-1f3fb.svg b/public/emoji/1f6a3-1f3fb.svg
index 85a6921456e2ad52bafe30dfc5c9b52cea2af9d8..a9651dca4bc2459ddd608ef73e3463dbba5b5b86 100644
--- a/public/emoji/1f6a3-1f3fb.svg
+++ b/public/emoji/1f6a3-1f3fb.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#F7DECE" d="M18.988 13.816l1.245-1.41c.942.928 2.453 1.492 2.959 1.166.556-.353 1.916.904.806 1.613-1.11.71-1.417-.007-2.31-.264-1.032-.296-1.61-.546-2.7-1.105zm.979-6.691c.91.201-.046.961.236 2.329.312 1.516-2.047 0-1.826 2.171.149 1.464-1.865 1.973-2.019.507-.154-1.464 1.045-2.254.385-3.394-1.578-2.731 3.224-1.613 3.224-1.613z"/><path d="M15.356 15.875l3.083 1.158-1.156 3.084s-4.55-1.004-5.259-2.113c-.709-1.111.602-2.729.602-2.729l2.73.6z"/><path fill="#292F33" d="M19.967 7.55c.808.668.57-.862 0-1.335-.806-.667-2.418-.668-3.224 0-.806.667-.806 2.003 0 2.67.57.472.806 1.335.806 0s.807 0 .807-.667c-.001-.668 1.611-.668 1.611-.668z"/><path fill="#C1694F" d="M2 17h32s0 2-1 7c-.86 4.302-21 1-24.601 0C5.316 23.144 2 17 2 17z"/><path fill="#F4900C" d="M35 18c0 .553-.447 1-1 1H2c-.552 0-1-.447-1-1 0-.553.448-1 1-1h32c.553 0 1 .447 1 1z"/><path fill="#55ACEE" d="M0 24h36v12H0z"/><path fill="#FFAC33" d="M12 27c-.256 0-.512-.098-.707-.293-.391-.391-.391-1.023 0-1.414l11-11c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-11.001 11c-.195.195-.451.293-.706.293z"/><path fill="#FFCC4D" d="M11 29c-.512 0-1.024-.195-1.414-.586-.781-.781-.781-2.047 0-2.828l3-3c.78-.781 2.048-.781 2.828 0 .781.781.781 2.047 0 2.828l-3 3c-.391.391-.903.586-1.414.586z"/><path fill="#77B255" d="M20.233 12.407s-.563-.683-.678-.856c-.482-.732-.833-1.126-1.568-1.288-1.287-.284-2.912.308-4.222 1.927-.829 1.024-.947 2.174-2.259 3.794 0 0 4.199.447 4.754.092.556-.354.758-1.265.959-2.174.2-.91.671-1.255 1.04-.71.24.354.728.624.728.624l1.246-1.409z"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path d="M15.356 15.875l3.083 1.158-1.156 3.084s-4.55-1.004-5.259-2.113c-.709-1.111.602-2.729.602-2.729l2.73.6z"/><path fill="#C1694F" d="M2 17h32s0 2-1 7c-.86 4.302-21 1-24.601 0C5.316 23.144 2 17 2 17z"/><path fill="#F4900C" d="M35 18c0 .553-.447 1-1 1H2c-.552 0-1-.447-1-1 0-.553.448-1 1-1h32c.553 0 1 .447 1 1z"/><path fill="#55ACEE" d="M0 23.933V34c0 1.105.895 2 2 2h32c1.105 0 2-.895 2-2v-9.637c0-.637-.585-1.097-1.21-.976-11.333 2.19-22.667-2.809-34-.439-.461.096-.79.514-.79.985z"/><path fill="#1C6399" d="M24.646 13.533c-.171-.171-.448-.171-.619 0l-8.031 8.031c-2.225 2.224-2.691.599-5.033 2.941l-3.231 3.231c-.2.199-.199.523 0 .723l.994.994.994.994c.2.2.523.2.722 0l3.231-3.231c2.342-2.342.717-2.809 2.941-5.033l8.031-8.031c.172-.171.172-.448.001-.619z"/><path fill="#F7DECE" d="M17.028 9.229c-.176-.21-.314-.46-.388-.773-.265-1.118.345-2.22 1.362-2.461 1.017-.241 2.447.464 2.46 1.613.013 1.141-.556 2.847-1.522 2.6-.255-.065-.51-.138-.754-.228-.098.125-.153.592-.096.987.147 1.008-1.245 1.167-1.391.157-.116-.798.365-1.327.329-1.895z"/><path fill="#292F33" d="M19.947 6.183c-1.426-.8-2.352-.616-3.1.042-.743.653-.726 1.824-.477 2.559.249.735.464.684.464.684s1.04.186 1.072-.772c.01-.303-.333-.45.011-.91.222-.296.752-.178.773.233.022.411.228.324.228.324l.567-1.117s.531-.055.85.42c.202.298.857-.764-.388-1.463z"/><path fill="#F7DECE" d="M24.229 14.008l-.118-.118c-.271-.28-.494-.141-.642-.049-.064.04-.126.078-.172.078h-.004c-.178-.025-2.298-.865-2.562-1.116-.072-.069-.182-.192-.321-.348-.399-.449-1.004-1.126-1.621-1.538-.484-.323-.858-.319-1.086-.26-.277.071-.515.266-.655.534-.315.605-.131 1.283.447 1.647 1.135.716 2.013 1.25 2.539 1.542.41.227 1.505.465 2.229.624.248.054.482.105.526.123.079.032.188.141.292.247.163.165.331.333.502.333.017 0 .033-.001.051-.005.267-.055.513-.419.783-.854.252-.403.067-.586-.188-.84z"/><path fill="#77B255" d="M19.556 11.55c-.482-.732-.833-1.126-1.568-1.288-1.287-.284-2.912.308-4.222 1.927-.829 1.024-.947 2.174-2.259 3.794 0 0 4.199.447 4.754.092.556-.354.758-1.265.959-2.174.106-.482.288-.806.491-.922.426.358 1.277.837 1.277.837l1.306-1.507c0 .001-.525-.587-.738-.759z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f6a3-1f3fc-200d-2640-fe0f.svg b/public/emoji/1f6a3-1f3fc-200d-2640-fe0f.svg
index 82a0128c9f8d5c82b57140bb3c9072a49df70212..a0c9e1cef06f220054f4d43b13c3436211af37aa 100644
--- a/public/emoji/1f6a3-1f3fc-200d-2640-fe0f.svg
+++ b/public/emoji/1f6a3-1f3fc-200d-2640-fe0f.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#F3D2A2" d="M18.988 13.816l1.245-1.41c.942.928 2.453 1.492 2.959 1.166.556-.353 1.916.904.806 1.613-1.11.71-1.417-.007-2.31-.264-1.032-.296-1.61-.546-2.7-1.105zm-2.357-3.018c.15-1.054 1.129-1.397.867-2.313-.627-2.193 2.545-.565 2.545-.565.603.301-1.152 2.123-1.152 2.123s-.604-.301-.753.754c-.149 1.055-1.656 1.057-1.507.001z"/><path d="M15.356 15.875l3.083 1.158-1.156 3.084s-4.55-1.004-5.259-2.113c-.709-1.111.602-2.729.602-2.729l2.73.6z"/><path fill="#C1694F" d="M2 17h32s0 2-1 7c-.86 4.302-21 1-24.601 0C5.316 23.144 2 17 2 17z"/><path fill="#F4900C" d="M35 18c0 .553-.447 1-1 1H2c-.552 0-1-.447-1-1 0-.553.448-1 1-1h32c.553 0 1 .447 1 1z"/><path fill="#55ACEE" d="M0 24h36v12H0z"/><path fill="#FFAC33" d="M12 27c-.256 0-.512-.098-.707-.293-.391-.391-.391-1.023 0-1.414l11-11c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-11.001 11c-.195.195-.451.293-.706.293z"/><path fill="#FFCC4D" d="M11 29c-.512 0-1.024-.195-1.414-.586-.781-.781-.781-2.047 0-2.828l3-3c.78-.781 2.048-.781 2.828 0 .781.781.781 2.047 0 2.828l-3 3c-.391.391-.903.586-1.414.586z"/><path fill="#F3D2A2" d="M18.615 5.87c1.205.031 2.156 1.033 2.125 2.238-.031 1.205-1.033 2.156-2.238 2.125-1.205-.031-2.156-1.033-2.125-2.237.031-1.206 1.033-2.157 2.238-2.126z"/><path fill="#FFE51E" d="M14.115 8.48c.568-.028 1.117-.092 2.056-1.302.624-.804 1.207-1.32 2.649-1.307 1.531.014 2.814 1.317 1.831 1.969-.429.284-.788.149-1.476.342-1.081.303-1.245 1.453-2.221 1.711-1.912.505-3.407-1.386-2.839-1.413z"/><path fill="#9266CC" d="M20.233 12.407s-.563-.683-.678-.856c-.482-.732-.833-1.126-1.568-1.288-1.287-.284-2.912.308-4.222 1.927-.829 1.024-.947 2.174-2.259 3.794 0 0 4.199.447 4.754.092.556-.354.758-1.265.959-2.174.2-.91.671-1.255 1.04-.71.24.354.728.624.728.624l1.246-1.409z"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path d="M15.356 15.875l3.083 1.158-1.156 3.084s-4.55-1.004-5.259-2.113c-.709-1.111.602-2.729.602-2.729l2.73.6z"/><path fill="#C1694F" d="M2 17h32s0 2-1 7c-.86 4.302-21 1-24.601 0C5.316 23.144 2 17 2 17z"/><path fill="#F4900C" d="M35 18c0 .553-.447 1-1 1H2c-.552 0-1-.447-1-1 0-.553.448-1 1-1h32c.553 0 1 .447 1 1z"/><path fill="#55ACEE" d="M0 23.933V34c0 1.105.895 2 2 2h32c1.105 0 2-.895 2-2v-9.637c0-.637-.585-1.097-1.21-.976-11.333 2.19-22.667-2.809-34-.439-.461.096-.79.514-.79.985z"/><path fill="#1C6399" d="M24.646 13.533c-.171-.171-.448-.171-.619 0l-8.031 8.031c-2.225 2.224-2.691.599-5.033 2.941l-3.231 3.231c-.2.199-.199.523 0 .723l.994.994.994.994c.2.2.523.2.722 0l3.231-3.231c2.342-2.342.717-2.809 2.941-5.033l8.031-8.031c.172-.171.172-.448.001-.619z"/><path fill="#F3D2A2" d="M17.028 9.229c-.176-.21-.314-.46-.388-.773-.265-1.118.345-2.22 1.362-2.461 1.017-.241 2.447.464 2.46 1.613.013 1.141-.556 2.847-1.522 2.6-.255-.065-.51-.138-.754-.228-.098.125-.153.592-.096.987.147 1.008-1.245 1.167-1.391.157-.116-.798.365-1.327.329-1.895z"/><path fill="#FFE51E" d="M13.809 8.258c.568-.028 1.117-.092 2.056-1.302.624-.804 1.207-1.32 2.649-1.307 1.531.014 2.814 1.317 1.831 1.969-.429.284-.788.149-1.476.342-1.081.303-1.245 1.453-2.221 1.711-1.912.506-3.406-1.385-2.839-1.413z"/><path fill="#F3D2A2" d="M24.039 13.96c-.331-.341-.519.068-.754.058-.139-.006-2.338-.872-2.623-1.143-.285-.271-1.105-1.326-1.929-1.875-.824-.549-1.384-.171-1.597.237-.282.541-.146 1.165.412 1.517.397.25 1.755 1.106 2.535 1.54.561.311 2.569.67 2.744.741.236.095.555.618.787.57.232-.048.479-.425.719-.809.239-.385.037-.495-.294-.836z"/><path fill="#9266CC" d="M20.25 12.366l-.738-.759c-.482-.732-.789-1.183-1.524-1.344-1.287-.284-2.912.308-4.222 1.927-.829 1.024-.947 2.174-2.259 3.794 0 0 4.444.604 4.552.092.137-.653.753-1.253 1.055-2.174.78-.345.86-.869.88-.855.447.326 1.073.678 1.073.678l1.183-1.359z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f6a3-1f3fc-200d-2642-fe0f.svg b/public/emoji/1f6a3-1f3fc-200d-2642-fe0f.svg
index 1207116a1f5b692b193865170a1dc0edf4776370..d5d8a1b1ae9a86fda2b598f4b6363fe1d1578566 100644
--- a/public/emoji/1f6a3-1f3fc-200d-2642-fe0f.svg
+++ b/public/emoji/1f6a3-1f3fc-200d-2642-fe0f.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#F3D2A2" d="M18.988 13.816l1.245-1.41c.942.928 2.453 1.492 2.959 1.166.556-.353 1.916.904.806 1.613-1.11.71-1.417-.007-2.31-.264-1.032-.296-1.61-.546-2.7-1.105z"/><path d="M15.356 15.875l3.083 1.158-1.156 3.084s-4.55-1.004-5.259-2.113c-.709-1.111.602-2.729.602-2.729l2.73.6z"/><path fill="#C1694F" d="M2 17h32s0 2-1 7c-.86 4.302-21 1-24.601 0C5.316 23.144 2 17 2 17z"/><path fill="#F4900C" d="M35 18c0 .553-.447 1-1 1H2c-.552 0-1-.447-1-1 0-.553.448-1 1-1h32c.553 0 1 .447 1 1z"/><path fill="#55ACEE" d="M0 24h36v12H0z"/><path fill="#FFAC33" d="M12 27c-.256 0-.512-.098-.707-.293-.391-.391-.391-1.023 0-1.414l11-11c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-11.001 11c-.195.195-.451.293-.706.293z"/><path fill="#FFCC4D" d="M11 29c-.512 0-1.024-.195-1.414-.586-.781-.781-.781-2.047 0-2.828l3-3c.78-.781 2.048-.781 2.828 0 .781.781.781 2.047 0 2.828l-3 3c-.391.391-.903.586-1.414.586z"/><path fill="#F3D2A2" d="M19.967 7.125c.91.201-.046.961.236 2.329.312 1.516-2.047 0-1.826 2.171.149 1.464-1.865 1.973-2.019.507-.154-1.464 1.045-2.254.385-3.394-1.578-2.731 3.224-1.613 3.224-1.613z"/><path fill="#77B255" d="M20.233 12.407s-.563-.683-.678-.856c-.482-.732-.833-1.126-1.568-1.288-1.287-.284-2.912.308-4.222 1.927-.829 1.024-.947 2.174-2.259 3.794 0 0 4.199.447 4.754.092.556-.354.758-1.265.959-2.174.2-.91.671-1.255 1.04-.71.24.354.728.624.728.624l1.246-1.409z"/><path fill="#FFE51E" d="M19.967 7.55c.808.668.57-.862 0-1.335-.806-.667-2.418-.668-3.224 0-.806.667-.806 2.003 0 2.67.57.472.806 1.335.806 0s.807 0 .807-.667c-.001-.668 1.611-.668 1.611-.668z"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path d="M15.356 15.875l3.083 1.158-1.156 3.084s-4.55-1.004-5.259-2.113c-.709-1.111.602-2.729.602-2.729l2.73.6z"/><path fill="#C1694F" d="M2 17h32s0 2-1 7c-.86 4.302-21 1-24.601 0C5.316 23.144 2 17 2 17z"/><path fill="#F4900C" d="M35 18c0 .553-.447 1-1 1H2c-.552 0-1-.447-1-1 0-.553.448-1 1-1h32c.553 0 1 .447 1 1z"/><path fill="#55ACEE" d="M0 23.933V34c0 1.105.895 2 2 2h32c1.105 0 2-.895 2-2v-9.637c0-.637-.585-1.097-1.21-.976-11.333 2.19-22.667-2.809-34-.439-.461.096-.79.514-.79.985z"/><path fill="#1C6399" d="M24.646 13.533c-.171-.171-.448-.171-.619 0l-8.031 8.031c-2.225 2.224-2.691.599-5.033 2.941l-3.231 3.231c-.2.199-.199.523 0 .723l.994.994.994.994c.2.2.523.2.722 0l3.231-3.231c2.342-2.342.717-2.809 2.941-5.033l8.031-8.031c.172-.171.172-.448.001-.619z"/><path fill="#F3D2A2" d="M17.028 9.229c-.176-.21-.314-.46-.388-.773-.265-1.118.345-2.22 1.362-2.461 1.017-.241 2.447.464 2.46 1.613.013 1.141-.556 2.847-1.522 2.6-.255-.065-.51-.138-.754-.228-.098.125-.153.592-.096.987.147 1.008-1.245 1.167-1.391.157-.116-.798.365-1.327.329-1.895z"/><path fill="#FFE51E" d="M19.947 6.183c-1.426-.8-2.352-.616-3.1.042-.743.653-.726 1.824-.477 2.559.249.735.464.684.464.684s1.04.186 1.072-.772c.01-.303-.333-.45.011-.91.222-.296.752-.178.773.233.022.411.228.324.228.324l.567-1.117s.531-.055.85.42c.202.298.857-.764-.388-1.463z"/><path fill="#F3D2A2" d="M24.229 14.008l-.118-.118c-.271-.28-.494-.141-.642-.049-.064.04-.126.078-.172.078h-.004c-.178-.025-2.298-.865-2.562-1.116-.072-.069-.182-.192-.321-.348-.399-.449-1.004-1.126-1.621-1.538-.484-.323-.858-.319-1.086-.26-.277.071-.515.266-.655.534-.315.605-.131 1.283.447 1.647 1.135.716 2.013 1.25 2.539 1.542.41.227 1.505.465 2.229.624.248.054.482.105.526.123.079.032.188.141.292.247.163.165.331.333.502.333.017 0 .033-.001.051-.005.267-.055.513-.419.783-.854.252-.403.067-.586-.188-.84z"/><path fill="#77B255" d="M19.556 11.55c-.482-.732-.833-1.126-1.568-1.288-1.287-.284-2.912.308-4.222 1.927-.829 1.024-.947 2.174-2.259 3.794 0 0 4.199.447 4.754.092.556-.354.758-1.265.959-2.174.106-.482.288-.806.491-.922.426.358 1.277.837 1.277.837l1.306-1.507c0 .001-.525-.587-.738-.759z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f6a3-1f3fc.svg b/public/emoji/1f6a3-1f3fc.svg
index 1207116a1f5b692b193865170a1dc0edf4776370..d5d8a1b1ae9a86fda2b598f4b6363fe1d1578566 100644
--- a/public/emoji/1f6a3-1f3fc.svg
+++ b/public/emoji/1f6a3-1f3fc.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#F3D2A2" d="M18.988 13.816l1.245-1.41c.942.928 2.453 1.492 2.959 1.166.556-.353 1.916.904.806 1.613-1.11.71-1.417-.007-2.31-.264-1.032-.296-1.61-.546-2.7-1.105z"/><path d="M15.356 15.875l3.083 1.158-1.156 3.084s-4.55-1.004-5.259-2.113c-.709-1.111.602-2.729.602-2.729l2.73.6z"/><path fill="#C1694F" d="M2 17h32s0 2-1 7c-.86 4.302-21 1-24.601 0C5.316 23.144 2 17 2 17z"/><path fill="#F4900C" d="M35 18c0 .553-.447 1-1 1H2c-.552 0-1-.447-1-1 0-.553.448-1 1-1h32c.553 0 1 .447 1 1z"/><path fill="#55ACEE" d="M0 24h36v12H0z"/><path fill="#FFAC33" d="M12 27c-.256 0-.512-.098-.707-.293-.391-.391-.391-1.023 0-1.414l11-11c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-11.001 11c-.195.195-.451.293-.706.293z"/><path fill="#FFCC4D" d="M11 29c-.512 0-1.024-.195-1.414-.586-.781-.781-.781-2.047 0-2.828l3-3c.78-.781 2.048-.781 2.828 0 .781.781.781 2.047 0 2.828l-3 3c-.391.391-.903.586-1.414.586z"/><path fill="#F3D2A2" d="M19.967 7.125c.91.201-.046.961.236 2.329.312 1.516-2.047 0-1.826 2.171.149 1.464-1.865 1.973-2.019.507-.154-1.464 1.045-2.254.385-3.394-1.578-2.731 3.224-1.613 3.224-1.613z"/><path fill="#77B255" d="M20.233 12.407s-.563-.683-.678-.856c-.482-.732-.833-1.126-1.568-1.288-1.287-.284-2.912.308-4.222 1.927-.829 1.024-.947 2.174-2.259 3.794 0 0 4.199.447 4.754.092.556-.354.758-1.265.959-2.174.2-.91.671-1.255 1.04-.71.24.354.728.624.728.624l1.246-1.409z"/><path fill="#FFE51E" d="M19.967 7.55c.808.668.57-.862 0-1.335-.806-.667-2.418-.668-3.224 0-.806.667-.806 2.003 0 2.67.57.472.806 1.335.806 0s.807 0 .807-.667c-.001-.668 1.611-.668 1.611-.668z"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path d="M15.356 15.875l3.083 1.158-1.156 3.084s-4.55-1.004-5.259-2.113c-.709-1.111.602-2.729.602-2.729l2.73.6z"/><path fill="#C1694F" d="M2 17h32s0 2-1 7c-.86 4.302-21 1-24.601 0C5.316 23.144 2 17 2 17z"/><path fill="#F4900C" d="M35 18c0 .553-.447 1-1 1H2c-.552 0-1-.447-1-1 0-.553.448-1 1-1h32c.553 0 1 .447 1 1z"/><path fill="#55ACEE" d="M0 23.933V34c0 1.105.895 2 2 2h32c1.105 0 2-.895 2-2v-9.637c0-.637-.585-1.097-1.21-.976-11.333 2.19-22.667-2.809-34-.439-.461.096-.79.514-.79.985z"/><path fill="#1C6399" d="M24.646 13.533c-.171-.171-.448-.171-.619 0l-8.031 8.031c-2.225 2.224-2.691.599-5.033 2.941l-3.231 3.231c-.2.199-.199.523 0 .723l.994.994.994.994c.2.2.523.2.722 0l3.231-3.231c2.342-2.342.717-2.809 2.941-5.033l8.031-8.031c.172-.171.172-.448.001-.619z"/><path fill="#F3D2A2" d="M17.028 9.229c-.176-.21-.314-.46-.388-.773-.265-1.118.345-2.22 1.362-2.461 1.017-.241 2.447.464 2.46 1.613.013 1.141-.556 2.847-1.522 2.6-.255-.065-.51-.138-.754-.228-.098.125-.153.592-.096.987.147 1.008-1.245 1.167-1.391.157-.116-.798.365-1.327.329-1.895z"/><path fill="#FFE51E" d="M19.947 6.183c-1.426-.8-2.352-.616-3.1.042-.743.653-.726 1.824-.477 2.559.249.735.464.684.464.684s1.04.186 1.072-.772c.01-.303-.333-.45.011-.91.222-.296.752-.178.773.233.022.411.228.324.228.324l.567-1.117s.531-.055.85.42c.202.298.857-.764-.388-1.463z"/><path fill="#F3D2A2" d="M24.229 14.008l-.118-.118c-.271-.28-.494-.141-.642-.049-.064.04-.126.078-.172.078h-.004c-.178-.025-2.298-.865-2.562-1.116-.072-.069-.182-.192-.321-.348-.399-.449-1.004-1.126-1.621-1.538-.484-.323-.858-.319-1.086-.26-.277.071-.515.266-.655.534-.315.605-.131 1.283.447 1.647 1.135.716 2.013 1.25 2.539 1.542.41.227 1.505.465 2.229.624.248.054.482.105.526.123.079.032.188.141.292.247.163.165.331.333.502.333.017 0 .033-.001.051-.005.267-.055.513-.419.783-.854.252-.403.067-.586-.188-.84z"/><path fill="#77B255" d="M19.556 11.55c-.482-.732-.833-1.126-1.568-1.288-1.287-.284-2.912.308-4.222 1.927-.829 1.024-.947 2.174-2.259 3.794 0 0 4.199.447 4.754.092.556-.354.758-1.265.959-2.174.106-.482.288-.806.491-.922.426.358 1.277.837 1.277.837l1.306-1.507c0 .001-.525-.587-.738-.759z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f6a3-1f3fd-200d-2640-fe0f.svg b/public/emoji/1f6a3-1f3fd-200d-2640-fe0f.svg
index ec8948666ef51af46db66ca6a6c96e6bf6365489..16b7ac0bbbf5211f2df1747c5ee938d9dc799769 100644
--- a/public/emoji/1f6a3-1f3fd-200d-2640-fe0f.svg
+++ b/public/emoji/1f6a3-1f3fd-200d-2640-fe0f.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#D5AB88" d="M18.988 13.816l1.245-1.41c.942.928 2.453 1.492 2.959 1.166.556-.353 1.916.904.806 1.613-1.11.71-1.417-.007-2.31-.264-1.032-.296-1.61-.546-2.7-1.105zm-2.357-3.018c.15-1.054 1.129-1.397.867-2.313-.627-2.193 2.545-.565 2.545-.565.603.301-1.152 2.123-1.152 2.123s-.604-.301-.753.754c-.149 1.055-1.656 1.057-1.507.001z"/><path d="M15.356 15.875l3.083 1.158-1.156 3.084s-4.55-1.004-5.259-2.113c-.709-1.111.602-2.729.602-2.729l2.73.6z"/><path fill="#C1694F" d="M2 17h32s0 2-1 7c-.86 4.302-21 1-24.601 0C5.316 23.144 2 17 2 17z"/><path fill="#F4900C" d="M35 18c0 .553-.447 1-1 1H2c-.552 0-1-.447-1-1 0-.553.448-1 1-1h32c.553 0 1 .447 1 1z"/><path fill="#55ACEE" d="M0 24h36v12H0z"/><path fill="#FFAC33" d="M12 27c-.256 0-.512-.098-.707-.293-.391-.391-.391-1.023 0-1.414l11-11c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-11.001 11c-.195.195-.451.293-.706.293z"/><path fill="#FFCC4D" d="M11 29c-.512 0-1.024-.195-1.414-.586-.781-.781-.781-2.047 0-2.828l3-3c.78-.781 2.048-.781 2.828 0 .781.781.781 2.047 0 2.828l-3 3c-.391.391-.903.586-1.414.586z"/><path fill="#D5AB88" d="M18.615 5.87c1.205.031 2.156 1.033 2.125 2.238-.031 1.205-1.033 2.156-2.238 2.125-1.205-.031-2.156-1.033-2.125-2.237.031-1.206 1.033-2.157 2.238-2.126z"/><path fill="#963B22" d="M14.115 8.48c.568-.028 1.117-.092 2.056-1.302.624-.804 1.207-1.32 2.649-1.307 1.531.014 2.814 1.317 1.831 1.969-.429.284-.788.149-1.476.342-1.081.303-1.245 1.453-2.221 1.711-1.912.505-3.407-1.386-2.839-1.413z"/><path fill="#9266CC" d="M20.233 12.407s-.563-.683-.678-.856c-.482-.732-.833-1.126-1.568-1.288-1.287-.284-2.912.308-4.222 1.927-.829 1.024-.947 2.174-2.259 3.794 0 0 4.199.447 4.754.092.556-.354.758-1.265.959-2.174.2-.91.671-1.255 1.04-.71.24.354.728.624.728.624l1.246-1.409z"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path d="M15.356 15.875l3.083 1.158-1.156 3.084s-4.55-1.004-5.259-2.113c-.709-1.111.602-2.729.602-2.729l2.73.6z"/><path fill="#C1694F" d="M2 17h32s0 2-1 7c-.86 4.302-21 1-24.601 0C5.316 23.144 2 17 2 17z"/><path fill="#F4900C" d="M35 18c0 .553-.447 1-1 1H2c-.552 0-1-.447-1-1 0-.553.448-1 1-1h32c.553 0 1 .447 1 1z"/><path fill="#55ACEE" d="M0 23.933V34c0 1.105.895 2 2 2h32c1.105 0 2-.895 2-2v-9.637c0-.637-.585-1.097-1.21-.976-11.333 2.19-22.667-2.809-34-.439-.461.096-.79.514-.79.985z"/><path fill="#1C6399" d="M24.646 13.533c-.171-.171-.448-.171-.619 0l-8.031 8.031c-2.225 2.224-2.691.599-5.033 2.941l-3.231 3.231c-.2.199-.199.523 0 .723l.994.994.994.994c.2.2.523.2.722 0l3.231-3.231c2.342-2.342.717-2.809 2.941-5.033l8.031-8.031c.172-.171.172-.448.001-.619z"/><path fill="#D4AB88" d="M17.028 9.229c-.176-.21-.314-.46-.388-.773-.265-1.118.345-2.22 1.362-2.461 1.017-.241 2.447.464 2.46 1.613.013 1.141-.556 2.847-1.522 2.6-.255-.065-.51-.138-.754-.228-.098.125-.153.592-.096.987.147 1.008-1.245 1.167-1.391.157-.116-.798.365-1.327.329-1.895z"/><path fill="#963B22" d="M13.809 8.258c.568-.028 1.117-.092 2.056-1.302.624-.804 1.207-1.32 2.649-1.307 1.531.014 2.814 1.317 1.831 1.969-.429.284-.788.149-1.476.342-1.081.303-1.245 1.453-2.221 1.711-1.912.506-3.406-1.385-2.839-1.413z"/><path fill="#D4AB88" d="M24.039 13.96c-.331-.341-.519.068-.754.058-.139-.006-2.338-.872-2.623-1.143-.285-.271-1.105-1.326-1.929-1.875-.824-.549-1.384-.171-1.597.237-.282.541-.146 1.165.412 1.517.397.25 1.755 1.106 2.535 1.54.561.311 2.569.67 2.744.741.236.095.555.618.787.57.232-.048.479-.425.719-.809.239-.385.037-.495-.294-.836z"/><path fill="#9266CC" d="M20.25 12.366l-.738-.759c-.482-.732-.789-1.183-1.524-1.344-1.287-.284-2.912.308-4.222 1.927-.829 1.024-.947 2.174-2.259 3.794 0 0 4.444.604 4.552.092.137-.653.753-1.253 1.055-2.174.78-.345.86-.869.88-.855.447.326 1.073.678 1.073.678l1.183-1.359z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f6a3-1f3fd-200d-2642-fe0f.svg b/public/emoji/1f6a3-1f3fd-200d-2642-fe0f.svg
index 6c4dd10975105b2f3bcad62f8cf5f8370e8f1fad..350a363a0d8685d99e5ccd28134f33f455f32302 100644
--- a/public/emoji/1f6a3-1f3fd-200d-2642-fe0f.svg
+++ b/public/emoji/1f6a3-1f3fd-200d-2642-fe0f.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#D5AB88" d="M18.988 13.816l1.245-1.41c.942.928 2.453 1.492 2.959 1.166.556-.353 1.916.904.806 1.613-1.11.71-1.417-.007-2.31-.264-1.032-.296-1.61-.546-2.7-1.105zm.979-6.691c.91.201-.046.961.236 2.329.312 1.516-2.047 0-1.826 2.171.149 1.464-1.865 1.973-2.019.507-.154-1.464 1.045-2.254.385-3.394-1.578-2.731 3.224-1.613 3.224-1.613z"/><path d="M15.356 15.875l3.083 1.158-1.156 3.084s-4.55-1.004-5.259-2.113c-.709-1.111.602-2.729.602-2.729l2.73.6z"/><path fill="#963B22" d="M19.967 7.55c.808.668.57-.862 0-1.335-.806-.667-2.418-.668-3.224 0-.806.667-.806 2.003 0 2.67.57.472.806 1.335.806 0s.807 0 .807-.667c-.001-.668 1.611-.668 1.611-.668z"/><path fill="#C1694F" d="M2 17h32s0 2-1 7c-.86 4.302-21 1-24.601 0C5.316 23.144 2 17 2 17z"/><path fill="#F4900C" d="M35 18c0 .553-.447 1-1 1H2c-.552 0-1-.447-1-1 0-.553.448-1 1-1h32c.553 0 1 .447 1 1z"/><path fill="#55ACEE" d="M0 24h36v12H0z"/><path fill="#FFAC33" d="M12 27c-.256 0-.512-.098-.707-.293-.391-.391-.391-1.023 0-1.414l11-11c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-11.001 11c-.195.195-.451.293-.706.293z"/><path fill="#FFCC4D" d="M11 29c-.512 0-1.024-.195-1.414-.586-.781-.781-.781-2.047 0-2.828l3-3c.78-.781 2.048-.781 2.828 0 .781.781.781 2.047 0 2.828l-3 3c-.391.391-.903.586-1.414.586z"/><path fill="#77B255" d="M20.233 12.407s-.563-.683-.678-.856c-.482-.732-.833-1.126-1.568-1.288-1.287-.284-2.912.308-4.222 1.927-.829 1.024-.947 2.174-2.259 3.794 0 0 4.199.447 4.754.092.556-.354.758-1.265.959-2.174.2-.91.671-1.255 1.04-.71.24.354.728.624.728.624l1.246-1.409z"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path d="M15.356 15.875l3.083 1.158-1.156 3.084s-4.55-1.004-5.259-2.113c-.709-1.111.602-2.729.602-2.729l2.73.6z"/><path fill="#C1694F" d="M2 17h32s0 2-1 7c-.86 4.302-21 1-24.601 0C5.316 23.144 2 17 2 17z"/><path fill="#F4900C" d="M35 18c0 .553-.447 1-1 1H2c-.552 0-1-.447-1-1 0-.553.448-1 1-1h32c.553 0 1 .447 1 1z"/><path fill="#55ACEE" d="M0 23.933V34c0 1.105.895 2 2 2h32c1.105 0 2-.895 2-2v-9.637c0-.637-.585-1.097-1.21-.976-11.333 2.19-22.667-2.809-34-.439-.461.096-.79.514-.79.985z"/><path fill="#1C6399" d="M24.646 13.533c-.171-.171-.448-.171-.619 0l-8.031 8.031c-2.225 2.224-2.691.599-5.033 2.941l-3.231 3.231c-.2.199-.199.523 0 .723l.994.994.994.994c.2.2.523.2.722 0l3.231-3.231c2.342-2.342.717-2.809 2.941-5.033l8.031-8.031c.172-.171.172-.448.001-.619z"/><path fill="#D4AB88" d="M17.028 9.229c-.176-.21-.314-.46-.388-.773-.265-1.118.345-2.22 1.362-2.461 1.017-.241 2.447.464 2.46 1.613.013 1.141-.556 2.847-1.522 2.6-.255-.065-.51-.138-.754-.228-.098.125-.153.592-.096.987.147 1.008-1.245 1.167-1.391.157-.116-.798.365-1.327.329-1.895z"/><path fill="#963B22" d="M19.947 6.183c-1.426-.8-2.352-.616-3.1.042-.743.653-.726 1.824-.477 2.559.249.735.464.684.464.684s1.04.186 1.072-.772c.01-.303-.333-.45.011-.91.222-.296.752-.178.773.233.022.411.228.324.228.324l.567-1.117s.531-.055.85.42c.202.298.857-.764-.388-1.463z"/><path fill="#D4AB88" d="M24.229 14.008l-.118-.118c-.271-.28-.494-.141-.642-.049-.064.04-.126.078-.172.078h-.004c-.178-.025-2.298-.865-2.562-1.116-.072-.069-.182-.192-.321-.348-.399-.449-1.004-1.126-1.621-1.538-.484-.323-.858-.319-1.086-.26-.277.071-.515.266-.655.534-.315.605-.131 1.283.447 1.647 1.135.716 2.013 1.25 2.539 1.542.41.227 1.505.465 2.229.624.248.054.482.105.526.123.079.032.188.141.292.247.163.165.331.333.502.333.017 0 .033-.001.051-.005.267-.055.513-.419.783-.854.252-.403.067-.586-.188-.84z"/><path fill="#77B255" d="M19.556 11.55c-.482-.732-.833-1.126-1.568-1.288-1.287-.284-2.912.308-4.222 1.927-.829 1.024-.947 2.174-2.259 3.794 0 0 4.199.447 4.754.092.556-.354.758-1.265.959-2.174.106-.482.288-.806.491-.922.426.358 1.277.837 1.277.837l1.306-1.507c0 .001-.525-.587-.738-.759z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f6a3-1f3fd.svg b/public/emoji/1f6a3-1f3fd.svg
index 6c4dd10975105b2f3bcad62f8cf5f8370e8f1fad..350a363a0d8685d99e5ccd28134f33f455f32302 100644
--- a/public/emoji/1f6a3-1f3fd.svg
+++ b/public/emoji/1f6a3-1f3fd.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#D5AB88" d="M18.988 13.816l1.245-1.41c.942.928 2.453 1.492 2.959 1.166.556-.353 1.916.904.806 1.613-1.11.71-1.417-.007-2.31-.264-1.032-.296-1.61-.546-2.7-1.105zm.979-6.691c.91.201-.046.961.236 2.329.312 1.516-2.047 0-1.826 2.171.149 1.464-1.865 1.973-2.019.507-.154-1.464 1.045-2.254.385-3.394-1.578-2.731 3.224-1.613 3.224-1.613z"/><path d="M15.356 15.875l3.083 1.158-1.156 3.084s-4.55-1.004-5.259-2.113c-.709-1.111.602-2.729.602-2.729l2.73.6z"/><path fill="#963B22" d="M19.967 7.55c.808.668.57-.862 0-1.335-.806-.667-2.418-.668-3.224 0-.806.667-.806 2.003 0 2.67.57.472.806 1.335.806 0s.807 0 .807-.667c-.001-.668 1.611-.668 1.611-.668z"/><path fill="#C1694F" d="M2 17h32s0 2-1 7c-.86 4.302-21 1-24.601 0C5.316 23.144 2 17 2 17z"/><path fill="#F4900C" d="M35 18c0 .553-.447 1-1 1H2c-.552 0-1-.447-1-1 0-.553.448-1 1-1h32c.553 0 1 .447 1 1z"/><path fill="#55ACEE" d="M0 24h36v12H0z"/><path fill="#FFAC33" d="M12 27c-.256 0-.512-.098-.707-.293-.391-.391-.391-1.023 0-1.414l11-11c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-11.001 11c-.195.195-.451.293-.706.293z"/><path fill="#FFCC4D" d="M11 29c-.512 0-1.024-.195-1.414-.586-.781-.781-.781-2.047 0-2.828l3-3c.78-.781 2.048-.781 2.828 0 .781.781.781 2.047 0 2.828l-3 3c-.391.391-.903.586-1.414.586z"/><path fill="#77B255" d="M20.233 12.407s-.563-.683-.678-.856c-.482-.732-.833-1.126-1.568-1.288-1.287-.284-2.912.308-4.222 1.927-.829 1.024-.947 2.174-2.259 3.794 0 0 4.199.447 4.754.092.556-.354.758-1.265.959-2.174.2-.91.671-1.255 1.04-.71.24.354.728.624.728.624l1.246-1.409z"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path d="M15.356 15.875l3.083 1.158-1.156 3.084s-4.55-1.004-5.259-2.113c-.709-1.111.602-2.729.602-2.729l2.73.6z"/><path fill="#C1694F" d="M2 17h32s0 2-1 7c-.86 4.302-21 1-24.601 0C5.316 23.144 2 17 2 17z"/><path fill="#F4900C" d="M35 18c0 .553-.447 1-1 1H2c-.552 0-1-.447-1-1 0-.553.448-1 1-1h32c.553 0 1 .447 1 1z"/><path fill="#55ACEE" d="M0 23.933V34c0 1.105.895 2 2 2h32c1.105 0 2-.895 2-2v-9.637c0-.637-.585-1.097-1.21-.976-11.333 2.19-22.667-2.809-34-.439-.461.096-.79.514-.79.985z"/><path fill="#1C6399" d="M24.646 13.533c-.171-.171-.448-.171-.619 0l-8.031 8.031c-2.225 2.224-2.691.599-5.033 2.941l-3.231 3.231c-.2.199-.199.523 0 .723l.994.994.994.994c.2.2.523.2.722 0l3.231-3.231c2.342-2.342.717-2.809 2.941-5.033l8.031-8.031c.172-.171.172-.448.001-.619z"/><path fill="#D4AB88" d="M17.028 9.229c-.176-.21-.314-.46-.388-.773-.265-1.118.345-2.22 1.362-2.461 1.017-.241 2.447.464 2.46 1.613.013 1.141-.556 2.847-1.522 2.6-.255-.065-.51-.138-.754-.228-.098.125-.153.592-.096.987.147 1.008-1.245 1.167-1.391.157-.116-.798.365-1.327.329-1.895z"/><path fill="#963B22" d="M19.947 6.183c-1.426-.8-2.352-.616-3.1.042-.743.653-.726 1.824-.477 2.559.249.735.464.684.464.684s1.04.186 1.072-.772c.01-.303-.333-.45.011-.91.222-.296.752-.178.773.233.022.411.228.324.228.324l.567-1.117s.531-.055.85.42c.202.298.857-.764-.388-1.463z"/><path fill="#D4AB88" d="M24.229 14.008l-.118-.118c-.271-.28-.494-.141-.642-.049-.064.04-.126.078-.172.078h-.004c-.178-.025-2.298-.865-2.562-1.116-.072-.069-.182-.192-.321-.348-.399-.449-1.004-1.126-1.621-1.538-.484-.323-.858-.319-1.086-.26-.277.071-.515.266-.655.534-.315.605-.131 1.283.447 1.647 1.135.716 2.013 1.25 2.539 1.542.41.227 1.505.465 2.229.624.248.054.482.105.526.123.079.032.188.141.292.247.163.165.331.333.502.333.017 0 .033-.001.051-.005.267-.055.513-.419.783-.854.252-.403.067-.586-.188-.84z"/><path fill="#77B255" d="M19.556 11.55c-.482-.732-.833-1.126-1.568-1.288-1.287-.284-2.912.308-4.222 1.927-.829 1.024-.947 2.174-2.259 3.794 0 0 4.199.447 4.754.092.556-.354.758-1.265.959-2.174.106-.482.288-.806.491-.922.426.358 1.277.837 1.277.837l1.306-1.507c0 .001-.525-.587-.738-.759z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f6a3-1f3fe-200d-2640-fe0f.svg b/public/emoji/1f6a3-1f3fe-200d-2640-fe0f.svg
index 48e29720758448559063113ad9ca2df8459c9507..08ab1cce51cb45f359dedf5e7af23604999371cb 100644
--- a/public/emoji/1f6a3-1f3fe-200d-2640-fe0f.svg
+++ b/public/emoji/1f6a3-1f3fe-200d-2640-fe0f.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#AF7E57" d="M18.988 13.816l1.245-1.41c.942.928 2.453 1.492 2.959 1.166.556-.353 1.916.904.806 1.613-1.11.71-1.417-.007-2.31-.264-1.032-.296-1.61-.546-2.7-1.105zm-2.357-3.018c.15-1.054 1.129-1.397.867-2.313-.627-2.193 2.545-.565 2.545-.565.603.301-1.152 2.123-1.152 2.123s-.604-.301-.753.754c-.149 1.055-1.656 1.057-1.507.001z"/><path d="M15.356 15.875l3.083 1.158-1.156 3.084s-4.55-1.004-5.259-2.113c-.709-1.111.602-2.729.602-2.729l2.73.6z"/><path fill="#C1694F" d="M2 17h32s0 2-1 7c-.86 4.302-21 1-24.601 0C5.316 23.144 2 17 2 17z"/><path fill="#F4900C" d="M35 18c0 .553-.447 1-1 1H2c-.552 0-1-.447-1-1 0-.553.448-1 1-1h32c.553 0 1 .447 1 1z"/><path fill="#55ACEE" d="M0 24h36v12H0z"/><path fill="#FFAC33" d="M12 27c-.256 0-.512-.098-.707-.293-.391-.391-.391-1.023 0-1.414l11-11c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-11.001 11c-.195.195-.451.293-.706.293z"/><path fill="#FFCC4D" d="M11 29c-.512 0-1.024-.195-1.414-.586-.781-.781-.781-2.047 0-2.828l3-3c.78-.781 2.048-.781 2.828 0 .781.781.781 2.047 0 2.828l-3 3c-.391.391-.903.586-1.414.586z"/><path fill="#AF7E57" d="M18.615 5.87c1.205.031 2.156 1.033 2.125 2.238-.031 1.205-1.033 2.156-2.238 2.125-1.205-.031-2.156-1.033-2.125-2.237.031-1.206 1.033-2.157 2.238-2.126z"/><path fill="#60352A" d="M14.115 8.48c.568-.028 1.117-.092 2.056-1.302.624-.804 1.207-1.32 2.649-1.307 1.531.014 2.814 1.317 1.831 1.969-.429.284-.788.149-1.476.342-1.081.303-1.245 1.453-2.221 1.711-1.912.505-3.407-1.386-2.839-1.413z"/><path fill="#9266CC" d="M20.233 12.407s-.563-.683-.678-.856c-.482-.732-.833-1.126-1.568-1.288-1.287-.284-2.912.308-4.222 1.927-.829 1.024-.947 2.174-2.259 3.794 0 0 4.199.447 4.754.092.556-.354.758-1.265.959-2.174.2-.91.671-1.255 1.04-.71.24.354.728.624.728.624l1.246-1.409z"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path d="M15.356 15.875l3.083 1.158-1.156 3.084s-4.55-1.004-5.259-2.113c-.709-1.111.602-2.729.602-2.729l2.73.6z"/><path fill="#C1694F" d="M2 17h32s0 2-1 7c-.86 4.302-21 1-24.601 0C5.316 23.144 2 17 2 17z"/><path fill="#F4900C" d="M35 18c0 .553-.447 1-1 1H2c-.552 0-1-.447-1-1 0-.553.448-1 1-1h32c.553 0 1 .447 1 1z"/><path fill="#55ACEE" d="M0 23.933V34c0 1.105.895 2 2 2h32c1.105 0 2-.895 2-2v-9.637c0-.637-.585-1.097-1.21-.976-11.333 2.19-22.667-2.809-34-.439-.461.096-.79.514-.79.985z"/><path fill="#1C6399" d="M24.646 13.533c-.171-.171-.448-.171-.619 0l-8.031 8.031c-2.225 2.224-2.691.599-5.033 2.941l-3.231 3.231c-.2.199-.199.523 0 .723l.994.994.994.994c.2.2.523.2.722 0l3.231-3.231c2.342-2.342.717-2.809 2.941-5.033l8.031-8.031c.172-.171.172-.448.001-.619z"/><path fill="#AF7E57" d="M17.028 9.229c-.176-.21-.314-.46-.388-.773-.265-1.118.345-2.22 1.362-2.461 1.017-.241 2.447.464 2.46 1.613.013 1.141-.556 2.847-1.522 2.6-.255-.065-.51-.138-.754-.228-.098.125-.153.592-.096.987.147 1.008-1.245 1.167-1.391.157-.116-.798.365-1.327.329-1.895z"/><path fill="#60352A" d="M13.809 8.258c.568-.028 1.117-.092 2.056-1.302.624-.804 1.207-1.32 2.649-1.307 1.531.014 2.814 1.317 1.831 1.969-.429.284-.788.149-1.476.342-1.081.303-1.245 1.453-2.221 1.711-1.912.506-3.406-1.385-2.839-1.413z"/><path fill="#AF7E57" d="M24.039 13.96c-.331-.341-.519.068-.754.058-.139-.006-2.338-.872-2.623-1.143-.285-.271-1.105-1.326-1.929-1.875-.824-.549-1.384-.171-1.597.237-.282.541-.146 1.165.412 1.517.397.25 1.755 1.106 2.535 1.54.561.311 2.569.67 2.744.741.236.095.555.618.787.57.232-.048.479-.425.719-.809.239-.385.037-.495-.294-.836z"/><path fill="#9266CC" d="M20.25 12.366l-.738-.759c-.482-.732-.789-1.183-1.524-1.344-1.287-.284-2.912.308-4.222 1.927-.829 1.024-.947 2.174-2.259 3.794 0 0 4.444.604 4.552.092.137-.653.753-1.253 1.055-2.174.78-.345.86-.869.88-.855.447.326 1.073.678 1.073.678l1.183-1.359z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f6a3-1f3fe-200d-2642-fe0f.svg b/public/emoji/1f6a3-1f3fe-200d-2642-fe0f.svg
index 5a94398df013ac1af31b74cdc2794b0c62c42eac..58d8d4e8ab136b67da7e75d42ba17029d9037346 100644
--- a/public/emoji/1f6a3-1f3fe-200d-2642-fe0f.svg
+++ b/public/emoji/1f6a3-1f3fe-200d-2642-fe0f.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#AF7E57" d="M18.988 13.816l1.245-1.41c.942.928 2.453 1.492 2.959 1.166.556-.353 1.916.904.806 1.613-1.11.71-1.417-.007-2.31-.264-1.032-.296-1.61-.546-2.7-1.105z"/><path d="M15.356 15.875l3.083 1.158-1.156 3.084s-4.55-1.004-5.259-2.113c-.709-1.111.602-2.729.602-2.729l2.73.6z"/><path fill="#AF7E57" d="M19.967 7.125c.91.201-.046.961.236 2.329.312 1.516-2.047 0-1.826 2.171.149 1.464-1.865 1.973-2.019.507-.154-1.464 1.045-2.254.385-3.394-1.578-2.731 3.224-1.613 3.224-1.613z"/><path fill="#60352A" d="M19.967 7.55c.808.668.57-.862 0-1.335-.806-.667-2.418-.668-3.224 0-.806.667-.806 2.003 0 2.67.57.472.806 1.335.806 0s.807 0 .807-.667c-.001-.668 1.611-.668 1.611-.668z"/><path fill="#C1694F" d="M2 17h32s0 2-1 7c-.86 4.302-21 1-24.601 0C5.316 23.144 2 17 2 17z"/><path fill="#F4900C" d="M35 18c0 .553-.447 1-1 1H2c-.552 0-1-.447-1-1 0-.553.448-1 1-1h32c.553 0 1 .447 1 1z"/><path fill="#55ACEE" d="M0 24h36v12H0z"/><path fill="#FFAC33" d="M12 27c-.256 0-.512-.098-.707-.293-.391-.391-.391-1.023 0-1.414l11-11c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-11.001 11c-.195.195-.451.293-.706.293z"/><path fill="#FFCC4D" d="M11 29c-.512 0-1.024-.195-1.414-.586-.781-.781-.781-2.047 0-2.828l3-3c.78-.781 2.048-.781 2.828 0 .781.781.781 2.047 0 2.828l-3 3c-.391.391-.903.586-1.414.586z"/><path fill="#77B255" d="M20.233 12.407s-.563-.683-.678-.856c-.482-.732-.833-1.126-1.568-1.288-1.287-.284-2.912.308-4.222 1.927-.829 1.024-.947 2.174-2.259 3.794 0 0 4.199.447 4.754.092.556-.354.758-1.265.959-2.174.2-.91.671-1.255 1.04-.71.24.354.728.624.728.624l1.246-1.409z"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path d="M15.356 15.875l3.083 1.158-1.156 3.084s-4.55-1.004-5.259-2.113c-.709-1.111.602-2.729.602-2.729l2.73.6z"/><path fill="#C1694F" d="M2 17h32s0 2-1 7c-.86 4.302-21 1-24.601 0C5.316 23.144 2 17 2 17z"/><path fill="#F4900C" d="M35 18c0 .553-.447 1-1 1H2c-.552 0-1-.447-1-1 0-.553.448-1 1-1h32c.553 0 1 .447 1 1z"/><path fill="#55ACEE" d="M0 23.933V34c0 1.105.895 2 2 2h32c1.105 0 2-.895 2-2v-9.637c0-.637-.585-1.097-1.21-.976-11.333 2.19-22.667-2.809-34-.439-.461.096-.79.514-.79.985z"/><path fill="#1C6399" d="M24.646 13.533c-.171-.171-.448-.171-.619 0l-8.031 8.031c-2.225 2.224-2.691.599-5.033 2.941l-3.231 3.231c-.2.199-.199.523 0 .723l.994.994.994.994c.2.2.523.2.722 0l3.231-3.231c2.342-2.342.717-2.809 2.941-5.033l8.031-8.031c.172-.171.172-.448.001-.619z"/><path fill="#AF7E57" d="M17.028 9.229c-.176-.21-.314-.46-.388-.773-.265-1.118.345-2.22 1.362-2.461 1.017-.241 2.447.464 2.46 1.613.013 1.141-.556 2.847-1.522 2.6-.255-.065-.51-.138-.754-.228-.098.125-.153.592-.096.987.147 1.008-1.245 1.167-1.391.157-.116-.798.365-1.327.329-1.895z"/><path fill="#60352A" d="M19.947 6.183c-1.426-.8-2.352-.616-3.1.042-.743.653-.726 1.824-.477 2.559.249.735.464.684.464.684s1.04.186 1.072-.772c.01-.303-.333-.45.011-.91.222-.296.752-.178.773.233.022.411.228.324.228.324l.567-1.117s.531-.055.85.42c.202.298.857-.764-.388-1.463z"/><path fill="#AF7E57" d="M24.229 14.008l-.118-.118c-.271-.28-.494-.141-.642-.049-.064.04-.126.078-.172.078h-.004c-.178-.025-2.298-.865-2.562-1.116-.072-.069-.182-.192-.321-.348-.399-.449-1.004-1.126-1.621-1.538-.484-.323-.858-.319-1.086-.26-.277.071-.515.266-.655.534-.315.605-.131 1.283.447 1.647 1.135.716 2.013 1.25 2.539 1.542.41.227 1.505.465 2.229.624.248.054.482.105.526.123.079.032.188.141.292.247.163.165.331.333.502.333.017 0 .033-.001.051-.005.267-.055.513-.419.783-.854.252-.403.067-.586-.188-.84z"/><path fill="#77B255" d="M19.556 11.55c-.482-.732-.833-1.126-1.568-1.288-1.287-.284-2.912.308-4.222 1.927-.829 1.024-.947 2.174-2.259 3.794 0 0 4.199.447 4.754.092.556-.354.758-1.265.959-2.174.106-.482.288-.806.491-.922.426.358 1.277.837 1.277.837l1.306-1.507c0 .001-.525-.587-.738-.759z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f6a3-1f3fe.svg b/public/emoji/1f6a3-1f3fe.svg
index 5a94398df013ac1af31b74cdc2794b0c62c42eac..58d8d4e8ab136b67da7e75d42ba17029d9037346 100644
--- a/public/emoji/1f6a3-1f3fe.svg
+++ b/public/emoji/1f6a3-1f3fe.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#AF7E57" d="M18.988 13.816l1.245-1.41c.942.928 2.453 1.492 2.959 1.166.556-.353 1.916.904.806 1.613-1.11.71-1.417-.007-2.31-.264-1.032-.296-1.61-.546-2.7-1.105z"/><path d="M15.356 15.875l3.083 1.158-1.156 3.084s-4.55-1.004-5.259-2.113c-.709-1.111.602-2.729.602-2.729l2.73.6z"/><path fill="#AF7E57" d="M19.967 7.125c.91.201-.046.961.236 2.329.312 1.516-2.047 0-1.826 2.171.149 1.464-1.865 1.973-2.019.507-.154-1.464 1.045-2.254.385-3.394-1.578-2.731 3.224-1.613 3.224-1.613z"/><path fill="#60352A" d="M19.967 7.55c.808.668.57-.862 0-1.335-.806-.667-2.418-.668-3.224 0-.806.667-.806 2.003 0 2.67.57.472.806 1.335.806 0s.807 0 .807-.667c-.001-.668 1.611-.668 1.611-.668z"/><path fill="#C1694F" d="M2 17h32s0 2-1 7c-.86 4.302-21 1-24.601 0C5.316 23.144 2 17 2 17z"/><path fill="#F4900C" d="M35 18c0 .553-.447 1-1 1H2c-.552 0-1-.447-1-1 0-.553.448-1 1-1h32c.553 0 1 .447 1 1z"/><path fill="#55ACEE" d="M0 24h36v12H0z"/><path fill="#FFAC33" d="M12 27c-.256 0-.512-.098-.707-.293-.391-.391-.391-1.023 0-1.414l11-11c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-11.001 11c-.195.195-.451.293-.706.293z"/><path fill="#FFCC4D" d="M11 29c-.512 0-1.024-.195-1.414-.586-.781-.781-.781-2.047 0-2.828l3-3c.78-.781 2.048-.781 2.828 0 .781.781.781 2.047 0 2.828l-3 3c-.391.391-.903.586-1.414.586z"/><path fill="#77B255" d="M20.233 12.407s-.563-.683-.678-.856c-.482-.732-.833-1.126-1.568-1.288-1.287-.284-2.912.308-4.222 1.927-.829 1.024-.947 2.174-2.259 3.794 0 0 4.199.447 4.754.092.556-.354.758-1.265.959-2.174.2-.91.671-1.255 1.04-.71.24.354.728.624.728.624l1.246-1.409z"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path d="M15.356 15.875l3.083 1.158-1.156 3.084s-4.55-1.004-5.259-2.113c-.709-1.111.602-2.729.602-2.729l2.73.6z"/><path fill="#C1694F" d="M2 17h32s0 2-1 7c-.86 4.302-21 1-24.601 0C5.316 23.144 2 17 2 17z"/><path fill="#F4900C" d="M35 18c0 .553-.447 1-1 1H2c-.552 0-1-.447-1-1 0-.553.448-1 1-1h32c.553 0 1 .447 1 1z"/><path fill="#55ACEE" d="M0 23.933V34c0 1.105.895 2 2 2h32c1.105 0 2-.895 2-2v-9.637c0-.637-.585-1.097-1.21-.976-11.333 2.19-22.667-2.809-34-.439-.461.096-.79.514-.79.985z"/><path fill="#1C6399" d="M24.646 13.533c-.171-.171-.448-.171-.619 0l-8.031 8.031c-2.225 2.224-2.691.599-5.033 2.941l-3.231 3.231c-.2.199-.199.523 0 .723l.994.994.994.994c.2.2.523.2.722 0l3.231-3.231c2.342-2.342.717-2.809 2.941-5.033l8.031-8.031c.172-.171.172-.448.001-.619z"/><path fill="#AF7E57" d="M17.028 9.229c-.176-.21-.314-.46-.388-.773-.265-1.118.345-2.22 1.362-2.461 1.017-.241 2.447.464 2.46 1.613.013 1.141-.556 2.847-1.522 2.6-.255-.065-.51-.138-.754-.228-.098.125-.153.592-.096.987.147 1.008-1.245 1.167-1.391.157-.116-.798.365-1.327.329-1.895z"/><path fill="#60352A" d="M19.947 6.183c-1.426-.8-2.352-.616-3.1.042-.743.653-.726 1.824-.477 2.559.249.735.464.684.464.684s1.04.186 1.072-.772c.01-.303-.333-.45.011-.91.222-.296.752-.178.773.233.022.411.228.324.228.324l.567-1.117s.531-.055.85.42c.202.298.857-.764-.388-1.463z"/><path fill="#AF7E57" d="M24.229 14.008l-.118-.118c-.271-.28-.494-.141-.642-.049-.064.04-.126.078-.172.078h-.004c-.178-.025-2.298-.865-2.562-1.116-.072-.069-.182-.192-.321-.348-.399-.449-1.004-1.126-1.621-1.538-.484-.323-.858-.319-1.086-.26-.277.071-.515.266-.655.534-.315.605-.131 1.283.447 1.647 1.135.716 2.013 1.25 2.539 1.542.41.227 1.505.465 2.229.624.248.054.482.105.526.123.079.032.188.141.292.247.163.165.331.333.502.333.017 0 .033-.001.051-.005.267-.055.513-.419.783-.854.252-.403.067-.586-.188-.84z"/><path fill="#77B255" d="M19.556 11.55c-.482-.732-.833-1.126-1.568-1.288-1.287-.284-2.912.308-4.222 1.927-.829 1.024-.947 2.174-2.259 3.794 0 0 4.199.447 4.754.092.556-.354.758-1.265.959-2.174.106-.482.288-.806.491-.922.426.358 1.277.837 1.277.837l1.306-1.507c0 .001-.525-.587-.738-.759z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f6a3-1f3ff-200d-2640-fe0f.svg b/public/emoji/1f6a3-1f3ff-200d-2640-fe0f.svg
index 8cf74481c10053638ebe9ad19a13bb5970ad2bf0..05a2304c969da144b204b57672a1f4cf562164e6 100644
--- a/public/emoji/1f6a3-1f3ff-200d-2640-fe0f.svg
+++ b/public/emoji/1f6a3-1f3ff-200d-2640-fe0f.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#7C533E" d="M18.988 13.816l1.245-1.41c.942.928 2.453 1.492 2.959 1.166.556-.353 1.916.904.806 1.613-1.11.71-1.417-.007-2.31-.264-1.032-.296-1.61-.546-2.7-1.105zm-2.357-3.018c.15-1.054 1.129-1.397.867-2.313-.627-2.193 2.545-.565 2.545-.565.603.301-1.152 2.123-1.152 2.123s-.604-.301-.753.754c-.149 1.055-1.656 1.057-1.507.001z"/><path d="M15.356 15.875l3.083 1.158-1.156 3.084s-4.55-1.004-5.259-2.113c-.709-1.111.602-2.729.602-2.729l2.73.6z"/><path fill="#C1694F" d="M2 17h32s0 2-1 7c-.86 4.302-21 1-24.601 0C5.316 23.144 2 17 2 17z"/><path fill="#F4900C" d="M35 18c0 .553-.447 1-1 1H2c-.552 0-1-.447-1-1 0-.553.448-1 1-1h32c.553 0 1 .447 1 1z"/><path fill="#55ACEE" d="M0 24h36v12H0z"/><path fill="#FFAC33" d="M12 27c-.256 0-.512-.098-.707-.293-.391-.391-.391-1.023 0-1.414l11-11c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-11.001 11c-.195.195-.451.293-.706.293z"/><path fill="#FFCC4D" d="M11 29c-.512 0-1.024-.195-1.414-.586-.781-.781-.781-2.047 0-2.828l3-3c.78-.781 2.048-.781 2.828 0 .781.781.781 2.047 0 2.828l-3 3c-.391.391-.903.586-1.414.586z"/><path fill="#7C533E" d="M18.615 5.87c1.205.031 2.156 1.033 2.125 2.238-.031 1.205-1.033 2.156-2.238 2.125-1.205-.031-2.156-1.033-2.125-2.237.031-1.206 1.033-2.157 2.238-2.126z"/><path fill="#0B0200" d="M14.115 8.48c.568-.028 1.117-.092 2.056-1.302.624-.804 1.207-1.32 2.649-1.307 1.531.014 2.814 1.317 1.831 1.969-.429.284-.788.149-1.476.342-1.081.303-1.245 1.453-2.221 1.711-1.912.505-3.407-1.386-2.839-1.413z"/><path fill="#9266CC" d="M20.233 12.407s-.563-.683-.678-.856c-.482-.732-.833-1.126-1.568-1.288-1.287-.284-2.912.308-4.222 1.927-.829 1.024-.947 2.174-2.259 3.794 0 0 4.199.447 4.754.092.556-.354.758-1.265.959-2.174.2-.91.671-1.255 1.04-.71.24.354.728.624.728.624l1.246-1.409z"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path d="M15.356 15.875l3.083 1.158-1.156 3.084s-4.55-1.004-5.259-2.113c-.709-1.111.602-2.729.602-2.729l2.73.6z"/><path fill="#C1694F" d="M2 17h32s0 2-1 7c-.86 4.302-21 1-24.601 0C5.316 23.144 2 17 2 17z"/><path fill="#F4900C" d="M35 18c0 .553-.447 1-1 1H2c-.552 0-1-.447-1-1 0-.553.448-1 1-1h32c.553 0 1 .447 1 1z"/><path fill="#55ACEE" d="M0 23.933V34c0 1.105.895 2 2 2h32c1.105 0 2-.895 2-2v-9.637c0-.637-.585-1.097-1.21-.976-11.333 2.19-22.667-2.809-34-.439-.461.096-.79.514-.79.985z"/><path fill="#1C6399" d="M24.646 13.533c-.171-.171-.448-.171-.619 0l-8.031 8.031c-2.225 2.224-2.691.599-5.033 2.941l-3.231 3.231c-.2.199-.199.523 0 .723l.994.994.994.994c.2.2.523.2.722 0l3.231-3.231c2.342-2.342.717-2.809 2.941-5.033l8.031-8.031c.172-.171.172-.448.001-.619z"/><path fill="#7C533E" d="M17.028 9.229c-.176-.21-.314-.46-.388-.773-.265-1.118.345-2.22 1.362-2.461 1.017-.241 2.447.464 2.46 1.613.013 1.141-.556 2.847-1.522 2.6-.255-.065-.51-.138-.754-.228-.098.125-.153.592-.096.987.147 1.008-1.245 1.167-1.391.157-.116-.798.365-1.327.329-1.895z"/><path fill="#0B0200" d="M13.809 8.258c.568-.028 1.117-.092 2.056-1.302.624-.804 1.207-1.32 2.649-1.307 1.531.014 2.814 1.317 1.831 1.969-.429.284-.788.149-1.476.342-1.081.303-1.245 1.453-2.221 1.711-1.912.506-3.406-1.385-2.839-1.413z"/><path fill="#7C533E" d="M24.039 13.96c-.331-.341-.519.068-.754.058-.139-.006-2.338-.872-2.623-1.143-.285-.271-1.105-1.326-1.929-1.875-.824-.549-1.384-.171-1.597.237-.282.541-.146 1.165.412 1.517.397.25 1.755 1.106 2.535 1.54.561.311 2.569.67 2.744.741.236.095.555.618.787.57.232-.048.479-.425.719-.809.239-.385.037-.495-.294-.836z"/><path fill="#9266CC" d="M20.25 12.366l-.738-.759c-.482-.732-.789-1.183-1.524-1.344-1.287-.284-2.912.308-4.222 1.927-.829 1.024-.947 2.174-2.259 3.794 0 0 4.444.604 4.552.092.137-.653.753-1.253 1.055-2.174.78-.345.86-.869.88-.855.447.326 1.073.678 1.073.678l1.183-1.359z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f6a3-1f3ff-200d-2642-fe0f.svg b/public/emoji/1f6a3-1f3ff-200d-2642-fe0f.svg
index 43ecec5d8d28c4fbd8e7514be1b8b58e22dcc02a..d461a41035b293164134da6f280e17903c27129e 100644
--- a/public/emoji/1f6a3-1f3ff-200d-2642-fe0f.svg
+++ b/public/emoji/1f6a3-1f3ff-200d-2642-fe0f.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#7C533E" d="M18.988 13.816l1.245-1.41c.942.928 2.453 1.492 2.959 1.166.556-.353 1.916.904.806 1.613-1.11.71-1.417-.007-2.31-.264-1.032-.296-1.61-.546-2.7-1.105zm.979-6.691c.91.201-.046.961.236 2.329.312 1.516-2.047 0-1.826 2.171.149 1.464-1.865 1.973-2.019.507-.154-1.464 1.045-2.254.385-3.394-1.578-2.731 3.224-1.613 3.224-1.613z"/><path d="M15.356 15.875l3.083 1.158-1.156 3.084s-4.55-1.004-5.259-2.113c-.709-1.111.602-2.729.602-2.729l2.73.6z"/><path fill="#0B0200" d="M19.967 7.55c.808.668.57-.862 0-1.335-.806-.667-2.418-.668-3.224 0-.806.667-.806 2.003 0 2.67.57.472.806 1.335.806 0s.807 0 .807-.667c-.001-.668 1.611-.668 1.611-.668z"/><path fill="#C1694F" d="M2 17h32s0 2-1 7c-.86 4.302-21 1-24.601 0C5.316 23.144 2 17 2 17z"/><path fill="#F4900C" d="M35 18c0 .553-.447 1-1 1H2c-.552 0-1-.447-1-1 0-.553.448-1 1-1h32c.553 0 1 .447 1 1z"/><path fill="#55ACEE" d="M0 24h36v12H0z"/><path fill="#FFAC33" d="M12 27c-.256 0-.512-.098-.707-.293-.391-.391-.391-1.023 0-1.414l11-11c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-11.001 11c-.195.195-.451.293-.706.293z"/><path fill="#FFCC4D" d="M11 29c-.512 0-1.024-.195-1.414-.586-.781-.781-.781-2.047 0-2.828l3-3c.78-.781 2.048-.781 2.828 0 .781.781.781 2.047 0 2.828l-3 3c-.391.391-.903.586-1.414.586z"/><path fill="#77B255" d="M20.233 12.407s-.563-.683-.678-.856c-.482-.732-.833-1.126-1.568-1.288-1.287-.284-2.912.308-4.222 1.927-.829 1.024-.947 2.174-2.259 3.794 0 0 4.199.447 4.754.092.556-.354.758-1.265.959-2.174.2-.91.671-1.255 1.04-.71.24.354.728.624.728.624l1.246-1.409z"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path d="M15.356 15.875l3.083 1.158-1.156 3.084s-4.55-1.004-5.259-2.113c-.709-1.111.602-2.729.602-2.729l2.73.6z"/><path fill="#C1694F" d="M2 17h32s0 2-1 7c-.86 4.302-21 1-24.601 0C5.316 23.144 2 17 2 17z"/><path fill="#F4900C" d="M35 18c0 .553-.447 1-1 1H2c-.552 0-1-.447-1-1 0-.553.448-1 1-1h32c.553 0 1 .447 1 1z"/><path fill="#55ACEE" d="M0 23.933V34c0 1.105.895 2 2 2h32c1.105 0 2-.895 2-2v-9.637c0-.637-.585-1.097-1.21-.976-11.333 2.19-22.667-2.809-34-.439-.461.096-.79.514-.79.985z"/><path fill="#1C6399" d="M24.646 13.533c-.171-.171-.448-.171-.619 0l-8.031 8.031c-2.225 2.224-2.691.599-5.033 2.941l-3.231 3.231c-.2.199-.199.523 0 .723l.994.994.994.994c.2.2.523.2.722 0l3.231-3.231c2.342-2.342.717-2.809 2.941-5.033l8.031-8.031c.172-.171.172-.448.001-.619z"/><path fill="#7C533E" d="M17.028 9.229c-.176-.21-.314-.46-.388-.773-.265-1.118.345-2.22 1.362-2.461 1.017-.241 2.447.464 2.46 1.613.013 1.141-.556 2.847-1.522 2.6-.255-.065-.51-.138-.754-.228-.098.125-.153.592-.096.987.147 1.008-1.245 1.167-1.391.157-.116-.798.365-1.327.329-1.895z"/><path fill="#0B0200" d="M19.947 6.183c-1.426-.8-2.352-.616-3.1.042-.743.653-.726 1.824-.477 2.559.249.735.464.684.464.684s1.04.186 1.072-.772c.01-.303-.333-.45.011-.91.222-.296.752-.178.773.233.022.411.228.324.228.324l.567-1.117s.531-.055.85.42c.202.298.857-.764-.388-1.463z"/><path fill="#7C533E" d="M24.229 14.008l-.118-.118c-.271-.28-.494-.141-.642-.049-.064.04-.126.078-.172.078h-.004c-.178-.025-2.298-.865-2.562-1.116-.072-.069-.182-.192-.321-.348-.399-.449-1.004-1.126-1.621-1.538-.484-.323-.858-.319-1.086-.26-.277.071-.515.266-.655.534-.315.605-.131 1.283.447 1.647 1.135.716 2.013 1.25 2.539 1.542.41.227 1.505.465 2.229.624.248.054.482.105.526.123.079.032.188.141.292.247.163.165.331.333.502.333.017 0 .033-.001.051-.005.267-.055.513-.419.783-.854.252-.403.067-.586-.188-.84z"/><path fill="#77B255" d="M19.556 11.55c-.482-.732-.833-1.126-1.568-1.288-1.287-.284-2.912.308-4.222 1.927-.829 1.024-.947 2.174-2.259 3.794 0 0 4.199.447 4.754.092.556-.354.758-1.265.959-2.174.106-.482.288-.806.491-.922.426.358 1.277.837 1.277.837l1.306-1.507c0 .001-.525-.587-.738-.759z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f6a3-1f3ff.svg b/public/emoji/1f6a3-1f3ff.svg
index 43ecec5d8d28c4fbd8e7514be1b8b58e22dcc02a..d461a41035b293164134da6f280e17903c27129e 100644
--- a/public/emoji/1f6a3-1f3ff.svg
+++ b/public/emoji/1f6a3-1f3ff.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#7C533E" d="M18.988 13.816l1.245-1.41c.942.928 2.453 1.492 2.959 1.166.556-.353 1.916.904.806 1.613-1.11.71-1.417-.007-2.31-.264-1.032-.296-1.61-.546-2.7-1.105zm.979-6.691c.91.201-.046.961.236 2.329.312 1.516-2.047 0-1.826 2.171.149 1.464-1.865 1.973-2.019.507-.154-1.464 1.045-2.254.385-3.394-1.578-2.731 3.224-1.613 3.224-1.613z"/><path d="M15.356 15.875l3.083 1.158-1.156 3.084s-4.55-1.004-5.259-2.113c-.709-1.111.602-2.729.602-2.729l2.73.6z"/><path fill="#0B0200" d="M19.967 7.55c.808.668.57-.862 0-1.335-.806-.667-2.418-.668-3.224 0-.806.667-.806 2.003 0 2.67.57.472.806 1.335.806 0s.807 0 .807-.667c-.001-.668 1.611-.668 1.611-.668z"/><path fill="#C1694F" d="M2 17h32s0 2-1 7c-.86 4.302-21 1-24.601 0C5.316 23.144 2 17 2 17z"/><path fill="#F4900C" d="M35 18c0 .553-.447 1-1 1H2c-.552 0-1-.447-1-1 0-.553.448-1 1-1h32c.553 0 1 .447 1 1z"/><path fill="#55ACEE" d="M0 24h36v12H0z"/><path fill="#FFAC33" d="M12 27c-.256 0-.512-.098-.707-.293-.391-.391-.391-1.023 0-1.414l11-11c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-11.001 11c-.195.195-.451.293-.706.293z"/><path fill="#FFCC4D" d="M11 29c-.512 0-1.024-.195-1.414-.586-.781-.781-.781-2.047 0-2.828l3-3c.78-.781 2.048-.781 2.828 0 .781.781.781 2.047 0 2.828l-3 3c-.391.391-.903.586-1.414.586z"/><path fill="#77B255" d="M20.233 12.407s-.563-.683-.678-.856c-.482-.732-.833-1.126-1.568-1.288-1.287-.284-2.912.308-4.222 1.927-.829 1.024-.947 2.174-2.259 3.794 0 0 4.199.447 4.754.092.556-.354.758-1.265.959-2.174.2-.91.671-1.255 1.04-.71.24.354.728.624.728.624l1.246-1.409z"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path d="M15.356 15.875l3.083 1.158-1.156 3.084s-4.55-1.004-5.259-2.113c-.709-1.111.602-2.729.602-2.729l2.73.6z"/><path fill="#C1694F" d="M2 17h32s0 2-1 7c-.86 4.302-21 1-24.601 0C5.316 23.144 2 17 2 17z"/><path fill="#F4900C" d="M35 18c0 .553-.447 1-1 1H2c-.552 0-1-.447-1-1 0-.553.448-1 1-1h32c.553 0 1 .447 1 1z"/><path fill="#55ACEE" d="M0 23.933V34c0 1.105.895 2 2 2h32c1.105 0 2-.895 2-2v-9.637c0-.637-.585-1.097-1.21-.976-11.333 2.19-22.667-2.809-34-.439-.461.096-.79.514-.79.985z"/><path fill="#1C6399" d="M24.646 13.533c-.171-.171-.448-.171-.619 0l-8.031 8.031c-2.225 2.224-2.691.599-5.033 2.941l-3.231 3.231c-.2.199-.199.523 0 .723l.994.994.994.994c.2.2.523.2.722 0l3.231-3.231c2.342-2.342.717-2.809 2.941-5.033l8.031-8.031c.172-.171.172-.448.001-.619z"/><path fill="#7C533E" d="M17.028 9.229c-.176-.21-.314-.46-.388-.773-.265-1.118.345-2.22 1.362-2.461 1.017-.241 2.447.464 2.46 1.613.013 1.141-.556 2.847-1.522 2.6-.255-.065-.51-.138-.754-.228-.098.125-.153.592-.096.987.147 1.008-1.245 1.167-1.391.157-.116-.798.365-1.327.329-1.895z"/><path fill="#0B0200" d="M19.947 6.183c-1.426-.8-2.352-.616-3.1.042-.743.653-.726 1.824-.477 2.559.249.735.464.684.464.684s1.04.186 1.072-.772c.01-.303-.333-.45.011-.91.222-.296.752-.178.773.233.022.411.228.324.228.324l.567-1.117s.531-.055.85.42c.202.298.857-.764-.388-1.463z"/><path fill="#7C533E" d="M24.229 14.008l-.118-.118c-.271-.28-.494-.141-.642-.049-.064.04-.126.078-.172.078h-.004c-.178-.025-2.298-.865-2.562-1.116-.072-.069-.182-.192-.321-.348-.399-.449-1.004-1.126-1.621-1.538-.484-.323-.858-.319-1.086-.26-.277.071-.515.266-.655.534-.315.605-.131 1.283.447 1.647 1.135.716 2.013 1.25 2.539 1.542.41.227 1.505.465 2.229.624.248.054.482.105.526.123.079.032.188.141.292.247.163.165.331.333.502.333.017 0 .033-.001.051-.005.267-.055.513-.419.783-.854.252-.403.067-.586-.188-.84z"/><path fill="#77B255" d="M19.556 11.55c-.482-.732-.833-1.126-1.568-1.288-1.287-.284-2.912.308-4.222 1.927-.829 1.024-.947 2.174-2.259 3.794 0 0 4.199.447 4.754.092.556-.354.758-1.265.959-2.174.106-.482.288-.806.491-.922.426.358 1.277.837 1.277.837l1.306-1.507c0 .001-.525-.587-.738-.759z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f6a3-200d-2640-fe0f.svg b/public/emoji/1f6a3-200d-2640-fe0f.svg
index 06d1b2f052f2bade9ad485f76b4cb5a041d3ce0b..8e0c5adc3c46d0b4ccdbf6dcb29fdd7986f53f20 100644
--- a/public/emoji/1f6a3-200d-2640-fe0f.svg
+++ b/public/emoji/1f6a3-200d-2640-fe0f.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#FFDC5D" d="M16.631 10.798c.15-1.054 1.129-1.397.867-2.313-.627-2.193 2.545-.565 2.545-.565.603.301-1.152 2.123-1.152 2.123s-.604-.301-.753.754c-.149 1.055-1.656 1.057-1.507.001z"/><path d="M15.356 15.875l3.083 1.158-1.156 3.084s-4.55-1.004-5.259-2.113c-.709-1.111.602-2.729.602-2.729l2.73.6z"/><path fill="#9266CC" d="M20.233 12.407s-.563-.683-.678-.856c-.482-.732-.833-1.126-1.568-1.288-1.287-.284-2.912.308-4.222 1.927-.829 1.024-.947 2.174-2.259 3.794 0 0 4.199.447 4.754.092.556-.354.758-1.265.959-2.174.2-.91.671-1.255 1.04-.71.24.354.728.624.728.624l1.246-1.409z"/><path fill="#FFDC5D" d="M18.988 13.816l1.245-1.41c.942.928 2.453 1.492 2.959 1.166.556-.353 1.916.904.806 1.613-1.11.71-1.417-.007-2.31-.264-1.032-.296-1.61-.546-2.7-1.105z"/><path fill="#C1694F" d="M2 17h32s0 2-1 7c-.86 4.302-21 1-24.601 0C5.316 23.144 2 17 2 17z"/><path fill="#F4900C" d="M35 18c0 .553-.447 1-1 1H2c-.552 0-1-.447-1-1 0-.553.448-1 1-1h32c.553 0 1 .447 1 1z"/><path fill="#55ACEE" d="M0 24h36v12H0z"/><path fill="#FFAC33" d="M12 27c-.256 0-.512-.098-.707-.293-.391-.391-.391-1.023 0-1.414l11-11c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-11.001 11c-.195.195-.451.293-.706.293z"/><path fill="#FFCC4D" d="M11 29c-.512 0-1.024-.195-1.414-.586-.781-.781-.781-2.047 0-2.828l3-3c.78-.781 2.048-.781 2.828 0 .781.781.781 2.047 0 2.828l-3 3c-.391.391-.903.586-1.414.586z"/><path fill="#FFDC5D" d="M18.615 5.87c1.205.031 2.156 1.033 2.125 2.238-.031 1.205-1.033 2.156-2.238 2.125-1.205-.031-2.156-1.033-2.125-2.237.031-1.206 1.033-2.157 2.238-2.126z"/><path fill="#FFAC33" d="M14.115 8.48c.568-.028 1.117-.092 2.056-1.302.624-.804 1.207-1.32 2.649-1.307 1.531.014 2.814 1.317 1.831 1.969-.429.284-.788.149-1.476.342-1.081.303-1.245 1.453-2.221 1.711-1.912.505-3.407-1.386-2.839-1.413z"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path d="M15.356 15.875l3.083 1.158-1.156 3.084s-4.55-1.004-5.259-2.113c-.709-1.111.602-2.729.602-2.729l2.73.6z"/><path fill="#C1694F" d="M2 17h32s0 2-1 7c-.86 4.302-21 1-24.601 0C5.316 23.144 2 17 2 17z"/><path fill="#F4900C" d="M35 18c0 .553-.447 1-1 1H2c-.552 0-1-.447-1-1 0-.553.448-1 1-1h32c.553 0 1 .447 1 1z"/><path fill="#55ACEE" d="M0 23.933V34c0 1.105.895 2 2 2h32c1.105 0 2-.895 2-2v-9.637c0-.637-.585-1.097-1.21-.976-11.333 2.19-22.667-2.809-34-.439-.461.096-.79.514-.79.985z"/><path fill="#1C6399" d="M24.646 13.533c-.171-.171-.448-.171-.619 0l-8.031 8.031c-2.225 2.224-2.691.599-5.033 2.941l-3.231 3.231c-.2.199-.199.523 0 .723l.994.994.994.994c.2.2.523.2.722 0l3.231-3.231c2.342-2.342.717-2.809 2.941-5.033l8.031-8.031c.172-.171.172-.448.001-.619z"/><path fill="#FFDC5D" d="M17.028 9.229c-.176-.21-.314-.46-.388-.773-.265-1.118.345-2.22 1.362-2.461 1.017-.241 2.447.464 2.46 1.613.013 1.141-.556 2.847-1.522 2.6-.255-.065-.51-.138-.754-.228-.098.125-.153.592-.096.987.147 1.008-1.245 1.167-1.391.157-.116-.798.365-1.327.329-1.895z"/><path fill="#FFAC33" d="M13.809 8.258c.568-.028 1.117-.092 2.056-1.302.624-.804 1.207-1.32 2.649-1.307 1.531.014 2.814 1.317 1.831 1.969-.429.284-.788.149-1.476.342-1.081.303-1.245 1.453-2.221 1.711-1.912.506-3.406-1.385-2.839-1.413z"/><path fill="#FFDC5D" d="M24.039 13.96c-.331-.341-.519.068-.754.058-.139-.006-2.338-.872-2.623-1.143-.285-.271-1.105-1.326-1.929-1.875-.824-.549-1.384-.171-1.597.237-.282.541-.146 1.165.412 1.517.397.25 1.755 1.106 2.535 1.54.561.311 2.569.67 2.744.741.236.095.555.618.787.57.232-.048.479-.425.719-.809.239-.385.037-.495-.294-.836z"/><path fill="#9266CC" d="M20.25 12.366l-.738-.759c-.482-.732-.789-1.183-1.524-1.344-1.287-.284-2.912.308-4.222 1.927-.829 1.024-.947 2.174-2.259 3.794 0 0 4.444.604 4.552.092.137-.653.753-1.253 1.055-2.174.78-.345.86-.869.88-.855.447.326 1.073.678 1.073.678l1.183-1.359z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f6a3-200d-2642-fe0f.svg b/public/emoji/1f6a3-200d-2642-fe0f.svg
index c426a2ea56e6b3d5d9831281156b69c4447a7802..d62822936888cf4e54682e819892343912aaa23e 100644
--- a/public/emoji/1f6a3-200d-2642-fe0f.svg
+++ b/public/emoji/1f6a3-200d-2642-fe0f.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#FFDC5D" d="M18.988 13.816l1.245-1.41c.942.928 2.453 1.492 2.959 1.166.556-.353 1.916.904.806 1.613-1.11.71-1.417-.007-2.31-.264-1.032-.296-1.61-.546-2.7-1.105zm.979-6.691c.91.201-.046.961.236 2.329.312 1.516-2.047 0-1.826 2.171.149 1.464-1.865 1.973-2.019.507-.154-1.464 1.045-2.254.385-3.394-1.578-2.731 3.224-1.613 3.224-1.613z"/><path d="M15.356 15.875l3.083 1.158-1.156 3.084s-4.55-1.004-5.259-2.113c-.709-1.111.602-2.729.602-2.729l2.73.6z"/><path fill="#FFAC33" d="M19.967 7.55c.808.668.57-.862 0-1.335-.806-.667-2.418-.668-3.224 0-.806.667-.806 2.003 0 2.67.57.472.806 1.335.806 0s.807 0 .807-.667c-.001-.668 1.611-.668 1.611-.668z"/><path fill="#C1694F" d="M2 17h32s0 2-1 7c-.86 4.302-21 1-24.601 0C5.316 23.144 2 17 2 17z"/><path fill="#F4900C" d="M35 18c0 .553-.447 1-1 1H2c-.552 0-1-.447-1-1 0-.553.448-1 1-1h32c.553 0 1 .447 1 1z"/><path fill="#55ACEE" d="M0 24h36v12H0z"/><path fill="#FFAC33" d="M12 27c-.256 0-.512-.098-.707-.293-.391-.391-.391-1.023 0-1.414l11-11c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-11.001 11c-.195.195-.451.293-.706.293z"/><path fill="#FFCC4D" d="M11 29c-.512 0-1.024-.195-1.414-.586-.781-.781-.781-2.047 0-2.828l3-3c.78-.781 2.048-.781 2.828 0 .781.781.781 2.047 0 2.828l-3 3c-.391.391-.903.586-1.414.586z"/><path fill="#77B255" d="M20.233 12.407s-.563-.683-.678-.856c-.482-.732-.833-1.126-1.568-1.288-1.287-.284-2.912.308-4.222 1.927-.829 1.024-.947 2.174-2.259 3.794 0 0 4.199.447 4.754.092.556-.354.758-1.265.959-2.174.2-.91.671-1.255 1.04-.71.24.354.728.624.728.624l1.246-1.409z"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path d="M15.356 15.875l3.083 1.158-1.156 3.084s-4.55-1.004-5.259-2.113c-.709-1.111.602-2.729.602-2.729l2.73.6z"/><path fill="#C1694F" d="M2 17h32s0 2-1 7c-.86 4.302-21 1-24.601 0C5.316 23.144 2 17 2 17z"/><path fill="#F4900C" d="M35 18c0 .553-.447 1-1 1H2c-.552 0-1-.447-1-1 0-.553.448-1 1-1h32c.553 0 1 .447 1 1z"/><path fill="#55ACEE" d="M0 23.933V34c0 1.105.895 2 2 2h32c1.105 0 2-.895 2-2v-9.637c0-.637-.585-1.097-1.21-.976-11.333 2.19-22.667-2.809-34-.439-.461.096-.79.514-.79.985z"/><path fill="#1C6399" d="M24.646 13.533c-.171-.171-.448-.171-.619 0l-8.031 8.031c-2.225 2.224-2.691.599-5.033 2.941l-3.231 3.231c-.2.199-.199.523 0 .723l.994.994.994.994c.2.2.523.2.722 0l3.231-3.231c2.342-2.342.717-2.809 2.941-5.033l8.031-8.031c.172-.171.172-.448.001-.619z"/><path fill="#FFDC5D" d="M17.028 9.229c-.176-.21-.314-.46-.388-.773-.265-1.118.345-2.22 1.362-2.461 1.017-.241 2.447.464 2.46 1.613.013 1.141-.556 2.847-1.522 2.6-.255-.065-.51-.138-.754-.228-.098.125-.153.592-.096.987.147 1.008-1.245 1.167-1.391.157-.116-.798.365-1.327.329-1.895z"/><path fill="#FFAC33" d="M19.947 6.183c-1.426-.8-2.352-.616-3.1.042-.743.653-.726 1.824-.477 2.559.249.735.464.684.464.684s1.04.186 1.072-.772c.01-.303-.333-.45.011-.91.222-.296.752-.178.773.233.022.411.228.324.228.324l.567-1.117s.531-.055.85.42c.202.298.857-.764-.388-1.463z"/><path fill="#FFDC5D" d="M24.229 14.008l-.118-.118c-.271-.28-.494-.141-.642-.049-.064.04-.126.078-.172.078h-.004c-.178-.025-2.298-.865-2.562-1.116-.072-.069-.182-.192-.321-.348-.399-.449-1.004-1.126-1.621-1.538-.484-.323-.858-.319-1.086-.26-.277.071-.515.266-.655.534-.315.605-.131 1.283.447 1.647 1.135.716 2.013 1.25 2.539 1.542.41.227 1.505.465 2.229.624.248.054.482.105.526.123.079.032.188.141.292.247.163.165.331.333.502.333.017 0 .033-.001.051-.005.267-.055.513-.419.783-.854.252-.403.067-.586-.188-.84z"/><path fill="#77B255" d="M19.556 11.55c-.482-.732-.833-1.126-1.568-1.288-1.287-.284-2.912.308-4.222 1.927-.829 1.024-.947 2.174-2.259 3.794 0 0 4.199.447 4.754.092.556-.354.758-1.265.959-2.174.106-.482.288-.806.491-.922.426.358 1.277.837 1.277.837l1.306-1.507c0 .001-.525-.587-.738-.759z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f6a3.svg b/public/emoji/1f6a3.svg
index c426a2ea56e6b3d5d9831281156b69c4447a7802..d62822936888cf4e54682e819892343912aaa23e 100644
--- a/public/emoji/1f6a3.svg
+++ b/public/emoji/1f6a3.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#FFDC5D" d="M18.988 13.816l1.245-1.41c.942.928 2.453 1.492 2.959 1.166.556-.353 1.916.904.806 1.613-1.11.71-1.417-.007-2.31-.264-1.032-.296-1.61-.546-2.7-1.105zm.979-6.691c.91.201-.046.961.236 2.329.312 1.516-2.047 0-1.826 2.171.149 1.464-1.865 1.973-2.019.507-.154-1.464 1.045-2.254.385-3.394-1.578-2.731 3.224-1.613 3.224-1.613z"/><path d="M15.356 15.875l3.083 1.158-1.156 3.084s-4.55-1.004-5.259-2.113c-.709-1.111.602-2.729.602-2.729l2.73.6z"/><path fill="#FFAC33" d="M19.967 7.55c.808.668.57-.862 0-1.335-.806-.667-2.418-.668-3.224 0-.806.667-.806 2.003 0 2.67.57.472.806 1.335.806 0s.807 0 .807-.667c-.001-.668 1.611-.668 1.611-.668z"/><path fill="#C1694F" d="M2 17h32s0 2-1 7c-.86 4.302-21 1-24.601 0C5.316 23.144 2 17 2 17z"/><path fill="#F4900C" d="M35 18c0 .553-.447 1-1 1H2c-.552 0-1-.447-1-1 0-.553.448-1 1-1h32c.553 0 1 .447 1 1z"/><path fill="#55ACEE" d="M0 24h36v12H0z"/><path fill="#FFAC33" d="M12 27c-.256 0-.512-.098-.707-.293-.391-.391-.391-1.023 0-1.414l11-11c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-11.001 11c-.195.195-.451.293-.706.293z"/><path fill="#FFCC4D" d="M11 29c-.512 0-1.024-.195-1.414-.586-.781-.781-.781-2.047 0-2.828l3-3c.78-.781 2.048-.781 2.828 0 .781.781.781 2.047 0 2.828l-3 3c-.391.391-.903.586-1.414.586z"/><path fill="#77B255" d="M20.233 12.407s-.563-.683-.678-.856c-.482-.732-.833-1.126-1.568-1.288-1.287-.284-2.912.308-4.222 1.927-.829 1.024-.947 2.174-2.259 3.794 0 0 4.199.447 4.754.092.556-.354.758-1.265.959-2.174.2-.91.671-1.255 1.04-.71.24.354.728.624.728.624l1.246-1.409z"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path d="M15.356 15.875l3.083 1.158-1.156 3.084s-4.55-1.004-5.259-2.113c-.709-1.111.602-2.729.602-2.729l2.73.6z"/><path fill="#C1694F" d="M2 17h32s0 2-1 7c-.86 4.302-21 1-24.601 0C5.316 23.144 2 17 2 17z"/><path fill="#F4900C" d="M35 18c0 .553-.447 1-1 1H2c-.552 0-1-.447-1-1 0-.553.448-1 1-1h32c.553 0 1 .447 1 1z"/><path fill="#55ACEE" d="M0 23.933V34c0 1.105.895 2 2 2h32c1.105 0 2-.895 2-2v-9.637c0-.637-.585-1.097-1.21-.976-11.333 2.19-22.667-2.809-34-.439-.461.096-.79.514-.79.985z"/><path fill="#1C6399" d="M24.646 13.533c-.171-.171-.448-.171-.619 0l-8.031 8.031c-2.225 2.224-2.691.599-5.033 2.941l-3.231 3.231c-.2.199-.199.523 0 .723l.994.994.994.994c.2.2.523.2.722 0l3.231-3.231c2.342-2.342.717-2.809 2.941-5.033l8.031-8.031c.172-.171.172-.448.001-.619z"/><path fill="#FFDC5D" d="M17.028 9.229c-.176-.21-.314-.46-.388-.773-.265-1.118.345-2.22 1.362-2.461 1.017-.241 2.447.464 2.46 1.613.013 1.141-.556 2.847-1.522 2.6-.255-.065-.51-.138-.754-.228-.098.125-.153.592-.096.987.147 1.008-1.245 1.167-1.391.157-.116-.798.365-1.327.329-1.895z"/><path fill="#FFAC33" d="M19.947 6.183c-1.426-.8-2.352-.616-3.1.042-.743.653-.726 1.824-.477 2.559.249.735.464.684.464.684s1.04.186 1.072-.772c.01-.303-.333-.45.011-.91.222-.296.752-.178.773.233.022.411.228.324.228.324l.567-1.117s.531-.055.85.42c.202.298.857-.764-.388-1.463z"/><path fill="#FFDC5D" d="M24.229 14.008l-.118-.118c-.271-.28-.494-.141-.642-.049-.064.04-.126.078-.172.078h-.004c-.178-.025-2.298-.865-2.562-1.116-.072-.069-.182-.192-.321-.348-.399-.449-1.004-1.126-1.621-1.538-.484-.323-.858-.319-1.086-.26-.277.071-.515.266-.655.534-.315.605-.131 1.283.447 1.647 1.135.716 2.013 1.25 2.539 1.542.41.227 1.505.465 2.229.624.248.054.482.105.526.123.079.032.188.141.292.247.163.165.331.333.502.333.017 0 .033-.001.051-.005.267-.055.513-.419.783-.854.252-.403.067-.586-.188-.84z"/><path fill="#77B255" d="M19.556 11.55c-.482-.732-.833-1.126-1.568-1.288-1.287-.284-2.912.308-4.222 1.927-.829 1.024-.947 2.174-2.259 3.794 0 0 4.199.447 4.754.092.556-.354.758-1.265.959-2.174.106-.482.288-.806.491-.922.426.358 1.277.837 1.277.837l1.306-1.507c0 .001-.525-.587-.738-.759z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f6a5.svg b/public/emoji/1f6a5.svg
index 22c18e973cd0d9344fbe0d2bd590284842f1f7ce..6cb382717fd2785326bcbe221872c2f1b6738c30 100644
--- a/public/emoji/1f6a5.svg
+++ b/public/emoji/1f6a5.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#292F33" d="M36 23c0 2.209-1.791 4-4 4H4c-2.209 0-4-1.791-4-4V13c0-2.209 1.791-4 4-4h28c2.209 0 4 1.791 4 4v10z"/><circle fill="#77B255" cx="7" cy="18" r="4"/><circle fill="#FFCC4D" cx="18" cy="18" r="4"/><circle fill="#DD2E44" cx="29" cy="18" r="4"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#31373D" d="M36 23c0 2.209-1.791 4-4 4H4c-2.209 0-4-1.791-4-4V13c0-2.209 1.791-4 4-4h28c2.209 0 4 1.791 4 4v10z"/><circle fill="#77B255" cx="7" cy="18" r="4"/><circle fill="#FFCC4D" cx="18" cy="18" r="4"/><circle fill="#DD2E44" cx="29" cy="18" r="4"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f6a6.svg b/public/emoji/1f6a6.svg
index 927d3b4fdf5c7f35a8330c31b7c3dc33e6a32d62..252e85cc5c2c219840dd5f80b9c0d5a6c08cf868 100644
--- a/public/emoji/1f6a6.svg
+++ b/public/emoji/1f6a6.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#292F33" d="M27 32c0 2.209-1.791 4-4 4H13c-2.209 0-4-1.791-4-4V4c0-2.209 1.791-4 4-4h10c2.209 0 4 1.791 4 4v28z"/><path fill="#77B255" d="M17.999 25c2.209 0 4 1.791 4 4s-1.791 4-4 4-4-1.791-4-4 1.791-4 4-4z"/><path fill="#FFCC4D" d="M17.999 14c2.209 0 4 1.791 4 4s-1.791 4-4 4-4-1.791-4-4 1.791-4 4-4z"/><path fill="#DD2E44" d="M17.999 3c2.209 0 4 1.791 4 4s-1.791 4-4 4-4-1.791-4-4 1.791-4 4-4z"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#31373D" d="M27 32c0 2.209-1.791 4-4 4H13c-2.209 0-4-1.791-4-4V4c0-2.209 1.791-4 4-4h10c2.209 0 4 1.791 4 4v28z"/><path fill="#77B255" d="M17.999 25c2.209 0 4 1.791 4 4s-1.791 4-4 4-4-1.791-4-4 1.791-4 4-4z"/><path fill="#FFCC4D" d="M17.999 14c2.209 0 4 1.791 4 4s-1.791 4-4 4-4-1.791-4-4 1.791-4 4-4z"/><path fill="#DD2E44" d="M17.999 3c2.209 0 4 1.791 4 4s-1.791 4-4 4-4-1.791-4-4 1.791-4 4-4z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f6b6-1f3fb-200d-2640-fe0f.svg b/public/emoji/1f6b6-1f3fb-200d-2640-fe0f.svg
index bad4c3fc5c8f0b05dff2c782b7eb70b98415b86b..396c56b4e1b2604ce55774893a7da829da53b6ff 100644
--- a/public/emoji/1f6b6-1f3fb-200d-2640-fe0f.svg
+++ b/public/emoji/1f6b6-1f3fb-200d-2640-fe0f.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#F7DECE" d="M15.316 3.261C14.109 3.528 16.37 4.79 16 6c-.252.838.225 0 1 0 0 0 .627 1.283.423 3.226-.207 1.94 2.472 2.616 2.677.673.204-1.941-1.385-2.988-.511-4.5 2.092-3.619-4.273-2.138-4.273-2.138"/><path fill="#F7DECE" d="M22 4c0 2.209-1.791 4-4 4s-4-1.791-4-4 1.791-4 4-4 4 1.791 4 4"/><path fill="#292F33" d="M26.208 4.766c-1.037-.051-2.041-.169-3.756-2.378-1.14-1.469-2.205-2.412-4.84-2.387-2.798.026-5.141 2.407-3.346 3.598.783.52 1.44.273 2.698.625 1.975.553 2.274 2.654 4.059 3.125 3.491.922 6.222-2.532 5.185-2.583z"/><path fill="#EEC2AD" d="M23.696 20.993c-.553 0-1-.447-1-1 0-4.519-4.661-9.247-4.708-9.294-.39-.391-.389-1.024.001-1.414.391-.39 1.024-.389 1.413 0 .216.216 5.293 5.355 5.293 10.708.001.553-.447 1-.999 1z"/><path fill="#2A6797" d="M15.696 34.993c-1.104 0-2-.896-2-2v-7c0-.348.091-.69.264-.992l4-7c.548-.958 1.771-1.293 2.728-.744.959.548 1.292 1.769.744 2.729l-3.736 6.539v6.469c0 1.104-.896 1.999-2 1.999z"/><path fill="#4289C1" d="M24.697 31.993c-.587 0-1.168-.257-1.562-.751l-4-5c-.2-.249-.337-.543-.399-.856l-1-5c-.217-1.083.485-2.137 1.568-2.353 1.088-.219 2.138.486 2.354 1.568l.905 4.523 3.695 4.62c.69.862.551 2.121-.312 2.811-.37.295-.811.438-1.249.438z"/><path fill="#9268CA" d="M22.696 18.993s0 1-2 1h-4c-2-6-.359-12 2-12 3 0 3 4 4 9"/><path fill="#F7DECE" d="M17.696 11.99c0 .045-.066 4.552-3.6 7.203l.01.014c-.243.183-.41.459-.41.786 0 .553.448 1 1 1 .225 0 .423-.088.59-.214l.01.014c4.35-3.262 4.4-8.575 4.4-8.8l-2-.003z"/><path fill="#292F33" d="M27.877 31.048c.271-.271.16-.676-.129-.94-.463-.422-.672-.574-.672-.574-.255-.168-.873-.418-1.13-.161-1.872 1.865-3.304 4.53-3.356 5.459-.031.548.645.855 1.029.471l4.258-4.255zm-10.266 4.855c.383.003.594-.361.578-.753-.025-.626-.064-.882-.064-.882-.059-.3-.316-.915-.68-.918-2.642-.023-5.545.83-6.243 1.446-.412.363-.156 1.06.388 1.063l6.021.044z"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#292F33" d="M18.011 34.975l-.052.016c.018-.068.042-.19.042-.383 0-.303-.156-.869-.199-.95s-.09-.139-.194-.11c-.079.022-.685.326-1.072.341-.719.027-1.066-.618-1.066-.618s-.399.228-.716.413c-.318.185-.687.462-.959.627-.232.141-.497.208-.771.243s-.497.023-.563.029c-.066.006-.621-.061-.641.488l.003.127-.054-.026s-.048.17-.052.202c-.004.033-.024.052.046.096.07.044.378.176.77.274s1.028.243 1.519.243.909-.098 1.151-.156c.243-.058.763-.169.813-.146.05.023.116.191.173.243.058.052 1.61-.081 1.721-.104.112-.023.146-.119.146-.162v-.649c.002-.027-.021-.045-.045-.038zm10.947-3.752l-.504-.429c-.019-.016-.048-.011-.059.012l-.022.051c-.041-.059-.12-.158-.269-.285-.235-.2-.777-.454-.868-.473-.091-.02-.167-.022-.213.077-.035.076-.199.746-.444 1.056-.454.575-1.184.418-1.184.418l-.153.828c-.067.368-.096.838-.148 1.158-.044.273-.167.523-.322.758-.154.236-.31.4-.35.456-.039.055-.457.441-.045.82l.101.081-.055.025s.1.149.122.174c.022.025.025.053.104.028s.386-.177.721-.416c.336-.24.868-.637 1.192-1.018.325-.381.524-.77.64-.996.116-.226.373-.703.424-.727.051-.024.224.036.303.026.078-.01 1.001-1.302 1.057-1.403s.005-.193-.028-.221z"/><path fill="#EEC2AD" d="M19.3 12.243c.927.96 3.062 2.89 3.109 3.121.251 1.223.614 2.606.52 3.454-.068.615.376 1.298.551 1.583.218.354.781.898 1.141.86.224-.023.567-.43.384-.636-.357-.4-.298-1.009-.522-1.559-.449-1.105-.045-3.194-.661-4.563-.256-.567-.733-1.693-2.824-3.626-.511.462-1.698 1.366-1.698 1.366z"/><path fill="#F7DECE" d="M19.005 1.384c-1.593-.627-4.077.182-4.365 2.043-.287 1.848.239 4.747 1.863 4.572 1.702-.184 3.448-.554 4.138-2.307s-.043-3.681-1.636-4.308z"/><path fill="#F7DECE" d="M20.189 6.143c2.318-2.723-3.266-2.458-3.266-2.458-1.057.038-.329 1.799-.827 2.761-.341.665 1.095 1.018 1.095 1.018s.659-.01.694.79v.007c.008.204-.013.445-.108.769-.473 1.601 1.677 2.582 2.149.978.187-.635.114-1.193.02-1.708l-.009-.046c-.144-.766-.322-1.437.252-2.111z"/><path fill="#292F33" d="M20.825 2.026c-1.061-1.242-2.52-1.757-5.019-.791-2.183.844-1.481 2.579-.972 2.282 1.402-.817 2.332-.119 3.046 1.021.208-.56 1.122-.904 1.307-.085.208.921-.647 1.322-.533 1.573.038.084-.043-.076 0 0 .547.96 1.437 1.262 1.437 1.262s.337.132.912-1.001.876-3.028-.178-4.261z"/><path fill="#292F33" d="M20.251 3.332c2.163.467 1.275 3.839 1.487 5.08.261 1.528 1.761 1.582 1.761 1.582s-.247-1.064-.116-2.177c.183-1.543 1.189-2.789.127-4.296-1.355-1.924-4.604-.479-3.259-.189z"/><path fill="#2A6797" d="M16.062 34.203c-1.266.109-1.853-.233-1.721-.416.165-.228.128-.397.13-.536C14.499 30.81 14 27.26 14 27.26c0-.348.003-.813.312-1.562.778-1.883 3.951-7.69 3.951-7.69.548-.958 1.771-1.293 2.729-.744.959.548 1.122 1.405.744 2.729-.715 2.508-2.965 5.602-3.903 7.477.224 2.121-.174 3.853.035 5.857.03.288-.54.767-1.806.876z"/><path fill="#4289C1" d="M26.797 31.931c-.364.553-.97.942-1.598.838-1.269-1.924-4.955-5.321-4.955-5.321-.241-.25-.562-.587-.86-1.341-.748-1.895-2.498-8.277-2.498-8.277-.272-1.07.376-2.16 1.446-2.43 1.07-.272 1.783.232 2.43 1.446 1.227 2.301 1.757 6.09 2.384 8.09 1.87 1.568 2.383 3.603 4.275 5.151-.065.857-.26 1.291-.624 1.844z"/><path fill="#9268CA" d="M23 20s0 1-2 1h-4.898c-.415-2 .554-3.818-.102-6.5-.848-3.46 2.406-6.874 3.818-6.42 1.846.594 2.693 2.641 2.932 5.858S23 20 23 20z"/><path fill="#F7DECE" d="M17.75 11.792c-.167 1.399-.322 4.433-.479 4.625-.833 1.021-1.722 2.24-2.479 2.729-.549.354-.811 1.174-.927 1.507-.144.414-.213 1.238.057 1.507.169.168.73.177.776-.11.09-.559.626-.917.927-1.467.604-1.104 2.583-2.167 3.292-3.584.294-.588.896-1.729 1.083-4.729-.72-.11-2.25-.478-2.25-.478z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f6b6-1f3fb-200d-2642-fe0f.svg b/public/emoji/1f6b6-1f3fb-200d-2642-fe0f.svg
index 1f483bba8fcbca7ed6354d40707718438c30ceff..8f5f4ce23480dbb19c2fca7592c373d91394c448 100644
--- a/public/emoji/1f6b6-1f3fb-200d-2642-fe0f.svg
+++ b/public/emoji/1f6b6-1f3fb-200d-2642-fe0f.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#F7DECE" d="M20.567 5.975c.929-1.996.212-4.298-1.602-5.143-1.814-.845-4.769-.077-5.238 2.073-.466 2.136-.03 5.389 1.877 5.299.527-.025 1.057-.067 1.571-.149.067.25.052.761-.043 1.246-.369 1.864 2.171 2.751 2.539.883.214-1.093-.195-1.942-.373-2.737.516-.343.96-.808 1.269-1.472z"/><path fill="#292F33" d="M21.043 1.71C19.894.186 18.228-.519 15.243.431c-2.607.829-1.788 3.076-1.297 2.594.782-.768 1.757-.458 1.757-.458l.632 2.315s.353.242.553-.52c.199-.762 1.239-.778 1.541-.137.469.996-.233 1.139-.331 1.711-.31 1.81 1.713 1.864 1.713 1.864s.383.178 1.135-1.103c.753-1.283 1.238-3.473.097-4.987z"/><path fill="#EEC2AD" d="M23.696 20.993c-.553 0-1-.447-1-1 0-4.52-4.661-9.247-4.707-9.294-.39-.391-.389-1.024.001-1.414.391-.39 1.023-.389 1.413.001.216.216 5.293 5.355 5.293 10.708 0 .552-.447.999-1 .999z"/><path fill="#2A6797" d="M15.696 34.993c-1.104 0-2-.896-2-2v-7c0-.348.091-.69.264-.992l4-7c.548-.958 1.771-1.293 2.729-.744.959.548 1.292 1.77.744 2.729l-3.736 6.539v6.469c-.001 1.104-.897 1.999-2.001 1.999z"/><path fill="#4289C1" d="M24.697 31.993c-.587 0-1.168-.257-1.562-.751l-4-5c-.2-.249-.337-.543-.399-.856l-1-5c-.217-1.083.485-2.137 1.568-2.354 1.088-.219 2.138.486 2.354 1.568l.905 4.524 3.695 4.62c.691.862.551 2.121-.312 2.811-.369.295-.811.438-1.249.438z"/><path fill="#77B255" d="M22.696 18.993s0 1-2 1h-4c-2-6-.359-12 2-12 3 0 3 4 4 9"/><path fill="#F7DECE" d="M17.696 11.991c0 .045-.066 4.552-3.6 7.203l.01.014c-.243.183-.41.459-.41.786 0 .553.448 1 1 1 .225 0 .423-.088.59-.214l.01.014c4.35-3.262 4.4-8.575 4.4-8.8l-2-.003z"/><path fill="#292F33" d="M27.878 31.049c.271-.271.16-.676-.129-.94-.463-.422-.672-.574-.672-.574-.255-.168-.873-.418-1.13-.161-1.872 1.865-3.304 4.53-3.356 5.459-.031.548.645.855 1.029.471 1.132-1.133 3.276-3.275 4.258-4.255zm-10.266 4.854c.383.003.594-.361.578-.753-.025-.626-.064-.882-.064-.882-.059-.3-.316-.915-.68-.918-2.642-.023-5.545.83-6.243 1.446-.412.363-.156 1.06.388 1.063 1.603.013 4.633.034 6.021.044z"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#292F33" d="M18.011 34.975l-.052.016c.018-.068.042-.19.042-.383 0-.303-.156-.869-.199-.95s-.09-.139-.194-.11c-.079.022-.685.326-1.072.341-.719.027-1.066-.618-1.066-.618s-.399.228-.716.413c-.318.185-.687.462-.959.627-.232.141-.497.208-.771.243s-.497.023-.563.029c-.066.006-.621-.061-.641.488l.003.127-.054-.026s-.048.17-.052.202c-.004.033-.024.052.046.096.07.044.378.176.77.274s1.028.243 1.519.243.909-.098 1.151-.156c.243-.058.763-.169.813-.146.05.023.116.191.173.243.058.052 1.61-.081 1.721-.104.112-.023.146-.119.146-.162v-.649c.002-.027-.021-.045-.045-.038zm10.947-3.752l-.504-.429c-.019-.016-.048-.011-.059.012l-.022.051c-.041-.059-.12-.158-.269-.285-.235-.2-.777-.454-.868-.473-.091-.02-.167-.022-.213.077-.035.076-.199.746-.444 1.056-.454.575-1.184.418-1.184.418l-.153.828c-.067.368-.096.838-.148 1.158-.044.273-.167.523-.322.758-.154.236-.31.4-.35.456-.039.055-.457.441-.045.82l.101.081-.055.025s.1.149.122.174c.022.025.025.053.104.028s.386-.177.721-.416c.336-.24.868-.637 1.192-1.018.325-.381.524-.77.64-.996.116-.226.373-.703.424-.727.051-.024.224.036.303.026.078-.01 1.001-1.302 1.057-1.403s.005-.193-.028-.221z"/><path fill="#EEC2AD" d="M19.3 12.243c.927.96 3.062 2.89 3.109 3.121.251 1.223.614 2.606.52 3.454-.068.615.376 1.298.551 1.583.218.354.781.898 1.141.86.224-.023.567-.43.384-.636-.357-.4-.298-1.009-.522-1.559-.449-1.105-.045-3.194-.661-4.563-.256-.567-.733-1.693-2.824-3.626-.511.462-1.698 1.366-1.698 1.366z"/><path fill="#F7DECE" d="M19.005 1.384c-1.593-.627-4.077.182-4.365 2.043-.287 1.848.239 4.747 1.863 4.572 1.702-.184 3.448-.554 4.138-2.307s-.043-3.681-1.636-4.308z"/><path fill="#F7DECE" d="M20.189 6.143c2.318-2.723-3.266-2.458-3.266-2.458-1.057.038-.329 1.799-.827 2.761-.341.665 1.095 1.018 1.095 1.018s.659-.01.694.79v.007c.008.204-.013.445-.108.769-.473 1.601 1.677 2.582 2.149.978.187-.635.114-1.193.02-1.708l-.009-.046c-.144-.766-.322-1.437.252-2.111z"/><path fill="#292F33" d="M20.825 2.026c-1.061-1.242-2.58-1.901-5.019-.791-.994.452-1.439.285-1.58.484-.679.953.246 2.01.608 1.799 1.148-.669 2.183-.47 2.447.014s.021 1.354.234 1.359c.579.015.485-.552.714-.878.375-.534.946-.232 1.071.362.099.471 0 1.271-.77 1.412.523 1.151 1.56 1.502 1.56 1.502s.337.132.912-1.001c.576-1.134.877-3.029-.177-4.262z"/><path fill="#2A6797" d="M16.062 34.203c-1.266.109-1.853-.233-1.721-.416.165-.228.128-.397.13-.536C14.499 30.81 14 27.26 14 27.26c0-.348.003-.813.312-1.562.778-1.883 3.951-7.69 3.951-7.69.548-.958 1.771-1.293 2.729-.744.959.548 1.122 1.405.744 2.729-.715 2.508-2.965 5.602-3.903 7.477.224 2.121-.174 3.853.035 5.857.03.288-.54.767-1.806.876z"/><path fill="#4289C1" d="M26.797 31.931c-.364.553-.97.942-1.598.838-1.269-1.924-4.955-5.321-4.955-5.321-.241-.25-.562-.587-.86-1.341-.748-1.895-2.498-8.277-2.498-8.277-.272-1.07.376-2.16 1.446-2.43 1.07-.272 1.783.232 2.43 1.446 1.227 2.301 1.757 6.09 2.384 8.09 1.87 1.568 2.383 3.603 4.275 5.151-.065.857-.26 1.291-.624 1.844z"/><path fill="#77B255" d="M23 20s0 1-2 1h-4.898c-.415-2-.027-5.004.006-7.765.043-3.623 2.298-5.609 3.71-5.155 1.846.594 2.693 2.641 2.932 5.858S23 20 23 20z"/><path fill="#F7DECE" d="M17.75 11.792c-.167 1.399-.322 4.433-.479 4.625-.833 1.021-1.722 2.24-2.479 2.729-.549.354-.811 1.174-.927 1.507-.144.414-.213 1.238.057 1.507.169.168.73.177.776-.11.09-.559.626-.917.927-1.467.604-1.104 2.583-2.167 3.292-3.584.294-.588.896-1.729 1.083-4.729-.72-.11-2.25-.478-2.25-.478z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f6b6-1f3fb.svg b/public/emoji/1f6b6-1f3fb.svg
index 1f483bba8fcbca7ed6354d40707718438c30ceff..8f5f4ce23480dbb19c2fca7592c373d91394c448 100644
--- a/public/emoji/1f6b6-1f3fb.svg
+++ b/public/emoji/1f6b6-1f3fb.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#F7DECE" d="M20.567 5.975c.929-1.996.212-4.298-1.602-5.143-1.814-.845-4.769-.077-5.238 2.073-.466 2.136-.03 5.389 1.877 5.299.527-.025 1.057-.067 1.571-.149.067.25.052.761-.043 1.246-.369 1.864 2.171 2.751 2.539.883.214-1.093-.195-1.942-.373-2.737.516-.343.96-.808 1.269-1.472z"/><path fill="#292F33" d="M21.043 1.71C19.894.186 18.228-.519 15.243.431c-2.607.829-1.788 3.076-1.297 2.594.782-.768 1.757-.458 1.757-.458l.632 2.315s.353.242.553-.52c.199-.762 1.239-.778 1.541-.137.469.996-.233 1.139-.331 1.711-.31 1.81 1.713 1.864 1.713 1.864s.383.178 1.135-1.103c.753-1.283 1.238-3.473.097-4.987z"/><path fill="#EEC2AD" d="M23.696 20.993c-.553 0-1-.447-1-1 0-4.52-4.661-9.247-4.707-9.294-.39-.391-.389-1.024.001-1.414.391-.39 1.023-.389 1.413.001.216.216 5.293 5.355 5.293 10.708 0 .552-.447.999-1 .999z"/><path fill="#2A6797" d="M15.696 34.993c-1.104 0-2-.896-2-2v-7c0-.348.091-.69.264-.992l4-7c.548-.958 1.771-1.293 2.729-.744.959.548 1.292 1.77.744 2.729l-3.736 6.539v6.469c-.001 1.104-.897 1.999-2.001 1.999z"/><path fill="#4289C1" d="M24.697 31.993c-.587 0-1.168-.257-1.562-.751l-4-5c-.2-.249-.337-.543-.399-.856l-1-5c-.217-1.083.485-2.137 1.568-2.354 1.088-.219 2.138.486 2.354 1.568l.905 4.524 3.695 4.62c.691.862.551 2.121-.312 2.811-.369.295-.811.438-1.249.438z"/><path fill="#77B255" d="M22.696 18.993s0 1-2 1h-4c-2-6-.359-12 2-12 3 0 3 4 4 9"/><path fill="#F7DECE" d="M17.696 11.991c0 .045-.066 4.552-3.6 7.203l.01.014c-.243.183-.41.459-.41.786 0 .553.448 1 1 1 .225 0 .423-.088.59-.214l.01.014c4.35-3.262 4.4-8.575 4.4-8.8l-2-.003z"/><path fill="#292F33" d="M27.878 31.049c.271-.271.16-.676-.129-.94-.463-.422-.672-.574-.672-.574-.255-.168-.873-.418-1.13-.161-1.872 1.865-3.304 4.53-3.356 5.459-.031.548.645.855 1.029.471 1.132-1.133 3.276-3.275 4.258-4.255zm-10.266 4.854c.383.003.594-.361.578-.753-.025-.626-.064-.882-.064-.882-.059-.3-.316-.915-.68-.918-2.642-.023-5.545.83-6.243 1.446-.412.363-.156 1.06.388 1.063 1.603.013 4.633.034 6.021.044z"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#292F33" d="M18.011 34.975l-.052.016c.018-.068.042-.19.042-.383 0-.303-.156-.869-.199-.95s-.09-.139-.194-.11c-.079.022-.685.326-1.072.341-.719.027-1.066-.618-1.066-.618s-.399.228-.716.413c-.318.185-.687.462-.959.627-.232.141-.497.208-.771.243s-.497.023-.563.029c-.066.006-.621-.061-.641.488l.003.127-.054-.026s-.048.17-.052.202c-.004.033-.024.052.046.096.07.044.378.176.77.274s1.028.243 1.519.243.909-.098 1.151-.156c.243-.058.763-.169.813-.146.05.023.116.191.173.243.058.052 1.61-.081 1.721-.104.112-.023.146-.119.146-.162v-.649c.002-.027-.021-.045-.045-.038zm10.947-3.752l-.504-.429c-.019-.016-.048-.011-.059.012l-.022.051c-.041-.059-.12-.158-.269-.285-.235-.2-.777-.454-.868-.473-.091-.02-.167-.022-.213.077-.035.076-.199.746-.444 1.056-.454.575-1.184.418-1.184.418l-.153.828c-.067.368-.096.838-.148 1.158-.044.273-.167.523-.322.758-.154.236-.31.4-.35.456-.039.055-.457.441-.045.82l.101.081-.055.025s.1.149.122.174c.022.025.025.053.104.028s.386-.177.721-.416c.336-.24.868-.637 1.192-1.018.325-.381.524-.77.64-.996.116-.226.373-.703.424-.727.051-.024.224.036.303.026.078-.01 1.001-1.302 1.057-1.403s.005-.193-.028-.221z"/><path fill="#EEC2AD" d="M19.3 12.243c.927.96 3.062 2.89 3.109 3.121.251 1.223.614 2.606.52 3.454-.068.615.376 1.298.551 1.583.218.354.781.898 1.141.86.224-.023.567-.43.384-.636-.357-.4-.298-1.009-.522-1.559-.449-1.105-.045-3.194-.661-4.563-.256-.567-.733-1.693-2.824-3.626-.511.462-1.698 1.366-1.698 1.366z"/><path fill="#F7DECE" d="M19.005 1.384c-1.593-.627-4.077.182-4.365 2.043-.287 1.848.239 4.747 1.863 4.572 1.702-.184 3.448-.554 4.138-2.307s-.043-3.681-1.636-4.308z"/><path fill="#F7DECE" d="M20.189 6.143c2.318-2.723-3.266-2.458-3.266-2.458-1.057.038-.329 1.799-.827 2.761-.341.665 1.095 1.018 1.095 1.018s.659-.01.694.79v.007c.008.204-.013.445-.108.769-.473 1.601 1.677 2.582 2.149.978.187-.635.114-1.193.02-1.708l-.009-.046c-.144-.766-.322-1.437.252-2.111z"/><path fill="#292F33" d="M20.825 2.026c-1.061-1.242-2.58-1.901-5.019-.791-.994.452-1.439.285-1.58.484-.679.953.246 2.01.608 1.799 1.148-.669 2.183-.47 2.447.014s.021 1.354.234 1.359c.579.015.485-.552.714-.878.375-.534.946-.232 1.071.362.099.471 0 1.271-.77 1.412.523 1.151 1.56 1.502 1.56 1.502s.337.132.912-1.001c.576-1.134.877-3.029-.177-4.262z"/><path fill="#2A6797" d="M16.062 34.203c-1.266.109-1.853-.233-1.721-.416.165-.228.128-.397.13-.536C14.499 30.81 14 27.26 14 27.26c0-.348.003-.813.312-1.562.778-1.883 3.951-7.69 3.951-7.69.548-.958 1.771-1.293 2.729-.744.959.548 1.122 1.405.744 2.729-.715 2.508-2.965 5.602-3.903 7.477.224 2.121-.174 3.853.035 5.857.03.288-.54.767-1.806.876z"/><path fill="#4289C1" d="M26.797 31.931c-.364.553-.97.942-1.598.838-1.269-1.924-4.955-5.321-4.955-5.321-.241-.25-.562-.587-.86-1.341-.748-1.895-2.498-8.277-2.498-8.277-.272-1.07.376-2.16 1.446-2.43 1.07-.272 1.783.232 2.43 1.446 1.227 2.301 1.757 6.09 2.384 8.09 1.87 1.568 2.383 3.603 4.275 5.151-.065.857-.26 1.291-.624 1.844z"/><path fill="#77B255" d="M23 20s0 1-2 1h-4.898c-.415-2-.027-5.004.006-7.765.043-3.623 2.298-5.609 3.71-5.155 1.846.594 2.693 2.641 2.932 5.858S23 20 23 20z"/><path fill="#F7DECE" d="M17.75 11.792c-.167 1.399-.322 4.433-.479 4.625-.833 1.021-1.722 2.24-2.479 2.729-.549.354-.811 1.174-.927 1.507-.144.414-.213 1.238.057 1.507.169.168.73.177.776-.11.09-.559.626-.917.927-1.467.604-1.104 2.583-2.167 3.292-3.584.294-.588.896-1.729 1.083-4.729-.72-.11-2.25-.478-2.25-.478z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f6b6-1f3fc-200d-2640-fe0f.svg b/public/emoji/1f6b6-1f3fc-200d-2640-fe0f.svg
index 6eec07db70fb7658016807e4ea602b7fd629ee55..571d8f0f4b7f86d7ce61e6b26933b43ae41024e7 100644
--- a/public/emoji/1f6b6-1f3fc-200d-2640-fe0f.svg
+++ b/public/emoji/1f6b6-1f3fc-200d-2640-fe0f.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#F3D2A2" d="M15.316 3.261C14.109 3.528 16.37 4.79 16 6c-.252.838.225 0 1 0 0 0 .627 1.283.423 3.226-.207 1.94 2.472 2.616 2.677.673.204-1.941-1.385-2.988-.511-4.5 2.092-3.619-4.273-2.138-4.273-2.138"/><path fill="#F3D2A2" d="M22 4c0 2.209-1.791 4-4 4s-4-1.791-4-4 1.791-4 4-4 4 1.791 4 4"/><path fill="#FFE51E" d="M26.208 4.766c-1.037-.051-2.041-.169-3.756-2.378-1.14-1.469-2.205-2.412-4.84-2.387-2.798.026-5.141 2.407-3.346 3.598.783.52 1.44.273 2.698.625 1.975.553 2.274 2.654 4.059 3.125 3.491.922 6.222-2.532 5.185-2.583z"/><path fill="#E2C196" d="M23.696 20.993c-.553 0-1-.447-1-1 0-4.519-4.661-9.247-4.708-9.294-.39-.391-.389-1.024.001-1.414.391-.39 1.024-.389 1.413 0 .216.216 5.293 5.355 5.293 10.708.001.553-.447 1-.999 1z"/><path fill="#2A6797" d="M15.696 34.993c-1.104 0-2-.896-2-2v-7c0-.348.091-.69.264-.992l4-7c.548-.958 1.771-1.293 2.728-.744.959.548 1.292 1.769.744 2.729l-3.736 6.539v6.469c0 1.104-.896 1.999-2 1.999z"/><path fill="#4289C1" d="M24.697 31.993c-.587 0-1.168-.257-1.562-.751l-4-5c-.2-.249-.337-.543-.399-.856l-1-5c-.217-1.083.485-2.137 1.568-2.353 1.088-.219 2.138.486 2.354 1.568l.905 4.523 3.695 4.62c.69.862.551 2.121-.312 2.811-.37.295-.811.438-1.249.438z"/><path fill="#9268CA" d="M22.696 18.993s0 1-2 1h-4c-2-6-.359-12 2-12 3 0 3 4 4 9"/><path fill="#F3D2A2" d="M17.696 11.99c0 .045-.066 4.552-3.6 7.203l.01.014c-.243.183-.41.459-.41.786 0 .553.448 1 1 1 .225 0 .423-.088.59-.214l.01.014c4.35-3.262 4.4-8.575 4.4-8.8l-2-.003z"/><path fill="#292F33" d="M27.877 31.048c.271-.271.16-.676-.129-.94-.463-.422-.672-.574-.672-.574-.255-.168-.873-.418-1.13-.161-1.872 1.865-3.304 4.53-3.356 5.459-.031.548.645.855 1.029.471l4.258-4.255zm-10.266 4.855c.383.003.594-.361.578-.753-.025-.626-.064-.882-.064-.882-.059-.3-.316-.915-.68-.918-2.642-.023-5.545.83-6.243 1.446-.412.363-.156 1.06.388 1.063l6.021.044z"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#292F33" d="M18.011 34.975l-.052.016c.018-.068.042-.19.042-.383 0-.303-.156-.869-.199-.95s-.09-.139-.194-.11c-.079.022-.685.326-1.072.341-.719.027-1.066-.618-1.066-.618s-.399.228-.716.413c-.318.185-.687.462-.959.627-.232.141-.497.208-.771.243s-.497.023-.563.029c-.066.006-.621-.061-.641.488l.003.127-.054-.026s-.048.17-.052.202c-.004.033-.024.052.046.096.07.044.378.176.77.274s1.028.243 1.519.243.909-.098 1.151-.156c.243-.058.763-.169.813-.146.05.023.116.191.173.243.058.052 1.61-.081 1.721-.104.112-.023.146-.119.146-.162v-.649c.002-.027-.021-.045-.045-.038zm10.947-3.752l-.504-.429c-.019-.016-.048-.011-.059.012l-.022.051c-.041-.059-.12-.158-.269-.285-.235-.2-.777-.454-.868-.473-.091-.02-.167-.022-.213.077-.035.076-.199.746-.444 1.056-.454.575-1.184.418-1.184.418l-.153.828c-.067.368-.096.838-.148 1.158-.044.273-.167.523-.322.758-.154.236-.31.4-.35.456-.039.055-.457.441-.045.82l.101.081-.055.025s.1.149.122.174c.022.025.025.053.104.028s.386-.177.721-.416c.336-.24.868-.637 1.192-1.018.325-.381.524-.77.64-.996.116-.226.373-.703.424-.727.051-.024.224.036.303.026.078-.01 1.001-1.302 1.057-1.403s.005-.193-.028-.221z"/><path fill="#E2C196" d="M19.3 12.243c.927.96 3.062 2.89 3.109 3.121.251 1.223.614 2.606.52 3.454-.068.615.376 1.298.551 1.583.218.354.781.898 1.141.86.224-.023.567-.43.384-.636-.357-.4-.298-1.009-.522-1.559-.449-1.105-.045-3.194-.661-4.563-.256-.567-.733-1.693-2.824-3.626-.511.462-1.698 1.366-1.698 1.366z"/><path fill="#F3D2A2" d="M19.005 1.384c-1.593-.627-4.077.182-4.365 2.043-.287 1.848.239 4.747 1.863 4.572 1.702-.184 3.448-.554 4.138-2.307s-.043-3.681-1.636-4.308z"/><path fill="#F3D2A2" d="M20.189 6.143c2.318-2.723-3.266-2.458-3.266-2.458-1.057.038-.329 1.799-.827 2.761-.341.665 1.095 1.018 1.095 1.018s.659-.01.694.79v.007c.008.204-.013.445-.108.769-.473 1.601 1.677 2.582 2.149.978.187-.635.114-1.193.02-1.708l-.009-.046c-.144-.766-.322-1.437.252-2.111z"/><path fill="#FFE51E" d="M20.825 2.026c-1.061-1.242-2.52-1.757-5.019-.791-2.183.844-1.481 2.579-.972 2.282 1.402-.817 2.332-.119 3.046 1.021.208-.56 1.122-.904 1.307-.085.208.921-.647 1.322-.533 1.573.038.084-.043-.076 0 0 .547.96 1.437 1.262 1.437 1.262s.337.132.912-1.001.876-3.028-.178-4.261z"/><path fill="#FFE51E" d="M20.251 3.332c2.163.467 1.275 3.839 1.487 5.08.261 1.528 1.761 1.582 1.761 1.582s-.247-1.064-.116-2.177c.183-1.543 1.189-2.789.127-4.296-1.355-1.924-4.604-.479-3.259-.189z"/><path fill="#2A6797" d="M16.062 34.203c-1.266.109-1.853-.233-1.721-.416.165-.228.128-.397.13-.536C14.499 30.81 14 27.26 14 27.26c0-.348.003-.813.312-1.562.778-1.883 3.951-7.69 3.951-7.69.548-.958 1.771-1.293 2.729-.744.959.548 1.122 1.405.744 2.729-.715 2.508-2.965 5.602-3.903 7.477.224 2.121-.174 3.853.035 5.857.03.288-.54.767-1.806.876z"/><path fill="#4289C1" d="M26.797 31.931c-.364.553-.97.942-1.598.838-1.269-1.924-4.955-5.321-4.955-5.321-.241-.25-.562-.587-.86-1.341-.748-1.895-2.498-8.277-2.498-8.277-.272-1.07.376-2.16 1.446-2.43 1.07-.272 1.783.232 2.43 1.446 1.227 2.301 1.757 6.09 2.384 8.09 1.87 1.568 2.383 3.603 4.275 5.151-.065.857-.26 1.291-.624 1.844z"/><path fill="#9268CA" d="M23 20s0 1-2 1h-4.898c-.415-2 .554-3.818-.102-6.5-.848-3.46 2.406-6.874 3.818-6.42 1.846.594 2.693 2.641 2.932 5.858S23 20 23 20z"/><path fill="#F3D2A2" d="M17.75 11.792c-.167 1.399-.322 4.433-.479 4.625-.833 1.021-1.722 2.24-2.479 2.729-.549.354-.811 1.174-.927 1.507-.144.414-.213 1.238.057 1.507.169.168.73.177.776-.11.09-.559.626-.917.927-1.467.604-1.104 2.583-2.167 3.292-3.584.294-.588.896-1.729 1.083-4.729-.72-.11-2.25-.478-2.25-.478z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f6b6-1f3fc-200d-2642-fe0f.svg b/public/emoji/1f6b6-1f3fc-200d-2642-fe0f.svg
index dbfd6a6a2a20a2b8e8d25b81e345dbbb0f1e18c7..cba51a41c46624b67d5ada4a454c425673d78b8b 100644
--- a/public/emoji/1f6b6-1f3fc-200d-2642-fe0f.svg
+++ b/public/emoji/1f6b6-1f3fc-200d-2642-fe0f.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#F3D2A2" d="M20.567 5.975c.929-1.996.212-4.298-1.602-5.143-1.814-.845-4.769-.077-5.238 2.073-.466 2.136-.03 5.389 1.877 5.299.527-.025 1.057-.067 1.571-.149.067.25.052.761-.043 1.246-.369 1.864 2.171 2.751 2.539.883.214-1.093-.195-1.942-.373-2.737.516-.343.96-.808 1.269-1.472z"/><path fill="#FFE51E" d="M21.043 1.71C19.894.186 18.228-.519 15.243.431c-2.607.829-1.788 3.076-1.297 2.594.782-.768 1.757-.458 1.757-.458l.632 2.315s.353.242.553-.52c.199-.762 1.239-.778 1.541-.137.469.996-.233 1.139-.331 1.711-.31 1.81 1.713 1.864 1.713 1.864s.383.178 1.135-1.103c.753-1.283 1.238-3.473.097-4.987z"/><path fill="#E2C196" d="M23.696 20.993c-.553 0-1-.447-1-1 0-4.52-4.661-9.247-4.707-9.294-.39-.391-.389-1.024.001-1.414.391-.39 1.023-.389 1.413.001.216.216 5.293 5.355 5.293 10.708 0 .552-.447.999-1 .999z"/><path fill="#2A6797" d="M15.696 34.993c-1.104 0-2-.896-2-2v-7c0-.348.091-.69.264-.992l4-7c.548-.958 1.771-1.293 2.729-.744.959.548 1.292 1.77.744 2.729l-3.736 6.539v6.469c-.001 1.104-.897 1.999-2.001 1.999z"/><path fill="#4289C1" d="M24.697 31.993c-.587 0-1.168-.257-1.562-.751l-4-5c-.2-.249-.337-.543-.399-.856l-1-5c-.217-1.083.485-2.137 1.568-2.354 1.088-.219 2.138.486 2.354 1.568l.905 4.524 3.695 4.62c.691.862.551 2.121-.312 2.811-.369.295-.811.438-1.249.438z"/><path fill="#77B255" d="M22.696 18.993s0 1-2 1h-4c-2-6-.359-12 2-12 3 0 3 4 4 9"/><path fill="#F3D2A2" d="M17.696 11.991c0 .045-.066 4.552-3.6 7.203l.01.014c-.243.183-.41.459-.41.786 0 .553.448 1 1 1 .225 0 .423-.088.59-.214l.01.014c4.35-3.262 4.4-8.575 4.4-8.8l-2-.003z"/><path fill="#292F33" d="M27.878 31.049c.271-.271.16-.676-.129-.94-.463-.422-.672-.574-.672-.574-.255-.168-.873-.418-1.13-.161-1.872 1.865-3.304 4.53-3.356 5.459-.031.548.645.855 1.029.471 1.132-1.133 3.276-3.275 4.258-4.255zm-10.266 4.854c.383.003.594-.361.578-.753-.025-.626-.064-.882-.064-.882-.059-.3-.316-.915-.68-.918-2.642-.023-5.545.83-6.243 1.446-.412.363-.156 1.06.388 1.063 1.603.013 4.633.034 6.021.044z"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#292F33" d="M18.011 34.975l-.052.016c.018-.068.042-.19.042-.383 0-.303-.156-.869-.199-.95s-.09-.139-.194-.11c-.079.022-.685.326-1.072.341-.719.027-1.066-.618-1.066-.618s-.399.228-.716.413c-.318.185-.687.462-.959.627-.232.141-.497.208-.771.243s-.497.023-.563.029c-.066.006-.621-.061-.641.488l.003.127-.054-.026s-.048.17-.052.202c-.004.033-.024.052.046.096.07.044.378.176.77.274s1.028.243 1.519.243.909-.098 1.151-.156c.243-.058.763-.169.813-.146.05.023.116.191.173.243.058.052 1.61-.081 1.721-.104.112-.023.146-.119.146-.162v-.649c.002-.027-.021-.045-.045-.038zm10.947-3.752l-.504-.429c-.019-.016-.048-.011-.059.012l-.022.051c-.041-.059-.12-.158-.269-.285-.235-.2-.777-.454-.868-.473-.091-.02-.167-.022-.213.077-.035.076-.199.746-.444 1.056-.454.575-1.184.418-1.184.418l-.153.828c-.067.368-.096.838-.148 1.158-.044.273-.167.523-.322.758-.154.236-.31.4-.35.456-.039.055-.457.441-.045.82l.101.081-.055.025s.1.149.122.174c.022.025.025.053.104.028s.386-.177.721-.416c.336-.24.868-.637 1.192-1.018.325-.381.524-.77.64-.996.116-.226.373-.703.424-.727.051-.024.224.036.303.026.078-.01 1.001-1.302 1.057-1.403s.005-.193-.028-.221z"/><path fill="#E2C196" d="M19.3 12.243c.927.96 3.062 2.89 3.109 3.121.251 1.223.614 2.606.52 3.454-.068.615.376 1.298.551 1.583.218.354.781.898 1.141.86.224-.023.567-.43.384-.636-.357-.4-.298-1.009-.522-1.559-.449-1.105-.045-3.194-.661-4.563-.256-.567-.733-1.693-2.824-3.626-.511.462-1.698 1.366-1.698 1.366z"/><path fill="#F3D2A2" d="M19.005 1.384c-1.593-.627-4.077.182-4.365 2.043-.287 1.848.239 4.747 1.863 4.572 1.702-.184 3.448-.554 4.138-2.307s-.043-3.681-1.636-4.308z"/><path fill="#F3D2A2" d="M20.189 6.143c2.318-2.723-3.266-2.458-3.266-2.458-1.057.038-.329 1.799-.827 2.761-.341.665 1.095 1.018 1.095 1.018s.659-.01.694.79v.007c.008.204-.013.445-.108.769-.473 1.601 1.677 2.582 2.149.978.187-.635.114-1.193.02-1.708l-.009-.046c-.144-.766-.322-1.437.252-2.111z"/><path fill="#FFE51E" d="M20.825 2.026c-1.061-1.242-2.58-1.901-5.019-.791-.994.452-1.439.285-1.58.484-.679.953.246 2.01.608 1.799 1.148-.669 2.183-.47 2.447.014s.021 1.354.234 1.359c.579.015.485-.552.714-.878.375-.534.946-.232 1.071.362.099.471 0 1.271-.77 1.412.523 1.151 1.56 1.502 1.56 1.502s.337.132.912-1.001c.576-1.134.877-3.029-.177-4.262z"/><path fill="#2A6797" d="M16.062 34.203c-1.266.109-1.853-.233-1.721-.416.165-.228.128-.397.13-.536C14.499 30.81 14 27.26 14 27.26c0-.348.003-.813.312-1.562.778-1.883 3.951-7.69 3.951-7.69.548-.958 1.771-1.293 2.729-.744.959.548 1.122 1.405.744 2.729-.715 2.508-2.965 5.602-3.903 7.477.224 2.121-.174 3.853.035 5.857.03.288-.54.767-1.806.876z"/><path fill="#4289C1" d="M26.797 31.931c-.364.553-.97.942-1.598.838-1.269-1.924-4.955-5.321-4.955-5.321-.241-.25-.562-.587-.86-1.341-.748-1.895-2.498-8.277-2.498-8.277-.272-1.07.376-2.16 1.446-2.43 1.07-.272 1.783.232 2.43 1.446 1.227 2.301 1.757 6.09 2.384 8.09 1.87 1.568 2.383 3.603 4.275 5.151-.065.857-.26 1.291-.624 1.844z"/><path fill="#77B255" d="M23 20s0 1-2 1h-4.898c-.415-2-.027-5.004.006-7.765.043-3.623 2.298-5.609 3.71-5.155 1.846.594 2.693 2.641 2.932 5.858S23 20 23 20z"/><path fill="#F3D2A2" d="M17.75 11.792c-.167 1.399-.322 4.433-.479 4.625-.833 1.021-1.722 2.24-2.479 2.729-.549.354-.811 1.174-.927 1.507-.144.414-.213 1.238.057 1.507.169.168.73.177.776-.11.09-.559.626-.917.927-1.467.604-1.104 2.583-2.167 3.292-3.584.294-.588.896-1.729 1.083-4.729-.72-.11-2.25-.478-2.25-.478z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f6b6-1f3fc.svg b/public/emoji/1f6b6-1f3fc.svg
index dbfd6a6a2a20a2b8e8d25b81e345dbbb0f1e18c7..cba51a41c46624b67d5ada4a454c425673d78b8b 100644
--- a/public/emoji/1f6b6-1f3fc.svg
+++ b/public/emoji/1f6b6-1f3fc.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#F3D2A2" d="M20.567 5.975c.929-1.996.212-4.298-1.602-5.143-1.814-.845-4.769-.077-5.238 2.073-.466 2.136-.03 5.389 1.877 5.299.527-.025 1.057-.067 1.571-.149.067.25.052.761-.043 1.246-.369 1.864 2.171 2.751 2.539.883.214-1.093-.195-1.942-.373-2.737.516-.343.96-.808 1.269-1.472z"/><path fill="#FFE51E" d="M21.043 1.71C19.894.186 18.228-.519 15.243.431c-2.607.829-1.788 3.076-1.297 2.594.782-.768 1.757-.458 1.757-.458l.632 2.315s.353.242.553-.52c.199-.762 1.239-.778 1.541-.137.469.996-.233 1.139-.331 1.711-.31 1.81 1.713 1.864 1.713 1.864s.383.178 1.135-1.103c.753-1.283 1.238-3.473.097-4.987z"/><path fill="#E2C196" d="M23.696 20.993c-.553 0-1-.447-1-1 0-4.52-4.661-9.247-4.707-9.294-.39-.391-.389-1.024.001-1.414.391-.39 1.023-.389 1.413.001.216.216 5.293 5.355 5.293 10.708 0 .552-.447.999-1 .999z"/><path fill="#2A6797" d="M15.696 34.993c-1.104 0-2-.896-2-2v-7c0-.348.091-.69.264-.992l4-7c.548-.958 1.771-1.293 2.729-.744.959.548 1.292 1.77.744 2.729l-3.736 6.539v6.469c-.001 1.104-.897 1.999-2.001 1.999z"/><path fill="#4289C1" d="M24.697 31.993c-.587 0-1.168-.257-1.562-.751l-4-5c-.2-.249-.337-.543-.399-.856l-1-5c-.217-1.083.485-2.137 1.568-2.354 1.088-.219 2.138.486 2.354 1.568l.905 4.524 3.695 4.62c.691.862.551 2.121-.312 2.811-.369.295-.811.438-1.249.438z"/><path fill="#77B255" d="M22.696 18.993s0 1-2 1h-4c-2-6-.359-12 2-12 3 0 3 4 4 9"/><path fill="#F3D2A2" d="M17.696 11.991c0 .045-.066 4.552-3.6 7.203l.01.014c-.243.183-.41.459-.41.786 0 .553.448 1 1 1 .225 0 .423-.088.59-.214l.01.014c4.35-3.262 4.4-8.575 4.4-8.8l-2-.003z"/><path fill="#292F33" d="M27.878 31.049c.271-.271.16-.676-.129-.94-.463-.422-.672-.574-.672-.574-.255-.168-.873-.418-1.13-.161-1.872 1.865-3.304 4.53-3.356 5.459-.031.548.645.855 1.029.471 1.132-1.133 3.276-3.275 4.258-4.255zm-10.266 4.854c.383.003.594-.361.578-.753-.025-.626-.064-.882-.064-.882-.059-.3-.316-.915-.68-.918-2.642-.023-5.545.83-6.243 1.446-.412.363-.156 1.06.388 1.063 1.603.013 4.633.034 6.021.044z"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#292F33" d="M18.011 34.975l-.052.016c.018-.068.042-.19.042-.383 0-.303-.156-.869-.199-.95s-.09-.139-.194-.11c-.079.022-.685.326-1.072.341-.719.027-1.066-.618-1.066-.618s-.399.228-.716.413c-.318.185-.687.462-.959.627-.232.141-.497.208-.771.243s-.497.023-.563.029c-.066.006-.621-.061-.641.488l.003.127-.054-.026s-.048.17-.052.202c-.004.033-.024.052.046.096.07.044.378.176.77.274s1.028.243 1.519.243.909-.098 1.151-.156c.243-.058.763-.169.813-.146.05.023.116.191.173.243.058.052 1.61-.081 1.721-.104.112-.023.146-.119.146-.162v-.649c.002-.027-.021-.045-.045-.038zm10.947-3.752l-.504-.429c-.019-.016-.048-.011-.059.012l-.022.051c-.041-.059-.12-.158-.269-.285-.235-.2-.777-.454-.868-.473-.091-.02-.167-.022-.213.077-.035.076-.199.746-.444 1.056-.454.575-1.184.418-1.184.418l-.153.828c-.067.368-.096.838-.148 1.158-.044.273-.167.523-.322.758-.154.236-.31.4-.35.456-.039.055-.457.441-.045.82l.101.081-.055.025s.1.149.122.174c.022.025.025.053.104.028s.386-.177.721-.416c.336-.24.868-.637 1.192-1.018.325-.381.524-.77.64-.996.116-.226.373-.703.424-.727.051-.024.224.036.303.026.078-.01 1.001-1.302 1.057-1.403s.005-.193-.028-.221z"/><path fill="#E2C196" d="M19.3 12.243c.927.96 3.062 2.89 3.109 3.121.251 1.223.614 2.606.52 3.454-.068.615.376 1.298.551 1.583.218.354.781.898 1.141.86.224-.023.567-.43.384-.636-.357-.4-.298-1.009-.522-1.559-.449-1.105-.045-3.194-.661-4.563-.256-.567-.733-1.693-2.824-3.626-.511.462-1.698 1.366-1.698 1.366z"/><path fill="#F3D2A2" d="M19.005 1.384c-1.593-.627-4.077.182-4.365 2.043-.287 1.848.239 4.747 1.863 4.572 1.702-.184 3.448-.554 4.138-2.307s-.043-3.681-1.636-4.308z"/><path fill="#F3D2A2" d="M20.189 6.143c2.318-2.723-3.266-2.458-3.266-2.458-1.057.038-.329 1.799-.827 2.761-.341.665 1.095 1.018 1.095 1.018s.659-.01.694.79v.007c.008.204-.013.445-.108.769-.473 1.601 1.677 2.582 2.149.978.187-.635.114-1.193.02-1.708l-.009-.046c-.144-.766-.322-1.437.252-2.111z"/><path fill="#FFE51E" d="M20.825 2.026c-1.061-1.242-2.58-1.901-5.019-.791-.994.452-1.439.285-1.58.484-.679.953.246 2.01.608 1.799 1.148-.669 2.183-.47 2.447.014s.021 1.354.234 1.359c.579.015.485-.552.714-.878.375-.534.946-.232 1.071.362.099.471 0 1.271-.77 1.412.523 1.151 1.56 1.502 1.56 1.502s.337.132.912-1.001c.576-1.134.877-3.029-.177-4.262z"/><path fill="#2A6797" d="M16.062 34.203c-1.266.109-1.853-.233-1.721-.416.165-.228.128-.397.13-.536C14.499 30.81 14 27.26 14 27.26c0-.348.003-.813.312-1.562.778-1.883 3.951-7.69 3.951-7.69.548-.958 1.771-1.293 2.729-.744.959.548 1.122 1.405.744 2.729-.715 2.508-2.965 5.602-3.903 7.477.224 2.121-.174 3.853.035 5.857.03.288-.54.767-1.806.876z"/><path fill="#4289C1" d="M26.797 31.931c-.364.553-.97.942-1.598.838-1.269-1.924-4.955-5.321-4.955-5.321-.241-.25-.562-.587-.86-1.341-.748-1.895-2.498-8.277-2.498-8.277-.272-1.07.376-2.16 1.446-2.43 1.07-.272 1.783.232 2.43 1.446 1.227 2.301 1.757 6.09 2.384 8.09 1.87 1.568 2.383 3.603 4.275 5.151-.065.857-.26 1.291-.624 1.844z"/><path fill="#77B255" d="M23 20s0 1-2 1h-4.898c-.415-2-.027-5.004.006-7.765.043-3.623 2.298-5.609 3.71-5.155 1.846.594 2.693 2.641 2.932 5.858S23 20 23 20z"/><path fill="#F3D2A2" d="M17.75 11.792c-.167 1.399-.322 4.433-.479 4.625-.833 1.021-1.722 2.24-2.479 2.729-.549.354-.811 1.174-.927 1.507-.144.414-.213 1.238.057 1.507.169.168.73.177.776-.11.09-.559.626-.917.927-1.467.604-1.104 2.583-2.167 3.292-3.584.294-.588.896-1.729 1.083-4.729-.72-.11-2.25-.478-2.25-.478z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f6b6-1f3fd-200d-2640-fe0f.svg b/public/emoji/1f6b6-1f3fd-200d-2640-fe0f.svg
index aa14763838f3f54215f1f6eef05ba57a9fe75e62..65a6df4d72fc11045109d6fba838009c40c31cf9 100644
--- a/public/emoji/1f6b6-1f3fd-200d-2640-fe0f.svg
+++ b/public/emoji/1f6b6-1f3fd-200d-2640-fe0f.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#D5AB88" d="M15.316 3.261C14.109 3.528 16.37 4.79 16 6c-.252.838.225 0 1 0 0 0 .627 1.283.423 3.226-.207 1.94 2.472 2.616 2.677.673.204-1.941-1.385-2.988-.511-4.5 2.092-3.619-4.273-2.138-4.273-2.138"/><path fill="#D5AB88" d="M22 4c0 2.209-1.791 4-4 4s-4-1.791-4-4 1.791-4 4-4 4 1.791 4 4"/><path fill="#963B22" d="M26.208 4.766c-1.037-.051-2.041-.169-3.756-2.378-1.14-1.469-2.205-2.412-4.84-2.387-2.798.026-5.141 2.407-3.346 3.598.783.52 1.44.273 2.698.625 1.975.553 2.274 2.654 4.059 3.125 3.491.922 6.222-2.532 5.185-2.583z"/><path fill="#CC9B7A" d="M23.696 20.993c-.553 0-1-.447-1-1 0-4.519-4.661-9.247-4.708-9.294-.39-.391-.389-1.024.001-1.414.391-.39 1.024-.389 1.413 0 .216.216 5.293 5.355 5.293 10.708.001.553-.447 1-.999 1z"/><path fill="#2A6797" d="M15.696 34.993c-1.104 0-2-.896-2-2v-7c0-.348.091-.69.264-.992l4-7c.548-.958 1.771-1.293 2.728-.744.959.548 1.292 1.769.744 2.729l-3.736 6.539v6.469c0 1.104-.896 1.999-2 1.999z"/><path fill="#4289C1" d="M24.697 31.993c-.587 0-1.168-.257-1.562-.751l-4-5c-.2-.249-.337-.543-.399-.856l-1-5c-.217-1.083.485-2.137 1.568-2.353 1.088-.219 2.138.486 2.354 1.568l.905 4.523 3.695 4.62c.69.862.551 2.121-.312 2.811-.37.295-.811.438-1.249.438z"/><path fill="#9268CA" d="M22.696 18.993s0 1-2 1h-4c-2-6-.359-12 2-12 3 0 3 4 4 9"/><path fill="#D5AB88" d="M17.696 11.99c0 .045-.066 4.552-3.6 7.203l.01.014c-.243.183-.41.459-.41.786 0 .553.448 1 1 1 .225 0 .423-.088.59-.214l.01.014c4.35-3.262 4.4-8.575 4.4-8.8l-2-.003z"/><path fill="#292F33" d="M27.877 31.048c.271-.271.16-.676-.129-.94-.463-.422-.672-.574-.672-.574-.255-.168-.873-.418-1.13-.161-1.872 1.865-3.304 4.53-3.356 5.459-.031.548.645.855 1.029.471l4.258-4.255zm-10.266 4.855c.383.003.594-.361.578-.753-.025-.626-.064-.882-.064-.882-.059-.3-.316-.915-.68-.918-2.642-.023-5.545.83-6.243 1.446-.412.363-.156 1.06.388 1.063l6.021.044z"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#292F33" d="M18.011 34.975l-.052.016c.018-.068.042-.19.042-.383 0-.303-.156-.869-.199-.95s-.09-.139-.194-.11c-.079.022-.685.326-1.072.341-.719.027-1.066-.618-1.066-.618s-.399.228-.716.413c-.318.185-.687.462-.959.627-.232.141-.497.208-.771.243s-.497.023-.563.029c-.066.006-.621-.061-.641.488l.003.127-.054-.026s-.048.17-.052.202c-.004.033-.024.052.046.096.07.044.378.176.77.274s1.028.243 1.519.243.909-.098 1.151-.156c.243-.058.763-.169.813-.146.05.023.116.191.173.243.058.052 1.61-.081 1.721-.104.112-.023.146-.119.146-.162v-.649c.002-.027-.021-.045-.045-.038zm10.947-3.752l-.504-.429c-.019-.016-.048-.011-.059.012l-.022.051c-.041-.059-.12-.158-.269-.285-.235-.2-.777-.454-.868-.473-.091-.02-.167-.022-.213.077-.035.076-.199.746-.444 1.056-.454.575-1.184.418-1.184.418l-.153.828c-.067.368-.096.838-.148 1.158-.044.273-.167.523-.322.758-.154.236-.31.4-.35.456-.039.055-.457.441-.045.82l.101.081-.055.025s.1.149.122.174c.022.025.025.053.104.028s.386-.177.721-.416c.336-.24.868-.637 1.192-1.018.325-.381.524-.77.64-.996.116-.226.373-.703.424-.727.051-.024.224.036.303.026.078-.01 1.001-1.302 1.057-1.403s.005-.193-.028-.221z"/><path fill="#CC9B7A" d="M19.3 12.243c.927.96 3.062 2.89 3.109 3.121.251 1.223.614 2.606.52 3.454-.068.615.376 1.298.551 1.583.218.354.781.898 1.141.86.224-.023.567-.43.384-.636-.357-.4-.298-1.009-.522-1.559-.449-1.105-.045-3.194-.661-4.563-.256-.567-.733-1.693-2.824-3.626-.511.462-1.698 1.366-1.698 1.366z"/><path fill="#D4AB88" d="M19.005 1.384c-1.593-.627-4.077.182-4.365 2.043-.287 1.848.239 4.747 1.863 4.572 1.702-.184 3.448-.554 4.138-2.307s-.043-3.681-1.636-4.308z"/><path fill="#D4AB88" d="M20.189 6.143c2.318-2.723-3.266-2.458-3.266-2.458-1.057.038-.329 1.799-.827 2.761-.341.665 1.095 1.018 1.095 1.018s.659-.01.694.79v.007c.008.204-.013.445-.108.769-.473 1.601 1.677 2.582 2.149.978.187-.635.114-1.193.02-1.708l-.009-.046c-.144-.766-.322-1.437.252-2.111z"/><path fill="#963B22" d="M20.825 2.026c-1.061-1.242-2.52-1.757-5.019-.791-2.183.844-1.481 2.579-.972 2.282 1.402-.817 2.332-.119 3.046 1.021.208-.56 1.122-.904 1.307-.085.208.921-.647 1.322-.533 1.573.038.084-.043-.076 0 0 .547.96 1.437 1.262 1.437 1.262s.337.132.912-1.001.876-3.028-.178-4.261z"/><path fill="#963B22" d="M20.251 3.332c2.163.467 1.275 3.839 1.487 5.08.261 1.528 1.761 1.582 1.761 1.582s-.247-1.064-.116-2.177c.183-1.543 1.189-2.789.127-4.296-1.355-1.924-4.604-.479-3.259-.189z"/><path fill="#2A6797" d="M16.062 34.203c-1.266.109-1.853-.233-1.721-.416.165-.228.128-.397.13-.536C14.499 30.81 14 27.26 14 27.26c0-.348.003-.813.312-1.562.778-1.883 3.951-7.69 3.951-7.69.548-.958 1.771-1.293 2.729-.744.959.548 1.122 1.405.744 2.729-.715 2.508-2.965 5.602-3.903 7.477.224 2.121-.174 3.853.035 5.857.03.288-.54.767-1.806.876z"/><path fill="#4289C1" d="M26.797 31.931c-.364.553-.97.942-1.598.838-1.269-1.924-4.955-5.321-4.955-5.321-.241-.25-.562-.587-.86-1.341-.748-1.895-2.498-8.277-2.498-8.277-.272-1.07.376-2.16 1.446-2.43 1.07-.272 1.783.232 2.43 1.446 1.227 2.301 1.757 6.09 2.384 8.09 1.87 1.568 2.383 3.603 4.275 5.151-.065.857-.26 1.291-.624 1.844z"/><path fill="#9268CA" d="M23 20s0 1-2 1h-4.898c-.415-2 .554-3.818-.102-6.5-.848-3.46 2.406-6.874 3.818-6.42 1.846.594 2.693 2.641 2.932 5.858S23 20 23 20z"/><path fill="#D4AB88" d="M17.75 11.792c-.167 1.399-.322 4.433-.479 4.625-.833 1.021-1.722 2.24-2.479 2.729-.549.354-.811 1.174-.927 1.507-.144.414-.213 1.238.057 1.507.169.168.73.177.776-.11.09-.559.626-.917.927-1.467.604-1.104 2.583-2.167 3.292-3.584.294-.588.896-1.729 1.083-4.729-.72-.11-2.25-.478-2.25-.478z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f6b6-1f3fd-200d-2642-fe0f.svg b/public/emoji/1f6b6-1f3fd-200d-2642-fe0f.svg
index 64c97ad32577ca38f9a0c966a3454f48d27c8527..84169ed7a2aad75557d71825c6ef17e524a8bca7 100644
--- a/public/emoji/1f6b6-1f3fd-200d-2642-fe0f.svg
+++ b/public/emoji/1f6b6-1f3fd-200d-2642-fe0f.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#D5AB88" d="M20.567 5.975c.929-1.996.212-4.298-1.602-5.143-1.814-.845-4.769-.077-5.238 2.073-.466 2.136-.03 5.389 1.877 5.299.527-.025 1.057-.067 1.571-.149.067.25.052.761-.043 1.246-.369 1.864 2.171 2.751 2.539.883.214-1.093-.195-1.942-.373-2.737.516-.343.96-.808 1.269-1.472z"/><path fill="#963B22" d="M21.043 1.71C19.894.186 18.228-.519 15.243.431c-2.607.829-1.788 3.076-1.297 2.594.782-.768 1.757-.458 1.757-.458l.632 2.315s.353.242.553-.52c.199-.762 1.239-.778 1.541-.137.469.996-.233 1.139-.331 1.711-.31 1.81 1.713 1.864 1.713 1.864s.383.178 1.135-1.103c.753-1.283 1.238-3.473.097-4.987z"/><path fill="#CC9B7A" d="M23.696 20.993c-.553 0-1-.447-1-1 0-4.52-4.661-9.247-4.707-9.294-.39-.391-.389-1.024.001-1.414.391-.39 1.023-.389 1.413.001.216.216 5.293 5.355 5.293 10.708 0 .552-.447.999-1 .999z"/><path fill="#2A6797" d="M15.696 34.993c-1.104 0-2-.896-2-2v-7c0-.348.091-.69.264-.992l4-7c.548-.958 1.771-1.293 2.729-.744.959.548 1.292 1.77.744 2.729l-3.736 6.539v6.469c-.001 1.104-.897 1.999-2.001 1.999z"/><path fill="#4289C1" d="M24.697 31.993c-.587 0-1.168-.257-1.562-.751l-4-5c-.2-.249-.337-.543-.399-.856l-1-5c-.217-1.083.485-2.137 1.568-2.354 1.088-.219 2.138.486 2.354 1.568l.905 4.524 3.695 4.62c.691.862.551 2.121-.312 2.811-.369.295-.811.438-1.249.438z"/><path fill="#77B255" d="M22.696 18.993s0 1-2 1h-4c-2-6-.359-12 2-12 3 0 3 4 4 9"/><path fill="#D5AB88" d="M17.696 11.991c0 .045-.066 4.552-3.6 7.203l.01.014c-.243.183-.41.459-.41.786 0 .553.448 1 1 1 .225 0 .423-.088.59-.214l.01.014c4.35-3.262 4.4-8.575 4.4-8.8l-2-.003z"/><path fill="#292F33" d="M27.878 31.049c.271-.271.16-.676-.129-.94-.463-.422-.672-.574-.672-.574-.255-.168-.873-.418-1.13-.161-1.872 1.865-3.304 4.53-3.356 5.459-.031.548.645.855 1.029.471 1.132-1.133 3.276-3.275 4.258-4.255zm-10.266 4.854c.383.003.594-.361.578-.753-.025-.626-.064-.882-.064-.882-.059-.3-.316-.915-.68-.918-2.642-.023-5.545.83-6.243 1.446-.412.363-.156 1.06.388 1.063 1.603.013 4.633.034 6.021.044z"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#292F33" d="M18.011 34.975l-.052.016c.018-.068.042-.19.042-.383 0-.303-.156-.869-.199-.95s-.09-.139-.194-.11c-.079.022-.685.326-1.072.341-.719.027-1.066-.618-1.066-.618s-.399.228-.716.413c-.318.185-.687.462-.959.627-.232.141-.497.208-.771.243s-.497.023-.563.029c-.066.006-.621-.061-.641.488l.003.127-.054-.026s-.048.17-.052.202c-.004.033-.024.052.046.096.07.044.378.176.77.274s1.028.243 1.519.243.909-.098 1.151-.156c.243-.058.763-.169.813-.146.05.023.116.191.173.243.058.052 1.61-.081 1.721-.104.112-.023.146-.119.146-.162v-.649c.002-.027-.021-.045-.045-.038zm10.947-3.752l-.504-.429c-.019-.016-.048-.011-.059.012l-.022.051c-.041-.059-.12-.158-.269-.285-.235-.2-.777-.454-.868-.473-.091-.02-.167-.022-.213.077-.035.076-.199.746-.444 1.056-.454.575-1.184.418-1.184.418l-.153.828c-.067.368-.096.838-.148 1.158-.044.273-.167.523-.322.758-.154.236-.31.4-.35.456-.039.055-.457.441-.045.82l.101.081-.055.025s.1.149.122.174c.022.025.025.053.104.028s.386-.177.721-.416c.336-.24.868-.637 1.192-1.018.325-.381.524-.77.64-.996.116-.226.373-.703.424-.727.051-.024.224.036.303.026.078-.01 1.001-1.302 1.057-1.403s.005-.193-.028-.221z"/><path fill="#CC9B7A" d="M19.3 12.243c.927.96 3.062 2.89 3.109 3.121.251 1.223.614 2.606.52 3.454-.068.615.376 1.298.551 1.583.218.354.781.898 1.141.86.224-.023.567-.43.384-.636-.357-.4-.298-1.009-.522-1.559-.449-1.105-.045-3.194-.661-4.563-.256-.567-.733-1.693-2.824-3.626-.511.462-1.698 1.366-1.698 1.366z"/><path fill="#D4AB88" d="M19.005 1.384c-1.593-.627-4.077.182-4.365 2.043-.287 1.848.239 4.747 1.863 4.572 1.702-.184 3.448-.554 4.138-2.307s-.043-3.681-1.636-4.308z"/><path fill="#D4AB88" d="M20.189 6.143c2.318-2.723-3.266-2.458-3.266-2.458-1.057.038-.329 1.799-.827 2.761-.341.665 1.095 1.018 1.095 1.018s.659-.01.694.79v.007c.008.204-.013.445-.108.769-.473 1.601 1.677 2.582 2.149.978.187-.635.114-1.193.02-1.708l-.009-.046c-.144-.766-.322-1.437.252-2.111z"/><path fill="#963B22" d="M20.825 2.026c-1.061-1.242-2.58-1.901-5.019-.791-.994.452-1.439.285-1.58.484-.679.953.246 2.01.608 1.799 1.148-.669 2.183-.47 2.447.014s.021 1.354.234 1.359c.579.015.485-.552.714-.878.375-.534.946-.232 1.071.362.099.471 0 1.271-.77 1.412.523 1.151 1.56 1.502 1.56 1.502s.337.132.912-1.001c.576-1.134.877-3.029-.177-4.262z"/><path fill="#2A6797" d="M16.062 34.203c-1.266.109-1.853-.233-1.721-.416.165-.228.128-.397.13-.536C14.499 30.81 14 27.26 14 27.26c0-.348.003-.813.312-1.562.778-1.883 3.951-7.69 3.951-7.69.548-.958 1.771-1.293 2.729-.744.959.548 1.122 1.405.744 2.729-.715 2.508-2.965 5.602-3.903 7.477.224 2.121-.174 3.853.035 5.857.03.288-.54.767-1.806.876z"/><path fill="#4289C1" d="M26.797 31.931c-.364.553-.97.942-1.598.838-1.269-1.924-4.955-5.321-4.955-5.321-.241-.25-.562-.587-.86-1.341-.748-1.895-2.498-8.277-2.498-8.277-.272-1.07.376-2.16 1.446-2.43 1.07-.272 1.783.232 2.43 1.446 1.227 2.301 1.757 6.09 2.384 8.09 1.87 1.568 2.383 3.603 4.275 5.151-.065.857-.26 1.291-.624 1.844z"/><path fill="#77B255" d="M23 20s0 1-2 1h-4.898c-.415-2-.027-5.004.006-7.765.043-3.623 2.298-5.609 3.71-5.155 1.846.594 2.693 2.641 2.932 5.858S23 20 23 20z"/><path fill="#D4AB88" d="M17.75 11.792c-.167 1.399-.322 4.433-.479 4.625-.833 1.021-1.722 2.24-2.479 2.729-.549.354-.811 1.174-.927 1.507-.144.414-.213 1.238.057 1.507.169.168.73.177.776-.11.09-.559.626-.917.927-1.467.604-1.104 2.583-2.167 3.292-3.584.294-.588.896-1.729 1.083-4.729-.72-.11-2.25-.478-2.25-.478z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f6b6-1f3fd.svg b/public/emoji/1f6b6-1f3fd.svg
index 64c97ad32577ca38f9a0c966a3454f48d27c8527..84169ed7a2aad75557d71825c6ef17e524a8bca7 100644
--- a/public/emoji/1f6b6-1f3fd.svg
+++ b/public/emoji/1f6b6-1f3fd.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#D5AB88" d="M20.567 5.975c.929-1.996.212-4.298-1.602-5.143-1.814-.845-4.769-.077-5.238 2.073-.466 2.136-.03 5.389 1.877 5.299.527-.025 1.057-.067 1.571-.149.067.25.052.761-.043 1.246-.369 1.864 2.171 2.751 2.539.883.214-1.093-.195-1.942-.373-2.737.516-.343.96-.808 1.269-1.472z"/><path fill="#963B22" d="M21.043 1.71C19.894.186 18.228-.519 15.243.431c-2.607.829-1.788 3.076-1.297 2.594.782-.768 1.757-.458 1.757-.458l.632 2.315s.353.242.553-.52c.199-.762 1.239-.778 1.541-.137.469.996-.233 1.139-.331 1.711-.31 1.81 1.713 1.864 1.713 1.864s.383.178 1.135-1.103c.753-1.283 1.238-3.473.097-4.987z"/><path fill="#CC9B7A" d="M23.696 20.993c-.553 0-1-.447-1-1 0-4.52-4.661-9.247-4.707-9.294-.39-.391-.389-1.024.001-1.414.391-.39 1.023-.389 1.413.001.216.216 5.293 5.355 5.293 10.708 0 .552-.447.999-1 .999z"/><path fill="#2A6797" d="M15.696 34.993c-1.104 0-2-.896-2-2v-7c0-.348.091-.69.264-.992l4-7c.548-.958 1.771-1.293 2.729-.744.959.548 1.292 1.77.744 2.729l-3.736 6.539v6.469c-.001 1.104-.897 1.999-2.001 1.999z"/><path fill="#4289C1" d="M24.697 31.993c-.587 0-1.168-.257-1.562-.751l-4-5c-.2-.249-.337-.543-.399-.856l-1-5c-.217-1.083.485-2.137 1.568-2.354 1.088-.219 2.138.486 2.354 1.568l.905 4.524 3.695 4.62c.691.862.551 2.121-.312 2.811-.369.295-.811.438-1.249.438z"/><path fill="#77B255" d="M22.696 18.993s0 1-2 1h-4c-2-6-.359-12 2-12 3 0 3 4 4 9"/><path fill="#D5AB88" d="M17.696 11.991c0 .045-.066 4.552-3.6 7.203l.01.014c-.243.183-.41.459-.41.786 0 .553.448 1 1 1 .225 0 .423-.088.59-.214l.01.014c4.35-3.262 4.4-8.575 4.4-8.8l-2-.003z"/><path fill="#292F33" d="M27.878 31.049c.271-.271.16-.676-.129-.94-.463-.422-.672-.574-.672-.574-.255-.168-.873-.418-1.13-.161-1.872 1.865-3.304 4.53-3.356 5.459-.031.548.645.855 1.029.471 1.132-1.133 3.276-3.275 4.258-4.255zm-10.266 4.854c.383.003.594-.361.578-.753-.025-.626-.064-.882-.064-.882-.059-.3-.316-.915-.68-.918-2.642-.023-5.545.83-6.243 1.446-.412.363-.156 1.06.388 1.063 1.603.013 4.633.034 6.021.044z"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#292F33" d="M18.011 34.975l-.052.016c.018-.068.042-.19.042-.383 0-.303-.156-.869-.199-.95s-.09-.139-.194-.11c-.079.022-.685.326-1.072.341-.719.027-1.066-.618-1.066-.618s-.399.228-.716.413c-.318.185-.687.462-.959.627-.232.141-.497.208-.771.243s-.497.023-.563.029c-.066.006-.621-.061-.641.488l.003.127-.054-.026s-.048.17-.052.202c-.004.033-.024.052.046.096.07.044.378.176.77.274s1.028.243 1.519.243.909-.098 1.151-.156c.243-.058.763-.169.813-.146.05.023.116.191.173.243.058.052 1.61-.081 1.721-.104.112-.023.146-.119.146-.162v-.649c.002-.027-.021-.045-.045-.038zm10.947-3.752l-.504-.429c-.019-.016-.048-.011-.059.012l-.022.051c-.041-.059-.12-.158-.269-.285-.235-.2-.777-.454-.868-.473-.091-.02-.167-.022-.213.077-.035.076-.199.746-.444 1.056-.454.575-1.184.418-1.184.418l-.153.828c-.067.368-.096.838-.148 1.158-.044.273-.167.523-.322.758-.154.236-.31.4-.35.456-.039.055-.457.441-.045.82l.101.081-.055.025s.1.149.122.174c.022.025.025.053.104.028s.386-.177.721-.416c.336-.24.868-.637 1.192-1.018.325-.381.524-.77.64-.996.116-.226.373-.703.424-.727.051-.024.224.036.303.026.078-.01 1.001-1.302 1.057-1.403s.005-.193-.028-.221z"/><path fill="#CC9B7A" d="M19.3 12.243c.927.96 3.062 2.89 3.109 3.121.251 1.223.614 2.606.52 3.454-.068.615.376 1.298.551 1.583.218.354.781.898 1.141.86.224-.023.567-.43.384-.636-.357-.4-.298-1.009-.522-1.559-.449-1.105-.045-3.194-.661-4.563-.256-.567-.733-1.693-2.824-3.626-.511.462-1.698 1.366-1.698 1.366z"/><path fill="#D4AB88" d="M19.005 1.384c-1.593-.627-4.077.182-4.365 2.043-.287 1.848.239 4.747 1.863 4.572 1.702-.184 3.448-.554 4.138-2.307s-.043-3.681-1.636-4.308z"/><path fill="#D4AB88" d="M20.189 6.143c2.318-2.723-3.266-2.458-3.266-2.458-1.057.038-.329 1.799-.827 2.761-.341.665 1.095 1.018 1.095 1.018s.659-.01.694.79v.007c.008.204-.013.445-.108.769-.473 1.601 1.677 2.582 2.149.978.187-.635.114-1.193.02-1.708l-.009-.046c-.144-.766-.322-1.437.252-2.111z"/><path fill="#963B22" d="M20.825 2.026c-1.061-1.242-2.58-1.901-5.019-.791-.994.452-1.439.285-1.58.484-.679.953.246 2.01.608 1.799 1.148-.669 2.183-.47 2.447.014s.021 1.354.234 1.359c.579.015.485-.552.714-.878.375-.534.946-.232 1.071.362.099.471 0 1.271-.77 1.412.523 1.151 1.56 1.502 1.56 1.502s.337.132.912-1.001c.576-1.134.877-3.029-.177-4.262z"/><path fill="#2A6797" d="M16.062 34.203c-1.266.109-1.853-.233-1.721-.416.165-.228.128-.397.13-.536C14.499 30.81 14 27.26 14 27.26c0-.348.003-.813.312-1.562.778-1.883 3.951-7.69 3.951-7.69.548-.958 1.771-1.293 2.729-.744.959.548 1.122 1.405.744 2.729-.715 2.508-2.965 5.602-3.903 7.477.224 2.121-.174 3.853.035 5.857.03.288-.54.767-1.806.876z"/><path fill="#4289C1" d="M26.797 31.931c-.364.553-.97.942-1.598.838-1.269-1.924-4.955-5.321-4.955-5.321-.241-.25-.562-.587-.86-1.341-.748-1.895-2.498-8.277-2.498-8.277-.272-1.07.376-2.16 1.446-2.43 1.07-.272 1.783.232 2.43 1.446 1.227 2.301 1.757 6.09 2.384 8.09 1.87 1.568 2.383 3.603 4.275 5.151-.065.857-.26 1.291-.624 1.844z"/><path fill="#77B255" d="M23 20s0 1-2 1h-4.898c-.415-2-.027-5.004.006-7.765.043-3.623 2.298-5.609 3.71-5.155 1.846.594 2.693 2.641 2.932 5.858S23 20 23 20z"/><path fill="#D4AB88" d="M17.75 11.792c-.167 1.399-.322 4.433-.479 4.625-.833 1.021-1.722 2.24-2.479 2.729-.549.354-.811 1.174-.927 1.507-.144.414-.213 1.238.057 1.507.169.168.73.177.776-.11.09-.559.626-.917.927-1.467.604-1.104 2.583-2.167 3.292-3.584.294-.588.896-1.729 1.083-4.729-.72-.11-2.25-.478-2.25-.478z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f6b6-1f3fe-200d-2640-fe0f.svg b/public/emoji/1f6b6-1f3fe-200d-2640-fe0f.svg
index 3f10e2f6abf78deb8103f921776b83e3a24b506a..352e7af5d3516233e7b1d4698c23f572f61c67d1 100644
--- a/public/emoji/1f6b6-1f3fe-200d-2640-fe0f.svg
+++ b/public/emoji/1f6b6-1f3fe-200d-2640-fe0f.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#AF7E57" d="M15.316 3.261C14.109 3.528 16.37 4.79 16 6c-.252.838.225 0 1 0 0 0 .627 1.283.423 3.226-.207 1.94 2.472 2.616 2.677.673.204-1.941-1.385-2.988-.511-4.5 2.092-3.619-4.273-2.138-4.273-2.138"/><path fill="#AF7E57" d="M22 4c0 2.209-1.791 4-4 4s-4-1.791-4-4 1.791-4 4-4 4 1.791 4 4"/><path fill="#60352A" d="M26.208 4.766c-1.037-.051-2.041-.169-3.756-2.378-1.14-1.469-2.205-2.412-4.84-2.387-2.798.026-5.141 2.407-3.346 3.598.783.52 1.44.273 2.698.625 1.975.553 2.274 2.654 4.059 3.125 3.491.922 6.222-2.532 5.185-2.583z"/><path fill="#9B6A49" d="M23.696 20.993c-.553 0-1-.447-1-1 0-4.519-4.661-9.247-4.708-9.294-.39-.391-.389-1.024.001-1.414.391-.39 1.024-.389 1.413 0 .216.216 5.293 5.355 5.293 10.708.001.553-.447 1-.999 1z"/><path fill="#2A6797" d="M15.696 34.993c-1.104 0-2-.896-2-2v-7c0-.348.091-.69.264-.992l4-7c.548-.958 1.771-1.293 2.728-.744.959.548 1.292 1.769.744 2.729l-3.736 6.539v6.469c0 1.104-.896 1.999-2 1.999z"/><path fill="#4289C1" d="M24.697 31.993c-.587 0-1.168-.257-1.562-.751l-4-5c-.2-.249-.337-.543-.399-.856l-1-5c-.217-1.083.485-2.137 1.568-2.353 1.088-.219 2.138.486 2.354 1.568l.905 4.523 3.695 4.62c.69.862.551 2.121-.312 2.811-.37.295-.811.438-1.249.438z"/><path fill="#9268CA" d="M22.696 18.993s0 1-2 1h-4c-2-6-.359-12 2-12 3 0 3 4 4 9"/><path fill="#AF7E57" d="M17.696 11.99c0 .045-.066 4.552-3.6 7.203l.01.014c-.243.183-.41.459-.41.786 0 .553.448 1 1 1 .225 0 .423-.088.59-.214l.01.014c4.35-3.262 4.4-8.575 4.4-8.8l-2-.003z"/><path fill="#292F33" d="M27.877 31.048c.271-.271.16-.676-.129-.94-.463-.422-.672-.574-.672-.574-.255-.168-.873-.418-1.13-.161-1.872 1.865-3.304 4.53-3.356 5.459-.031.548.645.855 1.029.471l4.258-4.255zm-10.266 4.855c.383.003.594-.361.578-.753-.025-.626-.064-.882-.064-.882-.059-.3-.316-.915-.68-.918-2.642-.023-5.545.83-6.243 1.446-.412.363-.156 1.06.388 1.063l6.021.044z"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#292F33" d="M18.011 34.975l-.052.016c.018-.068.042-.19.042-.383 0-.303-.156-.869-.199-.95s-.09-.139-.194-.11c-.079.022-.685.326-1.072.341-.719.027-1.066-.618-1.066-.618s-.399.228-.716.413c-.318.185-.687.462-.959.627-.232.141-.497.208-.771.243s-.497.023-.563.029c-.066.006-.621-.061-.641.488l.003.127-.054-.026s-.048.17-.052.202c-.004.033-.024.052.046.096.07.044.378.176.77.274s1.028.243 1.519.243.909-.098 1.151-.156c.243-.058.763-.169.813-.146.05.023.116.191.173.243.058.052 1.61-.081 1.721-.104.112-.023.146-.119.146-.162v-.649c.002-.027-.021-.045-.045-.038zm10.947-3.752l-.504-.429c-.019-.016-.048-.011-.059.012l-.022.051c-.041-.059-.12-.158-.269-.285-.235-.2-.777-.454-.868-.473-.091-.02-.167-.022-.213.077-.035.076-.199.746-.444 1.056-.454.575-1.184.418-1.184.418l-.153.828c-.067.368-.096.838-.148 1.158-.044.273-.167.523-.322.758-.154.236-.31.4-.35.456-.039.055-.457.441-.045.82l.101.081-.055.025s.1.149.122.174c.022.025.025.053.104.028s.386-.177.721-.416c.336-.24.868-.637 1.192-1.018.325-.381.524-.77.64-.996.116-.226.373-.703.424-.727.051-.024.224.036.303.026.078-.01 1.001-1.302 1.057-1.403s.005-.193-.028-.221z"/><path fill="#9B6A49" d="M19.3 12.243c.927.96 3.062 2.89 3.109 3.121.251 1.223.614 2.606.52 3.454-.068.615.376 1.298.551 1.583.218.354.781.898 1.141.86.224-.023.567-.43.384-.636-.357-.4-.298-1.009-.522-1.559-.449-1.105-.045-3.194-.661-4.563-.256-.567-.733-1.693-2.824-3.626-.511.462-1.698 1.366-1.698 1.366z"/><path fill="#AF7E57" d="M19.005 1.384c-1.593-.627-4.077.182-4.365 2.043-.287 1.848.239 4.747 1.863 4.572 1.702-.184 3.448-.554 4.138-2.307s-.043-3.681-1.636-4.308z"/><path fill="#AF7E57" d="M20.189 6.143c2.318-2.723-3.266-2.458-3.266-2.458-1.057.038-.329 1.799-.827 2.761-.341.665 1.095 1.018 1.095 1.018s.659-.01.694.79v.007c.008.204-.013.445-.108.769-.473 1.601 1.677 2.582 2.149.978.187-.635.114-1.193.02-1.708l-.009-.046c-.144-.766-.322-1.437.252-2.111z"/><path fill="#60352A" d="M20.825 2.026c-1.061-1.242-2.52-1.757-5.019-.791-2.183.844-1.481 2.579-.972 2.282 1.402-.817 2.332-.119 3.046 1.021.208-.56 1.122-.904 1.307-.085.208.921-.647 1.322-.533 1.573.038.084-.043-.076 0 0 .547.96 1.437 1.262 1.437 1.262s.337.132.912-1.001.876-3.028-.178-4.261z"/><path fill="#60352A" d="M20.251 3.332c2.163.467 1.275 3.839 1.487 5.08.261 1.528 1.761 1.582 1.761 1.582s-.247-1.064-.116-2.177c.183-1.543 1.189-2.789.127-4.296-1.355-1.924-4.604-.479-3.259-.189z"/><path fill="#2A6797" d="M16.062 34.203c-1.266.109-1.853-.233-1.721-.416.165-.228.128-.397.13-.536C14.499 30.81 14 27.26 14 27.26c0-.348.003-.813.312-1.562.778-1.883 3.951-7.69 3.951-7.69.548-.958 1.771-1.293 2.729-.744.959.548 1.122 1.405.744 2.729-.715 2.508-2.965 5.602-3.903 7.477.224 2.121-.174 3.853.035 5.857.03.288-.54.767-1.806.876z"/><path fill="#4289C1" d="M26.797 31.931c-.364.553-.97.942-1.598.838-1.269-1.924-4.955-5.321-4.955-5.321-.241-.25-.562-.587-.86-1.341-.748-1.895-2.498-8.277-2.498-8.277-.272-1.07.376-2.16 1.446-2.43 1.07-.272 1.783.232 2.43 1.446 1.227 2.301 1.757 6.09 2.384 8.09 1.87 1.568 2.383 3.603 4.275 5.151-.065.857-.26 1.291-.624 1.844z"/><path fill="#9268CA" d="M23 20s0 1-2 1h-4.898c-.415-2 .554-3.818-.102-6.5-.848-3.46 2.406-6.874 3.818-6.42 1.846.594 2.693 2.641 2.932 5.858S23 20 23 20z"/><path fill="#AF7E57" d="M17.75 11.792c-.167 1.399-.322 4.433-.479 4.625-.833 1.021-1.722 2.24-2.479 2.729-.549.354-.811 1.174-.927 1.507-.144.414-.213 1.238.057 1.507.169.168.73.177.776-.11.09-.559.626-.917.927-1.467.604-1.104 2.583-2.167 3.292-3.584.294-.588.896-1.729 1.083-4.729-.72-.11-2.25-.478-2.25-.478z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f6b6-1f3fe-200d-2642-fe0f.svg b/public/emoji/1f6b6-1f3fe-200d-2642-fe0f.svg
index 8c7e5b671c13a63fe46e3e909e07daa28f87898b..591c5622362b45a17bcbffaaf1932859e6851712 100644
--- a/public/emoji/1f6b6-1f3fe-200d-2642-fe0f.svg
+++ b/public/emoji/1f6b6-1f3fe-200d-2642-fe0f.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#AF7E57" d="M20.567 5.975c.929-1.996.212-4.298-1.602-5.143-1.814-.845-4.769-.077-5.238 2.073-.466 2.136-.03 5.389 1.877 5.299.527-.025 1.057-.067 1.571-.149.067.25.052.761-.043 1.246-.369 1.864 2.171 2.751 2.539.883.214-1.093-.195-1.942-.373-2.737.516-.343.96-.808 1.269-1.472z"/><path fill="#60352A" d="M21.043 1.71C19.894.186 18.228-.519 15.243.431c-2.607.829-1.788 3.076-1.297 2.594.782-.768 1.757-.458 1.757-.458l.632 2.315s.353.242.553-.52c.199-.762 1.239-.778 1.541-.137.469.996-.233 1.139-.331 1.711-.31 1.81 1.713 1.864 1.713 1.864s.383.178 1.135-1.103c.753-1.283 1.238-3.473.097-4.987z"/><path fill="#9B6A49" d="M23.696 20.993c-.553 0-1-.447-1-1 0-4.52-4.661-9.247-4.707-9.294-.39-.391-.389-1.024.001-1.414.391-.39 1.023-.389 1.413.001.216.216 5.293 5.355 5.293 10.708 0 .552-.447.999-1 .999z"/><path fill="#2A6797" d="M15.696 34.993c-1.104 0-2-.896-2-2v-7c0-.348.091-.69.264-.992l4-7c.548-.958 1.771-1.293 2.729-.744.959.548 1.292 1.77.744 2.729l-3.736 6.539v6.469c-.001 1.104-.897 1.999-2.001 1.999z"/><path fill="#4289C1" d="M24.697 31.993c-.587 0-1.168-.257-1.562-.751l-4-5c-.2-.249-.337-.543-.399-.856l-1-5c-.217-1.083.485-2.137 1.568-2.354 1.088-.219 2.138.486 2.354 1.568l.905 4.524 3.695 4.62c.691.862.551 2.121-.312 2.811-.369.295-.811.438-1.249.438z"/><path fill="#77B255" d="M22.696 18.993s0 1-2 1h-4c-2-6-.359-12 2-12 3 0 3 4 4 9"/><path fill="#AF7E57" d="M17.696 11.991c0 .045-.066 4.552-3.6 7.203l.01.014c-.243.183-.41.459-.41.786 0 .553.448 1 1 1 .225 0 .423-.088.59-.214l.01.014c4.35-3.262 4.4-8.575 4.4-8.8l-2-.003z"/><path fill="#292F33" d="M27.878 31.049c.271-.271.16-.676-.129-.94-.463-.422-.672-.574-.672-.574-.255-.168-.873-.418-1.13-.161-1.872 1.865-3.304 4.53-3.356 5.459-.031.548.645.855 1.029.471 1.132-1.133 3.276-3.275 4.258-4.255zm-10.266 4.854c.383.003.594-.361.578-.753-.025-.626-.064-.882-.064-.882-.059-.3-.316-.915-.68-.918-2.642-.023-5.545.83-6.243 1.446-.412.363-.156 1.06.388 1.063 1.603.013 4.633.034 6.021.044z"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#292F33" d="M18.011 34.975l-.052.016c.018-.068.042-.19.042-.383 0-.303-.156-.869-.199-.95s-.09-.139-.194-.11c-.079.022-.685.326-1.072.341-.719.027-1.066-.618-1.066-.618s-.399.228-.716.413c-.318.185-.687.462-.959.627-.232.141-.497.208-.771.243s-.497.023-.563.029c-.066.006-.621-.061-.641.488l.003.127-.054-.026s-.048.17-.052.202c-.004.033-.024.052.046.096.07.044.378.176.77.274s1.028.243 1.519.243.909-.098 1.151-.156c.243-.058.763-.169.813-.146.05.023.116.191.173.243.058.052 1.61-.081 1.721-.104.112-.023.146-.119.146-.162v-.649c.002-.027-.021-.045-.045-.038zm10.947-3.752l-.504-.429c-.019-.016-.048-.011-.059.012l-.022.051c-.041-.059-.12-.158-.269-.285-.235-.2-.777-.454-.868-.473-.091-.02-.167-.022-.213.077-.035.076-.199.746-.444 1.056-.454.575-1.184.418-1.184.418l-.153.828c-.067.368-.096.838-.148 1.158-.044.273-.167.523-.322.758-.154.236-.31.4-.35.456-.039.055-.457.441-.045.82l.101.081-.055.025s.1.149.122.174c.022.025.025.053.104.028s.386-.177.721-.416c.336-.24.868-.637 1.192-1.018.325-.381.524-.77.64-.996.116-.226.373-.703.424-.727.051-.024.224.036.303.026.078-.01 1.001-1.302 1.057-1.403s.005-.193-.028-.221z"/><path fill="#9B6A49" d="M19.3 12.243c.927.96 3.062 2.89 3.109 3.121.251 1.223.614 2.606.52 3.454-.068.615.376 1.298.551 1.583.218.354.781.898 1.141.86.224-.023.567-.43.384-.636-.357-.4-.298-1.009-.522-1.559-.449-1.105-.045-3.194-.661-4.563-.256-.567-.733-1.693-2.824-3.626-.511.462-1.698 1.366-1.698 1.366z"/><path fill="#AF7E57" d="M19.005 1.384c-1.593-.627-4.077.182-4.365 2.043-.287 1.848.239 4.747 1.863 4.572 1.702-.184 3.448-.554 4.138-2.307s-.043-3.681-1.636-4.308z"/><path fill="#AF7E57" d="M20.189 6.143c2.318-2.723-3.266-2.458-3.266-2.458-1.057.038-.329 1.799-.827 2.761-.341.665 1.095 1.018 1.095 1.018s.659-.01.694.79v.007c.008.204-.013.445-.108.769-.473 1.601 1.677 2.582 2.149.978.187-.635.114-1.193.02-1.708l-.009-.046c-.144-.766-.322-1.437.252-2.111z"/><path fill="#60352A" d="M20.825 2.026c-1.061-1.242-2.58-1.901-5.019-.791-.994.452-1.439.285-1.58.484-.679.953.246 2.01.608 1.799 1.148-.669 2.183-.47 2.447.014s.021 1.354.234 1.359c.579.015.485-.552.714-.878.375-.534.946-.232 1.071.362.099.471 0 1.271-.77 1.412.523 1.151 1.56 1.502 1.56 1.502s.337.132.912-1.001c.576-1.134.877-3.029-.177-4.262z"/><path fill="#2A6797" d="M16.062 34.203c-1.266.109-1.853-.233-1.721-.416.165-.228.128-.397.13-.536C14.499 30.81 14 27.26 14 27.26c0-.348.003-.813.312-1.562.778-1.883 3.951-7.69 3.951-7.69.548-.958 1.771-1.293 2.729-.744.959.548 1.122 1.405.744 2.729-.715 2.508-2.965 5.602-3.903 7.477.224 2.121-.174 3.853.035 5.857.03.288-.54.767-1.806.876z"/><path fill="#4289C1" d="M26.797 31.931c-.364.553-.97.942-1.598.838-1.269-1.924-4.955-5.321-4.955-5.321-.241-.25-.562-.587-.86-1.341-.748-1.895-2.498-8.277-2.498-8.277-.272-1.07.376-2.16 1.446-2.43 1.07-.272 1.783.232 2.43 1.446 1.227 2.301 1.757 6.09 2.384 8.09 1.87 1.568 2.383 3.603 4.275 5.151-.065.857-.26 1.291-.624 1.844z"/><path fill="#77B255" d="M23 20s0 1-2 1h-4.898c-.415-2-.027-5.004.006-7.765.043-3.623 2.298-5.609 3.71-5.155 1.846.594 2.693 2.641 2.932 5.858S23 20 23 20z"/><path fill="#AF7E57" d="M17.75 11.792c-.167 1.399-.322 4.433-.479 4.625-.833 1.021-1.722 2.24-2.479 2.729-.549.354-.811 1.174-.927 1.507-.144.414-.213 1.238.057 1.507.169.168.73.177.776-.11.09-.559.626-.917.927-1.467.604-1.104 2.583-2.167 3.292-3.584.294-.588.896-1.729 1.083-4.729-.72-.11-2.25-.478-2.25-.478z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f6b6-1f3fe.svg b/public/emoji/1f6b6-1f3fe.svg
index 8c7e5b671c13a63fe46e3e909e07daa28f87898b..591c5622362b45a17bcbffaaf1932859e6851712 100644
--- a/public/emoji/1f6b6-1f3fe.svg
+++ b/public/emoji/1f6b6-1f3fe.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#AF7E57" d="M20.567 5.975c.929-1.996.212-4.298-1.602-5.143-1.814-.845-4.769-.077-5.238 2.073-.466 2.136-.03 5.389 1.877 5.299.527-.025 1.057-.067 1.571-.149.067.25.052.761-.043 1.246-.369 1.864 2.171 2.751 2.539.883.214-1.093-.195-1.942-.373-2.737.516-.343.96-.808 1.269-1.472z"/><path fill="#60352A" d="M21.043 1.71C19.894.186 18.228-.519 15.243.431c-2.607.829-1.788 3.076-1.297 2.594.782-.768 1.757-.458 1.757-.458l.632 2.315s.353.242.553-.52c.199-.762 1.239-.778 1.541-.137.469.996-.233 1.139-.331 1.711-.31 1.81 1.713 1.864 1.713 1.864s.383.178 1.135-1.103c.753-1.283 1.238-3.473.097-4.987z"/><path fill="#9B6A49" d="M23.696 20.993c-.553 0-1-.447-1-1 0-4.52-4.661-9.247-4.707-9.294-.39-.391-.389-1.024.001-1.414.391-.39 1.023-.389 1.413.001.216.216 5.293 5.355 5.293 10.708 0 .552-.447.999-1 .999z"/><path fill="#2A6797" d="M15.696 34.993c-1.104 0-2-.896-2-2v-7c0-.348.091-.69.264-.992l4-7c.548-.958 1.771-1.293 2.729-.744.959.548 1.292 1.77.744 2.729l-3.736 6.539v6.469c-.001 1.104-.897 1.999-2.001 1.999z"/><path fill="#4289C1" d="M24.697 31.993c-.587 0-1.168-.257-1.562-.751l-4-5c-.2-.249-.337-.543-.399-.856l-1-5c-.217-1.083.485-2.137 1.568-2.354 1.088-.219 2.138.486 2.354 1.568l.905 4.524 3.695 4.62c.691.862.551 2.121-.312 2.811-.369.295-.811.438-1.249.438z"/><path fill="#77B255" d="M22.696 18.993s0 1-2 1h-4c-2-6-.359-12 2-12 3 0 3 4 4 9"/><path fill="#AF7E57" d="M17.696 11.991c0 .045-.066 4.552-3.6 7.203l.01.014c-.243.183-.41.459-.41.786 0 .553.448 1 1 1 .225 0 .423-.088.59-.214l.01.014c4.35-3.262 4.4-8.575 4.4-8.8l-2-.003z"/><path fill="#292F33" d="M27.878 31.049c.271-.271.16-.676-.129-.94-.463-.422-.672-.574-.672-.574-.255-.168-.873-.418-1.13-.161-1.872 1.865-3.304 4.53-3.356 5.459-.031.548.645.855 1.029.471 1.132-1.133 3.276-3.275 4.258-4.255zm-10.266 4.854c.383.003.594-.361.578-.753-.025-.626-.064-.882-.064-.882-.059-.3-.316-.915-.68-.918-2.642-.023-5.545.83-6.243 1.446-.412.363-.156 1.06.388 1.063 1.603.013 4.633.034 6.021.044z"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#292F33" d="M18.011 34.975l-.052.016c.018-.068.042-.19.042-.383 0-.303-.156-.869-.199-.95s-.09-.139-.194-.11c-.079.022-.685.326-1.072.341-.719.027-1.066-.618-1.066-.618s-.399.228-.716.413c-.318.185-.687.462-.959.627-.232.141-.497.208-.771.243s-.497.023-.563.029c-.066.006-.621-.061-.641.488l.003.127-.054-.026s-.048.17-.052.202c-.004.033-.024.052.046.096.07.044.378.176.77.274s1.028.243 1.519.243.909-.098 1.151-.156c.243-.058.763-.169.813-.146.05.023.116.191.173.243.058.052 1.61-.081 1.721-.104.112-.023.146-.119.146-.162v-.649c.002-.027-.021-.045-.045-.038zm10.947-3.752l-.504-.429c-.019-.016-.048-.011-.059.012l-.022.051c-.041-.059-.12-.158-.269-.285-.235-.2-.777-.454-.868-.473-.091-.02-.167-.022-.213.077-.035.076-.199.746-.444 1.056-.454.575-1.184.418-1.184.418l-.153.828c-.067.368-.096.838-.148 1.158-.044.273-.167.523-.322.758-.154.236-.31.4-.35.456-.039.055-.457.441-.045.82l.101.081-.055.025s.1.149.122.174c.022.025.025.053.104.028s.386-.177.721-.416c.336-.24.868-.637 1.192-1.018.325-.381.524-.77.64-.996.116-.226.373-.703.424-.727.051-.024.224.036.303.026.078-.01 1.001-1.302 1.057-1.403s.005-.193-.028-.221z"/><path fill="#9B6A49" d="M19.3 12.243c.927.96 3.062 2.89 3.109 3.121.251 1.223.614 2.606.52 3.454-.068.615.376 1.298.551 1.583.218.354.781.898 1.141.86.224-.023.567-.43.384-.636-.357-.4-.298-1.009-.522-1.559-.449-1.105-.045-3.194-.661-4.563-.256-.567-.733-1.693-2.824-3.626-.511.462-1.698 1.366-1.698 1.366z"/><path fill="#AF7E57" d="M19.005 1.384c-1.593-.627-4.077.182-4.365 2.043-.287 1.848.239 4.747 1.863 4.572 1.702-.184 3.448-.554 4.138-2.307s-.043-3.681-1.636-4.308z"/><path fill="#AF7E57" d="M20.189 6.143c2.318-2.723-3.266-2.458-3.266-2.458-1.057.038-.329 1.799-.827 2.761-.341.665 1.095 1.018 1.095 1.018s.659-.01.694.79v.007c.008.204-.013.445-.108.769-.473 1.601 1.677 2.582 2.149.978.187-.635.114-1.193.02-1.708l-.009-.046c-.144-.766-.322-1.437.252-2.111z"/><path fill="#60352A" d="M20.825 2.026c-1.061-1.242-2.58-1.901-5.019-.791-.994.452-1.439.285-1.58.484-.679.953.246 2.01.608 1.799 1.148-.669 2.183-.47 2.447.014s.021 1.354.234 1.359c.579.015.485-.552.714-.878.375-.534.946-.232 1.071.362.099.471 0 1.271-.77 1.412.523 1.151 1.56 1.502 1.56 1.502s.337.132.912-1.001c.576-1.134.877-3.029-.177-4.262z"/><path fill="#2A6797" d="M16.062 34.203c-1.266.109-1.853-.233-1.721-.416.165-.228.128-.397.13-.536C14.499 30.81 14 27.26 14 27.26c0-.348.003-.813.312-1.562.778-1.883 3.951-7.69 3.951-7.69.548-.958 1.771-1.293 2.729-.744.959.548 1.122 1.405.744 2.729-.715 2.508-2.965 5.602-3.903 7.477.224 2.121-.174 3.853.035 5.857.03.288-.54.767-1.806.876z"/><path fill="#4289C1" d="M26.797 31.931c-.364.553-.97.942-1.598.838-1.269-1.924-4.955-5.321-4.955-5.321-.241-.25-.562-.587-.86-1.341-.748-1.895-2.498-8.277-2.498-8.277-.272-1.07.376-2.16 1.446-2.43 1.07-.272 1.783.232 2.43 1.446 1.227 2.301 1.757 6.09 2.384 8.09 1.87 1.568 2.383 3.603 4.275 5.151-.065.857-.26 1.291-.624 1.844z"/><path fill="#77B255" d="M23 20s0 1-2 1h-4.898c-.415-2-.027-5.004.006-7.765.043-3.623 2.298-5.609 3.71-5.155 1.846.594 2.693 2.641 2.932 5.858S23 20 23 20z"/><path fill="#AF7E57" d="M17.75 11.792c-.167 1.399-.322 4.433-.479 4.625-.833 1.021-1.722 2.24-2.479 2.729-.549.354-.811 1.174-.927 1.507-.144.414-.213 1.238.057 1.507.169.168.73.177.776-.11.09-.559.626-.917.927-1.467.604-1.104 2.583-2.167 3.292-3.584.294-.588.896-1.729 1.083-4.729-.72-.11-2.25-.478-2.25-.478z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f6b6-1f3ff-200d-2640-fe0f.svg b/public/emoji/1f6b6-1f3ff-200d-2640-fe0f.svg
index 7516079f851046437c3969bc603cccff8d39d7b2..ae7e414305c91c0b079535354c8183611e782280 100644
--- a/public/emoji/1f6b6-1f3ff-200d-2640-fe0f.svg
+++ b/public/emoji/1f6b6-1f3ff-200d-2640-fe0f.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#7C533E" d="M15.316 3.261C14.109 3.528 16.37 4.79 16 6c-.252.838.225 0 1 0 0 0 .627 1.283.423 3.226-.207 1.94 2.472 2.616 2.677.673.204-1.941-1.385-2.988-.511-4.5 2.092-3.619-4.273-2.138-4.273-2.138"/><path fill="#7C533E" d="M22 4c0 2.209-1.791 4-4 4s-4-1.791-4-4 1.791-4 4-4 4 1.791 4 4"/><path fill="#0B0200" d="M26.208 4.766c-1.037-.051-2.041-.169-3.756-2.378-1.14-1.469-2.205-2.412-4.84-2.387-2.798.026-5.141 2.407-3.346 3.598.783.52 1.44.273 2.698.625 1.975.553 2.274 2.654 4.059 3.125 3.491.922 6.222-2.532 5.185-2.583z"/><path fill="#664131" d="M23.696 20.993c-.553 0-1-.447-1-1 0-4.519-4.661-9.247-4.708-9.294-.39-.391-.389-1.024.001-1.414.391-.39 1.024-.389 1.413 0 .216.216 5.293 5.355 5.293 10.708.001.553-.447 1-.999 1z"/><path fill="#2A6797" d="M15.696 34.993c-1.104 0-2-.896-2-2v-7c0-.348.091-.69.264-.992l4-7c.548-.958 1.771-1.293 2.728-.744.959.548 1.292 1.769.744 2.729l-3.736 6.539v6.469c0 1.104-.896 1.999-2 1.999z"/><path fill="#4289C1" d="M24.697 31.993c-.587 0-1.168-.257-1.562-.751l-4-5c-.2-.249-.337-.543-.399-.856l-1-5c-.217-1.083.485-2.137 1.568-2.353 1.088-.219 2.138.486 2.354 1.568l.905 4.523 3.695 4.62c.69.862.551 2.121-.312 2.811-.37.295-.811.438-1.249.438z"/><path fill="#9268CA" d="M22.696 18.993s0 1-2 1h-4c-2-6-.359-12 2-12 3 0 3 4 4 9"/><path fill="#7C533E" d="M17.696 11.99c0 .045-.066 4.552-3.6 7.203l.01.014c-.243.183-.41.459-.41.786 0 .553.448 1 1 1 .225 0 .423-.088.59-.214l.01.014c4.35-3.262 4.4-8.575 4.4-8.8l-2-.003z"/><path fill="#292F33" d="M27.877 31.048c.271-.271.16-.676-.129-.94-.463-.422-.672-.574-.672-.574-.255-.168-.873-.418-1.13-.161-1.872 1.865-3.304 4.53-3.356 5.459-.031.548.645.855 1.029.471l4.258-4.255zm-10.266 4.855c.383.003.594-.361.578-.753-.025-.626-.064-.882-.064-.882-.059-.3-.316-.915-.68-.918-2.642-.023-5.545.83-6.243 1.446-.412.363-.156 1.06.388 1.063l6.021.044z"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#292F33" d="M18.011 34.975l-.052.016c.018-.068.042-.19.042-.383 0-.303-.156-.869-.199-.95s-.09-.139-.194-.11c-.079.022-.685.326-1.072.341-.719.027-1.066-.618-1.066-.618s-.399.228-.716.413c-.318.185-.687.462-.959.627-.232.141-.497.208-.771.243s-.497.023-.563.029c-.066.006-.621-.061-.641.488l.003.127-.054-.026s-.048.17-.052.202c-.004.033-.024.052.046.096.07.044.378.176.77.274s1.028.243 1.519.243.909-.098 1.151-.156c.243-.058.763-.169.813-.146.05.023.116.191.173.243.058.052 1.61-.081 1.721-.104.112-.023.146-.119.146-.162v-.649c.002-.027-.021-.045-.045-.038zm10.947-3.752l-.504-.429c-.019-.016-.048-.011-.059.012l-.022.051c-.041-.059-.12-.158-.269-.285-.235-.2-.777-.454-.868-.473-.091-.02-.167-.022-.213.077-.035.076-.199.746-.444 1.056-.454.575-1.184.418-1.184.418l-.153.828c-.067.368-.096.838-.148 1.158-.044.273-.167.523-.322.758-.154.236-.31.4-.35.456-.039.055-.457.441-.045.82l.101.081-.055.025s.1.149.122.174c.022.025.025.053.104.028s.386-.177.721-.416c.336-.24.868-.637 1.192-1.018.325-.381.524-.77.64-.996.116-.226.373-.703.424-.727.051-.024.224.036.303.026.078-.01 1.001-1.302 1.057-1.403s.005-.193-.028-.221z"/><path fill="#664131" d="M19.3 12.243c.927.96 3.062 2.89 3.109 3.121.251 1.223.614 2.606.52 3.454-.068.615.376 1.298.551 1.583.218.354.781.898 1.141.86.224-.023.567-.43.384-.636-.357-.4-.298-1.009-.522-1.559-.449-1.105-.045-3.194-.661-4.563-.256-.567-.733-1.693-2.824-3.626-.511.462-1.698 1.366-1.698 1.366z"/><path fill="#7C533E" d="M19.005 1.384c-1.593-.627-4.077.182-4.365 2.043-.287 1.848.239 4.747 1.863 4.572 1.702-.184 3.448-.554 4.138-2.307s-.043-3.681-1.636-4.308z"/><path fill="#7C533E" d="M20.189 6.143c2.318-2.723-3.266-2.458-3.266-2.458-1.057.038-.329 1.799-.827 2.761-.341.665 1.095 1.018 1.095 1.018s.659-.01.694.79v.007c.008.204-.013.445-.108.769-.473 1.601 1.677 2.582 2.149.978.187-.635.114-1.193.02-1.708l-.009-.046c-.144-.766-.322-1.437.252-2.111z"/><path fill="#0B0200" d="M20.825 2.026c-1.061-1.242-2.52-1.757-5.019-.791-2.183.844-1.481 2.579-.972 2.282 1.402-.817 2.332-.119 3.046 1.021.208-.56 1.122-.904 1.307-.085.208.921-.647 1.322-.533 1.573.038.084-.043-.076 0 0 .547.96 1.437 1.262 1.437 1.262s.337.132.912-1.001.876-3.028-.178-4.261z"/><path fill="#0B0200" d="M20.251 3.332c2.163.467 1.275 3.839 1.487 5.08.261 1.528 1.761 1.582 1.761 1.582s-.247-1.064-.116-2.177c.183-1.543 1.189-2.789.127-4.296-1.355-1.924-4.604-.479-3.259-.189z"/><path fill="#2A6797" d="M16.062 34.203c-1.266.109-1.853-.233-1.721-.416.165-.228.128-.397.13-.536C14.499 30.81 14 27.26 14 27.26c0-.348.003-.813.312-1.562.778-1.883 3.951-7.69 3.951-7.69.548-.958 1.771-1.293 2.729-.744.959.548 1.122 1.405.744 2.729-.715 2.508-2.965 5.602-3.903 7.477.224 2.121-.174 3.853.035 5.857.03.288-.54.767-1.806.876z"/><path fill="#4289C1" d="M26.797 31.931c-.364.553-.97.942-1.598.838-1.269-1.924-4.955-5.321-4.955-5.321-.241-.25-.562-.587-.86-1.341-.748-1.895-2.498-8.277-2.498-8.277-.272-1.07.376-2.16 1.446-2.43 1.07-.272 1.783.232 2.43 1.446 1.227 2.301 1.757 6.09 2.384 8.09 1.87 1.568 2.383 3.603 4.275 5.151-.065.857-.26 1.291-.624 1.844z"/><path fill="#9268CA" d="M23 20s0 1-2 1h-4.898c-.415-2 .554-3.818-.102-6.5-.848-3.46 2.406-6.874 3.818-6.42 1.846.594 2.693 2.641 2.932 5.858S23 20 23 20z"/><path fill="#7C533E" d="M17.75 11.792c-.167 1.399-.322 4.433-.479 4.625-.833 1.021-1.722 2.24-2.479 2.729-.549.354-.811 1.174-.927 1.507-.144.414-.213 1.238.057 1.507.169.168.73.177.776-.11.09-.559.626-.917.927-1.467.604-1.104 2.583-2.167 3.292-3.584.294-.588.896-1.729 1.083-4.729-.72-.11-2.25-.478-2.25-.478z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f6b6-1f3ff-200d-2642-fe0f.svg b/public/emoji/1f6b6-1f3ff-200d-2642-fe0f.svg
index 46989f638e3031e9784cce58c29bc2661a6eb539..198a8377e2eb981bd350c01ed0ff90472196c849 100644
--- a/public/emoji/1f6b6-1f3ff-200d-2642-fe0f.svg
+++ b/public/emoji/1f6b6-1f3ff-200d-2642-fe0f.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#7C533E" d="M20.567 5.975c.929-1.996.212-4.298-1.602-5.143-1.814-.845-4.769-.077-5.238 2.073-.466 2.136-.03 5.389 1.877 5.299.527-.025 1.057-.067 1.571-.149.067.25.052.761-.043 1.246-.369 1.864 2.171 2.751 2.539.883.214-1.093-.195-1.942-.373-2.737.516-.343.96-.808 1.269-1.472z"/><path fill="#0B0200" d="M21.043 1.71C19.894.186 18.228-.519 15.243.431c-2.607.829-1.788 3.076-1.297 2.594.782-.768 1.757-.458 1.757-.458l.632 2.315s.353.242.553-.52c.199-.762 1.239-.778 1.541-.137.469.996-.233 1.139-.331 1.711-.31 1.81 1.713 1.864 1.713 1.864s.383.178 1.135-1.103c.753-1.283 1.238-3.473.097-4.987z"/><path fill="#664131" d="M23.696 20.993c-.553 0-1-.447-1-1 0-4.52-4.661-9.247-4.707-9.294-.39-.391-.389-1.024.001-1.414.391-.39 1.023-.389 1.413.001.216.216 5.293 5.355 5.293 10.708 0 .552-.447.999-1 .999z"/><path fill="#2A6797" d="M15.696 34.993c-1.104 0-2-.896-2-2v-7c0-.348.091-.69.264-.992l4-7c.548-.958 1.771-1.293 2.729-.744.959.548 1.292 1.77.744 2.729l-3.736 6.539v6.469c-.001 1.104-.897 1.999-2.001 1.999z"/><path fill="#4289C1" d="M24.697 31.993c-.587 0-1.168-.257-1.562-.751l-4-5c-.2-.249-.337-.543-.399-.856l-1-5c-.217-1.083.485-2.137 1.568-2.354 1.088-.219 2.138.486 2.354 1.568l.905 4.524 3.695 4.62c.691.862.551 2.121-.312 2.811-.369.295-.811.438-1.249.438z"/><path fill="#77B255" d="M22.696 18.993s0 1-2 1h-4c-2-6-.359-12 2-12 3 0 3 4 4 9"/><path fill="#7C533E" d="M17.696 11.991c0 .045-.066 4.552-3.6 7.203l.01.014c-.243.183-.41.459-.41.786 0 .553.448 1 1 1 .225 0 .423-.088.59-.214l.01.014c4.35-3.262 4.4-8.575 4.4-8.8l-2-.003z"/><path fill="#292F33" d="M27.878 31.049c.271-.271.16-.676-.129-.94-.463-.422-.672-.574-.672-.574-.255-.168-.873-.418-1.13-.161-1.872 1.865-3.304 4.53-3.356 5.459-.031.548.645.855 1.029.471 1.132-1.133 3.276-3.275 4.258-4.255zm-10.266 4.854c.383.003.594-.361.578-.753-.025-.626-.064-.882-.064-.882-.059-.3-.316-.915-.68-.918-2.642-.023-5.545.83-6.243 1.446-.412.363-.156 1.06.388 1.063 1.603.013 4.633.034 6.021.044z"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#292F33" d="M18.011 34.975l-.052.016c.018-.068.042-.19.042-.383 0-.303-.156-.869-.199-.95s-.09-.139-.194-.11c-.079.022-.685.326-1.072.341-.719.027-1.066-.618-1.066-.618s-.399.228-.716.413c-.318.185-.687.462-.959.627-.232.141-.497.208-.771.243s-.497.023-.563.029c-.066.006-.621-.061-.641.488l.003.127-.054-.026s-.048.17-.052.202c-.004.033-.024.052.046.096.07.044.378.176.77.274s1.028.243 1.519.243.909-.098 1.151-.156c.243-.058.763-.169.813-.146.05.023.116.191.173.243.058.052 1.61-.081 1.721-.104.112-.023.146-.119.146-.162v-.649c.002-.027-.021-.045-.045-.038zm10.947-3.752l-.504-.429c-.019-.016-.048-.011-.059.012l-.022.051c-.041-.059-.12-.158-.269-.285-.235-.2-.777-.454-.868-.473-.091-.02-.167-.022-.213.077-.035.076-.199.746-.444 1.056-.454.575-1.184.418-1.184.418l-.153.828c-.067.368-.096.838-.148 1.158-.044.273-.167.523-.322.758-.154.236-.31.4-.35.456-.039.055-.457.441-.045.82l.101.081-.055.025s.1.149.122.174c.022.025.025.053.104.028s.386-.177.721-.416c.336-.24.868-.637 1.192-1.018.325-.381.524-.77.64-.996.116-.226.373-.703.424-.727.051-.024.224.036.303.026.078-.01 1.001-1.302 1.057-1.403s.005-.193-.028-.221z"/><path fill="#664131" d="M19.3 12.243c.927.96 3.062 2.89 3.109 3.121.251 1.223.614 2.606.52 3.454-.068.615.376 1.298.551 1.583.218.354.781.898 1.141.86.224-.023.567-.43.384-.636-.357-.4-.298-1.009-.522-1.559-.449-1.105-.045-3.194-.661-4.563-.256-.567-.733-1.693-2.824-3.626-.511.462-1.698 1.366-1.698 1.366z"/><path fill="#7C533E" d="M19.005 1.384c-1.593-.627-4.077.182-4.365 2.043-.287 1.848.239 4.747 1.863 4.572 1.702-.184 3.448-.554 4.138-2.307s-.043-3.681-1.636-4.308z"/><path fill="#7C533E" d="M20.189 6.143c2.318-2.723-3.266-2.458-3.266-2.458-1.057.038-.329 1.799-.827 2.761-.341.665 1.095 1.018 1.095 1.018s.659-.01.694.79v.007c.008.204-.013.445-.108.769-.473 1.601 1.677 2.582 2.149.978.187-.635.114-1.193.02-1.708l-.009-.046c-.144-.766-.322-1.437.252-2.111z"/><path fill="#0B0200" d="M20.825 2.026c-1.061-1.242-2.58-1.901-5.019-.791-.994.452-1.439.285-1.58.484-.679.953.246 2.01.608 1.799 1.148-.669 2.183-.47 2.447.014s.021 1.354.234 1.359c.579.015.485-.552.714-.878.375-.534.946-.232 1.071.362.099.471 0 1.271-.77 1.412.523 1.151 1.56 1.502 1.56 1.502s.337.132.912-1.001c.576-1.134.877-3.029-.177-4.262z"/><path fill="#2A6797" d="M16.062 34.203c-1.266.109-1.853-.233-1.721-.416.165-.228.128-.397.13-.536C14.499 30.81 14 27.26 14 27.26c0-.348.003-.813.312-1.562.778-1.883 3.951-7.69 3.951-7.69.548-.958 1.771-1.293 2.729-.744.959.548 1.122 1.405.744 2.729-.715 2.508-2.965 5.602-3.903 7.477.224 2.121-.174 3.853.035 5.857.03.288-.54.767-1.806.876z"/><path fill="#4289C1" d="M26.797 31.931c-.364.553-.97.942-1.598.838-1.269-1.924-4.955-5.321-4.955-5.321-.241-.25-.562-.587-.86-1.341-.748-1.895-2.498-8.277-2.498-8.277-.272-1.07.376-2.16 1.446-2.43 1.07-.272 1.783.232 2.43 1.446 1.227 2.301 1.757 6.09 2.384 8.09 1.87 1.568 2.383 3.603 4.275 5.151-.065.857-.26 1.291-.624 1.844z"/><path fill="#77B255" d="M23 20s0 1-2 1h-4.898c-.415-2-.027-5.004.006-7.765.043-3.623 2.298-5.609 3.71-5.155 1.846.594 2.693 2.641 2.932 5.858S23 20 23 20z"/><path fill="#7C533E" d="M17.75 11.792c-.167 1.399-.322 4.433-.479 4.625-.833 1.021-1.722 2.24-2.479 2.729-.549.354-.811 1.174-.927 1.507-.144.414-.213 1.238.057 1.507.169.168.73.177.776-.11.09-.559.626-.917.927-1.467.604-1.104 2.583-2.167 3.292-3.584.294-.588.896-1.729 1.083-4.729-.72-.11-2.25-.478-2.25-.478z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f6b6-1f3ff.svg b/public/emoji/1f6b6-1f3ff.svg
index 46989f638e3031e9784cce58c29bc2661a6eb539..198a8377e2eb981bd350c01ed0ff90472196c849 100644
--- a/public/emoji/1f6b6-1f3ff.svg
+++ b/public/emoji/1f6b6-1f3ff.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#7C533E" d="M20.567 5.975c.929-1.996.212-4.298-1.602-5.143-1.814-.845-4.769-.077-5.238 2.073-.466 2.136-.03 5.389 1.877 5.299.527-.025 1.057-.067 1.571-.149.067.25.052.761-.043 1.246-.369 1.864 2.171 2.751 2.539.883.214-1.093-.195-1.942-.373-2.737.516-.343.96-.808 1.269-1.472z"/><path fill="#0B0200" d="M21.043 1.71C19.894.186 18.228-.519 15.243.431c-2.607.829-1.788 3.076-1.297 2.594.782-.768 1.757-.458 1.757-.458l.632 2.315s.353.242.553-.52c.199-.762 1.239-.778 1.541-.137.469.996-.233 1.139-.331 1.711-.31 1.81 1.713 1.864 1.713 1.864s.383.178 1.135-1.103c.753-1.283 1.238-3.473.097-4.987z"/><path fill="#664131" d="M23.696 20.993c-.553 0-1-.447-1-1 0-4.52-4.661-9.247-4.707-9.294-.39-.391-.389-1.024.001-1.414.391-.39 1.023-.389 1.413.001.216.216 5.293 5.355 5.293 10.708 0 .552-.447.999-1 .999z"/><path fill="#2A6797" d="M15.696 34.993c-1.104 0-2-.896-2-2v-7c0-.348.091-.69.264-.992l4-7c.548-.958 1.771-1.293 2.729-.744.959.548 1.292 1.77.744 2.729l-3.736 6.539v6.469c-.001 1.104-.897 1.999-2.001 1.999z"/><path fill="#4289C1" d="M24.697 31.993c-.587 0-1.168-.257-1.562-.751l-4-5c-.2-.249-.337-.543-.399-.856l-1-5c-.217-1.083.485-2.137 1.568-2.354 1.088-.219 2.138.486 2.354 1.568l.905 4.524 3.695 4.62c.691.862.551 2.121-.312 2.811-.369.295-.811.438-1.249.438z"/><path fill="#77B255" d="M22.696 18.993s0 1-2 1h-4c-2-6-.359-12 2-12 3 0 3 4 4 9"/><path fill="#7C533E" d="M17.696 11.991c0 .045-.066 4.552-3.6 7.203l.01.014c-.243.183-.41.459-.41.786 0 .553.448 1 1 1 .225 0 .423-.088.59-.214l.01.014c4.35-3.262 4.4-8.575 4.4-8.8l-2-.003z"/><path fill="#292F33" d="M27.878 31.049c.271-.271.16-.676-.129-.94-.463-.422-.672-.574-.672-.574-.255-.168-.873-.418-1.13-.161-1.872 1.865-3.304 4.53-3.356 5.459-.031.548.645.855 1.029.471 1.132-1.133 3.276-3.275 4.258-4.255zm-10.266 4.854c.383.003.594-.361.578-.753-.025-.626-.064-.882-.064-.882-.059-.3-.316-.915-.68-.918-2.642-.023-5.545.83-6.243 1.446-.412.363-.156 1.06.388 1.063 1.603.013 4.633.034 6.021.044z"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#292F33" d="M18.011 34.975l-.052.016c.018-.068.042-.19.042-.383 0-.303-.156-.869-.199-.95s-.09-.139-.194-.11c-.079.022-.685.326-1.072.341-.719.027-1.066-.618-1.066-.618s-.399.228-.716.413c-.318.185-.687.462-.959.627-.232.141-.497.208-.771.243s-.497.023-.563.029c-.066.006-.621-.061-.641.488l.003.127-.054-.026s-.048.17-.052.202c-.004.033-.024.052.046.096.07.044.378.176.77.274s1.028.243 1.519.243.909-.098 1.151-.156c.243-.058.763-.169.813-.146.05.023.116.191.173.243.058.052 1.61-.081 1.721-.104.112-.023.146-.119.146-.162v-.649c.002-.027-.021-.045-.045-.038zm10.947-3.752l-.504-.429c-.019-.016-.048-.011-.059.012l-.022.051c-.041-.059-.12-.158-.269-.285-.235-.2-.777-.454-.868-.473-.091-.02-.167-.022-.213.077-.035.076-.199.746-.444 1.056-.454.575-1.184.418-1.184.418l-.153.828c-.067.368-.096.838-.148 1.158-.044.273-.167.523-.322.758-.154.236-.31.4-.35.456-.039.055-.457.441-.045.82l.101.081-.055.025s.1.149.122.174c.022.025.025.053.104.028s.386-.177.721-.416c.336-.24.868-.637 1.192-1.018.325-.381.524-.77.64-.996.116-.226.373-.703.424-.727.051-.024.224.036.303.026.078-.01 1.001-1.302 1.057-1.403s.005-.193-.028-.221z"/><path fill="#664131" d="M19.3 12.243c.927.96 3.062 2.89 3.109 3.121.251 1.223.614 2.606.52 3.454-.068.615.376 1.298.551 1.583.218.354.781.898 1.141.86.224-.023.567-.43.384-.636-.357-.4-.298-1.009-.522-1.559-.449-1.105-.045-3.194-.661-4.563-.256-.567-.733-1.693-2.824-3.626-.511.462-1.698 1.366-1.698 1.366z"/><path fill="#7C533E" d="M19.005 1.384c-1.593-.627-4.077.182-4.365 2.043-.287 1.848.239 4.747 1.863 4.572 1.702-.184 3.448-.554 4.138-2.307s-.043-3.681-1.636-4.308z"/><path fill="#7C533E" d="M20.189 6.143c2.318-2.723-3.266-2.458-3.266-2.458-1.057.038-.329 1.799-.827 2.761-.341.665 1.095 1.018 1.095 1.018s.659-.01.694.79v.007c.008.204-.013.445-.108.769-.473 1.601 1.677 2.582 2.149.978.187-.635.114-1.193.02-1.708l-.009-.046c-.144-.766-.322-1.437.252-2.111z"/><path fill="#0B0200" d="M20.825 2.026c-1.061-1.242-2.58-1.901-5.019-.791-.994.452-1.439.285-1.58.484-.679.953.246 2.01.608 1.799 1.148-.669 2.183-.47 2.447.014s.021 1.354.234 1.359c.579.015.485-.552.714-.878.375-.534.946-.232 1.071.362.099.471 0 1.271-.77 1.412.523 1.151 1.56 1.502 1.56 1.502s.337.132.912-1.001c.576-1.134.877-3.029-.177-4.262z"/><path fill="#2A6797" d="M16.062 34.203c-1.266.109-1.853-.233-1.721-.416.165-.228.128-.397.13-.536C14.499 30.81 14 27.26 14 27.26c0-.348.003-.813.312-1.562.778-1.883 3.951-7.69 3.951-7.69.548-.958 1.771-1.293 2.729-.744.959.548 1.122 1.405.744 2.729-.715 2.508-2.965 5.602-3.903 7.477.224 2.121-.174 3.853.035 5.857.03.288-.54.767-1.806.876z"/><path fill="#4289C1" d="M26.797 31.931c-.364.553-.97.942-1.598.838-1.269-1.924-4.955-5.321-4.955-5.321-.241-.25-.562-.587-.86-1.341-.748-1.895-2.498-8.277-2.498-8.277-.272-1.07.376-2.16 1.446-2.43 1.07-.272 1.783.232 2.43 1.446 1.227 2.301 1.757 6.09 2.384 8.09 1.87 1.568 2.383 3.603 4.275 5.151-.065.857-.26 1.291-.624 1.844z"/><path fill="#77B255" d="M23 20s0 1-2 1h-4.898c-.415-2-.027-5.004.006-7.765.043-3.623 2.298-5.609 3.71-5.155 1.846.594 2.693 2.641 2.932 5.858S23 20 23 20z"/><path fill="#7C533E" d="M17.75 11.792c-.167 1.399-.322 4.433-.479 4.625-.833 1.021-1.722 2.24-2.479 2.729-.549.354-.811 1.174-.927 1.507-.144.414-.213 1.238.057 1.507.169.168.73.177.776-.11.09-.559.626-.917.927-1.467.604-1.104 2.583-2.167 3.292-3.584.294-.588.896-1.729 1.083-4.729-.72-.11-2.25-.478-2.25-.478z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f6b6-200d-2640-fe0f.svg b/public/emoji/1f6b6-200d-2640-fe0f.svg
index 8b722c7781d3e31ee73c5a9c3c9d7a6cb0ba6713..8e187bfabad23c4ea4e530f4a9be9e360393662a 100644
--- a/public/emoji/1f6b6-200d-2640-fe0f.svg
+++ b/public/emoji/1f6b6-200d-2640-fe0f.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#FFDC5D" d="M15.316 3.261C14.109 3.528 16.37 4.79 16 6c-.252.838.225 0 1 0 0 0 .627 1.283.423 3.226-.207 1.94 2.472 2.616 2.677.673.204-1.941-1.385-2.988-.511-4.5 2.092-3.619-4.273-2.138-4.273-2.138"/><path fill="#FFDC5D" d="M22 4c0 2.209-1.791 4-4 4s-4-1.791-4-4 1.791-4 4-4 4 1.791 4 4"/><path fill="#FFAC33" d="M26.208 4.766c-1.037-.051-2.041-.169-3.756-2.378-1.14-1.469-2.205-2.412-4.84-2.387-2.798.026-5.141 2.407-3.346 3.598.783.52 1.44.273 2.698.625 1.975.553 2.274 2.654 4.059 3.125 3.491.922 6.222-2.532 5.185-2.583z"/><path fill="#F9CA55" d="M23.696 20.993c-.553 0-1-.447-1-1 0-4.519-4.661-9.247-4.707-9.294-.39-.391-.389-1.024.001-1.414.391-.39 1.023-.389 1.413 0 .216.216 5.293 5.355 5.293 10.708 0 .553-.447 1-1 1z"/><path fill="#2A6797" d="M15.696 34.993c-1.104 0-2-.896-2-2v-7c0-.348.091-.69.264-.992l4-7c.548-.958 1.771-1.293 2.729-.744.959.548 1.292 1.769.744 2.729l-3.736 6.539v6.469c-.001 1.104-.897 1.999-2.001 1.999z"/><path fill="#4289C1" d="M24.697 31.993c-.587 0-1.168-.257-1.562-.751l-4-5c-.2-.249-.337-.543-.399-.856l-1-5c-.217-1.083.485-2.137 1.568-2.353 1.088-.219 2.138.486 2.354 1.568l.905 4.523 3.695 4.62c.691.862.551 2.121-.312 2.811-.369.295-.811.438-1.249.438z"/><path fill="#9268CA" d="M22.696 18.993s0 1-2 1h-4c-2-6-.359-12 2-12 3 0 3 4 4 9"/><path fill="#FFDC5D" d="M17.696 11.99c0 .045-.066 4.552-3.6 7.203l.01.014c-.243.183-.41.459-.41.786 0 .553.448 1 1 1 .225 0 .423-.088.59-.214l.01.014c4.35-3.262 4.4-8.575 4.4-8.8l-2-.003z"/><path fill="#292F33" d="M27.878 31.048c.271-.271.16-.676-.129-.94-.463-.422-.672-.574-.672-.574-.255-.168-.873-.418-1.13-.161-1.872 1.865-3.304 4.53-3.356 5.459-.031.548.645.855 1.029.471l4.258-4.255zm-10.266 4.855c.383.003.594-.361.578-.753-.025-.626-.064-.882-.064-.882-.059-.3-.316-.915-.68-.918-2.642-.023-5.545.83-6.243 1.446-.412.363-.156 1.06.388 1.063l6.021.044z"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#292F33" d="M18.011 34.975l-.052.016c.018-.068.042-.19.042-.383 0-.303-.156-.869-.199-.95s-.09-.139-.194-.11c-.079.022-.685.326-1.072.341-.719.027-1.066-.618-1.066-.618s-.399.228-.716.413c-.318.185-.687.462-.959.627-.232.141-.497.208-.771.243s-.497.023-.563.029c-.066.006-.621-.061-.641.488l.003.127-.054-.026s-.048.17-.052.202c-.004.033-.024.052.046.096.07.044.378.176.77.274s1.028.243 1.519.243.909-.098 1.151-.156c.243-.058.763-.169.813-.146.05.023.116.191.173.243.058.052 1.61-.081 1.721-.104.112-.023.146-.119.146-.162v-.649c.002-.027-.021-.045-.045-.038zm10.947-3.752l-.504-.429c-.019-.016-.048-.011-.059.012l-.022.051c-.041-.059-.12-.158-.269-.285-.235-.2-.777-.454-.868-.473-.091-.02-.167-.022-.213.077-.035.076-.199.746-.444 1.056-.454.575-1.184.418-1.184.418l-.153.828c-.067.368-.096.838-.148 1.158-.044.273-.167.523-.322.758-.154.236-.31.4-.35.456-.039.055-.457.441-.045.82l.101.081-.055.025s.1.149.122.174c.022.025.025.053.104.028s.386-.177.721-.416c.336-.24.868-.637 1.192-1.018.325-.381.524-.77.64-.996.116-.226.373-.703.424-.727.051-.024.224.036.303.026.078-.01 1.001-1.302 1.057-1.403s.005-.193-.028-.221z"/><path fill="#F9CA55" d="M19.3 12.243c.927.96 3.062 2.89 3.109 3.121.251 1.223.614 2.606.52 3.454-.068.615.376 1.298.551 1.583.218.354.781.898 1.141.86.224-.023.567-.43.384-.636-.357-.4-.298-1.009-.522-1.559-.449-1.105-.045-3.194-.661-4.563-.256-.567-.733-1.693-2.824-3.626-.511.462-1.698 1.366-1.698 1.366z"/><path fill="#FFDC5D" d="M19.005 1.384c-1.593-.627-4.077.182-4.365 2.043-.287 1.848.239 4.747 1.863 4.572 1.702-.184 3.448-.554 4.138-2.307s-.043-3.681-1.636-4.308z"/><path fill="#FFDC5D" d="M20.189 6.143c2.318-2.723-3.266-2.458-3.266-2.458-1.057.038-.329 1.799-.827 2.761-.341.665 1.095 1.018 1.095 1.018s.659-.01.694.79v.007c.008.204-.013.445-.108.769-.473 1.601 1.677 2.582 2.149.978.187-.635.114-1.193.02-1.708l-.009-.046c-.144-.766-.322-1.437.252-2.111z"/><path fill="#FFAC33" d="M20.825 2.026c-1.061-1.242-2.52-1.757-5.019-.791-2.183.844-1.481 2.579-.972 2.282 1.402-.817 2.332-.119 3.046 1.021.208-.56 1.122-.904 1.307-.085.208.921-.647 1.322-.533 1.573.038.084-.043-.076 0 0 .547.96 1.437 1.262 1.437 1.262s.337.132.912-1.001.876-3.028-.178-4.261z"/><path fill="#FFAC33" d="M20.251 3.332c2.163.467 1.275 3.839 1.487 5.08.261 1.528 1.761 1.582 1.761 1.582s-.247-1.064-.116-2.177c.183-1.543 1.189-2.789.127-4.296-1.355-1.924-4.604-.479-3.259-.189z"/><path fill="#2A6797" d="M16.062 34.203c-1.266.109-1.853-.233-1.721-.416.165-.228.128-.397.13-.536C14.499 30.81 14 27.26 14 27.26c0-.348.003-.813.312-1.562.778-1.883 3.951-7.69 3.951-7.69.548-.958 1.771-1.293 2.729-.744.959.548 1.122 1.405.744 2.729-.715 2.508-2.965 5.602-3.903 7.477.224 2.121-.174 3.853.035 5.857.03.288-.54.767-1.806.876z"/><path fill="#4289C1" d="M26.797 31.931c-.364.553-.97.942-1.598.838-1.269-1.924-4.955-5.321-4.955-5.321-.241-.25-.562-.587-.86-1.341-.748-1.895-2.498-8.277-2.498-8.277-.272-1.07.376-2.16 1.446-2.43 1.07-.272 1.783.232 2.43 1.446 1.227 2.301 1.757 6.09 2.384 8.09 1.87 1.568 2.383 3.603 4.275 5.151-.065.857-.26 1.291-.624 1.844z"/><path fill="#9268CA" d="M23 20s0 1-2 1h-4.898c-.415-2 .554-3.818-.102-6.5-.848-3.46 2.406-6.874 3.818-6.42 1.846.594 2.693 2.641 2.932 5.858S23 20 23 20z"/><path fill="#FFDC5D" d="M17.75 11.792c-.167 1.399-.322 4.433-.479 4.625-.833 1.021-1.722 2.24-2.479 2.729-.549.354-.811 1.174-.927 1.507-.144.414-.213 1.238.057 1.507.169.168.73.177.776-.11.09-.559.626-.917.927-1.467.604-1.104 2.583-2.167 3.292-3.584.294-.588.896-1.729 1.083-4.729-.72-.11-2.25-.478-2.25-.478z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f6b6-200d-2642-fe0f.svg b/public/emoji/1f6b6-200d-2642-fe0f.svg
index c82bdf7563bc3d4d5f268fcb732861f732150753..9217939d29a82205f7cc2e805070a2d754dda65a 100644
--- a/public/emoji/1f6b6-200d-2642-fe0f.svg
+++ b/public/emoji/1f6b6-200d-2642-fe0f.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#FFDC5D" d="M15.012 3.254c-1.207.267 1.054 1.529.684 2.739-.252.838.225 0 1 0 0 0 .627 1.283.423 3.226-.207 1.94 2.472 2.616 2.677.673.204-1.941-1.385-2.988-.511-4.5 2.092-3.619-4.273-2.138-4.273-2.138"/><path fill="#FFDC5D" d="M20.567 5.975c.929-1.996.212-4.298-1.602-5.143-1.814-.845-4.769-.077-5.238 2.073-.466 2.136-.03 5.389 1.877 5.299.527-.025 1.057-.067 1.571-.149.067.25.052.761-.043 1.246-.369 1.864 2.171 2.751 2.539.883.214-1.093-.195-1.942-.373-2.737.516-.343.96-.808 1.269-1.472z"/><path fill="#FFAC33" d="M21.043 1.71C19.894.186 18.228-.519 15.243.431c-2.607.829-1.788 3.076-1.297 2.594.782-.768 1.757-.458 1.757-.458l.632 2.315s.353.242.553-.52c.199-.762 1.239-.778 1.541-.137.469.996-.233 1.139-.331 1.711-.31 1.81 1.713 1.864 1.713 1.864s.383.178 1.135-1.103c.753-1.283 1.238-3.473.097-4.987z"/><path fill="#F9CA55" d="M23.696 20.993c-.553 0-1-.447-1-1 0-4.52-4.661-9.247-4.707-9.294-.39-.391-.389-1.024.001-1.414.391-.39 1.023-.389 1.413.001.216.216 5.293 5.355 5.293 10.708 0 .552-.447.999-1 .999z"/><path fill="#2A6797" d="M15.696 34.993c-1.104 0-2-.896-2-2v-7c0-.348.091-.69.264-.992l4-7c.548-.958 1.771-1.293 2.729-.744.959.548 1.292 1.77.744 2.729l-3.736 6.539v6.469c-.001 1.104-.897 1.999-2.001 1.999z"/><path fill="#4289C1" d="M24.697 31.993c-.587 0-1.168-.257-1.562-.751l-4-5c-.2-.249-.337-.543-.399-.856l-1-5c-.217-1.083.485-2.137 1.568-2.354 1.088-.219 2.138.486 2.354 1.568l.905 4.524 3.695 4.62c.691.862.551 2.121-.312 2.811-.369.295-.811.438-1.249.438z"/><path fill="#77B255" d="M22.696 18.993s0 1-2 1h-4c-2-6-.359-12 2-12 3 0 3 4 4 9"/><path fill="#FFDC5D" d="M17.696 11.991c0 .045-.066 4.552-3.6 7.203l.01.014c-.243.183-.41.459-.41.786 0 .553.448 1 1 1 .225 0 .423-.088.59-.214l.01.014c4.35-3.262 4.4-8.575 4.4-8.8l-2-.003z"/><path fill="#292F33" d="M27.878 31.049c.271-.271.16-.676-.129-.94-.463-.422-.672-.574-.672-.574-.255-.168-.873-.418-1.13-.161-1.872 1.865-3.304 4.53-3.356 5.459-.031.548.645.855 1.029.471 1.132-1.133 3.276-3.275 4.258-4.255zm-10.266 4.854c.383.003.594-.361.578-.753-.025-.626-.064-.882-.064-.882-.059-.3-.316-.915-.68-.918-2.642-.023-5.545.83-6.243 1.446-.412.363-.156 1.06.388 1.063 1.603.013 4.633.034 6.021.044z"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#292F33" d="M18.011 34.975l-.052.016c.018-.068.042-.19.042-.383 0-.303-.156-.869-.199-.95s-.09-.139-.194-.11c-.079.022-.685.326-1.072.341-.719.027-1.066-.618-1.066-.618s-.399.228-.716.413c-.318.185-.687.462-.959.627-.232.141-.497.208-.771.243s-.497.023-.563.029c-.066.006-.621-.061-.641.488l.003.127-.054-.026s-.048.17-.052.202c-.004.033-.024.052.046.096.07.044.378.176.77.274s1.028.243 1.519.243.909-.098 1.151-.156c.243-.058.763-.169.813-.146.05.023.116.191.173.243.058.052 1.61-.081 1.721-.104.112-.023.146-.119.146-.162v-.649c.002-.027-.021-.045-.045-.038zm10.947-3.752l-.504-.429c-.019-.016-.048-.011-.059.012l-.022.051c-.041-.059-.12-.158-.269-.285-.235-.2-.777-.454-.868-.473-.091-.02-.167-.022-.213.077-.035.076-.199.746-.444 1.056-.454.575-1.184.418-1.184.418l-.153.828c-.067.368-.096.838-.148 1.158-.044.273-.167.523-.322.758-.154.236-.31.4-.35.456-.039.055-.457.441-.045.82l.101.081-.055.025s.1.149.122.174c.022.025.025.053.104.028s.386-.177.721-.416c.336-.24.868-.637 1.192-1.018.325-.381.524-.77.64-.996.116-.226.373-.703.424-.727.051-.024.224.036.303.026.078-.01 1.001-1.302 1.057-1.403s.005-.193-.028-.221z"/><path fill="#F9CA55" d="M19.3 12.243c.927.96 3.062 2.89 3.109 3.121.251 1.223.614 2.606.52 3.454-.068.615.376 1.298.551 1.583.218.354.781.898 1.141.86.224-.023.567-.43.384-.636-.357-.4-.298-1.009-.522-1.559-.449-1.105-.045-3.194-.661-4.563-.256-.567-.733-1.693-2.824-3.626-.511.462-1.698 1.366-1.698 1.366z"/><path fill="#FFDC5D" d="M19.005 1.384c-1.593-.627-4.077.182-4.365 2.043-.287 1.848.239 4.747 1.863 4.572 1.702-.184 3.448-.554 4.138-2.307s-.043-3.681-1.636-4.308z"/><path fill="#FFDC5D" d="M20.189 6.143c2.318-2.723-3.266-2.458-3.266-2.458-1.057.038-.329 1.799-.827 2.761-.341.665 1.095 1.018 1.095 1.018s.659-.01.694.79v.007c.008.204-.013.445-.108.769-.473 1.601 1.677 2.582 2.149.978.187-.635.114-1.193.02-1.708l-.009-.046c-.144-.766-.322-1.437.252-2.111z"/><path fill="#FFAC33" d="M20.825 2.026c-1.061-1.242-2.58-1.901-5.019-.791-.994.452-1.439.285-1.58.484-.679.953.246 2.01.608 1.799 1.148-.669 2.183-.47 2.447.014s.021 1.354.234 1.359c.579.015.485-.552.714-.878.375-.534.946-.232 1.071.362.099.471 0 1.271-.77 1.412.523 1.151 1.56 1.502 1.56 1.502s.337.132.912-1.001c.576-1.134.877-3.029-.177-4.262z"/><path fill="#2A6797" d="M16.062 34.203c-1.266.109-1.853-.233-1.721-.416.165-.228.128-.397.13-.536C14.499 30.81 14 27.26 14 27.26c0-.348.003-.813.312-1.562.778-1.883 3.951-7.69 3.951-7.69.548-.958 1.771-1.293 2.729-.744.959.548 1.122 1.405.744 2.729-.715 2.508-2.965 5.602-3.903 7.477.224 2.121-.174 3.853.035 5.857.03.288-.54.767-1.806.876z"/><path fill="#4289C1" d="M26.797 31.931c-.364.553-.97.942-1.598.838-1.269-1.924-4.955-5.321-4.955-5.321-.241-.25-.562-.587-.86-1.341-.748-1.895-2.498-8.277-2.498-8.277-.272-1.07.376-2.16 1.446-2.43 1.07-.272 1.783.232 2.43 1.446 1.227 2.301 1.757 6.09 2.384 8.09 1.87 1.568 2.383 3.603 4.275 5.151-.065.857-.26 1.291-.624 1.844z"/><path fill="#77B255" d="M23 20s0 1-2 1h-4.898c-.415-2-.027-5.004.006-7.765.043-3.623 2.298-5.609 3.71-5.155 1.846.594 2.693 2.641 2.932 5.858S23 20 23 20z"/><path fill="#FFDC5D" d="M17.75 11.792c-.167 1.399-.322 4.433-.479 4.625-.833 1.021-1.722 2.24-2.479 2.729-.549.354-.811 1.174-.927 1.507-.144.414-.213 1.238.057 1.507.169.168.73.177.776-.11.09-.559.626-.917.927-1.467.604-1.104 2.583-2.167 3.292-3.584.294-.588.896-1.729 1.083-4.729-.72-.11-2.25-.478-2.25-.478z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f6b6.svg b/public/emoji/1f6b6.svg
index c82bdf7563bc3d4d5f268fcb732861f732150753..9217939d29a82205f7cc2e805070a2d754dda65a 100644
--- a/public/emoji/1f6b6.svg
+++ b/public/emoji/1f6b6.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#FFDC5D" d="M15.012 3.254c-1.207.267 1.054 1.529.684 2.739-.252.838.225 0 1 0 0 0 .627 1.283.423 3.226-.207 1.94 2.472 2.616 2.677.673.204-1.941-1.385-2.988-.511-4.5 2.092-3.619-4.273-2.138-4.273-2.138"/><path fill="#FFDC5D" d="M20.567 5.975c.929-1.996.212-4.298-1.602-5.143-1.814-.845-4.769-.077-5.238 2.073-.466 2.136-.03 5.389 1.877 5.299.527-.025 1.057-.067 1.571-.149.067.25.052.761-.043 1.246-.369 1.864 2.171 2.751 2.539.883.214-1.093-.195-1.942-.373-2.737.516-.343.96-.808 1.269-1.472z"/><path fill="#FFAC33" d="M21.043 1.71C19.894.186 18.228-.519 15.243.431c-2.607.829-1.788 3.076-1.297 2.594.782-.768 1.757-.458 1.757-.458l.632 2.315s.353.242.553-.52c.199-.762 1.239-.778 1.541-.137.469.996-.233 1.139-.331 1.711-.31 1.81 1.713 1.864 1.713 1.864s.383.178 1.135-1.103c.753-1.283 1.238-3.473.097-4.987z"/><path fill="#F9CA55" d="M23.696 20.993c-.553 0-1-.447-1-1 0-4.52-4.661-9.247-4.707-9.294-.39-.391-.389-1.024.001-1.414.391-.39 1.023-.389 1.413.001.216.216 5.293 5.355 5.293 10.708 0 .552-.447.999-1 .999z"/><path fill="#2A6797" d="M15.696 34.993c-1.104 0-2-.896-2-2v-7c0-.348.091-.69.264-.992l4-7c.548-.958 1.771-1.293 2.729-.744.959.548 1.292 1.77.744 2.729l-3.736 6.539v6.469c-.001 1.104-.897 1.999-2.001 1.999z"/><path fill="#4289C1" d="M24.697 31.993c-.587 0-1.168-.257-1.562-.751l-4-5c-.2-.249-.337-.543-.399-.856l-1-5c-.217-1.083.485-2.137 1.568-2.354 1.088-.219 2.138.486 2.354 1.568l.905 4.524 3.695 4.62c.691.862.551 2.121-.312 2.811-.369.295-.811.438-1.249.438z"/><path fill="#77B255" d="M22.696 18.993s0 1-2 1h-4c-2-6-.359-12 2-12 3 0 3 4 4 9"/><path fill="#FFDC5D" d="M17.696 11.991c0 .045-.066 4.552-3.6 7.203l.01.014c-.243.183-.41.459-.41.786 0 .553.448 1 1 1 .225 0 .423-.088.59-.214l.01.014c4.35-3.262 4.4-8.575 4.4-8.8l-2-.003z"/><path fill="#292F33" d="M27.878 31.049c.271-.271.16-.676-.129-.94-.463-.422-.672-.574-.672-.574-.255-.168-.873-.418-1.13-.161-1.872 1.865-3.304 4.53-3.356 5.459-.031.548.645.855 1.029.471 1.132-1.133 3.276-3.275 4.258-4.255zm-10.266 4.854c.383.003.594-.361.578-.753-.025-.626-.064-.882-.064-.882-.059-.3-.316-.915-.68-.918-2.642-.023-5.545.83-6.243 1.446-.412.363-.156 1.06.388 1.063 1.603.013 4.633.034 6.021.044z"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#292F33" d="M18.011 34.975l-.052.016c.018-.068.042-.19.042-.383 0-.303-.156-.869-.199-.95s-.09-.139-.194-.11c-.079.022-.685.326-1.072.341-.719.027-1.066-.618-1.066-.618s-.399.228-.716.413c-.318.185-.687.462-.959.627-.232.141-.497.208-.771.243s-.497.023-.563.029c-.066.006-.621-.061-.641.488l.003.127-.054-.026s-.048.17-.052.202c-.004.033-.024.052.046.096.07.044.378.176.77.274s1.028.243 1.519.243.909-.098 1.151-.156c.243-.058.763-.169.813-.146.05.023.116.191.173.243.058.052 1.61-.081 1.721-.104.112-.023.146-.119.146-.162v-.649c.002-.027-.021-.045-.045-.038zm10.947-3.752l-.504-.429c-.019-.016-.048-.011-.059.012l-.022.051c-.041-.059-.12-.158-.269-.285-.235-.2-.777-.454-.868-.473-.091-.02-.167-.022-.213.077-.035.076-.199.746-.444 1.056-.454.575-1.184.418-1.184.418l-.153.828c-.067.368-.096.838-.148 1.158-.044.273-.167.523-.322.758-.154.236-.31.4-.35.456-.039.055-.457.441-.045.82l.101.081-.055.025s.1.149.122.174c.022.025.025.053.104.028s.386-.177.721-.416c.336-.24.868-.637 1.192-1.018.325-.381.524-.77.64-.996.116-.226.373-.703.424-.727.051-.024.224.036.303.026.078-.01 1.001-1.302 1.057-1.403s.005-.193-.028-.221z"/><path fill="#F9CA55" d="M19.3 12.243c.927.96 3.062 2.89 3.109 3.121.251 1.223.614 2.606.52 3.454-.068.615.376 1.298.551 1.583.218.354.781.898 1.141.86.224-.023.567-.43.384-.636-.357-.4-.298-1.009-.522-1.559-.449-1.105-.045-3.194-.661-4.563-.256-.567-.733-1.693-2.824-3.626-.511.462-1.698 1.366-1.698 1.366z"/><path fill="#FFDC5D" d="M19.005 1.384c-1.593-.627-4.077.182-4.365 2.043-.287 1.848.239 4.747 1.863 4.572 1.702-.184 3.448-.554 4.138-2.307s-.043-3.681-1.636-4.308z"/><path fill="#FFDC5D" d="M20.189 6.143c2.318-2.723-3.266-2.458-3.266-2.458-1.057.038-.329 1.799-.827 2.761-.341.665 1.095 1.018 1.095 1.018s.659-.01.694.79v.007c.008.204-.013.445-.108.769-.473 1.601 1.677 2.582 2.149.978.187-.635.114-1.193.02-1.708l-.009-.046c-.144-.766-.322-1.437.252-2.111z"/><path fill="#FFAC33" d="M20.825 2.026c-1.061-1.242-2.58-1.901-5.019-.791-.994.452-1.439.285-1.58.484-.679.953.246 2.01.608 1.799 1.148-.669 2.183-.47 2.447.014s.021 1.354.234 1.359c.579.015.485-.552.714-.878.375-.534.946-.232 1.071.362.099.471 0 1.271-.77 1.412.523 1.151 1.56 1.502 1.56 1.502s.337.132.912-1.001c.576-1.134.877-3.029-.177-4.262z"/><path fill="#2A6797" d="M16.062 34.203c-1.266.109-1.853-.233-1.721-.416.165-.228.128-.397.13-.536C14.499 30.81 14 27.26 14 27.26c0-.348.003-.813.312-1.562.778-1.883 3.951-7.69 3.951-7.69.548-.958 1.771-1.293 2.729-.744.959.548 1.122 1.405.744 2.729-.715 2.508-2.965 5.602-3.903 7.477.224 2.121-.174 3.853.035 5.857.03.288-.54.767-1.806.876z"/><path fill="#4289C1" d="M26.797 31.931c-.364.553-.97.942-1.598.838-1.269-1.924-4.955-5.321-4.955-5.321-.241-.25-.562-.587-.86-1.341-.748-1.895-2.498-8.277-2.498-8.277-.272-1.07.376-2.16 1.446-2.43 1.07-.272 1.783.232 2.43 1.446 1.227 2.301 1.757 6.09 2.384 8.09 1.87 1.568 2.383 3.603 4.275 5.151-.065.857-.26 1.291-.624 1.844z"/><path fill="#77B255" d="M23 20s0 1-2 1h-4.898c-.415-2-.027-5.004.006-7.765.043-3.623 2.298-5.609 3.71-5.155 1.846.594 2.693 2.641 2.932 5.858S23 20 23 20z"/><path fill="#FFDC5D" d="M17.75 11.792c-.167 1.399-.322 4.433-.479 4.625-.833 1.021-1.722 2.24-2.479 2.729-.549.354-.811 1.174-.927 1.507-.144.414-.213 1.238.057 1.507.169.168.73.177.776-.11.09-.559.626-.917.927-1.467.604-1.104 2.583-2.167 3.292-3.584.294-.588.896-1.729 1.083-4.729-.72-.11-2.25-.478-2.25-.478z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f6d5.svg b/public/emoji/1f6d5.svg
new file mode 100644
index 0000000000000000000000000000000000000000..4a2e9be2dc1cf60bf1c5c3918a2fbe851f6c278b
--- /dev/null
+++ b/public/emoji/1f6d5.svg
@@ -0,0 +1 @@
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#FF8044" d="M25 2.875L18 2v5.25l7-.875-2.8-1.75z"/><path fill="#C7521E" d="M0 36h36l-2-2H2z"/><path fill="#662113" d="M17.5 3c0-2 1-2 1 0 0 5 1 9 1 9h-3s1-4 1-9z"/><path fill="#C7521E" d="M28 29v-2l-4-1.938V21l-2-2h-.123s.732-3.967-1.377-5.449V12l-1-1h-3l-1 1v1.551C13.391 15.033 14.123 19 14.123 19H14l-2 2v4.062L8 27v2l-4 2v4l28 .037V31l-4-2z"/><path fill="#662113" d="M19.846 19h-3.692s-.615-5 .615-5h2.462c1.231 0 .615 5 .615 5z"/><path fill="#C7521E" d="M11.784 23.477v-.521l-.292-.292h-.063c-.086-.435-.229-1.313-.229-2.337 0-.584-.292-.584-.292 0 0 1.023-.143 1.902-.229 2.337h-.063l-.292.292v.521c-.465.474-.293 1.523-.293 1.523h2.045s.172-1.049-.292-1.523zm13.906 0v-.521l-.292-.292h-.063c-.086-.435-.229-1.313-.229-2.337 0-.584-.292-.584-.292 0 0 1.023-.143 1.902-.229 2.337h-.063l-.292.292v.521c-.465.474-.292 1.523-.292 1.523h2.045c-.001 0 .171-1.049-.293-1.523zm4 4v-.521l-.292-.292h-.063c-.086-.435-.229-1.313-.229-2.337 0-.584-.292-.584-.292 0 0 1.023-.143 1.902-.229 2.337h-.063l-.292.292v.521c-.465.474-.292 1.523-.292 1.523h2.045c-.001 0 .171-1.049-.293-1.523zm4 5v-.521l-.292-.292h-.063c-.086-.435-.229-1.313-.229-2.337 0-.584-.292-.584-.292 0 0 1.023-.143 1.902-.229 2.337h-.063l-.292.292v.521c-.465.474-.292 1.523-.292 1.523h2.045c-.001 0 .171-1.049-.293-1.523zm-25.906-5v-.521l-.292-.292h-.063c-.086-.436-.229-1.314-.229-2.337 0-.584-.292-.584-.292 0 0 1.023-.143 1.902-.229 2.337h-.064l-.292.292v.521C5.859 27.951 6.031 29 6.031 29h2.045s.172-1.049-.292-1.523zm-4 5v-.521l-.292-.292h-.063c-.086-.436-.229-1.314-.229-2.337 0-.584-.292-.584-.292 0 0 1.023-.143 1.902-.229 2.337h-.064l-.292.292v.521C1.859 32.951 2.031 34 2.031 34h2.045s.172-1.049-.292-1.523z"/><path fill="#FF8044" d="M15.5 12l1-1h3l1 1zM12 21l2-2h8l2 2zm-4 6l2-2h16l2 2zm-4 4l2-2h24l2 2zm-4 5l2-2h32l2 2z"/><path fill="#662113" d="M21 25h-6s0-4 1.5-4h3c1.5 0 1.5 4 1.5 4zm1 4h-8s0-2 2-2h4c2 0 2 2 2 2z"/><path fill="#292F33" d="M24 34H12s0-3 3-3h6c3 0 3 3 3 3z"/><path fill="#FFA06C" d="M21 27h-6c-.552 0-1-.448-1-1s.448-1 1-1h6c.552 0 1 .448 1 1s-.448 1-1 1zm1 4h-8c-.552 0-1-.448-1-1s.448-1 1-1h8c.552 0 1 .448 1 1s-.448 1-1 1zm2 5H12c-.552 0-1-.448-1-1s.448-1 1-1h12c.552 0 1 .448 1 1s-.448 1-1 1z"/><path fill="#FF8044" d="M21 31h1v3h-1zm-7 0h1v3h-1z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f6fa.svg b/public/emoji/1f6fa.svg
new file mode 100644
index 0000000000000000000000000000000000000000..aae4e94ac5a0f49fce6e8ceba2022f2ef8a57819
--- /dev/null
+++ b/public/emoji/1f6fa.svg
@@ -0,0 +1 @@
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#99AAB5" d="M19 9h2v11h-2z"/><path fill="#55ACEE" d="M10 9c-2 2-4 5-4 7 0 4 5 1 5 1V9h-1z"/><circle fill="#292F33" cx="5" cy="32" r="4"/><circle fill="#99AAB5" cx="5" cy="32" r="2"/><path fill="#1E5200" d="M29 23h-2c-1.105 0-2 .895-2 2v5c0 1.105.895 2 2 2h2c1.105 0 2-.895 2-2v-5c0-1.105-.895-2-2-2zm-10 0h-2c-1.105 0-2 .895-2 2v5c0 1.105.895 2 2 2h2c1.105 0 2-.895 2-2v-5c0-1.105-.895-2-2-2z"/><path fill="#5C913B" d="M2 28.377c-1.387.225-2.581-1.152-1-2.435 2-1.623 7-2.435 9-1.623S12 33 11 33s-4-5.435-9-4.623z"/><path fill="#3E721D" d="M11 33h13c1 0 2 0 2-2 0-1 1-4 3-4s5 3 5 4 0 2 1 2 1-1 1-2V19h-8c0 3-1 8-1 8s-1-1-1 1c0 .606-1 2-2 2h-1c-1 0-2-.666-2-1.672V19c0-1-2-1-2 0v9.328C19 29.334 18.262 30 17.341 30h-3.33C13 30 12 29 12 28v-9H5c0 6 5 14 6 14z"/><path fill="#5C913B" d="M34 32c0 1 1 0 1-2 0-3-.833-5-5-5s-5 3-5 5c0 1 1 3 1 2s.667-2 4-2 4 1 4 2z"/><path fill="#FFAC33" d="M12 19H5c0-1 1-3 1-3h4c.552 0 1-.448 1-1v-4s-2 0-2-2c0-.326.106-.652.25-.944C9.573 7.4 10.258 7 10.99 7H33c2 0 3 5 3 12h-8s0-8-3-8H12v8z"/><circle fill="#292F33" cx="30" cy="32" r="4"/><circle fill="#99AAB5" cx="30" cy="32" r="2"/><path fill="#F4900C" d="M9 18.5v-1c0-.276-.224-.5-.5-.5H5.552C5.286 17.648 5 18.464 5 19h3.5c.276 0 .5-.224.5-.5z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f7e0.svg b/public/emoji/1f7e0.svg
new file mode 100644
index 0000000000000000000000000000000000000000..2db43d5b2407ed977140bf0a3a178352f24438b2
--- /dev/null
+++ b/public/emoji/1f7e0.svg
@@ -0,0 +1 @@
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><circle fill="#FFAC33" cx="18" cy="18" r="18"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f7e1.svg b/public/emoji/1f7e1.svg
new file mode 100644
index 0000000000000000000000000000000000000000..5c05d4385d1c971ef4c26ea81bd4eb33dc53f241
--- /dev/null
+++ b/public/emoji/1f7e1.svg
@@ -0,0 +1 @@
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><circle fill="#FDCB58" cx="18" cy="18" r="18"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f7e2.svg b/public/emoji/1f7e2.svg
new file mode 100644
index 0000000000000000000000000000000000000000..3e68a3fb185646b720038aa31212a6d5e7c6d8f4
--- /dev/null
+++ b/public/emoji/1f7e2.svg
@@ -0,0 +1 @@
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><circle fill="#78B159" cx="18" cy="18" r="18"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f7e3.svg b/public/emoji/1f7e3.svg
new file mode 100644
index 0000000000000000000000000000000000000000..8a034cab46978b6f29d98bc4cd8292aa2009fd9d
--- /dev/null
+++ b/public/emoji/1f7e3.svg
@@ -0,0 +1 @@
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><circle fill="#AA8ED6" cx="18" cy="18" r="18"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f7e4.svg b/public/emoji/1f7e4.svg
new file mode 100644
index 0000000000000000000000000000000000000000..ebbc3a730b9a71d7f7627e7e22920e3e7b1637b1
--- /dev/null
+++ b/public/emoji/1f7e4.svg
@@ -0,0 +1 @@
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><circle fill="#C1694F" cx="18" cy="18" r="18"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f7e5.svg b/public/emoji/1f7e5.svg
new file mode 100644
index 0000000000000000000000000000000000000000..5326d657d0425520631bc4ec28c1ed8a77a9a48d
--- /dev/null
+++ b/public/emoji/1f7e5.svg
@@ -0,0 +1 @@
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#DD2E44" d="M36 32c0 2.209-1.791 4-4 4H4c-2.209 0-4-1.791-4-4V4c0-2.209 1.791-4 4-4h28c2.209 0 4 1.791 4 4v28z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f7e6.svg b/public/emoji/1f7e6.svg
new file mode 100644
index 0000000000000000000000000000000000000000..082422601e11c1e6d1af4461bc977abf9b7fd992
--- /dev/null
+++ b/public/emoji/1f7e6.svg
@@ -0,0 +1 @@
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#55ACEE" d="M36 32c0 2.209-1.791 4-4 4H4c-2.209 0-4-1.791-4-4V4c0-2.209 1.791-4 4-4h28c2.209 0 4 1.791 4 4v28z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f7e7.svg b/public/emoji/1f7e7.svg
new file mode 100644
index 0000000000000000000000000000000000000000..3cbdde4d920c91fbacc043e3f3d3342e05c5d606
--- /dev/null
+++ b/public/emoji/1f7e7.svg
@@ -0,0 +1 @@
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#FFAC33" d="M36 32c0 2.209-1.791 4-4 4H4c-2.209 0-4-1.791-4-4V4c0-2.209 1.791-4 4-4h28c2.209 0 4 1.791 4 4v28z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f7e8.svg b/public/emoji/1f7e8.svg
new file mode 100644
index 0000000000000000000000000000000000000000..64795b1f28ba41a9d32b0ed8f5b90292208e2510
--- /dev/null
+++ b/public/emoji/1f7e8.svg
@@ -0,0 +1 @@
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#FDCB58" d="M36 32c0 2.209-1.791 4-4 4H4c-2.209 0-4-1.791-4-4V4c0-2.209 1.791-4 4-4h28c2.209 0 4 1.791 4 4v28z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f7e9.svg b/public/emoji/1f7e9.svg
new file mode 100644
index 0000000000000000000000000000000000000000..73ed4fa49a052182f6b037ac5d35829c066256fc
--- /dev/null
+++ b/public/emoji/1f7e9.svg
@@ -0,0 +1 @@
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#78B159" d="M36 32c0 2.209-1.791 4-4 4H4c-2.209 0-4-1.791-4-4V4c0-2.209 1.791-4 4-4h28c2.209 0 4 1.791 4 4v28z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f7ea.svg b/public/emoji/1f7ea.svg
new file mode 100644
index 0000000000000000000000000000000000000000..c331b1f715982b762b6343dfdb9278ff3f8819d8
--- /dev/null
+++ b/public/emoji/1f7ea.svg
@@ -0,0 +1 @@
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#AA8ED6" d="M36 32c0 2.209-1.791 4-4 4H4c-2.209 0-4-1.791-4-4V4c0-2.209 1.791-4 4-4h28c2.209 0 4 1.791 4 4v28z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f7eb.svg b/public/emoji/1f7eb.svg
new file mode 100644
index 0000000000000000000000000000000000000000..24ee98278c60e192f5f39bde687e88955e9d5774
--- /dev/null
+++ b/public/emoji/1f7eb.svg
@@ -0,0 +1 @@
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#C1694F" d="M36 32c0 2.209-1.791 4-4 4H4c-2.209 0-4-1.791-4-4V4c0-2.209 1.791-4 4-4h28c2.209 0 4 1.791 4 4v28z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f90d.svg b/public/emoji/1f90d.svg
new file mode 100644
index 0000000000000000000000000000000000000000..7deb0cd701820cbc5b35985f7130b217345ed55f
--- /dev/null
+++ b/public/emoji/1f90d.svg
@@ -0,0 +1 @@
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#E6E7E8" d="M35.885 11.833c0-5.45-4.418-9.868-9.867-9.868-3.308 0-6.227 1.633-8.018 4.129-1.791-2.496-4.71-4.129-8.017-4.129-5.45 0-9.868 4.417-9.868 9.868 0 .772.098 1.52.266 2.241C1.751 22.587 11.216 31.568 18 34.034c6.783-2.466 16.249-11.447 17.617-19.959.17-.721.268-1.469.268-2.242z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f90e.svg b/public/emoji/1f90e.svg
new file mode 100644
index 0000000000000000000000000000000000000000..275f3c98fa27f464ea36f32b8ad8207719091eb7
--- /dev/null
+++ b/public/emoji/1f90e.svg
@@ -0,0 +1 @@
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#C1694F" d="M35.885 11.833c0-5.45-4.418-9.868-9.867-9.868-3.308 0-6.227 1.633-8.018 4.129-1.791-2.496-4.71-4.129-8.017-4.129-5.45 0-9.868 4.417-9.868 9.868 0 .772.098 1.52.266 2.241C1.751 22.587 11.216 31.568 18 34.034c6.783-2.466 16.249-11.447 17.617-19.959.17-.721.268-1.469.268-2.242z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f90f-1f3fb.svg b/public/emoji/1f90f-1f3fb.svg
new file mode 100644
index 0000000000000000000000000000000000000000..a14c90745346de572c8b0a0eb21aa0e45a38a1b5
--- /dev/null
+++ b/public/emoji/1f90f-1f3fb.svg
@@ -0,0 +1 @@
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#F7DECE" d="M33.29 8.628C33.265 8.62 24.499 6 21.499 5c-1.2-.4-21-7-21 16 0 .637 2 11 4 11h11c8.375 0 5.642-10.68 15.92-12.106 1.739-.241 2.621-1.112 2.466-2.566-.165-1.549-1.975-2.059-3.534-2.059-1.146 0-5.754.233-9.026 1.951-.286-1.809-.826-4.013-.826-6.221 5 1 11.092 2.333 11.209 2.372 1.31.434 2.726-.271 3.162-1.582.438-1.309-.27-2.724-1.58-3.161z"/><path fill="#E0AA94" d="M19.207 7.293c-.389-.391-1.023-.392-1.414-.001-.391.39-.392 1.023-.001 1.415.017.017 1.704 1.737 1.704 4.293v7.109c0 .852-.501 1.154-.97 1.154-.496 0-1.025-.332-1.025-1.264v-2c0-3.767-.303-7.77-2.553-8.895-.495-.247-1.095-.046-1.342.447-.247.494-.047 1.095.447 1.342.66.33 1.447 1.831 1.447 7.105v.996s-.004 1.001-.004 3.114c0 .852-.501 1.154-.97 1.154-.496 0-1.025-.332-1.025-1.264v-2c0-3.767-.303-7.77-2.553-8.895-.495-.248-1.095-.046-1.342.447-.247.494-.047 1.095.447 1.342.66.33 1.447 1.831 1.447 7.105v2c0 .021.005.039.005.06-.001.017-.01.032-.01.049 0 .852-.501 1.154-.97 1.154-.496.004-1.025-.328-1.025-1.26 0-3.394 0-7.618-2.553-8.895-.495-.248-1.095-.046-1.342.447-.247.494-.047 1.095.447 1.342C7.5 15.618 7.5 19.613 7.5 22c0 2.143 1.522 3.264 3.025 3.264.722 0 1.445-.263 1.999-.769.56.505 1.281.769 2.001.769 1.236 0 2.473-.769 2.846-2.232.368.151.761.232 1.154.232 1.476 0 2.97-1.083 2.97-3.154V13c0-3.375-2.194-5.613-2.288-5.707z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f90f-1f3fc.svg b/public/emoji/1f90f-1f3fc.svg
new file mode 100644
index 0000000000000000000000000000000000000000..8f109cde22226dab0855539a6d43227b0b1485b1
--- /dev/null
+++ b/public/emoji/1f90f-1f3fc.svg
@@ -0,0 +1 @@
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#F3D2A2" d="M33.29 8.628C33.265 8.62 24.499 6 21.499 5c-1.2-.4-21-7-21 16 0 .637 2 11 4 11h11c8.375 0 5.642-10.68 15.92-12.106 1.739-.241 2.621-1.112 2.466-2.566-.165-1.549-1.975-2.059-3.534-2.059-1.146 0-5.754.233-9.026 1.951-.286-1.809-.826-4.013-.826-6.221 5 1 11.092 2.333 11.209 2.372 1.31.434 2.726-.271 3.162-1.582.438-1.309-.27-2.724-1.58-3.161z"/><path fill="#D2A077" d="M19.207 7.293c-.389-.391-1.023-.392-1.414-.001-.391.39-.392 1.023-.001 1.415.017.017 1.704 1.737 1.704 4.293v7.109c0 .852-.501 1.154-.97 1.154-.496 0-1.025-.332-1.025-1.264v-2c0-3.767-.303-7.77-2.553-8.895-.495-.247-1.095-.046-1.342.447-.247.494-.047 1.095.447 1.342.66.33 1.447 1.831 1.447 7.105v.996s-.004 1.001-.004 3.114c0 .852-.501 1.154-.97 1.154-.496 0-1.025-.332-1.025-1.264v-2c0-3.767-.303-7.77-2.553-8.895-.495-.248-1.095-.046-1.342.447-.247.494-.047 1.095.447 1.342.66.33 1.447 1.831 1.447 7.105v2c0 .021.005.039.005.06-.001.017-.01.032-.01.049 0 .852-.501 1.154-.97 1.154-.496.004-1.025-.328-1.025-1.26 0-3.394 0-7.618-2.553-8.895-.495-.248-1.095-.046-1.342.447-.247.494-.047 1.095.447 1.342C7.5 15.618 7.5 19.613 7.5 22c0 2.143 1.522 3.264 3.025 3.264.722 0 1.445-.263 1.999-.769.56.505 1.281.769 2.001.769 1.236 0 2.473-.769 2.846-2.232.368.151.761.232 1.154.232 1.476 0 2.97-1.083 2.97-3.154V13c0-3.375-2.194-5.613-2.288-5.707z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f90f-1f3fd.svg b/public/emoji/1f90f-1f3fd.svg
new file mode 100644
index 0000000000000000000000000000000000000000..0e9b3e6203a8a1340a1d71f6c616ae7654dfcc3c
--- /dev/null
+++ b/public/emoji/1f90f-1f3fd.svg
@@ -0,0 +1 @@
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#D4AB88" d="M33.29 8.628C33.265 8.62 24.499 6 21.499 5c-1.2-.4-21-7-21 16 0 .637 2 11 4 11h11c8.375 0 5.642-10.68 15.92-12.106 1.739-.241 2.621-1.112 2.466-2.566-.165-1.549-1.975-2.059-3.534-2.059-1.146 0-5.754.233-9.026 1.951-.286-1.809-.826-4.013-.826-6.221 5 1 11.092 2.333 11.209 2.372 1.31.434 2.726-.271 3.162-1.582.438-1.309-.27-2.724-1.58-3.161z"/><path fill="#B78B60" d="M19.207 7.293c-.389-.391-1.023-.392-1.414-.001-.391.39-.392 1.023-.001 1.415.017.017 1.704 1.737 1.704 4.293v7.109c0 .852-.501 1.154-.97 1.154-.496 0-1.025-.332-1.025-1.264v-2c0-3.767-.303-7.77-2.553-8.895-.495-.247-1.095-.046-1.342.447-.247.494-.047 1.095.447 1.342.66.33 1.447 1.831 1.447 7.105v.996s-.004 1.001-.004 3.114c0 .852-.501 1.154-.97 1.154-.496 0-1.025-.332-1.025-1.264v-2c0-3.767-.303-7.77-2.553-8.895-.495-.248-1.095-.046-1.342.447-.247.494-.047 1.095.447 1.342.66.33 1.447 1.831 1.447 7.105v2c0 .021.005.039.005.06-.001.017-.01.032-.01.049 0 .852-.501 1.154-.97 1.154-.496.004-1.025-.328-1.025-1.26 0-3.394 0-7.618-2.553-8.895-.495-.248-1.095-.046-1.342.447-.247.494-.047 1.095.447 1.342C7.5 15.618 7.5 19.613 7.5 22c0 2.143 1.522 3.264 3.025 3.264.722 0 1.445-.263 1.999-.769.56.505 1.281.769 2.001.769 1.236 0 2.473-.769 2.846-2.232.368.151.761.232 1.154.232 1.476 0 2.97-1.083 2.97-3.154V13c0-3.375-2.194-5.613-2.288-5.707z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f90f-1f3fe.svg b/public/emoji/1f90f-1f3fe.svg
new file mode 100644
index 0000000000000000000000000000000000000000..07ccb2b694662a5f69475f295387cffa1fc9ae80
--- /dev/null
+++ b/public/emoji/1f90f-1f3fe.svg
@@ -0,0 +1 @@
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#AF7E57" d="M33.29 8.628C33.265 8.62 24.499 6 21.499 5c-1.2-.4-21-7-21 16 0 .637 2 11 4 11h11c8.375 0 5.642-10.68 15.92-12.106 1.739-.241 2.621-1.112 2.466-2.566-.165-1.549-1.975-2.059-3.534-2.059-1.146 0-5.754.233-9.026 1.951-.286-1.809-.826-4.013-.826-6.221 5 1 11.092 2.333 11.209 2.372 1.31.434 2.726-.271 3.162-1.582.438-1.309-.27-2.724-1.58-3.161z"/><path fill="#90603E" d="M19.207 7.293c-.389-.391-1.023-.392-1.414-.001-.391.39-.392 1.023-.001 1.415.017.017 1.704 1.737 1.704 4.293v7.109c0 .852-.501 1.154-.97 1.154-.496 0-1.025-.332-1.025-1.264v-2c0-3.767-.303-7.77-2.553-8.895-.495-.247-1.095-.046-1.342.447-.247.494-.047 1.095.447 1.342.66.33 1.447 1.831 1.447 7.105v.996s-.004 1.001-.004 3.114c0 .852-.501 1.154-.97 1.154-.496 0-1.025-.332-1.025-1.264v-2c0-3.767-.303-7.77-2.553-8.895-.495-.248-1.095-.046-1.342.447-.247.494-.047 1.095.447 1.342.66.33 1.447 1.831 1.447 7.105v2c0 .021.005.039.005.06-.001.017-.01.032-.01.049 0 .852-.501 1.154-.97 1.154-.496.004-1.025-.328-1.025-1.26 0-3.394 0-7.618-2.553-8.895-.495-.248-1.095-.046-1.342.447-.247.494-.047 1.095.447 1.342C7.5 15.618 7.5 19.613 7.5 22c0 2.143 1.522 3.264 3.025 3.264.722 0 1.445-.263 1.999-.769.56.505 1.281.769 2.001.769 1.236 0 2.473-.769 2.846-2.232.368.151.761.232 1.154.232 1.476 0 2.97-1.083 2.97-3.154V13c0-3.375-2.194-5.613-2.288-5.707z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f90f-1f3ff.svg b/public/emoji/1f90f-1f3ff.svg
new file mode 100644
index 0000000000000000000000000000000000000000..78893d0e97ce51caa60e4941a564f4be5b3a2cf9
--- /dev/null
+++ b/public/emoji/1f90f-1f3ff.svg
@@ -0,0 +1 @@
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#7C533E" d="M33.29 8.628C33.265 8.62 24.499 6 21.499 5c-1.2-.4-21-7-21 16 0 .637 2 11 4 11h11c8.375 0 5.642-10.68 15.92-12.106 1.739-.241 2.621-1.112 2.466-2.566-.165-1.549-1.975-2.059-3.534-2.059-1.146 0-5.754.233-9.026 1.951-.286-1.809-.826-4.013-.826-6.221 5 1 11.092 2.333 11.209 2.372 1.31.434 2.726-.271 3.162-1.582.438-1.309-.27-2.724-1.58-3.161z"/><path fill="#583529" d="M19.207 7.293c-.389-.391-1.023-.392-1.414-.001-.391.39-.392 1.023-.001 1.415.017.017 1.704 1.737 1.704 4.293v7.109c0 .852-.501 1.154-.97 1.154-.496 0-1.025-.332-1.025-1.264v-2c0-3.767-.303-7.77-2.553-8.895-.495-.247-1.095-.046-1.342.447-.247.494-.047 1.095.447 1.342.66.33 1.447 1.831 1.447 7.105v.996s-.004 1.001-.004 3.114c0 .852-.501 1.154-.97 1.154-.496 0-1.025-.332-1.025-1.264v-2c0-3.767-.303-7.77-2.553-8.895-.495-.248-1.095-.046-1.342.447-.247.494-.047 1.095.447 1.342.66.33 1.447 1.831 1.447 7.105v2c0 .021.005.039.005.06-.001.017-.01.032-.01.049 0 .852-.501 1.154-.97 1.154-.496.004-1.025-.328-1.025-1.26 0-3.394 0-7.618-2.553-8.895-.495-.248-1.095-.046-1.342.447-.247.494-.047 1.095.447 1.342C7.5 15.618 7.5 19.613 7.5 22c0 2.143 1.522 3.264 3.025 3.264.722 0 1.445-.263 1.999-.769.56.505 1.281.769 2.001.769 1.236 0 2.473-.769 2.846-2.232.368.151.761.232 1.154.232 1.476 0 2.97-1.083 2.97-3.154V13c0-3.375-2.194-5.613-2.288-5.707z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f90f.svg b/public/emoji/1f90f.svg
new file mode 100644
index 0000000000000000000000000000000000000000..626e3b5f055565e2c9d4b28c896d6fbf3c6e9557
--- /dev/null
+++ b/public/emoji/1f90f.svg
@@ -0,0 +1 @@
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#FFDC5D" d="M33.29 8.628C33.265 8.62 24.499 6 21.499 5c-1.2-.4-21-7-21 16 0 .637 2 11 4 11h11c8.375 0 5.642-10.68 15.92-12.106 1.739-.241 2.621-1.112 2.466-2.566-.165-1.549-1.975-2.059-3.534-2.059-1.146 0-5.754.233-9.026 1.951-.286-1.809-.826-4.013-.826-6.221 5 1 11.092 2.333 11.209 2.372 1.31.434 2.726-.271 3.162-1.582.438-1.309-.27-2.724-1.58-3.161z"/><path fill="#EF9645" d="M19.207 7.293c-.389-.391-1.023-.392-1.414-.001-.391.39-.392 1.023-.001 1.415.017.017 1.704 1.737 1.704 4.293v7.109c0 .852-.501 1.154-.97 1.154-.496 0-1.025-.332-1.025-1.264v-2c0-3.767-.303-7.77-2.553-8.895-.495-.247-1.095-.046-1.342.447-.247.494-.047 1.095.447 1.342.66.33 1.447 1.831 1.447 7.105v.996s-.004 1.001-.004 3.114c0 .852-.501 1.154-.97 1.154-.496 0-1.025-.332-1.025-1.264v-2c0-3.767-.303-7.77-2.553-8.895-.495-.248-1.095-.046-1.342.447-.247.494-.047 1.095.447 1.342.66.33 1.447 1.831 1.447 7.105v2c0 .021.005.039.005.06-.001.017-.01.032-.01.049 0 .852-.501 1.154-.97 1.154-.496.004-1.025-.328-1.025-1.26 0-3.394 0-7.618-2.553-8.895-.495-.248-1.095-.046-1.342.447-.247.494-.047 1.095.447 1.342C7.5 15.618 7.5 19.613 7.5 22c0 2.143 1.522 3.264 3.025 3.264.722 0 1.445-.263 1.999-.769.56.505 1.281.769 2.001.769 1.236 0 2.473-.769 2.846-2.232.368.151.761.232 1.154.232 1.476 0 2.97-1.083 2.97-3.154V13c0-3.375-2.194-5.613-2.288-5.707z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f916.svg b/public/emoji/1f916.svg
index 181a4901c4f8b6f9b8401dbea1e456f5967cac49..1dbe6d68de79c6714e4e64056235c7e9b51820c0 100644
--- a/public/emoji/1f916.svg
+++ b/public/emoji/1f916.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><ellipse fill="#F4900C" cx="33.5" cy="14.5" rx="2.5" ry="3.5"/><ellipse fill="#F4900C" cx="2.5" cy="14.5" rx="2.5" ry="3.5"/><path fill="#FFAC33" d="M34 19c0 .553-.447 1-1 1h-3c-.553 0-1-.447-1-1v-9c0-.552.447-1 1-1h3c.553 0 1 .448 1 1v9zM7 19c0 .553-.448 1-1 1H3c-.552 0-1-.447-1-1v-9c0-.552.448-1 1-1h3c.552 0 1 .448 1 1v9z"/><path fill="#FFCC4D" d="M28 5c0 2.761-4.478 4-10 4C12.477 9 8 7.761 8 5s4.477-5 10-5c5.522 0 10 2.239 10 5z"/><path fill="#F4900C" d="M25 4.083C25 5.694 21.865 7 18 7c-3.866 0-7-1.306-7-2.917 0-1.611 3.134-2.917 7-2.917 3.865 0 7 1.306 7 2.917z"/><path fill="#269" d="M30 5.5C30 6.881 28.881 7 27.5 7h-19C7.119 7 6 6.881 6 5.5S7.119 3 8.5 3h19C28.881 3 30 4.119 30 5.5z"/><path fill="#55ACEE" d="M30 6H6c-1.104 0-2 .896-2 2v26h28V8c0-1.104-.896-2-2-2z"/><path fill="#3B88C3" d="M35 33v-1c0-1.104-.896-2-2-2H22.071l-3.364 3.364c-.391.391-1.023.391-1.414 0L13.929 30H3c-1.104 0-2 .896-2 2v1c0 1.104-.104 2 1 2h32c1.104 0 1-.896 1-2z"/><circle fill="#FFF" cx="24.5" cy="14.5" r="4.5"/><path fill="#DD2E44" d="M26 17c0 .553-.447 1-1 1h-1c-.553 0-1-.447-1-1v-5c0-.552.447-1 1-1h1c.553 0 1 .448 1 1v5z"/><circle fill="#FFF" cx="11.5" cy="14.5" r="4.5"/><path fill="#DD2E44" d="M13 17c0 .553-.448 1-1 1h-1c-.552 0-1-.447-1-1v-5c0-.552.448-1 1-1h1c.552 0 1 .448 1 1v5z"/><path fill="#F5F8FA" d="M29 25.5c0 1.381-1.119 2.5-2.5 2.5h-17C8.119 28 7 26.881 7 25.5S8.119 23 9.5 23h17c1.381 0 2.5 1.119 2.5 2.5z"/><path fill="#CCD6DD" d="M17 23h2v5h-2zm-5 0h2v5h-2zm10 0h2v5h-2zM7 25.5c0 1.21.859 2.218 2 2.45v-4.9c-1.141.232-2 1.24-2 2.45zm20-2.45v4.899c1.141-.232 2-1.24 2-2.45s-.859-2.217-2-2.449z"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><ellipse fill="#F4900C" cx="33.5" cy="14.5" rx="2.5" ry="3.5"/><ellipse fill="#F4900C" cx="2.5" cy="14.5" rx="2.5" ry="3.5"/><path fill="#FFAC33" d="M34 19c0 .553-.447 1-1 1h-3c-.553 0-1-.447-1-1v-9c0-.552.447-1 1-1h3c.553 0 1 .448 1 1v9zM7 19c0 .553-.448 1-1 1H3c-.552 0-1-.447-1-1v-9c0-.552.448-1 1-1h3c.552 0 1 .448 1 1v9z"/><path fill="#FFCC4D" d="M28 5c0 2.761-4.478 4-10 4C12.477 9 8 7.761 8 5s4.477-5 10-5c5.522 0 10 2.239 10 5z"/><path fill="#F4900C" d="M25 4.083C25 5.694 21.865 7 18 7c-3.866 0-7-1.306-7-2.917 0-1.611 3.134-2.917 7-2.917 3.865 0 7 1.306 7 2.917z"/><path fill="#269" d="M30 5.5C30 6.881 28.881 7 27.5 7h-19C7.119 7 6 6.881 6 5.5S7.119 3 8.5 3h19C28.881 3 30 4.119 30 5.5z"/><path fill="#55ACEE" d="M30 6H6c-1.104 0-2 .896-2 2v26h28V8c0-1.104-.896-2-2-2z"/><path fill="#3B88C3" d="M35 33v-1c0-1.104-.896-2-2-2H22.071l-3.364 3.364c-.391.391-1.023.391-1.414 0L13.929 30H3c-1.104 0-2 .896-2 2v1c0 1.104-.104 2 1 2h32c1.104 0 1-.896 1-2z"/><circle fill="#FFF" cx="24.5" cy="14.5" r="4.5"/><circle fill="#DD2E44" cx="24.5" cy="14.5" r="2.721"/><circle fill="#FFF" cx="11.5" cy="14.5" r="4.5"/><path fill="#F5F8FA" d="M29 25.5c0 1.381-1.119 2.5-2.5 2.5h-17C8.119 28 7 26.881 7 25.5S8.119 23 9.5 23h17c1.381 0 2.5 1.119 2.5 2.5z"/><path fill="#CCD6DD" d="M17 23h2v5h-2zm-5 0h2v5h-2zm10 0h2v5h-2zM7 25.5c0 1.21.859 2.218 2 2.45v-4.9c-1.141.232-2 1.24-2 2.45zm20-2.45v4.899c1.141-.232 2-1.24 2-2.45s-.859-2.217-2-2.449z"/><circle fill="#DD2E44" cx="11.5" cy="14.5" r="2.721"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f918-1f3fb.svg b/public/emoji/1f918-1f3fb.svg
index d86181b90c40ff0161f088e076fdad14cd14878d..56fa28a567ec9bcf19cd287d1049c54dabf87f00 100644
--- a/public/emoji/1f918-1f3fb.svg
+++ b/public/emoji/1f918-1f3fb.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#E0AA94" d="M25 17.125l-8 .021c-1.104 0-1.875.75-1.875 1.854s.771 1.854 1.875 1.854l5.266.021s.879-.104.879.625c0 .276-.369.625-.646.625 0 0-4.5-.208-4.875 6.875-.015.276-.349.625-.625.625s-.624-.349-.624-.625c0-3.01 1.396-5.938 2.867-6.823-.911 0-1.711-.052-2.242-.052-1 0-1.438-.334-1.438-.333-.146.231-.562 1.271-2.688 1.271-2.375 0-3.021-2.363-3.021-3.021v-5.021L10 15c0-.811.485-1.507 1.18-1.82l-.096 6.654c0 1.104.812 2.083 1.917 2.083.755 0 1.263-.341 1.604-.958-.458-.526-.677-1.133-.677-1.885 0-.886.318-1.795.927-2.344l.042-2.708L15 14c0-.811.485-1.507 1.18-1.82L16.125 15l-.021 1.021c.315-.111.564-.146.917-.146l2.875.021v-2.917L20 13V4c0-.811.485-1.507 1.18-1.82l-.034 13.66h3.646L25 16c.922 0 1.723 2 1.723 2l.002.015c-.244-.419-.757-.89-1.725-.89z"/><path fill="#F7DECE" d="M15 16.778c-.609.549-1 1.336-1 2.222 0 .753.287 1.433.745 1.959C14.404 21.576 13.755 22 13 22c-1.104 0-2-.896-2-2v-6c0-.293.067-.569.18-.82.313-.695 1.009-1.18 1.82-1.18 1.104 0 2 .896 2 2v2.778z"/><path fill="#F7DECE" d="M6 6c0-1.104.896-2 2-2s2 .896 2 2v14c0 .658.217 1.262.578 1.753.027.037.061.068.089.103.104.129.21.255.332.365.033.027.065.055.1.082.119.099.243.189.377.269.066.039.132.074.201.108.14.069.285.125.435.172.067.021.131.046.2.062.222.052.451.086.688.086.236 0 .461-.036.681-.089.076-.018.148-.042.223-.066.137-.044.269-.099.396-.161.082-.04.163-.076.24-.124.164-.1.318-.213.46-.341.202-.184.384-.387.53-.618l-.003-.003c.2.115.473.402 1.473.402h2.537c-1.809 1.365-3.037 3.99-3.037 7 0 .276.224.5.5.5s.5-.224.5-.5c0-3.859 2.187-7 4.875-7h.125c.276 0 .5-.224.5-.5s-.224-.5-.5-.5H17c-1.104 0-2-.896-2-2s.896-2 2-2h8c.968 0 1.481.596 1.725 1.015.126.217.185.389.188.4L28 22c.103.335.479 1.871.411 2.191C28.411 29 23.715 34 18 34c-6.537 0-12-5.25-12-12 .008.007 0-16 0-16z"/><path fill="#F7DECE" d="M20 16h-3c-.352 0-.685.072-1 .184V13c0-.293.067-.569.18-.82.313-.695 1.009-1.18 1.82-1.18 1.104 0 2 .896 2 2v3zm1 0V3c0-.293.067-.569.18-.82C21.493 1.485 22.189 1 23 1c1.104 0 2 .896 2 2v13h-4z"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#E0AA94" d="M18 32.625l-8.146-7.583L11 17c0-.811.485-1.507 1.18-1.82L16 16c0-.811.485-1.507 1.18-1.82l3.716.799L21 15V6c0-.811.485-1.507 1.18-1.82l3.612 13.66L26 18c.922 0 1.723 2 1.723 2l.002.015L18 32.625z"/><g fill="#F7DECE"><path d="M16 18.778c-.609.549-1 1.336-1 2.222 0 .753.287 1.433.745 1.959C15.404 23.576 14.755 24 14 24c-1.104 0-2-.896-2-2v-6c0-.293.067-.569.18-.82.313-.695 1.009-1.18 1.82-1.18 1.104 0 2 .896 2 2v2.778z"/><path d="M7 8c0-1.104.896-2 2-2s2 .896 2 2v14c0 .839.378 1.659.999 2.221 1.168.96 2.843 1.043 4-.002.202-.184.384-.387.53-.618l-.003-.003C16.727 23.713 17 24 18 24h2.537c-1.809 1.365-3.037 3.99-3.037 7 0 .276.224.5.5.5s.5-.224.5-.5c0-3.859 2.187-7 4.875-7 .713.079.847-1 .125-1H18c-1.104 0-2-.896-2-2s.896-2 2-2h8c.968 0 1.481.596 1.725 1.015.126.217.185.389.188.4L29 24c.103.335.479 1.871.411 2.191C29.411 31 24.715 36 19 36c-6.537 0-12-5.25-12-12 .008.007 0-16 0-16z"/><path d="M21 18h-3c-.352 0-.685.072-1 .184V15c0-.293.067-.569.18-.82.313-.695 1.009-1.18 1.82-1.18 1.104 0 2 .896 2 2v3zm1 0V5c0-.293.067-.569.18-.82C22.493 3.485 23.189 3 24 3c1.104 0 2 .896 2 2v13h-4z"/></g></svg>
\ No newline at end of file
diff --git a/public/emoji/1f918-1f3fc.svg b/public/emoji/1f918-1f3fc.svg
index 025715f9f45f3402d1d54bb3199e1045849b82ba..bae1401c4aa215cab70fb499dfd359b7a90991ac 100644
--- a/public/emoji/1f918-1f3fc.svg
+++ b/public/emoji/1f918-1f3fc.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#D2A077" d="M25 17.125l-8 .021c-1.104 0-1.875.75-1.875 1.854s.771 1.854 1.875 1.854l5.266.021s.879-.104.879.625c0 .276-.369.625-.646.625 0 0-4.5-.208-4.875 6.875-.015.276-.349.625-.625.625s-.624-.349-.624-.625c0-3.01 1.396-5.938 2.867-6.823-.911 0-1.711-.052-2.242-.052-1 0-1.438-.334-1.438-.333-.146.231-.562 1.271-2.688 1.271-2.375 0-3.021-2.363-3.021-3.021v-5.021L10 15c0-.811.485-1.507 1.18-1.82l-.096 6.654c0 1.104.812 2.083 1.917 2.083.755 0 1.263-.341 1.604-.958-.458-.526-.677-1.133-.677-1.885 0-.886.318-1.795.927-2.344l.042-2.708L15 14c0-.811.485-1.507 1.18-1.82L16.125 15l-.021 1.021c.315-.111.564-.146.917-.146l2.875.021v-2.917L20 13V4c0-.811.485-1.507 1.18-1.82l-.034 13.66h3.646L25 16c.922 0 1.723 2 1.723 2l.002.015c-.244-.419-.757-.89-1.725-.89z"/><path fill="#F3D2A2" d="M15 16.778c-.609.549-1 1.336-1 2.222 0 .753.287 1.433.745 1.959C14.404 21.576 13.755 22 13 22c-1.104 0-2-.896-2-2v-6c0-.293.067-.569.18-.82.313-.695 1.009-1.18 1.82-1.18 1.104 0 2 .896 2 2v2.778z"/><path fill="#F3D2A2" d="M6 6c0-1.104.896-2 2-2s2 .896 2 2v14c0 .658.217 1.262.578 1.753.027.037.061.068.089.103.104.129.21.255.332.365.033.027.065.055.1.082.119.099.243.189.377.269.066.039.132.074.201.108.14.069.285.125.435.172.067.021.131.046.2.062.222.052.451.086.688.086.236 0 .461-.036.681-.089.076-.018.148-.042.223-.066.137-.044.269-.099.396-.161.082-.04.163-.076.24-.124.164-.1.318-.213.46-.341.202-.184.384-.387.53-.618l-.003-.003c.2.115.473.402 1.473.402h2.537c-1.809 1.365-3.037 3.99-3.037 7 0 .276.224.5.5.5s.5-.224.5-.5c0-3.859 2.187-7 4.875-7h.125c.276 0 .5-.224.5-.5s-.224-.5-.5-.5H17c-1.104 0-2-.896-2-2s.896-2 2-2h8c.968 0 1.481.596 1.725 1.015.126.217.185.389.188.4L28 22c.103.335.479 1.871.411 2.191C28.411 29 23.715 34 18 34c-6.537 0-12-5.25-12-12 .008.007 0-16 0-16z"/><path fill="#F3D2A2" d="M20 16h-3c-.352 0-.685.072-1 .184V13c0-.293.067-.569.18-.82.313-.695 1.009-1.18 1.82-1.18 1.104 0 2 .896 2 2v3zm1 0V3c0-.293.067-.569.18-.82C21.493 1.485 22.189 1 23 1c1.104 0 2 .896 2 2v13h-4z"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#D2A077" d="M18 32.625l-8.146-7.583L11 17c0-.811.485-1.507 1.18-1.82L16 16c0-.811.485-1.507 1.18-1.82l3.716.799L21 15V6c0-.811.485-1.507 1.18-1.82l3.612 13.66L26 18c.922 0 1.723 2 1.723 2l.002.015L18 32.625z"/><g fill="#F3D2A2"><path d="M16 18.778c-.609.549-1 1.336-1 2.222 0 .753.287 1.433.745 1.959C15.404 23.576 14.755 24 14 24c-1.104 0-2-.896-2-2v-6c0-.293.067-.569.18-.82.313-.695 1.009-1.18 1.82-1.18 1.104 0 2 .896 2 2v2.778z"/><path d="M7 8c0-1.104.896-2 2-2s2 .896 2 2v14c0 .839.378 1.659.999 2.221 1.168.96 2.843 1.043 4-.002.202-.184.384-.387.53-.618l-.003-.003C16.727 23.713 17 24 18 24h2.537c-1.809 1.365-3.037 3.99-3.037 7 0 .276.224.5.5.5s.5-.224.5-.5c0-3.859 2.187-7 4.875-7 .713.079.847-1 .125-1H18c-1.104 0-2-.896-2-2s.896-2 2-2h8c.968 0 1.481.596 1.725 1.015.126.217.185.389.188.4L29 24c.103.335.479 1.871.411 2.191C29.411 31 24.715 36 19 36c-6.537 0-12-5.25-12-12 .008.007 0-16 0-16z"/><path d="M21 18h-3c-.352 0-.685.072-1 .184V15c0-.293.067-.569.18-.82.313-.695 1.009-1.18 1.82-1.18 1.104 0 2 .896 2 2v3zm1 0V5c0-.293.067-.569.18-.82C22.493 3.485 23.189 3 24 3c1.104 0 2 .896 2 2v13h-4z"/></g></svg>
\ No newline at end of file
diff --git a/public/emoji/1f918-1f3fd.svg b/public/emoji/1f918-1f3fd.svg
index 9840981790e116d2212e3e4e89b94bc7604e5c4c..98ebab0888fc11e4a9dd733a2ad88f97f5f25812 100644
--- a/public/emoji/1f918-1f3fd.svg
+++ b/public/emoji/1f918-1f3fd.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#B78B60" d="M25 17.125l-8 .021c-1.104 0-1.875.75-1.875 1.854s.771 1.854 1.875 1.854l5.266.021s.879-.104.879.625c0 .276-.369.625-.646.625 0 0-4.5-.208-4.875 6.875-.015.276-.349.625-.625.625s-.624-.349-.624-.625c0-3.01 1.396-5.938 2.867-6.823-.911 0-1.711-.052-2.242-.052-1 0-1.438-.334-1.438-.333-.146.231-.562 1.271-2.688 1.271-2.375 0-3.021-2.363-3.021-3.021v-5.021L10 15c0-.811.485-1.507 1.18-1.82l-.096 6.654c0 1.104.812 2.083 1.917 2.083.755 0 1.263-.341 1.604-.958-.458-.526-.677-1.133-.677-1.885 0-.886.318-1.795.927-2.344l.042-2.708L15 14c0-.811.485-1.507 1.18-1.82L16.125 15l-.021 1.021c.315-.111.564-.146.917-.146l2.875.021v-2.917L20 13V4c0-.811.485-1.507 1.18-1.82l-.034 13.66h3.646L25 16c.922 0 1.723 2 1.723 2l.002.015c-.244-.419-.757-.89-1.725-.89z"/><path fill="#D5AB88" d="M15 16.778c-.609.549-1 1.336-1 2.222 0 .753.287 1.433.745 1.959C14.404 21.576 13.755 22 13 22c-1.104 0-2-.896-2-2v-6c0-.293.067-.569.18-.82.313-.695 1.009-1.18 1.82-1.18 1.104 0 2 .896 2 2v2.778z"/><path fill="#D5AB88" d="M6 6c0-1.104.896-2 2-2s2 .896 2 2v14c0 .658.217 1.262.578 1.753.027.037.061.068.089.103.104.129.21.255.332.365.033.027.065.055.1.082.119.099.243.189.377.269.066.039.132.074.201.108.14.069.285.125.435.172.067.021.131.046.2.062.222.052.451.086.688.086.236 0 .461-.036.681-.089.076-.018.148-.042.223-.066.137-.044.269-.099.396-.161.082-.04.163-.076.24-.124.164-.1.318-.213.46-.341.202-.184.384-.387.53-.618l-.003-.003c.2.115.473.402 1.473.402h2.537c-1.809 1.365-3.037 3.99-3.037 7 0 .276.224.5.5.5s.5-.224.5-.5c0-3.859 2.187-7 4.875-7h.125c.276 0 .5-.224.5-.5s-.224-.5-.5-.5H17c-1.104 0-2-.896-2-2s.896-2 2-2h8c.968 0 1.481.596 1.725 1.015.126.217.185.389.188.4L28 22c.103.335.479 1.871.411 2.191C28.411 29 23.715 34 18 34c-6.537 0-12-5.25-12-12 .008.007 0-16 0-16z"/><path fill="#D5AB88" d="M20 16h-3c-.352 0-.685.072-1 .184V13c0-.293.067-.569.18-.82.313-.695 1.009-1.18 1.82-1.18 1.104 0 2 .896 2 2v3zm1 0V3c0-.293.067-.569.18-.82C21.493 1.485 22.189 1 23 1c1.104 0 2 .896 2 2v13h-4z"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#B78B60" d="M18 32.625l-8.146-7.583L11 17c0-.811.485-1.507 1.18-1.82L16 16c0-.811.485-1.507 1.18-1.82l3.716.799L21 15V6c0-.811.485-1.507 1.18-1.82l3.612 13.66L26 18c.922 0 1.723 2 1.723 2l.002.015L18 32.625z"/><g fill="#D4AB88"><path d="M16 18.778c-.609.549-1 1.336-1 2.222 0 .753.287 1.433.745 1.959C15.404 23.576 14.755 24 14 24c-1.104 0-2-.896-2-2v-6c0-.293.067-.569.18-.82.313-.695 1.009-1.18 1.82-1.18 1.104 0 2 .896 2 2v2.778z"/><path d="M7 8c0-1.104.896-2 2-2s2 .896 2 2v14c0 .839.378 1.659.999 2.221 1.168.96 2.843 1.043 4-.002.202-.184.384-.387.53-.618l-.003-.003C16.727 23.713 17 24 18 24h2.537c-1.809 1.365-3.037 3.99-3.037 7 0 .276.224.5.5.5s.5-.224.5-.5c0-3.859 2.187-7 4.875-7 .713.079.847-1 .125-1H18c-1.104 0-2-.896-2-2s.896-2 2-2h8c.968 0 1.481.596 1.725 1.015.126.217.185.389.188.4L29 24c.103.335.479 1.871.411 2.191C29.411 31 24.715 36 19 36c-6.537 0-12-5.25-12-12 .008.007 0-16 0-16z"/><path d="M21 18h-3c-.352 0-.685.072-1 .184V15c0-.293.067-.569.18-.82.313-.695 1.009-1.18 1.82-1.18 1.104 0 2 .896 2 2v3zm1 0V5c0-.293.067-.569.18-.82C22.493 3.485 23.189 3 24 3c1.104 0 2 .896 2 2v13h-4z"/></g></svg>
\ No newline at end of file
diff --git a/public/emoji/1f918-1f3fe.svg b/public/emoji/1f918-1f3fe.svg
index 74adc3caf7c926dc9f66083d7ea2d20ff9797b42..873cef08cab16720f179b85fa35f714e2edcfe9a 100644
--- a/public/emoji/1f918-1f3fe.svg
+++ b/public/emoji/1f918-1f3fe.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#90603E" d="M25 17.125l-8 .021c-1.104 0-1.875.75-1.875 1.854s.771 1.854 1.875 1.854l5.266.021s.879-.104.879.625c0 .276-.369.625-.646.625 0 0-4.5-.208-4.875 6.875-.015.276-.349.625-.625.625s-.624-.349-.624-.625c0-3.01 1.396-5.938 2.867-6.823-.911 0-1.711-.052-2.242-.052-1 0-1.438-.334-1.438-.333-.146.231-.562 1.271-2.688 1.271-2.375 0-3.021-2.363-3.021-3.021v-5.021L10 15c0-.811.485-1.507 1.18-1.82l-.096 6.654c0 1.104.812 2.083 1.917 2.083.755 0 1.263-.341 1.604-.958-.458-.526-.677-1.133-.677-1.885 0-.886.318-1.795.927-2.344l.042-2.708L15 14c0-.811.485-1.507 1.18-1.82L16.125 15l-.021 1.021c.315-.111.564-.146.917-.146l2.875.021v-2.917L20 13V4c0-.811.485-1.507 1.18-1.82l-.034 13.66h3.646L25 16c.922 0 1.723 2 1.723 2l.002.015c-.244-.419-.757-.89-1.725-.89z"/><path fill="#AF7E57" d="M15 16.778c-.609.549-1 1.336-1 2.222 0 .753.287 1.433.745 1.959C14.404 21.576 13.755 22 13 22c-1.104 0-2-.896-2-2v-6c0-.293.067-.569.18-.82.313-.695 1.009-1.18 1.82-1.18 1.104 0 2 .896 2 2v2.778z"/><path fill="#AF7E57" d="M6 6c0-1.104.896-2 2-2s2 .896 2 2v14c0 .658.217 1.262.578 1.753.027.037.061.068.089.103.104.129.21.255.332.365.033.027.065.055.1.082.119.099.243.189.377.269.066.039.132.074.201.108.14.069.285.125.435.172.067.021.131.046.2.062.222.052.451.086.688.086.236 0 .461-.036.681-.089.076-.018.148-.042.223-.066.137-.044.269-.099.396-.161.082-.04.163-.076.24-.124.164-.1.318-.213.46-.341.202-.184.384-.387.53-.618l-.003-.003c.2.115.473.402 1.473.402h2.537c-1.809 1.365-3.037 3.99-3.037 7 0 .276.224.5.5.5s.5-.224.5-.5c0-3.859 2.187-7 4.875-7h.125c.276 0 .5-.224.5-.5s-.224-.5-.5-.5H17c-1.104 0-2-.896-2-2s.896-2 2-2h8c.968 0 1.481.596 1.725 1.015.126.217.185.389.188.4L28 22c.103.335.479 1.871.411 2.191C28.411 29 23.715 34 18 34c-6.537 0-12-5.25-12-12 .008.007 0-16 0-16z"/><path fill="#AF7E57" d="M20 16h-3c-.352 0-.685.072-1 .184V13c0-.293.067-.569.18-.82.313-.695 1.009-1.18 1.82-1.18 1.104 0 2 .896 2 2v3zm1 0V3c0-.293.067-.569.18-.82C21.493 1.485 22.189 1 23 1c1.104 0 2 .896 2 2v13h-4z"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#90603E" d="M18 32.625l-8.146-7.583L11 17c0-.811.485-1.507 1.18-1.82L16 16c0-.811.485-1.507 1.18-1.82l3.716.799L21 15V6c0-.811.485-1.507 1.18-1.82l3.612 13.66L26 18c.922 0 1.723 2 1.723 2l.002.015L18 32.625z"/><g fill="#AF7E57"><path d="M16 18.778c-.609.549-1 1.336-1 2.222 0 .753.287 1.433.745 1.959C15.404 23.576 14.755 24 14 24c-1.104 0-2-.896-2-2v-6c0-.293.067-.569.18-.82.313-.695 1.009-1.18 1.82-1.18 1.104 0 2 .896 2 2v2.778z"/><path d="M7 8c0-1.104.896-2 2-2s2 .896 2 2v14c0 .839.378 1.659.999 2.221 1.168.96 2.843 1.043 4-.002.202-.184.384-.387.53-.618l-.003-.003C16.727 23.713 17 24 18 24h2.537c-1.809 1.365-3.037 3.99-3.037 7 0 .276.224.5.5.5s.5-.224.5-.5c0-3.859 2.187-7 4.875-7 .713.079.847-1 .125-1H18c-1.104 0-2-.896-2-2s.896-2 2-2h8c.968 0 1.481.596 1.725 1.015.126.217.185.389.188.4L29 24c.103.335.479 1.871.411 2.191C29.411 31 24.715 36 19 36c-6.537 0-12-5.25-12-12 .008.007 0-16 0-16z"/><path d="M21 18h-3c-.352 0-.685.072-1 .184V15c0-.293.067-.569.18-.82.313-.695 1.009-1.18 1.82-1.18 1.104 0 2 .896 2 2v3zm1 0V5c0-.293.067-.569.18-.82C22.493 3.485 23.189 3 24 3c1.104 0 2 .896 2 2v13h-4z"/></g></svg>
\ No newline at end of file
diff --git a/public/emoji/1f918-1f3ff.svg b/public/emoji/1f918-1f3ff.svg
index 94bf9a18fa89d14bf2a50de53a5a7c2e4fd42dee..052adbb63fa87c72d009d7e57ccd1a650ed846ce 100644
--- a/public/emoji/1f918-1f3ff.svg
+++ b/public/emoji/1f918-1f3ff.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#583529" d="M25 17.125l-8 .021c-1.104 0-1.875.75-1.875 1.854s.771 1.854 1.875 1.854l5.266.021s.879-.104.879.625c0 .276-.369.625-.646.625 0 0-4.5-.208-4.875 6.875-.015.276-.349.625-.625.625s-.624-.349-.624-.625c0-3.01 1.396-5.938 2.867-6.823-.911 0-1.711-.052-2.242-.052-1 0-1.438-.334-1.438-.333-.146.231-.562 1.271-2.688 1.271-2.375 0-3.021-2.363-3.021-3.021v-5.021L10 15c0-.811.485-1.507 1.18-1.82l-.096 6.654c0 1.104.812 2.083 1.917 2.083.755 0 1.263-.341 1.604-.958-.458-.526-.677-1.133-.677-1.885 0-.886.318-1.795.927-2.344l.042-2.708L15 14c0-.811.485-1.507 1.18-1.82L16.125 15l-.021 1.021c.315-.111.564-.146.917-.146l2.875.021v-2.917L20 13V4c0-.811.485-1.507 1.18-1.82l-.034 13.66h3.646L25 16c.922 0 1.723 2 1.723 2l.002.015c-.244-.419-.757-.89-1.725-.89z"/><path fill="#7C533E" d="M15 16.778c-.609.549-1 1.336-1 2.222 0 .753.287 1.433.745 1.959C14.404 21.576 13.755 22 13 22c-1.104 0-2-.896-2-2v-6c0-.293.067-.569.18-.82.313-.695 1.009-1.18 1.82-1.18 1.104 0 2 .896 2 2v2.778z"/><path fill="#7C533E" d="M6 6c0-1.104.896-2 2-2s2 .896 2 2v14c0 .658.217 1.262.578 1.753.027.037.061.068.089.103.104.129.21.255.332.365.033.027.065.055.1.082.119.099.243.189.377.269.066.039.132.074.201.108.14.069.285.125.435.172.067.021.131.046.2.062.222.052.451.086.688.086.236 0 .461-.036.681-.089.076-.018.148-.042.223-.066.137-.044.269-.099.396-.161.082-.04.163-.076.24-.124.164-.1.318-.213.46-.341.202-.184.384-.387.53-.618l-.003-.003c.2.115.473.402 1.473.402h2.537c-1.809 1.365-3.037 3.99-3.037 7 0 .276.224.5.5.5s.5-.224.5-.5c0-3.859 2.187-7 4.875-7h.125c.276 0 .5-.224.5-.5s-.224-.5-.5-.5H17c-1.104 0-2-.896-2-2s.896-2 2-2h8c.968 0 1.481.596 1.725 1.015.126.217.185.389.188.4L28 22c.103.335.479 1.871.411 2.191C28.411 29 23.715 34 18 34c-6.537 0-12-5.25-12-12 .008.007 0-16 0-16z"/><path fill="#7C533E" d="M20 16h-3c-.352 0-.685.072-1 .184V13c0-.293.067-.569.18-.82.313-.695 1.009-1.18 1.82-1.18 1.104 0 2 .896 2 2v3zm1 0V3c0-.293.067-.569.18-.82C21.493 1.485 22.189 1 23 1c1.104 0 2 .896 2 2v13h-4z"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#583529" d="M18 32.625l-8.146-7.583L11 17c0-.811.485-1.507 1.18-1.82L16 16c0-.811.485-1.507 1.18-1.82l3.716.799L21 15V6c0-.811.485-1.507 1.18-1.82l3.612 13.66L26 18c.922 0 1.723 2 1.723 2l.002.015L18 32.625z"/><g fill="#7C533E"><path d="M16 18.778c-.609.549-1 1.336-1 2.222 0 .753.287 1.433.745 1.959C15.404 23.576 14.755 24 14 24c-1.104 0-2-.896-2-2v-6c0-.293.067-.569.18-.82.313-.695 1.009-1.18 1.82-1.18 1.104 0 2 .896 2 2v2.778z"/><path d="M7 8c0-1.104.896-2 2-2s2 .896 2 2v14c0 .839.378 1.659.999 2.221 1.168.96 2.843 1.043 4-.002.202-.184.384-.387.53-.618l-.003-.003C16.727 23.713 17 24 18 24h2.537c-1.809 1.365-3.037 3.99-3.037 7 0 .276.224.5.5.5s.5-.224.5-.5c0-3.859 2.187-7 4.875-7 .713.079.847-1 .125-1H18c-1.104 0-2-.896-2-2s.896-2 2-2h8c.968 0 1.481.596 1.725 1.015.126.217.185.389.188.4L29 24c.103.335.479 1.871.411 2.191C29.411 31 24.715 36 19 36c-6.537 0-12-5.25-12-12 .008.007 0-16 0-16z"/><path d="M21 18h-3c-.352 0-.685.072-1 .184V15c0-.293.067-.569.18-.82.313-.695 1.009-1.18 1.82-1.18 1.104 0 2 .896 2 2v3zm1 0V5c0-.293.067-.569.18-.82C22.493 3.485 23.189 3 24 3c1.104 0 2 .896 2 2v13h-4z"/></g></svg>
\ No newline at end of file
diff --git a/public/emoji/1f918.svg b/public/emoji/1f918.svg
index 71646855cd05a0941bd60c537d8dc55ddf9ad139..c3a10630e8a82b0ddeaa25826ee6ae3ab0d1190d 100644
--- a/public/emoji/1f918.svg
+++ b/public/emoji/1f918.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#EF9645" d="M25 17.125l-8 .021c-1.104 0-1.875.75-1.875 1.854s.771 1.854 1.875 1.854l5.266.021s.879-.104.879.625c0 .276-.369.625-.646.625 0 0-4.5-.208-4.875 6.875-.015.276-.349.625-.625.625s-.624-.349-.624-.625c0-3.01 1.396-5.938 2.867-6.823-.911 0-1.711-.052-2.242-.052-1 0-1.438-.334-1.438-.333-.146.231-.562 1.271-2.688 1.271-2.375 0-3.021-2.363-3.021-3.021v-5.021L10 15c0-.811.485-1.507 1.18-1.82l-.096 6.654c0 1.104.812 2.083 1.917 2.083.755 0 1.263-.341 1.604-.958-.458-.526-.677-1.133-.677-1.885 0-.886.318-1.795.927-2.344l.042-2.708L15 14c0-.811.485-1.507 1.18-1.82L16.125 15l-.021 1.021c.315-.111.564-.146.917-.146l2.875.021v-2.917L20 13V4c0-.811.485-1.507 1.18-1.82l-.034 13.66h3.646L25 16c.922 0 1.723 2 1.723 2l.002.015c-.244-.419-.757-.89-1.725-.89z"/><path fill="#FFDC5D" d="M15 16.778c-.609.549-1 1.336-1 2.222 0 .753.287 1.433.745 1.959C14.404 21.576 13.755 22 13 22c-1.104 0-2-.896-2-2v-6c0-.293.067-.569.18-.82.313-.695 1.009-1.18 1.82-1.18 1.104 0 2 .896 2 2v2.778z"/><path fill="#FFDC5D" d="M6 6c0-1.104.896-2 2-2s2 .896 2 2v14c0 .658.217 1.262.578 1.753.027.037.061.068.089.103.104.129.21.255.332.365.033.027.065.055.1.082.119.099.243.189.377.269.066.039.132.074.201.108.14.069.285.125.435.172.067.021.131.046.2.062.222.052.451.086.688.086.236 0 .461-.036.681-.089.076-.018.148-.042.223-.066.137-.044.269-.099.396-.161.082-.04.163-.076.24-.124.164-.1.318-.213.46-.341.202-.184.384-.387.53-.618l-.003-.003c.2.115.473.402 1.473.402h2.537c-1.809 1.365-3.037 3.99-3.037 7 0 .276.224.5.5.5s.5-.224.5-.5c0-3.859 2.187-7 4.875-7h.125c.276 0 .5-.224.5-.5s-.224-.5-.5-.5H17c-1.104 0-2-.896-2-2s.896-2 2-2h8c.968 0 1.481.596 1.725 1.015.126.217.185.389.188.4L28 22c.103.335.479 1.871.411 2.191C28.411 29 23.715 34 18 34c-6.537 0-12-5.25-12-12 .008.007 0-16 0-16z"/><path fill="#FFDC5D" d="M20 16h-3c-.352 0-.685.072-1 .184V13c0-.293.067-.569.18-.82.313-.695 1.009-1.18 1.82-1.18 1.104 0 2 .896 2 2v3zm1 0V3c0-.293.067-.569.18-.82C21.493 1.485 22.189 1 23 1c1.104 0 2 .896 2 2v13h-4z"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#EF9645" d="M18 32.625l-8.146-7.583L11 17c0-.811.485-1.507 1.18-1.82L16 16c0-.811.485-1.507 1.18-1.82l3.716.799L21 15V6c0-.811.485-1.507 1.18-1.82l3.612 13.66L26 18c.922 0 1.723 2 1.723 2l.002.015L18 32.625z"/><g fill="#FFDC5D"><path d="M16 18.778c-.609.549-1 1.336-1 2.222 0 .753.287 1.433.745 1.959C15.404 23.576 14.755 24 14 24c-1.104 0-2-.896-2-2v-6c0-.293.067-.569.18-.82.313-.695 1.009-1.18 1.82-1.18 1.104 0 2 .896 2 2v2.778z"/><path d="M7 8c0-1.104.896-2 2-2s2 .896 2 2v14c0 .839.378 1.659.999 2.221 1.168.96 2.843 1.043 4-.002.202-.184.384-.387.53-.618l-.003-.003C16.727 23.713 17 24 18 24h2.537c-1.809 1.365-3.037 3.99-3.037 7 0 .276.224.5.5.5s.5-.224.5-.5c0-3.859 2.187-7 4.875-7 .713.079.847-1 .125-1H18c-1.104 0-2-.896-2-2s.896-2 2-2h8c.968 0 1.481.596 1.725 1.015.126.217.185.389.188.4L29 24c.103.335.479 1.871.411 2.191C29.411 31 24.715 36 19 36c-6.537 0-12-5.25-12-12 .008.007 0-16 0-16z"/><path d="M21 18h-3c-.352 0-.685.072-1 .184V15c0-.293.067-.569.18-.82.313-.695 1.009-1.18 1.82-1.18 1.104 0 2 .896 2 2v3zm1 0V5c0-.293.067-.569.18-.82C22.493 3.485 23.189 3 24 3c1.104 0 2 .896 2 2v13h-4z"/></g></svg>
\ No newline at end of file
diff --git a/public/emoji/1f91a-1f3fb.svg b/public/emoji/1f91a-1f3fb.svg
index d1a7ef589b43d7655924c76fe646638ca84a2cc2..646618e6e29651ac18d908c39947d6c7a422712d 100644
--- a/public/emoji/1f91a-1f3fb.svg
+++ b/public/emoji/1f91a-1f3fb.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#E0AA94" d="M26 4.965C26 3.604 24.896 2.5 23.535 2.5h-.07C22.104 2.5 21 3.604 21 4.965v-2.16C21 1.532 19.968.5 18.695.5h-.391C17.032.5 16 1.532 16 2.805V4c0-1.381-1.119-2.5-2.5-2.5S11 2.619 11 4v9.347c0-1.02-.827-1.847-1.846-1.847h-.308C7.827 11.5 7 12.327 7 13.347v9.807C7 24.173 7.827 25 8.846 25H9v1h2.15c.695 3.424 3.721 6 7.35 6 4.143 0 7.5-3.357 7.5-7.5v-6c0-.217-.015-.431-.032-.643.013-.107.032-.211.032-.322V4.965z"/><path fill="#F7DECE" d="M30 8s0-2-2-2-2 2-2 2v9.286c0-.147-1-.281-1-.398V4s0-2-2-2-2 2-2 2v12.122c0-.028-1-.052-1-.069V2s0-2-2-2-2 2-2 2v14.052c0 .017-1 .053-1 .082V3s0-2-2-2-2 2-2 2v18h-1v-8s0-2-2-2-2 2-2 2v11c0 6.627 5.373 12 12 12s12-5.373 12-12V8z"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#E0AA94" d="M15.5 2.965c1.381 0 2.5 1.119 2.5 2.5v.005L20.5.465c1.381 0 2.5 1.119 2.5 2.5V4.25l2.5-1.535c1.381 0 2.5 1.119 2.5 2.5V8.75L29 18H15.458L15.5 2.965z"/><path fill="#F7DECE" d="M4.625 16.219c1.381-.611 3.354.208 4.75 2.188.917 1.3 1.187 3.151 2.391 3.344.46.073 1.234-.313 1.234-1.397V4.5s0-2 2-2 2 2 2 2v11.633c0-.029 1-.064 1-.082V2s0-2 2-2 2 2 2 2v14.053c0 .017 1 .041 1 .069V4.25s0-2 2-2 2 2 2 2v12.638c0 .118 1 .251 1 .398V8.75s0-2 2-2 2 2 2 2V24c0 6.627-5.373 12-12 12-4.775 0-8.06-2.598-9.896-5.292C8.547 28.423 8.096 26.051 8 25.334c0 0-.123-1.479-1.156-2.865-1.469-1.969-2.5-3.156-3.125-3.866-.317-.359-.625-1.707.906-2.384z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f91a-1f3fc.svg b/public/emoji/1f91a-1f3fc.svg
index ccc982e57b1ef549e88a9b0bfdfc0fc6fc659ded..4b5f983923c0b203b7079de28ab4f553d3391733 100644
--- a/public/emoji/1f91a-1f3fc.svg
+++ b/public/emoji/1f91a-1f3fc.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#D2A077" d="M26 4.965C26 3.604 24.896 2.5 23.535 2.5h-.07C22.104 2.5 21 3.604 21 4.965v-2.16C21 1.532 19.968.5 18.695.5h-.391C17.032.5 16 1.532 16 2.805V4c0-1.381-1.119-2.5-2.5-2.5S11 2.619 11 4v9.347c0-1.02-.827-1.847-1.846-1.847h-.308C7.827 11.5 7 12.327 7 13.347v9.807C7 24.173 7.827 25 8.846 25H9v1h2.15c.695 3.424 3.721 6 7.35 6 4.143 0 7.5-3.357 7.5-7.5v-6c0-.217-.015-.431-.032-.643.013-.107.032-.211.032-.322V4.965z"/><path fill="#F3D2A2" d="M30 8s0-2-2-2-2 2-2 2v9.286c-.319-.147-.651-.281-1-.398V4s0-2-2-2-2 2-2 2v12.122c-.328-.028-.661-.052-1-.069V2s0-2-2-2-2 2-2 2v14.052c-.342.017-.668.053-1 .082V3s0-2-2-2-2 2-2 2v18h-1v-8s0-2-2-2-2 2-2 2v11c0 6.627 5.373 12 12 12s12-5.373 12-12V8z"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#D2A077" d="M15.5 2.965c1.381 0 2.5 1.119 2.5 2.5v.005L20.5.465c1.381 0 2.5 1.119 2.5 2.5V4.25l2.5-1.535c1.381 0 2.5 1.119 2.5 2.5V8.75L29 18H15.458L15.5 2.965z"/><path fill="#F3D2A2" d="M4.625 16.219c1.381-.611 3.354.208 4.75 2.188.917 1.3 1.187 3.151 2.391 3.344.46.073 1.234-.313 1.234-1.397V4.5s0-2 2-2 2 2 2 2v11.633c0-.029 1-.064 1-.082V2s0-2 2-2 2 2 2 2v14.053c0 .017 1 .041 1 .069V4.25s0-2 2-2 2 2 2 2v12.638c0 .118 1 .251 1 .398V8.75s0-2 2-2 2 2 2 2V24c0 6.627-5.373 12-12 12-4.775 0-8.06-2.598-9.896-5.292C8.547 28.423 8.096 26.051 8 25.334c0 0-.123-1.479-1.156-2.865-1.469-1.969-2.5-3.156-3.125-3.866-.317-.359-.625-1.707.906-2.384z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f91a-1f3fd.svg b/public/emoji/1f91a-1f3fd.svg
index 50698f1cfa17e44cbfa5d4931a593991442b5d49..6d85626e08e733c37c3e3ad23e7578d08709c2a2 100644
--- a/public/emoji/1f91a-1f3fd.svg
+++ b/public/emoji/1f91a-1f3fd.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#B78B60" d="M26 4.965C26 3.604 24.896 2.5 23.535 2.5h-.07C22.104 2.5 21 3.604 21 4.965v-2.16C21 1.532 19.968.5 18.695.5h-.391C17.032.5 16 1.532 16 2.805V4c0-1.381-1.119-2.5-2.5-2.5S11 2.619 11 4v9.347c0-1.02-.827-1.847-1.846-1.847h-.308C7.827 11.5 7 12.327 7 13.347v9.807C7 24.173 7.827 25 8.846 25H9v1h2.15c.695 3.424 3.721 6 7.35 6 4.143 0 7.5-3.357 7.5-7.5v-6c0-.217-.015-.431-.032-.643.013-.107.032-.211.032-.322V4.965z"/><path fill="#D5AB88" d="M30 8s0-2-2-2-2 2-2 2v9.286c-.319-.147-.651-.281-1-.398V4s0-2-2-2-2 2-2 2v12.122c-.328-.028-.661-.052-1-.069V2s0-2-2-2-2 2-2 2v14.052c-.342.017-.668.053-1 .082V3s0-2-2-2-2 2-2 2v18h-1v-8s0-2-2-2-2 2-2 2v11c0 6.627 5.373 12 12 12s12-5.373 12-12V8z"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#B78B60" d="M15.5 2.965c1.381 0 2.5 1.119 2.5 2.5v.005L20.5.465c1.381 0 2.5 1.119 2.5 2.5V4.25l2.5-1.535c1.381 0 2.5 1.119 2.5 2.5V8.75L29 18H15.458L15.5 2.965z"/><path fill="#D5AB88" d="M4.625 16.219c1.381-.611 3.354.208 4.75 2.188.917 1.3 1.187 3.151 2.391 3.344.46.073 1.234-.313 1.234-1.397V4.5s0-2 2-2 2 2 2 2v11.633c0-.029 1-.064 1-.082V2s0-2 2-2 2 2 2 2v14.053c0 .017 1 .041 1 .069V4.25s0-2 2-2 2 2 2 2v12.638c0 .118 1 .251 1 .398V8.75s0-2 2-2 2 2 2 2V24c0 6.627-5.373 12-12 12-4.775 0-8.06-2.598-9.896-5.292C8.547 28.423 8.096 26.051 8 25.334c0 0-.123-1.479-1.156-2.865-1.469-1.969-2.5-3.156-3.125-3.866-.317-.359-.625-1.707.906-2.384z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f91a-1f3fe.svg b/public/emoji/1f91a-1f3fe.svg
index 13e2bd5c065bc59e919824ea9a8c2c82c8a50bb7..cc36a248703f3ab9df5d317e7205e27c33bdb09b 100644
--- a/public/emoji/1f91a-1f3fe.svg
+++ b/public/emoji/1f91a-1f3fe.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#90603E" d="M26 4.965C26 3.604 24.896 2.5 23.535 2.5h-.07C22.104 2.5 21 3.604 21 4.965v-2.16C21 1.532 19.968.5 18.695.5h-.391C17.032.5 16 1.532 16 2.805V4c0-1.381-1.119-2.5-2.5-2.5S11 2.619 11 4v9.347c0-1.02-.827-1.847-1.846-1.847h-.308C7.827 11.5 7 12.327 7 13.347v9.807C7 24.173 7.827 25 8.846 25H9v1h2.15c.695 3.424 3.721 6 7.35 6 4.143 0 7.5-3.357 7.5-7.5v-6c0-.217-.015-.431-.032-.643.013-.107.032-.211.032-.322V4.965z"/><path fill="#AF7E57" d="M30 8s0-2-2-2-2 2-2 2v9.286c-.319-.147-.651-.281-1-.398V4s0-2-2-2-2 2-2 2v12.122c-.328-.028-.661-.052-1-.069V2s0-2-2-2-2 2-2 2v14.052c-.342.017-.668.053-1 .082V3s0-2-2-2-2 2-2 2v18h-1v-8s0-2-2-2-2 2-2 2v11c0 6.627 5.373 12 12 12s12-5.373 12-12V8z"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#90603E" d="M15.5 2.965c1.381 0 2.5 1.119 2.5 2.5v.005L20.5.465c1.381 0 2.5 1.119 2.5 2.5V4.25l2.5-1.535c1.381 0 2.5 1.119 2.5 2.5V8.75L29 18H15.458L15.5 2.965z"/><path fill="#AF7E57" d="M4.625 16.219c1.381-.611 3.354.208 4.75 2.188.917 1.3 1.187 3.151 2.391 3.344.46.073 1.234-.313 1.234-1.397V4.5s0-2 2-2 2 2 2 2v11.633c0-.029 1-.064 1-.082V2s0-2 2-2 2 2 2 2v14.053c0 .017 1 .041 1 .069V4.25s0-2 2-2 2 2 2 2v12.638c0 .118 1 .251 1 .398V8.75s0-2 2-2 2 2 2 2V24c0 6.627-5.373 12-12 12-4.775 0-8.06-2.598-9.896-5.292C8.547 28.423 8.096 26.051 8 25.334c0 0-.123-1.479-1.156-2.865-1.469-1.969-2.5-3.156-3.125-3.866-.317-.359-.625-1.707.906-2.384z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f91a-1f3ff.svg b/public/emoji/1f91a-1f3ff.svg
index a47052cd0e72f0f0a81360d94244261675d81eeb..1345e9719a9d0aa73e49db11a2f01b658e1c3cf1 100644
--- a/public/emoji/1f91a-1f3ff.svg
+++ b/public/emoji/1f91a-1f3ff.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#583529" d="M26 4.965C26 3.604 24.896 2.5 23.535 2.5h-.07C22.104 2.5 21 3.604 21 4.965v-2.16C21 1.532 19.968.5 18.695.5h-.391C17.032.5 16 1.532 16 2.805V4c0-1.381-1.119-2.5-2.5-2.5S11 2.619 11 4v9.347c0-1.02-.827-1.847-1.846-1.847h-.308C7.827 11.5 7 12.327 7 13.347v9.807C7 24.173 7.827 25 8.846 25H9v1h2.15c.695 3.424 3.721 6 7.35 6 4.143 0 7.5-3.357 7.5-7.5v-6c0-.217-.015-.431-.032-.643.013-.107.032-.211.032-.322V4.965z"/><path fill="#7C533E" d="M30 8s0-2-2-2-2 2-2 2v9.286c-.319-.147-.651-.281-1-.398V4s0-2-2-2-2 2-2 2v12.122c-.328-.028-.661-.052-1-.069V2s0-2-2-2-2 2-2 2v14.052c-.342.017-.668.053-1 .082V3s0-2-2-2-2 2-2 2v18h-1v-8s0-2-2-2-2 2-2 2v11c0 6.627 5.373 12 12 12s12-5.373 12-12V8z"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#583529" d="M15.5 2.965c1.381 0 2.5 1.119 2.5 2.5v.005L20.5.465c1.381 0 2.5 1.119 2.5 2.5V4.25l2.5-1.535c1.381 0 2.5 1.119 2.5 2.5V8.75L29 18H15.458L15.5 2.965z"/><path fill="#7C533E" d="M4.625 16.219c1.381-.611 3.354.208 4.75 2.188.917 1.3 1.187 3.151 2.391 3.344.46.073 1.234-.313 1.234-1.397V4.5s0-2 2-2 2 2 2 2v11.633c0-.029 1-.064 1-.082V2s0-2 2-2 2 2 2 2v14.053c0 .017 1 .041 1 .069V4.25s0-2 2-2 2 2 2 2v12.638c0 .118 1 .251 1 .398V8.75s0-2 2-2 2 2 2 2V24c0 6.627-5.373 12-12 12-4.775 0-8.06-2.598-9.896-5.292C8.547 28.423 8.096 26.051 8 25.334c0 0-.123-1.479-1.156-2.865-1.469-1.969-2.5-3.156-3.125-3.866-.317-.359-.625-1.707.906-2.384z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f91a.svg b/public/emoji/1f91a.svg
index 48811d085d5bfe8a5d9e6376bdc30e6ec99c3d93..a3d2b1c9d177073957516240cd0d315dc3bde930 100644
--- a/public/emoji/1f91a.svg
+++ b/public/emoji/1f91a.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#EF9645" d="M26 4.965C26 3.604 24.896 2.5 23.535 2.5h-.07C22.104 2.5 21 3.604 21 4.965v-2.16C21 1.532 19.968.5 18.695.5h-.391C17.032.5 16 1.532 16 2.805V4c0-1.381-1.119-2.5-2.5-2.5S11 2.619 11 4v9.347c0-1.02-.827-1.847-1.846-1.847h-.308C7.827 11.5 7 12.327 7 13.347v9.807C7 24.173 7.827 25 8.846 25H9v1h2.15c.695 3.424 3.721 6 7.35 6 4.143 0 7.5-3.357 7.5-7.5v-6c0-.217-.015-.431-.032-.643.013-.107.032-.211.032-.322V4.965z"/><path fill="#FFDC5D" d="M30 8s0-2-2-2-2 2-2 2v9.286c-.319-.147-.651-.281-1-.398V4s0-2-2-2-2 2-2 2v12.122c-.328-.028-.661-.052-1-.069V2s0-2-2-2-2 2-2 2v14.052c-.342.017-.668.053-1 .082V3s0-2-2-2-2 2-2 2v18h-1v-8s0-2-2-2-2 2-2 2v11c0 6.627 5.373 12 12 12s12-5.373 12-12V8z"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#EF9645" d="M15.5 2.965c1.381 0 2.5 1.119 2.5 2.5v.005L20.5.465c1.381 0 2.5 1.119 2.5 2.5V4.25l2.5-1.535c1.381 0 2.5 1.119 2.5 2.5V8.75L29 18H15.458L15.5 2.965z"/><path fill="#FFDC5D" d="M4.625 16.219c1.381-.611 3.354.208 4.75 2.188.917 1.3 1.187 3.151 2.391 3.344.46.073 1.234-.313 1.234-1.397V4.5s0-2 2-2 2 2 2 2v11.633c0-.029 1-.064 1-.082V2s0-2 2-2 2 2 2 2v14.053c0 .017 1 .041 1 .069V4.25s0-2 2-2 2 2 2 2v12.638c0 .118 1 .251 1 .398V8.75s0-2 2-2 2 2 2 2V24c0 6.627-5.373 12-12 12-4.775 0-8.06-2.598-9.896-5.292C8.547 28.423 8.096 26.051 8 25.334c0 0-.123-1.479-1.156-2.865-1.469-1.969-2.5-3.156-3.125-3.866-.317-.359-.625-1.707.906-2.384z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f91e-1f3fb.svg b/public/emoji/1f91e-1f3fb.svg
index 6e6cb494ada2d07fd7a13f59bfaa0191fbb291b7..30a387d36912983a79794c96c2d68e619d50be40 100644
--- a/public/emoji/1f91e-1f3fb.svg
+++ b/public/emoji/1f91e-1f3fb.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#E0AA94" d="M25.362 18.513l-.372-.521-.161-.132-4.001.016-4.098-11.92c-.613.525-.879 1.383-.586 2.187l1.721 4.727-.005.145 1.719 4.891-3.422-.016-.223.311c-.083.031-.62.313-.773.44l-.161.137s-1.125.534-1.125 2.407c.044.678.392 1.534.719 1.774-.359.572-.996.916-1.594.916-1.104 0-1.906-.771-1.906-1.875l.295-7.176c-.817.364-1.389 1.181-1.389 2.133v.96l-.109.005v4.161C9.734 24 7.916 23.906 7.916 23.906 6.857 23.906 6 23.142 6 22.083V24c0 .095.015.185.028.276.515.445 1.177.818 1.91.818 0 0 1.609.094 2.575-1.266.123.183 1.003 1.281 2.487 1.281 1.688 0 2.527-1.405 2.526-1.406.201.115.474.375 1.474.375h2.297c-2.031 1.734-2.875 4.528-2.875 6.922 0 .276.302.562.578.562s.578-.286.578-.562c0-2.548.899-4.642 2.299-5.891 1.139-1.016 2.623-1.031 2.623-1.031.276 0 .578-.302.578-.578 0-.276-.302-.578-.578-.578H17c-1.104 0-1.906-.817-1.906-1.922s.802-1.906 1.906-1.906l8-.016c.766 0 1.518.633 1.543.664-.286-.504-.689-.926-1.181-1.229zM20.333 5.365L20.96 4.2h.135l2.033 5.604-.001.293-.514 1.366h-.072l-2.208-5.994z"/><path fill="#F7DECE" d="M17 18c-.703 0-1.066.202-1.066.202l1.931-5.331L19.731 18H17zm-9.084-2h.168C9.143 16 10 16.858 10 17.917v4.166C10 23.142 9.143 24 8.084 24h-.168C6.857 24 6 23.142 6 22.083v-4.166C6 16.858 6.857 16 7.916 16zm6.918 2.96l-.056.062C14.304 19.551 14 20.233 14 21c0 .063.013.123.018.185.044.678.308 1.292.728 1.774-.071.129-.163.243-.259.353-.366.417-.89.688-1.487.688-1.104 0-2-.896-2-2v-6c0-.441.147-.845.389-1.176.364-.497.947-.824 1.611-.824 1.104 0 2 .896 2 2v2.778c-.061.055-.109.123-.166.182z"/><path fill="#F7DECE" d="M8.062 25c1.024 0 1.925-.526 2.45-1.322.123.183.271.346.431.497.049.046.102.085.155.128.119.099.243.189.377.269.066.039.132.074.201.108.14.069.285.125.435.172.067.021.131.046.2.062.223.052.452.086.689.086.236 0 .461-.036.681-.089.076-.018.148-.042.223-.066.137-.044.269-.099.396-.161.082-.04.163-.076.24-.124.164-.1.318-.213.46-.341.043-.039.071-.09.112-.13.152-.152.303-.305.419-.488l-.003-.003C15.727 23.713 16 24 17 24h2.537c-.37.279-.708.623-1.024 1-1.228 1.467-2.013 3.606-2.013 6 0 .276.224.5.5.5s.5-.224.5-.5c0-2.548.956-4.775 2.377-6 .732-.631 1.584-1 2.498-1h.125c.276 0 .5-.224.5-.5s-.224-.5-.5-.5H17c-1.104 0-2-.896-2-2s.896-2 2-2h8c.032 0 .062.008.094.01.073.003.145.01.216.022.062.01.122.021.182.037.063.017.125.035.187.058.062.022.122.047.181.075.057.027.111.058.165.09.056.033.109.067.161.107.052.038.102.08.15.124.046.041.09.084.132.13.027.029.051.06.075.091l.052.063c.038.051.073.102.106.156.034.056.064.112.093.171.03.062.056.125.08.19.012.031.029.06.039.093L28 24c.103.335.479 1.871.411 2.191C28.411 31 23.715 36 18 36c-6.537 0-11.844-5.231-11.986-11.734l.014.01c.515.445 1.176.724 1.91.724h.124zM21.226 3.707c.445-.903 1.501-1.35 2.468-.998 1.038.377 1.573 1.525 1.195 2.563l-1.761 4.821-.001.003L20.96 4.2l.266-.493zM25.001 18l-2.388-6.537-2.07-5.688c-.054-.149-.128-.283-.211-.41-.497-.759-1.464-1.109-2.353-.785-.642.234-1.089.762-1.25 1.376-.099.379-.09.791.055 1.187L20.733 18h4.268z"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#E0AA94" d="M26.362 18.513l-.372-.521-4.656-6.523 2.28-.006.514-1.366V4.2H21.96l-.628 1.165-3.602.591c-.613.525-.879 1.383-.586 2.187l1.721 4.727v2.882l-1.93 2.449c-.083.031-.62.313-.773.44l-.162.137-3.611-3.954c-.817.364-1.389 1.181-1.389 2.133v.96l-4 4.166.016 2.188L17 35s10.518-15.288 10.543-15.258c-.286-.504-.689-.926-1.181-1.229z"/><g fill="#F7DECE"><path d="M9.062 25c1.024 0 1.925-.526 2.45-1.322.123.183.271.346.431.497 1.185 1.115 3.034 1.044 4.167-.086.152-.152.303-.305.419-.488l-.003-.003C16.727 23.713 17 24 18 24h2.537c-.37.279-.708.623-1.024 1-1.228 1.467-2.013 3.606-2.013 6 0 .276.224.5.5.5s.5-.224.5-.5c0-2.548.956-4.775 2.377-6 .732-.631 1.584-1 2.498-1 .713.079.847-1 .125-1H18c-1.104 0-2-.896-2-2s.896-2 2-2h8c.858 0 1.66.596 1.913 1.415L29 24c.103.335.479 1.871.411 2.191C29.411 31 24.715 36 19 36c-6.537 0-11.844-5.231-11.986-11.734l.014.01c.515.445 1.176.724 1.91.724h.124zM18 18c-.703 0-1.066.202-1.066.202l1.931-5.331L20.731 18H18z"/><path d="M8.916 16h.168c1.059 0 1.916.858 1.916 1.917v4.166C11 23.142 10.143 24 9.084 24h-.168C7.857 24 7 23.142 7 22.083v-4.166C7 16.858 7.857 16 8.916 16zm6.918 2.96l-.056.062C15.304 19.551 15 20.233 15 21c0 .063.013.123.018.185.044.678.308 1.292.728 1.774-.071.129-.163.243-.259.353-.366.417-.89.688-1.487.688-1.104 0-2-.896-2-2v-6c0-.441.147-.845.389-1.176.364-.497.947-.824 1.611-.824 1.104 0 2 .896 2 2v2.778c-.061.055-.109.123-.166.182zm6.392-15.253c.445-.903 1.501-1.35 2.468-.998 1.038.377 1.573 1.525 1.195 2.563l-1.761 4.821-.001.003L21.96 4.2l.266-.493zM26.001 18l-2.388-6.537-2.07-5.688c-.054-.149-.128-.283-.211-.41-.497-.759-1.464-1.109-2.353-.785-.642.234-1.089.762-1.25 1.376-.099.379-.09.791.055 1.187L21.733 18h4.268z"/></g></svg>
\ No newline at end of file
diff --git a/public/emoji/1f91e-1f3fc.svg b/public/emoji/1f91e-1f3fc.svg
index c3b5182b4ef0897bee09155eaa3b7553dc20f25c..ec2fa5086642bdcb977637647cafdc57a017e3e4 100644
--- a/public/emoji/1f91e-1f3fc.svg
+++ b/public/emoji/1f91e-1f3fc.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#D2A077" d="M25.362 18.513l-.372-.521-.161-.132-4.001.016-4.098-11.92c-.613.525-.879 1.383-.586 2.187l1.721 4.727-.005.145 1.719 4.891-3.422-.016-.223.311c-.083.031-.62.313-.773.44l-.161.137s-1.125.534-1.125 2.407c.044.678.392 1.534.719 1.774-.359.572-.996.916-1.594.916-1.104 0-1.906-.771-1.906-1.875l.295-7.176c-.817.364-1.389 1.181-1.389 2.133v.96l-.109.005v4.161C9.734 24 7.916 23.906 7.916 23.906 6.857 23.906 6 23.142 6 22.083V24c0 .095.015.185.028.276.515.445 1.177.818 1.91.818 0 0 1.609.094 2.575-1.266.123.183 1.003 1.281 2.487 1.281 1.688 0 2.527-1.405 2.526-1.406.201.115.474.375 1.474.375h2.297c-2.031 1.734-2.875 4.528-2.875 6.922 0 .276.302.562.578.562s.578-.286.578-.562c0-2.548.899-4.642 2.299-5.891 1.139-1.016 2.623-1.031 2.623-1.031.276 0 .578-.302.578-.578 0-.276-.302-.578-.578-.578H17c-1.104 0-1.906-.817-1.906-1.922s.802-1.906 1.906-1.906l8-.016c.766 0 1.518.633 1.543.664-.286-.504-.689-.926-1.181-1.229zM20.333 5.365L20.96 4.2h.135l2.033 5.604-.001.293-.514 1.366h-.072l-2.208-5.994z"/><path fill="#F3D2A2" d="M17 18c-.703 0-1.066.202-1.066.202l1.931-5.331L19.731 18H17zm-9.084-2h.168C9.143 16 10 16.858 10 17.917v4.166C10 23.142 9.143 24 8.084 24h-.168C6.857 24 6 23.142 6 22.083v-4.166C6 16.858 6.857 16 7.916 16zm6.918 2.96l-.056.062C14.304 19.551 14 20.233 14 21c0 .063.013.123.018.185.044.678.308 1.292.728 1.774-.071.129-.163.243-.259.353-.366.417-.89.688-1.487.688-1.104 0-2-.896-2-2v-6c0-.441.147-.845.389-1.176.364-.497.947-.824 1.611-.824 1.104 0 2 .896 2 2v2.778c-.061.055-.109.123-.166.182z"/><path fill="#F3D2A2" d="M8.062 25c1.024 0 1.925-.526 2.45-1.322.123.183.271.346.431.497.049.046.102.085.155.128.119.099.243.189.377.269.066.039.132.074.201.108.14.069.285.125.435.172.067.021.131.046.2.062.223.052.452.086.689.086.236 0 .461-.036.681-.089.076-.018.148-.042.223-.066.137-.044.269-.099.396-.161.082-.04.163-.076.24-.124.164-.1.318-.213.46-.341.043-.039.071-.09.112-.13.152-.152.303-.305.419-.488l-.003-.003C15.727 23.713 16 24 17 24h2.537c-.37.279-.708.623-1.024 1-1.228 1.467-2.013 3.606-2.013 6 0 .276.224.5.5.5s.5-.224.5-.5c0-2.548.956-4.775 2.377-6 .732-.631 1.584-1 2.498-1h.125c.276 0 .5-.224.5-.5s-.224-.5-.5-.5H17c-1.104 0-2-.896-2-2s.896-2 2-2h8c.032 0 .062.008.094.01.073.003.145.01.216.022.062.01.122.021.182.037.063.017.125.035.187.058.062.022.122.047.181.075.057.027.111.058.165.09.056.033.109.067.161.107.052.038.102.08.15.124.046.041.09.084.132.13.027.029.051.06.075.091l.052.063c.038.051.073.102.106.156.034.056.064.112.093.171.03.062.056.125.08.19.012.031.029.06.039.093L28 24c.103.335.479 1.871.411 2.191C28.411 31 23.715 36 18 36c-6.537 0-11.844-5.231-11.986-11.734l.014.01c.515.445 1.176.724 1.91.724h.124zM21.226 3.707c.445-.903 1.501-1.35 2.468-.998 1.038.377 1.573 1.525 1.195 2.563l-1.761 4.821-.001.003L20.96 4.2l.266-.493zM25.001 18l-2.388-6.537-2.07-5.688c-.054-.149-.128-.283-.211-.41-.497-.759-1.464-1.109-2.353-.785-.642.234-1.089.762-1.25 1.376-.099.379-.09.791.055 1.187L20.733 18h4.268z"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#D2A077" d="M26.362 18.513l-.372-.521-4.656-6.523 2.28-.006.514-1.366V4.2H21.96l-.628 1.165-3.602.591c-.613.525-.879 1.383-.586 2.187l1.721 4.727v2.882l-1.93 2.449c-.083.031-.62.313-.773.44l-.162.137-3.611-3.954c-.817.364-1.389 1.181-1.389 2.133v.96l-4 4.166.016 2.188L17 35s10.518-15.288 10.543-15.258c-.286-.504-.689-.926-1.181-1.229z"/><g fill="#F3D2A2"><path d="M9.062 25c1.024 0 1.925-.526 2.45-1.322.123.183.271.346.431.497 1.185 1.115 3.034 1.044 4.167-.086.152-.152.303-.305.419-.488l-.003-.003C16.727 23.713 17 24 18 24h2.537c-.37.279-.708.623-1.024 1-1.228 1.467-2.013 3.606-2.013 6 0 .276.224.5.5.5s.5-.224.5-.5c0-2.548.956-4.775 2.377-6 .732-.631 1.584-1 2.498-1 .713.079.847-1 .125-1H18c-1.104 0-2-.896-2-2s.896-2 2-2h8c.858 0 1.66.596 1.913 1.415L29 24c.103.335.479 1.871.411 2.191C29.411 31 24.715 36 19 36c-6.537 0-11.844-5.231-11.986-11.734l.014.01c.515.445 1.176.724 1.91.724h.124zM18 18c-.703 0-1.066.202-1.066.202l1.931-5.331L20.731 18H18z"/><path d="M8.916 16h.168c1.059 0 1.916.858 1.916 1.917v4.166C11 23.142 10.143 24 9.084 24h-.168C7.857 24 7 23.142 7 22.083v-4.166C7 16.858 7.857 16 8.916 16zm6.918 2.96l-.056.062C15.304 19.551 15 20.233 15 21c0 .063.013.123.018.185.044.678.308 1.292.728 1.774-.071.129-.163.243-.259.353-.366.417-.89.688-1.487.688-1.104 0-2-.896-2-2v-6c0-.441.147-.845.389-1.176.364-.497.947-.824 1.611-.824 1.104 0 2 .896 2 2v2.778c-.061.055-.109.123-.166.182zm6.392-15.253c.445-.903 1.501-1.35 2.468-.998 1.038.377 1.573 1.525 1.195 2.563l-1.761 4.821-.001.003L21.96 4.2l.266-.493zM26.001 18l-2.388-6.537-2.07-5.688c-.054-.149-.128-.283-.211-.41-.497-.759-1.464-1.109-2.353-.785-.642.234-1.089.762-1.25 1.376-.099.379-.09.791.055 1.187L21.733 18h4.268z"/></g></svg>
\ No newline at end of file
diff --git a/public/emoji/1f91e-1f3fd.svg b/public/emoji/1f91e-1f3fd.svg
index f7f0b9ba40c10f30b74c79ebd86c6e5fd15086b0..b17f2690b8fead04359ca2e41704d2398b731ca5 100644
--- a/public/emoji/1f91e-1f3fd.svg
+++ b/public/emoji/1f91e-1f3fd.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#B78B60" d="M25.362 18.513l-.372-.521-.161-.132-4.001.016-4.098-11.92c-.613.525-.879 1.383-.586 2.187l1.721 4.727-.005.145 1.719 4.891-3.422-.016-.223.311c-.083.031-.62.313-.773.44l-.161.137s-1.125.534-1.125 2.407c.044.678.392 1.534.719 1.774-.359.572-.996.916-1.594.916-1.104 0-1.906-.771-1.906-1.875l.295-7.176c-.817.364-1.389 1.181-1.389 2.133v.96l-.109.005v4.161C9.734 24 7.916 23.906 7.916 23.906 6.857 23.906 6 23.142 6 22.083V24c0 .095.015.185.028.276.515.445 1.177.818 1.91.818 0 0 1.609.094 2.575-1.266.123.183 1.003 1.281 2.487 1.281 1.688 0 2.527-1.405 2.526-1.406.201.115.474.375 1.474.375h2.297c-2.031 1.734-2.875 4.528-2.875 6.922 0 .276.302.562.578.562s.578-.286.578-.562c0-2.548.899-4.642 2.299-5.891 1.139-1.016 2.623-1.031 2.623-1.031.276 0 .578-.302.578-.578 0-.276-.302-.578-.578-.578H17c-1.104 0-1.906-.817-1.906-1.922s.802-1.906 1.906-1.906l8-.016c.766 0 1.518.633 1.543.664-.286-.504-.689-.926-1.181-1.229zM20.333 5.365L20.96 4.2h.135l2.033 5.604-.001.293-.514 1.366h-.072l-2.208-5.994z"/><path fill="#D5AB88" d="M17 18c-.703 0-1.066.202-1.066.202l1.931-5.331L19.731 18H17zm-9.084-2h.168C9.143 16 10 16.858 10 17.917v4.166C10 23.142 9.143 24 8.084 24h-.168C6.857 24 6 23.142 6 22.083v-4.166C6 16.858 6.857 16 7.916 16zm6.918 2.96l-.056.062C14.304 19.551 14 20.233 14 21c0 .063.013.123.018.185.044.678.308 1.292.728 1.774-.071.129-.163.243-.259.353-.366.417-.89.688-1.487.688-1.104 0-2-.896-2-2v-6c0-.441.147-.845.389-1.176.364-.497.947-.824 1.611-.824 1.104 0 2 .896 2 2v2.778c-.061.055-.109.123-.166.182z"/><path fill="#D5AB88" d="M8.062 25c1.024 0 1.925-.526 2.45-1.322.123.183.271.346.431.497.049.046.102.085.155.128.119.099.243.189.377.269.066.039.132.074.201.108.14.069.285.125.435.172.067.021.131.046.2.062.223.052.452.086.689.086.236 0 .461-.036.681-.089.076-.018.148-.042.223-.066.137-.044.269-.099.396-.161.082-.04.163-.076.24-.124.164-.1.318-.213.46-.341.043-.039.071-.09.112-.13.152-.152.303-.305.419-.488l-.003-.003C15.727 23.713 16 24 17 24h2.537c-.37.279-.708.623-1.024 1-1.228 1.467-2.013 3.606-2.013 6 0 .276.224.5.5.5s.5-.224.5-.5c0-2.548.956-4.775 2.377-6 .732-.631 1.584-1 2.498-1h.125c.276 0 .5-.224.5-.5s-.224-.5-.5-.5H17c-1.104 0-2-.896-2-2s.896-2 2-2h8c.032 0 .062.008.094.01.073.003.145.01.216.022.062.01.122.021.182.037.063.017.125.035.187.058.062.022.122.047.181.075.057.027.111.058.165.09.056.033.109.067.161.107.052.038.102.08.15.124.046.041.09.084.132.13.027.029.051.06.075.091l.052.063c.038.051.073.102.106.156.034.056.064.112.093.171.03.062.056.125.08.19.012.031.029.06.039.093L28 24c.103.335.479 1.871.411 2.191C28.411 31 23.715 36 18 36c-6.537 0-11.844-5.231-11.986-11.734l.014.01c.515.445 1.176.724 1.91.724h.124zM21.226 3.707c.445-.903 1.501-1.35 2.468-.998 1.038.377 1.573 1.525 1.195 2.563l-1.761 4.821-.001.003L20.96 4.2l.266-.493zM25.001 18l-2.388-6.537-2.07-5.688c-.054-.149-.128-.283-.211-.41-.497-.759-1.464-1.109-2.353-.785-.642.234-1.089.762-1.25 1.376-.099.379-.09.791.055 1.187L20.733 18h4.268z"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#B78B60" d="M26.362 18.513l-.372-.521-4.656-6.523 2.28-.006.514-1.366V4.2H21.96l-.628 1.165-3.602.591c-.613.525-.879 1.383-.586 2.187l1.721 4.727v2.882l-1.93 2.449c-.083.031-.62.313-.773.44l-.162.137-3.611-3.954c-.817.364-1.389 1.181-1.389 2.133v.96l-4 4.166.016 2.188L17 35s10.518-15.288 10.543-15.258c-.286-.504-.689-.926-1.181-1.229z"/><g fill="#D4AB88"><path d="M9.062 25c1.024 0 1.925-.526 2.45-1.322.123.183.271.346.431.497 1.185 1.115 3.034 1.044 4.167-.086.152-.152.303-.305.419-.488l-.003-.003C16.727 23.713 17 24 18 24h2.537c-.37.279-.708.623-1.024 1-1.228 1.467-2.013 3.606-2.013 6 0 .276.224.5.5.5s.5-.224.5-.5c0-2.548.956-4.775 2.377-6 .732-.631 1.584-1 2.498-1 .713.079.847-1 .125-1H18c-1.104 0-2-.896-2-2s.896-2 2-2h8c.858 0 1.66.596 1.913 1.415L29 24c.103.335.479 1.871.411 2.191C29.411 31 24.715 36 19 36c-6.537 0-11.844-5.231-11.986-11.734l.014.01c.515.445 1.176.724 1.91.724h.124zM18 18c-.703 0-1.066.202-1.066.202l1.931-5.331L20.731 18H18z"/><path d="M8.916 16h.168c1.059 0 1.916.858 1.916 1.917v4.166C11 23.142 10.143 24 9.084 24h-.168C7.857 24 7 23.142 7 22.083v-4.166C7 16.858 7.857 16 8.916 16zm6.918 2.96l-.056.062C15.304 19.551 15 20.233 15 21c0 .063.013.123.018.185.044.678.308 1.292.728 1.774-.071.129-.163.243-.259.353-.366.417-.89.688-1.487.688-1.104 0-2-.896-2-2v-6c0-.441.147-.845.389-1.176.364-.497.947-.824 1.611-.824 1.104 0 2 .896 2 2v2.778c-.061.055-.109.123-.166.182zm6.392-15.253c.445-.903 1.501-1.35 2.468-.998 1.038.377 1.573 1.525 1.195 2.563l-1.761 4.821-.001.003L21.96 4.2l.266-.493zM26.001 18l-2.388-6.537-2.07-5.688c-.054-.149-.128-.283-.211-.41-.497-.759-1.464-1.109-2.353-.785-.642.234-1.089.762-1.25 1.376-.099.379-.09.791.055 1.187L21.733 18h4.268z"/></g></svg>
\ No newline at end of file
diff --git a/public/emoji/1f91e-1f3fe.svg b/public/emoji/1f91e-1f3fe.svg
index c1f22530b8b5ee5ef4b24a560314c0a1e96b8ed7..28cbb78855f731728735963111de5f38da79b69d 100644
--- a/public/emoji/1f91e-1f3fe.svg
+++ b/public/emoji/1f91e-1f3fe.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#90603E" d="M25.362 18.513l-.372-.521-.161-.132-4.001.016-4.098-11.92c-.613.525-.879 1.383-.586 2.187l1.721 4.727-.005.145 1.719 4.891-3.422-.016-.223.311c-.083.031-.62.313-.773.44l-.161.137s-1.125.534-1.125 2.407c.044.678.392 1.534.719 1.774-.359.572-.996.916-1.594.916-1.104 0-1.906-.771-1.906-1.875l.295-7.176c-.817.364-1.389 1.181-1.389 2.133v.96l-.109.005v4.161C9.734 24 7.916 23.906 7.916 23.906 6.857 23.906 6 23.142 6 22.083V24c0 .095.015.185.028.276.515.445 1.177.818 1.91.818 0 0 1.609.094 2.575-1.266.123.183 1.003 1.281 2.487 1.281 1.688 0 2.527-1.405 2.526-1.406.201.115.474.375 1.474.375h2.297c-2.031 1.734-2.875 4.528-2.875 6.922 0 .276.302.562.578.562s.578-.286.578-.562c0-2.548.899-4.642 2.299-5.891 1.139-1.016 2.623-1.031 2.623-1.031.276 0 .578-.302.578-.578 0-.276-.302-.578-.578-.578H17c-1.104 0-1.906-.817-1.906-1.922s.802-1.906 1.906-1.906l8-.016c.766 0 1.518.633 1.543.664-.286-.504-.689-.926-1.181-1.229zM20.333 5.365L20.96 4.2h.135l2.033 5.604-.001.293-.514 1.366h-.072l-2.208-5.994z"/><path fill="#AF7E57" d="M17 18c-.703 0-1.066.202-1.066.202l1.931-5.331L19.731 18H17zm-9.084-2h.168C9.143 16 10 16.858 10 17.917v4.166C10 23.142 9.143 24 8.084 24h-.168C6.857 24 6 23.142 6 22.083v-4.166C6 16.858 6.857 16 7.916 16zm6.918 2.96l-.056.062C14.304 19.551 14 20.233 14 21c0 .063.013.123.018.185.044.678.308 1.292.728 1.774-.071.129-.163.243-.259.353-.366.417-.89.688-1.487.688-1.104 0-2-.896-2-2v-6c0-.441.147-.845.389-1.176.364-.497.947-.824 1.611-.824 1.104 0 2 .896 2 2v2.778c-.061.055-.109.123-.166.182z"/><path fill="#AF7E57" d="M8.062 25c1.024 0 1.925-.526 2.45-1.322.123.183.271.346.431.497.049.046.102.085.155.128.119.099.243.189.377.269.066.039.132.074.201.108.14.069.285.125.435.172.067.021.131.046.2.062.223.052.452.086.689.086.236 0 .461-.036.681-.089.076-.018.148-.042.223-.066.137-.044.269-.099.396-.161.082-.04.163-.076.24-.124.164-.1.318-.213.46-.341.043-.039.071-.09.112-.13.152-.152.303-.305.419-.488l-.003-.003C15.727 23.713 16 24 17 24h2.537c-.37.279-.708.623-1.024 1-1.228 1.467-2.013 3.606-2.013 6 0 .276.224.5.5.5s.5-.224.5-.5c0-2.548.956-4.775 2.377-6 .732-.631 1.584-1 2.498-1h.125c.276 0 .5-.224.5-.5s-.224-.5-.5-.5H17c-1.104 0-2-.896-2-2s.896-2 2-2h8c.032 0 .062.008.094.01.073.003.145.01.216.022.062.01.122.021.182.037.063.017.125.035.187.058.062.022.122.047.181.075.057.027.111.058.165.09.056.033.109.067.161.107.052.038.102.08.15.124.046.041.09.084.132.13.027.029.051.06.075.091l.052.063c.038.051.073.102.106.156.034.056.064.112.093.171.03.062.056.125.08.19.012.031.029.06.039.093L28 24c.103.335.479 1.871.411 2.191C28.411 31 23.715 36 18 36c-6.537 0-11.844-5.231-11.986-11.734l.014.01c.515.445 1.176.724 1.91.724h.124zM21.226 3.707c.445-.903 1.501-1.35 2.468-.998 1.038.377 1.573 1.525 1.195 2.563l-1.761 4.821-.001.003L20.96 4.2l.266-.493zM25.001 18l-2.388-6.537-2.07-5.688c-.054-.149-.128-.283-.211-.41-.497-.759-1.464-1.109-2.353-.785-.642.234-1.089.762-1.25 1.376-.099.379-.09.791.055 1.187L20.733 18h4.268z"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#90603E" d="M26.362 18.513l-.372-.521-4.656-6.523 2.28-.006.514-1.366V4.2H21.96l-.628 1.165-3.602.591c-.613.525-.879 1.383-.586 2.187l1.721 4.727v2.882l-1.93 2.449c-.083.031-.62.313-.773.44l-.162.137-3.611-3.954c-.817.364-1.389 1.181-1.389 2.133v.96l-4 4.166.016 2.188L17 35s10.518-15.288 10.543-15.258c-.286-.504-.689-.926-1.181-1.229z"/><g fill="#AF7E57"><path d="M9.062 25c1.024 0 1.925-.526 2.45-1.322.123.183.271.346.431.497 1.185 1.115 3.034 1.044 4.167-.086.152-.152.303-.305.419-.488l-.003-.003C16.727 23.713 17 24 18 24h2.537c-.37.279-.708.623-1.024 1-1.228 1.467-2.013 3.606-2.013 6 0 .276.224.5.5.5s.5-.224.5-.5c0-2.548.956-4.775 2.377-6 .732-.631 1.584-1 2.498-1 .713.079.847-1 .125-1H18c-1.104 0-2-.896-2-2s.896-2 2-2h8c.858 0 1.66.596 1.913 1.415L29 24c.103.335.479 1.871.411 2.191C29.411 31 24.715 36 19 36c-6.537 0-11.844-5.231-11.986-11.734l.014.01c.515.445 1.176.724 1.91.724h.124zM18 18c-.703 0-1.066.202-1.066.202l1.931-5.331L20.731 18H18z"/><path d="M8.916 16h.168c1.059 0 1.916.858 1.916 1.917v4.166C11 23.142 10.143 24 9.084 24h-.168C7.857 24 7 23.142 7 22.083v-4.166C7 16.858 7.857 16 8.916 16zm6.918 2.96l-.056.062C15.304 19.551 15 20.233 15 21c0 .063.013.123.018.185.044.678.308 1.292.728 1.774-.071.129-.163.243-.259.353-.366.417-.89.688-1.487.688-1.104 0-2-.896-2-2v-6c0-.441.147-.845.389-1.176.364-.497.947-.824 1.611-.824 1.104 0 2 .896 2 2v2.778c-.061.055-.109.123-.166.182zm6.392-15.253c.445-.903 1.501-1.35 2.468-.998 1.038.377 1.573 1.525 1.195 2.563l-1.761 4.821-.001.003L21.96 4.2l.266-.493zM26.001 18l-2.388-6.537-2.07-5.688c-.054-.149-.128-.283-.211-.41-.497-.759-1.464-1.109-2.353-.785-.642.234-1.089.762-1.25 1.376-.099.379-.09.791.055 1.187L21.733 18h4.268z"/></g></svg>
\ No newline at end of file
diff --git a/public/emoji/1f91e-1f3ff.svg b/public/emoji/1f91e-1f3ff.svg
index 82a18b3c99ccc9748fac8eb0ac9ce02786b960ea..86e91b2a946c72ef03755283efa6285fdae8ac14 100644
--- a/public/emoji/1f91e-1f3ff.svg
+++ b/public/emoji/1f91e-1f3ff.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#583529" d="M25.362 18.513l-.372-.521-.161-.132-4.001.016-4.098-11.92c-.613.525-.879 1.383-.586 2.187l1.721 4.727-.005.145 1.719 4.891-3.422-.016-.223.311c-.083.031-.62.313-.773.44l-.161.137s-1.125.534-1.125 2.407c.044.678.392 1.534.719 1.774-.359.572-.996.916-1.594.916-1.104 0-1.906-.771-1.906-1.875l.295-7.176c-.817.364-1.389 1.181-1.389 2.133v.96l-.109.005v4.161C9.734 24 7.916 23.906 7.916 23.906 6.857 23.906 6 23.142 6 22.083V24c0 .095.015.185.028.276.515.445 1.177.818 1.91.818 0 0 1.609.094 2.575-1.266.123.183 1.003 1.281 2.487 1.281 1.688 0 2.527-1.405 2.526-1.406.201.115.474.375 1.474.375h2.297c-2.031 1.734-2.875 4.528-2.875 6.922 0 .276.302.562.578.562s.578-.286.578-.562c0-2.548.899-4.642 2.299-5.891 1.139-1.016 2.623-1.031 2.623-1.031.276 0 .578-.302.578-.578 0-.276-.302-.578-.578-.578H17c-1.104 0-1.906-.817-1.906-1.922s.802-1.906 1.906-1.906l8-.016c.766 0 1.518.633 1.543.664-.286-.504-.689-.926-1.181-1.229zM20.333 5.365L20.96 4.2h.135l2.033 5.604-.001.293-.514 1.366h-.072l-2.208-5.994z"/><path fill="#7C533E" d="M17 18c-.703 0-1.066.202-1.066.202l1.931-5.331L19.731 18H17zm-9.084-2h.168C9.143 16 10 16.858 10 17.917v4.166C10 23.142 9.143 24 8.084 24h-.168C6.857 24 6 23.142 6 22.083v-4.166C6 16.858 6.857 16 7.916 16zm6.918 2.96l-.056.062C14.304 19.551 14 20.233 14 21c0 .063.013.123.018.185.044.678.308 1.292.728 1.774-.071.129-.163.243-.259.353-.366.417-.89.688-1.487.688-1.104 0-2-.896-2-2v-6c0-.441.147-.845.389-1.176.364-.497.947-.824 1.611-.824 1.104 0 2 .896 2 2v2.778c-.061.055-.109.123-.166.182z"/><path fill="#7C533E" d="M8.062 25c1.024 0 1.925-.526 2.45-1.322.123.183.271.346.431.497.049.046.102.085.155.128.119.099.243.189.377.269.066.039.132.074.201.108.14.069.285.125.435.172.067.021.131.046.2.062.223.052.452.086.689.086.236 0 .461-.036.681-.089.076-.018.148-.042.223-.066.137-.044.269-.099.396-.161.082-.04.163-.076.24-.124.164-.1.318-.213.46-.341.043-.039.071-.09.112-.13.152-.152.303-.305.419-.488l-.003-.003C15.727 23.713 16 24 17 24h2.537c-.37.279-.708.623-1.024 1-1.228 1.467-2.013 3.606-2.013 6 0 .276.224.5.5.5s.5-.224.5-.5c0-2.548.956-4.775 2.377-6 .732-.631 1.584-1 2.498-1h.125c.276 0 .5-.224.5-.5s-.224-.5-.5-.5H17c-1.104 0-2-.896-2-2s.896-2 2-2h8c.032 0 .062.008.094.01.073.003.145.01.216.022.062.01.122.021.182.037.063.017.125.035.187.058.062.022.122.047.181.075.057.027.111.058.165.09.056.033.109.067.161.107.052.038.102.08.15.124.046.041.09.084.132.13.027.029.051.06.075.091l.052.063c.038.051.073.102.106.156.034.056.064.112.093.171.03.062.056.125.08.19.012.031.029.06.039.093L28 24c.103.335.479 1.871.411 2.191C28.411 31 23.715 36 18 36c-6.537 0-11.844-5.231-11.986-11.734l.014.01c.515.445 1.176.724 1.91.724h.124zM21.226 3.707c.445-.903 1.501-1.35 2.468-.998 1.038.377 1.573 1.525 1.195 2.563l-1.761 4.821-.001.003L20.96 4.2l.266-.493zM25.001 18l-2.388-6.537-2.07-5.688c-.054-.149-.128-.283-.211-.41-.497-.759-1.464-1.109-2.353-.785-.642.234-1.089.762-1.25 1.376-.099.379-.09.791.055 1.187L20.733 18h4.268z"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#583529" d="M26.362 18.513l-.372-.521-4.656-6.523 2.28-.006.514-1.366V4.2H21.96l-.628 1.165-3.602.591c-.613.525-.879 1.383-.586 2.187l1.721 4.727v2.882l-1.93 2.449c-.083.031-.62.313-.773.44l-.162.137-3.611-3.954c-.817.364-1.389 1.181-1.389 2.133v.96l-4 4.166.016 2.188L17 35s10.518-15.288 10.543-15.258c-.286-.504-.689-.926-1.181-1.229z"/><g fill="#7C533E"><path d="M9.062 25c1.024 0 1.925-.526 2.45-1.322.123.183.271.346.431.497 1.185 1.115 3.034 1.044 4.167-.086.152-.152.303-.305.419-.488l-.003-.003C16.727 23.713 17 24 18 24h2.537c-.37.279-.708.623-1.024 1-1.228 1.467-2.013 3.606-2.013 6 0 .276.224.5.5.5s.5-.224.5-.5c0-2.548.956-4.775 2.377-6 .732-.631 1.584-1 2.498-1 .713.079.847-1 .125-1H18c-1.104 0-2-.896-2-2s.896-2 2-2h8c.858 0 1.66.596 1.913 1.415L29 24c.103.335.479 1.871.411 2.191C29.411 31 24.715 36 19 36c-6.537 0-11.844-5.231-11.986-11.734l.014.01c.515.445 1.176.724 1.91.724h.124zM18 18c-.703 0-1.066.202-1.066.202l1.931-5.331L20.731 18H18z"/><path d="M8.916 16h.168c1.059 0 1.916.858 1.916 1.917v4.166C11 23.142 10.143 24 9.084 24h-.168C7.857 24 7 23.142 7 22.083v-4.166C7 16.858 7.857 16 8.916 16zm6.918 2.96l-.056.062C15.304 19.551 15 20.233 15 21c0 .063.013.123.018.185.044.678.308 1.292.728 1.774-.071.129-.163.243-.259.353-.366.417-.89.688-1.487.688-1.104 0-2-.896-2-2v-6c0-.441.147-.845.389-1.176.364-.497.947-.824 1.611-.824 1.104 0 2 .896 2 2v2.778c-.061.055-.109.123-.166.182zm6.392-15.253c.445-.903 1.501-1.35 2.468-.998 1.038.377 1.573 1.525 1.195 2.563l-1.761 4.821-.001.003L21.96 4.2l.266-.493zM26.001 18l-2.388-6.537-2.07-5.688c-.054-.149-.128-.283-.211-.41-.497-.759-1.464-1.109-2.353-.785-.642.234-1.089.762-1.25 1.376-.099.379-.09.791.055 1.187L21.733 18h4.268z"/></g></svg>
\ No newline at end of file
diff --git a/public/emoji/1f91e.svg b/public/emoji/1f91e.svg
index 6bcd3a2e7a120c76104fd7f15396fbfc8aa781bb..f85ba652555370d1dec434d96f3dd404a9bd1589 100644
--- a/public/emoji/1f91e.svg
+++ b/public/emoji/1f91e.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#EF9645" d="M25.362 18.513l-.372-.521-.161-.132-4.001.016-4.098-11.92c-.613.525-.879 1.383-.586 2.187l1.721 4.727-.005.145 1.719 4.891-3.422-.016-.223.311c-.083.031-.62.313-.773.44l-.161.137s-1.125.534-1.125 2.407c.044.678.392 1.534.719 1.774-.359.572-.996.916-1.594.916-1.104 0-1.906-.771-1.906-1.875l.295-7.176c-.817.364-1.389 1.181-1.389 2.133v.96l-.109.005v4.161C9.734 24 7.916 23.906 7.916 23.906 6.857 23.906 6 23.142 6 22.083V24c0 .095.015.185.028.276.515.445 1.177.818 1.91.818 0 0 1.609.094 2.575-1.266.123.183 1.003 1.281 2.487 1.281 1.688 0 2.527-1.405 2.526-1.406.201.115.474.375 1.474.375h2.297c-2.031 1.734-2.875 4.528-2.875 6.922 0 .276.302.562.578.562s.578-.286.578-.562c0-2.548.899-4.642 2.299-5.891 1.139-1.016 2.623-1.031 2.623-1.031.276 0 .578-.302.578-.578 0-.276-.302-.578-.578-.578H17c-1.104 0-1.906-.817-1.906-1.922s.802-1.906 1.906-1.906l8-.016c.766 0 1.518.633 1.543.664-.286-.504-.689-.926-1.181-1.229zM20.333 5.365L20.96 4.2h.135l2.033 5.604-.001.293-.514 1.366h-.072l-2.208-5.994z"/><path fill="#FFDC5D" d="M17 18c-.703 0-1.066.202-1.066.202l1.931-5.331L19.731 18H17zm-9.084-2h.168C9.143 16 10 16.858 10 17.917v4.166C10 23.142 9.143 24 8.084 24h-.168C6.857 24 6 23.142 6 22.083v-4.166C6 16.858 6.857 16 7.916 16zm6.918 2.96l-.056.062C14.304 19.551 14 20.233 14 21c0 .063.013.123.018.185.044.678.308 1.292.728 1.774-.071.129-.163.243-.259.353-.366.417-.89.688-1.487.688-1.104 0-2-.896-2-2v-6c0-.441.147-.845.389-1.176.364-.497.947-.824 1.611-.824 1.104 0 2 .896 2 2v2.778c-.061.055-.109.123-.166.182z"/><path fill="#FFDC5D" d="M8.062 25c1.024 0 1.925-.526 2.45-1.322.123.183.271.346.431.497.049.046.102.085.155.128.119.099.243.189.377.269.066.039.132.074.201.108.14.069.285.125.435.172.067.021.131.046.2.062.223.052.452.086.689.086.236 0 .461-.036.681-.089.076-.018.148-.042.223-.066.137-.044.269-.099.396-.161.082-.04.163-.076.24-.124.164-.1.318-.213.46-.341.043-.039.071-.09.112-.13.152-.152.303-.305.419-.488l-.003-.003C15.727 23.713 16 24 17 24h2.537c-.37.279-.708.623-1.024 1-1.228 1.467-2.013 3.606-2.013 6 0 .276.224.5.5.5s.5-.224.5-.5c0-2.548.956-4.775 2.377-6 .732-.631 1.584-1 2.498-1h.125c.276 0 .5-.224.5-.5s-.224-.5-.5-.5H17c-1.104 0-2-.896-2-2s.896-2 2-2h8c.032 0 .062.008.094.01.073.003.145.01.216.022.062.01.122.021.182.037.063.017.125.035.187.058.062.022.122.047.181.075.057.027.111.058.165.09.056.033.109.067.161.107.052.038.102.08.15.124.046.041.09.084.132.13.027.029.051.06.075.091l.052.063c.038.051.073.102.106.156.034.056.064.112.093.171.03.062.056.125.08.19.012.031.029.06.039.093L28 24c.103.335.479 1.871.411 2.191C28.411 31 23.715 36 18 36c-6.537 0-11.844-5.231-11.986-11.734l.014.01c.515.445 1.176.724 1.91.724h.124zM21.226 3.707c.445-.903 1.501-1.35 2.468-.998 1.038.377 1.573 1.525 1.195 2.563l-1.761 4.821-.001.003L20.96 4.2l.266-.493zM25.001 18l-2.388-6.537-2.07-5.688c-.054-.149-.128-.283-.211-.41-.497-.759-1.464-1.109-2.353-.785-.642.234-1.089.762-1.25 1.376-.099.379-.09.791.055 1.187L20.733 18h4.268z"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#EF9645" d="M26.362 18.513l-.372-.521-4.656-6.523 2.28-.006.514-1.366V4.2H21.96l-.628 1.165-3.602.591c-.613.525-.879 1.383-.586 2.187l1.721 4.727v2.882l-1.93 2.449c-.083.031-.62.313-.773.44l-.162.137-3.611-3.954c-.817.364-1.389 1.181-1.389 2.133v.96l-4 4.166.016 2.188L17 35s10.518-15.288 10.543-15.258c-.286-.504-.689-.926-1.181-1.229z"/><g fill="#FFDC5D"><path d="M9.062 25c1.024 0 1.925-.526 2.45-1.322.123.183.271.346.431.497 1.185 1.115 3.034 1.044 4.167-.086.152-.152.303-.305.419-.488l-.003-.003C16.727 23.713 17 24 18 24h2.537c-.37.279-.708.623-1.024 1-1.228 1.467-2.013 3.606-2.013 6 0 .276.224.5.5.5s.5-.224.5-.5c0-2.548.956-4.775 2.377-6 .732-.631 1.584-1 2.498-1 .713.079.847-1 .125-1H18c-1.104 0-2-.896-2-2s.896-2 2-2h8c.858 0 1.66.596 1.913 1.415L29 24c.103.335.479 1.871.411 2.191C29.411 31 24.715 36 19 36c-6.537 0-11.844-5.231-11.986-11.734l.014.01c.515.445 1.176.724 1.91.724h.124zM18 18c-.703 0-1.066.202-1.066.202l1.931-5.331L20.731 18H18z"/><path d="M8.916 16h.168c1.059 0 1.916.858 1.916 1.917v4.166C11 23.142 10.143 24 9.084 24h-.168C7.857 24 7 23.142 7 22.083v-4.166C7 16.858 7.857 16 8.916 16zm6.918 2.96l-.056.062C15.304 19.551 15 20.233 15 21c0 .063.013.123.018.185.044.678.308 1.292.728 1.774-.071.129-.163.243-.259.353-.366.417-.89.688-1.487.688-1.104 0-2-.896-2-2v-6c0-.441.147-.845.389-1.176.364-.497.947-.824 1.611-.824 1.104 0 2 .896 2 2v2.778c-.061.055-.109.123-.166.182zm6.392-15.253c.445-.903 1.501-1.35 2.468-.998 1.038.377 1.573 1.525 1.195 2.563l-1.761 4.821-.001.003L21.96 4.2l.266-.493zM26.001 18l-2.388-6.537-2.07-5.688c-.054-.149-.128-.283-.211-.41-.497-.759-1.464-1.109-2.353-.785-.642.234-1.089.762-1.25 1.376-.099.379-.09.791.055 1.187L21.733 18h4.268z"/></g></svg>
\ No newline at end of file
diff --git a/public/emoji/1f934-1f3fb.svg b/public/emoji/1f934-1f3fb.svg
index f8768989f6970a911274b4965065ddbe2fe2a7f9..eaa8fb2734ecd20e04cc8a1649a6e505d45d23f1 100644
--- a/public/emoji/1f934-1f3fb.svg
+++ b/public/emoji/1f934-1f3fb.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#F7DECE" d="M32 20c0-2.209-1.119-4-2.5-4-.012 0-.021.005-.033.005C27.955 9.704 23.394 5.125 18 5.125s-9.956 4.58-11.467 10.88C6.521 16.004 6.511 16 6.5 16 5.119 16 4 17.791 4 20c0 2.107 1.021 3.815 2.314 3.97C7.537 30.619 12.299 35 18 35c5.7 0 10.463-4.381 11.685-11.03C30.979 23.815 32 22.107 32 20z"/><path d="M13 21c-.552 0-1-.447-1-1v-2c0-.552.448-1 1-1s1 .448 1 1v2c0 .553-.448 1-1 1zm10 0c-.553 0-1-.447-1-1v-2c0-.552.447-1 1-1s1 .448 1 1v2c0 .553-.447 1-1 1z" fill="#662113"/><path d="M18 31c-4.201 0-5.491-1.077-5.707-1.293-.391-.391-.391-1.023 0-1.414.378-.379.984-.39 1.376-.036.08.058 1.1.743 4.331.743 3.355 0 4.326-.739 4.336-.747.39-.389 1.001-.37 1.393.021.391.391.369 1.043-.021 1.434C23.491 29.923 22.201 31 18 31zm1-5h-2c-.552 0-1-.447-1-1s.448-1 1-1h2c.553 0 1 .447 1 1s-.447 1-1 1z" fill="#C1694F"/><path fill="#292F33" d="M18 1c8 0 13 6 13 11s-1 7-2 5l-2-4s-6 0-8-2c0 0 3 6-3 0 0 0 1 4-5-1 0 0-3 2-4 7-.277 1.387-2 0-2-5S9 1 18 1z"/><g fill="#99AAB5"><path d="M28.55 8.4L25.875 3l-2.429 4.189L17.969.5l-5.493 6.689L9.992 3 6.946 8.4 5.5 6.25V9.5h25V6.25z"/><path d="M30.5 10h-25c-.276 0-.5-.224-.5-.5V6.25c0-.22.144-.414.354-.478.21-.067.438.017.561.199l.994 1.478 2.648-4.694c.088-.156.251-.253.43-.255.195.019.344.092.436.245l2.12 3.576L17.584.183c.093-.116.235-.183.385-.183.149 0 .292.067.386.183l5.021 6.131 2.066-3.565c.093-.16.254-.262.449-.249.184.006.35.112.432.277l2.349 4.743 1.458-1.606c.139-.153.357-.206.55-.13.193.074.32.259.32.466V9.5c0 .276-.224.5-.5.5zM6 9h24V7.545l-1.08 1.19c-.11.123-.27.186-.439.159-.163-.023-.306-.125-.379-.273l-2.261-4.565-1.962 3.384c-.082.142-.229.234-.393.248-.165.012-.322-.055-.426-.182l-5.091-6.218-5.106 6.218c-.103.126-.264.193-.424.181-.163-.012-.309-.104-.392-.244l-2.042-3.446-2.623 4.649c-.086.15-.243.247-.416.253-.175.013-.337-.077-.435-.22L6 7.889V9z"/></g><path fill="#E1E8ED" d="M18 3l-2 2v2l2 2 2-2V5zm-7 3l-1 1.415L9 6l1-1.414zm16 0l-1 1.415L25 6l1-1.414z"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#F7DECE" d="M32 20c0-2.209-1.119-4-2.5-4-.012 0-.021.005-.033.005C27.955 9.704 23.394 5.125 18 5.125s-9.956 4.58-11.467 10.88C6.521 16.004 6.511 16 6.5 16 5.119 16 4 17.791 4 20c0 2.107 1.021 3.815 2.314 3.97C7.537 30.619 12.299 35 18 35c5.7 0 10.463-4.381 11.685-11.03C30.979 23.815 32 22.107 32 20z"/><path d="M13 21c-.552 0-1-.447-1-1v-2c0-.552.448-1 1-1s1 .448 1 1v2c0 .553-.448 1-1 1zm10 0c-.553 0-1-.447-1-1v-2c0-.552.447-1 1-1s1 .448 1 1v2c0 .553-.447 1-1 1z" fill="#662113"/><path fill="#C1694F" d="M18 31c-4.201 0-5.491-1.077-5.707-1.293-.391-.391-.391-1.023 0-1.414.378-.379.984-.39 1.376-.036.08.058 1.1.743 4.331.743 3.355 0 4.326-.739 4.336-.747.39-.389 1.001-.37 1.393.021.391.391.369 1.043-.021 1.434C23.491 29.923 22.201 31 18 31zm1-5h-2c-.552 0-1-.447-1-1s.448-1 1-1h2c.553 0 1 .447 1 1s-.447 1-1 1z"/><path fill="#292F33" d="M18 1c8 0 13 6 13 11s-1 7-2 5l-2-4s-6 0-8-2c0 0 3 6-3 0 0 0 1 4-5-1 0 0-3 2-4 7-.277 1.387-2 0-2-5S9 1 18 1z"/><path fill="#99AAB5" d="M30.68 5.784c-.192-.075-.411-.022-.55.13L28.672 7.52l-2.349-4.743c-.082-.165-.248-.271-.432-.277-.195-.013-.356.089-.449.249l-2.066 3.565L18.355.183C18.261.067 18.119 0 17.969 0c-.149 0-.292.067-.386.183l-5.041 6.138-2.12-3.576c-.091-.153-.24-.227-.436-.245-.179.002-.342.099-.43.254L6.909 7.449l-.994-1.478c-.123-.182-.351-.266-.561-.199-.21.064-.354.258-.354.478V9.5c0 .276.224.5.5.5h25c.276 0 .5-.224.5-.5V6.25c0-.207-.127-.392-.32-.466z"/><path fill="#E1E8ED" d="M18 3l-2 2v2l2 2 2-2V5zm-7 3l-1 1.415L9 6l1-1.414zm16 0l-1 1.415L25 6l1-1.414z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f934-1f3fc.svg b/public/emoji/1f934-1f3fc.svg
index afd0d50361bc021bd90a0b7813dc93d602bbdfe8..5feff0ac7ceeb8d37c148adddcc900fcb70d60f6 100644
--- a/public/emoji/1f934-1f3fc.svg
+++ b/public/emoji/1f934-1f3fc.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#F3D2A2" d="M32 20c0-2.209-1.119-4-2.5-4-.012 0-.021.005-.033.005C27.955 9.704 23.394 5.125 18 5.125s-9.956 4.58-11.467 10.88C6.521 16.004 6.511 16 6.5 16 5.119 16 4 17.791 4 20c0 2.107 1.021 3.815 2.314 3.97C7.537 30.619 12.299 35 18 35c5.7 0 10.463-4.381 11.685-11.03C30.979 23.815 32 22.107 32 20z"/><path d="M13 21c-.552 0-1-.447-1-1v-2c0-.552.448-1 1-1s1 .448 1 1v2c0 .553-.448 1-1 1zm10 0c-.553 0-1-.447-1-1v-2c0-.552.447-1 1-1s1 .448 1 1v2c0 .553-.447 1-1 1z" fill="#662113"/><path fill="#C1694F" d="M18 31c-4.201 0-5.491-1.077-5.707-1.293-.391-.391-.391-1.023 0-1.414.378-.379.984-.39 1.376-.036.08.058 1.1.743 4.331.743 3.355 0 4.326-.739 4.336-.747.39-.389 1.001-.37 1.393.021.391.391.369 1.043-.021 1.434C23.491 29.923 22.201 31 18 31zm1-5h-2c-.552 0-1-.447-1-1s.448-1 1-1h2c.553 0 1 .447 1 1s-.447 1-1 1z"/><path fill="#FFE51E" d="M18 1c8 0 13 6 13 11s-1 7-2 5l-2-4s-6 0-8-2c0 0 3 6-3 0 0 0 1 4-5-1 0 0-3 2-4 7-.277 1.387-2 0-2-5S9 1 18 1z"/><g fill="#99AAB5"><path d="M28.55 8.4L25.875 3l-2.429 4.189L17.969.5l-5.493 6.689L9.992 3 6.946 8.4 5.5 6.25V9.5h25V6.25z"/><path d="M30.5 10h-25c-.276 0-.5-.224-.5-.5V6.25c0-.22.144-.414.354-.478.21-.067.438.017.561.199l.994 1.478 2.648-4.694c.088-.156.251-.253.43-.255.195.019.344.092.436.245l2.12 3.576L17.584.183c.093-.116.235-.183.385-.183.149 0 .292.067.386.183l5.021 6.131 2.066-3.565c.093-.16.254-.262.449-.249.184.006.35.112.432.277l2.349 4.743 1.458-1.606c.139-.153.357-.206.55-.13.193.074.32.259.32.466V9.5c0 .276-.224.5-.5.5zM6 9h24V7.545l-1.08 1.19c-.11.123-.27.186-.439.159-.163-.023-.306-.125-.379-.273l-2.261-4.565-1.962 3.384c-.082.142-.229.234-.393.248-.165.012-.322-.055-.426-.182l-5.091-6.218-5.106 6.218c-.103.126-.264.193-.424.181-.163-.012-.309-.104-.392-.244l-2.042-3.446-2.623 4.649c-.086.15-.243.247-.416.253-.175.013-.337-.077-.435-.22L6 7.889V9z"/></g><path fill="#E1E8ED" d="M18 3l-2 2v2l2 2 2-2V5zm-7 3l-1 1.415L9 6l1-1.414zm16 0l-1 1.415L25 6l1-1.414z"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#F3D2A2" d="M32 20c0-2.209-1.119-4-2.5-4-.012 0-.021.005-.033.005C27.955 9.704 23.394 5.125 18 5.125s-9.956 4.58-11.467 10.88C6.521 16.004 6.511 16 6.5 16 5.119 16 4 17.791 4 20c0 2.107 1.021 3.815 2.314 3.97C7.537 30.619 12.299 35 18 35c5.7 0 10.463-4.381 11.685-11.03C30.979 23.815 32 22.107 32 20z"/><path d="M13 21c-.552 0-1-.447-1-1v-2c0-.552.448-1 1-1s1 .448 1 1v2c0 .553-.448 1-1 1zm10 0c-.553 0-1-.447-1-1v-2c0-.552.447-1 1-1s1 .448 1 1v2c0 .553-.447 1-1 1z" fill="#662113"/><path fill="#C1694F" d="M18 31c-4.201 0-5.491-1.077-5.707-1.293-.391-.391-.391-1.023 0-1.414.378-.379.984-.39 1.376-.036.08.058 1.1.743 4.331.743 3.355 0 4.326-.739 4.336-.747.39-.389 1.001-.37 1.393.021.391.391.369 1.043-.021 1.434C23.491 29.923 22.201 31 18 31zm1-5h-2c-.552 0-1-.447-1-1s.448-1 1-1h2c.553 0 1 .447 1 1s-.447 1-1 1z"/><path fill="#FFE51E" d="M18 1c8 0 13 6 13 11s-1 7-2 5l-2-4s-6 0-8-2c0 0 3 6-3 0 0 0 1 4-5-1 0 0-3 2-4 7-.277 1.387-2 0-2-5S9 1 18 1z"/><path fill="#99AAB5" d="M30.68 5.784c-.192-.075-.411-.022-.55.13L28.672 7.52l-2.349-4.743c-.082-.165-.248-.271-.432-.277-.195-.013-.356.089-.449.249l-2.066 3.565L18.355.183C18.261.067 18.119 0 17.969 0c-.149 0-.292.067-.386.183l-5.041 6.138-2.12-3.576c-.091-.153-.24-.227-.436-.245-.179.002-.342.099-.43.254L6.909 7.449l-.994-1.478c-.123-.182-.351-.266-.561-.199-.21.064-.354.258-.354.478V9.5c0 .276.224.5.5.5h25c.276 0 .5-.224.5-.5V6.25c0-.207-.127-.392-.32-.466z"/><path fill="#E1E8ED" d="M18 3l-2 2v2l2 2 2-2V5zm-7 3l-1 1.415L9 6l1-1.414zm16 0l-1 1.415L25 6l1-1.414z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f934-1f3fd.svg b/public/emoji/1f934-1f3fd.svg
index cc0c79762cbbbdd6faff804b30dfc74c9428ff98..04db0c91e79be16a56783672e464baae34b434f6 100644
--- a/public/emoji/1f934-1f3fd.svg
+++ b/public/emoji/1f934-1f3fd.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#D5AB88" d="M32 20c0-2.209-1.119-4-2.5-4-.012 0-.021.005-.033.005C27.955 9.704 23.394 5.125 18 5.125s-9.956 4.58-11.467 10.88C6.521 16.004 6.511 16 6.5 16 5.119 16 4 17.791 4 20c0 2.107 1.021 3.815 2.314 3.97C7.537 30.619 12.299 35 18 35c5.7 0 10.463-4.381 11.685-11.03C30.979 23.815 32 22.107 32 20z"/><path d="M13 21c-.552 0-1-.447-1-1v-2c0-.552.448-1 1-1s1 .448 1 1v2c0 .553-.448 1-1 1zm10 0c-.553 0-1-.447-1-1v-2c0-.552.447-1 1-1s1 .448 1 1v2c0 .553-.447 1-1 1z" fill="#662113"/><path fill="#C1694F" d="M18 31c-4.201 0-5.491-1.077-5.707-1.293-.391-.391-.391-1.023 0-1.414.378-.379.984-.39 1.376-.036.08.058 1.1.743 4.331.743 3.355 0 4.326-.739 4.336-.747.39-.389 1.001-.37 1.393.021.391.391.369 1.043-.021 1.434C23.491 29.923 22.201 31 18 31zm1-5h-2c-.552 0-1-.447-1-1s.448-1 1-1h2c.553 0 1 .447 1 1s-.447 1-1 1z"/><path fill="#963B22" d="M18 1c8 0 13 6 13 11s-1 7-2 5l-2-4s-6 0-8-2c0 0 3 6-3 0 0 0 1 4-5-1 0 0-3 2-4 7-.277 1.387-2 0-2-5S9 1 18 1z"/><g fill="#99AAB5"><path d="M28.55 8.4L25.875 3l-2.429 4.189L17.969.5l-5.493 6.689L9.992 3 6.946 8.4 5.5 6.25V9.5h25V6.25z"/><path d="M30.5 10h-25c-.276 0-.5-.224-.5-.5V6.25c0-.22.144-.414.354-.478.21-.067.438.017.561.199l.994 1.478 2.648-4.694c.088-.156.251-.253.43-.255.195.019.344.092.436.245l2.12 3.576L17.584.183c.093-.116.235-.183.385-.183.149 0 .292.067.386.183l5.021 6.131 2.066-3.565c.093-.16.254-.262.449-.249.184.006.35.112.432.277l2.349 4.743 1.458-1.606c.139-.153.357-.206.55-.13.193.074.32.259.32.466V9.5c0 .276-.224.5-.5.5zM6 9h24V7.545l-1.08 1.19c-.11.123-.27.186-.439.159-.163-.023-.306-.125-.379-.273l-2.261-4.565-1.962 3.384c-.082.142-.229.234-.393.248-.165.012-.322-.055-.426-.182l-5.091-6.218-5.106 6.218c-.103.126-.264.193-.424.181-.163-.012-.309-.104-.392-.244l-2.042-3.446-2.623 4.649c-.086.15-.243.247-.416.253-.175.013-.337-.077-.435-.22L6 7.889V9z"/></g><path fill="#E1E8ED" d="M18 3l-2 2v2l2 2 2-2V5zm-7 3l-1 1.415L9 6l1-1.414zm16 0l-1 1.415L25 6l1-1.414z"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#D5AB88" d="M32 20c0-2.209-1.119-4-2.5-4-.012 0-.021.005-.033.005C27.955 9.704 23.394 5.125 18 5.125s-9.956 4.58-11.467 10.88C6.521 16.004 6.511 16 6.5 16 5.119 16 4 17.791 4 20c0 2.107 1.021 3.815 2.314 3.97C7.537 30.619 12.299 35 18 35c5.7 0 10.463-4.381 11.685-11.03C30.979 23.815 32 22.107 32 20z"/><path d="M13 21c-.552 0-1-.447-1-1v-2c0-.552.448-1 1-1s1 .448 1 1v2c0 .553-.448 1-1 1zm10 0c-.553 0-1-.447-1-1v-2c0-.552.447-1 1-1s1 .448 1 1v2c0 .553-.447 1-1 1z" fill="#662113"/><path fill="#C1694F" d="M18 31c-4.201 0-5.491-1.077-5.707-1.293-.391-.391-.391-1.023 0-1.414.378-.379.984-.39 1.376-.036.08.058 1.1.743 4.331.743 3.355 0 4.326-.739 4.336-.747.39-.389 1.001-.37 1.393.021.391.391.369 1.043-.021 1.434C23.491 29.923 22.201 31 18 31zm1-5h-2c-.552 0-1-.447-1-1s.448-1 1-1h2c.553 0 1 .447 1 1s-.447 1-1 1z"/><path fill="#963B22" d="M18 1c8 0 13 6 13 11s-1 7-2 5l-2-4s-6 0-8-2c0 0 3 6-3 0 0 0 1 4-5-1 0 0-3 2-4 7-.277 1.387-2 0-2-5S9 1 18 1z"/><path fill="#99AAB5" d="M30.68 5.784c-.192-.075-.411-.022-.55.13L28.672 7.52l-2.349-4.743c-.082-.165-.248-.271-.432-.277-.195-.013-.356.089-.449.249l-2.066 3.565L18.355.183C18.261.067 18.119 0 17.969 0c-.149 0-.292.067-.386.183l-5.041 6.138-2.12-3.576c-.091-.153-.24-.227-.436-.245-.179.002-.342.099-.43.254L6.909 7.449l-.994-1.478c-.123-.182-.351-.266-.561-.199-.21.064-.354.258-.354.478V9.5c0 .276.224.5.5.5h25c.276 0 .5-.224.5-.5V6.25c0-.207-.127-.392-.32-.466z"/><path fill="#E1E8ED" d="M18 3l-2 2v2l2 2 2-2V5zm-7 3l-1 1.415L9 6l1-1.414zm16 0l-1 1.415L25 6l1-1.414z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f934-1f3fe.svg b/public/emoji/1f934-1f3fe.svg
index c7e8eee83bb1cd8a9ac77fd807210b4cdaf270c8..a26398fa9bcc383326fc393a47415533dae823d0 100644
--- a/public/emoji/1f934-1f3fe.svg
+++ b/public/emoji/1f934-1f3fe.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#AF7E57" d="M32 20c0-2.209-1.119-4-2.5-4-.012 0-.021.005-.033.005C27.955 9.704 23.394 5.125 18 5.125s-9.956 4.58-11.467 10.88C6.521 16.004 6.511 16 6.5 16 5.119 16 4 17.791 4 20c0 2.107 1.021 3.815 2.314 3.97C7.537 30.619 12.299 35 18 35c5.7 0 10.463-4.381 11.685-11.03C30.979 23.815 32 22.107 32 20z"/><path d="M13 21c-.552 0-1-.447-1-1v-2c0-.552.448-1 1-1s1 .448 1 1v2c0 .553-.448 1-1 1zm10 0c-.553 0-1-.447-1-1v-2c0-.552.447-1 1-1s1 .448 1 1v2c0 .553-.447 1-1 1z" fill="#60352A"/><path fill="#915A34" d="M18 31c-4.201 0-5.491-1.077-5.707-1.293-.391-.391-.391-1.023 0-1.414.378-.379.984-.39 1.376-.036.08.058 1.1.743 4.331.743 3.355 0 4.326-.739 4.336-.747.39-.389 1.001-.37 1.393.021.391.391.369 1.043-.021 1.434C23.491 29.923 22.201 31 18 31zm1-5h-2c-.552 0-1-.447-1-1s.448-1 1-1h2c.553 0 1 .447 1 1s-.447 1-1 1z"/><path fill="#60352A" d="M18 1c8 0 13 6 13 11s-1 7-2 5l-2-4s-6 0-8-2c0 0 3 6-3 0 0 0 1 4-5-1 0 0-3 2-4 7-.277 1.387-2 0-2-5S9 1 18 1z"/><g fill="#99AAB5"><path d="M28.55 8.4L25.875 3l-2.429 4.189L17.969.5l-5.493 6.689L9.992 3 6.946 8.4 5.5 6.25V9.5h25V6.25z"/><path d="M30.5 10h-25c-.276 0-.5-.224-.5-.5V6.25c0-.22.144-.414.354-.478.21-.067.438.017.561.199l.994 1.478 2.648-4.694c.088-.156.251-.253.43-.255.195.019.344.092.436.245l2.12 3.576L17.584.183c.093-.116.235-.183.385-.183.149 0 .292.067.386.183l5.021 6.131 2.066-3.565c.093-.16.254-.262.449-.249.184.006.35.112.432.277l2.349 4.743 1.458-1.606c.139-.153.357-.206.55-.13.193.074.32.259.32.466V9.5c0 .276-.224.5-.5.5zM6 9h24V7.545l-1.08 1.19c-.11.123-.27.186-.439.159-.163-.023-.306-.125-.379-.273l-2.261-4.565-1.962 3.384c-.082.142-.229.234-.393.248-.165.012-.322-.055-.426-.182l-5.091-6.218-5.106 6.218c-.103.126-.264.193-.424.181-.163-.012-.309-.104-.392-.244l-2.042-3.446-2.623 4.649c-.086.15-.243.247-.416.253-.175.013-.337-.077-.435-.22L6 7.889V9z"/></g><path fill="#E1E8ED" d="M18 3l-2 2v2l2 2 2-2V5zm-7 3l-1 1.415L9 6l1-1.414zm16 0l-1 1.415L25 6l1-1.414z"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#AF7E57" d="M32 20c0-2.209-1.119-4-2.5-4-.012 0-.021.005-.033.005C27.955 9.704 23.394 5.125 18 5.125s-9.956 4.58-11.467 10.88C6.521 16.004 6.511 16 6.5 16 5.119 16 4 17.791 4 20c0 2.107 1.021 3.815 2.314 3.97C7.537 30.619 12.299 35 18 35c5.7 0 10.463-4.381 11.685-11.03C30.979 23.815 32 22.107 32 20z"/><path d="M13 21c-.552 0-1-.447-1-1v-2c0-.552.448-1 1-1s1 .448 1 1v2c0 .553-.448 1-1 1zm10 0c-.553 0-1-.447-1-1v-2c0-.552.447-1 1-1s1 .448 1 1v2c0 .553-.447 1-1 1z" fill="#60352A"/><path fill="#915A34" d="M18 31c-4.201 0-5.491-1.077-5.707-1.293-.391-.391-.391-1.023 0-1.414.378-.379.984-.39 1.376-.036.08.058 1.1.743 4.331.743 3.355 0 4.326-.739 4.336-.747.39-.389 1.001-.37 1.393.021.391.391.369 1.043-.021 1.434C23.491 29.923 22.201 31 18 31zm1-5h-2c-.552 0-1-.447-1-1s.448-1 1-1h2c.553 0 1 .447 1 1s-.447 1-1 1z"/><path fill="#60352A" d="M18 1c8 0 13 6 13 11s-1 7-2 5l-2-4s-6 0-8-2c0 0 3 6-3 0 0 0 1 4-5-1 0 0-3 2-4 7-.277 1.387-2 0-2-5S9 1 18 1z"/><path fill="#99AAB5" d="M30.68 5.784c-.192-.075-.411-.022-.55.13L28.672 7.52l-2.349-4.743c-.082-.165-.248-.271-.432-.277-.195-.013-.356.089-.449.249l-2.066 3.565L18.355.183C18.261.067 18.119 0 17.969 0c-.149 0-.292.067-.386.183l-5.041 6.138-2.12-3.576c-.091-.153-.24-.227-.436-.245-.179.002-.342.099-.43.254L6.909 7.449l-.994-1.478c-.123-.182-.351-.266-.561-.199-.21.064-.354.258-.354.478V9.5c0 .276.224.5.5.5h25c.276 0 .5-.224.5-.5V6.25c0-.207-.127-.392-.32-.466z"/><path fill="#E1E8ED" d="M18 3l-2 2v2l2 2 2-2V5zm-7 3l-1 1.415L9 6l1-1.414zm16 0l-1 1.415L25 6l1-1.414z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f934-1f3ff.svg b/public/emoji/1f934-1f3ff.svg
index 0cb9a1b7ed060bec769fde4418ae836310bbd905..ad40c9d54f6da3c19fa23eafeb3ba1d544130052 100644
--- a/public/emoji/1f934-1f3ff.svg
+++ b/public/emoji/1f934-1f3ff.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#7C533E" d="M32 20c0-2.209-1.119-4-2.5-4-.012 0-.021.005-.033.005C27.955 9.704 23.394 5.125 18 5.125s-9.956 4.58-11.467 10.88C6.521 16.004 6.511 16 6.5 16 5.119 16 4 17.791 4 20c0 2.107 1.021 3.815 2.314 3.97C7.537 30.619 12.299 35 18 35c5.7 0 10.463-4.381 11.685-11.03C30.979 23.815 32 22.107 32 20z"/><path d="M13 21c-.552 0-1-.447-1-1v-2c0-.552.448-1 1-1s1 .448 1 1v2c0 .553-.448 1-1 1zm10 0c-.553 0-1-.447-1-1v-2c0-.552.447-1 1-1s1 .448 1 1v2c0 .553-.447 1-1 1z"/><path fill="#3D2E24" d="M18 31c-4.201 0-5.491-1.077-5.707-1.293-.391-.391-.391-1.023 0-1.414.378-.379.984-.39 1.376-.036.08.058 1.1.743 4.331.743 3.355 0 4.326-.739 4.336-.747.39-.389 1.001-.37 1.393.021.391.391.369 1.043-.021 1.434C23.491 29.923 22.201 31 18 31zm1-5h-2c-.552 0-1-.447-1-1s.448-1 1-1h2c.553 0 1 .447 1 1s-.447 1-1 1z"/><path fill="#0B0200" d="M18 1c8 0 13 6 13 11s-1 7-2 5l-2-4s-6 0-8-2c0 0 3 6-3 0 0 0 1 4-5-1 0 0-3 2-4 7-.277 1.387-2 0-2-5S9 1 18 1z"/><g fill="#99AAB5"><path d="M28.55 8.4L25.875 3l-2.429 4.189L17.969.5l-5.493 6.689L9.992 3 6.946 8.4 5.5 6.25V9.5h25V6.25z"/><path d="M30.5 10h-25c-.276 0-.5-.224-.5-.5V6.25c0-.22.144-.414.354-.478.21-.067.438.017.561.199l.994 1.478 2.648-4.694c.088-.156.251-.253.43-.255.195.019.344.092.436.245l2.12 3.576L17.584.183c.093-.116.235-.183.385-.183.149 0 .292.067.386.183l5.021 6.131 2.066-3.565c.093-.16.254-.262.449-.249.184.006.35.112.432.277l2.349 4.743 1.458-1.606c.139-.153.357-.206.55-.13.193.074.32.259.32.466V9.5c0 .276-.224.5-.5.5zM6 9h24V7.545l-1.08 1.19c-.11.123-.27.186-.439.159-.163-.023-.306-.125-.379-.273l-2.261-4.565-1.962 3.384c-.082.142-.229.234-.393.248-.165.012-.322-.055-.426-.182l-5.091-6.218-5.106 6.218c-.103.126-.264.193-.424.181-.163-.012-.309-.104-.392-.244l-2.042-3.446-2.623 4.649c-.086.15-.243.247-.416.253-.175.013-.337-.077-.435-.22L6 7.889V9z"/></g><path fill="#E1E8ED" d="M18 3l-2 2v2l2 2 2-2V5zm-7 3l-1 1.415L9 6l1-1.414zm16 0l-1 1.415L25 6l1-1.414z"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#7C533E" d="M32 20c0-2.209-1.119-4-2.5-4-.012 0-.021.005-.033.005C27.955 9.704 23.394 5.125 18 5.125s-9.956 4.58-11.467 10.88C6.521 16.004 6.511 16 6.5 16 5.119 16 4 17.791 4 20c0 2.107 1.021 3.815 2.314 3.97C7.537 30.619 12.299 35 18 35c5.7 0 10.463-4.381 11.685-11.03C30.979 23.815 32 22.107 32 20z"/><path d="M13 21c-.552 0-1-.447-1-1v-2c0-.552.448-1 1-1s1 .448 1 1v2c0 .553-.448 1-1 1zm10 0c-.553 0-1-.447-1-1v-2c0-.552.447-1 1-1s1 .448 1 1v2c0 .553-.447 1-1 1z"/><path fill="#3D2E24" d="M18 31c-4.201 0-5.491-1.077-5.707-1.293-.391-.391-.391-1.023 0-1.414.378-.379.984-.39 1.376-.036.08.058 1.1.743 4.331.743 3.355 0 4.326-.739 4.336-.747.39-.389 1.001-.37 1.393.021.391.391.369 1.043-.021 1.434C23.491 29.923 22.201 31 18 31zm1-5h-2c-.552 0-1-.447-1-1s.448-1 1-1h2c.553 0 1 .447 1 1s-.447 1-1 1z"/><path fill="#0B0200" d="M18 1c8 0 13 6 13 11s-1 7-2 5l-2-4s-6 0-8-2c0 0 3 6-3 0 0 0 1 4-5-1 0 0-3 2-4 7-.277 1.387-2 0-2-5S9 1 18 1z"/><path fill="#99AAB5" d="M30.68 5.784c-.192-.075-.411-.022-.55.13L28.672 7.52l-2.349-4.743c-.082-.165-.248-.271-.432-.277-.195-.013-.356.089-.449.249l-2.066 3.565L18.355.183C18.261.067 18.119 0 17.969 0c-.149 0-.292.067-.386.183l-5.041 6.138-2.12-3.576c-.091-.153-.24-.227-.436-.245-.179.002-.342.099-.43.254L6.909 7.449l-.994-1.478c-.123-.182-.351-.266-.561-.199-.21.064-.354.258-.354.478V9.5c0 .276.224.5.5.5h25c.276 0 .5-.224.5-.5V6.25c0-.207-.127-.392-.32-.466z"/><path fill="#E1E8ED" d="M18 3l-2 2v2l2 2 2-2V5zm-7 3l-1 1.415L9 6l1-1.414zm16 0l-1 1.415L25 6l1-1.414z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f934.svg b/public/emoji/1f934.svg
index 11775b66e3e7f964d1ad51319c83859e6787935f..666ac38c2f6f1ab3a42eada580a3d3d30a78a032 100644
--- a/public/emoji/1f934.svg
+++ b/public/emoji/1f934.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#FFDC5D" d="M32 20c0-2.209-1.119-4-2.5-4-.012 0-.021.005-.033.005C27.955 9.704 23.394 5.125 18 5.125s-9.956 4.58-11.467 10.88C6.521 16.004 6.511 16 6.5 16 5.119 16 4 17.791 4 20c0 2.107 1.021 3.815 2.314 3.97C7.537 30.619 12.299 35 18 35c5.7 0 10.463-4.381 11.685-11.03C30.979 23.815 32 22.107 32 20z"/><path d="M13 21c-.552 0-1-.447-1-1v-2c0-.552.448-1 1-1s1 .448 1 1v2c0 .553-.448 1-1 1zm10 0c-.553 0-1-.447-1-1v-2c0-.552.447-1 1-1s1 .448 1 1v2c0 .553-.447 1-1 1z" fill="#662113"/><path fill="#C1694F" d="M18 31c-4.201 0-5.491-1.077-5.707-1.293-.391-.391-.391-1.023 0-1.414.378-.379.984-.39 1.376-.036.08.058 1.1.743 4.331.743 3.355 0 4.326-.739 4.336-.747.39-.389 1.001-.37 1.393.021.391.391.369 1.043-.021 1.434C23.491 29.923 22.201 31 18 31zm1-5h-2c-.552 0-1-.447-1-1s.448-1 1-1h2c.553 0 1 .447 1 1s-.447 1-1 1z"/><path fill="#FFAC33" d="M18 1c8 0 13 6 13 11s-1 7-2 5l-2-4s-6 0-8-2c0 0 3 6-3 0 0 0 1 4-5-1 0 0-3 2-4 7-.277 1.387-2 0-2-5S9 1 18 1z"/><g fill="#99AAB5"><path d="M28.55 8.4L25.875 3l-2.429 4.189L17.969.5l-5.493 6.689L9.992 3 6.946 8.4 5.5 6.25V9.5h25V6.25z"/><path d="M30.5 10h-25c-.276 0-.5-.224-.5-.5V6.25c0-.22.144-.414.354-.478.21-.067.438.017.561.199l.994 1.478 2.648-4.694c.088-.156.251-.253.43-.255.195.019.344.092.436.245l2.12 3.576L17.584.183c.093-.116.235-.183.385-.183.149 0 .292.067.386.183l5.021 6.131 2.066-3.565c.093-.16.254-.262.449-.249.184.006.35.112.432.277l2.349 4.743 1.458-1.606c.139-.153.357-.206.55-.13.193.074.32.259.32.466V9.5c0 .276-.224.5-.5.5zM6 9h24V7.545l-1.08 1.19c-.11.123-.27.186-.439.159-.163-.023-.306-.125-.379-.273l-2.261-4.565-1.962 3.384c-.082.142-.229.234-.393.248-.165.012-.322-.055-.426-.182l-5.091-6.218-5.106 6.218c-.103.126-.264.193-.424.181-.163-.012-.309-.104-.392-.244l-2.042-3.446-2.623 4.649c-.086.15-.243.247-.416.253-.175.013-.337-.077-.435-.22L6 7.889V9z"/></g><path fill="#E1E8ED" d="M18 3l-2 2v2l2 2 2-2V5zm-7 3l-1 1.415L9 6l1-1.414zm16 0l-1 1.415L25 6l1-1.414z"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#FFDC5D" d="M32 20c0-2.209-1.119-4-2.5-4-.012 0-.021.005-.033.005C27.955 9.704 23.394 5.125 18 5.125s-9.956 4.58-11.467 10.88C6.521 16.004 6.511 16 6.5 16 5.119 16 4 17.791 4 20c0 2.107 1.021 3.815 2.314 3.97C7.537 30.619 12.299 35 18 35c5.7 0 10.463-4.381 11.685-11.03C30.979 23.815 32 22.107 32 20z"/><path d="M13 21c-.552 0-1-.447-1-1v-2c0-.552.448-1 1-1s1 .448 1 1v2c0 .553-.448 1-1 1zm10 0c-.553 0-1-.447-1-1v-2c0-.552.447-1 1-1s1 .448 1 1v2c0 .553-.447 1-1 1z" fill="#662113"/><path fill="#C1694F" d="M18 31c-4.201 0-5.491-1.077-5.707-1.293-.391-.391-.391-1.023 0-1.414.378-.379.984-.39 1.376-.036.08.058 1.1.743 4.331.743 3.355 0 4.326-.739 4.336-.747.39-.389 1.001-.37 1.393.021.391.391.369 1.043-.021 1.434C23.491 29.923 22.201 31 18 31zm1-5h-2c-.552 0-1-.447-1-1s.448-1 1-1h2c.553 0 1 .447 1 1s-.447 1-1 1z"/><path fill="#FFAC33" d="M18 1c8 0 13 6 13 11s-1 7-2 5l-2-4s-6 0-8-2c0 0 3 6-3 0 0 0 1 4-5-1 0 0-3 2-4 7-.277 1.387-2 0-2-5S9 1 18 1z"/><path fill="#99AAB5" d="M30.68 5.784c-.192-.075-.411-.022-.55.13L28.672 7.52l-2.349-4.743c-.082-.165-.248-.271-.432-.277-.195-.013-.356.089-.449.249l-2.066 3.565L18.355.183C18.261.067 18.119 0 17.969 0c-.149 0-.292.067-.386.183l-5.041 6.138-2.12-3.576c-.091-.153-.24-.227-.436-.245-.179.002-.342.099-.43.254L6.909 7.449l-.994-1.478c-.123-.182-.351-.266-.561-.199-.21.064-.354.258-.354.478V9.5c0 .276.224.5.5.5h25c.276 0 .5-.224.5-.5V6.25c0-.207-.127-.392-.32-.466z"/><path fill="#E1E8ED" d="M18 3l-2 2v2l2 2 2-2V5zm-7 3l-1 1.415L9 6l1-1.414zm16 0l-1 1.415L25 6l1-1.414z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f935-1f3fb-200d-2640-fe0f.svg b/public/emoji/1f935-1f3fb-200d-2640-fe0f.svg
index 9f30726caf48d217c86b0dfa100f9eeaef2f0681..d0e7ba4e34da90dcbe848b0d8b4d46d54a3a097b 100644
--- a/public/emoji/1f935-1f3fb-200d-2640-fe0f.svg
+++ b/public/emoji/1f935-1f3fb-200d-2640-fe0f.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#292F33" d="M18.004 3.979c4.104 0 10.947 2.053 10.947 10.947 0 8.895 0 10.948-2.053 10.948s-4.79-2.053-8.894-2.053c-4.106 0-6.785 2.053-8.896 2.053-2.287 0-2.053-8.211-2.053-10.948 0-8.895 6.844-10.947 10.949-10.947M31 36v-4.5c0-3.314-3.56-5.5-6.875-5.5h-12C8.812 26 5 28.186 5 31.5V36h26z"/><path fill="#F6DDCD" d="M14.5 26c1 1.982 2.792 2 3.5 2s2.512-.049 3.5-2v-3.591h-7V26z"/><path fill="#ECC0AC" d="M14.5 24.054c.975 1.102 2.185 1.4 3.499 1.4 1.315 0 2.526-.298 3.501-1.4v-1.051h-7v1.051z"/><path fill="#DFE7EC" d="M20.145 36l3.011-10L18 27l-5.156-1 3.011 10z"/><path fill="#66757F" d="M23.684 36l-1.172-1.918 3.223-.886L23.156 26l-3.011 10zm-11.368 0l1.172-1.918-3.223-.886L12.844 26l3.011 10z"/><path fill="#292F33" d="M18.635 30.796c0 .352-.285.636-.636.636s-.636-.285-.636-.636c0-.351.285-.636.636-.636s.636.285.636.636zm0 2.6c0 .352-.285.636-.636.636s-.636-.285-.636-.636c0-.351.285-.636.636-.636s.636.285.636.636zm-.636 1.965c-.351 0-.636.285-.636.636h1.273c-.001-.352-.285-.636-.637-.636z"/><path fill="#F4F7F9" d="M14.294 24.872L18 26.966l-2.417 2.564-2.74-3.53zm7.412 0L18 26.966l2.417 2.564 2.74-3.53z"/><path fill="#292F33" d="M20.781 26.053c-.072-.043-.159-.043-.231-.003l-2.551 1.402-2.551-1.402c-.072-.04-.159-.039-.231.003-.071.042-.115.119-.115.201v2.928c0 .082.044.159.115.201.037.021.078.032.119.032.039 0 .077-.01.112-.029l2.551-1.402 2.551 1.402c.035.02.073.029.112.029.041 0 .082-.011.119-.032.07-.042.114-.119.114-.201v-2.928c.001-.082-.043-.159-.114-.201z"/><path fill="#F6DDCD" d="M9.793 14.627c0-5.834 3.676-10.563 8.211-10.563 4.533 0 8.209 4.729 8.209 10.563 0 5.833-3.676 10.285-8.209 10.285-4.535 0-8.211-4.452-8.211-10.285"/><path fill="#DE2032" d="M18.004 22.452c-1.606 0-2.447-.794-2.537-.885-.268-.267-.268-.7 0-.967.266-.265.692-.267.961-.007.035.032.551.491 1.576.491 1.038 0 1.555-.473 1.576-.492.273-.256.703-.248.963.019.26.269.26.691-.004.955-.09.092-.929.886-2.535.886"/><path fill="#C1694F" d="M18.895 19.409h-1.69c-.233 0-.423-.189-.423-.423v-.153c0-.233.189-.424.423-.424h1.69c.233 0 .424.19.424.424v.153c0 .234-.191.423-.424.423"/><path fill="#662213" d="M21.432 16.796c-.465 0-.846-.381-.846-.847v-.845c0-.465.381-.846.846-.846.465 0 .846.381.846.846v.845c0 .466-.381.847-.846.847m-6.765 0c-.465 0-.846-.381-.846-.847v-.845c0-.465.381-.846.846-.846.466 0 .847.381.847.846v.845c0 .466-.381.847-.847.847"/><path fill="#292F33" d="M7.784 17.909c-.021-1-.044-.224-.044-.465 0-3.422 2.053.494 2.053-1.943 0-2.438 1.368-2.683 2.736-4.051.685-.685 2.053-2.026 2.053-2.026s3.421 2.067 6.158 2.067c2.736 0 5.474 1.375 5.474 4.112 0 2.736 2.053-1.584 2.053 1.837 0 .244-.022-.531-.04.469h.719c.006-2 .006-1.924.006-3.202C28.951 5.813 22.11 2.5 18.003 2.5c-4.105 0-10.947 3.257-10.947 12.152 0 .793-.02 1.257.008 3.257h.72z"/><path fill="#F6DDCD" d="M11.503 14.845c0 1.448-.734 2.622-1.639 2.622s-1.639-1.174-1.639-2.622.734-2.623 1.639-2.623 1.639 1.175 1.639 2.623m16.389 0c0 1.448-.733 2.622-1.639 2.622-.905 0-1.639-1.174-1.639-2.622s.733-2.623 1.639-2.623c.905 0 1.639 1.175 1.639 2.623"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#292F33" d="M18.004 3.979c4.104 0 10.947 2.053 10.947 10.947 0 8.895 0 10.948-2.053 10.948s-4.79-2.053-8.894-2.053c-4.106 0-6.785 2.053-8.896 2.053-2.287 0-2.053-8.211-2.053-10.948 0-8.895 6.844-10.947 10.949-10.947M31 36v-4.5c0-3.314-3.56-5.5-6.875-5.5h-12C8.812 26 5 28.186 5 31.5V36h26z"/><path fill="#F7DECE" d="M14.5 26c1 1.982 2.792 2 3.5 2s2.512-.049 3.5-2v-3.591h-7V26z"/><path fill="#EEC2AD" d="M14.5 24.054c.975 1.102 2.185 1.4 3.499 1.4 1.315 0 2.526-.298 3.501-1.4v-1.051h-7v1.051z"/><path fill="#546170" d="M13.95 29.603l-3.863-.825L11.808 26l2.142.003z"/><path fill="#66757F" d="M16.078 36h-2.406l-4.485-7.9 2.621.831 1.571-1.983z"/><path fill="#546170" d="M22.05 29.603l3.863-.825L24.192 26l-2.141.003z"/><path fill="#66757F" d="M19.922 36h2.406l4.485-7.9-2.621.831-1.57-1.983z"/><path fill="#DFE7EC" d="M20.145 36l3.011-10L18 27l-5.156-1 3.011 10z"/><circle fill="#292F33" cx="18" cy="30.796" r=".625"/><circle fill="#292F33" cx="18" cy="33.396" r=".625"/><path fill="#292F33" d="M18 35.375c-.345 0-.625.28-.625.625h1.25c0-.345-.28-.625-.625-.625z"/><path fill="#F4F7F9" d="M14.294 24.872L18 26.966l-2.417 2.564-2.74-3.53zm7.412 0L18 26.966l2.417 2.564 2.74-3.53z"/><path fill="#292F33" d="M20.781 26.053c-.072-.043-.159-.043-.231-.003l-2.551 1.402-2.551-1.402c-.072-.04-.159-.039-.231.003-.071.042-.115.119-.115.201v2.928c0 .082.044.159.115.201.037.021.078.032.119.032.039 0 .077-.01.112-.029l2.551-1.402 2.551 1.402c.035.02.073.029.112.029.041 0 .082-.011.119-.032.07-.042.114-.119.114-.201v-2.928c.001-.082-.043-.159-.114-.201z"/><path fill="#F7DECE" d="M9.793 14.627c0-5.834 3.676-10.563 8.211-10.563 4.533 0 8.209 4.729 8.209 10.563 0 5.833-3.676 10.285-8.209 10.285-4.535 0-8.211-4.452-8.211-10.285"/><path fill="#DF1F32" d="M18.004 22.452c-1.606 0-2.447-.794-2.537-.885-.268-.267-.268-.7 0-.967.266-.265.692-.267.961-.007.035.032.551.491 1.576.491 1.038 0 1.555-.473 1.576-.492.273-.256.703-.248.963.019.26.269.26.691-.004.955-.09.092-.929.886-2.535.886"/><path fill="#C1694F" d="M18.895 19.409h-1.69c-.233 0-.423-.189-.423-.423v-.153c0-.233.189-.424.423-.424h1.69c.233 0 .424.19.424.424v.153c0 .234-.191.423-.424.423"/><path fill="#662113" d="M21.432 16.796c-.465 0-.846-.381-.846-.847v-.845c0-.465.381-.846.846-.846.465 0 .846.381.846.846v.845c0 .466-.381.847-.846.847m-6.765 0c-.465 0-.846-.381-.846-.847v-.845c0-.465.381-.846.846-.846.466 0 .847.381.847.846v.845c0 .466-.381.847-.847.847"/><path fill="#292F33" d="M7.784 17.909c-.021-1-.044-.224-.044-.465 0-3.422 2.053.494 2.053-1.943 0-2.438 1.368-2.683 2.736-4.051.685-.685 2.053-2.026 2.053-2.026s3.421 2.067 6.158 2.067c2.736 0 5.474 1.375 5.474 4.112 0 2.736 2.053-1.584 2.053 1.837 0 .244-.022-.531-.04.469h.719c.006-2 .006-1.924.006-3.202C28.951 5.813 22.11 2.5 18.003 2.5c-4.105 0-10.947 3.257-10.947 12.152 0 .793-.02 1.257.008 3.257h.72z"/><path fill="#F7DECE" d="M11.503 14.845c0 1.448-.734 2.622-1.639 2.622s-1.639-1.174-1.639-2.622.734-2.623 1.639-2.623 1.639 1.175 1.639 2.623m16.389 0c0 1.448-.733 2.622-1.639 2.622-.905 0-1.639-1.174-1.639-2.622s.733-2.623 1.639-2.623c.905 0 1.639 1.175 1.639 2.623"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f935-1f3fb-200d-2642-fe0f.svg b/public/emoji/1f935-1f3fb-200d-2642-fe0f.svg
index 1febe152c9e58f71a998bc8b37b3fc872779ee45..abd68b8f698183fb936b70e2b5e80640c676d06e 100644
--- a/public/emoji/1f935-1f3fb-200d-2642-fe0f.svg
+++ b/public/emoji/1f935-1f3fb-200d-2642-fe0f.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#292F33" d="M32 36v-4c0-3.314-2.685-6-6-6H10c-3.313 0-6 2.686-6 6v4h28z"/><path fill="#DFE7EC" d="M20.805 36l2.862-10.017H12.333L15.195 36z"/><path fill="#292F33" d="M18.698 31.846c0 .386-.313.699-.699.699-.386 0-.699-.313-.699-.699 0-.386.313-.699.699-.699.386 0 .699.313.699.699zm0 2.858c0 .386-.313.699-.699.699-.386 0-.699-.313-.699-.699 0-.386.313-.699.699-.699.386 0 .699.312.699.699z"/><path fill="#66757F" d="M23.29 36l-.332-.543 3.542-.974-2.833-8.5L20.805 36zm-10.58 0l.332-.543-3.542-.974 2.833-8.5L15.195 36z"/><path fill="#F6DDCD" d="M14 26l4 1.75L22 26v-4h-8z"/><path fill="#ECC0AC" d="M14 24c1.216 1.374 2.355 1.719 3.996 1.719 1.639 0 2.787-.346 4.004-1.719v-4h-8v4z"/><path fill="#F6DDCD" d="M11.444 13.936c0 1.448-.734 2.622-1.639 2.622s-1.639-1.174-1.639-2.622.734-2.623 1.639-2.623 1.639 1.174 1.639 2.623m16.389 0c0 1.448-.733 2.622-1.639 2.622-.905 0-1.639-1.174-1.639-2.622s.733-2.623 1.639-2.623 1.639 1.174 1.639 2.623"/><path fill="#F6DDCD" d="M9.477 14.96c0-5.589 3.816-10.121 8.523-10.121s8.522 4.532 8.522 10.121S22.707 25.081 18 25.081c-4.707-.001-8.523-4.532-8.523-10.121"/><path fill="#C1694F" d="M18 21.802c-2.754 0-3.6-.705-3.741-.848-.256-.256-.256-.671 0-.927.248-.248.646-.255.902-.023.052.037.721.487 2.839.487 2.2 0 2.836-.485 2.842-.49.256-.255.657-.243.913.015.256.256.242.683-.014.938-.141.143-.987.848-3.741.848"/><path fill="#292F33" d="M18 1.48c5.648 0 9.178 4.168 9.178 7.641s-.706 4.863-1.412 3.473l-1.412-2.778s-4.235 0-5.647-1.39c0 0 2.118 4.168-2.118 0 0 0 .706 2.779-3.53-.694 0 0-2.118 1.389-2.824 4.862-.196.964-1.412 0-1.412-3.473C8.822 5.648 11.646 1.48 18 1.48"/><path fill="#662213" d="M14 15c-.55 0-1-.45-1-1v-1c0-.55.45-1 1-1s1 .45 1 1v1c0 .55-.45 1-1 1m8 0c-.55 0-1-.45-1-1v-1c0-.55.45-1 1-1s1 .45 1 1v1c0 .55-.45 1-1 1"/><path fill="#C1694F" d="M18.75 17.75h-1.5c-.413 0-.75-.337-.75-.75s.337-.75.75-.75h1.5c.413 0 .75.337.75.75s-.337.75-.75.75"/><path fill="#F4F7F9" d="M13.927 24.744L18 27.637l-2.656 2.818-3.011-4.472zm8.146 0L18 27.637l2.656 2.818 3.011-4.472z"/><g fill="#292F33"><path d="M17.999 28.463l2.927 1.609v-3.218z"/><path d="M20.926 30.306c-.039 0-.077-.01-.112-.029l-2.927-1.609c-.075-.041-.121-.119-.121-.204s.046-.163.121-.204l2.927-1.608c.072-.04.159-.04.231.003.07.042.114.119.114.201v3.218c0 .082-.044.159-.114.201-.037.02-.078.031-.119.031zm-2.443-1.843l2.209 1.215v-2.429l-2.209 1.214z"/><path d="M17.999 28.463l-2.926 1.609v-3.218z"/><path d="M15.072 30.306c-.041 0-.082-.011-.119-.032-.071-.042-.115-.119-.115-.201v-3.218c0-.082.044-.159.115-.201.072-.042.159-.043.231-.003l2.927 1.608c.075.041.121.119.121.204s-.046.163-.121.204l-2.927 1.609c-.035.02-.073.03-.112.03zm.234-3.057v2.429l2.209-1.215-2.209-1.214z"/></g></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#292F33" d="M32 36v-4c0-3.314-2.685-6-6-6H10c-3.313 0-6 2.686-6 6v4h28z"/><path fill="#546170" d="M22.5 30.003l4.292-.916L24.879 26l-2.379.003z"/><path fill="#66757F" d="M20.58 36h2.83l4.382-7.667-2.913.924-1.744-2.204z"/><path fill="#546170" d="M13.5 30.003l-4.292-.916L11.12 26l2.38.003z"/><path fill="#66757F" d="M15.42 36h-2.83l-4.382-7.667 2.912.924 1.745-2.204z"/><path fill="#DFE7EC" d="M20.805 36l2.862-10.017H12.333L15.195 36z"/><circle fill="#292F33" cx="18" cy="31.847" r=".7"/><circle fill="#292F33" cx="18" cy="34.704" r=".7"/><path fill="#F7DECE" d="M14 25.887l4 1.75 4-1.75v-4h-8z"/><path fill="#EEC2AD" d="M14 24c1.216 1.374 2.355 1.719 3.996 1.719 1.639 0 2.787-.346 4.004-1.719v-4h-8v4z"/><path fill="#F7DECE" d="M27.833 13.935c0-1.448-.733-2.623-1.639-2.623-.082 0-.161.02-.24.039C24.73 7.546 21.635 4.839 18 4.839s-6.729 2.707-7.955 6.512c-.079-.019-.158-.039-.24-.039-.905 0-1.639 1.175-1.639 2.623 0 1.33.621 2.417 1.423 2.587.634 4.845 4.153 8.557 8.411 8.557s7.776-3.712 8.411-8.557c.802-.17 1.422-1.257 1.422-2.587z"/><path fill="#F4F7F9" d="M13.927 24.744L18 27.637l-2.656 2.818-3.011-4.472zm8.146 0L18 27.637l2.656 2.818 3.011-4.472z"/><path fill="#292F33" d="M21.045 26.653c-.072-.043-.159-.043-.231-.003L18 28.197l-2.814-1.547c-.072-.04-.159-.039-.231.003-.071.042-.115.119-.115.201v3.218c0 .082.044.159.115.201.037.021.078.032.119.032.039 0 .077-.01.112-.029L18 28.728l2.814 1.548c.035.02.073.029.112.029.041 0 .082-.011.119-.032.07-.042.114-.119.114-.201v-3.218c0-.082-.044-.159-.114-.201z"/><path fill="#C1694F" d="M18 21.802c-2.754 0-3.6-.705-3.741-.848-.256-.256-.256-.671 0-.927.248-.248.646-.255.902-.023.052.037.721.487 2.839.487 2.2 0 2.836-.485 2.842-.49.256-.255.657-.243.913.015.256.256.242.683-.014.938-.141.143-.987.848-3.741.848m.75-4.052h-1.5c-.413 0-.75-.337-.75-.75s.337-.75.75-.75h1.5c.413 0 .75.337.75.75s-.337.75-.75.75"/><path fill="#662113" d="M22 15c-.55 0-1-.45-1-1v-1c0-.55.45-1 1-1s1 .45 1 1v1c0 .55-.45 1-1 1m-8 0c-.55 0-1-.45-1-1v-1c0-.55.45-1 1-1s1 .45 1 1v1c0 .55-.45 1-1 1"/><path fill="#292F33" d="M18 1.48c5.648 0 9.178 4.168 9.178 7.641s-.706 4.863-1.412 3.473l-1.412-2.778s-4.235 0-5.647-1.39c0 0 2.118 4.168-2.118 0 0 0 .706 2.779-3.53-.694 0 0-2.118 1.389-2.824 4.862-.196.964-1.412 0-1.412-3.473C8.822 5.648 11.646 1.48 18 1.48"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f935-1f3fb.svg b/public/emoji/1f935-1f3fb.svg
index 1febe152c9e58f71a998bc8b37b3fc872779ee45..abd68b8f698183fb936b70e2b5e80640c676d06e 100644
--- a/public/emoji/1f935-1f3fb.svg
+++ b/public/emoji/1f935-1f3fb.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#292F33" d="M32 36v-4c0-3.314-2.685-6-6-6H10c-3.313 0-6 2.686-6 6v4h28z"/><path fill="#DFE7EC" d="M20.805 36l2.862-10.017H12.333L15.195 36z"/><path fill="#292F33" d="M18.698 31.846c0 .386-.313.699-.699.699-.386 0-.699-.313-.699-.699 0-.386.313-.699.699-.699.386 0 .699.313.699.699zm0 2.858c0 .386-.313.699-.699.699-.386 0-.699-.313-.699-.699 0-.386.313-.699.699-.699.386 0 .699.312.699.699z"/><path fill="#66757F" d="M23.29 36l-.332-.543 3.542-.974-2.833-8.5L20.805 36zm-10.58 0l.332-.543-3.542-.974 2.833-8.5L15.195 36z"/><path fill="#F6DDCD" d="M14 26l4 1.75L22 26v-4h-8z"/><path fill="#ECC0AC" d="M14 24c1.216 1.374 2.355 1.719 3.996 1.719 1.639 0 2.787-.346 4.004-1.719v-4h-8v4z"/><path fill="#F6DDCD" d="M11.444 13.936c0 1.448-.734 2.622-1.639 2.622s-1.639-1.174-1.639-2.622.734-2.623 1.639-2.623 1.639 1.174 1.639 2.623m16.389 0c0 1.448-.733 2.622-1.639 2.622-.905 0-1.639-1.174-1.639-2.622s.733-2.623 1.639-2.623 1.639 1.174 1.639 2.623"/><path fill="#F6DDCD" d="M9.477 14.96c0-5.589 3.816-10.121 8.523-10.121s8.522 4.532 8.522 10.121S22.707 25.081 18 25.081c-4.707-.001-8.523-4.532-8.523-10.121"/><path fill="#C1694F" d="M18 21.802c-2.754 0-3.6-.705-3.741-.848-.256-.256-.256-.671 0-.927.248-.248.646-.255.902-.023.052.037.721.487 2.839.487 2.2 0 2.836-.485 2.842-.49.256-.255.657-.243.913.015.256.256.242.683-.014.938-.141.143-.987.848-3.741.848"/><path fill="#292F33" d="M18 1.48c5.648 0 9.178 4.168 9.178 7.641s-.706 4.863-1.412 3.473l-1.412-2.778s-4.235 0-5.647-1.39c0 0 2.118 4.168-2.118 0 0 0 .706 2.779-3.53-.694 0 0-2.118 1.389-2.824 4.862-.196.964-1.412 0-1.412-3.473C8.822 5.648 11.646 1.48 18 1.48"/><path fill="#662213" d="M14 15c-.55 0-1-.45-1-1v-1c0-.55.45-1 1-1s1 .45 1 1v1c0 .55-.45 1-1 1m8 0c-.55 0-1-.45-1-1v-1c0-.55.45-1 1-1s1 .45 1 1v1c0 .55-.45 1-1 1"/><path fill="#C1694F" d="M18.75 17.75h-1.5c-.413 0-.75-.337-.75-.75s.337-.75.75-.75h1.5c.413 0 .75.337.75.75s-.337.75-.75.75"/><path fill="#F4F7F9" d="M13.927 24.744L18 27.637l-2.656 2.818-3.011-4.472zm8.146 0L18 27.637l2.656 2.818 3.011-4.472z"/><g fill="#292F33"><path d="M17.999 28.463l2.927 1.609v-3.218z"/><path d="M20.926 30.306c-.039 0-.077-.01-.112-.029l-2.927-1.609c-.075-.041-.121-.119-.121-.204s.046-.163.121-.204l2.927-1.608c.072-.04.159-.04.231.003.07.042.114.119.114.201v3.218c0 .082-.044.159-.114.201-.037.02-.078.031-.119.031zm-2.443-1.843l2.209 1.215v-2.429l-2.209 1.214z"/><path d="M17.999 28.463l-2.926 1.609v-3.218z"/><path d="M15.072 30.306c-.041 0-.082-.011-.119-.032-.071-.042-.115-.119-.115-.201v-3.218c0-.082.044-.159.115-.201.072-.042.159-.043.231-.003l2.927 1.608c.075.041.121.119.121.204s-.046.163-.121.204l-2.927 1.609c-.035.02-.073.03-.112.03zm.234-3.057v2.429l2.209-1.215-2.209-1.214z"/></g></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#292F33" d="M32 36v-4c0-3.314-2.685-6-6-6H10c-3.313 0-6 2.686-6 6v4h28z"/><path fill="#546170" d="M22.5 30.003l4.292-.916L24.879 26l-2.379.003z"/><path fill="#66757F" d="M20.58 36h2.83l4.382-7.667-2.913.924-1.744-2.204z"/><path fill="#546170" d="M13.5 30.003l-4.292-.916L11.12 26l2.38.003z"/><path fill="#66757F" d="M15.42 36h-2.83l-4.382-7.667 2.912.924 1.745-2.204z"/><path fill="#DFE7EC" d="M20.805 36l2.862-10.017H12.333L15.195 36z"/><circle fill="#292F33" cx="18" cy="31.847" r=".7"/><circle fill="#292F33" cx="18" cy="34.704" r=".7"/><path fill="#F7DECE" d="M14 25.887l4 1.75 4-1.75v-4h-8z"/><path fill="#EEC2AD" d="M14 24c1.216 1.374 2.355 1.719 3.996 1.719 1.639 0 2.787-.346 4.004-1.719v-4h-8v4z"/><path fill="#F7DECE" d="M27.833 13.935c0-1.448-.733-2.623-1.639-2.623-.082 0-.161.02-.24.039C24.73 7.546 21.635 4.839 18 4.839s-6.729 2.707-7.955 6.512c-.079-.019-.158-.039-.24-.039-.905 0-1.639 1.175-1.639 2.623 0 1.33.621 2.417 1.423 2.587.634 4.845 4.153 8.557 8.411 8.557s7.776-3.712 8.411-8.557c.802-.17 1.422-1.257 1.422-2.587z"/><path fill="#F4F7F9" d="M13.927 24.744L18 27.637l-2.656 2.818-3.011-4.472zm8.146 0L18 27.637l2.656 2.818 3.011-4.472z"/><path fill="#292F33" d="M21.045 26.653c-.072-.043-.159-.043-.231-.003L18 28.197l-2.814-1.547c-.072-.04-.159-.039-.231.003-.071.042-.115.119-.115.201v3.218c0 .082.044.159.115.201.037.021.078.032.119.032.039 0 .077-.01.112-.029L18 28.728l2.814 1.548c.035.02.073.029.112.029.041 0 .082-.011.119-.032.07-.042.114-.119.114-.201v-3.218c0-.082-.044-.159-.114-.201z"/><path fill="#C1694F" d="M18 21.802c-2.754 0-3.6-.705-3.741-.848-.256-.256-.256-.671 0-.927.248-.248.646-.255.902-.023.052.037.721.487 2.839.487 2.2 0 2.836-.485 2.842-.49.256-.255.657-.243.913.015.256.256.242.683-.014.938-.141.143-.987.848-3.741.848m.75-4.052h-1.5c-.413 0-.75-.337-.75-.75s.337-.75.75-.75h1.5c.413 0 .75.337.75.75s-.337.75-.75.75"/><path fill="#662113" d="M22 15c-.55 0-1-.45-1-1v-1c0-.55.45-1 1-1s1 .45 1 1v1c0 .55-.45 1-1 1m-8 0c-.55 0-1-.45-1-1v-1c0-.55.45-1 1-1s1 .45 1 1v1c0 .55-.45 1-1 1"/><path fill="#292F33" d="M18 1.48c5.648 0 9.178 4.168 9.178 7.641s-.706 4.863-1.412 3.473l-1.412-2.778s-4.235 0-5.647-1.39c0 0 2.118 4.168-2.118 0 0 0 .706 2.779-3.53-.694 0 0-2.118 1.389-2.824 4.862-.196.964-1.412 0-1.412-3.473C8.822 5.648 11.646 1.48 18 1.48"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f935-1f3fc-200d-2640-fe0f.svg b/public/emoji/1f935-1f3fc-200d-2640-fe0f.svg
index 40b403069082c578f3c12cde94dec09e8c8b7786..5b10171c360c38e3ea7ba22e4bf1e444874b43b0 100644
--- a/public/emoji/1f935-1f3fc-200d-2640-fe0f.svg
+++ b/public/emoji/1f935-1f3fc-200d-2640-fe0f.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#FFE51E" d="M18.004 3.979c4.104 0 10.947 2.053 10.947 10.947 0 8.895 0 10.948-2.053 10.948s-4.79-2.053-8.894-2.053c-4.106 0-6.785 2.053-8.896 2.053-2.287 0-2.053-8.211-2.053-10.948 0-8.895 6.844-10.947 10.949-10.947"/><path fill="#292F33" d="M31 36v-4.5c0-3.314-3.56-5.5-6.875-5.5h-12C8.812 26 5 28.186 5 31.5V36h26z"/><path fill="#F2D1A1" d="M14.5 26c1 1.982 2.792 2 3.5 2s2.512-.049 3.5-2v-3.591h-7V26z"/><path fill="#E0BF94" d="M14.5 24.054c.975 1.102 2.185 1.4 3.499 1.4 1.315 0 2.526-.298 3.501-1.4v-1.051h-7v1.051z"/><path fill="#DFE7EC" d="M20.145 36l3.011-10L18 27l-5.156-1 3.011 10z"/><path fill="#66757F" d="M23.684 36l-1.172-1.918 3.223-.886L23.156 26l-3.011 10zm-11.368 0l1.172-1.918-3.223-.886L12.844 26l3.011 10z"/><path fill="#292F33" d="M18.635 30.796c0 .352-.285.636-.636.636s-.636-.285-.636-.636c0-.351.285-.636.636-.636s.636.285.636.636zm0 2.6c0 .352-.285.636-.636.636s-.636-.285-.636-.636c0-.351.285-.636.636-.636s.636.285.636.636zm-.636 1.965c-.351 0-.636.285-.636.636h1.273c-.001-.352-.285-.636-.637-.636z"/><path fill="#F4F7F9" d="M14.294 24.872L18 26.966l-2.417 2.564-2.74-3.53zm7.412 0L18 26.966l2.417 2.564 2.74-3.53z"/><path fill="#292F33" d="M20.781 26.053c-.072-.043-.159-.043-.231-.003l-2.551 1.402-2.551-1.402c-.072-.04-.159-.039-.231.003-.071.042-.115.119-.115.201v2.928c0 .082.044.159.115.201.037.021.078.032.119.032.039 0 .077-.01.112-.029l2.551-1.402 2.551 1.402c.035.02.073.029.112.029.041 0 .082-.011.119-.032.07-.042.114-.119.114-.201v-2.928c.001-.082-.043-.159-.114-.201z"/><path fill="#F2D1A1" d="M9.793 14.627c0-5.834 3.676-10.563 8.211-10.563 4.533 0 8.209 4.729 8.209 10.563 0 5.833-3.676 10.285-8.209 10.285-4.535 0-8.211-4.452-8.211-10.285"/><path fill="#DE2032" d="M18.004 22.452c-1.606 0-2.447-.794-2.537-.885-.268-.267-.268-.7 0-.967.266-.265.692-.267.961-.007.035.032.551.491 1.576.491 1.038 0 1.555-.473 1.576-.492.273-.256.703-.248.963.019.26.269.26.691-.004.955-.09.092-.929.886-2.535.886"/><path fill="#C1694F" d="M18.895 19.409h-1.69c-.233 0-.423-.189-.423-.423v-.153c0-.233.189-.424.423-.424h1.69c.233 0 .424.19.424.424v.153c0 .234-.191.423-.424.423"/><path fill="#662213" d="M21.432 16.796c-.465 0-.846-.381-.846-.847v-.845c0-.465.381-.846.846-.846.465 0 .846.381.846.846v.845c0 .466-.381.847-.846.847m-6.765 0c-.465 0-.846-.381-.846-.847v-.845c0-.465.381-.846.846-.846.466 0 .847.381.847.846v.845c0 .466-.381.847-.847.847"/><path fill="#FFE51E" d="M7.784 17.909c-.021-1-.044-.224-.044-.465 0-3.422 2.053.494 2.053-1.943 0-2.438 1.368-2.683 2.736-4.051.685-.685 2.053-2.026 2.053-2.026s3.421 2.067 6.158 2.067c2.736 0 5.474 1.375 5.474 4.112 0 2.736 2.053-1.584 2.053 1.837 0 .244-.022-.531-.04.469h.719c.006-2 .006-1.924.006-3.202C28.951 5.813 22.11 2.5 18.003 2.5c-4.105 0-10.947 3.257-10.947 12.152 0 .793-.02 1.257.008 3.257h.72z"/><path fill="#F2D1A1" d="M11.503 14.845c0 1.448-.734 2.622-1.639 2.622s-1.639-1.174-1.639-2.622.734-2.623 1.639-2.623 1.639 1.175 1.639 2.623m16.389 0c0 1.448-.733 2.622-1.639 2.622-.905 0-1.639-1.174-1.639-2.622s.733-2.623 1.639-2.623c.905 0 1.639 1.175 1.639 2.623"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#FFE51E" d="M18.004 3.979c4.104 0 10.947 2.053 10.947 10.947 0 8.895 0 10.948-2.053 10.948s-4.79-2.053-8.894-2.053c-4.106 0-6.785 2.053-8.896 2.053-2.287 0-2.053-8.211-2.053-10.948 0-8.895 6.844-10.947 10.949-10.947"/><path fill="#292F33" d="M31 36v-4.5c0-3.314-3.56-5.5-6.875-5.5h-12C8.812 26 5 28.186 5 31.5V36h26z"/><path fill="#F3D2A2" d="M14.5 26c1 1.982 2.792 2 3.5 2s2.512-.049 3.5-2v-3.591h-7V26z"/><path fill="#E2C196" d="M14.5 24.054c.975 1.102 2.185 1.4 3.499 1.4 1.315 0 2.526-.298 3.501-1.4v-1.051h-7v1.051z"/><path fill="#546170" d="M13.95 29.603l-3.863-.825L11.808 26l2.142.003z"/><path fill="#66757F" d="M16.078 36h-2.406l-4.485-7.9 2.621.831 1.571-1.983z"/><path fill="#546170" d="M22.05 29.603l3.863-.825L24.192 26l-2.141.003z"/><path fill="#66757F" d="M19.922 36h2.406l4.485-7.9-2.621.831-1.57-1.983z"/><path fill="#DFE7EC" d="M20.145 36l3.011-10L18 27l-5.156-1 3.011 10z"/><circle fill="#292F33" cx="18" cy="30.796" r=".625"/><circle fill="#292F33" cx="18" cy="33.396" r=".625"/><path fill="#292F33" d="M18 35.375c-.345 0-.625.28-.625.625h1.25c0-.345-.28-.625-.625-.625z"/><path fill="#F4F7F9" d="M14.294 24.872L18 26.966l-2.417 2.564-2.74-3.53zm7.412 0L18 26.966l2.417 2.564 2.74-3.53z"/><path fill="#292F33" d="M20.781 26.053c-.072-.043-.159-.043-.231-.003l-2.551 1.402-2.551-1.402c-.072-.04-.159-.039-.231.003-.071.042-.115.119-.115.201v2.928c0 .082.044.159.115.201.037.021.078.032.119.032.039 0 .077-.01.112-.029l2.551-1.402 2.551 1.402c.035.02.073.029.112.029.041 0 .082-.011.119-.032.07-.042.114-.119.114-.201v-2.928c.001-.082-.043-.159-.114-.201z"/><path fill="#F3D2A2" d="M9.793 14.627c0-5.834 3.676-10.563 8.211-10.563 4.533 0 8.209 4.729 8.209 10.563 0 5.833-3.676 10.285-8.209 10.285-4.535 0-8.211-4.452-8.211-10.285"/><path fill="#DF1F32" d="M18.004 22.452c-1.606 0-2.447-.794-2.537-.885-.268-.267-.268-.7 0-.967.266-.265.692-.267.961-.007.035.032.551.491 1.576.491 1.038 0 1.555-.473 1.576-.492.273-.256.703-.248.963.019.26.269.26.691-.004.955-.09.092-.929.886-2.535.886"/><path fill="#C1694F" d="M18.895 19.409h-1.69c-.233 0-.423-.189-.423-.423v-.153c0-.233.189-.424.423-.424h1.69c.233 0 .424.19.424.424v.153c0 .234-.191.423-.424.423"/><path fill="#662113" d="M21.432 16.796c-.465 0-.846-.381-.846-.847v-.845c0-.465.381-.846.846-.846.465 0 .846.381.846.846v.845c0 .466-.381.847-.846.847m-6.765 0c-.465 0-.846-.381-.846-.847v-.845c0-.465.381-.846.846-.846.466 0 .847.381.847.846v.845c0 .466-.381.847-.847.847"/><path fill="#FFE51E" d="M7.784 17.909c-.021-1-.044-.224-.044-.465 0-3.422 2.053.494 2.053-1.943 0-2.438 1.368-2.683 2.736-4.051.685-.685 2.053-2.026 2.053-2.026s3.421 2.067 6.158 2.067c2.736 0 5.474 1.375 5.474 4.112 0 2.736 2.053-1.584 2.053 1.837 0 .244-.022-.531-.04.469h.719c.006-2 .006-1.924.006-3.202C28.951 5.813 22.11 2.5 18.003 2.5c-4.105 0-10.947 3.257-10.947 12.152 0 .793-.02 1.257.008 3.257h.72z"/><path fill="#F3D2A2" d="M11.503 14.845c0 1.448-.734 2.622-1.639 2.622s-1.639-1.174-1.639-2.622.734-2.623 1.639-2.623 1.639 1.175 1.639 2.623m16.389 0c0 1.448-.733 2.622-1.639 2.622-.905 0-1.639-1.174-1.639-2.622s.733-2.623 1.639-2.623c.905 0 1.639 1.175 1.639 2.623"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f935-1f3fc-200d-2642-fe0f.svg b/public/emoji/1f935-1f3fc-200d-2642-fe0f.svg
index da0f7e5f46f1fe8a2599af6ba34e13dc44c8b4ed..f7093beb715a8ba502885fd373777c5c05d02023 100644
--- a/public/emoji/1f935-1f3fc-200d-2642-fe0f.svg
+++ b/public/emoji/1f935-1f3fc-200d-2642-fe0f.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#292F33" d="M32 36v-4c0-3.314-2.685-6-6-6H10c-3.313 0-6 2.686-6 6v4h28z"/><path fill="#DFE7EC" d="M20.805 36l2.862-10.017H12.333L15.195 36z"/><path fill="#292F33" d="M18.698 31.846c0 .386-.313.699-.699.699-.386 0-.699-.313-.699-.699 0-.386.313-.699.699-.699.386 0 .699.313.699.699zm0 2.858c0 .386-.313.699-.699.699-.386 0-.699-.313-.699-.699 0-.386.313-.699.699-.699.386 0 .699.312.699.699z"/><path fill="#66757F" d="M23.29 36l-.332-.543 3.542-.974-2.833-8.5L20.805 36zm-10.58 0l.332-.543-3.542-.974 2.833-8.5L15.195 36z"/><path fill="#F2D1A1" d="M14 25.887l4 1.75 4-1.75v-4h-8z"/><path fill="#E0BF94" d="M14 24c1.216 1.374 2.355 1.719 3.996 1.719 1.639 0 2.787-.346 4.004-1.719v-4h-8v4z"/><path fill="#F2D1A1" d="M27.833 13.935c0-1.448-.733-2.623-1.639-2.623-.082 0-.161.02-.24.039C24.73 7.546 21.635 4.839 18 4.839s-6.729 2.707-7.955 6.512c-.079-.019-.158-.039-.24-.039-.905 0-1.639 1.175-1.639 2.623 0 1.33.621 2.417 1.423 2.587.634 4.845 4.153 8.557 8.411 8.557s7.776-3.712 8.411-8.557c.802-.17 1.422-1.257 1.422-2.587z"/><path fill="#F4F7F9" d="M13.927 24.744L18 27.637l-2.656 2.818-3.011-4.472zm8.146 0L18 27.637l2.656 2.818 3.011-4.472z"/><path fill="#292F33" d="M21.045 26.653c-.072-.043-.159-.043-.231-.003L18 28.197l-2.814-1.547c-.072-.04-.159-.039-.231.003-.071.042-.115.119-.115.201v3.218c0 .082.044.159.115.201.037.021.078.032.119.032.039 0 .077-.01.112-.029L18 28.728l2.814 1.548c.035.02.073.029.112.029.041 0 .082-.011.119-.032.07-.042.114-.119.114-.201v-3.218c0-.082-.044-.159-.114-.201z"/><path fill="#C1694F" d="M18 21.802c-2.754 0-3.6-.705-3.741-.848-.256-.256-.256-.671 0-.927.248-.248.646-.255.902-.023.052.037.721.487 2.839.487 2.2 0 2.836-.485 2.842-.49.256-.255.657-.243.913.015.256.256.242.683-.014.938-.141.143-.987.848-3.741.848m.75-4.052h-1.5c-.413 0-.75-.337-.75-.75s.337-.75.75-.75h1.5c.413 0 .75.337.75.75s-.337.75-.75.75"/><path fill="#662213" d="M22 15c-.55 0-1-.45-1-1v-1c0-.55.45-1 1-1s1 .45 1 1v1c0 .55-.45 1-1 1m-8 0c-.55 0-1-.45-1-1v-1c0-.55.45-1 1-1s1 .45 1 1v1c0 .55-.45 1-1 1"/><path fill="#FFE51E" d="M18 1.48c5.648 0 9.178 4.168 9.178 7.641s-.706 4.863-1.412 3.473l-1.412-2.778s-4.235 0-5.647-1.39c0 0 2.118 4.168-2.118 0 0 0 .706 2.779-3.53-.694 0 0-2.118 1.389-2.824 4.862-.196.964-1.412 0-1.412-3.473C8.822 5.648 11.646 1.48 18 1.48"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#292F33" d="M32 36v-4c0-3.314-2.685-6-6-6H10c-3.313 0-6 2.686-6 6v4h28z"/><path fill="#546170" d="M22.5 30.003l4.292-.916L24.879 26l-2.379.003z"/><path fill="#66757F" d="M20.58 36h2.83l4.382-7.667-2.913.924-1.744-2.204z"/><path fill="#546170" d="M13.5 30.003l-4.292-.916L11.12 26l2.38.003z"/><path fill="#66757F" d="M15.42 36h-2.83l-4.382-7.667 2.912.924 1.745-2.204z"/><path fill="#DFE7EC" d="M20.805 36l2.862-10.017H12.333L15.195 36z"/><circle fill="#292F33" cx="18" cy="31.847" r=".7"/><circle fill="#292F33" cx="18" cy="34.704" r=".7"/><path fill="#F3D2A2" d="M14 25.887l4 1.75 4-1.75v-4h-8z"/><path fill="#E2C196" d="M14 24c1.216 1.374 2.355 1.719 3.996 1.719 1.639 0 2.787-.346 4.004-1.719v-4h-8v4z"/><path fill="#F3D2A2" d="M27.833 13.935c0-1.448-.733-2.623-1.639-2.623-.082 0-.161.02-.24.039C24.73 7.546 21.635 4.839 18 4.839s-6.729 2.707-7.955 6.512c-.079-.019-.158-.039-.24-.039-.905 0-1.639 1.175-1.639 2.623 0 1.33.621 2.417 1.423 2.587.634 4.845 4.153 8.557 8.411 8.557s7.776-3.712 8.411-8.557c.802-.17 1.422-1.257 1.422-2.587z"/><path fill="#F4F7F9" d="M13.927 24.744L18 27.637l-2.656 2.818-3.011-4.472zm8.146 0L18 27.637l2.656 2.818 3.011-4.472z"/><path fill="#292F33" d="M21.045 26.653c-.072-.043-.159-.043-.231-.003L18 28.197l-2.814-1.547c-.072-.04-.159-.039-.231.003-.071.042-.115.119-.115.201v3.218c0 .082.044.159.115.201.037.021.078.032.119.032.039 0 .077-.01.112-.029L18 28.728l2.814 1.548c.035.02.073.029.112.029.041 0 .082-.011.119-.032.07-.042.114-.119.114-.201v-3.218c0-.082-.044-.159-.114-.201z"/><path fill="#C1694F" d="M18 21.802c-2.754 0-3.6-.705-3.741-.848-.256-.256-.256-.671 0-.927.248-.248.646-.255.902-.023.052.037.721.487 2.839.487 2.2 0 2.836-.485 2.842-.49.256-.255.657-.243.913.015.256.256.242.683-.014.938-.141.143-.987.848-3.741.848m.75-4.052h-1.5c-.413 0-.75-.337-.75-.75s.337-.75.75-.75h1.5c.413 0 .75.337.75.75s-.337.75-.75.75"/><path fill="#662113" d="M22 15c-.55 0-1-.45-1-1v-1c0-.55.45-1 1-1s1 .45 1 1v1c0 .55-.45 1-1 1m-8 0c-.55 0-1-.45-1-1v-1c0-.55.45-1 1-1s1 .45 1 1v1c0 .55-.45 1-1 1"/><path fill="#FFE51E" d="M18 1.48c5.648 0 9.178 4.168 9.178 7.641s-.706 4.863-1.412 3.473l-1.412-2.778s-4.235 0-5.647-1.39c0 0 2.118 4.168-2.118 0 0 0 .706 2.779-3.53-.694 0 0-2.118 1.389-2.824 4.862-.196.964-1.412 0-1.412-3.473C8.822 5.648 11.646 1.48 18 1.48"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f935-1f3fc.svg b/public/emoji/1f935-1f3fc.svg
index da0f7e5f46f1fe8a2599af6ba34e13dc44c8b4ed..f7093beb715a8ba502885fd373777c5c05d02023 100644
--- a/public/emoji/1f935-1f3fc.svg
+++ b/public/emoji/1f935-1f3fc.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#292F33" d="M32 36v-4c0-3.314-2.685-6-6-6H10c-3.313 0-6 2.686-6 6v4h28z"/><path fill="#DFE7EC" d="M20.805 36l2.862-10.017H12.333L15.195 36z"/><path fill="#292F33" d="M18.698 31.846c0 .386-.313.699-.699.699-.386 0-.699-.313-.699-.699 0-.386.313-.699.699-.699.386 0 .699.313.699.699zm0 2.858c0 .386-.313.699-.699.699-.386 0-.699-.313-.699-.699 0-.386.313-.699.699-.699.386 0 .699.312.699.699z"/><path fill="#66757F" d="M23.29 36l-.332-.543 3.542-.974-2.833-8.5L20.805 36zm-10.58 0l.332-.543-3.542-.974 2.833-8.5L15.195 36z"/><path fill="#F2D1A1" d="M14 25.887l4 1.75 4-1.75v-4h-8z"/><path fill="#E0BF94" d="M14 24c1.216 1.374 2.355 1.719 3.996 1.719 1.639 0 2.787-.346 4.004-1.719v-4h-8v4z"/><path fill="#F2D1A1" d="M27.833 13.935c0-1.448-.733-2.623-1.639-2.623-.082 0-.161.02-.24.039C24.73 7.546 21.635 4.839 18 4.839s-6.729 2.707-7.955 6.512c-.079-.019-.158-.039-.24-.039-.905 0-1.639 1.175-1.639 2.623 0 1.33.621 2.417 1.423 2.587.634 4.845 4.153 8.557 8.411 8.557s7.776-3.712 8.411-8.557c.802-.17 1.422-1.257 1.422-2.587z"/><path fill="#F4F7F9" d="M13.927 24.744L18 27.637l-2.656 2.818-3.011-4.472zm8.146 0L18 27.637l2.656 2.818 3.011-4.472z"/><path fill="#292F33" d="M21.045 26.653c-.072-.043-.159-.043-.231-.003L18 28.197l-2.814-1.547c-.072-.04-.159-.039-.231.003-.071.042-.115.119-.115.201v3.218c0 .082.044.159.115.201.037.021.078.032.119.032.039 0 .077-.01.112-.029L18 28.728l2.814 1.548c.035.02.073.029.112.029.041 0 .082-.011.119-.032.07-.042.114-.119.114-.201v-3.218c0-.082-.044-.159-.114-.201z"/><path fill="#C1694F" d="M18 21.802c-2.754 0-3.6-.705-3.741-.848-.256-.256-.256-.671 0-.927.248-.248.646-.255.902-.023.052.037.721.487 2.839.487 2.2 0 2.836-.485 2.842-.49.256-.255.657-.243.913.015.256.256.242.683-.014.938-.141.143-.987.848-3.741.848m.75-4.052h-1.5c-.413 0-.75-.337-.75-.75s.337-.75.75-.75h1.5c.413 0 .75.337.75.75s-.337.75-.75.75"/><path fill="#662213" d="M22 15c-.55 0-1-.45-1-1v-1c0-.55.45-1 1-1s1 .45 1 1v1c0 .55-.45 1-1 1m-8 0c-.55 0-1-.45-1-1v-1c0-.55.45-1 1-1s1 .45 1 1v1c0 .55-.45 1-1 1"/><path fill="#FFE51E" d="M18 1.48c5.648 0 9.178 4.168 9.178 7.641s-.706 4.863-1.412 3.473l-1.412-2.778s-4.235 0-5.647-1.39c0 0 2.118 4.168-2.118 0 0 0 .706 2.779-3.53-.694 0 0-2.118 1.389-2.824 4.862-.196.964-1.412 0-1.412-3.473C8.822 5.648 11.646 1.48 18 1.48"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#292F33" d="M32 36v-4c0-3.314-2.685-6-6-6H10c-3.313 0-6 2.686-6 6v4h28z"/><path fill="#546170" d="M22.5 30.003l4.292-.916L24.879 26l-2.379.003z"/><path fill="#66757F" d="M20.58 36h2.83l4.382-7.667-2.913.924-1.744-2.204z"/><path fill="#546170" d="M13.5 30.003l-4.292-.916L11.12 26l2.38.003z"/><path fill="#66757F" d="M15.42 36h-2.83l-4.382-7.667 2.912.924 1.745-2.204z"/><path fill="#DFE7EC" d="M20.805 36l2.862-10.017H12.333L15.195 36z"/><circle fill="#292F33" cx="18" cy="31.847" r=".7"/><circle fill="#292F33" cx="18" cy="34.704" r=".7"/><path fill="#F3D2A2" d="M14 25.887l4 1.75 4-1.75v-4h-8z"/><path fill="#E2C196" d="M14 24c1.216 1.374 2.355 1.719 3.996 1.719 1.639 0 2.787-.346 4.004-1.719v-4h-8v4z"/><path fill="#F3D2A2" d="M27.833 13.935c0-1.448-.733-2.623-1.639-2.623-.082 0-.161.02-.24.039C24.73 7.546 21.635 4.839 18 4.839s-6.729 2.707-7.955 6.512c-.079-.019-.158-.039-.24-.039-.905 0-1.639 1.175-1.639 2.623 0 1.33.621 2.417 1.423 2.587.634 4.845 4.153 8.557 8.411 8.557s7.776-3.712 8.411-8.557c.802-.17 1.422-1.257 1.422-2.587z"/><path fill="#F4F7F9" d="M13.927 24.744L18 27.637l-2.656 2.818-3.011-4.472zm8.146 0L18 27.637l2.656 2.818 3.011-4.472z"/><path fill="#292F33" d="M21.045 26.653c-.072-.043-.159-.043-.231-.003L18 28.197l-2.814-1.547c-.072-.04-.159-.039-.231.003-.071.042-.115.119-.115.201v3.218c0 .082.044.159.115.201.037.021.078.032.119.032.039 0 .077-.01.112-.029L18 28.728l2.814 1.548c.035.02.073.029.112.029.041 0 .082-.011.119-.032.07-.042.114-.119.114-.201v-3.218c0-.082-.044-.159-.114-.201z"/><path fill="#C1694F" d="M18 21.802c-2.754 0-3.6-.705-3.741-.848-.256-.256-.256-.671 0-.927.248-.248.646-.255.902-.023.052.037.721.487 2.839.487 2.2 0 2.836-.485 2.842-.49.256-.255.657-.243.913.015.256.256.242.683-.014.938-.141.143-.987.848-3.741.848m.75-4.052h-1.5c-.413 0-.75-.337-.75-.75s.337-.75.75-.75h1.5c.413 0 .75.337.75.75s-.337.75-.75.75"/><path fill="#662113" d="M22 15c-.55 0-1-.45-1-1v-1c0-.55.45-1 1-1s1 .45 1 1v1c0 .55-.45 1-1 1m-8 0c-.55 0-1-.45-1-1v-1c0-.55.45-1 1-1s1 .45 1 1v1c0 .55-.45 1-1 1"/><path fill="#FFE51E" d="M18 1.48c5.648 0 9.178 4.168 9.178 7.641s-.706 4.863-1.412 3.473l-1.412-2.778s-4.235 0-5.647-1.39c0 0 2.118 4.168-2.118 0 0 0 .706 2.779-3.53-.694 0 0-2.118 1.389-2.824 4.862-.196.964-1.412 0-1.412-3.473C8.822 5.648 11.646 1.48 18 1.48"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f935-1f3fd-200d-2640-fe0f.svg b/public/emoji/1f935-1f3fd-200d-2640-fe0f.svg
index 1e4f6197b2d2c9f50308dcae5b045c512fa06350..35d0ab5d3d027ea989fbf74cfa295e7ee176e1f1 100644
--- a/public/emoji/1f935-1f3fd-200d-2640-fe0f.svg
+++ b/public/emoji/1f935-1f3fd-200d-2640-fe0f.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#963B22" d="M18.004 3.979c4.104 0 10.947 2.053 10.947 10.947 0 8.895 0 10.948-2.053 10.948s-4.79-2.053-8.894-2.053c-4.106 0-6.785 2.053-8.896 2.053-2.287 0-2.053-8.211-2.053-10.948 0-8.895 6.844-10.947 10.949-10.947"/><path fill="#292F33" d="M31 36v-4.5c0-3.314-3.56-5.5-6.875-5.5h-12C8.812 26 5 28.186 5 31.5V36h26z"/><path fill="#D4AB88" d="M14.5 26c1 1.982 2.792 2 3.5 2s2.512-.049 3.5-2v-3.591h-7V26z"/><path fill="#CB9A7A" d="M14.5 24.054c.975 1.102 2.185 1.4 3.499 1.4 1.315 0 2.526-.298 3.501-1.4v-1.051h-7v1.051z"/><path fill="#DFE7EC" d="M20.145 36l3.011-10L18 27l-5.156-1 3.011 10z"/><path fill="#66757F" d="M23.684 36l-1.172-1.918 3.223-.886L23.156 26l-3.011 10zm-11.368 0l1.172-1.918-3.223-.886L12.844 26l3.011 10z"/><path fill="#292F33" d="M18.635 30.796c0 .352-.285.636-.636.636s-.636-.285-.636-.636c0-.351.285-.636.636-.636s.636.285.636.636zm0 2.6c0 .352-.285.636-.636.636s-.636-.285-.636-.636c0-.351.285-.636.636-.636s.636.285.636.636zm-.636 1.965c-.351 0-.636.285-.636.636h1.273c-.001-.352-.285-.636-.637-.636z"/><path fill="#F4F7F9" d="M14.294 24.872L18 26.966l-2.417 2.564-2.74-3.53zm7.412 0L18 26.966l2.417 2.564 2.74-3.53z"/><path fill="#292F33" d="M20.781 26.053c-.072-.043-.159-.043-.231-.003l-2.551 1.402-2.551-1.402c-.072-.04-.159-.039-.231.003-.071.042-.115.119-.115.201v2.928c0 .082.044.159.115.201.037.021.078.032.119.032.039 0 .077-.01.112-.029l2.551-1.402 2.551 1.402c.035.02.073.029.112.029.041 0 .082-.011.119-.032.07-.042.114-.119.114-.201v-2.928c.001-.082-.043-.159-.114-.201z"/><path fill="#D4AB88" d="M9.793 14.627c0-5.834 3.676-10.563 8.211-10.563 4.533 0 8.209 4.729 8.209 10.563 0 5.833-3.676 10.285-8.209 10.285-4.535 0-8.211-4.452-8.211-10.285"/><path fill="#DE2032" d="M18.004 22.452c-1.606 0-2.447-.794-2.537-.885-.268-.267-.268-.7 0-.967.266-.265.692-.267.961-.007.035.032.551.491 1.576.491 1.038 0 1.555-.473 1.576-.492.273-.256.703-.248.963.019.26.269.26.691-.004.955-.09.092-.929.886-2.535.886"/><path fill="#C1694F" d="M18.895 19.409h-1.69c-.233 0-.423-.189-.423-.423v-.153c0-.233.189-.424.423-.424h1.69c.233 0 .424.19.424.424v.153c0 .234-.191.423-.424.423"/><path fill="#662213" d="M21.432 16.796c-.465 0-.846-.381-.846-.847v-.845c0-.465.381-.846.846-.846.465 0 .846.381.846.846v.845c0 .466-.381.847-.846.847m-6.765 0c-.465 0-.846-.381-.846-.847v-.845c0-.465.381-.846.846-.846.466 0 .847.381.847.846v.845c0 .466-.381.847-.847.847"/><path fill="#963B22" d="M7.784 17.909c-.021-1-.044-.224-.044-.465 0-3.422 2.053.494 2.053-1.943 0-2.438 1.368-2.683 2.736-4.051.685-.685 2.053-2.026 2.053-2.026s3.421 2.067 6.158 2.067c2.736 0 5.474 1.375 5.474 4.112 0 2.736 2.053-1.584 2.053 1.837 0 .244-.022-.531-.04.469h.719c.006-2 .006-1.924.006-3.202C28.951 5.813 22.11 2.5 18.003 2.5c-4.105 0-10.947 3.257-10.947 12.152 0 .793-.02 1.257.008 3.257h.72z"/><path fill="#D4AB88" d="M11.503 14.845c0 1.448-.734 2.622-1.639 2.622s-1.639-1.174-1.639-2.622.734-2.623 1.639-2.623 1.639 1.175 1.639 2.623m16.389 0c0 1.448-.733 2.622-1.639 2.622-.905 0-1.639-1.174-1.639-2.622s.733-2.623 1.639-2.623c.905 0 1.639 1.175 1.639 2.623"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#963B22" d="M18.004 3.979c4.104 0 10.947 2.053 10.947 10.947 0 8.895 0 10.948-2.053 10.948s-4.79-2.053-8.894-2.053c-4.106 0-6.785 2.053-8.896 2.053-2.287 0-2.053-8.211-2.053-10.948 0-8.895 6.844-10.947 10.949-10.947"/><path fill="#292F33" d="M31 36v-4.5c0-3.314-3.56-5.5-6.875-5.5h-12C8.812 26 5 28.186 5 31.5V36h26z"/><path fill="#D4AB88" d="M14.5 26c1 1.982 2.792 2 3.5 2s2.512-.049 3.5-2v-3.591h-7V26z"/><path fill="#CC9B7A" d="M14.5 24.054c.975 1.102 2.185 1.4 3.499 1.4 1.315 0 2.526-.298 3.501-1.4v-1.051h-7v1.051z"/><path fill="#546170" d="M13.95 29.603l-3.863-.825L11.808 26l2.142.003z"/><path fill="#66757F" d="M16.078 36h-2.406l-4.485-7.9 2.621.831 1.571-1.983z"/><path fill="#546170" d="M22.05 29.603l3.863-.825L24.192 26l-2.141.003z"/><path fill="#66757F" d="M19.922 36h2.406l4.485-7.9-2.621.831-1.57-1.983z"/><path fill="#DFE7EC" d="M20.145 36l3.011-10L18 27l-5.156-1 3.011 10z"/><circle fill="#292F33" cx="18" cy="30.796" r=".625"/><circle fill="#292F33" cx="18" cy="33.396" r=".625"/><path fill="#292F33" d="M18 35.375c-.345 0-.625.28-.625.625h1.25c0-.345-.28-.625-.625-.625z"/><path fill="#F4F7F9" d="M14.294 24.872L18 26.966l-2.417 2.564-2.74-3.53zm7.412 0L18 26.966l2.417 2.564 2.74-3.53z"/><path fill="#292F33" d="M20.781 26.053c-.072-.043-.159-.043-.231-.003l-2.551 1.402-2.551-1.402c-.072-.04-.159-.039-.231.003-.071.042-.115.119-.115.201v2.928c0 .082.044.159.115.201.037.021.078.032.119.032.039 0 .077-.01.112-.029l2.551-1.402 2.551 1.402c.035.02.073.029.112.029.041 0 .082-.011.119-.032.07-.042.114-.119.114-.201v-2.928c.001-.082-.043-.159-.114-.201z"/><path fill="#D4AB88" d="M9.793 14.627c0-5.834 3.676-10.563 8.211-10.563 4.533 0 8.209 4.729 8.209 10.563 0 5.833-3.676 10.285-8.209 10.285-4.535 0-8.211-4.452-8.211-10.285"/><path fill="#DF1F32" d="M18.004 22.452c-1.606 0-2.447-.794-2.537-.885-.268-.267-.268-.7 0-.967.266-.265.692-.267.961-.007.035.032.551.491 1.576.491 1.038 0 1.555-.473 1.576-.492.273-.256.703-.248.963.019.26.269.26.691-.004.955-.09.092-.929.886-2.535.886"/><path fill="#C1694F" d="M18.895 19.409h-1.69c-.233 0-.423-.189-.423-.423v-.153c0-.233.189-.424.423-.424h1.69c.233 0 .424.19.424.424v.153c0 .234-.191.423-.424.423"/><path fill="#662113" d="M21.432 16.796c-.465 0-.846-.381-.846-.847v-.845c0-.465.381-.846.846-.846.465 0 .846.381.846.846v.845c0 .466-.381.847-.846.847m-6.765 0c-.465 0-.846-.381-.846-.847v-.845c0-.465.381-.846.846-.846.466 0 .847.381.847.846v.845c0 .466-.381.847-.847.847"/><path fill="#963B22" d="M7.784 17.909c-.021-1-.044-.224-.044-.465 0-3.422 2.053.494 2.053-1.943 0-2.438 1.368-2.683 2.736-4.051.685-.685 2.053-2.026 2.053-2.026s3.421 2.067 6.158 2.067c2.736 0 5.474 1.375 5.474 4.112 0 2.736 2.053-1.584 2.053 1.837 0 .244-.022-.531-.04.469h.719c.006-2 .006-1.924.006-3.202C28.951 5.813 22.11 2.5 18.003 2.5c-4.105 0-10.947 3.257-10.947 12.152 0 .793-.02 1.257.008 3.257h.72z"/><path fill="#D4AB88" d="M11.503 14.845c0 1.448-.734 2.622-1.639 2.622s-1.639-1.174-1.639-2.622.734-2.623 1.639-2.623 1.639 1.175 1.639 2.623m16.389 0c0 1.448-.733 2.622-1.639 2.622-.905 0-1.639-1.174-1.639-2.622s.733-2.623 1.639-2.623c.905 0 1.639 1.175 1.639 2.623"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f935-1f3fd-200d-2642-fe0f.svg b/public/emoji/1f935-1f3fd-200d-2642-fe0f.svg
index 2268bf01d7a957b4c40f1d8bf69722f1d6aa8531..5ed3aa32aac19428ceeae9a9dad5e7365ce8b0cb 100644
--- a/public/emoji/1f935-1f3fd-200d-2642-fe0f.svg
+++ b/public/emoji/1f935-1f3fd-200d-2642-fe0f.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#292F33" d="M32 36v-4c0-3.314-2.685-6-6-6H10c-3.313 0-6 2.686-6 6v4h28z"/><path fill="#DFE7EC" d="M20.805 36l2.862-10.017H12.333L15.195 36z"/><path fill="#292F33" d="M18.698 31.846c0 .386-.313.699-.699.699-.386 0-.699-.313-.699-.699 0-.386.313-.699.699-.699.386 0 .699.313.699.699zm0 2.858c0 .386-.313.699-.699.699-.386 0-.699-.313-.699-.699 0-.386.313-.699.699-.699.386 0 .699.312.699.699z"/><path fill="#66757F" d="M23.29 36l-.332-.543 3.542-.974-2.833-8.5L20.805 36zm-10.58 0l.332-.543-3.542-.974 2.833-8.5L15.195 36z"/><path fill="#D4AB88" d="M14 25.887l4 1.75 4-1.75v-4h-8z"/><path fill="#CB9A7A" d="M14 24c1.216 1.374 2.355 1.719 3.996 1.719 1.639 0 2.787-.346 4.004-1.719v-4h-8v4z"/><path fill="#D4AB88" d="M27.833 13.935c0-1.448-.733-2.623-1.639-2.623-.082 0-.161.02-.24.039C24.73 7.546 21.635 4.839 18 4.839s-6.729 2.707-7.955 6.512c-.079-.019-.158-.039-.24-.039-.905 0-1.639 1.175-1.639 2.623 0 1.33.621 2.417 1.423 2.587.634 4.845 4.153 8.557 8.411 8.557s7.776-3.712 8.411-8.557c.802-.17 1.422-1.257 1.422-2.587z"/><path fill="#F4F7F9" d="M13.927 24.744L18 27.637l-2.656 2.818-3.011-4.472zm8.146 0L18 27.637l2.656 2.818 3.011-4.472z"/><path fill="#292F33" d="M21.045 26.653c-.072-.043-.159-.043-.231-.003L18 28.197l-2.814-1.547c-.072-.04-.159-.039-.231.003-.071.042-.115.119-.115.201v3.218c0 .082.044.159.115.201.037.021.078.032.119.032.039 0 .077-.01.112-.029L18 28.728l2.814 1.548c.035.02.073.029.112.029.041 0 .082-.011.119-.032.07-.042.114-.119.114-.201v-3.218c0-.082-.044-.159-.114-.201z"/><path fill="#C1694F" d="M18 21.802c-2.754 0-3.6-.705-3.741-.848-.256-.256-.256-.671 0-.927.248-.248.646-.255.902-.023.052.037.721.487 2.839.487 2.2 0 2.836-.485 2.842-.49.256-.255.657-.243.913.015.256.256.242.683-.014.938-.141.143-.987.848-3.741.848m.75-4.052h-1.5c-.413 0-.75-.337-.75-.75s.337-.75.75-.75h1.5c.413 0 .75.337.75.75s-.337.75-.75.75"/><path fill="#662213" d="M22 15c-.55 0-1-.45-1-1v-1c0-.55.45-1 1-1s1 .45 1 1v1c0 .55-.45 1-1 1m-8 0c-.55 0-1-.45-1-1v-1c0-.55.45-1 1-1s1 .45 1 1v1c0 .55-.45 1-1 1"/><path fill="#963B22" d="M18 1.48c5.648 0 9.178 4.168 9.178 7.641s-.706 4.863-1.412 3.473l-1.412-2.778s-4.235 0-5.647-1.39c0 0 2.118 4.168-2.118 0 0 0 .706 2.779-3.53-.694 0 0-2.118 1.389-2.824 4.862-.196.964-1.412 0-1.412-3.473C8.822 5.648 11.646 1.48 18 1.48"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#292F33" d="M32 36v-4c0-3.314-2.685-6-6-6H10c-3.313 0-6 2.686-6 6v4h28z"/><path fill="#546170" d="M22.5 30.003l4.292-.916L24.879 26l-2.379.003z"/><path fill="#66757F" d="M20.58 36h2.83l4.382-7.667-2.913.924-1.744-2.204z"/><path fill="#546170" d="M13.5 30.003l-4.292-.916L11.12 26l2.38.003z"/><path fill="#66757F" d="M15.42 36h-2.83l-4.382-7.667 2.912.924 1.745-2.204z"/><path fill="#DFE7EC" d="M20.805 36l2.862-10.017H12.333L15.195 36z"/><circle fill="#292F33" cx="18" cy="31.847" r=".7"/><circle fill="#292F33" cx="18" cy="34.704" r=".7"/><path fill="#D4AB88" d="M14 25.887l4 1.75 4-1.75v-4h-8z"/><path fill="#CC9B7A" d="M14 24c1.216 1.374 2.355 1.719 3.996 1.719 1.639 0 2.787-.346 4.004-1.719v-4h-8v4z"/><path fill="#D4AB88" d="M27.833 13.935c0-1.448-.733-2.623-1.639-2.623-.082 0-.161.02-.24.039C24.73 7.546 21.635 4.839 18 4.839s-6.729 2.707-7.955 6.512c-.079-.019-.158-.039-.24-.039-.905 0-1.639 1.175-1.639 2.623 0 1.33.621 2.417 1.423 2.587.634 4.845 4.153 8.557 8.411 8.557s7.776-3.712 8.411-8.557c.802-.17 1.422-1.257 1.422-2.587z"/><path fill="#F4F7F9" d="M13.927 24.744L18 27.637l-2.656 2.818-3.011-4.472zm8.146 0L18 27.637l2.656 2.818 3.011-4.472z"/><path fill="#292F33" d="M21.045 26.653c-.072-.043-.159-.043-.231-.003L18 28.197l-2.814-1.547c-.072-.04-.159-.039-.231.003-.071.042-.115.119-.115.201v3.218c0 .082.044.159.115.201.037.021.078.032.119.032.039 0 .077-.01.112-.029L18 28.728l2.814 1.548c.035.02.073.029.112.029.041 0 .082-.011.119-.032.07-.042.114-.119.114-.201v-3.218c0-.082-.044-.159-.114-.201z"/><path fill="#C1694F" d="M18 21.802c-2.754 0-3.6-.705-3.741-.848-.256-.256-.256-.671 0-.927.248-.248.646-.255.902-.023.052.037.721.487 2.839.487 2.2 0 2.836-.485 2.842-.49.256-.255.657-.243.913.015.256.256.242.683-.014.938-.141.143-.987.848-3.741.848m.75-4.052h-1.5c-.413 0-.75-.337-.75-.75s.337-.75.75-.75h1.5c.413 0 .75.337.75.75s-.337.75-.75.75"/><path fill="#662113" d="M22 15c-.55 0-1-.45-1-1v-1c0-.55.45-1 1-1s1 .45 1 1v1c0 .55-.45 1-1 1m-8 0c-.55 0-1-.45-1-1v-1c0-.55.45-1 1-1s1 .45 1 1v1c0 .55-.45 1-1 1"/><path fill="#963B22" d="M18 1.48c5.648 0 9.178 4.168 9.178 7.641s-.706 4.863-1.412 3.473l-1.412-2.778s-4.235 0-5.647-1.39c0 0 2.118 4.168-2.118 0 0 0 .706 2.779-3.53-.694 0 0-2.118 1.389-2.824 4.862-.196.964-1.412 0-1.412-3.473C8.822 5.648 11.646 1.48 18 1.48"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f935-1f3fd.svg b/public/emoji/1f935-1f3fd.svg
index 2268bf01d7a957b4c40f1d8bf69722f1d6aa8531..5ed3aa32aac19428ceeae9a9dad5e7365ce8b0cb 100644
--- a/public/emoji/1f935-1f3fd.svg
+++ b/public/emoji/1f935-1f3fd.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#292F33" d="M32 36v-4c0-3.314-2.685-6-6-6H10c-3.313 0-6 2.686-6 6v4h28z"/><path fill="#DFE7EC" d="M20.805 36l2.862-10.017H12.333L15.195 36z"/><path fill="#292F33" d="M18.698 31.846c0 .386-.313.699-.699.699-.386 0-.699-.313-.699-.699 0-.386.313-.699.699-.699.386 0 .699.313.699.699zm0 2.858c0 .386-.313.699-.699.699-.386 0-.699-.313-.699-.699 0-.386.313-.699.699-.699.386 0 .699.312.699.699z"/><path fill="#66757F" d="M23.29 36l-.332-.543 3.542-.974-2.833-8.5L20.805 36zm-10.58 0l.332-.543-3.542-.974 2.833-8.5L15.195 36z"/><path fill="#D4AB88" d="M14 25.887l4 1.75 4-1.75v-4h-8z"/><path fill="#CB9A7A" d="M14 24c1.216 1.374 2.355 1.719 3.996 1.719 1.639 0 2.787-.346 4.004-1.719v-4h-8v4z"/><path fill="#D4AB88" d="M27.833 13.935c0-1.448-.733-2.623-1.639-2.623-.082 0-.161.02-.24.039C24.73 7.546 21.635 4.839 18 4.839s-6.729 2.707-7.955 6.512c-.079-.019-.158-.039-.24-.039-.905 0-1.639 1.175-1.639 2.623 0 1.33.621 2.417 1.423 2.587.634 4.845 4.153 8.557 8.411 8.557s7.776-3.712 8.411-8.557c.802-.17 1.422-1.257 1.422-2.587z"/><path fill="#F4F7F9" d="M13.927 24.744L18 27.637l-2.656 2.818-3.011-4.472zm8.146 0L18 27.637l2.656 2.818 3.011-4.472z"/><path fill="#292F33" d="M21.045 26.653c-.072-.043-.159-.043-.231-.003L18 28.197l-2.814-1.547c-.072-.04-.159-.039-.231.003-.071.042-.115.119-.115.201v3.218c0 .082.044.159.115.201.037.021.078.032.119.032.039 0 .077-.01.112-.029L18 28.728l2.814 1.548c.035.02.073.029.112.029.041 0 .082-.011.119-.032.07-.042.114-.119.114-.201v-3.218c0-.082-.044-.159-.114-.201z"/><path fill="#C1694F" d="M18 21.802c-2.754 0-3.6-.705-3.741-.848-.256-.256-.256-.671 0-.927.248-.248.646-.255.902-.023.052.037.721.487 2.839.487 2.2 0 2.836-.485 2.842-.49.256-.255.657-.243.913.015.256.256.242.683-.014.938-.141.143-.987.848-3.741.848m.75-4.052h-1.5c-.413 0-.75-.337-.75-.75s.337-.75.75-.75h1.5c.413 0 .75.337.75.75s-.337.75-.75.75"/><path fill="#662213" d="M22 15c-.55 0-1-.45-1-1v-1c0-.55.45-1 1-1s1 .45 1 1v1c0 .55-.45 1-1 1m-8 0c-.55 0-1-.45-1-1v-1c0-.55.45-1 1-1s1 .45 1 1v1c0 .55-.45 1-1 1"/><path fill="#963B22" d="M18 1.48c5.648 0 9.178 4.168 9.178 7.641s-.706 4.863-1.412 3.473l-1.412-2.778s-4.235 0-5.647-1.39c0 0 2.118 4.168-2.118 0 0 0 .706 2.779-3.53-.694 0 0-2.118 1.389-2.824 4.862-.196.964-1.412 0-1.412-3.473C8.822 5.648 11.646 1.48 18 1.48"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#292F33" d="M32 36v-4c0-3.314-2.685-6-6-6H10c-3.313 0-6 2.686-6 6v4h28z"/><path fill="#546170" d="M22.5 30.003l4.292-.916L24.879 26l-2.379.003z"/><path fill="#66757F" d="M20.58 36h2.83l4.382-7.667-2.913.924-1.744-2.204z"/><path fill="#546170" d="M13.5 30.003l-4.292-.916L11.12 26l2.38.003z"/><path fill="#66757F" d="M15.42 36h-2.83l-4.382-7.667 2.912.924 1.745-2.204z"/><path fill="#DFE7EC" d="M20.805 36l2.862-10.017H12.333L15.195 36z"/><circle fill="#292F33" cx="18" cy="31.847" r=".7"/><circle fill="#292F33" cx="18" cy="34.704" r=".7"/><path fill="#D4AB88" d="M14 25.887l4 1.75 4-1.75v-4h-8z"/><path fill="#CC9B7A" d="M14 24c1.216 1.374 2.355 1.719 3.996 1.719 1.639 0 2.787-.346 4.004-1.719v-4h-8v4z"/><path fill="#D4AB88" d="M27.833 13.935c0-1.448-.733-2.623-1.639-2.623-.082 0-.161.02-.24.039C24.73 7.546 21.635 4.839 18 4.839s-6.729 2.707-7.955 6.512c-.079-.019-.158-.039-.24-.039-.905 0-1.639 1.175-1.639 2.623 0 1.33.621 2.417 1.423 2.587.634 4.845 4.153 8.557 8.411 8.557s7.776-3.712 8.411-8.557c.802-.17 1.422-1.257 1.422-2.587z"/><path fill="#F4F7F9" d="M13.927 24.744L18 27.637l-2.656 2.818-3.011-4.472zm8.146 0L18 27.637l2.656 2.818 3.011-4.472z"/><path fill="#292F33" d="M21.045 26.653c-.072-.043-.159-.043-.231-.003L18 28.197l-2.814-1.547c-.072-.04-.159-.039-.231.003-.071.042-.115.119-.115.201v3.218c0 .082.044.159.115.201.037.021.078.032.119.032.039 0 .077-.01.112-.029L18 28.728l2.814 1.548c.035.02.073.029.112.029.041 0 .082-.011.119-.032.07-.042.114-.119.114-.201v-3.218c0-.082-.044-.159-.114-.201z"/><path fill="#C1694F" d="M18 21.802c-2.754 0-3.6-.705-3.741-.848-.256-.256-.256-.671 0-.927.248-.248.646-.255.902-.023.052.037.721.487 2.839.487 2.2 0 2.836-.485 2.842-.49.256-.255.657-.243.913.015.256.256.242.683-.014.938-.141.143-.987.848-3.741.848m.75-4.052h-1.5c-.413 0-.75-.337-.75-.75s.337-.75.75-.75h1.5c.413 0 .75.337.75.75s-.337.75-.75.75"/><path fill="#662113" d="M22 15c-.55 0-1-.45-1-1v-1c0-.55.45-1 1-1s1 .45 1 1v1c0 .55-.45 1-1 1m-8 0c-.55 0-1-.45-1-1v-1c0-.55.45-1 1-1s1 .45 1 1v1c0 .55-.45 1-1 1"/><path fill="#963B22" d="M18 1.48c5.648 0 9.178 4.168 9.178 7.641s-.706 4.863-1.412 3.473l-1.412-2.778s-4.235 0-5.647-1.39c0 0 2.118 4.168-2.118 0 0 0 .706 2.779-3.53-.694 0 0-2.118 1.389-2.824 4.862-.196.964-1.412 0-1.412-3.473C8.822 5.648 11.646 1.48 18 1.48"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f935-1f3fe-200d-2640-fe0f.svg b/public/emoji/1f935-1f3fe-200d-2640-fe0f.svg
index 682d58b0aebfe0e507602948548119955763da3f..5b0623609930153ea7e653f47b570687e8ee9c6a 100644
--- a/public/emoji/1f935-1f3fe-200d-2640-fe0f.svg
+++ b/public/emoji/1f935-1f3fe-200d-2640-fe0f.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#60352A" d="M18.004 3.979c4.104 0 10.947 2.053 10.947 10.947 0 8.895 0 10.948-2.053 10.948s-4.79-2.053-8.894-2.053c-4.106 0-6.785 2.053-8.896 2.053-2.287 0-2.053-8.211-2.053-10.948 0-8.895 6.844-10.947 10.949-10.947"/><path fill="#292F33" d="M31 36v-4.5c0-3.314-3.56-5.5-6.875-5.5h-12C8.812 26 5 28.186 5 31.5V36h26z"/><path fill="#AE7E57" d="M14.5 26c1 1.982 2.792 2 3.5 2s2.512-.049 3.5-2v-3.591h-7V26z"/><path fill="#9A6A4A" d="M14.5 24.054c.975 1.102 2.185 1.4 3.499 1.4 1.315 0 2.526-.298 3.501-1.4v-1.051h-7v1.051z"/><path fill="#DFE7EC" d="M20.145 36l3.011-10L18 27l-5.156-1 3.011 10z"/><path fill="#66757F" d="M23.684 36l-1.172-1.918 3.223-.886L23.156 26l-3.011 10zm-11.368 0l1.172-1.918-3.223-.886L12.844 26l3.011 10z"/><path fill="#292F33" d="M18.635 30.796c0 .352-.285.636-.636.636s-.636-.285-.636-.636c0-.351.285-.636.636-.636s.636.285.636.636zm0 2.6c0 .352-.285.636-.636.636s-.636-.285-.636-.636c0-.351.285-.636.636-.636s.636.285.636.636zm-.636 1.965c-.351 0-.636.285-.636.636h1.273c-.001-.352-.285-.636-.637-.636z"/><path fill="#F4F7F9" d="M14.294 24.872L18 26.966l-2.417 2.564-2.74-3.53zm7.412 0L18 26.966l2.417 2.564 2.74-3.53z"/><path fill="#292F33" d="M20.781 26.053c-.072-.043-.159-.043-.231-.003l-2.551 1.402-2.551-1.402c-.072-.04-.159-.039-.231.003-.071.042-.115.119-.115.201v2.928c0 .082.044.159.115.201.037.021.078.032.119.032.039 0 .077-.01.112-.029l2.551-1.402 2.551 1.402c.035.02.073.029.112.029.041 0 .082-.011.119-.032.07-.042.114-.119.114-.201v-2.928c.001-.082-.043-.159-.114-.201z"/><path fill="#AE7E57" d="M9.793 14.627c0-5.834 3.676-10.563 8.211-10.563 4.533 0 8.209 4.729 8.209 10.563 0 5.833-3.676 10.285-8.209 10.285-4.535 0-8.211-4.452-8.211-10.285"/><path fill="#DE2032" d="M18.004 22.452c-1.606 0-2.447-.794-2.537-.885-.268-.267-.268-.7 0-.967.266-.265.692-.267.961-.007.035.032.551.491 1.576.491 1.038 0 1.555-.473 1.576-.492.273-.256.703-.248.963.019.26.269.26.691-.004.955-.09.092-.929.886-2.535.886"/><path fill="#915A34" d="M18.895 19.409h-1.69c-.233 0-.423-.189-.423-.423v-.153c0-.233.189-.424.423-.424h1.69c.233 0 .424.19.424.424v.153c0 .234-.191.423-.424.423"/><path fill="#662213" d="M21.432 16.796c-.465 0-.846-.381-.846-.847v-.845c0-.465.381-.846.846-.846.465 0 .846.381.846.846v.845c0 .466-.381.847-.846.847m-6.765 0c-.465 0-.846-.381-.846-.847v-.845c0-.465.381-.846.846-.846.466 0 .847.381.847.846v.845c0 .466-.381.847-.847.847"/><path fill="#60352A" d="M7.784 17.909c-.021-1-.044-.224-.044-.465 0-3.422 2.053.494 2.053-1.943 0-2.438 1.368-2.683 2.736-4.051.685-.685 2.053-2.026 2.053-2.026s3.421 2.067 6.158 2.067c2.736 0 5.474 1.375 5.474 4.112 0 2.736 2.053-1.584 2.053 1.837 0 .244-.022-.531-.04.469h.719c.006-2 .006-1.924.006-3.202C28.951 5.813 22.11 2.5 18.003 2.5c-4.105 0-10.947 3.257-10.947 12.152 0 .793-.02 1.257.008 3.257h.72z"/><path fill="#AE7E57" d="M11.503 14.845c0 1.448-.734 2.622-1.639 2.622s-1.639-1.174-1.639-2.622.734-2.623 1.639-2.623 1.639 1.175 1.639 2.623m16.389 0c0 1.448-.733 2.622-1.639 2.622-.905 0-1.639-1.174-1.639-2.622s.733-2.623 1.639-2.623c.905 0 1.639 1.175 1.639 2.623"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#60352A" d="M18.004 3.979c4.104 0 10.947 2.053 10.947 10.947 0 8.895 0 10.948-2.053 10.948s-4.79-2.053-8.894-2.053c-4.106 0-6.785 2.053-8.896 2.053-2.287 0-2.053-8.211-2.053-10.948 0-8.895 6.844-10.947 10.949-10.947"/><path fill="#292F33" d="M31 36v-4.5c0-3.314-3.56-5.5-6.875-5.5h-12C8.812 26 5 28.186 5 31.5V36h26z"/><path fill="#AF7E57" d="M14.5 26c1 1.982 2.792 2 3.5 2s2.512-.049 3.5-2v-3.591h-7V26z"/><path fill="#9B6A49" d="M14.5 24.054c.975 1.102 2.185 1.4 3.499 1.4 1.315 0 2.526-.298 3.501-1.4v-1.051h-7v1.051z"/><path fill="#546170" d="M13.95 29.603l-3.863-.825L11.808 26l2.142.003z"/><path fill="#66757F" d="M16.078 36h-2.406l-4.485-7.9 2.621.831 1.571-1.983z"/><path fill="#546170" d="M22.05 29.603l3.863-.825L24.192 26l-2.141.003z"/><path fill="#66757F" d="M19.922 36h2.406l4.485-7.9-2.621.831-1.57-1.983z"/><path fill="#DFE7EC" d="M20.145 36l3.011-10L18 27l-5.156-1 3.011 10z"/><circle fill="#292F33" cx="18" cy="30.796" r=".625"/><circle fill="#292F33" cx="18" cy="33.396" r=".625"/><path fill="#292F33" d="M18 35.375c-.345 0-.625.28-.625.625h1.25c0-.345-.28-.625-.625-.625z"/><path fill="#F4F7F9" d="M14.294 24.872L18 26.966l-2.417 2.564-2.74-3.53zm7.412 0L18 26.966l2.417 2.564 2.74-3.53z"/><path fill="#292F33" d="M20.781 26.053c-.072-.043-.159-.043-.231-.003l-2.551 1.402-2.551-1.402c-.072-.04-.159-.039-.231.003-.071.042-.115.119-.115.201v2.928c0 .082.044.159.115.201.037.021.078.032.119.032.039 0 .077-.01.112-.029l2.551-1.402 2.551 1.402c.035.02.073.029.112.029.041 0 .082-.011.119-.032.07-.042.114-.119.114-.201v-2.928c.001-.082-.043-.159-.114-.201z"/><path fill="#AF7E57" d="M9.793 14.627c0-5.834 3.676-10.563 8.211-10.563 4.533 0 8.209 4.729 8.209 10.563 0 5.833-3.676 10.285-8.209 10.285-4.535 0-8.211-4.452-8.211-10.285"/><path fill="#DF1F32" d="M18.004 22.452c-1.606 0-2.447-.794-2.537-.885-.268-.267-.268-.7 0-.967.266-.265.692-.267.961-.007.035.032.551.491 1.576.491 1.038 0 1.555-.473 1.576-.492.273-.256.703-.248.963.019.26.269.26.691-.004.955-.09.092-.929.886-2.535.886"/><path fill="#915A34" d="M18.895 19.409h-1.69c-.233 0-.423-.189-.423-.423v-.153c0-.233.189-.424.423-.424h1.69c.233 0 .424.19.424.424v.153c0 .234-.191.423-.424.423"/><path fill="#662113" d="M21.432 16.796c-.465 0-.846-.381-.846-.847v-.845c0-.465.381-.846.846-.846.465 0 .846.381.846.846v.845c0 .466-.381.847-.846.847m-6.765 0c-.465 0-.846-.381-.846-.847v-.845c0-.465.381-.846.846-.846.466 0 .847.381.847.846v.845c0 .466-.381.847-.847.847"/><path fill="#60352A" d="M7.784 17.909c-.021-1-.044-.224-.044-.465 0-3.422 2.053.494 2.053-1.943 0-2.438 1.368-2.683 2.736-4.051.685-.685 2.053-2.026 2.053-2.026s3.421 2.067 6.158 2.067c2.736 0 5.474 1.375 5.474 4.112 0 2.736 2.053-1.584 2.053 1.837 0 .244-.022-.531-.04.469h.719c.006-2 .006-1.924.006-3.202C28.951 5.813 22.11 2.5 18.003 2.5c-4.105 0-10.947 3.257-10.947 12.152 0 .793-.02 1.257.008 3.257h.72z"/><path fill="#AF7E57" d="M11.503 14.845c0 1.448-.734 2.622-1.639 2.622s-1.639-1.174-1.639-2.622.734-2.623 1.639-2.623 1.639 1.175 1.639 2.623m16.389 0c0 1.448-.733 2.622-1.639 2.622-.905 0-1.639-1.174-1.639-2.622s.733-2.623 1.639-2.623c.905 0 1.639 1.175 1.639 2.623"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f935-1f3fe-200d-2642-fe0f.svg b/public/emoji/1f935-1f3fe-200d-2642-fe0f.svg
index 427e42d60c58d84553228c4df64a8c8507c7f359..6ed7fb365a1e60db4dcd086a8b0035425301ba15 100644
--- a/public/emoji/1f935-1f3fe-200d-2642-fe0f.svg
+++ b/public/emoji/1f935-1f3fe-200d-2642-fe0f.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#292F33" d="M32 36v-4c0-3.314-2.685-6-6-6H10c-3.313 0-6 2.686-6 6v4h28z"/><path fill="#DFE7EC" d="M20.805 36l2.862-10.017H12.333L15.195 36z"/><path fill="#292F33" d="M18.698 31.846c0 .386-.313.699-.699.699-.386 0-.699-.313-.699-.699 0-.386.313-.699.699-.699.386 0 .699.313.699.699zm0 2.858c0 .386-.313.699-.699.699-.386 0-.699-.313-.699-.699 0-.386.313-.699.699-.699.386 0 .699.312.699.699z"/><path fill="#66757F" d="M23.29 36l-.332-.543 3.542-.974-2.833-8.5L20.805 36zm-10.58 0l.332-.543-3.542-.974 2.833-8.5L15.195 36z"/><path fill="#AE7E57" d="M14 25.887l4 1.75 4-1.75v-4h-8z"/><path fill="#9A6A4A" d="M14 24c1.216 1.374 2.355 1.719 3.996 1.719 1.639 0 2.787-.346 4.004-1.719v-4h-8v4z"/><path fill="#AE7E57" d="M27.833 13.935c0-1.448-.733-2.623-1.639-2.623-.082 0-.161.02-.24.039C24.73 7.546 21.635 4.839 18 4.839s-6.729 2.707-7.955 6.512c-.079-.019-.158-.039-.24-.039-.905 0-1.639 1.175-1.639 2.623 0 1.33.621 2.417 1.423 2.587.634 4.845 4.153 8.557 8.411 8.557s7.776-3.712 8.411-8.557c.802-.17 1.422-1.257 1.422-2.587z"/><path fill="#F4F7F9" d="M13.927 24.744L18 27.637l-2.656 2.818-3.011-4.472zm8.146 0L18 27.637l2.656 2.818 3.011-4.472z"/><path fill="#292F33" d="M21.045 26.653c-.072-.043-.159-.043-.231-.003L18 28.197l-2.814-1.547c-.072-.04-.159-.039-.231.003-.071.042-.115.119-.115.201v3.218c0 .082.044.159.115.201.037.021.078.032.119.032.039 0 .077-.01.112-.029L18 28.728l2.814 1.548c.035.02.073.029.112.029.041 0 .082-.011.119-.032.07-.042.114-.119.114-.201v-3.218c0-.082-.044-.159-.114-.201z"/><path fill="#915A34" d="M18 21.802c-2.754 0-3.6-.705-3.741-.848-.256-.256-.256-.671 0-.927.248-.248.646-.255.902-.023.052.037.721.487 2.839.487 2.2 0 2.836-.485 2.842-.49.256-.255.657-.243.913.015.256.256.242.683-.014.938-.141.143-.987.848-3.741.848m.75-4.052h-1.5c-.413 0-.75-.337-.75-.75s.337-.75.75-.75h1.5c.413 0 .75.337.75.75s-.337.75-.75.75"/><path fill="#662213" d="M22 15c-.55 0-1-.45-1-1v-1c0-.55.45-1 1-1s1 .45 1 1v1c0 .55-.45 1-1 1m-8 0c-.55 0-1-.45-1-1v-1c0-.55.45-1 1-1s1 .45 1 1v1c0 .55-.45 1-1 1"/><path fill="#60352A" d="M18 1.48c5.648 0 9.178 4.168 9.178 7.641s-.706 4.863-1.412 3.473l-1.412-2.778s-4.235 0-5.647-1.39c0 0 2.118 4.168-2.118 0 0 0 .706 2.779-3.53-.694 0 0-2.118 1.389-2.824 4.862-.196.964-1.412 0-1.412-3.473C8.822 5.648 11.646 1.48 18 1.48"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#292F33" d="M32 36v-4c0-3.314-2.685-6-6-6H10c-3.313 0-6 2.686-6 6v4h28z"/><path fill="#546170" d="M22.5 30.003l4.292-.916L24.879 26l-2.379.003z"/><path fill="#66757F" d="M20.58 36h2.83l4.382-7.667-2.913.924-1.744-2.204z"/><path fill="#546170" d="M13.5 30.003l-4.292-.916L11.12 26l2.38.003z"/><path fill="#66757F" d="M15.42 36h-2.83l-4.382-7.667 2.912.924 1.745-2.204z"/><path fill="#DFE7EC" d="M20.805 36l2.862-10.017H12.333L15.195 36z"/><circle fill="#292F33" cx="18" cy="31.847" r=".7"/><circle fill="#292F33" cx="18" cy="34.704" r=".7"/><path fill="#AF7E57" d="M14 25.887l4 1.75 4-1.75v-4h-8z"/><path fill="#9B6A49" d="M14 24c1.216 1.374 2.355 1.719 3.996 1.719 1.639 0 2.787-.346 4.004-1.719v-4h-8v4z"/><path fill="#AF7E57" d="M27.833 13.935c0-1.448-.733-2.623-1.639-2.623-.082 0-.161.02-.24.039C24.73 7.546 21.635 4.839 18 4.839s-6.729 2.707-7.955 6.512c-.079-.019-.158-.039-.24-.039-.905 0-1.639 1.175-1.639 2.623 0 1.33.621 2.417 1.423 2.587.634 4.845 4.153 8.557 8.411 8.557s7.776-3.712 8.411-8.557c.802-.17 1.422-1.257 1.422-2.587z"/><path fill="#F4F7F9" d="M13.927 24.744L18 27.637l-2.656 2.818-3.011-4.472zm8.146 0L18 27.637l2.656 2.818 3.011-4.472z"/><path fill="#292F33" d="M21.045 26.653c-.072-.043-.159-.043-.231-.003L18 28.197l-2.814-1.547c-.072-.04-.159-.039-.231.003-.071.042-.115.119-.115.201v3.218c0 .082.044.159.115.201.037.021.078.032.119.032.039 0 .077-.01.112-.029L18 28.728l2.814 1.548c.035.02.073.029.112.029.041 0 .082-.011.119-.032.07-.042.114-.119.114-.201v-3.218c0-.082-.044-.159-.114-.201z"/><path fill="#915A34" d="M18 21.802c-2.754 0-3.6-.705-3.741-.848-.256-.256-.256-.671 0-.927.248-.248.646-.255.902-.023.052.037.721.487 2.839.487 2.2 0 2.836-.485 2.842-.49.256-.255.657-.243.913.015.256.256.242.683-.014.938-.141.143-.987.848-3.741.848m.75-4.052h-1.5c-.413 0-.75-.337-.75-.75s.337-.75.75-.75h1.5c.413 0 .75.337.75.75s-.337.75-.75.75"/><path fill="#662113" d="M22 15c-.55 0-1-.45-1-1v-1c0-.55.45-1 1-1s1 .45 1 1v1c0 .55-.45 1-1 1m-8 0c-.55 0-1-.45-1-1v-1c0-.55.45-1 1-1s1 .45 1 1v1c0 .55-.45 1-1 1"/><path fill="#60352A" d="M18 1.48c5.648 0 9.178 4.168 9.178 7.641s-.706 4.863-1.412 3.473l-1.412-2.778s-4.235 0-5.647-1.39c0 0 2.118 4.168-2.118 0 0 0 .706 2.779-3.53-.694 0 0-2.118 1.389-2.824 4.862-.196.964-1.412 0-1.412-3.473C8.822 5.648 11.646 1.48 18 1.48"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f935-1f3fe.svg b/public/emoji/1f935-1f3fe.svg
index 427e42d60c58d84553228c4df64a8c8507c7f359..6ed7fb365a1e60db4dcd086a8b0035425301ba15 100644
--- a/public/emoji/1f935-1f3fe.svg
+++ b/public/emoji/1f935-1f3fe.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#292F33" d="M32 36v-4c0-3.314-2.685-6-6-6H10c-3.313 0-6 2.686-6 6v4h28z"/><path fill="#DFE7EC" d="M20.805 36l2.862-10.017H12.333L15.195 36z"/><path fill="#292F33" d="M18.698 31.846c0 .386-.313.699-.699.699-.386 0-.699-.313-.699-.699 0-.386.313-.699.699-.699.386 0 .699.313.699.699zm0 2.858c0 .386-.313.699-.699.699-.386 0-.699-.313-.699-.699 0-.386.313-.699.699-.699.386 0 .699.312.699.699z"/><path fill="#66757F" d="M23.29 36l-.332-.543 3.542-.974-2.833-8.5L20.805 36zm-10.58 0l.332-.543-3.542-.974 2.833-8.5L15.195 36z"/><path fill="#AE7E57" d="M14 25.887l4 1.75 4-1.75v-4h-8z"/><path fill="#9A6A4A" d="M14 24c1.216 1.374 2.355 1.719 3.996 1.719 1.639 0 2.787-.346 4.004-1.719v-4h-8v4z"/><path fill="#AE7E57" d="M27.833 13.935c0-1.448-.733-2.623-1.639-2.623-.082 0-.161.02-.24.039C24.73 7.546 21.635 4.839 18 4.839s-6.729 2.707-7.955 6.512c-.079-.019-.158-.039-.24-.039-.905 0-1.639 1.175-1.639 2.623 0 1.33.621 2.417 1.423 2.587.634 4.845 4.153 8.557 8.411 8.557s7.776-3.712 8.411-8.557c.802-.17 1.422-1.257 1.422-2.587z"/><path fill="#F4F7F9" d="M13.927 24.744L18 27.637l-2.656 2.818-3.011-4.472zm8.146 0L18 27.637l2.656 2.818 3.011-4.472z"/><path fill="#292F33" d="M21.045 26.653c-.072-.043-.159-.043-.231-.003L18 28.197l-2.814-1.547c-.072-.04-.159-.039-.231.003-.071.042-.115.119-.115.201v3.218c0 .082.044.159.115.201.037.021.078.032.119.032.039 0 .077-.01.112-.029L18 28.728l2.814 1.548c.035.02.073.029.112.029.041 0 .082-.011.119-.032.07-.042.114-.119.114-.201v-3.218c0-.082-.044-.159-.114-.201z"/><path fill="#915A34" d="M18 21.802c-2.754 0-3.6-.705-3.741-.848-.256-.256-.256-.671 0-.927.248-.248.646-.255.902-.023.052.037.721.487 2.839.487 2.2 0 2.836-.485 2.842-.49.256-.255.657-.243.913.015.256.256.242.683-.014.938-.141.143-.987.848-3.741.848m.75-4.052h-1.5c-.413 0-.75-.337-.75-.75s.337-.75.75-.75h1.5c.413 0 .75.337.75.75s-.337.75-.75.75"/><path fill="#662213" d="M22 15c-.55 0-1-.45-1-1v-1c0-.55.45-1 1-1s1 .45 1 1v1c0 .55-.45 1-1 1m-8 0c-.55 0-1-.45-1-1v-1c0-.55.45-1 1-1s1 .45 1 1v1c0 .55-.45 1-1 1"/><path fill="#60352A" d="M18 1.48c5.648 0 9.178 4.168 9.178 7.641s-.706 4.863-1.412 3.473l-1.412-2.778s-4.235 0-5.647-1.39c0 0 2.118 4.168-2.118 0 0 0 .706 2.779-3.53-.694 0 0-2.118 1.389-2.824 4.862-.196.964-1.412 0-1.412-3.473C8.822 5.648 11.646 1.48 18 1.48"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#292F33" d="M32 36v-4c0-3.314-2.685-6-6-6H10c-3.313 0-6 2.686-6 6v4h28z"/><path fill="#546170" d="M22.5 30.003l4.292-.916L24.879 26l-2.379.003z"/><path fill="#66757F" d="M20.58 36h2.83l4.382-7.667-2.913.924-1.744-2.204z"/><path fill="#546170" d="M13.5 30.003l-4.292-.916L11.12 26l2.38.003z"/><path fill="#66757F" d="M15.42 36h-2.83l-4.382-7.667 2.912.924 1.745-2.204z"/><path fill="#DFE7EC" d="M20.805 36l2.862-10.017H12.333L15.195 36z"/><circle fill="#292F33" cx="18" cy="31.847" r=".7"/><circle fill="#292F33" cx="18" cy="34.704" r=".7"/><path fill="#AF7E57" d="M14 25.887l4 1.75 4-1.75v-4h-8z"/><path fill="#9B6A49" d="M14 24c1.216 1.374 2.355 1.719 3.996 1.719 1.639 0 2.787-.346 4.004-1.719v-4h-8v4z"/><path fill="#AF7E57" d="M27.833 13.935c0-1.448-.733-2.623-1.639-2.623-.082 0-.161.02-.24.039C24.73 7.546 21.635 4.839 18 4.839s-6.729 2.707-7.955 6.512c-.079-.019-.158-.039-.24-.039-.905 0-1.639 1.175-1.639 2.623 0 1.33.621 2.417 1.423 2.587.634 4.845 4.153 8.557 8.411 8.557s7.776-3.712 8.411-8.557c.802-.17 1.422-1.257 1.422-2.587z"/><path fill="#F4F7F9" d="M13.927 24.744L18 27.637l-2.656 2.818-3.011-4.472zm8.146 0L18 27.637l2.656 2.818 3.011-4.472z"/><path fill="#292F33" d="M21.045 26.653c-.072-.043-.159-.043-.231-.003L18 28.197l-2.814-1.547c-.072-.04-.159-.039-.231.003-.071.042-.115.119-.115.201v3.218c0 .082.044.159.115.201.037.021.078.032.119.032.039 0 .077-.01.112-.029L18 28.728l2.814 1.548c.035.02.073.029.112.029.041 0 .082-.011.119-.032.07-.042.114-.119.114-.201v-3.218c0-.082-.044-.159-.114-.201z"/><path fill="#915A34" d="M18 21.802c-2.754 0-3.6-.705-3.741-.848-.256-.256-.256-.671 0-.927.248-.248.646-.255.902-.023.052.037.721.487 2.839.487 2.2 0 2.836-.485 2.842-.49.256-.255.657-.243.913.015.256.256.242.683-.014.938-.141.143-.987.848-3.741.848m.75-4.052h-1.5c-.413 0-.75-.337-.75-.75s.337-.75.75-.75h1.5c.413 0 .75.337.75.75s-.337.75-.75.75"/><path fill="#662113" d="M22 15c-.55 0-1-.45-1-1v-1c0-.55.45-1 1-1s1 .45 1 1v1c0 .55-.45 1-1 1m-8 0c-.55 0-1-.45-1-1v-1c0-.55.45-1 1-1s1 .45 1 1v1c0 .55-.45 1-1 1"/><path fill="#60352A" d="M18 1.48c5.648 0 9.178 4.168 9.178 7.641s-.706 4.863-1.412 3.473l-1.412-2.778s-4.235 0-5.647-1.39c0 0 2.118 4.168-2.118 0 0 0 .706 2.779-3.53-.694 0 0-2.118 1.389-2.824 4.862-.196.964-1.412 0-1.412-3.473C8.822 5.648 11.646 1.48 18 1.48"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f935-1f3ff-200d-2640-fe0f.svg b/public/emoji/1f935-1f3ff-200d-2640-fe0f.svg
index cb824ae8150754bcf878f56eec39030b1e718cda..70f6517f0acaaba69f5606ff1cfe252faa6499bc 100644
--- a/public/emoji/1f935-1f3ff-200d-2640-fe0f.svg
+++ b/public/emoji/1f935-1f3ff-200d-2640-fe0f.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#0B0200" d="M18.004 3.979c4.104 0 10.947 2.053 10.947 10.947 0 8.895 0 10.948-2.053 10.948s-4.79-2.053-8.894-2.053c-4.106 0-6.785 2.053-8.896 2.053-2.287 0-2.053-8.211-2.053-10.948 0-8.895 6.844-10.947 10.949-10.947"/><path fill="#292F33" d="M31 36v-4.5c0-3.314-3.56-5.5-6.875-5.5h-12C8.812 26 5 28.186 5 31.5V36h26z"/><path fill="#7C543E" d="M14.5 26c1 1.982 2.792 2 3.5 2s2.512-.049 3.5-2v-3.591h-7V26z"/><path fill="#674232" d="M14.5 24.054c.975 1.102 2.185 1.4 3.499 1.4 1.315 0 2.526-.298 3.501-1.4v-1.051h-7v1.051z"/><path fill="#DFE7EC" d="M20.145 36l3.011-10L18 27l-5.156-1 3.011 10z"/><path fill="#66757F" d="M23.684 36l-1.172-1.918 3.223-.886L23.156 26l-3.011 10zm-11.368 0l1.172-1.918-3.223-.886L12.844 26l3.011 10z"/><path fill="#292F33" d="M18.635 30.796c0 .352-.285.636-.636.636s-.636-.285-.636-.636c0-.351.285-.636.636-.636s.636.285.636.636zm0 2.6c0 .352-.285.636-.636.636s-.636-.285-.636-.636c0-.351.285-.636.636-.636s.636.285.636.636zm-.636 1.965c-.351 0-.636.285-.636.636h1.273c-.001-.352-.285-.636-.637-.636z"/><path fill="#F4F7F9" d="M14.294 24.872L18 26.966l-2.417 2.564-2.74-3.53zm7.412 0L18 26.966l2.417 2.564 2.74-3.53z"/><path fill="#292F33" d="M20.781 26.053c-.072-.043-.159-.043-.231-.003l-2.551 1.402-2.551-1.402c-.072-.04-.159-.039-.231.003-.071.042-.115.119-.115.201v2.928c0 .082.044.159.115.201.037.021.078.032.119.032.039 0 .077-.01.112-.029l2.551-1.402 2.551 1.402c.035.02.073.029.112.029.041 0 .082-.011.119-.032.07-.042.114-.119.114-.201v-2.928c.001-.082-.043-.159-.114-.201z"/><path fill="#7C543E" d="M9.793 14.627c0-5.834 3.676-10.563 8.211-10.563 4.533 0 8.209 4.729 8.209 10.563 0 5.833-3.676 10.285-8.209 10.285-4.535 0-8.211-4.452-8.211-10.285"/><path fill="#DE2032" d="M18.004 22.452c-1.606 0-2.447-.794-2.537-.885-.268-.267-.268-.7 0-.967.266-.265.692-.267.961-.007.035.032.551.491 1.576.491 1.038 0 1.555-.473 1.576-.492.273-.256.703-.248.963.019.26.269.26.691-.004.955-.09.092-.929.886-2.535.886"/><path fill="#3D2E24" d="M18.895 19.409h-1.69c-.233 0-.423-.189-.423-.423v-.153c0-.233.189-.424.423-.424h1.69c.233 0 .424.19.424.424v.153c0 .234-.191.423-.424.423"/><path d="M21.432 16.796c-.465 0-.846-.381-.846-.847v-.845c0-.465.381-.846.846-.846.465 0 .846.381.846.846v.845c0 .466-.381.847-.846.847m-6.765 0c-.465 0-.846-.381-.846-.847v-.845c0-.465.381-.846.846-.846.466 0 .847.381.847.846v.845c0 .466-.381.847-.847.847"/><path fill="#0B0200" d="M7.784 17.909c-.021-1-.044-.224-.044-.465 0-3.422 2.053.494 2.053-1.943 0-2.438 1.368-2.683 2.736-4.051.685-.685 2.053-2.026 2.053-2.026s3.421 2.067 6.158 2.067c2.736 0 5.474 1.375 5.474 4.112 0 2.736 2.053-1.584 2.053 1.837 0 .244-.022-.531-.04.469h.719c.006-2 .006-1.924.006-3.202C28.951 5.813 22.11 2.5 18.003 2.5c-4.105 0-10.947 3.257-10.947 12.152 0 .793-.02 1.257.008 3.257h.72z"/><path fill="#7C543E" d="M11.503 14.845c0 1.448-.734 2.622-1.639 2.622s-1.639-1.174-1.639-2.622.734-2.623 1.639-2.623 1.639 1.175 1.639 2.623m16.389 0c0 1.448-.733 2.622-1.639 2.622-.905 0-1.639-1.174-1.639-2.622s.733-2.623 1.639-2.623c.905 0 1.639 1.175 1.639 2.623"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#0B0200" d="M18.004 3.979c4.104 0 10.947 2.053 10.947 10.947 0 8.895 0 10.948-2.053 10.948s-4.79-2.053-8.894-2.053c-4.106 0-6.785 2.053-8.896 2.053-2.287 0-2.053-8.211-2.053-10.948 0-8.895 6.844-10.947 10.949-10.947"/><path fill="#292F33" d="M31 36v-4.5c0-3.314-3.56-5.5-6.875-5.5h-12C8.812 26 5 28.186 5 31.5V36h26z"/><path fill="#7C533E" d="M14.5 26c1 1.982 2.792 2 3.5 2s2.512-.049 3.5-2v-3.591h-7V26z"/><path fill="#664131" d="M14.5 24.054c.975 1.102 2.185 1.4 3.499 1.4 1.315 0 2.526-.298 3.501-1.4v-1.051h-7v1.051z"/><path fill="#546170" d="M13.95 29.603l-3.863-.825L11.808 26l2.142.003z"/><path fill="#66757F" d="M16.078 36h-2.406l-4.485-7.9 2.621.831 1.571-1.983z"/><path fill="#546170" d="M22.05 29.603l3.863-.825L24.192 26l-2.141.003z"/><path fill="#66757F" d="M19.922 36h2.406l4.485-7.9-2.621.831-1.57-1.983z"/><path fill="#DFE7EC" d="M20.145 36l3.011-10L18 27l-5.156-1 3.011 10z"/><circle fill="#292F33" cx="18" cy="30.796" r=".625"/><circle fill="#292F33" cx="18" cy="33.396" r=".625"/><path fill="#292F33" d="M18 35.375c-.345 0-.625.28-.625.625h1.25c0-.345-.28-.625-.625-.625z"/><path fill="#F4F7F9" d="M14.294 24.872L18 26.966l-2.417 2.564-2.74-3.53zm7.412 0L18 26.966l2.417 2.564 2.74-3.53z"/><path fill="#292F33" d="M20.781 26.053c-.072-.043-.159-.043-.231-.003l-2.551 1.402-2.551-1.402c-.072-.04-.159-.039-.231.003-.071.042-.115.119-.115.201v2.928c0 .082.044.159.115.201.037.021.078.032.119.032.039 0 .077-.01.112-.029l2.551-1.402 2.551 1.402c.035.02.073.029.112.029.041 0 .082-.011.119-.032.07-.042.114-.119.114-.201v-2.928c.001-.082-.043-.159-.114-.201z"/><path fill="#7C533E" d="M9.793 14.627c0-5.834 3.676-10.563 8.211-10.563 4.533 0 8.209 4.729 8.209 10.563 0 5.833-3.676 10.285-8.209 10.285-4.535 0-8.211-4.452-8.211-10.285"/><path fill="#DF1F32" d="M18.004 22.452c-1.606 0-2.447-.794-2.537-.885-.268-.267-.268-.7 0-.967.266-.265.692-.267.961-.007.035.032.551.491 1.576.491 1.038 0 1.555-.473 1.576-.492.273-.256.703-.248.963.019.26.269.26.691-.004.955-.09.092-.929.886-2.535.886"/><path fill="#3D2E24" d="M18.895 19.409h-1.69c-.233 0-.423-.189-.423-.423v-.153c0-.233.189-.424.423-.424h1.69c.233 0 .424.19.424.424v.153c0 .234-.191.423-.424.423"/><path d="M21.432 16.796c-.465 0-.846-.381-.846-.847v-.845c0-.465.381-.846.846-.846.465 0 .846.381.846.846v.845c0 .466-.381.847-.846.847m-6.765 0c-.465 0-.846-.381-.846-.847v-.845c0-.465.381-.846.846-.846.466 0 .847.381.847.846v.845c0 .466-.381.847-.847.847"/><path fill="#0B0200" d="M7.784 17.909c-.021-1-.044-.224-.044-.465 0-3.422 2.053.494 2.053-1.943 0-2.438 1.368-2.683 2.736-4.051.685-.685 2.053-2.026 2.053-2.026s3.421 2.067 6.158 2.067c2.736 0 5.474 1.375 5.474 4.112 0 2.736 2.053-1.584 2.053 1.837 0 .244-.022-.531-.04.469h.719c.006-2 .006-1.924.006-3.202C28.951 5.813 22.11 2.5 18.003 2.5c-4.105 0-10.947 3.257-10.947 12.152 0 .793-.02 1.257.008 3.257h.72z"/><path fill="#7C533E" d="M11.503 14.845c0 1.448-.734 2.622-1.639 2.622s-1.639-1.174-1.639-2.622.734-2.623 1.639-2.623 1.639 1.175 1.639 2.623m16.389 0c0 1.448-.733 2.622-1.639 2.622-.905 0-1.639-1.174-1.639-2.622s.733-2.623 1.639-2.623c.905 0 1.639 1.175 1.639 2.623"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f935-1f3ff-200d-2642-fe0f.svg b/public/emoji/1f935-1f3ff-200d-2642-fe0f.svg
index c38b49041ed084597f5c12c288b72a75932bd68b..3af34ef2c7e6c9355e620bf5a729729f08ab8ebf 100644
--- a/public/emoji/1f935-1f3ff-200d-2642-fe0f.svg
+++ b/public/emoji/1f935-1f3ff-200d-2642-fe0f.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#292F33" d="M32 36v-4c0-3.314-2.685-6-6-6H10c-3.313 0-6 2.686-6 6v4h28z"/><path fill="#DFE7EC" d="M20.805 36l2.862-10.017H12.333L15.195 36z"/><path fill="#292F33" d="M18.698 31.846c0 .386-.313.699-.699.699-.386 0-.699-.313-.699-.699 0-.386.313-.699.699-.699.386 0 .699.313.699.699zm0 2.858c0 .386-.313.699-.699.699-.386 0-.699-.313-.699-.699 0-.386.313-.699.699-.699.386 0 .699.312.699.699z"/><path fill="#66757F" d="M23.29 36l-.332-.543 3.542-.974-2.833-8.5L20.805 36zm-10.58 0l.332-.543-3.542-.974 2.833-8.5L15.195 36z"/><path fill="#7C543E" d="M14 25.887l4 1.75 4-1.75v-4h-8z"/><path fill="#674232" d="M14 24c1.216 1.374 2.355 1.719 3.996 1.719 1.639 0 2.787-.346 4.004-1.719v-4h-8v4z"/><path fill="#7C543E" d="M27.833 13.935c0-1.448-.733-2.623-1.639-2.623-.082 0-.161.02-.24.039C24.73 7.546 21.635 4.839 18 4.839s-6.729 2.707-7.955 6.512c-.079-.019-.158-.039-.24-.039-.905 0-1.639 1.175-1.639 2.623 0 1.33.621 2.417 1.423 2.587.634 4.845 4.153 8.557 8.411 8.557s7.776-3.712 8.411-8.557c.802-.17 1.422-1.257 1.422-2.587z"/><path fill="#F4F7F9" d="M13.927 24.744L18 27.637l-2.656 2.818-3.011-4.472zm8.146 0L18 27.637l2.656 2.818 3.011-4.472z"/><path fill="#292F33" d="M21.045 26.653c-.072-.043-.159-.043-.231-.003L18 28.197l-2.814-1.547c-.072-.04-.159-.039-.231.003-.071.042-.115.119-.115.201v3.218c0 .082.044.159.115.201.037.021.078.032.119.032.039 0 .077-.01.112-.029L18 28.728l2.814 1.548c.035.02.073.029.112.029.041 0 .082-.011.119-.032.07-.042.114-.119.114-.201v-3.218c0-.082-.044-.159-.114-.201z"/><path fill="#3D2E24" d="M18 21.802c-2.754 0-3.6-.705-3.741-.848-.256-.256-.256-.671 0-.927.248-.248.646-.255.902-.023.052.037.721.487 2.839.487 2.2 0 2.836-.485 2.842-.49.256-.255.657-.243.913.015.256.256.242.683-.014.938-.141.143-.987.848-3.741.848m.75-4.052h-1.5c-.413 0-.75-.337-.75-.75s.337-.75.75-.75h1.5c.413 0 .75.337.75.75s-.337.75-.75.75"/><path d="M22 15c-.55 0-1-.45-1-1v-1c0-.55.45-1 1-1s1 .45 1 1v1c0 .55-.45 1-1 1m-8 0c-.55 0-1-.45-1-1v-1c0-.55.45-1 1-1s1 .45 1 1v1c0 .55-.45 1-1 1"/><path fill="#0B0200" d="M18 1.48c5.648 0 9.178 4.168 9.178 7.641s-.706 4.863-1.412 3.473l-1.412-2.778s-4.235 0-5.647-1.39c0 0 2.118 4.168-2.118 0 0 0 .706 2.779-3.53-.694 0 0-2.118 1.389-2.824 4.862-.196.964-1.412 0-1.412-3.473C8.822 5.648 11.646 1.48 18 1.48"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#292F33" d="M32 36v-4c0-3.314-2.685-6-6-6H10c-3.313 0-6 2.686-6 6v4h28z"/><path fill="#546170" d="M22.5 30.003l4.292-.916L24.879 26l-2.379.003z"/><path fill="#66757F" d="M20.58 36h2.83l4.382-7.667-2.913.924-1.744-2.204z"/><path fill="#546170" d="M13.5 30.003l-4.292-.916L11.12 26l2.38.003z"/><path fill="#66757F" d="M15.42 36h-2.83l-4.382-7.667 2.912.924 1.745-2.204z"/><path fill="#DFE7EC" d="M20.805 36l2.862-10.017H12.333L15.195 36z"/><circle fill="#292F33" cx="18" cy="31.847" r=".7"/><circle fill="#292F33" cx="18" cy="34.704" r=".7"/><path fill="#7C533E" d="M14 25.887l4 1.75 4-1.75v-4h-8z"/><path fill="#664131" d="M14 24c1.216 1.374 2.355 1.719 3.996 1.719 1.639 0 2.787-.346 4.004-1.719v-4h-8v4z"/><path fill="#7C533E" d="M27.833 13.935c0-1.448-.733-2.623-1.639-2.623-.082 0-.161.02-.24.039C24.73 7.546 21.635 4.839 18 4.839s-6.729 2.707-7.955 6.512c-.079-.019-.158-.039-.24-.039-.905 0-1.639 1.175-1.639 2.623 0 1.33.621 2.417 1.423 2.587.634 4.845 4.153 8.557 8.411 8.557s7.776-3.712 8.411-8.557c.802-.17 1.422-1.257 1.422-2.587z"/><path fill="#F4F7F9" d="M13.927 24.744L18 27.637l-2.656 2.818-3.011-4.472zm8.146 0L18 27.637l2.656 2.818 3.011-4.472z"/><path fill="#292F33" d="M21.045 26.653c-.072-.043-.159-.043-.231-.003L18 28.197l-2.814-1.547c-.072-.04-.159-.039-.231.003-.071.042-.115.119-.115.201v3.218c0 .082.044.159.115.201.037.021.078.032.119.032.039 0 .077-.01.112-.029L18 28.728l2.814 1.548c.035.02.073.029.112.029.041 0 .082-.011.119-.032.07-.042.114-.119.114-.201v-3.218c0-.082-.044-.159-.114-.201z"/><path fill="#3D2E24" d="M18 21.802c-2.754 0-3.6-.705-3.741-.848-.256-.256-.256-.671 0-.927.248-.248.646-.255.902-.023.052.037.721.487 2.839.487 2.2 0 2.836-.485 2.842-.49.256-.255.657-.243.913.015.256.256.242.683-.014.938-.141.143-.987.848-3.741.848m.75-4.052h-1.5c-.413 0-.75-.337-.75-.75s.337-.75.75-.75h1.5c.413 0 .75.337.75.75s-.337.75-.75.75"/><path d="M22 15c-.55 0-1-.45-1-1v-1c0-.55.45-1 1-1s1 .45 1 1v1c0 .55-.45 1-1 1m-8 0c-.55 0-1-.45-1-1v-1c0-.55.45-1 1-1s1 .45 1 1v1c0 .55-.45 1-1 1"/><path fill="#0B0200" d="M18 1.48c5.648 0 9.178 4.168 9.178 7.641s-.706 4.863-1.412 3.473l-1.412-2.778s-4.235 0-5.647-1.39c0 0 2.118 4.168-2.118 0 0 0 .706 2.779-3.53-.694 0 0-2.118 1.389-2.824 4.862-.196.964-1.412 0-1.412-3.473C8.822 5.648 11.646 1.48 18 1.48"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f935-1f3ff.svg b/public/emoji/1f935-1f3ff.svg
index c38b49041ed084597f5c12c288b72a75932bd68b..3af34ef2c7e6c9355e620bf5a729729f08ab8ebf 100644
--- a/public/emoji/1f935-1f3ff.svg
+++ b/public/emoji/1f935-1f3ff.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#292F33" d="M32 36v-4c0-3.314-2.685-6-6-6H10c-3.313 0-6 2.686-6 6v4h28z"/><path fill="#DFE7EC" d="M20.805 36l2.862-10.017H12.333L15.195 36z"/><path fill="#292F33" d="M18.698 31.846c0 .386-.313.699-.699.699-.386 0-.699-.313-.699-.699 0-.386.313-.699.699-.699.386 0 .699.313.699.699zm0 2.858c0 .386-.313.699-.699.699-.386 0-.699-.313-.699-.699 0-.386.313-.699.699-.699.386 0 .699.312.699.699z"/><path fill="#66757F" d="M23.29 36l-.332-.543 3.542-.974-2.833-8.5L20.805 36zm-10.58 0l.332-.543-3.542-.974 2.833-8.5L15.195 36z"/><path fill="#7C543E" d="M14 25.887l4 1.75 4-1.75v-4h-8z"/><path fill="#674232" d="M14 24c1.216 1.374 2.355 1.719 3.996 1.719 1.639 0 2.787-.346 4.004-1.719v-4h-8v4z"/><path fill="#7C543E" d="M27.833 13.935c0-1.448-.733-2.623-1.639-2.623-.082 0-.161.02-.24.039C24.73 7.546 21.635 4.839 18 4.839s-6.729 2.707-7.955 6.512c-.079-.019-.158-.039-.24-.039-.905 0-1.639 1.175-1.639 2.623 0 1.33.621 2.417 1.423 2.587.634 4.845 4.153 8.557 8.411 8.557s7.776-3.712 8.411-8.557c.802-.17 1.422-1.257 1.422-2.587z"/><path fill="#F4F7F9" d="M13.927 24.744L18 27.637l-2.656 2.818-3.011-4.472zm8.146 0L18 27.637l2.656 2.818 3.011-4.472z"/><path fill="#292F33" d="M21.045 26.653c-.072-.043-.159-.043-.231-.003L18 28.197l-2.814-1.547c-.072-.04-.159-.039-.231.003-.071.042-.115.119-.115.201v3.218c0 .082.044.159.115.201.037.021.078.032.119.032.039 0 .077-.01.112-.029L18 28.728l2.814 1.548c.035.02.073.029.112.029.041 0 .082-.011.119-.032.07-.042.114-.119.114-.201v-3.218c0-.082-.044-.159-.114-.201z"/><path fill="#3D2E24" d="M18 21.802c-2.754 0-3.6-.705-3.741-.848-.256-.256-.256-.671 0-.927.248-.248.646-.255.902-.023.052.037.721.487 2.839.487 2.2 0 2.836-.485 2.842-.49.256-.255.657-.243.913.015.256.256.242.683-.014.938-.141.143-.987.848-3.741.848m.75-4.052h-1.5c-.413 0-.75-.337-.75-.75s.337-.75.75-.75h1.5c.413 0 .75.337.75.75s-.337.75-.75.75"/><path d="M22 15c-.55 0-1-.45-1-1v-1c0-.55.45-1 1-1s1 .45 1 1v1c0 .55-.45 1-1 1m-8 0c-.55 0-1-.45-1-1v-1c0-.55.45-1 1-1s1 .45 1 1v1c0 .55-.45 1-1 1"/><path fill="#0B0200" d="M18 1.48c5.648 0 9.178 4.168 9.178 7.641s-.706 4.863-1.412 3.473l-1.412-2.778s-4.235 0-5.647-1.39c0 0 2.118 4.168-2.118 0 0 0 .706 2.779-3.53-.694 0 0-2.118 1.389-2.824 4.862-.196.964-1.412 0-1.412-3.473C8.822 5.648 11.646 1.48 18 1.48"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#292F33" d="M32 36v-4c0-3.314-2.685-6-6-6H10c-3.313 0-6 2.686-6 6v4h28z"/><path fill="#546170" d="M22.5 30.003l4.292-.916L24.879 26l-2.379.003z"/><path fill="#66757F" d="M20.58 36h2.83l4.382-7.667-2.913.924-1.744-2.204z"/><path fill="#546170" d="M13.5 30.003l-4.292-.916L11.12 26l2.38.003z"/><path fill="#66757F" d="M15.42 36h-2.83l-4.382-7.667 2.912.924 1.745-2.204z"/><path fill="#DFE7EC" d="M20.805 36l2.862-10.017H12.333L15.195 36z"/><circle fill="#292F33" cx="18" cy="31.847" r=".7"/><circle fill="#292F33" cx="18" cy="34.704" r=".7"/><path fill="#7C533E" d="M14 25.887l4 1.75 4-1.75v-4h-8z"/><path fill="#664131" d="M14 24c1.216 1.374 2.355 1.719 3.996 1.719 1.639 0 2.787-.346 4.004-1.719v-4h-8v4z"/><path fill="#7C533E" d="M27.833 13.935c0-1.448-.733-2.623-1.639-2.623-.082 0-.161.02-.24.039C24.73 7.546 21.635 4.839 18 4.839s-6.729 2.707-7.955 6.512c-.079-.019-.158-.039-.24-.039-.905 0-1.639 1.175-1.639 2.623 0 1.33.621 2.417 1.423 2.587.634 4.845 4.153 8.557 8.411 8.557s7.776-3.712 8.411-8.557c.802-.17 1.422-1.257 1.422-2.587z"/><path fill="#F4F7F9" d="M13.927 24.744L18 27.637l-2.656 2.818-3.011-4.472zm8.146 0L18 27.637l2.656 2.818 3.011-4.472z"/><path fill="#292F33" d="M21.045 26.653c-.072-.043-.159-.043-.231-.003L18 28.197l-2.814-1.547c-.072-.04-.159-.039-.231.003-.071.042-.115.119-.115.201v3.218c0 .082.044.159.115.201.037.021.078.032.119.032.039 0 .077-.01.112-.029L18 28.728l2.814 1.548c.035.02.073.029.112.029.041 0 .082-.011.119-.032.07-.042.114-.119.114-.201v-3.218c0-.082-.044-.159-.114-.201z"/><path fill="#3D2E24" d="M18 21.802c-2.754 0-3.6-.705-3.741-.848-.256-.256-.256-.671 0-.927.248-.248.646-.255.902-.023.052.037.721.487 2.839.487 2.2 0 2.836-.485 2.842-.49.256-.255.657-.243.913.015.256.256.242.683-.014.938-.141.143-.987.848-3.741.848m.75-4.052h-1.5c-.413 0-.75-.337-.75-.75s.337-.75.75-.75h1.5c.413 0 .75.337.75.75s-.337.75-.75.75"/><path d="M22 15c-.55 0-1-.45-1-1v-1c0-.55.45-1 1-1s1 .45 1 1v1c0 .55-.45 1-1 1m-8 0c-.55 0-1-.45-1-1v-1c0-.55.45-1 1-1s1 .45 1 1v1c0 .55-.45 1-1 1"/><path fill="#0B0200" d="M18 1.48c5.648 0 9.178 4.168 9.178 7.641s-.706 4.863-1.412 3.473l-1.412-2.778s-4.235 0-5.647-1.39c0 0 2.118 4.168-2.118 0 0 0 .706 2.779-3.53-.694 0 0-2.118 1.389-2.824 4.862-.196.964-1.412 0-1.412-3.473C8.822 5.648 11.646 1.48 18 1.48"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f935-200d-2640-fe0f.svg b/public/emoji/1f935-200d-2640-fe0f.svg
index 8adcb6b0b20e61192cf5d274a54f06015653e82d..63ef4c95edb8b26037ca6be8a8595d10d0660842 100644
--- a/public/emoji/1f935-200d-2640-fe0f.svg
+++ b/public/emoji/1f935-200d-2640-fe0f.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#FAAA35" d="M18.004 3.979c4.104 0 10.947 2.053 10.947 10.947 0 8.895 0 10.948-2.053 10.948s-4.79-2.053-8.894-2.053c-4.106 0-6.785 2.053-8.896 2.053-2.287 0-2.053-8.211-2.053-10.948 0-8.895 6.844-10.947 10.949-10.947"/><path fill="#292F33" d="M31 36v-4.5c0-3.314-3.56-5.5-6.875-5.5h-12C8.812 26 5 28.186 5 31.5V36h26z"/><path fill="#FFDB5E" d="M14.5 26c1 1.982 2.792 2 3.5 2s2.512-.049 3.5-2v-3.591h-7V26z"/><path fill="#F8C954" d="M14.5 24.054c.975 1.102 2.185 1.4 3.499 1.4 1.315 0 2.526-.298 3.501-1.4v-1.051h-7v1.051z"/><path fill="#DFE7EC" d="M20.145 36l3.011-10L18 27l-5.156-1 3.011 10z"/><path fill="#66757F" d="M23.684 36l-1.172-1.918 3.223-.886L23.156 26l-3.011 10zm-11.368 0l1.172-1.918-3.223-.886L12.844 26l3.011 10z"/><path fill="#292F33" d="M18.635 30.796c0 .352-.285.636-.636.636s-.636-.285-.636-.636c0-.351.285-.636.636-.636s.636.285.636.636zm0 2.6c0 .352-.285.636-.636.636s-.636-.285-.636-.636c0-.351.285-.636.636-.636s.636.285.636.636zm-.636 1.965c-.351 0-.636.285-.636.636h1.273c-.001-.352-.285-.636-.637-.636z"/><path fill="#F4F7F9" d="M14.294 24.872L18 26.966l-2.417 2.564-2.74-3.53zm7.412 0L18 26.966l2.417 2.564 2.74-3.53z"/><path fill="#292F33" d="M20.781 26.053c-.072-.043-.159-.043-.231-.003l-2.551 1.402-2.551-1.402c-.072-.04-.159-.039-.231.003-.071.042-.115.119-.115.201v2.928c0 .082.044.159.115.201.037.021.078.032.119.032.039 0 .077-.01.112-.029l2.551-1.402 2.551 1.402c.035.02.073.029.112.029.041 0 .082-.011.119-.032.07-.042.114-.119.114-.201v-2.928c.001-.082-.043-.159-.114-.201z"/><path fill="#FFDB5E" d="M9.793 14.627c0-5.834 3.676-10.563 8.211-10.563 4.533 0 8.209 4.729 8.209 10.563 0 5.833-3.676 10.285-8.209 10.285-4.535 0-8.211-4.452-8.211-10.285"/><path fill="#DE2032" d="M18.004 22.452c-1.606 0-2.447-.794-2.537-.885-.268-.267-.268-.7 0-.967.266-.265.692-.267.961-.007.035.032.551.491 1.576.491 1.038 0 1.555-.473 1.576-.492.273-.256.703-.248.963.019.26.269.26.691-.004.955-.09.092-.929.886-2.535.886"/><path fill="#C1694F" d="M18.895 19.409h-1.69c-.233 0-.423-.189-.423-.423v-.153c0-.233.189-.424.423-.424h1.69c.233 0 .424.19.424.424v.153c0 .234-.191.423-.424.423"/><path fill="#662213" d="M21.432 16.796c-.465 0-.846-.381-.846-.847v-.845c0-.465.381-.846.846-.846.465 0 .846.381.846.846v.845c0 .466-.381.847-.846.847m-6.765 0c-.465 0-.846-.381-.846-.847v-.845c0-.465.381-.846.846-.846.466 0 .847.381.847.846v.845c0 .466-.381.847-.847.847"/><path fill="#FAAA35" d="M7.784 17.909c-.021-1-.044-.224-.044-.465 0-3.422 2.053.494 2.053-1.943 0-2.438 1.368-2.683 2.736-4.051.685-.685 2.053-2.026 2.053-2.026s3.421 2.067 6.158 2.067c2.736 0 5.474 1.375 5.474 4.112 0 2.736 2.053-1.584 2.053 1.837 0 .244-.022-.531-.04.469h.719c.006-2 .006-1.924.006-3.202C28.951 5.813 22.11 2.5 18.003 2.5c-4.105 0-10.947 3.257-10.947 12.152 0 .793-.02 1.257.008 3.257h.72z"/><path fill="#FFDB5E" d="M11.503 14.845c0 1.448-.734 2.622-1.639 2.622s-1.639-1.174-1.639-2.622.734-2.623 1.639-2.623 1.639 1.175 1.639 2.623m16.389 0c0 1.448-.733 2.622-1.639 2.622-.905 0-1.639-1.174-1.639-2.622s.733-2.623 1.639-2.623c.905 0 1.639 1.175 1.639 2.623"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#FFAC33" d="M18.004 3.979c4.104 0 10.947 2.053 10.947 10.947 0 8.895 0 10.948-2.053 10.948s-4.79-2.053-8.894-2.053c-4.106 0-6.785 2.053-8.896 2.053-2.287 0-2.053-8.211-2.053-10.948 0-8.895 6.844-10.947 10.949-10.947"/><path fill="#292F33" d="M31 36v-4.5c0-3.314-3.56-5.5-6.875-5.5h-12C8.812 26 5 28.186 5 31.5V36h26z"/><path fill="#FFDC5D" d="M14.5 26c1 1.982 2.792 2 3.5 2s2.512-.049 3.5-2v-3.591h-7V26z"/><path fill="#F9CA55" d="M14.5 24.054c.975 1.102 2.185 1.4 3.499 1.4 1.315 0 2.526-.298 3.501-1.4v-1.051h-7v1.051z"/><path fill="#546170" d="M13.95 29.603l-3.863-.825L11.808 26l2.142.003z"/><path fill="#66757F" d="M16.078 36h-2.406l-4.485-7.9 2.621.831 1.571-1.983z"/><path fill="#546170" d="M22.05 29.603l3.863-.825L24.192 26l-2.141.003z"/><path fill="#66757F" d="M19.922 36h2.406l4.485-7.9-2.621.831-1.57-1.983z"/><path fill="#DFE7EC" d="M20.145 36l3.011-10L18 27l-5.156-1 3.011 10z"/><circle fill="#292F33" cx="18" cy="30.796" r=".625"/><circle fill="#292F33" cx="18" cy="33.396" r=".625"/><path fill="#292F33" d="M18 35.375c-.345 0-.625.28-.625.625h1.25c0-.345-.28-.625-.625-.625z"/><path fill="#F4F7F9" d="M14.294 24.872L18 26.966l-2.417 2.564-2.74-3.53zm7.412 0L18 26.966l2.417 2.564 2.74-3.53z"/><path fill="#292F33" d="M20.781 26.053c-.072-.043-.159-.043-.231-.003l-2.551 1.402-2.551-1.402c-.072-.04-.159-.039-.231.003-.071.042-.115.119-.115.201v2.928c0 .082.044.159.115.201.037.021.078.032.119.032.039 0 .077-.01.112-.029l2.551-1.402 2.551 1.402c.035.02.073.029.112.029.041 0 .082-.011.119-.032.07-.042.114-.119.114-.201v-2.928c.001-.082-.043-.159-.114-.201z"/><path fill="#FFDC5D" d="M9.793 14.627c0-5.834 3.676-10.563 8.211-10.563 4.533 0 8.209 4.729 8.209 10.563 0 5.833-3.676 10.285-8.209 10.285-4.535 0-8.211-4.452-8.211-10.285"/><path fill="#DF1F32" d="M18.004 22.452c-1.606 0-2.447-.794-2.537-.885-.268-.267-.268-.7 0-.967.266-.265.692-.267.961-.007.035.032.551.491 1.576.491 1.038 0 1.555-.473 1.576-.492.273-.256.703-.248.963.019.26.269.26.691-.004.955-.09.092-.929.886-2.535.886"/><path fill="#C1694F" d="M18.895 19.409h-1.69c-.233 0-.423-.189-.423-.423v-.153c0-.233.189-.424.423-.424h1.69c.233 0 .424.19.424.424v.153c0 .234-.191.423-.424.423"/><path fill="#662113" d="M21.432 16.796c-.465 0-.846-.381-.846-.847v-.845c0-.465.381-.846.846-.846.465 0 .846.381.846.846v.845c0 .466-.381.847-.846.847m-6.765 0c-.465 0-.846-.381-.846-.847v-.845c0-.465.381-.846.846-.846.466 0 .847.381.847.846v.845c0 .466-.381.847-.847.847"/><path fill="#FFAC33" d="M7.784 17.909c-.021-1-.044-.224-.044-.465 0-3.422 2.053.494 2.053-1.943 0-2.438 1.368-2.683 2.736-4.051.685-.685 2.053-2.026 2.053-2.026s3.421 2.067 6.158 2.067c2.736 0 5.474 1.375 5.474 4.112 0 2.736 2.053-1.584 2.053 1.837 0 .244-.022-.531-.04.469h.719c.006-2 .006-1.924.006-3.202C28.951 5.813 22.11 2.5 18.003 2.5c-4.105 0-10.947 3.257-10.947 12.152 0 .793-.02 1.257.008 3.257h.72z"/><path fill="#FFDC5D" d="M11.503 14.845c0 1.448-.734 2.622-1.639 2.622s-1.639-1.174-1.639-2.622.734-2.623 1.639-2.623 1.639 1.175 1.639 2.623m16.389 0c0 1.448-.733 2.622-1.639 2.622-.905 0-1.639-1.174-1.639-2.622s.733-2.623 1.639-2.623c.905 0 1.639 1.175 1.639 2.623"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f935-200d-2642-fe0f.svg b/public/emoji/1f935-200d-2642-fe0f.svg
index c5668af1ba2be4564af9bc7d6a05d14e3f2eb4b9..5c87be483ced350de2001a0a7b3c5f8f7eb7d2bf 100644
--- a/public/emoji/1f935-200d-2642-fe0f.svg
+++ b/public/emoji/1f935-200d-2642-fe0f.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#292F33" d="M32 36v-4c0-3.314-2.685-6-6-6H10c-3.313 0-6 2.686-6 6v4h28z"/><path fill="#DFE7EC" d="M20.805 36l2.862-10.017H12.333L15.195 36z"/><path fill="#292F33" d="M18.698 31.846c0 .386-.313.699-.699.699-.386 0-.699-.313-.699-.699 0-.386.313-.699.699-.699.386 0 .699.313.699.699zm0 2.858c0 .386-.313.699-.699.699-.386 0-.699-.313-.699-.699 0-.386.313-.699.699-.699.386 0 .699.312.699.699z"/><path fill="#66757F" d="M23.29 36l-.332-.543 3.542-.974-2.833-8.5L20.805 36zm-10.58 0l.332-.543-3.542-.974 2.833-8.5L15.195 36z"/><path fill="#FFDC5D" d="M14 25.887l4 1.75 4-1.75v-4h-8z"/><path fill="#F8C954" d="M14 24c1.216 1.374 2.355 1.719 3.996 1.719 1.639 0 2.787-.346 4.004-1.719v-4h-8v4z"/><path fill="#FFDC5D" d="M27.833 13.935c0-1.448-.733-2.623-1.639-2.623-.082 0-.161.02-.24.039C24.73 7.546 21.635 4.839 18 4.839s-6.729 2.707-7.955 6.512c-.079-.019-.158-.039-.24-.039-.905 0-1.639 1.175-1.639 2.623 0 1.33.621 2.417 1.423 2.587.634 4.845 4.153 8.557 8.411 8.557s7.776-3.712 8.411-8.557c.802-.17 1.422-1.257 1.422-2.587z"/><path fill="#F4F7F9" d="M13.927 24.744L18 27.637l-2.656 2.818-3.011-4.472zm8.146 0L18 27.637l2.656 2.818 3.011-4.472z"/><path fill="#292F33" d="M21.045 26.653c-.072-.043-.159-.043-.231-.003L18 28.197l-2.814-1.547c-.072-.04-.159-.039-.231.003-.071.042-.115.119-.115.201v3.218c0 .082.044.159.115.201.037.021.078.032.119.032.039 0 .077-.01.112-.029L18 28.728l2.814 1.548c.035.02.073.029.112.029.041 0 .082-.011.119-.032.07-.042.114-.119.114-.201v-3.218c0-.082-.044-.159-.114-.201z"/><path fill="#C1694F" d="M18 21.802c-2.754 0-3.6-.705-3.741-.848-.256-.256-.256-.671 0-.927.248-.248.646-.255.902-.023.052.037.721.487 2.839.487 2.2 0 2.836-.485 2.842-.49.256-.255.657-.243.913.015.256.256.242.683-.014.938-.141.143-.987.848-3.741.848m.75-4.052h-1.5c-.413 0-.75-.337-.75-.75s.337-.75.75-.75h1.5c.413 0 .75.337.75.75s-.337.75-.75.75"/><path fill="#662213" d="M22 15c-.55 0-1-.45-1-1v-1c0-.55.45-1 1-1s1 .45 1 1v1c0 .55-.45 1-1 1m-8 0c-.55 0-1-.45-1-1v-1c0-.55.45-1 1-1s1 .45 1 1v1c0 .55-.45 1-1 1"/><path fill="#FFAC33" d="M18 1.48c5.648 0 9.178 4.168 9.178 7.641s-.706 4.863-1.412 3.473l-1.412-2.778s-4.235 0-5.647-1.39c0 0 2.118 4.168-2.118 0 0 0 .706 2.779-3.53-.694 0 0-2.118 1.389-2.824 4.862-.196.964-1.412 0-1.412-3.473C8.822 5.648 11.646 1.48 18 1.48"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#292F33" d="M32 36v-4c0-3.314-2.685-6-6-6H10c-3.313 0-6 2.686-6 6v4h28z"/><path fill="#546170" d="M22.5 30.003l4.292-.916L24.879 26l-2.379.003z"/><path fill="#66757F" d="M20.58 36h2.83l4.382-7.667-2.913.924-1.744-2.204z"/><path fill="#546170" d="M13.5 30.003l-4.292-.916L11.12 26l2.38.003z"/><path fill="#66757F" d="M15.42 36h-2.83l-4.382-7.667 2.912.924 1.745-2.204z"/><path fill="#DFE7EC" d="M20.805 36l2.862-10.017H12.333L15.195 36z"/><circle fill="#292F33" cx="18" cy="31.847" r=".7"/><circle fill="#292F33" cx="18" cy="34.704" r=".7"/><path fill="#FFDC5D" d="M14 25.887l4 1.75 4-1.75v-4h-8z"/><path fill="#F9CA55" d="M14 24c1.216 1.374 2.355 1.719 3.996 1.719 1.639 0 2.787-.346 4.004-1.719v-4h-8v4z"/><path fill="#FFDC5D" d="M27.833 13.935c0-1.448-.733-2.623-1.639-2.623-.082 0-.161.02-.24.039C24.73 7.546 21.635 4.839 18 4.839s-6.729 2.707-7.955 6.512c-.079-.019-.158-.039-.24-.039-.905 0-1.639 1.175-1.639 2.623 0 1.33.621 2.417 1.423 2.587.634 4.845 4.153 8.557 8.411 8.557s7.776-3.712 8.411-8.557c.802-.17 1.422-1.257 1.422-2.587z"/><path fill="#F4F7F9" d="M13.927 24.744L18 27.637l-2.656 2.818-3.011-4.472zm8.146 0L18 27.637l2.656 2.818 3.011-4.472z"/><path fill="#292F33" d="M21.045 26.653c-.072-.043-.159-.043-.231-.003L18 28.197l-2.814-1.547c-.072-.04-.159-.039-.231.003-.071.042-.115.119-.115.201v3.218c0 .082.044.159.115.201.037.021.078.032.119.032.039 0 .077-.01.112-.029L18 28.728l2.814 1.548c.035.02.073.029.112.029.041 0 .082-.011.119-.032.07-.042.114-.119.114-.201v-3.218c0-.082-.044-.159-.114-.201z"/><path fill="#C1694F" d="M18 21.802c-2.754 0-3.6-.705-3.741-.848-.256-.256-.256-.671 0-.927.248-.248.646-.255.902-.023.052.037.721.487 2.839.487 2.2 0 2.836-.485 2.842-.49.256-.255.657-.243.913.015.256.256.242.683-.014.938-.141.143-.987.848-3.741.848m.75-4.052h-1.5c-.413 0-.75-.337-.75-.75s.337-.75.75-.75h1.5c.413 0 .75.337.75.75s-.337.75-.75.75"/><path fill="#662113" d="M22 15c-.55 0-1-.45-1-1v-1c0-.55.45-1 1-1s1 .45 1 1v1c0 .55-.45 1-1 1m-8 0c-.55 0-1-.45-1-1v-1c0-.55.45-1 1-1s1 .45 1 1v1c0 .55-.45 1-1 1"/><path fill="#FFAC33" d="M18 1.48c5.648 0 9.178 4.168 9.178 7.641s-.706 4.863-1.412 3.473l-1.412-2.778s-4.235 0-5.647-1.39c0 0 2.118 4.168-2.118 0 0 0 .706 2.779-3.53-.694 0 0-2.118 1.389-2.824 4.862-.196.964-1.412 0-1.412-3.473C8.822 5.648 11.646 1.48 18 1.48"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f935.svg b/public/emoji/1f935.svg
index c5668af1ba2be4564af9bc7d6a05d14e3f2eb4b9..5c87be483ced350de2001a0a7b3c5f8f7eb7d2bf 100644
--- a/public/emoji/1f935.svg
+++ b/public/emoji/1f935.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#292F33" d="M32 36v-4c0-3.314-2.685-6-6-6H10c-3.313 0-6 2.686-6 6v4h28z"/><path fill="#DFE7EC" d="M20.805 36l2.862-10.017H12.333L15.195 36z"/><path fill="#292F33" d="M18.698 31.846c0 .386-.313.699-.699.699-.386 0-.699-.313-.699-.699 0-.386.313-.699.699-.699.386 0 .699.313.699.699zm0 2.858c0 .386-.313.699-.699.699-.386 0-.699-.313-.699-.699 0-.386.313-.699.699-.699.386 0 .699.312.699.699z"/><path fill="#66757F" d="M23.29 36l-.332-.543 3.542-.974-2.833-8.5L20.805 36zm-10.58 0l.332-.543-3.542-.974 2.833-8.5L15.195 36z"/><path fill="#FFDC5D" d="M14 25.887l4 1.75 4-1.75v-4h-8z"/><path fill="#F8C954" d="M14 24c1.216 1.374 2.355 1.719 3.996 1.719 1.639 0 2.787-.346 4.004-1.719v-4h-8v4z"/><path fill="#FFDC5D" d="M27.833 13.935c0-1.448-.733-2.623-1.639-2.623-.082 0-.161.02-.24.039C24.73 7.546 21.635 4.839 18 4.839s-6.729 2.707-7.955 6.512c-.079-.019-.158-.039-.24-.039-.905 0-1.639 1.175-1.639 2.623 0 1.33.621 2.417 1.423 2.587.634 4.845 4.153 8.557 8.411 8.557s7.776-3.712 8.411-8.557c.802-.17 1.422-1.257 1.422-2.587z"/><path fill="#F4F7F9" d="M13.927 24.744L18 27.637l-2.656 2.818-3.011-4.472zm8.146 0L18 27.637l2.656 2.818 3.011-4.472z"/><path fill="#292F33" d="M21.045 26.653c-.072-.043-.159-.043-.231-.003L18 28.197l-2.814-1.547c-.072-.04-.159-.039-.231.003-.071.042-.115.119-.115.201v3.218c0 .082.044.159.115.201.037.021.078.032.119.032.039 0 .077-.01.112-.029L18 28.728l2.814 1.548c.035.02.073.029.112.029.041 0 .082-.011.119-.032.07-.042.114-.119.114-.201v-3.218c0-.082-.044-.159-.114-.201z"/><path fill="#C1694F" d="M18 21.802c-2.754 0-3.6-.705-3.741-.848-.256-.256-.256-.671 0-.927.248-.248.646-.255.902-.023.052.037.721.487 2.839.487 2.2 0 2.836-.485 2.842-.49.256-.255.657-.243.913.015.256.256.242.683-.014.938-.141.143-.987.848-3.741.848m.75-4.052h-1.5c-.413 0-.75-.337-.75-.75s.337-.75.75-.75h1.5c.413 0 .75.337.75.75s-.337.75-.75.75"/><path fill="#662213" d="M22 15c-.55 0-1-.45-1-1v-1c0-.55.45-1 1-1s1 .45 1 1v1c0 .55-.45 1-1 1m-8 0c-.55 0-1-.45-1-1v-1c0-.55.45-1 1-1s1 .45 1 1v1c0 .55-.45 1-1 1"/><path fill="#FFAC33" d="M18 1.48c5.648 0 9.178 4.168 9.178 7.641s-.706 4.863-1.412 3.473l-1.412-2.778s-4.235 0-5.647-1.39c0 0 2.118 4.168-2.118 0 0 0 .706 2.779-3.53-.694 0 0-2.118 1.389-2.824 4.862-.196.964-1.412 0-1.412-3.473C8.822 5.648 11.646 1.48 18 1.48"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#292F33" d="M32 36v-4c0-3.314-2.685-6-6-6H10c-3.313 0-6 2.686-6 6v4h28z"/><path fill="#546170" d="M22.5 30.003l4.292-.916L24.879 26l-2.379.003z"/><path fill="#66757F" d="M20.58 36h2.83l4.382-7.667-2.913.924-1.744-2.204z"/><path fill="#546170" d="M13.5 30.003l-4.292-.916L11.12 26l2.38.003z"/><path fill="#66757F" d="M15.42 36h-2.83l-4.382-7.667 2.912.924 1.745-2.204z"/><path fill="#DFE7EC" d="M20.805 36l2.862-10.017H12.333L15.195 36z"/><circle fill="#292F33" cx="18" cy="31.847" r=".7"/><circle fill="#292F33" cx="18" cy="34.704" r=".7"/><path fill="#FFDC5D" d="M14 25.887l4 1.75 4-1.75v-4h-8z"/><path fill="#F9CA55" d="M14 24c1.216 1.374 2.355 1.719 3.996 1.719 1.639 0 2.787-.346 4.004-1.719v-4h-8v4z"/><path fill="#FFDC5D" d="M27.833 13.935c0-1.448-.733-2.623-1.639-2.623-.082 0-.161.02-.24.039C24.73 7.546 21.635 4.839 18 4.839s-6.729 2.707-7.955 6.512c-.079-.019-.158-.039-.24-.039-.905 0-1.639 1.175-1.639 2.623 0 1.33.621 2.417 1.423 2.587.634 4.845 4.153 8.557 8.411 8.557s7.776-3.712 8.411-8.557c.802-.17 1.422-1.257 1.422-2.587z"/><path fill="#F4F7F9" d="M13.927 24.744L18 27.637l-2.656 2.818-3.011-4.472zm8.146 0L18 27.637l2.656 2.818 3.011-4.472z"/><path fill="#292F33" d="M21.045 26.653c-.072-.043-.159-.043-.231-.003L18 28.197l-2.814-1.547c-.072-.04-.159-.039-.231.003-.071.042-.115.119-.115.201v3.218c0 .082.044.159.115.201.037.021.078.032.119.032.039 0 .077-.01.112-.029L18 28.728l2.814 1.548c.035.02.073.029.112.029.041 0 .082-.011.119-.032.07-.042.114-.119.114-.201v-3.218c0-.082-.044-.159-.114-.201z"/><path fill="#C1694F" d="M18 21.802c-2.754 0-3.6-.705-3.741-.848-.256-.256-.256-.671 0-.927.248-.248.646-.255.902-.023.052.037.721.487 2.839.487 2.2 0 2.836-.485 2.842-.49.256-.255.657-.243.913.015.256.256.242.683-.014.938-.141.143-.987.848-3.741.848m.75-4.052h-1.5c-.413 0-.75-.337-.75-.75s.337-.75.75-.75h1.5c.413 0 .75.337.75.75s-.337.75-.75.75"/><path fill="#662113" d="M22 15c-.55 0-1-.45-1-1v-1c0-.55.45-1 1-1s1 .45 1 1v1c0 .55-.45 1-1 1m-8 0c-.55 0-1-.45-1-1v-1c0-.55.45-1 1-1s1 .45 1 1v1c0 .55-.45 1-1 1"/><path fill="#FFAC33" d="M18 1.48c5.648 0 9.178 4.168 9.178 7.641s-.706 4.863-1.412 3.473l-1.412-2.778s-4.235 0-5.647-1.39c0 0 2.118 4.168-2.118 0 0 0 .706 2.779-3.53-.694 0 0-2.118 1.389-2.824 4.862-.196.964-1.412 0-1.412-3.473C8.822 5.648 11.646 1.48 18 1.48"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f938-1f3fb-200d-2640-fe0f.svg b/public/emoji/1f938-1f3fb-200d-2640-fe0f.svg
index b6fa84e7542c89c81a7f5665b5fb10895c6a178c..c5a0d1e42e067cc48f5783bee9ed1dd59d18095d 100644
--- a/public/emoji/1f938-1f3fb-200d-2640-fe0f.svg
+++ b/public/emoji/1f938-1f3fb-200d-2640-fe0f.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#F7DECE" d="M23.535 29.045c-.945-1.361-.746-3.135.443-3.963 1.189-.826 2.922-.395 3.867.967.946 1.359.747 3.134-.443 3.961-1.189.827-2.922.395-3.867-.965z"/><path fill="#DD2E44" d="M33.129 2.987c0-.55-.451-.998-1.003-.995l-3.002.014c-.55.002-.995.452-.993 1.003.004.552.452.998 1.005.995l2.999-.012c.552-.003 1-.452.994-1.005zM4.977 8.375c.034-.215.003-.447-.11-.655-.268-.481-.874-.658-1.36-.392L1.02 8.697c-.481.267-.66.872-.394 1.356.266.485.876.661 1.358.394L4.472 9.08c.277-.154.452-.415.505-.705z"/><path fill="#F7DECE" d="M24.254 23.543l1.871 3.49c.264.486.082 1.127-.4 1.384-.484.264-1.09.097-1.354-.389l-1.75-3.22-2.281 1.586-.435-2.134c-.142-.22-.265-.531-.364-.964-.605-2.623-2.103-8.281-2.103-8.281 1.815-1.262 4.851 2.379 6.27 4.421.344.495.676.448.789.791 1.049-.544.782 1.323 1.153.909-.001.001.491 1.327-1.396 2.407z"/><path fill="#F7DECE" d="M9.982 12.741c-.145.59.162 1.212.742 1.446l8.148 3.285c.637.256 1.361-.052 1.618-.688.251-.64-.052-1.36-.688-1.617l-8.148-3.284c-.637-.257-1.361.052-1.617.689-.022.056-.04.112-.055.169z"/><path fill="#F7DECE" d="M3.749 8.474c-.221.506-.073 1.097.368 1.376l6.183 3.931c.483.305 1.136.124 1.455-.41.316-.536.19-1.213-.294-1.521L5.277 7.922c-.483-.308-1.134-.125-1.455.408-.03.047-.052.095-.073.144zm25.355-5.947c-.478-.18-1.019-.023-1.257.39l-3.318 5.801c-.263.453-.058 1.042.449 1.313.514.27 1.135.125 1.394-.329l3.323-5.801c.259-.451.055-1.042-.455-1.312-.045-.025-.09-.044-.136-.062z"/><path fill="#F7DECE" d="M26.091 8.32c-.427-.37-1.071-.38-1.51.001l-6.164 5.347c-.482.417-.534 1.146-.118 1.629.423.476 1.148.533 1.628.114l6.165-5.347c.482-.418.534-1.146.115-1.628-.035-.042-.075-.081-.116-.116zm3.768 12.111l-4.341.033c-.516.004-.934.428-.931.943.004.515.43.935.945.93l4.342-.031c.516-.004.934-.429.931-.944-.004-.515-.43-.934-.946-.931z"/><path fill="#F7DECE" d="M35.382 22.302l-5.077-1.722c-.487-.165-1.022.098-1.188.587-.166.486.098 1.023.587 1.188l5.076 1.722c.487.166 1.022-.1 1.188-.586.166-.49-.098-1.025-.586-1.189z"/><path fill="#292F33" d="M29.001 26.869c-.536-.426-1.155-.82-1.155-.82s.557.951.568 1.508c.012.676-.272 1.092-.272 1.092-1.327-.857-2.453.017-2.893-.09-.438-.105-1.01-1.019-1.01-1.019s.319.815.43 1.104c.109.288.038.702-.383.631-.4-.067-.84-1.062-.576-1.291.143-.124-.805-.762-.805-.762s-.32 1.542.218 2.679c.038.081.084.157.126.235-.229-.064-.489-.098-.78-.064-.692.081-1.906.589-2.519 1.538-.473.73-.565 1.851-.565 1.851.227-.586.847-1.003 1.584-1.086.978-.11 1.984.781 2.909.018.408-.337.565-.649.604-.91.492.292 1.076.438 1.766.354 1.342-.164 2.69-1.311 2.986-2.11.381-1.026.379-2.371-.233-2.858z"/><path fill="#A0041E" d="M16.551 18.119s-1.816-1.205-2.518-1.744c-.699-.539-1.703-1.006-1.703-1.006s.549-2.18 1.638-2.891l3.439.682 3.711-2.142s1.646.918 2.334 2.065c0 0-1.634 1.235-2.308 1.627.318.502-.363 1.586-.363 1.586l-4.23 1.823z"/><path fill="#F7DECE" d="M17.595 28.238l1.825-3.94c.215-.468.773-.673 1.242-.458.467.217.674.778.457 1.245l-1.822 3.941c-.217.468-.776.674-1.245.457-.467-.215-.672-.776-.457-1.245z"/><path fill="#F7DECE" d="M17.019 34.041l.529-5.335c.051-.513.51-.89 1.024-.839.511.049.89.511.839 1.025l-.53 5.333c-.049.513-.512.89-1.023.841-.513-.051-.892-.513-.839-1.025z"/><path fill="#DD2E44" d="M21.428 25.835s.568-.446.979-.776c0 0-.409-.721.615-1.479 1.025-.758 1.688-.396 1.688-.396s.231.09 1.038-.153c.383-.115 1.147-.307 1.147-.307s-.041-1.617-.267-2.601l-1.951-.077s-.203-.944-.529-1.22c-.328-.274-.822-.342-1.07-.626-.691-.791-1.863-3.126-1.932-3.489 0 0-.959.754-2.635 1.664-1.025.559-3.113.997-3.113.997.481.655 2.098 1.985 2.822 2.782.707.777 1.605 3.685 1.168 4.172-.438.487-1.062 1.535-1.062 1.535s.615.449 1.032.802c.584.493 1.072.613 1.072.613s.645-1.102.998-1.441z"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#F7DECE" d="M20.533 30.046c-.945-1.361-.746-3.135.443-3.963 1.189-.826 2.922-.395 3.867.967.946 1.359.747 3.134-.443 3.961-1.189.827-2.922.395-3.867-.965z"/><path fill="#292F33" d="M21.25 31.724s.75.742-.372 1.669c-.925.764-1.932-.128-2.909-.018-.737.083-1.357.5-1.584 1.086 0 0 .092-1.121.564-1.852.613-.949 1.827-1.457 2.52-1.538 1.081-.125 1.781.653 1.781.653z"/><path fill="#F7DECE" d="M21.251 24.544l1.871 3.49c.264.486.082 1.127-.4 1.384-.484.264-1.09.097-1.354-.389l-1.75-3.22-2.281 1.586-.436-2.134c-.142-.22 5.374-2.71 5.745-3.124.001.001.492 1.327-1.395 2.407z"/><path fill="#F7DECE" d="M26.857 21.431l-4.341.033c-.516.004-.934.428-.931.943.004.515.43.935.945.93l4.342-.031c.516-.004.934-.429.931-.944-.005-.515-.43-.934-.946-.931z"/><path fill="#F7DECE" d="M30.852 22.974c-.743-.149-3.178-1.455-3.772-1.485-.594-.03-.799.189-.965.679-.166.486.223.747 1.025 1.311.802.564 2.911.505 3.386.624.135.034.398.385.653.505.505.238.833-.071 1.129-.059.442.018.76.209.832 0l.148-.267c.119-.416-.471-.753-1.069-1.129-.303-.191-1.117-.129-1.367-.179z"/><path fill="#292F33" d="M24.843 27.05s.619.395 1.155.82c.612.487.614 1.832.235 2.857-.297.799-1.645 1.946-2.986 2.11-1.516.185-2.541-.699-3.126-1.936-.538-1.137-.218-2.679-.218-2.679s.947.638.805.762c-.264.229.176 1.224.576 1.291.421.071.492-.343.383-.631-.11-.289-.43-1.104-.43-1.104s.571.914 1.01 1.02c.439.106 1.565-.768 2.893.09 0 0 .283-.416.271-1.092-.011-.557-.568-1.508-.568-1.508z"/><path fill="#F7DECE" d="M21.078 8.847c-.168.504-.728.966-.91 1.143-.822.803-2.415 2.375-3.194 2.938l2.622 2.15c.571-.547 1.504-1.719 2.309-2.726.48-.6.976-.907 1.274-1.816 0 0 .668-3.441 1.67-6.022.32-.825-1.304-1.405-1.67-.718-.363.681-.824 1.654-1.063 2.295-.162.439-.962 2.528-1.038 2.756z"/><path fill="#BE1931" d="M23.011 2.446c-.055.164-.202.758-.202.984l-.24 1.347c-.014.067.032.132.099.142.197.031.834-.084 1.225.272.262.238.292.663.443.728.048.02.102-.005.119-.054 0 0 .048-.246.11-.456.13-.166.283-.5.519-.634.14-.024.291-.151.66-.174.219-.014 1.224-.085 1.224-.085.255-.014.335-.093.472-.102.282-.02 1.02.002 1.26-.017.239-.018.374-.165.423-.292.048-.126.035-.208.035-.208s-.233-.403-1.596-.956c-.8-.324-4.189-1.074-4.189-1.074l-.127.1c-.125.1-.177.307-.235.479z"/><path fill="#CCD6DD" d="M25.017 4.972c-.007.028-.021.055-.041.078-.066.072-.177.078-.249.012l-.229-.208c-.073-.066-.076-.179-.012-.249.066-.072.177-.078.249-.012l.229.208c.049.044.067.11.053.171z"/><path fill="#DD2E44" d="M25.098 2.587c-.133.188-.556.591-.925.646-.332.05-1.174-.059-1.334-.08.036-.26.144-.649.185-.772.055-.162.131-.375.255-.467.013-.009 1.365.52 1.819.673z"/><path fill="#CCD6DD" d="M23.26 1.913s.14.035.221.123c.081.089.308.19.481.248.173.058.82.288 1.291.379.471.091 1.349.142 1.633.201.284.059.72.167 1.031.302.31.135.585.266.751.357.215.116.382.245.491.374 0 0 .061-.375-.419-.784-.38-.323-.765-.544-1.159-.684-.03-.011-1.085-.357-1.613-.528-.386-.124-1.001-.327-1.001-.327-.728-.245-1.103-.35-1.253-.351-.027 0-.133-.02-.261.035-.084.035-.286.624-.193.655zm2.321 2.786c-.015.064-.065.116-.134.132-.095.021-.189-.039-.21-.134l-.067-.302c-.02-.097.039-.189.134-.211.095-.021.189.039.21.134l.067.302c.007.027.006.054 0 .079zm.618-.098c-.017.073-.08.13-.159.136-.097.006-.182-.067-.188-.164l-.023-.326c-.007-.101.066-.182.164-.189.097-.006.181.067.188.164l.023.326c0 .019-.001.036-.005.053zm.628-.061c-.019.081-.094.14-.18.135-.097-.004-.172-.087-.167-.185l.015-.299c.007-.104.088-.172.185-.167.097.004.172.087.167.185l-.015.299c-.001.012-.002.022-.005.032z"/><path fill="#F7DECE" d="M9.959 9.913c.528.627 2.12 1.746 2.296 1.929.858.887 1.814 1.427 2.462 2.275l-2.361 2.434c-.63-.478-1.263-1.253-2.178-2.161-.545-.541-1.597-2.568-2.24-3.238 0 0-1.501-1.862-2.791-4.312-.412-.783.992-1.415 1.578-.903.627.548 1.394 1.44 1.978 2.103.308.35 1.101 1.689 1.256 1.873z"/><path fill="#CCD6DD" d="M3.126 1.742c.72-.945 2.329-.518 2.762.695.291.816.305 2.096.709 2.499.403.404.557 1.034.564 1.244.007.21-.226.356-.443.153 0 0 .587.633-.079.709-.665.075-.213.506-.649.398-.436-.108-.371-.43-.371-.43s.003.777-.318.443c-.321-.335-1.899-2.64-2.247-3.716-.228-.706-.453-1.306.072-1.995z"/><path fill="#BE1931" d="M3.37 1.971c.68-.974 2.206-.218 2.442.615.236.833.295 1.916.699 2.319.403.403.945 1.181.951 1.391.007.21-.308.354-.525.151 0 0 .702.676.036.751-.666.075-.492.662-.928.554-.436-.108-.512-.774-.512-.774s.003.777-.318.443c-.321-.335-1.64-2.454-1.968-3.536s-.197-1.456.123-1.914z"/><path fill="#CCD6DD" d="M5.26 6.328c-.044.049-.058.12-.032.185.037.09.14.133.23.096l1.16-.595c.091-.039.133-.14.096-.231-.037-.09-.14-.133-.23-.096l-1.16.595c-.025.012-.046.027-.064.046zm-.395-.779c-.044.049-.058.12-.032.185.037.09.14.133.23.096l1.09-.48c.091-.039.133-.14.096-.231-.037-.09-.14-.133-.23-.096l-1.09.48c-.025.012-.047.027-.064.046zm-.318-.737c-.059.047-.083.128-.055.202.036.091.138.136.228.1l.974-.415c.094-.037.136-.137.101-.229-.035-.09-.137-.135-.228-.099l-.974.415c-.018.006-.033.015-.046.026zm-.244-.697c-.073.041-.107.13-.079.211.032.092.133.14.224.108l.934-.349c.098-.036.14-.133.108-.225-.032-.092-.133-.14-.224-.108l-.934.35c-.011.003-.02.008-.029.013z"/><path fill="#A0041E" d="M14.549 19.12s-1.718-1.063-2.419-1.602c-.699-.539-2.317-2.941-2.317-2.941s1.985-2.051 3.074-2.762l2.584 1.916 2.391-2.222s2.49.991 3.178 2.139c0 0-1.129 1.842-1.485 2.436-.017.458.008 1.039.238 1.069l-5.244 1.967z"/><path fill="#F7DECE" d="M14.593 29.239l1.825-3.939c.215-.468.774-.673 1.242-.458.467.217.674.778.457 1.245l-1.822 3.941c-.217.468-.776.674-1.245.457-.467-.217-.672-.777-.457-1.246z"/><path fill="#F7DECE" d="M14.07 34.202s.297-3.515.386-4.188c.089-.673.599-1.197 1.114-1.146.511.049.75.431.817 1.295.067.863-.959 3.206-.867 4.121.03.297.934.551.683.743-.111.085-.853.164-1.01.148l-.564.03c-.252-.025-.888.031-1.04-.149-.158-.188.454-.593.481-.854z"/><path fill="#DD2E44" d="M18.425 26.836s.568-.446.979-.776c0 0-.409-.721.615-1.479 1.025-.758 1.688-.396 1.688-.396s.231.09 1.038-.153c.383-.115 1.147-.307 1.147-.307s-.041-1.617-.267-2.601l-1.951-.077s-.203-.944-.529-1.22c-.328-.274-.523-.51-.771-.794-.691-.791-.6-2.399-.668-2.762 0 0-2.408.956-4.149 1.446-1.348.38-3.291.024-3.291.024.481.655 1.548 1.386 2.272 2.183.707.777 2.285 4.916 1.848 5.403-.438.487-1.062 1.535-1.062 1.535s.615.449 1.032.802c.584.493 1.072.613 1.072.613s.645-1.102.997-1.441z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f938-1f3fb-200d-2642-fe0f.svg b/public/emoji/1f938-1f3fb-200d-2642-fe0f.svg
index 30d80301b15237f566d387dfee96b14aa3f6834a..245766556224485a2196bb6a05bedb94e2c757e2 100644
--- a/public/emoji/1f938-1f3fb-200d-2642-fe0f.svg
+++ b/public/emoji/1f938-1f3fb-200d-2642-fe0f.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#F7DECE" d="M23.535 29.045c-.945-1.361-.746-3.135.443-3.963 1.189-.826 2.922-.395 3.867.967.946 1.359.747 3.134-.443 3.961-1.189.827-2.922.395-3.867-.965z"/><path fill="#4289C1" d="M33.129 2.987c0-.55-.451-.998-1.003-.995l-3.002.014c-.55.002-.995.452-.993 1.003.004.552.452.998 1.005.995l2.999-.012c.552-.003 1-.452.994-1.005zM4.977 8.375c.034-.215.003-.447-.11-.655-.268-.481-.874-.658-1.36-.392L1.02 8.697c-.481.267-.66.872-.394 1.356.266.485.876.661 1.358.394L4.472 9.08c.277-.154.452-.415.505-.705z"/><path fill="#F7DECE" d="M24.254 23.543l1.871 3.49c.264.486.082 1.127-.4 1.384-.484.264-1.09.097-1.354-.389l-1.75-3.22-2.281 1.586-.435-2.134c-.142-.22-.265-.531-.364-.964-.605-2.623-2.103-8.281-2.103-8.281 1.815-1.262 4.851 2.379 6.27 4.421.344.495.676.448.789.791 1.049-.544.782 1.323 1.153.909-.001.001.491 1.327-1.396 2.407z"/><path fill="#F7DECE" d="M9.982 12.741c-.145.59.162 1.212.742 1.446l8.148 3.285c.637.256 1.361-.052 1.618-.688.251-.64-.052-1.36-.688-1.617l-8.148-3.284c-.637-.257-1.361.052-1.617.689-.022.056-.04.112-.055.169z"/><path fill="#F7DECE" d="M3.749 8.474c-.221.506-.073 1.097.368 1.376l6.183 3.931c.483.305 1.136.124 1.455-.41.316-.536.19-1.213-.294-1.521L5.277 7.922c-.483-.308-1.134-.125-1.455.408-.03.047-.052.095-.073.144zm25.355-5.947c-.478-.18-1.019-.023-1.257.39l-3.318 5.801c-.263.453-.058 1.042.449 1.313.514.27 1.135.125 1.394-.329l3.323-5.801c.259-.451.055-1.042-.455-1.312-.045-.025-.09-.044-.136-.062z"/><path fill="#F7DECE" d="M26.091 8.32c-.427-.37-1.071-.38-1.51.001l-6.164 5.347c-.482.417-.534 1.146-.118 1.629.423.476 1.148.533 1.628.114l6.165-5.347c.482-.418.534-1.146.115-1.628-.035-.042-.075-.081-.116-.116zm3.768 12.111l-4.341.033c-.516.004-.934.428-.931.943.004.515.43.935.945.93l4.342-.031c.516-.004.934-.429.931-.944-.004-.515-.43-.934-.946-.931z"/><path fill="#F7DECE" d="M35.382 22.302l-5.077-1.722c-.487-.165-1.022.098-1.188.587-.166.486.098 1.023.587 1.188l5.076 1.722c.487.166 1.022-.1 1.188-.586.166-.49-.098-1.025-.586-1.189z"/><path fill="#292F33" d="M29.062 29.647c-.25 1.188-1.471 2.025-2.812 2.189-1.516.185-2.541-.699-3.126-1.935-.538-1.137-.437-2.316-.312-2.629s.926.075.797.712c-.151.747.229 1.413.678 1.291.317-.086.576-.391.383-.631-.232-.289-.149-.476-.149-.476s.182-.276.729.391c.287.35 1.565-.768 2.893.09 0 0 .283-.416.272-1.092-.004-.199-.078-.448-.171-.687-.168-.428 1.342.29.818 2.777z"/><path fill="#2A6797" d="M16.551 18.119s-1.816-1.205-2.518-1.744c-.699-.539-1.703-1.006-1.703-1.006s.549-2.18 1.638-2.891l3.439.682 3.711-2.142s1.646.918 2.334 2.065c0 0-1.634 1.235-2.308 1.627.318.502-.363 1.586-.363 1.586l-4.23 1.823z"/><path fill="#F7DECE" d="M17.595 28.238l1.825-3.94c.215-.468.773-.673 1.242-.458.467.217.674.778.457 1.245l-1.822 3.941c-.217.468-.776.674-1.245.457-.467-.215-.672-.776-.457-1.245z"/><path fill="#F7DECE" d="M17.019 34.041l.529-5.335c.051-.513.51-.89 1.024-.839.511.049.89.511.839 1.025l-.53 5.333c-.049.513-.512.89-1.023.841-.513-.051-.892-.513-.839-1.025z"/><path fill="#4289C1" d="M21.428 25.835s.568-.446.979-.776c0 0-.409-.721.615-1.479 1.025-.758 1.688-.396 1.688-.396s.231.09 1.038-.153c.383-.115 1.147-.307 1.147-.307s-.041-1.617-.267-2.601l-1.951-.077s-.77-.921-1.801-2.296-1.662-2.676-1.73-3.039c0 0-.959.754-2.635 1.664-1.025.559-3.113.997-3.113.997.481.655 1.985 2.412 2.572 3.315.812 1.25 1.855 3.152 1.418 3.639-.438.487-1.062 1.535-1.062 1.535s.615.449 1.032.802c.584.493 1.072.613 1.072.613s.645-1.102.998-1.441z"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#F7DECE" d="M20.533 30.046c-.945-1.361-.746-3.135.443-3.963 1.189-.826 2.922-.395 3.867.967.946 1.359.747 3.134-.443 3.961-1.189.827-2.922.395-3.867-.965z"/><path fill="#F7DECE" d="M21.251 24.544l1.871 3.49c.264.486.082 1.127-.4 1.384-.484.264-1.09.097-1.354-.389l-1.75-3.22-2.281 1.586-.436-2.134c-.142-.22 5.374-2.71 5.745-3.124.001.001.492 1.327-1.395 2.407z"/><path fill="#F7DECE" d="M26.857 21.431l-4.341.033c-.516.004-.934.428-.931.943.004.515.43.935.945.93l4.342-.031c.516-.004.934-.429.931-.944-.005-.515-.43-.934-.946-.931z"/><path fill="#F7DECE" d="M30.852 22.974c-.743-.149-3.178-1.455-3.772-1.485-.594-.03-.799.189-.965.679-.166.486.223.747 1.025 1.311.802.564 2.911.505 3.386.624.135.034.398.385.653.505.505.238.833-.071 1.129-.059.442.018.76.209.832 0l.148-.267c.119-.416-.471-.753-1.069-1.129-.303-.191-1.117-.129-1.367-.179z"/><path fill="#292F33" d="M25.36 28.167s.236.077.49.713c.223.557.267 1.248 0 1.871-.336.783-1.515 1.537-2.606 1.515-1.527-.031-2.378-.501-2.963-1.738-.538-1.137-.377-2.306-.377-2.306s.947.638.805.762c-.264.229.176 1.224.576 1.291.421.071.492-.343.383-.631-.11-.289-.34-.542-.139-.676s.361.205.691.512c.334.312.557.713 1.203 1.069 0 0 1.803-.434 1.96-1.092.133-.555-.023-1.29-.023-1.29z"/><path fill="#F7DECE" d="M20.926 8.62c-.168.504-.934 1.145-1.116 1.322-.822.803-2.361 2.536-3.141 3.099l2.927 2.037c.571-.547 1.504-1.719 2.309-2.726.48-.6 1.16-1.419 1.458-2.328 0 0 .484-2.929 1.486-5.51.32-.825-1.304-1.405-1.67-.718-.363.681-.776 1.496-1.015 2.137-.161.439-1.162 2.459-1.238 2.687z"/><path fill="#269" d="M23.011 2.446c-.055.164-.202.758-.202.984l-.24 1.347c-.014.067.032.132.099.142.197.031.834-.084 1.225.272.262.238.292.663.443.728.048.02.102-.005.119-.054 0 0 .048-.246.11-.456.13-.166.283-.5.519-.634.14-.024.291-.151.66-.174.219-.014 1.224-.085 1.224-.085.255-.014.335-.093.472-.102.282-.02 1.02.002 1.26-.017.239-.018.374-.165.423-.292.048-.126.035-.208.035-.208s-.233-.403-1.596-.956c-.8-.324-4.189-1.074-4.189-1.074l-.127.1c-.125.1-.177.307-.235.479z"/><path fill="#CCD6DD" d="M25.017 4.972c-.007.028-.021.055-.041.078-.066.072-.177.078-.249.012l-.229-.208c-.073-.066-.076-.179-.012-.249.066-.072.177-.078.249-.012l.229.208c.049.044.067.11.053.171z"/><path fill="#3B88C3" d="M25.098 2.587c-.133.188-.556.591-.925.646-.332.05-1.174-.059-1.334-.08.036-.26.144-.649.185-.772.055-.162.131-.375.255-.467.013-.009 1.365.52 1.819.673z"/><path fill="#CCD6DD" d="M23.26 1.913s.14.035.221.123c.081.089.308.19.481.248.173.058.82.288 1.291.379.471.091 1.349.142 1.633.201.284.059.72.167 1.031.302.31.135.585.266.751.357.215.116.382.245.491.374 0 0 .061-.375-.419-.784-.38-.323-.765-.544-1.159-.684-.03-.011-1.085-.357-1.613-.528-.386-.124-1.001-.327-1.001-.327-.728-.245-1.103-.35-1.253-.351-.027 0-.133-.02-.261.035-.084.035-.286.624-.193.655zm2.321 2.786c-.015.064-.065.116-.134.132-.095.021-.189-.039-.21-.134l-.067-.302c-.02-.097.039-.189.134-.211.095-.021.189.039.21.134l.067.302c.007.027.006.054 0 .079zm.618-.098c-.017.073-.08.13-.159.136-.097.006-.182-.067-.188-.164l-.023-.326c-.007-.101.066-.182.164-.189.097-.006.181.067.188.164l.023.326c0 .019-.001.036-.005.053zm.628-.061c-.019.081-.094.14-.18.135-.097-.004-.172-.087-.167-.185l.015-.299c.007-.104.088-.172.185-.167.097.004.172.087.167.185l-.015.299c-.001.012-.002.022-.005.032z"/><path fill="#F7DECE" d="M10.141 9.777c.528.627 1.938 1.882 2.115 2.065.858.887 1.814 1.427 2.462 2.275l-2.361 2.434c-.63-.478-1.263-1.253-2.178-2.161-.545-.541-1.833-2.663-2.476-3.332 0 0-1.266-1.767-2.555-4.217-.413-.784.991-1.416 1.577-.904.627.548 1.394 1.44 1.978 2.103.308.35 1.282 1.553 1.438 1.737z"/><path fill="#CCD6DD" d="M3.126 1.742c.72-.945 2.329-.518 2.762.695.291.816.305 2.096.709 2.499.403.404.557 1.034.564 1.244.007.21-.226.356-.443.153 0 0 .587.633-.079.709-.665.075-.213.506-.649.398-.436-.108-.371-.43-.371-.43s.003.777-.318.443c-.321-.335-1.899-2.64-2.247-3.716-.228-.706-.453-1.306.072-1.995z"/><path fill="#269" d="M3.37 1.971c.68-.974 2.206-.218 2.442.615.236.833.295 1.916.699 2.319.403.403.945 1.181.951 1.391.007.21-.308.354-.525.151 0 0 .702.676.036.751-.666.075-.492.662-.928.554-.436-.108-.512-.774-.512-.774s.003.777-.318.443c-.321-.335-1.64-2.454-1.968-3.536s-.197-1.456.123-1.914z"/><path fill="#CCD6DD" d="M5.26 6.328c-.044.049-.058.12-.032.185.037.09.14.133.23.096l1.16-.595c.091-.039.133-.14.096-.231-.037-.09-.14-.133-.23-.096l-1.16.595c-.025.012-.046.027-.064.046zm-.395-.779c-.044.049-.058.12-.032.185.037.09.14.133.23.096l1.09-.48c.091-.039.133-.14.096-.231-.037-.09-.14-.133-.23-.096l-1.09.48c-.025.012-.047.027-.064.046zm-.318-.737c-.059.047-.083.128-.055.202.036.091.138.136.228.1l.974-.415c.094-.037.136-.137.101-.229-.035-.09-.137-.135-.228-.099l-.974.415c-.018.006-.033.015-.046.026zm-.244-.697c-.073.041-.107.13-.079.211.032.092.133.14.224.108l.934-.349c.098-.036.14-.133.108-.225-.032-.092-.133-.14-.224-.108l-.934.35c-.011.003-.02.008-.029.013z"/><path fill="#269" d="M14.549 19.12s-1.718-1.063-2.419-1.602c-.699-.539-2.317-2.941-2.317-2.941s1.985-2.051 3.074-2.762l2.584 1.916 2.391-2.222s2.49.991 3.178 2.139c0 0-1.129 1.842-1.485 2.436-.017.458.008 1.039.238 1.069l-5.244 1.967z"/><path fill="#F7DECE" d="M14.593 29.239l1.825-3.939c.215-.468.774-.673 1.242-.458.467.217.674.778.457 1.245l-1.822 3.941c-.217.468-.776.674-1.245.457-.467-.217-.672-.777-.457-1.246z"/><path fill="#F7DECE" d="M13.976 34.214s.297-3.515.386-4.188c.089-.673.599-1.197 1.114-1.146.511.049.75.431.817 1.294.066.863-.959 3.206-.867 4.121.03.297.935.551.683.743-.111.085-.853.164-1.01.149l-.564.03c-.252-.025-.888.031-1.04-.149-.158-.188.454-.593.481-.854z"/><path fill="#3B88C3" d="M18.425 26.836s.568-.446.979-.776c0 0-.409-.721.615-1.479 1.025-.758 1.688-.396 1.688-.396s.231.09 1.038-.153c.383-.115 1.147-.307 1.147-.307s-.041-1.617-.267-2.601l-1.951-.077s-.341-.402-.546-.989c-.142-.404-.479-1.167-.624-1.515-.446-1.069-.73-1.909-.799-2.272 0 0-2.408.956-4.149 1.446-1.348.38-3.291.024-3.291.024.481.655 1.307 2.352 1.823 3.297 1.094 2.003 2.734 3.803 2.297 4.289-.438.487-1.062 1.535-1.062 1.535s.615.449 1.032.802c.584.493 1.072.613 1.072.613s.646-1.102.998-1.441z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f938-1f3fb.svg b/public/emoji/1f938-1f3fb.svg
index b6fa84e7542c89c81a7f5665b5fb10895c6a178c..c5a0d1e42e067cc48f5783bee9ed1dd59d18095d 100644
--- a/public/emoji/1f938-1f3fb.svg
+++ b/public/emoji/1f938-1f3fb.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#F7DECE" d="M23.535 29.045c-.945-1.361-.746-3.135.443-3.963 1.189-.826 2.922-.395 3.867.967.946 1.359.747 3.134-.443 3.961-1.189.827-2.922.395-3.867-.965z"/><path fill="#DD2E44" d="M33.129 2.987c0-.55-.451-.998-1.003-.995l-3.002.014c-.55.002-.995.452-.993 1.003.004.552.452.998 1.005.995l2.999-.012c.552-.003 1-.452.994-1.005zM4.977 8.375c.034-.215.003-.447-.11-.655-.268-.481-.874-.658-1.36-.392L1.02 8.697c-.481.267-.66.872-.394 1.356.266.485.876.661 1.358.394L4.472 9.08c.277-.154.452-.415.505-.705z"/><path fill="#F7DECE" d="M24.254 23.543l1.871 3.49c.264.486.082 1.127-.4 1.384-.484.264-1.09.097-1.354-.389l-1.75-3.22-2.281 1.586-.435-2.134c-.142-.22-.265-.531-.364-.964-.605-2.623-2.103-8.281-2.103-8.281 1.815-1.262 4.851 2.379 6.27 4.421.344.495.676.448.789.791 1.049-.544.782 1.323 1.153.909-.001.001.491 1.327-1.396 2.407z"/><path fill="#F7DECE" d="M9.982 12.741c-.145.59.162 1.212.742 1.446l8.148 3.285c.637.256 1.361-.052 1.618-.688.251-.64-.052-1.36-.688-1.617l-8.148-3.284c-.637-.257-1.361.052-1.617.689-.022.056-.04.112-.055.169z"/><path fill="#F7DECE" d="M3.749 8.474c-.221.506-.073 1.097.368 1.376l6.183 3.931c.483.305 1.136.124 1.455-.41.316-.536.19-1.213-.294-1.521L5.277 7.922c-.483-.308-1.134-.125-1.455.408-.03.047-.052.095-.073.144zm25.355-5.947c-.478-.18-1.019-.023-1.257.39l-3.318 5.801c-.263.453-.058 1.042.449 1.313.514.27 1.135.125 1.394-.329l3.323-5.801c.259-.451.055-1.042-.455-1.312-.045-.025-.09-.044-.136-.062z"/><path fill="#F7DECE" d="M26.091 8.32c-.427-.37-1.071-.38-1.51.001l-6.164 5.347c-.482.417-.534 1.146-.118 1.629.423.476 1.148.533 1.628.114l6.165-5.347c.482-.418.534-1.146.115-1.628-.035-.042-.075-.081-.116-.116zm3.768 12.111l-4.341.033c-.516.004-.934.428-.931.943.004.515.43.935.945.93l4.342-.031c.516-.004.934-.429.931-.944-.004-.515-.43-.934-.946-.931z"/><path fill="#F7DECE" d="M35.382 22.302l-5.077-1.722c-.487-.165-1.022.098-1.188.587-.166.486.098 1.023.587 1.188l5.076 1.722c.487.166 1.022-.1 1.188-.586.166-.49-.098-1.025-.586-1.189z"/><path fill="#292F33" d="M29.001 26.869c-.536-.426-1.155-.82-1.155-.82s.557.951.568 1.508c.012.676-.272 1.092-.272 1.092-1.327-.857-2.453.017-2.893-.09-.438-.105-1.01-1.019-1.01-1.019s.319.815.43 1.104c.109.288.038.702-.383.631-.4-.067-.84-1.062-.576-1.291.143-.124-.805-.762-.805-.762s-.32 1.542.218 2.679c.038.081.084.157.126.235-.229-.064-.489-.098-.78-.064-.692.081-1.906.589-2.519 1.538-.473.73-.565 1.851-.565 1.851.227-.586.847-1.003 1.584-1.086.978-.11 1.984.781 2.909.018.408-.337.565-.649.604-.91.492.292 1.076.438 1.766.354 1.342-.164 2.69-1.311 2.986-2.11.381-1.026.379-2.371-.233-2.858z"/><path fill="#A0041E" d="M16.551 18.119s-1.816-1.205-2.518-1.744c-.699-.539-1.703-1.006-1.703-1.006s.549-2.18 1.638-2.891l3.439.682 3.711-2.142s1.646.918 2.334 2.065c0 0-1.634 1.235-2.308 1.627.318.502-.363 1.586-.363 1.586l-4.23 1.823z"/><path fill="#F7DECE" d="M17.595 28.238l1.825-3.94c.215-.468.773-.673 1.242-.458.467.217.674.778.457 1.245l-1.822 3.941c-.217.468-.776.674-1.245.457-.467-.215-.672-.776-.457-1.245z"/><path fill="#F7DECE" d="M17.019 34.041l.529-5.335c.051-.513.51-.89 1.024-.839.511.049.89.511.839 1.025l-.53 5.333c-.049.513-.512.89-1.023.841-.513-.051-.892-.513-.839-1.025z"/><path fill="#DD2E44" d="M21.428 25.835s.568-.446.979-.776c0 0-.409-.721.615-1.479 1.025-.758 1.688-.396 1.688-.396s.231.09 1.038-.153c.383-.115 1.147-.307 1.147-.307s-.041-1.617-.267-2.601l-1.951-.077s-.203-.944-.529-1.22c-.328-.274-.822-.342-1.07-.626-.691-.791-1.863-3.126-1.932-3.489 0 0-.959.754-2.635 1.664-1.025.559-3.113.997-3.113.997.481.655 2.098 1.985 2.822 2.782.707.777 1.605 3.685 1.168 4.172-.438.487-1.062 1.535-1.062 1.535s.615.449 1.032.802c.584.493 1.072.613 1.072.613s.645-1.102.998-1.441z"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#F7DECE" d="M20.533 30.046c-.945-1.361-.746-3.135.443-3.963 1.189-.826 2.922-.395 3.867.967.946 1.359.747 3.134-.443 3.961-1.189.827-2.922.395-3.867-.965z"/><path fill="#292F33" d="M21.25 31.724s.75.742-.372 1.669c-.925.764-1.932-.128-2.909-.018-.737.083-1.357.5-1.584 1.086 0 0 .092-1.121.564-1.852.613-.949 1.827-1.457 2.52-1.538 1.081-.125 1.781.653 1.781.653z"/><path fill="#F7DECE" d="M21.251 24.544l1.871 3.49c.264.486.082 1.127-.4 1.384-.484.264-1.09.097-1.354-.389l-1.75-3.22-2.281 1.586-.436-2.134c-.142-.22 5.374-2.71 5.745-3.124.001.001.492 1.327-1.395 2.407z"/><path fill="#F7DECE" d="M26.857 21.431l-4.341.033c-.516.004-.934.428-.931.943.004.515.43.935.945.93l4.342-.031c.516-.004.934-.429.931-.944-.005-.515-.43-.934-.946-.931z"/><path fill="#F7DECE" d="M30.852 22.974c-.743-.149-3.178-1.455-3.772-1.485-.594-.03-.799.189-.965.679-.166.486.223.747 1.025 1.311.802.564 2.911.505 3.386.624.135.034.398.385.653.505.505.238.833-.071 1.129-.059.442.018.76.209.832 0l.148-.267c.119-.416-.471-.753-1.069-1.129-.303-.191-1.117-.129-1.367-.179z"/><path fill="#292F33" d="M24.843 27.05s.619.395 1.155.82c.612.487.614 1.832.235 2.857-.297.799-1.645 1.946-2.986 2.11-1.516.185-2.541-.699-3.126-1.936-.538-1.137-.218-2.679-.218-2.679s.947.638.805.762c-.264.229.176 1.224.576 1.291.421.071.492-.343.383-.631-.11-.289-.43-1.104-.43-1.104s.571.914 1.01 1.02c.439.106 1.565-.768 2.893.09 0 0 .283-.416.271-1.092-.011-.557-.568-1.508-.568-1.508z"/><path fill="#F7DECE" d="M21.078 8.847c-.168.504-.728.966-.91 1.143-.822.803-2.415 2.375-3.194 2.938l2.622 2.15c.571-.547 1.504-1.719 2.309-2.726.48-.6.976-.907 1.274-1.816 0 0 .668-3.441 1.67-6.022.32-.825-1.304-1.405-1.67-.718-.363.681-.824 1.654-1.063 2.295-.162.439-.962 2.528-1.038 2.756z"/><path fill="#BE1931" d="M23.011 2.446c-.055.164-.202.758-.202.984l-.24 1.347c-.014.067.032.132.099.142.197.031.834-.084 1.225.272.262.238.292.663.443.728.048.02.102-.005.119-.054 0 0 .048-.246.11-.456.13-.166.283-.5.519-.634.14-.024.291-.151.66-.174.219-.014 1.224-.085 1.224-.085.255-.014.335-.093.472-.102.282-.02 1.02.002 1.26-.017.239-.018.374-.165.423-.292.048-.126.035-.208.035-.208s-.233-.403-1.596-.956c-.8-.324-4.189-1.074-4.189-1.074l-.127.1c-.125.1-.177.307-.235.479z"/><path fill="#CCD6DD" d="M25.017 4.972c-.007.028-.021.055-.041.078-.066.072-.177.078-.249.012l-.229-.208c-.073-.066-.076-.179-.012-.249.066-.072.177-.078.249-.012l.229.208c.049.044.067.11.053.171z"/><path fill="#DD2E44" d="M25.098 2.587c-.133.188-.556.591-.925.646-.332.05-1.174-.059-1.334-.08.036-.26.144-.649.185-.772.055-.162.131-.375.255-.467.013-.009 1.365.52 1.819.673z"/><path fill="#CCD6DD" d="M23.26 1.913s.14.035.221.123c.081.089.308.19.481.248.173.058.82.288 1.291.379.471.091 1.349.142 1.633.201.284.059.72.167 1.031.302.31.135.585.266.751.357.215.116.382.245.491.374 0 0 .061-.375-.419-.784-.38-.323-.765-.544-1.159-.684-.03-.011-1.085-.357-1.613-.528-.386-.124-1.001-.327-1.001-.327-.728-.245-1.103-.35-1.253-.351-.027 0-.133-.02-.261.035-.084.035-.286.624-.193.655zm2.321 2.786c-.015.064-.065.116-.134.132-.095.021-.189-.039-.21-.134l-.067-.302c-.02-.097.039-.189.134-.211.095-.021.189.039.21.134l.067.302c.007.027.006.054 0 .079zm.618-.098c-.017.073-.08.13-.159.136-.097.006-.182-.067-.188-.164l-.023-.326c-.007-.101.066-.182.164-.189.097-.006.181.067.188.164l.023.326c0 .019-.001.036-.005.053zm.628-.061c-.019.081-.094.14-.18.135-.097-.004-.172-.087-.167-.185l.015-.299c.007-.104.088-.172.185-.167.097.004.172.087.167.185l-.015.299c-.001.012-.002.022-.005.032z"/><path fill="#F7DECE" d="M9.959 9.913c.528.627 2.12 1.746 2.296 1.929.858.887 1.814 1.427 2.462 2.275l-2.361 2.434c-.63-.478-1.263-1.253-2.178-2.161-.545-.541-1.597-2.568-2.24-3.238 0 0-1.501-1.862-2.791-4.312-.412-.783.992-1.415 1.578-.903.627.548 1.394 1.44 1.978 2.103.308.35 1.101 1.689 1.256 1.873z"/><path fill="#CCD6DD" d="M3.126 1.742c.72-.945 2.329-.518 2.762.695.291.816.305 2.096.709 2.499.403.404.557 1.034.564 1.244.007.21-.226.356-.443.153 0 0 .587.633-.079.709-.665.075-.213.506-.649.398-.436-.108-.371-.43-.371-.43s.003.777-.318.443c-.321-.335-1.899-2.64-2.247-3.716-.228-.706-.453-1.306.072-1.995z"/><path fill="#BE1931" d="M3.37 1.971c.68-.974 2.206-.218 2.442.615.236.833.295 1.916.699 2.319.403.403.945 1.181.951 1.391.007.21-.308.354-.525.151 0 0 .702.676.036.751-.666.075-.492.662-.928.554-.436-.108-.512-.774-.512-.774s.003.777-.318.443c-.321-.335-1.64-2.454-1.968-3.536s-.197-1.456.123-1.914z"/><path fill="#CCD6DD" d="M5.26 6.328c-.044.049-.058.12-.032.185.037.09.14.133.23.096l1.16-.595c.091-.039.133-.14.096-.231-.037-.09-.14-.133-.23-.096l-1.16.595c-.025.012-.046.027-.064.046zm-.395-.779c-.044.049-.058.12-.032.185.037.09.14.133.23.096l1.09-.48c.091-.039.133-.14.096-.231-.037-.09-.14-.133-.23-.096l-1.09.48c-.025.012-.047.027-.064.046zm-.318-.737c-.059.047-.083.128-.055.202.036.091.138.136.228.1l.974-.415c.094-.037.136-.137.101-.229-.035-.09-.137-.135-.228-.099l-.974.415c-.018.006-.033.015-.046.026zm-.244-.697c-.073.041-.107.13-.079.211.032.092.133.14.224.108l.934-.349c.098-.036.14-.133.108-.225-.032-.092-.133-.14-.224-.108l-.934.35c-.011.003-.02.008-.029.013z"/><path fill="#A0041E" d="M14.549 19.12s-1.718-1.063-2.419-1.602c-.699-.539-2.317-2.941-2.317-2.941s1.985-2.051 3.074-2.762l2.584 1.916 2.391-2.222s2.49.991 3.178 2.139c0 0-1.129 1.842-1.485 2.436-.017.458.008 1.039.238 1.069l-5.244 1.967z"/><path fill="#F7DECE" d="M14.593 29.239l1.825-3.939c.215-.468.774-.673 1.242-.458.467.217.674.778.457 1.245l-1.822 3.941c-.217.468-.776.674-1.245.457-.467-.217-.672-.777-.457-1.246z"/><path fill="#F7DECE" d="M14.07 34.202s.297-3.515.386-4.188c.089-.673.599-1.197 1.114-1.146.511.049.75.431.817 1.295.067.863-.959 3.206-.867 4.121.03.297.934.551.683.743-.111.085-.853.164-1.01.148l-.564.03c-.252-.025-.888.031-1.04-.149-.158-.188.454-.593.481-.854z"/><path fill="#DD2E44" d="M18.425 26.836s.568-.446.979-.776c0 0-.409-.721.615-1.479 1.025-.758 1.688-.396 1.688-.396s.231.09 1.038-.153c.383-.115 1.147-.307 1.147-.307s-.041-1.617-.267-2.601l-1.951-.077s-.203-.944-.529-1.22c-.328-.274-.523-.51-.771-.794-.691-.791-.6-2.399-.668-2.762 0 0-2.408.956-4.149 1.446-1.348.38-3.291.024-3.291.024.481.655 1.548 1.386 2.272 2.183.707.777 2.285 4.916 1.848 5.403-.438.487-1.062 1.535-1.062 1.535s.615.449 1.032.802c.584.493 1.072.613 1.072.613s.645-1.102.997-1.441z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f938-1f3fc-200d-2640-fe0f.svg b/public/emoji/1f938-1f3fc-200d-2640-fe0f.svg
index 70941c652dac693670abc2d903218602aa385c2b..15b2df731407fe7b136b918f57e6f278ce2e2b6e 100644
--- a/public/emoji/1f938-1f3fc-200d-2640-fe0f.svg
+++ b/public/emoji/1f938-1f3fc-200d-2640-fe0f.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#F3D2A2" d="M23.535 29.045c-.945-1.361-.746-3.135.443-3.963 1.189-.826 2.922-.395 3.867.967.946 1.359.747 3.134-.443 3.961-1.189.827-2.922.395-3.867-.965z"/><path fill="#DD2E44" d="M33.129 2.987c0-.55-.451-.998-1.003-.995l-3.002.014c-.55.002-.995.452-.993 1.003.004.552.452.998 1.005.995l2.999-.012c.552-.003 1-.452.994-1.005zM4.977 8.375c.034-.215.003-.447-.11-.655-.268-.481-.874-.658-1.36-.392L1.02 8.697c-.481.267-.66.872-.394 1.356.266.485.876.661 1.358.394L4.472 9.08c.277-.154.452-.415.505-.705z"/><path fill="#F3D2A2" d="M24.254 23.543l1.871 3.49c.264.486.082 1.127-.4 1.384-.484.264-1.09.097-1.354-.389l-1.75-3.22-2.281 1.586-.435-2.134c-.142-.22-.265-.531-.364-.964-.605-2.623-2.103-8.281-2.103-8.281 1.815-1.262 4.851 2.379 6.27 4.421.344.495.676.448.789.791 1.049-.544.782 1.323 1.153.909-.001.001.491 1.327-1.396 2.407z"/><path fill="#F3D2A2" d="M9.982 12.741c-.145.59.162 1.212.742 1.446l8.148 3.285c.637.256 1.361-.052 1.618-.688.251-.64-.052-1.36-.688-1.617l-8.148-3.284c-.637-.257-1.361.052-1.617.689-.022.056-.04.112-.055.169z"/><path fill="#F3D2A2" d="M3.749 8.474c-.221.506-.073 1.097.368 1.376l6.183 3.931c.483.305 1.136.124 1.455-.41.316-.536.19-1.213-.294-1.521L5.277 7.922c-.483-.308-1.134-.125-1.455.408-.03.047-.052.095-.073.144zm25.355-5.947c-.478-.18-1.019-.023-1.257.39l-3.318 5.801c-.263.453-.058 1.042.449 1.313.514.27 1.135.125 1.394-.329l3.323-5.801c.259-.451.055-1.042-.455-1.312-.045-.025-.09-.044-.136-.062z"/><path fill="#F3D2A2" d="M26.091 8.32c-.427-.37-1.071-.38-1.51.001l-6.164 5.347c-.482.417-.534 1.146-.118 1.629.423.476 1.148.533 1.628.114l6.165-5.347c.482-.418.534-1.146.115-1.628-.035-.042-.075-.081-.116-.116zm3.768 12.111l-4.341.033c-.516.004-.934.428-.931.943.004.515.43.935.945.93l4.342-.031c.516-.004.934-.429.931-.944-.004-.515-.43-.934-.946-.931z"/><path fill="#F3D2A2" d="M35.382 22.302l-5.077-1.722c-.487-.165-1.022.098-1.188.587-.166.486.098 1.023.587 1.188l5.076 1.722c.487.166 1.022-.1 1.188-.586.166-.49-.098-1.025-.586-1.189z"/><path fill="#FFE51E" d="M29.001 26.869c-.536-.426-1.155-.82-1.155-.82s.557.951.568 1.508c.012.676-.272 1.092-.272 1.092-1.327-.857-2.453.017-2.893-.09-.438-.105-1.01-1.019-1.01-1.019s.319.815.43 1.104c.109.288.038.702-.383.631-.4-.067-.84-1.062-.576-1.291.143-.124-.805-.762-.805-.762s-.32 1.542.218 2.679c.038.081.084.157.126.235-.229-.064-.489-.098-.78-.064-.692.081-1.906.589-2.519 1.538-.473.73-.565 1.851-.565 1.851.227-.586.847-1.003 1.584-1.086.978-.11 1.984.781 2.909.018.408-.337.565-.649.604-.91.492.292 1.076.438 1.766.354 1.342-.164 2.69-1.311 2.986-2.11.381-1.026.379-2.371-.233-2.858z"/><path fill="#A0041E" d="M16.551 18.119s-1.816-1.205-2.518-1.744c-.699-.539-1.703-1.006-1.703-1.006s.549-2.18 1.638-2.891l3.439.682 3.711-2.142s1.646.918 2.334 2.065c0 0-1.634 1.235-2.308 1.627.318.502-.363 1.586-.363 1.586l-4.23 1.823z"/><path fill="#F3D2A2" d="M17.595 28.238l1.825-3.94c.215-.468.773-.673 1.242-.458.467.217.674.778.457 1.245l-1.822 3.941c-.217.468-.776.674-1.245.457-.467-.215-.672-.776-.457-1.245z"/><path fill="#F3D2A2" d="M17.019 34.041l.529-5.335c.051-.513.51-.89 1.024-.839.511.049.89.511.839 1.025l-.53 5.333c-.049.513-.512.89-1.023.841-.513-.051-.892-.513-.839-1.025z"/><path fill="#DD2E44" d="M21.428 25.835s.568-.446.979-.776c0 0-.409-.721.615-1.479 1.025-.758 1.688-.396 1.688-.396s.231.09 1.038-.153c.383-.115 1.147-.307 1.147-.307s-.041-1.617-.267-2.601l-1.951-.077s-.203-.944-.529-1.22c-.328-.274-.822-.342-1.07-.626-.691-.791-1.863-3.126-1.932-3.489 0 0-.959.754-2.635 1.664-1.025.559-3.113.997-3.113.997.481.655 2.098 1.985 2.822 2.782.707.777 1.605 3.685 1.168 4.172-.438.487-1.062 1.535-1.062 1.535s.615.449 1.032.802c.584.493 1.072.613 1.072.613s.645-1.102.998-1.441z"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#F3D2A2" d="M20.533 30.046c-.945-1.361-.746-3.135.443-3.963 1.189-.826 2.922-.395 3.867.967.946 1.359.747 3.134-.443 3.961-1.189.827-2.922.395-3.867-.965z"/><path fill="#FFE51E" d="M21.25 31.724s.75.742-.372 1.669c-.925.764-1.932-.128-2.909-.018-.737.083-1.357.5-1.584 1.086 0 0 .092-1.121.564-1.852.613-.949 1.827-1.457 2.52-1.538 1.081-.125 1.781.653 1.781.653z"/><path fill="#F3D2A2" d="M21.251 24.544l1.871 3.49c.264.486.082 1.127-.4 1.384-.484.264-1.09.097-1.354-.389l-1.75-3.22-2.281 1.586-.436-2.134c-.142-.22 5.374-2.71 5.745-3.124.001.001.492 1.327-1.395 2.407z"/><path fill="#F3D2A2" d="M26.857 21.431l-4.341.033c-.516.004-.934.428-.931.943.004.515.43.935.945.93l4.342-.031c.516-.004.934-.429.931-.944-.005-.515-.43-.934-.946-.931z"/><path fill="#F3D2A2" d="M30.852 22.974c-.743-.149-3.178-1.455-3.772-1.485-.594-.03-.799.189-.965.679-.166.486.223.747 1.025 1.311.802.564 2.911.505 3.386.624.135.034.398.385.653.505.505.238.833-.071 1.129-.059.442.018.76.209.832 0l.148-.267c.119-.416-.471-.753-1.069-1.129-.303-.191-1.117-.129-1.367-.179z"/><path fill="#FFE51E" d="M24.843 27.05s.619.395 1.155.82c.612.487.614 1.832.235 2.857-.297.799-1.645 1.946-2.986 2.11-1.516.185-2.541-.699-3.126-1.936-.538-1.137-.218-2.679-.218-2.679s.947.638.805.762c-.264.229.176 1.224.576 1.291.421.071.492-.343.383-.631-.11-.289-.43-1.104-.43-1.104s.571.914 1.01 1.02c.439.106 1.565-.768 2.893.09 0 0 .283-.416.271-1.092-.011-.557-.568-1.508-.568-1.508z"/><path fill="#F3D2A2" d="M21.078 8.847c-.168.504-.728.966-.91 1.143-.822.803-2.415 2.375-3.194 2.938l2.622 2.15c.571-.547 1.504-1.719 2.309-2.726.48-.6.976-.907 1.274-1.816 0 0 .668-3.441 1.67-6.022.32-.825-1.304-1.405-1.67-.718-.363.681-.824 1.654-1.063 2.295-.162.439-.962 2.528-1.038 2.756z"/><path fill="#BE1931" d="M23.011 2.446c-.055.164-.202.758-.202.984l-.24 1.347c-.014.067.032.132.099.142.197.031.834-.084 1.225.272.262.238.292.663.443.728.048.02.102-.005.119-.054 0 0 .048-.246.11-.456.13-.166.283-.5.519-.634.14-.024.291-.151.66-.174.219-.014 1.224-.085 1.224-.085.255-.014.335-.093.472-.102.282-.02 1.02.002 1.26-.017.239-.018.374-.165.423-.292.048-.126.035-.208.035-.208s-.233-.403-1.596-.956c-.8-.324-4.189-1.074-4.189-1.074l-.127.1c-.125.1-.177.307-.235.479z"/><path fill="#CCD6DD" d="M25.017 4.972c-.007.028-.021.055-.041.078-.066.072-.177.078-.249.012l-.229-.208c-.073-.066-.076-.179-.012-.249.066-.072.177-.078.249-.012l.229.208c.049.044.067.11.053.171z"/><path fill="#DD2E44" d="M25.098 2.587c-.133.188-.556.591-.925.646-.332.05-1.174-.059-1.334-.08.036-.26.144-.649.185-.772.055-.162.131-.375.255-.467.013-.009 1.365.52 1.819.673z"/><path fill="#CCD6DD" d="M23.26 1.913s.14.035.221.123c.081.089.308.19.481.248.173.058.82.288 1.291.379.471.091 1.349.142 1.633.201.284.059.72.167 1.031.302.31.135.585.266.751.357.215.116.382.245.491.374 0 0 .061-.375-.419-.784-.38-.323-.765-.544-1.159-.684-.03-.011-1.085-.357-1.613-.528-.386-.124-1.001-.327-1.001-.327-.728-.245-1.103-.35-1.253-.351-.027 0-.133-.02-.261.035-.084.035-.286.624-.193.655zm2.321 2.786c-.015.064-.065.116-.134.132-.095.021-.189-.039-.21-.134l-.067-.302c-.02-.097.039-.189.134-.211.095-.021.189.039.21.134l.067.302c.007.027.006.054 0 .079zm.618-.098c-.017.073-.08.13-.159.136-.097.006-.182-.067-.188-.164l-.023-.326c-.007-.101.066-.182.164-.189.097-.006.181.067.188.164l.023.326c0 .019-.001.036-.005.053zm.628-.061c-.019.081-.094.14-.18.135-.097-.004-.172-.087-.167-.185l.015-.299c.007-.104.088-.172.185-.167.097.004.172.087.167.185l-.015.299c-.001.012-.002.022-.005.032z"/><path fill="#F3D2A2" d="M9.959 9.913c.528.627 2.12 1.746 2.296 1.929.858.887 1.814 1.427 2.462 2.275l-2.361 2.434c-.63-.478-1.263-1.253-2.178-2.161-.545-.541-1.597-2.568-2.24-3.238 0 0-1.501-1.862-2.791-4.312-.412-.783.992-1.415 1.578-.903.627.548 1.394 1.44 1.978 2.103.308.35 1.101 1.689 1.256 1.873z"/><path fill="#CCD6DD" d="M3.126 1.742c.72-.945 2.329-.518 2.762.695.291.816.305 2.096.709 2.499.403.404.557 1.034.564 1.244.007.21-.226.356-.443.153 0 0 .587.633-.079.709-.665.075-.213.506-.649.398-.436-.108-.371-.43-.371-.43s.003.777-.318.443c-.321-.335-1.899-2.64-2.247-3.716-.228-.706-.453-1.306.072-1.995z"/><path fill="#BE1931" d="M3.37 1.971c.68-.974 2.206-.218 2.442.615.236.833.295 1.916.699 2.319.403.403.945 1.181.951 1.391.007.21-.308.354-.525.151 0 0 .702.676.036.751-.666.075-.492.662-.928.554-.436-.108-.512-.774-.512-.774s.003.777-.318.443c-.321-.335-1.64-2.454-1.968-3.536s-.197-1.456.123-1.914z"/><path fill="#CCD6DD" d="M5.26 6.328c-.044.049-.058.12-.032.185.037.09.14.133.23.096l1.16-.595c.091-.039.133-.14.096-.231-.037-.09-.14-.133-.23-.096l-1.16.595c-.025.012-.046.027-.064.046zm-.395-.779c-.044.049-.058.12-.032.185.037.09.14.133.23.096l1.09-.48c.091-.039.133-.14.096-.231-.037-.09-.14-.133-.23-.096l-1.09.48c-.025.012-.047.027-.064.046zm-.318-.737c-.059.047-.083.128-.055.202.036.091.138.136.228.1l.974-.415c.094-.037.136-.137.101-.229-.035-.09-.137-.135-.228-.099l-.974.415c-.018.006-.033.015-.046.026zm-.244-.697c-.073.041-.107.13-.079.211.032.092.133.14.224.108l.934-.349c.098-.036.14-.133.108-.225-.032-.092-.133-.14-.224-.108l-.934.35c-.011.003-.02.008-.029.013z"/><path fill="#A0041E" d="M14.549 19.12s-1.718-1.063-2.419-1.602c-.699-.539-2.317-2.941-2.317-2.941s1.985-2.051 3.074-2.762l2.584 1.916 2.391-2.222s2.49.991 3.178 2.139c0 0-1.129 1.842-1.485 2.436-.017.458.008 1.039.238 1.069l-5.244 1.967z"/><path fill="#F3D2A2" d="M14.593 29.239l1.825-3.939c.215-.468.774-.673 1.242-.458.467.217.674.778.457 1.245l-1.822 3.941c-.217.468-.776.674-1.245.457-.467-.217-.672-.777-.457-1.246z"/><path fill="#F3D2A2" d="M14.07 34.202s.297-3.515.386-4.188c.089-.673.599-1.197 1.114-1.146.511.049.75.431.817 1.295.067.863-.959 3.206-.867 4.121.03.297.934.551.683.743-.111.085-.853.164-1.01.148l-.564.03c-.252-.025-.888.031-1.04-.149-.158-.188.454-.593.481-.854z"/><path fill="#DD2E44" d="M18.425 26.836s.568-.446.979-.776c0 0-.409-.721.615-1.479 1.025-.758 1.688-.396 1.688-.396s.231.09 1.038-.153c.383-.115 1.147-.307 1.147-.307s-.041-1.617-.267-2.601l-1.951-.077s-.203-.944-.529-1.22c-.328-.274-.523-.51-.771-.794-.691-.791-.6-2.399-.668-2.762 0 0-2.408.956-4.149 1.446-1.348.38-3.291.024-3.291.024.481.655 1.548 1.386 2.272 2.183.707.777 2.285 4.916 1.848 5.403-.438.487-1.062 1.535-1.062 1.535s.615.449 1.032.802c.584.493 1.072.613 1.072.613s.645-1.102.997-1.441z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f938-1f3fc-200d-2642-fe0f.svg b/public/emoji/1f938-1f3fc-200d-2642-fe0f.svg
index 334889aebb851280c5bc68e483856464d48768e7..32a693857c2bfe55f3d1ce95280814c85d62560e 100644
--- a/public/emoji/1f938-1f3fc-200d-2642-fe0f.svg
+++ b/public/emoji/1f938-1f3fc-200d-2642-fe0f.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#F3D2A2" d="M23.535 29.045c-.945-1.361-.746-3.135.443-3.963 1.189-.826 2.922-.395 3.867.967.946 1.359.747 3.134-.443 3.961-1.189.827-2.922.395-3.867-.965z"/><path fill="#4289C1" d="M33.129 2.987c0-.55-.451-.998-1.003-.995l-3.002.014c-.55.002-.995.452-.993 1.003.004.552.452.998 1.005.995l2.999-.012c.552-.003 1-.452.994-1.005zM4.977 8.375c.034-.215.003-.447-.11-.655-.268-.481-.874-.658-1.36-.392L1.02 8.697c-.481.267-.66.872-.394 1.356.266.485.876.661 1.358.394L4.472 9.08c.277-.154.452-.415.505-.705z"/><path fill="#F3D2A2" d="M24.254 23.543l1.871 3.49c.264.486.082 1.127-.4 1.384-.484.264-1.09.097-1.354-.389l-1.75-3.22-2.281 1.586-.435-2.134c-.142-.22-.265-.531-.364-.964-.605-2.623-2.103-8.281-2.103-8.281 1.815-1.262 4.851 2.379 6.27 4.421.344.495.676.448.789.791 1.049-.544.782 1.323 1.153.909-.001.001.491 1.327-1.396 2.407z"/><path fill="#F3D2A2" d="M9.982 12.741c-.145.59.162 1.212.742 1.446l8.148 3.285c.637.256 1.361-.052 1.618-.688.251-.64-.052-1.36-.688-1.617l-8.148-3.284c-.637-.257-1.361.052-1.617.689-.022.056-.04.112-.055.169z"/><path fill="#F3D2A2" d="M3.749 8.474c-.221.506-.073 1.097.368 1.376l6.183 3.931c.483.305 1.136.124 1.455-.41.316-.536.19-1.213-.294-1.521L5.277 7.922c-.483-.308-1.134-.125-1.455.408-.03.047-.052.095-.073.144zm25.355-5.947c-.478-.18-1.019-.023-1.257.39l-3.318 5.801c-.263.453-.058 1.042.449 1.313.514.27 1.135.125 1.394-.329l3.323-5.801c.259-.451.055-1.042-.455-1.312-.045-.025-.09-.044-.136-.062z"/><path fill="#F3D2A2" d="M26.091 8.32c-.427-.37-1.071-.38-1.51.001l-6.164 5.347c-.482.417-.534 1.146-.118 1.629.423.476 1.148.533 1.628.114l6.165-5.347c.482-.418.534-1.146.115-1.628-.035-.042-.075-.081-.116-.116zm3.768 12.111l-4.341.033c-.516.004-.934.428-.931.943.004.515.43.935.945.93l4.342-.031c.516-.004.934-.429.931-.944-.004-.515-.43-.934-.946-.931z"/><path fill="#F3D2A2" d="M35.382 22.302l-5.077-1.722c-.487-.165-1.022.098-1.188.587-.166.486.098 1.023.587 1.188l5.076 1.722c.487.166 1.022-.1 1.188-.586.166-.49-.098-1.025-.586-1.189z"/><path fill="#FFE51E" d="M29.062 29.647c-.25 1.188-1.471 2.025-2.812 2.189-1.516.185-2.541-.699-3.126-1.935-.538-1.137-.437-2.316-.312-2.629s.926.075.797.712c-.151.747.229 1.413.678 1.291.317-.086.576-.391.383-.631-.232-.289-.149-.476-.149-.476s.182-.276.729.391c.287.35 1.565-.768 2.893.09 0 0 .283-.416.272-1.092-.004-.199-.078-.448-.171-.687-.168-.428 1.342.29.818 2.777z"/><path fill="#2A6797" d="M16.551 18.119s-1.816-1.205-2.518-1.744c-.699-.539-1.703-1.006-1.703-1.006s.549-2.18 1.638-2.891l3.439.682 3.711-2.142s1.646.918 2.334 2.065c0 0-1.634 1.235-2.308 1.627.318.502-.363 1.586-.363 1.586l-4.23 1.823z"/><path fill="#F3D2A2" d="M17.595 28.238l1.825-3.94c.215-.468.773-.673 1.242-.458.467.217.674.778.457 1.245l-1.822 3.941c-.217.468-.776.674-1.245.457-.467-.215-.672-.776-.457-1.245z"/><path fill="#F3D2A2" d="M17.019 34.041l.529-5.335c.051-.513.51-.89 1.024-.839.511.049.89.511.839 1.025l-.53 5.333c-.049.513-.512.89-1.023.841-.513-.051-.892-.513-.839-1.025z"/><path fill="#4289C1" d="M21.428 25.835s.568-.446.979-.776c0 0-.409-.721.615-1.479 1.025-.758 1.688-.396 1.688-.396s.231.09 1.038-.153c.383-.115 1.147-.307 1.147-.307s-.041-1.617-.267-2.601l-1.951-.077s-.77-.921-1.801-2.296-1.662-2.676-1.73-3.039c0 0-.959.754-2.635 1.664-1.025.559-3.113.997-3.113.997.481.655 1.985 2.412 2.572 3.315.812 1.25 1.855 3.152 1.418 3.639-.438.487-1.062 1.535-1.062 1.535s.615.449 1.032.802c.584.493 1.072.613 1.072.613s.645-1.102.998-1.441z"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#F3D2A2" d="M20.533 30.046c-.945-1.361-.746-3.135.443-3.963 1.189-.826 2.922-.395 3.867.967.946 1.359.747 3.134-.443 3.961-1.189.827-2.922.395-3.867-.965z"/><path fill="#F3D2A2" d="M21.251 24.544l1.871 3.49c.264.486.082 1.127-.4 1.384-.484.264-1.09.097-1.354-.389l-1.75-3.22-2.281 1.586-.436-2.134c-.142-.22 5.374-2.71 5.745-3.124.001.001.492 1.327-1.395 2.407z"/><path fill="#F3D2A2" d="M26.857 21.431l-4.341.033c-.516.004-.934.428-.931.943.004.515.43.935.945.93l4.342-.031c.516-.004.934-.429.931-.944-.005-.515-.43-.934-.946-.931z"/><path fill="#F3D2A2" d="M30.852 22.974c-.743-.149-3.178-1.455-3.772-1.485-.594-.03-.799.189-.965.679-.166.486.223.747 1.025 1.311.802.564 2.911.505 3.386.624.135.034.398.385.653.505.505.238.833-.071 1.129-.059.442.018.76.209.832 0l.148-.267c.119-.416-.471-.753-1.069-1.129-.303-.191-1.117-.129-1.367-.179z"/><path fill="#FFE51E" d="M25.36 28.167s.236.077.49.713c.223.557.267 1.248 0 1.871-.336.783-1.515 1.537-2.606 1.515-1.527-.031-2.378-.501-2.963-1.738-.538-1.137-.377-2.306-.377-2.306s.947.638.805.762c-.264.229.176 1.224.576 1.291.421.071.492-.343.383-.631-.11-.289-.34-.542-.139-.676s.361.205.691.512c.334.312.557.713 1.203 1.069 0 0 1.803-.434 1.96-1.092.133-.555-.023-1.29-.023-1.29z"/><path fill="#F3D2A2" d="M20.926 8.62c-.168.504-.934 1.145-1.116 1.322-.822.803-2.361 2.536-3.141 3.099l2.927 2.037c.571-.547 1.504-1.719 2.309-2.726.48-.6 1.16-1.419 1.458-2.328 0 0 .484-2.929 1.486-5.51.32-.825-1.304-1.405-1.67-.718-.363.681-.776 1.496-1.015 2.137-.161.439-1.162 2.459-1.238 2.687z"/><path fill="#269" d="M23.011 2.446c-.055.164-.202.758-.202.984l-.24 1.347c-.014.067.032.132.099.142.197.031.834-.084 1.225.272.262.238.292.663.443.728.048.02.102-.005.119-.054 0 0 .048-.246.11-.456.13-.166.283-.5.519-.634.14-.024.291-.151.66-.174.219-.014 1.224-.085 1.224-.085.255-.014.335-.093.472-.102.282-.02 1.02.002 1.26-.017.239-.018.374-.165.423-.292.048-.126.035-.208.035-.208s-.233-.403-1.596-.956c-.8-.324-4.189-1.074-4.189-1.074l-.127.1c-.125.1-.177.307-.235.479z"/><path fill="#CCD6DD" d="M25.017 4.972c-.007.028-.021.055-.041.078-.066.072-.177.078-.249.012l-.229-.208c-.073-.066-.076-.179-.012-.249.066-.072.177-.078.249-.012l.229.208c.049.044.067.11.053.171z"/><path fill="#3B88C3" d="M25.098 2.587c-.133.188-.556.591-.925.646-.332.05-1.174-.059-1.334-.08.036-.26.144-.649.185-.772.055-.162.131-.375.255-.467.013-.009 1.365.52 1.819.673z"/><path fill="#CCD6DD" d="M23.26 1.913s.14.035.221.123c.081.089.308.19.481.248.173.058.82.288 1.291.379.471.091 1.349.142 1.633.201.284.059.72.167 1.031.302.31.135.585.266.751.357.215.116.382.245.491.374 0 0 .061-.375-.419-.784-.38-.323-.765-.544-1.159-.684-.03-.011-1.085-.357-1.613-.528-.386-.124-1.001-.327-1.001-.327-.728-.245-1.103-.35-1.253-.351-.027 0-.133-.02-.261.035-.084.035-.286.624-.193.655zm2.321 2.786c-.015.064-.065.116-.134.132-.095.021-.189-.039-.21-.134l-.067-.302c-.02-.097.039-.189.134-.211.095-.021.189.039.21.134l.067.302c.007.027.006.054 0 .079zm.618-.098c-.017.073-.08.13-.159.136-.097.006-.182-.067-.188-.164l-.023-.326c-.007-.101.066-.182.164-.189.097-.006.181.067.188.164l.023.326c0 .019-.001.036-.005.053zm.628-.061c-.019.081-.094.14-.18.135-.097-.004-.172-.087-.167-.185l.015-.299c.007-.104.088-.172.185-.167.097.004.172.087.167.185l-.015.299c-.001.012-.002.022-.005.032z"/><path fill="#F3D2A2" d="M10.141 9.777c.528.627 1.938 1.882 2.115 2.065.858.887 1.814 1.427 2.462 2.275l-2.361 2.434c-.63-.478-1.263-1.253-2.178-2.161-.545-.541-1.833-2.663-2.476-3.332 0 0-1.266-1.767-2.555-4.217-.413-.784.991-1.416 1.577-.904.627.548 1.394 1.44 1.978 2.103.308.35 1.282 1.553 1.438 1.737z"/><path fill="#CCD6DD" d="M3.126 1.742c.72-.945 2.329-.518 2.762.695.291.816.305 2.096.709 2.499.403.404.557 1.034.564 1.244.007.21-.226.356-.443.153 0 0 .587.633-.079.709-.665.075-.213.506-.649.398-.436-.108-.371-.43-.371-.43s.003.777-.318.443c-.321-.335-1.899-2.64-2.247-3.716-.228-.706-.453-1.306.072-1.995z"/><path fill="#269" d="M3.37 1.971c.68-.974 2.206-.218 2.442.615.236.833.295 1.916.699 2.319.403.403.945 1.181.951 1.391.007.21-.308.354-.525.151 0 0 .702.676.036.751-.666.075-.492.662-.928.554-.436-.108-.512-.774-.512-.774s.003.777-.318.443c-.321-.335-1.64-2.454-1.968-3.536s-.197-1.456.123-1.914z"/><path fill="#CCD6DD" d="M5.26 6.328c-.044.049-.058.12-.032.185.037.09.14.133.23.096l1.16-.595c.091-.039.133-.14.096-.231-.037-.09-.14-.133-.23-.096l-1.16.595c-.025.012-.046.027-.064.046zm-.395-.779c-.044.049-.058.12-.032.185.037.09.14.133.23.096l1.09-.48c.091-.039.133-.14.096-.231-.037-.09-.14-.133-.23-.096l-1.09.48c-.025.012-.047.027-.064.046zm-.318-.737c-.059.047-.083.128-.055.202.036.091.138.136.228.1l.974-.415c.094-.037.136-.137.101-.229-.035-.09-.137-.135-.228-.099l-.974.415c-.018.006-.033.015-.046.026zm-.244-.697c-.073.041-.107.13-.079.211.032.092.133.14.224.108l.934-.349c.098-.036.14-.133.108-.225-.032-.092-.133-.14-.224-.108l-.934.35c-.011.003-.02.008-.029.013z"/><path fill="#269" d="M14.549 19.12s-1.718-1.063-2.419-1.602c-.699-.539-2.317-2.941-2.317-2.941s1.985-2.051 3.074-2.762l2.584 1.916 2.391-2.222s2.49.991 3.178 2.139c0 0-1.129 1.842-1.485 2.436-.017.458.008 1.039.238 1.069l-5.244 1.967z"/><path fill="#F3D2A2" d="M14.593 29.239l1.825-3.939c.215-.468.774-.673 1.242-.458.467.217.674.778.457 1.245l-1.822 3.941c-.217.468-.776.674-1.245.457-.467-.217-.672-.777-.457-1.246z"/><path fill="#F3D2A2" d="M13.976 34.214s.297-3.515.386-4.188c.089-.673.599-1.197 1.114-1.146.511.049.75.431.817 1.294.066.863-.959 3.206-.867 4.121.03.297.935.551.683.743-.111.085-.853.164-1.01.149l-.564.03c-.252-.025-.888.031-1.04-.149-.158-.188.454-.593.481-.854z"/><path fill="#3B88C3" d="M18.425 26.836s.568-.446.979-.776c0 0-.409-.721.615-1.479 1.025-.758 1.688-.396 1.688-.396s.231.09 1.038-.153c.383-.115 1.147-.307 1.147-.307s-.041-1.617-.267-2.601l-1.951-.077s-.341-.402-.546-.989c-.142-.404-.479-1.167-.624-1.515-.446-1.069-.73-1.909-.799-2.272 0 0-2.408.956-4.149 1.446-1.348.38-3.291.024-3.291.024.481.655 1.307 2.352 1.823 3.297 1.094 2.003 2.734 3.803 2.297 4.289-.438.487-1.062 1.535-1.062 1.535s.615.449 1.032.802c.584.493 1.072.613 1.072.613s.646-1.102.998-1.441z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f938-1f3fc.svg b/public/emoji/1f938-1f3fc.svg
index 70941c652dac693670abc2d903218602aa385c2b..15b2df731407fe7b136b918f57e6f278ce2e2b6e 100644
--- a/public/emoji/1f938-1f3fc.svg
+++ b/public/emoji/1f938-1f3fc.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#F3D2A2" d="M23.535 29.045c-.945-1.361-.746-3.135.443-3.963 1.189-.826 2.922-.395 3.867.967.946 1.359.747 3.134-.443 3.961-1.189.827-2.922.395-3.867-.965z"/><path fill="#DD2E44" d="M33.129 2.987c0-.55-.451-.998-1.003-.995l-3.002.014c-.55.002-.995.452-.993 1.003.004.552.452.998 1.005.995l2.999-.012c.552-.003 1-.452.994-1.005zM4.977 8.375c.034-.215.003-.447-.11-.655-.268-.481-.874-.658-1.36-.392L1.02 8.697c-.481.267-.66.872-.394 1.356.266.485.876.661 1.358.394L4.472 9.08c.277-.154.452-.415.505-.705z"/><path fill="#F3D2A2" d="M24.254 23.543l1.871 3.49c.264.486.082 1.127-.4 1.384-.484.264-1.09.097-1.354-.389l-1.75-3.22-2.281 1.586-.435-2.134c-.142-.22-.265-.531-.364-.964-.605-2.623-2.103-8.281-2.103-8.281 1.815-1.262 4.851 2.379 6.27 4.421.344.495.676.448.789.791 1.049-.544.782 1.323 1.153.909-.001.001.491 1.327-1.396 2.407z"/><path fill="#F3D2A2" d="M9.982 12.741c-.145.59.162 1.212.742 1.446l8.148 3.285c.637.256 1.361-.052 1.618-.688.251-.64-.052-1.36-.688-1.617l-8.148-3.284c-.637-.257-1.361.052-1.617.689-.022.056-.04.112-.055.169z"/><path fill="#F3D2A2" d="M3.749 8.474c-.221.506-.073 1.097.368 1.376l6.183 3.931c.483.305 1.136.124 1.455-.41.316-.536.19-1.213-.294-1.521L5.277 7.922c-.483-.308-1.134-.125-1.455.408-.03.047-.052.095-.073.144zm25.355-5.947c-.478-.18-1.019-.023-1.257.39l-3.318 5.801c-.263.453-.058 1.042.449 1.313.514.27 1.135.125 1.394-.329l3.323-5.801c.259-.451.055-1.042-.455-1.312-.045-.025-.09-.044-.136-.062z"/><path fill="#F3D2A2" d="M26.091 8.32c-.427-.37-1.071-.38-1.51.001l-6.164 5.347c-.482.417-.534 1.146-.118 1.629.423.476 1.148.533 1.628.114l6.165-5.347c.482-.418.534-1.146.115-1.628-.035-.042-.075-.081-.116-.116zm3.768 12.111l-4.341.033c-.516.004-.934.428-.931.943.004.515.43.935.945.93l4.342-.031c.516-.004.934-.429.931-.944-.004-.515-.43-.934-.946-.931z"/><path fill="#F3D2A2" d="M35.382 22.302l-5.077-1.722c-.487-.165-1.022.098-1.188.587-.166.486.098 1.023.587 1.188l5.076 1.722c.487.166 1.022-.1 1.188-.586.166-.49-.098-1.025-.586-1.189z"/><path fill="#FFE51E" d="M29.001 26.869c-.536-.426-1.155-.82-1.155-.82s.557.951.568 1.508c.012.676-.272 1.092-.272 1.092-1.327-.857-2.453.017-2.893-.09-.438-.105-1.01-1.019-1.01-1.019s.319.815.43 1.104c.109.288.038.702-.383.631-.4-.067-.84-1.062-.576-1.291.143-.124-.805-.762-.805-.762s-.32 1.542.218 2.679c.038.081.084.157.126.235-.229-.064-.489-.098-.78-.064-.692.081-1.906.589-2.519 1.538-.473.73-.565 1.851-.565 1.851.227-.586.847-1.003 1.584-1.086.978-.11 1.984.781 2.909.018.408-.337.565-.649.604-.91.492.292 1.076.438 1.766.354 1.342-.164 2.69-1.311 2.986-2.11.381-1.026.379-2.371-.233-2.858z"/><path fill="#A0041E" d="M16.551 18.119s-1.816-1.205-2.518-1.744c-.699-.539-1.703-1.006-1.703-1.006s.549-2.18 1.638-2.891l3.439.682 3.711-2.142s1.646.918 2.334 2.065c0 0-1.634 1.235-2.308 1.627.318.502-.363 1.586-.363 1.586l-4.23 1.823z"/><path fill="#F3D2A2" d="M17.595 28.238l1.825-3.94c.215-.468.773-.673 1.242-.458.467.217.674.778.457 1.245l-1.822 3.941c-.217.468-.776.674-1.245.457-.467-.215-.672-.776-.457-1.245z"/><path fill="#F3D2A2" d="M17.019 34.041l.529-5.335c.051-.513.51-.89 1.024-.839.511.049.89.511.839 1.025l-.53 5.333c-.049.513-.512.89-1.023.841-.513-.051-.892-.513-.839-1.025z"/><path fill="#DD2E44" d="M21.428 25.835s.568-.446.979-.776c0 0-.409-.721.615-1.479 1.025-.758 1.688-.396 1.688-.396s.231.09 1.038-.153c.383-.115 1.147-.307 1.147-.307s-.041-1.617-.267-2.601l-1.951-.077s-.203-.944-.529-1.22c-.328-.274-.822-.342-1.07-.626-.691-.791-1.863-3.126-1.932-3.489 0 0-.959.754-2.635 1.664-1.025.559-3.113.997-3.113.997.481.655 2.098 1.985 2.822 2.782.707.777 1.605 3.685 1.168 4.172-.438.487-1.062 1.535-1.062 1.535s.615.449 1.032.802c.584.493 1.072.613 1.072.613s.645-1.102.998-1.441z"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#F3D2A2" d="M20.533 30.046c-.945-1.361-.746-3.135.443-3.963 1.189-.826 2.922-.395 3.867.967.946 1.359.747 3.134-.443 3.961-1.189.827-2.922.395-3.867-.965z"/><path fill="#FFE51E" d="M21.25 31.724s.75.742-.372 1.669c-.925.764-1.932-.128-2.909-.018-.737.083-1.357.5-1.584 1.086 0 0 .092-1.121.564-1.852.613-.949 1.827-1.457 2.52-1.538 1.081-.125 1.781.653 1.781.653z"/><path fill="#F3D2A2" d="M21.251 24.544l1.871 3.49c.264.486.082 1.127-.4 1.384-.484.264-1.09.097-1.354-.389l-1.75-3.22-2.281 1.586-.436-2.134c-.142-.22 5.374-2.71 5.745-3.124.001.001.492 1.327-1.395 2.407z"/><path fill="#F3D2A2" d="M26.857 21.431l-4.341.033c-.516.004-.934.428-.931.943.004.515.43.935.945.93l4.342-.031c.516-.004.934-.429.931-.944-.005-.515-.43-.934-.946-.931z"/><path fill="#F3D2A2" d="M30.852 22.974c-.743-.149-3.178-1.455-3.772-1.485-.594-.03-.799.189-.965.679-.166.486.223.747 1.025 1.311.802.564 2.911.505 3.386.624.135.034.398.385.653.505.505.238.833-.071 1.129-.059.442.018.76.209.832 0l.148-.267c.119-.416-.471-.753-1.069-1.129-.303-.191-1.117-.129-1.367-.179z"/><path fill="#FFE51E" d="M24.843 27.05s.619.395 1.155.82c.612.487.614 1.832.235 2.857-.297.799-1.645 1.946-2.986 2.11-1.516.185-2.541-.699-3.126-1.936-.538-1.137-.218-2.679-.218-2.679s.947.638.805.762c-.264.229.176 1.224.576 1.291.421.071.492-.343.383-.631-.11-.289-.43-1.104-.43-1.104s.571.914 1.01 1.02c.439.106 1.565-.768 2.893.09 0 0 .283-.416.271-1.092-.011-.557-.568-1.508-.568-1.508z"/><path fill="#F3D2A2" d="M21.078 8.847c-.168.504-.728.966-.91 1.143-.822.803-2.415 2.375-3.194 2.938l2.622 2.15c.571-.547 1.504-1.719 2.309-2.726.48-.6.976-.907 1.274-1.816 0 0 .668-3.441 1.67-6.022.32-.825-1.304-1.405-1.67-.718-.363.681-.824 1.654-1.063 2.295-.162.439-.962 2.528-1.038 2.756z"/><path fill="#BE1931" d="M23.011 2.446c-.055.164-.202.758-.202.984l-.24 1.347c-.014.067.032.132.099.142.197.031.834-.084 1.225.272.262.238.292.663.443.728.048.02.102-.005.119-.054 0 0 .048-.246.11-.456.13-.166.283-.5.519-.634.14-.024.291-.151.66-.174.219-.014 1.224-.085 1.224-.085.255-.014.335-.093.472-.102.282-.02 1.02.002 1.26-.017.239-.018.374-.165.423-.292.048-.126.035-.208.035-.208s-.233-.403-1.596-.956c-.8-.324-4.189-1.074-4.189-1.074l-.127.1c-.125.1-.177.307-.235.479z"/><path fill="#CCD6DD" d="M25.017 4.972c-.007.028-.021.055-.041.078-.066.072-.177.078-.249.012l-.229-.208c-.073-.066-.076-.179-.012-.249.066-.072.177-.078.249-.012l.229.208c.049.044.067.11.053.171z"/><path fill="#DD2E44" d="M25.098 2.587c-.133.188-.556.591-.925.646-.332.05-1.174-.059-1.334-.08.036-.26.144-.649.185-.772.055-.162.131-.375.255-.467.013-.009 1.365.52 1.819.673z"/><path fill="#CCD6DD" d="M23.26 1.913s.14.035.221.123c.081.089.308.19.481.248.173.058.82.288 1.291.379.471.091 1.349.142 1.633.201.284.059.72.167 1.031.302.31.135.585.266.751.357.215.116.382.245.491.374 0 0 .061-.375-.419-.784-.38-.323-.765-.544-1.159-.684-.03-.011-1.085-.357-1.613-.528-.386-.124-1.001-.327-1.001-.327-.728-.245-1.103-.35-1.253-.351-.027 0-.133-.02-.261.035-.084.035-.286.624-.193.655zm2.321 2.786c-.015.064-.065.116-.134.132-.095.021-.189-.039-.21-.134l-.067-.302c-.02-.097.039-.189.134-.211.095-.021.189.039.21.134l.067.302c.007.027.006.054 0 .079zm.618-.098c-.017.073-.08.13-.159.136-.097.006-.182-.067-.188-.164l-.023-.326c-.007-.101.066-.182.164-.189.097-.006.181.067.188.164l.023.326c0 .019-.001.036-.005.053zm.628-.061c-.019.081-.094.14-.18.135-.097-.004-.172-.087-.167-.185l.015-.299c.007-.104.088-.172.185-.167.097.004.172.087.167.185l-.015.299c-.001.012-.002.022-.005.032z"/><path fill="#F3D2A2" d="M9.959 9.913c.528.627 2.12 1.746 2.296 1.929.858.887 1.814 1.427 2.462 2.275l-2.361 2.434c-.63-.478-1.263-1.253-2.178-2.161-.545-.541-1.597-2.568-2.24-3.238 0 0-1.501-1.862-2.791-4.312-.412-.783.992-1.415 1.578-.903.627.548 1.394 1.44 1.978 2.103.308.35 1.101 1.689 1.256 1.873z"/><path fill="#CCD6DD" d="M3.126 1.742c.72-.945 2.329-.518 2.762.695.291.816.305 2.096.709 2.499.403.404.557 1.034.564 1.244.007.21-.226.356-.443.153 0 0 .587.633-.079.709-.665.075-.213.506-.649.398-.436-.108-.371-.43-.371-.43s.003.777-.318.443c-.321-.335-1.899-2.64-2.247-3.716-.228-.706-.453-1.306.072-1.995z"/><path fill="#BE1931" d="M3.37 1.971c.68-.974 2.206-.218 2.442.615.236.833.295 1.916.699 2.319.403.403.945 1.181.951 1.391.007.21-.308.354-.525.151 0 0 .702.676.036.751-.666.075-.492.662-.928.554-.436-.108-.512-.774-.512-.774s.003.777-.318.443c-.321-.335-1.64-2.454-1.968-3.536s-.197-1.456.123-1.914z"/><path fill="#CCD6DD" d="M5.26 6.328c-.044.049-.058.12-.032.185.037.09.14.133.23.096l1.16-.595c.091-.039.133-.14.096-.231-.037-.09-.14-.133-.23-.096l-1.16.595c-.025.012-.046.027-.064.046zm-.395-.779c-.044.049-.058.12-.032.185.037.09.14.133.23.096l1.09-.48c.091-.039.133-.14.096-.231-.037-.09-.14-.133-.23-.096l-1.09.48c-.025.012-.047.027-.064.046zm-.318-.737c-.059.047-.083.128-.055.202.036.091.138.136.228.1l.974-.415c.094-.037.136-.137.101-.229-.035-.09-.137-.135-.228-.099l-.974.415c-.018.006-.033.015-.046.026zm-.244-.697c-.073.041-.107.13-.079.211.032.092.133.14.224.108l.934-.349c.098-.036.14-.133.108-.225-.032-.092-.133-.14-.224-.108l-.934.35c-.011.003-.02.008-.029.013z"/><path fill="#A0041E" d="M14.549 19.12s-1.718-1.063-2.419-1.602c-.699-.539-2.317-2.941-2.317-2.941s1.985-2.051 3.074-2.762l2.584 1.916 2.391-2.222s2.49.991 3.178 2.139c0 0-1.129 1.842-1.485 2.436-.017.458.008 1.039.238 1.069l-5.244 1.967z"/><path fill="#F3D2A2" d="M14.593 29.239l1.825-3.939c.215-.468.774-.673 1.242-.458.467.217.674.778.457 1.245l-1.822 3.941c-.217.468-.776.674-1.245.457-.467-.217-.672-.777-.457-1.246z"/><path fill="#F3D2A2" d="M14.07 34.202s.297-3.515.386-4.188c.089-.673.599-1.197 1.114-1.146.511.049.75.431.817 1.295.067.863-.959 3.206-.867 4.121.03.297.934.551.683.743-.111.085-.853.164-1.01.148l-.564.03c-.252-.025-.888.031-1.04-.149-.158-.188.454-.593.481-.854z"/><path fill="#DD2E44" d="M18.425 26.836s.568-.446.979-.776c0 0-.409-.721.615-1.479 1.025-.758 1.688-.396 1.688-.396s.231.09 1.038-.153c.383-.115 1.147-.307 1.147-.307s-.041-1.617-.267-2.601l-1.951-.077s-.203-.944-.529-1.22c-.328-.274-.523-.51-.771-.794-.691-.791-.6-2.399-.668-2.762 0 0-2.408.956-4.149 1.446-1.348.38-3.291.024-3.291.024.481.655 1.548 1.386 2.272 2.183.707.777 2.285 4.916 1.848 5.403-.438.487-1.062 1.535-1.062 1.535s.615.449 1.032.802c.584.493 1.072.613 1.072.613s.645-1.102.997-1.441z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f938-1f3fd-200d-2640-fe0f.svg b/public/emoji/1f938-1f3fd-200d-2640-fe0f.svg
index 79301f54b7d3c6fed62167048c4559f0f996bd3e..58447e65413c721009805f3e4f6e0277c2750d89 100644
--- a/public/emoji/1f938-1f3fd-200d-2640-fe0f.svg
+++ b/public/emoji/1f938-1f3fd-200d-2640-fe0f.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#D5AB88" d="M23.535 29.045c-.945-1.361-.746-3.135.443-3.963 1.189-.826 2.922-.395 3.867.967.946 1.359.747 3.134-.443 3.961-1.189.827-2.922.395-3.867-.965z"/><path fill="#DD2E44" d="M33.129 2.987c0-.55-.451-.998-1.003-.995l-3.002.014c-.55.002-.995.452-.993 1.003.004.552.452.998 1.005.995l2.999-.012c.552-.003 1-.452.994-1.005zM4.977 8.375c.034-.215.003-.447-.11-.655-.268-.481-.874-.658-1.36-.392L1.02 8.697c-.481.267-.66.872-.394 1.356.266.485.876.661 1.358.394L4.472 9.08c.277-.154.452-.415.505-.705z"/><path fill="#D5AB88" d="M24.254 23.543l1.871 3.49c.264.486.082 1.127-.4 1.384-.484.264-1.09.097-1.354-.389l-1.75-3.22-2.281 1.586-.435-2.134c-.142-.22-.265-.531-.364-.964-.605-2.623-2.103-8.281-2.103-8.281 1.815-1.262 4.851 2.379 6.27 4.421.344.495.676.448.789.791 1.049-.544.782 1.323 1.153.909-.001.001.491 1.327-1.396 2.407z"/><path fill="#D5AB88" d="M9.982 12.741c-.145.59.162 1.212.742 1.446l8.148 3.285c.637.256 1.361-.052 1.618-.688.251-.64-.052-1.36-.688-1.617l-8.148-3.284c-.637-.257-1.361.052-1.617.689-.022.056-.04.112-.055.169z"/><path fill="#D5AB88" d="M3.749 8.474c-.221.506-.073 1.097.368 1.376l6.183 3.931c.483.305 1.136.124 1.455-.41.316-.536.19-1.213-.294-1.521L5.277 7.922c-.483-.308-1.134-.125-1.455.408-.03.047-.052.095-.073.144zm25.355-5.947c-.478-.18-1.019-.023-1.257.39l-3.318 5.801c-.263.453-.058 1.042.449 1.313.514.27 1.135.125 1.394-.329l3.323-5.801c.259-.451.055-1.042-.455-1.312-.045-.025-.09-.044-.136-.062z"/><path fill="#D5AB88" d="M26.091 8.32c-.427-.37-1.071-.38-1.51.001l-6.164 5.347c-.482.417-.534 1.146-.118 1.629.423.476 1.148.533 1.628.114l6.165-5.347c.482-.418.534-1.146.115-1.628-.035-.042-.075-.081-.116-.116zm3.768 12.111l-4.341.033c-.516.004-.934.428-.931.943.004.515.43.935.945.93l4.342-.031c.516-.004.934-.429.931-.944-.004-.515-.43-.934-.946-.931z"/><path fill="#D5AB88" d="M35.382 22.302l-5.077-1.722c-.487-.165-1.022.098-1.188.587-.166.486.098 1.023.587 1.188l5.076 1.722c.487.166 1.022-.1 1.188-.586.166-.49-.098-1.025-.586-1.189z"/><path fill="#963B22" d="M29.001 26.869c-.536-.426-1.155-.82-1.155-.82s.557.951.568 1.508c.012.676-.272 1.092-.272 1.092-1.327-.857-2.453.017-2.893-.09-.438-.105-1.01-1.019-1.01-1.019s.319.815.43 1.104c.109.288.038.702-.383.631-.4-.067-.84-1.062-.576-1.291.143-.124-.805-.762-.805-.762s-.32 1.542.218 2.679c.038.081.084.157.126.235-.229-.064-.489-.098-.78-.064-.692.081-1.906.589-2.519 1.538-.473.73-.565 1.851-.565 1.851.227-.586.847-1.003 1.584-1.086.978-.11 1.984.781 2.909.018.408-.337.565-.649.604-.91.492.292 1.076.438 1.766.354 1.342-.164 2.69-1.311 2.986-2.11.381-1.026.379-2.371-.233-2.858z"/><path fill="#A0041E" d="M16.551 18.119s-1.816-1.205-2.518-1.744c-.699-.539-1.703-1.006-1.703-1.006s.549-2.18 1.638-2.891l3.439.682 3.711-2.142s1.646.918 2.334 2.065c0 0-1.634 1.235-2.308 1.627.318.502-.363 1.586-.363 1.586l-4.23 1.823z"/><path fill="#D5AB88" d="M17.595 28.238l1.825-3.94c.215-.468.773-.673 1.242-.458.467.217.674.778.457 1.245l-1.822 3.941c-.217.468-.776.674-1.245.457-.467-.215-.672-.776-.457-1.245z"/><path fill="#D5AB88" d="M17.019 34.041l.529-5.335c.051-.513.51-.89 1.024-.839.511.049.89.511.839 1.025l-.53 5.333c-.049.513-.512.89-1.023.841-.513-.051-.892-.513-.839-1.025z"/><path fill="#DD2E44" d="M21.428 25.835s.568-.446.979-.776c0 0-.409-.721.615-1.479 1.025-.758 1.688-.396 1.688-.396s.231.09 1.038-.153c.383-.115 1.147-.307 1.147-.307s-.041-1.617-.267-2.601l-1.951-.077s-.203-.944-.529-1.22c-.328-.274-.822-.342-1.07-.626-.691-.791-1.863-3.126-1.932-3.489 0 0-.959.754-2.635 1.664-1.025.559-3.113.997-3.113.997.481.655 2.098 1.985 2.822 2.782.707.777 1.605 3.685 1.168 4.172-.438.487-1.062 1.535-1.062 1.535s.615.449 1.032.802c.584.493 1.072.613 1.072.613s.645-1.102.998-1.441z"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#D4AB88" d="M20.533 30.046c-.945-1.361-.746-3.135.443-3.963 1.189-.826 2.922-.395 3.867.967.946 1.359.747 3.134-.443 3.961-1.189.827-2.922.395-3.867-.965z"/><path fill="#963B22" d="M21.25 31.724s.75.742-.372 1.669c-.925.764-1.932-.128-2.909-.018-.737.083-1.357.5-1.584 1.086 0 0 .092-1.121.564-1.852.613-.949 1.827-1.457 2.52-1.538 1.081-.125 1.781.653 1.781.653z"/><path fill="#D4AB88" d="M21.251 24.544l1.871 3.49c.264.486.082 1.127-.4 1.384-.484.264-1.09.097-1.354-.389l-1.75-3.22-2.281 1.586-.436-2.134c-.142-.22 5.374-2.71 5.745-3.124.001.001.492 1.327-1.395 2.407z"/><path fill="#D4AB88" d="M26.857 21.431l-4.341.033c-.516.004-.934.428-.931.943.004.515.43.935.945.93l4.342-.031c.516-.004.934-.429.931-.944-.005-.515-.43-.934-.946-.931z"/><path fill="#D4AB88" d="M30.852 22.974c-.743-.149-3.178-1.455-3.772-1.485-.594-.03-.799.189-.965.679-.166.486.223.747 1.025 1.311.802.564 2.911.505 3.386.624.135.034.398.385.653.505.505.238.833-.071 1.129-.059.442.018.76.209.832 0l.148-.267c.119-.416-.471-.753-1.069-1.129-.303-.191-1.117-.129-1.367-.179z"/><path fill="#963B22" d="M24.843 27.05s.619.395 1.155.82c.612.487.614 1.832.235 2.857-.297.799-1.645 1.946-2.986 2.11-1.516.185-2.541-.699-3.126-1.936-.538-1.137-.218-2.679-.218-2.679s.947.638.805.762c-.264.229.176 1.224.576 1.291.421.071.492-.343.383-.631-.11-.289-.43-1.104-.43-1.104s.571.914 1.01 1.02c.439.106 1.565-.768 2.893.09 0 0 .283-.416.271-1.092-.011-.557-.568-1.508-.568-1.508z"/><path fill="#D4AB88" d="M21.078 8.847c-.168.504-.728.966-.91 1.143-.822.803-2.415 2.375-3.194 2.938l2.622 2.15c.571-.547 1.504-1.719 2.309-2.726.48-.6.976-.907 1.274-1.816 0 0 .668-3.441 1.67-6.022.32-.825-1.304-1.405-1.67-.718-.363.681-.824 1.654-1.063 2.295-.162.439-.962 2.528-1.038 2.756z"/><path fill="#BE1931" d="M23.011 2.446c-.055.164-.202.758-.202.984l-.24 1.347c-.014.067.032.132.099.142.197.031.834-.084 1.225.272.262.238.292.663.443.728.048.02.102-.005.119-.054 0 0 .048-.246.11-.456.13-.166.283-.5.519-.634.14-.024.291-.151.66-.174.219-.014 1.224-.085 1.224-.085.255-.014.335-.093.472-.102.282-.02 1.02.002 1.26-.017.239-.018.374-.165.423-.292.048-.126.035-.208.035-.208s-.233-.403-1.596-.956c-.8-.324-4.189-1.074-4.189-1.074l-.127.1c-.125.1-.177.307-.235.479z"/><path fill="#CCD6DD" d="M25.017 4.972c-.007.028-.021.055-.041.078-.066.072-.177.078-.249.012l-.229-.208c-.073-.066-.076-.179-.012-.249.066-.072.177-.078.249-.012l.229.208c.049.044.067.11.053.171z"/><path fill="#DD2E44" d="M25.098 2.587c-.133.188-.556.591-.925.646-.332.05-1.174-.059-1.334-.08.036-.26.144-.649.185-.772.055-.162.131-.375.255-.467.013-.009 1.365.52 1.819.673z"/><path fill="#CCD6DD" d="M23.26 1.913s.14.035.221.123c.081.089.308.19.481.248.173.058.82.288 1.291.379.471.091 1.349.142 1.633.201.284.059.72.167 1.031.302.31.135.585.266.751.357.215.116.382.245.491.374 0 0 .061-.375-.419-.784-.38-.323-.765-.544-1.159-.684-.03-.011-1.085-.357-1.613-.528-.386-.124-1.001-.327-1.001-.327-.728-.245-1.103-.35-1.253-.351-.027 0-.133-.02-.261.035-.084.035-.286.624-.193.655zm2.321 2.786c-.015.064-.065.116-.134.132-.095.021-.189-.039-.21-.134l-.067-.302c-.02-.097.039-.189.134-.211.095-.021.189.039.21.134l.067.302c.007.027.006.054 0 .079zm.618-.098c-.017.073-.08.13-.159.136-.097.006-.182-.067-.188-.164l-.023-.326c-.007-.101.066-.182.164-.189.097-.006.181.067.188.164l.023.326c0 .019-.001.036-.005.053zm.628-.061c-.019.081-.094.14-.18.135-.097-.004-.172-.087-.167-.185l.015-.299c.007-.104.088-.172.185-.167.097.004.172.087.167.185l-.015.299c-.001.012-.002.022-.005.032z"/><path fill="#D4AB88" d="M9.959 9.913c.528.627 2.12 1.746 2.296 1.929.858.887 1.814 1.427 2.462 2.275l-2.361 2.434c-.63-.478-1.263-1.253-2.178-2.161-.545-.541-1.597-2.568-2.24-3.238 0 0-1.501-1.862-2.791-4.312-.412-.783.992-1.415 1.578-.903.627.548 1.394 1.44 1.978 2.103.308.35 1.101 1.689 1.256 1.873z"/><path fill="#CCD6DD" d="M3.126 1.742c.72-.945 2.329-.518 2.762.695.291.816.305 2.096.709 2.499.403.404.557 1.034.564 1.244.007.21-.226.356-.443.153 0 0 .587.633-.079.709-.665.075-.213.506-.649.398-.436-.108-.371-.43-.371-.43s.003.777-.318.443c-.321-.335-1.899-2.64-2.247-3.716-.228-.706-.453-1.306.072-1.995z"/><path fill="#BE1931" d="M3.37 1.971c.68-.974 2.206-.218 2.442.615.236.833.295 1.916.699 2.319.403.403.945 1.181.951 1.391.007.21-.308.354-.525.151 0 0 .702.676.036.751-.666.075-.492.662-.928.554-.436-.108-.512-.774-.512-.774s.003.777-.318.443c-.321-.335-1.64-2.454-1.968-3.536s-.197-1.456.123-1.914z"/><path fill="#CCD6DD" d="M5.26 6.328c-.044.049-.058.12-.032.185.037.09.14.133.23.096l1.16-.595c.091-.039.133-.14.096-.231-.037-.09-.14-.133-.23-.096l-1.16.595c-.025.012-.046.027-.064.046zm-.395-.779c-.044.049-.058.12-.032.185.037.09.14.133.23.096l1.09-.48c.091-.039.133-.14.096-.231-.037-.09-.14-.133-.23-.096l-1.09.48c-.025.012-.047.027-.064.046zm-.318-.737c-.059.047-.083.128-.055.202.036.091.138.136.228.1l.974-.415c.094-.037.136-.137.101-.229-.035-.09-.137-.135-.228-.099l-.974.415c-.018.006-.033.015-.046.026zm-.244-.697c-.073.041-.107.13-.079.211.032.092.133.14.224.108l.934-.349c.098-.036.14-.133.108-.225-.032-.092-.133-.14-.224-.108l-.934.35c-.011.003-.02.008-.029.013z"/><path fill="#A0041E" d="M14.549 19.12s-1.718-1.063-2.419-1.602c-.699-.539-2.317-2.941-2.317-2.941s1.985-2.051 3.074-2.762l2.584 1.916 2.391-2.222s2.49.991 3.178 2.139c0 0-1.129 1.842-1.485 2.436-.017.458.008 1.039.238 1.069l-5.244 1.967z"/><path fill="#D4AB88" d="M14.593 29.239l1.825-3.939c.215-.468.774-.673 1.242-.458.467.217.674.778.457 1.245l-1.822 3.941c-.217.468-.776.674-1.245.457-.467-.217-.672-.777-.457-1.246z"/><path fill="#D4AB88" d="M14.07 34.202s.297-3.515.386-4.188c.089-.673.599-1.197 1.114-1.146.511.049.75.431.817 1.295.067.863-.959 3.206-.867 4.121.03.297.934.551.683.743-.111.085-.853.164-1.01.148l-.564.03c-.252-.025-.888.031-1.04-.149-.158-.188.454-.593.481-.854z"/><path fill="#DD2E44" d="M18.425 26.836s.568-.446.979-.776c0 0-.409-.721.615-1.479 1.025-.758 1.688-.396 1.688-.396s.231.09 1.038-.153c.383-.115 1.147-.307 1.147-.307s-.041-1.617-.267-2.601l-1.951-.077s-.203-.944-.529-1.22c-.328-.274-.523-.51-.771-.794-.691-.791-.6-2.399-.668-2.762 0 0-2.408.956-4.149 1.446-1.348.38-3.291.024-3.291.024.481.655 1.548 1.386 2.272 2.183.707.777 2.285 4.916 1.848 5.403-.438.487-1.062 1.535-1.062 1.535s.615.449 1.032.802c.584.493 1.072.613 1.072.613s.645-1.102.997-1.441z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f938-1f3fd-200d-2642-fe0f.svg b/public/emoji/1f938-1f3fd-200d-2642-fe0f.svg
index 0f45265fe61daac983eefad6e6fdeef8f77a6267..bb9f50ce88e5b3b858ab0ab2b55f8790eedc90c0 100644
--- a/public/emoji/1f938-1f3fd-200d-2642-fe0f.svg
+++ b/public/emoji/1f938-1f3fd-200d-2642-fe0f.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#D5AB88" d="M23.535 29.045c-.945-1.361-.746-3.135.443-3.963 1.189-.826 2.922-.395 3.867.967.946 1.359.747 3.134-.443 3.961-1.189.827-2.922.395-3.867-.965z"/><path fill="#4289C1" d="M33.129 2.987c0-.55-.451-.998-1.003-.995l-3.002.014c-.55.002-.995.452-.993 1.003.004.552.452.998 1.005.995l2.999-.012c.552-.003 1-.452.994-1.005zM4.977 8.375c.034-.215.003-.447-.11-.655-.268-.481-.874-.658-1.36-.392L1.02 8.697c-.481.267-.66.872-.394 1.356.266.485.876.661 1.358.394L4.472 9.08c.277-.154.452-.415.505-.705z"/><path fill="#D5AB88" d="M24.254 23.543l1.871 3.49c.264.486.082 1.127-.4 1.384-.484.264-1.09.097-1.354-.389l-1.75-3.22-2.281 1.586-.435-2.134c-.142-.22-.265-.531-.364-.964-.605-2.623-2.103-8.281-2.103-8.281 1.815-1.262 4.851 2.379 6.27 4.421.344.495.676.448.789.791 1.049-.544.782 1.323 1.153.909-.001.001.491 1.327-1.396 2.407z"/><path fill="#D5AB88" d="M9.982 12.741c-.145.59.162 1.212.742 1.446l8.148 3.285c.637.256 1.361-.052 1.618-.688.251-.64-.052-1.36-.688-1.617l-8.148-3.284c-.637-.257-1.361.052-1.617.689-.022.056-.04.112-.055.169z"/><path fill="#D5AB88" d="M3.749 8.474c-.221.506-.073 1.097.368 1.376l6.183 3.931c.483.305 1.136.124 1.455-.41.316-.536.19-1.213-.294-1.521L5.277 7.922c-.483-.308-1.134-.125-1.455.408-.03.047-.052.095-.073.144zm25.355-5.947c-.478-.18-1.019-.023-1.257.39l-3.318 5.801c-.263.453-.058 1.042.449 1.313.514.27 1.135.125 1.394-.329l3.323-5.801c.259-.451.055-1.042-.455-1.312-.045-.025-.09-.044-.136-.062z"/><path fill="#D5AB88" d="M26.091 8.32c-.427-.37-1.071-.38-1.51.001l-6.164 5.347c-.482.417-.534 1.146-.118 1.629.423.476 1.148.533 1.628.114l6.165-5.347c.482-.418.534-1.146.115-1.628-.035-.042-.075-.081-.116-.116zm3.768 12.111l-4.341.033c-.516.004-.934.428-.931.943.004.515.43.935.945.93l4.342-.031c.516-.004.934-.429.931-.944-.004-.515-.43-.934-.946-.931z"/><path fill="#D5AB88" d="M35.382 22.302l-5.077-1.722c-.487-.165-1.022.098-1.188.587-.166.486.098 1.023.587 1.188l5.076 1.722c.487.166 1.022-.1 1.188-.586.166-.49-.098-1.025-.586-1.189z"/><path fill="#963B22" d="M29.062 29.647c-.25 1.188-1.471 2.025-2.812 2.189-1.516.185-2.541-.699-3.126-1.935-.538-1.137-.437-2.316-.312-2.629s.926.075.797.712c-.151.747.229 1.413.678 1.291.317-.086.576-.391.383-.631-.232-.289-.149-.476-.149-.476s.182-.276.729.391c.287.35 1.565-.768 2.893.09 0 0 .283-.416.272-1.092-.004-.199-.078-.448-.171-.687-.168-.428 1.342.29.818 2.777z"/><path fill="#2A6797" d="M16.551 18.119s-1.816-1.205-2.518-1.744c-.699-.539-1.703-1.006-1.703-1.006s.549-2.18 1.638-2.891l3.439.682 3.711-2.142s1.646.918 2.334 2.065c0 0-1.634 1.235-2.308 1.627.318.502-.363 1.586-.363 1.586l-4.23 1.823z"/><path fill="#D5AB88" d="M17.595 28.238l1.825-3.94c.215-.468.773-.673 1.242-.458.467.217.674.778.457 1.245l-1.822 3.941c-.217.468-.776.674-1.245.457-.467-.215-.672-.776-.457-1.245z"/><path fill="#D5AB88" d="M17.019 34.041l.529-5.335c.051-.513.51-.89 1.024-.839.511.049.89.511.839 1.025l-.53 5.333c-.049.513-.512.89-1.023.841-.513-.051-.892-.513-.839-1.025z"/><path fill="#4289C1" d="M21.428 25.835s.568-.446.979-.776c0 0-.409-.721.615-1.479 1.025-.758 1.688-.396 1.688-.396s.231.09 1.038-.153c.383-.115 1.147-.307 1.147-.307s-.041-1.617-.267-2.601l-1.951-.077s-.77-.921-1.801-2.296-1.662-2.676-1.73-3.039c0 0-.959.754-2.635 1.664-1.025.559-3.113.997-3.113.997.481.655 1.985 2.412 2.572 3.315.812 1.25 1.855 3.152 1.418 3.639-.438.487-1.062 1.535-1.062 1.535s.615.449 1.032.802c.584.493 1.072.613 1.072.613s.645-1.102.998-1.441z"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#D4AB88" d="M20.533 30.046c-.945-1.361-.746-3.135.443-3.963 1.189-.826 2.922-.395 3.867.967.946 1.359.747 3.134-.443 3.961-1.189.827-2.922.395-3.867-.965z"/><path fill="#D4AB88" d="M21.251 24.544l1.871 3.49c.264.486.082 1.127-.4 1.384-.484.264-1.09.097-1.354-.389l-1.75-3.22-2.281 1.586-.436-2.134c-.142-.22 5.374-2.71 5.745-3.124.001.001.492 1.327-1.395 2.407z"/><path fill="#D4AB88" d="M26.857 21.431l-4.341.033c-.516.004-.934.428-.931.943.004.515.43.935.945.93l4.342-.031c.516-.004.934-.429.931-.944-.005-.515-.43-.934-.946-.931z"/><path fill="#D4AB88" d="M30.852 22.974c-.743-.149-3.178-1.455-3.772-1.485-.594-.03-.799.189-.965.679-.166.486.223.747 1.025 1.311.802.564 2.911.505 3.386.624.135.034.398.385.653.505.505.238.833-.071 1.129-.059.442.018.76.209.832 0l.148-.267c.119-.416-.471-.753-1.069-1.129-.303-.191-1.117-.129-1.367-.179z"/><path fill="#963B22" d="M25.36 28.167s.236.077.49.713c.223.557.267 1.248 0 1.871-.336.783-1.515 1.537-2.606 1.515-1.527-.031-2.378-.501-2.963-1.738-.538-1.137-.377-2.306-.377-2.306s.947.638.805.762c-.264.229.176 1.224.576 1.291.421.071.492-.343.383-.631-.11-.289-.34-.542-.139-.676s.361.205.691.512c.334.312.557.713 1.203 1.069 0 0 1.803-.434 1.96-1.092.133-.555-.023-1.29-.023-1.29z"/><path fill="#D4AB88" d="M20.926 8.62c-.168.504-.934 1.145-1.116 1.322-.822.803-2.361 2.536-3.141 3.099l2.927 2.037c.571-.547 1.504-1.719 2.309-2.726.48-.6 1.16-1.419 1.458-2.328 0 0 .484-2.929 1.486-5.51.32-.825-1.304-1.405-1.67-.718-.363.681-.776 1.496-1.015 2.137-.161.439-1.162 2.459-1.238 2.687z"/><path fill="#269" d="M23.011 2.446c-.055.164-.202.758-.202.984l-.24 1.347c-.014.067.032.132.099.142.197.031.834-.084 1.225.272.262.238.292.663.443.728.048.02.102-.005.119-.054 0 0 .048-.246.11-.456.13-.166.283-.5.519-.634.14-.024.291-.151.66-.174.219-.014 1.224-.085 1.224-.085.255-.014.335-.093.472-.102.282-.02 1.02.002 1.26-.017.239-.018.374-.165.423-.292.048-.126.035-.208.035-.208s-.233-.403-1.596-.956c-.8-.324-4.189-1.074-4.189-1.074l-.127.1c-.125.1-.177.307-.235.479z"/><path fill="#CCD6DD" d="M25.017 4.972c-.007.028-.021.055-.041.078-.066.072-.177.078-.249.012l-.229-.208c-.073-.066-.076-.179-.012-.249.066-.072.177-.078.249-.012l.229.208c.049.044.067.11.053.171z"/><path fill="#3B88C3" d="M25.098 2.587c-.133.188-.556.591-.925.646-.332.05-1.174-.059-1.334-.08.036-.26.144-.649.185-.772.055-.162.131-.375.255-.467.013-.009 1.365.52 1.819.673z"/><path fill="#CCD6DD" d="M23.26 1.913s.14.035.221.123c.081.089.308.19.481.248.173.058.82.288 1.291.379.471.091 1.349.142 1.633.201.284.059.72.167 1.031.302.31.135.585.266.751.357.215.116.382.245.491.374 0 0 .061-.375-.419-.784-.38-.323-.765-.544-1.159-.684-.03-.011-1.085-.357-1.613-.528-.386-.124-1.001-.327-1.001-.327-.728-.245-1.103-.35-1.253-.351-.027 0-.133-.02-.261.035-.084.035-.286.624-.193.655zm2.321 2.786c-.015.064-.065.116-.134.132-.095.021-.189-.039-.21-.134l-.067-.302c-.02-.097.039-.189.134-.211.095-.021.189.039.21.134l.067.302c.007.027.006.054 0 .079zm.618-.098c-.017.073-.08.13-.159.136-.097.006-.182-.067-.188-.164l-.023-.326c-.007-.101.066-.182.164-.189.097-.006.181.067.188.164l.023.326c0 .019-.001.036-.005.053zm.628-.061c-.019.081-.094.14-.18.135-.097-.004-.172-.087-.167-.185l.015-.299c.007-.104.088-.172.185-.167.097.004.172.087.167.185l-.015.299c-.001.012-.002.022-.005.032z"/><path fill="#D4AB88" d="M10.141 9.777c.528.627 1.938 1.882 2.115 2.065.858.887 1.814 1.427 2.462 2.275l-2.361 2.434c-.63-.478-1.263-1.253-2.178-2.161-.545-.541-1.833-2.663-2.476-3.332 0 0-1.266-1.767-2.555-4.217-.413-.784.991-1.416 1.577-.904.627.548 1.394 1.44 1.978 2.103.308.35 1.282 1.553 1.438 1.737z"/><path fill="#CCD6DD" d="M3.126 1.742c.72-.945 2.329-.518 2.762.695.291.816.305 2.096.709 2.499.403.404.557 1.034.564 1.244.007.21-.226.356-.443.153 0 0 .587.633-.079.709-.665.075-.213.506-.649.398-.436-.108-.371-.43-.371-.43s.003.777-.318.443c-.321-.335-1.899-2.64-2.247-3.716-.228-.706-.453-1.306.072-1.995z"/><path fill="#269" d="M3.37 1.971c.68-.974 2.206-.218 2.442.615.236.833.295 1.916.699 2.319.403.403.945 1.181.951 1.391.007.21-.308.354-.525.151 0 0 .702.676.036.751-.666.075-.492.662-.928.554-.436-.108-.512-.774-.512-.774s.003.777-.318.443c-.321-.335-1.64-2.454-1.968-3.536s-.197-1.456.123-1.914z"/><path fill="#CCD6DD" d="M5.26 6.328c-.044.049-.058.12-.032.185.037.09.14.133.23.096l1.16-.595c.091-.039.133-.14.096-.231-.037-.09-.14-.133-.23-.096l-1.16.595c-.025.012-.046.027-.064.046zm-.395-.779c-.044.049-.058.12-.032.185.037.09.14.133.23.096l1.09-.48c.091-.039.133-.14.096-.231-.037-.09-.14-.133-.23-.096l-1.09.48c-.025.012-.047.027-.064.046zm-.318-.737c-.059.047-.083.128-.055.202.036.091.138.136.228.1l.974-.415c.094-.037.136-.137.101-.229-.035-.09-.137-.135-.228-.099l-.974.415c-.018.006-.033.015-.046.026zm-.244-.697c-.073.041-.107.13-.079.211.032.092.133.14.224.108l.934-.349c.098-.036.14-.133.108-.225-.032-.092-.133-.14-.224-.108l-.934.35c-.011.003-.02.008-.029.013z"/><path fill="#269" d="M14.549 19.12s-1.718-1.063-2.419-1.602c-.699-.539-2.317-2.941-2.317-2.941s1.985-2.051 3.074-2.762l2.584 1.916 2.391-2.222s2.49.991 3.178 2.139c0 0-1.129 1.842-1.485 2.436-.017.458.008 1.039.238 1.069l-5.244 1.967z"/><path fill="#D4AB88" d="M14.593 29.239l1.825-3.939c.215-.468.774-.673 1.242-.458.467.217.674.778.457 1.245l-1.822 3.941c-.217.468-.776.674-1.245.457-.467-.217-.672-.777-.457-1.246z"/><path fill="#D4AB88" d="M13.976 34.214s.297-3.515.386-4.188c.089-.673.599-1.197 1.114-1.146.511.049.75.431.817 1.294.066.863-.959 3.206-.867 4.121.03.297.935.551.683.743-.111.085-.853.164-1.01.149l-.564.03c-.252-.025-.888.031-1.04-.149-.158-.188.454-.593.481-.854z"/><path fill="#3B88C3" d="M18.425 26.836s.568-.446.979-.776c0 0-.409-.721.615-1.479 1.025-.758 1.688-.396 1.688-.396s.231.09 1.038-.153c.383-.115 1.147-.307 1.147-.307s-.041-1.617-.267-2.601l-1.951-.077s-.341-.402-.546-.989c-.142-.404-.479-1.167-.624-1.515-.446-1.069-.73-1.909-.799-2.272 0 0-2.408.956-4.149 1.446-1.348.38-3.291.024-3.291.024.481.655 1.307 2.352 1.823 3.297 1.094 2.003 2.734 3.803 2.297 4.289-.438.487-1.062 1.535-1.062 1.535s.615.449 1.032.802c.584.493 1.072.613 1.072.613s.646-1.102.998-1.441z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f938-1f3fd.svg b/public/emoji/1f938-1f3fd.svg
index 79301f54b7d3c6fed62167048c4559f0f996bd3e..58447e65413c721009805f3e4f6e0277c2750d89 100644
--- a/public/emoji/1f938-1f3fd.svg
+++ b/public/emoji/1f938-1f3fd.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#D5AB88" d="M23.535 29.045c-.945-1.361-.746-3.135.443-3.963 1.189-.826 2.922-.395 3.867.967.946 1.359.747 3.134-.443 3.961-1.189.827-2.922.395-3.867-.965z"/><path fill="#DD2E44" d="M33.129 2.987c0-.55-.451-.998-1.003-.995l-3.002.014c-.55.002-.995.452-.993 1.003.004.552.452.998 1.005.995l2.999-.012c.552-.003 1-.452.994-1.005zM4.977 8.375c.034-.215.003-.447-.11-.655-.268-.481-.874-.658-1.36-.392L1.02 8.697c-.481.267-.66.872-.394 1.356.266.485.876.661 1.358.394L4.472 9.08c.277-.154.452-.415.505-.705z"/><path fill="#D5AB88" d="M24.254 23.543l1.871 3.49c.264.486.082 1.127-.4 1.384-.484.264-1.09.097-1.354-.389l-1.75-3.22-2.281 1.586-.435-2.134c-.142-.22-.265-.531-.364-.964-.605-2.623-2.103-8.281-2.103-8.281 1.815-1.262 4.851 2.379 6.27 4.421.344.495.676.448.789.791 1.049-.544.782 1.323 1.153.909-.001.001.491 1.327-1.396 2.407z"/><path fill="#D5AB88" d="M9.982 12.741c-.145.59.162 1.212.742 1.446l8.148 3.285c.637.256 1.361-.052 1.618-.688.251-.64-.052-1.36-.688-1.617l-8.148-3.284c-.637-.257-1.361.052-1.617.689-.022.056-.04.112-.055.169z"/><path fill="#D5AB88" d="M3.749 8.474c-.221.506-.073 1.097.368 1.376l6.183 3.931c.483.305 1.136.124 1.455-.41.316-.536.19-1.213-.294-1.521L5.277 7.922c-.483-.308-1.134-.125-1.455.408-.03.047-.052.095-.073.144zm25.355-5.947c-.478-.18-1.019-.023-1.257.39l-3.318 5.801c-.263.453-.058 1.042.449 1.313.514.27 1.135.125 1.394-.329l3.323-5.801c.259-.451.055-1.042-.455-1.312-.045-.025-.09-.044-.136-.062z"/><path fill="#D5AB88" d="M26.091 8.32c-.427-.37-1.071-.38-1.51.001l-6.164 5.347c-.482.417-.534 1.146-.118 1.629.423.476 1.148.533 1.628.114l6.165-5.347c.482-.418.534-1.146.115-1.628-.035-.042-.075-.081-.116-.116zm3.768 12.111l-4.341.033c-.516.004-.934.428-.931.943.004.515.43.935.945.93l4.342-.031c.516-.004.934-.429.931-.944-.004-.515-.43-.934-.946-.931z"/><path fill="#D5AB88" d="M35.382 22.302l-5.077-1.722c-.487-.165-1.022.098-1.188.587-.166.486.098 1.023.587 1.188l5.076 1.722c.487.166 1.022-.1 1.188-.586.166-.49-.098-1.025-.586-1.189z"/><path fill="#963B22" d="M29.001 26.869c-.536-.426-1.155-.82-1.155-.82s.557.951.568 1.508c.012.676-.272 1.092-.272 1.092-1.327-.857-2.453.017-2.893-.09-.438-.105-1.01-1.019-1.01-1.019s.319.815.43 1.104c.109.288.038.702-.383.631-.4-.067-.84-1.062-.576-1.291.143-.124-.805-.762-.805-.762s-.32 1.542.218 2.679c.038.081.084.157.126.235-.229-.064-.489-.098-.78-.064-.692.081-1.906.589-2.519 1.538-.473.73-.565 1.851-.565 1.851.227-.586.847-1.003 1.584-1.086.978-.11 1.984.781 2.909.018.408-.337.565-.649.604-.91.492.292 1.076.438 1.766.354 1.342-.164 2.69-1.311 2.986-2.11.381-1.026.379-2.371-.233-2.858z"/><path fill="#A0041E" d="M16.551 18.119s-1.816-1.205-2.518-1.744c-.699-.539-1.703-1.006-1.703-1.006s.549-2.18 1.638-2.891l3.439.682 3.711-2.142s1.646.918 2.334 2.065c0 0-1.634 1.235-2.308 1.627.318.502-.363 1.586-.363 1.586l-4.23 1.823z"/><path fill="#D5AB88" d="M17.595 28.238l1.825-3.94c.215-.468.773-.673 1.242-.458.467.217.674.778.457 1.245l-1.822 3.941c-.217.468-.776.674-1.245.457-.467-.215-.672-.776-.457-1.245z"/><path fill="#D5AB88" d="M17.019 34.041l.529-5.335c.051-.513.51-.89 1.024-.839.511.049.89.511.839 1.025l-.53 5.333c-.049.513-.512.89-1.023.841-.513-.051-.892-.513-.839-1.025z"/><path fill="#DD2E44" d="M21.428 25.835s.568-.446.979-.776c0 0-.409-.721.615-1.479 1.025-.758 1.688-.396 1.688-.396s.231.09 1.038-.153c.383-.115 1.147-.307 1.147-.307s-.041-1.617-.267-2.601l-1.951-.077s-.203-.944-.529-1.22c-.328-.274-.822-.342-1.07-.626-.691-.791-1.863-3.126-1.932-3.489 0 0-.959.754-2.635 1.664-1.025.559-3.113.997-3.113.997.481.655 2.098 1.985 2.822 2.782.707.777 1.605 3.685 1.168 4.172-.438.487-1.062 1.535-1.062 1.535s.615.449 1.032.802c.584.493 1.072.613 1.072.613s.645-1.102.998-1.441z"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#D4AB88" d="M20.533 30.046c-.945-1.361-.746-3.135.443-3.963 1.189-.826 2.922-.395 3.867.967.946 1.359.747 3.134-.443 3.961-1.189.827-2.922.395-3.867-.965z"/><path fill="#963B22" d="M21.25 31.724s.75.742-.372 1.669c-.925.764-1.932-.128-2.909-.018-.737.083-1.357.5-1.584 1.086 0 0 .092-1.121.564-1.852.613-.949 1.827-1.457 2.52-1.538 1.081-.125 1.781.653 1.781.653z"/><path fill="#D4AB88" d="M21.251 24.544l1.871 3.49c.264.486.082 1.127-.4 1.384-.484.264-1.09.097-1.354-.389l-1.75-3.22-2.281 1.586-.436-2.134c-.142-.22 5.374-2.71 5.745-3.124.001.001.492 1.327-1.395 2.407z"/><path fill="#D4AB88" d="M26.857 21.431l-4.341.033c-.516.004-.934.428-.931.943.004.515.43.935.945.93l4.342-.031c.516-.004.934-.429.931-.944-.005-.515-.43-.934-.946-.931z"/><path fill="#D4AB88" d="M30.852 22.974c-.743-.149-3.178-1.455-3.772-1.485-.594-.03-.799.189-.965.679-.166.486.223.747 1.025 1.311.802.564 2.911.505 3.386.624.135.034.398.385.653.505.505.238.833-.071 1.129-.059.442.018.76.209.832 0l.148-.267c.119-.416-.471-.753-1.069-1.129-.303-.191-1.117-.129-1.367-.179z"/><path fill="#963B22" d="M24.843 27.05s.619.395 1.155.82c.612.487.614 1.832.235 2.857-.297.799-1.645 1.946-2.986 2.11-1.516.185-2.541-.699-3.126-1.936-.538-1.137-.218-2.679-.218-2.679s.947.638.805.762c-.264.229.176 1.224.576 1.291.421.071.492-.343.383-.631-.11-.289-.43-1.104-.43-1.104s.571.914 1.01 1.02c.439.106 1.565-.768 2.893.09 0 0 .283-.416.271-1.092-.011-.557-.568-1.508-.568-1.508z"/><path fill="#D4AB88" d="M21.078 8.847c-.168.504-.728.966-.91 1.143-.822.803-2.415 2.375-3.194 2.938l2.622 2.15c.571-.547 1.504-1.719 2.309-2.726.48-.6.976-.907 1.274-1.816 0 0 .668-3.441 1.67-6.022.32-.825-1.304-1.405-1.67-.718-.363.681-.824 1.654-1.063 2.295-.162.439-.962 2.528-1.038 2.756z"/><path fill="#BE1931" d="M23.011 2.446c-.055.164-.202.758-.202.984l-.24 1.347c-.014.067.032.132.099.142.197.031.834-.084 1.225.272.262.238.292.663.443.728.048.02.102-.005.119-.054 0 0 .048-.246.11-.456.13-.166.283-.5.519-.634.14-.024.291-.151.66-.174.219-.014 1.224-.085 1.224-.085.255-.014.335-.093.472-.102.282-.02 1.02.002 1.26-.017.239-.018.374-.165.423-.292.048-.126.035-.208.035-.208s-.233-.403-1.596-.956c-.8-.324-4.189-1.074-4.189-1.074l-.127.1c-.125.1-.177.307-.235.479z"/><path fill="#CCD6DD" d="M25.017 4.972c-.007.028-.021.055-.041.078-.066.072-.177.078-.249.012l-.229-.208c-.073-.066-.076-.179-.012-.249.066-.072.177-.078.249-.012l.229.208c.049.044.067.11.053.171z"/><path fill="#DD2E44" d="M25.098 2.587c-.133.188-.556.591-.925.646-.332.05-1.174-.059-1.334-.08.036-.26.144-.649.185-.772.055-.162.131-.375.255-.467.013-.009 1.365.52 1.819.673z"/><path fill="#CCD6DD" d="M23.26 1.913s.14.035.221.123c.081.089.308.19.481.248.173.058.82.288 1.291.379.471.091 1.349.142 1.633.201.284.059.72.167 1.031.302.31.135.585.266.751.357.215.116.382.245.491.374 0 0 .061-.375-.419-.784-.38-.323-.765-.544-1.159-.684-.03-.011-1.085-.357-1.613-.528-.386-.124-1.001-.327-1.001-.327-.728-.245-1.103-.35-1.253-.351-.027 0-.133-.02-.261.035-.084.035-.286.624-.193.655zm2.321 2.786c-.015.064-.065.116-.134.132-.095.021-.189-.039-.21-.134l-.067-.302c-.02-.097.039-.189.134-.211.095-.021.189.039.21.134l.067.302c.007.027.006.054 0 .079zm.618-.098c-.017.073-.08.13-.159.136-.097.006-.182-.067-.188-.164l-.023-.326c-.007-.101.066-.182.164-.189.097-.006.181.067.188.164l.023.326c0 .019-.001.036-.005.053zm.628-.061c-.019.081-.094.14-.18.135-.097-.004-.172-.087-.167-.185l.015-.299c.007-.104.088-.172.185-.167.097.004.172.087.167.185l-.015.299c-.001.012-.002.022-.005.032z"/><path fill="#D4AB88" d="M9.959 9.913c.528.627 2.12 1.746 2.296 1.929.858.887 1.814 1.427 2.462 2.275l-2.361 2.434c-.63-.478-1.263-1.253-2.178-2.161-.545-.541-1.597-2.568-2.24-3.238 0 0-1.501-1.862-2.791-4.312-.412-.783.992-1.415 1.578-.903.627.548 1.394 1.44 1.978 2.103.308.35 1.101 1.689 1.256 1.873z"/><path fill="#CCD6DD" d="M3.126 1.742c.72-.945 2.329-.518 2.762.695.291.816.305 2.096.709 2.499.403.404.557 1.034.564 1.244.007.21-.226.356-.443.153 0 0 .587.633-.079.709-.665.075-.213.506-.649.398-.436-.108-.371-.43-.371-.43s.003.777-.318.443c-.321-.335-1.899-2.64-2.247-3.716-.228-.706-.453-1.306.072-1.995z"/><path fill="#BE1931" d="M3.37 1.971c.68-.974 2.206-.218 2.442.615.236.833.295 1.916.699 2.319.403.403.945 1.181.951 1.391.007.21-.308.354-.525.151 0 0 .702.676.036.751-.666.075-.492.662-.928.554-.436-.108-.512-.774-.512-.774s.003.777-.318.443c-.321-.335-1.64-2.454-1.968-3.536s-.197-1.456.123-1.914z"/><path fill="#CCD6DD" d="M5.26 6.328c-.044.049-.058.12-.032.185.037.09.14.133.23.096l1.16-.595c.091-.039.133-.14.096-.231-.037-.09-.14-.133-.23-.096l-1.16.595c-.025.012-.046.027-.064.046zm-.395-.779c-.044.049-.058.12-.032.185.037.09.14.133.23.096l1.09-.48c.091-.039.133-.14.096-.231-.037-.09-.14-.133-.23-.096l-1.09.48c-.025.012-.047.027-.064.046zm-.318-.737c-.059.047-.083.128-.055.202.036.091.138.136.228.1l.974-.415c.094-.037.136-.137.101-.229-.035-.09-.137-.135-.228-.099l-.974.415c-.018.006-.033.015-.046.026zm-.244-.697c-.073.041-.107.13-.079.211.032.092.133.14.224.108l.934-.349c.098-.036.14-.133.108-.225-.032-.092-.133-.14-.224-.108l-.934.35c-.011.003-.02.008-.029.013z"/><path fill="#A0041E" d="M14.549 19.12s-1.718-1.063-2.419-1.602c-.699-.539-2.317-2.941-2.317-2.941s1.985-2.051 3.074-2.762l2.584 1.916 2.391-2.222s2.49.991 3.178 2.139c0 0-1.129 1.842-1.485 2.436-.017.458.008 1.039.238 1.069l-5.244 1.967z"/><path fill="#D4AB88" d="M14.593 29.239l1.825-3.939c.215-.468.774-.673 1.242-.458.467.217.674.778.457 1.245l-1.822 3.941c-.217.468-.776.674-1.245.457-.467-.217-.672-.777-.457-1.246z"/><path fill="#D4AB88" d="M14.07 34.202s.297-3.515.386-4.188c.089-.673.599-1.197 1.114-1.146.511.049.75.431.817 1.295.067.863-.959 3.206-.867 4.121.03.297.934.551.683.743-.111.085-.853.164-1.01.148l-.564.03c-.252-.025-.888.031-1.04-.149-.158-.188.454-.593.481-.854z"/><path fill="#DD2E44" d="M18.425 26.836s.568-.446.979-.776c0 0-.409-.721.615-1.479 1.025-.758 1.688-.396 1.688-.396s.231.09 1.038-.153c.383-.115 1.147-.307 1.147-.307s-.041-1.617-.267-2.601l-1.951-.077s-.203-.944-.529-1.22c-.328-.274-.523-.51-.771-.794-.691-.791-.6-2.399-.668-2.762 0 0-2.408.956-4.149 1.446-1.348.38-3.291.024-3.291.024.481.655 1.548 1.386 2.272 2.183.707.777 2.285 4.916 1.848 5.403-.438.487-1.062 1.535-1.062 1.535s.615.449 1.032.802c.584.493 1.072.613 1.072.613s.645-1.102.997-1.441z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f938-1f3fe-200d-2640-fe0f.svg b/public/emoji/1f938-1f3fe-200d-2640-fe0f.svg
index ea7c23d2434fa20cc14285a695ed7c81e25b99b9..b17fdb4497bd6d4157323b8e2495b1bd12a76009 100644
--- a/public/emoji/1f938-1f3fe-200d-2640-fe0f.svg
+++ b/public/emoji/1f938-1f3fe-200d-2640-fe0f.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#AF7E57" d="M23.535 29.045c-.945-1.361-.746-3.135.443-3.963 1.189-.826 2.922-.395 3.867.967.946 1.359.747 3.134-.443 3.961-1.189.827-2.922.395-3.867-.965z"/><path fill="#DD2E44" d="M33.129 2.987c0-.55-.451-.998-1.003-.995l-3.002.014c-.55.002-.995.452-.993 1.003.004.552.452.998 1.005.995l2.999-.012c.552-.003 1-.452.994-1.005zM4.977 8.375c.034-.215.003-.447-.11-.655-.268-.481-.874-.658-1.36-.392L1.02 8.697c-.481.267-.66.872-.394 1.356.266.485.876.661 1.358.394L4.472 9.08c.277-.154.452-.415.505-.705z"/><path fill="#AF7E57" d="M24.254 23.543l1.871 3.49c.264.486.082 1.127-.4 1.384-.484.264-1.09.097-1.354-.389l-1.75-3.22-2.281 1.586-.435-2.134c-.142-.22-.265-.531-.364-.964-.605-2.623-2.103-8.281-2.103-8.281 1.815-1.262 4.851 2.379 6.27 4.421.344.495.676.448.789.791 1.049-.544.782 1.323 1.153.909-.001.001.491 1.327-1.396 2.407z"/><path fill="#AF7E57" d="M9.982 12.741c-.145.59.162 1.212.742 1.446l8.148 3.285c.637.256 1.361-.052 1.618-.688.251-.64-.052-1.36-.688-1.617l-8.148-3.284c-.637-.257-1.361.052-1.617.689-.022.056-.04.112-.055.169z"/><path fill="#AF7E57" d="M3.749 8.474c-.221.506-.073 1.097.368 1.376l6.183 3.931c.483.305 1.136.124 1.455-.41.316-.536.19-1.213-.294-1.521L5.277 7.922c-.483-.308-1.134-.125-1.455.408-.03.047-.052.095-.073.144zm25.355-5.947c-.478-.18-1.019-.023-1.257.39l-3.318 5.801c-.263.453-.058 1.042.449 1.313.514.27 1.135.125 1.394-.329l3.323-5.801c.259-.451.055-1.042-.455-1.312-.045-.025-.09-.044-.136-.062z"/><path fill="#AF7E57" d="M26.091 8.32c-.427-.37-1.071-.38-1.51.001l-6.164 5.347c-.482.417-.534 1.146-.118 1.629.423.476 1.148.533 1.628.114l6.165-5.347c.482-.418.534-1.146.115-1.628-.035-.042-.075-.081-.116-.116zm3.768 12.111l-4.341.033c-.516.004-.934.428-.931.943.004.515.43.935.945.93l4.342-.031c.516-.004.934-.429.931-.944-.004-.515-.43-.934-.946-.931z"/><path fill="#AF7E57" d="M35.382 22.302l-5.077-1.722c-.487-.165-1.022.098-1.188.587-.166.486.098 1.023.587 1.188l5.076 1.722c.487.166 1.022-.1 1.188-.586.166-.49-.098-1.025-.586-1.189z"/><path fill="#60352A" d="M29.001 26.869c-.536-.426-1.155-.82-1.155-.82s.557.951.568 1.508c.012.676-.272 1.092-.272 1.092-1.327-.857-2.453.017-2.893-.09-.438-.105-1.01-1.019-1.01-1.019s.319.815.43 1.104c.109.288.038.702-.383.631-.4-.067-.84-1.062-.576-1.291.143-.124-.805-.762-.805-.762s-.32 1.542.218 2.679c.038.081.084.157.126.235-.229-.064-.489-.098-.78-.064-.692.081-1.906.589-2.519 1.538-.473.73-.565 1.851-.565 1.851.227-.586.847-1.003 1.584-1.086.978-.11 1.984.781 2.909.018.408-.337.565-.649.604-.91.492.292 1.076.438 1.766.354 1.342-.164 2.69-1.311 2.986-2.11.381-1.026.379-2.371-.233-2.858z"/><path fill="#A0041E" d="M16.551 18.119s-1.816-1.205-2.518-1.744c-.699-.539-1.703-1.006-1.703-1.006s.549-2.18 1.638-2.891l3.439.682 3.711-2.142s1.646.918 2.334 2.065c0 0-1.634 1.235-2.308 1.627.318.502-.363 1.586-.363 1.586l-4.23 1.823z"/><path fill="#AF7E57" d="M17.595 28.238l1.825-3.94c.215-.468.773-.673 1.242-.458.467.217.674.778.457 1.245l-1.822 3.941c-.217.468-.776.674-1.245.457-.467-.215-.672-.776-.457-1.245z"/><path fill="#AF7E57" d="M17.019 34.041l.529-5.335c.051-.513.51-.89 1.024-.839.511.049.89.511.839 1.025l-.53 5.333c-.049.513-.512.89-1.023.841-.513-.051-.892-.513-.839-1.025z"/><path fill="#DD2E44" d="M21.428 25.835s.568-.446.979-.776c0 0-.409-.721.615-1.479 1.025-.758 1.688-.396 1.688-.396s.231.09 1.038-.153c.383-.115 1.147-.307 1.147-.307s-.041-1.617-.267-2.601l-1.951-.077s-.203-.944-.529-1.22c-.328-.274-.822-.342-1.07-.626-.691-.791-1.863-3.126-1.932-3.489 0 0-.959.754-2.635 1.664-1.025.559-3.113.997-3.113.997.481.655 2.098 1.985 2.822 2.782.707.777 1.605 3.685 1.168 4.172-.438.487-1.062 1.535-1.062 1.535s.615.449 1.032.802c.584.493 1.072.613 1.072.613s.645-1.102.998-1.441z"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#AF7E57" d="M20.533 30.046c-.945-1.361-.746-3.135.443-3.963 1.189-.826 2.922-.395 3.867.967.946 1.359.747 3.134-.443 3.961-1.189.827-2.922.395-3.867-.965z"/><path fill="#60352A" d="M21.25 31.724s.75.742-.372 1.669c-.925.764-1.932-.128-2.909-.018-.737.083-1.357.5-1.584 1.086 0 0 .092-1.121.564-1.852.613-.949 1.827-1.457 2.52-1.538 1.081-.125 1.781.653 1.781.653z"/><path fill="#AF7E57" d="M21.251 24.544l1.871 3.49c.264.486.082 1.127-.4 1.384-.484.264-1.09.097-1.354-.389l-1.75-3.22-2.281 1.586-.436-2.134c-.142-.22 5.374-2.71 5.745-3.124.001.001.492 1.327-1.395 2.407z"/><path fill="#AF7E57" d="M26.857 21.431l-4.341.033c-.516.004-.934.428-.931.943.004.515.43.935.945.93l4.342-.031c.516-.004.934-.429.931-.944-.005-.515-.43-.934-.946-.931z"/><path fill="#AF7E57" d="M30.852 22.974c-.743-.149-3.178-1.455-3.772-1.485-.594-.03-.799.189-.965.679-.166.486.223.747 1.025 1.311.802.564 2.911.505 3.386.624.135.034.398.385.653.505.505.238.833-.071 1.129-.059.442.018.76.209.832 0l.148-.267c.119-.416-.471-.753-1.069-1.129-.303-.191-1.117-.129-1.367-.179z"/><path fill="#60352A" d="M24.843 27.05s.619.395 1.155.82c.612.487.614 1.832.235 2.857-.297.799-1.645 1.946-2.986 2.11-1.516.185-2.541-.699-3.126-1.936-.538-1.137-.218-2.679-.218-2.679s.947.638.805.762c-.264.229.176 1.224.576 1.291.421.071.492-.343.383-.631-.11-.289-.43-1.104-.43-1.104s.571.914 1.01 1.02c.439.106 1.565-.768 2.893.09 0 0 .283-.416.271-1.092-.011-.557-.568-1.508-.568-1.508z"/><path fill="#AF7E57" d="M21.078 8.847c-.168.504-.728.966-.91 1.143-.822.803-2.415 2.375-3.194 2.938l2.622 2.15c.571-.547 1.504-1.719 2.309-2.726.48-.6.976-.907 1.274-1.816 0 0 .668-3.441 1.67-6.022.32-.825-1.304-1.405-1.67-.718-.363.681-.824 1.654-1.063 2.295-.162.439-.962 2.528-1.038 2.756z"/><path fill="#BE1931" d="M23.011 2.446c-.055.164-.202.758-.202.984l-.24 1.347c-.014.067.032.132.099.142.197.031.834-.084 1.225.272.262.238.292.663.443.728.048.02.102-.005.119-.054 0 0 .048-.246.11-.456.13-.166.283-.5.519-.634.14-.024.291-.151.66-.174.219-.014 1.224-.085 1.224-.085.255-.014.335-.093.472-.102.282-.02 1.02.002 1.26-.017.239-.018.374-.165.423-.292.048-.126.035-.208.035-.208s-.233-.403-1.596-.956c-.8-.324-4.189-1.074-4.189-1.074l-.127.1c-.125.1-.177.307-.235.479z"/><path fill="#CCD6DD" d="M25.017 4.972c-.007.028-.021.055-.041.078-.066.072-.177.078-.249.012l-.229-.208c-.073-.066-.076-.179-.012-.249.066-.072.177-.078.249-.012l.229.208c.049.044.067.11.053.171z"/><path fill="#DD2E44" d="M25.098 2.587c-.133.188-.556.591-.925.646-.332.05-1.174-.059-1.334-.08.036-.26.144-.649.185-.772.055-.162.131-.375.255-.467.013-.009 1.365.52 1.819.673z"/><path fill="#CCD6DD" d="M23.26 1.913s.14.035.221.123c.081.089.308.19.481.248.173.058.82.288 1.291.379.471.091 1.349.142 1.633.201.284.059.72.167 1.031.302.31.135.585.266.751.357.215.116.382.245.491.374 0 0 .061-.375-.419-.784-.38-.323-.765-.544-1.159-.684-.03-.011-1.085-.357-1.613-.528-.386-.124-1.001-.327-1.001-.327-.728-.245-1.103-.35-1.253-.351-.027 0-.133-.02-.261.035-.084.035-.286.624-.193.655zm2.321 2.786c-.015.064-.065.116-.134.132-.095.021-.189-.039-.21-.134l-.067-.302c-.02-.097.039-.189.134-.211.095-.021.189.039.21.134l.067.302c.007.027.006.054 0 .079zm.618-.098c-.017.073-.08.13-.159.136-.097.006-.182-.067-.188-.164l-.023-.326c-.007-.101.066-.182.164-.189.097-.006.181.067.188.164l.023.326c0 .019-.001.036-.005.053zm.628-.061c-.019.081-.094.14-.18.135-.097-.004-.172-.087-.167-.185l.015-.299c.007-.104.088-.172.185-.167.097.004.172.087.167.185l-.015.299c-.001.012-.002.022-.005.032z"/><path fill="#AF7E57" d="M9.959 9.913c.528.627 2.12 1.746 2.296 1.929.858.887 1.814 1.427 2.462 2.275l-2.361 2.434c-.63-.478-1.263-1.253-2.178-2.161-.545-.541-1.597-2.568-2.24-3.238 0 0-1.501-1.862-2.791-4.312-.412-.783.992-1.415 1.578-.903.627.548 1.394 1.44 1.978 2.103.308.35 1.101 1.689 1.256 1.873z"/><path fill="#CCD6DD" d="M3.126 1.742c.72-.945 2.329-.518 2.762.695.291.816.305 2.096.709 2.499.403.404.557 1.034.564 1.244.007.21-.226.356-.443.153 0 0 .587.633-.079.709-.665.075-.213.506-.649.398-.436-.108-.371-.43-.371-.43s.003.777-.318.443c-.321-.335-1.899-2.64-2.247-3.716-.228-.706-.453-1.306.072-1.995z"/><path fill="#BE1931" d="M3.37 1.971c.68-.974 2.206-.218 2.442.615.236.833.295 1.916.699 2.319.403.403.945 1.181.951 1.391.007.21-.308.354-.525.151 0 0 .702.676.036.751-.666.075-.492.662-.928.554-.436-.108-.512-.774-.512-.774s.003.777-.318.443c-.321-.335-1.64-2.454-1.968-3.536s-.197-1.456.123-1.914z"/><path fill="#CCD6DD" d="M5.26 6.328c-.044.049-.058.12-.032.185.037.09.14.133.23.096l1.16-.595c.091-.039.133-.14.096-.231-.037-.09-.14-.133-.23-.096l-1.16.595c-.025.012-.046.027-.064.046zm-.395-.779c-.044.049-.058.12-.032.185.037.09.14.133.23.096l1.09-.48c.091-.039.133-.14.096-.231-.037-.09-.14-.133-.23-.096l-1.09.48c-.025.012-.047.027-.064.046zm-.318-.737c-.059.047-.083.128-.055.202.036.091.138.136.228.1l.974-.415c.094-.037.136-.137.101-.229-.035-.09-.137-.135-.228-.099l-.974.415c-.018.006-.033.015-.046.026zm-.244-.697c-.073.041-.107.13-.079.211.032.092.133.14.224.108l.934-.349c.098-.036.14-.133.108-.225-.032-.092-.133-.14-.224-.108l-.934.35c-.011.003-.02.008-.029.013z"/><path fill="#A0041E" d="M14.549 19.12s-1.718-1.063-2.419-1.602c-.699-.539-2.317-2.941-2.317-2.941s1.985-2.051 3.074-2.762l2.584 1.916 2.391-2.222s2.49.991 3.178 2.139c0 0-1.129 1.842-1.485 2.436-.017.458.008 1.039.238 1.069l-5.244 1.967z"/><path fill="#AF7E57" d="M14.593 29.239l1.825-3.939c.215-.468.774-.673 1.242-.458.467.217.674.778.457 1.245l-1.822 3.941c-.217.468-.776.674-1.245.457-.467-.217-.672-.777-.457-1.246z"/><path fill="#AF7E57" d="M14.07 34.202s.297-3.515.386-4.188c.089-.673.599-1.197 1.114-1.146.511.049.75.431.817 1.295.067.863-.959 3.206-.867 4.121.03.297.934.551.683.743-.111.085-.853.164-1.01.148l-.564.03c-.252-.025-.888.031-1.04-.149-.158-.188.454-.593.481-.854z"/><path fill="#DD2E44" d="M18.425 26.836s.568-.446.979-.776c0 0-.409-.721.615-1.479 1.025-.758 1.688-.396 1.688-.396s.231.09 1.038-.153c.383-.115 1.147-.307 1.147-.307s-.041-1.617-.267-2.601l-1.951-.077s-.203-.944-.529-1.22c-.328-.274-.523-.51-.771-.794-.691-.791-.6-2.399-.668-2.762 0 0-2.408.956-4.149 1.446-1.348.38-3.291.024-3.291.024.481.655 1.548 1.386 2.272 2.183.707.777 2.285 4.916 1.848 5.403-.438.487-1.062 1.535-1.062 1.535s.615.449 1.032.802c.584.493 1.072.613 1.072.613s.645-1.102.997-1.441z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f938-1f3fe-200d-2642-fe0f.svg b/public/emoji/1f938-1f3fe-200d-2642-fe0f.svg
index c4624bd4da89b08c68c01b34f5e8bb3897e5bde9..cce9c90edb3d6fe8630acabfe71fc4c5ef8686a0 100644
--- a/public/emoji/1f938-1f3fe-200d-2642-fe0f.svg
+++ b/public/emoji/1f938-1f3fe-200d-2642-fe0f.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#AF7E57" d="M23.535 29.045c-.945-1.361-.746-3.135.443-3.963 1.189-.826 2.922-.395 3.867.967.946 1.359.747 3.134-.443 3.961-1.189.827-2.922.395-3.867-.965z"/><path fill="#4289C1" d="M33.129 2.987c0-.55-.451-.998-1.003-.995l-3.002.014c-.55.002-.995.452-.993 1.003.004.552.452.998 1.005.995l2.999-.012c.552-.003 1-.452.994-1.005zM4.977 8.375c.034-.215.003-.447-.11-.655-.268-.481-.874-.658-1.36-.392L1.02 8.697c-.481.267-.66.872-.394 1.356.266.485.876.661 1.358.394L4.472 9.08c.277-.154.452-.415.505-.705z"/><path fill="#AF7E57" d="M24.254 23.543l1.871 3.49c.264.486.082 1.127-.4 1.384-.484.264-1.09.097-1.354-.389l-1.75-3.22-2.281 1.586-.435-2.134c-.142-.22-.265-.531-.364-.964-.605-2.623-2.103-8.281-2.103-8.281 1.815-1.262 4.851 2.379 6.27 4.421.344.495.676.448.789.791 1.049-.544.782 1.323 1.153.909-.001.001.491 1.327-1.396 2.407z"/><path fill="#AF7E57" d="M9.982 12.741c-.145.59.162 1.212.742 1.446l8.148 3.285c.637.256 1.361-.052 1.618-.688.251-.64-.052-1.36-.688-1.617l-8.148-3.284c-.637-.257-1.361.052-1.617.689-.022.056-.04.112-.055.169z"/><path fill="#AF7E57" d="M3.749 8.474c-.221.506-.073 1.097.368 1.376l6.183 3.931c.483.305 1.136.124 1.455-.41.316-.536.19-1.213-.294-1.521L5.277 7.922c-.483-.308-1.134-.125-1.455.408-.03.047-.052.095-.073.144zm25.355-5.947c-.478-.18-1.019-.023-1.257.39l-3.318 5.801c-.263.453-.058 1.042.449 1.313.514.27 1.135.125 1.394-.329l3.323-5.801c.259-.451.055-1.042-.455-1.312-.045-.025-.09-.044-.136-.062z"/><path fill="#AF7E57" d="M26.091 8.32c-.427-.37-1.071-.38-1.51.001l-6.164 5.347c-.482.417-.534 1.146-.118 1.629.423.476 1.148.533 1.628.114l6.165-5.347c.482-.418.534-1.146.115-1.628-.035-.042-.075-.081-.116-.116zm3.768 12.111l-4.341.033c-.516.004-.934.428-.931.943.004.515.43.935.945.93l4.342-.031c.516-.004.934-.429.931-.944-.004-.515-.43-.934-.946-.931z"/><path fill="#AF7E57" d="M35.382 22.302l-5.077-1.722c-.487-.165-1.022.098-1.188.587-.166.486.098 1.023.587 1.188l5.076 1.722c.487.166 1.022-.1 1.188-.586.166-.49-.098-1.025-.586-1.189z"/><path fill="#60352A" d="M29.062 29.647c-.25 1.188-1.471 2.025-2.812 2.189-1.516.185-2.541-.699-3.126-1.935-.538-1.137-.437-2.316-.312-2.629s.926.075.797.712c-.151.747.229 1.413.678 1.291.317-.086.576-.391.383-.631-.232-.289-.149-.476-.149-.476s.182-.276.729.391c.287.35 1.565-.768 2.893.09 0 0 .283-.416.272-1.092-.004-.199-.078-.448-.171-.687-.168-.428 1.342.29.818 2.777z"/><path fill="#2A6797" d="M16.551 18.119s-1.816-1.205-2.518-1.744c-.699-.539-1.703-1.006-1.703-1.006s.549-2.18 1.638-2.891l3.439.682 3.711-2.142s1.646.918 2.334 2.065c0 0-1.634 1.235-2.308 1.627.318.502-.363 1.586-.363 1.586l-4.23 1.823z"/><path fill="#AF7E57" d="M17.595 28.238l1.825-3.94c.215-.468.773-.673 1.242-.458.467.217.674.778.457 1.245l-1.822 3.941c-.217.468-.776.674-1.245.457-.467-.215-.672-.776-.457-1.245z"/><path fill="#AF7E57" d="M17.019 34.041l.529-5.335c.051-.513.51-.89 1.024-.839.511.049.89.511.839 1.025l-.53 5.333c-.049.513-.512.89-1.023.841-.513-.051-.892-.513-.839-1.025z"/><path fill="#4289C1" d="M21.428 25.835s.568-.446.979-.776c0 0-.409-.721.615-1.479 1.025-.758 1.688-.396 1.688-.396s.231.09 1.038-.153c.383-.115 1.147-.307 1.147-.307s-.041-1.617-.267-2.601l-1.951-.077s-.77-.921-1.801-2.296-1.662-2.676-1.73-3.039c0 0-.959.754-2.635 1.664-1.025.559-3.113.997-3.113.997.481.655 1.985 2.412 2.572 3.315.812 1.25 1.855 3.152 1.418 3.639-.438.487-1.062 1.535-1.062 1.535s.615.449 1.032.802c.584.493 1.072.613 1.072.613s.645-1.102.998-1.441z"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#AF7E57" d="M20.533 30.046c-.945-1.361-.746-3.135.443-3.963 1.189-.826 2.922-.395 3.867.967.946 1.359.747 3.134-.443 3.961-1.189.827-2.922.395-3.867-.965z"/><path fill="#AF7E57" d="M21.251 24.544l1.871 3.49c.264.486.082 1.127-.4 1.384-.484.264-1.09.097-1.354-.389l-1.75-3.22-2.281 1.586-.436-2.134c-.142-.22 5.374-2.71 5.745-3.124.001.001.492 1.327-1.395 2.407z"/><path fill="#AF7E57" d="M26.857 21.431l-4.341.033c-.516.004-.934.428-.931.943.004.515.43.935.945.93l4.342-.031c.516-.004.934-.429.931-.944-.005-.515-.43-.934-.946-.931z"/><path fill="#AF7E57" d="M30.852 22.974c-.743-.149-3.178-1.455-3.772-1.485-.594-.03-.799.189-.965.679-.166.486.223.747 1.025 1.311.802.564 2.911.505 3.386.624.135.034.398.385.653.505.505.238.833-.071 1.129-.059.442.018.76.209.832 0l.148-.267c.119-.416-.471-.753-1.069-1.129-.303-.191-1.117-.129-1.367-.179z"/><path fill="#60352A" d="M25.36 28.167s.236.077.49.713c.223.557.267 1.248 0 1.871-.336.783-1.515 1.537-2.606 1.515-1.527-.031-2.378-.501-2.963-1.738-.538-1.137-.377-2.306-.377-2.306s.947.638.805.762c-.264.229.176 1.224.576 1.291.421.071.492-.343.383-.631-.11-.289-.34-.542-.139-.676s.361.205.691.512c.334.312.557.713 1.203 1.069 0 0 1.803-.434 1.96-1.092.133-.555-.023-1.29-.023-1.29z"/><path fill="#AF7E57" d="M20.926 8.62c-.168.504-.934 1.145-1.116 1.322-.822.803-2.361 2.536-3.141 3.099l2.927 2.037c.571-.547 1.504-1.719 2.309-2.726.48-.6 1.16-1.419 1.458-2.328 0 0 .484-2.929 1.486-5.51.32-.825-1.304-1.405-1.67-.718-.363.681-.776 1.496-1.015 2.137-.161.439-1.162 2.459-1.238 2.687z"/><path fill="#269" d="M23.011 2.446c-.055.164-.202.758-.202.984l-.24 1.347c-.014.067.032.132.099.142.197.031.834-.084 1.225.272.262.238.292.663.443.728.048.02.102-.005.119-.054 0 0 .048-.246.11-.456.13-.166.283-.5.519-.634.14-.024.291-.151.66-.174.219-.014 1.224-.085 1.224-.085.255-.014.335-.093.472-.102.282-.02 1.02.002 1.26-.017.239-.018.374-.165.423-.292.048-.126.035-.208.035-.208s-.233-.403-1.596-.956c-.8-.324-4.189-1.074-4.189-1.074l-.127.1c-.125.1-.177.307-.235.479z"/><path fill="#CCD6DD" d="M25.017 4.972c-.007.028-.021.055-.041.078-.066.072-.177.078-.249.012l-.229-.208c-.073-.066-.076-.179-.012-.249.066-.072.177-.078.249-.012l.229.208c.049.044.067.11.053.171z"/><path fill="#3B88C3" d="M25.098 2.587c-.133.188-.556.591-.925.646-.332.05-1.174-.059-1.334-.08.036-.26.144-.649.185-.772.055-.162.131-.375.255-.467.013-.009 1.365.52 1.819.673z"/><path fill="#CCD6DD" d="M23.26 1.913s.14.035.221.123c.081.089.308.19.481.248.173.058.82.288 1.291.379.471.091 1.349.142 1.633.201.284.059.72.167 1.031.302.31.135.585.266.751.357.215.116.382.245.491.374 0 0 .061-.375-.419-.784-.38-.323-.765-.544-1.159-.684-.03-.011-1.085-.357-1.613-.528-.386-.124-1.001-.327-1.001-.327-.728-.245-1.103-.35-1.253-.351-.027 0-.133-.02-.261.035-.084.035-.286.624-.193.655zm2.321 2.786c-.015.064-.065.116-.134.132-.095.021-.189-.039-.21-.134l-.067-.302c-.02-.097.039-.189.134-.211.095-.021.189.039.21.134l.067.302c.007.027.006.054 0 .079zm.618-.098c-.017.073-.08.13-.159.136-.097.006-.182-.067-.188-.164l-.023-.326c-.007-.101.066-.182.164-.189.097-.006.181.067.188.164l.023.326c0 .019-.001.036-.005.053zm.628-.061c-.019.081-.094.14-.18.135-.097-.004-.172-.087-.167-.185l.015-.299c.007-.104.088-.172.185-.167.097.004.172.087.167.185l-.015.299c-.001.012-.002.022-.005.032z"/><path fill="#AF7E57" d="M10.141 9.777c.528.627 1.938 1.882 2.115 2.065.858.887 1.814 1.427 2.462 2.275l-2.361 2.434c-.63-.478-1.263-1.253-2.178-2.161-.545-.541-1.833-2.663-2.476-3.332 0 0-1.266-1.767-2.555-4.217-.413-.784.991-1.416 1.577-.904.627.548 1.394 1.44 1.978 2.103.308.35 1.282 1.553 1.438 1.737z"/><path fill="#CCD6DD" d="M3.126 1.742c.72-.945 2.329-.518 2.762.695.291.816.305 2.096.709 2.499.403.404.557 1.034.564 1.244.007.21-.226.356-.443.153 0 0 .587.633-.079.709-.665.075-.213.506-.649.398-.436-.108-.371-.43-.371-.43s.003.777-.318.443c-.321-.335-1.899-2.64-2.247-3.716-.228-.706-.453-1.306.072-1.995z"/><path fill="#269" d="M3.37 1.971c.68-.974 2.206-.218 2.442.615.236.833.295 1.916.699 2.319.403.403.945 1.181.951 1.391.007.21-.308.354-.525.151 0 0 .702.676.036.751-.666.075-.492.662-.928.554-.436-.108-.512-.774-.512-.774s.003.777-.318.443c-.321-.335-1.64-2.454-1.968-3.536s-.197-1.456.123-1.914z"/><path fill="#CCD6DD" d="M5.26 6.328c-.044.049-.058.12-.032.185.037.09.14.133.23.096l1.16-.595c.091-.039.133-.14.096-.231-.037-.09-.14-.133-.23-.096l-1.16.595c-.025.012-.046.027-.064.046zm-.395-.779c-.044.049-.058.12-.032.185.037.09.14.133.23.096l1.09-.48c.091-.039.133-.14.096-.231-.037-.09-.14-.133-.23-.096l-1.09.48c-.025.012-.047.027-.064.046zm-.318-.737c-.059.047-.083.128-.055.202.036.091.138.136.228.1l.974-.415c.094-.037.136-.137.101-.229-.035-.09-.137-.135-.228-.099l-.974.415c-.018.006-.033.015-.046.026zm-.244-.697c-.073.041-.107.13-.079.211.032.092.133.14.224.108l.934-.349c.098-.036.14-.133.108-.225-.032-.092-.133-.14-.224-.108l-.934.35c-.011.003-.02.008-.029.013z"/><path fill="#269" d="M14.549 19.12s-1.718-1.063-2.419-1.602c-.699-.539-2.317-2.941-2.317-2.941s1.985-2.051 3.074-2.762l2.584 1.916 2.391-2.222s2.49.991 3.178 2.139c0 0-1.129 1.842-1.485 2.436-.017.458.008 1.039.238 1.069l-5.244 1.967z"/><path fill="#AF7E57" d="M14.593 29.239l1.825-3.939c.215-.468.774-.673 1.242-.458.467.217.674.778.457 1.245l-1.822 3.941c-.217.468-.776.674-1.245.457-.467-.217-.672-.777-.457-1.246z"/><path fill="#AF7E57" d="M13.976 34.214s.297-3.515.386-4.188c.089-.673.599-1.197 1.114-1.146.511.049.75.431.817 1.294.066.863-.959 3.206-.867 4.121.03.297.935.551.683.743-.111.085-.853.164-1.01.149l-.564.03c-.252-.025-.888.031-1.04-.149-.158-.188.454-.593.481-.854z"/><path fill="#3B88C3" d="M18.425 26.836s.568-.446.979-.776c0 0-.409-.721.615-1.479 1.025-.758 1.688-.396 1.688-.396s.231.09 1.038-.153c.383-.115 1.147-.307 1.147-.307s-.041-1.617-.267-2.601l-1.951-.077s-.341-.402-.546-.989c-.142-.404-.479-1.167-.624-1.515-.446-1.069-.73-1.909-.799-2.272 0 0-2.408.956-4.149 1.446-1.348.38-3.291.024-3.291.024.481.655 1.307 2.352 1.823 3.297 1.094 2.003 2.734 3.803 2.297 4.289-.438.487-1.062 1.535-1.062 1.535s.615.449 1.032.802c.584.493 1.072.613 1.072.613s.646-1.102.998-1.441z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f938-1f3fe.svg b/public/emoji/1f938-1f3fe.svg
index ea7c23d2434fa20cc14285a695ed7c81e25b99b9..b17fdb4497bd6d4157323b8e2495b1bd12a76009 100644
--- a/public/emoji/1f938-1f3fe.svg
+++ b/public/emoji/1f938-1f3fe.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#AF7E57" d="M23.535 29.045c-.945-1.361-.746-3.135.443-3.963 1.189-.826 2.922-.395 3.867.967.946 1.359.747 3.134-.443 3.961-1.189.827-2.922.395-3.867-.965z"/><path fill="#DD2E44" d="M33.129 2.987c0-.55-.451-.998-1.003-.995l-3.002.014c-.55.002-.995.452-.993 1.003.004.552.452.998 1.005.995l2.999-.012c.552-.003 1-.452.994-1.005zM4.977 8.375c.034-.215.003-.447-.11-.655-.268-.481-.874-.658-1.36-.392L1.02 8.697c-.481.267-.66.872-.394 1.356.266.485.876.661 1.358.394L4.472 9.08c.277-.154.452-.415.505-.705z"/><path fill="#AF7E57" d="M24.254 23.543l1.871 3.49c.264.486.082 1.127-.4 1.384-.484.264-1.09.097-1.354-.389l-1.75-3.22-2.281 1.586-.435-2.134c-.142-.22-.265-.531-.364-.964-.605-2.623-2.103-8.281-2.103-8.281 1.815-1.262 4.851 2.379 6.27 4.421.344.495.676.448.789.791 1.049-.544.782 1.323 1.153.909-.001.001.491 1.327-1.396 2.407z"/><path fill="#AF7E57" d="M9.982 12.741c-.145.59.162 1.212.742 1.446l8.148 3.285c.637.256 1.361-.052 1.618-.688.251-.64-.052-1.36-.688-1.617l-8.148-3.284c-.637-.257-1.361.052-1.617.689-.022.056-.04.112-.055.169z"/><path fill="#AF7E57" d="M3.749 8.474c-.221.506-.073 1.097.368 1.376l6.183 3.931c.483.305 1.136.124 1.455-.41.316-.536.19-1.213-.294-1.521L5.277 7.922c-.483-.308-1.134-.125-1.455.408-.03.047-.052.095-.073.144zm25.355-5.947c-.478-.18-1.019-.023-1.257.39l-3.318 5.801c-.263.453-.058 1.042.449 1.313.514.27 1.135.125 1.394-.329l3.323-5.801c.259-.451.055-1.042-.455-1.312-.045-.025-.09-.044-.136-.062z"/><path fill="#AF7E57" d="M26.091 8.32c-.427-.37-1.071-.38-1.51.001l-6.164 5.347c-.482.417-.534 1.146-.118 1.629.423.476 1.148.533 1.628.114l6.165-5.347c.482-.418.534-1.146.115-1.628-.035-.042-.075-.081-.116-.116zm3.768 12.111l-4.341.033c-.516.004-.934.428-.931.943.004.515.43.935.945.93l4.342-.031c.516-.004.934-.429.931-.944-.004-.515-.43-.934-.946-.931z"/><path fill="#AF7E57" d="M35.382 22.302l-5.077-1.722c-.487-.165-1.022.098-1.188.587-.166.486.098 1.023.587 1.188l5.076 1.722c.487.166 1.022-.1 1.188-.586.166-.49-.098-1.025-.586-1.189z"/><path fill="#60352A" d="M29.001 26.869c-.536-.426-1.155-.82-1.155-.82s.557.951.568 1.508c.012.676-.272 1.092-.272 1.092-1.327-.857-2.453.017-2.893-.09-.438-.105-1.01-1.019-1.01-1.019s.319.815.43 1.104c.109.288.038.702-.383.631-.4-.067-.84-1.062-.576-1.291.143-.124-.805-.762-.805-.762s-.32 1.542.218 2.679c.038.081.084.157.126.235-.229-.064-.489-.098-.78-.064-.692.081-1.906.589-2.519 1.538-.473.73-.565 1.851-.565 1.851.227-.586.847-1.003 1.584-1.086.978-.11 1.984.781 2.909.018.408-.337.565-.649.604-.91.492.292 1.076.438 1.766.354 1.342-.164 2.69-1.311 2.986-2.11.381-1.026.379-2.371-.233-2.858z"/><path fill="#A0041E" d="M16.551 18.119s-1.816-1.205-2.518-1.744c-.699-.539-1.703-1.006-1.703-1.006s.549-2.18 1.638-2.891l3.439.682 3.711-2.142s1.646.918 2.334 2.065c0 0-1.634 1.235-2.308 1.627.318.502-.363 1.586-.363 1.586l-4.23 1.823z"/><path fill="#AF7E57" d="M17.595 28.238l1.825-3.94c.215-.468.773-.673 1.242-.458.467.217.674.778.457 1.245l-1.822 3.941c-.217.468-.776.674-1.245.457-.467-.215-.672-.776-.457-1.245z"/><path fill="#AF7E57" d="M17.019 34.041l.529-5.335c.051-.513.51-.89 1.024-.839.511.049.89.511.839 1.025l-.53 5.333c-.049.513-.512.89-1.023.841-.513-.051-.892-.513-.839-1.025z"/><path fill="#DD2E44" d="M21.428 25.835s.568-.446.979-.776c0 0-.409-.721.615-1.479 1.025-.758 1.688-.396 1.688-.396s.231.09 1.038-.153c.383-.115 1.147-.307 1.147-.307s-.041-1.617-.267-2.601l-1.951-.077s-.203-.944-.529-1.22c-.328-.274-.822-.342-1.07-.626-.691-.791-1.863-3.126-1.932-3.489 0 0-.959.754-2.635 1.664-1.025.559-3.113.997-3.113.997.481.655 2.098 1.985 2.822 2.782.707.777 1.605 3.685 1.168 4.172-.438.487-1.062 1.535-1.062 1.535s.615.449 1.032.802c.584.493 1.072.613 1.072.613s.645-1.102.998-1.441z"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#AF7E57" d="M20.533 30.046c-.945-1.361-.746-3.135.443-3.963 1.189-.826 2.922-.395 3.867.967.946 1.359.747 3.134-.443 3.961-1.189.827-2.922.395-3.867-.965z"/><path fill="#60352A" d="M21.25 31.724s.75.742-.372 1.669c-.925.764-1.932-.128-2.909-.018-.737.083-1.357.5-1.584 1.086 0 0 .092-1.121.564-1.852.613-.949 1.827-1.457 2.52-1.538 1.081-.125 1.781.653 1.781.653z"/><path fill="#AF7E57" d="M21.251 24.544l1.871 3.49c.264.486.082 1.127-.4 1.384-.484.264-1.09.097-1.354-.389l-1.75-3.22-2.281 1.586-.436-2.134c-.142-.22 5.374-2.71 5.745-3.124.001.001.492 1.327-1.395 2.407z"/><path fill="#AF7E57" d="M26.857 21.431l-4.341.033c-.516.004-.934.428-.931.943.004.515.43.935.945.93l4.342-.031c.516-.004.934-.429.931-.944-.005-.515-.43-.934-.946-.931z"/><path fill="#AF7E57" d="M30.852 22.974c-.743-.149-3.178-1.455-3.772-1.485-.594-.03-.799.189-.965.679-.166.486.223.747 1.025 1.311.802.564 2.911.505 3.386.624.135.034.398.385.653.505.505.238.833-.071 1.129-.059.442.018.76.209.832 0l.148-.267c.119-.416-.471-.753-1.069-1.129-.303-.191-1.117-.129-1.367-.179z"/><path fill="#60352A" d="M24.843 27.05s.619.395 1.155.82c.612.487.614 1.832.235 2.857-.297.799-1.645 1.946-2.986 2.11-1.516.185-2.541-.699-3.126-1.936-.538-1.137-.218-2.679-.218-2.679s.947.638.805.762c-.264.229.176 1.224.576 1.291.421.071.492-.343.383-.631-.11-.289-.43-1.104-.43-1.104s.571.914 1.01 1.02c.439.106 1.565-.768 2.893.09 0 0 .283-.416.271-1.092-.011-.557-.568-1.508-.568-1.508z"/><path fill="#AF7E57" d="M21.078 8.847c-.168.504-.728.966-.91 1.143-.822.803-2.415 2.375-3.194 2.938l2.622 2.15c.571-.547 1.504-1.719 2.309-2.726.48-.6.976-.907 1.274-1.816 0 0 .668-3.441 1.67-6.022.32-.825-1.304-1.405-1.67-.718-.363.681-.824 1.654-1.063 2.295-.162.439-.962 2.528-1.038 2.756z"/><path fill="#BE1931" d="M23.011 2.446c-.055.164-.202.758-.202.984l-.24 1.347c-.014.067.032.132.099.142.197.031.834-.084 1.225.272.262.238.292.663.443.728.048.02.102-.005.119-.054 0 0 .048-.246.11-.456.13-.166.283-.5.519-.634.14-.024.291-.151.66-.174.219-.014 1.224-.085 1.224-.085.255-.014.335-.093.472-.102.282-.02 1.02.002 1.26-.017.239-.018.374-.165.423-.292.048-.126.035-.208.035-.208s-.233-.403-1.596-.956c-.8-.324-4.189-1.074-4.189-1.074l-.127.1c-.125.1-.177.307-.235.479z"/><path fill="#CCD6DD" d="M25.017 4.972c-.007.028-.021.055-.041.078-.066.072-.177.078-.249.012l-.229-.208c-.073-.066-.076-.179-.012-.249.066-.072.177-.078.249-.012l.229.208c.049.044.067.11.053.171z"/><path fill="#DD2E44" d="M25.098 2.587c-.133.188-.556.591-.925.646-.332.05-1.174-.059-1.334-.08.036-.26.144-.649.185-.772.055-.162.131-.375.255-.467.013-.009 1.365.52 1.819.673z"/><path fill="#CCD6DD" d="M23.26 1.913s.14.035.221.123c.081.089.308.19.481.248.173.058.82.288 1.291.379.471.091 1.349.142 1.633.201.284.059.72.167 1.031.302.31.135.585.266.751.357.215.116.382.245.491.374 0 0 .061-.375-.419-.784-.38-.323-.765-.544-1.159-.684-.03-.011-1.085-.357-1.613-.528-.386-.124-1.001-.327-1.001-.327-.728-.245-1.103-.35-1.253-.351-.027 0-.133-.02-.261.035-.084.035-.286.624-.193.655zm2.321 2.786c-.015.064-.065.116-.134.132-.095.021-.189-.039-.21-.134l-.067-.302c-.02-.097.039-.189.134-.211.095-.021.189.039.21.134l.067.302c.007.027.006.054 0 .079zm.618-.098c-.017.073-.08.13-.159.136-.097.006-.182-.067-.188-.164l-.023-.326c-.007-.101.066-.182.164-.189.097-.006.181.067.188.164l.023.326c0 .019-.001.036-.005.053zm.628-.061c-.019.081-.094.14-.18.135-.097-.004-.172-.087-.167-.185l.015-.299c.007-.104.088-.172.185-.167.097.004.172.087.167.185l-.015.299c-.001.012-.002.022-.005.032z"/><path fill="#AF7E57" d="M9.959 9.913c.528.627 2.12 1.746 2.296 1.929.858.887 1.814 1.427 2.462 2.275l-2.361 2.434c-.63-.478-1.263-1.253-2.178-2.161-.545-.541-1.597-2.568-2.24-3.238 0 0-1.501-1.862-2.791-4.312-.412-.783.992-1.415 1.578-.903.627.548 1.394 1.44 1.978 2.103.308.35 1.101 1.689 1.256 1.873z"/><path fill="#CCD6DD" d="M3.126 1.742c.72-.945 2.329-.518 2.762.695.291.816.305 2.096.709 2.499.403.404.557 1.034.564 1.244.007.21-.226.356-.443.153 0 0 .587.633-.079.709-.665.075-.213.506-.649.398-.436-.108-.371-.43-.371-.43s.003.777-.318.443c-.321-.335-1.899-2.64-2.247-3.716-.228-.706-.453-1.306.072-1.995z"/><path fill="#BE1931" d="M3.37 1.971c.68-.974 2.206-.218 2.442.615.236.833.295 1.916.699 2.319.403.403.945 1.181.951 1.391.007.21-.308.354-.525.151 0 0 .702.676.036.751-.666.075-.492.662-.928.554-.436-.108-.512-.774-.512-.774s.003.777-.318.443c-.321-.335-1.64-2.454-1.968-3.536s-.197-1.456.123-1.914z"/><path fill="#CCD6DD" d="M5.26 6.328c-.044.049-.058.12-.032.185.037.09.14.133.23.096l1.16-.595c.091-.039.133-.14.096-.231-.037-.09-.14-.133-.23-.096l-1.16.595c-.025.012-.046.027-.064.046zm-.395-.779c-.044.049-.058.12-.032.185.037.09.14.133.23.096l1.09-.48c.091-.039.133-.14.096-.231-.037-.09-.14-.133-.23-.096l-1.09.48c-.025.012-.047.027-.064.046zm-.318-.737c-.059.047-.083.128-.055.202.036.091.138.136.228.1l.974-.415c.094-.037.136-.137.101-.229-.035-.09-.137-.135-.228-.099l-.974.415c-.018.006-.033.015-.046.026zm-.244-.697c-.073.041-.107.13-.079.211.032.092.133.14.224.108l.934-.349c.098-.036.14-.133.108-.225-.032-.092-.133-.14-.224-.108l-.934.35c-.011.003-.02.008-.029.013z"/><path fill="#A0041E" d="M14.549 19.12s-1.718-1.063-2.419-1.602c-.699-.539-2.317-2.941-2.317-2.941s1.985-2.051 3.074-2.762l2.584 1.916 2.391-2.222s2.49.991 3.178 2.139c0 0-1.129 1.842-1.485 2.436-.017.458.008 1.039.238 1.069l-5.244 1.967z"/><path fill="#AF7E57" d="M14.593 29.239l1.825-3.939c.215-.468.774-.673 1.242-.458.467.217.674.778.457 1.245l-1.822 3.941c-.217.468-.776.674-1.245.457-.467-.217-.672-.777-.457-1.246z"/><path fill="#AF7E57" d="M14.07 34.202s.297-3.515.386-4.188c.089-.673.599-1.197 1.114-1.146.511.049.75.431.817 1.295.067.863-.959 3.206-.867 4.121.03.297.934.551.683.743-.111.085-.853.164-1.01.148l-.564.03c-.252-.025-.888.031-1.04-.149-.158-.188.454-.593.481-.854z"/><path fill="#DD2E44" d="M18.425 26.836s.568-.446.979-.776c0 0-.409-.721.615-1.479 1.025-.758 1.688-.396 1.688-.396s.231.09 1.038-.153c.383-.115 1.147-.307 1.147-.307s-.041-1.617-.267-2.601l-1.951-.077s-.203-.944-.529-1.22c-.328-.274-.523-.51-.771-.794-.691-.791-.6-2.399-.668-2.762 0 0-2.408.956-4.149 1.446-1.348.38-3.291.024-3.291.024.481.655 1.548 1.386 2.272 2.183.707.777 2.285 4.916 1.848 5.403-.438.487-1.062 1.535-1.062 1.535s.615.449 1.032.802c.584.493 1.072.613 1.072.613s.645-1.102.997-1.441z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f938-1f3ff-200d-2640-fe0f.svg b/public/emoji/1f938-1f3ff-200d-2640-fe0f.svg
index 48e6a08daf6b188736f6d0addb3ce84ccd7bb7ac..076b69d981834f55f8d5d2eb7dd05de257367cbe 100644
--- a/public/emoji/1f938-1f3ff-200d-2640-fe0f.svg
+++ b/public/emoji/1f938-1f3ff-200d-2640-fe0f.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#7C533E" d="M23.535 29.045c-.945-1.361-.746-3.135.443-3.963 1.189-.826 2.922-.395 3.867.967.946 1.359.747 3.134-.443 3.961-1.189.827-2.922.395-3.867-.965z"/><path fill="#DD2E44" d="M33.129 2.987c0-.55-.451-.998-1.003-.995l-3.002.014c-.55.002-.995.452-.993 1.003.004.552.452.998 1.005.995l2.999-.012c.552-.003 1-.452.994-1.005zM4.977 8.375c.034-.215.003-.447-.11-.655-.268-.481-.874-.658-1.36-.392L1.02 8.697c-.481.267-.66.872-.394 1.356.266.485.876.661 1.358.394L4.472 9.08c.277-.154.452-.415.505-.705z"/><path fill="#7C533E" d="M24.254 23.543l1.871 3.49c.264.486.082 1.127-.4 1.384-.484.264-1.09.097-1.354-.389l-1.75-3.22-2.281 1.586-.435-2.134c-.142-.22-.265-.531-.364-.964-.605-2.623-2.103-8.281-2.103-8.281 1.815-1.262 4.851 2.379 6.27 4.421.344.495.676.448.789.791 1.049-.544.782 1.323 1.153.909-.001.001.491 1.327-1.396 2.407z"/><path fill="#7C533E" d="M9.982 12.741c-.145.59.162 1.212.742 1.446l8.148 3.285c.637.256 1.361-.052 1.618-.688.251-.64-.052-1.36-.688-1.617l-8.148-3.284c-.637-.257-1.361.052-1.617.689-.022.056-.04.112-.055.169z"/><path fill="#7C533E" d="M3.749 8.474c-.221.506-.073 1.097.368 1.376l6.183 3.931c.483.305 1.136.124 1.455-.41.316-.536.19-1.213-.294-1.521L5.277 7.922c-.483-.308-1.134-.125-1.455.408-.03.047-.052.095-.073.144zm25.355-5.947c-.478-.18-1.019-.023-1.257.39l-3.318 5.801c-.263.453-.058 1.042.449 1.313.514.27 1.135.125 1.394-.329l3.323-5.801c.259-.451.055-1.042-.455-1.312-.045-.025-.09-.044-.136-.062z"/><path fill="#7C533E" d="M26.091 8.32c-.427-.37-1.071-.38-1.51.001l-6.164 5.347c-.482.417-.534 1.146-.118 1.629.423.476 1.148.533 1.628.114l6.165-5.347c.482-.418.534-1.146.115-1.628-.035-.042-.075-.081-.116-.116zm3.768 12.111l-4.341.033c-.516.004-.934.428-.931.943.004.515.43.935.945.93l4.342-.031c.516-.004.934-.429.931-.944-.004-.515-.43-.934-.946-.931z"/><path fill="#7C533E" d="M35.382 22.302l-5.077-1.722c-.487-.165-1.022.098-1.188.587-.166.486.098 1.023.587 1.188l5.076 1.722c.487.166 1.022-.1 1.188-.586.166-.49-.098-1.025-.586-1.189z"/><path fill="#0B0200" d="M29.001 26.869c-.536-.426-1.155-.82-1.155-.82s.557.951.568 1.508c.012.676-.272 1.092-.272 1.092-1.327-.857-2.453.017-2.893-.09-.438-.105-1.01-1.019-1.01-1.019s.319.815.43 1.104c.109.288.038.702-.383.631-.4-.067-.84-1.062-.576-1.291.143-.124-.805-.762-.805-.762s-.32 1.542.218 2.679c.038.081.084.157.126.235-.229-.064-.489-.098-.78-.064-.692.081-1.906.589-2.519 1.538-.473.73-.565 1.851-.565 1.851.227-.586.847-1.003 1.584-1.086.978-.11 1.984.781 2.909.018.408-.337.565-.649.604-.91.492.292 1.076.438 1.766.354 1.342-.164 2.69-1.311 2.986-2.11.381-1.026.379-2.371-.233-2.858z"/><path fill="#A0041E" d="M16.551 18.119s-1.816-1.205-2.518-1.744c-.699-.539-1.703-1.006-1.703-1.006s.549-2.18 1.638-2.891l3.439.682 3.711-2.142s1.646.918 2.334 2.065c0 0-1.634 1.235-2.308 1.627.318.502-.363 1.586-.363 1.586l-4.23 1.823z"/><path fill="#7C533E" d="M17.595 28.238l1.825-3.94c.215-.468.773-.673 1.242-.458.467.217.674.778.457 1.245l-1.822 3.941c-.217.468-.776.674-1.245.457-.467-.215-.672-.776-.457-1.245z"/><path fill="#7C533E" d="M17.019 34.041l.529-5.335c.051-.513.51-.89 1.024-.839.511.049.89.511.839 1.025l-.53 5.333c-.049.513-.512.89-1.023.841-.513-.051-.892-.513-.839-1.025z"/><path fill="#DD2E44" d="M21.428 25.835s.568-.446.979-.776c0 0-.409-.721.615-1.479 1.025-.758 1.688-.396 1.688-.396s.231.09 1.038-.153c.383-.115 1.147-.307 1.147-.307s-.041-1.617-.267-2.601l-1.951-.077s-.203-.944-.529-1.22c-.328-.274-.822-.342-1.07-.626-.691-.791-1.863-3.126-1.932-3.489 0 0-.959.754-2.635 1.664-1.025.559-3.113.997-3.113.997.481.655 2.098 1.985 2.822 2.782.707.777 1.605 3.685 1.168 4.172-.438.487-1.062 1.535-1.062 1.535s.615.449 1.032.802c.584.493 1.072.613 1.072.613s.645-1.102.998-1.441z"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#7C533E" d="M20.533 30.046c-.945-1.361-.746-3.135.443-3.963 1.189-.826 2.922-.395 3.867.967.946 1.359.747 3.134-.443 3.961-1.189.827-2.922.395-3.867-.965z"/><path fill="#0B0200" d="M21.25 31.724s.75.742-.372 1.669c-.925.764-1.932-.128-2.909-.018-.737.083-1.357.5-1.584 1.086 0 0 .092-1.121.564-1.852.613-.949 1.827-1.457 2.52-1.538 1.081-.125 1.781.653 1.781.653z"/><path fill="#7C533E" d="M21.251 24.544l1.871 3.49c.264.486.082 1.127-.4 1.384-.484.264-1.09.097-1.354-.389l-1.75-3.22-2.281 1.586-.436-2.134c-.142-.22 5.374-2.71 5.745-3.124.001.001.492 1.327-1.395 2.407z"/><path fill="#7C533E" d="M26.857 21.431l-4.341.033c-.516.004-.934.428-.931.943.004.515.43.935.945.93l4.342-.031c.516-.004.934-.429.931-.944-.005-.515-.43-.934-.946-.931z"/><path fill="#7C533E" d="M30.852 22.974c-.743-.149-3.178-1.455-3.772-1.485-.594-.03-.799.189-.965.679-.166.486.223.747 1.025 1.311.802.564 2.911.505 3.386.624.135.034.398.385.653.505.505.238.833-.071 1.129-.059.442.018.76.209.832 0l.148-.267c.119-.416-.471-.753-1.069-1.129-.303-.191-1.117-.129-1.367-.179z"/><path fill="#0B0200" d="M24.843 27.05s.619.395 1.155.82c.612.487.614 1.832.235 2.857-.297.799-1.645 1.946-2.986 2.11-1.516.185-2.541-.699-3.126-1.936-.538-1.137-.218-2.679-.218-2.679s.947.638.805.762c-.264.229.176 1.224.576 1.291.421.071.492-.343.383-.631-.11-.289-.43-1.104-.43-1.104s.571.914 1.01 1.02c.439.106 1.565-.768 2.893.09 0 0 .283-.416.271-1.092-.011-.557-.568-1.508-.568-1.508z"/><path fill="#7C533E" d="M21.078 8.847c-.168.504-.728.966-.91 1.143-.822.803-2.415 2.375-3.194 2.938l2.622 2.15c.571-.547 1.504-1.719 2.309-2.726.48-.6.976-.907 1.274-1.816 0 0 .668-3.441 1.67-6.022.32-.825-1.304-1.405-1.67-.718-.363.681-.824 1.654-1.063 2.295-.162.439-.962 2.528-1.038 2.756z"/><path fill="#BE1931" d="M23.011 2.446c-.055.164-.202.758-.202.984l-.24 1.347c-.014.067.032.132.099.142.197.031.834-.084 1.225.272.262.238.292.663.443.728.048.02.102-.005.119-.054 0 0 .048-.246.11-.456.13-.166.283-.5.519-.634.14-.024.291-.151.66-.174.219-.014 1.224-.085 1.224-.085.255-.014.335-.093.472-.102.282-.02 1.02.002 1.26-.017.239-.018.374-.165.423-.292.048-.126.035-.208.035-.208s-.233-.403-1.596-.956c-.8-.324-4.189-1.074-4.189-1.074l-.127.1c-.125.1-.177.307-.235.479z"/><path fill="#CCD6DD" d="M25.017 4.972c-.007.028-.021.055-.041.078-.066.072-.177.078-.249.012l-.229-.208c-.073-.066-.076-.179-.012-.249.066-.072.177-.078.249-.012l.229.208c.049.044.067.11.053.171z"/><path fill="#DD2E44" d="M25.098 2.587c-.133.188-.556.591-.925.646-.332.05-1.174-.059-1.334-.08.036-.26.144-.649.185-.772.055-.162.131-.375.255-.467.013-.009 1.365.52 1.819.673z"/><path fill="#CCD6DD" d="M23.26 1.913s.14.035.221.123c.081.089.308.19.481.248.173.058.82.288 1.291.379.471.091 1.349.142 1.633.201.284.059.72.167 1.031.302.31.135.585.266.751.357.215.116.382.245.491.374 0 0 .061-.375-.419-.784-.38-.323-.765-.544-1.159-.684-.03-.011-1.085-.357-1.613-.528-.386-.124-1.001-.327-1.001-.327-.728-.245-1.103-.35-1.253-.351-.027 0-.133-.02-.261.035-.084.035-.286.624-.193.655zm2.321 2.786c-.015.064-.065.116-.134.132-.095.021-.189-.039-.21-.134l-.067-.302c-.02-.097.039-.189.134-.211.095-.021.189.039.21.134l.067.302c.007.027.006.054 0 .079zm.618-.098c-.017.073-.08.13-.159.136-.097.006-.182-.067-.188-.164l-.023-.326c-.007-.101.066-.182.164-.189.097-.006.181.067.188.164l.023.326c0 .019-.001.036-.005.053zm.628-.061c-.019.081-.094.14-.18.135-.097-.004-.172-.087-.167-.185l.015-.299c.007-.104.088-.172.185-.167.097.004.172.087.167.185l-.015.299c-.001.012-.002.022-.005.032z"/><path fill="#7C533E" d="M9.959 9.913c.528.627 2.12 1.746 2.296 1.929.858.887 1.814 1.427 2.462 2.275l-2.361 2.434c-.63-.478-1.263-1.253-2.178-2.161-.545-.541-1.597-2.568-2.24-3.238 0 0-1.501-1.862-2.791-4.312-.412-.783.992-1.415 1.578-.903.627.548 1.394 1.44 1.978 2.103.308.35 1.101 1.689 1.256 1.873z"/><path fill="#CCD6DD" d="M3.126 1.742c.72-.945 2.329-.518 2.762.695.291.816.305 2.096.709 2.499.403.404.557 1.034.564 1.244.007.21-.226.356-.443.153 0 0 .587.633-.079.709-.665.075-.213.506-.649.398-.436-.108-.371-.43-.371-.43s.003.777-.318.443c-.321-.335-1.899-2.64-2.247-3.716-.228-.706-.453-1.306.072-1.995z"/><path fill="#BE1931" d="M3.37 1.971c.68-.974 2.206-.218 2.442.615.236.833.295 1.916.699 2.319.403.403.945 1.181.951 1.391.007.21-.308.354-.525.151 0 0 .702.676.036.751-.666.075-.492.662-.928.554-.436-.108-.512-.774-.512-.774s.003.777-.318.443c-.321-.335-1.64-2.454-1.968-3.536s-.197-1.456.123-1.914z"/><path fill="#CCD6DD" d="M5.26 6.328c-.044.049-.058.12-.032.185.037.09.14.133.23.096l1.16-.595c.091-.039.133-.14.096-.231-.037-.09-.14-.133-.23-.096l-1.16.595c-.025.012-.046.027-.064.046zm-.395-.779c-.044.049-.058.12-.032.185.037.09.14.133.23.096l1.09-.48c.091-.039.133-.14.096-.231-.037-.09-.14-.133-.23-.096l-1.09.48c-.025.012-.047.027-.064.046zm-.318-.737c-.059.047-.083.128-.055.202.036.091.138.136.228.1l.974-.415c.094-.037.136-.137.101-.229-.035-.09-.137-.135-.228-.099l-.974.415c-.018.006-.033.015-.046.026zm-.244-.697c-.073.041-.107.13-.079.211.032.092.133.14.224.108l.934-.349c.098-.036.14-.133.108-.225-.032-.092-.133-.14-.224-.108l-.934.35c-.011.003-.02.008-.029.013z"/><path fill="#A0041E" d="M14.549 19.12s-1.718-1.063-2.419-1.602c-.699-.539-2.317-2.941-2.317-2.941s1.985-2.051 3.074-2.762l2.584 1.916 2.391-2.222s2.49.991 3.178 2.139c0 0-1.129 1.842-1.485 2.436-.017.458.008 1.039.238 1.069l-5.244 1.967z"/><path fill="#7C533E" d="M14.593 29.239l1.825-3.939c.215-.468.774-.673 1.242-.458.467.217.674.778.457 1.245l-1.822 3.941c-.217.468-.776.674-1.245.457-.467-.217-.672-.777-.457-1.246z"/><path fill="#7C533E" d="M14.07 34.202s.297-3.515.386-4.188c.089-.673.599-1.197 1.114-1.146.511.049.75.431.817 1.295.067.863-.959 3.206-.867 4.121.03.297.934.551.683.743-.111.085-.853.164-1.01.148l-.564.03c-.252-.025-.888.031-1.04-.149-.158-.188.454-.593.481-.854z"/><path fill="#DD2E44" d="M18.425 26.836s.568-.446.979-.776c0 0-.409-.721.615-1.479 1.025-.758 1.688-.396 1.688-.396s.231.09 1.038-.153c.383-.115 1.147-.307 1.147-.307s-.041-1.617-.267-2.601l-1.951-.077s-.203-.944-.529-1.22c-.328-.274-.523-.51-.771-.794-.691-.791-.6-2.399-.668-2.762 0 0-2.408.956-4.149 1.446-1.348.38-3.291.024-3.291.024.481.655 1.548 1.386 2.272 2.183.707.777 2.285 4.916 1.848 5.403-.438.487-1.062 1.535-1.062 1.535s.615.449 1.032.802c.584.493 1.072.613 1.072.613s.645-1.102.997-1.441z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f938-1f3ff-200d-2642-fe0f.svg b/public/emoji/1f938-1f3ff-200d-2642-fe0f.svg
index 4bdd418f298773305053b4422b07842fc442d564..4f61ec9e6f055928de1bfd1dcc71e8e2b5156570 100644
--- a/public/emoji/1f938-1f3ff-200d-2642-fe0f.svg
+++ b/public/emoji/1f938-1f3ff-200d-2642-fe0f.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#7C533E" d="M23.535 29.045c-.945-1.361-.746-3.135.443-3.963 1.189-.826 2.922-.395 3.867.967.946 1.359.747 3.134-.443 3.961-1.189.827-2.922.395-3.867-.965z"/><path fill="#4289C1" d="M33.129 2.987c0-.55-.451-.998-1.003-.995l-3.002.014c-.55.002-.995.452-.993 1.003.004.552.452.998 1.005.995l2.999-.012c.552-.003 1-.452.994-1.005zM4.977 8.375c.034-.215.003-.447-.11-.655-.268-.481-.874-.658-1.36-.392L1.02 8.697c-.481.267-.66.872-.394 1.356.266.485.876.661 1.358.394L4.472 9.08c.277-.154.452-.415.505-.705z"/><path fill="#7C533E" d="M24.254 23.543l1.871 3.49c.264.486.082 1.127-.4 1.384-.484.264-1.09.097-1.354-.389l-1.75-3.22-2.281 1.586-.435-2.134c-.142-.22-.265-.531-.364-.964-.605-2.623-2.103-8.281-2.103-8.281 1.815-1.262 4.851 2.379 6.27 4.421.344.495.676.448.789.791 1.049-.544.782 1.323 1.153.909-.001.001.491 1.327-1.396 2.407z"/><path fill="#7C533E" d="M9.982 12.741c-.145.59.162 1.212.742 1.446l8.148 3.285c.637.256 1.361-.052 1.618-.688.251-.64-.052-1.36-.688-1.617l-8.148-3.284c-.637-.257-1.361.052-1.617.689-.022.056-.04.112-.055.169z"/><path fill="#7C533E" d="M3.749 8.474c-.221.506-.073 1.097.368 1.376l6.183 3.931c.483.305 1.136.124 1.455-.41.316-.536.19-1.213-.294-1.521L5.277 7.922c-.483-.308-1.134-.125-1.455.408-.03.047-.052.095-.073.144zm25.355-5.947c-.478-.18-1.019-.023-1.257.39l-3.318 5.801c-.263.453-.058 1.042.449 1.313.514.27 1.135.125 1.394-.329l3.323-5.801c.259-.451.055-1.042-.455-1.312-.045-.025-.09-.044-.136-.062z"/><path fill="#7C533E" d="M26.091 8.32c-.427-.37-1.071-.38-1.51.001l-6.164 5.347c-.482.417-.534 1.146-.118 1.629.423.476 1.148.533 1.628.114l6.165-5.347c.482-.418.534-1.146.115-1.628-.035-.042-.075-.081-.116-.116zm3.768 12.111l-4.341.033c-.516.004-.934.428-.931.943.004.515.43.935.945.93l4.342-.031c.516-.004.934-.429.931-.944-.004-.515-.43-.934-.946-.931z"/><path fill="#7C533E" d="M35.382 22.302l-5.077-1.722c-.487-.165-1.022.098-1.188.587-.166.486.098 1.023.587 1.188l5.076 1.722c.487.166 1.022-.1 1.188-.586.166-.49-.098-1.025-.586-1.189z"/><path fill="#0B0200" d="M29.062 29.647c-.25 1.188-1.471 2.025-2.812 2.189-1.516.185-2.541-.699-3.126-1.935-.538-1.137-.437-2.316-.312-2.629s.926.075.797.712c-.151.747.229 1.413.678 1.291.317-.086.576-.391.383-.631-.232-.289-.149-.476-.149-.476s.182-.276.729.391c.287.35 1.565-.768 2.893.09 0 0 .283-.416.272-1.092-.004-.199-.078-.448-.171-.687-.168-.428 1.342.29.818 2.777z"/><path fill="#2A6797" d="M16.551 18.119s-1.816-1.205-2.518-1.744c-.699-.539-1.703-1.006-1.703-1.006s.549-2.18 1.638-2.891l3.439.682 3.711-2.142s1.646.918 2.334 2.065c0 0-1.634 1.235-2.308 1.627.318.502-.363 1.586-.363 1.586l-4.23 1.823z"/><path fill="#7C533E" d="M17.595 28.238l1.825-3.94c.215-.468.773-.673 1.242-.458.467.217.674.778.457 1.245l-1.822 3.941c-.217.468-.776.674-1.245.457-.467-.215-.672-.776-.457-1.245z"/><path fill="#7C533E" d="M17.019 34.041l.529-5.335c.051-.513.51-.89 1.024-.839.511.049.89.511.839 1.025l-.53 5.333c-.049.513-.512.89-1.023.841-.513-.051-.892-.513-.839-1.025z"/><path fill="#4289C1" d="M21.428 25.835s.568-.446.979-.776c0 0-.409-.721.615-1.479 1.025-.758 1.688-.396 1.688-.396s.231.09 1.038-.153c.383-.115 1.147-.307 1.147-.307s-.041-1.617-.267-2.601l-1.951-.077s-.77-.921-1.801-2.296-1.662-2.676-1.73-3.039c0 0-.959.754-2.635 1.664-1.025.559-3.113.997-3.113.997.481.655 1.985 2.412 2.572 3.315.812 1.25 1.855 3.152 1.418 3.639-.438.487-1.062 1.535-1.062 1.535s.615.449 1.032.802c.584.493 1.072.613 1.072.613s.645-1.102.998-1.441z"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#7C533E" d="M20.533 30.046c-.945-1.361-.746-3.135.443-3.963 1.189-.826 2.922-.395 3.867.967.946 1.359.747 3.134-.443 3.961-1.189.827-2.922.395-3.867-.965z"/><path fill="#7C533E" d="M21.251 24.544l1.871 3.49c.264.486.082 1.127-.4 1.384-.484.264-1.09.097-1.354-.389l-1.75-3.22-2.281 1.586-.436-2.134c-.142-.22 5.374-2.71 5.745-3.124.001.001.492 1.327-1.395 2.407z"/><path fill="#7C533E" d="M26.857 21.431l-4.341.033c-.516.004-.934.428-.931.943.004.515.43.935.945.93l4.342-.031c.516-.004.934-.429.931-.944-.005-.515-.43-.934-.946-.931z"/><path fill="#7C533E" d="M30.852 22.974c-.743-.149-3.178-1.455-3.772-1.485-.594-.03-.799.189-.965.679-.166.486.223.747 1.025 1.311.802.564 2.911.505 3.386.624.135.034.398.385.653.505.505.238.833-.071 1.129-.059.442.018.76.209.832 0l.148-.267c.119-.416-.471-.753-1.069-1.129-.303-.191-1.117-.129-1.367-.179z"/><path fill="#0B0200" d="M25.36 28.167s.236.077.49.713c.223.557.267 1.248 0 1.871-.336.783-1.515 1.537-2.606 1.515-1.527-.031-2.378-.501-2.963-1.738-.538-1.137-.377-2.306-.377-2.306s.947.638.805.762c-.264.229.176 1.224.576 1.291.421.071.492-.343.383-.631-.11-.289-.34-.542-.139-.676s.361.205.691.512c.334.312.557.713 1.203 1.069 0 0 1.803-.434 1.96-1.092.133-.555-.023-1.29-.023-1.29z"/><path fill="#7C533E" d="M20.926 8.62c-.168.504-.934 1.145-1.116 1.322-.822.803-2.361 2.536-3.141 3.099l2.927 2.037c.571-.547 1.504-1.719 2.309-2.726.48-.6 1.16-1.419 1.458-2.328 0 0 .484-2.929 1.486-5.51.32-.825-1.304-1.405-1.67-.718-.363.681-.776 1.496-1.015 2.137-.161.439-1.162 2.459-1.238 2.687z"/><path fill="#269" d="M23.011 2.446c-.055.164-.202.758-.202.984l-.24 1.347c-.014.067.032.132.099.142.197.031.834-.084 1.225.272.262.238.292.663.443.728.048.02.102-.005.119-.054 0 0 .048-.246.11-.456.13-.166.283-.5.519-.634.14-.024.291-.151.66-.174.219-.014 1.224-.085 1.224-.085.255-.014.335-.093.472-.102.282-.02 1.02.002 1.26-.017.239-.018.374-.165.423-.292.048-.126.035-.208.035-.208s-.233-.403-1.596-.956c-.8-.324-4.189-1.074-4.189-1.074l-.127.1c-.125.1-.177.307-.235.479z"/><path fill="#CCD6DD" d="M25.017 4.972c-.007.028-.021.055-.041.078-.066.072-.177.078-.249.012l-.229-.208c-.073-.066-.076-.179-.012-.249.066-.072.177-.078.249-.012l.229.208c.049.044.067.11.053.171z"/><path fill="#3B88C3" d="M25.098 2.587c-.133.188-.556.591-.925.646-.332.05-1.174-.059-1.334-.08.036-.26.144-.649.185-.772.055-.162.131-.375.255-.467.013-.009 1.365.52 1.819.673z"/><path fill="#CCD6DD" d="M23.26 1.913s.14.035.221.123c.081.089.308.19.481.248.173.058.82.288 1.291.379.471.091 1.349.142 1.633.201.284.059.72.167 1.031.302.31.135.585.266.751.357.215.116.382.245.491.374 0 0 .061-.375-.419-.784-.38-.323-.765-.544-1.159-.684-.03-.011-1.085-.357-1.613-.528-.386-.124-1.001-.327-1.001-.327-.728-.245-1.103-.35-1.253-.351-.027 0-.133-.02-.261.035-.084.035-.286.624-.193.655zm2.321 2.786c-.015.064-.065.116-.134.132-.095.021-.189-.039-.21-.134l-.067-.302c-.02-.097.039-.189.134-.211.095-.021.189.039.21.134l.067.302c.007.027.006.054 0 .079zm.618-.098c-.017.073-.08.13-.159.136-.097.006-.182-.067-.188-.164l-.023-.326c-.007-.101.066-.182.164-.189.097-.006.181.067.188.164l.023.326c0 .019-.001.036-.005.053zm.628-.061c-.019.081-.094.14-.18.135-.097-.004-.172-.087-.167-.185l.015-.299c.007-.104.088-.172.185-.167.097.004.172.087.167.185l-.015.299c-.001.012-.002.022-.005.032z"/><path fill="#7C533E" d="M10.141 9.777c.528.627 1.938 1.882 2.115 2.065.858.887 1.814 1.427 2.462 2.275l-2.361 2.434c-.63-.478-1.263-1.253-2.178-2.161-.545-.541-1.833-2.663-2.476-3.332 0 0-1.266-1.767-2.555-4.217-.413-.784.991-1.416 1.577-.904.627.548 1.394 1.44 1.978 2.103.308.35 1.282 1.553 1.438 1.737z"/><path fill="#CCD6DD" d="M3.126 1.742c.72-.945 2.329-.518 2.762.695.291.816.305 2.096.709 2.499.403.404.557 1.034.564 1.244.007.21-.226.356-.443.153 0 0 .587.633-.079.709-.665.075-.213.506-.649.398-.436-.108-.371-.43-.371-.43s.003.777-.318.443c-.321-.335-1.899-2.64-2.247-3.716-.228-.706-.453-1.306.072-1.995z"/><path fill="#269" d="M3.37 1.971c.68-.974 2.206-.218 2.442.615.236.833.295 1.916.699 2.319.403.403.945 1.181.951 1.391.007.21-.308.354-.525.151 0 0 .702.676.036.751-.666.075-.492.662-.928.554-.436-.108-.512-.774-.512-.774s.003.777-.318.443c-.321-.335-1.64-2.454-1.968-3.536s-.197-1.456.123-1.914z"/><path fill="#CCD6DD" d="M5.26 6.328c-.044.049-.058.12-.032.185.037.09.14.133.23.096l1.16-.595c.091-.039.133-.14.096-.231-.037-.09-.14-.133-.23-.096l-1.16.595c-.025.012-.046.027-.064.046zm-.395-.779c-.044.049-.058.12-.032.185.037.09.14.133.23.096l1.09-.48c.091-.039.133-.14.096-.231-.037-.09-.14-.133-.23-.096l-1.09.48c-.025.012-.047.027-.064.046zm-.318-.737c-.059.047-.083.128-.055.202.036.091.138.136.228.1l.974-.415c.094-.037.136-.137.101-.229-.035-.09-.137-.135-.228-.099l-.974.415c-.018.006-.033.015-.046.026zm-.244-.697c-.073.041-.107.13-.079.211.032.092.133.14.224.108l.934-.349c.098-.036.14-.133.108-.225-.032-.092-.133-.14-.224-.108l-.934.35c-.011.003-.02.008-.029.013z"/><path fill="#269" d="M14.549 19.12s-1.718-1.063-2.419-1.602c-.699-.539-2.317-2.941-2.317-2.941s1.985-2.051 3.074-2.762l2.584 1.916 2.391-2.222s2.49.991 3.178 2.139c0 0-1.129 1.842-1.485 2.436-.017.458.008 1.039.238 1.069l-5.244 1.967z"/><path fill="#7C533E" d="M14.593 29.239l1.825-3.939c.215-.468.774-.673 1.242-.458.467.217.674.778.457 1.245l-1.822 3.941c-.217.468-.776.674-1.245.457-.467-.217-.672-.777-.457-1.246z"/><path fill="#7C533E" d="M13.976 34.214s.297-3.515.386-4.188c.089-.673.599-1.197 1.114-1.146.511.049.75.431.817 1.294.066.863-.959 3.206-.867 4.121.03.297.935.551.683.743-.111.085-.853.164-1.01.149l-.564.03c-.252-.025-.888.031-1.04-.149-.158-.188.454-.593.481-.854z"/><path fill="#3B88C3" d="M18.425 26.836s.568-.446.979-.776c0 0-.409-.721.615-1.479 1.025-.758 1.688-.396 1.688-.396s.231.09 1.038-.153c.383-.115 1.147-.307 1.147-.307s-.041-1.617-.267-2.601l-1.951-.077s-.341-.402-.546-.989c-.142-.404-.479-1.167-.624-1.515-.446-1.069-.73-1.909-.799-2.272 0 0-2.408.956-4.149 1.446-1.348.38-3.291.024-3.291.024.481.655 1.307 2.352 1.823 3.297 1.094 2.003 2.734 3.803 2.297 4.289-.438.487-1.062 1.535-1.062 1.535s.615.449 1.032.802c.584.493 1.072.613 1.072.613s.646-1.102.998-1.441z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f938-1f3ff.svg b/public/emoji/1f938-1f3ff.svg
index 48e6a08daf6b188736f6d0addb3ce84ccd7bb7ac..076b69d981834f55f8d5d2eb7dd05de257367cbe 100644
--- a/public/emoji/1f938-1f3ff.svg
+++ b/public/emoji/1f938-1f3ff.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#7C533E" d="M23.535 29.045c-.945-1.361-.746-3.135.443-3.963 1.189-.826 2.922-.395 3.867.967.946 1.359.747 3.134-.443 3.961-1.189.827-2.922.395-3.867-.965z"/><path fill="#DD2E44" d="M33.129 2.987c0-.55-.451-.998-1.003-.995l-3.002.014c-.55.002-.995.452-.993 1.003.004.552.452.998 1.005.995l2.999-.012c.552-.003 1-.452.994-1.005zM4.977 8.375c.034-.215.003-.447-.11-.655-.268-.481-.874-.658-1.36-.392L1.02 8.697c-.481.267-.66.872-.394 1.356.266.485.876.661 1.358.394L4.472 9.08c.277-.154.452-.415.505-.705z"/><path fill="#7C533E" d="M24.254 23.543l1.871 3.49c.264.486.082 1.127-.4 1.384-.484.264-1.09.097-1.354-.389l-1.75-3.22-2.281 1.586-.435-2.134c-.142-.22-.265-.531-.364-.964-.605-2.623-2.103-8.281-2.103-8.281 1.815-1.262 4.851 2.379 6.27 4.421.344.495.676.448.789.791 1.049-.544.782 1.323 1.153.909-.001.001.491 1.327-1.396 2.407z"/><path fill="#7C533E" d="M9.982 12.741c-.145.59.162 1.212.742 1.446l8.148 3.285c.637.256 1.361-.052 1.618-.688.251-.64-.052-1.36-.688-1.617l-8.148-3.284c-.637-.257-1.361.052-1.617.689-.022.056-.04.112-.055.169z"/><path fill="#7C533E" d="M3.749 8.474c-.221.506-.073 1.097.368 1.376l6.183 3.931c.483.305 1.136.124 1.455-.41.316-.536.19-1.213-.294-1.521L5.277 7.922c-.483-.308-1.134-.125-1.455.408-.03.047-.052.095-.073.144zm25.355-5.947c-.478-.18-1.019-.023-1.257.39l-3.318 5.801c-.263.453-.058 1.042.449 1.313.514.27 1.135.125 1.394-.329l3.323-5.801c.259-.451.055-1.042-.455-1.312-.045-.025-.09-.044-.136-.062z"/><path fill="#7C533E" d="M26.091 8.32c-.427-.37-1.071-.38-1.51.001l-6.164 5.347c-.482.417-.534 1.146-.118 1.629.423.476 1.148.533 1.628.114l6.165-5.347c.482-.418.534-1.146.115-1.628-.035-.042-.075-.081-.116-.116zm3.768 12.111l-4.341.033c-.516.004-.934.428-.931.943.004.515.43.935.945.93l4.342-.031c.516-.004.934-.429.931-.944-.004-.515-.43-.934-.946-.931z"/><path fill="#7C533E" d="M35.382 22.302l-5.077-1.722c-.487-.165-1.022.098-1.188.587-.166.486.098 1.023.587 1.188l5.076 1.722c.487.166 1.022-.1 1.188-.586.166-.49-.098-1.025-.586-1.189z"/><path fill="#0B0200" d="M29.001 26.869c-.536-.426-1.155-.82-1.155-.82s.557.951.568 1.508c.012.676-.272 1.092-.272 1.092-1.327-.857-2.453.017-2.893-.09-.438-.105-1.01-1.019-1.01-1.019s.319.815.43 1.104c.109.288.038.702-.383.631-.4-.067-.84-1.062-.576-1.291.143-.124-.805-.762-.805-.762s-.32 1.542.218 2.679c.038.081.084.157.126.235-.229-.064-.489-.098-.78-.064-.692.081-1.906.589-2.519 1.538-.473.73-.565 1.851-.565 1.851.227-.586.847-1.003 1.584-1.086.978-.11 1.984.781 2.909.018.408-.337.565-.649.604-.91.492.292 1.076.438 1.766.354 1.342-.164 2.69-1.311 2.986-2.11.381-1.026.379-2.371-.233-2.858z"/><path fill="#A0041E" d="M16.551 18.119s-1.816-1.205-2.518-1.744c-.699-.539-1.703-1.006-1.703-1.006s.549-2.18 1.638-2.891l3.439.682 3.711-2.142s1.646.918 2.334 2.065c0 0-1.634 1.235-2.308 1.627.318.502-.363 1.586-.363 1.586l-4.23 1.823z"/><path fill="#7C533E" d="M17.595 28.238l1.825-3.94c.215-.468.773-.673 1.242-.458.467.217.674.778.457 1.245l-1.822 3.941c-.217.468-.776.674-1.245.457-.467-.215-.672-.776-.457-1.245z"/><path fill="#7C533E" d="M17.019 34.041l.529-5.335c.051-.513.51-.89 1.024-.839.511.049.89.511.839 1.025l-.53 5.333c-.049.513-.512.89-1.023.841-.513-.051-.892-.513-.839-1.025z"/><path fill="#DD2E44" d="M21.428 25.835s.568-.446.979-.776c0 0-.409-.721.615-1.479 1.025-.758 1.688-.396 1.688-.396s.231.09 1.038-.153c.383-.115 1.147-.307 1.147-.307s-.041-1.617-.267-2.601l-1.951-.077s-.203-.944-.529-1.22c-.328-.274-.822-.342-1.07-.626-.691-.791-1.863-3.126-1.932-3.489 0 0-.959.754-2.635 1.664-1.025.559-3.113.997-3.113.997.481.655 2.098 1.985 2.822 2.782.707.777 1.605 3.685 1.168 4.172-.438.487-1.062 1.535-1.062 1.535s.615.449 1.032.802c.584.493 1.072.613 1.072.613s.645-1.102.998-1.441z"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#7C533E" d="M20.533 30.046c-.945-1.361-.746-3.135.443-3.963 1.189-.826 2.922-.395 3.867.967.946 1.359.747 3.134-.443 3.961-1.189.827-2.922.395-3.867-.965z"/><path fill="#0B0200" d="M21.25 31.724s.75.742-.372 1.669c-.925.764-1.932-.128-2.909-.018-.737.083-1.357.5-1.584 1.086 0 0 .092-1.121.564-1.852.613-.949 1.827-1.457 2.52-1.538 1.081-.125 1.781.653 1.781.653z"/><path fill="#7C533E" d="M21.251 24.544l1.871 3.49c.264.486.082 1.127-.4 1.384-.484.264-1.09.097-1.354-.389l-1.75-3.22-2.281 1.586-.436-2.134c-.142-.22 5.374-2.71 5.745-3.124.001.001.492 1.327-1.395 2.407z"/><path fill="#7C533E" d="M26.857 21.431l-4.341.033c-.516.004-.934.428-.931.943.004.515.43.935.945.93l4.342-.031c.516-.004.934-.429.931-.944-.005-.515-.43-.934-.946-.931z"/><path fill="#7C533E" d="M30.852 22.974c-.743-.149-3.178-1.455-3.772-1.485-.594-.03-.799.189-.965.679-.166.486.223.747 1.025 1.311.802.564 2.911.505 3.386.624.135.034.398.385.653.505.505.238.833-.071 1.129-.059.442.018.76.209.832 0l.148-.267c.119-.416-.471-.753-1.069-1.129-.303-.191-1.117-.129-1.367-.179z"/><path fill="#0B0200" d="M24.843 27.05s.619.395 1.155.82c.612.487.614 1.832.235 2.857-.297.799-1.645 1.946-2.986 2.11-1.516.185-2.541-.699-3.126-1.936-.538-1.137-.218-2.679-.218-2.679s.947.638.805.762c-.264.229.176 1.224.576 1.291.421.071.492-.343.383-.631-.11-.289-.43-1.104-.43-1.104s.571.914 1.01 1.02c.439.106 1.565-.768 2.893.09 0 0 .283-.416.271-1.092-.011-.557-.568-1.508-.568-1.508z"/><path fill="#7C533E" d="M21.078 8.847c-.168.504-.728.966-.91 1.143-.822.803-2.415 2.375-3.194 2.938l2.622 2.15c.571-.547 1.504-1.719 2.309-2.726.48-.6.976-.907 1.274-1.816 0 0 .668-3.441 1.67-6.022.32-.825-1.304-1.405-1.67-.718-.363.681-.824 1.654-1.063 2.295-.162.439-.962 2.528-1.038 2.756z"/><path fill="#BE1931" d="M23.011 2.446c-.055.164-.202.758-.202.984l-.24 1.347c-.014.067.032.132.099.142.197.031.834-.084 1.225.272.262.238.292.663.443.728.048.02.102-.005.119-.054 0 0 .048-.246.11-.456.13-.166.283-.5.519-.634.14-.024.291-.151.66-.174.219-.014 1.224-.085 1.224-.085.255-.014.335-.093.472-.102.282-.02 1.02.002 1.26-.017.239-.018.374-.165.423-.292.048-.126.035-.208.035-.208s-.233-.403-1.596-.956c-.8-.324-4.189-1.074-4.189-1.074l-.127.1c-.125.1-.177.307-.235.479z"/><path fill="#CCD6DD" d="M25.017 4.972c-.007.028-.021.055-.041.078-.066.072-.177.078-.249.012l-.229-.208c-.073-.066-.076-.179-.012-.249.066-.072.177-.078.249-.012l.229.208c.049.044.067.11.053.171z"/><path fill="#DD2E44" d="M25.098 2.587c-.133.188-.556.591-.925.646-.332.05-1.174-.059-1.334-.08.036-.26.144-.649.185-.772.055-.162.131-.375.255-.467.013-.009 1.365.52 1.819.673z"/><path fill="#CCD6DD" d="M23.26 1.913s.14.035.221.123c.081.089.308.19.481.248.173.058.82.288 1.291.379.471.091 1.349.142 1.633.201.284.059.72.167 1.031.302.31.135.585.266.751.357.215.116.382.245.491.374 0 0 .061-.375-.419-.784-.38-.323-.765-.544-1.159-.684-.03-.011-1.085-.357-1.613-.528-.386-.124-1.001-.327-1.001-.327-.728-.245-1.103-.35-1.253-.351-.027 0-.133-.02-.261.035-.084.035-.286.624-.193.655zm2.321 2.786c-.015.064-.065.116-.134.132-.095.021-.189-.039-.21-.134l-.067-.302c-.02-.097.039-.189.134-.211.095-.021.189.039.21.134l.067.302c.007.027.006.054 0 .079zm.618-.098c-.017.073-.08.13-.159.136-.097.006-.182-.067-.188-.164l-.023-.326c-.007-.101.066-.182.164-.189.097-.006.181.067.188.164l.023.326c0 .019-.001.036-.005.053zm.628-.061c-.019.081-.094.14-.18.135-.097-.004-.172-.087-.167-.185l.015-.299c.007-.104.088-.172.185-.167.097.004.172.087.167.185l-.015.299c-.001.012-.002.022-.005.032z"/><path fill="#7C533E" d="M9.959 9.913c.528.627 2.12 1.746 2.296 1.929.858.887 1.814 1.427 2.462 2.275l-2.361 2.434c-.63-.478-1.263-1.253-2.178-2.161-.545-.541-1.597-2.568-2.24-3.238 0 0-1.501-1.862-2.791-4.312-.412-.783.992-1.415 1.578-.903.627.548 1.394 1.44 1.978 2.103.308.35 1.101 1.689 1.256 1.873z"/><path fill="#CCD6DD" d="M3.126 1.742c.72-.945 2.329-.518 2.762.695.291.816.305 2.096.709 2.499.403.404.557 1.034.564 1.244.007.21-.226.356-.443.153 0 0 .587.633-.079.709-.665.075-.213.506-.649.398-.436-.108-.371-.43-.371-.43s.003.777-.318.443c-.321-.335-1.899-2.64-2.247-3.716-.228-.706-.453-1.306.072-1.995z"/><path fill="#BE1931" d="M3.37 1.971c.68-.974 2.206-.218 2.442.615.236.833.295 1.916.699 2.319.403.403.945 1.181.951 1.391.007.21-.308.354-.525.151 0 0 .702.676.036.751-.666.075-.492.662-.928.554-.436-.108-.512-.774-.512-.774s.003.777-.318.443c-.321-.335-1.64-2.454-1.968-3.536s-.197-1.456.123-1.914z"/><path fill="#CCD6DD" d="M5.26 6.328c-.044.049-.058.12-.032.185.037.09.14.133.23.096l1.16-.595c.091-.039.133-.14.096-.231-.037-.09-.14-.133-.23-.096l-1.16.595c-.025.012-.046.027-.064.046zm-.395-.779c-.044.049-.058.12-.032.185.037.09.14.133.23.096l1.09-.48c.091-.039.133-.14.096-.231-.037-.09-.14-.133-.23-.096l-1.09.48c-.025.012-.047.027-.064.046zm-.318-.737c-.059.047-.083.128-.055.202.036.091.138.136.228.1l.974-.415c.094-.037.136-.137.101-.229-.035-.09-.137-.135-.228-.099l-.974.415c-.018.006-.033.015-.046.026zm-.244-.697c-.073.041-.107.13-.079.211.032.092.133.14.224.108l.934-.349c.098-.036.14-.133.108-.225-.032-.092-.133-.14-.224-.108l-.934.35c-.011.003-.02.008-.029.013z"/><path fill="#A0041E" d="M14.549 19.12s-1.718-1.063-2.419-1.602c-.699-.539-2.317-2.941-2.317-2.941s1.985-2.051 3.074-2.762l2.584 1.916 2.391-2.222s2.49.991 3.178 2.139c0 0-1.129 1.842-1.485 2.436-.017.458.008 1.039.238 1.069l-5.244 1.967z"/><path fill="#7C533E" d="M14.593 29.239l1.825-3.939c.215-.468.774-.673 1.242-.458.467.217.674.778.457 1.245l-1.822 3.941c-.217.468-.776.674-1.245.457-.467-.217-.672-.777-.457-1.246z"/><path fill="#7C533E" d="M14.07 34.202s.297-3.515.386-4.188c.089-.673.599-1.197 1.114-1.146.511.049.75.431.817 1.295.067.863-.959 3.206-.867 4.121.03.297.934.551.683.743-.111.085-.853.164-1.01.148l-.564.03c-.252-.025-.888.031-1.04-.149-.158-.188.454-.593.481-.854z"/><path fill="#DD2E44" d="M18.425 26.836s.568-.446.979-.776c0 0-.409-.721.615-1.479 1.025-.758 1.688-.396 1.688-.396s.231.09 1.038-.153c.383-.115 1.147-.307 1.147-.307s-.041-1.617-.267-2.601l-1.951-.077s-.203-.944-.529-1.22c-.328-.274-.523-.51-.771-.794-.691-.791-.6-2.399-.668-2.762 0 0-2.408.956-4.149 1.446-1.348.38-3.291.024-3.291.024.481.655 1.548 1.386 2.272 2.183.707.777 2.285 4.916 1.848 5.403-.438.487-1.062 1.535-1.062 1.535s.615.449 1.032.802c.584.493 1.072.613 1.072.613s.645-1.102.997-1.441z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f938-200d-2640-fe0f.svg b/public/emoji/1f938-200d-2640-fe0f.svg
index 8e21aecded5d5c730e01bdaf48b32665513c5580..9cec3f99431120b4157735f1ef869a6b5112d372 100644
--- a/public/emoji/1f938-200d-2640-fe0f.svg
+++ b/public/emoji/1f938-200d-2640-fe0f.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#FFDC5D" d="M23.535 29.045c-.945-1.361-.746-3.135.443-3.963 1.189-.826 2.922-.395 3.867.967.946 1.359.747 3.134-.443 3.961-1.189.827-2.922.395-3.867-.965z"/><path fill="#FFAC33" d="M24.252 30.724s.75.742-.372 1.669c-.925.764-1.932-.128-2.909-.018-.737.083-1.357.5-1.584 1.086 0 0 .092-1.121.565-1.851.613-.949 1.827-1.457 2.519-1.538 1.082-.127 1.781.652 1.781.652z"/><path fill="#DD2E44" d="M33.129 2.987c0-.55-.451-.998-1.003-.995l-3.002.014c-.55.002-.995.452-.993 1.003.004.552.452.998 1.005.995l2.999-.012c.552-.003 1-.452.994-1.005zM4.977 8.375c.034-.215.003-.447-.11-.655-.268-.481-.874-.658-1.36-.392L1.02 8.697c-.481.267-.66.872-.394 1.356.266.485.876.661 1.358.394L4.472 9.08c.277-.154.452-.415.505-.705z"/><path fill="#FFDC5D" d="M24.254 23.543l1.871 3.49c.264.486.082 1.127-.4 1.384-.484.264-1.09.097-1.354-.389l-1.75-3.22-2.281 1.586-.435-2.134c-.142-.22-.265-.531-.364-.964-.605-2.623-2.103-8.281-2.103-8.281 1.815-1.262 4.851 2.379 6.27 4.421.344.495.676.448.789.791 1.049-.544.782 1.323 1.153.909-.001.001.491 1.327-1.396 2.407z"/><path fill="#FFDC5D" d="M9.982 12.741c-.145.59.162 1.212.742 1.446l8.148 3.285c.637.256 1.361-.052 1.618-.688.251-.64-.052-1.36-.688-1.617l-8.148-3.284c-.637-.257-1.361.052-1.617.689-.022.056-.04.112-.055.169z"/><path fill="#FFDC5D" d="M3.749 8.474c-.221.506-.073 1.097.368 1.376l6.183 3.931c.483.305 1.136.124 1.455-.41.316-.536.19-1.213-.294-1.521L5.277 7.922c-.483-.308-1.134-.125-1.455.408-.03.047-.052.095-.073.144zm25.355-5.947c-.478-.18-1.019-.023-1.257.39l-3.318 5.801c-.263.453-.058 1.042.449 1.313.514.27 1.135.125 1.394-.329l3.323-5.801c.259-.451.055-1.042-.455-1.312-.045-.025-.09-.044-.136-.062z"/><path fill="#FFDC5D" d="M26.091 8.32c-.427-.37-1.071-.38-1.51.001l-6.164 5.347c-.482.417-.534 1.146-.118 1.629.423.476 1.148.533 1.628.114l6.165-5.347c.482-.418.534-1.146.115-1.628-.035-.042-.075-.081-.116-.116zm3.768 12.111l-4.341.033c-.516.004-.934.428-.931.943.004.515.43.935.945.93l4.342-.031c.516-.004.934-.429.931-.944-.004-.515-.43-.934-.946-.931z"/><path fill="#FFDC5D" d="M35.382 22.302l-5.077-1.722c-.487-.165-1.022.098-1.188.587-.166.486.098 1.023.587 1.188l5.076 1.722c.487.166 1.022-.1 1.188-.586.166-.49-.098-1.025-.586-1.189z"/><path fill="#FFAC33" d="M27.846 26.049s.619.395 1.155.82c.612.487.614 1.832.235 2.856-.297.799-1.644 1.946-2.986 2.11-1.516.185-2.541-.699-3.126-1.935-.538-1.137-.218-2.679-.218-2.679s.947.638.805.762c-.264.229.176 1.224.576 1.291.421.071.492-.343.383-.631-.11-.289-.43-1.104-.43-1.104s.571.914 1.01 1.019c.44.106 1.565-.768 2.893.09 0 0 .283-.416.272-1.092-.013-.556-.569-1.507-.569-1.507z"/><path fill="#A0041E" d="M16.551 18.119s-1.816-1.205-2.518-1.744c-.699-.539-1.703-1.006-1.703-1.006s.549-2.18 1.638-2.891l3.439.682 3.711-2.142s1.646.918 2.334 2.065c0 0-1.634 1.235-2.308 1.627.318.502-.363 1.586-.363 1.586l-4.23 1.823z"/><path fill="#FFDC5D" d="M17.595 28.238l1.825-3.94c.215-.468.773-.673 1.242-.458.467.217.674.778.457 1.245l-1.822 3.941c-.217.468-.776.674-1.245.457-.467-.215-.672-.776-.457-1.245z"/><path fill="#FFDC5D" d="M17.019 34.041l.529-5.335c.051-.513.51-.89 1.024-.839.511.049.89.511.839 1.025l-.53 5.333c-.049.513-.512.89-1.023.841-.513-.051-.892-.513-.839-1.025z"/><path fill="#DD2E44" d="M21.428 25.835s.568-.446.979-.776c0 0-.409-.721.615-1.479 1.025-.758 1.688-.396 1.688-.396s.231.09 1.038-.153c.383-.115 1.147-.307 1.147-.307s-.041-1.617-.267-2.601l-1.951-.077s-.203-.944-.529-1.22c-.328-.274-.822-.342-1.07-.626-.691-.791-1.863-3.126-1.932-3.489 0 0-.959.754-2.635 1.664-1.025.559-3.113.997-3.113.997.481.655 2.098 1.985 2.822 2.782.707.777 1.605 3.685 1.168 4.172-.438.487-1.062 1.535-1.062 1.535s.615.449 1.032.802c.584.493 1.072.613 1.072.613s.645-1.102.998-1.441z"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#FFDC5D" d="M20.533 30.046c-.945-1.361-.746-3.135.443-3.963 1.189-.826 2.922-.395 3.867.967.946 1.359.747 3.134-.443 3.961-1.189.827-2.922.395-3.867-.965z"/><path fill="#FFAC33" d="M21.25 31.724s.75.742-.372 1.669c-.925.764-1.932-.128-2.909-.018-.737.083-1.357.5-1.584 1.086 0 0 .092-1.121.564-1.852.613-.949 1.827-1.457 2.52-1.538 1.081-.125 1.781.653 1.781.653z"/><path fill="#FFDC5D" d="M21.251 24.544l1.871 3.49c.264.486.082 1.127-.4 1.384-.484.264-1.09.097-1.354-.389l-1.75-3.22-2.281 1.586-.436-2.134c-.142-.22 5.374-2.71 5.745-3.124.001.001.492 1.327-1.395 2.407z"/><path fill="#FFDC5D" d="M26.857 21.431l-4.341.033c-.516.004-.934.428-.931.943.004.515.43.935.945.93l4.342-.031c.516-.004.934-.429.931-.944-.005-.515-.43-.934-.946-.931z"/><path fill="#FFDC5D" d="M30.852 22.974c-.743-.149-3.178-1.455-3.772-1.485-.594-.03-.799.189-.965.679-.166.486.223.747 1.025 1.311.802.564 2.911.505 3.386.624.135.034.398.385.653.505.505.238.833-.071 1.129-.059.442.018.76.209.832 0l.148-.267c.119-.416-.471-.753-1.069-1.129-.303-.191-1.117-.129-1.367-.179z"/><path fill="#FFAC33" d="M24.843 27.05s.619.395 1.155.82c.612.487.614 1.832.235 2.857-.297.799-1.645 1.946-2.986 2.11-1.516.185-2.541-.699-3.126-1.936-.538-1.137-.218-2.679-.218-2.679s.947.638.805.762c-.264.229.176 1.224.576 1.291.421.071.492-.343.383-.631-.11-.289-.43-1.104-.43-1.104s.571.914 1.01 1.02c.439.106 1.565-.768 2.893.09 0 0 .283-.416.271-1.092-.011-.557-.568-1.508-.568-1.508z"/><path fill="#FFDC5D" d="M21.078 8.847c-.168.504-.728.966-.91 1.143-.822.803-2.415 2.375-3.194 2.938l2.622 2.15c.571-.547 1.504-1.719 2.309-2.726.48-.6.976-.907 1.274-1.816 0 0 .668-3.441 1.67-6.022.32-.825-1.304-1.405-1.67-.718-.363.681-.824 1.654-1.063 2.295-.162.439-.962 2.528-1.038 2.756z"/><path fill="#BE1931" d="M23.011 2.446c-.055.164-.202.758-.202.984l-.24 1.347c-.014.067.032.132.099.142.197.031.834-.084 1.225.272.262.238.292.663.443.728.048.02.102-.005.119-.054 0 0 .048-.246.11-.456.13-.166.283-.5.519-.634.14-.024.291-.151.66-.174.219-.014 1.224-.085 1.224-.085.255-.014.335-.093.472-.102.282-.02 1.02.002 1.26-.017.239-.018.374-.165.423-.292.048-.126.035-.208.035-.208s-.233-.403-1.596-.956c-.8-.324-4.189-1.074-4.189-1.074l-.127.1c-.125.1-.177.307-.235.479z"/><path fill="#CCD6DD" d="M25.017 4.972c-.007.028-.021.055-.041.078-.066.072-.177.078-.249.012l-.229-.208c-.073-.066-.076-.179-.012-.249.066-.072.177-.078.249-.012l.229.208c.049.044.067.11.053.171z"/><path fill="#DD2E44" d="M25.098 2.587c-.133.188-.556.591-.925.646-.332.05-1.174-.059-1.334-.08.036-.26.144-.649.185-.772.055-.162.131-.375.255-.467.013-.009 1.365.52 1.819.673z"/><path fill="#CCD6DD" d="M23.26 1.913s.14.035.221.123c.081.089.308.19.481.248.173.058.82.288 1.291.379.471.091 1.349.142 1.633.201.284.059.72.167 1.031.302.31.135.585.266.751.357.215.116.382.245.491.374 0 0 .061-.375-.419-.784-.38-.323-.765-.544-1.159-.684-.03-.011-1.085-.357-1.613-.528-.386-.124-1.001-.327-1.001-.327-.728-.245-1.103-.35-1.253-.351-.027 0-.133-.02-.261.035-.084.035-.286.624-.193.655zm2.321 2.786c-.015.064-.065.116-.134.132-.095.021-.189-.039-.21-.134l-.067-.302c-.02-.097.039-.189.134-.211.095-.021.189.039.21.134l.067.302c.007.027.006.054 0 .079zm.618-.098c-.017.073-.08.13-.159.136-.097.006-.182-.067-.188-.164l-.023-.326c-.007-.101.066-.182.164-.189.097-.006.181.067.188.164l.023.326c0 .019-.001.036-.005.053zm.628-.061c-.019.081-.094.14-.18.135-.097-.004-.172-.087-.167-.185l.015-.299c.007-.104.088-.172.185-.167.097.004.172.087.167.185l-.015.299c-.001.012-.002.022-.005.032z"/><path fill="#FFDC5D" d="M9.959 9.913c.528.627 2.12 1.746 2.296 1.929.858.887 1.814 1.427 2.462 2.275l-2.361 2.434c-.63-.478-1.263-1.253-2.178-2.161-.545-.541-1.597-2.568-2.24-3.238 0 0-1.501-1.862-2.791-4.312-.412-.783.992-1.415 1.578-.903.627.548 1.394 1.44 1.978 2.103.308.35 1.101 1.689 1.256 1.873z"/><path fill="#CCD6DD" d="M3.126 1.742c.72-.945 2.329-.518 2.762.695.291.816.305 2.096.709 2.499.403.404.557 1.034.564 1.244.007.21-.226.356-.443.153 0 0 .587.633-.079.709-.665.075-.213.506-.649.398-.436-.108-.371-.43-.371-.43s.003.777-.318.443c-.321-.335-1.899-2.64-2.247-3.716-.228-.706-.453-1.306.072-1.995z"/><path fill="#BE1931" d="M3.37 1.971c.68-.974 2.206-.218 2.442.615.236.833.295 1.916.699 2.319.403.403.945 1.181.951 1.391.007.21-.308.354-.525.151 0 0 .702.676.036.751-.666.075-.492.662-.928.554-.436-.108-.512-.774-.512-.774s.003.777-.318.443c-.321-.335-1.64-2.454-1.968-3.536s-.197-1.456.123-1.914z"/><path fill="#CCD6DD" d="M5.26 6.328c-.044.049-.058.12-.032.185.037.09.14.133.23.096l1.16-.595c.091-.039.133-.14.096-.231-.037-.09-.14-.133-.23-.096l-1.16.595c-.025.012-.046.027-.064.046zm-.395-.779c-.044.049-.058.12-.032.185.037.09.14.133.23.096l1.09-.48c.091-.039.133-.14.096-.231-.037-.09-.14-.133-.23-.096l-1.09.48c-.025.012-.047.027-.064.046zm-.318-.737c-.059.047-.083.128-.055.202.036.091.138.136.228.1l.974-.415c.094-.037.136-.137.101-.229-.035-.09-.137-.135-.228-.099l-.974.415c-.018.006-.033.015-.046.026zm-.244-.697c-.073.041-.107.13-.079.211.032.092.133.14.224.108l.934-.349c.098-.036.14-.133.108-.225-.032-.092-.133-.14-.224-.108l-.934.35c-.011.003-.02.008-.029.013z"/><path fill="#A0041E" d="M14.549 19.12s-1.718-1.063-2.419-1.602c-.699-.539-2.317-2.941-2.317-2.941s1.985-2.051 3.074-2.762l2.584 1.916 2.391-2.222s2.49.991 3.178 2.139c0 0-1.129 1.842-1.485 2.436-.017.458.008 1.039.238 1.069l-5.244 1.967z"/><path fill="#FFDC5D" d="M14.593 29.239l1.825-3.939c.215-.468.774-.673 1.242-.458.467.217.674.778.457 1.245l-1.822 3.941c-.217.468-.776.674-1.245.457-.467-.217-.672-.777-.457-1.246z"/><path fill="#FFDC5D" d="M14.07 34.202s.297-3.515.386-4.188c.089-.673.599-1.197 1.114-1.146.511.049.75.431.817 1.295.067.863-.959 3.206-.867 4.121.03.297.934.551.683.743-.111.085-.853.164-1.01.148l-.564.03c-.252-.025-.888.031-1.04-.149-.158-.188.454-.593.481-.854z"/><path fill="#DD2E44" d="M18.425 26.836s.568-.446.979-.776c0 0-.409-.721.615-1.479 1.025-.758 1.688-.396 1.688-.396s.231.09 1.038-.153c.383-.115 1.147-.307 1.147-.307s-.041-1.617-.267-2.601l-1.951-.077s-.203-.944-.529-1.22c-.328-.274-.523-.51-.771-.794-.691-.791-.6-2.399-.668-2.762 0 0-2.408.956-4.149 1.446-1.348.38-3.291.024-3.291.024.481.655 1.548 1.386 2.272 2.183.707.777 2.285 4.916 1.848 5.403-.438.487-1.062 1.535-1.062 1.535s.615.449 1.032.802c.584.493 1.072.613 1.072.613s.645-1.102.997-1.441z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f938-200d-2642-fe0f.svg b/public/emoji/1f938-200d-2642-fe0f.svg
index 0895523c3d90d8b5b6553f41b4628540a7692bf9..7aa23feb9fe07789f78a610e38472a3c5a5d033a 100644
--- a/public/emoji/1f938-200d-2642-fe0f.svg
+++ b/public/emoji/1f938-200d-2642-fe0f.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#FFDC5D" d="M23.535 29.045c-.945-1.361-.746-3.135.443-3.963 1.189-.826 2.922-.395 3.867.967.946 1.359.747 3.134-.443 3.961-1.189.827-2.922.395-3.867-.965z"/><path fill="#4289C1" d="M33.129 2.987c0-.55-.451-.998-1.003-.995l-3.002.014c-.55.002-.995.452-.993 1.003.004.552.452.998 1.005.995l2.999-.012c.552-.003 1-.452.994-1.005zM4.977 8.375c.034-.215.003-.447-.11-.655-.268-.481-.874-.658-1.36-.392L1.02 8.697c-.481.267-.66.872-.394 1.356.266.485.876.661 1.358.394L4.472 9.08c.277-.154.452-.415.505-.705z"/><path fill="#FFDC5D" d="M24.254 23.543l1.871 3.49c.264.486.082 1.127-.4 1.384-.484.264-1.09.097-1.354-.389l-1.75-3.22-2.281 1.586-.435-2.134c-.142-.22-.265-.531-.364-.964-.605-2.623-2.103-8.281-2.103-8.281 1.815-1.262 4.851 2.379 6.27 4.421.344.495.676.448.789.791 1.049-.544.782 1.323 1.153.909-.001.001.491 1.327-1.396 2.407z"/><path fill="#FFDC5D" d="M9.982 12.741c-.145.59.162 1.212.742 1.446l8.148 3.285c.637.256 1.361-.052 1.618-.688.251-.64-.052-1.36-.688-1.617l-8.148-3.284c-.637-.257-1.361.052-1.617.689-.022.056-.04.112-.055.169z"/><path fill="#FFDC5D" d="M3.749 8.474c-.221.506-.073 1.097.368 1.376l6.183 3.931c.483.305 1.136.124 1.455-.41.316-.536.19-1.213-.294-1.521L5.277 7.922c-.483-.308-1.134-.125-1.455.408-.03.047-.052.095-.073.144zm25.355-5.947c-.478-.18-1.019-.023-1.257.39l-3.318 5.801c-.263.453-.058 1.042.449 1.313.514.27 1.135.125 1.394-.329l3.323-5.801c.259-.451.055-1.042-.455-1.312-.045-.025-.09-.044-.136-.062z"/><path fill="#FFDC5D" d="M26.091 8.32c-.427-.37-1.071-.38-1.51.001l-6.164 5.347c-.482.417-.534 1.146-.118 1.629.423.476 1.148.533 1.628.114l6.165-5.347c.482-.418.534-1.146.115-1.628-.035-.042-.075-.081-.116-.116zm3.768 12.111l-4.341.033c-.516.004-.934.428-.931.943.004.515.43.935.945.93l4.342-.031c.516-.004.934-.429.931-.944-.004-.515-.43-.934-.946-.931z"/><path fill="#FFDC5D" d="M35.382 22.302l-5.077-1.722c-.487-.165-1.022.098-1.188.587-.166.486.098 1.023.587 1.188l5.076 1.722c.487.166 1.022-.1 1.188-.586.166-.49-.098-1.025-.586-1.189z"/><path fill="#FFAC33" d="M29.062 29.647c-.25 1.188-1.471 2.025-2.812 2.189-1.516.185-2.541-.699-3.126-1.935-.538-1.137-.437-2.316-.312-2.629s.926.075.797.712c-.151.747.229 1.413.678 1.291.317-.086.576-.391.383-.631-.232-.289-.149-.476-.149-.476s.182-.276.729.391c.287.35 1.565-.768 2.893.09 0 0 .283-.416.272-1.092-.004-.199-.078-.448-.171-.687-.168-.428 1.342.29.818 2.777z"/><path fill="#2A6797" d="M16.551 18.119s-1.816-1.205-2.518-1.744c-.699-.539-1.703-1.006-1.703-1.006s.549-2.18 1.638-2.891l3.439.682 3.711-2.142s1.646.918 2.334 2.065c0 0-1.634 1.235-2.308 1.627.318.502-.363 1.586-.363 1.586l-4.23 1.823z"/><path fill="#FFDC5D" d="M17.595 28.238l1.825-3.94c.215-.468.773-.673 1.242-.458.467.217.674.778.457 1.245l-1.822 3.941c-.217.468-.776.674-1.245.457-.467-.215-.672-.776-.457-1.245z"/><path fill="#FFDC5D" d="M17.019 34.041l.529-5.335c.051-.513.51-.89 1.024-.839.511.049.89.511.839 1.025l-.53 5.333c-.049.513-.512.89-1.023.841-.513-.051-.892-.513-.839-1.025z"/><path fill="#4289C1" d="M21.428 25.835s.568-.446.979-.776c0 0-.409-.721.615-1.479 1.025-.758 1.688-.396 1.688-.396s.231.09 1.038-.153c.383-.115 1.147-.307 1.147-.307s-.041-1.617-.267-2.601l-1.951-.077s-.77-.921-1.801-2.296-1.662-2.676-1.73-3.039c0 0-.959.754-2.635 1.664-1.025.559-3.113.997-3.113.997.481.655 1.985 2.412 2.572 3.315.812 1.25 1.855 3.152 1.418 3.639-.438.487-1.062 1.535-1.062 1.535s.615.449 1.032.802c.584.493 1.072.613 1.072.613s.645-1.102.998-1.441z"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#FFDC5D" d="M20.533 30.046c-.945-1.361-.746-3.135.443-3.963 1.189-.826 2.922-.395 3.867.967.946 1.359.747 3.134-.443 3.961-1.189.827-2.922.395-3.867-.965z"/><path fill="#FFDC5D" d="M21.251 24.544l1.871 3.49c.264.486.082 1.127-.4 1.384-.484.264-1.09.097-1.354-.389l-1.75-3.22-2.281 1.586-.436-2.134c-.142-.22 5.374-2.71 5.745-3.124.001.001.492 1.327-1.395 2.407z"/><path fill="#FFDC5D" d="M26.857 21.431l-4.341.033c-.516.004-.934.428-.931.943.004.515.43.935.945.93l4.342-.031c.516-.004.934-.429.931-.944-.005-.515-.43-.934-.946-.931z"/><path fill="#FFDC5D" d="M30.852 22.974c-.743-.149-3.178-1.455-3.772-1.485-.594-.03-.799.189-.965.679-.166.486.223.747 1.025 1.311.802.564 2.911.505 3.386.624.135.034.398.385.653.505.505.238.833-.071 1.129-.059.442.018.76.209.832 0l.148-.267c.119-.416-.471-.753-1.069-1.129-.303-.191-1.117-.129-1.367-.179z"/><path fill="#FFAC33" d="M25.36 28.167s.236.077.49.713c.223.557.267 1.248 0 1.871-.336.783-1.515 1.537-2.606 1.515-1.527-.031-2.378-.501-2.963-1.738-.538-1.137-.377-2.306-.377-2.306s.947.638.805.762c-.264.229.176 1.224.576 1.291.421.071.492-.343.383-.631-.11-.289-.34-.542-.139-.676s.361.205.691.512c.334.312.557.713 1.203 1.069 0 0 1.803-.434 1.96-1.092.133-.555-.023-1.29-.023-1.29z"/><path fill="#FFDC5D" d="M20.926 8.62c-.168.504-.934 1.145-1.116 1.322-.822.803-2.361 2.536-3.141 3.099l2.927 2.037c.571-.547 1.504-1.719 2.309-2.726.48-.6 1.16-1.419 1.458-2.328 0 0 .484-2.929 1.486-5.51.32-.825-1.304-1.405-1.67-.718-.363.681-.776 1.496-1.015 2.137-.161.439-1.162 2.459-1.238 2.687z"/><path fill="#269" d="M23.011 2.446c-.055.164-.202.758-.202.984l-.24 1.347c-.014.067.032.132.099.142.197.031.834-.084 1.225.272.262.238.292.663.443.728.048.02.102-.005.119-.054 0 0 .048-.246.11-.456.13-.166.283-.5.519-.634.14-.024.291-.151.66-.174.219-.014 1.224-.085 1.224-.085.255-.014.335-.093.472-.102.282-.02 1.02.002 1.26-.017.239-.018.374-.165.423-.292.048-.126.035-.208.035-.208s-.233-.403-1.596-.956c-.8-.324-4.189-1.074-4.189-1.074l-.127.1c-.125.1-.177.307-.235.479z"/><path fill="#CCD6DD" d="M25.017 4.972c-.007.028-.021.055-.041.078-.066.072-.177.078-.249.012l-.229-.208c-.073-.066-.076-.179-.012-.249.066-.072.177-.078.249-.012l.229.208c.049.044.067.11.053.171z"/><path fill="#3B88C3" d="M25.098 2.587c-.133.188-.556.591-.925.646-.332.05-1.174-.059-1.334-.08.036-.26.144-.649.185-.772.055-.162.131-.375.255-.467.013-.009 1.365.52 1.819.673z"/><path fill="#CCD6DD" d="M23.26 1.913s.14.035.221.123c.081.089.308.19.481.248.173.058.82.288 1.291.379.471.091 1.349.142 1.633.201.284.059.72.167 1.031.302.31.135.585.266.751.357.215.116.382.245.491.374 0 0 .061-.375-.419-.784-.38-.323-.765-.544-1.159-.684-.03-.011-1.085-.357-1.613-.528-.386-.124-1.001-.327-1.001-.327-.728-.245-1.103-.35-1.253-.351-.027 0-.133-.02-.261.035-.084.035-.286.624-.193.655zm2.321 2.786c-.015.064-.065.116-.134.132-.095.021-.189-.039-.21-.134l-.067-.302c-.02-.097.039-.189.134-.211.095-.021.189.039.21.134l.067.302c.007.027.006.054 0 .079zm.618-.098c-.017.073-.08.13-.159.136-.097.006-.182-.067-.188-.164l-.023-.326c-.007-.101.066-.182.164-.189.097-.006.181.067.188.164l.023.326c0 .019-.001.036-.005.053zm.628-.061c-.019.081-.094.14-.18.135-.097-.004-.172-.087-.167-.185l.015-.299c.007-.104.088-.172.185-.167.097.004.172.087.167.185l-.015.299c-.001.012-.002.022-.005.032z"/><path fill="#FFDC5D" d="M10.141 9.777c.528.627 1.938 1.882 2.115 2.065.858.887 1.814 1.427 2.462 2.275l-2.361 2.434c-.63-.478-1.263-1.253-2.178-2.161-.545-.541-1.833-2.663-2.476-3.332 0 0-1.266-1.767-2.555-4.217-.413-.784.991-1.416 1.577-.904.627.548 1.394 1.44 1.978 2.103.308.35 1.282 1.553 1.438 1.737z"/><path fill="#CCD6DD" d="M3.126 1.742c.72-.945 2.329-.518 2.762.695.291.816.305 2.096.709 2.499.403.404.557 1.034.564 1.244.007.21-.226.356-.443.153 0 0 .587.633-.079.709-.665.075-.213.506-.649.398-.436-.108-.371-.43-.371-.43s.003.777-.318.443c-.321-.335-1.899-2.64-2.247-3.716-.228-.706-.453-1.306.072-1.995z"/><path fill="#269" d="M3.37 1.971c.68-.974 2.206-.218 2.442.615.236.833.295 1.916.699 2.319.403.403.945 1.181.951 1.391.007.21-.308.354-.525.151 0 0 .702.676.036.751-.666.075-.492.662-.928.554-.436-.108-.512-.774-.512-.774s.003.777-.318.443c-.321-.335-1.64-2.454-1.968-3.536s-.197-1.456.123-1.914z"/><path fill="#CCD6DD" d="M5.26 6.328c-.044.049-.058.12-.032.185.037.09.14.133.23.096l1.16-.595c.091-.039.133-.14.096-.231-.037-.09-.14-.133-.23-.096l-1.16.595c-.025.012-.046.027-.064.046zm-.395-.779c-.044.049-.058.12-.032.185.037.09.14.133.23.096l1.09-.48c.091-.039.133-.14.096-.231-.037-.09-.14-.133-.23-.096l-1.09.48c-.025.012-.047.027-.064.046zm-.318-.737c-.059.047-.083.128-.055.202.036.091.138.136.228.1l.974-.415c.094-.037.136-.137.101-.229-.035-.09-.137-.135-.228-.099l-.974.415c-.018.006-.033.015-.046.026zm-.244-.697c-.073.041-.107.13-.079.211.032.092.133.14.224.108l.934-.349c.098-.036.14-.133.108-.225-.032-.092-.133-.14-.224-.108l-.934.35c-.011.003-.02.008-.029.013z"/><path fill="#269" d="M14.549 19.12s-1.718-1.063-2.419-1.602c-.699-.539-2.317-2.941-2.317-2.941s1.985-2.051 3.074-2.762l2.584 1.916 2.391-2.222s2.49.991 3.178 2.139c0 0-1.129 1.842-1.485 2.436-.017.458.008 1.039.238 1.069l-5.244 1.967z"/><path fill="#FFDC5D" d="M14.593 29.239l1.825-3.939c.215-.468.774-.673 1.242-.458.467.217.674.778.457 1.245l-1.822 3.941c-.217.468-.776.674-1.245.457-.467-.217-.672-.777-.457-1.246z"/><path fill="#FFDC5D" d="M13.976 34.214s.297-3.515.386-4.188c.089-.673.599-1.197 1.114-1.146.511.049.75.431.817 1.294.066.863-.959 3.206-.867 4.121.03.297.935.551.683.743-.111.085-.853.164-1.01.149l-.564.03c-.252-.025-.888.031-1.04-.149-.158-.188.454-.593.481-.854z"/><path fill="#3B88C3" d="M18.425 26.836s.568-.446.979-.776c0 0-.409-.721.615-1.479 1.025-.758 1.688-.396 1.688-.396s.231.09 1.038-.153c.383-.115 1.147-.307 1.147-.307s-.041-1.617-.267-2.601l-1.951-.077s-.341-.402-.546-.989c-.142-.404-.479-1.167-.624-1.515-.446-1.069-.73-1.909-.799-2.272 0 0-2.408.956-4.149 1.446-1.348.38-3.291.024-3.291.024.481.655 1.307 2.352 1.823 3.297 1.094 2.003 2.734 3.803 2.297 4.289-.438.487-1.062 1.535-1.062 1.535s.615.449 1.032.802c.584.493 1.072.613 1.072.613s.646-1.102.998-1.441z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f938.svg b/public/emoji/1f938.svg
index 8e21aecded5d5c730e01bdaf48b32665513c5580..9cec3f99431120b4157735f1ef869a6b5112d372 100644
--- a/public/emoji/1f938.svg
+++ b/public/emoji/1f938.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#FFDC5D" d="M23.535 29.045c-.945-1.361-.746-3.135.443-3.963 1.189-.826 2.922-.395 3.867.967.946 1.359.747 3.134-.443 3.961-1.189.827-2.922.395-3.867-.965z"/><path fill="#FFAC33" d="M24.252 30.724s.75.742-.372 1.669c-.925.764-1.932-.128-2.909-.018-.737.083-1.357.5-1.584 1.086 0 0 .092-1.121.565-1.851.613-.949 1.827-1.457 2.519-1.538 1.082-.127 1.781.652 1.781.652z"/><path fill="#DD2E44" d="M33.129 2.987c0-.55-.451-.998-1.003-.995l-3.002.014c-.55.002-.995.452-.993 1.003.004.552.452.998 1.005.995l2.999-.012c.552-.003 1-.452.994-1.005zM4.977 8.375c.034-.215.003-.447-.11-.655-.268-.481-.874-.658-1.36-.392L1.02 8.697c-.481.267-.66.872-.394 1.356.266.485.876.661 1.358.394L4.472 9.08c.277-.154.452-.415.505-.705z"/><path fill="#FFDC5D" d="M24.254 23.543l1.871 3.49c.264.486.082 1.127-.4 1.384-.484.264-1.09.097-1.354-.389l-1.75-3.22-2.281 1.586-.435-2.134c-.142-.22-.265-.531-.364-.964-.605-2.623-2.103-8.281-2.103-8.281 1.815-1.262 4.851 2.379 6.27 4.421.344.495.676.448.789.791 1.049-.544.782 1.323 1.153.909-.001.001.491 1.327-1.396 2.407z"/><path fill="#FFDC5D" d="M9.982 12.741c-.145.59.162 1.212.742 1.446l8.148 3.285c.637.256 1.361-.052 1.618-.688.251-.64-.052-1.36-.688-1.617l-8.148-3.284c-.637-.257-1.361.052-1.617.689-.022.056-.04.112-.055.169z"/><path fill="#FFDC5D" d="M3.749 8.474c-.221.506-.073 1.097.368 1.376l6.183 3.931c.483.305 1.136.124 1.455-.41.316-.536.19-1.213-.294-1.521L5.277 7.922c-.483-.308-1.134-.125-1.455.408-.03.047-.052.095-.073.144zm25.355-5.947c-.478-.18-1.019-.023-1.257.39l-3.318 5.801c-.263.453-.058 1.042.449 1.313.514.27 1.135.125 1.394-.329l3.323-5.801c.259-.451.055-1.042-.455-1.312-.045-.025-.09-.044-.136-.062z"/><path fill="#FFDC5D" d="M26.091 8.32c-.427-.37-1.071-.38-1.51.001l-6.164 5.347c-.482.417-.534 1.146-.118 1.629.423.476 1.148.533 1.628.114l6.165-5.347c.482-.418.534-1.146.115-1.628-.035-.042-.075-.081-.116-.116zm3.768 12.111l-4.341.033c-.516.004-.934.428-.931.943.004.515.43.935.945.93l4.342-.031c.516-.004.934-.429.931-.944-.004-.515-.43-.934-.946-.931z"/><path fill="#FFDC5D" d="M35.382 22.302l-5.077-1.722c-.487-.165-1.022.098-1.188.587-.166.486.098 1.023.587 1.188l5.076 1.722c.487.166 1.022-.1 1.188-.586.166-.49-.098-1.025-.586-1.189z"/><path fill="#FFAC33" d="M27.846 26.049s.619.395 1.155.82c.612.487.614 1.832.235 2.856-.297.799-1.644 1.946-2.986 2.11-1.516.185-2.541-.699-3.126-1.935-.538-1.137-.218-2.679-.218-2.679s.947.638.805.762c-.264.229.176 1.224.576 1.291.421.071.492-.343.383-.631-.11-.289-.43-1.104-.43-1.104s.571.914 1.01 1.019c.44.106 1.565-.768 2.893.09 0 0 .283-.416.272-1.092-.013-.556-.569-1.507-.569-1.507z"/><path fill="#A0041E" d="M16.551 18.119s-1.816-1.205-2.518-1.744c-.699-.539-1.703-1.006-1.703-1.006s.549-2.18 1.638-2.891l3.439.682 3.711-2.142s1.646.918 2.334 2.065c0 0-1.634 1.235-2.308 1.627.318.502-.363 1.586-.363 1.586l-4.23 1.823z"/><path fill="#FFDC5D" d="M17.595 28.238l1.825-3.94c.215-.468.773-.673 1.242-.458.467.217.674.778.457 1.245l-1.822 3.941c-.217.468-.776.674-1.245.457-.467-.215-.672-.776-.457-1.245z"/><path fill="#FFDC5D" d="M17.019 34.041l.529-5.335c.051-.513.51-.89 1.024-.839.511.049.89.511.839 1.025l-.53 5.333c-.049.513-.512.89-1.023.841-.513-.051-.892-.513-.839-1.025z"/><path fill="#DD2E44" d="M21.428 25.835s.568-.446.979-.776c0 0-.409-.721.615-1.479 1.025-.758 1.688-.396 1.688-.396s.231.09 1.038-.153c.383-.115 1.147-.307 1.147-.307s-.041-1.617-.267-2.601l-1.951-.077s-.203-.944-.529-1.22c-.328-.274-.822-.342-1.07-.626-.691-.791-1.863-3.126-1.932-3.489 0 0-.959.754-2.635 1.664-1.025.559-3.113.997-3.113.997.481.655 2.098 1.985 2.822 2.782.707.777 1.605 3.685 1.168 4.172-.438.487-1.062 1.535-1.062 1.535s.615.449 1.032.802c.584.493 1.072.613 1.072.613s.645-1.102.998-1.441z"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#FFDC5D" d="M20.533 30.046c-.945-1.361-.746-3.135.443-3.963 1.189-.826 2.922-.395 3.867.967.946 1.359.747 3.134-.443 3.961-1.189.827-2.922.395-3.867-.965z"/><path fill="#FFAC33" d="M21.25 31.724s.75.742-.372 1.669c-.925.764-1.932-.128-2.909-.018-.737.083-1.357.5-1.584 1.086 0 0 .092-1.121.564-1.852.613-.949 1.827-1.457 2.52-1.538 1.081-.125 1.781.653 1.781.653z"/><path fill="#FFDC5D" d="M21.251 24.544l1.871 3.49c.264.486.082 1.127-.4 1.384-.484.264-1.09.097-1.354-.389l-1.75-3.22-2.281 1.586-.436-2.134c-.142-.22 5.374-2.71 5.745-3.124.001.001.492 1.327-1.395 2.407z"/><path fill="#FFDC5D" d="M26.857 21.431l-4.341.033c-.516.004-.934.428-.931.943.004.515.43.935.945.93l4.342-.031c.516-.004.934-.429.931-.944-.005-.515-.43-.934-.946-.931z"/><path fill="#FFDC5D" d="M30.852 22.974c-.743-.149-3.178-1.455-3.772-1.485-.594-.03-.799.189-.965.679-.166.486.223.747 1.025 1.311.802.564 2.911.505 3.386.624.135.034.398.385.653.505.505.238.833-.071 1.129-.059.442.018.76.209.832 0l.148-.267c.119-.416-.471-.753-1.069-1.129-.303-.191-1.117-.129-1.367-.179z"/><path fill="#FFAC33" d="M24.843 27.05s.619.395 1.155.82c.612.487.614 1.832.235 2.857-.297.799-1.645 1.946-2.986 2.11-1.516.185-2.541-.699-3.126-1.936-.538-1.137-.218-2.679-.218-2.679s.947.638.805.762c-.264.229.176 1.224.576 1.291.421.071.492-.343.383-.631-.11-.289-.43-1.104-.43-1.104s.571.914 1.01 1.02c.439.106 1.565-.768 2.893.09 0 0 .283-.416.271-1.092-.011-.557-.568-1.508-.568-1.508z"/><path fill="#FFDC5D" d="M21.078 8.847c-.168.504-.728.966-.91 1.143-.822.803-2.415 2.375-3.194 2.938l2.622 2.15c.571-.547 1.504-1.719 2.309-2.726.48-.6.976-.907 1.274-1.816 0 0 .668-3.441 1.67-6.022.32-.825-1.304-1.405-1.67-.718-.363.681-.824 1.654-1.063 2.295-.162.439-.962 2.528-1.038 2.756z"/><path fill="#BE1931" d="M23.011 2.446c-.055.164-.202.758-.202.984l-.24 1.347c-.014.067.032.132.099.142.197.031.834-.084 1.225.272.262.238.292.663.443.728.048.02.102-.005.119-.054 0 0 .048-.246.11-.456.13-.166.283-.5.519-.634.14-.024.291-.151.66-.174.219-.014 1.224-.085 1.224-.085.255-.014.335-.093.472-.102.282-.02 1.02.002 1.26-.017.239-.018.374-.165.423-.292.048-.126.035-.208.035-.208s-.233-.403-1.596-.956c-.8-.324-4.189-1.074-4.189-1.074l-.127.1c-.125.1-.177.307-.235.479z"/><path fill="#CCD6DD" d="M25.017 4.972c-.007.028-.021.055-.041.078-.066.072-.177.078-.249.012l-.229-.208c-.073-.066-.076-.179-.012-.249.066-.072.177-.078.249-.012l.229.208c.049.044.067.11.053.171z"/><path fill="#DD2E44" d="M25.098 2.587c-.133.188-.556.591-.925.646-.332.05-1.174-.059-1.334-.08.036-.26.144-.649.185-.772.055-.162.131-.375.255-.467.013-.009 1.365.52 1.819.673z"/><path fill="#CCD6DD" d="M23.26 1.913s.14.035.221.123c.081.089.308.19.481.248.173.058.82.288 1.291.379.471.091 1.349.142 1.633.201.284.059.72.167 1.031.302.31.135.585.266.751.357.215.116.382.245.491.374 0 0 .061-.375-.419-.784-.38-.323-.765-.544-1.159-.684-.03-.011-1.085-.357-1.613-.528-.386-.124-1.001-.327-1.001-.327-.728-.245-1.103-.35-1.253-.351-.027 0-.133-.02-.261.035-.084.035-.286.624-.193.655zm2.321 2.786c-.015.064-.065.116-.134.132-.095.021-.189-.039-.21-.134l-.067-.302c-.02-.097.039-.189.134-.211.095-.021.189.039.21.134l.067.302c.007.027.006.054 0 .079zm.618-.098c-.017.073-.08.13-.159.136-.097.006-.182-.067-.188-.164l-.023-.326c-.007-.101.066-.182.164-.189.097-.006.181.067.188.164l.023.326c0 .019-.001.036-.005.053zm.628-.061c-.019.081-.094.14-.18.135-.097-.004-.172-.087-.167-.185l.015-.299c.007-.104.088-.172.185-.167.097.004.172.087.167.185l-.015.299c-.001.012-.002.022-.005.032z"/><path fill="#FFDC5D" d="M9.959 9.913c.528.627 2.12 1.746 2.296 1.929.858.887 1.814 1.427 2.462 2.275l-2.361 2.434c-.63-.478-1.263-1.253-2.178-2.161-.545-.541-1.597-2.568-2.24-3.238 0 0-1.501-1.862-2.791-4.312-.412-.783.992-1.415 1.578-.903.627.548 1.394 1.44 1.978 2.103.308.35 1.101 1.689 1.256 1.873z"/><path fill="#CCD6DD" d="M3.126 1.742c.72-.945 2.329-.518 2.762.695.291.816.305 2.096.709 2.499.403.404.557 1.034.564 1.244.007.21-.226.356-.443.153 0 0 .587.633-.079.709-.665.075-.213.506-.649.398-.436-.108-.371-.43-.371-.43s.003.777-.318.443c-.321-.335-1.899-2.64-2.247-3.716-.228-.706-.453-1.306.072-1.995z"/><path fill="#BE1931" d="M3.37 1.971c.68-.974 2.206-.218 2.442.615.236.833.295 1.916.699 2.319.403.403.945 1.181.951 1.391.007.21-.308.354-.525.151 0 0 .702.676.036.751-.666.075-.492.662-.928.554-.436-.108-.512-.774-.512-.774s.003.777-.318.443c-.321-.335-1.64-2.454-1.968-3.536s-.197-1.456.123-1.914z"/><path fill="#CCD6DD" d="M5.26 6.328c-.044.049-.058.12-.032.185.037.09.14.133.23.096l1.16-.595c.091-.039.133-.14.096-.231-.037-.09-.14-.133-.23-.096l-1.16.595c-.025.012-.046.027-.064.046zm-.395-.779c-.044.049-.058.12-.032.185.037.09.14.133.23.096l1.09-.48c.091-.039.133-.14.096-.231-.037-.09-.14-.133-.23-.096l-1.09.48c-.025.012-.047.027-.064.046zm-.318-.737c-.059.047-.083.128-.055.202.036.091.138.136.228.1l.974-.415c.094-.037.136-.137.101-.229-.035-.09-.137-.135-.228-.099l-.974.415c-.018.006-.033.015-.046.026zm-.244-.697c-.073.041-.107.13-.079.211.032.092.133.14.224.108l.934-.349c.098-.036.14-.133.108-.225-.032-.092-.133-.14-.224-.108l-.934.35c-.011.003-.02.008-.029.013z"/><path fill="#A0041E" d="M14.549 19.12s-1.718-1.063-2.419-1.602c-.699-.539-2.317-2.941-2.317-2.941s1.985-2.051 3.074-2.762l2.584 1.916 2.391-2.222s2.49.991 3.178 2.139c0 0-1.129 1.842-1.485 2.436-.017.458.008 1.039.238 1.069l-5.244 1.967z"/><path fill="#FFDC5D" d="M14.593 29.239l1.825-3.939c.215-.468.774-.673 1.242-.458.467.217.674.778.457 1.245l-1.822 3.941c-.217.468-.776.674-1.245.457-.467-.217-.672-.777-.457-1.246z"/><path fill="#FFDC5D" d="M14.07 34.202s.297-3.515.386-4.188c.089-.673.599-1.197 1.114-1.146.511.049.75.431.817 1.295.067.863-.959 3.206-.867 4.121.03.297.934.551.683.743-.111.085-.853.164-1.01.148l-.564.03c-.252-.025-.888.031-1.04-.149-.158-.188.454-.593.481-.854z"/><path fill="#DD2E44" d="M18.425 26.836s.568-.446.979-.776c0 0-.409-.721.615-1.479 1.025-.758 1.688-.396 1.688-.396s.231.09 1.038-.153c.383-.115 1.147-.307 1.147-.307s-.041-1.617-.267-2.601l-1.951-.077s-.203-.944-.529-1.22c-.328-.274-.523-.51-.771-.794-.691-.791-.6-2.399-.668-2.762 0 0-2.408.956-4.149 1.446-1.348.38-3.291.024-3.291.024.481.655 1.548 1.386 2.272 2.183.707.777 2.285 4.916 1.848 5.403-.438.487-1.062 1.535-1.062 1.535s.615.449 1.032.802c.584.493 1.072.613 1.072.613s.645-1.102.997-1.441z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f93e-1f3fb-200d-2640-fe0f.svg b/public/emoji/1f93e-1f3fb-200d-2640-fe0f.svg
index a5921b50564f47b2afa6cb2375dc5e27e757f2d8..46d9bdcab5a6f48da563e75b96653a1e647f97de 100644
--- a/public/emoji/1f93e-1f3fb-200d-2640-fe0f.svg
+++ b/public/emoji/1f93e-1f3fb-200d-2640-fe0f.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><ellipse fill="#F7DECE" cx="18.625" cy="5" rx="2.625" ry="3"/><path fill="#DD2E44" d="M17.967 33.355c-.552 0-1-.447-1-1v-3c0-.553.448-1 1-1s1 .447 1 1v3c0 .553-.448 1-1 1zm-9.431 1.076c-.199.094-.43.123-.661.067-.537-.13-.866-.671-.736-1.208l.669-2.76c.13-.535.669-.866 1.207-.736.537.13.866.671.736 1.208l-.669 2.76c-.074.306-.281.544-.546.669z"/><path fill="#F7DECE" d="M19.73 9.107l-.457-3.933c-.061-.549-.574-.973-1.117-.908-.549.061-.951.543-.889 1.092l.4 3.642h-4.584L7.228 6.106c-.55-.091-1.06.278-1.151.822-.091.545.277 1.06.822 1.151l5.389 2.787c.054.01.657.134.712.134h2.749c.009.262.086.588.251 1 1 2.5 3 8 3 8 2.209 0 2.625-4.723 2.625-7.208 0-.604.299-.753.197-1.101 1.171-.152 1.334.359 1.874.487 0 0-1.799-3.26-3.966-3.071z"/><path fill="#F7DECE" d="M14.177 26.122c-.456-.402-.56-1.088-.216-1.612l4.817-7.347c.376-.574 1.147-.735 1.72-.359.571.382.734 1.147.358 1.72l-4.817 7.347c-.376.574-1.147.735-1.72.359-.052-.032-.098-.069-.142-.108z"/><path fill="#F7DECE" d="M8.628 31.08c-.308-.458-.268-1.066.116-1.42l5.382-4.971c.42-.389 1.094-.325 1.505.142.407.471.403 1.161-.018 1.549l-5.382 4.971c-.42.388-1.095.325-1.505-.142-.036-.042-.068-.085-.098-.129zm8.861-1.75c-.184-.479-.029-1.019.384-1.257l5.786-3.347c.452-.262 1.041-.062 1.315.447.271.511.131 1.133-.322 1.394l-5.786 3.347c-.452.261-1.041.061-1.315-.447-.024-.045-.044-.09-.062-.137z"/><path fill="#F7DECE" d="M24.304 26.637c-.533.185-1.136-.044-1.403-.561l-3.745-7.25c-.293-.566-.071-1.263.495-1.555.569-.288 1.263-.071 1.555.496l3.745 7.25c.293.566.071 1.263-.495 1.555-.05.026-.1.047-.152.065zm0-13.611l-3.85-2.008c-.457-.238-.636-.807-.398-1.264.238-.457.807-.636 1.264-.397l3.85 2.008c.457.238.636.807.398 1.264-.238.457-.807.636-1.264.397z"/><path fill="#F7DECE" d="M30.07 13.88l-5.302-.783c-.51-.075-.865-.554-.79-1.064.075-.51.554-.865 1.064-.79l5.302.783c.51.075.865.554.79 1.064-.075.51-.554.865-1.064.79z"/><path fill="#292F33" d="M20.292 1.188c-.699-.487-2.461-.66-3.656-.029-.615.325-1.011.778-1.248 1.298-.181-.193-.488-.359-1.016-.403-1.196-.099-1.513 1.208-2.378 1.675-.653.352-1.4.364-1.921.013 0 0 .716.867 1.52 1.198 1.045.43 2.333.154 2.947-.175.258-.138.452-.314.604-.498.01.089.015.177.03.266.207 1.24 1.349 2.324 1.349 2.324s.414-1.064.227-1.085c-.347-.039-.555-1.105-.264-1.388.306-.299.6 0 .675.3.075.3.277 1.151.277 1.151s-.052-1.076.248-1.414c.3-.337 1.724-.262 2.324-1.724 0 0 .47.179.845.742.308.462.395 1.561.395 1.561s.283-.678.479-1.333c.225-.75-.542-1.855-1.437-2.479z"/><path fill="#A0041E" d="M16.5 17.957s-.803 2.028-1.071 2.869c-.268.842-.825 1.799-.825 1.799s1.694 1.477 2.995 1.438l1.885-2.74 1.674 2.359s1.708-1.229 2.884-1.433c0 0-1.497-3.069-1.841-3.719-.344-.65-1.186-1.492-1.186-1.492l-4.515.919z"/><path fill="#DD2E44" d="M15.549 8.805s1.274.075 1.799.112c0 0 .075.825 1.349.862 1.274.037 1.612-.637 1.612-.637s.975.075 1.687.525c.712.45 1.799.975 1.799.975s-1.012.862-.637 1.799l-1.012-.483s.3.671.188 1.083c-.112.412-.479.75-.521 1.125-.116 1.044.329 3.892.479 4.229 0 0-1.292-.333-3.188-.125-1.16.128-3.125.958-3.125.958.021-.812.589-2.827.729-3.896.137-1.041-.785-3.942-1.422-4.092-.637-.15-1.125-.187-1.125-.187s.15-.675 0-1.199c-.15-.525-.225-.9-.225-.9s1.163-.074 1.613-.149z"/><circle fill="#269" cx="5" cy="8" r="2"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#DD2E44" d="M28.65 31.29c.257.905.272 1.425.428 2.365.115.69.588 1.466 1.158 1.343.452-.097.795-.538.68-1.52-.061-.525-.205-.877-.393-1.416-.108-.311-.264-.74-.353-1.153-.097-.45-.438-.928-1.018-.802-.43.091-.674.58-.502 1.183z"/><path fill="#A0041E" d="M29.941 31.084c-.024-.017-.237-.141-.55-.054s-.425.267-.44.293c-.014.027.289.776.332.985.044.223.205.849.212.876.013.054.069.086.125.072l.597-.144c.056-.014.09-.068.077-.122l-.205-.845c-.058-.235-.123-1.044-.148-1.061z"/><path fill="#CCD6DD" d="M29.384 33.14c.016 0 .031-.002.047-.006l.91-.22c.107-.026.174-.134.147-.241-.026-.107-.134-.173-.241-.147l-.91.22c-.107.026-.174.134-.147.241.023.091.104.153.194.153zm-.174-.72c.016 0 .031-.002.047-.006l.91-.22c.107-.026.174-.134.147-.241-.025-.107-.135-.174-.241-.147l-.91.22c-.107.026-.174.134-.147.241.022.092.103.153.194.153zm-.174-.72c.016 0 .031-.002.047-.006l.91-.22c.107-.026.174-.134.147-.241s-.134-.174-.241-.147l-.91.22c-.107.026-.174.134-.147.241.022.092.103.153.194.153z"/><path fill="#DD2E44" d="M21.133 30.401c.18.923.402 1.394.688 2.302.21.667.139 1.573-.425 1.722-.447.118-.953-.12-1.294-1.047-.183-.496-.214-.875-.291-1.441-.044-.326-.1-.78-.207-1.188-.117-.445-.029-1.025.545-1.176.425-.113.864.213.984.828z"/><path fill="#A0041E" d="M20.862 30.571c-.024-.017-.24-.136-.551-.043-.311.094-.42.275-.434.302-.013.027.304.77.351.978.049.222.221.845.229.871.014.054.071.084.126.07l.594-.156c.056-.015.089-.07.075-.124l-.221-.841c-.062-.233-.144-1.041-.169-1.057z"/><path fill="#CCD6DD" d="M20.342 32.637c.017 0 .034-.002.051-.007l.905-.239c.107-.028.171-.137.143-.244-.027-.106-.137-.172-.244-.142l-.905.239c-.107.028-.171.137-.143.244.024.089.105.149.193.149zm-.188-.716c.017 0 .034-.002.051-.007l.905-.239c.107-.028.171-.137.143-.244-.027-.106-.138-.172-.244-.142l-.905.239c-.107.028-.171.137-.143.244.023.089.104.149.193.149zm-.189-.716c.017 0 .034-.002.051-.007l.905-.239c.107-.028.171-.137.143-.244-.028-.106-.139-.173-.244-.142l-.905.239c-.107.028-.171.137-.143.244.024.089.105.149.193.149z"/><g fill="#F7DECE"><path d="M19.958 24.146l2.5-1.438 1.281 2.614c.24.185.28.276 1.615 1.052 1.203.699 3.46 3.091 4.21 4.025.213.198.259.341.393.701l-1.023.266s-.182-.34-.476-.533c-1.438-.821-6.309-3.495-6.309-3.495-.394-.283-.64-.478-.78-.72 0 0-1.192-1.979-1.411-2.472zm-6.037-2.159l2.501 1.313c-.171.271-.513.854-.797 1.59-.083.213-.191.618.163.874.2.146.59.466.889.704.204.163.438.349.714.563.997.778 3.032 2.787 3.198 2.951.166.164.283.377.344.662-.087.019-.965.233-.965.233s-.123-.307-.421-.487c-.929-.561-6.214-3.599-6.214-3.599-.69-.495-1.067-.722-1.005-1.432.107-1.24 1.263-2.915 1.593-3.372zm8.503-12.665c.268-.28.705-.422 1.299-.422 1.689 0 3.358.215 3.783.3.118.023.173.024.301-.052.318-.188.435-.697.583-1.341.049-.217.102-.445.165-.672.279-1.001.588-2.46.55-2.736-.053-.384.312-3.219.356-3.262.071-.07.274.067.413.075.111.007.19.098.308.176.682.447.78 1.376.849 2 .042.386-.62 1.095-.684 1.502-.021.133-.048.804-.09 1.888-.044 1.135-.099 2.549-.141 2.788-.101.572-.208 1.186-1.01 1.382-.604.147-2.378.241-3.673.309-.65.035-1.213.064-1.512.093-.647.062-1.198-.058-1.515-.331-.192-.167-.296-.389-.309-.66-.016-.443.092-.793.327-1.037zM2.393 12.423c.285-.016.335-.059.612-.053.406.009.393.056.577.053.399-.006.967-.034 1.387-.084.31-.037 1.968-.116 2.419-.198.614-.113 1.384-.261 2.798-.152.794-.409 1.869-.87 2.823-1.279.699-.3 1.359-.583 1.802-.8.223-.109.442-.165.652-.165.156 0 .308.031.449.092.325.141.568.43.686.813.043.142.162.638-.108 1.073-.216.347-.624.573-1.214.671-.618.102-1.367.333-2.234.6-.857.265-1.82.561-2.804.772 0 0-1.555-.164-2.367-.213-1.124-.068-2.682-.362-3.092-.238-.518.157-1.068.303-1.715-.03-1.106-.569-2.212-.236-2.095-.707.027-.109.881-.125 1.424-.155zm15.779-7.43c.062-.564.59-1 1.148-.934.564.062.977.558.914 1.122l-.411 3.61.355.047s.363 1.057-1.449 1.057-1.621-.825-1.621-.825l.595-.113.469-3.964z"/><ellipse cx="18.833" cy="4.917" rx="2.625" ry="3"/></g><path fill="#292F33" d="M17.166 1.104c.699-.487 2.461-.66 3.656-.029.615.325 1.011.778 1.248 1.298.181-.193.487-.359 1.016-.403 1.196-.099 1.513 1.208 2.378 1.675.653.352 1.4.364 1.921.013 0 0-.716.867-1.52 1.198-1.045.43-2.333.154-2.947-.175-.258-.138-.452-.314-.604-.498-.01.089-.015.177-.03.266-.207 1.24-1.349 2.324-1.349 2.324s-.414-1.064-.227-1.085c.347-.039.555-1.105.264-1.389-.306-.299-.6 0-.675.3S20.02 5.75 20.02 5.75s.052-1.076-.248-1.414c-.3-.337-1.724-.262-2.324-1.724 0 0-.47.179-.845.742-.309.464-.396 1.562-.396 1.562s-.283-.678-.479-1.333c-.224-.749.543-1.855 1.438-2.479z"/><g fill="#A0041E"><path d="M20.896 18.375c.318 1.396 2.009 4.729 2.009 4.729s-1.639 1.477-2.987 1.437L17.963 21.7l-1.735 2.446s-1.713-1.274-2.931-1.485c0 0 1.666-3.182 2.023-3.856.357-.674 1.057-1.547 1.057-1.547s4.271.028 4.519 1.117z"/><path d="M19.815 24.612l-1.853-2.693-1.632 2.3c-.02.027-.049.046-.082.051-.032.004-.066-.003-.094-.022-.018-.013-1.703-1.259-2.879-1.463-.039-.007-.073-.032-.091-.067-.018-.036-.017-.078.002-.113 0 0 1.666-3.183 2.022-3.857.358-.676 1.042-1.53 1.07-1.566.023-.03.06-.047.098-.047h.001c.447.003 4.377.062 4.64 1.214.31 1.365 1.981 4.667 1.998 4.7.026.051.014.111-.028.149-.067.061-1.646 1.471-3.016 1.471-.058-.001-.123-.008-.156-.057zm.959-6.209c-.163-.714-2.72-1.001-4.336-1.019-.149.19-.707.912-1.008 1.479-.311.587-1.613 3.076-1.945 3.709 1.05.248 2.342 1.132 2.715 1.398l1.662-2.343c.023-.033.062-.053.102-.053h.001c.041 0 .079.021.102.054l1.918 2.788c1.115-.008 2.444-1.073 2.765-1.345-.275-.545-1.684-3.383-1.976-4.668z"/></g><path fill="#DD2E44" d="M22.043 8.722c-.549-.02-1.321.078-1.865.117 0 0-.078.855-1.399.894-1.321.039-1.671-.661-1.671-.661s-1.01.078-1.749.544c-.738.466-1.865.884-1.865.884s1.049 1.197.661 2.169l1.049-.315s-.352.593-.235 1.021c.117.427.538.88.581 1.269.12 1.082-.227 3.672-.383 4.021 0 0 1.225-.346 3.191-.13 1.202.133 3.042.965 3.042.965-.022-.842-.413-2.902-.559-4.01-.142-1.079.814-3.793 1.474-3.948.661-.155 1.166-.194 1.166-.194s-.155-.994 0-1.538.233-.933.233-.933-1.121-.135-1.671-.155z"/><circle fill="#269" cx="28.5" cy="2.917" r="2.055"/><path fill="#F7DECE" d="M29.282 1.82l.079-.014c-.134.021-.261-.069-.284-.203-.023-.135.068-.265.204-.289l.513-.092.825.901.25.922-.817.15c-.135.023-.265-.068-.288-.204-.022-.129.064-.248.189-.279l-.22.038c-.135.023-.265-.068-.288-.204-.023-.131.065-.253.194-.282l-.271.046c-.135.023-.265-.068-.288-.204s.066-.263.202-.286z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f93e-1f3fb-200d-2642-fe0f.svg b/public/emoji/1f93e-1f3fb-200d-2642-fe0f.svg
index af8a0563dcf6f4d2f7a3a7bed377d4be0ed05e5b..029896345d71ff70ca2440230a260d6a1a270b0f 100644
--- a/public/emoji/1f93e-1f3fb-200d-2642-fe0f.svg
+++ b/public/emoji/1f93e-1f3fb-200d-2642-fe0f.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#F7DECE" d="M21.25 5c0-1.657-1.175-3-2.625-3C17.176 2 16 3.343 16 5s.984 3 2.719 3c.661 0 1.736-.132 2.198-.594.55-.55.333-1.505.333-2.406z"/><path fill="#2A6797" d="M17.967 33.355c-.552 0-1-.447-1-1v-3c0-.553.448-1 1-1s1 .447 1 1v3c0 .553-.448 1-1 1zm-9.431 1.076c-.199.094-.43.123-.661.067-.537-.13-.866-.671-.736-1.208l.669-2.76c.13-.535.669-.866 1.207-.736.537.13.866.671.736 1.208l-.669 2.76c-.074.306-.281.544-.546.669z"/><path fill="#F7DECE" d="M19.73 9.107l-.457-3.933c-.061-.549-.574-.973-1.117-.908-.549.061-.951.543-.889 1.092l.4 3.642h-4.584L7.228 6.106c-.55-.091-1.06.278-1.151.822-.091.545.277 1.06.822 1.151l5.389 2.787c.054.01.657.134.712.134h2.749c.009.262.086.588.251 1 1 2.5 3 8 3 8 2.209 0 2.625-4.723 2.625-7.208 0-.604.299-.753.197-1.101 1.171-.152 1.334.359 1.874.487 0 0-1.799-3.26-3.966-3.071z"/><path fill="#F7DECE" d="M14.177 26.122c-.456-.402-.56-1.088-.216-1.612l4.817-7.347c.376-.574 1.147-.735 1.72-.359.571.382.734 1.147.358 1.72l-4.817 7.347c-.376.574-1.147.735-1.72.359-.052-.032-.098-.069-.142-.108z"/><path fill="#F7DECE" d="M8.628 31.08c-.308-.458-.268-1.066.116-1.42l5.382-4.971c.42-.389 1.094-.325 1.505.142.407.471.403 1.161-.018 1.549l-5.382 4.971c-.42.388-1.095.325-1.505-.142-.036-.042-.068-.085-.098-.129zm8.861-1.75c-.184-.479-.029-1.019.384-1.257l5.786-3.347c.452-.262 1.041-.062 1.315.447.271.511.131 1.133-.322 1.394l-5.786 3.347c-.452.261-1.041.061-1.315-.447-.024-.045-.044-.09-.062-.137z"/><path fill="#F7DECE" d="M24.304 26.637c-.533.185-1.136-.044-1.403-.561l-3.745-7.25c-.293-.566-.071-1.263.495-1.555.569-.288 1.263-.071 1.555.496l3.745 7.25c.293.566.071 1.263-.495 1.555-.05.026-.1.047-.152.065zm0-13.611l-3.85-2.008c-.457-.238-.636-.807-.398-1.264.238-.457.807-.636 1.264-.397l3.85 2.008c.457.238.636.807.398 1.264-.238.457-.807.636-1.264.397z"/><path fill="#F7DECE" d="M30.07 13.88l-5.302-.783c-.51-.075-.865-.554-.79-1.064.075-.51.554-.865 1.064-.79l5.302.783c.51.075.865.554.79 1.064-.075.51-.554.865-1.064.79z"/><path fill="#2A6797" d="M16.5 17.957s-.803 2.028-1.071 2.869c-.268.842-.825 1.799-.825 1.799s1.694 1.477 2.995 1.438l1.885-2.74 1.674 2.359s1.708-1.229 2.884-1.433c0 0-1.497-3.069-1.841-3.719-.344-.65-1.186-1.492-1.186-1.492l-4.515.919z"/><path fill="#4289C1" d="M15.549 8.805s1.274.075 1.799.112c0 0 .075.825 1.349.862 1.274.037 1.612-.637 1.612-.637s.975.075 1.687.525c.712.45 1.799.975 1.799.975s-1.012.862-.637 1.799l-1.012-.483s.135.417.198 1.198c.094 1.174-.202 4.902-.052 5.24 0 0-1.292-.333-3.188-.125-1.16.128-3.323.958-3.323.958.302-1.26.483-3.152.531-4.229.094-2.115-.389-3.609-1.026-3.759-.637-.15-1.125-.187-1.125-.187s.15-.675 0-1.199c-.15-.525-.225-.9-.225-.9s1.163-.075 1.613-.15z"/><circle fill="#269" cx="5" cy="8" r="2"/><path fill="#292F33" d="M20.292 1.188c-.699-.487-2.461-.66-3.656-.029-1.349.713-1.687 2.024-1.462 3.373.207 1.24.803 1.754.803 1.754.229.247.837-.402.488-.95-.409-.643-.294-1.401.169-1.448.327-.034.678.158.584.451-.113.353.032.498.032.498s.269.192.54-.627c.142-.429 1.157-.362 2.648-1.038.176-.08.625.422.752 1.539.027.241.477-.502.54-1.044.103-.899-.543-1.855-1.438-2.479z"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#1C6399" d="M28.648 31.324c.294.944.323 1.49.512 2.473.139.722.656 1.525 1.252 1.381.472-.114.821-.587.675-1.614-.078-.55-.238-.916-.45-1.477-.122-.324-.297-.771-.401-1.202-.114-.47-.484-.963-1.091-.816-.45.107-.693.627-.497 1.255z"/><path fill="#3B94D9" d="M29.952 31.074c-.026-.017-.255-.137-.58-.031-.325.106-.434.3-.448.328-.013.028.339.801.394 1.019.057.232.254.882.263.909.016.056.076.087.134.07l.62-.179c.059-.017.092-.076.076-.132l-.254-.878c-.071-.243-.178-1.089-.205-1.106z"/><path fill="#CCD6DD" d="M29.463 33.264c.019 0 .037-.002.057-.008l.944-.277c.105-.031.166-.142.136-.248-.031-.106-.137-.167-.249-.136l-.944.277c-.105.031-.166.142-.136.248.026.087.105.144.192.144zm-.22-.747c.019 0 .037-.002.057-.008l.944-.277c.105-.031.166-.142.136-.248-.031-.106-.137-.167-.249-.136l-.944.277c-.105.031-.166.142-.136.248.026.088.105.144.192.144zm-.218-.747c.019 0 .037-.002.057-.008l.944-.277c.105-.031.166-.142.136-.248-.031-.106-.137-.167-.249-.136l-.944.277c-.105.031-.166.142-.136.248.026.088.105.144.192.144z"/><path fill="#1C6399" d="M21.01 30.366c.189.97.423 1.465.723 2.419.22.701.146 1.653-.446 1.809-.469.124-1.001-.127-1.36-1.101-.192-.521-.225-.919-.306-1.514-.046-.343-.105-.819-.218-1.249-.123-.468-.031-1.077.573-1.236.447-.116.908.226 1.034.872z"/><path fill="#3B94D9" d="M20.725 30.544c-.026-.018-.252-.143-.579-.045-.327.098-.441.289-.456.317-.014.028.319.809.369 1.028.051.233.233.888.241.915.015.056.074.089.132.073l.624-.164c.059-.016.094-.074.079-.13l-.233-.883c-.064-.245-.15-1.093-.177-1.111z"/><path fill="#CCD6DD" d="M20.18 32.705c.017 0 .034-.002.051-.007l.951-.25c.107-.028.171-.137.143-.244-.027-.106-.138-.172-.244-.142l-.951.25c-.107.028-.171.137-.143.244.023.09.104.149.193.149zm-.198-.752c.017 0 .034-.002.051-.007l.951-.251c.107-.028.171-.137.143-.244-.028-.106-.138-.172-.244-.142l-.951.251c-.107.028-.171.137-.143.244.023.09.104.149.193.149zm-.199-.753c.017 0 .034-.002.051-.007l.951-.251c.107-.028.171-.137.143-.244-.028-.106-.138-.172-.244-.142l-.951.251c-.107.028-.171.137-.143.244.023.09.105.149.193.149z"/><g fill="#F7DECE"><path d="M20.093 24.067l2.664-1.668 1.149 2.757c.24.185.28.276 1.615 1.052 1.203.699 3.041 2.897 3.791 3.832.213.198.504.544.646 1.061-.566.137-1.023.266-1.023.266s-.171-.202-.466-.396c-1.438-.821-6.319-3.633-6.319-3.633-.394-.283-.64-.478-.78-.72l-.01.006c-.954-1.365-1.048-2.063-1.267-2.557zm-6.532-2.196l2.815 1.487c-.171.271-.513.854-.797 1.59-.083.213-.132.49.223.746.2.146.433.331.731.568.204.163.438.349.714.563.997.778 2.582 2.469 2.694 2.575.059.056.145.12.239.202.08.07.165.163.248.278.002.004.005.005.007.008l.002.005c.12.17.231.388.292.673-.087.019-.965.233-.965.233s-.164-.223-.464-.399c-.907-.513-5.677-3.215-6.356-3.703l-.062-.044c-.69-.495-.977-.699-.915-1.409.108-1.241 1.264-2.916 1.594-3.373zm8.389-11.505c-.03-.672.209-1.616 1.772-1.616 1.699 0 3.246.172 3.686.298.651.186.707-.9 1.002-1.952.295-1.056.577-2.448.546-2.676-.053-.384.461-3.239.505-3.282.072-.07.275.067.413.075.111.007.19.098.308.176.682.447.906 1.376.974 2 .042.386-.597 1.118-.661 1.525-.047.301-.154 4.237-.231 4.678-.095.539-.207 1.278-1.122 1.502-.916.223-4.298.317-5.205.406-1.039.102-1.947-.243-1.987-1.134zM2.177 12.341c.285-.018.335-.066.612-.059.406.01.393.062.577.059.399-.007.967-.038 1.387-.094.31-.041 1.968-.32 2.419-.413.614-.126 1.372-.353 2.786-.23v-.001c1.217-.728 3.875-1.827 4.754-2.147 1.009-.367 2.187 2.707.602 2.97-1.277.211-3.237 1.018-5.292 1.425l-.001-.032c-.023.016-.037.039-.062.052 0 0-1.491-.204-2.303-.259-1.124-.076-2.682-.406-3.092-.267-.518.176-1.068.34-1.715-.034-1.106-.639-2.212-.265-2.095-.794.026-.124.88-.142 1.423-.176zm15.996-7.515c.062-.564.59-1 1.148-.934.564.062.977.558.914 1.122l-.411 3.61.328.048s.391 1.056-1.422 1.056-1.621-.825-1.621-.825l.595-.113.469-3.964z"/><path d="M16.142 4.648c0-1.702 1.208-3.083 2.697-3.083s2.697 1.38 2.697 3.083-1.011 3.082-2.794 3.082c-.68 0-1.784-.136-2.258-.61-.565-.565-.342-1.547-.342-2.472z"/></g><path fill="#292F33" d="M17.126.73c.718-.5 2.529-.678 3.757-.029 1.386.732 1.733 2.08 1.502 3.466-.212 1.274-.825 1.802-.825 1.802-.235.254-.86-.413-.502-.977.42-.66.302-1.439-.174-1.488-.336-.034-.697.162-.6.464.116.363-.033.512-.033.512s-.277.197-.555-.644c-.146-.441-1.189-.372-2.721-1.066-.181-.082-.642.433-.772 1.581-.028.248-.491-.516-.555-1.073-.105-.923.558-1.906 1.478-2.548z"/><g fill="#1C6399"><path d="M21.211 17.894s.826 2.083 1.101 2.948c.275.865.848 1.848.848 1.848s-1.729 1.586-3.066 1.546l-1.843-3.299-2.021 2.896s-1.959-1.333-3.167-1.542c0 0 1.709-3.03 2.062-3.698.354-.668.75-1.094.75-1.094l5.336.395z"/><path d="M20.089 24.411c-.062-.002-.118-.036-.148-.09l-1.707-3.055-1.86 2.667c-.055.077-.163.097-.242.044-.019-.013-1.941-1.313-3.099-1.513-.056-.01-.104-.047-.128-.098-.024-.052-.022-.111.006-.161.017-.03 1.712-3.036 2.061-3.694.359-.681.76-1.113.776-1.131.036-.038.085-.06.141-.055l5.335.394c.067.005.125.047.15.11.034.085.831 2.099 1.105 2.96.266.836.827 1.804.833 1.813.042.071.027.161-.033.217-.072.066-1.754 1.593-3.136 1.593l-.054-.001zm2.055-3.516c-.235-.74-.887-2.406-1.056-2.834l-5.139-.379c-.118.138-.407.499-.67.995-.296.561-1.557 2.802-1.948 3.496 1.036.27 2.407 1.13 2.853 1.421l1.923-2.756c.034-.049.092-.072.152-.074.06.003.115.037.144.09l1.793 3.209c1.054-.035 2.366-1.089 2.741-1.409-.164-.298-.57-1.059-.793-1.759z"/></g><path fill="#4289C1" d="M22.141 8.562c-.812 0-1.45.072-1.99.111 0 0-.077.847-1.387.886-1.309.039-1.656-.655-1.656-.655s-1.411-.055-2.143.407l-1.606.685s.915 1.338.821 2.719l.74-.212s-.032.025-.068.525c-.088 1.207.208 5.343.054 5.69 0 0 1.521.536 3.469.75 1.192.131 3.703.106 3.703.106-.31-1.295-.529-3.545-.578-4.652-.096-2.173.497-3.318.708-3.298.896.083 1.729-.125 1.729-.125s-.375-.688-.292-1.458c.083-.771.312-1.292.312-1.292s-1.004-.187-1.816-.187z"/><circle fill="#269" cx="28.5" cy="2.917" r="2.055"/><path fill="#F7DECE" d="M29.282 1.82l.079-.014c-.134.021-.261-.069-.284-.203-.023-.135.068-.265.204-.289l.513-.092.825.901.25.922-.817.15c-.135.023-.265-.068-.288-.204-.022-.129.064-.248.189-.279l-.22.038c-.135.023-.265-.068-.288-.204-.023-.131.065-.253.194-.282l-.271.046c-.135.023-.265-.068-.288-.204s.067-.263.202-.286z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f93e-1f3fb.svg b/public/emoji/1f93e-1f3fb.svg
index a5921b50564f47b2afa6cb2375dc5e27e757f2d8..46d9bdcab5a6f48da563e75b96653a1e647f97de 100644
--- a/public/emoji/1f93e-1f3fb.svg
+++ b/public/emoji/1f93e-1f3fb.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><ellipse fill="#F7DECE" cx="18.625" cy="5" rx="2.625" ry="3"/><path fill="#DD2E44" d="M17.967 33.355c-.552 0-1-.447-1-1v-3c0-.553.448-1 1-1s1 .447 1 1v3c0 .553-.448 1-1 1zm-9.431 1.076c-.199.094-.43.123-.661.067-.537-.13-.866-.671-.736-1.208l.669-2.76c.13-.535.669-.866 1.207-.736.537.13.866.671.736 1.208l-.669 2.76c-.074.306-.281.544-.546.669z"/><path fill="#F7DECE" d="M19.73 9.107l-.457-3.933c-.061-.549-.574-.973-1.117-.908-.549.061-.951.543-.889 1.092l.4 3.642h-4.584L7.228 6.106c-.55-.091-1.06.278-1.151.822-.091.545.277 1.06.822 1.151l5.389 2.787c.054.01.657.134.712.134h2.749c.009.262.086.588.251 1 1 2.5 3 8 3 8 2.209 0 2.625-4.723 2.625-7.208 0-.604.299-.753.197-1.101 1.171-.152 1.334.359 1.874.487 0 0-1.799-3.26-3.966-3.071z"/><path fill="#F7DECE" d="M14.177 26.122c-.456-.402-.56-1.088-.216-1.612l4.817-7.347c.376-.574 1.147-.735 1.72-.359.571.382.734 1.147.358 1.72l-4.817 7.347c-.376.574-1.147.735-1.72.359-.052-.032-.098-.069-.142-.108z"/><path fill="#F7DECE" d="M8.628 31.08c-.308-.458-.268-1.066.116-1.42l5.382-4.971c.42-.389 1.094-.325 1.505.142.407.471.403 1.161-.018 1.549l-5.382 4.971c-.42.388-1.095.325-1.505-.142-.036-.042-.068-.085-.098-.129zm8.861-1.75c-.184-.479-.029-1.019.384-1.257l5.786-3.347c.452-.262 1.041-.062 1.315.447.271.511.131 1.133-.322 1.394l-5.786 3.347c-.452.261-1.041.061-1.315-.447-.024-.045-.044-.09-.062-.137z"/><path fill="#F7DECE" d="M24.304 26.637c-.533.185-1.136-.044-1.403-.561l-3.745-7.25c-.293-.566-.071-1.263.495-1.555.569-.288 1.263-.071 1.555.496l3.745 7.25c.293.566.071 1.263-.495 1.555-.05.026-.1.047-.152.065zm0-13.611l-3.85-2.008c-.457-.238-.636-.807-.398-1.264.238-.457.807-.636 1.264-.397l3.85 2.008c.457.238.636.807.398 1.264-.238.457-.807.636-1.264.397z"/><path fill="#F7DECE" d="M30.07 13.88l-5.302-.783c-.51-.075-.865-.554-.79-1.064.075-.51.554-.865 1.064-.79l5.302.783c.51.075.865.554.79 1.064-.075.51-.554.865-1.064.79z"/><path fill="#292F33" d="M20.292 1.188c-.699-.487-2.461-.66-3.656-.029-.615.325-1.011.778-1.248 1.298-.181-.193-.488-.359-1.016-.403-1.196-.099-1.513 1.208-2.378 1.675-.653.352-1.4.364-1.921.013 0 0 .716.867 1.52 1.198 1.045.43 2.333.154 2.947-.175.258-.138.452-.314.604-.498.01.089.015.177.03.266.207 1.24 1.349 2.324 1.349 2.324s.414-1.064.227-1.085c-.347-.039-.555-1.105-.264-1.388.306-.299.6 0 .675.3.075.3.277 1.151.277 1.151s-.052-1.076.248-1.414c.3-.337 1.724-.262 2.324-1.724 0 0 .47.179.845.742.308.462.395 1.561.395 1.561s.283-.678.479-1.333c.225-.75-.542-1.855-1.437-2.479z"/><path fill="#A0041E" d="M16.5 17.957s-.803 2.028-1.071 2.869c-.268.842-.825 1.799-.825 1.799s1.694 1.477 2.995 1.438l1.885-2.74 1.674 2.359s1.708-1.229 2.884-1.433c0 0-1.497-3.069-1.841-3.719-.344-.65-1.186-1.492-1.186-1.492l-4.515.919z"/><path fill="#DD2E44" d="M15.549 8.805s1.274.075 1.799.112c0 0 .075.825 1.349.862 1.274.037 1.612-.637 1.612-.637s.975.075 1.687.525c.712.45 1.799.975 1.799.975s-1.012.862-.637 1.799l-1.012-.483s.3.671.188 1.083c-.112.412-.479.75-.521 1.125-.116 1.044.329 3.892.479 4.229 0 0-1.292-.333-3.188-.125-1.16.128-3.125.958-3.125.958.021-.812.589-2.827.729-3.896.137-1.041-.785-3.942-1.422-4.092-.637-.15-1.125-.187-1.125-.187s.15-.675 0-1.199c-.15-.525-.225-.9-.225-.9s1.163-.074 1.613-.149z"/><circle fill="#269" cx="5" cy="8" r="2"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#DD2E44" d="M28.65 31.29c.257.905.272 1.425.428 2.365.115.69.588 1.466 1.158 1.343.452-.097.795-.538.68-1.52-.061-.525-.205-.877-.393-1.416-.108-.311-.264-.74-.353-1.153-.097-.45-.438-.928-1.018-.802-.43.091-.674.58-.502 1.183z"/><path fill="#A0041E" d="M29.941 31.084c-.024-.017-.237-.141-.55-.054s-.425.267-.44.293c-.014.027.289.776.332.985.044.223.205.849.212.876.013.054.069.086.125.072l.597-.144c.056-.014.09-.068.077-.122l-.205-.845c-.058-.235-.123-1.044-.148-1.061z"/><path fill="#CCD6DD" d="M29.384 33.14c.016 0 .031-.002.047-.006l.91-.22c.107-.026.174-.134.147-.241-.026-.107-.134-.173-.241-.147l-.91.22c-.107.026-.174.134-.147.241.023.091.104.153.194.153zm-.174-.72c.016 0 .031-.002.047-.006l.91-.22c.107-.026.174-.134.147-.241-.025-.107-.135-.174-.241-.147l-.91.22c-.107.026-.174.134-.147.241.022.092.103.153.194.153zm-.174-.72c.016 0 .031-.002.047-.006l.91-.22c.107-.026.174-.134.147-.241s-.134-.174-.241-.147l-.91.22c-.107.026-.174.134-.147.241.022.092.103.153.194.153z"/><path fill="#DD2E44" d="M21.133 30.401c.18.923.402 1.394.688 2.302.21.667.139 1.573-.425 1.722-.447.118-.953-.12-1.294-1.047-.183-.496-.214-.875-.291-1.441-.044-.326-.1-.78-.207-1.188-.117-.445-.029-1.025.545-1.176.425-.113.864.213.984.828z"/><path fill="#A0041E" d="M20.862 30.571c-.024-.017-.24-.136-.551-.043-.311.094-.42.275-.434.302-.013.027.304.77.351.978.049.222.221.845.229.871.014.054.071.084.126.07l.594-.156c.056-.015.089-.07.075-.124l-.221-.841c-.062-.233-.144-1.041-.169-1.057z"/><path fill="#CCD6DD" d="M20.342 32.637c.017 0 .034-.002.051-.007l.905-.239c.107-.028.171-.137.143-.244-.027-.106-.137-.172-.244-.142l-.905.239c-.107.028-.171.137-.143.244.024.089.105.149.193.149zm-.188-.716c.017 0 .034-.002.051-.007l.905-.239c.107-.028.171-.137.143-.244-.027-.106-.138-.172-.244-.142l-.905.239c-.107.028-.171.137-.143.244.023.089.104.149.193.149zm-.189-.716c.017 0 .034-.002.051-.007l.905-.239c.107-.028.171-.137.143-.244-.028-.106-.139-.173-.244-.142l-.905.239c-.107.028-.171.137-.143.244.024.089.105.149.193.149z"/><g fill="#F7DECE"><path d="M19.958 24.146l2.5-1.438 1.281 2.614c.24.185.28.276 1.615 1.052 1.203.699 3.46 3.091 4.21 4.025.213.198.259.341.393.701l-1.023.266s-.182-.34-.476-.533c-1.438-.821-6.309-3.495-6.309-3.495-.394-.283-.64-.478-.78-.72 0 0-1.192-1.979-1.411-2.472zm-6.037-2.159l2.501 1.313c-.171.271-.513.854-.797 1.59-.083.213-.191.618.163.874.2.146.59.466.889.704.204.163.438.349.714.563.997.778 3.032 2.787 3.198 2.951.166.164.283.377.344.662-.087.019-.965.233-.965.233s-.123-.307-.421-.487c-.929-.561-6.214-3.599-6.214-3.599-.69-.495-1.067-.722-1.005-1.432.107-1.24 1.263-2.915 1.593-3.372zm8.503-12.665c.268-.28.705-.422 1.299-.422 1.689 0 3.358.215 3.783.3.118.023.173.024.301-.052.318-.188.435-.697.583-1.341.049-.217.102-.445.165-.672.279-1.001.588-2.46.55-2.736-.053-.384.312-3.219.356-3.262.071-.07.274.067.413.075.111.007.19.098.308.176.682.447.78 1.376.849 2 .042.386-.62 1.095-.684 1.502-.021.133-.048.804-.09 1.888-.044 1.135-.099 2.549-.141 2.788-.101.572-.208 1.186-1.01 1.382-.604.147-2.378.241-3.673.309-.65.035-1.213.064-1.512.093-.647.062-1.198-.058-1.515-.331-.192-.167-.296-.389-.309-.66-.016-.443.092-.793.327-1.037zM2.393 12.423c.285-.016.335-.059.612-.053.406.009.393.056.577.053.399-.006.967-.034 1.387-.084.31-.037 1.968-.116 2.419-.198.614-.113 1.384-.261 2.798-.152.794-.409 1.869-.87 2.823-1.279.699-.3 1.359-.583 1.802-.8.223-.109.442-.165.652-.165.156 0 .308.031.449.092.325.141.568.43.686.813.043.142.162.638-.108 1.073-.216.347-.624.573-1.214.671-.618.102-1.367.333-2.234.6-.857.265-1.82.561-2.804.772 0 0-1.555-.164-2.367-.213-1.124-.068-2.682-.362-3.092-.238-.518.157-1.068.303-1.715-.03-1.106-.569-2.212-.236-2.095-.707.027-.109.881-.125 1.424-.155zm15.779-7.43c.062-.564.59-1 1.148-.934.564.062.977.558.914 1.122l-.411 3.61.355.047s.363 1.057-1.449 1.057-1.621-.825-1.621-.825l.595-.113.469-3.964z"/><ellipse cx="18.833" cy="4.917" rx="2.625" ry="3"/></g><path fill="#292F33" d="M17.166 1.104c.699-.487 2.461-.66 3.656-.029.615.325 1.011.778 1.248 1.298.181-.193.487-.359 1.016-.403 1.196-.099 1.513 1.208 2.378 1.675.653.352 1.4.364 1.921.013 0 0-.716.867-1.52 1.198-1.045.43-2.333.154-2.947-.175-.258-.138-.452-.314-.604-.498-.01.089-.015.177-.03.266-.207 1.24-1.349 2.324-1.349 2.324s-.414-1.064-.227-1.085c.347-.039.555-1.105.264-1.389-.306-.299-.6 0-.675.3S20.02 5.75 20.02 5.75s.052-1.076-.248-1.414c-.3-.337-1.724-.262-2.324-1.724 0 0-.47.179-.845.742-.309.464-.396 1.562-.396 1.562s-.283-.678-.479-1.333c-.224-.749.543-1.855 1.438-2.479z"/><g fill="#A0041E"><path d="M20.896 18.375c.318 1.396 2.009 4.729 2.009 4.729s-1.639 1.477-2.987 1.437L17.963 21.7l-1.735 2.446s-1.713-1.274-2.931-1.485c0 0 1.666-3.182 2.023-3.856.357-.674 1.057-1.547 1.057-1.547s4.271.028 4.519 1.117z"/><path d="M19.815 24.612l-1.853-2.693-1.632 2.3c-.02.027-.049.046-.082.051-.032.004-.066-.003-.094-.022-.018-.013-1.703-1.259-2.879-1.463-.039-.007-.073-.032-.091-.067-.018-.036-.017-.078.002-.113 0 0 1.666-3.183 2.022-3.857.358-.676 1.042-1.53 1.07-1.566.023-.03.06-.047.098-.047h.001c.447.003 4.377.062 4.64 1.214.31 1.365 1.981 4.667 1.998 4.7.026.051.014.111-.028.149-.067.061-1.646 1.471-3.016 1.471-.058-.001-.123-.008-.156-.057zm.959-6.209c-.163-.714-2.72-1.001-4.336-1.019-.149.19-.707.912-1.008 1.479-.311.587-1.613 3.076-1.945 3.709 1.05.248 2.342 1.132 2.715 1.398l1.662-2.343c.023-.033.062-.053.102-.053h.001c.041 0 .079.021.102.054l1.918 2.788c1.115-.008 2.444-1.073 2.765-1.345-.275-.545-1.684-3.383-1.976-4.668z"/></g><path fill="#DD2E44" d="M22.043 8.722c-.549-.02-1.321.078-1.865.117 0 0-.078.855-1.399.894-1.321.039-1.671-.661-1.671-.661s-1.01.078-1.749.544c-.738.466-1.865.884-1.865.884s1.049 1.197.661 2.169l1.049-.315s-.352.593-.235 1.021c.117.427.538.88.581 1.269.12 1.082-.227 3.672-.383 4.021 0 0 1.225-.346 3.191-.13 1.202.133 3.042.965 3.042.965-.022-.842-.413-2.902-.559-4.01-.142-1.079.814-3.793 1.474-3.948.661-.155 1.166-.194 1.166-.194s-.155-.994 0-1.538.233-.933.233-.933-1.121-.135-1.671-.155z"/><circle fill="#269" cx="28.5" cy="2.917" r="2.055"/><path fill="#F7DECE" d="M29.282 1.82l.079-.014c-.134.021-.261-.069-.284-.203-.023-.135.068-.265.204-.289l.513-.092.825.901.25.922-.817.15c-.135.023-.265-.068-.288-.204-.022-.129.064-.248.189-.279l-.22.038c-.135.023-.265-.068-.288-.204-.023-.131.065-.253.194-.282l-.271.046c-.135.023-.265-.068-.288-.204s.066-.263.202-.286z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f93e-1f3fc-200d-2640-fe0f.svg b/public/emoji/1f93e-1f3fc-200d-2640-fe0f.svg
index c20722f95e3197c235e075878820d3d878cea8fb..2a6191fd9cb1dee6f56a83f8bb7977ad5c402fad 100644
--- a/public/emoji/1f93e-1f3fc-200d-2640-fe0f.svg
+++ b/public/emoji/1f93e-1f3fc-200d-2640-fe0f.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><ellipse fill="#F3D2A2" cx="18.625" cy="5" rx="2.625" ry="3"/><path fill="#FFE51E" d="M15.63 3.212s.193-1.038-1.258-1.158c-1.196-.099-1.513 1.208-2.378 1.675-.653.352-1.4.364-1.921.013 0 0 .716.867 1.52 1.198 1.045.43 2.333.154 2.947-.175.96-.515 1.09-1.553 1.09-1.553z"/><path fill="#DD2E44" d="M17.967 33.355c-.552 0-1-.447-1-1v-3c0-.553.448-1 1-1s1 .447 1 1v3c0 .553-.448 1-1 1zm-9.431 1.076c-.199.094-.43.123-.661.067-.537-.13-.866-.671-.736-1.208l.669-2.76c.13-.535.669-.866 1.207-.736.537.13.866.671.736 1.208l-.669 2.76c-.074.306-.281.544-.546.669z"/><path fill="#F3D2A2" d="M19.73 9.107l-.457-3.933c-.061-.549-.574-.973-1.117-.908-.549.061-.951.543-.889 1.092l.4 3.642h-4.584L7.228 6.106c-.55-.091-1.06.278-1.151.822-.091.545.277 1.06.822 1.151l5.389 2.787c.054.01.657.134.712.134h2.749c.009.262.086.588.251 1 1 2.5 3 8 3 8 2.209 0 2.625-4.723 2.625-7.208 0-.604.299-.753.197-1.101 1.171-.152 1.334.359 1.874.487 0 0-1.799-3.26-3.966-3.071z"/><path fill="#F3D2A2" d="M14.177 26.122c-.456-.402-.56-1.088-.216-1.612l4.817-7.347c.376-.574 1.147-.735 1.72-.359.571.382.734 1.147.358 1.72l-4.817 7.347c-.376.574-1.147.735-1.72.359-.052-.032-.098-.069-.142-.108z"/><path fill="#F3D2A2" d="M8.628 31.08c-.308-.458-.268-1.066.116-1.42l5.382-4.971c.42-.389 1.094-.325 1.505.142.407.471.403 1.161-.018 1.549l-5.382 4.971c-.42.388-1.095.325-1.505-.142-.036-.042-.068-.085-.098-.129zm8.861-1.75c-.184-.479-.029-1.019.384-1.257l5.786-3.347c.452-.262 1.041-.062 1.315.447.271.511.131 1.133-.322 1.394l-5.786 3.347c-.452.261-1.041.061-1.315-.447-.024-.045-.044-.09-.062-.137z"/><path fill="#F3D2A2" d="M24.304 26.637c-.533.185-1.136-.044-1.403-.561l-3.745-7.25c-.293-.566-.071-1.263.495-1.555.569-.288 1.263-.071 1.555.496l3.745 7.25c.293.566.071 1.263-.495 1.555-.05.026-.1.047-.152.065zm0-13.611l-3.85-2.008c-.457-.238-.636-.807-.398-1.264.238-.457.807-.636 1.264-.397l3.85 2.008c.457.238.636.807.398 1.264-.238.457-.807.636-1.264.397z"/><path fill="#F3D2A2" d="M30.07 13.88l-5.302-.783c-.51-.075-.865-.554-.79-1.064.075-.51.554-.865 1.064-.79l5.302.783c.51.075.865.554.79 1.064-.075.51-.554.865-1.064.79z"/><path fill="#FFE51E" d="M21.25 5s.283-.678.479-1.333c.225-.75-.542-1.855-1.438-2.479-.699-.487-2.461-.66-3.656-.029-1.349.713-1.687 2.024-1.462 3.373.207 1.24 1.349 2.324 1.349 2.324s.414-1.064.227-1.085c-.347-.039-.555-1.105-.264-1.389.306-.299.6 0 .675.3.075.3.277 1.151.277 1.151s-.052-1.076.248-1.414c.3-.337 1.724-.262 2.324-1.724 0 0 .47.179.845.742.309.464.396 1.563.396 1.563z"/><path fill="#A0041E" d="M16.5 17.957s-.803 2.028-1.071 2.869c-.268.842-.825 1.799-.825 1.799s1.694 1.477 2.995 1.438l1.885-2.74 1.674 2.359s1.708-1.229 2.884-1.433c0 0-1.497-3.069-1.841-3.719-.344-.65-1.186-1.492-1.186-1.492l-4.515.919z"/><path fill="#DD2E44" d="M15.549 8.805s1.274.075 1.799.112c0 0 .075.825 1.349.862 1.274.037 1.612-.637 1.612-.637s.975.075 1.687.525c.712.45 1.799.975 1.799.975s-1.012.862-.637 1.799l-1.012-.483s.3.671.188 1.083c-.112.412-.479.75-.521 1.125-.116 1.044.329 3.892.479 4.229 0 0-1.292-.333-3.188-.125-1.16.128-3.125.958-3.125.958.021-.812.589-2.827.729-3.896.137-1.041-.785-3.942-1.422-4.092-.637-.15-1.125-.187-1.125-.187s.15-.675 0-1.199c-.15-.525-.225-.9-.225-.9s1.163-.074 1.613-.149z"/><circle fill="#269" cx="5" cy="8" r="2"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#DD2E44" d="M28.65 31.29c.257.905.272 1.425.428 2.365.115.69.588 1.466 1.158 1.343.452-.097.795-.538.68-1.52-.061-.525-.205-.877-.393-1.416-.108-.311-.264-.74-.353-1.153-.097-.45-.438-.928-1.018-.802-.43.091-.674.58-.502 1.183z"/><path fill="#A0041E" d="M29.941 31.084c-.024-.017-.237-.141-.55-.054s-.425.267-.44.293c-.014.027.289.776.332.985.044.223.205.849.212.876.013.054.069.086.125.072l.597-.144c.056-.014.09-.068.077-.122l-.205-.845c-.058-.235-.123-1.044-.148-1.061z"/><path fill="#CCD6DD" d="M29.384 33.14c.016 0 .031-.002.047-.006l.91-.22c.107-.026.174-.134.147-.241-.026-.107-.134-.173-.241-.147l-.91.22c-.107.026-.174.134-.147.241.023.091.104.153.194.153zm-.174-.72c.016 0 .031-.002.047-.006l.91-.22c.107-.026.174-.134.147-.241-.025-.107-.135-.174-.241-.147l-.91.22c-.107.026-.174.134-.147.241.022.092.103.153.194.153zm-.174-.72c.016 0 .031-.002.047-.006l.91-.22c.107-.026.174-.134.147-.241s-.134-.174-.241-.147l-.91.22c-.107.026-.174.134-.147.241.022.092.103.153.194.153z"/><path fill="#DD2E44" d="M21.133 30.401c.18.923.402 1.394.688 2.302.21.667.139 1.573-.425 1.722-.447.118-.953-.12-1.294-1.047-.183-.496-.214-.875-.291-1.441-.044-.326-.1-.78-.207-1.188-.117-.445-.029-1.025.545-1.176.425-.113.864.213.984.828z"/><path fill="#A0041E" d="M20.862 30.571c-.024-.017-.24-.136-.551-.043-.311.094-.42.275-.434.302-.013.027.304.77.351.978.049.222.221.845.229.871.014.054.071.084.126.07l.594-.156c.056-.015.089-.07.075-.124l-.221-.841c-.062-.233-.144-1.041-.169-1.057z"/><path fill="#CCD6DD" d="M20.342 32.637c.017 0 .034-.002.051-.007l.905-.239c.107-.028.171-.137.143-.244-.027-.106-.137-.172-.244-.142l-.905.239c-.107.028-.171.137-.143.244.024.089.105.149.193.149zm-.188-.716c.017 0 .034-.002.051-.007l.905-.239c.107-.028.171-.137.143-.244-.027-.106-.138-.172-.244-.142l-.905.239c-.107.028-.171.137-.143.244.023.089.104.149.193.149zm-.189-.716c.017 0 .034-.002.051-.007l.905-.239c.107-.028.171-.137.143-.244-.028-.106-.139-.173-.244-.142l-.905.239c-.107.028-.171.137-.143.244.024.089.105.149.193.149z"/><g fill="#F3D2A2"><path d="M19.958 24.146l2.5-1.438 1.281 2.614c.24.185.28.276 1.615 1.052 1.203.699 3.46 3.091 4.21 4.025.213.198.259.341.393.701l-1.023.266s-.182-.34-.476-.533c-1.438-.821-6.309-3.495-6.309-3.495-.394-.283-.64-.478-.78-.72 0 0-1.192-1.979-1.411-2.472zm-6.037-2.159l2.501 1.313c-.171.271-.513.854-.797 1.59-.083.213-.191.618.163.874.2.146.59.466.889.704.204.163.438.349.714.563.997.778 3.032 2.787 3.198 2.951.166.164.283.377.344.662-.087.019-.965.233-.965.233s-.123-.307-.421-.487c-.929-.561-6.214-3.599-6.214-3.599-.69-.495-1.067-.722-1.005-1.432.107-1.24 1.263-2.915 1.593-3.372zm8.503-12.665c.268-.28.705-.422 1.299-.422 1.689 0 3.358.215 3.783.3.118.023.173.024.301-.052.318-.188.435-.697.583-1.341.049-.217.102-.445.165-.672.279-1.001.588-2.46.55-2.736-.053-.384.312-3.219.356-3.262.071-.07.274.067.413.075.111.007.19.098.308.176.682.447.78 1.376.849 2 .042.386-.62 1.095-.684 1.502-.021.133-.048.804-.09 1.888-.044 1.135-.099 2.549-.141 2.788-.101.572-.208 1.186-1.01 1.382-.604.147-2.378.241-3.673.309-.65.035-1.213.064-1.512.093-.647.062-1.198-.058-1.515-.331-.192-.167-.296-.389-.309-.66-.016-.443.092-.793.327-1.037zM2.393 12.423c.285-.016.335-.059.612-.053.406.009.393.056.577.053.399-.006.967-.034 1.387-.084.31-.037 1.968-.116 2.419-.198.614-.113 1.384-.261 2.798-.152.794-.409 1.869-.87 2.823-1.279.699-.3 1.359-.583 1.802-.8.223-.109.442-.165.652-.165.156 0 .308.031.449.092.325.141.568.43.686.813.043.142.162.638-.108 1.073-.216.347-.624.573-1.214.671-.618.102-1.367.333-2.234.6-.857.265-1.82.561-2.804.772 0 0-1.555-.164-2.367-.213-1.124-.068-2.682-.362-3.092-.238-.518.157-1.068.303-1.715-.03-1.106-.569-2.212-.236-2.095-.707.027-.109.881-.125 1.424-.155zm15.779-7.43c.062-.564.59-1 1.148-.934.564.062.977.558.914 1.122l-.411 3.61.355.047s.363 1.057-1.449 1.057-1.621-.825-1.621-.825l.595-.113.469-3.964z"/><ellipse cx="18.833" cy="4.917" rx="2.625" ry="3"/></g><path fill="#FFE51E" d="M17.166 1.104c.699-.487 2.461-.66 3.656-.029.615.325 1.011.778 1.248 1.298.181-.193.487-.359 1.016-.403 1.196-.099 1.513 1.208 2.378 1.675.653.352 1.4.364 1.921.013 0 0-.716.867-1.52 1.198-1.045.43-2.333.154-2.947-.175-.258-.138-.452-.314-.604-.498-.01.089-.015.177-.03.266-.207 1.24-1.349 2.324-1.349 2.324s-.414-1.064-.227-1.085c.347-.039.555-1.105.264-1.389-.306-.299-.6 0-.675.3S20.02 5.75 20.02 5.75s.052-1.076-.248-1.414c-.3-.337-1.724-.262-2.324-1.724 0 0-.47.179-.845.742-.309.464-.396 1.562-.396 1.562s-.283-.678-.479-1.333c-.224-.749.543-1.855 1.438-2.479z"/><g fill="#A0041E"><path d="M20.896 18.375c.318 1.396 2.009 4.729 2.009 4.729s-1.639 1.477-2.987 1.437L17.963 21.7l-1.735 2.446s-1.713-1.274-2.931-1.485c0 0 1.666-3.182 2.023-3.856.357-.674 1.057-1.547 1.057-1.547s4.271.028 4.519 1.117z"/><path d="M19.815 24.612l-1.853-2.693-1.632 2.3c-.02.027-.049.046-.082.051-.032.004-.066-.003-.094-.022-.018-.013-1.703-1.259-2.879-1.463-.039-.007-.073-.032-.091-.067-.018-.036-.017-.078.002-.113 0 0 1.666-3.183 2.022-3.857.358-.676 1.042-1.53 1.07-1.566.023-.03.06-.047.098-.047h.001c.447.003 4.377.062 4.64 1.214.31 1.365 1.981 4.667 1.998 4.7.026.051.014.111-.028.149-.067.061-1.646 1.471-3.016 1.471-.058-.001-.123-.008-.156-.057zm.959-6.209c-.163-.714-2.72-1.001-4.336-1.019-.149.19-.707.912-1.008 1.479-.311.587-1.613 3.076-1.945 3.709 1.05.248 2.342 1.132 2.715 1.398l1.662-2.343c.023-.033.062-.053.102-.053h.001c.041 0 .079.021.102.054l1.918 2.788c1.115-.008 2.444-1.073 2.765-1.345-.275-.545-1.684-3.383-1.976-4.668z"/></g><path fill="#DD2E44" d="M22.043 8.722c-.549-.02-1.321.078-1.865.117 0 0-.078.855-1.399.894-1.321.039-1.671-.661-1.671-.661s-1.01.078-1.749.544c-.738.466-1.865.884-1.865.884s1.049 1.197.661 2.169l1.049-.315s-.352.593-.235 1.021c.117.427.538.88.581 1.269.12 1.082-.227 3.672-.383 4.021 0 0 1.225-.346 3.191-.13 1.202.133 3.042.965 3.042.965-.022-.842-.413-2.902-.559-4.01-.142-1.079.814-3.793 1.474-3.948.661-.155 1.166-.194 1.166-.194s-.155-.994 0-1.538.233-.933.233-.933-1.121-.135-1.671-.155z"/><circle fill="#269" cx="28.5" cy="2.917" r="2.055"/><path fill="#F3D2A2" d="M29.282 1.82l.079-.014c-.134.021-.261-.069-.284-.203-.023-.135.068-.265.204-.289l.513-.092.825.901.25.922-.817.15c-.135.023-.265-.068-.288-.204-.022-.129.064-.248.189-.279l-.22.038c-.135.023-.265-.068-.288-.204-.023-.131.065-.253.194-.282l-.271.046c-.135.023-.265-.068-.288-.204s.066-.263.202-.286z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f93e-1f3fc-200d-2642-fe0f.svg b/public/emoji/1f93e-1f3fc-200d-2642-fe0f.svg
index f0d16c6cdf292ec59f6543da83e0d4e2618c586f..ac5a4bb890381d1c013123a2c64048cef9bcf4e5 100644
--- a/public/emoji/1f93e-1f3fc-200d-2642-fe0f.svg
+++ b/public/emoji/1f93e-1f3fc-200d-2642-fe0f.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#F3D2A2" d="M21.25 5c0-1.657-1.175-3-2.625-3C17.176 2 16 3.343 16 5s.984 3 2.719 3c.661 0 1.736-.132 2.198-.594.55-.55.333-1.505.333-2.406z"/><path fill="#4289C1" d="M17.967 33.355c-.552 0-1-.447-1-1v-3c0-.553.448-1 1-1s1 .447 1 1v3c0 .553-.448 1-1 1zm-9.431 1.076c-.199.094-.43.123-.661.067-.537-.13-.866-.671-.736-1.208l.669-2.76c.13-.535.669-.866 1.207-.736.537.13.866.671.736 1.208l-.669 2.76c-.074.306-.281.544-.546.669z"/><path fill="#F3D2A2" d="M19.73 9.107l-.457-3.933c-.061-.549-.574-.973-1.117-.908-.549.061-.951.543-.889 1.092l.4 3.642h-4.584L7.228 6.106c-.55-.091-1.06.278-1.151.822-.091.545.277 1.06.822 1.151l5.389 2.787c.054.01.657.134.712.134h2.749c.009.262.086.588.251 1 1 2.5 3 8 3 8 2.209 0 2.625-4.723 2.625-7.208 0-.604.299-.753.197-1.101 1.171-.152 1.334.359 1.874.487 0 0-1.799-3.26-3.966-3.071z"/><path fill="#F3D2A2" d="M14.177 26.122c-.456-.402-.56-1.088-.216-1.612l4.817-7.347c.376-.574 1.147-.735 1.72-.359.571.382.734 1.147.358 1.72l-4.817 7.347c-.376.574-1.147.735-1.72.359-.052-.032-.098-.069-.142-.108z"/><path fill="#F3D2A2" d="M8.628 31.08c-.308-.458-.268-1.066.116-1.42l5.382-4.971c.42-.389 1.094-.325 1.505.142.407.471.403 1.161-.018 1.549l-5.382 4.971c-.42.388-1.095.325-1.505-.142-.036-.042-.068-.085-.098-.129zm8.861-1.75c-.184-.479-.029-1.019.384-1.257l5.786-3.347c.452-.262 1.041-.062 1.315.447.271.511.131 1.133-.322 1.394l-5.786 3.347c-.452.261-1.041.061-1.315-.447-.024-.045-.044-.09-.062-.137z"/><path fill="#F3D2A2" d="M24.304 26.637c-.533.185-1.136-.044-1.403-.561l-3.745-7.25c-.293-.566-.071-1.263.495-1.555.569-.288 1.263-.071 1.555.496l3.745 7.25c.293.566.071 1.263-.495 1.555-.05.026-.1.047-.152.065zm0-13.611l-3.85-2.008c-.457-.238-.636-.807-.398-1.264.238-.457.807-.636 1.264-.397l3.85 2.008c.457.238.636.807.398 1.264-.238.457-.807.636-1.264.397z"/><path fill="#F3D2A2" d="M30.07 13.88l-5.302-.783c-.51-.075-.865-.554-.79-1.064.075-.51.554-.865 1.064-.79l5.302.783c.51.075.865.554.79 1.064-.075.51-.554.865-1.064.79z"/><path fill="#2A6797" d="M16.5 17.957s-.803 2.028-1.071 2.869c-.268.842-.825 1.799-.825 1.799s1.694 1.477 2.995 1.438l1.885-2.74 1.674 2.359s1.708-1.229 2.884-1.433c0 0-1.497-3.069-1.841-3.719-.344-.65-1.186-1.492-1.186-1.492l-4.515.919z"/><path fill="#4289C1" d="M15.549 8.805s1.274.075 1.799.112c0 0 .075.825 1.349.862 1.274.037 1.612-.637 1.612-.637s.975.075 1.687.525c.712.45 1.799.975 1.799.975s-1.012.862-.637 1.799l-1.012-.483s.135.417.198 1.198c.094 1.174-.202 4.902-.052 5.24 0 0-1.292-.333-3.188-.125-1.16.128-3.323.958-3.323.958.302-1.26.483-3.152.531-4.229.094-2.115-.389-3.609-1.026-3.759-.637-.15-1.125-.187-1.125-.187s.15-.675 0-1.199c-.15-.525-.225-.9-.225-.9s1.163-.075 1.613-.15z"/><circle fill="#269" cx="5" cy="8" r="2"/><path fill="#FFE51E" d="M20.292 1.188c-.699-.487-2.461-.66-3.656-.029-1.349.713-1.687 2.024-1.462 3.373.207 1.24.803 1.754.803 1.754.229.247.837-.402.488-.95-.409-.643-.294-1.401.169-1.448.327-.034.678.158.584.451-.113.353.032.498.032.498s.269.192.54-.627c.142-.429 1.157-.362 2.648-1.038.176-.08.625.422.752 1.539.027.241.477-.502.54-1.044.103-.899-.543-1.855-1.438-2.479z"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#1C6399" d="M28.648 31.324c.294.944.323 1.49.512 2.473.139.722.656 1.525 1.252 1.381.472-.114.821-.587.675-1.614-.078-.55-.238-.916-.45-1.477-.122-.324-.297-.771-.401-1.202-.114-.47-.484-.963-1.091-.816-.45.107-.693.627-.497 1.255z"/><path fill="#3B94D9" d="M29.952 31.074c-.026-.017-.255-.137-.58-.031-.325.106-.434.3-.448.328-.013.028.339.801.394 1.019.057.232.254.882.263.909.016.056.076.087.134.07l.62-.179c.059-.017.092-.076.076-.132l-.254-.878c-.071-.243-.178-1.089-.205-1.106z"/><path fill="#CCD6DD" d="M29.463 33.264c.019 0 .037-.002.057-.008l.944-.277c.105-.031.166-.142.136-.248-.031-.106-.137-.167-.249-.136l-.944.277c-.105.031-.166.142-.136.248.026.087.105.144.192.144zm-.22-.747c.019 0 .037-.002.057-.008l.944-.277c.105-.031.166-.142.136-.248-.031-.106-.137-.167-.249-.136l-.944.277c-.105.031-.166.142-.136.248.026.088.105.144.192.144zm-.218-.747c.019 0 .037-.002.057-.008l.944-.277c.105-.031.166-.142.136-.248-.031-.106-.137-.167-.249-.136l-.944.277c-.105.031-.166.142-.136.248.026.088.105.144.192.144z"/><path fill="#1C6399" d="M21.01 30.366c.189.97.423 1.465.723 2.419.22.701.146 1.653-.446 1.809-.469.124-1.001-.127-1.36-1.101-.192-.521-.225-.919-.306-1.514-.046-.343-.105-.819-.218-1.249-.123-.468-.031-1.077.573-1.236.447-.116.908.226 1.034.872z"/><path fill="#3B94D9" d="M20.725 30.544c-.026-.018-.252-.143-.579-.045-.327.098-.441.289-.456.317-.014.028.319.809.369 1.028.051.233.233.888.241.915.015.056.074.089.132.073l.624-.164c.059-.016.094-.074.079-.13l-.233-.883c-.064-.245-.15-1.093-.177-1.111z"/><path fill="#CCD6DD" d="M20.18 32.705c.017 0 .034-.002.051-.007l.951-.25c.107-.028.171-.137.143-.244-.027-.106-.138-.172-.244-.142l-.951.25c-.107.028-.171.137-.143.244.023.09.104.149.193.149zm-.198-.752c.017 0 .034-.002.051-.007l.951-.251c.107-.028.171-.137.143-.244-.028-.106-.138-.172-.244-.142l-.951.251c-.107.028-.171.137-.143.244.023.09.104.149.193.149zm-.199-.753c.017 0 .034-.002.051-.007l.951-.251c.107-.028.171-.137.143-.244-.028-.106-.138-.172-.244-.142l-.951.251c-.107.028-.171.137-.143.244.023.09.105.149.193.149z"/><g fill="#F3D2A2"><path d="M20.093 24.067l2.664-1.668 1.149 2.757c.24.185.28.276 1.615 1.052 1.203.699 3.041 2.897 3.791 3.832.213.198.504.544.646 1.061-.566.137-1.023.266-1.023.266s-.171-.202-.466-.396c-1.438-.821-6.319-3.633-6.319-3.633-.394-.283-.64-.478-.78-.72l-.01.006c-.954-1.365-1.048-2.063-1.267-2.557zm-6.532-2.196l2.815 1.487c-.171.271-.513.854-.797 1.59-.083.213-.132.49.223.746.2.146.433.331.731.568.204.163.438.349.714.563.997.778 2.582 2.469 2.694 2.575.059.056.145.12.239.202.08.07.165.163.248.278.002.004.005.005.007.008l.002.005c.12.17.231.388.292.673-.087.019-.965.233-.965.233s-.164-.223-.464-.399c-.907-.513-5.677-3.215-6.356-3.703l-.062-.044c-.69-.495-.977-.699-.915-1.409.108-1.241 1.264-2.916 1.594-3.373zm8.389-11.505c-.03-.672.209-1.616 1.772-1.616 1.699 0 3.246.172 3.686.298.651.186.707-.9 1.002-1.952.295-1.056.577-2.448.546-2.676-.053-.384.461-3.239.505-3.282.072-.07.275.067.413.075.111.007.19.098.308.176.682.447.906 1.376.974 2 .042.386-.597 1.118-.661 1.525-.047.301-.154 4.237-.231 4.678-.095.539-.207 1.278-1.122 1.502-.916.223-4.298.317-5.205.406-1.039.102-1.947-.243-1.987-1.134zM2.177 12.341c.285-.018.335-.066.612-.059.406.01.393.062.577.059.399-.007.967-.038 1.387-.094.31-.041 1.968-.32 2.419-.413.614-.126 1.372-.353 2.786-.23v-.001c1.217-.728 3.875-1.827 4.754-2.147 1.009-.367 2.187 2.707.602 2.97-1.277.211-3.237 1.018-5.292 1.425l-.001-.032c-.023.016-.037.039-.062.052 0 0-1.491-.204-2.303-.259-1.124-.076-2.682-.406-3.092-.267-.518.176-1.068.34-1.715-.034-1.106-.639-2.212-.265-2.095-.794.026-.124.88-.142 1.423-.176zm15.996-7.515c.062-.564.59-1 1.148-.934.564.062.977.558.914 1.122l-.411 3.61.328.048s.391 1.056-1.422 1.056-1.621-.825-1.621-.825l.595-.113.469-3.964z"/><path d="M16.142 4.648c0-1.702 1.208-3.083 2.697-3.083s2.697 1.38 2.697 3.083-1.011 3.082-2.794 3.082c-.68 0-1.784-.136-2.258-.61-.565-.565-.342-1.547-.342-2.472z"/></g><path fill="#FFE51E" d="M17.126.73c.718-.5 2.529-.678 3.757-.029 1.386.732 1.733 2.08 1.502 3.466-.212 1.274-.825 1.802-.825 1.802-.235.254-.86-.413-.502-.977.42-.66.302-1.439-.174-1.488-.336-.034-.697.162-.6.464.116.363-.033.512-.033.512s-.277.197-.555-.644c-.146-.441-1.189-.372-2.721-1.066-.181-.082-.642.433-.772 1.581-.028.248-.491-.516-.555-1.073-.105-.923.558-1.906 1.478-2.548z"/><g fill="#1C6399"><path d="M21.211 17.894s.826 2.083 1.101 2.948c.275.865.848 1.848.848 1.848s-1.729 1.586-3.066 1.546l-1.843-3.299-2.021 2.896s-1.959-1.333-3.167-1.542c0 0 1.709-3.03 2.062-3.698.354-.668.75-1.094.75-1.094l5.336.395z"/><path d="M20.089 24.411c-.062-.002-.118-.036-.148-.09l-1.707-3.055-1.86 2.667c-.055.077-.163.097-.242.044-.019-.013-1.941-1.313-3.099-1.513-.056-.01-.104-.047-.128-.098-.024-.052-.022-.111.006-.161.017-.03 1.712-3.036 2.061-3.694.359-.681.76-1.113.776-1.131.036-.038.085-.06.141-.055l5.335.394c.067.005.125.047.15.11.034.085.831 2.099 1.105 2.96.266.836.827 1.804.833 1.813.042.071.027.161-.033.217-.072.066-1.754 1.593-3.136 1.593l-.054-.001zm2.055-3.516c-.235-.74-.887-2.406-1.056-2.834l-5.139-.379c-.118.138-.407.499-.67.995-.296.561-1.557 2.802-1.948 3.496 1.036.27 2.407 1.13 2.853 1.421l1.923-2.756c.034-.049.092-.072.152-.074.06.003.115.037.144.09l1.793 3.209c1.054-.035 2.366-1.089 2.741-1.409-.164-.298-.57-1.059-.793-1.759z"/></g><path fill="#4289C1" d="M22.141 8.562c-.812 0-1.45.072-1.99.111 0 0-.077.847-1.387.886-1.309.039-1.656-.655-1.656-.655s-1.411-.055-2.143.407l-1.606.685s.915 1.338.821 2.719l.74-.212s-.032.025-.068.525c-.088 1.207.208 5.343.054 5.69 0 0 1.521.536 3.469.75 1.192.131 3.703.106 3.703.106-.31-1.295-.529-3.545-.578-4.652-.096-2.173.497-3.318.708-3.298.896.083 1.729-.125 1.729-.125s-.375-.688-.292-1.458c.083-.771.312-1.292.312-1.292s-1.004-.187-1.816-.187z"/><circle fill="#269" cx="28.5" cy="2.917" r="2.055"/><path fill="#F3D2A2" d="M29.282 1.82l.079-.014c-.134.021-.261-.069-.284-.203-.023-.135.068-.265.204-.289l.513-.092.825.901.25.922-.817.15c-.135.023-.265-.068-.288-.204-.022-.129.064-.248.189-.279l-.22.038c-.135.023-.265-.068-.288-.204-.023-.131.065-.253.194-.282l-.271.046c-.135.023-.265-.068-.288-.204s.067-.263.202-.286z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f93e-1f3fc.svg b/public/emoji/1f93e-1f3fc.svg
index c20722f95e3197c235e075878820d3d878cea8fb..2a6191fd9cb1dee6f56a83f8bb7977ad5c402fad 100644
--- a/public/emoji/1f93e-1f3fc.svg
+++ b/public/emoji/1f93e-1f3fc.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><ellipse fill="#F3D2A2" cx="18.625" cy="5" rx="2.625" ry="3"/><path fill="#FFE51E" d="M15.63 3.212s.193-1.038-1.258-1.158c-1.196-.099-1.513 1.208-2.378 1.675-.653.352-1.4.364-1.921.013 0 0 .716.867 1.52 1.198 1.045.43 2.333.154 2.947-.175.96-.515 1.09-1.553 1.09-1.553z"/><path fill="#DD2E44" d="M17.967 33.355c-.552 0-1-.447-1-1v-3c0-.553.448-1 1-1s1 .447 1 1v3c0 .553-.448 1-1 1zm-9.431 1.076c-.199.094-.43.123-.661.067-.537-.13-.866-.671-.736-1.208l.669-2.76c.13-.535.669-.866 1.207-.736.537.13.866.671.736 1.208l-.669 2.76c-.074.306-.281.544-.546.669z"/><path fill="#F3D2A2" d="M19.73 9.107l-.457-3.933c-.061-.549-.574-.973-1.117-.908-.549.061-.951.543-.889 1.092l.4 3.642h-4.584L7.228 6.106c-.55-.091-1.06.278-1.151.822-.091.545.277 1.06.822 1.151l5.389 2.787c.054.01.657.134.712.134h2.749c.009.262.086.588.251 1 1 2.5 3 8 3 8 2.209 0 2.625-4.723 2.625-7.208 0-.604.299-.753.197-1.101 1.171-.152 1.334.359 1.874.487 0 0-1.799-3.26-3.966-3.071z"/><path fill="#F3D2A2" d="M14.177 26.122c-.456-.402-.56-1.088-.216-1.612l4.817-7.347c.376-.574 1.147-.735 1.72-.359.571.382.734 1.147.358 1.72l-4.817 7.347c-.376.574-1.147.735-1.72.359-.052-.032-.098-.069-.142-.108z"/><path fill="#F3D2A2" d="M8.628 31.08c-.308-.458-.268-1.066.116-1.42l5.382-4.971c.42-.389 1.094-.325 1.505.142.407.471.403 1.161-.018 1.549l-5.382 4.971c-.42.388-1.095.325-1.505-.142-.036-.042-.068-.085-.098-.129zm8.861-1.75c-.184-.479-.029-1.019.384-1.257l5.786-3.347c.452-.262 1.041-.062 1.315.447.271.511.131 1.133-.322 1.394l-5.786 3.347c-.452.261-1.041.061-1.315-.447-.024-.045-.044-.09-.062-.137z"/><path fill="#F3D2A2" d="M24.304 26.637c-.533.185-1.136-.044-1.403-.561l-3.745-7.25c-.293-.566-.071-1.263.495-1.555.569-.288 1.263-.071 1.555.496l3.745 7.25c.293.566.071 1.263-.495 1.555-.05.026-.1.047-.152.065zm0-13.611l-3.85-2.008c-.457-.238-.636-.807-.398-1.264.238-.457.807-.636 1.264-.397l3.85 2.008c.457.238.636.807.398 1.264-.238.457-.807.636-1.264.397z"/><path fill="#F3D2A2" d="M30.07 13.88l-5.302-.783c-.51-.075-.865-.554-.79-1.064.075-.51.554-.865 1.064-.79l5.302.783c.51.075.865.554.79 1.064-.075.51-.554.865-1.064.79z"/><path fill="#FFE51E" d="M21.25 5s.283-.678.479-1.333c.225-.75-.542-1.855-1.438-2.479-.699-.487-2.461-.66-3.656-.029-1.349.713-1.687 2.024-1.462 3.373.207 1.24 1.349 2.324 1.349 2.324s.414-1.064.227-1.085c-.347-.039-.555-1.105-.264-1.389.306-.299.6 0 .675.3.075.3.277 1.151.277 1.151s-.052-1.076.248-1.414c.3-.337 1.724-.262 2.324-1.724 0 0 .47.179.845.742.309.464.396 1.563.396 1.563z"/><path fill="#A0041E" d="M16.5 17.957s-.803 2.028-1.071 2.869c-.268.842-.825 1.799-.825 1.799s1.694 1.477 2.995 1.438l1.885-2.74 1.674 2.359s1.708-1.229 2.884-1.433c0 0-1.497-3.069-1.841-3.719-.344-.65-1.186-1.492-1.186-1.492l-4.515.919z"/><path fill="#DD2E44" d="M15.549 8.805s1.274.075 1.799.112c0 0 .075.825 1.349.862 1.274.037 1.612-.637 1.612-.637s.975.075 1.687.525c.712.45 1.799.975 1.799.975s-1.012.862-.637 1.799l-1.012-.483s.3.671.188 1.083c-.112.412-.479.75-.521 1.125-.116 1.044.329 3.892.479 4.229 0 0-1.292-.333-3.188-.125-1.16.128-3.125.958-3.125.958.021-.812.589-2.827.729-3.896.137-1.041-.785-3.942-1.422-4.092-.637-.15-1.125-.187-1.125-.187s.15-.675 0-1.199c-.15-.525-.225-.9-.225-.9s1.163-.074 1.613-.149z"/><circle fill="#269" cx="5" cy="8" r="2"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#DD2E44" d="M28.65 31.29c.257.905.272 1.425.428 2.365.115.69.588 1.466 1.158 1.343.452-.097.795-.538.68-1.52-.061-.525-.205-.877-.393-1.416-.108-.311-.264-.74-.353-1.153-.097-.45-.438-.928-1.018-.802-.43.091-.674.58-.502 1.183z"/><path fill="#A0041E" d="M29.941 31.084c-.024-.017-.237-.141-.55-.054s-.425.267-.44.293c-.014.027.289.776.332.985.044.223.205.849.212.876.013.054.069.086.125.072l.597-.144c.056-.014.09-.068.077-.122l-.205-.845c-.058-.235-.123-1.044-.148-1.061z"/><path fill="#CCD6DD" d="M29.384 33.14c.016 0 .031-.002.047-.006l.91-.22c.107-.026.174-.134.147-.241-.026-.107-.134-.173-.241-.147l-.91.22c-.107.026-.174.134-.147.241.023.091.104.153.194.153zm-.174-.72c.016 0 .031-.002.047-.006l.91-.22c.107-.026.174-.134.147-.241-.025-.107-.135-.174-.241-.147l-.91.22c-.107.026-.174.134-.147.241.022.092.103.153.194.153zm-.174-.72c.016 0 .031-.002.047-.006l.91-.22c.107-.026.174-.134.147-.241s-.134-.174-.241-.147l-.91.22c-.107.026-.174.134-.147.241.022.092.103.153.194.153z"/><path fill="#DD2E44" d="M21.133 30.401c.18.923.402 1.394.688 2.302.21.667.139 1.573-.425 1.722-.447.118-.953-.12-1.294-1.047-.183-.496-.214-.875-.291-1.441-.044-.326-.1-.78-.207-1.188-.117-.445-.029-1.025.545-1.176.425-.113.864.213.984.828z"/><path fill="#A0041E" d="M20.862 30.571c-.024-.017-.24-.136-.551-.043-.311.094-.42.275-.434.302-.013.027.304.77.351.978.049.222.221.845.229.871.014.054.071.084.126.07l.594-.156c.056-.015.089-.07.075-.124l-.221-.841c-.062-.233-.144-1.041-.169-1.057z"/><path fill="#CCD6DD" d="M20.342 32.637c.017 0 .034-.002.051-.007l.905-.239c.107-.028.171-.137.143-.244-.027-.106-.137-.172-.244-.142l-.905.239c-.107.028-.171.137-.143.244.024.089.105.149.193.149zm-.188-.716c.017 0 .034-.002.051-.007l.905-.239c.107-.028.171-.137.143-.244-.027-.106-.138-.172-.244-.142l-.905.239c-.107.028-.171.137-.143.244.023.089.104.149.193.149zm-.189-.716c.017 0 .034-.002.051-.007l.905-.239c.107-.028.171-.137.143-.244-.028-.106-.139-.173-.244-.142l-.905.239c-.107.028-.171.137-.143.244.024.089.105.149.193.149z"/><g fill="#F3D2A2"><path d="M19.958 24.146l2.5-1.438 1.281 2.614c.24.185.28.276 1.615 1.052 1.203.699 3.46 3.091 4.21 4.025.213.198.259.341.393.701l-1.023.266s-.182-.34-.476-.533c-1.438-.821-6.309-3.495-6.309-3.495-.394-.283-.64-.478-.78-.72 0 0-1.192-1.979-1.411-2.472zm-6.037-2.159l2.501 1.313c-.171.271-.513.854-.797 1.59-.083.213-.191.618.163.874.2.146.59.466.889.704.204.163.438.349.714.563.997.778 3.032 2.787 3.198 2.951.166.164.283.377.344.662-.087.019-.965.233-.965.233s-.123-.307-.421-.487c-.929-.561-6.214-3.599-6.214-3.599-.69-.495-1.067-.722-1.005-1.432.107-1.24 1.263-2.915 1.593-3.372zm8.503-12.665c.268-.28.705-.422 1.299-.422 1.689 0 3.358.215 3.783.3.118.023.173.024.301-.052.318-.188.435-.697.583-1.341.049-.217.102-.445.165-.672.279-1.001.588-2.46.55-2.736-.053-.384.312-3.219.356-3.262.071-.07.274.067.413.075.111.007.19.098.308.176.682.447.78 1.376.849 2 .042.386-.62 1.095-.684 1.502-.021.133-.048.804-.09 1.888-.044 1.135-.099 2.549-.141 2.788-.101.572-.208 1.186-1.01 1.382-.604.147-2.378.241-3.673.309-.65.035-1.213.064-1.512.093-.647.062-1.198-.058-1.515-.331-.192-.167-.296-.389-.309-.66-.016-.443.092-.793.327-1.037zM2.393 12.423c.285-.016.335-.059.612-.053.406.009.393.056.577.053.399-.006.967-.034 1.387-.084.31-.037 1.968-.116 2.419-.198.614-.113 1.384-.261 2.798-.152.794-.409 1.869-.87 2.823-1.279.699-.3 1.359-.583 1.802-.8.223-.109.442-.165.652-.165.156 0 .308.031.449.092.325.141.568.43.686.813.043.142.162.638-.108 1.073-.216.347-.624.573-1.214.671-.618.102-1.367.333-2.234.6-.857.265-1.82.561-2.804.772 0 0-1.555-.164-2.367-.213-1.124-.068-2.682-.362-3.092-.238-.518.157-1.068.303-1.715-.03-1.106-.569-2.212-.236-2.095-.707.027-.109.881-.125 1.424-.155zm15.779-7.43c.062-.564.59-1 1.148-.934.564.062.977.558.914 1.122l-.411 3.61.355.047s.363 1.057-1.449 1.057-1.621-.825-1.621-.825l.595-.113.469-3.964z"/><ellipse cx="18.833" cy="4.917" rx="2.625" ry="3"/></g><path fill="#FFE51E" d="M17.166 1.104c.699-.487 2.461-.66 3.656-.029.615.325 1.011.778 1.248 1.298.181-.193.487-.359 1.016-.403 1.196-.099 1.513 1.208 2.378 1.675.653.352 1.4.364 1.921.013 0 0-.716.867-1.52 1.198-1.045.43-2.333.154-2.947-.175-.258-.138-.452-.314-.604-.498-.01.089-.015.177-.03.266-.207 1.24-1.349 2.324-1.349 2.324s-.414-1.064-.227-1.085c.347-.039.555-1.105.264-1.389-.306-.299-.6 0-.675.3S20.02 5.75 20.02 5.75s.052-1.076-.248-1.414c-.3-.337-1.724-.262-2.324-1.724 0 0-.47.179-.845.742-.309.464-.396 1.562-.396 1.562s-.283-.678-.479-1.333c-.224-.749.543-1.855 1.438-2.479z"/><g fill="#A0041E"><path d="M20.896 18.375c.318 1.396 2.009 4.729 2.009 4.729s-1.639 1.477-2.987 1.437L17.963 21.7l-1.735 2.446s-1.713-1.274-2.931-1.485c0 0 1.666-3.182 2.023-3.856.357-.674 1.057-1.547 1.057-1.547s4.271.028 4.519 1.117z"/><path d="M19.815 24.612l-1.853-2.693-1.632 2.3c-.02.027-.049.046-.082.051-.032.004-.066-.003-.094-.022-.018-.013-1.703-1.259-2.879-1.463-.039-.007-.073-.032-.091-.067-.018-.036-.017-.078.002-.113 0 0 1.666-3.183 2.022-3.857.358-.676 1.042-1.53 1.07-1.566.023-.03.06-.047.098-.047h.001c.447.003 4.377.062 4.64 1.214.31 1.365 1.981 4.667 1.998 4.7.026.051.014.111-.028.149-.067.061-1.646 1.471-3.016 1.471-.058-.001-.123-.008-.156-.057zm.959-6.209c-.163-.714-2.72-1.001-4.336-1.019-.149.19-.707.912-1.008 1.479-.311.587-1.613 3.076-1.945 3.709 1.05.248 2.342 1.132 2.715 1.398l1.662-2.343c.023-.033.062-.053.102-.053h.001c.041 0 .079.021.102.054l1.918 2.788c1.115-.008 2.444-1.073 2.765-1.345-.275-.545-1.684-3.383-1.976-4.668z"/></g><path fill="#DD2E44" d="M22.043 8.722c-.549-.02-1.321.078-1.865.117 0 0-.078.855-1.399.894-1.321.039-1.671-.661-1.671-.661s-1.01.078-1.749.544c-.738.466-1.865.884-1.865.884s1.049 1.197.661 2.169l1.049-.315s-.352.593-.235 1.021c.117.427.538.88.581 1.269.12 1.082-.227 3.672-.383 4.021 0 0 1.225-.346 3.191-.13 1.202.133 3.042.965 3.042.965-.022-.842-.413-2.902-.559-4.01-.142-1.079.814-3.793 1.474-3.948.661-.155 1.166-.194 1.166-.194s-.155-.994 0-1.538.233-.933.233-.933-1.121-.135-1.671-.155z"/><circle fill="#269" cx="28.5" cy="2.917" r="2.055"/><path fill="#F3D2A2" d="M29.282 1.82l.079-.014c-.134.021-.261-.069-.284-.203-.023-.135.068-.265.204-.289l.513-.092.825.901.25.922-.817.15c-.135.023-.265-.068-.288-.204-.022-.129.064-.248.189-.279l-.22.038c-.135.023-.265-.068-.288-.204-.023-.131.065-.253.194-.282l-.271.046c-.135.023-.265-.068-.288-.204s.066-.263.202-.286z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f93e-1f3fd-200d-2640-fe0f.svg b/public/emoji/1f93e-1f3fd-200d-2640-fe0f.svg
index 41c4eae0f7878fd34815be2ad6098d70e04f1b47..ca6f6c27cb66b7f21e45c8d733c44a5874510c63 100644
--- a/public/emoji/1f93e-1f3fd-200d-2640-fe0f.svg
+++ b/public/emoji/1f93e-1f3fd-200d-2640-fe0f.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><ellipse fill="#D5AB88" cx="18.625" cy="5" rx="2.625" ry="3"/><path fill="#963B22" d="M15.63 3.212s.193-1.038-1.258-1.158c-1.196-.099-1.513 1.208-2.378 1.675-.653.352-1.4.364-1.921.013 0 0 .716.867 1.52 1.198 1.045.43 2.333.154 2.947-.175.96-.515 1.09-1.553 1.09-1.553z"/><path fill="#DD2E44" d="M17.967 33.355c-.552 0-1-.447-1-1v-3c0-.553.448-1 1-1s1 .447 1 1v3c0 .553-.448 1-1 1zm-9.431 1.076c-.199.094-.43.123-.661.067-.537-.13-.866-.671-.736-1.208l.669-2.76c.13-.535.669-.866 1.207-.736.537.13.866.671.736 1.208l-.669 2.76c-.074.306-.281.544-.546.669z"/><path fill="#D5AB88" d="M19.73 9.107l-.457-3.933c-.061-.549-.574-.973-1.117-.908-.549.061-.951.543-.889 1.092l.4 3.642h-4.584L7.228 6.106c-.55-.091-1.06.278-1.151.822-.091.545.277 1.06.822 1.151l5.389 2.787c.054.01.657.134.712.134h2.749c.009.262.086.588.251 1 1 2.5 3 8 3 8 2.209 0 2.625-4.723 2.625-7.208 0-.604.299-.753.197-1.101 1.171-.152 1.334.359 1.874.487 0 0-1.799-3.26-3.966-3.071z"/><path fill="#D5AB88" d="M14.177 26.122c-.456-.402-.56-1.088-.216-1.612l4.817-7.347c.376-.574 1.147-.735 1.72-.359.571.382.734 1.147.358 1.72l-4.817 7.347c-.376.574-1.147.735-1.72.359-.052-.032-.098-.069-.142-.108z"/><path fill="#D5AB88" d="M8.628 31.08c-.308-.458-.268-1.066.116-1.42l5.382-4.971c.42-.389 1.094-.325 1.505.142.407.471.403 1.161-.018 1.549l-5.382 4.971c-.42.388-1.095.325-1.505-.142-.036-.042-.068-.085-.098-.129zm8.861-1.75c-.184-.479-.029-1.019.384-1.257l5.786-3.347c.452-.262 1.041-.062 1.315.447.271.511.131 1.133-.322 1.394l-5.786 3.347c-.452.261-1.041.061-1.315-.447-.024-.045-.044-.09-.062-.137z"/><path fill="#D5AB88" d="M24.304 26.637c-.533.185-1.136-.044-1.403-.561l-3.745-7.25c-.293-.566-.071-1.263.495-1.555.569-.288 1.263-.071 1.555.496l3.745 7.25c.293.566.071 1.263-.495 1.555-.05.026-.1.047-.152.065zm0-13.611l-3.85-2.008c-.457-.238-.636-.807-.398-1.264.238-.457.807-.636 1.264-.397l3.85 2.008c.457.238.636.807.398 1.264-.238.457-.807.636-1.264.397z"/><path fill="#D5AB88" d="M30.07 13.88l-5.302-.783c-.51-.075-.865-.554-.79-1.064.075-.51.554-.865 1.064-.79l5.302.783c.51.075.865.554.79 1.064-.075.51-.554.865-1.064.79z"/><path fill="#963B22" d="M21.25 5s.283-.678.479-1.333c.225-.75-.542-1.855-1.438-2.479-.699-.487-2.461-.66-3.656-.029-1.349.713-1.687 2.024-1.462 3.373.207 1.24 1.349 2.324 1.349 2.324s.414-1.064.227-1.085c-.347-.039-.555-1.105-.264-1.389.306-.299.6 0 .675.3.075.3.277 1.151.277 1.151s-.052-1.076.248-1.414c.3-.337 1.724-.262 2.324-1.724 0 0 .47.179.845.742.309.464.396 1.563.396 1.563z"/><path fill="#A0041E" d="M16.5 17.957s-.803 2.028-1.071 2.869c-.268.842-.825 1.799-.825 1.799s1.694 1.477 2.995 1.438l1.885-2.74 1.674 2.359s1.708-1.229 2.884-1.433c0 0-1.497-3.069-1.841-3.719-.344-.65-1.186-1.492-1.186-1.492l-4.515.919z"/><path fill="#DD2E44" d="M15.549 8.805s1.274.075 1.799.112c0 0 .075.825 1.349.862 1.274.037 1.612-.637 1.612-.637s.975.075 1.687.525c.712.45 1.799.975 1.799.975s-1.012.862-.637 1.799l-1.012-.483s.3.671.188 1.083c-.112.412-.479.75-.521 1.125-.116 1.044.329 3.892.479 4.229 0 0-1.292-.333-3.188-.125-1.16.128-3.125.958-3.125.958.021-.812.589-2.827.729-3.896.137-1.041-.785-3.942-1.422-4.092-.637-.15-1.125-.187-1.125-.187s.15-.675 0-1.199c-.15-.525-.225-.9-.225-.9s1.163-.074 1.613-.149z"/><circle fill="#269" cx="5" cy="8" r="2"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#DD2E44" d="M28.65 31.29c.257.905.272 1.425.428 2.365.115.69.588 1.466 1.158 1.343.452-.097.795-.538.68-1.52-.061-.525-.205-.877-.393-1.416-.108-.311-.264-.74-.353-1.153-.097-.45-.438-.928-1.018-.802-.43.091-.674.58-.502 1.183z"/><path fill="#A0041E" d="M29.941 31.084c-.024-.017-.237-.141-.55-.054s-.425.267-.44.293c-.014.027.289.776.332.985.044.223.205.849.212.876.013.054.069.086.125.072l.597-.144c.056-.014.09-.068.077-.122l-.205-.845c-.058-.235-.123-1.044-.148-1.061z"/><path fill="#CCD6DD" d="M29.384 33.14c.016 0 .031-.002.047-.006l.91-.22c.107-.026.174-.134.147-.241-.026-.107-.134-.173-.241-.147l-.91.22c-.107.026-.174.134-.147.241.023.091.104.153.194.153zm-.174-.72c.016 0 .031-.002.047-.006l.91-.22c.107-.026.174-.134.147-.241-.025-.107-.135-.174-.241-.147l-.91.22c-.107.026-.174.134-.147.241.022.092.103.153.194.153zm-.174-.72c.016 0 .031-.002.047-.006l.91-.22c.107-.026.174-.134.147-.241s-.134-.174-.241-.147l-.91.22c-.107.026-.174.134-.147.241.022.092.103.153.194.153z"/><path fill="#DD2E44" d="M21.133 30.401c.18.923.402 1.394.688 2.302.21.667.139 1.573-.425 1.722-.447.118-.953-.12-1.294-1.047-.183-.496-.214-.875-.291-1.441-.044-.326-.1-.78-.207-1.188-.117-.445-.029-1.025.545-1.176.425-.113.864.213.984.828z"/><path fill="#A0041E" d="M20.862 30.571c-.024-.017-.24-.136-.551-.043-.311.094-.42.275-.434.302-.013.027.304.77.351.978.049.222.221.845.229.871.014.054.071.084.126.07l.594-.156c.056-.015.089-.07.075-.124l-.221-.841c-.062-.233-.144-1.041-.169-1.057z"/><path fill="#CCD6DD" d="M20.342 32.637c.017 0 .034-.002.051-.007l.905-.239c.107-.028.171-.137.143-.244-.027-.106-.137-.172-.244-.142l-.905.239c-.107.028-.171.137-.143.244.024.089.105.149.193.149zm-.188-.716c.017 0 .034-.002.051-.007l.905-.239c.107-.028.171-.137.143-.244-.027-.106-.138-.172-.244-.142l-.905.239c-.107.028-.171.137-.143.244.023.089.104.149.193.149zm-.189-.716c.017 0 .034-.002.051-.007l.905-.239c.107-.028.171-.137.143-.244-.028-.106-.139-.173-.244-.142l-.905.239c-.107.028-.171.137-.143.244.024.089.105.149.193.149z"/><g fill="#D4AB88"><path d="M19.958 24.146l2.5-1.438 1.281 2.614c.24.185.28.276 1.615 1.052 1.203.699 3.46 3.091 4.21 4.025.213.198.259.341.393.701l-1.023.266s-.182-.34-.476-.533c-1.438-.821-6.309-3.495-6.309-3.495-.394-.283-.64-.478-.78-.72 0 0-1.192-1.979-1.411-2.472zm-6.037-2.159l2.501 1.313c-.171.271-.513.854-.797 1.59-.083.213-.191.618.163.874.2.146.59.466.889.704.204.163.438.349.714.563.997.778 3.032 2.787 3.198 2.951.166.164.283.377.344.662-.087.019-.965.233-.965.233s-.123-.307-.421-.487c-.929-.561-6.214-3.599-6.214-3.599-.69-.495-1.067-.722-1.005-1.432.107-1.24 1.263-2.915 1.593-3.372zm8.503-12.665c.268-.28.705-.422 1.299-.422 1.689 0 3.358.215 3.783.3.118.023.173.024.301-.052.318-.188.435-.697.583-1.341.049-.217.102-.445.165-.672.279-1.001.588-2.46.55-2.736-.053-.384.312-3.219.356-3.262.071-.07.274.067.413.075.111.007.19.098.308.176.682.447.78 1.376.849 2 .042.386-.62 1.095-.684 1.502-.021.133-.048.804-.09 1.888-.044 1.135-.099 2.549-.141 2.788-.101.572-.208 1.186-1.01 1.382-.604.147-2.378.241-3.673.309-.65.035-1.213.064-1.512.093-.647.062-1.198-.058-1.515-.331-.192-.167-.296-.389-.309-.66-.016-.443.092-.793.327-1.037zM2.393 12.423c.285-.016.335-.059.612-.053.406.009.393.056.577.053.399-.006.967-.034 1.387-.084.31-.037 1.968-.116 2.419-.198.614-.113 1.384-.261 2.798-.152.794-.409 1.869-.87 2.823-1.279.699-.3 1.359-.583 1.802-.8.223-.109.442-.165.652-.165.156 0 .308.031.449.092.325.141.568.43.686.813.043.142.162.638-.108 1.073-.216.347-.624.573-1.214.671-.618.102-1.367.333-2.234.6-.857.265-1.82.561-2.804.772 0 0-1.555-.164-2.367-.213-1.124-.068-2.682-.362-3.092-.238-.518.157-1.068.303-1.715-.03-1.106-.569-2.212-.236-2.095-.707.027-.109.881-.125 1.424-.155zm15.779-7.43c.062-.564.59-1 1.148-.934.564.062.977.558.914 1.122l-.411 3.61.355.047s.363 1.057-1.449 1.057-1.621-.825-1.621-.825l.595-.113.469-3.964z"/><ellipse cx="18.833" cy="4.917" rx="2.625" ry="3"/></g><path fill="#963B22" d="M17.166 1.104c.699-.487 2.461-.66 3.656-.029.615.325 1.011.778 1.248 1.298.181-.193.487-.359 1.016-.403 1.196-.099 1.513 1.208 2.378 1.675.653.352 1.4.364 1.921.013 0 0-.716.867-1.52 1.198-1.045.43-2.333.154-2.947-.175-.258-.138-.452-.314-.604-.498-.01.089-.015.177-.03.266-.207 1.24-1.349 2.324-1.349 2.324s-.414-1.064-.227-1.085c.347-.039.555-1.105.264-1.389-.306-.299-.6 0-.675.3S20.02 5.75 20.02 5.75s.052-1.076-.248-1.414c-.3-.337-1.724-.262-2.324-1.724 0 0-.47.179-.845.742-.309.464-.396 1.562-.396 1.562s-.283-.678-.479-1.333c-.224-.749.543-1.855 1.438-2.479z"/><g fill="#A0041E"><path d="M20.896 18.375c.318 1.396 2.009 4.729 2.009 4.729s-1.639 1.477-2.987 1.437L17.963 21.7l-1.735 2.446s-1.713-1.274-2.931-1.485c0 0 1.666-3.182 2.023-3.856.357-.674 1.057-1.547 1.057-1.547s4.271.028 4.519 1.117z"/><path d="M19.815 24.612l-1.853-2.693-1.632 2.3c-.02.027-.049.046-.082.051-.032.004-.066-.003-.094-.022-.018-.013-1.703-1.259-2.879-1.463-.039-.007-.073-.032-.091-.067-.018-.036-.017-.078.002-.113 0 0 1.666-3.183 2.022-3.857.358-.676 1.042-1.53 1.07-1.566.023-.03.06-.047.098-.047h.001c.447.003 4.377.062 4.64 1.214.31 1.365 1.981 4.667 1.998 4.7.026.051.014.111-.028.149-.067.061-1.646 1.471-3.016 1.471-.058-.001-.123-.008-.156-.057zm.959-6.209c-.163-.714-2.72-1.001-4.336-1.019-.149.19-.707.912-1.008 1.479-.311.587-1.613 3.076-1.945 3.709 1.05.248 2.342 1.132 2.715 1.398l1.662-2.343c.023-.033.062-.053.102-.053h.001c.041 0 .079.021.102.054l1.918 2.788c1.115-.008 2.444-1.073 2.765-1.345-.275-.545-1.684-3.383-1.976-4.668z"/></g><path fill="#DD2E44" d="M22.043 8.722c-.549-.02-1.321.078-1.865.117 0 0-.078.855-1.399.894-1.321.039-1.671-.661-1.671-.661s-1.01.078-1.749.544c-.738.466-1.865.884-1.865.884s1.049 1.197.661 2.169l1.049-.315s-.352.593-.235 1.021c.117.427.538.88.581 1.269.12 1.082-.227 3.672-.383 4.021 0 0 1.225-.346 3.191-.13 1.202.133 3.042.965 3.042.965-.022-.842-.413-2.902-.559-4.01-.142-1.079.814-3.793 1.474-3.948.661-.155 1.166-.194 1.166-.194s-.155-.994 0-1.538.233-.933.233-.933-1.121-.135-1.671-.155z"/><circle fill="#269" cx="28.5" cy="2.917" r="2.055"/><path fill="#D4AB88" d="M29.282 1.82l.079-.014c-.134.021-.261-.069-.284-.203-.023-.135.068-.265.204-.289l.513-.092.825.901.25.922-.817.15c-.135.023-.265-.068-.288-.204-.022-.129.064-.248.189-.279l-.22.038c-.135.023-.265-.068-.288-.204-.023-.131.065-.253.194-.282l-.271.046c-.135.023-.265-.068-.288-.204s.066-.263.202-.286z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f93e-1f3fd-200d-2642-fe0f.svg b/public/emoji/1f93e-1f3fd-200d-2642-fe0f.svg
index 1c03769e9efa740c29cec338ac5291300e294ea2..63fe0d4c0514088629af4173f4526cadce872bd7 100644
--- a/public/emoji/1f93e-1f3fd-200d-2642-fe0f.svg
+++ b/public/emoji/1f93e-1f3fd-200d-2642-fe0f.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#D5AB88" d="M21.25 5c0-1.657-1.175-3-2.625-3C17.176 2 16 3.343 16 5s.984 3 2.719 3c.661 0 1.736-.132 2.198-.594.55-.55.333-1.505.333-2.406z"/><path fill="#4289C1" d="M17.967 33.355c-.552 0-1-.447-1-1v-3c0-.553.448-1 1-1s1 .447 1 1v3c0 .553-.448 1-1 1zm-9.431 1.076c-.199.094-.43.123-.661.067-.537-.13-.866-.671-.736-1.208l.669-2.76c.13-.535.669-.866 1.207-.736.537.13.866.671.736 1.208l-.669 2.76c-.074.306-.281.544-.546.669z"/><path fill="#D5AB88" d="M19.73 9.107l-.457-3.933c-.061-.549-.574-.973-1.117-.908-.549.061-.951.543-.889 1.092l.4 3.642h-4.584L7.228 6.106c-.55-.091-1.06.278-1.151.822-.091.545.277 1.06.822 1.151l5.389 2.787c.054.01.657.134.712.134h2.749c.009.262.086.588.251 1 1 2.5 3 8 3 8 2.209 0 2.625-4.723 2.625-7.208 0-.604.299-.753.197-1.101 1.171-.152 1.334.359 1.874.487 0 0-1.799-3.26-3.966-3.071z"/><path fill="#D5AB88" d="M14.177 26.122c-.456-.402-.56-1.088-.216-1.612l4.817-7.347c.376-.574 1.147-.735 1.72-.359.571.382.734 1.147.358 1.72l-4.817 7.347c-.376.574-1.147.735-1.72.359-.052-.032-.098-.069-.142-.108z"/><path fill="#D5AB88" d="M8.628 31.08c-.308-.458-.268-1.066.116-1.42l5.382-4.971c.42-.389 1.094-.325 1.505.142.407.471.403 1.161-.018 1.549l-5.382 4.971c-.42.388-1.095.325-1.505-.142-.036-.042-.068-.085-.098-.129zm8.861-1.75c-.184-.479-.029-1.019.384-1.257l5.786-3.347c.452-.262 1.041-.062 1.315.447.271.511.131 1.133-.322 1.394l-5.786 3.347c-.452.261-1.041.061-1.315-.447-.024-.045-.044-.09-.062-.137z"/><path fill="#D5AB88" d="M24.304 26.637c-.533.185-1.136-.044-1.403-.561l-3.745-7.25c-.293-.566-.071-1.263.495-1.555.569-.288 1.263-.071 1.555.496l3.745 7.25c.293.566.071 1.263-.495 1.555-.05.026-.1.047-.152.065zm0-13.611l-3.85-2.008c-.457-.238-.636-.807-.398-1.264.238-.457.807-.636 1.264-.397l3.85 2.008c.457.238.636.807.398 1.264-.238.457-.807.636-1.264.397z"/><path fill="#D5AB88" d="M30.07 13.88l-5.302-.783c-.51-.075-.865-.554-.79-1.064.075-.51.554-.865 1.064-.79l5.302.783c.51.075.865.554.79 1.064-.075.51-.554.865-1.064.79z"/><path fill="#2A6797" d="M16.5 17.957s-.803 2.028-1.071 2.869c-.268.842-.825 1.799-.825 1.799s1.694 1.477 2.995 1.438l1.885-2.74 1.674 2.359s1.708-1.229 2.884-1.433c0 0-1.497-3.069-1.841-3.719-.344-.65-1.186-1.492-1.186-1.492l-4.515.919z"/><path fill="#4289C1" d="M15.549 8.805s1.274.075 1.799.112c0 0 .075.825 1.349.862 1.274.037 1.612-.637 1.612-.637s.975.075 1.687.525c.712.45 1.799.975 1.799.975s-1.012.862-.637 1.799l-1.012-.483s.135.417.198 1.198c.094 1.174-.202 4.902-.052 5.24 0 0-1.292-.333-3.188-.125-1.16.128-3.323.958-3.323.958.302-1.26.483-3.152.531-4.229.094-2.115-.389-3.609-1.026-3.759-.637-.15-1.125-.187-1.125-.187s.15-.675 0-1.199c-.15-.525-.225-.9-.225-.9s1.163-.075 1.613-.15z"/><circle fill="#269" cx="5" cy="8" r="2"/><path fill="#963B22" d="M20.292 1.188c-.699-.487-2.461-.66-3.656-.029-1.349.713-1.687 2.024-1.462 3.373.207 1.24.803 1.754.803 1.754.229.247.837-.402.488-.95-.409-.643-.294-1.401.169-1.448.327-.034.678.158.584.451-.113.353.032.498.032.498s.269.192.54-.627c.142-.429 1.157-.362 2.648-1.038.176-.08.625.422.752 1.539.027.241.477-.502.54-1.044.103-.899-.543-1.855-1.438-2.479z"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#1C6399" d="M28.648 31.324c.294.944.323 1.49.512 2.473.139.722.656 1.525 1.252 1.381.472-.114.821-.587.675-1.614-.078-.55-.238-.916-.45-1.477-.122-.324-.297-.771-.401-1.202-.114-.47-.484-.963-1.091-.816-.45.107-.693.627-.497 1.255z"/><path fill="#3B94D9" d="M29.952 31.074c-.026-.017-.255-.137-.58-.031-.325.106-.434.3-.448.328-.013.028.339.801.394 1.019.057.232.254.882.263.909.016.056.076.087.134.07l.62-.179c.059-.017.092-.076.076-.132l-.254-.878c-.071-.243-.178-1.089-.205-1.106z"/><path fill="#CCD6DD" d="M29.463 33.264c.019 0 .037-.002.057-.008l.944-.277c.105-.031.166-.142.136-.248-.031-.106-.137-.167-.249-.136l-.944.277c-.105.031-.166.142-.136.248.026.087.105.144.192.144zm-.22-.747c.019 0 .037-.002.057-.008l.944-.277c.105-.031.166-.142.136-.248-.031-.106-.137-.167-.249-.136l-.944.277c-.105.031-.166.142-.136.248.026.088.105.144.192.144zm-.218-.747c.019 0 .037-.002.057-.008l.944-.277c.105-.031.166-.142.136-.248-.031-.106-.137-.167-.249-.136l-.944.277c-.105.031-.166.142-.136.248.026.088.105.144.192.144z"/><path fill="#1C6399" d="M21.01 30.366c.189.97.423 1.465.723 2.419.22.701.146 1.653-.446 1.809-.469.124-1.001-.127-1.36-1.101-.192-.521-.225-.919-.306-1.514-.046-.343-.105-.819-.218-1.249-.123-.468-.031-1.077.573-1.236.447-.116.908.226 1.034.872z"/><path fill="#3B94D9" d="M20.725 30.544c-.026-.018-.252-.143-.579-.045-.327.098-.441.289-.456.317-.014.028.319.809.369 1.028.051.233.233.888.241.915.015.056.074.089.132.073l.624-.164c.059-.016.094-.074.079-.13l-.233-.883c-.064-.245-.15-1.093-.177-1.111z"/><path fill="#CCD6DD" d="M20.18 32.705c.017 0 .034-.002.051-.007l.951-.25c.107-.028.171-.137.143-.244-.027-.106-.138-.172-.244-.142l-.951.25c-.107.028-.171.137-.143.244.023.09.104.149.193.149zm-.198-.752c.017 0 .034-.002.051-.007l.951-.251c.107-.028.171-.137.143-.244-.028-.106-.138-.172-.244-.142l-.951.251c-.107.028-.171.137-.143.244.023.09.104.149.193.149zm-.199-.753c.017 0 .034-.002.051-.007l.951-.251c.107-.028.171-.137.143-.244-.028-.106-.138-.172-.244-.142l-.951.251c-.107.028-.171.137-.143.244.023.09.105.149.193.149z"/><g fill="#D4AB88"><path d="M20.093 24.067l2.664-1.668 1.149 2.757c.24.185.28.276 1.615 1.052 1.203.699 3.041 2.897 3.791 3.832.213.198.504.544.646 1.061-.566.137-1.023.266-1.023.266s-.171-.202-.466-.396c-1.438-.821-6.319-3.633-6.319-3.633-.394-.283-.64-.478-.78-.72l-.01.006c-.954-1.365-1.048-2.063-1.267-2.557zm-6.532-2.196l2.815 1.487c-.171.271-.513.854-.797 1.59-.083.213-.132.49.223.746.2.146.433.331.731.568.204.163.438.349.714.563.997.778 2.582 2.469 2.694 2.575.059.056.145.12.239.202.08.07.165.163.248.278.002.004.005.005.007.008l.002.005c.12.17.231.388.292.673-.087.019-.965.233-.965.233s-.164-.223-.464-.399c-.907-.513-5.677-3.215-6.356-3.703l-.062-.044c-.69-.495-.977-.699-.915-1.409.108-1.241 1.264-2.916 1.594-3.373zm8.389-11.505c-.03-.672.209-1.616 1.772-1.616 1.699 0 3.246.172 3.686.298.651.186.707-.9 1.002-1.952.295-1.056.577-2.448.546-2.676-.053-.384.461-3.239.505-3.282.072-.07.275.067.413.075.111.007.19.098.308.176.682.447.906 1.376.974 2 .042.386-.597 1.118-.661 1.525-.047.301-.154 4.237-.231 4.678-.095.539-.207 1.278-1.122 1.502-.916.223-4.298.317-5.205.406-1.039.102-1.947-.243-1.987-1.134zM2.177 12.341c.285-.018.335-.066.612-.059.406.01.393.062.577.059.399-.007.967-.038 1.387-.094.31-.041 1.968-.32 2.419-.413.614-.126 1.372-.353 2.786-.23v-.001c1.217-.728 3.875-1.827 4.754-2.147 1.009-.367 2.187 2.707.602 2.97-1.277.211-3.237 1.018-5.292 1.425l-.001-.032c-.023.016-.037.039-.062.052 0 0-1.491-.204-2.303-.259-1.124-.076-2.682-.406-3.092-.267-.518.176-1.068.34-1.715-.034-1.106-.639-2.212-.265-2.095-.794.026-.124.88-.142 1.423-.176zm15.996-7.515c.062-.564.59-1 1.148-.934.564.062.977.558.914 1.122l-.411 3.61.328.048s.391 1.056-1.422 1.056-1.621-.825-1.621-.825l.595-.113.469-3.964z"/><path d="M16.142 4.648c0-1.702 1.208-3.083 2.697-3.083s2.697 1.38 2.697 3.083-1.011 3.082-2.794 3.082c-.68 0-1.784-.136-2.258-.61-.565-.565-.342-1.547-.342-2.472z"/></g><path fill="#963B22" d="M17.126.73c.718-.5 2.529-.678 3.757-.029 1.386.732 1.733 2.08 1.502 3.466-.212 1.274-.825 1.802-.825 1.802-.235.254-.86-.413-.502-.977.42-.66.302-1.439-.174-1.488-.336-.034-.697.162-.6.464.116.363-.033.512-.033.512s-.277.197-.555-.644c-.146-.441-1.189-.372-2.721-1.066-.181-.082-.642.433-.772 1.581-.028.248-.491-.516-.555-1.073-.105-.923.558-1.906 1.478-2.548z"/><g fill="#1C6399"><path d="M21.211 17.894s.826 2.083 1.101 2.948c.275.865.848 1.848.848 1.848s-1.729 1.586-3.066 1.546l-1.843-3.299-2.021 2.896s-1.959-1.333-3.167-1.542c0 0 1.709-3.03 2.062-3.698.354-.668.75-1.094.75-1.094l5.336.395z"/><path d="M20.089 24.411c-.062-.002-.118-.036-.148-.09l-1.707-3.055-1.86 2.667c-.055.077-.163.097-.242.044-.019-.013-1.941-1.313-3.099-1.513-.056-.01-.104-.047-.128-.098-.024-.052-.022-.111.006-.161.017-.03 1.712-3.036 2.061-3.694.359-.681.76-1.113.776-1.131.036-.038.085-.06.141-.055l5.335.394c.067.005.125.047.15.11.034.085.831 2.099 1.105 2.96.266.836.827 1.804.833 1.813.042.071.027.161-.033.217-.072.066-1.754 1.593-3.136 1.593l-.054-.001zm2.055-3.516c-.235-.74-.887-2.406-1.056-2.834l-5.139-.379c-.118.138-.407.499-.67.995-.296.561-1.557 2.802-1.948 3.496 1.036.27 2.407 1.13 2.853 1.421l1.923-2.756c.034-.049.092-.072.152-.074.06.003.115.037.144.09l1.793 3.209c1.054-.035 2.366-1.089 2.741-1.409-.164-.298-.57-1.059-.793-1.759z"/></g><path fill="#4289C1" d="M22.141 8.562c-.812 0-1.45.072-1.99.111 0 0-.077.847-1.387.886-1.309.039-1.656-.655-1.656-.655s-1.411-.055-2.143.407l-1.606.685s.915 1.338.821 2.719l.74-.212s-.032.025-.068.525c-.088 1.207.208 5.343.054 5.69 0 0 1.521.536 3.469.75 1.192.131 3.703.106 3.703.106-.31-1.295-.529-3.545-.578-4.652-.096-2.173.497-3.318.708-3.298.896.083 1.729-.125 1.729-.125s-.375-.688-.292-1.458c.083-.771.312-1.292.312-1.292s-1.004-.187-1.816-.187z"/><circle fill="#269" cx="28.5" cy="2.917" r="2.055"/><path fill="#D4AB88" d="M29.282 1.82l.079-.014c-.134.021-.261-.069-.284-.203-.023-.135.068-.265.204-.289l.513-.092.825.901.25.922-.817.15c-.135.023-.265-.068-.288-.204-.022-.129.064-.248.189-.279l-.22.038c-.135.023-.265-.068-.288-.204-.023-.131.065-.253.194-.282l-.271.046c-.135.023-.265-.068-.288-.204s.067-.263.202-.286z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f93e-1f3fd.svg b/public/emoji/1f93e-1f3fd.svg
index 41c4eae0f7878fd34815be2ad6098d70e04f1b47..ca6f6c27cb66b7f21e45c8d733c44a5874510c63 100644
--- a/public/emoji/1f93e-1f3fd.svg
+++ b/public/emoji/1f93e-1f3fd.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><ellipse fill="#D5AB88" cx="18.625" cy="5" rx="2.625" ry="3"/><path fill="#963B22" d="M15.63 3.212s.193-1.038-1.258-1.158c-1.196-.099-1.513 1.208-2.378 1.675-.653.352-1.4.364-1.921.013 0 0 .716.867 1.52 1.198 1.045.43 2.333.154 2.947-.175.96-.515 1.09-1.553 1.09-1.553z"/><path fill="#DD2E44" d="M17.967 33.355c-.552 0-1-.447-1-1v-3c0-.553.448-1 1-1s1 .447 1 1v3c0 .553-.448 1-1 1zm-9.431 1.076c-.199.094-.43.123-.661.067-.537-.13-.866-.671-.736-1.208l.669-2.76c.13-.535.669-.866 1.207-.736.537.13.866.671.736 1.208l-.669 2.76c-.074.306-.281.544-.546.669z"/><path fill="#D5AB88" d="M19.73 9.107l-.457-3.933c-.061-.549-.574-.973-1.117-.908-.549.061-.951.543-.889 1.092l.4 3.642h-4.584L7.228 6.106c-.55-.091-1.06.278-1.151.822-.091.545.277 1.06.822 1.151l5.389 2.787c.054.01.657.134.712.134h2.749c.009.262.086.588.251 1 1 2.5 3 8 3 8 2.209 0 2.625-4.723 2.625-7.208 0-.604.299-.753.197-1.101 1.171-.152 1.334.359 1.874.487 0 0-1.799-3.26-3.966-3.071z"/><path fill="#D5AB88" d="M14.177 26.122c-.456-.402-.56-1.088-.216-1.612l4.817-7.347c.376-.574 1.147-.735 1.72-.359.571.382.734 1.147.358 1.72l-4.817 7.347c-.376.574-1.147.735-1.72.359-.052-.032-.098-.069-.142-.108z"/><path fill="#D5AB88" d="M8.628 31.08c-.308-.458-.268-1.066.116-1.42l5.382-4.971c.42-.389 1.094-.325 1.505.142.407.471.403 1.161-.018 1.549l-5.382 4.971c-.42.388-1.095.325-1.505-.142-.036-.042-.068-.085-.098-.129zm8.861-1.75c-.184-.479-.029-1.019.384-1.257l5.786-3.347c.452-.262 1.041-.062 1.315.447.271.511.131 1.133-.322 1.394l-5.786 3.347c-.452.261-1.041.061-1.315-.447-.024-.045-.044-.09-.062-.137z"/><path fill="#D5AB88" d="M24.304 26.637c-.533.185-1.136-.044-1.403-.561l-3.745-7.25c-.293-.566-.071-1.263.495-1.555.569-.288 1.263-.071 1.555.496l3.745 7.25c.293.566.071 1.263-.495 1.555-.05.026-.1.047-.152.065zm0-13.611l-3.85-2.008c-.457-.238-.636-.807-.398-1.264.238-.457.807-.636 1.264-.397l3.85 2.008c.457.238.636.807.398 1.264-.238.457-.807.636-1.264.397z"/><path fill="#D5AB88" d="M30.07 13.88l-5.302-.783c-.51-.075-.865-.554-.79-1.064.075-.51.554-.865 1.064-.79l5.302.783c.51.075.865.554.79 1.064-.075.51-.554.865-1.064.79z"/><path fill="#963B22" d="M21.25 5s.283-.678.479-1.333c.225-.75-.542-1.855-1.438-2.479-.699-.487-2.461-.66-3.656-.029-1.349.713-1.687 2.024-1.462 3.373.207 1.24 1.349 2.324 1.349 2.324s.414-1.064.227-1.085c-.347-.039-.555-1.105-.264-1.389.306-.299.6 0 .675.3.075.3.277 1.151.277 1.151s-.052-1.076.248-1.414c.3-.337 1.724-.262 2.324-1.724 0 0 .47.179.845.742.309.464.396 1.563.396 1.563z"/><path fill="#A0041E" d="M16.5 17.957s-.803 2.028-1.071 2.869c-.268.842-.825 1.799-.825 1.799s1.694 1.477 2.995 1.438l1.885-2.74 1.674 2.359s1.708-1.229 2.884-1.433c0 0-1.497-3.069-1.841-3.719-.344-.65-1.186-1.492-1.186-1.492l-4.515.919z"/><path fill="#DD2E44" d="M15.549 8.805s1.274.075 1.799.112c0 0 .075.825 1.349.862 1.274.037 1.612-.637 1.612-.637s.975.075 1.687.525c.712.45 1.799.975 1.799.975s-1.012.862-.637 1.799l-1.012-.483s.3.671.188 1.083c-.112.412-.479.75-.521 1.125-.116 1.044.329 3.892.479 4.229 0 0-1.292-.333-3.188-.125-1.16.128-3.125.958-3.125.958.021-.812.589-2.827.729-3.896.137-1.041-.785-3.942-1.422-4.092-.637-.15-1.125-.187-1.125-.187s.15-.675 0-1.199c-.15-.525-.225-.9-.225-.9s1.163-.074 1.613-.149z"/><circle fill="#269" cx="5" cy="8" r="2"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#DD2E44" d="M28.65 31.29c.257.905.272 1.425.428 2.365.115.69.588 1.466 1.158 1.343.452-.097.795-.538.68-1.52-.061-.525-.205-.877-.393-1.416-.108-.311-.264-.74-.353-1.153-.097-.45-.438-.928-1.018-.802-.43.091-.674.58-.502 1.183z"/><path fill="#A0041E" d="M29.941 31.084c-.024-.017-.237-.141-.55-.054s-.425.267-.44.293c-.014.027.289.776.332.985.044.223.205.849.212.876.013.054.069.086.125.072l.597-.144c.056-.014.09-.068.077-.122l-.205-.845c-.058-.235-.123-1.044-.148-1.061z"/><path fill="#CCD6DD" d="M29.384 33.14c.016 0 .031-.002.047-.006l.91-.22c.107-.026.174-.134.147-.241-.026-.107-.134-.173-.241-.147l-.91.22c-.107.026-.174.134-.147.241.023.091.104.153.194.153zm-.174-.72c.016 0 .031-.002.047-.006l.91-.22c.107-.026.174-.134.147-.241-.025-.107-.135-.174-.241-.147l-.91.22c-.107.026-.174.134-.147.241.022.092.103.153.194.153zm-.174-.72c.016 0 .031-.002.047-.006l.91-.22c.107-.026.174-.134.147-.241s-.134-.174-.241-.147l-.91.22c-.107.026-.174.134-.147.241.022.092.103.153.194.153z"/><path fill="#DD2E44" d="M21.133 30.401c.18.923.402 1.394.688 2.302.21.667.139 1.573-.425 1.722-.447.118-.953-.12-1.294-1.047-.183-.496-.214-.875-.291-1.441-.044-.326-.1-.78-.207-1.188-.117-.445-.029-1.025.545-1.176.425-.113.864.213.984.828z"/><path fill="#A0041E" d="M20.862 30.571c-.024-.017-.24-.136-.551-.043-.311.094-.42.275-.434.302-.013.027.304.77.351.978.049.222.221.845.229.871.014.054.071.084.126.07l.594-.156c.056-.015.089-.07.075-.124l-.221-.841c-.062-.233-.144-1.041-.169-1.057z"/><path fill="#CCD6DD" d="M20.342 32.637c.017 0 .034-.002.051-.007l.905-.239c.107-.028.171-.137.143-.244-.027-.106-.137-.172-.244-.142l-.905.239c-.107.028-.171.137-.143.244.024.089.105.149.193.149zm-.188-.716c.017 0 .034-.002.051-.007l.905-.239c.107-.028.171-.137.143-.244-.027-.106-.138-.172-.244-.142l-.905.239c-.107.028-.171.137-.143.244.023.089.104.149.193.149zm-.189-.716c.017 0 .034-.002.051-.007l.905-.239c.107-.028.171-.137.143-.244-.028-.106-.139-.173-.244-.142l-.905.239c-.107.028-.171.137-.143.244.024.089.105.149.193.149z"/><g fill="#D4AB88"><path d="M19.958 24.146l2.5-1.438 1.281 2.614c.24.185.28.276 1.615 1.052 1.203.699 3.46 3.091 4.21 4.025.213.198.259.341.393.701l-1.023.266s-.182-.34-.476-.533c-1.438-.821-6.309-3.495-6.309-3.495-.394-.283-.64-.478-.78-.72 0 0-1.192-1.979-1.411-2.472zm-6.037-2.159l2.501 1.313c-.171.271-.513.854-.797 1.59-.083.213-.191.618.163.874.2.146.59.466.889.704.204.163.438.349.714.563.997.778 3.032 2.787 3.198 2.951.166.164.283.377.344.662-.087.019-.965.233-.965.233s-.123-.307-.421-.487c-.929-.561-6.214-3.599-6.214-3.599-.69-.495-1.067-.722-1.005-1.432.107-1.24 1.263-2.915 1.593-3.372zm8.503-12.665c.268-.28.705-.422 1.299-.422 1.689 0 3.358.215 3.783.3.118.023.173.024.301-.052.318-.188.435-.697.583-1.341.049-.217.102-.445.165-.672.279-1.001.588-2.46.55-2.736-.053-.384.312-3.219.356-3.262.071-.07.274.067.413.075.111.007.19.098.308.176.682.447.78 1.376.849 2 .042.386-.62 1.095-.684 1.502-.021.133-.048.804-.09 1.888-.044 1.135-.099 2.549-.141 2.788-.101.572-.208 1.186-1.01 1.382-.604.147-2.378.241-3.673.309-.65.035-1.213.064-1.512.093-.647.062-1.198-.058-1.515-.331-.192-.167-.296-.389-.309-.66-.016-.443.092-.793.327-1.037zM2.393 12.423c.285-.016.335-.059.612-.053.406.009.393.056.577.053.399-.006.967-.034 1.387-.084.31-.037 1.968-.116 2.419-.198.614-.113 1.384-.261 2.798-.152.794-.409 1.869-.87 2.823-1.279.699-.3 1.359-.583 1.802-.8.223-.109.442-.165.652-.165.156 0 .308.031.449.092.325.141.568.43.686.813.043.142.162.638-.108 1.073-.216.347-.624.573-1.214.671-.618.102-1.367.333-2.234.6-.857.265-1.82.561-2.804.772 0 0-1.555-.164-2.367-.213-1.124-.068-2.682-.362-3.092-.238-.518.157-1.068.303-1.715-.03-1.106-.569-2.212-.236-2.095-.707.027-.109.881-.125 1.424-.155zm15.779-7.43c.062-.564.59-1 1.148-.934.564.062.977.558.914 1.122l-.411 3.61.355.047s.363 1.057-1.449 1.057-1.621-.825-1.621-.825l.595-.113.469-3.964z"/><ellipse cx="18.833" cy="4.917" rx="2.625" ry="3"/></g><path fill="#963B22" d="M17.166 1.104c.699-.487 2.461-.66 3.656-.029.615.325 1.011.778 1.248 1.298.181-.193.487-.359 1.016-.403 1.196-.099 1.513 1.208 2.378 1.675.653.352 1.4.364 1.921.013 0 0-.716.867-1.52 1.198-1.045.43-2.333.154-2.947-.175-.258-.138-.452-.314-.604-.498-.01.089-.015.177-.03.266-.207 1.24-1.349 2.324-1.349 2.324s-.414-1.064-.227-1.085c.347-.039.555-1.105.264-1.389-.306-.299-.6 0-.675.3S20.02 5.75 20.02 5.75s.052-1.076-.248-1.414c-.3-.337-1.724-.262-2.324-1.724 0 0-.47.179-.845.742-.309.464-.396 1.562-.396 1.562s-.283-.678-.479-1.333c-.224-.749.543-1.855 1.438-2.479z"/><g fill="#A0041E"><path d="M20.896 18.375c.318 1.396 2.009 4.729 2.009 4.729s-1.639 1.477-2.987 1.437L17.963 21.7l-1.735 2.446s-1.713-1.274-2.931-1.485c0 0 1.666-3.182 2.023-3.856.357-.674 1.057-1.547 1.057-1.547s4.271.028 4.519 1.117z"/><path d="M19.815 24.612l-1.853-2.693-1.632 2.3c-.02.027-.049.046-.082.051-.032.004-.066-.003-.094-.022-.018-.013-1.703-1.259-2.879-1.463-.039-.007-.073-.032-.091-.067-.018-.036-.017-.078.002-.113 0 0 1.666-3.183 2.022-3.857.358-.676 1.042-1.53 1.07-1.566.023-.03.06-.047.098-.047h.001c.447.003 4.377.062 4.64 1.214.31 1.365 1.981 4.667 1.998 4.7.026.051.014.111-.028.149-.067.061-1.646 1.471-3.016 1.471-.058-.001-.123-.008-.156-.057zm.959-6.209c-.163-.714-2.72-1.001-4.336-1.019-.149.19-.707.912-1.008 1.479-.311.587-1.613 3.076-1.945 3.709 1.05.248 2.342 1.132 2.715 1.398l1.662-2.343c.023-.033.062-.053.102-.053h.001c.041 0 .079.021.102.054l1.918 2.788c1.115-.008 2.444-1.073 2.765-1.345-.275-.545-1.684-3.383-1.976-4.668z"/></g><path fill="#DD2E44" d="M22.043 8.722c-.549-.02-1.321.078-1.865.117 0 0-.078.855-1.399.894-1.321.039-1.671-.661-1.671-.661s-1.01.078-1.749.544c-.738.466-1.865.884-1.865.884s1.049 1.197.661 2.169l1.049-.315s-.352.593-.235 1.021c.117.427.538.88.581 1.269.12 1.082-.227 3.672-.383 4.021 0 0 1.225-.346 3.191-.13 1.202.133 3.042.965 3.042.965-.022-.842-.413-2.902-.559-4.01-.142-1.079.814-3.793 1.474-3.948.661-.155 1.166-.194 1.166-.194s-.155-.994 0-1.538.233-.933.233-.933-1.121-.135-1.671-.155z"/><circle fill="#269" cx="28.5" cy="2.917" r="2.055"/><path fill="#D4AB88" d="M29.282 1.82l.079-.014c-.134.021-.261-.069-.284-.203-.023-.135.068-.265.204-.289l.513-.092.825.901.25.922-.817.15c-.135.023-.265-.068-.288-.204-.022-.129.064-.248.189-.279l-.22.038c-.135.023-.265-.068-.288-.204-.023-.131.065-.253.194-.282l-.271.046c-.135.023-.265-.068-.288-.204s.066-.263.202-.286z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f93e-1f3fe-200d-2640-fe0f.svg b/public/emoji/1f93e-1f3fe-200d-2640-fe0f.svg
index 9cec4cdc3b666cf8b626181919753a6cff448d5e..692ed9d3696e6df91438ad329e87c98d4cf32654 100644
--- a/public/emoji/1f93e-1f3fe-200d-2640-fe0f.svg
+++ b/public/emoji/1f93e-1f3fe-200d-2640-fe0f.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><ellipse fill="#AF7E57" cx="18.625" cy="5" rx="2.625" ry="3"/><path fill="#60352A" d="M15.63 3.212s.193-1.038-1.258-1.158c-1.196-.099-1.513 1.208-2.378 1.675-.653.352-1.4.364-1.921.013 0 0 .716.867 1.52 1.198 1.045.43 2.333.154 2.947-.175.96-.515 1.09-1.553 1.09-1.553z"/><path fill="#DD2E44" d="M17.967 33.355c-.552 0-1-.447-1-1v-3c0-.553.448-1 1-1s1 .447 1 1v3c0 .553-.448 1-1 1zm-9.431 1.076c-.199.094-.43.123-.661.067-.537-.13-.866-.671-.736-1.208l.669-2.76c.13-.535.669-.866 1.207-.736.537.13.866.671.736 1.208l-.669 2.76c-.074.306-.281.544-.546.669z"/><path fill="#AF7E57" d="M19.73 9.107l-.457-3.933c-.061-.549-.574-.973-1.117-.908-.549.061-.951.543-.889 1.092l.4 3.642h-4.584L7.228 6.106c-.55-.091-1.06.278-1.151.822-.091.545.277 1.06.822 1.151l5.389 2.787c.054.01.657.134.712.134h2.749c.009.262.086.588.251 1 1 2.5 3 8 3 8 2.209 0 2.625-4.723 2.625-7.208 0-.604.299-.753.197-1.101 1.171-.152 1.334.359 1.874.487 0 0-1.799-3.26-3.966-3.071z"/><path fill="#AF7E57" d="M14.177 26.122c-.456-.402-.56-1.088-.216-1.612l4.817-7.347c.376-.574 1.147-.735 1.72-.359.571.382.734 1.147.358 1.72l-4.817 7.347c-.376.574-1.147.735-1.72.359-.052-.032-.098-.069-.142-.108z"/><path fill="#AF7E57" d="M8.628 31.08c-.308-.458-.268-1.066.116-1.42l5.382-4.971c.42-.389 1.094-.325 1.505.142.407.471.403 1.161-.018 1.549l-5.382 4.971c-.42.388-1.095.325-1.505-.142-.036-.042-.068-.085-.098-.129zm8.861-1.75c-.184-.479-.029-1.019.384-1.257l5.786-3.347c.452-.262 1.041-.062 1.315.447.271.511.131 1.133-.322 1.394l-5.786 3.347c-.452.261-1.041.061-1.315-.447-.024-.045-.044-.09-.062-.137z"/><path fill="#AF7E57" d="M24.304 26.637c-.533.185-1.136-.044-1.403-.561l-3.745-7.25c-.293-.566-.071-1.263.495-1.555.569-.288 1.263-.071 1.555.496l3.745 7.25c.293.566.071 1.263-.495 1.555-.05.026-.1.047-.152.065zm0-13.611l-3.85-2.008c-.457-.238-.636-.807-.398-1.264.238-.457.807-.636 1.264-.397l3.85 2.008c.457.238.636.807.398 1.264-.238.457-.807.636-1.264.397z"/><path fill="#AF7E57" d="M30.07 13.88l-5.302-.783c-.51-.075-.865-.554-.79-1.064.075-.51.554-.865 1.064-.79l5.302.783c.51.075.865.554.79 1.064-.075.51-.554.865-1.064.79z"/><path fill="#60352A" d="M21.25 5s.283-.678.479-1.333c.225-.75-.542-1.855-1.438-2.479-.699-.487-2.461-.66-3.656-.029-1.349.713-1.687 2.024-1.462 3.373.207 1.24 1.349 2.324 1.349 2.324s.414-1.064.227-1.085c-.347-.039-.555-1.105-.264-1.389.306-.299.6 0 .675.3.075.3.277 1.151.277 1.151s-.052-1.076.248-1.414c.3-.337 1.724-.262 2.324-1.724 0 0 .47.179.845.742.309.464.396 1.563.396 1.563z"/><path fill="#A0041E" d="M16.5 17.957s-.803 2.028-1.071 2.869c-.268.842-.825 1.799-.825 1.799s1.694 1.477 2.995 1.438l1.885-2.74 1.674 2.359s1.708-1.229 2.884-1.433c0 0-1.497-3.069-1.841-3.719-.344-.65-1.186-1.492-1.186-1.492l-4.515.919z"/><path fill="#DD2E44" d="M15.549 8.805s1.274.075 1.799.112c0 0 .075.825 1.349.862 1.274.037 1.612-.637 1.612-.637s.975.075 1.687.525c.712.45 1.799.975 1.799.975s-1.012.862-.637 1.799l-1.012-.483s.3.671.188 1.083c-.112.412-.479.75-.521 1.125-.116 1.044.329 3.892.479 4.229 0 0-1.292-.333-3.188-.125-1.16.128-3.125.958-3.125.958.021-.812.589-2.827.729-3.896.137-1.041-.785-3.942-1.422-4.092-.637-.15-1.125-.187-1.125-.187s.15-.675 0-1.199c-.15-.525-.225-.9-.225-.9s1.163-.074 1.613-.149z"/><circle fill="#269" cx="5" cy="8" r="2"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#DD2E44" d="M28.65 31.29c.257.905.272 1.425.428 2.365.115.69.588 1.466 1.158 1.343.452-.097.795-.538.68-1.52-.061-.525-.205-.877-.393-1.416-.108-.311-.264-.74-.353-1.153-.097-.45-.438-.928-1.018-.802-.43.091-.674.58-.502 1.183z"/><path fill="#A0041E" d="M29.941 31.084c-.024-.017-.237-.141-.55-.054s-.425.267-.44.293c-.014.027.289.776.332.985.044.223.205.849.212.876.013.054.069.086.125.072l.597-.144c.056-.014.09-.068.077-.122l-.205-.845c-.058-.235-.123-1.044-.148-1.061z"/><path fill="#CCD6DD" d="M29.384 33.14c.016 0 .031-.002.047-.006l.91-.22c.107-.026.174-.134.147-.241-.026-.107-.134-.173-.241-.147l-.91.22c-.107.026-.174.134-.147.241.023.091.104.153.194.153zm-.174-.72c.016 0 .031-.002.047-.006l.91-.22c.107-.026.174-.134.147-.241-.025-.107-.135-.174-.241-.147l-.91.22c-.107.026-.174.134-.147.241.022.092.103.153.194.153zm-.174-.72c.016 0 .031-.002.047-.006l.91-.22c.107-.026.174-.134.147-.241s-.134-.174-.241-.147l-.91.22c-.107.026-.174.134-.147.241.022.092.103.153.194.153z"/><path fill="#DD2E44" d="M21.133 30.401c.18.923.402 1.394.688 2.302.21.667.139 1.573-.425 1.722-.447.118-.953-.12-1.294-1.047-.183-.496-.214-.875-.291-1.441-.044-.326-.1-.78-.207-1.188-.117-.445-.029-1.025.545-1.176.425-.113.864.213.984.828z"/><path fill="#A0041E" d="M20.862 30.571c-.024-.017-.24-.136-.551-.043-.311.094-.42.275-.434.302-.013.027.304.77.351.978.049.222.221.845.229.871.014.054.071.084.126.07l.594-.156c.056-.015.089-.07.075-.124l-.221-.841c-.062-.233-.144-1.041-.169-1.057z"/><path fill="#CCD6DD" d="M20.342 32.637c.017 0 .034-.002.051-.007l.905-.239c.107-.028.171-.137.143-.244-.027-.106-.137-.172-.244-.142l-.905.239c-.107.028-.171.137-.143.244.024.089.105.149.193.149zm-.188-.716c.017 0 .034-.002.051-.007l.905-.239c.107-.028.171-.137.143-.244-.027-.106-.138-.172-.244-.142l-.905.239c-.107.028-.171.137-.143.244.023.089.104.149.193.149zm-.189-.716c.017 0 .034-.002.051-.007l.905-.239c.107-.028.171-.137.143-.244-.028-.106-.139-.173-.244-.142l-.905.239c-.107.028-.171.137-.143.244.024.089.105.149.193.149z"/><g fill="#AF7E57"><path d="M19.958 24.146l2.5-1.438 1.281 2.614c.24.185.28.276 1.615 1.052 1.203.699 3.46 3.091 4.21 4.025.213.198.259.341.393.701l-1.023.266s-.182-.34-.476-.533c-1.438-.821-6.309-3.495-6.309-3.495-.394-.283-.64-.478-.78-.72 0 0-1.192-1.979-1.411-2.472zm-6.037-2.159l2.501 1.313c-.171.271-.513.854-.797 1.59-.083.213-.191.618.163.874.2.146.59.466.889.704.204.163.438.349.714.563.997.778 3.032 2.787 3.198 2.951.166.164.283.377.344.662-.087.019-.965.233-.965.233s-.123-.307-.421-.487c-.929-.561-6.214-3.599-6.214-3.599-.69-.495-1.067-.722-1.005-1.432.107-1.24 1.263-2.915 1.593-3.372zm8.503-12.665c.268-.28.705-.422 1.299-.422 1.689 0 3.358.215 3.783.3.118.023.173.024.301-.052.318-.188.435-.697.583-1.341.049-.217.102-.445.165-.672.279-1.001.588-2.46.55-2.736-.053-.384.312-3.219.356-3.262.071-.07.274.067.413.075.111.007.19.098.308.176.682.447.78 1.376.849 2 .042.386-.62 1.095-.684 1.502-.021.133-.048.804-.09 1.888-.044 1.135-.099 2.549-.141 2.788-.101.572-.208 1.186-1.01 1.382-.604.147-2.378.241-3.673.309-.65.035-1.213.064-1.512.093-.647.062-1.198-.058-1.515-.331-.192-.167-.296-.389-.309-.66-.016-.443.092-.793.327-1.037zM2.393 12.423c.285-.016.335-.059.612-.053.406.009.393.056.577.053.399-.006.967-.034 1.387-.084.31-.037 1.968-.116 2.419-.198.614-.113 1.384-.261 2.798-.152.794-.409 1.869-.87 2.823-1.279.699-.3 1.359-.583 1.802-.8.223-.109.442-.165.652-.165.156 0 .308.031.449.092.325.141.568.43.686.813.043.142.162.638-.108 1.073-.216.347-.624.573-1.214.671-.618.102-1.367.333-2.234.6-.857.265-1.82.561-2.804.772 0 0-1.555-.164-2.367-.213-1.124-.068-2.682-.362-3.092-.238-.518.157-1.068.303-1.715-.03-1.106-.569-2.212-.236-2.095-.707.027-.109.881-.125 1.424-.155zm15.779-7.43c.062-.564.59-1 1.148-.934.564.062.977.558.914 1.122l-.411 3.61.355.047s.363 1.057-1.449 1.057-1.621-.825-1.621-.825l.595-.113.469-3.964z"/><ellipse cx="18.833" cy="4.917" rx="2.625" ry="3"/></g><path fill="#60352A" d="M17.166 1.104c.699-.487 2.461-.66 3.656-.029.615.325 1.011.778 1.248 1.298.181-.193.487-.359 1.016-.403 1.196-.099 1.513 1.208 2.378 1.675.653.352 1.4.364 1.921.013 0 0-.716.867-1.52 1.198-1.045.43-2.333.154-2.947-.175-.258-.138-.452-.314-.604-.498-.01.089-.015.177-.03.266-.207 1.24-1.349 2.324-1.349 2.324s-.414-1.064-.227-1.085c.347-.039.555-1.105.264-1.389-.306-.299-.6 0-.675.3S20.02 5.75 20.02 5.75s.052-1.076-.248-1.414c-.3-.337-1.724-.262-2.324-1.724 0 0-.47.179-.845.742-.309.464-.396 1.562-.396 1.562s-.283-.678-.479-1.333c-.224-.749.543-1.855 1.438-2.479z"/><g fill="#A0041E"><path d="M20.896 18.375c.318 1.396 2.009 4.729 2.009 4.729s-1.639 1.477-2.987 1.437L17.963 21.7l-1.735 2.446s-1.713-1.274-2.931-1.485c0 0 1.666-3.182 2.023-3.856.357-.674 1.057-1.547 1.057-1.547s4.271.028 4.519 1.117z"/><path d="M19.815 24.612l-1.853-2.693-1.632 2.3c-.02.027-.049.046-.082.051-.032.004-.066-.003-.094-.022-.018-.013-1.703-1.259-2.879-1.463-.039-.007-.073-.032-.091-.067-.018-.036-.017-.078.002-.113 0 0 1.666-3.183 2.022-3.857.358-.676 1.042-1.53 1.07-1.566.023-.03.06-.047.098-.047h.001c.447.003 4.377.062 4.64 1.214.31 1.365 1.981 4.667 1.998 4.7.026.051.014.111-.028.149-.067.061-1.646 1.471-3.016 1.471-.058-.001-.123-.008-.156-.057zm.959-6.209c-.163-.714-2.72-1.001-4.336-1.019-.149.19-.707.912-1.008 1.479-.311.587-1.613 3.076-1.945 3.709 1.05.248 2.342 1.132 2.715 1.398l1.662-2.343c.023-.033.062-.053.102-.053h.001c.041 0 .079.021.102.054l1.918 2.788c1.115-.008 2.444-1.073 2.765-1.345-.275-.545-1.684-3.383-1.976-4.668z"/></g><path fill="#DD2E44" d="M22.043 8.722c-.549-.02-1.321.078-1.865.117 0 0-.078.855-1.399.894-1.321.039-1.671-.661-1.671-.661s-1.01.078-1.749.544c-.738.466-1.865.884-1.865.884s1.049 1.197.661 2.169l1.049-.315s-.352.593-.235 1.021c.117.427.538.88.581 1.269.12 1.082-.227 3.672-.383 4.021 0 0 1.225-.346 3.191-.13 1.202.133 3.042.965 3.042.965-.022-.842-.413-2.902-.559-4.01-.142-1.079.814-3.793 1.474-3.948.661-.155 1.166-.194 1.166-.194s-.155-.994 0-1.538.233-.933.233-.933-1.121-.135-1.671-.155z"/><circle fill="#269" cx="28.5" cy="2.917" r="2.055"/><path fill="#AF7E57" d="M29.282 1.82l.079-.014c-.134.021-.261-.069-.284-.203-.023-.135.068-.265.204-.289l.513-.092.825.901.25.922-.817.15c-.135.023-.265-.068-.288-.204-.022-.129.064-.248.189-.279l-.22.038c-.135.023-.265-.068-.288-.204-.023-.131.065-.253.194-.282l-.271.046c-.135.023-.265-.068-.288-.204s.066-.263.202-.286z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f93e-1f3fe-200d-2642-fe0f.svg b/public/emoji/1f93e-1f3fe-200d-2642-fe0f.svg
index ec690db9d08fe717de38049456e6118d13474418..5639542ce5152ec8bfd071f6a340f511a6ac37cd 100644
--- a/public/emoji/1f93e-1f3fe-200d-2642-fe0f.svg
+++ b/public/emoji/1f93e-1f3fe-200d-2642-fe0f.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#AF7E57" d="M21.25 5c0-1.657-1.175-3-2.625-3C17.176 2 16 3.343 16 5s.984 3 2.719 3c.661 0 1.736-.132 2.198-.594.55-.55.333-1.505.333-2.406z"/><path fill="#4289C1" d="M17.967 33.355c-.552 0-1-.447-1-1v-3c0-.553.448-1 1-1s1 .447 1 1v3c0 .553-.448 1-1 1zm-9.431 1.076c-.199.094-.43.123-.661.067-.537-.13-.866-.671-.736-1.208l.669-2.76c.13-.535.669-.866 1.207-.736.537.13.866.671.736 1.208l-.669 2.76c-.074.306-.281.544-.546.669z"/><path fill="#AF7E57" d="M19.73 9.107l-.457-3.933c-.061-.549-.574-.973-1.117-.908-.549.061-.951.543-.889 1.092l.4 3.642h-4.584L7.228 6.106c-.55-.091-1.06.278-1.151.822-.091.545.277 1.06.822 1.151l5.389 2.787c.054.01.657.134.712.134h2.749c.009.262.086.588.251 1 1 2.5 3 8 3 8 2.209 0 2.625-4.723 2.625-7.208 0-.604.299-.753.197-1.101 1.171-.152 1.334.359 1.874.487 0 0-1.799-3.26-3.966-3.071z"/><path fill="#AF7E57" d="M14.177 26.122c-.456-.402-.56-1.088-.216-1.612l4.817-7.347c.376-.574 1.147-.735 1.72-.359.571.382.734 1.147.358 1.72l-4.817 7.347c-.376.574-1.147.735-1.72.359-.052-.032-.098-.069-.142-.108z"/><path fill="#AF7E57" d="M8.628 31.08c-.308-.458-.268-1.066.116-1.42l5.382-4.971c.42-.389 1.094-.325 1.505.142.407.471.403 1.161-.018 1.549l-5.382 4.971c-.42.388-1.095.325-1.505-.142-.036-.042-.068-.085-.098-.129zm8.861-1.75c-.184-.479-.029-1.019.384-1.257l5.786-3.347c.452-.262 1.041-.062 1.315.447.271.511.131 1.133-.322 1.394l-5.786 3.347c-.452.261-1.041.061-1.315-.447-.024-.045-.044-.09-.062-.137z"/><path fill="#AF7E57" d="M24.304 26.637c-.533.185-1.136-.044-1.403-.561l-3.745-7.25c-.293-.566-.071-1.263.495-1.555.569-.288 1.263-.071 1.555.496l3.745 7.25c.293.566.071 1.263-.495 1.555-.05.026-.1.047-.152.065zm0-13.611l-3.85-2.008c-.457-.238-.636-.807-.398-1.264.238-.457.807-.636 1.264-.397l3.85 2.008c.457.238.636.807.398 1.264-.238.457-.807.636-1.264.397z"/><path fill="#AF7E57" d="M30.07 13.88l-5.302-.783c-.51-.075-.865-.554-.79-1.064.075-.51.554-.865 1.064-.79l5.302.783c.51.075.865.554.79 1.064-.075.51-.554.865-1.064.79z"/><path fill="#2A6797" d="M16.5 17.957s-.803 2.028-1.071 2.869c-.268.842-.825 1.799-.825 1.799s1.694 1.477 2.995 1.438l1.885-2.74 1.674 2.359s1.708-1.229 2.884-1.433c0 0-1.497-3.069-1.841-3.719-.344-.65-1.186-1.492-1.186-1.492l-4.515.919z"/><path fill="#4289C1" d="M15.549 8.805s1.274.075 1.799.112c0 0 .075.825 1.349.862 1.274.037 1.612-.637 1.612-.637s.975.075 1.687.525c.712.45 1.799.975 1.799.975s-1.012.862-.637 1.799l-1.012-.483s.135.417.198 1.198c.094 1.174-.202 4.902-.052 5.24 0 0-1.292-.333-3.188-.125-1.16.128-3.323.958-3.323.958.302-1.26.483-3.152.531-4.229.094-2.115-.389-3.609-1.026-3.759-.637-.15-1.125-.187-1.125-.187s.15-.675 0-1.199c-.15-.525-.225-.9-.225-.9s1.163-.075 1.613-.15z"/><circle fill="#269" cx="5" cy="8" r="2"/><path fill="#60352A" d="M20.292 1.188c-.699-.487-2.461-.66-3.656-.029-1.349.713-1.687 2.024-1.462 3.373.207 1.24.803 1.754.803 1.754.229.247.837-.402.488-.95-.409-.643-.294-1.401.169-1.448.327-.034.678.158.584.451-.113.353.032.498.032.498s.269.192.54-.627c.142-.429 1.157-.362 2.648-1.038.176-.08.625.422.752 1.539.027.241.477-.502.54-1.044.103-.899-.543-1.855-1.438-2.479z"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#1C6399" d="M28.648 31.324c.294.944.323 1.49.512 2.473.139.722.656 1.525 1.252 1.381.472-.114.821-.587.675-1.614-.078-.55-.238-.916-.45-1.477-.122-.324-.297-.771-.401-1.202-.114-.47-.484-.963-1.091-.816-.45.107-.693.627-.497 1.255z"/><path fill="#3B94D9" d="M29.952 31.074c-.026-.017-.255-.137-.58-.031-.325.106-.434.3-.448.328-.013.028.339.801.394 1.019.057.232.254.882.263.909.016.056.076.087.134.07l.62-.179c.059-.017.092-.076.076-.132l-.254-.878c-.071-.243-.178-1.089-.205-1.106z"/><path fill="#CCD6DD" d="M29.463 33.264c.019 0 .037-.002.057-.008l.944-.277c.105-.031.166-.142.136-.248-.031-.106-.137-.167-.249-.136l-.944.277c-.105.031-.166.142-.136.248.026.087.105.144.192.144zm-.22-.747c.019 0 .037-.002.057-.008l.944-.277c.105-.031.166-.142.136-.248-.031-.106-.137-.167-.249-.136l-.944.277c-.105.031-.166.142-.136.248.026.088.105.144.192.144zm-.218-.747c.019 0 .037-.002.057-.008l.944-.277c.105-.031.166-.142.136-.248-.031-.106-.137-.167-.249-.136l-.944.277c-.105.031-.166.142-.136.248.026.088.105.144.192.144z"/><path fill="#1C6399" d="M21.01 30.366c.189.97.423 1.465.723 2.419.22.701.146 1.653-.446 1.809-.469.124-1.001-.127-1.36-1.101-.192-.521-.225-.919-.306-1.514-.046-.343-.105-.819-.218-1.249-.123-.468-.031-1.077.573-1.236.447-.116.908.226 1.034.872z"/><path fill="#3B94D9" d="M20.725 30.544c-.026-.018-.252-.143-.579-.045-.327.098-.441.289-.456.317-.014.028.319.809.369 1.028.051.233.233.888.241.915.015.056.074.089.132.073l.624-.164c.059-.016.094-.074.079-.13l-.233-.883c-.064-.245-.15-1.093-.177-1.111z"/><path fill="#CCD6DD" d="M20.18 32.705c.017 0 .034-.002.051-.007l.951-.25c.107-.028.171-.137.143-.244-.027-.106-.138-.172-.244-.142l-.951.25c-.107.028-.171.137-.143.244.023.09.104.149.193.149zm-.198-.752c.017 0 .034-.002.051-.007l.951-.251c.107-.028.171-.137.143-.244-.028-.106-.138-.172-.244-.142l-.951.251c-.107.028-.171.137-.143.244.023.09.104.149.193.149zm-.199-.753c.017 0 .034-.002.051-.007l.951-.251c.107-.028.171-.137.143-.244-.028-.106-.138-.172-.244-.142l-.951.251c-.107.028-.171.137-.143.244.023.09.105.149.193.149z"/><g fill="#AF7E57"><path d="M20.093 24.067l2.664-1.668 1.149 2.757c.24.185.28.276 1.615 1.052 1.203.699 3.041 2.897 3.791 3.832.213.198.504.544.646 1.061-.566.137-1.023.266-1.023.266s-.171-.202-.466-.396c-1.438-.821-6.319-3.633-6.319-3.633-.394-.283-.64-.478-.78-.72l-.01.006c-.954-1.365-1.048-2.063-1.267-2.557zm-6.532-2.196l2.815 1.487c-.171.271-.513.854-.797 1.59-.083.213-.132.49.223.746.2.146.433.331.731.568.204.163.438.349.714.563.997.778 2.582 2.469 2.694 2.575.059.056.145.12.239.202.08.07.165.163.248.278.002.004.005.005.007.008l.002.005c.12.17.231.388.292.673-.087.019-.965.233-.965.233s-.164-.223-.464-.399c-.907-.513-5.677-3.215-6.356-3.703l-.062-.044c-.69-.495-.977-.699-.915-1.409.108-1.241 1.264-2.916 1.594-3.373zm8.389-11.505c-.03-.672.209-1.616 1.772-1.616 1.699 0 3.246.172 3.686.298.651.186.707-.9 1.002-1.952.295-1.056.577-2.448.546-2.676-.053-.384.461-3.239.505-3.282.072-.07.275.067.413.075.111.007.19.098.308.176.682.447.906 1.376.974 2 .042.386-.597 1.118-.661 1.525-.047.301-.154 4.237-.231 4.678-.095.539-.207 1.278-1.122 1.502-.916.223-4.298.317-5.205.406-1.039.102-1.947-.243-1.987-1.134zM2.177 12.341c.285-.018.335-.066.612-.059.406.01.393.062.577.059.399-.007.967-.038 1.387-.094.31-.041 1.968-.32 2.419-.413.614-.126 1.372-.353 2.786-.23v-.001c1.217-.728 3.875-1.827 4.754-2.147 1.009-.367 2.187 2.707.602 2.97-1.277.211-3.237 1.018-5.292 1.425l-.001-.032c-.023.016-.037.039-.062.052 0 0-1.491-.204-2.303-.259-1.124-.076-2.682-.406-3.092-.267-.518.176-1.068.34-1.715-.034-1.106-.639-2.212-.265-2.095-.794.026-.124.88-.142 1.423-.176zm15.996-7.515c.062-.564.59-1 1.148-.934.564.062.977.558.914 1.122l-.411 3.61.328.048s.391 1.056-1.422 1.056-1.621-.825-1.621-.825l.595-.113.469-3.964z"/><path d="M16.142 4.648c0-1.702 1.208-3.083 2.697-3.083s2.697 1.38 2.697 3.083-1.011 3.082-2.794 3.082c-.68 0-1.784-.136-2.258-.61-.565-.565-.342-1.547-.342-2.472z"/></g><path fill="#60352A" d="M17.126.73c.718-.5 2.529-.678 3.757-.029 1.386.732 1.733 2.08 1.502 3.466-.212 1.274-.825 1.802-.825 1.802-.235.254-.86-.413-.502-.977.42-.66.302-1.439-.174-1.488-.336-.034-.697.162-.6.464.116.363-.033.512-.033.512s-.277.197-.555-.644c-.146-.441-1.189-.372-2.721-1.066-.181-.082-.642.433-.772 1.581-.028.248-.491-.516-.555-1.073-.105-.923.558-1.906 1.478-2.548z"/><g fill="#1C6399"><path d="M21.211 17.894s.826 2.083 1.101 2.948c.275.865.848 1.848.848 1.848s-1.729 1.586-3.066 1.546l-1.843-3.299-2.021 2.896s-1.959-1.333-3.167-1.542c0 0 1.709-3.03 2.062-3.698.354-.668.75-1.094.75-1.094l5.336.395z"/><path d="M20.089 24.411c-.062-.002-.118-.036-.148-.09l-1.707-3.055-1.86 2.667c-.055.077-.163.097-.242.044-.019-.013-1.941-1.313-3.099-1.513-.056-.01-.104-.047-.128-.098-.024-.052-.022-.111.006-.161.017-.03 1.712-3.036 2.061-3.694.359-.681.76-1.113.776-1.131.036-.038.085-.06.141-.055l5.335.394c.067.005.125.047.15.11.034.085.831 2.099 1.105 2.96.266.836.827 1.804.833 1.813.042.071.027.161-.033.217-.072.066-1.754 1.593-3.136 1.593l-.054-.001zm2.055-3.516c-.235-.74-.887-2.406-1.056-2.834l-5.139-.379c-.118.138-.407.499-.67.995-.296.561-1.557 2.802-1.948 3.496 1.036.27 2.407 1.13 2.853 1.421l1.923-2.756c.034-.049.092-.072.152-.074.06.003.115.037.144.09l1.793 3.209c1.054-.035 2.366-1.089 2.741-1.409-.164-.298-.57-1.059-.793-1.759z"/></g><path fill="#4289C1" d="M22.141 8.562c-.812 0-1.45.072-1.99.111 0 0-.077.847-1.387.886-1.309.039-1.656-.655-1.656-.655s-1.411-.055-2.143.407l-1.606.685s.915 1.338.821 2.719l.74-.212s-.032.025-.068.525c-.088 1.207.208 5.343.054 5.69 0 0 1.521.536 3.469.75 1.192.131 3.703.106 3.703.106-.31-1.295-.529-3.545-.578-4.652-.096-2.173.497-3.318.708-3.298.896.083 1.729-.125 1.729-.125s-.375-.688-.292-1.458c.083-.771.312-1.292.312-1.292s-1.004-.187-1.816-.187z"/><circle fill="#269" cx="28.5" cy="2.917" r="2.055"/><path fill="#AF7E57" d="M29.282 1.82l.079-.014c-.134.021-.261-.069-.284-.203-.023-.135.068-.265.204-.289l.513-.092.825.901.25.922-.817.15c-.135.023-.265-.068-.288-.204-.022-.129.064-.248.189-.279l-.22.038c-.135.023-.265-.068-.288-.204-.023-.131.065-.253.194-.282l-.271.046c-.135.023-.265-.068-.288-.204s.067-.263.202-.286z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f93e-1f3fe.svg b/public/emoji/1f93e-1f3fe.svg
index 9cec4cdc3b666cf8b626181919753a6cff448d5e..692ed9d3696e6df91438ad329e87c98d4cf32654 100644
--- a/public/emoji/1f93e-1f3fe.svg
+++ b/public/emoji/1f93e-1f3fe.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><ellipse fill="#AF7E57" cx="18.625" cy="5" rx="2.625" ry="3"/><path fill="#60352A" d="M15.63 3.212s.193-1.038-1.258-1.158c-1.196-.099-1.513 1.208-2.378 1.675-.653.352-1.4.364-1.921.013 0 0 .716.867 1.52 1.198 1.045.43 2.333.154 2.947-.175.96-.515 1.09-1.553 1.09-1.553z"/><path fill="#DD2E44" d="M17.967 33.355c-.552 0-1-.447-1-1v-3c0-.553.448-1 1-1s1 .447 1 1v3c0 .553-.448 1-1 1zm-9.431 1.076c-.199.094-.43.123-.661.067-.537-.13-.866-.671-.736-1.208l.669-2.76c.13-.535.669-.866 1.207-.736.537.13.866.671.736 1.208l-.669 2.76c-.074.306-.281.544-.546.669z"/><path fill="#AF7E57" d="M19.73 9.107l-.457-3.933c-.061-.549-.574-.973-1.117-.908-.549.061-.951.543-.889 1.092l.4 3.642h-4.584L7.228 6.106c-.55-.091-1.06.278-1.151.822-.091.545.277 1.06.822 1.151l5.389 2.787c.054.01.657.134.712.134h2.749c.009.262.086.588.251 1 1 2.5 3 8 3 8 2.209 0 2.625-4.723 2.625-7.208 0-.604.299-.753.197-1.101 1.171-.152 1.334.359 1.874.487 0 0-1.799-3.26-3.966-3.071z"/><path fill="#AF7E57" d="M14.177 26.122c-.456-.402-.56-1.088-.216-1.612l4.817-7.347c.376-.574 1.147-.735 1.72-.359.571.382.734 1.147.358 1.72l-4.817 7.347c-.376.574-1.147.735-1.72.359-.052-.032-.098-.069-.142-.108z"/><path fill="#AF7E57" d="M8.628 31.08c-.308-.458-.268-1.066.116-1.42l5.382-4.971c.42-.389 1.094-.325 1.505.142.407.471.403 1.161-.018 1.549l-5.382 4.971c-.42.388-1.095.325-1.505-.142-.036-.042-.068-.085-.098-.129zm8.861-1.75c-.184-.479-.029-1.019.384-1.257l5.786-3.347c.452-.262 1.041-.062 1.315.447.271.511.131 1.133-.322 1.394l-5.786 3.347c-.452.261-1.041.061-1.315-.447-.024-.045-.044-.09-.062-.137z"/><path fill="#AF7E57" d="M24.304 26.637c-.533.185-1.136-.044-1.403-.561l-3.745-7.25c-.293-.566-.071-1.263.495-1.555.569-.288 1.263-.071 1.555.496l3.745 7.25c.293.566.071 1.263-.495 1.555-.05.026-.1.047-.152.065zm0-13.611l-3.85-2.008c-.457-.238-.636-.807-.398-1.264.238-.457.807-.636 1.264-.397l3.85 2.008c.457.238.636.807.398 1.264-.238.457-.807.636-1.264.397z"/><path fill="#AF7E57" d="M30.07 13.88l-5.302-.783c-.51-.075-.865-.554-.79-1.064.075-.51.554-.865 1.064-.79l5.302.783c.51.075.865.554.79 1.064-.075.51-.554.865-1.064.79z"/><path fill="#60352A" d="M21.25 5s.283-.678.479-1.333c.225-.75-.542-1.855-1.438-2.479-.699-.487-2.461-.66-3.656-.029-1.349.713-1.687 2.024-1.462 3.373.207 1.24 1.349 2.324 1.349 2.324s.414-1.064.227-1.085c-.347-.039-.555-1.105-.264-1.389.306-.299.6 0 .675.3.075.3.277 1.151.277 1.151s-.052-1.076.248-1.414c.3-.337 1.724-.262 2.324-1.724 0 0 .47.179.845.742.309.464.396 1.563.396 1.563z"/><path fill="#A0041E" d="M16.5 17.957s-.803 2.028-1.071 2.869c-.268.842-.825 1.799-.825 1.799s1.694 1.477 2.995 1.438l1.885-2.74 1.674 2.359s1.708-1.229 2.884-1.433c0 0-1.497-3.069-1.841-3.719-.344-.65-1.186-1.492-1.186-1.492l-4.515.919z"/><path fill="#DD2E44" d="M15.549 8.805s1.274.075 1.799.112c0 0 .075.825 1.349.862 1.274.037 1.612-.637 1.612-.637s.975.075 1.687.525c.712.45 1.799.975 1.799.975s-1.012.862-.637 1.799l-1.012-.483s.3.671.188 1.083c-.112.412-.479.75-.521 1.125-.116 1.044.329 3.892.479 4.229 0 0-1.292-.333-3.188-.125-1.16.128-3.125.958-3.125.958.021-.812.589-2.827.729-3.896.137-1.041-.785-3.942-1.422-4.092-.637-.15-1.125-.187-1.125-.187s.15-.675 0-1.199c-.15-.525-.225-.9-.225-.9s1.163-.074 1.613-.149z"/><circle fill="#269" cx="5" cy="8" r="2"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#DD2E44" d="M28.65 31.29c.257.905.272 1.425.428 2.365.115.69.588 1.466 1.158 1.343.452-.097.795-.538.68-1.52-.061-.525-.205-.877-.393-1.416-.108-.311-.264-.74-.353-1.153-.097-.45-.438-.928-1.018-.802-.43.091-.674.58-.502 1.183z"/><path fill="#A0041E" d="M29.941 31.084c-.024-.017-.237-.141-.55-.054s-.425.267-.44.293c-.014.027.289.776.332.985.044.223.205.849.212.876.013.054.069.086.125.072l.597-.144c.056-.014.09-.068.077-.122l-.205-.845c-.058-.235-.123-1.044-.148-1.061z"/><path fill="#CCD6DD" d="M29.384 33.14c.016 0 .031-.002.047-.006l.91-.22c.107-.026.174-.134.147-.241-.026-.107-.134-.173-.241-.147l-.91.22c-.107.026-.174.134-.147.241.023.091.104.153.194.153zm-.174-.72c.016 0 .031-.002.047-.006l.91-.22c.107-.026.174-.134.147-.241-.025-.107-.135-.174-.241-.147l-.91.22c-.107.026-.174.134-.147.241.022.092.103.153.194.153zm-.174-.72c.016 0 .031-.002.047-.006l.91-.22c.107-.026.174-.134.147-.241s-.134-.174-.241-.147l-.91.22c-.107.026-.174.134-.147.241.022.092.103.153.194.153z"/><path fill="#DD2E44" d="M21.133 30.401c.18.923.402 1.394.688 2.302.21.667.139 1.573-.425 1.722-.447.118-.953-.12-1.294-1.047-.183-.496-.214-.875-.291-1.441-.044-.326-.1-.78-.207-1.188-.117-.445-.029-1.025.545-1.176.425-.113.864.213.984.828z"/><path fill="#A0041E" d="M20.862 30.571c-.024-.017-.24-.136-.551-.043-.311.094-.42.275-.434.302-.013.027.304.77.351.978.049.222.221.845.229.871.014.054.071.084.126.07l.594-.156c.056-.015.089-.07.075-.124l-.221-.841c-.062-.233-.144-1.041-.169-1.057z"/><path fill="#CCD6DD" d="M20.342 32.637c.017 0 .034-.002.051-.007l.905-.239c.107-.028.171-.137.143-.244-.027-.106-.137-.172-.244-.142l-.905.239c-.107.028-.171.137-.143.244.024.089.105.149.193.149zm-.188-.716c.017 0 .034-.002.051-.007l.905-.239c.107-.028.171-.137.143-.244-.027-.106-.138-.172-.244-.142l-.905.239c-.107.028-.171.137-.143.244.023.089.104.149.193.149zm-.189-.716c.017 0 .034-.002.051-.007l.905-.239c.107-.028.171-.137.143-.244-.028-.106-.139-.173-.244-.142l-.905.239c-.107.028-.171.137-.143.244.024.089.105.149.193.149z"/><g fill="#AF7E57"><path d="M19.958 24.146l2.5-1.438 1.281 2.614c.24.185.28.276 1.615 1.052 1.203.699 3.46 3.091 4.21 4.025.213.198.259.341.393.701l-1.023.266s-.182-.34-.476-.533c-1.438-.821-6.309-3.495-6.309-3.495-.394-.283-.64-.478-.78-.72 0 0-1.192-1.979-1.411-2.472zm-6.037-2.159l2.501 1.313c-.171.271-.513.854-.797 1.59-.083.213-.191.618.163.874.2.146.59.466.889.704.204.163.438.349.714.563.997.778 3.032 2.787 3.198 2.951.166.164.283.377.344.662-.087.019-.965.233-.965.233s-.123-.307-.421-.487c-.929-.561-6.214-3.599-6.214-3.599-.69-.495-1.067-.722-1.005-1.432.107-1.24 1.263-2.915 1.593-3.372zm8.503-12.665c.268-.28.705-.422 1.299-.422 1.689 0 3.358.215 3.783.3.118.023.173.024.301-.052.318-.188.435-.697.583-1.341.049-.217.102-.445.165-.672.279-1.001.588-2.46.55-2.736-.053-.384.312-3.219.356-3.262.071-.07.274.067.413.075.111.007.19.098.308.176.682.447.78 1.376.849 2 .042.386-.62 1.095-.684 1.502-.021.133-.048.804-.09 1.888-.044 1.135-.099 2.549-.141 2.788-.101.572-.208 1.186-1.01 1.382-.604.147-2.378.241-3.673.309-.65.035-1.213.064-1.512.093-.647.062-1.198-.058-1.515-.331-.192-.167-.296-.389-.309-.66-.016-.443.092-.793.327-1.037zM2.393 12.423c.285-.016.335-.059.612-.053.406.009.393.056.577.053.399-.006.967-.034 1.387-.084.31-.037 1.968-.116 2.419-.198.614-.113 1.384-.261 2.798-.152.794-.409 1.869-.87 2.823-1.279.699-.3 1.359-.583 1.802-.8.223-.109.442-.165.652-.165.156 0 .308.031.449.092.325.141.568.43.686.813.043.142.162.638-.108 1.073-.216.347-.624.573-1.214.671-.618.102-1.367.333-2.234.6-.857.265-1.82.561-2.804.772 0 0-1.555-.164-2.367-.213-1.124-.068-2.682-.362-3.092-.238-.518.157-1.068.303-1.715-.03-1.106-.569-2.212-.236-2.095-.707.027-.109.881-.125 1.424-.155zm15.779-7.43c.062-.564.59-1 1.148-.934.564.062.977.558.914 1.122l-.411 3.61.355.047s.363 1.057-1.449 1.057-1.621-.825-1.621-.825l.595-.113.469-3.964z"/><ellipse cx="18.833" cy="4.917" rx="2.625" ry="3"/></g><path fill="#60352A" d="M17.166 1.104c.699-.487 2.461-.66 3.656-.029.615.325 1.011.778 1.248 1.298.181-.193.487-.359 1.016-.403 1.196-.099 1.513 1.208 2.378 1.675.653.352 1.4.364 1.921.013 0 0-.716.867-1.52 1.198-1.045.43-2.333.154-2.947-.175-.258-.138-.452-.314-.604-.498-.01.089-.015.177-.03.266-.207 1.24-1.349 2.324-1.349 2.324s-.414-1.064-.227-1.085c.347-.039.555-1.105.264-1.389-.306-.299-.6 0-.675.3S20.02 5.75 20.02 5.75s.052-1.076-.248-1.414c-.3-.337-1.724-.262-2.324-1.724 0 0-.47.179-.845.742-.309.464-.396 1.562-.396 1.562s-.283-.678-.479-1.333c-.224-.749.543-1.855 1.438-2.479z"/><g fill="#A0041E"><path d="M20.896 18.375c.318 1.396 2.009 4.729 2.009 4.729s-1.639 1.477-2.987 1.437L17.963 21.7l-1.735 2.446s-1.713-1.274-2.931-1.485c0 0 1.666-3.182 2.023-3.856.357-.674 1.057-1.547 1.057-1.547s4.271.028 4.519 1.117z"/><path d="M19.815 24.612l-1.853-2.693-1.632 2.3c-.02.027-.049.046-.082.051-.032.004-.066-.003-.094-.022-.018-.013-1.703-1.259-2.879-1.463-.039-.007-.073-.032-.091-.067-.018-.036-.017-.078.002-.113 0 0 1.666-3.183 2.022-3.857.358-.676 1.042-1.53 1.07-1.566.023-.03.06-.047.098-.047h.001c.447.003 4.377.062 4.64 1.214.31 1.365 1.981 4.667 1.998 4.7.026.051.014.111-.028.149-.067.061-1.646 1.471-3.016 1.471-.058-.001-.123-.008-.156-.057zm.959-6.209c-.163-.714-2.72-1.001-4.336-1.019-.149.19-.707.912-1.008 1.479-.311.587-1.613 3.076-1.945 3.709 1.05.248 2.342 1.132 2.715 1.398l1.662-2.343c.023-.033.062-.053.102-.053h.001c.041 0 .079.021.102.054l1.918 2.788c1.115-.008 2.444-1.073 2.765-1.345-.275-.545-1.684-3.383-1.976-4.668z"/></g><path fill="#DD2E44" d="M22.043 8.722c-.549-.02-1.321.078-1.865.117 0 0-.078.855-1.399.894-1.321.039-1.671-.661-1.671-.661s-1.01.078-1.749.544c-.738.466-1.865.884-1.865.884s1.049 1.197.661 2.169l1.049-.315s-.352.593-.235 1.021c.117.427.538.88.581 1.269.12 1.082-.227 3.672-.383 4.021 0 0 1.225-.346 3.191-.13 1.202.133 3.042.965 3.042.965-.022-.842-.413-2.902-.559-4.01-.142-1.079.814-3.793 1.474-3.948.661-.155 1.166-.194 1.166-.194s-.155-.994 0-1.538.233-.933.233-.933-1.121-.135-1.671-.155z"/><circle fill="#269" cx="28.5" cy="2.917" r="2.055"/><path fill="#AF7E57" d="M29.282 1.82l.079-.014c-.134.021-.261-.069-.284-.203-.023-.135.068-.265.204-.289l.513-.092.825.901.25.922-.817.15c-.135.023-.265-.068-.288-.204-.022-.129.064-.248.189-.279l-.22.038c-.135.023-.265-.068-.288-.204-.023-.131.065-.253.194-.282l-.271.046c-.135.023-.265-.068-.288-.204s.066-.263.202-.286z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f93e-1f3ff-200d-2640-fe0f.svg b/public/emoji/1f93e-1f3ff-200d-2640-fe0f.svg
index 70e6b8a7d30fe6d7efc0f6a4a5dfebea338845be..ec3b45f83b5537e007c5f6e31c5c07cea1def404 100644
--- a/public/emoji/1f93e-1f3ff-200d-2640-fe0f.svg
+++ b/public/emoji/1f93e-1f3ff-200d-2640-fe0f.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><ellipse fill="#7C533E" cx="18.625" cy="5" rx="2.625" ry="3"/><path fill="#0B0200" d="M15.63 3.212s.193-1.038-1.258-1.158c-1.196-.099-1.513 1.208-2.378 1.675-.653.352-1.4.364-1.921.013 0 0 .716.867 1.52 1.198 1.045.43 2.333.154 2.947-.175.96-.515 1.09-1.553 1.09-1.553z"/><path fill="#DD2E44" d="M17.967 33.355c-.552 0-1-.447-1-1v-3c0-.553.448-1 1-1s1 .447 1 1v3c0 .553-.448 1-1 1zm-9.431 1.076c-.199.094-.43.123-.661.067-.537-.13-.866-.671-.736-1.208l.669-2.76c.13-.535.669-.866 1.207-.736.537.13.866.671.736 1.208l-.669 2.76c-.074.306-.281.544-.546.669z"/><path fill="#7C533E" d="M19.73 9.107l-.457-3.933c-.061-.549-.574-.973-1.117-.908-.549.061-.951.543-.889 1.092l.4 3.642h-4.584L7.228 6.106c-.55-.091-1.06.278-1.151.822-.091.545.277 1.06.822 1.151l5.389 2.787c.054.01.657.134.712.134h2.749c.009.262.086.588.251 1 1 2.5 3 8 3 8 2.209 0 2.625-4.723 2.625-7.208 0-.604.299-.753.197-1.101 1.171-.152 1.334.359 1.874.487 0 0-1.799-3.26-3.966-3.071z"/><path fill="#7C533E" d="M14.177 26.122c-.456-.402-.56-1.088-.216-1.612l4.817-7.347c.376-.574 1.147-.735 1.72-.359.571.382.734 1.147.358 1.72l-4.817 7.347c-.376.574-1.147.735-1.72.359-.052-.032-.098-.069-.142-.108z"/><path fill="#7C533E" d="M8.628 31.08c-.308-.458-.268-1.066.116-1.42l5.382-4.971c.42-.389 1.094-.325 1.505.142.407.471.403 1.161-.018 1.549l-5.382 4.971c-.42.388-1.095.325-1.505-.142-.036-.042-.068-.085-.098-.129zm8.861-1.75c-.184-.479-.029-1.019.384-1.257l5.786-3.347c.452-.262 1.041-.062 1.315.447.271.511.131 1.133-.322 1.394l-5.786 3.347c-.452.261-1.041.061-1.315-.447-.024-.045-.044-.09-.062-.137z"/><path fill="#7C533E" d="M24.304 26.637c-.533.185-1.136-.044-1.403-.561l-3.745-7.25c-.293-.566-.071-1.263.495-1.555.569-.288 1.263-.071 1.555.496l3.745 7.25c.293.566.071 1.263-.495 1.555-.05.026-.1.047-.152.065zm0-13.611l-3.85-2.008c-.457-.238-.636-.807-.398-1.264.238-.457.807-.636 1.264-.397l3.85 2.008c.457.238.636.807.398 1.264-.238.457-.807.636-1.264.397z"/><path fill="#7C533E" d="M30.07 13.88l-5.302-.783c-.51-.075-.865-.554-.79-1.064.075-.51.554-.865 1.064-.79l5.302.783c.51.075.865.554.79 1.064-.075.51-.554.865-1.064.79z"/><path fill="#0B0200" d="M21.25 5s.283-.678.479-1.333c.225-.75-.542-1.855-1.438-2.479-.699-.487-2.461-.66-3.656-.029-1.349.713-1.687 2.024-1.462 3.373.207 1.24 1.349 2.324 1.349 2.324s.414-1.064.227-1.085c-.347-.039-.555-1.105-.264-1.389.306-.299.6 0 .675.3.075.3.277 1.151.277 1.151s-.052-1.076.248-1.414c.3-.337 1.724-.262 2.324-1.724 0 0 .47.179.845.742.309.464.396 1.563.396 1.563z"/><path fill="#A0041E" d="M16.5 17.957s-.803 2.028-1.071 2.869c-.268.842-.825 1.799-.825 1.799s1.694 1.477 2.995 1.438l1.885-2.74 1.674 2.359s1.708-1.229 2.884-1.433c0 0-1.497-3.069-1.841-3.719-.344-.65-1.186-1.492-1.186-1.492l-4.515.919z"/><path fill="#DD2E44" d="M15.549 8.805s1.274.075 1.799.112c0 0 .075.825 1.349.862 1.274.037 1.612-.637 1.612-.637s.975.075 1.687.525c.712.45 1.799.975 1.799.975s-1.012.862-.637 1.799l-1.012-.483s.3.671.188 1.083c-.112.412-.479.75-.521 1.125-.116 1.044.329 3.892.479 4.229 0 0-1.292-.333-3.188-.125-1.16.128-3.125.958-3.125.958.021-.812.589-2.827.729-3.896.137-1.041-.785-3.942-1.422-4.092-.637-.15-1.125-.187-1.125-.187s.15-.675 0-1.199c-.15-.525-.225-.9-.225-.9s1.163-.074 1.613-.149z"/><circle fill="#269" cx="5" cy="8" r="2"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#DD2E44" d="M28.65 31.29c.257.905.272 1.425.428 2.365.115.69.588 1.466 1.158 1.343.452-.097.795-.538.68-1.52-.061-.525-.205-.877-.393-1.416-.108-.311-.264-.74-.353-1.153-.097-.45-.438-.928-1.018-.802-.43.091-.674.58-.502 1.183z"/><path fill="#A0041E" d="M29.941 31.084c-.024-.017-.237-.141-.55-.054s-.425.267-.44.293c-.014.027.289.776.332.985.044.223.205.849.212.876.013.054.069.086.125.072l.597-.144c.056-.014.09-.068.077-.122l-.205-.845c-.058-.235-.123-1.044-.148-1.061z"/><path fill="#CCD6DD" d="M29.384 33.14c.016 0 .031-.002.047-.006l.91-.22c.107-.026.174-.134.147-.241-.026-.107-.134-.173-.241-.147l-.91.22c-.107.026-.174.134-.147.241.023.091.104.153.194.153zm-.174-.72c.016 0 .031-.002.047-.006l.91-.22c.107-.026.174-.134.147-.241-.025-.107-.135-.174-.241-.147l-.91.22c-.107.026-.174.134-.147.241.022.092.103.153.194.153zm-.174-.72c.016 0 .031-.002.047-.006l.91-.22c.107-.026.174-.134.147-.241s-.134-.174-.241-.147l-.91.22c-.107.026-.174.134-.147.241.022.092.103.153.194.153z"/><path fill="#DD2E44" d="M21.133 30.401c.18.923.402 1.394.688 2.302.21.667.139 1.573-.425 1.722-.447.118-.953-.12-1.294-1.047-.183-.496-.214-.875-.291-1.441-.044-.326-.1-.78-.207-1.188-.117-.445-.029-1.025.545-1.176.425-.113.864.213.984.828z"/><path fill="#A0041E" d="M20.862 30.571c-.024-.017-.24-.136-.551-.043-.311.094-.42.275-.434.302-.013.027.304.77.351.978.049.222.221.845.229.871.014.054.071.084.126.07l.594-.156c.056-.015.089-.07.075-.124l-.221-.841c-.062-.233-.144-1.041-.169-1.057z"/><path fill="#CCD6DD" d="M20.342 32.637c.017 0 .034-.002.051-.007l.905-.239c.107-.028.171-.137.143-.244-.027-.106-.137-.172-.244-.142l-.905.239c-.107.028-.171.137-.143.244.024.089.105.149.193.149zm-.188-.716c.017 0 .034-.002.051-.007l.905-.239c.107-.028.171-.137.143-.244-.027-.106-.138-.172-.244-.142l-.905.239c-.107.028-.171.137-.143.244.023.089.104.149.193.149zm-.189-.716c.017 0 .034-.002.051-.007l.905-.239c.107-.028.171-.137.143-.244-.028-.106-.139-.173-.244-.142l-.905.239c-.107.028-.171.137-.143.244.024.089.105.149.193.149z"/><g fill="#7C533E"><path d="M19.958 24.146l2.5-1.438 1.281 2.614c.24.185.28.276 1.615 1.052 1.203.699 3.46 3.091 4.21 4.025.213.198.259.341.393.701l-1.023.266s-.182-.34-.476-.533c-1.438-.821-6.309-3.495-6.309-3.495-.394-.283-.64-.478-.78-.72 0 0-1.192-1.979-1.411-2.472zm-6.037-2.159l2.501 1.313c-.171.271-.513.854-.797 1.59-.083.213-.191.618.163.874.2.146.59.466.889.704.204.163.438.349.714.563.997.778 3.032 2.787 3.198 2.951.166.164.283.377.344.662-.087.019-.965.233-.965.233s-.123-.307-.421-.487c-.929-.561-6.214-3.599-6.214-3.599-.69-.495-1.067-.722-1.005-1.432.107-1.24 1.263-2.915 1.593-3.372zm8.503-12.665c.268-.28.705-.422 1.299-.422 1.689 0 3.358.215 3.783.3.118.023.173.024.301-.052.318-.188.435-.697.583-1.341.049-.217.102-.445.165-.672.279-1.001.588-2.46.55-2.736-.053-.384.312-3.219.356-3.262.071-.07.274.067.413.075.111.007.19.098.308.176.682.447.78 1.376.849 2 .042.386-.62 1.095-.684 1.502-.021.133-.048.804-.09 1.888-.044 1.135-.099 2.549-.141 2.788-.101.572-.208 1.186-1.01 1.382-.604.147-2.378.241-3.673.309-.65.035-1.213.064-1.512.093-.647.062-1.198-.058-1.515-.331-.192-.167-.296-.389-.309-.66-.016-.443.092-.793.327-1.037zM2.393 12.423c.285-.016.335-.059.612-.053.406.009.393.056.577.053.399-.006.967-.034 1.387-.084.31-.037 1.968-.116 2.419-.198.614-.113 1.384-.261 2.798-.152.794-.409 1.869-.87 2.823-1.279.699-.3 1.359-.583 1.802-.8.223-.109.442-.165.652-.165.156 0 .308.031.449.092.325.141.568.43.686.813.043.142.162.638-.108 1.073-.216.347-.624.573-1.214.671-.618.102-1.367.333-2.234.6-.857.265-1.82.561-2.804.772 0 0-1.555-.164-2.367-.213-1.124-.068-2.682-.362-3.092-.238-.518.157-1.068.303-1.715-.03-1.106-.569-2.212-.236-2.095-.707.027-.109.881-.125 1.424-.155zm15.779-7.43c.062-.564.59-1 1.148-.934.564.062.977.558.914 1.122l-.411 3.61.355.047s.363 1.057-1.449 1.057-1.621-.825-1.621-.825l.595-.113.469-3.964z"/><ellipse cx="18.833" cy="4.917" rx="2.625" ry="3"/></g><path fill="#0B0200" d="M17.166 1.104c.699-.487 2.461-.66 3.656-.029.615.325 1.011.778 1.248 1.298.181-.193.487-.359 1.016-.403 1.196-.099 1.513 1.208 2.378 1.675.653.352 1.4.364 1.921.013 0 0-.716.867-1.52 1.198-1.045.43-2.333.154-2.947-.175-.258-.138-.452-.314-.604-.498-.01.089-.015.177-.03.266-.207 1.24-1.349 2.324-1.349 2.324s-.414-1.064-.227-1.085c.347-.039.555-1.105.264-1.389-.306-.299-.6 0-.675.3S20.02 5.75 20.02 5.75s.052-1.076-.248-1.414c-.3-.337-1.724-.262-2.324-1.724 0 0-.47.179-.845.742-.309.464-.396 1.562-.396 1.562s-.283-.678-.479-1.333c-.224-.749.543-1.855 1.438-2.479z"/><g fill="#A0041E"><path d="M20.896 18.375c.318 1.396 2.009 4.729 2.009 4.729s-1.639 1.477-2.987 1.437L17.963 21.7l-1.735 2.446s-1.713-1.274-2.931-1.485c0 0 1.666-3.182 2.023-3.856.357-.674 1.057-1.547 1.057-1.547s4.271.028 4.519 1.117z"/><path d="M19.815 24.612l-1.853-2.693-1.632 2.3c-.02.027-.049.046-.082.051-.032.004-.066-.003-.094-.022-.018-.013-1.703-1.259-2.879-1.463-.039-.007-.073-.032-.091-.067-.018-.036-.017-.078.002-.113 0 0 1.666-3.183 2.022-3.857.358-.676 1.042-1.53 1.07-1.566.023-.03.06-.047.098-.047h.001c.447.003 4.377.062 4.64 1.214.31 1.365 1.981 4.667 1.998 4.7.026.051.014.111-.028.149-.067.061-1.646 1.471-3.016 1.471-.058-.001-.123-.008-.156-.057zm.959-6.209c-.163-.714-2.72-1.001-4.336-1.019-.149.19-.707.912-1.008 1.479-.311.587-1.613 3.076-1.945 3.709 1.05.248 2.342 1.132 2.715 1.398l1.662-2.343c.023-.033.062-.053.102-.053h.001c.041 0 .079.021.102.054l1.918 2.788c1.115-.008 2.444-1.073 2.765-1.345-.275-.545-1.684-3.383-1.976-4.668z"/></g><path fill="#DD2E44" d="M22.043 8.722c-.549-.02-1.321.078-1.865.117 0 0-.078.855-1.399.894-1.321.039-1.671-.661-1.671-.661s-1.01.078-1.749.544c-.738.466-1.865.884-1.865.884s1.049 1.197.661 2.169l1.049-.315s-.352.593-.235 1.021c.117.427.538.88.581 1.269.12 1.082-.227 3.672-.383 4.021 0 0 1.225-.346 3.191-.13 1.202.133 3.042.965 3.042.965-.022-.842-.413-2.902-.559-4.01-.142-1.079.814-3.793 1.474-3.948.661-.155 1.166-.194 1.166-.194s-.155-.994 0-1.538.233-.933.233-.933-1.121-.135-1.671-.155z"/><circle fill="#269" cx="28.5" cy="2.917" r="2.055"/><path fill="#7C533E" d="M29.282 1.82l.079-.014c-.134.021-.261-.069-.284-.203-.023-.135.068-.265.204-.289l.513-.092.825.901.25.922-.817.15c-.135.023-.265-.068-.288-.204-.022-.129.064-.248.189-.279l-.22.038c-.135.023-.265-.068-.288-.204-.023-.131.065-.253.194-.282l-.271.046c-.135.023-.265-.068-.288-.204s.066-.263.202-.286z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f93e-1f3ff-200d-2642-fe0f.svg b/public/emoji/1f93e-1f3ff-200d-2642-fe0f.svg
index b88ab08eb2daf9b538395f29c1f4a31d0c2ccc90..1d547f9bee1e4b145d99825177a59795963f45f5 100644
--- a/public/emoji/1f93e-1f3ff-200d-2642-fe0f.svg
+++ b/public/emoji/1f93e-1f3ff-200d-2642-fe0f.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#7C533E" d="M21.25 5c0-1.657-1.175-3-2.625-3C17.176 2 16 3.343 16 5s.984 3 2.719 3c.661 0 1.736-.132 2.198-.594.55-.55.333-1.505.333-2.406z"/><path fill="#4289C1" d="M17.967 33.355c-.552 0-1-.447-1-1v-3c0-.553.448-1 1-1s1 .447 1 1v3c0 .553-.448 1-1 1zm-9.431 1.076c-.199.094-.43.123-.661.067-.537-.13-.866-.671-.736-1.208l.669-2.76c.13-.535.669-.866 1.207-.736.537.13.866.671.736 1.208l-.669 2.76c-.074.306-.281.544-.546.669z"/><path fill="#7C533E" d="M19.73 9.107l-.457-3.933c-.061-.549-.574-.973-1.117-.908-.549.061-.951.543-.889 1.092l.4 3.642h-4.584L7.228 6.106c-.55-.091-1.06.278-1.151.822-.091.545.277 1.06.822 1.151l5.389 2.787c.054.01.657.134.712.134h2.749c.009.262.086.588.251 1 1 2.5 3 8 3 8 2.209 0 2.625-4.723 2.625-7.208 0-.604.299-.753.197-1.101 1.171-.152 1.334.359 1.874.487 0 0-1.799-3.26-3.966-3.071z"/><path fill="#7C533E" d="M14.177 26.122c-.456-.402-.56-1.088-.216-1.612l4.817-7.347c.376-.574 1.147-.735 1.72-.359.571.382.734 1.147.358 1.72l-4.817 7.347c-.376.574-1.147.735-1.72.359-.052-.032-.098-.069-.142-.108z"/><path fill="#7C533E" d="M8.628 31.08c-.308-.458-.268-1.066.116-1.42l5.382-4.971c.42-.389 1.094-.325 1.505.142.407.471.403 1.161-.018 1.549l-5.382 4.971c-.42.388-1.095.325-1.505-.142-.036-.042-.068-.085-.098-.129zm8.861-1.75c-.184-.479-.029-1.019.384-1.257l5.786-3.347c.452-.262 1.041-.062 1.315.447.271.511.131 1.133-.322 1.394l-5.786 3.347c-.452.261-1.041.061-1.315-.447-.024-.045-.044-.09-.062-.137z"/><path fill="#7C533E" d="M24.304 26.637c-.533.185-1.136-.044-1.403-.561l-3.745-7.25c-.293-.566-.071-1.263.495-1.555.569-.288 1.263-.071 1.555.496l3.745 7.25c.293.566.071 1.263-.495 1.555-.05.026-.1.047-.152.065zm0-13.611l-3.85-2.008c-.457-.238-.636-.807-.398-1.264.238-.457.807-.636 1.264-.397l3.85 2.008c.457.238.636.807.398 1.264-.238.457-.807.636-1.264.397z"/><path fill="#7C533E" d="M30.07 13.88l-5.302-.783c-.51-.075-.865-.554-.79-1.064.075-.51.554-.865 1.064-.79l5.302.783c.51.075.865.554.79 1.064-.075.51-.554.865-1.064.79z"/><path fill="#2A6797" d="M16.5 17.957s-.803 2.028-1.071 2.869c-.268.842-.825 1.799-.825 1.799s1.694 1.477 2.995 1.438l1.885-2.74 1.674 2.359s1.708-1.229 2.884-1.433c0 0-1.497-3.069-1.841-3.719-.344-.65-1.186-1.492-1.186-1.492l-4.515.919z"/><path fill="#4289C1" d="M15.549 8.805s1.274.075 1.799.112c0 0 .075.825 1.349.862 1.274.037 1.612-.637 1.612-.637s.975.075 1.687.525c.712.45 1.799.975 1.799.975s-1.012.862-.637 1.799l-1.012-.483s.135.417.198 1.198c.094 1.174-.202 4.902-.052 5.24 0 0-1.292-.333-3.188-.125-1.16.128-3.323.958-3.323.958.302-1.26.483-3.152.531-4.229.094-2.115-.389-3.609-1.026-3.759-.637-.15-1.125-.187-1.125-.187s.15-.675 0-1.199c-.15-.525-.225-.9-.225-.9s1.163-.075 1.613-.15z"/><circle fill="#269" cx="5" cy="8" r="2"/><path fill="#0B0200" d="M20.292 1.188c-.699-.487-2.461-.66-3.656-.029-1.349.713-1.687 2.024-1.462 3.373.207 1.24.803 1.754.803 1.754.229.247.837-.402.488-.95-.409-.643-.294-1.401.169-1.448.327-.034.678.158.584.451-.113.353.032.498.032.498s.269.192.54-.627c.142-.429 1.157-.362 2.648-1.038.176-.08.625.422.752 1.539.027.241.477-.502.54-1.044.103-.899-.543-1.855-1.438-2.479z"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#1C6399" d="M28.648 31.324c.294.944.323 1.49.512 2.473.139.722.656 1.525 1.252 1.381.472-.114.821-.587.675-1.614-.078-.55-.238-.916-.45-1.477-.122-.324-.297-.771-.401-1.202-.114-.47-.484-.963-1.091-.816-.45.107-.693.627-.497 1.255z"/><path fill="#3B94D9" d="M29.952 31.074c-.026-.017-.255-.137-.58-.031-.325.106-.434.3-.448.328-.013.028.339.801.394 1.019.057.232.254.882.263.909.016.056.076.087.134.07l.62-.179c.059-.017.092-.076.076-.132l-.254-.878c-.071-.243-.178-1.089-.205-1.106z"/><path fill="#CCD6DD" d="M29.463 33.264c.019 0 .037-.002.057-.008l.944-.277c.105-.031.166-.142.136-.248-.031-.106-.137-.167-.249-.136l-.944.277c-.105.031-.166.142-.136.248.026.087.105.144.192.144zm-.22-.747c.019 0 .037-.002.057-.008l.944-.277c.105-.031.166-.142.136-.248-.031-.106-.137-.167-.249-.136l-.944.277c-.105.031-.166.142-.136.248.026.088.105.144.192.144zm-.218-.747c.019 0 .037-.002.057-.008l.944-.277c.105-.031.166-.142.136-.248-.031-.106-.137-.167-.249-.136l-.944.277c-.105.031-.166.142-.136.248.026.088.105.144.192.144z"/><path fill="#1C6399" d="M21.01 30.366c.189.97.423 1.465.723 2.419.22.701.146 1.653-.446 1.809-.469.124-1.001-.127-1.36-1.101-.192-.521-.225-.919-.306-1.514-.046-.343-.105-.819-.218-1.249-.123-.468-.031-1.077.573-1.236.447-.116.908.226 1.034.872z"/><path fill="#3B94D9" d="M20.725 30.544c-.026-.018-.252-.143-.579-.045-.327.098-.441.289-.456.317-.014.028.319.809.369 1.028.051.233.233.888.241.915.015.056.074.089.132.073l.624-.164c.059-.016.094-.074.079-.13l-.233-.883c-.064-.245-.15-1.093-.177-1.111z"/><path fill="#CCD6DD" d="M20.18 32.705c.017 0 .034-.002.051-.007l.951-.25c.107-.028.171-.137.143-.244-.027-.106-.138-.172-.244-.142l-.951.25c-.107.028-.171.137-.143.244.023.09.104.149.193.149zm-.198-.752c.017 0 .034-.002.051-.007l.951-.251c.107-.028.171-.137.143-.244-.028-.106-.138-.172-.244-.142l-.951.251c-.107.028-.171.137-.143.244.023.09.104.149.193.149zm-.199-.753c.017 0 .034-.002.051-.007l.951-.251c.107-.028.171-.137.143-.244-.028-.106-.138-.172-.244-.142l-.951.251c-.107.028-.171.137-.143.244.023.09.105.149.193.149z"/><g fill="#7C533E"><path d="M20.093 24.067l2.664-1.668 1.149 2.757c.24.185.28.276 1.615 1.052 1.203.699 3.041 2.897 3.791 3.832.213.198.504.544.646 1.061-.566.137-1.023.266-1.023.266s-.171-.202-.466-.396c-1.438-.821-6.319-3.633-6.319-3.633-.394-.283-.64-.478-.78-.72l-.01.006c-.954-1.365-1.048-2.063-1.267-2.557zm-6.532-2.196l2.815 1.487c-.171.271-.513.854-.797 1.59-.083.213-.132.49.223.746.2.146.433.331.731.568.204.163.438.349.714.563.997.778 2.582 2.469 2.694 2.575.059.056.145.12.239.202.08.07.165.163.248.278.002.004.005.005.007.008l.002.005c.12.17.231.388.292.673-.087.019-.965.233-.965.233s-.164-.223-.464-.399c-.907-.513-5.677-3.215-6.356-3.703l-.062-.044c-.69-.495-.977-.699-.915-1.409.108-1.241 1.264-2.916 1.594-3.373zm8.389-11.505c-.03-.672.209-1.616 1.772-1.616 1.699 0 3.246.172 3.686.298.651.186.707-.9 1.002-1.952.295-1.056.577-2.448.546-2.676-.053-.384.461-3.239.505-3.282.072-.07.275.067.413.075.111.007.19.098.308.176.682.447.906 1.376.974 2 .042.386-.597 1.118-.661 1.525-.047.301-.154 4.237-.231 4.678-.095.539-.207 1.278-1.122 1.502-.916.223-4.298.317-5.205.406-1.039.102-1.947-.243-1.987-1.134zM2.177 12.341c.285-.018.335-.066.612-.059.406.01.393.062.577.059.399-.007.967-.038 1.387-.094.31-.041 1.968-.32 2.419-.413.614-.126 1.372-.353 2.786-.23v-.001c1.217-.728 3.875-1.827 4.754-2.147 1.009-.367 2.187 2.707.602 2.97-1.277.211-3.237 1.018-5.292 1.425l-.001-.032c-.023.016-.037.039-.062.052 0 0-1.491-.204-2.303-.259-1.124-.076-2.682-.406-3.092-.267-.518.176-1.068.34-1.715-.034-1.106-.639-2.212-.265-2.095-.794.026-.124.88-.142 1.423-.176zm15.996-7.515c.062-.564.59-1 1.148-.934.564.062.977.558.914 1.122l-.411 3.61.328.048s.391 1.056-1.422 1.056-1.621-.825-1.621-.825l.595-.113.469-3.964z"/><path d="M16.142 4.648c0-1.702 1.208-3.083 2.697-3.083s2.697 1.38 2.697 3.083-1.011 3.082-2.794 3.082c-.68 0-1.784-.136-2.258-.61-.565-.565-.342-1.547-.342-2.472z"/></g><path fill="#0B0200" d="M17.126.73c.718-.5 2.529-.678 3.757-.029 1.386.732 1.733 2.08 1.502 3.466-.212 1.274-.825 1.802-.825 1.802-.235.254-.86-.413-.502-.977.42-.66.302-1.439-.174-1.488-.336-.034-.697.162-.6.464.116.363-.033.512-.033.512s-.277.197-.555-.644c-.146-.441-1.189-.372-2.721-1.066-.181-.082-.642.433-.772 1.581-.028.248-.491-.516-.555-1.073-.105-.923.558-1.906 1.478-2.548z"/><g fill="#1C6399"><path d="M21.211 17.894s.826 2.083 1.101 2.948c.275.865.848 1.848.848 1.848s-1.729 1.586-3.066 1.546l-1.843-3.299-2.021 2.896s-1.959-1.333-3.167-1.542c0 0 1.709-3.03 2.062-3.698.354-.668.75-1.094.75-1.094l5.336.395z"/><path d="M20.089 24.411c-.062-.002-.118-.036-.148-.09l-1.707-3.055-1.86 2.667c-.055.077-.163.097-.242.044-.019-.013-1.941-1.313-3.099-1.513-.056-.01-.104-.047-.128-.098-.024-.052-.022-.111.006-.161.017-.03 1.712-3.036 2.061-3.694.359-.681.76-1.113.776-1.131.036-.038.085-.06.141-.055l5.335.394c.067.005.125.047.15.11.034.085.831 2.099 1.105 2.96.266.836.827 1.804.833 1.813.042.071.027.161-.033.217-.072.066-1.754 1.593-3.136 1.593l-.054-.001zm2.055-3.516c-.235-.74-.887-2.406-1.056-2.834l-5.139-.379c-.118.138-.407.499-.67.995-.296.561-1.557 2.802-1.948 3.496 1.036.27 2.407 1.13 2.853 1.421l1.923-2.756c.034-.049.092-.072.152-.074.06.003.115.037.144.09l1.793 3.209c1.054-.035 2.366-1.089 2.741-1.409-.164-.298-.57-1.059-.793-1.759z"/></g><path fill="#4289C1" d="M22.141 8.562c-.812 0-1.45.072-1.99.111 0 0-.077.847-1.387.886-1.309.039-1.656-.655-1.656-.655s-1.411-.055-2.143.407l-1.606.685s.915 1.338.821 2.719l.74-.212s-.032.025-.068.525c-.088 1.207.208 5.343.054 5.69 0 0 1.521.536 3.469.75 1.192.131 3.703.106 3.703.106-.31-1.295-.529-3.545-.578-4.652-.096-2.173.497-3.318.708-3.298.896.083 1.729-.125 1.729-.125s-.375-.688-.292-1.458c.083-.771.312-1.292.312-1.292s-1.004-.187-1.816-.187z"/><circle fill="#269" cx="28.5" cy="2.917" r="2.055"/><path fill="#7C533E" d="M29.282 1.82l.079-.014c-.134.021-.261-.069-.284-.203-.023-.135.068-.265.204-.289l.513-.092.825.901.25.922-.817.15c-.135.023-.265-.068-.288-.204-.022-.129.064-.248.189-.279l-.22.038c-.135.023-.265-.068-.288-.204-.023-.131.065-.253.194-.282l-.271.046c-.135.023-.265-.068-.288-.204s.067-.263.202-.286z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f93e-1f3ff.svg b/public/emoji/1f93e-1f3ff.svg
index 70e6b8a7d30fe6d7efc0f6a4a5dfebea338845be..ec3b45f83b5537e007c5f6e31c5c07cea1def404 100644
--- a/public/emoji/1f93e-1f3ff.svg
+++ b/public/emoji/1f93e-1f3ff.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><ellipse fill="#7C533E" cx="18.625" cy="5" rx="2.625" ry="3"/><path fill="#0B0200" d="M15.63 3.212s.193-1.038-1.258-1.158c-1.196-.099-1.513 1.208-2.378 1.675-.653.352-1.4.364-1.921.013 0 0 .716.867 1.52 1.198 1.045.43 2.333.154 2.947-.175.96-.515 1.09-1.553 1.09-1.553z"/><path fill="#DD2E44" d="M17.967 33.355c-.552 0-1-.447-1-1v-3c0-.553.448-1 1-1s1 .447 1 1v3c0 .553-.448 1-1 1zm-9.431 1.076c-.199.094-.43.123-.661.067-.537-.13-.866-.671-.736-1.208l.669-2.76c.13-.535.669-.866 1.207-.736.537.13.866.671.736 1.208l-.669 2.76c-.074.306-.281.544-.546.669z"/><path fill="#7C533E" d="M19.73 9.107l-.457-3.933c-.061-.549-.574-.973-1.117-.908-.549.061-.951.543-.889 1.092l.4 3.642h-4.584L7.228 6.106c-.55-.091-1.06.278-1.151.822-.091.545.277 1.06.822 1.151l5.389 2.787c.054.01.657.134.712.134h2.749c.009.262.086.588.251 1 1 2.5 3 8 3 8 2.209 0 2.625-4.723 2.625-7.208 0-.604.299-.753.197-1.101 1.171-.152 1.334.359 1.874.487 0 0-1.799-3.26-3.966-3.071z"/><path fill="#7C533E" d="M14.177 26.122c-.456-.402-.56-1.088-.216-1.612l4.817-7.347c.376-.574 1.147-.735 1.72-.359.571.382.734 1.147.358 1.72l-4.817 7.347c-.376.574-1.147.735-1.72.359-.052-.032-.098-.069-.142-.108z"/><path fill="#7C533E" d="M8.628 31.08c-.308-.458-.268-1.066.116-1.42l5.382-4.971c.42-.389 1.094-.325 1.505.142.407.471.403 1.161-.018 1.549l-5.382 4.971c-.42.388-1.095.325-1.505-.142-.036-.042-.068-.085-.098-.129zm8.861-1.75c-.184-.479-.029-1.019.384-1.257l5.786-3.347c.452-.262 1.041-.062 1.315.447.271.511.131 1.133-.322 1.394l-5.786 3.347c-.452.261-1.041.061-1.315-.447-.024-.045-.044-.09-.062-.137z"/><path fill="#7C533E" d="M24.304 26.637c-.533.185-1.136-.044-1.403-.561l-3.745-7.25c-.293-.566-.071-1.263.495-1.555.569-.288 1.263-.071 1.555.496l3.745 7.25c.293.566.071 1.263-.495 1.555-.05.026-.1.047-.152.065zm0-13.611l-3.85-2.008c-.457-.238-.636-.807-.398-1.264.238-.457.807-.636 1.264-.397l3.85 2.008c.457.238.636.807.398 1.264-.238.457-.807.636-1.264.397z"/><path fill="#7C533E" d="M30.07 13.88l-5.302-.783c-.51-.075-.865-.554-.79-1.064.075-.51.554-.865 1.064-.79l5.302.783c.51.075.865.554.79 1.064-.075.51-.554.865-1.064.79z"/><path fill="#0B0200" d="M21.25 5s.283-.678.479-1.333c.225-.75-.542-1.855-1.438-2.479-.699-.487-2.461-.66-3.656-.029-1.349.713-1.687 2.024-1.462 3.373.207 1.24 1.349 2.324 1.349 2.324s.414-1.064.227-1.085c-.347-.039-.555-1.105-.264-1.389.306-.299.6 0 .675.3.075.3.277 1.151.277 1.151s-.052-1.076.248-1.414c.3-.337 1.724-.262 2.324-1.724 0 0 .47.179.845.742.309.464.396 1.563.396 1.563z"/><path fill="#A0041E" d="M16.5 17.957s-.803 2.028-1.071 2.869c-.268.842-.825 1.799-.825 1.799s1.694 1.477 2.995 1.438l1.885-2.74 1.674 2.359s1.708-1.229 2.884-1.433c0 0-1.497-3.069-1.841-3.719-.344-.65-1.186-1.492-1.186-1.492l-4.515.919z"/><path fill="#DD2E44" d="M15.549 8.805s1.274.075 1.799.112c0 0 .075.825 1.349.862 1.274.037 1.612-.637 1.612-.637s.975.075 1.687.525c.712.45 1.799.975 1.799.975s-1.012.862-.637 1.799l-1.012-.483s.3.671.188 1.083c-.112.412-.479.75-.521 1.125-.116 1.044.329 3.892.479 4.229 0 0-1.292-.333-3.188-.125-1.16.128-3.125.958-3.125.958.021-.812.589-2.827.729-3.896.137-1.041-.785-3.942-1.422-4.092-.637-.15-1.125-.187-1.125-.187s.15-.675 0-1.199c-.15-.525-.225-.9-.225-.9s1.163-.074 1.613-.149z"/><circle fill="#269" cx="5" cy="8" r="2"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#DD2E44" d="M28.65 31.29c.257.905.272 1.425.428 2.365.115.69.588 1.466 1.158 1.343.452-.097.795-.538.68-1.52-.061-.525-.205-.877-.393-1.416-.108-.311-.264-.74-.353-1.153-.097-.45-.438-.928-1.018-.802-.43.091-.674.58-.502 1.183z"/><path fill="#A0041E" d="M29.941 31.084c-.024-.017-.237-.141-.55-.054s-.425.267-.44.293c-.014.027.289.776.332.985.044.223.205.849.212.876.013.054.069.086.125.072l.597-.144c.056-.014.09-.068.077-.122l-.205-.845c-.058-.235-.123-1.044-.148-1.061z"/><path fill="#CCD6DD" d="M29.384 33.14c.016 0 .031-.002.047-.006l.91-.22c.107-.026.174-.134.147-.241-.026-.107-.134-.173-.241-.147l-.91.22c-.107.026-.174.134-.147.241.023.091.104.153.194.153zm-.174-.72c.016 0 .031-.002.047-.006l.91-.22c.107-.026.174-.134.147-.241-.025-.107-.135-.174-.241-.147l-.91.22c-.107.026-.174.134-.147.241.022.092.103.153.194.153zm-.174-.72c.016 0 .031-.002.047-.006l.91-.22c.107-.026.174-.134.147-.241s-.134-.174-.241-.147l-.91.22c-.107.026-.174.134-.147.241.022.092.103.153.194.153z"/><path fill="#DD2E44" d="M21.133 30.401c.18.923.402 1.394.688 2.302.21.667.139 1.573-.425 1.722-.447.118-.953-.12-1.294-1.047-.183-.496-.214-.875-.291-1.441-.044-.326-.1-.78-.207-1.188-.117-.445-.029-1.025.545-1.176.425-.113.864.213.984.828z"/><path fill="#A0041E" d="M20.862 30.571c-.024-.017-.24-.136-.551-.043-.311.094-.42.275-.434.302-.013.027.304.77.351.978.049.222.221.845.229.871.014.054.071.084.126.07l.594-.156c.056-.015.089-.07.075-.124l-.221-.841c-.062-.233-.144-1.041-.169-1.057z"/><path fill="#CCD6DD" d="M20.342 32.637c.017 0 .034-.002.051-.007l.905-.239c.107-.028.171-.137.143-.244-.027-.106-.137-.172-.244-.142l-.905.239c-.107.028-.171.137-.143.244.024.089.105.149.193.149zm-.188-.716c.017 0 .034-.002.051-.007l.905-.239c.107-.028.171-.137.143-.244-.027-.106-.138-.172-.244-.142l-.905.239c-.107.028-.171.137-.143.244.023.089.104.149.193.149zm-.189-.716c.017 0 .034-.002.051-.007l.905-.239c.107-.028.171-.137.143-.244-.028-.106-.139-.173-.244-.142l-.905.239c-.107.028-.171.137-.143.244.024.089.105.149.193.149z"/><g fill="#7C533E"><path d="M19.958 24.146l2.5-1.438 1.281 2.614c.24.185.28.276 1.615 1.052 1.203.699 3.46 3.091 4.21 4.025.213.198.259.341.393.701l-1.023.266s-.182-.34-.476-.533c-1.438-.821-6.309-3.495-6.309-3.495-.394-.283-.64-.478-.78-.72 0 0-1.192-1.979-1.411-2.472zm-6.037-2.159l2.501 1.313c-.171.271-.513.854-.797 1.59-.083.213-.191.618.163.874.2.146.59.466.889.704.204.163.438.349.714.563.997.778 3.032 2.787 3.198 2.951.166.164.283.377.344.662-.087.019-.965.233-.965.233s-.123-.307-.421-.487c-.929-.561-6.214-3.599-6.214-3.599-.69-.495-1.067-.722-1.005-1.432.107-1.24 1.263-2.915 1.593-3.372zm8.503-12.665c.268-.28.705-.422 1.299-.422 1.689 0 3.358.215 3.783.3.118.023.173.024.301-.052.318-.188.435-.697.583-1.341.049-.217.102-.445.165-.672.279-1.001.588-2.46.55-2.736-.053-.384.312-3.219.356-3.262.071-.07.274.067.413.075.111.007.19.098.308.176.682.447.78 1.376.849 2 .042.386-.62 1.095-.684 1.502-.021.133-.048.804-.09 1.888-.044 1.135-.099 2.549-.141 2.788-.101.572-.208 1.186-1.01 1.382-.604.147-2.378.241-3.673.309-.65.035-1.213.064-1.512.093-.647.062-1.198-.058-1.515-.331-.192-.167-.296-.389-.309-.66-.016-.443.092-.793.327-1.037zM2.393 12.423c.285-.016.335-.059.612-.053.406.009.393.056.577.053.399-.006.967-.034 1.387-.084.31-.037 1.968-.116 2.419-.198.614-.113 1.384-.261 2.798-.152.794-.409 1.869-.87 2.823-1.279.699-.3 1.359-.583 1.802-.8.223-.109.442-.165.652-.165.156 0 .308.031.449.092.325.141.568.43.686.813.043.142.162.638-.108 1.073-.216.347-.624.573-1.214.671-.618.102-1.367.333-2.234.6-.857.265-1.82.561-2.804.772 0 0-1.555-.164-2.367-.213-1.124-.068-2.682-.362-3.092-.238-.518.157-1.068.303-1.715-.03-1.106-.569-2.212-.236-2.095-.707.027-.109.881-.125 1.424-.155zm15.779-7.43c.062-.564.59-1 1.148-.934.564.062.977.558.914 1.122l-.411 3.61.355.047s.363 1.057-1.449 1.057-1.621-.825-1.621-.825l.595-.113.469-3.964z"/><ellipse cx="18.833" cy="4.917" rx="2.625" ry="3"/></g><path fill="#0B0200" d="M17.166 1.104c.699-.487 2.461-.66 3.656-.029.615.325 1.011.778 1.248 1.298.181-.193.487-.359 1.016-.403 1.196-.099 1.513 1.208 2.378 1.675.653.352 1.4.364 1.921.013 0 0-.716.867-1.52 1.198-1.045.43-2.333.154-2.947-.175-.258-.138-.452-.314-.604-.498-.01.089-.015.177-.03.266-.207 1.24-1.349 2.324-1.349 2.324s-.414-1.064-.227-1.085c.347-.039.555-1.105.264-1.389-.306-.299-.6 0-.675.3S20.02 5.75 20.02 5.75s.052-1.076-.248-1.414c-.3-.337-1.724-.262-2.324-1.724 0 0-.47.179-.845.742-.309.464-.396 1.562-.396 1.562s-.283-.678-.479-1.333c-.224-.749.543-1.855 1.438-2.479z"/><g fill="#A0041E"><path d="M20.896 18.375c.318 1.396 2.009 4.729 2.009 4.729s-1.639 1.477-2.987 1.437L17.963 21.7l-1.735 2.446s-1.713-1.274-2.931-1.485c0 0 1.666-3.182 2.023-3.856.357-.674 1.057-1.547 1.057-1.547s4.271.028 4.519 1.117z"/><path d="M19.815 24.612l-1.853-2.693-1.632 2.3c-.02.027-.049.046-.082.051-.032.004-.066-.003-.094-.022-.018-.013-1.703-1.259-2.879-1.463-.039-.007-.073-.032-.091-.067-.018-.036-.017-.078.002-.113 0 0 1.666-3.183 2.022-3.857.358-.676 1.042-1.53 1.07-1.566.023-.03.06-.047.098-.047h.001c.447.003 4.377.062 4.64 1.214.31 1.365 1.981 4.667 1.998 4.7.026.051.014.111-.028.149-.067.061-1.646 1.471-3.016 1.471-.058-.001-.123-.008-.156-.057zm.959-6.209c-.163-.714-2.72-1.001-4.336-1.019-.149.19-.707.912-1.008 1.479-.311.587-1.613 3.076-1.945 3.709 1.05.248 2.342 1.132 2.715 1.398l1.662-2.343c.023-.033.062-.053.102-.053h.001c.041 0 .079.021.102.054l1.918 2.788c1.115-.008 2.444-1.073 2.765-1.345-.275-.545-1.684-3.383-1.976-4.668z"/></g><path fill="#DD2E44" d="M22.043 8.722c-.549-.02-1.321.078-1.865.117 0 0-.078.855-1.399.894-1.321.039-1.671-.661-1.671-.661s-1.01.078-1.749.544c-.738.466-1.865.884-1.865.884s1.049 1.197.661 2.169l1.049-.315s-.352.593-.235 1.021c.117.427.538.88.581 1.269.12 1.082-.227 3.672-.383 4.021 0 0 1.225-.346 3.191-.13 1.202.133 3.042.965 3.042.965-.022-.842-.413-2.902-.559-4.01-.142-1.079.814-3.793 1.474-3.948.661-.155 1.166-.194 1.166-.194s-.155-.994 0-1.538.233-.933.233-.933-1.121-.135-1.671-.155z"/><circle fill="#269" cx="28.5" cy="2.917" r="2.055"/><path fill="#7C533E" d="M29.282 1.82l.079-.014c-.134.021-.261-.069-.284-.203-.023-.135.068-.265.204-.289l.513-.092.825.901.25.922-.817.15c-.135.023-.265-.068-.288-.204-.022-.129.064-.248.189-.279l-.22.038c-.135.023-.265-.068-.288-.204-.023-.131.065-.253.194-.282l-.271.046c-.135.023-.265-.068-.288-.204s.066-.263.202-.286z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f93e-200d-2640-fe0f.svg b/public/emoji/1f93e-200d-2640-fe0f.svg
index f1a18f0463ef4c4584d4a490696e5ac4c2165ca1..28e86b3eff604008f8c7a7c0b3604f6640f13ffe 100644
--- a/public/emoji/1f93e-200d-2640-fe0f.svg
+++ b/public/emoji/1f93e-200d-2640-fe0f.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><ellipse fill="#FFDC5D" cx="18.625" cy="5" rx="2.625" ry="3"/><path fill="#FFAC33" d="M15.63 3.212s.193-1.038-1.258-1.158c-1.196-.099-1.513 1.208-2.378 1.675-.653.352-1.4.364-1.921.013 0 0 .716.867 1.52 1.198 1.045.43 2.333.154 2.947-.175.96-.515 1.09-1.553 1.09-1.553z"/><path fill="#DD2E44" d="M17.967 33.355c-.552 0-1-.447-1-1v-3c0-.553.448-1 1-1s1 .447 1 1v3c0 .553-.448 1-1 1zm-9.431 1.076c-.199.094-.43.123-.661.067-.537-.13-.866-.671-.736-1.208l.669-2.76c.13-.535.669-.866 1.207-.736.537.13.866.671.736 1.208l-.669 2.76c-.074.306-.281.544-.546.669z"/><path fill="#FFDC5D" d="M19.73 9.107l-.457-3.933c-.061-.549-.574-.973-1.117-.908-.549.061-.951.543-.889 1.092l.4 3.642h-4.584L7.228 6.106c-.55-.091-1.06.278-1.151.822-.091.545.277 1.06.822 1.151l5.389 2.787c.054.01.657.134.712.134h2.749c.009.262.086.588.251 1 1 2.5 3 8 3 8 2.209 0 2.625-4.723 2.625-7.208 0-.604.299-.753.197-1.101 1.171-.152 1.334.359 1.874.487 0 0-1.799-3.26-3.966-3.071z"/><path fill="#FFDC5D" d="M14.177 26.122c-.456-.402-.56-1.088-.216-1.612l4.817-7.347c.376-.574 1.147-.735 1.72-.359.571.382.734 1.147.358 1.72l-4.817 7.347c-.376.574-1.147.735-1.72.359-.052-.032-.098-.069-.142-.108z"/><path fill="#FFDC5D" d="M8.628 31.08c-.308-.458-.268-1.066.116-1.42l5.382-4.971c.42-.389 1.094-.325 1.505.142.407.471.403 1.161-.018 1.549l-5.382 4.971c-.42.388-1.095.325-1.505-.142-.036-.042-.068-.085-.098-.129zm8.861-1.75c-.184-.479-.029-1.019.384-1.257l5.786-3.347c.452-.262 1.041-.062 1.315.447.271.511.131 1.133-.322 1.394l-5.786 3.347c-.452.261-1.041.061-1.315-.447-.024-.045-.044-.09-.062-.137z"/><path fill="#FFDC5D" d="M24.304 26.637c-.533.185-1.136-.044-1.403-.561l-3.745-7.25c-.293-.566-.071-1.263.495-1.555.569-.288 1.263-.071 1.555.496l3.745 7.25c.293.566.071 1.263-.495 1.555-.05.026-.1.047-.152.065zm0-13.611l-3.85-2.008c-.457-.238-.636-.807-.398-1.264.238-.457.807-.636 1.264-.397l3.85 2.008c.457.238.636.807.398 1.264-.238.457-.807.636-1.264.397z"/><path fill="#FFDC5D" d="M30.07 13.88l-5.302-.783c-.51-.075-.865-.554-.79-1.064.075-.51.554-.865 1.064-.79l5.302.783c.51.075.865.554.79 1.064-.075.51-.554.865-1.064.79z"/><path fill="#FFAC33" d="M21.25 5s.283-.678.479-1.333c.225-.75-.542-1.855-1.438-2.479-.699-.487-2.461-.66-3.656-.029-1.349.713-1.687 2.024-1.462 3.373.207 1.24 1.349 2.324 1.349 2.324s.414-1.064.227-1.085c-.347-.039-.555-1.105-.264-1.389.306-.299.6 0 .675.3.075.3.277 1.151.277 1.151s-.052-1.076.248-1.414c.3-.337 1.724-.262 2.324-1.724 0 0 .47.179.845.742.309.464.396 1.563.396 1.563z"/><path fill="#A0041E" d="M16.5 17.957s-.803 2.028-1.071 2.869c-.268.842-.825 1.799-.825 1.799s1.694 1.477 2.995 1.438l1.885-2.74 1.674 2.359s1.708-1.229 2.884-1.433c0 0-1.497-3.069-1.841-3.719-.344-.65-1.186-1.492-1.186-1.492l-4.515.919z"/><path fill="#DD2E44" d="M15.549 8.805s1.274.075 1.799.112c0 0 .075.825 1.349.862 1.274.037 1.612-.637 1.612-.637s.975.075 1.687.525c.712.45 1.799.975 1.799.975s-1.012.862-.637 1.799l-1.012-.483s.3.671.188 1.083c-.112.412-.479.75-.521 1.125-.116 1.044.329 3.892.479 4.229 0 0-1.292-.333-3.188-.125-1.16.128-3.125.958-3.125.958.021-.812.589-2.827.729-3.896.137-1.041-.785-3.942-1.422-4.092-.637-.15-1.125-.187-1.125-.187s.15-.675 0-1.199c-.15-.525-.225-.9-.225-.9s1.163-.074 1.613-.149z"/><circle fill="#269" cx="5" cy="8" r="2"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#DD2E44" d="M28.65 31.29c.257.905.272 1.425.428 2.365.115.69.588 1.466 1.158 1.343.452-.097.795-.538.68-1.52-.061-.525-.205-.877-.393-1.416-.108-.311-.264-.74-.353-1.153-.097-.45-.438-.928-1.018-.802-.43.091-.674.58-.502 1.183z"/><path fill="#A0041E" d="M29.941 31.084c-.024-.017-.237-.141-.55-.054s-.425.267-.44.293c-.014.027.289.776.332.985.044.223.205.849.212.876.013.054.069.086.125.072l.597-.144c.056-.014.09-.068.077-.122l-.205-.845c-.058-.235-.123-1.044-.148-1.061z"/><path fill="#CCD6DD" d="M29.384 33.14c.016 0 .031-.002.047-.006l.91-.22c.107-.026.174-.134.147-.241-.026-.107-.134-.173-.241-.147l-.91.22c-.107.026-.174.134-.147.241.023.091.104.153.194.153zm-.174-.72c.016 0 .031-.002.047-.006l.91-.22c.107-.026.174-.134.147-.241-.025-.107-.135-.174-.241-.147l-.91.22c-.107.026-.174.134-.147.241.022.092.103.153.194.153zm-.174-.72c.016 0 .031-.002.047-.006l.91-.22c.107-.026.174-.134.147-.241s-.134-.174-.241-.147l-.91.22c-.107.026-.174.134-.147.241.022.092.103.153.194.153z"/><path fill="#DD2E44" d="M21.133 30.401c.18.923.402 1.394.688 2.302.21.667.139 1.573-.425 1.722-.447.118-.953-.12-1.294-1.047-.183-.496-.214-.875-.291-1.441-.044-.326-.1-.78-.207-1.188-.117-.445-.029-1.025.545-1.176.425-.113.864.213.984.828z"/><path fill="#A0041E" d="M20.862 30.571c-.024-.017-.24-.136-.551-.043-.311.094-.42.275-.434.302-.013.027.304.77.351.978.049.222.221.845.229.871.014.054.071.084.126.07l.594-.156c.056-.015.089-.07.075-.124l-.221-.841c-.062-.233-.144-1.041-.169-1.057z"/><path fill="#CCD6DD" d="M20.342 32.637c.017 0 .034-.002.051-.007l.905-.239c.107-.028.171-.137.143-.244-.027-.106-.137-.172-.244-.142l-.905.239c-.107.028-.171.137-.143.244.024.089.105.149.193.149zm-.188-.716c.017 0 .034-.002.051-.007l.905-.239c.107-.028.171-.137.143-.244-.027-.106-.138-.172-.244-.142l-.905.239c-.107.028-.171.137-.143.244.023.089.104.149.193.149zm-.189-.716c.017 0 .034-.002.051-.007l.905-.239c.107-.028.171-.137.143-.244-.028-.106-.139-.173-.244-.142l-.905.239c-.107.028-.171.137-.143.244.024.089.105.149.193.149z"/><g fill="#FFDC5D"><path d="M19.958 24.146l2.5-1.438 1.281 2.614c.24.185.28.276 1.615 1.052 1.203.699 3.46 3.091 4.21 4.025.213.198.259.341.393.701l-1.023.266s-.182-.34-.476-.533c-1.438-.821-6.309-3.495-6.309-3.495-.394-.283-.64-.478-.78-.72 0 0-1.192-1.979-1.411-2.472zm-6.037-2.159l2.501 1.313c-.171.271-.513.854-.797 1.59-.083.213-.191.618.163.874.2.146.59.466.889.704.204.163.438.349.714.563.997.778 3.032 2.787 3.198 2.951.166.164.283.377.344.662-.087.019-.965.233-.965.233s-.123-.307-.421-.487c-.929-.561-6.214-3.599-6.214-3.599-.69-.495-1.067-.722-1.005-1.432.107-1.24 1.263-2.915 1.593-3.372zm8.503-12.665c.268-.28.705-.422 1.299-.422 1.689 0 3.358.215 3.783.3.118.023.173.024.301-.052.318-.188.435-.697.583-1.341.049-.217.102-.445.165-.672.279-1.001.588-2.46.55-2.736-.053-.384.312-3.219.356-3.262.071-.07.274.067.413.075.111.007.19.098.308.176.682.447.78 1.376.849 2 .042.386-.62 1.095-.684 1.502-.021.133-.048.804-.09 1.888-.044 1.135-.099 2.549-.141 2.788-.101.572-.208 1.186-1.01 1.382-.604.147-2.378.241-3.673.309-.65.035-1.213.064-1.512.093-.647.062-1.198-.058-1.515-.331-.192-.167-.296-.389-.309-.66-.016-.443.092-.793.327-1.037zM2.393 12.423c.285-.016.335-.059.612-.053.406.009.393.056.577.053.399-.006.967-.034 1.387-.084.31-.037 1.968-.116 2.419-.198.614-.113 1.384-.261 2.798-.152.794-.409 1.869-.87 2.823-1.279.699-.3 1.359-.583 1.802-.8.223-.109.442-.165.652-.165.156 0 .308.031.449.092.325.141.568.43.686.813.043.142.162.638-.108 1.073-.216.347-.624.573-1.214.671-.618.102-1.367.333-2.234.6-.857.265-1.82.561-2.804.772 0 0-1.555-.164-2.367-.213-1.124-.068-2.682-.362-3.092-.238-.518.157-1.068.303-1.715-.03-1.106-.569-2.212-.236-2.095-.707.027-.109.881-.125 1.424-.155zm15.779-7.43c.062-.564.59-1 1.148-.934.564.062.977.558.914 1.122l-.411 3.61.355.047s.363 1.057-1.449 1.057-1.621-.825-1.621-.825l.595-.113.469-3.964z"/><ellipse cx="18.833" cy="4.917" rx="2.625" ry="3"/></g><path fill="#FFAC33" d="M17.166 1.104c.699-.487 2.461-.66 3.656-.029.615.325 1.011.778 1.248 1.298.181-.193.487-.359 1.016-.403 1.196-.099 1.513 1.208 2.378 1.675.653.352 1.4.364 1.921.013 0 0-.716.867-1.52 1.198-1.045.43-2.333.154-2.947-.175-.258-.138-.452-.314-.604-.498-.01.089-.015.177-.03.266-.207 1.24-1.349 2.324-1.349 2.324s-.414-1.064-.227-1.085c.347-.039.555-1.105.264-1.389-.306-.299-.6 0-.675.3S20.02 5.75 20.02 5.75s.052-1.076-.248-1.414c-.3-.337-1.724-.262-2.324-1.724 0 0-.47.179-.845.742-.309.464-.396 1.562-.396 1.562s-.283-.678-.479-1.333c-.224-.749.543-1.855 1.438-2.479z"/><g fill="#A0041E"><path d="M20.896 18.375c.318 1.396 2.009 4.729 2.009 4.729s-1.639 1.477-2.987 1.437L17.963 21.7l-1.735 2.446s-1.713-1.274-2.931-1.485c0 0 1.666-3.182 2.023-3.856.357-.674 1.057-1.547 1.057-1.547s4.271.028 4.519 1.117z"/><path d="M19.815 24.612l-1.853-2.693-1.632 2.3c-.02.027-.049.046-.082.051-.032.004-.066-.003-.094-.022-.018-.013-1.703-1.259-2.879-1.463-.039-.007-.073-.032-.091-.067-.018-.036-.017-.078.002-.113 0 0 1.666-3.183 2.022-3.857.358-.676 1.042-1.53 1.07-1.566.023-.03.06-.047.098-.047h.001c.447.003 4.377.062 4.64 1.214.31 1.365 1.981 4.667 1.998 4.7.026.051.014.111-.028.149-.067.061-1.646 1.471-3.016 1.471-.058-.001-.123-.008-.156-.057zm.959-6.209c-.163-.714-2.72-1.001-4.336-1.019-.149.19-.707.912-1.008 1.479-.311.587-1.613 3.076-1.945 3.709 1.05.248 2.342 1.132 2.715 1.398l1.662-2.343c.023-.033.062-.053.102-.053h.001c.041 0 .079.021.102.054l1.918 2.788c1.115-.008 2.444-1.073 2.765-1.345-.275-.545-1.684-3.383-1.976-4.668z"/></g><path fill="#DD2E44" d="M22.043 8.722c-.549-.02-1.321.078-1.865.117 0 0-.078.855-1.399.894-1.321.039-1.671-.661-1.671-.661s-1.01.078-1.749.544c-.738.466-1.865.884-1.865.884s1.049 1.197.661 2.169l1.049-.315s-.352.593-.235 1.021c.117.427.538.88.581 1.269.12 1.082-.227 3.672-.383 4.021 0 0 1.225-.346 3.191-.13 1.202.133 3.042.965 3.042.965-.022-.842-.413-2.902-.559-4.01-.142-1.079.814-3.793 1.474-3.948.661-.155 1.166-.194 1.166-.194s-.155-.994 0-1.538.233-.933.233-.933-1.121-.135-1.671-.155z"/><circle fill="#269" cx="28.5" cy="2.917" r="2.055"/><path fill="#FFDC5D" d="M29.282 1.82l.079-.014c-.134.021-.261-.069-.284-.203-.023-.135.068-.265.204-.289l.513-.092.825.901.25.922-.817.15c-.135.023-.265-.068-.288-.204-.022-.129.064-.248.189-.279l-.22.038c-.135.023-.265-.068-.288-.204-.023-.131.065-.253.194-.282l-.271.046c-.135.023-.265-.068-.288-.204s.066-.263.202-.286z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f93e-200d-2642-fe0f.svg b/public/emoji/1f93e-200d-2642-fe0f.svg
index 82317139010f80ac83baf0b31d47047496862a43..3efb4668b994cc6a9071e4168911050e038b578d 100644
--- a/public/emoji/1f93e-200d-2642-fe0f.svg
+++ b/public/emoji/1f93e-200d-2642-fe0f.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#FFDC5D" d="M21.25 5c0-1.657-1.175-3-2.625-3C17.176 2 16 3.343 16 5s.984 3 2.719 3c.661 0 1.736-.132 2.198-.594.55-.55.333-1.505.333-2.406z"/><path fill="#4289C1" d="M17.967 33.355c-.552 0-1-.447-1-1v-3c0-.553.448-1 1-1s1 .447 1 1v3c0 .553-.448 1-1 1zm-9.431 1.076c-.199.094-.43.123-.661.067-.537-.13-.866-.671-.736-1.208l.669-2.76c.13-.535.669-.866 1.207-.736.537.13.866.671.736 1.208l-.669 2.76c-.074.306-.281.544-.546.669z"/><path fill="#FFDC5D" d="M19.73 9.107l-.457-3.933c-.061-.549-.574-.973-1.117-.908-.549.061-.951.543-.889 1.092l.4 3.642h-4.584L7.228 6.106c-.55-.091-1.06.278-1.151.822-.091.545.277 1.06.822 1.151l5.389 2.787c.054.01.657.134.712.134h2.749c.009.262.086.588.251 1 1 2.5 3 8 3 8 2.209 0 2.625-4.723 2.625-7.208 0-.604.299-.753.197-1.101 1.171-.152 1.334.359 1.874.487 0 0-1.799-3.26-3.966-3.071z"/><path fill="#FFDC5D" d="M14.177 26.122c-.456-.402-.56-1.088-.216-1.612l4.817-7.347c.376-.574 1.147-.735 1.72-.359.571.382.734 1.147.358 1.72l-4.817 7.347c-.376.574-1.147.735-1.72.359-.052-.032-.098-.069-.142-.108z"/><path fill="#FFDC5D" d="M8.628 31.08c-.308-.458-.268-1.066.116-1.42l5.382-4.971c.42-.389 1.094-.325 1.505.142.407.471.403 1.161-.018 1.549l-5.382 4.971c-.42.388-1.095.325-1.505-.142-.036-.042-.068-.085-.098-.129zm8.861-1.75c-.184-.479-.029-1.019.384-1.257l5.786-3.347c.452-.262 1.041-.062 1.315.447.271.511.131 1.133-.322 1.394l-5.786 3.347c-.452.261-1.041.061-1.315-.447-.024-.045-.044-.09-.062-.137z"/><path fill="#FFDC5D" d="M24.304 26.637c-.533.185-1.136-.044-1.403-.561l-3.745-7.25c-.293-.566-.071-1.263.495-1.555.569-.288 1.263-.071 1.555.496l3.745 7.25c.293.566.071 1.263-.495 1.555-.05.026-.1.047-.152.065zm0-13.611l-3.85-2.008c-.457-.238-.636-.807-.398-1.264.238-.457.807-.636 1.264-.397l3.85 2.008c.457.238.636.807.398 1.264-.238.457-.807.636-1.264.397z"/><path fill="#FFDC5D" d="M30.07 13.88l-5.302-.783c-.51-.075-.865-.554-.79-1.064.075-.51.554-.865 1.064-.79l5.302.783c.51.075.865.554.79 1.064-.075.51-.554.865-1.064.79z"/><path fill="#2A6797" d="M16.5 17.957s-.803 2.028-1.071 2.869c-.268.842-.825 1.799-.825 1.799s1.694 1.477 2.995 1.438l1.885-2.74 1.674 2.359s1.708-1.229 2.884-1.433c0 0-1.497-3.069-1.841-3.719-.344-.65-1.186-1.492-1.186-1.492l-4.515.919z"/><path fill="#4289C1" d="M15.549 8.805s1.274.075 1.799.112c0 0 .075.825 1.349.862 1.274.037 1.612-.637 1.612-.637s.975.075 1.687.525c.712.45 1.799.975 1.799.975s-1.012.862-.637 1.799l-1.012-.483s.135.417.198 1.198c.094 1.174-.202 4.902-.052 5.24 0 0-1.292-.333-3.188-.125-1.16.128-3.323.958-3.323.958.302-1.26.483-3.152.531-4.229.094-2.115-.389-3.609-1.026-3.759-.637-.15-1.125-.187-1.125-.187s.15-.675 0-1.199c-.15-.525-.225-.9-.225-.9s1.163-.075 1.613-.15z"/><circle fill="#269" cx="5" cy="8" r="2"/><path fill="#FFAC33" d="M20.292 1.188c-.699-.487-2.461-.66-3.656-.029-1.349.713-1.687 2.024-1.462 3.373.207 1.24.803 1.754.803 1.754.229.247.837-.402.488-.95-.409-.643-.294-1.401.169-1.448.327-.034.678.158.584.451-.113.353.032.498.032.498s.269.192.54-.627c.142-.429 1.157-.362 2.648-1.038.176-.08.625.422.752 1.539.027.241.477-.502.54-1.044.103-.899-.543-1.855-1.438-2.479z"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#1C6399" d="M28.648 31.324c.294.944.323 1.49.512 2.473.139.722.656 1.525 1.252 1.381.472-.114.821-.587.675-1.614-.078-.55-.238-.916-.45-1.477-.122-.324-.297-.771-.401-1.202-.114-.47-.484-.963-1.091-.816-.45.107-.693.627-.497 1.255z"/><path fill="#3B94D9" d="M29.952 31.074c-.026-.017-.255-.137-.58-.031-.325.106-.434.3-.448.328-.013.028.339.801.394 1.019.057.232.254.882.263.909.016.056.076.087.134.07l.62-.179c.059-.017.092-.076.076-.132l-.254-.878c-.071-.243-.178-1.089-.205-1.106z"/><path fill="#CCD6DD" d="M29.463 33.264c.019 0 .037-.002.057-.008l.944-.277c.105-.031.166-.142.136-.248-.031-.106-.137-.167-.249-.136l-.944.277c-.105.031-.166.142-.136.248.026.087.105.144.192.144zm-.22-.747c.019 0 .037-.002.057-.008l.944-.277c.105-.031.166-.142.136-.248-.031-.106-.137-.167-.249-.136l-.944.277c-.105.031-.166.142-.136.248.026.088.105.144.192.144zm-.218-.747c.019 0 .037-.002.057-.008l.944-.277c.105-.031.166-.142.136-.248-.031-.106-.137-.167-.249-.136l-.944.277c-.105.031-.166.142-.136.248.026.088.105.144.192.144z"/><path fill="#1C6399" d="M21.01 30.366c.189.97.423 1.465.723 2.419.22.701.146 1.653-.446 1.809-.469.124-1.001-.127-1.36-1.101-.192-.521-.225-.919-.306-1.514-.046-.343-.105-.819-.218-1.249-.123-.468-.031-1.077.573-1.236.447-.116.908.226 1.034.872z"/><path fill="#3B94D9" d="M20.725 30.544c-.026-.018-.252-.143-.579-.045-.327.098-.441.289-.456.317-.014.028.319.809.369 1.028.051.233.233.888.241.915.015.056.074.089.132.073l.624-.164c.059-.016.094-.074.079-.13l-.233-.883c-.064-.245-.15-1.093-.177-1.111z"/><path fill="#CCD6DD" d="M20.18 32.705c.017 0 .034-.002.051-.007l.951-.25c.107-.028.171-.137.143-.244-.027-.106-.138-.172-.244-.142l-.951.25c-.107.028-.171.137-.143.244.023.09.104.149.193.149zm-.198-.752c.017 0 .034-.002.051-.007l.951-.251c.107-.028.171-.137.143-.244-.028-.106-.138-.172-.244-.142l-.951.251c-.107.028-.171.137-.143.244.023.09.104.149.193.149zm-.199-.753c.017 0 .034-.002.051-.007l.951-.251c.107-.028.171-.137.143-.244-.028-.106-.138-.172-.244-.142l-.951.251c-.107.028-.171.137-.143.244.023.09.105.149.193.149z"/><g fill="#FFDC5D"><path d="M20.093 24.067l2.664-1.668 1.149 2.757c.24.185.28.276 1.615 1.052 1.203.699 3.041 2.897 3.791 3.832.213.198.504.544.646 1.061-.566.137-1.023.266-1.023.266s-.171-.202-.466-.396c-1.438-.821-6.319-3.633-6.319-3.633-.394-.283-.64-.478-.78-.72l-.01.006c-.954-1.365-1.048-2.063-1.267-2.557zm-6.532-2.196l2.815 1.487c-.171.271-.513.854-.797 1.59-.083.213-.132.49.223.746.2.146.433.331.731.568.204.163.438.349.714.563.997.778 2.582 2.469 2.694 2.575.059.056.145.12.239.202.08.07.165.163.248.278.002.004.005.005.007.008l.002.005c.12.17.231.388.292.673-.087.019-.965.233-.965.233s-.164-.223-.464-.399c-.907-.513-5.677-3.215-6.356-3.703l-.062-.044c-.69-.495-.977-.699-.915-1.409.108-1.241 1.264-2.916 1.594-3.373zm8.389-11.505c-.03-.672.209-1.616 1.772-1.616 1.699 0 3.246.172 3.686.298.651.186.707-.9 1.002-1.952.295-1.056.577-2.448.546-2.676-.053-.384.461-3.239.505-3.282.072-.07.275.067.413.075.111.007.19.098.308.176.682.447.906 1.376.974 2 .042.386-.597 1.118-.661 1.525-.047.301-.154 4.237-.231 4.678-.095.539-.207 1.278-1.122 1.502-.916.223-4.298.317-5.205.406-1.039.102-1.947-.243-1.987-1.134zM2.177 12.341c.285-.018.335-.066.612-.059.406.01.393.062.577.059.399-.007.967-.038 1.387-.094.31-.041 1.968-.32 2.419-.413.614-.126 1.372-.353 2.786-.23v-.001c1.217-.728 3.875-1.827 4.754-2.147 1.009-.367 2.187 2.707.602 2.97-1.277.211-3.237 1.018-5.292 1.425l-.001-.032c-.023.016-.037.039-.062.052 0 0-1.491-.204-2.303-.259-1.124-.076-2.682-.406-3.092-.267-.518.176-1.068.34-1.715-.034-1.106-.639-2.212-.265-2.095-.794.026-.124.88-.142 1.423-.176zm15.996-7.515c.062-.564.59-1 1.148-.934.564.062.977.558.914 1.122l-.411 3.61.328.048s.391 1.056-1.422 1.056-1.621-.825-1.621-.825l.595-.113.469-3.964z"/><path d="M16.142 4.648c0-1.702 1.208-3.083 2.697-3.083s2.697 1.38 2.697 3.083-1.011 3.082-2.794 3.082c-.68 0-1.784-.136-2.258-.61-.565-.565-.342-1.547-.342-2.472z"/></g><path fill="#FFAC33" d="M17.126.73c.718-.5 2.529-.678 3.757-.029 1.386.732 1.733 2.08 1.502 3.466-.212 1.274-.825 1.802-.825 1.802-.235.254-.86-.413-.502-.977.42-.66.302-1.439-.174-1.488-.336-.034-.697.162-.6.464.116.363-.033.512-.033.512s-.277.197-.555-.644c-.146-.441-1.189-.372-2.721-1.066-.181-.082-.642.433-.772 1.581-.028.248-.491-.516-.555-1.073-.105-.923.558-1.906 1.478-2.548z"/><g fill="#1C6399"><path d="M21.211 17.894s.826 2.083 1.101 2.948c.275.865.848 1.848.848 1.848s-1.729 1.586-3.066 1.546l-1.843-3.299-2.021 2.896s-1.959-1.333-3.167-1.542c0 0 1.709-3.03 2.062-3.698.354-.668.75-1.094.75-1.094l5.336.395z"/><path d="M20.089 24.411c-.062-.002-.118-.036-.148-.09l-1.707-3.055-1.86 2.667c-.055.077-.163.097-.242.044-.019-.013-1.941-1.313-3.099-1.513-.056-.01-.104-.047-.128-.098-.024-.052-.022-.111.006-.161.017-.03 1.712-3.036 2.061-3.694.359-.681.76-1.113.776-1.131.036-.038.085-.06.141-.055l5.335.394c.067.005.125.047.15.11.034.085.831 2.099 1.105 2.96.266.836.827 1.804.833 1.813.042.071.027.161-.033.217-.072.066-1.754 1.593-3.136 1.593l-.054-.001zm2.055-3.516c-.235-.74-.887-2.406-1.056-2.834l-5.139-.379c-.118.138-.407.499-.67.995-.296.561-1.557 2.802-1.948 3.496 1.036.27 2.407 1.13 2.853 1.421l1.923-2.756c.034-.049.092-.072.152-.074.06.003.115.037.144.09l1.793 3.209c1.054-.035 2.366-1.089 2.741-1.409-.164-.298-.57-1.059-.793-1.759z"/></g><path fill="#4289C1" d="M22.141 8.562c-.812 0-1.45.072-1.99.111 0 0-.077.847-1.387.886-1.309.039-1.656-.655-1.656-.655s-1.411-.055-2.143.407l-1.606.685s.915 1.338.821 2.719l.74-.212s-.032.025-.068.525c-.088 1.207.208 5.343.054 5.69 0 0 1.521.536 3.469.75 1.192.131 3.703.106 3.703.106-.31-1.295-.529-3.545-.578-4.652-.096-2.173.497-3.318.708-3.298.896.083 1.729-.125 1.729-.125s-.375-.688-.292-1.458c.083-.771.312-1.292.312-1.292s-1.004-.187-1.816-.187z"/><circle fill="#269" cx="28.5" cy="2.917" r="2.055"/><path fill="#FFDC5D" d="M29.282 1.82l.079-.014c-.134.021-.261-.069-.284-.203-.023-.135.068-.265.204-.289l.513-.092.825.901.25.922-.817.15c-.135.023-.265-.068-.288-.204-.022-.129.064-.248.189-.279l-.22.038c-.135.023-.265-.068-.288-.204-.023-.131.065-.253.194-.282l-.271.046c-.135.023-.265-.068-.288-.204s.067-.263.202-.286z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f93e.svg b/public/emoji/1f93e.svg
index f1a18f0463ef4c4584d4a490696e5ac4c2165ca1..28e86b3eff604008f8c7a7c0b3604f6640f13ffe 100644
--- a/public/emoji/1f93e.svg
+++ b/public/emoji/1f93e.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><ellipse fill="#FFDC5D" cx="18.625" cy="5" rx="2.625" ry="3"/><path fill="#FFAC33" d="M15.63 3.212s.193-1.038-1.258-1.158c-1.196-.099-1.513 1.208-2.378 1.675-.653.352-1.4.364-1.921.013 0 0 .716.867 1.52 1.198 1.045.43 2.333.154 2.947-.175.96-.515 1.09-1.553 1.09-1.553z"/><path fill="#DD2E44" d="M17.967 33.355c-.552 0-1-.447-1-1v-3c0-.553.448-1 1-1s1 .447 1 1v3c0 .553-.448 1-1 1zm-9.431 1.076c-.199.094-.43.123-.661.067-.537-.13-.866-.671-.736-1.208l.669-2.76c.13-.535.669-.866 1.207-.736.537.13.866.671.736 1.208l-.669 2.76c-.074.306-.281.544-.546.669z"/><path fill="#FFDC5D" d="M19.73 9.107l-.457-3.933c-.061-.549-.574-.973-1.117-.908-.549.061-.951.543-.889 1.092l.4 3.642h-4.584L7.228 6.106c-.55-.091-1.06.278-1.151.822-.091.545.277 1.06.822 1.151l5.389 2.787c.054.01.657.134.712.134h2.749c.009.262.086.588.251 1 1 2.5 3 8 3 8 2.209 0 2.625-4.723 2.625-7.208 0-.604.299-.753.197-1.101 1.171-.152 1.334.359 1.874.487 0 0-1.799-3.26-3.966-3.071z"/><path fill="#FFDC5D" d="M14.177 26.122c-.456-.402-.56-1.088-.216-1.612l4.817-7.347c.376-.574 1.147-.735 1.72-.359.571.382.734 1.147.358 1.72l-4.817 7.347c-.376.574-1.147.735-1.72.359-.052-.032-.098-.069-.142-.108z"/><path fill="#FFDC5D" d="M8.628 31.08c-.308-.458-.268-1.066.116-1.42l5.382-4.971c.42-.389 1.094-.325 1.505.142.407.471.403 1.161-.018 1.549l-5.382 4.971c-.42.388-1.095.325-1.505-.142-.036-.042-.068-.085-.098-.129zm8.861-1.75c-.184-.479-.029-1.019.384-1.257l5.786-3.347c.452-.262 1.041-.062 1.315.447.271.511.131 1.133-.322 1.394l-5.786 3.347c-.452.261-1.041.061-1.315-.447-.024-.045-.044-.09-.062-.137z"/><path fill="#FFDC5D" d="M24.304 26.637c-.533.185-1.136-.044-1.403-.561l-3.745-7.25c-.293-.566-.071-1.263.495-1.555.569-.288 1.263-.071 1.555.496l3.745 7.25c.293.566.071 1.263-.495 1.555-.05.026-.1.047-.152.065zm0-13.611l-3.85-2.008c-.457-.238-.636-.807-.398-1.264.238-.457.807-.636 1.264-.397l3.85 2.008c.457.238.636.807.398 1.264-.238.457-.807.636-1.264.397z"/><path fill="#FFDC5D" d="M30.07 13.88l-5.302-.783c-.51-.075-.865-.554-.79-1.064.075-.51.554-.865 1.064-.79l5.302.783c.51.075.865.554.79 1.064-.075.51-.554.865-1.064.79z"/><path fill="#FFAC33" d="M21.25 5s.283-.678.479-1.333c.225-.75-.542-1.855-1.438-2.479-.699-.487-2.461-.66-3.656-.029-1.349.713-1.687 2.024-1.462 3.373.207 1.24 1.349 2.324 1.349 2.324s.414-1.064.227-1.085c-.347-.039-.555-1.105-.264-1.389.306-.299.6 0 .675.3.075.3.277 1.151.277 1.151s-.052-1.076.248-1.414c.3-.337 1.724-.262 2.324-1.724 0 0 .47.179.845.742.309.464.396 1.563.396 1.563z"/><path fill="#A0041E" d="M16.5 17.957s-.803 2.028-1.071 2.869c-.268.842-.825 1.799-.825 1.799s1.694 1.477 2.995 1.438l1.885-2.74 1.674 2.359s1.708-1.229 2.884-1.433c0 0-1.497-3.069-1.841-3.719-.344-.65-1.186-1.492-1.186-1.492l-4.515.919z"/><path fill="#DD2E44" d="M15.549 8.805s1.274.075 1.799.112c0 0 .075.825 1.349.862 1.274.037 1.612-.637 1.612-.637s.975.075 1.687.525c.712.45 1.799.975 1.799.975s-1.012.862-.637 1.799l-1.012-.483s.3.671.188 1.083c-.112.412-.479.75-.521 1.125-.116 1.044.329 3.892.479 4.229 0 0-1.292-.333-3.188-.125-1.16.128-3.125.958-3.125.958.021-.812.589-2.827.729-3.896.137-1.041-.785-3.942-1.422-4.092-.637-.15-1.125-.187-1.125-.187s.15-.675 0-1.199c-.15-.525-.225-.9-.225-.9s1.163-.074 1.613-.149z"/><circle fill="#269" cx="5" cy="8" r="2"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#DD2E44" d="M28.65 31.29c.257.905.272 1.425.428 2.365.115.69.588 1.466 1.158 1.343.452-.097.795-.538.68-1.52-.061-.525-.205-.877-.393-1.416-.108-.311-.264-.74-.353-1.153-.097-.45-.438-.928-1.018-.802-.43.091-.674.58-.502 1.183z"/><path fill="#A0041E" d="M29.941 31.084c-.024-.017-.237-.141-.55-.054s-.425.267-.44.293c-.014.027.289.776.332.985.044.223.205.849.212.876.013.054.069.086.125.072l.597-.144c.056-.014.09-.068.077-.122l-.205-.845c-.058-.235-.123-1.044-.148-1.061z"/><path fill="#CCD6DD" d="M29.384 33.14c.016 0 .031-.002.047-.006l.91-.22c.107-.026.174-.134.147-.241-.026-.107-.134-.173-.241-.147l-.91.22c-.107.026-.174.134-.147.241.023.091.104.153.194.153zm-.174-.72c.016 0 .031-.002.047-.006l.91-.22c.107-.026.174-.134.147-.241-.025-.107-.135-.174-.241-.147l-.91.22c-.107.026-.174.134-.147.241.022.092.103.153.194.153zm-.174-.72c.016 0 .031-.002.047-.006l.91-.22c.107-.026.174-.134.147-.241s-.134-.174-.241-.147l-.91.22c-.107.026-.174.134-.147.241.022.092.103.153.194.153z"/><path fill="#DD2E44" d="M21.133 30.401c.18.923.402 1.394.688 2.302.21.667.139 1.573-.425 1.722-.447.118-.953-.12-1.294-1.047-.183-.496-.214-.875-.291-1.441-.044-.326-.1-.78-.207-1.188-.117-.445-.029-1.025.545-1.176.425-.113.864.213.984.828z"/><path fill="#A0041E" d="M20.862 30.571c-.024-.017-.24-.136-.551-.043-.311.094-.42.275-.434.302-.013.027.304.77.351.978.049.222.221.845.229.871.014.054.071.084.126.07l.594-.156c.056-.015.089-.07.075-.124l-.221-.841c-.062-.233-.144-1.041-.169-1.057z"/><path fill="#CCD6DD" d="M20.342 32.637c.017 0 .034-.002.051-.007l.905-.239c.107-.028.171-.137.143-.244-.027-.106-.137-.172-.244-.142l-.905.239c-.107.028-.171.137-.143.244.024.089.105.149.193.149zm-.188-.716c.017 0 .034-.002.051-.007l.905-.239c.107-.028.171-.137.143-.244-.027-.106-.138-.172-.244-.142l-.905.239c-.107.028-.171.137-.143.244.023.089.104.149.193.149zm-.189-.716c.017 0 .034-.002.051-.007l.905-.239c.107-.028.171-.137.143-.244-.028-.106-.139-.173-.244-.142l-.905.239c-.107.028-.171.137-.143.244.024.089.105.149.193.149z"/><g fill="#FFDC5D"><path d="M19.958 24.146l2.5-1.438 1.281 2.614c.24.185.28.276 1.615 1.052 1.203.699 3.46 3.091 4.21 4.025.213.198.259.341.393.701l-1.023.266s-.182-.34-.476-.533c-1.438-.821-6.309-3.495-6.309-3.495-.394-.283-.64-.478-.78-.72 0 0-1.192-1.979-1.411-2.472zm-6.037-2.159l2.501 1.313c-.171.271-.513.854-.797 1.59-.083.213-.191.618.163.874.2.146.59.466.889.704.204.163.438.349.714.563.997.778 3.032 2.787 3.198 2.951.166.164.283.377.344.662-.087.019-.965.233-.965.233s-.123-.307-.421-.487c-.929-.561-6.214-3.599-6.214-3.599-.69-.495-1.067-.722-1.005-1.432.107-1.24 1.263-2.915 1.593-3.372zm8.503-12.665c.268-.28.705-.422 1.299-.422 1.689 0 3.358.215 3.783.3.118.023.173.024.301-.052.318-.188.435-.697.583-1.341.049-.217.102-.445.165-.672.279-1.001.588-2.46.55-2.736-.053-.384.312-3.219.356-3.262.071-.07.274.067.413.075.111.007.19.098.308.176.682.447.78 1.376.849 2 .042.386-.62 1.095-.684 1.502-.021.133-.048.804-.09 1.888-.044 1.135-.099 2.549-.141 2.788-.101.572-.208 1.186-1.01 1.382-.604.147-2.378.241-3.673.309-.65.035-1.213.064-1.512.093-.647.062-1.198-.058-1.515-.331-.192-.167-.296-.389-.309-.66-.016-.443.092-.793.327-1.037zM2.393 12.423c.285-.016.335-.059.612-.053.406.009.393.056.577.053.399-.006.967-.034 1.387-.084.31-.037 1.968-.116 2.419-.198.614-.113 1.384-.261 2.798-.152.794-.409 1.869-.87 2.823-1.279.699-.3 1.359-.583 1.802-.8.223-.109.442-.165.652-.165.156 0 .308.031.449.092.325.141.568.43.686.813.043.142.162.638-.108 1.073-.216.347-.624.573-1.214.671-.618.102-1.367.333-2.234.6-.857.265-1.82.561-2.804.772 0 0-1.555-.164-2.367-.213-1.124-.068-2.682-.362-3.092-.238-.518.157-1.068.303-1.715-.03-1.106-.569-2.212-.236-2.095-.707.027-.109.881-.125 1.424-.155zm15.779-7.43c.062-.564.59-1 1.148-.934.564.062.977.558.914 1.122l-.411 3.61.355.047s.363 1.057-1.449 1.057-1.621-.825-1.621-.825l.595-.113.469-3.964z"/><ellipse cx="18.833" cy="4.917" rx="2.625" ry="3"/></g><path fill="#FFAC33" d="M17.166 1.104c.699-.487 2.461-.66 3.656-.029.615.325 1.011.778 1.248 1.298.181-.193.487-.359 1.016-.403 1.196-.099 1.513 1.208 2.378 1.675.653.352 1.4.364 1.921.013 0 0-.716.867-1.52 1.198-1.045.43-2.333.154-2.947-.175-.258-.138-.452-.314-.604-.498-.01.089-.015.177-.03.266-.207 1.24-1.349 2.324-1.349 2.324s-.414-1.064-.227-1.085c.347-.039.555-1.105.264-1.389-.306-.299-.6 0-.675.3S20.02 5.75 20.02 5.75s.052-1.076-.248-1.414c-.3-.337-1.724-.262-2.324-1.724 0 0-.47.179-.845.742-.309.464-.396 1.562-.396 1.562s-.283-.678-.479-1.333c-.224-.749.543-1.855 1.438-2.479z"/><g fill="#A0041E"><path d="M20.896 18.375c.318 1.396 2.009 4.729 2.009 4.729s-1.639 1.477-2.987 1.437L17.963 21.7l-1.735 2.446s-1.713-1.274-2.931-1.485c0 0 1.666-3.182 2.023-3.856.357-.674 1.057-1.547 1.057-1.547s4.271.028 4.519 1.117z"/><path d="M19.815 24.612l-1.853-2.693-1.632 2.3c-.02.027-.049.046-.082.051-.032.004-.066-.003-.094-.022-.018-.013-1.703-1.259-2.879-1.463-.039-.007-.073-.032-.091-.067-.018-.036-.017-.078.002-.113 0 0 1.666-3.183 2.022-3.857.358-.676 1.042-1.53 1.07-1.566.023-.03.06-.047.098-.047h.001c.447.003 4.377.062 4.64 1.214.31 1.365 1.981 4.667 1.998 4.7.026.051.014.111-.028.149-.067.061-1.646 1.471-3.016 1.471-.058-.001-.123-.008-.156-.057zm.959-6.209c-.163-.714-2.72-1.001-4.336-1.019-.149.19-.707.912-1.008 1.479-.311.587-1.613 3.076-1.945 3.709 1.05.248 2.342 1.132 2.715 1.398l1.662-2.343c.023-.033.062-.053.102-.053h.001c.041 0 .079.021.102.054l1.918 2.788c1.115-.008 2.444-1.073 2.765-1.345-.275-.545-1.684-3.383-1.976-4.668z"/></g><path fill="#DD2E44" d="M22.043 8.722c-.549-.02-1.321.078-1.865.117 0 0-.078.855-1.399.894-1.321.039-1.671-.661-1.671-.661s-1.01.078-1.749.544c-.738.466-1.865.884-1.865.884s1.049 1.197.661 2.169l1.049-.315s-.352.593-.235 1.021c.117.427.538.88.581 1.269.12 1.082-.227 3.672-.383 4.021 0 0 1.225-.346 3.191-.13 1.202.133 3.042.965 3.042.965-.022-.842-.413-2.902-.559-4.01-.142-1.079.814-3.793 1.474-3.948.661-.155 1.166-.194 1.166-.194s-.155-.994 0-1.538.233-.933.233-.933-1.121-.135-1.671-.155z"/><circle fill="#269" cx="28.5" cy="2.917" r="2.055"/><path fill="#FFDC5D" d="M29.282 1.82l.079-.014c-.134.021-.261-.069-.284-.203-.023-.135.068-.265.204-.289l.513-.092.825.901.25.922-.817.15c-.135.023-.265-.068-.288-.204-.022-.129.064-.248.189-.279l-.22.038c-.135.023-.265-.068-.288-.204-.023-.131.065-.253.194-.282l-.271.046c-.135.023-.265-.068-.288-.204s.066-.263.202-.286z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f93f.svg b/public/emoji/1f93f.svg
new file mode 100644
index 0000000000000000000000000000000000000000..01239db8784638856158b1120994ab01157a87f1
--- /dev/null
+++ b/public/emoji/1f93f.svg
@@ -0,0 +1 @@
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#66757F" d="M21 25c-2.556 0-4.062-3.128-5.161-4.676-.412-.58-1.266-.58-1.677 0C13.062 21.872 11.557 25 9 25c-4.551 0-7.923-3.033-8.784-7.619C-.804 11.955 3.589 7 9.11 7h11.78c5.521 0 9.914 4.955 8.894 10.381C28.923 21.967 25.551 25 21 25z"/><path fill="#292F33" d="M18 22l-3-3-3 3-2 2c2 0 3 3 5 3s3-3 5-3l-2-2z"/><path fill="#4E9322" d="M21 25c-2.556 0-4.062-3.128-5.161-4.676-.412-.58-1.266-.58-1.677 0C13.062 21.872 11.557 25 9 25c-4.551 0-7.923-3.033-8.784-7.619C-.804 11.955 3.589 7 9.11 7h11.78c5.521 0 9.914 4.955 8.894 10.381C28.923 21.967 25.551 25 21 25z"/><path fill="#88C9F9" d="M21 23c-1.041 0-2.113-1.664-2.896-2.88-.226-.35-.437-.676-.635-.954-.568-.8-1.491-1.277-2.469-1.277-.979 0-1.901.477-2.469 1.275-.199.281-.41.606-.635.957C11.113 21.336 10.042 23 9 23c-3.512 0-6.125-2.295-6.819-5.988-.365-1.941.147-3.87 1.442-5.431C4.984 9.941 6.984 9 9.11 9h11.78c2.126 0 4.126.941 5.486 2.581 1.295 1.561 1.808 3.49 1.442 5.431C27.125 20.706 24.512 23 21 23z"/><path fill="#292F33" d="M26.761 11.262C25.305 9.507 23.165 8.5 20.89 8.5H9.11c-2.275 0-4.415 1.007-5.871 2.762-1.392 1.678-1.942 3.752-1.549 5.842C2.431 21.049 5.232 23.5 9 23.5c1.314 0 2.424-1.723 3.316-3.108.221-.344.428-.663.622-.938.475-.667 1.245-1.065 2.062-1.065s1.587.398 2.062 1.067c.194.272.401.593.622.935.892 1.385 2.002 3.109 3.316 3.109 3.769 0 6.569-2.45 7.31-6.396.393-2.089-.158-4.164-1.549-5.842zm.566 5.658c-.646 3.442-3.07 5.58-6.327 5.58-.769 0-1.837-1.659-2.476-2.651-.23-.356-.445-.688-.647-.972-.662-.931-1.737-1.487-2.877-1.487-1.14 0-2.215.555-2.877 1.486-.203.287-.417.618-.648.976-.639.99-1.706 2.648-2.475 2.648-3.256 0-5.681-2.139-6.328-5.581-.336-1.792.138-3.574 1.336-5.019 1.266-1.525 3.125-2.4 5.102-2.4h11.78c1.977 0 3.836.875 5.102 2.4 1.197 1.445 1.672 3.228 1.335 5.02z"/><path fill="#BBDDF5" d="M12.495 9.505l-8.977 8.977c.436 1.29 1.091 2.313 1.996 3.004L17.495 9.505h-5z"/><path fill="#3C96CE" d="M15 15c-1.837 0-3.674 4.215-5.511 7.227.827-.557 1.732-1.831 2.286-2.692.209-.325.405-.627.589-.888.527-.741 1.515-1.277 2.635-1.277 1.315 0 2.352.719 2.879 1.461.184.258.38.561.589.885.561.871 1.127 2.044 2.058 2.537C18.685 19.24 16.842 15 15 15z"/><path fill="#F4900C" d="M26 36c-3.557 0-6.874-1.914-8.659-4.995-.553-.956-.227-2.179.729-2.732.958-.554 2.18-.228 2.733.729C21.874 30.851 23.865 32 26 32c3.309 0 6-2.691 6-6V2c0-1.104.896-2 2-2s2 .896 2 2v24c0 5.514-4.486 10-10 10z"/><path fill="#292F33" d="M21.586 30.146l-3.732 1.44c-1.026.396-2.19-.12-2.586-1.146-.396-1.026.12-2.19 1.146-2.586l3.732-1.44c1.026-.396 2.19.12 2.586 1.146.396 1.027-.12 2.19-1.146 2.586z"/><path fill="#FFCC4D" d="M32 5h4v4h-4zm0 7h4v4h-4z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f947.svg b/public/emoji/1f947.svg
index 94215a2d73501edf9e4bba8c825d098fa70e4a58..c67af77c6c933bec088d3009313003a25caa3b57 100644
--- a/public/emoji/1f947.svg
+++ b/public/emoji/1f947.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#55ACEE" d="M28 0H8C5.042 0 2 5 3 7c1.612 3.225 12 13 12 13h6S31 10 33 7c1-2-2.333-7-5-7zm-4 8l-6 6-6-6c-.532-.532-.843-.919-.894-1.206C10.965 6.003 12.862 6 18 6c6.916 0 7.476.375 6.532 1.446-.147.168-.329.351-.532.554z"/><path fill="#3B88C3" d="M11.106 6.794C10.965 6.003 12.862 6 18 6c6.916 0 7.476.375 6.532 1.446C29.866 1.885 28.195 0 26 0H10c-3.579 0-1.01 4.097 1.106 6.794z"/><path fill="#FFAC33" d="M21.902 21.02c.06-.163.098-.337.098-.52 0-.828-.672-1.5-1.5-1.5h-5c-.829 0-1.5.672-1.5 1.5 0 .183.038.357.098.52C11.654 22.389 10 25 10 28c0 4.418 3.581 8 8 8 4.418 0 8-3.582 8-8 0-3-1.654-5.611-4.098-6.98z"/><path fill="#9E5200" d="M19.052 22.95h-1.291l-2.047 1.599c-.042.042-.084.154-.084.21v.884c0 .14.112.266.252.266h1.346v6.311c0 .141.112.267.267.267h1.557c.14 0 .252-.126.252-.267v-9.003c0-.141-.113-.267-.252-.267z"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#55ACEE" d="M18 8l-7-8H0l14 17 11.521-4.75z"/><path fill="#3B88C3" d="M25 0l-7 8 5.39 7.312 1.227-1.489L36 0z"/><path fill="#FFAC33" d="M23.205 16.026c.08-.217.131-.448.131-.693 0-1.104-.896-2-2-2h-6.667c-1.105 0-2 .896-2 2 0 .245.05.476.131.693-3.258 1.826-5.464 5.307-5.464 9.307C7.335 31.224 12.111 36 18.002 36s10.667-4.776 10.667-10.667c0-4-2.206-7.481-5.464-9.307z"/><path fill="#9E5200" d="M19.404 18.6h-1.721l-2.73 2.132c-.056.056-.112.206-.112.28v1.178c0 .186.15.354.337.354h1.795v8.414c0 .188.15.355.355.355h2.076c.186 0 .336-.168.336-.355V18.954c0-.186-.149-.354-.336-.354z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f948.svg b/public/emoji/1f948.svg
index da0690fd977edee1b9546c28b1d50f8c9937b3c9..685db6d155322e913c115d98b13e9fbb1590da79 100644
--- a/public/emoji/1f948.svg
+++ b/public/emoji/1f948.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#55ACEE" d="M28 0H8C5.042 0 2 5 3 7c1.612 3.225 12 13 12 13h6S31 10 33 7c1-2-2.333-7-5-7zm-4 8l-6 6-6-6c-.532-.532-.843-.919-.894-1.206C10.965 6.003 12.862 6 18 6c6.916 0 7.476.375 6.532 1.446-.147.168-.329.351-.532.554z"/><path fill="#3B88C3" d="M11.106 6.794C10.965 6.003 12.862 6 18 6c6.916 0 7.476.375 6.532 1.446C29.866 1.885 28.195 0 26 0H10c-3.579 0-1.01 4.097 1.106 6.794z"/><path fill="#CCD6DD" d="M21.902 21.02c.06-.163.098-.337.098-.52 0-.828-.672-1.5-1.5-1.5h-5c-.829 0-1.5.672-1.5 1.5 0 .183.038.357.098.52C11.654 22.389 10 25 10 28c0 4.418 3.581 8 8 8 4.418 0 8-3.582 8-8 0-3-1.654-5.611-4.098-6.98z"/><path fill="#627077" d="M21 30.69h-2.657c.659-.926 1.809-2.426 2.257-3.226.337-.659.547-1.079.547-1.822 0-1.557-1.178-2.833-3.183-2.833-1.669 0-2.805 1.374-2.805 1.374-.098.112-.084.28.014.365l.855.869c.112.112.28.112.393 0 .266-.295.785-.701 1.36-.701.785 0 1.235.477 1.235 1.01 0 .393-.183.785-.365 1.065-.828 1.262-2.903 4.081-3.716 5.146v.28c0 .141.112.267.266.267H21c.14 0 .267-.126.267-.267v-1.262c0-.139-.127-.265-.267-.265z"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#55ACEE" d="M18 8l-7-8H0l14 17 11.521-4.75z"/><path fill="#3B88C3" d="M25 0l-7 8 5.39 7.312 1.227-1.489L36 0z"/><path fill="#CCD6DD" d="M23.205 16.026c.08-.217.131-.448.131-.693 0-1.104-.896-2-2-2h-6.667c-1.105 0-2 .896-2 2 0 .245.05.476.131.693-3.258 1.826-5.464 5.307-5.464 9.307C7.335 31.224 12.111 36 18.002 36s10.667-4.776 10.667-10.667c0-4-2.206-7.481-5.464-9.307z"/><path fill="#627077" d="M22.002 28.921h-3.543c.878-1.234 2.412-3.234 3.01-4.301.449-.879.729-1.439.729-2.43 0-2.076-1.57-3.777-4.244-3.777-2.225 0-3.74 1.832-3.74 1.832-.131.15-.112.374.019.487l1.141 1.159c.149.15.374.15.523 0 .355-.393 1.047-.935 1.813-.935 1.047 0 1.646.635 1.646 1.346 0 .523-.243 1.047-.486 1.421-1.104 1.682-3.871 5.441-4.955 6.862v.374c0 .188.149.355.355.355h7.732c.186 0 .355-.168.355-.355v-1.682c.001-.188-.169-.356-.355-.356z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f949.svg b/public/emoji/1f949.svg
index 3e56363e7943cbd1f0e012967d105f1a080222e9..6bb5f773c98b0cbe109e285239856934a1a1a94e 100644
--- a/public/emoji/1f949.svg
+++ b/public/emoji/1f949.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#55ACEE" d="M28 0H8C5.042 0 2 5 3 7c1.612 3.225 12 13 12 13h6S31 10 33 7c1-2-2.333-7-5-7zm-4 8l-6 6-6-6c-.532-.532-.843-.919-.894-1.206C10.965 6.003 12.862 6 18 6c6.916 0 7.476.375 6.532 1.446-.147.168-.329.351-.532.554z"/><path fill="#3B88C3" d="M11.106 6.794C10.965 6.003 12.862 6 18 6c6.916 0 7.476.375 6.532 1.446C29.866 1.885 28.195 0 26 0H10c-3.579 0-1.01 4.097 1.106 6.794z"/><path fill="#FF8A3B" d="M21.902 21.02c.06-.163.098-.337.098-.52 0-.828-.672-1.5-1.5-1.5h-5c-.829 0-1.5.672-1.5 1.5 0 .183.038.357.098.52C11.654 22.389 10 25 10 28c0 4.418 3.581 8 8 8 4.418 0 8-3.582 8-8 0-3-1.654-5.611-4.098-6.98z"/><path fill="#7C4119" d="M15.089 31.013l.884-.884c.098-.099.238-.112.351-.028 0 0 .869.646 1.542.646.604 0 1.221-.505 1.221-1.122s-.632-1.136-1.669-1.136h-.479c-.14 0-.266-.126-.266-.267v-1.164c0-.154.126-.267.266-.267h.479c.981 0 1.5-.477 1.5-1.079 0-.604-.519-1.052-1.122-1.052-.617 0-1.01.322-1.22.561-.099.112-.267.112-.378.015l-.855-.842c-.113-.099-.099-.267 0-.364 0 0 1.149-1.234 2.678-1.234 1.627 0 3.029.996 3.029 2.566 0 1.079-.813 1.879-1.444 2.173v.043c.659.28 1.696 1.149 1.696 2.355 0 1.528-1.332 2.679-3.268 2.679-1.766 0-2.664-.87-2.958-1.248-.086-.099-.071-.254.013-.351z"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#55ACEE" d="M18 8l-7-8H0l14 17 11.521-4.75z"/><path fill="#3B88C3" d="M25 0l-7 8 5.39 7.312 1.227-1.489L36 0z"/><path fill="#FF8A3B" d="M23.205 16.026c.08-.217.131-.448.131-.693 0-1.104-.896-2-2-2h-6.667c-1.105 0-2 .896-2 2 0 .245.05.476.131.693-3.258 1.826-5.464 5.307-5.464 9.307C7.335 31.224 12.111 36 18.002 36s10.667-4.776 10.667-10.667c0-4-2.206-7.481-5.464-9.307z"/><path fill="#7C4119" d="M14.121 29.35l1.178-1.178c.13-.132.318-.15.467-.038 0 0 1.159.861 2.056.861.805 0 1.628-.673 1.628-1.496s-.842-1.514-2.225-1.514h-.639c-.186 0-.354-.168-.354-.355v-1.552c0-.206.168-.355.354-.355h.639c1.309 0 2-.635 2-1.439 0-.805-.691-1.402-1.496-1.402-.823 0-1.346.43-1.626.747-.132.15-.355.15-.504.02l-1.141-1.122c-.151-.132-.132-.355 0-.486 0 0 1.533-1.646 3.57-1.646 2.169 0 4.039 1.328 4.039 3.422 0 1.439-1.085 2.505-1.926 2.897v.057c.879.374 2.262 1.533 2.262 3.141 0 2.038-1.776 3.572-4.357 3.572-2.354 0-3.552-1.16-3.944-1.664-.113-.134-.093-.34.019-.47z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f970.svg b/public/emoji/1f970.svg
index 46c9627b9a6a6140256e1ce644dff5c70647ac9a..6b063dfc8a72e90488100a07dc77ab80556b4b5d 100644
--- a/public/emoji/1f970.svg
+++ b/public/emoji/1f970.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><circle fill="#FFCC4D" cx="18" cy="18" r="18"/><path fill="#664500" d="M16 16.958c-.419 0-.809-.265-.949-.684-.203-.599-1.018-2.316-2.051-2.316-1.062 0-1.888 1.827-2.051 2.316-.175.523-.738.808-1.265.632-.524-.174-.807-.741-.632-1.265.125-.377 1.304-3.684 3.949-3.684s3.823 3.307 3.949 3.684c.175.524-.108 1.091-.632 1.265-.106.036-.213.052-.318.052zm10 0c-.419 0-.809-.265-.948-.684-.203-.599-1.019-2.316-2.052-2.316-1.062 0-1.889 1.827-2.052 2.316-.175.523-.736.808-1.265.632-.523-.174-.807-.741-.632-1.265.125-.377 1.304-3.684 3.948-3.684s3.823 3.307 3.948 3.684c.175.524-.108 1.091-.632 1.265-.104.036-.21.052-.315.052zm1.335 3.733c-.178-.161-.444-.171-.635-.029-.039.029-3.922 2.9-8.7 2.9-4.766 0-8.662-2.871-8.7-2.9-.191-.142-.457-.13-.635.029-.177.16-.217.424-.094.628.129.215 3.217 5.243 9.429 5.243s9.301-5.028 9.429-5.243c.123-.205.084-.467-.094-.628z"/><path fill="#FFAC33" d="M21.229 3.947c0 .24.03.472.082.696.425 2.643 3.364 5.431 5.47 6.197 1.665-.605 3.846-2.476 4.898-4.539C29.59 3.861 26.86 1.987 23.75.939c-1.432.257-2.521 1.502-2.521 3.008zm-7.486 25.131c.057-.242.09-.494.09-.754 0-1.833-1.486-3.319-3.319-3.319-1.113 0-2.094.549-2.697 1.389-.602-.839-1.584-1.389-2.697-1.389-1.241 0-2.311.689-2.88 1.698 1.824 3.295 4.65 5.957 8.068 7.574 1.637-1.351 3.131-3.307 3.435-5.199zm20.558-3.436c-.282-.95-1.152-1.647-2.194-1.647-.771 0-1.451.38-1.868.962-.417-.582-1.097-.962-1.868-.962-1.27 0-2.299 1.029-2.299 2.299 0 .18.023.354.062.522.307 1.905 2.348 3.896 3.909 4.561 1.776-1.6 3.231-3.547 4.258-5.735z"/><path fill="#BE1931" d="M33.625 3.269c0-1.692-1.372-3.063-3.063-3.063-1.027 0-1.933.507-2.489 1.282C27.517.713 26.611.206 25.584.206c-1.692 0-3.063 1.371-3.063 3.063 0 .24.03.472.082.696.426 2.643 3.364 5.431 5.47 6.197 2.106-.766 5.044-3.554 5.469-6.196.053-.225.083-.457.083-.697zM12.208 28.408c0-1.833-1.486-3.319-3.319-3.319-1.113 0-2.094.549-2.697 1.389-.602-.84-1.584-1.389-2.697-1.389-1.833 0-3.319 1.486-3.319 3.319 0 .26.033.511.089.754.461 2.863 3.644 5.884 5.926 6.714 2.282-.829 5.465-3.85 5.926-6.713.058-.244.091-.496.091-.755zm23.74-2.281c0-1.27-1.029-2.299-2.299-2.299-.771 0-1.451.38-1.868.962-.417-.582-1.097-.962-1.868-.962-1.27 0-2.299 1.029-2.299 2.299 0 .18.023.354.062.522.319 1.983 2.524 4.076 4.105 4.65 1.58-.574 3.786-2.667 4.104-4.65.04-.168.063-.342.063-.522z"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><circle fill="#FFCC4D" cx="18" cy="18" r="18"/><path fill="#664500" d="M16 16.958c-.419 0-.809-.265-.949-.684-.203-.599-1.018-2.316-2.051-2.316-1.062 0-1.888 1.827-2.051 2.316-.175.523-.738.808-1.265.632-.524-.174-.807-.741-.632-1.265.125-.377 1.304-3.684 3.949-3.684s3.823 3.307 3.949 3.684c.175.524-.108 1.091-.632 1.265-.106.036-.213.052-.318.052zm10 0c-.419 0-.809-.265-.948-.684-.203-.599-1.019-2.316-2.052-2.316-1.062 0-1.889 1.827-2.052 2.316-.175.523-.736.808-1.265.632-.523-.174-.807-.741-.632-1.265.125-.377 1.304-3.684 3.948-3.684s3.823 3.307 3.948 3.684c.175.524-.108 1.091-.632 1.265-.104.036-.21.052-.315.052zm1.335 3.733c-.178-.161-.444-.171-.635-.029-.039.029-3.922 2.9-8.7 2.9-4.766 0-8.662-2.871-8.7-2.9-.191-.142-.457-.13-.635.029-.177.16-.217.424-.094.628.129.215 3.217 5.243 9.429 5.243s9.301-5.028 9.429-5.243c.123-.205.084-.467-.094-.628z"/><path fill="#FFAC33" d="M21.229 3.947c0 .24.03.472.082.696.425 2.643 3.364 5.431 5.47 6.197 1.665-.605 3.846-2.476 4.898-4.539C29.59 3.861 26.86 1.987 23.75.939c-1.432.257-2.521 1.502-2.521 3.008zm-7.486 25.131c.057-.242.09-.494.09-.754 0-1.833-1.486-3.319-3.319-3.319-1.113 0-2.094.549-2.697 1.389-.602-.839-1.584-1.389-2.697-1.389-1.241 0-2.311.689-2.88 1.698 1.824 3.295 4.65 5.957 8.068 7.574 1.637-1.351 3.131-3.307 3.435-5.199zm20.558-3.436c-.282-.95-1.152-1.647-2.194-1.647-.771 0-1.451.38-1.868.962-.417-.582-1.097-.962-1.868-.962-1.27 0-2.299 1.029-2.299 2.299 0 .18.023.354.062.522.307 1.905 2.348 3.896 3.909 4.561 1.776-1.6 3.231-3.547 4.258-5.735z"/><path fill="#DD2E44" d="M33.625 3.269c0-1.692-1.372-3.063-3.063-3.063-1.027 0-1.933.507-2.489 1.282C27.517.713 26.611.206 25.584.206c-1.692 0-3.063 1.371-3.063 3.063 0 .24.03.472.082.696.426 2.643 3.364 5.431 5.47 6.197 2.106-.766 5.044-3.554 5.469-6.196.053-.225.083-.457.083-.697zM12.208 28.408c0-1.833-1.486-3.319-3.319-3.319-1.113 0-2.094.549-2.697 1.389-.602-.84-1.584-1.389-2.697-1.389-1.833 0-3.319 1.486-3.319 3.319 0 .26.033.511.089.754.461 2.863 3.644 5.884 5.926 6.714 2.282-.829 5.465-3.85 5.926-6.713.058-.244.091-.496.091-.755zm23.74-2.281c0-1.27-1.029-2.299-2.299-2.299-.771 0-1.451.38-1.868.962-.417-.582-1.097-.962-1.868-.962-1.27 0-2.299 1.029-2.299 2.299 0 .18.023.354.062.522.319 1.983 2.524 4.076 4.105 4.65 1.58-.574 3.786-2.667 4.104-4.65.04-.168.063-.342.063-.522z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f971.svg b/public/emoji/1f971.svg
new file mode 100644
index 0000000000000000000000000000000000000000..26444c6a292ae6d438def8dd513b0594990a0267
--- /dev/null
+++ b/public/emoji/1f971.svg
@@ -0,0 +1 @@
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#FFCC4D" d="M35 17c0 9.389-7.611 17-17 17-9.388 0-17-7.611-17-17C1 7.612 8.612 0 18 0c9.389 0 17 7.612 17 17"/><ellipse fill="#664500" cx="18" cy="19.5" rx="7" ry="7.5"/><path fill="#F4900C" d="M22.468 27.371s.997-.721.165-1.614c-.832-.893-1.621.052-1.621.052l-4.148 3.866c-.069-.205-.459-.743-.55-.947l5.755-5.366s.998-.721.164-1.615c-.832-.892-1.622.051-1.622.051l-5.413 5.046c-.125-.158-.461-.54-.594-.698l6.276-5.85s.997-.722.164-1.614c-.832-.893-1.621.051-1.621.051l-6.278 5.848c-.15-.145-.612-.609-.764-.746l5.866-5.468s.996-.722.164-1.614c-.833-.893-1.621.051-1.621.051l-6.203 5.781-.497.464-.22.207s-.538.744-1.087.179l1.842-4.158s.58-1.074-.493-1.655c-1.075-.581-1.655.493-1.655.493l-1.668 2.758c-.663 1.093-1.349 2.178-2.159 3.167-2.284 2.793-2.211 6.914.318 9.629 2.759 2.959 7.396 3.122 10.355.364l.447-.418 6.698-6.244z"/><path fill="#664500" d="M11.016 6.08c-2.255.604-3.48 1.965-3.555 2.05-.364.415-.323 1.047.091 1.412.415.365 1.046.325 1.411-.091.079-.087 2.09-2.253 5.81-1.492.542.111 1.07-.239 1.18-.779.111-.541-.238-1.07-.779-1.18-1.635-.336-3.026-.223-4.158.08zm13.968.001c-1.132-.303-2.523-.416-4.159-.082-.541.111-.89.639-.779 1.18.112.541.639.89 1.18.779 3.724-.762 5.731 1.405 5.814 1.497.367.407 1 .444 1.41.078.41-.366.451-.991.088-1.404-.075-.084-1.3-1.444-3.554-2.048z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f97b.svg b/public/emoji/1f97b.svg
new file mode 100644
index 0000000000000000000000000000000000000000..d69d53d1744fa1856dc3650c00288ad69d500592
--- /dev/null
+++ b/public/emoji/1f97b.svg
@@ -0,0 +1 @@
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#FFAC33" d="M26.785 9.606c-.071 3.25 1.712 8.071 4.491 14.867-1.01.423-6.747 2.074-8.961-.596s4.47-14.271 4.47-14.271z"/><path fill="#5C913B" d="M27.08 9.151c-.071 3.25 1.042 7.553 3.821 14.35-1.01.423-5.943 1.906-8.157-.764C20.53 20.066 27.08 9.151 27.08 9.151z"/><path fill="#FFAC33" d="M26.261 13.896c-.071 3.25 1.379 8.063 4.159 14.859-1.01.423-6.747 2.074-8.961-.596-2.215-2.67 4.802-14.263 4.802-14.263z"/><path fill="#77B255" d="M26.268 13.366c.34 2.964 1.042 7.553 3.821 14.35-1.01.423-5.943 1.906-8.157-.765-1.516-1.829-.556-11.372 1.23-14.78.821-1.567 3.106 1.195 3.106 1.195z"/><path fill="#9266CC" d="M26.916 15l4.389-1.379c.892-.28 1.355-1.257 1.005-2.124C30.977 8.198 27.541 1 22.916 1H13C8.374 1 4.936 8.203 3.605 11.501c-.349.865.113 1.84 1.003 2.119L9 15l1.726-.844C10.469 19.918 9.97 29.37 9 33.736c8 3 10 3 18 0-.968-4.355-1.467-13.785-1.724-19.538l1.64.802z"/><path fill="#553788" d="M25.271 14.182L24.916 7l2 8z"/><path fill="#FFAC33" d="M24.677 10.865C23.521 21.85 9.899 27.186 9.899 27.186s.531-7.102.754-11.469c10-5 12.39-14.685 12.39-14.685s.861-.149 1.381.252c.371 1.383.737 4.971.253 9.581z"/><path fill="#77B255" d="M24.201 6.587c0 11.851-14.166 18.754-14.166 18.754l.518-7.812s2.939-.973 7.322-4.823C22.65 8.512 23.34 1.063 23.34 1.063s.357-.104.683.074c.254.799.178 3.131.178 5.45z"/><path fill="#553788" d="M10.716 14.211L11 7l-2 8zM18 5.088c2.257 0 4.087-1.83 4.087-4.088h-8.175c.001 2.257 1.831 4.088 4.088 4.088z"/><path fill="#FFAC33" d="M3.843 10.926c-.085.2-.166.396-.238.575-.349.865.112 1.84 1.003 2.12L9 15l.046-.022c.121-.561.245-1.071.319-1.403-4.053-.952-5.396-1.267-5.522-2.649zm22.749 2.649c.075.335.201.855.324 1.425l4.362-1.37c.906-.285 1.377-1.277 1.021-2.158L32.103 11c-.168 1.318-1.534 1.641-5.511 2.575zM9.253 32.404c-.081.478-.164.932-.253 1.332 8 3 10 3 18 0-.094-.422-.182-.904-.267-1.414-7.803 3.829-14.327 1.451-17.48.082z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f983.svg b/public/emoji/1f983.svg
index 550b5bbf7ec2036684d2a154d89afc39bc3058b6..e9de7de9ec2f51f47c9a9ebd17c700e463a30442 100644
--- a/public/emoji/1f983.svg
+++ b/public/emoji/1f983.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#FFAC33" d="M22.88 33.097c-.098-.18-.25-.302-.418-.391C20.865 31 22 28.999 22 28.999c0-.553 1-2 0-2l-1 1c-1 1-1 4-1 4h-2c-.553 0-1 .447-1 1 0 .553.447 1 1 1h1.107l-.222.12c-.486.263-.667.869-.404 1.356.263.486.869.667 1.356.404l2.639-1.427c.486-.263.667-.869.404-1.355zm-7 0c-.097-.18-.25-.302-.417-.391C13.866 31 15 28.999 15 28.999c0-.553 1-2 0-2l-1 1c-1 1-1 4-1 4h-2c-.553 0-1 .447-1 1 0 .553.447 1 1 1h1.108l-.222.12c-.486.263-.667.869-.404 1.356.263.486.869.667 1.356.404l2.639-1.427c.485-.263.666-.869.403-1.355z"/><path fill="#BE1931" d="M5.134 7c2 5-3 5-2 7s5-2 3-7-1 0-1 0z"/><path fill="#FFAC33" d="M7 6c0 1.104 1.933 2 0 2S0 7 0 6s1.067-3 3-3 4 1.896 4 3z"/><path fill="#C1694F" d="M6 21C6 15 9.209 8 7 8 3 8 3 6.209 3 4s1.791-4 4-4c7 0 6 9 4 13-1.674 3.348-2.022 8-5 8z"/><path fill="#292F33" d="M36 17c0 7.959-5 11.3-10 11.249C23.966 30.045 21.073 31 18 31c-6.627 0-12-4.836-12-10.8 0-5.965 5.373-10.8 12-10.8 3-2.7 7-6.5 10-7.4 6 3.6 8 7.8 8 15z"/><circle fill="#292F33" cx="6" cy="3" r="1"/><path fill="#66757F" d="M17.984 9.4c-1.626.002-3.174.297-4.585.829 3.914-.229 6.351-.042 9.602 1.552-.923-1.515-3.392-2.381-5.017-2.381zm17.942 5.435c-.086-1.278-.254-2.456-.52-3.545-6.25 1.272-3.404 3.545.52 3.545zm-1.985-7.223c-.676-1.154-1.541-2.205-2.623-3.186-7.162 3.574-3.006 4.73 2.623 3.186zm1.212 14.473c-3.402-1.085-4.247.821-2.215 3.415-2.5-2.344-4.031-1.062-3.344 2-1.469-2.188-2.969-.208-3.594.749 3.761.038 7.52-1.844 9.153-6.164zM31.315 4.424C30.378 3.574 29.286 2.771 28 2c-7 3.688-2 4.406 3.315 2.424zm3.838 17.66C35.691 20.66 36 18.973 36 17c0-.755-.027-1.471-.074-2.163-4.61.382-3.801 2.882.006 3.351-3.557.062-4.181 2.25-.779 3.896zm-1.21-14.469c-6.427 2.385-3.693 4.291 1.462 3.673-.328-1.344-.808-2.557-1.462-3.673z"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#FFAC33" d="M22.88 33.097c-.098-.18-.25-.302-.418-.391C20.865 31 22 28.999 22 28.999c0-.553 1-2 0-2l-1 1c-1 1-1 4-1 4h-2c-.553 0-1 .447-1 1 0 .553.447 1 1 1h1.107l-.222.12c-.486.263-.667.869-.404 1.356.263.486.869.667 1.356.404l2.639-1.427c.486-.263.667-.869.404-1.355zm-7 0c-.097-.18-.25-.302-.417-.391C13.866 31 15 28.999 15 28.999c0-.553 1-2 0-2l-1 1c-1 1-1 4-1 4h-2c-.553 0-1 .447-1 1 0 .553.447 1 1 1h1.108l-.222.12c-.486.263-.667.869-.404 1.356.263.486.869.667 1.356.404l2.639-1.427c.485-.263.666-.869.403-1.355z"/><path fill="#BE1931" d="M5.134 7c2 5-3 5-2 7s5-2 3-7-1 0-1 0z"/><path fill="#FFAC33" d="M7 6c0 1.104 1.933 2 0 2S0 7 0 6s1.067-3 3-3 4 1.896 4 3z"/><path fill="#C1694F" d="M6 21C6 15 9.209 8 7 8 3 8 3 6.209 3 4s1.791-4 4-4c7 0 6 9 4 13-1.674 3.348-2.022 8-5 8z"/><path fill="#31373D" d="M36 17c0 7.959-5 11.3-10 11.249C23.966 30.045 21.073 31 18 31c-6.627 0-12-4.836-12-10.8 0-5.965 5.373-10.8 12-10.8 3-2.7 7-6.5 10-7.4 6 3.6 8 7.8 8 15z"/><circle fill="#292F33" cx="6" cy="3" r="1"/><path fill="#66757F" d="M17.984 9.4c-1.626.002-3.174.297-4.585.829 3.914-.229 6.351-.042 9.602 1.552-.923-1.515-3.392-2.381-5.017-2.381zm17.942 5.435c-.086-1.278-.254-2.456-.52-3.545-6.25 1.272-3.404 3.545.52 3.545zm-1.985-7.223c-.676-1.154-1.541-2.205-2.623-3.186-7.162 3.574-3.006 4.73 2.623 3.186zm1.212 14.473c-3.402-1.085-4.247.821-2.215 3.415-2.5-2.344-4.031-1.062-3.344 2-1.469-2.188-2.969-.208-3.594.749 3.761.038 7.52-1.844 9.153-6.164zM31.315 4.424C30.378 3.574 29.286 2.771 28 2c-7 3.688-2 4.406 3.315 2.424zm3.838 17.66C35.691 20.66 36 18.973 36 17c0-.755-.027-1.471-.074-2.163-4.61.382-3.801 2.882.006 3.351-3.557.062-4.181 2.25-.779 3.896zm-1.21-14.469c-6.427 2.385-3.693 4.291 1.462 3.673-.328-1.344-.808-2.557-1.462-3.673z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f984.svg b/public/emoji/1f984.svg
index 81f0633e5aea62f6ba24aa3af8db3f8f27611cef..19d9ff1613d2bcc8afac81374d86db2318ec967d 100644
--- a/public/emoji/1f984.svg
+++ b/public/emoji/1f984.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#9266CC" d="M36 19.854C33.518 9.923 25.006 1.909 16.031 6.832c0 0-4.521-1.496-5.174-1.948-.635-.44-1.635-.904-.912.436.423.782.875 1.672 2.403 3.317C8 12.958 9.279 18.262 7.743 21.75c-1.304 2.962-2.577 4.733-1.31 6.976 1.317 2.33 4.73 3.462 7.018 1.06 1.244-1.307.471-1.937 3.132-4.202 2.723-.543 4.394-1.791 4.394-4.375 0 0 .795-.382 1.826 6.009.456 2.818-.157 5.632-.039 8.783H36V19.854z"/><path fill="#55ACEE" d="M36 10.956c-.749-1.038-1.281-3.019-4.094-4.894.531 1.312.848 3.71.595 5.318-.15-3.923-3.188-6.581-4.376-7.193-2.202-1.137-4.372-.979-6.799-.772.111.168.403.814.32 1.547-.479-.875-1.604-1.42-2.333-1.271-3.499.713-5.974 2.232-5.091 3.856 8.937-3.477 14.643 2.161 17.736 8.704.769 1.625 2.611 7.132 4.041 10.292V10.956z"/><path fill="#55ACEE" d="M16.897 6.731c-2.12.564-5.26 2.509-6.537 4.573 0 0-2.589.655-3.631-1.845 2.563.827 4.826-2.339 6.737-3.511 4.028-2.468 3.314-.186 3.314-.186l.117.969z"/><path fill="#F4900C" d="M13.848 8.122l-.005-.007C13.127 7.406.948-.51.219.219s10.224 9.523 10.93 10.061l.011.006c.738-.806 1.69-1.551 2.688-2.164z"/><path fill="#9266CC" d="M13.789 3.662c.573.788 3.236.794 4.596 3.82 1.359 3.026-1.943 2.63-3.14 1.23-1.334-1.561-1.931-2.863-2.165-3.992-.124-.596-.451-2.649.709-1.058z"/><path fill="#744EAA" d="M14.209 4.962c.956.573 2.164 1.515 2.517 2.596.352 1.081-.707.891-1.349-.042-.641-.934-.939-1.975-1.285-2.263-.346-.289.117-.291.117-.291z"/><path fill="#292F33" d="M16.185 14.396c.093.514-.248 1.006-.762 1.099-.514.093-1.006-.248-1.099-.761-.093-.513.248-1.006.762-1.099.515-.093 1.006.248 1.099.761z"/><path fill="#744EAA" d="M8.63 26.877c.119.658-.181 1.263-.67 1.351-.49.089-.984-.372-1.104-1.03-.119-.659.182-1.265.671-1.354.49-.088.984.373 1.103 1.033z"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#C1CDD5" d="M36 19.854C33.518 9.923 25.006 1.909 16.031 6.832c0 0-4.522-1.496-5.174-1.948-.635-.44-1.635-.904-.912.436.423.782.875 1.672 2.403 3.317C8 12.958 9.279 18.262 7.743 21.75c-1.304 2.962-2.577 4.733-1.31 6.976 1.317 2.33 4.729 3.462 7.018 1.06 1.244-1.307.471-1.937 3.132-4.202 2.723-.543 4.394-1.791 4.394-4.375 0 0 .795-.382 1.826 6.009.456 2.818-.157 5.632-.039 8.783H36V19.854z"/><path fill="#60379A" d="M31.906 6.062c.531 1.312.848 3.71.595 5.318-.15-3.923-3.188-6.581-4.376-7.193-2.202-1.137-4.372-.979-6.799-.772.111.168.403.814.32 1.547-.479-.875-1.604-1.42-2.333-1.271-1.36.277-2.561.677-3.475 1.156-.504.102-1.249.413-2.372 1.101-1.911 1.171-4.175 4.338-6.737 3.511 1.042 2.5 3.631 1.845 3.631 1.845 1.207-1.95 4.067-3.779 6.168-4.452 7.619-1.745 12.614 3.439 15.431 9.398.768 1.625 2.611 7.132 4.041 10.292V10.956c-.749-1.038-1.281-3.018-4.094-4.894z"/><path fill="#C1CDD5" d="M13.789 3.662c.573.788 3.236.794 4.596 3.82 1.359 3.026-1.943 2.63-3.14 1.23-1.334-1.561-1.931-2.863-2.165-3.992-.124-.596-.451-2.649.709-1.058z"/><path fill="#758795" d="M14.209 4.962c.956.573 2.164 1.515 2.517 2.596.351 1.081-.707.891-1.349-.042-.641-.934-.94-1.975-1.285-2.263-.346-.289.117-.291.117-.291z"/><circle fill="#292F33" cx="15.255" cy="14.565" r=".946"/><path fill="#53626C" d="M8.63 26.877c.119.658-.181 1.263-.67 1.351-.49.089-.984-.372-1.104-1.03-.119-.659.182-1.265.671-1.354.49-.088.984.373 1.103 1.033z"/><path fill="#EE7C0E" d="M13.844 8.124l.003-.002-.005-.007-.016-.014c-.008-.007-.011-.019-.019-.025-.009-.007-.021-.011-.031-.018C12.621 7.078.933-.495.219.219-.51.948 10.443 9.742 11.149 10.28l.011.006.541.439c.008.007.01.018.018.024.013.01.028.015.042.024l.047.038-.009-.016c.565.361 1.427.114 1.979-.592.559-.715.577-1.625.066-2.079z"/><path fill="#C43512" d="M4.677 2.25l.009-.025c-.301-.174-.594-.341-.878-.5-.016.038-.022.069-.041.11-.112.243-.256.484-.429.716-.166.224-.349.424-.541.595-.02.018-.036.026-.056.043.238.22.489.446.745.676.234-.21.456-.449.654-.717.214-.287.395-.589.537-.898zm2.275 2.945c.306-.41.521-.822.66-1.212-.292-.181-.584-.36-.876-.538-.076.298-.247.699-.586 1.152-.31.417-.613.681-.864.845.259.223.52.445.779.665.314-.244.619-.552.887-.912zM9.87 7.32c.365-.49.609-.983.734-1.437l-.906-.586c-.023.296-.172.81-.631 1.425-.412.554-.821.847-1.1.978l.814.671c.381-.256.761-.611 1.089-1.051z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f98d.svg b/public/emoji/1f98d.svg
index fcfe2cf7fb5375f232e4a6bf1a3b4c3403c8815e..aa5992325d191c8d1f0b46b97ff0d9488a55f6b5 100644
--- a/public/emoji/1f98d.svg
+++ b/public/emoji/1f98d.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#292F33" d="M5 16c0-4-5-3-4 1s3 5 3 5l1-6zm26 0c0-4 5-3 4 1s-3 5-3 5l-1-6z"/><path fill="#292F33" d="M32.65 21.736c0 10.892-4.691 14.087-14.65 14.087-9.958 0-14.651-3.195-14.651-14.087S8.042.323 18 .323c9.959 0 14.65 10.521 14.65 21.413z"/><path fill="#66757F" d="M27.567 23c1.49-4.458 2.088-7.312-.443-7.312H8.876c-2.532 0-1.933 2.854-.444 7.312C3.504 34.201 17.166 34.823 18 34.823S32.303 33.764 27.567 23z"/><path fill="#292F33" d="M15 18.003c0 1.105-.896 2-2 2s-2-.895-2-2c0-1.104.896-1 2-1s2-.105 2 1zm10 0c0 1.105-.896 2-2 2s-2-.895-2-2c0-1.104.896-1 2-1s2-.105 2 1z"/><ellipse fill="#292F33" cx="15.572" cy="23.655" rx="1.428" ry="1"/><path fill="#292F33" d="M21.856 23.655c0 .553-.639 1-1.428 1-.79 0-1.429-.447-1.429-1 0-.553.639-1 1.429-1s1.428.448 1.428 1z"/><path fill="#99AAB5" d="M21.02 21.04c-1.965-.26-3.02.834-3.02.834s-1.055-1.094-3.021-.834c-3.156.417-3.285 3.287-1.939 3.105.766-.104.135-.938 1.713-1.556 1.579-.616 3.247.66 3.247.66s1.667-1.276 3.246-.659.947 1.452 1.714 1.556c1.346.181 1.218-2.689-1.94-3.106z"/><path fill="#292F33" d="M24.835 30.021c-1.209.323-3.204.596-6.835.596s-5.625-.272-6.835-.596c-3.205-.854-1.923-1.735 0-1.477 1.923.259 3.631.415 6.835.415 3.205 0 4.914-.156 6.835-.415 1.923-.258 3.204.623 0 1.477z"/><path fill="#66757F" d="M4.253 16.625c1.403-1.225-1.078-3.766-2.196-2.544-.341.373.921-.188 1.336 1.086.308.942.001 2.208.86 1.458zm27.493 0c-1.402-1.225 1.078-3.766 2.196-2.544.341.373-.921-.188-1.337 1.086-.306.942 0 2.208-.859 1.458z"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#31373D" d="M5 16c0-4-5-3-4 1s3 5 3 5l1-6zm26 0c0-4 5-3 4 1s-3 5-3 5l-1-6z"/><path fill="#31373D" d="M32.65 21.736c0 10.892-4.691 14.087-14.65 14.087-9.958 0-14.651-3.195-14.651-14.087S8.042.323 18 .323c9.959 0 14.65 10.521 14.65 21.413z"/><path fill="#66757F" d="M27.567 23c1.49-4.458 2.088-7.312-.443-7.312H8.876c-2.532 0-1.933 2.854-.444 7.312C3.504 34.201 17.166 34.823 18 34.823S32.303 33.764 27.567 23z"/><path fill="#31373D" d="M15 18.003c0 1.105-.896 2-2 2s-2-.895-2-2c0-1.104.896-1 2-1s2-.105 2 1zm10 0c0 1.105-.896 2-2 2s-2-.895-2-2c0-1.104.896-1 2-1s2-.105 2 1z"/><ellipse fill="#31373D" cx="15.572" cy="23.655" rx="1.428" ry="1"/><path fill="#31373D" d="M21.856 23.655c0 .553-.639 1-1.428 1-.79 0-1.429-.447-1.429-1 0-.553.639-1 1.429-1s1.428.448 1.428 1z"/><path fill="#99AAB5" d="M21.02 21.04c-1.965-.26-3.02.834-3.02.834s-1.055-1.094-3.021-.834c-3.156.417-3.285 3.287-1.939 3.105.766-.104.135-.938 1.713-1.556 1.579-.616 3.247.66 3.247.66s1.667-1.276 3.246-.659.947 1.452 1.714 1.556c1.346.181 1.218-2.689-1.94-3.106z"/><path fill="#31373D" d="M24.835 30.021c-1.209.323-3.204.596-6.835.596s-5.625-.272-6.835-.596c-3.205-.854-1.923-1.735 0-1.477 1.923.259 3.631.415 6.835.415 3.205 0 4.914-.156 6.835-.415 1.923-.258 3.204.623 0 1.477z"/><path fill="#66757F" d="M4.253 16.625c1.403-1.225-1.078-3.766-2.196-2.544-.341.373.921-.188 1.336 1.086.308.942.001 2.208.86 1.458zm27.493 0c-1.402-1.225 1.078-3.766 2.196-2.544.341.373-.921-.188-1.337 1.086-.306.942 0 2.208-.859 1.458z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f992.svg b/public/emoji/1f992.svg
index 594e4e5baa00c12f0519b1e657ca8bded4ae12a2..233e3c989dc0e524d76d2aa113d1ff178042b80a 100644
--- a/public/emoji/1f992.svg
+++ b/public/emoji/1f992.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#FFCC4D" d="M36 36V21.833l-6.667-10.167c-3.617-2.864-8.01-7.425-14.011-5.421 0 0-2.958-.135-4.143 1.215C8.484 9.422 6.3 16.272 5 18.667 2.778 22.756.28 25.689.986 27.772c.932 2.752 1.883 4.695 4.792 2.573 1.582-1.155 1.874-3.798 5.156-5.703 3.013-.053 7.066-.475 8.478-3.896 0 0 2.643 3.387 5.254 10.587.195.539 1.025 3.121 1.391 4.667H36z"/><path fill="#FFCC4D" d="M11.771 7.916s-.192-3.23-.988-4.512c-.795-1.283-.649-1.882.404-2.383 1.055-.502 1.93-.241 1.402 1.327-.441 1.311.071 3.392 1.023 4.251l-1.841 1.317zm2.525-5.019c.46.952 3.304 1.476 4.169 4.971.866 3.496-2.584 2.434-3.593.705-1.122-1.924-1.507-3.432-1.538-4.682-.018-.661.031-2.917.962-.994z"/><path fill="#754C29" d="M36 18.333C27.666 5 17.667 2.5 13.332 6.658 21.249 5.122 26.666 8.667 36 21.833v-3.5z"/><path fill="#F4900C" d="M16.428 6.306c-2.374.192-6.061 4.647-7.825 6.604 0 0-1.983-6.025 1.064-6.409 5.09-.643 5.656-.255 5.656-.255l1.105.06z"/><path fill="#FFCC4D" d="M20.745 2.289c-.419.971 1.047 3.463-1.029 6.405-2.077 2.943-3.531-.361-2.885-2.255.72-2.107 1.608-3.385 2.533-4.227.489-.446 2.227-1.886 1.381.077z"/><path fill="#F4900C" d="M19.764 3.399c-.005.605-.06 1.32-.215 2-.156.679-.413 1.324-.821 1.786-.815.927-1.222-.167-.705-1.283.518-1.115 1.326-1.969 1.404-2.452.078-.482.337-.051.337-.051z"/><path fill="#292F33" d="M13.056 13.85c0 .776-.629 1.405-1.407 1.405-.776 0-1.405-.629-1.405-1.405 0-.778.629-1.407 1.405-1.407.778 0 1.407.629 1.407 1.407z"/><path fill="#603913" d="M3.694 26.222c0 .726-.438 1.315-.979 1.315-.539 0-.978-.589-.978-1.315s.438-1.315.978-1.315c.541-.001.979.589.979 1.315z"/><path fill="#F4900C" d="M25.445 9.685s-3.611 1.314-2.945 3.481S24.666 19 25.833 19s4.529-4.482 4.529-4.482-2.444-2.922-4.917-4.833zm6.281 6.465S28.5 17.5 28.5 19.334s-1.168 4.833.166 6.333 4.334 1.166 5.834.166 1.5-1.666 1.5-1.666v-2.334s-1.337-1.939-1.945-2.669c-.859-1.239-2.329-3.014-2.329-3.014zm-6.06 4.517c1.518.414 1.667 2.834.667 4s-2.834 2.499-3.667-.334 1.166-4.166 3-3.666zm5.5 8c-3.745-2.007-4.499 1.166-4.666 3.166S27 34.667 29 35s6.832-3.833 2.166-6.333zM36 27.333s-2.666-.499-2.5.834S36 33 36 33v-5.667zM2.26 23.319s3.379-5.312 4.601-9.001C8.082 10.628 10.5 9 10.5 9S9 14.334 7.667 17.333c-1.334 3-4.313 7.306-5.407 5.986zM17.833 16.5c1.499.167 3.001 2.833.833 3.333-2.167.5-4-.667-3.667-2s2.834-1.333 2.834-1.333zm-2.167 5.834c-1.447 1.298-3 1.001-3.333.167s-.833-3.667 1-3.167 3.314 2.12 2.333 3zm-4.409.836c-1.022.805-2.118.62-2.353.103-.235-.517-.589-2.272.705-1.963 1.296.31 2.342 1.315 1.648 1.86zm7.636-9.351c-.168 1.29-1.082 1.925-1.611 1.719-.529-.206-2.009-1.214-.868-1.897 1.142-.683 2.594-.696 2.479.178z"/><path fill="#FFCC4D" d="M14.569 7.101s1.215-2.999 1.048-4.499.419-2.187 1.477-2.187c1.167 0 1.471.791.607 2.01-.962.994-1.394 3.093-.904 4.278l-2.228.398z"/><path fill="#8B5E3C" d="M17.094.415c2.239.002 1.072 1.358.607 2.01-.465.651-2.085.177-2.085.177S15.17.414 17.094.415zM10.579 3.05s-1.288-1.878.598-2.256c2.196-.44 2.393.826 1.441 1.641-.951.815-2.039.615-2.039.615z"/><path fill="#F4900C" d="M36 36v-2s-1.334 0-3 .667c-.788.315-1.346.853-1.722 1.333H36z"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path d="M22.217 35.615h-.002c-.804-.142-1.34-.908-1.198-1.712l.59-3.344s.68-3.165-1.076-5.449c1.259-1.171 5.024.085 5.024.085l-1.626 9.221c-.142.804-.908 1.34-1.712 1.199zm-12.692-.021h-.002c-.804-.142-1.34-.908-1.198-1.712l1.312-7.025s.503-2.419.503-4.439c1.142-.439 2.723 2.757 2.723 2.757l-1.626 9.221c-.143.803-.909 1.339-1.712 1.198zm21.277-9.823c-.537 0-.977-.431-.985-.969-.012-.723-.304-4.326-4.925-4.326-.545 0-.985-.441-.985-.985s.441-.985.985-.985c5.363 0 6.858 3.938 6.896 6.264.009.545-.425.993-.969 1.002l-.017-.001z" fill="#F4900C"/><g fill="#754C29"><path d="M15.226 17.252l-3.46-11.98 1.687-1.02c.369.61.628 1.722 1.054 3.633.569 2.558 1.349 6.06 2.657 7.876.318.442.218 1.058-.224 1.376-.175.126-1.714.115-1.714.115zM7.615 2.71V.739c0-.408.331-.739.739-.739s.739.331.739.739V2.71H7.615zm2.332 0V.739c0-.408.331-.739.739-.739s.739.331.739.739V2.71H9.947z"/><ellipse cx="30.802" cy="26.263" rx="1.971" ry="2.464"/></g><path fill="#FFCC4D" d="M28.935 34.094s-.647-2.515-.998-4.154c-.332-1.549-1.025-3.981-1.171-8.225-.01-.145-.039-.512-.138-.779-.122-.33-.567-.933-.766-1.203-.777-1.052-2.012-1.691-3.526-1.847-1.283-.132-2.573-.185-3.854-.339-.59-.071-1.1-.156-1.422-.272-1.636-.589-1.962-2.502-2.414-3.965-.8-2.59-1.508-5.225-1.961-7.9l-.036.009.036-.009-.027-.165V4.84c1.567-.714 2.79-2.888 1.971-3.706-1.416-.708-2.827.11-3.513.992-.02-.001-.039-.006-.059-.006H8.459c-.655 0-1.304.16-1.872.51-.584.359-.986.907-1.633 1.19-.786.344-1.721.093-2.417.64-1.189.933-.625 2.525.854 2.578.201.577.745.993 1.39.993h2.106c.055.011.108.021.173.029.604.071 1.088.525 1.477 1.215 1.047 1.856 1.244 4.244 1.415 6.324.119 1.448.177 2.906.158 4.36-.293 1.566-.12 3.377-.12 3.377.044.419.186.777.394 1.095l-.01.011c1.99 2.81 2.449 5.97 2.449 5.97l.784 4.193c.142.804.908 1.341 1.713 1.199.804-.142 1.341-.908 1.199-1.712l-1.262-7.159c1.977.534 4.609.932 6.449.852 0 .006-.003.014-.002.02 2.371-.146 3.26 1.73 3.454 2.576.194.846.868 4.228.868 4.228.142.804.909 1.341 1.712 1.199.802-.143 1.339-.91 1.197-1.714z"/><path fill="#F4900C" d="M11.975 22.1c-.985.985-1.16 2.408-.391 3.178.77.77 2.193.595 3.178-.391s1.16-2.408.391-3.178c-.77-.77-2.193-.595-3.178.391zm1.088-6.185c0 1.633 1.324 2.956 2.956 2.956 1.029 0 1.933-.526 2.462-1.323-.59-.071-1.1-.156-1.422-.272-1.564-.563-1.872-2.237-2.253-3.441-.057-.179-.108-.349-.162-.523-.935.496-1.581 1.469-1.581 2.603zm-.986-4.434c0-1.361-1.103-2.464-2.464-2.464-.388 0-.75.098-1.077.257.635 1.126 1.015 2.885 1.242 4.653 1.282-.086 2.299-1.142 2.299-2.446zm-1.093-4.079c0 1.118.906 2.023 2.023 2.023.182 0 .355-.032.523-.077-.449-1.787-.709-3.122-.847-3.937-.961.156-1.699.985-1.699 1.991zm8.977 12.456c0 1.633 1.324 2.956 2.956 2.956 1.633 0 2.956-1.324 2.956-2.956 0-.043-.011-.082-.013-.124-.777-1.052-2.012-1.691-3.526-1.847-.457-.047-.972-.088-1.499-.128-.538.536-.874 1.277-.874 2.099zM11.598 2.613c.505-.483 1.317-1.089 1.778-.856.461.233.258 1.273-1.166 2.151.113-.439.551-1.215-.612-1.295z"/><circle fill="#292F33" cx="8.772" cy="4.09" r=".985"/><path d="M21.047 33.545s-1.142 1.351-.985 1.781 2.741.491 3.249.022-1.951-1.842-2.264-1.803zm-12.623 0s-1.142 1.351-.985 1.781c.156.43 2.741.491 3.249.022s-1.951-1.842-2.264-1.803zm4.547 2.22c.136.391 2.766.329 3.205-.461.439-.79-2.678-1.317-2.678-1.317s-.703 1.273-.527 1.778zm12.404 0c.136.391 2.766.329 3.205-.461.439-.79-2.678-1.317-2.678-1.317s-.703 1.273-.527 1.778z" fill="#754C29"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f99d.svg b/public/emoji/1f99d.svg
index 7f8676d6b70637287c672d52e4c03bfa55c27126..30c88720fb80085217e67d8ab36d7181128201bc 100644
--- a/public/emoji/1f99d.svg
+++ b/public/emoji/1f99d.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#99AAB5" d="M10.819 6.833c-1.608-3.083-6.12-4.531-6.96-3.261s.695 9.976 1.727 9.794 5.233-6.533 5.233-6.533zm14.362 0c1.608-3.083 6.12-4.531 6.96-3.261.84 1.27-.695 9.976-1.727 9.794s-5.233-6.533-5.233-6.533z"/><path fill="#292F33" d="M10.007 8.856C8.759 6.223 5.393 4.12 4.796 5.176s.704 9.229 1.464 9.095 3.747-5.415 3.747-5.415zm16.232 0c1.21-2.64 4.423-4.77 4.982-3.72s-.742 9.223-1.464 9.095-3.518-5.375-3.518-5.375z"/><path fill="#99AAB5" d="M33 14.756C29.464 10.599 24 3 18 3S6.536 10.599 3 14.756c-3 3.527-3 8.229-2 10.58 1.042 2.45 3 4.702 9 7.053 2.029.795 5.606 2.351 8 2.351s5.971-1.556 8-2.351c6-2.351 7.958-4.603 9-7.053 1-2.352 1-7.054-2-10.58z"/><path fill="#E1E8ED" d="M18 15.472c0-4.827-4.007-4.771-6.429-4.493C7.139 11.488.449 17.59.449 21.493c0 3.739.506 5.284 5.396 8.769C9.275 22.055 18 19.211 18 15.472z"/><path fill="#292F33" d="M18 16.817c0-2.357-4.313-2.987-6.533-2.631-4.805.77-10.568 7.42-10.568 10.793.618 1.855 2.586 4.103 4.947 5.34 2.901-3.796 6.689-6.239 9.781-7.42C17.359 22.237 18 19.458 18 16.817z"/><path fill="#E1E8ED" d="M18 15.472c0-4.827 4.007-4.771 6.429-4.493 4.433.509 11.122 6.611 11.122 10.514 0 3.739-.506 5.284-5.396 8.769C26.725 22.055 18 19.211 18 15.472z"/><path fill="#292F33" d="M18 16.817c0-2.357 4.313-2.987 6.533-2.631 4.805.77 10.568 7.42 10.568 10.793-.618 1.855-2.586 4.103-4.947 5.34-2.901-3.796-6.689-6.239-9.781-7.42C18.641 22.237 18 19.458 18 16.817z"/><path fill="#E1E8ED" d="M24.819 25.078c-1.607-2.024-4.091-3.641-6.819-3.641s-5.212 1.617-6.819 3.641c-1.364 1.717-1.364 3.007-.909 4.152.474 1.193 1.364 2.772 4.091 3.917.923.387 2.548 1.145 3.637 1.145s2.714-.758 3.637-1.145c2.728-1.145 3.618-2.724 4.091-3.917.455-1.145.455-2.435-.909-4.152z"/><path fill="#66757F" d="M20.722 23.032c1.181 1.372-1.72 1.165-2.722 1.165s-3.903.208-2.722-1.165C17.093 20.924 16.998 4.329 18 4.329s1.815 17.649 2.722 18.703z"/><circle fill="#99AAB5" cx="13.5" cy="18.5" r="1.5"/><circle fill="#99AAB5" cx="22.5" cy="18.5" r="1.5"/><path fill="#292F33" d="M21.575 23.172c0 1.735-2.495 3.167-3.575 3.167s-3.575-1.432-3.575-3.167 1.601-1.778 3.575-1.778 3.575.043 3.575 1.778zm0 6.021c-.677-.552-1.601.181-3.575.181s-2.898-.733-3.575-.181S15 31.461 18 31.461s4.252-1.716 3.575-2.268z"/><path fill="#66757F" d="M13.273 25.653c-.131 0-.263-.034-.384-.105-2.95-1.761-8.211-.897-9.496-.281-.372.181-.821.022-1.001-.351-.179-.374-.022-.822.352-1.001 1.713-.823 7.491-1.695 10.914.344.355.213.472.673.26 1.028-.141.235-.39.366-.645.366z"/><path fill="#66757F" d="M2.441 30.5c-.165 0-.332-.055-.47-.166-.323-.26-.374-.731-.114-1.055 1.43-1.775 4.811-4.803 11.379-5.125.412-.034.766.299.786.712.021.414-.298.766-.712.786-5.983.294-9.012 2.988-10.285 4.568-.148.184-.365.28-.584.28zm20.287-4.847c-.256 0-.505-.131-.646-.366-.212-.355-.096-.815.26-1.028 3.422-2.04 9.203-1.167 10.914-.344.374.179.531.627.352 1-.179.374-.625.534-1 .352-1.287-.617-6.548-1.479-9.496.281-.122.071-.254.105-.384.105z"/><path fill="#66757F" d="M33.559 30.5c-.219 0-.436-.096-.584-.279-1.272-1.58-4.301-4.274-10.285-4.568-.413-.021-.732-.372-.712-.786.021-.413.376-.75.786-.712 6.568.322 9.948 3.35 11.379 5.125.26.323.209.795-.113 1.055-.139.11-.305.165-.471.165z"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#99AAB5" d="M10.668 5.616C9.032 2.479 4.439 1.005 3.584 2.298s.707 10.152 1.757 9.967c1.051-.185 5.327-6.649 5.327-6.649z"/><path fill="#292F33" d="M9.841 7.674c-1.27-2.68-4.696-4.82-5.304-3.745-.435.771.122 5.263.757 7.696l4.547-3.951z"/><path fill="#99AAB5" d="M25.284 5.616c1.636-3.137 6.228-4.611 7.084-3.318s-.708 10.152-1.758 9.967c-1.051-.185-5.326-6.649-5.326-6.649z"/><path fill="#292F33" d="M26.36 7.674c1.231-2.686 4.501-4.854 5.07-3.786.416.78-.178 5.425-.815 7.825L26.36 7.674z"/><path fill="#99AAB5" d="M33.13 13.316c-2.583-3.164-9.048-11.601-15.155-11.601S5.404 10.152 2.821 13.316C-.317 17.16-.23 21.613.573 24.193c.805 2.587 3.155 5.038 9.261 7.431 2.065.809 5.705 2.393 8.142 2.393s6.076-1.583 8.142-2.393c6.106-2.393 8.457-4.843 9.261-7.431.802-2.58.89-7.033-2.249-10.877z"/><path fill="#E1E8ED" d="M17.976 14.408c0-4.913-4.078-4.855-6.542-4.572C6.922 10.353.076 16.597.076 20.569c0 1.39.16 2.631.496 3.624.584 1.726 1.875 3.015 5.034 5.266 3.49-8.351 12.37-11.246 12.37-15.051z"/><path fill="#292F33" d="M17.976 15.777c0-2.399-4.389-3.04-6.649-2.678C6.443 13.882.587 20.633.572 24.07v.013c.002.006.001.111.001.111s.384 1.401 1.623 2.815c.867.991 2.346 2.068 3.333 2.584l.01-.011c2.952-3.861 6.877-6.416 10.022-7.617 1.763-.673 2.415-3.5 2.415-6.188z"/><circle fill="#99AAB5" cx="13.396" cy="17.489" r="1.527"/><path fill="#E1E8ED" d="M17.976 14.408c0-4.913 4.078-4.855 6.542-4.572 4.511.518 11.357 6.762 11.357 10.734 0 1.39-.16 2.631-.496 3.624-.584 1.726-1.875 3.015-5.034 5.266-3.489-8.352-12.369-11.247-12.369-15.052z"/><path fill="#292F33" d="M17.976 15.777c0-2.399 4.389-3.04 6.649-2.678 4.884.783 10.74 7.534 10.755 10.971v.013c-.002.006-.001.111-.001.111s-.384 1.401-1.623 2.815c-.868.991-2.347 2.068-3.333 2.584l-.01-.011c-2.952-3.861-6.877-6.416-10.022-7.617-1.763-.673-2.415-3.5-2.415-6.188z"/><circle fill="#99AAB5" cx="22.555" cy="17.489" r="1.527"/><path fill="#66757F" d="M20.746 22.102c-.923-1.073-1.75-19.035-2.77-19.035s-1.847 17.962-2.77 19.035h5.54z"/><path fill="#E1E8ED" d="M24.915 24.184c-1.636-2.06-4.164-3.705-6.94-3.705s-5.304 1.646-6.94 3.705c-1.388 1.748-1.388 3.061-.925 4.226.482 1.214 1.388 2.821 4.164 3.986.939.394 2.594 1.165 3.701 1.165 1.108 0 2.762-.771 3.701-1.165 2.776-1.165 3.682-2.772 4.164-3.986.463-1.165.463-2.478-.925-4.226z"/><path fill="#292F33" d="M21.614 28.372c-.689-.562-1.629.184-3.639.184s-2.95-.746-3.639-.184c-.689.562.585 2.308 3.639 2.308s4.328-1.746 3.639-2.308z"/><path fill="#66757F" d="M13.165 24.769c-.133 0-.268-.035-.391-.107-3.002-1.792-8.357-.913-9.664-.286-.378.184-.835.023-1.019-.357-.182-.381-.022-.837.358-1.019 1.744-.838 7.624-1.725 11.107.35.362.217.481.685.264 1.047-.142.239-.395.372-.655.372z"/><path fill="#66757F" d="M2.141 29.702c-.168 0-.337-.056-.478-.169-.328-.264-.38-.744-.116-1.073 1.455-1.807 4.896-4.888 11.581-5.216.419-.035.779.304.8.725.021.421-.304.779-.725.8-6.089.299-9.171 3.041-10.467 4.649-.151.187-.372.284-.595.284zm31.669 0c-.223 0-.443-.097-.594-.284-1.295-1.608-4.377-4.35-10.467-4.649-.42-.021-.745-.379-.725-.8.021-.42.383-.763.8-.725 6.685.328 10.124 3.409 11.58 5.216.264.329.213.809-.115 1.073-.141.113-.31.169-.479.169z"/><path fill="#66757F" d="M22.787 24.769c-.26 0-.514-.133-.657-.373-.216-.362-.097-.83.264-1.047 3.482-2.076 9.366-1.188 11.107-.35.381.182.541.638.358 1.018-.182.381-.636.544-1.018.358-1.31-.628-6.664-1.505-9.664.286-.123.074-.257.108-.39.108z"/><path fill="#292F33" d="M21.614 22.244c0 1.765-2.539 3.223-3.639 3.223-1.1 0-3.639-1.458-3.639-3.223s1.629-1.81 3.639-1.81 3.639.045 3.639 1.81z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f99e.svg b/public/emoji/1f99e.svg
index 2b29844a7dcbb9cdee329e9fb9fcdb8f455a354f..8df2a7467606b11621ed366ae19e556b00eae6fd 100644
--- a/public/emoji/1f99e.svg
+++ b/public/emoji/1f99e.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#BE1931" d="M15.137 22.946l-.064-.003c-2.111-.169-4.866-1.238-5.998-5.368-.115-.419.13-.859.549-.974.42-.115.852.126.967.545l.003.011c.267.973 1.078 3.931 4.605 4.214.434.035.757.414.722.848-.033.415-.378.727-.784.727zm-4.586 7.139c-.138 0-.277-.036-.404-.112-.373-.224-.494-.708-.27-1.081 1.331-2.22 3.468-3.389 6.35-3.475.426.014.798.329.811.764.013.435-.329.798-.764.811-.861.026-3.483.104-5.046 2.711-.148.245-.409.382-.677.382z"/><path fill="#BE1931" d="M14.39 25.107c-1.542 0-4.02-.34-6.377-2.575-.315-.299-.329-.798-.03-1.113.301-.315.799-.328 1.114-.029 2.502 2.373 5.106 2.182 6.219 2.102l.197-.014c.438-.023.808.302.836.736.027.435-.302.809-.736.836l-.182.013c-.262.019-.616.044-1.041.044zm7.164-2.161c-.406 0-.751-.312-.784-.726-.035-.434.289-.812.723-.848 3.526-.282 4.338-3.242 4.604-4.214l1.52.417c-1.133 4.129-3.888 5.199-5.999 5.368-.021.002-.043.003-.064.003zm4.587 7.139c-.268 0-.528-.137-.677-.383-1.563-2.606-4.185-2.685-5.046-2.711-.435-.013-.777-.376-.764-.811.013-.435.383-.764.811-.764 2.882.086 5.019 1.255 6.351 3.475.224.373.103.857-.271 1.081-.127.077-.267.113-.404.113z"/><path fill="#BE1931" d="M22.302 25.107c-.426 0-.779-.025-1.04-.045l-.183-.013c-.435-.027-.764-.401-.736-.836.027-.434.405-.768.836-.736l.197.014c1.111.08 3.717.271 6.219-2.102.315-.299.815-.286 1.113.029.3.315.286.814-.029 1.113-2.358 2.237-4.835 2.576-6.377 2.576zM8.983 6.922c.752-.779 2.316-2.461 1.59-3.954.949.077 6.757 6.159-.06 9.073-1.072-.137-1.53-5.119-1.53-5.119zm8.772 23.394c-.726.329-4.25 2.171-4.354 5.46.069.789 2.73-1.25 5.01-1.25v-3.454l-.656-.756z"/><path fill="#BE1931" d="M19.035 30.316c.726.329 4.25 2.171 4.354 5.46-.069.789-2.73-1.25-5.01-1.25v-3.454l.656-.756zm-11.4-18.303c.133 1.429 2.975 2.889 5.023 3.227.262-.57-1.354-2.237-2.227-3.246-.488-.564-.701-1.904-2.185-1.321s-.611 1.34-.611 1.34z"/><path fill="#BE1931" d="M11.742 13.793c-.655 0-.83 1.754 2.489 2.544s1.56-.878 1.048-1.667c-.656-1.009-3.537-.877-3.537-.877z"/><path fill="#89021F" d="M15.465 25.382c-.187.987-.075 6.217 2.961 6.612v-7.006l-2.961.394z"/><path fill="#BE1931" d="M27.629 6.922c-.752-.779-2.316-2.461-1.59-3.954-.949.077-6.757 6.159.06 9.073 1.072-.137 1.53-5.119 1.53-5.119z"/><path fill="#BE1931" d="M28.976 12.013c-.133 1.429-2.975 2.889-5.023 3.227-.262-.57 1.354-2.237 2.227-3.246.488-.564.701-1.904 2.185-1.321s.611 1.34.611 1.34z"/><path fill="#BE1931" d="M24.87 13.793c.655 0 .83 1.754-2.489 2.544s-1.56-.878-1.048-1.667c.655-1.009 3.537-.877 3.537-.877z"/><path fill="#DD2E44" d="M28.391.042c2.633.67 4.675 5.092 4.174 7.847-.782 4.302-2.992 5.787-5.428 6.164-.748-.058-3.293-3.474-.576-6.272s2.505-5.856 1.83-7.739z"/><path fill="#BE1931" d="M17.541 12.5c-.258 0-.478-.199-.498-.461-.498-6.35-2.635-10.064-6.018-10.459-.274-.032-.471-.28-.438-.555.032-.273.274-.468.555-.438 2.264.264 6.17 2.093 6.898 11.374.021.275-.184.516-.459.538l-.04.001zm1.418 0l-.04-.001c-.275-.021-.481-.262-.459-.538C19.188 2.68 23.095.851 25.359.587c.27-.038.522.164.555.438.031.274-.165.523-.439.555-3.383.395-5.52 4.109-6.018 10.459-.02.262-.239.461-.498.461z"/><path fill="#A0041E" d="M18.381 23.04c0 1 .019 3.326.019 4.876-.576 0-1.491-.016-2.438-.3-1.497-.45-1.113-3.901-.614-4.701l3.033.125z"/><path fill="#BE1931" d="M18.335 19.239c0 1.113.022 3.702.022 5.428-.655 0-1.696-.017-2.773-.334-1.703-.501-1.266-4.342-.699-5.233l3.45.139z"/><path fill="#DD2E44" d="M18.335 11.731c0 2.169.279 8.822.279 9.497-1.397 0-5.301.337-5.082-3.134.218-3.47 2.358-6.363 4.803-6.363z"/><path fill="#89021F" d="M21.152 25.382c.187.987.075 6.217-2.961 6.612v-7.006l2.961.394z"/><path fill="#A0041E" d="M18.235 23.04c0 1-.152 3.326-.152 4.876.576 0 1.624-.016 2.57-.3 1.497-.45 1.113-3.901.614-4.701l-3.032.125z"/><path fill="#BE1931" d="M18.282 19.239c0 1.113-.165 3.702-.165 5.428.655 0 1.84-.017 2.916-.334 1.703-.501 1.266-4.342.699-5.233l-3.45.139z"/><path fill="#DD2E44" d="M18.282 11.731c0 2.169-.21 8.822-.21 9.497 1.397 0 5.231.337 5.013-3.134s-2.358-6.363-4.803-6.363zM8.22.042c-2.633.67-4.675 5.092-4.174 7.847.782 4.302 2.992 5.787 5.428 6.164.748-.058 3.293-3.474.576-6.272S7.546 1.925 8.22.042z"/><ellipse transform="rotate(-10.068 16.574 12.941)" fill="#BE1931" cx="16.578" cy="12.94" rx="1.015" ry="1.435"/><ellipse transform="rotate(-79.939 19.875 12.896)" fill="#BE1931" cx="19.875" cy="12.896" rx="1.435" ry="1.015"/><ellipse transform="rotate(-10.068 16.45 12.233)" fill="#292F33" cx="16.453" cy="12.232" rx="1.015" ry="1.435"/><ellipse transform="rotate(-79.939 19.99 12.232)" fill="#292F33" cx="19.99" cy="12.232" rx="1.435" ry="1.015"/><path fill="#EA596E" d="M14.375 18.906c.281.844.844 1.75 3.844 1.75 2.094 0 4.156-.375 4.094-1.906-.781.656-1.75.938-4.094.938-2.5 0-3.844-.782-3.844-.782z"/><path fill="#DD2E44" d="M15.272 22.923c.218.595.653 1.234 2.975 1.234 1.62 0 3.217-.264 3.168-1.344-.605.463-1.354.661-3.168.661-1.935-.001-2.975-.551-2.975-.551z"/><path fill="#BE1931" d="M15.376 26.089c.205.595.615 1.234 2.803 1.234 1.527 0 3.031-.264 2.986-1.344-.57.463-1.276.661-2.986.661-1.823 0-2.803-.551-2.803-.551z"/><path fill="#EA596E" d="M8.812 12.781c-.106 0-.214-.022-.316-.07-2.026-.944-3.157-2.62-3.361-4.98-.036-.412.265-.812.677-.848.413-.036.773.231.81.643l.006.076c.064.737.233 2.693 2.501 3.75.375.175.538.621.363.997-.127.272-.397.432-.68.432zm18.938 0c-.282 0-.553-.16-.68-.433-.175-.375-.013-.822.363-.997 2.268-1.057 2.437-3.013 2.5-3.75l.754-.008.741.137c-.205 2.36-1.336 4.036-3.362 4.98-.102.049-.21.071-.316.071z"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><g fill="#BE1931"><path d="M14.847 22.402h-.064c-2.117-.069-4.919-1.006-6.246-5.077-.135-.413.089-.864.503-.999.414-.135.857.085.992.499l.003.011c.312.959 1.263 3.876 4.8 3.991.435.015.776.378.762.812-.014.415-.344.743-.75.763zm-5.348 5.637c.151-.221.411-.359.698-.342 3.034.181 4.578-1.938 5.086-2.634.256-.352.749-.429 1.1-.173.352.256.414.747.173 1.1-1.698 2.33-3.869 3.434-6.453 3.28-.434-.026-.766-.399-.74-.834.01-.148.059-.284.136-.397z"/><path d="M14.362 23.967c.421-.064.767-.141 1.022-.2l.179-.04c.426-.092.695-.511.603-.937-.092-.425-.515-.698-.937-.603l-.193.043c-1.087.245-3.635.824-6.463-1.149-.357-.248-.849-.161-1.096.195-.249.357-.161.848.195 1.096 2.665 1.86 5.165 1.826 6.69 1.595z"/><path d="M15.403 25.298c.376-.199 1.053-.624 1.053-.624.371-.228.487-.712.259-1.084-.227-.37-.718-.488-1.084-.259l-.168.105c-.944.591-3.156 1.981-6.479 1.057-.419-.116-.854.129-.97.548-.117.419.129.854.548.97 3.131.87 5.479.009 6.841-.713z"/></g><g fill="#BE1931"><path d="M21.833 22.402h.064c2.117-.069 4.919-1.006 6.246-5.077.135-.413-.089-.864-.503-.999-.414-.135-.857.085-.992.499l-.003.011c-.312.959-1.263 3.876-4.8 3.991-.435.015-.776.378-.762.812.015.415.344.743.75.763zm5.348 5.637c-.151-.221-.411-.359-.698-.342-3.034.181-4.578-1.938-5.086-2.634-.256-.352-.749-.429-1.1-.173-.352.256-.414.747-.173 1.1 1.698 2.33 3.869 3.434 6.453 3.28.434-.026.766-.399.74-.834-.009-.148-.058-.284-.136-.397z"/><path d="M22.318 23.967c-.421-.064-.767-.141-1.022-.2l-.179-.04c-.426-.092-.695-.511-.603-.937.092-.425.515-.698.937-.603l.193.043c1.087.245 3.635.824 6.463-1.149.357-.248.849-.161 1.096.195.249.357.161.848-.195 1.096-2.664 1.86-5.165 1.826-6.69 1.595z"/><path d="M21.277 25.298c-.376-.199-1.053-.624-1.053-.624-.371-.228-.487-.712-.259-1.084.227-.37.718-.488 1.084-.259l.168.105c.944.591 3.156 1.981 6.479 1.057.419-.116.854.129.97.548.117.419-.129.854-.548.97-3.131.87-5.479.009-6.841-.713z"/></g><path fill="#BE1931" d="M8.983 6.922c.752-.779 2.316-2.461 1.59-3.954.949.077 6.757 6.159-.06 9.073-1.072-.137-1.53-5.119-1.53-5.119zm8.772 23.394c-.726.329-4.25 2.171-4.354 5.46.069.789 2.73-1.25 5.01-1.25v-3.454l-.656-.756z"/><path fill="#BE1931" d="M19.035 30.316c.726.329 4.25 2.171 4.354 5.46-.069.789-2.73-1.25-5.01-1.25v-3.454l.656-.756zm-11.4-18.303c.133 1.429 2.975 2.889 5.023 3.227.262-.57-1.354-2.237-2.227-3.246-.488-.564-.701-1.904-2.185-1.321s-.611 1.34-.611 1.34z"/><path fill="#BE1931" d="M11.742 13.793c-.655 0-.83 1.754 2.489 2.544s1.56-.878 1.048-1.667c-.656-1.009-3.537-.877-3.537-.877z"/><path fill="#89021F" d="M15.465 25.382c-.187.987-.075 6.217 2.961 6.612v-7.006l-2.961.394z"/><path fill="#BE1931" d="M27.629 6.922c-.752-.779-2.316-2.461-1.59-3.954-.949.077-6.757 6.159.06 9.073 1.072-.137 1.53-5.119 1.53-5.119z"/><path fill="#BE1931" d="M28.976 12.013c-.133 1.429-2.975 2.889-5.023 3.227-.262-.57 1.354-2.237 2.227-3.246.488-.564.701-1.904 2.185-1.321s.611 1.34.611 1.34z"/><path fill="#BE1931" d="M24.87 13.793c.655 0 .83 1.754-2.489 2.544s-1.56-.878-1.048-1.667c.655-1.009 3.537-.877 3.537-.877z"/><path fill="#DD2E44" d="M28.391.042c2.633.67 4.675 5.092 4.174 7.847-.782 4.302-2.992 5.787-5.428 6.164-.748-.058-3.293-3.474-.576-6.272s2.505-5.856 1.83-7.739z"/><path fill="#BE1931" d="M17.541 12.5c-.258 0-.478-.199-.498-.461-.498-6.35-2.635-10.064-6.018-10.459-.274-.032-.471-.28-.438-.555.032-.273.274-.468.555-.438 2.264.264 6.17 2.093 6.898 11.374.021.275-.184.516-.459.538l-.04.001zm1.418 0l-.04-.001c-.275-.021-.481-.262-.459-.538C19.188 2.68 23.095.851 25.359.587c.27-.038.522.164.555.438.031.274-.165.523-.439.555-3.383.395-5.52 4.109-6.018 10.459-.02.262-.239.461-.498.461z"/><path fill="#A0041E" d="M18.381 23.04c0 1 .019 3.326.019 4.876-.576 0-1.491-.016-2.438-.3-1.497-.45-1.113-3.901-.614-4.701l3.033.125z"/><path fill="#BE1931" d="M18.335 19.239c0 1.113.022 3.702.022 5.428-.655 0-1.696-.017-2.773-.334-1.703-.501-1.266-4.342-.699-5.233l3.45.139z"/><path fill="#DD2E44" d="M18.335 11.731c0 2.169.279 8.822.279 9.497-1.397 0-5.301.337-5.082-3.134.218-3.47 2.358-6.363 4.803-6.363z"/><path fill="#89021F" d="M21.152 25.382c.187.987.075 6.217-2.961 6.612v-7.006l2.961.394z"/><path fill="#A0041E" d="M18.235 23.04c0 1-.152 3.326-.152 4.876.576 0 1.624-.016 2.57-.3 1.497-.45 1.113-3.901.614-4.701l-3.032.125z"/><path fill="#BE1931" d="M18.282 19.239c0 1.113-.165 3.702-.165 5.428.655 0 1.84-.017 2.916-.334 1.703-.501 1.266-4.342.699-5.233l-3.45.139z"/><path fill="#DD2E44" d="M18.282 11.731c0 2.169-.21 8.822-.21 9.497 1.397 0 5.231.337 5.013-3.134s-2.358-6.363-4.803-6.363zM8.22.042c-2.633.67-4.675 5.092-4.174 7.847.782 4.302 2.992 5.787 5.428 6.164.748-.058 3.293-3.474.576-6.272S7.546 1.925 8.22.042z"/><ellipse transform="rotate(-10.068 16.574 12.941)" fill="#BE1931" cx="16.578" cy="12.94" rx="1.015" ry="1.435"/><ellipse transform="rotate(-79.939 19.875 12.896)" fill="#BE1931" cx="19.875" cy="12.896" rx="1.435" ry="1.015"/><ellipse transform="rotate(-10.068 16.45 12.233)" fill="#292F33" cx="16.453" cy="12.232" rx="1.015" ry="1.435"/><ellipse transform="rotate(-79.939 19.99 12.232)" fill="#292F33" cx="19.99" cy="12.232" rx="1.435" ry="1.015"/><path fill="#EA596E" d="M14.375 18.906c.281.844.844 1.75 3.844 1.75 2.094 0 4.156-.375 4.094-1.906-.781.656-1.75.938-4.094.938-2.5 0-3.844-.782-3.844-.782z"/><path fill="#DD2E44" d="M15.272 22.923c.218.595.653 1.234 2.975 1.234 1.62 0 3.217-.264 3.168-1.344-.605.463-1.354.661-3.168.661-1.935-.001-2.975-.551-2.975-.551z"/><path fill="#BE1931" d="M15.376 26.089c.205.595.615 1.234 2.803 1.234 1.527 0 3.031-.264 2.986-1.344-.57.463-1.276.661-2.986.661-1.823 0-2.803-.551-2.803-.551z"/><path fill="#EA596E" d="M8.812 12.781c-.106 0-.214-.022-.316-.07-2.026-.944-3.157-2.62-3.361-4.98-.036-.412.265-.812.677-.848.413-.036.773.231.81.643l.006.076c.064.737.233 2.693 2.501 3.75.375.175.538.621.363.997-.127.272-.397.432-.68.432zm18.938 0c-.282 0-.553-.16-.68-.433-.175-.375-.013-.822.363-.997 2.268-1.057 2.437-3.013 2.5-3.75l.754-.008.741.137c-.205 2.36-1.336 4.036-3.362 4.98-.102.049-.21.071-.316.071z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f99f.svg b/public/emoji/1f99f.svg
index 80258274f1a6983c23b39f282ad6a617b59289ba..58881512599e01d5571292c34383fbfe7601590d 100644
--- a/public/emoji/1f99f.svg
+++ b/public/emoji/1f99f.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#292F33" d="M15.245 11c-2.036 0-4.296-.088-5.354-1.146-.585-.586-.361-1.687-.124-2.852.152-.75.383-1.883.12-2.153-.205-.209-1.078-.664-1.849-1.065-1.187-.617-2.533-1.317-3.147-1.93-.195-.195-.195-.512 0-.707s.512-.195.707 0c.505.505 1.833 1.195 2.901 1.75 1.108.576 1.802.945 2.104 1.254.633.649.396 1.815.145 3.05-.133.651-.354 1.74-.149 1.945.853.854 3.415.854 4.646.854.276 0 .5.224.5.5s-.224.5-.5.5zM1.244 26c-.075 0-.151-.017-.223-.053-.247-.124-.347-.424-.224-.671.896-1.791 3.218-3.082 4.465-3.775.315-.176.559-.308.679-.398.079-.15.215-1.123.325-1.904.284-2.025.605-4.32 1.685-5.103 2.917-2.117 7.71-2.092 8.188-1.499l.298.371-.36.351c-.191.17-.479.166-.666-.001-.759-.146-4.4-.206-6.873 1.588-.735.533-1.064 2.88-1.281 4.432-.226 1.608-.332 2.273-.709 2.561-.159.121-.428.271-.799.478-1.153.641-3.299 1.834-4.057 3.349-.088.172-.264.274-.448.274z"/><path fill="#292F33" d="M5.245 36c-.184 0-.36-.102-.448-.276-.124-.247-.023-.547.224-.671.582-.365 4.724-5.776 4.724-7.553 0-1.126-.343-2.984-.619-4.478-.213-1.152-.381-2.062-.381-2.522 0-1.315 4.287-5.524 6.29-6.454.25-.116.548-.007.664.243.116.25.007.548-.243.664-1.926.894-5.629 4.774-5.711 5.553 0 .361.177 1.319.365 2.334.283 1.533.636 3.441.636 4.659 0 2.146-4.355 7.986-5.276 8.447-.074.037-.15.054-.225.054zm15.51-25c-.276 0-.5-.224-.5-.5s.224-.5.5-.5c1.231 0 3.793 0 4.646-.854.206-.206-.016-1.295-.148-1.946-.251-1.235-.488-2.401.144-3.05.302-.309.996-.678 2.104-1.254 1.067-.555 2.396-1.246 2.9-1.75.195-.195.512-.195.707 0s.195.512 0 .707c-.613.614-1.959 1.313-3.146 1.931-.771.401-1.645.855-1.85 1.065-.263.27-.032 1.402.12 2.152.237 1.166.462 2.267-.124 2.853C25.051 10.912 22.79 11 20.755 11zm14 15c-.183 0-.359-.102-.447-.276-.757-1.515-2.903-2.708-4.058-3.35-.371-.206-.64-.355-.798-.477-.377-.288-.483-.951-.709-2.559-.218-1.553-.546-3.9-1.282-4.434-2.471-1.793-6.112-1.734-6.873-1.587-.187.167-.474.171-.666 0-.198-.177-.228-.514-.061-.721.476-.595 5.272-.617 8.188 1.499 1.079.783 1.401 3.079 1.685 5.105.109.78.246 1.752.374 1.951.07.042.313.174.629.349 1.248.694 3.57 1.985 4.466 3.776.123.247.023.548-.224.671-.073.036-.149.053-.224.053z"/><path fill="#292F33" d="M30.744 35.998c-.071 0-.144-.017-.213-.051-.922-.462-5.276-6.301-5.276-8.447 0-1.218.353-3.126.636-4.659.188-1.015.364-1.973.364-2.341-.081-.772-3.784-4.652-5.711-5.546-.25-.116-.358-.414-.242-.664.115-.251.413-.359.664-.243 2.002.929 6.289 5.138 6.289 6.454 0 .46-.168 1.37-.381 2.522-.275 1.493-.619 3.352-.619 4.478 0 1.775 4.143 7.188 4.734 7.559.227.142.316.445.186.678-.092.163-.258.26-.431.26z"/><circle fill="#292F33" cx="15" cy="7" r="1"/><circle fill="#292F33" cx="21" cy="7" r="1"/><path fill="#292F33" d="M17 6s.438-6 1-6 1 6 1 6h-2z"/><path fill="#66757F" d="M21 8c0 1.657-1.757 2-3 2s-3-.343-3-2 1.757-3 3-3 3 1.343 3 3zm2 14c0 2.761-2.239 10-5 10s-5-7.239-5-10 2.239-8 5-8 5 5.239 5 8z"/><ellipse fill="#66757F" cx="18" cy="12.5" rx="4" ry="3.5"/><path fill="#CCD6DD" d="M20 11s13 2 15 3-3 4-7 3c-4.947-1.237-10-6-8-6z"/><path fill="#E1E8ED" d="M20 11s13 2 15 3-3 1-7 0c-4.947-1.237-10-3-8-3z"/><path fill="#CCD6DD" d="M16.007 11s-13 2-15 3 3 4 7 3c4.947-1.237 10-6 8-6z"/><path fill="#E1E8ED" d="M16.007 11s-13 2-15 3 3 1 7 0c4.947-1.237 10-3 8-3z"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#31373D" d="M15.245 11c-2.036 0-4.296-.088-5.354-1.146-.585-.586-.361-1.687-.124-2.852.152-.75.383-1.883.12-2.153-.205-.209-1.078-.664-1.849-1.065-1.187-.617-2.533-1.317-3.147-1.93-.195-.195-.195-.512 0-.707s.512-.195.707 0c.505.505 1.833 1.195 2.901 1.75 1.108.576 1.802.945 2.104 1.254.633.649.396 1.815.145 3.05-.133.651-.354 1.74-.149 1.945.853.854 3.415.854 4.646.854.276 0 .5.224.5.5s-.224.5-.5.5zM1.244 26c-.075 0-.151-.017-.223-.053-.247-.124-.347-.424-.224-.671.896-1.791 3.218-3.082 4.465-3.775.315-.176.559-.308.679-.398.079-.15.215-1.123.325-1.904.284-2.025.605-4.32 1.685-5.103 2.917-2.117 7.71-2.092 8.188-1.499l.298.371-.36.351c-.191.17-.479.166-.666-.001-.759-.146-4.4-.206-6.873 1.588-.735.533-1.064 2.88-1.281 4.432-.226 1.608-.332 2.273-.709 2.561-.159.121-.428.271-.799.478-1.153.641-3.299 1.834-4.057 3.349-.088.172-.264.274-.448.274z"/><path fill="#31373D" d="M5.245 36c-.184 0-.36-.102-.448-.276-.124-.247-.023-.547.224-.671.582-.365 4.724-5.776 4.724-7.553 0-1.126-.343-2.984-.619-4.478-.213-1.152-.381-2.062-.381-2.522 0-1.315 4.287-5.524 6.29-6.454.25-.116.548-.007.664.243.116.25.007.548-.243.664-1.926.894-5.629 4.774-5.711 5.553 0 .361.177 1.319.365 2.334.283 1.533.636 3.441.636 4.659 0 2.146-4.355 7.986-5.276 8.447-.074.037-.15.054-.225.054zm15.51-25c-.276 0-.5-.224-.5-.5s.224-.5.5-.5c1.231 0 3.793 0 4.646-.854.206-.206-.016-1.295-.148-1.946-.251-1.235-.488-2.401.144-3.05.302-.309.996-.678 2.104-1.254 1.067-.555 2.396-1.246 2.9-1.75.195-.195.512-.195.707 0s.195.512 0 .707c-.613.614-1.959 1.313-3.146 1.931-.771.401-1.645.855-1.85 1.065-.263.27-.032 1.402.12 2.152.237 1.166.462 2.267-.124 2.853C25.051 10.912 22.79 11 20.755 11zm14 15c-.183 0-.359-.102-.447-.276-.757-1.515-2.903-2.708-4.058-3.35-.371-.206-.64-.355-.798-.477-.377-.288-.483-.951-.709-2.559-.218-1.553-.546-3.9-1.282-4.434-2.471-1.793-6.112-1.734-6.873-1.587-.187.167-.474.171-.666 0-.198-.177-.228-.514-.061-.721.476-.595 5.272-.617 8.188 1.499 1.079.783 1.401 3.079 1.685 5.105.109.78.246 1.752.374 1.951.07.042.313.174.629.349 1.248.694 3.57 1.985 4.466 3.776.123.247.023.548-.224.671-.073.036-.149.053-.224.053z"/><path fill="#31373D" d="M30.744 35.998c-.071 0-.144-.017-.213-.051-.922-.462-5.276-6.301-5.276-8.447 0-1.218.353-3.126.636-4.659.188-1.015.364-1.973.364-2.341-.081-.772-3.784-4.652-5.711-5.546-.25-.116-.358-.414-.242-.664.115-.251.413-.359.664-.243 2.002.929 6.289 5.138 6.289 6.454 0 .46-.168 1.37-.381 2.522-.275 1.493-.619 3.352-.619 4.478 0 1.775 4.143 7.188 4.734 7.559.227.142.316.445.186.678-.092.163-.258.26-.431.26z"/><circle cx="15" cy="7" r="1"/><circle cx="21" cy="7" r="1"/><path fill="#66757F" d="M17 6s.438-6 1-6 1 6 1 6h-2z"/><path fill="#66757F" d="M21 8c0 1.657-1.757 2-3 2s-3-.343-3-2 1.757-3 3-3 3 1.343 3 3zm2 14c0 2.761-2.239 10-5 10s-5-7.239-5-10 2.239-8 5-8 5 5.239 5 8z"/><ellipse fill="#66757F" cx="18" cy="12.5" rx="4" ry="3.5"/><path fill="#CCD6DD" d="M20 11s13 2 15 3-3 4-7 3c-4.947-1.237-10-6-8-6z"/><path fill="#E1E8ED" d="M20 11s13 2 15 3-3 1-7 0c-4.947-1.237-10-3-8-3z"/><path fill="#CCD6DD" d="M16.007 11s-13 2-15 3 3 4 7 3c4.947-1.237 10-6 8-6z"/><path fill="#E1E8ED" d="M16.007 11s-13 2-15 3 3 1 7 0c4.947-1.237 10-3 8-3z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f9a1.svg b/public/emoji/1f9a1.svg
index 4e1a21fa1ba3dc78f37b9f8992f68a7d5fb2e262..92f42fd8bd54851b3c765439d3682c7a00976bee 100644
--- a/public/emoji/1f9a1.svg
+++ b/public/emoji/1f9a1.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#292F33" d="M34.157 20.709c-.807-1.404-1.932-2.604-3.565-3.526-.431-.244-1.826-.275-1.826-.275s-.707-.809-1.344-.978c-3.476-.923-8.798.434-10.427 1.086-1.628.652-1.914.299-3.995-.016-.277-.042-.586-.066-.918-.073-.503-.431-.114-1.509-1.114-1.509S9.535 16.465 9 17c-.226.031-.456.074-.688.125-.207.042-.412.097-.621.155-.32-.673-.774-1.347-1.222-1.28-.402.06-.466 1.098-.421 1.943-.272.152-1.946 3.729-3.019 6.198-.092.212-1.882.83-2.064 1.011-.616.612-1.062 1.152-.653 1.642.631.757 2.649.694 3.91.505 1.261-.189 3.847-1.513 5.108-1.513 3.443 0 3.925 3.154 4.353 5.505.387 2.128.339 4.763 1.317 4.709s3-2 3-5c1 0 7.728.674 8 1s1 4 2 4 5-7 5-13c1 2 .668 4.172.668 4.878S34 30 35 30s1-2.009 1-3-.594-4.119-1.843-6.291z"/><path fill="#99AAB5" d="M32.62 20.788c-.43-1.59-1.333-2.86-2.031-3.598-.895-.506-1.934-.933-3.166-1.26.261 1.098-.923 6.903-8.923 11.133-.94.497.857 2.652 3.469 3.312 4.907 1.241 8.457.855 10.098-1.79.553-1.802.933-3.74.933-5.585.02.04.032.081.051.121v-.001c-.097-.937-.277-1.761-.431-2.332z"/><path fill="#E1E8ED" d="M4.958 22c.853-2.352 1.615-3.78 4.042-5-1.229.167-2.579.554-3.75 1.458-2.775 2.144-1.659 3.795-3.235 5.624-.329.381-.714.736-1.049 1.069C2.75 25 4.11 24.34 4.958 22zm11.596-3.809c-2.504.888-5.941 3.094-7.679 4.553C6.5 24.74 4.559 25.473 3.562 26c-1.631.863.755 1.177 3.438 0 2.108-.925 5.94-2.519 8.875-2.5 6.462.041 9.625-5.292 11.548-7.57-3.792-.334-8.162 1.301-10.869 2.261z"/><circle fill="#E1E8ED" cx="7" cy="21" r="1"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#31373D" d="M34.157 20.709c-.807-1.404-1.932-2.604-3.565-3.526-.431-.244-1.826-.275-1.826-.275s-.707-.809-1.344-.978c-3.476-.923-8.798.434-10.427 1.086-1.628.652-1.914.299-3.995-.016-.277-.042-.586-.066-.918-.073-.503-.431-.114-1.509-1.114-1.509S9.535 16.465 9 17c-.226.031-.456.074-.688.125-.207.042-.412.097-.621.155-.32-.673-.774-1.347-1.222-1.28-.402.06-.466 1.098-.421 1.943-.272.152-1.946 3.729-3.019 6.198-.092.212-1.882.83-2.064 1.011-.616.612-1.062 1.152-.653 1.642.631.757 2.649.694 3.91.505 1.261-.189 3.847-1.513 5.108-1.513 3.443 0 3.925 3.154 4.353 5.505.387 2.128.339 4.763 1.317 4.709s3-2 3-5c1 0 7.728.674 8 1s1 4 2 4 5-7 5-13c1 2 .668 4.172.668 4.878S34 30 35 30s1-2.009 1-3-.594-4.119-1.843-6.291z"/><path fill="#99AAB5" d="M32.62 20.788c-.43-1.59-1.333-2.86-2.031-3.598-.895-.506-1.934-.933-3.166-1.26.261 1.098-.923 6.903-8.923 11.133-.94.497.857 2.652 3.469 3.312 4.907 1.241 8.457.855 10.098-1.79.553-1.802.933-3.74.933-5.585.02.04.032.081.051.121v-.001c-.097-.937-.277-1.761-.431-2.332z"/><path fill="#E1E8ED" d="M4.958 22c.853-2.352 1.615-3.78 4.042-5-1.229.167-2.579.554-3.75 1.458-2.775 2.144-1.659 3.795-3.235 5.624-.329.381-.714.736-1.049 1.069C2.75 25 4.11 24.34 4.958 22zm11.596-3.809c-2.504.888-5.941 3.094-7.679 4.553C6.5 24.74 4.559 25.473 3.562 26c-1.631.863.755 1.177 3.438 0 2.108-.925 5.94-2.519 8.875-2.5 6.462.041 9.625-5.292 11.548-7.57-3.792-.334-8.162 1.301-10.869 2.261z"/><circle fill="#E1E8ED" cx="7" cy="21" r="1"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f9a5.svg b/public/emoji/1f9a5.svg
new file mode 100644
index 0000000000000000000000000000000000000000..7371a8ed19f1c4c2be9463a3e51e58b7a98255c6
--- /dev/null
+++ b/public/emoji/1f9a5.svg
@@ -0,0 +1 @@
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#7A5C44" d="M6 21c-1.105 0-2-.895-2-2V4c0-1.105.895-1 2-1s2-.105 2 1c0 0-.606 6.424 0 11.997C8.54 20.971 12 22 12 22c0 1.105-4.895-1-6-1zm14 4.999c-1.105 0-2-.895-2-2v-21c0-1.105.895-1 2-1s2-.105 2 1c0 0-.446 5.108-.125 9.297.32 4.187.125 11.703.125 11.703 0 1.104-.895 2-2 2z"/><path fill="#662113" d="M36 4L0 8V4l36-2z"/><path fill="#A78E81" d="M22.644 18.406c-.633 1.126-1.363 1.809-2.16 2.193-.402.041-1.132-.085-1.417-1.443-.332-1.587-.668-3.833-.668-6.594 0-4.144.601-8.742.601-8.742 0-.929 1.412-.936 2.086-.991-.156-.832-1.749-.83-3.684-.83-1.453 0-2.256 1.074-2.402 2.301-.147 1.228-.789 6.347-.744 10 .024 1.984.154 4.161.315 6.016-.792-.201-1.585-.393-2.364-.491-2.807-.356-6.505-.535-7.129-5.881C4.584 9.712 5 4.82 5 4.82c0-.929 1.412-1.158 2.086-1.213-.156-.832-1.678-.911-3.61-.783C2.026 2.92 1.235 3.668 1 5.3.622 7.929.578 13.988.8 18.176c.124 2.338.49 10.76 4.099 14.035C7.007 34.123 10.587 35.253 15 35c4.185-.24 7.623-1.796 9.548-3.413 3.342-2.807 4.09-4.837 4.229-7.035C29 21 24.02 15.959 22.644 18.406z"/><path fill="#A78E81" d="M35.025 22.671c-2.101 3.201-6.277 4.173-10.759 1.232s-5.253-7.159-3.152-10.36 7.488-2.584 10.384-.624 5.628 6.551 3.527 9.752z"/><path fill="#E2D2C7" d="M33.271 23.178c-1.5 2.287-5.164 2.984-9.005.464s-4.419-6.001-2.918-8.288c1.5-2.287 4.294-1.921 8.135.6s5.288 4.938 3.788 7.224z"/><path fill="#292F33" d="M20.565 14.564c-.499 1.126-.677 2.336-.491 3.55 1.498.439 3.637.97 4.65.759 1.646-.342 2.198-1.817 1.956-2.981-.335-1.616-3.191-2.544-6.115-1.328z"/><circle fill="#F5F8FA" cx="23.389" cy="16.576" r="1.188"/><path fill="#292F33" d="M34.307 23.581c-.834.906-1.873 1.551-3.061 1.864-.999-1.199-2.337-2.951-2.548-3.964-.342-1.646.792-2.739 1.956-2.981 1.617-.335 3.605 1.915 3.653 5.081z"/><circle fill="#F5F8FA" cx="31.338" cy="21.792" r="1.188"/><path fill="#292F33" d="M28.047 22.475c-.72 1.098-2.194 1.403-3.291.683-1.098-.72-1.403-2.194-.683-3.291.72-1.098 1.542-.41 2.639.31 1.097.72 2.055 1.2 1.335 2.298z"/><path fill="#292F33" d="M27.979 25.122c-.024 0-.049-.002-.073-.005-4.479-.654-6.297-4.07-6.372-4.216-.126-.244-.031-.545.214-.672.246-.13.546-.031.674.211.017.031 1.673 3.109 5.629 3.687.273.04.462.294.423.567-.037.249-.25.428-.495.428z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f9a6.svg b/public/emoji/1f9a6.svg
new file mode 100644
index 0000000000000000000000000000000000000000..5ea0173a5008bcfa231ecbc333f53bf70b0f96b6
--- /dev/null
+++ b/public/emoji/1f9a6.svg
@@ -0,0 +1 @@
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#A78E81" d="M2.381 8.671c-1.573 0-2.359.786-1.573 1.573 1.573 1.573 3.145 1.573 3.931.786L2.381 8.671zm6.29-6.29c0-1.573.786-2.359 1.573-1.573 1.573 1.573 1.573 3.145.786 3.931L8.671 2.381zm-4.717 9.435s8.547 14.433 14.939 16.512c3.344 1.087 5.692.599 7.863-1.573s2.406-4.447 1.573-7.863C26.937 13.188 11.816 3.954 11.816 3.954l-7.862 7.862z"/><path fill="#A78E81" d="M16.129 26.852c4.231 5.36 8.793 7.807 10.465 6.519 1.624-1.25-.324-2.578-2.174-6.954-1.936-4.58-10.526-2.397-8.291.435zM26.85 16.07c5.36 4.231 7.803 8.858 6.516 10.53-1.25 1.624-2.578-.324-6.954-2.174-4.581-1.936-2.394-10.591.438-8.356z"/><path fill="#846659" d="M17.008 21.564c.699-1.287-.914-3.363-2.504-3.314-1.172.036-3.617 1.934-5.883-.746-.209.209-.304.496-.311.829 1.158 1.577 2.472 3.242 3.848 4.765 1.656.479 3.913.192 4.85-1.534zm1.242-7.06c-.049 1.589 2.028 3.203 3.314 2.504 1.712-.93 2.007-3.159 1.544-4.81-1.545-1.372-3.246-2.703-4.851-3.882-.3.02-.56.113-.753.306 2.679 2.265.782 4.71.746 5.882z"/><path fill="#CAB8AC" d="M13.341 16.895c1.589-.049 3.203 2.028 2.504 3.314-1.12 2.061-4.135 2.086-5.74 1.183-1.79-1.007-3.732-4.157-2.646-5.243 2.265 2.68 4.709.783 5.882.746zm3.553-3.553c-.049 1.589 2.028 3.203 3.314 2.504 2.061-1.12 2.086-4.135 1.183-5.74-1.007-1.79-4.157-3.732-5.243-2.646 2.679 2.265.782 4.71.746 5.882z"/><path fill="#A78E81" d="M27.542 24.397c3.474 3.474 8.731 10.139 7.863 11.008-.868.868-7.534-4.389-11.008-7.863s-4.014-5.422-3.145-6.29c.868-.869 2.816-.329 6.29 3.145zM12.603 3.167c2.171 2.171 1.554 4.736-1.573 7.863s-5.692 3.744-7.863 1.573-2.34-5.523.787-8.649 6.477-2.958 8.649-.787z"/><path fill="#CAB8AC" d="M13.738 4.303c1.223 1.223 1.991 5.173-1.136 8.3s-7.076 2.359-8.3 1.136c-1.93-1.93 1.223-5.067 2.796-6.64s4.71-4.726 6.64-2.796z"/><path fill="#292F33" d="M9.457 6.312c.868.868.868 2.277 0 3.145s-2.277.868-3.145 0-.082-1.49.787-2.358 1.49-1.655 2.358-.787z"/><circle fill="#292F33" cx="4.74" cy="9.457" r="1.112"/><circle fill="#292F33" cx="9.457" cy="4.74" r="1.112"/><path fill="#A78E81" d="M10.655 10.401c-.426 0-.82-.101-1.132-.308-.189-.125-.241-.38-.116-.57.125-.19.38-.242.57-.116.452.299 1.339.188 2.019-.253.276-.179.906-.674.785-1.399-.037-.224.114-.436.338-.473.225-.036.436.114.473.338.139.836-.291 1.668-1.15 2.224-.565.368-1.205.557-1.787.557z"/><path fill="#A78E81" d="M7.931 13.619c-.103 0-.207-.009-.31-.026-.224-.038-.376-.249-.338-.473.038-.224.251-.375.473-.338.722.121 1.22-.509 1.399-.786.441-.681.553-1.568.253-2.019-.125-.189-.074-.444.116-.57.189-.126.445-.074.57.116.489.739.387 1.939-.249 2.92-.488.753-1.187 1.176-1.914 1.176z"/><path fill="#846659" d="M25.635 28.904c-1.021-1.634-1.501-3.563-.898-4.166.613-.613 2.073-.745 4.186.878-1.348-1.286-3.757-2.695-4.186-5.044.123 2.164-.419 4.625-4.125 4.043 2.082.614 5.023 4.289 5.023 4.289z"/><g fill="#67757F"><path d="M2.928 15.73c-.028 0-.057-.002-.086-.008-.264-.047-.44-.3-.393-.564.407-2.269 1.793-3.891 3.707-4.338.261-.06.523.102.584.363.061.262-.101.523-.363.584-1.524.356-2.634 1.689-2.971 3.564-.042.233-.246.399-.478.399z"/><path d="M5.072 15.974c-.253 0-.466-.195-.484-.451-.079-1.078.493-2.498 1.586-3.008.244-.113.533-.009.646.235.113.243.009.533-.235.646-.671.313-1.08 1.335-1.028 2.056.02.268-.181.501-.449.52-.013.002-.024.002-.036.002zm6.208-9.209c-.037 0-.074-.004-.111-.013-.262-.061-.424-.323-.363-.584.448-1.914 2.07-3.299 4.338-3.707.264-.047.517.129.564.393.047.264-.128.517-.393.564-1.875.337-3.207 1.447-3.564 2.971-.05.225-.25.376-.471.376z"/><path d="M12.944 6.877c-.069 0-.139-.015-.205-.046-.244-.113-.348-.403-.235-.646.51-1.093 1.919-1.664 3.008-1.586.268.019.469.253.449.52-.019.267-.248.468-.52.449-.712-.048-1.742.357-2.056 1.028-.083.177-.258.281-.441.281z"/></g></svg>
\ No newline at end of file
diff --git a/public/emoji/1f9a7.svg b/public/emoji/1f9a7.svg
new file mode 100644
index 0000000000000000000000000000000000000000..0382845585341d0bd4a284223729ea7adfacbc06
--- /dev/null
+++ b/public/emoji/1f9a7.svg
@@ -0,0 +1 @@
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#E26000" d="M36 32c0-12-2-28-18-28S0 20 0 32h8v-5c0-1 1-1 1 0 0 7 4 6 4 6l2 2 1-1c0-.552 1.448-1 2-1s2 .448 2 1l1 1 2-2s4 1 4-6c0-1 1-1 1 0v5h8z"/><circle fill="#E26000" cx="18" cy="13.5" r="11.5"/><path fill="#D9B981" d="M32 31c-3 0-4 1-4 1v1c0 .552.448 1 1 1s1-.448 1-1c0 .552.448 1 1 1s1-.448 1-1c0 .552.448 1 1 1s1-.448 1-1c0 .552.448 1 1 1s1-.448 1-1v-1s-1-1-4-1zM4 31c-3 0-4 1-4 1v1c0 .552.448 1 1 1s1-.448 1-1c0 .552.448 1 1 1s1-.448 1-1c0 .552.448 1 1 1s1-.448 1-1c0 .552.448 1 1 1s1-.448 1-1v-1s-1-1-4-1z"/><path fill="#C45400" d="M6.5 19.607C6.5 25.051 14.167 27 18 27s11.5-1.949 11.5-7.393c0-2.366-.974-4.536-2.595-6.235.023-.244.04-.491.04-.747C26.944 7.862 24.9 4 18 4s-8.944 3.862-8.944 8.625c0 .256.017.503.04.747C7.474 15.071 6.5 17.241 6.5 19.607z"/><path fill="#D9B981" d="M8 17.571C8 22.305 14.667 24 18 24s10-1.695 10-6.429c0-2.057-.847-3.944-2.257-5.422.02-.212.035-.427.035-.65C25.778 7.358 24 4 18 4s-7.778 3.358-7.778 7.5c0 .223.015.438.035.65C8.847 13.627 8 15.514 8 17.571z"/><circle fill="#292F33" cx="16" cy="11" r="1"/><circle fill="#292F33" cx="20" cy="11" r="1"/><path fill="#FFE8B6" d="M12.67 11.073c-.042 0-.084-.005-.127-.016-.267-.07-.427-.343-.357-.61.488-1.867 2.405-2.988 4.271-2.503.267.07.427.343.357.61-.07.267-.343.424-.61.357-1.332-.347-2.702.455-3.05 1.788-.059.225-.262.374-.484.374zm10.66 0c-.223 0-.425-.149-.483-.374-.169-.646-.579-1.188-1.155-1.525-.576-.339-1.249-.432-1.896-.262-.269.069-.54-.091-.609-.357-.07-.268.09-.541.357-.61.901-.236 1.846-.106 2.653.367.807.473 1.381 1.231 1.616 2.136.07.267-.09.54-.357.61-.042.009-.085.015-.126.015z"/><path fill="#C09154" d="M13 5l2 3 1-1 2 3 2-3 1 1 2-3s-2-1-5-1-5 1-5 1z"/><path fill="#E26000" d="M13 5l2 2 1-2 2 3 2-3 1 2 2-2s-2-2-5-2-5 2-5 2z"/><circle fill="#C09154" cx="17.5" cy="13.5" r=".5"/><circle fill="#C09154" cx="18.5" cy="13.5" r=".5"/><path fill="#292F33" d="M18 21c-3.665 0-5.286-1.579-5.354-1.646-.195-.195-.195-.512 0-.707.195-.194.51-.195.705-.002C13.365 18.658 14.783 20 18 20c3.218 0 4.635-1.342 4.648-1.356.197-.191.514-.189.706.006.193.195.193.509-.001.703C23.286 19.421 21.665 21 18 21z"/><path fill="#D9B981" d="M17.295 33c-.235 2.224-5 4-6 2-.247-.494-2.341-4.936-2.535-5.453-.194-.517.068-1.094.586-1.287s1.094.068 1.287.586c-.194-.517.068-1.094.586-1.287.517-.194 1.094.068 1.287.586-.194-.517.068-1.094.586-1.287.517-.194 1.094.068 1.287.586-.194-.517.068-1.094.586-1.287s1.094.068 1.287.586c.193.514 1.148 5.263 1.043 6.257zm1.41 0c.235 2.224 5 4 6 2 .247-.494 2.341-4.936 2.535-5.453.194-.517-.068-1.094-.586-1.287s-1.094.068-1.287.586c.194-.517-.068-1.094-.586-1.287-.517-.194-1.094.068-1.287.586.194-.517-.068-1.094-.586-1.287-.517-.194-1.094.068-1.287.586.194-.517-.068-1.094-.586-1.287s-1.094.068-1.287.586c-.193.514-1.148 5.263-1.043 6.257z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f9a8.svg b/public/emoji/1f9a8.svg
new file mode 100644
index 0000000000000000000000000000000000000000..47478ffe35e296fa31da94d86e37573d440c64be
--- /dev/null
+++ b/public/emoji/1f9a8.svg
@@ -0,0 +1 @@
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#292F33" d="M35.876 23.572c0-3.299-1.021-5.408-4.901-9.145-2.746-2.645-2.088-5.807-.237-5.365s2.229 2.293 2.229 2.293 1.133-1.448-.378-2.937c1.096.362 1.73 1.158 2.005 2.271 1.431-1.817 2.426-6.125-1.376-8.94C29.695-.86 24.025-.332 20.915 3.361c-3.516 4.175-1.506 8.346 1.266 10.672 1.676 1.406 3.089 2.617 3.878 3.925-3.408-.743-7.49.538-9.063 1.167-1.629.652-2.544-.231-2.863-.324 1.077-2.555-2.966-2.347-2.997-.726-.39-.05-.802-.07-1.22-.071-.023-1.44-2.206-.909-2.111.295-.223.066-.447.123-.669.216-3.235 1.355-2.583 3.237-4.578 4.597-1.179.803-2.345.388-2.345 2.18 0 .985 1.584 1.759 3.171 1.835 3.058.146 4.583-.806 5.801-.48 3.326.89 4.07 4.401 4.498 6.752.387 2.13.339 2.597 1.317 2.542.978-.054 3 .168 3-2.832 1.704-.273 3.974.717 7 .387.422-.046.697 2.074 1.272 2.339.515.238 2.15.147 2.931-.634.569-.569.59-1.485.595-2.466 4.87-2.039 6.078-6.188 6.078-9.163z"/><g fill="#E1E8ED"><circle cx="8.17" cy="21.424" r="1"/><path d="M4.951 21.424c.413-1.834 1.85-3.156 4.073-3.374 1.541-.151 2.111.026 2.111.026s-.692 1.065-1.502 1.285c-1.134.31-2.783-.18-4.682 2.063zm10.629-1.99c2.747 1.123 4.557 4.732 7.591 6.159 6.083 2.862 9.112-.932 9.826-3.385.853-2.932-1.514-6.22-4.541-9.067-3.595-3.381-2.754-7.868-.798-9.456 1.899-1.541 4.23-2.085 7.122-.364-2.415-2.553-5.112-2.596-7.534-1.59s-5.036 4.145-3.605 7.982c1.294 3.468 5.367 5.672 6.33 8.397.492 1.393-.282 4.22-2.835 4.566-4.223.572-6.579-2.725-11.556-3.242z"/><path d="M17.117 19.373s2.972-.699 5.835-.534c2.862.165 4.156.534 4.156.534s.734-1.84-2.394-4.569c-3.557-3.103-5.712-5.296-4.483-9.159 1.085-3.41 6.272-6.86 11.46-4.779-5.463-1.2-8.463 2.02-9.564 3.974-1.101 1.954-1.183 4.761 1.624 7.872s5.367 4.761 4.183 6.853c-.401.709-2.175 1.472-4.679.816-1.882-.491-3.992-1.228-6.138-1.008z"/></g></svg>
\ No newline at end of file
diff --git a/public/emoji/1f9a9.svg b/public/emoji/1f9a9.svg
new file mode 100644
index 0000000000000000000000000000000000000000..aaa5cfa26d3860612165cda03c8a39afd2e3c487
--- /dev/null
+++ b/public/emoji/1f9a9.svg
@@ -0,0 +1 @@
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#EA596E" d="M22.903 27.55c1.218-.812 2.232-.783 3.073-.058-.435-1.131-2.348-3.624-2.348-3.624l-.725 3.682z"/><path fill="#F4ABBA" d="M22.949 27.679c-.03 0-.06-.002-.091-.006-.401-.05-.686-.415-.637-.816l.426-3.448c.023-.188.117-.358.264-.478l4.448-3.624-7.108-3.833c-.356-.192-.488-.636-.296-.992.193-.356.636-.489.992-.297l8.072 4.353c.214.116.357.332.381.575.023.244-.077.482-.267.636l-5.07 4.13-.39 3.156c-.044.373-.36.644-.724.644z"/><path fill="#E1E8ED" d="M5.38 3.523L1.476 7.427C.5 8.403.5 11.331.5 13.283s1.952 1.952 1.952 0 3.904-4.88 6.832-5.856S5.38 3.523 5.38 3.523z"/><path fill="#292F33" d="M1.476 7.427C.5 8.403.5 11.331.5 13.283s1.952 1.952 1.952 0c0-.671.461-1.456 1.184-2.238 1.383-1.495-2.16-.69-2.16-3.618z"/><path fill="#EA596E" d="M16.598 31.913c.522.87.478 2.283.283 3.087.957-.457 2.435-2.827 2.435-2.827l-2.718-.26z"/><path fill="#EA596E" d="M17.366 35.203c.928-.616 2.595-.573 3.58-.138.986.435-.681-2.529-.681-2.529l-2.435 1.507-.464 1.16z"/><path fill="#F4ABBA" d="M25.877 27.679c-.236 0-.469-.114-.61-.326l-1.952-2.928c-.224-.336-.133-.791.203-1.015.337-.224.791-.133 1.015.203l1.952 2.928c.224.336.133.791-.203 1.015-.125.083-.266.123-.405.123zm-5.857 4.88h-2.928c-.404 0-.732-.328-.732-.732s.328-.732.732-.732h2.196V16.211c0-.404.328-.732.732-.732s.732.328.732.732v15.616c0 .404-.328.732-.732.732z"/><path fill="#F4ABBA" d="M20.996 35.487c-.307 0-.592-.193-.695-.5l-.601-1.804-2.09 2.09c-.286.286-.749.286-1.035 0-.286-.286-.286-.749 0-1.035l2.928-2.928c.18-.18.443-.252.685-.194.247.058.446.24.527.48l.976 2.928c.128.384-.08.798-.463.926-.077.025-.156.037-.232.037z"/><circle fill="#EA596E" cx="8.308" cy="4.499" r="3.904"/><path fill="#EA596E" d="M12.579 20.716c-.573 0-1.14-.098-1.688-.3-2.025-.748-3.217-2.756-3.036-5.115.223-2.908 1.853-4.853 3.164-6.415 1.175-1.402 1.833-2.241 1.696-3.203-.163-1.143-.848-1.673-1.393-1.917-1.068-.477-2.506-.286-3.666.488L6.032 1.817C8.039.479 10.524.201 12.517 1.092c1.697.759 2.826 2.281 3.096 4.176.329 2.303-1.034 3.928-2.351 5.499-1.201 1.433-2.337 2.786-2.488 4.758-.081 1.051.342 1.852 1.131 2.144.858.315 2.341.04 3.68-1.792l2.364 1.727c-1.461 1.997-3.442 3.112-5.37 3.112z"/><path fill="#EA596E" d="M15.14 17.187c-2.166-3.248 0-7.808 2.928-9.76s10.736-2.928 15.616 4.88c5.401 8.641-2.763 4.433-4.88 3.904-7.808-1.952-11.712 3.904-13.664.976z"/><circle fill="#292F33" cx="6.356" cy="4.499" r=".976"/><path fill="#EA596E" d="M9.284 6.451c1.952-.976 4.255-.997 1.327 2.907-1.171 1.562 5.282-4.671 1.957-8.175-.536-.565-4.407-1.087-5.943-.174-.982.584 2.659 5.442 2.659 5.442z"/><circle fill="#EA596E" cx="28.804" cy="19.139" r=".976"/><circle fill="#EA596E" cx="20.02" cy="24.995" r=".976"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f9aa.svg b/public/emoji/1f9aa.svg
new file mode 100644
index 0000000000000000000000000000000000000000..f0f4778670600a240c26c69302a9d8b73e7e8806
--- /dev/null
+++ b/public/emoji/1f9aa.svg
@@ -0,0 +1 @@
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#662113" d="M33.495 16.378C33.268 11.612.614 12.279.614 12.279c0 3 1.524 4.057 1.396 5.465-.119 1.307 1.96 1.782 1.96 1.782s1.644.753 1.644 2.753c0 1.311 1.151 2.763 2.162 6.17.297 3.149 3.773 3.988 5.347 3.535 1.699-.49 3.072-.207 3.564.267 1.172 1.128 3.189.715 4.396.208.784-.33 1.285-1.398 3.089-.535 1.366.653 2.355.151 3.568-.898l-.007.026c.043-.064.111-.108.166-.163l.208-.19c.972-.633 2.905-.467 3.369-1.548.552-1.288 2.589-1.876 2.796-2.246.832-1.485-.582-2.043-.479-2.685.598-.404 1.4-.701 1.905-1.682 1.11-2.157-2.113-4.25-2.203-6.16z"/><path fill="#C1694F" d="M.613 8.279c1-3 5-4 8-4s13 1 16 3 9 7 9 8 2 4 2 5-1 3-2 3 1 1 0 3c-.447.894-4 3-5 3s-2 2-3 2-3-1-4 0-3 1-5 0-3 0-4 0-4-2-4-3-1-6-2-7-2-4-4-5-3-5-2-8z"/><path fill="#CCD6DD" d="M3.127 8.141c1.817-2.312 4.486-2.862 7.486-2.862s12 1 15 3c1.543 1.029 3.615 2.851 5.264 4.515 1.557 1.571 2.736 3 2.736 3.485 0 1 2 3 2 4s-1 2-2 2-.608 1.799-1 4c-.222 1.246-2.846 2.24-4 2-.979-.204-2 2-3 2s-3-1-4 0-2 2-4 1-3-1-4-1-4-1-4-2-1-6-2-7-2-4-4-5-2.44-5.651-.486-8.138z"/><path fill="#E1E8ED" d="M4.201 9.05c1.985-2.462 5.422-2.394 8.422-2.394s9.633.394 12.633 2.394 7.358 6.229 7.358 7.229 2.303 3.578 2.303 4.578-1.303.422-2.303.422.495 2.945-.505 4.945c-.447.894-2.495 1.055-3.495 1.055s-1.945 2.495-2.945 2.495-3.055-1.495-4.055-.495-1.541 2.734-3.541 1.734-3.582-2.216-4.459-1.734c-1.651.908-3-1-3-2s-1.697-6.578-2.697-7.578-1.303-3.872-3.303-4.872-1.634-4.266-.413-5.779z"/><path fill="#FFAC33" d="M3.486 8.392c1.232-2.293 5.088-2.356 7.216-2.265s8.418.997 10.083 2.99 3.885 3.625 5.273 4.259c1.388.634 5.458 2.084 5.365 4.078-.093 1.994-1.573 2.809-1.573 2.809s2.128 1.994 1.11 3.534c-1.018 1.54-4.903 2.084-6.568 1.087s-3.238 1.087-5.92.634c-2.683-.453-4.995-1.54-6.846-4.803s-4.81-5.346-6.383-6.705-2.682-3.896-1.757-5.618z"/><path fill="#FFD983" d="M26.894 23.627c-.58 0-1.096-.122-1.451-.342-.569-.354-1.154-.527-1.784-.527-.643 0-1.214.181-1.764.356-.569.18-1.106.35-1.766.35-.22 0-.455-.019-.707-.063-2.894-.506-4.914-1.975-6.357-4.619-1.521-2.785-3.505-4.196-5.099-5.33-.553-.393-1.03-.733-1.414-1.077-1.2-1.077-2.088-2.871-1.499-4.01.492-.951 1.611-1.375 3.627-1.375.511 0 1.011.025 1.472.047l.407.019c4.172.185 7.588 1.072 8.501 2.207 1.848 2.296 4.961 4.531 6.5 5.261.262.124.595.262.968.414.906.37 3.314 1.355 3.28 2.14-.051 1.128-1.015 1.537-1.125 1.579l-2.397.937 2.125 1.462c.57.394 1.31 1.22 1.137 1.49-.393.617-1.534 1.081-2.654 1.081z"/><ellipse fill="#FFAC33" cx="16.867" cy="15.184" rx="3.587" ry="2.143"/><circle fill="#E1E8ED" cx="16.867" cy="12.403" r="3.5"/><ellipse fill="#FFF" cx="16.867" cy="11.229" rx="2.166" ry="1.832"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f9ae.svg b/public/emoji/1f9ae.svg
new file mode 100644
index 0000000000000000000000000000000000000000..fc635872c7608f0c39fea9afaf64aa400d1af270
--- /dev/null
+++ b/public/emoji/1f9ae.svg
@@ -0,0 +1 @@
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#D99E82" d="M33.425 17.472c.942 2.443 2.837 7.953 2.326 11.488 0 0-2.903-1.618-3.349-7.349-.368-4.731-1.163-7.395-1.163-7.395s1.51 1.501 2.186 3.256z"/><path fill="#C1694F" d="M10.321 21.935s1.016 2.352.676 8.242c-.061 1.057-.209 2.136-.242 3.022-1.812 0-1.652 2.064-1.268 2.064h2.902c.683 0 1.893-3.438 2.212-8.209.319-4.772-4.28-5.119-4.28-5.119zm11.89-.331s.575 3.528 3.651 6.413c.257 1.163.769 4.232.949 5.195-1.889 0-1.282 2.047-.731 2.047h2.646c.951 0 1.092-3.442.206-7.694-.885-4.251-6.721-5.961-6.721-5.961z"/><path fill="#D99E82" d="M32.202 15.654c-1.253-3.752-7.214-3.628-13.997-2.765-3.055.389-3.64-4.453-3.64-5.286 0-3.626-3.244-5.455-6.496-4.229-.779.293-1.402 1.33-1.754 1.872-1.977 3.037-4.658.015-4.917 2.822-.313 3.395 1.721 4.534 5.051 4.821 1.892.163 2.425 1.069 2.838 5.018.154 1.472.739 5.67 3.421 7.102.78 2.959 1.836 6.615 2.25 8.475-2.252.476-1.341 2.179-1.341 2.179s3.151-.043 3.836-.043c.814 0 .191-5.976-.935-9.787 4.764.043 7.828-1.337 8.799-1.762 1.028 2.96 4.152 3.633 4.851 4.892.433.78 1.878 3.383 2.001 4.496-1.602.52-1.091 1.732-.909 2.122 1.083-.043 3.22-.043 3.498-.043 1.11 0-1.137-6.904-2.083-8.713-1.082-2.071.781-7.419-.473-11.171z"/><path fill="#F4C7B5" d="M16.266 24.464c.044.371.141.891.253 1.369 4.764.043 7.828-1.337 8.799-1.762-.215-.78-.23-1.27-.171-1.538-3.394.557-4.548 2.205-8.881 1.931zM6.449 12.889c1.892.163 2.425 1.069 2.838 5.018.154 1.472.739 5.67 3.421 7.102-.72-2.788-1.959-12.388-6.259-12.12z"/><path fill="#272B2B" d="M2.503 8.326c-.109.762-.494 1.192-.879 1.133C.864 9.342.232 8.372.232 7.603s.624-.963 1.392-.928c1.043.048 1.002.788.879 1.651z"/><path fill="#662113" d="M15.167 9.495c.348 2.515-1.157 2.898-2.383 2.898s-3.054-1.25-2.748-3.77c.134-1.107.555-2.193.809-3.175.336-1.303 1.199-1.732 1.894-1.367 1.665.873 2.203 3.796 2.428 5.414z"/><circle fill="#292F33" cx="8.069" cy="6.675" r=".928"/><circle fill="#C1694F" cx="3.053" cy="10.503" r=".488"/><circle fill="#C1694F" cx="3.695" cy="9.804" r=".269"/><circle fill="#C1694F" cx="4.1" cy="10.503" r=".269"/><path fill="#377700" d="M9.39 18.53c.872.105 2.605-.141 3.384-.314.779-.173 9.14-2.651 9.14-2.651l.419 1.395s-8.623 2.671-9.488 2.93c-.865.26-2.93 1.291-2.93 1.291s-.352-.566-.525-1.221c-.174-.663 0-1.43 0-1.43zm9.246.483l1.605-.488s1.465 4.395.977 6.977l-1.745.215s.126-1.56-.139-3.215c-.28-1.745-.698-3.489-.698-3.489z"/><path fill="#292F33" d="M8.379 14.17c1.045-.392 4.858-.33 7.395-2.233.558-.419 1.442.867 1.047 1.116-3.209 2.023-7.042 2.267-7.884 2.372-.558.07-1.116-1.046-.558-1.255z"/><path fill="#489C00" d="M18.206 12.889s.638 1.838-.129 2.676c-.767.837-2.163.907-2.163 2.093s.837 2.163 1.465 2.023c.628-.14 3.907-.419 5.093-1.256s-.349-6-.349-6-1.047-.279-2.163 0c-1.116.279-1.754.464-1.754.464z"/><path fill="#377700" d="M20.692 16.854c-.496.127-.996-.189-1.085-.693-.202-1.138-.393-3.119.543-3.829 1.343-1.019 8.617-4.4 9.314-4.68.678-.272.576-1.027.888-2.075.258-.869 1.984-.913 1.563.481-.464 1.535-.594 2.318-1.312 2.624-1.595.678-7.833 3.833-9.032 4.449-.455.234-.328 1.803-.204 2.76.056.436-.224.846-.649.955-.009.004-.018.006-.026.008z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f9af.svg b/public/emoji/1f9af.svg
new file mode 100644
index 0000000000000000000000000000000000000000..aba8a9807df02e14778e1392989f5f1c91e1b0b1
--- /dev/null
+++ b/public/emoji/1f9af.svg
@@ -0,0 +1 @@
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#CCD6DD" d="M25.45 6.842l1.274 1.274L7.6 27.241l-1.275-1.275zM.587 32.979c-.351-.351-.351-.924 0-1.275l3.825-3.825c.351-.351.924-.351 1.275 0 .351.351.351.924 0 1.275l-3.825 3.825c-.351.35-.924.35-1.275 0z"/><path fill="#DD2E44" d="M7.599 24.691l1.275 1.275-5.1 5.1L2.5 29.79z"/><path fill="#292F33" d="M24.812 8.754c-.351-.351-.351-.924 0-1.275l3.825-3.825c.351-.351.924-.351 1.275 0 .351.351.351.924 0 1.275l-3.825 3.825c-.351.351-.925.351-1.275 0z"/><path fill="#292F33" d="M25.606 9.548L24.018 7.96c-.194-.194-.194-.513 0-.707l.568-.568c.194-.194.513-.194.707 0l1.588 1.588c.194.194.194.513 0 .707l-.568.568c-.195.194-.513.194-.707 0zm6.924-3.259c-1.527-.215-3.042-1.485-3.114-1.545l-.328-.278.261-.34c1.04-1.354 3.855-1.973 5.366-1.189 1.138.591 1.179 1.318 1.103 1.698-.175.872-1.263 1.561-2.648 1.677-.21.016-.425.007-.64-.023zM30.382 4.35c.664.474 1.815 1.134 2.713 1.062 1.002-.084 1.76-.562 1.839-.955.064-.321-.423-.612-.635-.721-1.021-.534-2.947-.189-3.917.614z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f9b0.svg b/public/emoji/1f9b0.svg
new file mode 100644
index 0000000000000000000000000000000000000000..5cb487ef01c264a9bb3ed16312cf5028e7727bbf
--- /dev/null
+++ b/public/emoji/1f9b0.svg
@@ -0,0 +1 @@
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#FFDC5D" d="M0 21h30v15H0z"/><path fill="#E95F28" d="M4.5 1c-1.567 0-3.061.086-4.5.235v23.416c13.81 13.743 6.846-.189 6.846-.189 4.692 4.692 18.769 4.692 18.769 4.692L29.038 36h5.28c.424-2.252.682-5.332.682-9.192C35 15.077 23.269 1 4.5 1z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f9b1.svg b/public/emoji/1f9b1.svg
new file mode 100644
index 0000000000000000000000000000000000000000..414422b83520796f8883d9384ecf633d3e8f094f
--- /dev/null
+++ b/public/emoji/1f9b1.svg
@@ -0,0 +1 @@
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#FFDC5D" d="M0 21h30v15H0z"/><path fill="#FFAC33" d="M35 26.417c0-1.812-.954-3.39-2.381-4.29.216-.563.348-1.169.348-1.81 0-2.595-1.95-4.709-4.459-5.02.239-.657.392-1.357.392-2.097 0-3.369-2.731-6.1-6.1-6.1-.803 0-1.566.165-2.267.447-.704-2.595-3.05-4.514-5.866-4.514-1.769 0-3.347.765-4.461 1.966C9.347 2.669 7.127 1 4.5 1 2.704 1 1.111 1.792 0 3.03v27.447c1.289.645 2.834 1.023 4.5 1.023 2.635 0 4.955-.956 6.44-2.414.968 2.56 4.071 4.447 7.794 4.447 2.188 0 4.166-.655 5.626-1.71.4 1.394.511 2.668.542 4.177h6.948c.688-.911 1.117-2.131 1.117-3.483 0-.653-.108-1.271-.285-1.842C34.075 29.768 35 28.202 35 26.417z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f9b2.svg b/public/emoji/1f9b2.svg
new file mode 100644
index 0000000000000000000000000000000000000000..035b6919f7c5411be8030c042001c1497e9fe80b
--- /dev/null
+++ b/public/emoji/1f9b2.svg
@@ -0,0 +1 @@
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#FFDC5D" d="M34.896 36C30.618 13.677 16.169 2.725 0 1.195V36h34.896z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f9b3.svg b/public/emoji/1f9b3.svg
new file mode 100644
index 0000000000000000000000000000000000000000..ea3072c4d25333dd489b1df5f06f3768ef64e877
--- /dev/null
+++ b/public/emoji/1f9b3.svg
@@ -0,0 +1 @@
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#FFDC5D" d="M0 21h30v15H0z"/><path fill="#E1E8ED" d="M4.5 1c-1.567 0-3.061.086-4.5.235v23.416c13.81 13.743 6.846-.189 6.846-.189 4.692 4.692 18.769 4.692 18.769 4.692L29.038 36h5.28c.424-2.252.682-5.332.682-9.192C35 15.077 23.269 1 4.5 1z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f9ba.svg b/public/emoji/1f9ba.svg
new file mode 100644
index 0000000000000000000000000000000000000000..50bf8e37bf0b35cd52b98ea0120d985ecc65287c
--- /dev/null
+++ b/public/emoji/1f9ba.svg
@@ -0,0 +1 @@
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#994308" d="M17.988 2.184C15 2.184 12.679 1.092 11.618 0v15.292h12.741V0C23.297 1.092 21 2.184 17.988 2.184z"/><path fill="#EB7421" d="M28.909 7.958v-4.79c0-1.083-.674-2.026-1.635-2.289L24.055 0l-6.067 14.589L11.921 0 8.702.879c-.961.263-1.635 1.207-1.635 2.289v4.789c0 3.663-2.716 6.632-6.067 6.632v19.036c0 1.206.951 2.185 2.123 2.185h11.831c1.675 0 3.034-1.485 3.034-3.316 0 1.831 1.358 3.316 3.034 3.316h11.831c1.173 0 2.124-.978 2.124-2.185V14.589c-3.352 0-6.068-2.969-6.068-6.631z"/><path fill="#FCFB65" d="M1 29h16.988v3H1zm33.976 3H17.988v-3h16.988zM1 22h16.988v3H1zm33.976 3H17.988v-3h16.988z"/><path fill="#FCFB65" d="M12 23V.19L11.921 0 9 .798V23zm15 0V.805L24.055 0 24 .133V23z"/><path fill="#994308" d="M16.926 11v23.995c.645-.608 1.062-1.497 1.062-2.501 0 .979.395 1.849 1.012 2.456V11h-2.074z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f9bb-1f3fb.svg b/public/emoji/1f9bb-1f3fb.svg
new file mode 100644
index 0000000000000000000000000000000000000000..b94d484ae34ed25217880f7be2c4f5df41c6cab9
--- /dev/null
+++ b/public/emoji/1f9bb-1f3fb.svg
@@ -0,0 +1 @@
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#66757F" d="M30.405 23.361c-.449-.318-.555-.946-.237-1.394l1.736-2.447c.318-.449.946-.555 1.394-.237.449.318.555.946.237 1.394l-1.736 2.447c-.318.448-.945.555-1.394.237z"/><path fill="#99AAB5" d="M18 0c7 0 17 2 17 12 0 7-8 17-14 17S18 0 18 0z"/><path fill="#F7DECE" d="M29 15c-1 6-4.599 8.097-6 13-2 7-7 8-11 8-7 0-3.856-6.568-7-16-3-9-2.716-15.899 7-18 9.25-2 18.634 3.194 17 13z"/><path fill="#E0AA94" d="M23.948 6.211c-2.643-2.178-6.912-3.018-11.14-2.192-2.396.467-4.207 1.644-5.381 3.497-2.517 3.973-1.124 9.618-1.063 9.856.136.535.678.862 1.215.723.535-.136.859-.68.723-1.215-.004-.016-.134-.545-.24-1.358.059-.004.117.007.177-.008 3.049-.751 5.129-.051 5.701 1.922.533 1.841-.446 4.513-2.442 5.181-1.008.264-2.379.997-2.924 2.199-.251.554-.435 1.446.116 2.549.175.351.528.553.895.553.15 0 .303-.034.446-.106.494-.247.694-.848.447-1.342-.216-.432-.151-.679-.084-.828.238-.524 1.084-.953 1.672-1.109 3.23-1.076 4.592-4.898 3.794-7.653-.685-2.366-3.133-4.466-7.932-3.343-.008-1.584.238-3.45 1.189-4.95.88-1.389 2.213-2.241 4.074-2.604 3.659-.713 7.292-.033 9.485 1.773C24.218 9.025 25 10.79 25 13c0 3.48-1.008 4.756-2.403 6.522-.461.583-.938 1.186-1.429 1.923-.307.46-.183 1.08.277 1.387.171.113.364.168.554.168.323 0 .641-.156.833-.445.446-.67.898-1.24 1.333-1.792C25.623 18.917 27 17.175 27 13c0-2.797-1.056-5.145-3.052-6.789z"/><circle fill="#66757F" cx="11" cy="18" r="5"/><circle fill="#99AAB5" cx="11" cy="18" r="3"/><path fill="#CCD6DD" d="M11.001 19c-.072 0-.145-.008-.218-.024-4.18-.929-6.665-4.504-6.183-8.897C5.134 5.225 9.554 0 18 0c.552 0 1 .448 1 1s-.448 1-1 1C10.747 2 7.042 6.167 6.589 10.297c-.282 2.566.761 5.868 4.628 6.727.539.12.879.654.759 1.193-.103.466-.517.783-.975.783z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f9bb-1f3fc.svg b/public/emoji/1f9bb-1f3fc.svg
new file mode 100644
index 0000000000000000000000000000000000000000..d187bad0a558314506edd4b5d0047efa0f0a5cd6
--- /dev/null
+++ b/public/emoji/1f9bb-1f3fc.svg
@@ -0,0 +1 @@
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#66757F" d="M30.405 23.361c-.449-.318-.555-.946-.237-1.394l1.736-2.447c.318-.449.946-.555 1.394-.237.449.318.555.946.237 1.394l-1.736 2.447c-.318.448-.945.555-1.394.237z"/><path fill="#99AAB5" d="M18 0c7 0 17 2 17 12 0 7-8 17-14 17S18 0 18 0z"/><path fill="#F3D2A2" d="M29 15c-1 6-4.599 8.097-6 13-2 7-7 8-11 8-7 0-3.856-6.568-7-16-3-9-2.716-15.899 7-18 9.25-2 18.634 3.194 17 13z"/><path fill="#D2A077" d="M23.948 6.211c-2.643-2.178-6.912-3.018-11.14-2.192-2.396.467-4.207 1.644-5.381 3.497-2.517 3.973-1.124 9.618-1.063 9.856.136.535.678.862 1.215.723.535-.136.859-.68.723-1.215-.004-.016-.134-.545-.24-1.358.059-.004.117.007.177-.008 3.049-.751 5.129-.051 5.701 1.922.533 1.841-.446 4.513-2.442 5.181-1.008.264-2.379.997-2.924 2.199-.251.554-.435 1.446.116 2.549.175.351.528.553.895.553.15 0 .303-.034.446-.106.494-.247.694-.848.447-1.342-.216-.432-.151-.679-.084-.828.238-.524 1.084-.953 1.672-1.109 3.23-1.076 4.592-4.898 3.794-7.653-.685-2.366-3.133-4.466-7.932-3.343-.008-1.584.238-3.45 1.189-4.95.88-1.389 2.213-2.241 4.074-2.604 3.659-.713 7.292-.033 9.485 1.773C24.218 9.025 25 10.79 25 13c0 3.48-1.008 4.756-2.403 6.522-.461.583-.938 1.186-1.429 1.923-.307.46-.183 1.08.277 1.387.171.113.364.168.554.168.323 0 .641-.156.833-.445.446-.67.898-1.24 1.333-1.792C25.623 18.917 27 17.175 27 13c0-2.797-1.056-5.145-3.052-6.789z"/><circle fill="#66757F" cx="11" cy="18" r="5"/><circle fill="#99AAB5" cx="11" cy="18" r="3"/><path fill="#CCD6DD" d="M11.001 19c-.072 0-.145-.008-.218-.024-4.18-.929-6.665-4.504-6.183-8.897C5.134 5.225 9.554 0 18 0c.552 0 1 .448 1 1s-.448 1-1 1C10.747 2 7.042 6.167 6.589 10.297c-.282 2.566.761 5.868 4.628 6.727.539.12.879.654.759 1.193-.103.466-.517.783-.975.783z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f9bb-1f3fd.svg b/public/emoji/1f9bb-1f3fd.svg
new file mode 100644
index 0000000000000000000000000000000000000000..51ed272c88b89864e5627d7d450c50e7a9e7cdec
--- /dev/null
+++ b/public/emoji/1f9bb-1f3fd.svg
@@ -0,0 +1 @@
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#66757F" d="M30.405 23.361c-.449-.318-.555-.946-.237-1.394l1.736-2.447c.318-.449.946-.555 1.394-.237.449.318.555.946.237 1.394l-1.736 2.447c-.318.448-.945.555-1.394.237z"/><path fill="#99AAB5" d="M18 0c7 0 17 2 17 12 0 7-8 17-14 17S18 0 18 0z"/><path fill="#D4AB88" d="M29 15c-1 6-4.599 8.097-6 13-2 7-7 8-11 8-7 0-3.856-6.568-7-16-3-9-2.716-15.899 7-18 9.25-2 18.634 3.194 17 13z"/><path fill="#B78B60" d="M23.948 6.211c-2.643-2.178-6.912-3.018-11.14-2.192-2.396.467-4.207 1.644-5.381 3.497-2.517 3.973-1.124 9.618-1.063 9.856.136.535.678.862 1.215.723.535-.136.859-.68.723-1.215-.004-.016-.134-.545-.24-1.358.059-.004.117.007.177-.008 3.049-.751 5.129-.051 5.701 1.922.533 1.841-.446 4.513-2.442 5.181-1.008.264-2.379.997-2.924 2.199-.251.554-.435 1.446.116 2.549.175.351.528.553.895.553.15 0 .303-.034.446-.106.494-.247.694-.848.447-1.342-.216-.432-.151-.679-.084-.828.238-.524 1.084-.953 1.672-1.109 3.23-1.076 4.592-4.898 3.794-7.653-.685-2.366-3.133-4.466-7.932-3.343-.008-1.584.238-3.45 1.189-4.95.88-1.389 2.213-2.241 4.074-2.604 3.659-.713 7.292-.033 9.485 1.773C24.218 9.025 25 10.79 25 13c0 3.48-1.008 4.756-2.403 6.522-.461.583-.938 1.186-1.429 1.923-.307.46-.183 1.08.277 1.387.171.113.364.168.554.168.323 0 .641-.156.833-.445.446-.67.898-1.24 1.333-1.792C25.623 18.917 27 17.175 27 13c0-2.797-1.056-5.145-3.052-6.789z"/><circle fill="#66757F" cx="11" cy="18" r="5"/><circle fill="#99AAB5" cx="11" cy="18" r="3"/><path fill="#CCD6DD" d="M11.001 19c-.072 0-.145-.008-.218-.024-4.18-.929-6.665-4.504-6.183-8.897C5.134 5.225 9.554 0 18 0c.552 0 1 .448 1 1s-.448 1-1 1C10.747 2 7.042 6.167 6.589 10.297c-.282 2.566.761 5.868 4.628 6.727.539.12.879.654.759 1.193-.103.466-.517.783-.975.783z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f9bb-1f3fe.svg b/public/emoji/1f9bb-1f3fe.svg
new file mode 100644
index 0000000000000000000000000000000000000000..af889ade4425f31fa78b70c20e68ab78f5be223b
--- /dev/null
+++ b/public/emoji/1f9bb-1f3fe.svg
@@ -0,0 +1 @@
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#66757F" d="M30.405 23.361c-.449-.318-.555-.946-.237-1.394l1.736-2.447c.318-.449.946-.555 1.394-.237.449.318.555.946.237 1.394l-1.736 2.447c-.318.448-.945.555-1.394.237z"/><path fill="#99AAB5" d="M18 0c7 0 17 2 17 12 0 7-8 17-14 17S18 0 18 0z"/><path fill="#AF7E57" d="M29 15c-1 6-4.599 8.097-6 13-2 7-7 8-11 8-7 0-3.856-6.568-7-16-3-9-2.716-15.899 7-18 9.25-2 18.634 3.194 17 13z"/><path fill="#90603E" d="M23.948 6.211c-2.643-2.178-6.912-3.018-11.14-2.192-2.396.467-4.207 1.644-5.381 3.497-2.517 3.973-1.124 9.618-1.063 9.856.136.535.678.862 1.215.723.535-.136.859-.68.723-1.215-.004-.016-.134-.545-.24-1.358.059-.004.117.007.177-.008 3.049-.751 5.129-.051 5.701 1.922.533 1.841-.446 4.513-2.442 5.181-1.008.264-2.379.997-2.924 2.199-.251.554-.435 1.446.116 2.549.175.351.528.553.895.553.15 0 .303-.034.446-.106.494-.247.694-.848.447-1.342-.216-.432-.151-.679-.084-.828.238-.524 1.084-.953 1.672-1.109 3.23-1.076 4.592-4.898 3.794-7.653-.685-2.366-3.133-4.466-7.932-3.343-.008-1.584.238-3.45 1.189-4.95.88-1.389 2.213-2.241 4.074-2.604 3.659-.713 7.292-.033 9.485 1.773C24.218 9.025 25 10.79 25 13c0 3.48-1.008 4.756-2.403 6.522-.461.583-.938 1.186-1.429 1.923-.307.46-.183 1.08.277 1.387.171.113.364.168.554.168.323 0 .641-.156.833-.445.446-.67.898-1.24 1.333-1.792C25.623 18.917 27 17.175 27 13c0-2.797-1.056-5.145-3.052-6.789z"/><circle fill="#66757F" cx="11" cy="18" r="5"/><circle fill="#99AAB5" cx="11" cy="18" r="3"/><path fill="#CCD6DD" d="M11.001 19c-.072 0-.145-.008-.218-.024-4.18-.929-6.665-4.504-6.183-8.897C5.134 5.225 9.554 0 18 0c.552 0 1 .448 1 1s-.448 1-1 1C10.747 2 7.042 6.167 6.589 10.297c-.282 2.566.761 5.868 4.628 6.727.539.12.879.654.759 1.193-.103.466-.517.783-.975.783z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f9bb-1f3ff.svg b/public/emoji/1f9bb-1f3ff.svg
new file mode 100644
index 0000000000000000000000000000000000000000..818e532d374e77447f416ac0ddaf66ef09819fea
--- /dev/null
+++ b/public/emoji/1f9bb-1f3ff.svg
@@ -0,0 +1 @@
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#66757F" d="M30.405 23.361c-.449-.318-.555-.946-.237-1.394l1.736-2.447c.318-.449.946-.555 1.394-.237.449.318.555.946.237 1.394l-1.736 2.447c-.318.448-.945.555-1.394.237z"/><path fill="#99AAB5" d="M18 0c7 0 17 2 17 12 0 7-8 17-14 17S18 0 18 0z"/><path fill="#7C533E" d="M29 15c-1 6-4.599 8.097-6 13-2 7-7 8-11 8-7 0-3.856-6.568-7-16-3-9-2.716-15.899 7-18 9.25-2 18.634 3.194 17 13z"/><path fill="#583529" d="M23.948 6.211c-2.643-2.178-6.912-3.018-11.14-2.192-2.396.467-4.207 1.644-5.381 3.497-2.517 3.973-1.124 9.618-1.063 9.856.136.535.678.862 1.215.723.535-.136.859-.68.723-1.215-.004-.016-.134-.545-.24-1.358.059-.004.117.007.177-.008 3.049-.751 5.129-.051 5.701 1.922.533 1.841-.446 4.513-2.442 5.181-1.008.264-2.379.997-2.924 2.199-.251.554-.435 1.446.116 2.549.175.351.528.553.895.553.15 0 .303-.034.446-.106.494-.247.694-.848.447-1.342-.216-.432-.151-.679-.084-.828.238-.524 1.084-.953 1.672-1.109 3.23-1.076 4.592-4.898 3.794-7.653-.685-2.366-3.133-4.466-7.932-3.343-.008-1.584.238-3.45 1.189-4.95.88-1.389 2.213-2.241 4.074-2.604 3.659-.713 7.292-.033 9.485 1.773C24.218 9.025 25 10.79 25 13c0 3.48-1.008 4.756-2.403 6.522-.461.583-.938 1.186-1.429 1.923-.307.46-.183 1.08.277 1.387.171.113.364.168.554.168.323 0 .641-.156.833-.445.446-.67.898-1.24 1.333-1.792C25.623 18.917 27 17.175 27 13c0-2.797-1.056-5.145-3.052-6.789z"/><circle fill="#66757F" cx="11" cy="18" r="5"/><circle fill="#99AAB5" cx="11" cy="18" r="3"/><path fill="#CCD6DD" d="M11.001 19c-.072 0-.145-.008-.218-.024-4.18-.929-6.665-4.504-6.183-8.897C5.134 5.225 9.554 0 18 0c.552 0 1 .448 1 1s-.448 1-1 1C10.747 2 7.042 6.167 6.589 10.297c-.282 2.566.761 5.868 4.628 6.727.539.12.879.654.759 1.193-.103.466-.517.783-.975.783z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f9bb.svg b/public/emoji/1f9bb.svg
new file mode 100644
index 0000000000000000000000000000000000000000..05bc0201153927a9391e060a431c6b03e157d2dc
--- /dev/null
+++ b/public/emoji/1f9bb.svg
@@ -0,0 +1 @@
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#66757F" d="M30.405 23.361c-.449-.318-.555-.946-.237-1.394l1.736-2.447c.318-.449.946-.555 1.394-.237.449.318.555.946.237 1.394l-1.736 2.447c-.318.448-.945.555-1.394.237z"/><path fill="#99AAB5" d="M18 0c7 0 17 2 17 12 0 7-8 17-14 17S18 0 18 0z"/><path fill="#FFDC5D" d="M29 15c-1 6-4.599 8.097-6 13-2 7-7 8-11 8-7 0-3.856-6.568-7-16-3-9-2.716-15.899 7-18 9.25-2 18.634 3.194 17 13z"/><path fill="#EF9645" d="M23.948 6.211c-2.643-2.178-6.912-3.018-11.14-2.192-2.396.467-4.207 1.644-5.381 3.497-2.517 3.973-1.124 9.618-1.063 9.856.136.535.678.862 1.215.723.535-.136.859-.68.723-1.215-.004-.016-.134-.545-.24-1.358.059-.004.117.007.177-.008 3.049-.751 5.129-.051 5.701 1.922.533 1.841-.446 4.513-2.442 5.181-1.008.264-2.379.997-2.924 2.199-.251.554-.435 1.446.116 2.549.175.351.528.553.895.553.15 0 .303-.034.446-.106.494-.247.694-.848.447-1.342-.216-.432-.151-.679-.084-.828.238-.524 1.084-.953 1.672-1.109 3.23-1.076 4.592-4.898 3.794-7.653-.685-2.366-3.133-4.466-7.932-3.343-.008-1.584.238-3.45 1.189-4.95.88-1.389 2.213-2.241 4.074-2.604 3.659-.713 7.292-.033 9.485 1.773C24.218 9.025 25 10.79 25 13c0 3.48-1.008 4.756-2.403 6.522-.461.583-.938 1.186-1.429 1.923-.307.46-.183 1.08.277 1.387.171.113.364.168.554.168.323 0 .641-.156.833-.445.446-.67.898-1.24 1.333-1.792C25.623 18.917 27 17.175 27 13c0-2.797-1.056-5.145-3.052-6.789z"/><circle fill="#66757F" cx="11" cy="18" r="5"/><circle fill="#99AAB5" cx="11" cy="18" r="3"/><path fill="#CCD6DD" d="M11.001 19c-.072 0-.145-.008-.218-.024-4.18-.929-6.665-4.504-6.183-8.897C5.134 5.225 9.554 0 18 0c.552 0 1 .448 1 1s-.448 1-1 1C10.747 2 7.042 6.167 6.589 10.297c-.282 2.566.761 5.868 4.628 6.727.539.12.879.654.759 1.193-.103.466-.517.783-.975.783z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f9bc.svg b/public/emoji/1f9bc.svg
new file mode 100644
index 0000000000000000000000000000000000000000..153f55312d938d78d2a5ccacbf57f9ca2b0965a0
--- /dev/null
+++ b/public/emoji/1f9bc.svg
@@ -0,0 +1 @@
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#66757F" d="M26.623 9.859l.44-5.43c.022-.274.265-.48.539-.458l.03.002c.274.022.48.265.458.539l-.44 5.43c-.022.274-.265.48-.539.458l-.03-.002c-.275-.023-.481-.265-.458-.539z"/><path fill="#292F33" d="M14.457 20.548v2.06s-2.06 0-2.06 2.06v3.09c0 1.03 1.03 2.06 2.06 2.06h10.302c1.03 0 2.06-1.03 2.06-2.06v-5.151c0-1.03-1.03-2.06-2.06-2.06l-10.302.001z"/><path fill="#292F33" d="M21.622 22.154l-10.145-1.789c-1.014-.179-1.014-.179-.836-1.193.098-.558.635-.934 1.193-.836l10.145 1.789c.558.098.934.635.836 1.193-.178 1.015-.178 1.015-1.193.836z"/><path fill="#292F33" d="M23.974 18.511c-.199.949-.574 1.882-2.157 1.583-1.583-.298-1.836 1.262-.849 1.538.987.275 3.35.666 4.039-.459.688-1.124.803-2.203.734-2.685-.069-.481-1.62-.679-1.767.023z"/><path fill="#DD2E44" d="M22.137 22.504l-11.189-1.973c-.271-.048-.453-.308-.406-.579l.005-.03c.048-.271.308-.453.579-.406l11.189 1.973c.271.048.453.308.406.579l-.005.03c-.047.271-.308.453-.579.406z"/><path fill="#292F33" d="M27.778 8.848l-1.789 10.145c-.179 1.014-.179 1.014-1.193.836-.558-.098-.934-.635-.836-1.193L25.749 8.49c.098-.558.635-.934 1.193-.836 1.015.179 1.015.179.836 1.194zM28.8 1.132l-.734 4.146c-.09.508-.173 1.038-1.188.859-.558-.099-.908-.737-.786-1.441L26.75.978c.168-.597.645-1.034 1.203-.936 1.014.18.937.582.847 1.09z"/><path fill="#DD2E44" d="M28.27 8.402l-1.973 11.189c-.048.271-.308.453-.579.406l-.03-.005c-.271-.048-.453-.308-.406-.579l1.973-11.189c.048-.271.308-.453.579-.406l.03.005c.271.048.453.308.406.579zm1.28-7.68l-.943 5.366c-.048.271-.308.454-.579.406l-.03-.005c-.271-.048-.453-.308-.406-.579l.943-5.366c.048-.271.308-.453.579-.406l.03.005c.271.048.453.308.406.579z"/><path fill="#292F33" d="M24.237 17.912l-7.691-1.356c-.769-.136-.769-.136-.635-.895.074-.418.48-.698.903-.624l7.691 1.356c.423.075.709.477.635.895-.134.759-.134.759-.903.624z"/><path fill="#DD2E44" d="M21.794 21.397c1.023.18 3.043.537 3.58-2.507.537-3.043 1.551-2.865 1.014.179s-2.304 3.778-4.773 3.342c-2.029-.357-1.85-1.372.179-1.014zm-10.641-1.876c2.03.35 2.345 1.465.317 1.102-.899-.161-1.014.218-1.289.987-.259.723-.63 1.81-1.178 3.328-.403 1.115-1.317.621-.979-.352.568-1.636 1.093-3.058 1.434-3.962.348-.924.632-1.286 1.695-1.103z"/><path fill="#DD2E44" d="M8.929 23.654l-.029-.011c-.258-.094-.547.04-.641.299l-2.124 5.836c-.094.258.04.547.299.641l.028.01c.258.094.547-.04.641-.299l2.124-5.836c.094-.258-.04-.546-.298-.64z"/><path fill="#66757F" d="M6.462 30.43l-3.9-1.42c-.258-.094-.393-.382-.299-.641l.01-.028c.094-.258.382-.393.641-.299l3.9 1.42c.258.094.393.382.299.641l-.01.028c-.094.258-.382.393-.641.299z"/><path fill="#DD2E44" d="M12.225 30.718l3.06-3.06c.194-.194.194-.513 0-.707l-.021-.021c-.194-.194-.513-.194-.707 0l-3.06 3.06c-.194.194-.194.513 0 .707l.021.021c.194.194.512.194.707 0zm18.744 3.222h-.06c-.55 0-1-.45-1-1v-3.151c0-.55.45-1 1-1h.06c.55 0 1 .45 1 1v3.151c0 .55-.45 1-1 1z"/><path fill="#DD2E44" d="M11.911 33.94h-.06c-.55 0-1-.45-1-1v-3.151c0-.55.45-1 1-1h.06c.55 0 1 .45 1 1v3.151c0 .55-.45 1-1 1zm13.329-6.186h2.09c.275 0 .5-.225.5-.5v-.03c0-.275-.225-.5-.5-.5h-2.09c-.275 0-.5.225-.5.5v.03c0 .275.225.5.5.5z"/><path fill="#DD2E44" d="M30.047 30.657l-3.06-3.06c-.194-.194-.194-.513 0-.707l.021-.021c.194-.194.513-.194.707 0l3.06 3.06c.194.194.194.513 0 .707l-.021.021c-.195.195-.513.195-.707 0z"/><path fill="#292F33" d="M9.998 15.528c.765.328 2.111.964 2.41 1.079 0 0 .138-.918.505-.918 0 0 .138-.482.229-.688.092-.207.367-.138.39.252.023.39-.092.528-.092.528s.344.436.138 1.033c0 0 .459.069.367.643-.092.574.069 1.01-.344 1.124-.413.115-1.974.551-1.997-.069-.023-.62-.413-1.102-1.17-1.561-.757-.459-1.308-.964-1.216-1.216.091-.253.137-.482.78-.207z"/><path fill="#DD2E44" d="M25.288 24.668H13.927c-.275 0-.5-.225-.5-.5v-.03c0-.275.225-.5.5-.5h11.362c.275 0 .5.225.5.5v.03c-.001.275-.226.5-.501.5z"/><circle fill="#66757F" cx="20.122" cy="31.364" r="4.636"/><circle fill="#66757F" cx="11.881" cy="33.425" r="2.575"/><circle fill="#66757F" cx="30.939" cy="33.94" r="2.06"/><circle fill="#CCD6DD" cx="20.122" cy="31.364" r="2.575"/><circle fill="#CCD6DD" cx="11.881" cy="33.425" r="1.545"/><circle fill="#292F33" cx="30.939" cy="33.94" r="1.03"/><g fill="#292F33"><circle cx="20.638" cy="30.472" r=".515"/><circle cx="19.607" cy="32.256" r=".515"/><circle cx="19.23" cy="30.849" r=".515"/><circle cx="21.015" cy="31.879" r=".515"/></g><circle fill="#292F33" cx="11.881" cy="33.425" r=".773"/><circle fill="#66757F" cx="30.939" cy="33.94" r=".515"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f9bd.svg b/public/emoji/1f9bd.svg
new file mode 100644
index 0000000000000000000000000000000000000000..c371d4bf8365b4573e19a88a4a6c90041ef08209
--- /dev/null
+++ b/public/emoji/1f9bd.svg
@@ -0,0 +1 @@
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><g fill="#DD2E44"><path d="M11.83 26.822l11.18.981c.274.024.518-.18.542-.454l.003-.03c.024-.274-.181-.518-.455-.542l-11.18-.981c-.274-.024-.518.18-.542.455l-.003.03c-.024.273.181.517.455.541z"/><path d="M23.01 27.803l-.03-.003c-.274-.024-.478-.268-.455-.542l.452-5.161c.024-.274.268-.478.542-.455l.03.003c.274.024.478.268.455.542l-.452 5.161c-.024.274-.268.479-.542.455zm-11.062-7.809l-.03-.003c-.274-.024-.518.181-.542.454l-1.048 11.977c-.024.274.181.518.455.542l.03.003c.274.024.518-.181.542-.454l1.048-11.977c.023-.274-.181-.518-.455-.542z"/></g><path fill="#292F33" d="M22.207 20.128c1.475-.212 2.919-.152 2.416.56-.504.713-1.623 1.963-3.521 1.759-1.899-.204.191-2.188 1.105-2.319z"/><path fill="#292F33" d="M21.101 22.447l-10.262-.898c-1.026-.09-1.026-.09-.936-1.116.049-.564.552-.986 1.116-.936l10.262.898c.564.049.986.552.936 1.116-.089 1.025-.089 1.025-1.116.936z"/><path fill="#DD2E44" d="M21.645 22.75l-11.318-.99c-.274-.024-.478-.268-.455-.542l.003-.03c.024-.274.268-.478.542-.455l11.318.99c.274.024.478.268.455.542l-.003.03c-.024.274-.268.479-.542.455z"/><path fill="#292F33" d="M26.074 8.654l-.898 10.262c-.09 1.026-.09 1.026-1.116.936-.564-.049-.986-.552-.936-1.116l.898-10.262c.049-.564.552-.986 1.116-.936 1.026.09 1.026.09.936 1.116z"/><path fill="#DD2E44" d="M26.525 8.167l-.99 11.318c-.024.274-.268.478-.542.455l-.03-.003c-.274-.024-.478-.268-.455-.542l.99-11.318c.024-.274.268-.478.542-.455l.03.003c.274.025.479.268.455.542z"/><path fill="#292F33" d="M23.337 17.992l-7.78-.681c-.778-.068-.778-.068-.711-.836.037-.423.417-.738.845-.7l7.78.681c.428.037.748.414.711.836-.067.768-.067.768-.845.7z"/><path fill="#DD2E44" d="M21.207 21.677c1.035.091 3.079.269 3.348-2.809s1.296-2.989 1.026.09-1.966 3.964-4.464 3.746c-2.052-.18-1.963-1.206.09-1.027zm-10.764-.941c2.053.171 2.464 1.255.412 1.07-.909-.082-.991.305-1.198 1.095-.195.743-.469 1.858-.884 3.418-.304 1.146-1.258.734-1.006-.265.423-1.679.822-3.142 1.083-4.072.267-.95.517-1.336 1.593-1.246z"/><g fill="#66757F"><circle cx="23.213" cy="27.244" r="1.545"/><path d="M30.161 30.661l-6.245-3.606 3.606-6.245-.892-.515-3.606 6.245-6.245-3.605-.515.892 6.245 3.605-3.605 6.245.892.515 3.605-6.245 6.245 3.606z"/><path d="M25.71 34.573l-1.866-6.965 6.965-1.866-.267-.995-6.965 1.866-1.866-6.965-.995.266 1.866 6.966-6.965 1.866.266.995 6.966-1.866 1.866 6.965z"/></g><path fill="#292F33" d="M23.213 18.488c-4.836 0-8.756 3.92-8.756 8.756S18.377 36 23.213 36s8.756-3.92 8.756-8.756-3.92-8.756-8.756-8.756zm0 15.452c-3.698 0-6.696-2.998-6.696-6.696s2.998-6.696 6.696-6.696 6.696 2.998 6.696 6.696-2.998 6.696-6.696 6.696z"/><path fill="#66757F" d="M23.213 19.518c-4.267 0-7.726 3.459-7.726 7.726s3.459 7.726 7.726 7.726 7.726-3.459 7.726-7.726-3.459-7.726-7.726-7.726zm0 14.422c-3.698 0-6.696-2.998-6.696-6.696s2.998-6.696 6.696-6.696 6.696 2.998 6.696 6.696-2.998 6.696-6.696 6.696zm-9.428-.446l-2.23-1.288 1.287-2.23-.892-.515-1.287 2.23-2.231-1.288-.515.892 2.231 1.288-1.288 2.23.892.515 1.288-2.23 2.23 1.288z"/><path fill="#292F33" d="M10.851 28.789c-1.991 0-3.605 1.614-3.605 3.605S8.86 36 10.851 36s3.605-1.614 3.605-3.605-1.614-3.606-3.605-3.606zm0 6.181c-1.422 0-2.575-1.153-2.575-2.575 0-1.422 1.153-2.575 2.575-2.575s2.575 1.153 2.575 2.575c.001 1.422-1.152 2.575-2.575 2.575z"/><path fill="#DD2E44" d="M8.587 25.046l-.029-.008c-.266-.071-.541.088-.612.354l-1.608 5.999c-.071.266.088.541.354.612l.029.008c.266.071.541-.088.612-.354l1.608-5.999c.07-.265-.089-.54-.354-.612z"/><path fill="#66757F" d="M6.72 32.012l-4.009-1.074c-.266-.071-.425-.347-.354-.612l.008-.029c.071-.266.347-.425.612-.354l4.009 1.074c.266.071.425.347.354.612l-.008.029c-.07.266-.346.425-.612.354z"/><path fill="#DD2E44" d="M29 9.187l-3.073-.542c-.271-.048-.453-.308-.406-.579l.005-.03c.048-.271.308-.453.579-.406l3.073.542c.271.048.453.308.406.579l-.005.03c-.048.272-.309.454-.579.406z"/><path fill="#292F33" d="M29.999 9.364l-2.694-.482c-.279-.049-.268-.283-.219-.562.049-.279.119-.502.398-.453l2.694.482c.279.049.467.318.418.597-.049.279-.318.467-.597.418z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f9be.svg b/public/emoji/1f9be.svg
new file mode 100644
index 0000000000000000000000000000000000000000..c3d2db4f092fe3ea83a2175601c1c768f3422f3c
--- /dev/null
+++ b/public/emoji/1f9be.svg
@@ -0,0 +1 @@
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><circle fill="#66757F" cx="8.553" cy="29.973" r="4.478"/><path fill="#CCD6DD" d="M10.482 34.451c5.29 2 17 1 20-1s5.658-4.054 5-8c-1-6-9-7-14-6-4.903.981-9 4-10 6-.632 1.265 0 3 0 5 0 3-1.936 3.646-1 4z"/><path fill="#99AAB5" d="M30.482 33.451c3-2 5.658-4.054 5-8l-.005-.02c-2.609 1.493-6.824 3.435-12.309 4.37-4.599.784-8.938.861-11.692.798-.064 2.869-1.913 3.505-.994 3.852 5.29 2 17 1 20-1z"/><circle fill="#66757F" cx="8.489" cy="9.789" r="2.42"/><path fill="#99AAB5" d="M2.495 31.311c-3.926-5.609-1.447-12.69.586-17.247 1.559-3.495 3.025-4.696 3.025-4.696l4.557 2.033s-1.724 4.645-1.192 8.237c.561 3.786 1.227 6.976-.596 10.341s-5.399 2.734-6.38 1.332z"/><path fill="#CCD6DD" d="M7.952 10.192l2.711 1.21s-1.724 4.645-1.192 8.237c.561 3.786 1.227 6.976-.596 10.341-.754 1.392-1.808 2.1-2.855 2.353-4.436-9.786 1.932-22.141 1.932-22.141z"/><path fill="#99AAB5" d="M6.316 8.176C6.737 5.792 10.172.254 11.364.464s6.94 2.454 7.922 3.856-1.052 5.959-2.244 5.749c-1.192-.21-.771-2.594-.771-2.594s.21-1.192-1.192-.21l-2.804 1.963c-1.402.982-5.959-1.052-5.959-1.052z"/><path fill="#99AAB5" d="M6.316 8.176c-.981-1.402-.35-4.978-.14-6.169.21-1.192 2.594-.771 2.173 1.613-.42 2.383.771 2.594.771 2.594L6.316 8.176z"/><path fill="#CCD6DD" d="M6.316 8.176C6.737 5.792 10.172.254 11.364.464s6.94 2.454 7.922 3.856c-5.749-2.244-7.782 2.313-8.192 5.174-1.886-.027-4.778-1.318-4.778-1.318z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f9bf.svg b/public/emoji/1f9bf.svg
new file mode 100644
index 0000000000000000000000000000000000000000..db17a633bcadec6deafb9aa990a3b6f33a6b5136
--- /dev/null
+++ b/public/emoji/1f9bf.svg
@@ -0,0 +1 @@
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><circle fill="#66757F" cx="17.221" cy="29.784" r="2.5"/><circle fill="#66757F" cx="10.517" cy="9.871" r="4.592"/><path fill="#CCD6DD" d="M9.914 4.746c3.03-2.02 12.594-4.04 14.733-4.218s4.517.295 5.347 1.069c.891.832 2.131 2.311 1.96 4.693-.178 2.495-1.485 4.634-4.218 5.049-2.733.416-8.554-.832-11.168.238-1.583.648-1.901.178-2.317-.95-.416-1.129-1.423-2.677-2.203-3.62-1.183-1.429-3.4-1.417-2.134-2.261z"/><path fill="#99AAB5" d="M27.736 11.34c2.733-.416 4.04-2.554 4.218-5.049.03-.415.004-.793-.042-1.155-5.661-.212-14.809 1.095-18.741 3.45.446.697.854 1.427 1.081 2.042.416 1.129.734 1.598 2.317.951 2.613-1.071 8.434.177 11.167-.239zm-20.955.698c-1.1 2.201-.505 6.034 3.301 11.003 2.287 2.986 3.658 4.841 4.758 5.941s5.501 0 4.401-2.201c-3.301-6.602.744-10.343-6.552-15.049-3.161-2.039-5.156-1.198-5.908.306z"/><path fill="#CCD6DD" d="M17.289 29.293c1.358-.315 2.595-1.225 1.952-2.511-3.301-6.602.744-10.343-6.552-15.049-1.373-.886-2.526-1.228-3.453-1.209 6.347 5.916 3.403 9.656 8.053 18.769z"/><path fill="#8899A6" d="M13.726 29.713c.278.253 1.134.43 1.677.6-.162-.236-.574-.917-.735-1.257-.051-.108-.187-.15-.298-.094l-.677.426c-.131.064-.073.229.033.325zm-6.869 5.581c1.108.427 2.151.629 3.153.652.076.002 2.741 0 4.072-.007.974-.005 1.809-.01 2.091-.008l.174.001.263.002c1.844.011 3.116.105 3.668-.382.081-.072.112-.18.116-.3.006-.166-.008-.341-.008-.341-.035.125-5.57.481-7.417.58-6.101.326-7.589-1.435-7.656-1.586 0-.001.142.848 1.544 1.389z"/><path fill="#BE1931" d="M9.667 34.83c2.065.131 10.352-.655 10.352-.655l.214-.305c.215-.305.178-.785.181-1.198.003-.413-.119-1.959-.302-2.359-.183-.4-.555-.856-.899-.711-.432.181-1.221 1.125-1.89 1.12-.968-.006-3.215-1.482-3.533-1.485-.477-.003-.592.519-1.64.914-.49.185-2.727 1.049-2.727 1.049-.572.21-.608.322-.914.44-.628.242-1.996.653-2.528.863-.532.21-.729.622-.745.928-.016.306.076.473.076.473s.833.702 4.355.926z"/><path fill="#A0041E" d="M17.318 31.102c.81.005 1.764-1.19 2.297-1.433-.13-.088-.268-.124-.402-.068-.431.181-1.221 1.125-1.89 1.12-.969-.006-3.215-1.482-3.533-1.485-.132-.001-.237.041-.341.107.789.491 2.893 1.753 3.869 1.759z"/><path fill="#DD2E44" d="M20.079 34.068s.067-.022.145-.125c.217-.285.204-.733.207-1.121.002-.294-.043-1.205-.156-1.791-.38.068-2.38.431-3.1.773-.768.365-1.411 1.457-1.603 1.984-.008.021 4.507.28 4.507.28z"/><path fill="#CCD6DD" d="M12.974 30.691l-.379-.604c-.089-.143-.039-.327.112-.412.151-.085.347-.037.436.105l.379.604c.089.143.039.327-.112.412-.116.065-.258.053-.358-.021-.03-.023-.057-.051-.078-.084zm-1.139.529l-.296-.687c-.066-.154.012-.329.175-.392.163-.063.349.011.415.165l.296.687c.066.154-.012.329-.175.392-.109.042-.229.023-.316-.041-.043-.031-.077-.073-.099-.124zm-1.2.343l-.19-.652c-.046-.16.053-.325.223-.369.17-.044.345.05.391.21l.19.653c.046.16-.053.325-.223.369-.101.026-.204.004-.28-.053-.052-.039-.092-.093-.111-.158zm-1.187.284l-.125-.522c-.038-.162.069-.323.241-.359.172-.036.342.066.381.227l.125.522c.038.162-.069.323-.241.359-.097.021-.193-.003-.266-.056-.056-.041-.097-.1-.115-.171zM20.4 35.008c-.001.119-.139.316-.802.511-.466.138-2.68.115-3.423.111-.743-.005-5.333.033-6.156.015-.822-.018-1.731-.145-2.955-.545-1.28-.419-1.692-1.054-1.752-1.196.344.2.822.357 1.399.456.447.077 1.171.165 1.979.236.809.071 1.886-.005 2.576-.08.691-.075 2.731-.586 3.873-.724 1.142-.138 2.79-.101 3.228-.099.438.003 1.031.059 1.282.192.251.133.596.109.596.109.253.003.158.724.155 1.014z"/><path fill="#DD2E44" d="M5.436 32.906c.378.267 1.401.317 2.282.054 1.099-.328 1.244-.825 1.083-1.303-.011-.033-.043-.093-.062-.123-.251.102-.665.239-.749.28-.628.242-1.476.48-2.008.69-.253.098-.428.244-.546.402z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f9c3.svg b/public/emoji/1f9c3.svg
new file mode 100644
index 0000000000000000000000000000000000000000..51a3f26d4d9d55445ff207a41e7cc33684191cb6
--- /dev/null
+++ b/public/emoji/1f9c3.svg
@@ -0,0 +1 @@
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#E3A919" d="M28.337 32.563l-2.579 3.082c-.552.553-1.758.007-1.758-.545V12.001c0-.552 2.372-4.501 5-4.501l-.028 23.007c0 1.134-.093 1.308-.635 2.056z"/><path fill="#FFD983" d="M26 10.454H9l.194-.348L12.74 7.5c.486-.379.831-.5 1.383-.5h14.363c.188 0 .514.277.344.47L26 10.454z"/><path fill="#FFCC4D" d="M25 36H10c-.552 0-1-.448-1-1V10.454S9.448 10 10 10h15c.552 0 1 .454 1 .454V35c0 .552-.448 1-1 1z"/><circle fill="#F4900C" cx="15" cy="27" r="3"/><circle fill="#EA596E" cx="15" cy="21" r="4"/><circle fill="#FFE8B6" cx="19.5" cy="23.5" r="4.5"/><circle fill="#FFCC4D" cx="19.5" cy="23.5" r="2.5"/><path fill="#CCD6DD" d="M22.999 8.464s-.21.431-.967.431-1.033-.431-1.033-.431V4.342c0-1.993.532-3.309 1.582-3.911 1.005-.576 2.326-.398 3.922.535 1.274.743 4.421 2.972 4.496 3.034 0 0 .165.565-.303 1.1-.468.535-.965.447-.965.447-.018-.014-3.101-2.191-4.236-2.855-.881-.515-1.584-.623-1.904-.436-.279.16-.592.726-.592 2.086v4.122z"/><path fill="#99AAB5" d="M25.434.44c-1.124-.446-2.082-.451-2.853-.01-.791.454-1.287 1.314-1.484 2.562l1.975.367c.108-.664.322-.989.52-1.103.22-.129.63-.105 1.146.082L25.434.44z"/><path fill="#FFE8B6" d="M25.931 11H9.5c-.275 0-.5-.225-.5-.5s.225-.5.5-.5h16.431c.275 0 .5.225.5.5s-.225.5-.5.5z"/><path fill="#FFE8B6" d="M28.908 7.796l-2.536 3.036c-.163.201-.471.223-.684.05-.214-.173-.255-.479-.093-.68l2.536-3.036c.163-.201.471-.223.684-.05.214.174.255.479.093.68z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f9c4.svg b/public/emoji/1f9c4.svg
new file mode 100644
index 0000000000000000000000000000000000000000..37a9f36e849aa9e69e95059a9fc2b330b0157dde
--- /dev/null
+++ b/public/emoji/1f9c4.svg
@@ -0,0 +1 @@
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#99AAB5" d="M25.786 32.106c-.018-.035-.334-.608-.918-1.05.092-.377.05-.748-.275-.988-.806-.593-7.902.202-8.409 2.739-.21 1.049.527 1.049.93.724-.123.447-.19.905-.152 1.335.021.241.234.419.475.398.026-.002.051-.007.075-.013.202-.054.342-.247.323-.462-.026-.299.02-.622.099-.942.18.161.38.293.614.241.28-.063.457-.338.574-.638.014.19.042.312.045.326.062.232.299.369.531.309l.005-.001c.23-.062.368-.298.312-.53-.004-.015-.046-.205-.017-.506.396.239.896.456 1.305.356.521-.127.769-.566.893-.997.393.369.625.801.859 1.303.091.196.308.293.51.239.025-.007.048-.015.072-.026.22-.102.315-.363.213-.582-.166-.357-.371-.789-.711-1.208.31.207.637.352.851.227.149-.087.326-.271.488-.495.338.301.528.646.53.652.099.183.308.269.501.217.031-.008.062-.02.092-.036.216-.116.298-.379.185-.592z"/><path fill="#E1E8ED" d="M22.92 11.745c-3.324-.292-4.921-2.163-5.906-3.983-.19-.352-1.706-3.665-2.486-5.804-.74-2.029-1.983-.958-2.553-.805-.571.153-1.483.171-1.31 1.84.259 2.503.708 5.872.749 6.269.234 2.243-.391 4.487-3.123 6.402-5.12 3.588-6.648 6.939-5.656 10.642 1.42 5.299 4.566 9.254 17.872 5.688S34.56 23.431 33.14 18.132c-.993-3.701-3.992-5.84-10.22-6.387z"/><path fill="#99AAB5" d="M11.29 32.904c-2.744-1.233-5.845-3.48-5.898-7.615-.058-4.524 4.073-7.097 4.567-9.714.173 3.065-2.752 5.037-2.722 8.946.028 3.541 1.019 6.223 4.053 8.383zm6.984-.497c-2.612-1.34-5.792-4.185-6.488-8.1-1.002-5.636 1.365-9.11.782-13.372 1.415 4.899.563 7.254 1.436 12.126.568 3.17 2.161 7.531 4.27 9.346zm10.667-4.233c1.759-2.44 3.322-5.937 1.3-9.544-2.212-3.947-7.076-4.11-8.812-6.129 1.383 2.741 4.902 2.986 6.83 6.386 1.748 3.081 2.23 5.9.682 9.287zm-6.296 3.061c1.592-2.466 2.924-6.52 1.569-10.259-1.951-5.382-5.737-7.207-7.363-11.19 1.224 4.951 3.139 6.564 4.819 11.22 1.092 3.03 1.894 7.603.975 10.229z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f9c5.svg b/public/emoji/1f9c5.svg
new file mode 100644
index 0000000000000000000000000000000000000000..ab68cb1d6c1974807854ef97830ea12dc3318b90
--- /dev/null
+++ b/public/emoji/1f9c5.svg
@@ -0,0 +1 @@
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#D39954" d="M26.617 32.441c-.02-.039-.373-.678-1.025-1.172.103-.421.056-.835-.307-1.103-.9-.662-8.82.226-9.386 3.057-.234 1.171.588 1.171 1.038.809-.137.499-.212 1.011-.169 1.49.024.269.261.467.531.444.029-.002.057-.007.084-.015.225-.06.381-.275.36-.516-.03-.334.022-.694.111-1.051.201.18.424.327.686.269.312-.07.51-.378.64-.712.015.212.046.348.05.363.069.259.333.411.593.345l.006-.002c.257-.069.411-.333.348-.591-.004-.017-.051-.229-.019-.565.442.267 1 .509 1.457.398.581-.142.859-.631.997-1.113.439.412.698.895.958 1.454.101.219.344.327.569.267.028-.007.054-.016.08-.029.246-.113.352-.405.238-.65-.185-.399-.414-.88-.793-1.348.346.231.711.393.95.253.166-.097.364-.302.545-.553.377.336.589.721.592.727.11.204.344.3.559.242.035-.009.069-.023.103-.04.239-.126.33-.419.204-.658z"/><path fill="#EDD6A6" d="M21.708 6.32c-2.741-.932-5.978-3.134-6.754-6.03-.273-1.02-.952 1.29-1.891 1.541-.939.252-2.682-1.409-2.408-.389.776 2.896-.926 6.422-2.834 8.599-3.575 4.08-6.287 8.95-4.89 14.165 2 7.465 10.1 10.746 18.41 8.519s13.684-9.118 11.684-16.582c-1.398-5.215-6.182-8.077-11.317-9.823z"/><path fill="#E2A759" d="M13.66 32.585c-3.296-1.993-7.838-5.273-8.227-11.23-.425-6.519 4.936-10.098 5.304-13.826.444 4.428-3.559 7.236-3.214 12.866.313 5.101 2.429 8.841 6.137 12.19z"/><path fill="#E2A759" d="M19.764 32.885c-3.097-1.934-6.932-5.916-7.944-11.203-1.457-7.611 1.103-12.145.203-17.89 1.897 6.644 1.034 9.757 2.302 16.336.825 4.282 2.9 10.213 5.439 12.757zm8.158-4.121c1.858-3.374 4.302-8.526 1.66-13.88-2.891-5.858-9.474-6.237-11.657-9.281 1.829 4.057 6.85 4.447 9.367 9.495 2.28 4.574 2.166 8.912.63 13.666z"/><path fill="#E2A759" d="M22.786 32.076c1.715-3.223 3.045-8.589 1.278-13.674-2.543-7.32-7.027-9.966-9.121-15.392 1.679 6.703 3.983 8.966 6.174 15.298 1.427 4.12 2.596 10.295 1.669 13.768z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f9c6.svg b/public/emoji/1f9c6.svg
new file mode 100644
index 0000000000000000000000000000000000000000..c360564ebe4e69a1c58758a488d1c5ca995140c6
--- /dev/null
+++ b/public/emoji/1f9c6.svg
@@ -0,0 +1 @@
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><ellipse fill="#C15829" cx="10.757" cy="8.247" rx="8.032" ry="6.884"/><path fill="#933813" d="M15.347 13.984c0-.972.144-1.874.395-2.71-1.43-.467-2.983-.732-4.626-.732-2.628 0-5.057.628-7.053 1.785 1.438 1.83 3.898 2.805 6.694 2.805 1.714 0 3.291-.378 4.593-1.084 0-.022-.003-.042-.003-.064z"/><path fill="#933813" d="M13.052 13.984c0 .308.02.606.046.901 3.294-.721 5.691-3.017 5.691-6.638 0-.889-.15-1.695-.417-2.42-3.172 1.423-5.32 4.271-5.32 8.157z"/><ellipse fill="#C15829" cx="25.673" cy="13.984" rx="10.327" ry="9.179"/><path fill="#933813" d="M25.673 22.59c0-6.029-4.354-9.953-10.088-10.745-.153.673-.239 1.385-.239 2.139 0 5.693 4.608 9.166 10.297 9.178.01-.191.03-.377.03-.572z"/><ellipse fill="#C15829" cx="12.263" cy="23.737" rx="12.263" ry="10.9"/><path fill="#A0AD55" d="M34.709 13.984c0-4.621-3.471-7.566-7.946-7.977-.107.032-.216.059-.321.101-2.761 1.102-3.698 5.254-2.094 9.275 1.274 3.192 3.767 5.334 6.123 5.533 2.543-1.302 4.238-3.707 4.238-6.932z"/><path fill="#C4CE89" d="M26.442 6.108c-2.761 1.102-3.698 5.254-2.094 9.275 1.274 3.192 3.767 5.334 6.123 5.533-5.945-10.374-3.924-14.85-4.029-14.808z"/><circle fill="#FFAC33" cx="3.873" cy="19.721" r="1.147"/><circle fill="#77B255" cx="5.594" cy="16.853" r=".574"/><circle fill="#77B255" cx="8.462" cy="18.574" r="1.147"/><circle fill="#FFAC33" cx="10.757" cy="15.131" r="1.147"/><circle fill="#FFAC33" cx="5.594" cy="5.378" r=".574"/><circle fill="#77B255" cx="7.315" cy="3.657" r="1.147"/><circle fill="#FFAC33" cx="10.183" cy="3.084" r=".574"/><circle fill="#77B255" cx="20.51" cy="7.673" r=".574"/><circle fill="#FFAC33" cx="18.789" cy="9.394" r="1.147"/><circle fill="#A6D388" cx="29" cy="10" r="1"/><circle fill="#A6D388" cx="33" cy="14" r="1"/><circle fill="#77B255" cx="4" cy="27" r="1"/><circle fill="#77B255" cx="10" cy="30" r="1"/><circle fill="#77B255" cx="19" cy="25" r="1"/><circle fill="#77B255" cx="22" cy="13" r="1"/><circle fill="#77B255" cx="15" cy="5" r="1"/><circle fill="#77B255" cx="8" cy="9" r="1"/><circle fill="#FFAC33" cx="14" cy="22" r="1"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f9c7.svg b/public/emoji/1f9c7.svg
new file mode 100644
index 0000000000000000000000000000000000000000..cc92a9d18792e401ac27f8024a4c5f8a6e292f16
--- /dev/null
+++ b/public/emoji/1f9c7.svg
@@ -0,0 +1 @@
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><ellipse fill="#939598" cx="18" cy="26" rx="18" ry="10"/><ellipse fill="#CCD6DD" cx="18" cy="24" rx="18" ry="10"/><path fill="#F4900C" d="M15.714 32.54L2.575 24.857c-1.262-.738-.929-3.558-.929-4.785l14.069-6.657c1.262-.738 3.308-.738 4.57 0L34.37 20.26c0 1.689.316 3.859-.947 4.597L20.285 32.54c-1.262.738-3.309.738-4.571 0z"/><path fill="#FFAC33" d="M15.714 29.279L2.575 21.596c-1.262-.738-1.262-1.934 0-2.672l13.139-7.683c1.262-.738 3.308-.738 4.57 0l13.139 7.683c1.262.738 1.262 1.934 0 2.672l-13.139 7.683c-1.261.738-3.308.738-4.57 0z"/><path d="M17.463 14.416l-1.61-.942c-.296-.173-.296-.454 0-.628l1.61-.942c.296-.173.777-.173 1.074 0l1.61.942c.296.173.296.454 0 .628l-1.61.942c-.297.174-.778.174-1.074 0zm3.757 2.197l-1.61-.942c-.296-.173-.296-.454 0-.628l1.61-.942c.296-.173.777-.173 1.074 0l1.61.942c.296.173.296.454 0 .628l-1.61.942c-.297.174-.777.174-1.074 0zm3.757 2.197l-1.61-.942c-.296-.173-.296-.454 0-.628l1.61-.942c.296-.173.777-.173 1.074 0l1.61.942c.296.173.296.454 0 .628l-1.61.942c-.297.174-.777.174-1.074 0zm3.758 2.198l-1.61-.942c-.296-.173-.296-.454 0-.628l1.61-.942c.296-.173.777-.173 1.074 0l1.61.942c.296.173.296.454 0 .628l-1.61.942c-.297.173-.778.173-1.074 0zm-15.03-4.395l-1.61-.942c-.296-.173-.296-.454 0-.628l1.61-.942c.296-.173.777-.173 1.074 0l1.61.942c.296.173.296.454 0 .628l-1.61.942c-.297.174-.777.174-1.074 0zm3.758 2.197l-1.61-.942c-.296-.173-.296-.454 0-.628l1.61-.942c.296-.173.777-.173 1.074 0l1.61.942c.296.173.296.454 0 .628l-1.61.942c-.297.174-.778.174-1.074 0zm3.757 2.198l-1.61-.942c-.296-.173-.296-.454 0-.628l1.61-.942c.296-.173.777-.173 1.074 0l1.61.942c.296.173.296.454 0 .628l-1.61.942c-.297.173-.777.173-1.074 0zm3.757 2.197l-1.61-.942c-.296-.173-.296-.454 0-.628l1.61-.942c.296-.173.777-.173 1.074 0l1.61.942c.296.173.296.454 0 .628l-1.61.942c-.297.173-.777.173-1.074 0zM9.948 18.81l-1.61-.942c-.296-.173-.296-.454 0-.628l1.61-.942c.296-.173.777-.173 1.074 0l1.61.942c.296.173.296.454 0 .628l-1.61.942c-.297.174-.778.174-1.074 0zm3.757 2.198l-1.61-.942c-.296-.173-.296-.454 0-.628l1.61-.942c.296-.173.777-.173 1.074 0l1.61.942c.296.173.296.454 0 .628l-1.61.942c-.297.173-.777.173-1.074 0zm3.758 2.197l-1.61-.942c-.296-.173-.296-.454 0-.628l1.61-.942c.296-.173.777-.173 1.074 0l1.61.942c.296.173.296.454 0 .628l-1.61.942c-.297.173-.778.173-1.074 0zm3.757 2.197l-1.61-.942c-.296-.173-.296-.454 0-.628l1.61-.942c.296-.173.777-.173 1.074 0l1.61.942c.296.173.296.454 0 .628l-1.61.942c-.297.173-.777.173-1.074 0zM6.191 21.008l-1.61-.942c-.296-.173-.296-.454 0-.628l1.61-.942c.296-.173.777-.173 1.074 0l1.61.942c.296.173.296.454 0 .628l-1.61.942c-.297.173-.778.173-1.074 0zm3.757 2.197l-1.61-.942c-.296-.173-.296-.454 0-.628l1.61-.942c.296-.173.777-.173 1.074 0l1.61.942c.296.173.296.454 0 .628l-1.61.942c-.297.173-.778.173-1.074 0zm3.757 2.197l-1.61-.942c-.296-.173-.296-.454 0-.628l1.61-.942c.296-.173.777-.173 1.074 0l1.61.942c.296.173.296.454 0 .628l-1.61.942c-.297.173-.777.173-1.074 0zm3.758 2.197l-1.61-.942c-.296-.173-.296-.454 0-.628l1.61-.942c.296-.173.777-.173 1.074 0l1.61.942c.296.173.296.454 0 .628l-1.61.942c-.297.173-.778.173-1.074 0z" fill="#F4900C"/><path fill="#D3790D" d="M15.72 16.354c-3.406-1.039-4.841-.515-4.618 2.165.058.693-.895 1.847-1.847 2.511-2.215 1.544-1.263 4.124 2.54 2.222 1.905-.952 4.682-.887 8.052.144 2.828.866 4.589 2.05 4.82 3.32 1.122-.367 1.732-.847 2.28-1.309-.233-.526-1.27-2.04-2.915-2.761-3.112-1.365-.106-3.331 2.222-3.81 2.107-.433.029-2.02-3.175-1.963-3.202.058-2.397.995-7.359-.519z"/><path opacity=".5" fill="#D3790D" d="M24.668 26.542c0 .456.058.468.058 1.387 0 1.789 2.194 1.472 2.194-1.501 0-.346.029-1.021.029-1.021l-2.281 1.135z"/><path fill="#FFAC33" d="M22.16 17.651c.46.262.461 1.863 0 2.125l-3.328 1.897c-.46.262-1.204.262-1.664 0l-3.329-1.897c-.46-.262-.46-1.863 0-2.125l3.329-.721c.46-.262 1.204-.262 1.664 0l3.328.721z"/><path fill="#FFD983" d="M22.16 17.651c.46.262.461.686 0 .948l-3.328 1.897c-.46.262-1.204.262-1.664 0l-3.329-1.897c-.46-.262-.46-.686 0-.948l3.329-1.897c.46-.262 1.204-.262 1.664 0l3.328 1.897z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f9c8.svg b/public/emoji/1f9c8.svg
new file mode 100644
index 0000000000000000000000000000000000000000..d7a5674c61158ace706d1416caf978d1251da02a
--- /dev/null
+++ b/public/emoji/1f9c8.svg
@@ -0,0 +1 @@
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#99AAB5" d="M35.145 22.16l-22.86 13.219c-.902.521-2.364.521-3.266 0L.855 30.658c-.451-.261-.676-.602-.676-.944v-1.843l23.535-12.32c.902-.521 2.364-.521 3.266 0l8.84 3.819c0 .558-.005 1.497 0 1.834.006.345-.219.692-.675.956z"/><path fill="#CCD6DD" d="M35.145 20.344l-22.86 13.219c-.902.521-2.364.521-3.266 0L.855 28.842c-.902-.521-.902-1.367 0-1.888l22.86-13.219c.902-.521 2.364-.521 3.266 0l8.164 4.721c.901.521.901 1.367 0 1.888z"/><path fill="#FFE8B6" d="M33 19.011v-8.083l-7-4.041-13.042 7.502v8.083l7 4.042z"/><path fill="#FFD983" d="M33 19.011v-8.083l-13.042 7.503-7-4.042v8.083l7 4.042z"/><path fill="#FFCC4D" d="M33 19.011v-8.083l-13.042 7.503v8.083z"/><path fill="#FFE8B6" d="M17.182 28.302V26.29l-7-4.041L3 26.325v2.012l7 4.041z"/><path fill="#FFD983" d="M17.182 28.302V26.29l-7 4.059L3 26.325v2.012l7 4.041z"/><path fill="#FFCC4D" d="M17.182 28.302V26.29l-7 4.059L10 32.378z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f9c9.svg b/public/emoji/1f9c9.svg
new file mode 100644
index 0000000000000000000000000000000000000000..16b0db823d27a90e50bce77d099b018abbafce8c
--- /dev/null
+++ b/public/emoji/1f9c9.svg
@@ -0,0 +1 @@
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#8A4B38" d="M26.875 14.6C25.1 12.778 21.55 12.778 18 12.778s-7.1 0-8.875 1.822c-2.663 2.733-5.325 9.72-3.55 15.186C7.35 35.252 15.132 35.814 18 35.814s10.65-.562 12.425-6.028c1.775-5.465-.887-12.453-3.55-15.186z"/><path fill="#A5503C" d="M25.58 14.412c-1.516-1.556-4.548-1.556-7.58-1.556s-6.064 0-7.58 1.556c-2.274 2.334-4.548 8.302-3.032 12.969C8.904 32.049 15.55 32.529 18 32.529s9.096-.48 10.611-5.148c1.516-4.668-.757-10.635-3.031-12.969z"/><path fill="#CCD6DD" d="M27.453 13.025c-.383-1.616-2.263-3.17-9.437-3.17h-.032c-7.175 0-9.055 1.554-9.437 3.17-.733 3.093 2.263 4.278 9.437 4.278h.032c7.174-.001 10.17-1.185 9.437-4.278z"/><path fill="#66757F" d="M25.622 12.355c.293.72-1.832 1.658-7.64 1.658s-7.938-.941-7.64-1.658c.323-.779 3.869-1.55 7.64-1.55 3.771 0 7.324.771 7.64 1.55z"/><path fill="#77B255" d="M10.993 13.144c1.015.473 3.226.869 6.99.869 3.767 0 5.976-.395 6.99-.869-.734-.635-2.76-1.27-6.99-1.27-4.23.001-6.256.635-6.99 1.27z"/><path fill="#FFF" d="M25 14.231c-.156-.424-.429-.393-.814-.276-1.779.537-4.36.641-6.211.652-1.851-.011-4.676-.162-6.211-.652-.384-.122-.701-.172-.862.276-.156.436.306.852.697.947 2.366.576 4.313.746 6.376.759 2.062-.013 3.765-.159 6.131-.735.392-.096 1.075-.476.894-.971z"/><path fill="#CCD6DD" d="M22.894 13.686l5.315-7.93 5.296-3.743s.141-.297-.78-1.01C31.804.29 31.388.587 31.388.587L26.84 4.204 20.348 13.9c.994-.051 1.839-.124 2.546-.214z"/><path fill="#99AAB5" d="M22.894 13.686l5.315-7.93 5.296-3.743-.067-.089-5.792 3.208-5.8 8.674c.431-.034.635-.06 1.048-.12z"/><circle fill="#99AAB5" cx="27.617" cy="4.945" r="1.668"/><path fill="#CCD6DD" d="M26.213 4.639c0-.697.565-1.262 1.262-1.262s1.262.565 1.262 1.262-.565 1.262-1.262 1.262-1.262-.565-1.262-1.262z"/><path fill="#E1E8ED" d="M11.459 10.865c1.604-.639 4.544-.802 5.569-.757 1.025.045.571.757-.015.757-1.693 0-3.787.401-5.228.772-.851.219-1.143-.447-.326-.772z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f9ca.svg b/public/emoji/1f9ca.svg
new file mode 100644
index 0000000000000000000000000000000000000000..569fe039b1f9cdaf79374cf94fbb1380972ff232
--- /dev/null
+++ b/public/emoji/1f9ca.svg
@@ -0,0 +1 @@
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#F5F8FA" d="M4.66 7.479c1.928.786 5.193 1.693 8.25 2.556 2.76.78 4.727 1.8 4.727 4.279 0 1.126-.136 4.519-.185 8.533.41-.104.791-.153 1.196-.117l-.001-.134c-.038-4.321-.179-8.044-.178-9.239.003-2.529 1.817-2.208 4.667-2.996 1.297-.359 7.232-1.686 9.209-2.103 1.658-.35 1.012-1.059.494-1.617-.034.107-.147.202-.383.273-1.51.453-10.716 2.236-12.941 2.859-1.569.439-3.591-.367-6.007-1.349-2.416-.981-8.53-2.416-9.738-2.869-.25-.094-.432-.222-.57-.362-.094.052-.19.103-.278.161.066-.003.12-.011.19-.012.477-.008-.195 1.427 1.548 2.137z"/><path fill="#ADD3E0" d="M1.009 10.872c.096 2.553.356 9.03.119 11.941-.157 1.923.24 3.361.996 4.403.204-.333.64-.608 1.36-.736 3.752-.669 9.878-2.385 12.344-3.136.654-.199 1.16-.378 1.625-.496.049-4.014.185-7.407.185-8.533 0-2.479-1.967-3.499-4.727-4.279-3.058-.864-6.323-1.771-8.251-2.557-1.743-.71-1.071-2.145-1.548-2.138-.069.001-.123.01-.19.012C1.293 6.432.919 8.508 1.009 10.872z"/><path fill="#C1E1EA" d="M33.208 27.8c.425.097.866.309 1.268.583.438-.907.341-2.082.275-3.431-.119-2.436.059-10.099.238-13.604.148-2.909-.822-4.267-2.167-4.907.037.071.038.137.019.2.517.558 1.163 1.267-.494 1.617-1.978.417-7.912 1.745-9.209 2.103-2.85.788-4.664.467-4.667 2.996-.001 1.195.14 4.919.178 9.239l.001.134c.47.042.98.194 1.638.526 1.367.691 10.883 4.079 12.92 4.544z"/><path fill="#D2ECF3" d="M13.509 8.424c2.416.981 4.437 1.788 6.007 1.349 2.225-.622 11.431-2.406 12.941-2.859.237-.071.35-.166.383-.273-.109-.117-.211-.228-.286-.327-.193-.076-.391-.142-.595-.194-2.554-.654-8.436-2.495-10.931-3.386-1.977-.706-4.487-.591-6.594-.119-2.34.524-7.081 1.706-9.446 2.02-.71.094-1.296.289-1.788.559.138.139.32.268.57.362 1.209.452 7.323 1.886 9.739 2.868z"/><path opacity=".5" fill="#CFE1EA" d="M18.648 22.73c-.405-.036-.786.014-1.196.117l-.006.493c-.048 4.716.194 8.644.127 9.281-.046.438-.315.814-.717 1.072.821.1 1.641.088 2.424-.042-.451-.385-.71-.998-.771-1.608-.064-.655.176-4.556.139-9.313z"/><path fill="#9BC2D4" d="M17.573 32.621c.067-.637-.176-4.564-.127-9.281l.006-.493c-.465.117-.971.297-1.625.496-2.466.751-8.592 2.467-12.344 3.136-.719.128-1.156.404-1.36.736.548.754 1.279 1.308 2.152 1.657 2.079.832 6.772 2.495 9.743 3.98.9.45 1.868.721 2.838.84.403-.257.671-.633.717-1.071zm14.505-2.62c1.347-.331 2.046-.888 2.398-1.618-.402-.274-.843-.486-1.268-.583-2.037-.465-11.554-3.853-12.922-4.544-.658-.332-1.168-.485-1.638-.526.037 4.758-.203 8.658-.138 9.313.061.611.32 1.223.771 1.608.503-.083.991-.207 1.451-.382 2.019-.773 8.197-2.496 11.346-3.268z"/><path fill="#C1E1EA" d="M7.571 18.69c-3.911 3.322-5.322 9.72-5.206 6.824.096-2.391-.017-9.487-.006-12.439.009-2.491.416-4.634 3.725-3.095 2.538 1.18 7.2 2.114 9.384 3.59 1.411.954-2.464.505-7.897 5.12z"/><path fill="#D2ECF3" d="M30.169 15.439c2.65 1.793 3.569 5.587 3.497 3.781-.06-1.491.006-4.939 0-6.779-.006-1.553.19-2.874-1.997-2.245-1.88.54-5.124.847-6.486 1.767-.88.594 1.408 1.056 4.986 3.476z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f9cd-1f3fb-200d-2640-fe0f.svg b/public/emoji/1f9cd-1f3fb-200d-2640-fe0f.svg
new file mode 100644
index 0000000000000000000000000000000000000000..d5981e3409e36e653ad2fb35499419437f26fbef
--- /dev/null
+++ b/public/emoji/1f9cd-1f3fb-200d-2640-fe0f.svg
@@ -0,0 +1 @@
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#F7DECE" d="M13.449 22.569c-.236.161-.512-.02-.646-.131-.379-.313-.763-1.144-.611-2.142.154-1.008.404-2.185.878-4.137.055-.228-.274-2.776.007-4.528.076-.473.958-1.066 1.495-1.057.536.008.263.944.274 1.101.12 1.682-.143 4.279-.193 4.632-.277 1.956-1.239 2.835-.981 4.13.135.679.154 1.293-.242 1.345.004.366.105.728.019.787zm9.102 0c.236.161.512-.02.646-.131.379-.313.763-1.144.611-2.142-.154-1.008-.404-2.185-.878-4.137-.055-.228.274-2.776-.007-4.528-.076-.473-.958-1.066-1.495-1.057-.536.008-.263.944-.274 1.101-.12 1.682.143 4.279.193 4.632.277 1.956 1.239 2.835.981 4.13-.135.679-.154 1.293.242 1.345-.004.366-.105.728-.019.787z"/><path fill="#4289C1" d="M21.717 25.17c0-1.012.084-3.628-.241-5.198-.325-1.57-6.687-1.605-7.012 0-.325 1.605-.075 4.081-.075 5.158 0 2.141 1.159 7.747.862 9.903-.066.479 2.492.937 2.449-.125-.078-1.969-.104-5.193-.04-6.18.035-.547.171-4.771.265-6.105.011-.018.295-.018.306 0 .094 1.333.387 5.558.423 6.105.064.987.137 4.212.059 6.18-.042 1.062 2.525.604 2.459.125-.296-2.156.545-9.514.545-9.863z"/><path fill="#292F33" d="M19.744 5.553c.814.198 1.151.895 1.116 1.616-.024.488.384.93.384.93s-2.07.419-2.481-1.409c-.371-1.641.981-1.137.981-1.137z"/><path fill="#9268CA" d="M22.131 9.371c-.665-.794-3.019-1.356-3.019-1.356h-2.225s-2.355.561-3.019 1.356c-.807.964-.982 2.71-.982 2.71l1.608.298s.461 1.862.461 3.3c0 1.147-.422 3.328-.593 4.163-.043.211-.035.227 0 .279s.233.057.233.057h6.814s.128.022.198-.036.051-.084.002-.286c-.203-.833-.722-3.073-.722-4.176 0-1.371.65-3.301.65-3.301l1.58-.298c-.004-.001-.179-1.746-.986-2.71z"/><path fill="#F7DECE" d="M19.36 4.361l-2.688.019v3.981c0 .963 2.688.998 2.688 0v-4z"/><path fill="#EEC2AD" d="M19.36 3.851l-2.688.019v3.901s1.17 1.151 2.688.035V3.851z"/><path fill="#292F33" d="M15.11 3.437c0-1.753 1.335-2.651 2.983-2.651 1.647 0 2.983.898 2.983 2.651s-1.335 3.174-2.983 3.174c-1.648 0-2.983-1.421-2.983-3.174z"/><path fill="#F7DECE" d="M20.702 2.283h-5.21v2.738c0 1.337 1.447 2.993 2.605 2.993s2.605-1.516 2.605-2.912V2.283z"/><path fill="#292F33" d="M18.199 2.233s-.967 1.739-2.707 1.739V2.233h2.707z"/><path fill="#292F33" d="M17.937 2.233s1.033 1.739 2.772 1.739V2.233h-2.772z"/><circle fill="#662113" cx="17.049" cy="4.777" r=".339"/><circle fill="#662113" cx="19.165" cy="4.777" r=".339"/><path fill="#DF1F32" d="M18.112 7.03c-.404 0-.616-.2-.639-.223-.067-.067-.067-.176 0-.243s.174-.067.242-.002c.009.008.139.124.397.124.261 0 .391-.119.397-.124.069-.064.177-.062.242.005.065.068.065.174-.001.24-.022.023-.233.223-.638.223"/><path fill="#C1694F" d="M18.31 6.138h-.395c-.109 0-.198-.089-.198-.198 0-.109.089-.198.198-.198h.395c.109 0 .198.089.198.198-.001.109-.09.198-.198.198z"/><path fill="#292F33" d="M14.173 35.898c-.558-.051-.192-.684.062-.897.282-.238.734-.441.961-.852.251-.455 1.465-.395 1.721-.023.457.664.66.179.792.488.212.494.05 1.284.05 1.284h-3.586zm8.029 0c.558-.051.192-.684-.062-.897-.282-.238-.734-.441-.961-.852-.251-.455-1.465-.395-1.721-.023-.457.664-.66.179-.792.488-.212.494-.05 1.284-.05 1.284h3.586z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f9cd-1f3fb-200d-2642-fe0f.svg b/public/emoji/1f9cd-1f3fb-200d-2642-fe0f.svg
new file mode 100644
index 0000000000000000000000000000000000000000..8fbd6c0348696312af4b5d1b46567e5d852bfc58
--- /dev/null
+++ b/public/emoji/1f9cd-1f3fb-200d-2642-fe0f.svg
@@ -0,0 +1 @@
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#F7DECE" d="M22.933 22.368c.236.161.512-.02.646-.131.379-.313.763-1.144.611-2.142-.154-1.008-.11-2.185-.584-4.137-.055-.228.274-2.776-.007-4.528-.076-.473-1.251-1.066-1.789-1.057-.536.008-.263.944-.274 1.101-.12 1.682.143 4.279.193 4.632.277 1.956 1.239 2.835.981 4.13-.135.679-.154 1.293.242 1.345-.004.366-.105.728-.019.787zm-9.866-.192c-.236.161-.512-.02-.646-.131-.379-.313-.763-1.144-.611-2.142.154-1.008.11-2.185.584-4.137.055-.228-.274-2.776.007-4.528.076-.473 1.251-1.066 1.789-1.057.536.008.263.944.274 1.101.12 1.682-.143 4.279-.193 4.632-.277 1.956-1.239 2.835-.981 4.13.135.679.154 1.293-.242 1.345.004.366.105.728.019.787z"/><path fill="#4289C1" d="M21.702 26.733c.021-3.063.014-6.5.014-6.5h-7.465s.035 3.747.123 6.46c.07 2.14.396 6.193.1 8.349-.066.479 2.886.937 2.844-.125-.078-1.969.264-6.322.328-7.309.035-.547.25-2.326.344-3.659.011-.018.295-.018.306 0 .094 1.333.308 3.112.344 3.659.064.987.406 5.34.328 7.309-.042 1.062 2.91.604 2.844.125-.298-2.157-.113-7.96-.11-8.309z"/><path fill="#77B255" d="M22.822 9.472c-.778-.849-3.536-1.449-3.536-1.449h-2.605s-2.757.6-3.536 1.449c-.945 1.031-1.15 2.895-1.15 2.895l1.882.318s.283.9.283 2.436-.177 5.896-.177 5.896h8.032s-.209-4.43-.209-5.895.315-2.437.315-2.437l1.85-.318c.001 0-.205-1.865-1.149-2.895z"/><path fill="#F7DECE" d="M19.344 4.369l-2.688.019v3.981c0 .963 2.688.998 2.688 0v-4z"/><path fill="#EEC2AD" d="M19.344 3.86l-2.688.019V7.78s1.17 1.151 2.688.035V3.86z"/><path fill="#292F33" d="M18.402.716c-.613-.078-1.567.093-2.032.605-.651-.233-1.415.479-1.415 1.453 0 1.116.164 2.206.857 2.64.52.723 1.571 1.046 2.53 1.046 1.582 0 2.703-.756 2.703-3.093 0-1.883-.992-2.442-2.643-2.651z"/><path fill="#F7DECE" d="M20.687 2.292h-5.21V5.03c0 1.337 1.166 2.993 2.605 2.993s2.605-1.516 2.605-2.912V2.292z"/><path fill="#292F33" d="M17.146 1.588l-1.67.704v2.084c0-.799.545-.846.871-1.358.012.322.658.628 1.636.628.744 0 2.703-1.291 2.703.73V2.007l-3.54-.419z"/><circle fill="#662113" cx="17.033" cy="4.786" r=".339"/><circle fill="#662113" cx="19.15" cy="4.786" r=".339"/><path fill="#C1694F" d="M18.573 6.984h-.953c-.102 0-.186-.084-.186-.186s.084-.186.186-.186h.953c.102 0 .186.084.186.186s-.084.186-.186.186zm-.279-.838h-.395c-.109 0-.198-.089-.198-.198 0-.109.089-.198.198-.198h.395c.109 0 .198.089.198.198 0 .109-.089.198-.198.198z"/><path fill="#292F33" d="M13.789 35.907c-.558-.051-.192-.684.062-.897.282-.238.734-.441.961-.852.251-.455 1.465-.395 1.721-.023.457.664.66.179.792.488.212.494.05 1.284.05 1.284h-3.586zm8.666 0c.558-.051.192-.684-.062-.897-.282-.238-.734-.441-.961-.852-.251-.455-1.465-.395-1.721-.023-.457.664-.66.179-.792.488-.212.494-.05 1.284-.05 1.284h3.586z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f9cd-1f3fb.svg b/public/emoji/1f9cd-1f3fb.svg
new file mode 100644
index 0000000000000000000000000000000000000000..8fbd6c0348696312af4b5d1b46567e5d852bfc58
--- /dev/null
+++ b/public/emoji/1f9cd-1f3fb.svg
@@ -0,0 +1 @@
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#F7DECE" d="M22.933 22.368c.236.161.512-.02.646-.131.379-.313.763-1.144.611-2.142-.154-1.008-.11-2.185-.584-4.137-.055-.228.274-2.776-.007-4.528-.076-.473-1.251-1.066-1.789-1.057-.536.008-.263.944-.274 1.101-.12 1.682.143 4.279.193 4.632.277 1.956 1.239 2.835.981 4.13-.135.679-.154 1.293.242 1.345-.004.366-.105.728-.019.787zm-9.866-.192c-.236.161-.512-.02-.646-.131-.379-.313-.763-1.144-.611-2.142.154-1.008.11-2.185.584-4.137.055-.228-.274-2.776.007-4.528.076-.473 1.251-1.066 1.789-1.057.536.008.263.944.274 1.101.12 1.682-.143 4.279-.193 4.632-.277 1.956-1.239 2.835-.981 4.13.135.679.154 1.293-.242 1.345.004.366.105.728.019.787z"/><path fill="#4289C1" d="M21.702 26.733c.021-3.063.014-6.5.014-6.5h-7.465s.035 3.747.123 6.46c.07 2.14.396 6.193.1 8.349-.066.479 2.886.937 2.844-.125-.078-1.969.264-6.322.328-7.309.035-.547.25-2.326.344-3.659.011-.018.295-.018.306 0 .094 1.333.308 3.112.344 3.659.064.987.406 5.34.328 7.309-.042 1.062 2.91.604 2.844.125-.298-2.157-.113-7.96-.11-8.309z"/><path fill="#77B255" d="M22.822 9.472c-.778-.849-3.536-1.449-3.536-1.449h-2.605s-2.757.6-3.536 1.449c-.945 1.031-1.15 2.895-1.15 2.895l1.882.318s.283.9.283 2.436-.177 5.896-.177 5.896h8.032s-.209-4.43-.209-5.895.315-2.437.315-2.437l1.85-.318c.001 0-.205-1.865-1.149-2.895z"/><path fill="#F7DECE" d="M19.344 4.369l-2.688.019v3.981c0 .963 2.688.998 2.688 0v-4z"/><path fill="#EEC2AD" d="M19.344 3.86l-2.688.019V7.78s1.17 1.151 2.688.035V3.86z"/><path fill="#292F33" d="M18.402.716c-.613-.078-1.567.093-2.032.605-.651-.233-1.415.479-1.415 1.453 0 1.116.164 2.206.857 2.64.52.723 1.571 1.046 2.53 1.046 1.582 0 2.703-.756 2.703-3.093 0-1.883-.992-2.442-2.643-2.651z"/><path fill="#F7DECE" d="M20.687 2.292h-5.21V5.03c0 1.337 1.166 2.993 2.605 2.993s2.605-1.516 2.605-2.912V2.292z"/><path fill="#292F33" d="M17.146 1.588l-1.67.704v2.084c0-.799.545-.846.871-1.358.012.322.658.628 1.636.628.744 0 2.703-1.291 2.703.73V2.007l-3.54-.419z"/><circle fill="#662113" cx="17.033" cy="4.786" r=".339"/><circle fill="#662113" cx="19.15" cy="4.786" r=".339"/><path fill="#C1694F" d="M18.573 6.984h-.953c-.102 0-.186-.084-.186-.186s.084-.186.186-.186h.953c.102 0 .186.084.186.186s-.084.186-.186.186zm-.279-.838h-.395c-.109 0-.198-.089-.198-.198 0-.109.089-.198.198-.198h.395c.109 0 .198.089.198.198 0 .109-.089.198-.198.198z"/><path fill="#292F33" d="M13.789 35.907c-.558-.051-.192-.684.062-.897.282-.238.734-.441.961-.852.251-.455 1.465-.395 1.721-.023.457.664.66.179.792.488.212.494.05 1.284.05 1.284h-3.586zm8.666 0c.558-.051.192-.684-.062-.897-.282-.238-.734-.441-.961-.852-.251-.455-1.465-.395-1.721-.023-.457.664-.66.179-.792.488-.212.494-.05 1.284-.05 1.284h3.586z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f9cd-1f3fc-200d-2640-fe0f.svg b/public/emoji/1f9cd-1f3fc-200d-2640-fe0f.svg
new file mode 100644
index 0000000000000000000000000000000000000000..7f81ff85b487effd11688acb2671de2f9b477872
--- /dev/null
+++ b/public/emoji/1f9cd-1f3fc-200d-2640-fe0f.svg
@@ -0,0 +1 @@
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#F3D2A2" d="M13.449 22.569c-.236.161-.512-.02-.646-.131-.379-.313-.763-1.144-.611-2.142.154-1.008.404-2.185.878-4.137.055-.228-.274-2.776.007-4.528.076-.473.958-1.066 1.495-1.057.536.008.263.944.274 1.101.12 1.682-.143 4.279-.193 4.632-.277 1.956-1.239 2.835-.981 4.13.135.679.154 1.293-.242 1.345.004.366.105.728.019.787zm9.102 0c.236.161.512-.02.646-.131.379-.313.763-1.144.611-2.142-.154-1.008-.404-2.185-.878-4.137-.055-.228.274-2.776-.007-4.528-.076-.473-.958-1.066-1.495-1.057-.536.008-.263.944-.274 1.101-.12 1.682.143 4.279.193 4.632.277 1.956 1.239 2.835.981 4.13-.135.679-.154 1.293.242 1.345-.004.366-.105.728-.019.787z"/><path fill="#4289C1" d="M21.717 25.17c0-1.012.084-3.628-.241-5.198-.325-1.57-6.687-1.605-7.012 0-.325 1.605-.075 4.081-.075 5.158 0 2.141 1.159 7.747.862 9.903-.066.479 2.492.937 2.449-.125-.078-1.969-.104-5.193-.04-6.18.035-.547.171-4.771.265-6.105.011-.018.295-.018.306 0 .094 1.333.387 5.558.423 6.105.064.987.137 4.212.059 6.18-.042 1.062 2.525.604 2.459.125-.296-2.156.545-9.514.545-9.863z"/><path fill="#FFE51E" d="M19.744 5.553c.814.198 1.151.895 1.116 1.616-.024.488.384.93.384.93s-2.07.419-2.481-1.409c-.371-1.641.981-1.137.981-1.137z"/><path fill="#9268CA" d="M22.131 9.371c-.665-.794-3.019-1.356-3.019-1.356h-2.225s-2.355.561-3.019 1.356c-.807.964-.982 2.71-.982 2.71l1.608.298s.461 1.862.461 3.3c0 1.147-.422 3.328-.593 4.163-.043.211-.035.227 0 .279s.233.057.233.057h6.814s.128.022.198-.036.051-.084.002-.286c-.203-.833-.722-3.073-.722-4.176 0-1.371.65-3.301.65-3.301l1.58-.298c-.004-.001-.179-1.746-.986-2.71z"/><path fill="#F3D2A2" d="M19.36 4.361l-2.688.019v3.981c0 .963 2.688.998 2.688 0v-4z"/><path fill="#E2C196" d="M19.36 3.851l-2.688.019v3.901s1.17 1.151 2.688.035V3.851z"/><path fill="#FFE51E" d="M15.11 3.437c0-1.753 1.335-2.651 2.983-2.651 1.647 0 2.983.898 2.983 2.651s-1.335 3.174-2.983 3.174c-1.648 0-2.983-1.421-2.983-3.174z"/><path fill="#F3D2A2" d="M20.702 2.283h-5.21v2.738c0 1.337 1.447 2.993 2.605 2.993s2.605-1.516 2.605-2.912V2.283z"/><path fill="#FFE51E" d="M18.199 2.233s-.967 1.739-2.707 1.739V2.233h2.707z"/><path fill="#FFE51E" d="M17.937 2.233s1.033 1.739 2.772 1.739V2.233h-2.772z"/><circle fill="#662113" cx="17.049" cy="4.777" r=".339"/><circle fill="#662113" cx="19.165" cy="4.777" r=".339"/><path fill="#DF1F32" d="M18.112 7.03c-.404 0-.616-.2-.639-.223-.067-.067-.067-.176 0-.243s.174-.067.242-.002c.009.008.139.124.397.124.261 0 .391-.119.397-.124.069-.064.177-.062.242.005.065.068.065.174-.001.24-.022.023-.233.223-.638.223"/><path fill="#C1694F" d="M18.31 6.138h-.395c-.109 0-.198-.089-.198-.198 0-.109.089-.198.198-.198h.395c.109 0 .198.089.198.198-.001.109-.09.198-.198.198z"/><path fill="#292F33" d="M14.173 35.898c-.558-.051-.192-.684.062-.897.282-.238.734-.441.961-.852.251-.455 1.465-.395 1.721-.023.457.664.66.179.792.488.212.494.05 1.284.05 1.284h-3.586zm8.029 0c.558-.051.192-.684-.062-.897-.282-.238-.734-.441-.961-.852-.251-.455-1.465-.395-1.721-.023-.457.664-.66.179-.792.488-.212.494-.05 1.284-.05 1.284h3.586z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f9cd-1f3fc-200d-2642-fe0f.svg b/public/emoji/1f9cd-1f3fc-200d-2642-fe0f.svg
new file mode 100644
index 0000000000000000000000000000000000000000..0ea6dafdc35fb16a2311a6287601af8824afa585
--- /dev/null
+++ b/public/emoji/1f9cd-1f3fc-200d-2642-fe0f.svg
@@ -0,0 +1 @@
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#F3D2A2" d="M22.933 22.368c.236.161.512-.02.646-.131.379-.313.763-1.144.611-2.142-.154-1.008-.11-2.185-.584-4.137-.055-.228.274-2.776-.007-4.528-.076-.473-1.251-1.066-1.789-1.057-.536.008-.263.944-.274 1.101-.12 1.682.143 4.279.193 4.632.277 1.956 1.239 2.835.981 4.13-.135.679-.154 1.293.242 1.345-.004.366-.105.728-.019.787zm-9.866-.192c-.236.161-.512-.02-.646-.131-.379-.313-.763-1.144-.611-2.142.154-1.008.11-2.185.584-4.137.055-.228-.274-2.776.007-4.528.076-.473 1.251-1.066 1.789-1.057.536.008.263.944.274 1.101.12 1.682-.143 4.279-.193 4.632-.277 1.956-1.239 2.835-.981 4.13.135.679.154 1.293-.242 1.345.004.366.105.728.019.787z"/><path fill="#4289C1" d="M21.702 26.733c.021-3.063.014-6.5.014-6.5h-7.465s.035 3.747.123 6.46c.07 2.14.396 6.193.1 8.349-.066.479 2.886.937 2.844-.125-.078-1.969.264-6.322.328-7.309.035-.547.25-2.326.344-3.659.011-.018.295-.018.306 0 .094 1.333.308 3.112.344 3.659.064.987.406 5.34.328 7.309-.042 1.062 2.91.604 2.844.125-.298-2.157-.113-7.96-.11-8.309z"/><path fill="#77B255" d="M22.822 9.472c-.778-.849-3.536-1.449-3.536-1.449h-2.605s-2.757.6-3.536 1.449c-.945 1.031-1.15 2.895-1.15 2.895l1.882.318s.283.9.283 2.436-.177 5.896-.177 5.896h8.032s-.209-4.43-.209-5.895.315-2.437.315-2.437l1.85-.318c.001 0-.205-1.865-1.149-2.895z"/><path fill="#F3D2A2" d="M19.344 4.369l-2.688.019v3.981c0 .963 2.688.998 2.688 0v-4z"/><path fill="#E2C196" d="M19.344 3.86l-2.688.019V7.78s1.17 1.151 2.688.035V3.86z"/><path fill="#FFE51E" d="M18.402.716c-.613-.078-1.567.093-2.032.605-.651-.233-1.415.479-1.415 1.453 0 1.116.164 2.206.857 2.64.52.723 1.571 1.046 2.53 1.046 1.582 0 2.703-.756 2.703-3.093 0-1.883-.992-2.442-2.643-2.651z"/><path fill="#F3D2A2" d="M20.687 2.292h-5.21V5.03c0 1.337 1.166 2.993 2.605 2.993s2.605-1.516 2.605-2.912V2.292z"/><path fill="#FFE51E" d="M17.146 1.588l-1.67.704v2.084c0-.799.545-.846.871-1.358.012.322.658.628 1.636.628.744 0 2.703-1.291 2.703.73V2.007l-3.54-.419z"/><circle fill="#662113" cx="17.033" cy="4.786" r=".339"/><circle fill="#662113" cx="19.15" cy="4.786" r=".339"/><path fill="#C1694F" d="M18.573 6.984h-.953c-.102 0-.186-.084-.186-.186s.084-.186.186-.186h.953c.102 0 .186.084.186.186s-.084.186-.186.186zm-.279-.838h-.395c-.109 0-.198-.089-.198-.198 0-.109.089-.198.198-.198h.395c.109 0 .198.089.198.198 0 .109-.089.198-.198.198z"/><path fill="#292F33" d="M13.789 35.907c-.558-.051-.192-.684.062-.897.282-.238.734-.441.961-.852.251-.455 1.465-.395 1.721-.023.457.664.66.179.792.488.212.494.05 1.284.05 1.284h-3.586zm8.666 0c.558-.051.192-.684-.062-.897-.282-.238-.734-.441-.961-.852-.251-.455-1.465-.395-1.721-.023-.457.664-.66.179-.792.488-.212.494-.05 1.284-.05 1.284h3.586z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f9cd-1f3fc.svg b/public/emoji/1f9cd-1f3fc.svg
new file mode 100644
index 0000000000000000000000000000000000000000..0ea6dafdc35fb16a2311a6287601af8824afa585
--- /dev/null
+++ b/public/emoji/1f9cd-1f3fc.svg
@@ -0,0 +1 @@
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#F3D2A2" d="M22.933 22.368c.236.161.512-.02.646-.131.379-.313.763-1.144.611-2.142-.154-1.008-.11-2.185-.584-4.137-.055-.228.274-2.776-.007-4.528-.076-.473-1.251-1.066-1.789-1.057-.536.008-.263.944-.274 1.101-.12 1.682.143 4.279.193 4.632.277 1.956 1.239 2.835.981 4.13-.135.679-.154 1.293.242 1.345-.004.366-.105.728-.019.787zm-9.866-.192c-.236.161-.512-.02-.646-.131-.379-.313-.763-1.144-.611-2.142.154-1.008.11-2.185.584-4.137.055-.228-.274-2.776.007-4.528.076-.473 1.251-1.066 1.789-1.057.536.008.263.944.274 1.101.12 1.682-.143 4.279-.193 4.632-.277 1.956-1.239 2.835-.981 4.13.135.679.154 1.293-.242 1.345.004.366.105.728.019.787z"/><path fill="#4289C1" d="M21.702 26.733c.021-3.063.014-6.5.014-6.5h-7.465s.035 3.747.123 6.46c.07 2.14.396 6.193.1 8.349-.066.479 2.886.937 2.844-.125-.078-1.969.264-6.322.328-7.309.035-.547.25-2.326.344-3.659.011-.018.295-.018.306 0 .094 1.333.308 3.112.344 3.659.064.987.406 5.34.328 7.309-.042 1.062 2.91.604 2.844.125-.298-2.157-.113-7.96-.11-8.309z"/><path fill="#77B255" d="M22.822 9.472c-.778-.849-3.536-1.449-3.536-1.449h-2.605s-2.757.6-3.536 1.449c-.945 1.031-1.15 2.895-1.15 2.895l1.882.318s.283.9.283 2.436-.177 5.896-.177 5.896h8.032s-.209-4.43-.209-5.895.315-2.437.315-2.437l1.85-.318c.001 0-.205-1.865-1.149-2.895z"/><path fill="#F3D2A2" d="M19.344 4.369l-2.688.019v3.981c0 .963 2.688.998 2.688 0v-4z"/><path fill="#E2C196" d="M19.344 3.86l-2.688.019V7.78s1.17 1.151 2.688.035V3.86z"/><path fill="#FFE51E" d="M18.402.716c-.613-.078-1.567.093-2.032.605-.651-.233-1.415.479-1.415 1.453 0 1.116.164 2.206.857 2.64.52.723 1.571 1.046 2.53 1.046 1.582 0 2.703-.756 2.703-3.093 0-1.883-.992-2.442-2.643-2.651z"/><path fill="#F3D2A2" d="M20.687 2.292h-5.21V5.03c0 1.337 1.166 2.993 2.605 2.993s2.605-1.516 2.605-2.912V2.292z"/><path fill="#FFE51E" d="M17.146 1.588l-1.67.704v2.084c0-.799.545-.846.871-1.358.012.322.658.628 1.636.628.744 0 2.703-1.291 2.703.73V2.007l-3.54-.419z"/><circle fill="#662113" cx="17.033" cy="4.786" r=".339"/><circle fill="#662113" cx="19.15" cy="4.786" r=".339"/><path fill="#C1694F" d="M18.573 6.984h-.953c-.102 0-.186-.084-.186-.186s.084-.186.186-.186h.953c.102 0 .186.084.186.186s-.084.186-.186.186zm-.279-.838h-.395c-.109 0-.198-.089-.198-.198 0-.109.089-.198.198-.198h.395c.109 0 .198.089.198.198 0 .109-.089.198-.198.198z"/><path fill="#292F33" d="M13.789 35.907c-.558-.051-.192-.684.062-.897.282-.238.734-.441.961-.852.251-.455 1.465-.395 1.721-.023.457.664.66.179.792.488.212.494.05 1.284.05 1.284h-3.586zm8.666 0c.558-.051.192-.684-.062-.897-.282-.238-.734-.441-.961-.852-.251-.455-1.465-.395-1.721-.023-.457.664-.66.179-.792.488-.212.494-.05 1.284-.05 1.284h3.586z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f9cd-1f3fd-200d-2640-fe0f.svg b/public/emoji/1f9cd-1f3fd-200d-2640-fe0f.svg
new file mode 100644
index 0000000000000000000000000000000000000000..48329af5fc0311a517e8c90934a14afad9cd6f05
--- /dev/null
+++ b/public/emoji/1f9cd-1f3fd-200d-2640-fe0f.svg
@@ -0,0 +1 @@
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#D4AB88" d="M13.449 22.569c-.236.161-.512-.02-.646-.131-.379-.313-.763-1.144-.611-2.142.154-1.008.404-2.185.878-4.137.055-.228-.274-2.776.007-4.528.076-.473.958-1.066 1.495-1.057.536.008.263.944.274 1.101.12 1.682-.143 4.279-.193 4.632-.277 1.956-1.239 2.835-.981 4.13.135.679.154 1.293-.242 1.345.004.366.105.728.019.787zm9.102 0c.236.161.512-.02.646-.131.379-.313.763-1.144.611-2.142-.154-1.008-.404-2.185-.878-4.137-.055-.228.274-2.776-.007-4.528-.076-.473-.958-1.066-1.495-1.057-.536.008-.263.944-.274 1.101-.12 1.682.143 4.279.193 4.632.277 1.956 1.239 2.835.981 4.13-.135.679-.154 1.293.242 1.345-.004.366-.105.728-.019.787z"/><path fill="#4289C1" d="M21.717 25.17c0-1.012.084-3.628-.241-5.198-.325-1.57-6.687-1.605-7.012 0-.325 1.605-.075 4.081-.075 5.158 0 2.141 1.159 7.747.862 9.903-.066.479 2.492.937 2.449-.125-.078-1.969-.104-5.193-.04-6.18.035-.547.171-4.771.265-6.105.011-.018.295-.018.306 0 .094 1.333.387 5.558.423 6.105.064.987.137 4.212.059 6.18-.042 1.062 2.525.604 2.459.125-.296-2.156.545-9.514.545-9.863z"/><path fill="#963B22" d="M19.744 5.553c.814.198 1.151.895 1.116 1.616-.024.488.384.93.384.93s-2.07.419-2.481-1.409c-.371-1.641.981-1.137.981-1.137z"/><path fill="#9268CA" d="M22.131 9.371c-.665-.794-3.019-1.356-3.019-1.356h-2.225s-2.355.561-3.019 1.356c-.807.964-.982 2.71-.982 2.71l1.608.298s.461 1.862.461 3.3c0 1.147-.422 3.328-.593 4.163-.043.211-.035.227 0 .279s.233.057.233.057h6.814s.128.022.198-.036.051-.084.002-.286c-.203-.833-.722-3.073-.722-4.176 0-1.371.65-3.301.65-3.301l1.58-.298c-.004-.001-.179-1.746-.986-2.71z"/><path fill="#D4AB88" d="M19.36 4.361l-2.688.019v3.981c0 .963 2.688.998 2.688 0v-4z"/><path fill="#CC9B7A" d="M19.36 3.851l-2.688.019v3.901s1.17 1.151 2.688.035V3.851z"/><path fill="#963B22" d="M15.11 3.437c0-1.753 1.335-2.651 2.983-2.651 1.647 0 2.983.898 2.983 2.651s-1.335 3.174-2.983 3.174c-1.648 0-2.983-1.421-2.983-3.174z"/><path fill="#D4AB88" d="M20.702 2.283h-5.21v2.738c0 1.337 1.447 2.993 2.605 2.993s2.605-1.516 2.605-2.912V2.283z"/><path fill="#963B22" d="M18.199 2.233s-.967 1.739-2.707 1.739V2.233h2.707z"/><path fill="#963B22" d="M17.937 2.233s1.033 1.739 2.772 1.739V2.233h-2.772z"/><circle fill="#662113" cx="17.049" cy="4.777" r=".339"/><circle fill="#662113" cx="19.165" cy="4.777" r=".339"/><path fill="#DF1F32" d="M18.112 7.03c-.404 0-.616-.2-.639-.223-.067-.067-.067-.176 0-.243s.174-.067.242-.002c.009.008.139.124.397.124.261 0 .391-.119.397-.124.069-.064.177-.062.242.005.065.068.065.174-.001.24-.022.023-.233.223-.638.223"/><path fill="#C1694F" d="M18.31 6.138h-.395c-.109 0-.198-.089-.198-.198 0-.109.089-.198.198-.198h.395c.109 0 .198.089.198.198-.001.109-.09.198-.198.198z"/><path fill="#292F33" d="M14.173 35.898c-.558-.051-.192-.684.062-.897.282-.238.734-.441.961-.852.251-.455 1.465-.395 1.721-.023.457.664.66.179.792.488.212.494.05 1.284.05 1.284h-3.586zm8.029 0c.558-.051.192-.684-.062-.897-.282-.238-.734-.441-.961-.852-.251-.455-1.465-.395-1.721-.023-.457.664-.66.179-.792.488-.212.494-.05 1.284-.05 1.284h3.586z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f9cd-1f3fd-200d-2642-fe0f.svg b/public/emoji/1f9cd-1f3fd-200d-2642-fe0f.svg
new file mode 100644
index 0000000000000000000000000000000000000000..3197184b7fb12a1dd198ea999335a8c5d14a98e7
--- /dev/null
+++ b/public/emoji/1f9cd-1f3fd-200d-2642-fe0f.svg
@@ -0,0 +1 @@
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#D4AB88" d="M22.933 22.368c.236.161.512-.02.646-.131.379-.313.763-1.144.611-2.142-.154-1.008-.11-2.185-.584-4.137-.055-.228.274-2.776-.007-4.528-.076-.473-1.251-1.066-1.789-1.057-.536.008-.263.944-.274 1.101-.12 1.682.143 4.279.193 4.632.277 1.956 1.239 2.835.981 4.13-.135.679-.154 1.293.242 1.345-.004.366-.105.728-.019.787zm-9.866-.192c-.236.161-.512-.02-.646-.131-.379-.313-.763-1.144-.611-2.142.154-1.008.11-2.185.584-4.137.055-.228-.274-2.776.007-4.528.076-.473 1.251-1.066 1.789-1.057.536.008.263.944.274 1.101.12 1.682-.143 4.279-.193 4.632-.277 1.956-1.239 2.835-.981 4.13.135.679.154 1.293-.242 1.345.004.366.105.728.019.787z"/><path fill="#4289C1" d="M21.702 26.733c.021-3.063.014-6.5.014-6.5h-7.465s.035 3.747.123 6.46c.07 2.14.396 6.193.1 8.349-.066.479 2.886.937 2.844-.125-.078-1.969.264-6.322.328-7.309.035-.547.25-2.326.344-3.659.011-.018.295-.018.306 0 .094 1.333.308 3.112.344 3.659.064.987.406 5.34.328 7.309-.042 1.062 2.91.604 2.844.125-.298-2.157-.113-7.96-.11-8.309z"/><path fill="#77B255" d="M22.822 9.472c-.778-.849-3.536-1.449-3.536-1.449h-2.605s-2.757.6-3.536 1.449c-.945 1.031-1.15 2.895-1.15 2.895l1.882.318s.283.9.283 2.436-.177 5.896-.177 5.896h8.032s-.209-4.43-.209-5.895.315-2.437.315-2.437l1.85-.318c.001 0-.205-1.865-1.149-2.895z"/><path fill="#D4AB88" d="M19.344 4.369l-2.688.019v3.981c0 .963 2.688.998 2.688 0v-4z"/><path fill="#CC9B7A" d="M19.344 3.86l-2.688.019V7.78s1.17 1.151 2.688.035V3.86z"/><path fill="#963B22" d="M18.402.716c-.613-.078-1.567.093-2.032.605-.651-.233-1.415.479-1.415 1.453 0 1.116.164 2.206.857 2.64.52.723 1.571 1.046 2.53 1.046 1.582 0 2.703-.756 2.703-3.093 0-1.883-.992-2.442-2.643-2.651z"/><path fill="#D4AB88" d="M20.687 2.292h-5.21V5.03c0 1.337 1.166 2.993 2.605 2.993s2.605-1.516 2.605-2.912V2.292z"/><path fill="#963B22" d="M17.146 1.588l-1.67.704v2.084c0-.799.545-.846.871-1.358.012.322.658.628 1.636.628.744 0 2.703-1.291 2.703.73V2.007l-3.54-.419z"/><circle fill="#662113" cx="17.033" cy="4.786" r=".339"/><circle fill="#662113" cx="19.15" cy="4.786" r=".339"/><path fill="#C1694F" d="M18.573 6.984h-.953c-.102 0-.186-.084-.186-.186s.084-.186.186-.186h.953c.102 0 .186.084.186.186s-.084.186-.186.186zm-.279-.838h-.395c-.109 0-.198-.089-.198-.198 0-.109.089-.198.198-.198h.395c.109 0 .198.089.198.198 0 .109-.089.198-.198.198z"/><path fill="#292F33" d="M13.789 35.907c-.558-.051-.192-.684.062-.897.282-.238.734-.441.961-.852.251-.455 1.465-.395 1.721-.023.457.664.66.179.792.488.212.494.05 1.284.05 1.284h-3.586zm8.666 0c.558-.051.192-.684-.062-.897-.282-.238-.734-.441-.961-.852-.251-.455-1.465-.395-1.721-.023-.457.664-.66.179-.792.488-.212.494-.05 1.284-.05 1.284h3.586z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f9cd-1f3fd.svg b/public/emoji/1f9cd-1f3fd.svg
new file mode 100644
index 0000000000000000000000000000000000000000..3197184b7fb12a1dd198ea999335a8c5d14a98e7
--- /dev/null
+++ b/public/emoji/1f9cd-1f3fd.svg
@@ -0,0 +1 @@
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#D4AB88" d="M22.933 22.368c.236.161.512-.02.646-.131.379-.313.763-1.144.611-2.142-.154-1.008-.11-2.185-.584-4.137-.055-.228.274-2.776-.007-4.528-.076-.473-1.251-1.066-1.789-1.057-.536.008-.263.944-.274 1.101-.12 1.682.143 4.279.193 4.632.277 1.956 1.239 2.835.981 4.13-.135.679-.154 1.293.242 1.345-.004.366-.105.728-.019.787zm-9.866-.192c-.236.161-.512-.02-.646-.131-.379-.313-.763-1.144-.611-2.142.154-1.008.11-2.185.584-4.137.055-.228-.274-2.776.007-4.528.076-.473 1.251-1.066 1.789-1.057.536.008.263.944.274 1.101.12 1.682-.143 4.279-.193 4.632-.277 1.956-1.239 2.835-.981 4.13.135.679.154 1.293-.242 1.345.004.366.105.728.019.787z"/><path fill="#4289C1" d="M21.702 26.733c.021-3.063.014-6.5.014-6.5h-7.465s.035 3.747.123 6.46c.07 2.14.396 6.193.1 8.349-.066.479 2.886.937 2.844-.125-.078-1.969.264-6.322.328-7.309.035-.547.25-2.326.344-3.659.011-.018.295-.018.306 0 .094 1.333.308 3.112.344 3.659.064.987.406 5.34.328 7.309-.042 1.062 2.91.604 2.844.125-.298-2.157-.113-7.96-.11-8.309z"/><path fill="#77B255" d="M22.822 9.472c-.778-.849-3.536-1.449-3.536-1.449h-2.605s-2.757.6-3.536 1.449c-.945 1.031-1.15 2.895-1.15 2.895l1.882.318s.283.9.283 2.436-.177 5.896-.177 5.896h8.032s-.209-4.43-.209-5.895.315-2.437.315-2.437l1.85-.318c.001 0-.205-1.865-1.149-2.895z"/><path fill="#D4AB88" d="M19.344 4.369l-2.688.019v3.981c0 .963 2.688.998 2.688 0v-4z"/><path fill="#CC9B7A" d="M19.344 3.86l-2.688.019V7.78s1.17 1.151 2.688.035V3.86z"/><path fill="#963B22" d="M18.402.716c-.613-.078-1.567.093-2.032.605-.651-.233-1.415.479-1.415 1.453 0 1.116.164 2.206.857 2.64.52.723 1.571 1.046 2.53 1.046 1.582 0 2.703-.756 2.703-3.093 0-1.883-.992-2.442-2.643-2.651z"/><path fill="#D4AB88" d="M20.687 2.292h-5.21V5.03c0 1.337 1.166 2.993 2.605 2.993s2.605-1.516 2.605-2.912V2.292z"/><path fill="#963B22" d="M17.146 1.588l-1.67.704v2.084c0-.799.545-.846.871-1.358.012.322.658.628 1.636.628.744 0 2.703-1.291 2.703.73V2.007l-3.54-.419z"/><circle fill="#662113" cx="17.033" cy="4.786" r=".339"/><circle fill="#662113" cx="19.15" cy="4.786" r=".339"/><path fill="#C1694F" d="M18.573 6.984h-.953c-.102 0-.186-.084-.186-.186s.084-.186.186-.186h.953c.102 0 .186.084.186.186s-.084.186-.186.186zm-.279-.838h-.395c-.109 0-.198-.089-.198-.198 0-.109.089-.198.198-.198h.395c.109 0 .198.089.198.198 0 .109-.089.198-.198.198z"/><path fill="#292F33" d="M13.789 35.907c-.558-.051-.192-.684.062-.897.282-.238.734-.441.961-.852.251-.455 1.465-.395 1.721-.023.457.664.66.179.792.488.212.494.05 1.284.05 1.284h-3.586zm8.666 0c.558-.051.192-.684-.062-.897-.282-.238-.734-.441-.961-.852-.251-.455-1.465-.395-1.721-.023-.457.664-.66.179-.792.488-.212.494-.05 1.284-.05 1.284h3.586z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f9cd-1f3fe-200d-2640-fe0f.svg b/public/emoji/1f9cd-1f3fe-200d-2640-fe0f.svg
new file mode 100644
index 0000000000000000000000000000000000000000..696243dc0f03743cf4f78092c78ba067688ba77a
--- /dev/null
+++ b/public/emoji/1f9cd-1f3fe-200d-2640-fe0f.svg
@@ -0,0 +1 @@
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#AF7E57" d="M13.449 22.569c-.236.161-.512-.02-.646-.131-.379-.313-.763-1.144-.611-2.142.154-1.008.404-2.185.878-4.137.055-.228-.274-2.776.007-4.528.076-.473.958-1.066 1.495-1.057.536.008.263.944.274 1.101.12 1.682-.143 4.279-.193 4.632-.277 1.956-1.239 2.835-.981 4.13.135.679.154 1.293-.242 1.345.004.366.105.728.019.787zm9.102 0c.236.161.512-.02.646-.131.379-.313.763-1.144.611-2.142-.154-1.008-.404-2.185-.878-4.137-.055-.228.274-2.776-.007-4.528-.076-.473-.958-1.066-1.495-1.057-.536.008-.263.944-.274 1.101-.12 1.682.143 4.279.193 4.632.277 1.956 1.239 2.835.981 4.13-.135.679-.154 1.293.242 1.345-.004.366-.105.728-.019.787z"/><path fill="#4289C1" d="M21.717 25.17c0-1.012.084-3.628-.241-5.198-.325-1.57-6.687-1.605-7.012 0-.325 1.605-.075 4.081-.075 5.158 0 2.141 1.159 7.747.862 9.903-.066.479 2.492.937 2.449-.125-.078-1.969-.104-5.193-.04-6.18.035-.547.171-4.771.265-6.105.011-.018.295-.018.306 0 .094 1.333.387 5.558.423 6.105.064.987.137 4.212.059 6.18-.042 1.062 2.525.604 2.459.125-.296-2.156.545-9.514.545-9.863z"/><path fill="#60352A" d="M19.744 5.553c.814.198 1.151.895 1.116 1.616-.024.488.384.93.384.93s-2.07.419-2.481-1.409c-.371-1.641.981-1.137.981-1.137z"/><path fill="#9268CA" d="M22.131 9.371c-.665-.794-3.019-1.356-3.019-1.356h-2.225s-2.355.561-3.019 1.356c-.807.964-.982 2.71-.982 2.71l1.608.298s.461 1.862.461 3.3c0 1.147-.422 3.328-.593 4.163-.043.211-.035.227 0 .279s.233.057.233.057h6.814s.128.022.198-.036.051-.084.002-.286c-.203-.833-.722-3.073-.722-4.176 0-1.371.65-3.301.65-3.301l1.58-.298c-.004-.001-.179-1.746-.986-2.71z"/><path fill="#AF7E57" d="M19.36 4.361l-2.688.019v3.981c0 .963 2.688.998 2.688 0v-4z"/><path fill="#9B6A49" d="M19.36 3.851l-2.688.019v3.901s1.17 1.151 2.688.035V3.851z"/><path fill="#60352A" d="M15.11 3.437c0-1.753 1.335-2.651 2.983-2.651 1.647 0 2.983.898 2.983 2.651s-1.335 3.174-2.983 3.174c-1.648 0-2.983-1.421-2.983-3.174z"/><path fill="#AF7E57" d="M20.702 2.283h-5.21v2.738c0 1.337 1.447 2.993 2.605 2.993s2.605-1.516 2.605-2.912V2.283z"/><path fill="#60352A" d="M18.199 2.233s-.967 1.739-2.707 1.739V2.233h2.707z"/><path fill="#60352A" d="M17.937 2.233s1.033 1.739 2.772 1.739V2.233h-2.772z"/><circle fill="#662113" cx="17.049" cy="4.777" r=".339"/><circle fill="#662113" cx="19.165" cy="4.777" r=".339"/><path fill="#DF1F32" d="M18.112 7.03c-.404 0-.616-.2-.639-.223-.067-.067-.067-.176 0-.243s.174-.067.242-.002c.009.008.139.124.397.124.261 0 .391-.119.397-.124.069-.064.177-.062.242.005.065.068.065.174-.001.24-.022.023-.233.223-.638.223"/><path fill="#915A34" d="M18.31 6.138h-.395c-.109 0-.198-.089-.198-.198 0-.109.089-.198.198-.198h.395c.109 0 .198.089.198.198-.001.109-.09.198-.198.198z"/><path fill="#292F33" d="M14.173 35.898c-.558-.051-.192-.684.062-.897.282-.238.734-.441.961-.852.251-.455 1.465-.395 1.721-.023.457.664.66.179.792.488.212.494.05 1.284.05 1.284h-3.586zm8.029 0c.558-.051.192-.684-.062-.897-.282-.238-.734-.441-.961-.852-.251-.455-1.465-.395-1.721-.023-.457.664-.66.179-.792.488-.212.494-.05 1.284-.05 1.284h3.586z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f9cd-1f3fe-200d-2642-fe0f.svg b/public/emoji/1f9cd-1f3fe-200d-2642-fe0f.svg
new file mode 100644
index 0000000000000000000000000000000000000000..8b05543d01ba8a6efc1d9467b4571affd0f3c5f9
--- /dev/null
+++ b/public/emoji/1f9cd-1f3fe-200d-2642-fe0f.svg
@@ -0,0 +1 @@
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#AF7E57" d="M22.933 22.368c.236.161.512-.02.646-.131.379-.313.763-1.144.611-2.142-.154-1.008-.11-2.185-.584-4.137-.055-.228.274-2.776-.007-4.528-.076-.473-1.251-1.066-1.789-1.057-.536.008-.263.944-.274 1.101-.12 1.682.143 4.279.193 4.632.277 1.956 1.239 2.835.981 4.13-.135.679-.154 1.293.242 1.345-.004.366-.105.728-.019.787zm-9.866-.192c-.236.161-.512-.02-.646-.131-.379-.313-.763-1.144-.611-2.142.154-1.008.11-2.185.584-4.137.055-.228-.274-2.776.007-4.528.076-.473 1.251-1.066 1.789-1.057.536.008.263.944.274 1.101.12 1.682-.143 4.279-.193 4.632-.277 1.956-1.239 2.835-.981 4.13.135.679.154 1.293-.242 1.345.004.366.105.728.019.787z"/><path fill="#4289C1" d="M21.702 26.733c.021-3.063.014-6.5.014-6.5h-7.465s.035 3.747.123 6.46c.07 2.14.396 6.193.1 8.349-.066.479 2.886.937 2.844-.125-.078-1.969.264-6.322.328-7.309.035-.547.25-2.326.344-3.659.011-.018.295-.018.306 0 .094 1.333.308 3.112.344 3.659.064.987.406 5.34.328 7.309-.042 1.062 2.91.604 2.844.125-.298-2.157-.113-7.96-.11-8.309z"/><path fill="#77B255" d="M22.822 9.472c-.778-.849-3.536-1.449-3.536-1.449h-2.605s-2.757.6-3.536 1.449c-.945 1.031-1.15 2.895-1.15 2.895l1.882.318s.283.9.283 2.436-.177 5.896-.177 5.896h8.032s-.209-4.43-.209-5.895.315-2.437.315-2.437l1.85-.318c.001 0-.205-1.865-1.149-2.895z"/><path fill="#AF7E57" d="M19.344 4.369l-2.688.019v3.981c0 .963 2.688.998 2.688 0v-4z"/><path fill="#9B6A49" d="M19.344 3.86l-2.688.019V7.78s1.17 1.151 2.688.035V3.86z"/><path fill="#60352A" d="M18.402.716c-.613-.078-1.567.093-2.032.605-.651-.233-1.415.479-1.415 1.453 0 1.116.164 2.206.857 2.64.52.723 1.571 1.046 2.53 1.046 1.582 0 2.703-.756 2.703-3.093 0-1.883-.992-2.442-2.643-2.651z"/><path fill="#AF7E57" d="M20.687 2.292h-5.21V5.03c0 1.337 1.166 2.993 2.605 2.993s2.605-1.516 2.605-2.912V2.292z"/><path fill="#60352A" d="M17.146 1.588l-1.67.704v2.084c0-.799.545-.846.871-1.358.012.322.658.628 1.636.628.744 0 2.703-1.291 2.703.73V2.007l-3.54-.419z"/><circle fill="#662113" cx="17.033" cy="4.786" r=".339"/><circle fill="#662113" cx="19.15" cy="4.786" r=".339"/><path fill="#915A34" d="M18.573 6.984h-.953c-.102 0-.186-.084-.186-.186s.084-.186.186-.186h.953c.102 0 .186.084.186.186s-.084.186-.186.186zm-.279-.838h-.395c-.109 0-.198-.089-.198-.198 0-.109.089-.198.198-.198h.395c.109 0 .198.089.198.198 0 .109-.089.198-.198.198z"/><path fill="#292F33" d="M13.789 35.907c-.558-.051-.192-.684.062-.897.282-.238.734-.441.961-.852.251-.455 1.465-.395 1.721-.023.457.664.66.179.792.488.212.494.05 1.284.05 1.284h-3.586zm8.666 0c.558-.051.192-.684-.062-.897-.282-.238-.734-.441-.961-.852-.251-.455-1.465-.395-1.721-.023-.457.664-.66.179-.792.488-.212.494-.05 1.284-.05 1.284h3.586z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f9cd-1f3fe.svg b/public/emoji/1f9cd-1f3fe.svg
new file mode 100644
index 0000000000000000000000000000000000000000..8b05543d01ba8a6efc1d9467b4571affd0f3c5f9
--- /dev/null
+++ b/public/emoji/1f9cd-1f3fe.svg
@@ -0,0 +1 @@
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#AF7E57" d="M22.933 22.368c.236.161.512-.02.646-.131.379-.313.763-1.144.611-2.142-.154-1.008-.11-2.185-.584-4.137-.055-.228.274-2.776-.007-4.528-.076-.473-1.251-1.066-1.789-1.057-.536.008-.263.944-.274 1.101-.12 1.682.143 4.279.193 4.632.277 1.956 1.239 2.835.981 4.13-.135.679-.154 1.293.242 1.345-.004.366-.105.728-.019.787zm-9.866-.192c-.236.161-.512-.02-.646-.131-.379-.313-.763-1.144-.611-2.142.154-1.008.11-2.185.584-4.137.055-.228-.274-2.776.007-4.528.076-.473 1.251-1.066 1.789-1.057.536.008.263.944.274 1.101.12 1.682-.143 4.279-.193 4.632-.277 1.956-1.239 2.835-.981 4.13.135.679.154 1.293-.242 1.345.004.366.105.728.019.787z"/><path fill="#4289C1" d="M21.702 26.733c.021-3.063.014-6.5.014-6.5h-7.465s.035 3.747.123 6.46c.07 2.14.396 6.193.1 8.349-.066.479 2.886.937 2.844-.125-.078-1.969.264-6.322.328-7.309.035-.547.25-2.326.344-3.659.011-.018.295-.018.306 0 .094 1.333.308 3.112.344 3.659.064.987.406 5.34.328 7.309-.042 1.062 2.91.604 2.844.125-.298-2.157-.113-7.96-.11-8.309z"/><path fill="#77B255" d="M22.822 9.472c-.778-.849-3.536-1.449-3.536-1.449h-2.605s-2.757.6-3.536 1.449c-.945 1.031-1.15 2.895-1.15 2.895l1.882.318s.283.9.283 2.436-.177 5.896-.177 5.896h8.032s-.209-4.43-.209-5.895.315-2.437.315-2.437l1.85-.318c.001 0-.205-1.865-1.149-2.895z"/><path fill="#AF7E57" d="M19.344 4.369l-2.688.019v3.981c0 .963 2.688.998 2.688 0v-4z"/><path fill="#9B6A49" d="M19.344 3.86l-2.688.019V7.78s1.17 1.151 2.688.035V3.86z"/><path fill="#60352A" d="M18.402.716c-.613-.078-1.567.093-2.032.605-.651-.233-1.415.479-1.415 1.453 0 1.116.164 2.206.857 2.64.52.723 1.571 1.046 2.53 1.046 1.582 0 2.703-.756 2.703-3.093 0-1.883-.992-2.442-2.643-2.651z"/><path fill="#AF7E57" d="M20.687 2.292h-5.21V5.03c0 1.337 1.166 2.993 2.605 2.993s2.605-1.516 2.605-2.912V2.292z"/><path fill="#60352A" d="M17.146 1.588l-1.67.704v2.084c0-.799.545-.846.871-1.358.012.322.658.628 1.636.628.744 0 2.703-1.291 2.703.73V2.007l-3.54-.419z"/><circle fill="#662113" cx="17.033" cy="4.786" r=".339"/><circle fill="#662113" cx="19.15" cy="4.786" r=".339"/><path fill="#915A34" d="M18.573 6.984h-.953c-.102 0-.186-.084-.186-.186s.084-.186.186-.186h.953c.102 0 .186.084.186.186s-.084.186-.186.186zm-.279-.838h-.395c-.109 0-.198-.089-.198-.198 0-.109.089-.198.198-.198h.395c.109 0 .198.089.198.198 0 .109-.089.198-.198.198z"/><path fill="#292F33" d="M13.789 35.907c-.558-.051-.192-.684.062-.897.282-.238.734-.441.961-.852.251-.455 1.465-.395 1.721-.023.457.664.66.179.792.488.212.494.05 1.284.05 1.284h-3.586zm8.666 0c.558-.051.192-.684-.062-.897-.282-.238-.734-.441-.961-.852-.251-.455-1.465-.395-1.721-.023-.457.664-.66.179-.792.488-.212.494-.05 1.284-.05 1.284h3.586z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f9cd-1f3ff-200d-2640-fe0f.svg b/public/emoji/1f9cd-1f3ff-200d-2640-fe0f.svg
new file mode 100644
index 0000000000000000000000000000000000000000..c96659cead9857bc6e860505086c34d5c3c12336
--- /dev/null
+++ b/public/emoji/1f9cd-1f3ff-200d-2640-fe0f.svg
@@ -0,0 +1 @@
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#7C533E" d="M13.449 22.569c-.236.161-.512-.02-.646-.131-.379-.313-.763-1.144-.611-2.142.154-1.008.404-2.185.878-4.137.055-.228-.274-2.776.007-4.528.076-.473.958-1.066 1.495-1.057.536.008.263.944.274 1.101.12 1.682-.143 4.279-.193 4.632-.277 1.956-1.239 2.835-.981 4.13.135.679.154 1.293-.242 1.345.004.366.105.728.019.787zm9.102 0c.236.161.512-.02.646-.131.379-.313.763-1.144.611-2.142-.154-1.008-.404-2.185-.878-4.137-.055-.228.274-2.776-.007-4.528-.076-.473-.958-1.066-1.495-1.057-.536.008-.263.944-.274 1.101-.12 1.682.143 4.279.193 4.632.277 1.956 1.239 2.835.981 4.13-.135.679-.154 1.293.242 1.345-.004.366-.105.728-.019.787z"/><path fill="#4289C1" d="M21.717 25.17c0-1.012.084-3.628-.241-5.198-.325-1.57-6.687-1.605-7.012 0-.325 1.605-.075 4.081-.075 5.158 0 2.141 1.159 7.747.862 9.903-.066.479 2.492.937 2.449-.125-.078-1.969-.104-5.193-.04-6.18.035-.547.171-4.771.265-6.105.011-.018.295-.018.306 0 .094 1.333.387 5.558.423 6.105.064.987.137 4.212.059 6.18-.042 1.062 2.525.604 2.459.125-.296-2.156.545-9.514.545-9.863z"/><path fill="#0B0200" d="M19.744 5.553c.814.198 1.151.895 1.116 1.616-.024.488.384.93.384.93s-2.07.419-2.481-1.409c-.371-1.641.981-1.137.981-1.137z"/><path fill="#9268CA" d="M22.131 9.371c-.665-.794-3.019-1.356-3.019-1.356h-2.225s-2.355.561-3.019 1.356c-.807.964-.982 2.71-.982 2.71l1.608.298s.461 1.862.461 3.3c0 1.147-.422 3.328-.593 4.163-.043.211-.035.227 0 .279s.233.057.233.057h6.814s.128.022.198-.036.051-.084.002-.286c-.203-.833-.722-3.073-.722-4.176 0-1.371.65-3.301.65-3.301l1.58-.298c-.004-.001-.179-1.746-.986-2.71z"/><path fill="#7C533E" d="M19.36 4.361l-2.688.019v3.981c0 .963 2.688.998 2.688 0v-4z"/><path fill="#664131" d="M19.36 3.851l-2.688.019v3.901s1.17 1.151 2.688.035V3.851z"/><path fill="#0B0200" d="M15.11 3.437c0-1.753 1.335-2.651 2.983-2.651 1.647 0 2.983.898 2.983 2.651s-1.335 3.174-2.983 3.174c-1.648 0-2.983-1.421-2.983-3.174z"/><path fill="#7C533E" d="M20.702 2.283h-5.21v2.738c0 1.337 1.447 2.993 2.605 2.993s2.605-1.516 2.605-2.912V2.283z"/><path fill="#0B0200" d="M18.199 2.233s-.967 1.739-2.707 1.739V2.233h2.707z"/><path fill="#0B0200" d="M17.937 2.233s1.033 1.739 2.772 1.739V2.233h-2.772z"/><circle cx="17.049" cy="4.777" r=".339"/><circle cx="19.165" cy="4.777" r=".339"/><path fill="#DF1F32" d="M18.112 7.03c-.404 0-.616-.2-.639-.223-.067-.067-.067-.176 0-.243s.174-.067.242-.002c.009.008.139.124.397.124.261 0 .391-.119.397-.124.069-.064.177-.062.242.005.065.068.065.174-.001.24-.022.023-.233.223-.638.223"/><path fill="#3D2E24" d="M18.31 6.138h-.395c-.109 0-.198-.089-.198-.198 0-.109.089-.198.198-.198h.395c.109 0 .198.089.198.198-.001.109-.09.198-.198.198z"/><path fill="#292F33" d="M14.173 35.898c-.558-.051-.192-.684.062-.897.282-.238.734-.441.961-.852.251-.455 1.465-.395 1.721-.023.457.664.66.179.792.488.212.494.05 1.284.05 1.284h-3.586zm8.029 0c.558-.051.192-.684-.062-.897-.282-.238-.734-.441-.961-.852-.251-.455-1.465-.395-1.721-.023-.457.664-.66.179-.792.488-.212.494-.05 1.284-.05 1.284h3.586z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f9cd-1f3ff-200d-2642-fe0f.svg b/public/emoji/1f9cd-1f3ff-200d-2642-fe0f.svg
new file mode 100644
index 0000000000000000000000000000000000000000..59fb6a930ac7df8ebc8545603a98e26755bfa05e
--- /dev/null
+++ b/public/emoji/1f9cd-1f3ff-200d-2642-fe0f.svg
@@ -0,0 +1 @@
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#7C533E" d="M22.933 22.368c.236.161.512-.02.646-.131.379-.313.763-1.144.611-2.142-.154-1.008-.11-2.185-.584-4.137-.055-.228.274-2.776-.007-4.528-.076-.473-1.251-1.066-1.789-1.057-.536.008-.263.944-.274 1.101-.12 1.682.143 4.279.193 4.632.277 1.956 1.239 2.835.981 4.13-.135.679-.154 1.293.242 1.345-.004.366-.105.728-.019.787zm-9.866-.192c-.236.161-.512-.02-.646-.131-.379-.313-.763-1.144-.611-2.142.154-1.008.11-2.185.584-4.137.055-.228-.274-2.776.007-4.528.076-.473 1.251-1.066 1.789-1.057.536.008.263.944.274 1.101.12 1.682-.143 4.279-.193 4.632-.277 1.956-1.239 2.835-.981 4.13.135.679.154 1.293-.242 1.345.004.366.105.728.019.787z"/><path fill="#4289C1" d="M21.702 26.733c.021-3.063.014-6.5.014-6.5h-7.465s.035 3.747.123 6.46c.07 2.14.396 6.193.1 8.349-.066.479 2.886.937 2.844-.125-.078-1.969.264-6.322.328-7.309.035-.547.25-2.326.344-3.659.011-.018.295-.018.306 0 .094 1.333.308 3.112.344 3.659.064.987.406 5.34.328 7.309-.042 1.062 2.91.604 2.844.125-.298-2.157-.113-7.96-.11-8.309z"/><path fill="#77B255" d="M22.822 9.472c-.778-.849-3.536-1.449-3.536-1.449h-2.605s-2.757.6-3.536 1.449c-.945 1.031-1.15 2.895-1.15 2.895l1.882.318s.283.9.283 2.436-.177 5.896-.177 5.896h8.032s-.209-4.43-.209-5.895.315-2.437.315-2.437l1.85-.318c.001 0-.205-1.865-1.149-2.895z"/><path fill="#7C533E" d="M19.344 4.369l-2.688.019v3.981c0 .963 2.688.998 2.688 0v-4z"/><path fill="#664131" d="M19.344 3.86l-2.688.019V7.78s1.17 1.151 2.688.035V3.86z"/><path fill="#0B0200" d="M18.402.716c-.613-.078-1.567.093-2.032.605-.651-.233-1.415.479-1.415 1.453 0 1.116.164 2.206.857 2.64.52.723 1.571 1.046 2.53 1.046 1.582 0 2.703-.756 2.703-3.093 0-1.883-.992-2.442-2.643-2.651z"/><path fill="#7C533E" d="M20.687 2.292h-5.21V5.03c0 1.337 1.166 2.993 2.605 2.993s2.605-1.516 2.605-2.912V2.292z"/><path fill="#0B0200" d="M17.146 1.588l-1.67.704v2.084c0-.799.545-.846.871-1.358.012.322.658.628 1.636.628.744 0 2.703-1.291 2.703.73V2.007l-3.54-.419z"/><circle cx="17.033" cy="4.786" r=".339"/><circle cx="19.15" cy="4.786" r=".339"/><path fill="#3D2E24" d="M18.573 6.984h-.953c-.102 0-.186-.084-.186-.186s.084-.186.186-.186h.953c.102 0 .186.084.186.186s-.084.186-.186.186zm-.279-.838h-.395c-.109 0-.198-.089-.198-.198 0-.109.089-.198.198-.198h.395c.109 0 .198.089.198.198 0 .109-.089.198-.198.198z"/><path fill="#292F33" d="M13.789 35.907c-.558-.051-.192-.684.062-.897.282-.238.734-.441.961-.852.251-.455 1.465-.395 1.721-.023.457.664.66.179.792.488.212.494.05 1.284.05 1.284h-3.586zm8.666 0c.558-.051.192-.684-.062-.897-.282-.238-.734-.441-.961-.852-.251-.455-1.465-.395-1.721-.023-.457.664-.66.179-.792.488-.212.494-.05 1.284-.05 1.284h3.586z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f9cd-1f3ff.svg b/public/emoji/1f9cd-1f3ff.svg
new file mode 100644
index 0000000000000000000000000000000000000000..59fb6a930ac7df8ebc8545603a98e26755bfa05e
--- /dev/null
+++ b/public/emoji/1f9cd-1f3ff.svg
@@ -0,0 +1 @@
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#7C533E" d="M22.933 22.368c.236.161.512-.02.646-.131.379-.313.763-1.144.611-2.142-.154-1.008-.11-2.185-.584-4.137-.055-.228.274-2.776-.007-4.528-.076-.473-1.251-1.066-1.789-1.057-.536.008-.263.944-.274 1.101-.12 1.682.143 4.279.193 4.632.277 1.956 1.239 2.835.981 4.13-.135.679-.154 1.293.242 1.345-.004.366-.105.728-.019.787zm-9.866-.192c-.236.161-.512-.02-.646-.131-.379-.313-.763-1.144-.611-2.142.154-1.008.11-2.185.584-4.137.055-.228-.274-2.776.007-4.528.076-.473 1.251-1.066 1.789-1.057.536.008.263.944.274 1.101.12 1.682-.143 4.279-.193 4.632-.277 1.956-1.239 2.835-.981 4.13.135.679.154 1.293-.242 1.345.004.366.105.728.019.787z"/><path fill="#4289C1" d="M21.702 26.733c.021-3.063.014-6.5.014-6.5h-7.465s.035 3.747.123 6.46c.07 2.14.396 6.193.1 8.349-.066.479 2.886.937 2.844-.125-.078-1.969.264-6.322.328-7.309.035-.547.25-2.326.344-3.659.011-.018.295-.018.306 0 .094 1.333.308 3.112.344 3.659.064.987.406 5.34.328 7.309-.042 1.062 2.91.604 2.844.125-.298-2.157-.113-7.96-.11-8.309z"/><path fill="#77B255" d="M22.822 9.472c-.778-.849-3.536-1.449-3.536-1.449h-2.605s-2.757.6-3.536 1.449c-.945 1.031-1.15 2.895-1.15 2.895l1.882.318s.283.9.283 2.436-.177 5.896-.177 5.896h8.032s-.209-4.43-.209-5.895.315-2.437.315-2.437l1.85-.318c.001 0-.205-1.865-1.149-2.895z"/><path fill="#7C533E" d="M19.344 4.369l-2.688.019v3.981c0 .963 2.688.998 2.688 0v-4z"/><path fill="#664131" d="M19.344 3.86l-2.688.019V7.78s1.17 1.151 2.688.035V3.86z"/><path fill="#0B0200" d="M18.402.716c-.613-.078-1.567.093-2.032.605-.651-.233-1.415.479-1.415 1.453 0 1.116.164 2.206.857 2.64.52.723 1.571 1.046 2.53 1.046 1.582 0 2.703-.756 2.703-3.093 0-1.883-.992-2.442-2.643-2.651z"/><path fill="#7C533E" d="M20.687 2.292h-5.21V5.03c0 1.337 1.166 2.993 2.605 2.993s2.605-1.516 2.605-2.912V2.292z"/><path fill="#0B0200" d="M17.146 1.588l-1.67.704v2.084c0-.799.545-.846.871-1.358.012.322.658.628 1.636.628.744 0 2.703-1.291 2.703.73V2.007l-3.54-.419z"/><circle cx="17.033" cy="4.786" r=".339"/><circle cx="19.15" cy="4.786" r=".339"/><path fill="#3D2E24" d="M18.573 6.984h-.953c-.102 0-.186-.084-.186-.186s.084-.186.186-.186h.953c.102 0 .186.084.186.186s-.084.186-.186.186zm-.279-.838h-.395c-.109 0-.198-.089-.198-.198 0-.109.089-.198.198-.198h.395c.109 0 .198.089.198.198 0 .109-.089.198-.198.198z"/><path fill="#292F33" d="M13.789 35.907c-.558-.051-.192-.684.062-.897.282-.238.734-.441.961-.852.251-.455 1.465-.395 1.721-.023.457.664.66.179.792.488.212.494.05 1.284.05 1.284h-3.586zm8.666 0c.558-.051.192-.684-.062-.897-.282-.238-.734-.441-.961-.852-.251-.455-1.465-.395-1.721-.023-.457.664-.66.179-.792.488-.212.494-.05 1.284-.05 1.284h3.586z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f9cd-200d-2640-fe0f.svg b/public/emoji/1f9cd-200d-2640-fe0f.svg
new file mode 100644
index 0000000000000000000000000000000000000000..1b8bfc388cbde77be6bcbe13e1c36137d55fe377
--- /dev/null
+++ b/public/emoji/1f9cd-200d-2640-fe0f.svg
@@ -0,0 +1 @@
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#FFDC5D" d="M13.449 22.569c-.236.161-.512-.02-.646-.131-.379-.313-.763-1.144-.611-2.142.154-1.008.404-2.185.878-4.137.055-.228-.274-2.776.007-4.528.076-.473.958-1.066 1.495-1.057.536.008.263.944.274 1.101.12 1.682-.143 4.279-.193 4.632-.277 1.956-1.239 2.835-.981 4.13.135.679.154 1.293-.242 1.345.004.366.105.728.019.787zm9.102 0c.236.161.512-.02.646-.131.379-.313.763-1.144.611-2.142-.154-1.008-.404-2.185-.878-4.137-.055-.228.274-2.776-.007-4.528-.076-.473-.958-1.066-1.495-1.057-.536.008-.263.944-.274 1.101-.12 1.682.143 4.279.193 4.632.277 1.956 1.239 2.835.981 4.13-.135.679-.154 1.293.242 1.345-.004.366-.105.728-.019.787z"/><path fill="#4289C1" d="M21.717 25.17c0-1.012.084-3.628-.241-5.198-.325-1.57-6.687-1.605-7.012 0-.325 1.605-.075 4.081-.075 5.158 0 2.141 1.159 7.747.862 9.903-.066.479 2.492.937 2.449-.125-.078-1.969-.104-5.193-.04-6.18.035-.547.171-4.771.265-6.105.011-.018.295-.018.306 0 .094 1.333.387 5.558.423 6.105.064.987.137 4.212.059 6.18-.042 1.062 2.525.604 2.459.125-.296-2.156.545-9.514.545-9.863z"/><path fill="#FFAC33" d="M19.744 5.553c.814.198 1.151.895 1.116 1.616-.024.488.384.93.384.93s-2.07.419-2.481-1.409c-.371-1.641.981-1.137.981-1.137z"/><path fill="#9268CA" d="M22.131 9.371c-.665-.794-3.019-1.356-3.019-1.356h-2.225s-2.355.561-3.019 1.356c-.807.964-.982 2.71-.982 2.71l1.608.298s.461 1.862.461 3.3c0 1.147-.422 3.328-.593 4.163-.043.211-.035.227 0 .279s.233.057.233.057h6.814s.128.022.198-.036.051-.084.002-.286c-.203-.833-.722-3.073-.722-4.176 0-1.371.65-3.301.65-3.301l1.58-.298c-.004-.001-.179-1.746-.986-2.71z"/><path fill="#FFDC5D" d="M19.36 4.361l-2.688.019v3.981c0 .963 2.688.998 2.688 0v-4z"/><path fill="#F9CA55" d="M19.36 3.851l-2.688.019v3.901s1.17 1.151 2.688.035V3.851z"/><path fill="#FFAC33" d="M15.11 3.437c0-1.753 1.335-2.651 2.983-2.651 1.647 0 2.983.898 2.983 2.651s-1.335 3.174-2.983 3.174c-1.648 0-2.983-1.421-2.983-3.174z"/><path fill="#FFDC5D" d="M20.702 2.283h-5.21v2.738c0 1.337 1.447 2.993 2.605 2.993s2.605-1.516 2.605-2.912V2.283z"/><path fill="#FFAC33" d="M18.199 2.233s-.967 1.739-2.707 1.739V2.233h2.707z"/><path fill="#FFAC33" d="M17.937 2.233s1.033 1.739 2.772 1.739V2.233h-2.772z"/><circle fill="#662113" cx="17.049" cy="4.777" r=".339"/><circle fill="#662113" cx="19.165" cy="4.777" r=".339"/><path fill="#DF1F32" d="M18.112 7.03c-.404 0-.616-.2-.639-.223-.067-.067-.067-.176 0-.243s.174-.067.242-.002c.009.008.139.124.397.124.261 0 .391-.119.397-.124.069-.064.177-.062.242.005.065.068.065.174-.001.24-.022.023-.233.223-.638.223"/><path fill="#C1694F" d="M18.31 6.138h-.395c-.109 0-.198-.089-.198-.198 0-.109.089-.198.198-.198h.395c.109 0 .198.089.198.198-.001.109-.09.198-.198.198z"/><path fill="#292F33" d="M14.173 35.898c-.558-.051-.192-.684.062-.897.282-.238.734-.441.961-.852.251-.455 1.465-.395 1.721-.023.457.664.66.179.792.488.212.494.05 1.284.05 1.284h-3.586zm8.029 0c.558-.051.192-.684-.062-.897-.282-.238-.734-.441-.961-.852-.251-.455-1.465-.395-1.721-.023-.457.664-.66.179-.792.488-.212.494-.05 1.284-.05 1.284h3.586z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f9cd-200d-2642-fe0f.svg b/public/emoji/1f9cd-200d-2642-fe0f.svg
new file mode 100644
index 0000000000000000000000000000000000000000..450561e2a761e574addd399b4372a8b7d7790f86
--- /dev/null
+++ b/public/emoji/1f9cd-200d-2642-fe0f.svg
@@ -0,0 +1 @@
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#FFDC5D" d="M22.933 22.368c.236.161.512-.02.646-.131.379-.313.763-1.144.611-2.142-.154-1.008-.11-2.185-.584-4.137-.055-.228.274-2.776-.007-4.528-.076-.473-1.251-1.066-1.789-1.057-.536.008-.263.944-.274 1.101-.12 1.682.143 4.279.193 4.632.277 1.956 1.239 2.835.981 4.13-.135.679-.154 1.293.242 1.345-.004.366-.105.728-.019.787zm-9.866-.192c-.236.161-.512-.02-.646-.131-.379-.313-.763-1.144-.611-2.142.154-1.008.11-2.185.584-4.137.055-.228-.274-2.776.007-4.528.076-.473 1.251-1.066 1.789-1.057.536.008.263.944.274 1.101.12 1.682-.143 4.279-.193 4.632-.277 1.956-1.239 2.835-.981 4.13.135.679.154 1.293-.242 1.345.004.366.105.728.019.787z"/><path fill="#4289C1" d="M21.702 26.733c.021-3.063.014-6.5.014-6.5h-7.465s.035 3.747.123 6.46c.07 2.14.396 6.193.1 8.349-.066.479 2.886.937 2.844-.125-.078-1.969.264-6.322.328-7.309.035-.547.25-2.326.344-3.659.011-.018.295-.018.306 0 .094 1.333.308 3.112.344 3.659.064.987.406 5.34.328 7.309-.042 1.062 2.91.604 2.844.125-.298-2.157-.113-7.96-.11-8.309z"/><path fill="#77B255" d="M22.822 9.472c-.778-.849-3.536-1.449-3.536-1.449h-2.605s-2.757.6-3.536 1.449c-.945 1.031-1.15 2.895-1.15 2.895l1.882.318s.283.9.283 2.436-.177 5.896-.177 5.896h8.032s-.209-4.43-.209-5.895.315-2.437.315-2.437l1.85-.318c.001 0-.205-1.865-1.149-2.895z"/><path fill="#FFDC5D" d="M19.344 4.369l-2.688.019v3.981c0 .963 2.688.998 2.688 0v-4z"/><path fill="#F9CA55" d="M19.344 3.86l-2.688.019V7.78s1.17 1.151 2.688.035V3.86z"/><path fill="#FFAC33" d="M18.402.716c-.613-.078-1.567.093-2.032.605-.651-.233-1.415.479-1.415 1.453 0 1.116.164 2.206.857 2.64.52.723 1.571 1.046 2.53 1.046 1.582 0 2.703-.756 2.703-3.093 0-1.883-.992-2.442-2.643-2.651z"/><path fill="#FFDC5D" d="M20.687 2.292h-5.21V5.03c0 1.337 1.166 2.993 2.605 2.993s2.605-1.516 2.605-2.912V2.292z"/><path fill="#FFAC33" d="M17.146 1.588l-1.67.704v2.084c0-.799.545-.846.871-1.358.012.322.658.628 1.636.628.744 0 2.703-1.291 2.703.73V2.007l-3.54-.419z"/><circle fill="#662113" cx="17.033" cy="4.786" r=".339"/><circle fill="#662113" cx="19.15" cy="4.786" r=".339"/><path fill="#C1694F" d="M18.573 6.984h-.953c-.102 0-.186-.084-.186-.186s.084-.186.186-.186h.953c.102 0 .186.084.186.186s-.084.186-.186.186zm-.279-.838h-.395c-.109 0-.198-.089-.198-.198 0-.109.089-.198.198-.198h.395c.109 0 .198.089.198.198 0 .109-.089.198-.198.198z"/><path fill="#292F33" d="M13.789 35.907c-.558-.051-.192-.684.062-.897.282-.238.734-.441.961-.852.251-.455 1.465-.395 1.721-.023.457.664.66.179.792.488.212.494.05 1.284.05 1.284h-3.586zm8.666 0c.558-.051.192-.684-.062-.897-.282-.238-.734-.441-.961-.852-.251-.455-1.465-.395-1.721-.023-.457.664-.66.179-.792.488-.212.494-.05 1.284-.05 1.284h3.586z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f9cd.svg b/public/emoji/1f9cd.svg
new file mode 100644
index 0000000000000000000000000000000000000000..450561e2a761e574addd399b4372a8b7d7790f86
--- /dev/null
+++ b/public/emoji/1f9cd.svg
@@ -0,0 +1 @@
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#FFDC5D" d="M22.933 22.368c.236.161.512-.02.646-.131.379-.313.763-1.144.611-2.142-.154-1.008-.11-2.185-.584-4.137-.055-.228.274-2.776-.007-4.528-.076-.473-1.251-1.066-1.789-1.057-.536.008-.263.944-.274 1.101-.12 1.682.143 4.279.193 4.632.277 1.956 1.239 2.835.981 4.13-.135.679-.154 1.293.242 1.345-.004.366-.105.728-.019.787zm-9.866-.192c-.236.161-.512-.02-.646-.131-.379-.313-.763-1.144-.611-2.142.154-1.008.11-2.185.584-4.137.055-.228-.274-2.776.007-4.528.076-.473 1.251-1.066 1.789-1.057.536.008.263.944.274 1.101.12 1.682-.143 4.279-.193 4.632-.277 1.956-1.239 2.835-.981 4.13.135.679.154 1.293-.242 1.345.004.366.105.728.019.787z"/><path fill="#4289C1" d="M21.702 26.733c.021-3.063.014-6.5.014-6.5h-7.465s.035 3.747.123 6.46c.07 2.14.396 6.193.1 8.349-.066.479 2.886.937 2.844-.125-.078-1.969.264-6.322.328-7.309.035-.547.25-2.326.344-3.659.011-.018.295-.018.306 0 .094 1.333.308 3.112.344 3.659.064.987.406 5.34.328 7.309-.042 1.062 2.91.604 2.844.125-.298-2.157-.113-7.96-.11-8.309z"/><path fill="#77B255" d="M22.822 9.472c-.778-.849-3.536-1.449-3.536-1.449h-2.605s-2.757.6-3.536 1.449c-.945 1.031-1.15 2.895-1.15 2.895l1.882.318s.283.9.283 2.436-.177 5.896-.177 5.896h8.032s-.209-4.43-.209-5.895.315-2.437.315-2.437l1.85-.318c.001 0-.205-1.865-1.149-2.895z"/><path fill="#FFDC5D" d="M19.344 4.369l-2.688.019v3.981c0 .963 2.688.998 2.688 0v-4z"/><path fill="#F9CA55" d="M19.344 3.86l-2.688.019V7.78s1.17 1.151 2.688.035V3.86z"/><path fill="#FFAC33" d="M18.402.716c-.613-.078-1.567.093-2.032.605-.651-.233-1.415.479-1.415 1.453 0 1.116.164 2.206.857 2.64.52.723 1.571 1.046 2.53 1.046 1.582 0 2.703-.756 2.703-3.093 0-1.883-.992-2.442-2.643-2.651z"/><path fill="#FFDC5D" d="M20.687 2.292h-5.21V5.03c0 1.337 1.166 2.993 2.605 2.993s2.605-1.516 2.605-2.912V2.292z"/><path fill="#FFAC33" d="M17.146 1.588l-1.67.704v2.084c0-.799.545-.846.871-1.358.012.322.658.628 1.636.628.744 0 2.703-1.291 2.703.73V2.007l-3.54-.419z"/><circle fill="#662113" cx="17.033" cy="4.786" r=".339"/><circle fill="#662113" cx="19.15" cy="4.786" r=".339"/><path fill="#C1694F" d="M18.573 6.984h-.953c-.102 0-.186-.084-.186-.186s.084-.186.186-.186h.953c.102 0 .186.084.186.186s-.084.186-.186.186zm-.279-.838h-.395c-.109 0-.198-.089-.198-.198 0-.109.089-.198.198-.198h.395c.109 0 .198.089.198.198 0 .109-.089.198-.198.198z"/><path fill="#292F33" d="M13.789 35.907c-.558-.051-.192-.684.062-.897.282-.238.734-.441.961-.852.251-.455 1.465-.395 1.721-.023.457.664.66.179.792.488.212.494.05 1.284.05 1.284h-3.586zm8.666 0c.558-.051.192-.684-.062-.897-.282-.238-.734-.441-.961-.852-.251-.455-1.465-.395-1.721-.023-.457.664-.66.179-.792.488-.212.494-.05 1.284-.05 1.284h3.586z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f9ce-1f3fb-200d-2640-fe0f.svg b/public/emoji/1f9ce-1f3fb-200d-2640-fe0f.svg
new file mode 100644
index 0000000000000000000000000000000000000000..77c8b9ba10394d4ebd9043f69d5dd9ab7133a73e
--- /dev/null
+++ b/public/emoji/1f9ce-1f3fb-200d-2640-fe0f.svg
@@ -0,0 +1 @@
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#F7DECE" d="M20.591.985c-2.139-.842-5.474.244-5.861 2.743-.385 2.482.321 6.374 2.501 6.138 2.286-.247 4.63-.744 5.556-3.097.927-2.352-.056-4.942-2.196-5.784z"/><path fill="#F7DECE" d="M22.18 7.376c3.112-3.657-4.386-3.3-4.386-3.3-1.419.052-.442 2.416-1.11 3.707-.458.894 1.47 1.367 1.47 1.367s.885-.013.932 1.06v.01c.011.273-.018.598-.145 1.032-.635 2.149 2.252 3.467 2.885 1.313.251-.852.153-1.602.026-2.294l-.012-.061c-.191-1.028-.429-1.93.34-2.834z"/><path fill="#292F33" d="M23.035 1.848C21.611.181 19.652-.511 16.296.786c-2.931 1.133-1.988 3.463-1.306 3.065 1.882-1.097 3.131-.16 4.089 1.371.279-.752 1.507-1.214 1.755-.114.279 1.236-.869 1.775-.716 2.113.051.113-.058-.102 0 0 .734 1.289 1.929 1.694 1.929 1.694s.453.177 1.226-1.345c.773-1.522 1.177-4.067-.238-5.722z"/><path fill="#292F33" d="M22.264 3.601c2.904.626 1.712 5.155 1.997 6.821.35 2.051 2.364 2.124 2.364 2.124s-.332-1.429-.155-2.923c.246-2.072 1.597-3.745.171-5.768-1.821-2.584-6.182-.643-4.377-.254zm-2.012 28.637c-.937.204-1.397.837-1.522 1.423s.419 1.633.963 1.842 5.354.548 6.132-.078c1.162-.934-4.804-3.354-5.573-3.187z"/><path fill="#3A4449" d="M20.51 31.844c-.521.24-.552 1.313.159 2.024.846.846 2.409 1.519 3.34 1.769s2.548-.27 2.539-.923c-.009-.701-1.545-1.829-2.238-1.859-.693-.031-1.505-.042-1.868-.464-.362-.421-1.391-.796-1.932-.547z"/><path fill="#4289C1" d="M25.336 26.113c.655 2.154.529 4.598-1.058 5.452-1.52.818-4.71.946-4.71.946s-.905.89-.351 2.014c.315.639.649.921.58 1.007-.061.076-.748.153-1.053.214-.814.163-1.755.102-3.341.061-1.587-.041-2.272.113-3.998.076-1.912-.041-3.344-.507-4.298-2.08-.814-1.343-.395-3.338 1.505-4.638 1.546-1.058 6.469-2.197 8.341-2.482 1.873-.285 7.813-2.441 8.383-.57z"/><path fill="#2A6797" d="M11.014 32.461c.718.062 6.591.163 8.137.081 0 0 0 .57-1.505.651-1.505.081-4.516-.407-6.469-.244-.538.045-1.485.121-1.587-.041-.117-.185.925-.491 1.424-.447z"/><path fill="#9268CA" d="M25.28 24.097c0 1.946.508 2.792.592 3.638.047.47-1.553-.275-2.603-.41-2.727-.351-6.408-.309-6.408-.309-.557-2.685.576-4.818-.306-8.419-1.138-4.646 3.231-9.23 5.127-8.621 2.478.797 3.937 3.064 3.936 7.395 0 2.998-.338 4.78-.338 6.726z"/><path fill="#F7DECE" d="M19.3 15.532c-.341 2.345-.225 6.209-.58 6.395-2.051 1.072-4.163 3.421-5.517 3.961-.981.392-1.967.635-2.378 1.031-.659.634-1.453 1.184-1.497 1.8-.045.625.681.819 1.908.241.901-.424 1.624-.403 2.419-1.032 1.132-.896 6.19-1.666 7.84-4.348.557-.905.927-3.403 1.588-7.744-1.11-.401-3.783-.304-3.783-.304z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f9ce-1f3fb-200d-2642-fe0f.svg b/public/emoji/1f9ce-1f3fb-200d-2642-fe0f.svg
new file mode 100644
index 0000000000000000000000000000000000000000..09e6f4d9b29855c385db83700fff64509b0c8313
--- /dev/null
+++ b/public/emoji/1f9ce-1f3fb-200d-2642-fe0f.svg
@@ -0,0 +1 @@
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#F7DECE" d="M20.905 1.103c-2.182-.859-5.584.249-5.979 2.799-.393 2.532.328 6.502 2.552 6.262 2.332-.252 4.724-.759 5.668-3.16.944-2.399-.059-5.042-2.241-5.901z"/><path fill="#F7DECE" d="M22.526 7.623c3.175-3.73-4.474-3.367-4.474-3.367-1.448.053-.451 2.465-1.133 3.782-.467.912 1.499 1.395 1.499 1.395s.903-.013.951 1.082v.01c.011.279-.018.61-.148 1.053-.648 2.192 2.297 3.537 2.944 1.34.256-.869.157-1.634.027-2.34l-.012-.063c-.196-1.049-.44-1.969.346-2.892z"/><path fill="#292F33" d="M23.398 1.983C21.945.282 19.863-.621 16.523.9c-1.361.62-1.971.391-2.165.663-.93 1.306.337 2.753.833 2.464 1.572-.917 2.99-.644 3.352.019s.028 1.854.321 1.862c.792.021.664-.755.977-1.202.514-.731 1.296-.318 1.467.496.136.645 0 1.741-1.054 1.934.717 1.577 2.136 2.058 2.136 2.058s.461.181 1.25-1.371c.789-1.554 1.201-4.151-.242-5.84zm-2.732 30.242c-.937.204-1.397.837-1.522 1.423-.126.586.419 1.633.963 1.842s5.354.548 6.132-.078c1.162-.934-4.804-3.354-5.573-3.187z"/><path fill="#3A4449" d="M20.924 31.831c-.521.24-.593 1.505.045 2.283.721.879 2.524 1.26 3.455 1.51s2.442-.001 2.446-1.322c.004-1.115-1.452-1.429-2.145-1.46-.693-.031-1.505-.042-1.868-.464s-1.391-.796-1.933-.547z"/><path fill="#4289C1" d="M25.75 26.1c.655 2.154.529 4.598-1.058 5.452-1.52.818-4.71.946-4.71.946s-.905.89-.351 2.014c.315.639.649.921.58 1.007-.061.076-.748.153-1.053.214-.814.163-1.755.102-3.341.061s-2.272.113-3.998.076c-1.912-.041-3.344-.507-4.298-2.08-.814-1.343-.395-3.338 1.505-4.638 1.546-1.058 6.469-2.197 8.341-2.482 1.874-.285 7.814-2.441 8.383-.57z"/><path fill="#77B255" d="M26.377 25.554c-.057 1.128.391 2.499-.26 2.27-2.565-.9-9.188-.988-9.188-.988-.568-2.564-.037-6.416.008-9.956.059-4.645 3.148-7.192 5.082-6.61 2.528.761 3.689 3.387 4.016 7.511s.398 6.646.342 7.773z"/><path fill="#F7DECE" d="M19.382 16.204c-.442 2.329-.227 6.078-.59 6.249-2.095.984-3.883 3.239-5.259 3.722-.997.349-1.992.55-2.42.928-.686.605-1.503 1.121-1.573 1.735-.072.623.645.847 1.896.323.919-.385 1.64-.333 2.461-.928 1.17-.847 5.832-1.399 7.596-4.008.595-.881 1.227-2.94 2.074-7.249-1.091-.449-4.185-.772-4.185-.772z"/><path fill="#2A6797" d="M11.429 32.448c.718.062 6.591.163 8.137.081 0 0 0 .57-1.505.651-1.505.081-4.516-.407-6.469-.244-.538.045-1.485.121-1.587-.041-.117-.185.924-.491 1.424-.447z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f9ce-1f3fb.svg b/public/emoji/1f9ce-1f3fb.svg
new file mode 100644
index 0000000000000000000000000000000000000000..09e6f4d9b29855c385db83700fff64509b0c8313
--- /dev/null
+++ b/public/emoji/1f9ce-1f3fb.svg
@@ -0,0 +1 @@
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#F7DECE" d="M20.905 1.103c-2.182-.859-5.584.249-5.979 2.799-.393 2.532.328 6.502 2.552 6.262 2.332-.252 4.724-.759 5.668-3.16.944-2.399-.059-5.042-2.241-5.901z"/><path fill="#F7DECE" d="M22.526 7.623c3.175-3.73-4.474-3.367-4.474-3.367-1.448.053-.451 2.465-1.133 3.782-.467.912 1.499 1.395 1.499 1.395s.903-.013.951 1.082v.01c.011.279-.018.61-.148 1.053-.648 2.192 2.297 3.537 2.944 1.34.256-.869.157-1.634.027-2.34l-.012-.063c-.196-1.049-.44-1.969.346-2.892z"/><path fill="#292F33" d="M23.398 1.983C21.945.282 19.863-.621 16.523.9c-1.361.62-1.971.391-2.165.663-.93 1.306.337 2.753.833 2.464 1.572-.917 2.99-.644 3.352.019s.028 1.854.321 1.862c.792.021.664-.755.977-1.202.514-.731 1.296-.318 1.467.496.136.645 0 1.741-1.054 1.934.717 1.577 2.136 2.058 2.136 2.058s.461.181 1.25-1.371c.789-1.554 1.201-4.151-.242-5.84zm-2.732 30.242c-.937.204-1.397.837-1.522 1.423-.126.586.419 1.633.963 1.842s5.354.548 6.132-.078c1.162-.934-4.804-3.354-5.573-3.187z"/><path fill="#3A4449" d="M20.924 31.831c-.521.24-.593 1.505.045 2.283.721.879 2.524 1.26 3.455 1.51s2.442-.001 2.446-1.322c.004-1.115-1.452-1.429-2.145-1.46-.693-.031-1.505-.042-1.868-.464s-1.391-.796-1.933-.547z"/><path fill="#4289C1" d="M25.75 26.1c.655 2.154.529 4.598-1.058 5.452-1.52.818-4.71.946-4.71.946s-.905.89-.351 2.014c.315.639.649.921.58 1.007-.061.076-.748.153-1.053.214-.814.163-1.755.102-3.341.061s-2.272.113-3.998.076c-1.912-.041-3.344-.507-4.298-2.08-.814-1.343-.395-3.338 1.505-4.638 1.546-1.058 6.469-2.197 8.341-2.482 1.874-.285 7.814-2.441 8.383-.57z"/><path fill="#77B255" d="M26.377 25.554c-.057 1.128.391 2.499-.26 2.27-2.565-.9-9.188-.988-9.188-.988-.568-2.564-.037-6.416.008-9.956.059-4.645 3.148-7.192 5.082-6.61 2.528.761 3.689 3.387 4.016 7.511s.398 6.646.342 7.773z"/><path fill="#F7DECE" d="M19.382 16.204c-.442 2.329-.227 6.078-.59 6.249-2.095.984-3.883 3.239-5.259 3.722-.997.349-1.992.55-2.42.928-.686.605-1.503 1.121-1.573 1.735-.072.623.645.847 1.896.323.919-.385 1.64-.333 2.461-.928 1.17-.847 5.832-1.399 7.596-4.008.595-.881 1.227-2.94 2.074-7.249-1.091-.449-4.185-.772-4.185-.772z"/><path fill="#2A6797" d="M11.429 32.448c.718.062 6.591.163 8.137.081 0 0 0 .57-1.505.651-1.505.081-4.516-.407-6.469-.244-.538.045-1.485.121-1.587-.041-.117-.185.924-.491 1.424-.447z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f9ce-1f3fc-200d-2640-fe0f.svg b/public/emoji/1f9ce-1f3fc-200d-2640-fe0f.svg
new file mode 100644
index 0000000000000000000000000000000000000000..cf2ca0cc982f312a25c956dfe3eb4703e49b4180
--- /dev/null
+++ b/public/emoji/1f9ce-1f3fc-200d-2640-fe0f.svg
@@ -0,0 +1 @@
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#F3D2A2" d="M20.591.985c-2.139-.842-5.474.244-5.861 2.743-.385 2.482.321 6.374 2.501 6.138 2.286-.247 4.63-.744 5.556-3.097.927-2.352-.056-4.942-2.196-5.784z"/><path fill="#F3D2A2" d="M22.18 7.376c3.112-3.657-4.386-3.3-4.386-3.3-1.419.052-.442 2.416-1.11 3.707-.458.894 1.47 1.367 1.47 1.367s.885-.013.932 1.06v.01c.011.273-.018.598-.145 1.032-.635 2.149 2.252 3.467 2.885 1.313.251-.852.153-1.602.026-2.294l-.012-.061c-.191-1.028-.429-1.93.34-2.834z"/><path fill="#FFE51E" d="M23.035 1.848C21.611.181 19.652-.511 16.296.786c-2.931 1.133-1.988 3.463-1.306 3.065 1.882-1.097 3.131-.16 4.089 1.371.279-.752 1.507-1.214 1.755-.114.279 1.236-.869 1.775-.716 2.113.051.113-.058-.102 0 0 .734 1.289 1.929 1.694 1.929 1.694s.453.177 1.226-1.345c.773-1.522 1.177-4.067-.238-5.722z"/><path fill="#FFE51E" d="M22.264 3.601c2.904.626 1.712 5.155 1.997 6.821.35 2.051 2.364 2.124 2.364 2.124s-.332-1.429-.155-2.923c.246-2.072 1.597-3.745.171-5.768-1.821-2.584-6.182-.643-4.377-.254z"/><path fill="#292F33" d="M20.252 32.238c-.937.204-1.397.837-1.522 1.423s.419 1.633.963 1.842 5.354.548 6.132-.078c1.162-.934-4.804-3.354-5.573-3.187z"/><path fill="#3A4449" d="M20.51 31.844c-.521.24-.552 1.313.159 2.024.846.846 2.409 1.519 3.34 1.769s2.548-.27 2.539-.923c-.009-.701-1.545-1.829-2.238-1.859-.693-.031-1.505-.042-1.868-.464-.362-.421-1.391-.796-1.932-.547z"/><path fill="#4289C1" d="M25.336 26.113c.655 2.154.529 4.598-1.058 5.452-1.52.818-4.71.946-4.71.946s-.905.89-.351 2.014c.315.639.649.921.58 1.007-.061.076-.748.153-1.053.214-.814.163-1.755.102-3.341.061-1.587-.041-2.272.113-3.998.076-1.912-.041-3.344-.507-4.298-2.08-.814-1.343-.395-3.338 1.505-4.638 1.546-1.058 6.469-2.197 8.341-2.482 1.873-.285 7.813-2.441 8.383-.57z"/><path fill="#2A6797" d="M11.014 32.461c.718.062 6.591.163 8.137.081 0 0 0 .57-1.505.651-1.505.081-4.516-.407-6.469-.244-.538.045-1.485.121-1.587-.041-.117-.185.925-.491 1.424-.447z"/><path fill="#9268CA" d="M25.28 24.097c0 1.946.508 2.792.592 3.638.047.47-1.553-.275-2.603-.41-2.727-.351-6.408-.309-6.408-.309-.557-2.685.576-4.818-.306-8.419-1.138-4.646 3.231-9.23 5.127-8.621 2.478.797 3.937 3.064 3.936 7.395 0 2.998-.338 4.78-.338 6.726z"/><path fill="#F3D2A2" d="M19.3 15.532c-.341 2.345-.225 6.209-.58 6.395-2.051 1.072-4.163 3.421-5.517 3.961-.981.392-1.967.635-2.378 1.031-.659.634-1.453 1.184-1.497 1.8-.045.625.681.819 1.908.241.901-.424 1.624-.403 2.419-1.032 1.132-.896 6.19-1.666 7.84-4.348.557-.905.927-3.403 1.588-7.744-1.11-.401-3.783-.304-3.783-.304z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f9ce-1f3fc-200d-2642-fe0f.svg b/public/emoji/1f9ce-1f3fc-200d-2642-fe0f.svg
new file mode 100644
index 0000000000000000000000000000000000000000..9bd2fc01dc7bd8d361f788b787914dbd3b1b4015
--- /dev/null
+++ b/public/emoji/1f9ce-1f3fc-200d-2642-fe0f.svg
@@ -0,0 +1 @@
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#F3D2A2" d="M20.905 1.103c-2.182-.859-5.584.249-5.979 2.799-.393 2.532.328 6.502 2.552 6.262 2.332-.252 4.724-.759 5.668-3.16.944-2.399-.059-5.042-2.241-5.901z"/><path fill="#F3D2A2" d="M22.526 7.623c3.175-3.73-4.474-3.367-4.474-3.367-1.448.053-.451 2.465-1.133 3.782-.467.912 1.499 1.395 1.499 1.395s.903-.013.951 1.082v.01c.011.279-.018.61-.148 1.053-.648 2.192 2.297 3.537 2.944 1.34.256-.869.157-1.634.027-2.34l-.012-.063c-.196-1.049-.44-1.969.346-2.892z"/><path fill="#FFE51E" d="M23.398 1.983C21.945.282 19.863-.621 16.523.9c-1.361.62-1.971.391-2.165.663-.93 1.306.337 2.753.833 2.464 1.572-.917 2.99-.644 3.352.019s.028 1.854.321 1.862c.792.021.664-.755.977-1.202.514-.731 1.296-.318 1.467.496.136.645 0 1.741-1.054 1.934.717 1.577 2.136 2.058 2.136 2.058s.461.181 1.25-1.371c.789-1.554 1.201-4.151-.242-5.84z"/><path fill="#292F33" d="M20.666 32.225c-.937.204-1.397.837-1.522 1.423-.126.586.419 1.633.963 1.842s5.354.548 6.132-.078c1.162-.934-4.804-3.354-5.573-3.187z"/><path fill="#3A4449" d="M20.924 31.831c-.521.24-.593 1.505.045 2.283.721.879 2.524 1.26 3.455 1.51s2.442-.001 2.446-1.322c.004-1.115-1.452-1.429-2.145-1.46-.693-.031-1.505-.042-1.868-.464s-1.391-.796-1.933-.547z"/><path fill="#4289C1" d="M25.75 26.1c.655 2.154.529 4.598-1.058 5.452-1.52.818-4.71.946-4.71.946s-.905.89-.351 2.014c.315.639.649.921.58 1.007-.061.076-.748.153-1.053.214-.814.163-1.755.102-3.341.061s-2.272.113-3.998.076c-1.912-.041-3.344-.507-4.298-2.08-.814-1.343-.395-3.338 1.505-4.638 1.546-1.058 6.469-2.197 8.341-2.482 1.874-.285 7.814-2.441 8.383-.57z"/><path fill="#77B255" d="M26.377 25.554c-.057 1.128.391 2.499-.26 2.27-2.565-.9-9.188-.988-9.188-.988-.568-2.564-.037-6.416.008-9.956.059-4.645 3.148-7.192 5.082-6.61 2.528.761 3.689 3.387 4.016 7.511s.398 6.646.342 7.773z"/><path fill="#F3D2A2" d="M19.382 16.204c-.442 2.329-.227 6.078-.59 6.249-2.095.984-3.883 3.239-5.259 3.722-.997.349-1.992.55-2.42.928-.686.605-1.503 1.121-1.573 1.735-.072.623.645.847 1.896.323.919-.385 1.64-.333 2.461-.928 1.17-.847 5.832-1.399 7.596-4.008.595-.881 1.227-2.94 2.074-7.249-1.091-.449-4.185-.772-4.185-.772z"/><path fill="#2A6797" d="M11.429 32.448c.718.062 6.591.163 8.137.081 0 0 0 .57-1.505.651-1.505.081-4.516-.407-6.469-.244-.538.045-1.485.121-1.587-.041-.117-.185.924-.491 1.424-.447z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f9ce-1f3fc.svg b/public/emoji/1f9ce-1f3fc.svg
new file mode 100644
index 0000000000000000000000000000000000000000..9bd2fc01dc7bd8d361f788b787914dbd3b1b4015
--- /dev/null
+++ b/public/emoji/1f9ce-1f3fc.svg
@@ -0,0 +1 @@
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#F3D2A2" d="M20.905 1.103c-2.182-.859-5.584.249-5.979 2.799-.393 2.532.328 6.502 2.552 6.262 2.332-.252 4.724-.759 5.668-3.16.944-2.399-.059-5.042-2.241-5.901z"/><path fill="#F3D2A2" d="M22.526 7.623c3.175-3.73-4.474-3.367-4.474-3.367-1.448.053-.451 2.465-1.133 3.782-.467.912 1.499 1.395 1.499 1.395s.903-.013.951 1.082v.01c.011.279-.018.61-.148 1.053-.648 2.192 2.297 3.537 2.944 1.34.256-.869.157-1.634.027-2.34l-.012-.063c-.196-1.049-.44-1.969.346-2.892z"/><path fill="#FFE51E" d="M23.398 1.983C21.945.282 19.863-.621 16.523.9c-1.361.62-1.971.391-2.165.663-.93 1.306.337 2.753.833 2.464 1.572-.917 2.99-.644 3.352.019s.028 1.854.321 1.862c.792.021.664-.755.977-1.202.514-.731 1.296-.318 1.467.496.136.645 0 1.741-1.054 1.934.717 1.577 2.136 2.058 2.136 2.058s.461.181 1.25-1.371c.789-1.554 1.201-4.151-.242-5.84z"/><path fill="#292F33" d="M20.666 32.225c-.937.204-1.397.837-1.522 1.423-.126.586.419 1.633.963 1.842s5.354.548 6.132-.078c1.162-.934-4.804-3.354-5.573-3.187z"/><path fill="#3A4449" d="M20.924 31.831c-.521.24-.593 1.505.045 2.283.721.879 2.524 1.26 3.455 1.51s2.442-.001 2.446-1.322c.004-1.115-1.452-1.429-2.145-1.46-.693-.031-1.505-.042-1.868-.464s-1.391-.796-1.933-.547z"/><path fill="#4289C1" d="M25.75 26.1c.655 2.154.529 4.598-1.058 5.452-1.52.818-4.71.946-4.71.946s-.905.89-.351 2.014c.315.639.649.921.58 1.007-.061.076-.748.153-1.053.214-.814.163-1.755.102-3.341.061s-2.272.113-3.998.076c-1.912-.041-3.344-.507-4.298-2.08-.814-1.343-.395-3.338 1.505-4.638 1.546-1.058 6.469-2.197 8.341-2.482 1.874-.285 7.814-2.441 8.383-.57z"/><path fill="#77B255" d="M26.377 25.554c-.057 1.128.391 2.499-.26 2.27-2.565-.9-9.188-.988-9.188-.988-.568-2.564-.037-6.416.008-9.956.059-4.645 3.148-7.192 5.082-6.61 2.528.761 3.689 3.387 4.016 7.511s.398 6.646.342 7.773z"/><path fill="#F3D2A2" d="M19.382 16.204c-.442 2.329-.227 6.078-.59 6.249-2.095.984-3.883 3.239-5.259 3.722-.997.349-1.992.55-2.42.928-.686.605-1.503 1.121-1.573 1.735-.072.623.645.847 1.896.323.919-.385 1.64-.333 2.461-.928 1.17-.847 5.832-1.399 7.596-4.008.595-.881 1.227-2.94 2.074-7.249-1.091-.449-4.185-.772-4.185-.772z"/><path fill="#2A6797" d="M11.429 32.448c.718.062 6.591.163 8.137.081 0 0 0 .57-1.505.651-1.505.081-4.516-.407-6.469-.244-.538.045-1.485.121-1.587-.041-.117-.185.924-.491 1.424-.447z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f9ce-1f3fd-200d-2640-fe0f.svg b/public/emoji/1f9ce-1f3fd-200d-2640-fe0f.svg
new file mode 100644
index 0000000000000000000000000000000000000000..ed058b9d9d6df7aa923414f2c78dcb7085d61bf6
--- /dev/null
+++ b/public/emoji/1f9ce-1f3fd-200d-2640-fe0f.svg
@@ -0,0 +1 @@
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#D4AB88" d="M20.591.985c-2.139-.842-5.474.244-5.861 2.743-.385 2.482.321 6.374 2.501 6.138 2.286-.247 4.63-.744 5.556-3.097.927-2.352-.056-4.942-2.196-5.784z"/><path fill="#D4AB88" d="M22.18 7.376c3.112-3.657-4.386-3.3-4.386-3.3-1.419.052-.442 2.416-1.11 3.707-.458.894 1.47 1.367 1.47 1.367s.885-.013.932 1.06v.01c.011.273-.018.598-.145 1.032-.635 2.149 2.252 3.467 2.885 1.313.251-.852.153-1.602.026-2.294l-.012-.061c-.191-1.028-.429-1.93.34-2.834z"/><path fill="#963B22" d="M23.035 1.848C21.611.181 19.652-.511 16.296.786c-2.931 1.133-1.988 3.463-1.306 3.065 1.882-1.097 3.131-.16 4.089 1.371.279-.752 1.507-1.214 1.755-.114.279 1.236-.869 1.775-.716 2.113.051.113-.058-.102 0 0 .734 1.289 1.929 1.694 1.929 1.694s.453.177 1.226-1.345c.773-1.522 1.177-4.067-.238-5.722z"/><path fill="#963B22" d="M22.264 3.601c2.904.626 1.712 5.155 1.997 6.821.35 2.051 2.364 2.124 2.364 2.124s-.332-1.429-.155-2.923c.246-2.072 1.597-3.745.171-5.768-1.821-2.584-6.182-.643-4.377-.254z"/><path fill="#292F33" d="M20.252 32.238c-.937.204-1.397.837-1.522 1.423s.419 1.633.963 1.842 5.354.548 6.132-.078c1.162-.934-4.804-3.354-5.573-3.187z"/><path fill="#3A4449" d="M20.51 31.844c-.521.24-.552 1.313.159 2.024.846.846 2.409 1.519 3.34 1.769s2.548-.27 2.539-.923c-.009-.701-1.545-1.829-2.238-1.859-.693-.031-1.505-.042-1.868-.464-.362-.421-1.391-.796-1.932-.547z"/><path fill="#4289C1" d="M25.336 26.113c.655 2.154.529 4.598-1.058 5.452-1.52.818-4.71.946-4.71.946s-.905.89-.351 2.014c.315.639.649.921.58 1.007-.061.076-.748.153-1.053.214-.814.163-1.755.102-3.341.061-1.587-.041-2.272.113-3.998.076-1.912-.041-3.344-.507-4.298-2.08-.814-1.343-.395-3.338 1.505-4.638 1.546-1.058 6.469-2.197 8.341-2.482 1.873-.285 7.813-2.441 8.383-.57z"/><path fill="#2A6797" d="M11.014 32.461c.718.062 6.591.163 8.137.081 0 0 0 .57-1.505.651-1.505.081-4.516-.407-6.469-.244-.538.045-1.485.121-1.587-.041-.117-.185.925-.491 1.424-.447z"/><path fill="#9268CA" d="M25.28 24.097c0 1.946.508 2.792.592 3.638.047.47-1.553-.275-2.603-.41-2.727-.351-6.408-.309-6.408-.309-.557-2.685.576-4.818-.306-8.419-1.138-4.646 3.231-9.23 5.127-8.621 2.478.797 3.937 3.064 3.936 7.395 0 2.998-.338 4.78-.338 6.726z"/><path fill="#D4AB88" d="M19.3 15.532c-.341 2.345-.225 6.209-.58 6.395-2.051 1.072-4.163 3.421-5.517 3.961-.981.392-1.967.635-2.378 1.031-.659.634-1.453 1.184-1.497 1.8-.045.625.681.819 1.908.241.901-.424 1.624-.403 2.419-1.032 1.132-.896 6.19-1.666 7.84-4.348.557-.905.927-3.403 1.588-7.744-1.11-.401-3.783-.304-3.783-.304z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f9ce-1f3fd-200d-2642-fe0f.svg b/public/emoji/1f9ce-1f3fd-200d-2642-fe0f.svg
new file mode 100644
index 0000000000000000000000000000000000000000..10df60c9b3e1258de2ebb86625069a4ff80074ff
--- /dev/null
+++ b/public/emoji/1f9ce-1f3fd-200d-2642-fe0f.svg
@@ -0,0 +1 @@
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#D4AB88" d="M20.905 1.103c-2.182-.859-5.584.249-5.979 2.799-.393 2.532.328 6.502 2.552 6.262 2.332-.252 4.724-.759 5.668-3.16.944-2.399-.059-5.042-2.241-5.901z"/><path fill="#D4AB88" d="M22.526 7.623c3.175-3.73-4.474-3.367-4.474-3.367-1.448.053-.451 2.465-1.133 3.782-.467.912 1.499 1.395 1.499 1.395s.903-.013.951 1.082v.01c.011.279-.018.61-.148 1.053-.648 2.192 2.297 3.537 2.944 1.34.256-.869.157-1.634.027-2.34l-.012-.063c-.196-1.049-.44-1.969.346-2.892z"/><path fill="#963B22" d="M23.398 1.983C21.945.282 19.863-.621 16.523.9c-1.361.62-1.971.391-2.165.663-.93 1.306.337 2.753.833 2.464 1.572-.917 2.99-.644 3.352.019s.028 1.854.321 1.862c.792.021.664-.755.977-1.202.514-.731 1.296-.318 1.467.496.136.645 0 1.741-1.054 1.934.717 1.577 2.136 2.058 2.136 2.058s.461.181 1.25-1.371c.789-1.554 1.201-4.151-.242-5.84z"/><path fill="#292F33" d="M20.666 32.225c-.937.204-1.397.837-1.522 1.423-.126.586.419 1.633.963 1.842s5.354.548 6.132-.078c1.162-.934-4.804-3.354-5.573-3.187z"/><path fill="#3A4449" d="M20.924 31.831c-.521.24-.593 1.505.045 2.283.721.879 2.524 1.26 3.455 1.51s2.442-.001 2.446-1.322c.004-1.115-1.452-1.429-2.145-1.46-.693-.031-1.505-.042-1.868-.464s-1.391-.796-1.933-.547z"/><path fill="#4289C1" d="M25.75 26.1c.655 2.154.529 4.598-1.058 5.452-1.52.818-4.71.946-4.71.946s-.905.89-.351 2.014c.315.639.649.921.58 1.007-.061.076-.748.153-1.053.214-.814.163-1.755.102-3.341.061s-2.272.113-3.998.076c-1.912-.041-3.344-.507-4.298-2.08-.814-1.343-.395-3.338 1.505-4.638 1.546-1.058 6.469-2.197 8.341-2.482 1.874-.285 7.814-2.441 8.383-.57z"/><path fill="#77B255" d="M26.377 25.554c-.057 1.128.391 2.499-.26 2.27-2.565-.9-9.188-.988-9.188-.988-.568-2.564-.037-6.416.008-9.956.059-4.645 3.148-7.192 5.082-6.61 2.528.761 3.689 3.387 4.016 7.511s.398 6.646.342 7.773z"/><path fill="#D4AB88" d="M19.382 16.204c-.442 2.329-.227 6.078-.59 6.249-2.095.984-3.883 3.239-5.259 3.722-.997.349-1.992.55-2.42.928-.686.605-1.503 1.121-1.573 1.735-.072.623.645.847 1.896.323.919-.385 1.64-.333 2.461-.928 1.17-.847 5.832-1.399 7.596-4.008.595-.881 1.227-2.94 2.074-7.249-1.091-.449-4.185-.772-4.185-.772z"/><path fill="#2A6797" d="M11.429 32.448c.718.062 6.591.163 8.137.081 0 0 0 .57-1.505.651-1.505.081-4.516-.407-6.469-.244-.538.045-1.485.121-1.587-.041-.117-.185.924-.491 1.424-.447z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f9ce-1f3fd.svg b/public/emoji/1f9ce-1f3fd.svg
new file mode 100644
index 0000000000000000000000000000000000000000..10df60c9b3e1258de2ebb86625069a4ff80074ff
--- /dev/null
+++ b/public/emoji/1f9ce-1f3fd.svg
@@ -0,0 +1 @@
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#D4AB88" d="M20.905 1.103c-2.182-.859-5.584.249-5.979 2.799-.393 2.532.328 6.502 2.552 6.262 2.332-.252 4.724-.759 5.668-3.16.944-2.399-.059-5.042-2.241-5.901z"/><path fill="#D4AB88" d="M22.526 7.623c3.175-3.73-4.474-3.367-4.474-3.367-1.448.053-.451 2.465-1.133 3.782-.467.912 1.499 1.395 1.499 1.395s.903-.013.951 1.082v.01c.011.279-.018.61-.148 1.053-.648 2.192 2.297 3.537 2.944 1.34.256-.869.157-1.634.027-2.34l-.012-.063c-.196-1.049-.44-1.969.346-2.892z"/><path fill="#963B22" d="M23.398 1.983C21.945.282 19.863-.621 16.523.9c-1.361.62-1.971.391-2.165.663-.93 1.306.337 2.753.833 2.464 1.572-.917 2.99-.644 3.352.019s.028 1.854.321 1.862c.792.021.664-.755.977-1.202.514-.731 1.296-.318 1.467.496.136.645 0 1.741-1.054 1.934.717 1.577 2.136 2.058 2.136 2.058s.461.181 1.25-1.371c.789-1.554 1.201-4.151-.242-5.84z"/><path fill="#292F33" d="M20.666 32.225c-.937.204-1.397.837-1.522 1.423-.126.586.419 1.633.963 1.842s5.354.548 6.132-.078c1.162-.934-4.804-3.354-5.573-3.187z"/><path fill="#3A4449" d="M20.924 31.831c-.521.24-.593 1.505.045 2.283.721.879 2.524 1.26 3.455 1.51s2.442-.001 2.446-1.322c.004-1.115-1.452-1.429-2.145-1.46-.693-.031-1.505-.042-1.868-.464s-1.391-.796-1.933-.547z"/><path fill="#4289C1" d="M25.75 26.1c.655 2.154.529 4.598-1.058 5.452-1.52.818-4.71.946-4.71.946s-.905.89-.351 2.014c.315.639.649.921.58 1.007-.061.076-.748.153-1.053.214-.814.163-1.755.102-3.341.061s-2.272.113-3.998.076c-1.912-.041-3.344-.507-4.298-2.08-.814-1.343-.395-3.338 1.505-4.638 1.546-1.058 6.469-2.197 8.341-2.482 1.874-.285 7.814-2.441 8.383-.57z"/><path fill="#77B255" d="M26.377 25.554c-.057 1.128.391 2.499-.26 2.27-2.565-.9-9.188-.988-9.188-.988-.568-2.564-.037-6.416.008-9.956.059-4.645 3.148-7.192 5.082-6.61 2.528.761 3.689 3.387 4.016 7.511s.398 6.646.342 7.773z"/><path fill="#D4AB88" d="M19.382 16.204c-.442 2.329-.227 6.078-.59 6.249-2.095.984-3.883 3.239-5.259 3.722-.997.349-1.992.55-2.42.928-.686.605-1.503 1.121-1.573 1.735-.072.623.645.847 1.896.323.919-.385 1.64-.333 2.461-.928 1.17-.847 5.832-1.399 7.596-4.008.595-.881 1.227-2.94 2.074-7.249-1.091-.449-4.185-.772-4.185-.772z"/><path fill="#2A6797" d="M11.429 32.448c.718.062 6.591.163 8.137.081 0 0 0 .57-1.505.651-1.505.081-4.516-.407-6.469-.244-.538.045-1.485.121-1.587-.041-.117-.185.924-.491 1.424-.447z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f9ce-1f3fe-200d-2640-fe0f.svg b/public/emoji/1f9ce-1f3fe-200d-2640-fe0f.svg
new file mode 100644
index 0000000000000000000000000000000000000000..83206f8d2f8d894da3d99b46852cc8b329bb4adc
--- /dev/null
+++ b/public/emoji/1f9ce-1f3fe-200d-2640-fe0f.svg
@@ -0,0 +1 @@
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#AF7E57" d="M20.591.985c-2.139-.842-5.474.244-5.861 2.743-.385 2.482.321 6.374 2.501 6.138 2.286-.247 4.63-.744 5.556-3.097.927-2.352-.056-4.942-2.196-5.784z"/><path fill="#AF7E57" d="M22.18 7.376c3.112-3.657-4.386-3.3-4.386-3.3-1.419.052-.442 2.416-1.11 3.707-.458.894 1.47 1.367 1.47 1.367s.885-.013.932 1.06v.01c.011.273-.018.598-.145 1.032-.635 2.149 2.252 3.467 2.885 1.313.251-.852.153-1.602.026-2.294l-.012-.061c-.191-1.028-.429-1.93.34-2.834z"/><path fill="#60352A" d="M23.035 1.848C21.611.181 19.652-.511 16.296.786c-2.931 1.133-1.988 3.463-1.306 3.065 1.882-1.097 3.131-.16 4.089 1.371.279-.752 1.507-1.214 1.755-.114.279 1.236-.869 1.775-.716 2.113.051.113-.058-.102 0 0 .734 1.289 1.929 1.694 1.929 1.694s.453.177 1.226-1.345c.773-1.522 1.177-4.067-.238-5.722z"/><path fill="#60352A" d="M22.264 3.601c2.904.626 1.712 5.155 1.997 6.821.35 2.051 2.364 2.124 2.364 2.124s-.332-1.429-.155-2.923c.246-2.072 1.597-3.745.171-5.768-1.821-2.584-6.182-.643-4.377-.254z"/><path fill="#292F33" d="M20.252 32.238c-.937.204-1.397.837-1.522 1.423s.419 1.633.963 1.842 5.354.548 6.132-.078c1.162-.934-4.804-3.354-5.573-3.187z"/><path fill="#3A4449" d="M20.51 31.844c-.521.24-.552 1.313.159 2.024.846.846 2.409 1.519 3.34 1.769s2.548-.27 2.539-.923c-.009-.701-1.545-1.829-2.238-1.859-.693-.031-1.505-.042-1.868-.464-.362-.421-1.391-.796-1.932-.547z"/><path fill="#4289C1" d="M25.336 26.113c.655 2.154.529 4.598-1.058 5.452-1.52.818-4.71.946-4.71.946s-.905.89-.351 2.014c.315.639.649.921.58 1.007-.061.076-.748.153-1.053.214-.814.163-1.755.102-3.341.061-1.587-.041-2.272.113-3.998.076-1.912-.041-3.344-.507-4.298-2.08-.814-1.343-.395-3.338 1.505-4.638 1.546-1.058 6.469-2.197 8.341-2.482 1.873-.285 7.813-2.441 8.383-.57z"/><path fill="#2A6797" d="M11.014 32.461c.718.062 6.591.163 8.137.081 0 0 0 .57-1.505.651-1.505.081-4.516-.407-6.469-.244-.538.045-1.485.121-1.587-.041-.117-.185.925-.491 1.424-.447z"/><path fill="#9268CA" d="M25.28 24.097c0 1.946.508 2.792.592 3.638.047.47-1.553-.275-2.603-.41-2.727-.351-6.408-.309-6.408-.309-.557-2.685.576-4.818-.306-8.419-1.138-4.646 3.231-9.23 5.127-8.621 2.478.797 3.937 3.064 3.936 7.395 0 2.998-.338 4.78-.338 6.726z"/><path fill="#AF7E57" d="M19.3 15.532c-.341 2.345-.225 6.209-.58 6.395-2.051 1.072-4.163 3.421-5.517 3.961-.981.392-1.967.635-2.378 1.031-.659.634-1.453 1.184-1.497 1.8-.045.625.681.819 1.908.241.901-.424 1.624-.403 2.419-1.032 1.132-.896 6.19-1.666 7.84-4.348.557-.905.927-3.403 1.588-7.744-1.11-.401-3.783-.304-3.783-.304z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f9ce-1f3fe-200d-2642-fe0f.svg b/public/emoji/1f9ce-1f3fe-200d-2642-fe0f.svg
new file mode 100644
index 0000000000000000000000000000000000000000..fb24b6dfb4b17d39f5e795a3f90a115ab658e68f
--- /dev/null
+++ b/public/emoji/1f9ce-1f3fe-200d-2642-fe0f.svg
@@ -0,0 +1 @@
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#AF7E57" d="M20.905 1.103c-2.182-.859-5.584.249-5.979 2.799-.393 2.532.328 6.502 2.552 6.262 2.332-.252 4.724-.759 5.668-3.16.944-2.399-.059-5.042-2.241-5.901z"/><path fill="#AF7E57" d="M22.526 7.623c3.175-3.73-4.474-3.367-4.474-3.367-1.448.053-.451 2.465-1.133 3.782-.467.912 1.499 1.395 1.499 1.395s.903-.013.951 1.082v.01c.011.279-.018.61-.148 1.053-.648 2.192 2.297 3.537 2.944 1.34.256-.869.157-1.634.027-2.34l-.012-.063c-.196-1.049-.44-1.969.346-2.892z"/><path fill="#60352A" d="M23.398 1.983C21.945.282 19.863-.621 16.523.9c-1.361.62-1.971.391-2.165.663-.93 1.306.337 2.753.833 2.464 1.572-.917 2.99-.644 3.352.019s.028 1.854.321 1.862c.792.021.664-.755.977-1.202.514-.731 1.296-.318 1.467.496.136.645 0 1.741-1.054 1.934.717 1.577 2.136 2.058 2.136 2.058s.461.181 1.25-1.371c.789-1.554 1.201-4.151-.242-5.84z"/><path fill="#292F33" d="M20.666 32.225c-.937.204-1.397.837-1.522 1.423-.126.586.419 1.633.963 1.842s5.354.548 6.132-.078c1.162-.934-4.804-3.354-5.573-3.187z"/><path fill="#3A4449" d="M20.924 31.831c-.521.24-.593 1.505.045 2.283.721.879 2.524 1.26 3.455 1.51s2.442-.001 2.446-1.322c.004-1.115-1.452-1.429-2.145-1.46-.693-.031-1.505-.042-1.868-.464s-1.391-.796-1.933-.547z"/><path fill="#4289C1" d="M25.75 26.1c.655 2.154.529 4.598-1.058 5.452-1.52.818-4.71.946-4.71.946s-.905.89-.351 2.014c.315.639.649.921.58 1.007-.061.076-.748.153-1.053.214-.814.163-1.755.102-3.341.061s-2.272.113-3.998.076c-1.912-.041-3.344-.507-4.298-2.08-.814-1.343-.395-3.338 1.505-4.638 1.546-1.058 6.469-2.197 8.341-2.482 1.874-.285 7.814-2.441 8.383-.57z"/><path fill="#77B255" d="M26.377 25.554c-.057 1.128.391 2.499-.26 2.27-2.565-.9-9.188-.988-9.188-.988-.568-2.564-.037-6.416.008-9.956.059-4.645 3.148-7.192 5.082-6.61 2.528.761 3.689 3.387 4.016 7.511s.398 6.646.342 7.773z"/><path fill="#AF7E57" d="M19.382 16.204c-.442 2.329-.227 6.078-.59 6.249-2.095.984-3.883 3.239-5.259 3.722-.997.349-1.992.55-2.42.928-.686.605-1.503 1.121-1.573 1.735-.072.623.645.847 1.896.323.919-.385 1.64-.333 2.461-.928 1.17-.847 5.832-1.399 7.596-4.008.595-.881 1.227-2.94 2.074-7.249-1.091-.449-4.185-.772-4.185-.772z"/><path fill="#2A6797" d="M11.429 32.448c.718.062 6.591.163 8.137.081 0 0 0 .57-1.505.651-1.505.081-4.516-.407-6.469-.244-.538.045-1.485.121-1.587-.041-.117-.185.924-.491 1.424-.447z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f9ce-1f3fe.svg b/public/emoji/1f9ce-1f3fe.svg
new file mode 100644
index 0000000000000000000000000000000000000000..fb24b6dfb4b17d39f5e795a3f90a115ab658e68f
--- /dev/null
+++ b/public/emoji/1f9ce-1f3fe.svg
@@ -0,0 +1 @@
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#AF7E57" d="M20.905 1.103c-2.182-.859-5.584.249-5.979 2.799-.393 2.532.328 6.502 2.552 6.262 2.332-.252 4.724-.759 5.668-3.16.944-2.399-.059-5.042-2.241-5.901z"/><path fill="#AF7E57" d="M22.526 7.623c3.175-3.73-4.474-3.367-4.474-3.367-1.448.053-.451 2.465-1.133 3.782-.467.912 1.499 1.395 1.499 1.395s.903-.013.951 1.082v.01c.011.279-.018.61-.148 1.053-.648 2.192 2.297 3.537 2.944 1.34.256-.869.157-1.634.027-2.34l-.012-.063c-.196-1.049-.44-1.969.346-2.892z"/><path fill="#60352A" d="M23.398 1.983C21.945.282 19.863-.621 16.523.9c-1.361.62-1.971.391-2.165.663-.93 1.306.337 2.753.833 2.464 1.572-.917 2.99-.644 3.352.019s.028 1.854.321 1.862c.792.021.664-.755.977-1.202.514-.731 1.296-.318 1.467.496.136.645 0 1.741-1.054 1.934.717 1.577 2.136 2.058 2.136 2.058s.461.181 1.25-1.371c.789-1.554 1.201-4.151-.242-5.84z"/><path fill="#292F33" d="M20.666 32.225c-.937.204-1.397.837-1.522 1.423-.126.586.419 1.633.963 1.842s5.354.548 6.132-.078c1.162-.934-4.804-3.354-5.573-3.187z"/><path fill="#3A4449" d="M20.924 31.831c-.521.24-.593 1.505.045 2.283.721.879 2.524 1.26 3.455 1.51s2.442-.001 2.446-1.322c.004-1.115-1.452-1.429-2.145-1.46-.693-.031-1.505-.042-1.868-.464s-1.391-.796-1.933-.547z"/><path fill="#4289C1" d="M25.75 26.1c.655 2.154.529 4.598-1.058 5.452-1.52.818-4.71.946-4.71.946s-.905.89-.351 2.014c.315.639.649.921.58 1.007-.061.076-.748.153-1.053.214-.814.163-1.755.102-3.341.061s-2.272.113-3.998.076c-1.912-.041-3.344-.507-4.298-2.08-.814-1.343-.395-3.338 1.505-4.638 1.546-1.058 6.469-2.197 8.341-2.482 1.874-.285 7.814-2.441 8.383-.57z"/><path fill="#77B255" d="M26.377 25.554c-.057 1.128.391 2.499-.26 2.27-2.565-.9-9.188-.988-9.188-.988-.568-2.564-.037-6.416.008-9.956.059-4.645 3.148-7.192 5.082-6.61 2.528.761 3.689 3.387 4.016 7.511s.398 6.646.342 7.773z"/><path fill="#AF7E57" d="M19.382 16.204c-.442 2.329-.227 6.078-.59 6.249-2.095.984-3.883 3.239-5.259 3.722-.997.349-1.992.55-2.42.928-.686.605-1.503 1.121-1.573 1.735-.072.623.645.847 1.896.323.919-.385 1.64-.333 2.461-.928 1.17-.847 5.832-1.399 7.596-4.008.595-.881 1.227-2.94 2.074-7.249-1.091-.449-4.185-.772-4.185-.772z"/><path fill="#2A6797" d="M11.429 32.448c.718.062 6.591.163 8.137.081 0 0 0 .57-1.505.651-1.505.081-4.516-.407-6.469-.244-.538.045-1.485.121-1.587-.041-.117-.185.924-.491 1.424-.447z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f9ce-1f3ff-200d-2640-fe0f.svg b/public/emoji/1f9ce-1f3ff-200d-2640-fe0f.svg
new file mode 100644
index 0000000000000000000000000000000000000000..442cb9c498b02ac3c0fcf784ee80fb12b2c1ac6b
--- /dev/null
+++ b/public/emoji/1f9ce-1f3ff-200d-2640-fe0f.svg
@@ -0,0 +1 @@
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#7C533E" d="M20.591.985c-2.139-.842-5.474.244-5.861 2.743-.385 2.482.321 6.374 2.501 6.138 2.286-.247 4.63-.744 5.556-3.097.927-2.352-.056-4.942-2.196-5.784z"/><path fill="#7C533E" d="M22.18 7.376c3.112-3.657-4.386-3.3-4.386-3.3-1.419.052-.442 2.416-1.11 3.707-.458.894 1.47 1.367 1.47 1.367s.885-.013.932 1.06v.01c.011.273-.018.598-.145 1.032-.635 2.149 2.252 3.467 2.885 1.313.251-.852.153-1.602.026-2.294l-.012-.061c-.191-1.028-.429-1.93.34-2.834z"/><path fill="#0B0200" d="M23.035 1.848C21.611.181 19.652-.511 16.296.786c-2.931 1.133-1.988 3.463-1.306 3.065 1.882-1.097 3.131-.16 4.089 1.371.279-.752 1.507-1.214 1.755-.114.279 1.236-.869 1.775-.716 2.113.051.113-.058-.102 0 0 .734 1.289 1.929 1.694 1.929 1.694s.453.177 1.226-1.345c.773-1.522 1.177-4.067-.238-5.722z"/><path fill="#0B0200" d="M22.264 3.601c2.904.626 1.712 5.155 1.997 6.821.35 2.051 2.364 2.124 2.364 2.124s-.332-1.429-.155-2.923c.246-2.072 1.597-3.745.171-5.768-1.821-2.584-6.182-.643-4.377-.254z"/><path fill="#292F33" d="M20.252 32.238c-.937.204-1.397.837-1.522 1.423s.419 1.633.963 1.842 5.354.548 6.132-.078c1.162-.934-4.804-3.354-5.573-3.187z"/><path fill="#3A4449" d="M20.51 31.844c-.521.24-.552 1.313.159 2.024.846.846 2.409 1.519 3.34 1.769s2.548-.27 2.539-.923c-.009-.701-1.545-1.829-2.238-1.859-.693-.031-1.505-.042-1.868-.464-.362-.421-1.391-.796-1.932-.547z"/><path fill="#4289C1" d="M25.336 26.113c.655 2.154.529 4.598-1.058 5.452-1.52.818-4.71.946-4.71.946s-.905.89-.351 2.014c.315.639.649.921.58 1.007-.061.076-.748.153-1.053.214-.814.163-1.755.102-3.341.061-1.587-.041-2.272.113-3.998.076-1.912-.041-3.344-.507-4.298-2.08-.814-1.343-.395-3.338 1.505-4.638 1.546-1.058 6.469-2.197 8.341-2.482 1.873-.285 7.813-2.441 8.383-.57z"/><path fill="#2A6797" d="M11.014 32.461c.718.062 6.591.163 8.137.081 0 0 0 .57-1.505.651-1.505.081-4.516-.407-6.469-.244-.538.045-1.485.121-1.587-.041-.117-.185.925-.491 1.424-.447z"/><path fill="#9268CA" d="M25.28 24.097c0 1.946.508 2.792.592 3.638.047.47-1.553-.275-2.603-.41-2.727-.351-6.408-.309-6.408-.309-.557-2.685.576-4.818-.306-8.419-1.138-4.646 3.231-9.23 5.127-8.621 2.478.797 3.937 3.064 3.936 7.395 0 2.998-.338 4.78-.338 6.726z"/><path fill="#7C533E" d="M19.3 15.532c-.341 2.345-.225 6.209-.58 6.395-2.051 1.072-4.163 3.421-5.517 3.961-.981.392-1.967.635-2.378 1.031-.659.634-1.453 1.184-1.497 1.8-.045.625.681.819 1.908.241.901-.424 1.624-.403 2.419-1.032 1.132-.896 6.19-1.666 7.84-4.348.557-.905.927-3.403 1.588-7.744-1.11-.401-3.783-.304-3.783-.304z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f9ce-1f3ff-200d-2642-fe0f.svg b/public/emoji/1f9ce-1f3ff-200d-2642-fe0f.svg
new file mode 100644
index 0000000000000000000000000000000000000000..aba0cb467f54e396f522a52a5130dba3ce527954
--- /dev/null
+++ b/public/emoji/1f9ce-1f3ff-200d-2642-fe0f.svg
@@ -0,0 +1 @@
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#7C533E" d="M20.905 1.103c-2.182-.859-5.584.249-5.979 2.799-.393 2.532.328 6.502 2.552 6.262 2.332-.252 4.724-.759 5.668-3.16.944-2.399-.059-5.042-2.241-5.901z"/><path fill="#7C533E" d="M22.526 7.623c3.175-3.73-4.474-3.367-4.474-3.367-1.448.053-.451 2.465-1.133 3.782-.467.912 1.499 1.395 1.499 1.395s.903-.013.951 1.082v.01c.011.279-.018.61-.148 1.053-.648 2.192 2.297 3.537 2.944 1.34.256-.869.157-1.634.027-2.34l-.012-.063c-.196-1.049-.44-1.969.346-2.892z"/><path fill="#0B0200" d="M23.398 1.983C21.945.282 19.863-.621 16.523.9c-1.361.62-1.971.391-2.165.663-.93 1.306.337 2.753.833 2.464 1.572-.917 2.99-.644 3.352.019s.028 1.854.321 1.862c.792.021.664-.755.977-1.202.514-.731 1.296-.318 1.467.496.136.645 0 1.741-1.054 1.934.717 1.577 2.136 2.058 2.136 2.058s.461.181 1.25-1.371c.789-1.554 1.201-4.151-.242-5.84z"/><path fill="#292F33" d="M20.666 32.225c-.937.204-1.397.837-1.522 1.423-.126.586.419 1.633.963 1.842s5.354.548 6.132-.078c1.162-.934-4.804-3.354-5.573-3.187z"/><path fill="#3A4449" d="M20.924 31.831c-.521.24-.593 1.505.045 2.283.721.879 2.524 1.26 3.455 1.51s2.442-.001 2.446-1.322c.004-1.115-1.452-1.429-2.145-1.46-.693-.031-1.505-.042-1.868-.464s-1.391-.796-1.933-.547z"/><path fill="#4289C1" d="M25.75 26.1c.655 2.154.529 4.598-1.058 5.452-1.52.818-4.71.946-4.71.946s-.905.89-.351 2.014c.315.639.649.921.58 1.007-.061.076-.748.153-1.053.214-.814.163-1.755.102-3.341.061s-2.272.113-3.998.076c-1.912-.041-3.344-.507-4.298-2.08-.814-1.343-.395-3.338 1.505-4.638 1.546-1.058 6.469-2.197 8.341-2.482 1.874-.285 7.814-2.441 8.383-.57z"/><path fill="#77B255" d="M26.377 25.554c-.057 1.128.391 2.499-.26 2.27-2.565-.9-9.188-.988-9.188-.988-.568-2.564-.037-6.416.008-9.956.059-4.645 3.148-7.192 5.082-6.61 2.528.761 3.689 3.387 4.016 7.511s.398 6.646.342 7.773z"/><path fill="#7C533E" d="M19.382 16.204c-.442 2.329-.227 6.078-.59 6.249-2.095.984-3.883 3.239-5.259 3.722-.997.349-1.992.55-2.42.928-.686.605-1.503 1.121-1.573 1.735-.072.623.645.847 1.896.323.919-.385 1.64-.333 2.461-.928 1.17-.847 5.832-1.399 7.596-4.008.595-.881 1.227-2.94 2.074-7.249-1.091-.449-4.185-.772-4.185-.772z"/><path fill="#2A6797" d="M11.429 32.448c.718.062 6.591.163 8.137.081 0 0 0 .57-1.505.651-1.505.081-4.516-.407-6.469-.244-.538.045-1.485.121-1.587-.041-.117-.185.924-.491 1.424-.447z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f9ce-1f3ff.svg b/public/emoji/1f9ce-1f3ff.svg
new file mode 100644
index 0000000000000000000000000000000000000000..aba0cb467f54e396f522a52a5130dba3ce527954
--- /dev/null
+++ b/public/emoji/1f9ce-1f3ff.svg
@@ -0,0 +1 @@
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#7C533E" d="M20.905 1.103c-2.182-.859-5.584.249-5.979 2.799-.393 2.532.328 6.502 2.552 6.262 2.332-.252 4.724-.759 5.668-3.16.944-2.399-.059-5.042-2.241-5.901z"/><path fill="#7C533E" d="M22.526 7.623c3.175-3.73-4.474-3.367-4.474-3.367-1.448.053-.451 2.465-1.133 3.782-.467.912 1.499 1.395 1.499 1.395s.903-.013.951 1.082v.01c.011.279-.018.61-.148 1.053-.648 2.192 2.297 3.537 2.944 1.34.256-.869.157-1.634.027-2.34l-.012-.063c-.196-1.049-.44-1.969.346-2.892z"/><path fill="#0B0200" d="M23.398 1.983C21.945.282 19.863-.621 16.523.9c-1.361.62-1.971.391-2.165.663-.93 1.306.337 2.753.833 2.464 1.572-.917 2.99-.644 3.352.019s.028 1.854.321 1.862c.792.021.664-.755.977-1.202.514-.731 1.296-.318 1.467.496.136.645 0 1.741-1.054 1.934.717 1.577 2.136 2.058 2.136 2.058s.461.181 1.25-1.371c.789-1.554 1.201-4.151-.242-5.84z"/><path fill="#292F33" d="M20.666 32.225c-.937.204-1.397.837-1.522 1.423-.126.586.419 1.633.963 1.842s5.354.548 6.132-.078c1.162-.934-4.804-3.354-5.573-3.187z"/><path fill="#3A4449" d="M20.924 31.831c-.521.24-.593 1.505.045 2.283.721.879 2.524 1.26 3.455 1.51s2.442-.001 2.446-1.322c.004-1.115-1.452-1.429-2.145-1.46-.693-.031-1.505-.042-1.868-.464s-1.391-.796-1.933-.547z"/><path fill="#4289C1" d="M25.75 26.1c.655 2.154.529 4.598-1.058 5.452-1.52.818-4.71.946-4.71.946s-.905.89-.351 2.014c.315.639.649.921.58 1.007-.061.076-.748.153-1.053.214-.814.163-1.755.102-3.341.061s-2.272.113-3.998.076c-1.912-.041-3.344-.507-4.298-2.08-.814-1.343-.395-3.338 1.505-4.638 1.546-1.058 6.469-2.197 8.341-2.482 1.874-.285 7.814-2.441 8.383-.57z"/><path fill="#77B255" d="M26.377 25.554c-.057 1.128.391 2.499-.26 2.27-2.565-.9-9.188-.988-9.188-.988-.568-2.564-.037-6.416.008-9.956.059-4.645 3.148-7.192 5.082-6.61 2.528.761 3.689 3.387 4.016 7.511s.398 6.646.342 7.773z"/><path fill="#7C533E" d="M19.382 16.204c-.442 2.329-.227 6.078-.59 6.249-2.095.984-3.883 3.239-5.259 3.722-.997.349-1.992.55-2.42.928-.686.605-1.503 1.121-1.573 1.735-.072.623.645.847 1.896.323.919-.385 1.64-.333 2.461-.928 1.17-.847 5.832-1.399 7.596-4.008.595-.881 1.227-2.94 2.074-7.249-1.091-.449-4.185-.772-4.185-.772z"/><path fill="#2A6797" d="M11.429 32.448c.718.062 6.591.163 8.137.081 0 0 0 .57-1.505.651-1.505.081-4.516-.407-6.469-.244-.538.045-1.485.121-1.587-.041-.117-.185.924-.491 1.424-.447z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f9ce-200d-2640-fe0f.svg b/public/emoji/1f9ce-200d-2640-fe0f.svg
new file mode 100644
index 0000000000000000000000000000000000000000..89c9ff428ed7668a72463ec178c0fbc31c14fb83
--- /dev/null
+++ b/public/emoji/1f9ce-200d-2640-fe0f.svg
@@ -0,0 +1 @@
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#FFDC5D" d="M20.591.985c-2.139-.842-5.474.244-5.861 2.743-.385 2.482.321 6.374 2.501 6.138 2.286-.247 4.63-.744 5.556-3.097.927-2.352-.056-4.942-2.196-5.784z"/><path fill="#FFDC5D" d="M22.18 7.376c3.112-3.657-4.386-3.3-4.386-3.3-1.419.052-.442 2.416-1.11 3.707-.458.894 1.47 1.367 1.47 1.367s.885-.013.932 1.06v.01c.011.273-.018.598-.145 1.032-.635 2.149 2.252 3.467 2.885 1.313.251-.852.153-1.602.026-2.294l-.012-.061c-.191-1.028-.429-1.93.34-2.834z"/><path fill="#FFAC33" d="M23.035 1.848C21.611.181 19.652-.511 16.296.786c-2.931 1.133-1.988 3.463-1.306 3.065 1.882-1.097 3.131-.16 4.089 1.371.279-.752 1.507-1.214 1.755-.114.279 1.236-.869 1.775-.716 2.113.051.113-.058-.102 0 0 .734 1.289 1.929 1.694 1.929 1.694s.453.177 1.226-1.345c.773-1.522 1.177-4.067-.238-5.722z"/><path fill="#FFAC33" d="M22.264 3.601c2.904.626 1.712 5.155 1.997 6.821.35 2.051 2.364 2.124 2.364 2.124s-.332-1.429-.155-2.923c.246-2.072 1.597-3.745.171-5.768-1.821-2.584-6.182-.643-4.377-.254z"/><path fill="#292F33" d="M20.252 32.238c-.937.204-1.397.837-1.522 1.423s.419 1.633.963 1.842 5.354.548 6.132-.078c1.162-.934-4.804-3.354-5.573-3.187z"/><path fill="#3A4449" d="M20.51 31.844c-.521.24-.552 1.313.159 2.024.846.846 2.409 1.519 3.34 1.769s2.548-.27 2.539-.923c-.009-.701-1.545-1.829-2.238-1.859-.693-.031-1.505-.042-1.868-.464-.362-.421-1.391-.796-1.932-.547z"/><path fill="#4289C1" d="M25.336 26.113c.655 2.154.529 4.598-1.058 5.452-1.52.818-4.71.946-4.71.946s-.905.89-.351 2.014c.315.639.649.921.58 1.007-.061.076-.748.153-1.053.214-.814.163-1.755.102-3.341.061-1.587-.041-2.272.113-3.998.076-1.912-.041-3.344-.507-4.298-2.08-.814-1.343-.395-3.338 1.505-4.638 1.546-1.058 6.469-2.197 8.341-2.482 1.873-.285 7.813-2.441 8.383-.57z"/><path fill="#2A6797" d="M11.014 32.461c.718.062 6.591.163 8.137.081 0 0 0 .57-1.505.651-1.505.081-4.516-.407-6.469-.244-.538.045-1.485.121-1.587-.041-.117-.185.925-.491 1.424-.447z"/><path fill="#9268CA" d="M25.28 24.097c0 1.946.508 2.792.592 3.638.047.47-1.553-.275-2.603-.41-2.727-.351-6.408-.309-6.408-.309-.557-2.685.576-4.818-.306-8.419-1.138-4.646 3.231-9.23 5.127-8.621 2.478.797 3.937 3.064 3.936 7.395 0 2.998-.338 4.78-.338 6.726z"/><path fill="#FFDC5D" d="M19.3 15.532c-.341 2.345-.225 6.209-.58 6.395-2.051 1.072-4.163 3.421-5.517 3.961-.981.392-1.967.635-2.378 1.031-.659.634-1.453 1.184-1.497 1.8-.045.625.681.819 1.908.241.901-.424 1.624-.403 2.419-1.032 1.132-.896 6.19-1.666 7.84-4.348.557-.905.927-3.403 1.588-7.744-1.11-.401-3.783-.304-3.783-.304z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f9ce-200d-2642-fe0f.svg b/public/emoji/1f9ce-200d-2642-fe0f.svg
new file mode 100644
index 0000000000000000000000000000000000000000..403d73eb31838ca0d44ef9333e35318e0a1dd156
--- /dev/null
+++ b/public/emoji/1f9ce-200d-2642-fe0f.svg
@@ -0,0 +1 @@
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#FFDC5D" d="M20.905 1.103c-2.182-.859-5.584.249-5.979 2.799-.393 2.532.328 6.502 2.552 6.262 2.332-.252 4.724-.759 5.668-3.16.944-2.399-.059-5.042-2.241-5.901z"/><path fill="#FFDC5D" d="M22.526 7.623c3.175-3.73-4.474-3.367-4.474-3.367-1.448.053-.451 2.465-1.133 3.782-.467.912 1.499 1.395 1.499 1.395s.903-.013.951 1.082v.01c.011.279-.018.61-.148 1.053-.648 2.192 2.297 3.537 2.944 1.34.256-.869.157-1.634.027-2.34l-.012-.063c-.196-1.049-.44-1.969.346-2.892z"/><path fill="#FFAC33" d="M23.398 1.983C21.945.282 19.863-.621 16.523.9c-1.361.62-1.971.391-2.165.663-.93 1.306.337 2.753.833 2.464 1.572-.917 2.99-.644 3.352.019s.028 1.854.321 1.862c.792.021.664-.755.977-1.202.514-.731 1.296-.318 1.467.496.136.645 0 1.741-1.054 1.934.717 1.577 2.136 2.058 2.136 2.058s.461.181 1.25-1.371c.789-1.554 1.201-4.151-.242-5.84z"/><path fill="#292F33" d="M20.666 32.225c-.937.204-1.397.837-1.522 1.423-.126.586.419 1.633.963 1.842s5.354.548 6.132-.078c1.162-.934-4.804-3.354-5.573-3.187z"/><path fill="#3A4449" d="M20.924 31.831c-.521.24-.593 1.505.045 2.283.721.879 2.524 1.26 3.455 1.51s2.442-.001 2.446-1.322c.004-1.115-1.452-1.429-2.145-1.46-.693-.031-1.505-.042-1.868-.464s-1.391-.796-1.933-.547z"/><path fill="#4289C1" d="M25.75 26.1c.655 2.154.529 4.598-1.058 5.452-1.52.818-4.71.946-4.71.946s-.905.89-.351 2.014c.315.639.649.921.58 1.007-.061.076-.748.153-1.053.214-.814.163-1.755.102-3.341.061s-2.272.113-3.998.076c-1.912-.041-3.344-.507-4.298-2.08-.814-1.343-.395-3.338 1.505-4.638 1.546-1.058 6.469-2.197 8.341-2.482 1.874-.285 7.814-2.441 8.383-.57z"/><path fill="#77B255" d="M26.377 25.554c-.057 1.128.391 2.499-.26 2.27-2.565-.9-9.188-.988-9.188-.988-.568-2.564-.037-6.416.008-9.956.059-4.645 3.148-7.192 5.082-6.61 2.528.761 3.689 3.387 4.016 7.511s.398 6.646.342 7.773z"/><path fill="#FFDC5D" d="M19.382 16.204c-.442 2.329-.227 6.078-.59 6.249-2.095.984-3.883 3.239-5.259 3.722-.997.349-1.992.55-2.42.928-.686.605-1.503 1.121-1.573 1.735-.072.623.645.847 1.896.323.919-.385 1.64-.333 2.461-.928 1.17-.847 5.832-1.399 7.596-4.008.595-.881 1.227-2.94 2.074-7.249-1.091-.449-4.185-.772-4.185-.772z"/><path fill="#2A6797" d="M11.429 32.448c.718.062 6.591.163 8.137.081 0 0 0 .57-1.505.651-1.505.081-4.516-.407-6.469-.244-.538.045-1.485.121-1.587-.041-.117-.185.924-.491 1.424-.447z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f9ce.svg b/public/emoji/1f9ce.svg
new file mode 100644
index 0000000000000000000000000000000000000000..403d73eb31838ca0d44ef9333e35318e0a1dd156
--- /dev/null
+++ b/public/emoji/1f9ce.svg
@@ -0,0 +1 @@
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#FFDC5D" d="M20.905 1.103c-2.182-.859-5.584.249-5.979 2.799-.393 2.532.328 6.502 2.552 6.262 2.332-.252 4.724-.759 5.668-3.16.944-2.399-.059-5.042-2.241-5.901z"/><path fill="#FFDC5D" d="M22.526 7.623c3.175-3.73-4.474-3.367-4.474-3.367-1.448.053-.451 2.465-1.133 3.782-.467.912 1.499 1.395 1.499 1.395s.903-.013.951 1.082v.01c.011.279-.018.61-.148 1.053-.648 2.192 2.297 3.537 2.944 1.34.256-.869.157-1.634.027-2.34l-.012-.063c-.196-1.049-.44-1.969.346-2.892z"/><path fill="#FFAC33" d="M23.398 1.983C21.945.282 19.863-.621 16.523.9c-1.361.62-1.971.391-2.165.663-.93 1.306.337 2.753.833 2.464 1.572-.917 2.99-.644 3.352.019s.028 1.854.321 1.862c.792.021.664-.755.977-1.202.514-.731 1.296-.318 1.467.496.136.645 0 1.741-1.054 1.934.717 1.577 2.136 2.058 2.136 2.058s.461.181 1.25-1.371c.789-1.554 1.201-4.151-.242-5.84z"/><path fill="#292F33" d="M20.666 32.225c-.937.204-1.397.837-1.522 1.423-.126.586.419 1.633.963 1.842s5.354.548 6.132-.078c1.162-.934-4.804-3.354-5.573-3.187z"/><path fill="#3A4449" d="M20.924 31.831c-.521.24-.593 1.505.045 2.283.721.879 2.524 1.26 3.455 1.51s2.442-.001 2.446-1.322c.004-1.115-1.452-1.429-2.145-1.46-.693-.031-1.505-.042-1.868-.464s-1.391-.796-1.933-.547z"/><path fill="#4289C1" d="M25.75 26.1c.655 2.154.529 4.598-1.058 5.452-1.52.818-4.71.946-4.71.946s-.905.89-.351 2.014c.315.639.649.921.58 1.007-.061.076-.748.153-1.053.214-.814.163-1.755.102-3.341.061s-2.272.113-3.998.076c-1.912-.041-3.344-.507-4.298-2.08-.814-1.343-.395-3.338 1.505-4.638 1.546-1.058 6.469-2.197 8.341-2.482 1.874-.285 7.814-2.441 8.383-.57z"/><path fill="#77B255" d="M26.377 25.554c-.057 1.128.391 2.499-.26 2.27-2.565-.9-9.188-.988-9.188-.988-.568-2.564-.037-6.416.008-9.956.059-4.645 3.148-7.192 5.082-6.61 2.528.761 3.689 3.387 4.016 7.511s.398 6.646.342 7.773z"/><path fill="#FFDC5D" d="M19.382 16.204c-.442 2.329-.227 6.078-.59 6.249-2.095.984-3.883 3.239-5.259 3.722-.997.349-1.992.55-2.42.928-.686.605-1.503 1.121-1.573 1.735-.072.623.645.847 1.896.323.919-.385 1.64-.333 2.461-.928 1.17-.847 5.832-1.399 7.596-4.008.595-.881 1.227-2.94 2.074-7.249-1.091-.449-4.185-.772-4.185-.772z"/><path fill="#2A6797" d="M11.429 32.448c.718.062 6.591.163 8.137.081 0 0 0 .57-1.505.651-1.505.081-4.516-.407-6.469-.244-.538.045-1.485.121-1.587-.041-.117-.185.924-.491 1.424-.447z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f9cf-1f3fb-200d-2640-fe0f.svg b/public/emoji/1f9cf-1f3fb-200d-2640-fe0f.svg
new file mode 100644
index 0000000000000000000000000000000000000000..9605fac0a90a875d9512ab7b4f32ba30b65028b1
--- /dev/null
+++ b/public/emoji/1f9cf-1f3fb-200d-2640-fe0f.svg
@@ -0,0 +1 @@
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#9268CA" d="M33.944 36v-3.5c0-3.314-3.686-5.5-7-5.5h-12c-3.313 0-7 2.186-7 5.5V36h26z"/><path fill="#292F33" d="M20.889 5.069c4.105 0 10.947 2.053 10.947 10.947 0 8.896 0 10.948-2.053 10.948s-4.79-2.053-8.895-2.053c-4.105 0-6.785 2.053-8.895 2.053-2.287 0-2.053-8.211-2.053-10.948 0-8.894 6.844-10.947 10.949-10.947"/><path fill="#F7DECE" d="M21.041 29.414c2.008 0 3.563-1.484 3.563-2.491v-3.108h-7.332v2.998c0 1.326 1.761 2.601 3.769 2.601z"/><path fill="#EEC2AD" d="M17.266 25.179c1.022 1.155 2.29 1.468 3.668 1.468 1.379 0 2.647-.312 3.67-1.468v-2.936h-7.338v2.936z"/><path fill="#F7DECE" d="M12.678 15.718c0-5.834 3.676-10.563 8.211-10.563 4.533 0 8.209 4.729 8.209 10.563 0 5.833-3.676 10.285-8.209 10.285-4.535 0-8.211-4.452-8.211-10.285"/><path fill="#DF1F32" d="M20.889 23.543c-1.606 0-2.447-.794-2.537-.885-.268-.267-.268-.7 0-.967.266-.265.692-.267.961-.007.035.032.551.491 1.576.491 1.038 0 1.555-.473 1.576-.492.273-.256.703-.248.963.02.26.269.26.691-.004.955-.09.091-.929.885-2.535.885"/><path fill="#292F33" d="M10.669 19c-.021-1-.044-.224-.044-.465 0-3.422 2.053.494 2.053-1.943 0-2.439 1.368-2.683 2.736-4.051.685-.685 2.053-2.026 2.053-2.026s3.421 2.067 6.158 2.067c2.736 0 5.474 1.375 5.474 4.112 0 2.736 2.053-1.584 2.053 1.837 0 .244-.022-.531-.04.469h.719c.006-2 .006-1.924.006-3.202 0-8.895-6.842-11.672-10.948-11.672-4.104 0-10.947 2.722-10.947 11.617 0 .793-.02 1.257.008 3.257h.719z"/><path fill="#662113" d="M17.552 17.887c-.465 0-.846-.381-.846-.847v-.845c0-.465.381-.846.846-.846.466 0 .847.381.847.846v.845c0 .466-.381.847-.847.847m6.765 0c-.465 0-.846-.381-.846-.847v-.845c0-.465.381-.846.846-.846.465 0 .846.381.846.846v.845c0 .466-.381.847-.846.847"/><path fill="#C1694F" d="M21.78 20.5h-1.69c-.233 0-.423-.19-.423-.423v-.153c0-.233.189-.424.423-.424h1.69c.233 0 .424.19.424.424v.153c0 .233-.191.423-.424.423"/><path fill="#7450A8" d="M8.002 28.558V36h1l.303-7.442z"/><path fill="#9268CA" d="M4.335 28.053L3.002 36h5l.721-7.588z"/><path fill="#F7DECE" d="M6.789 22.258c.923-.923 3.558-2.964 4.215-3.637.658-.672 1.53.097 1.068.918-.462.821-3.129 3.847-3.129 3.847s1.59.462 1.949.872 1.026 3.078.41 3.488-1.539.103-1.539.103-.973 2.411-3.487 2.257c-1.044-.064-2.103-.975-2.001-2.514.103-1.539.904-2.969 1.18-3.796.308-.923 1.334-1.538 1.334-1.538z"/><path d="M6.103 20.705c-.048 0-.097-.007-.146-.021-2.429-.74-2.859-3.564-2.876-3.684-.039-.273.15-.525.423-.565.272-.038.526.149.566.422.003.023.362 2.316 2.178 2.869.264.081.413.36.333.624-.066.216-.264.355-.478.355zm-1.077 2.012c-.049 0-.099-.007-.148-.022C1.321 21.593.366 17.586.327 17.416c-.062-.269.106-.537.375-.599.271-.062.537.106.6.375.008.036.872 3.618 3.873 4.548.264.082.411.361.33.625-.067.214-.265.352-.479.352z" fill="#5DADEC"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f9cf-1f3fb-200d-2642-fe0f.svg b/public/emoji/1f9cf-1f3fb-200d-2642-fe0f.svg
new file mode 100644
index 0000000000000000000000000000000000000000..be0cd9005def245019fb7a3d72258e0519625146
--- /dev/null
+++ b/public/emoji/1f9cf-1f3fb-200d-2642-fe0f.svg
@@ -0,0 +1 @@
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#4289C1" d="M35.002 36v-2c0-3.314-2.686-6-6-6h-16c-3.313 0-6 2.686-6 6v2h28z"/><path fill="#F7DECE" d="M16.642 28.101c0 .736 1.965 1.963 4.36 1.963s4.359-1.157 4.359-1.963V24.29h-8.72v3.811z"/><path fill="#EEC2AD" d="M16.634 25.973c1.216 1.374 2.724 1.746 4.364 1.746 1.639 0 3.146-.373 4.363-1.746v-3.491h-8.728v3.491z"/><path fill="#F7DECE" d="M14.447 15.936c0 1.448-.734 2.622-1.639 2.622s-1.639-1.174-1.639-2.622.734-2.623 1.639-2.623c.905-.001 1.639 1.174 1.639 2.623m16.388 0c0 1.448-.733 2.622-1.639 2.622-.905 0-1.639-1.174-1.639-2.622s.733-2.623 1.639-2.623c.906-.001 1.639 1.174 1.639 2.623"/><path fill="#F7DECE" d="M12.48 16.959c0-5.589 3.816-10.121 8.522-10.121 4.707 0 8.523 4.532 8.523 10.121S25.709 27.08 21.002 27.08c-4.706 0-8.522-4.531-8.522-10.121"/><path fill="#C1694F" d="M21.002 23.802c-2.754 0-3.6-.705-3.741-.848-.256-.256-.256-.671 0-.927.248-.248.646-.255.902-.023.052.037.721.487 2.839.487 2.2 0 2.836-.485 2.842-.49.256-.255.657-.243.913.015.256.256.242.683-.014.938-.141.143-.987.848-3.741.848"/><path fill="#292F33" d="M21 3.48c5.648 0 9.178 4.168 9.178 7.641s-.706 4.863-1.412 3.473l-1.412-2.778s-4.235 0-5.647-1.39c0 0 2.118 4.168-2.118 0 0 0 .706 2.779-3.53-.694 0 0-2.118 1.389-2.824 4.862-.196.964-1.412 0-1.412-3.473C11.822 7.648 14.646 3.48 21 3.48"/><path fill="#662113" d="M17.002 17c-.55 0-1-.45-1-1v-1c0-.55.45-1 1-1s1 .45 1 1v1c0 .55-.45 1-1 1m8 0c-.55 0-1-.45-1-1v-1c0-.55.45-1 1-1s1 .45 1 1v1c0 .55-.45 1-1 1"/><path fill="#C1694F" d="M21.752 19.75h-1.5c-.413 0-.75-.337-.75-.75s.337-.75.75-.75h1.5c.413 0 .75.337.75.75s-.336.75-.75.75"/><path fill="#2A6797" d="M8.002 28.558V36h1l.303-7.442z"/><path fill="#4289C1" d="M4.335 28.053L3.002 36h5l.721-7.588z"/><path fill="#F7DECE" d="M6.789 22.258c.923-.923 3.558-2.964 4.215-3.637.658-.672 1.53.097 1.068.918-.462.821-3.129 3.847-3.129 3.847s1.59.462 1.949.872 1.026 3.078.41 3.488-1.539.103-1.539.103-.973 2.411-3.487 2.257c-1.044-.064-2.103-.975-2.001-2.514.103-1.539.904-2.969 1.18-3.796.308-.923 1.334-1.538 1.334-1.538z"/><path d="M6.103 20.705c-.048 0-.097-.007-.146-.021-2.429-.74-2.859-3.564-2.876-3.684-.039-.273.15-.525.423-.565.272-.038.526.149.566.422.003.023.362 2.316 2.178 2.869.264.081.413.36.333.624-.066.216-.264.355-.478.355zm-1.077 2.012c-.049 0-.099-.007-.148-.023C1.321 21.593.366 17.585.327 17.415c-.062-.269.106-.537.375-.599.271-.062.537.106.6.375.008.036.872 3.618 3.873 4.548.264.082.411.361.33.625-.067.215-.265.353-.479.353z" fill="#5DADEC"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f9cf-1f3fb.svg b/public/emoji/1f9cf-1f3fb.svg
new file mode 100644
index 0000000000000000000000000000000000000000..be0cd9005def245019fb7a3d72258e0519625146
--- /dev/null
+++ b/public/emoji/1f9cf-1f3fb.svg
@@ -0,0 +1 @@
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#4289C1" d="M35.002 36v-2c0-3.314-2.686-6-6-6h-16c-3.313 0-6 2.686-6 6v2h28z"/><path fill="#F7DECE" d="M16.642 28.101c0 .736 1.965 1.963 4.36 1.963s4.359-1.157 4.359-1.963V24.29h-8.72v3.811z"/><path fill="#EEC2AD" d="M16.634 25.973c1.216 1.374 2.724 1.746 4.364 1.746 1.639 0 3.146-.373 4.363-1.746v-3.491h-8.728v3.491z"/><path fill="#F7DECE" d="M14.447 15.936c0 1.448-.734 2.622-1.639 2.622s-1.639-1.174-1.639-2.622.734-2.623 1.639-2.623c.905-.001 1.639 1.174 1.639 2.623m16.388 0c0 1.448-.733 2.622-1.639 2.622-.905 0-1.639-1.174-1.639-2.622s.733-2.623 1.639-2.623c.906-.001 1.639 1.174 1.639 2.623"/><path fill="#F7DECE" d="M12.48 16.959c0-5.589 3.816-10.121 8.522-10.121 4.707 0 8.523 4.532 8.523 10.121S25.709 27.08 21.002 27.08c-4.706 0-8.522-4.531-8.522-10.121"/><path fill="#C1694F" d="M21.002 23.802c-2.754 0-3.6-.705-3.741-.848-.256-.256-.256-.671 0-.927.248-.248.646-.255.902-.023.052.037.721.487 2.839.487 2.2 0 2.836-.485 2.842-.49.256-.255.657-.243.913.015.256.256.242.683-.014.938-.141.143-.987.848-3.741.848"/><path fill="#292F33" d="M21 3.48c5.648 0 9.178 4.168 9.178 7.641s-.706 4.863-1.412 3.473l-1.412-2.778s-4.235 0-5.647-1.39c0 0 2.118 4.168-2.118 0 0 0 .706 2.779-3.53-.694 0 0-2.118 1.389-2.824 4.862-.196.964-1.412 0-1.412-3.473C11.822 7.648 14.646 3.48 21 3.48"/><path fill="#662113" d="M17.002 17c-.55 0-1-.45-1-1v-1c0-.55.45-1 1-1s1 .45 1 1v1c0 .55-.45 1-1 1m8 0c-.55 0-1-.45-1-1v-1c0-.55.45-1 1-1s1 .45 1 1v1c0 .55-.45 1-1 1"/><path fill="#C1694F" d="M21.752 19.75h-1.5c-.413 0-.75-.337-.75-.75s.337-.75.75-.75h1.5c.413 0 .75.337.75.75s-.336.75-.75.75"/><path fill="#2A6797" d="M8.002 28.558V36h1l.303-7.442z"/><path fill="#4289C1" d="M4.335 28.053L3.002 36h5l.721-7.588z"/><path fill="#F7DECE" d="M6.789 22.258c.923-.923 3.558-2.964 4.215-3.637.658-.672 1.53.097 1.068.918-.462.821-3.129 3.847-3.129 3.847s1.59.462 1.949.872 1.026 3.078.41 3.488-1.539.103-1.539.103-.973 2.411-3.487 2.257c-1.044-.064-2.103-.975-2.001-2.514.103-1.539.904-2.969 1.18-3.796.308-.923 1.334-1.538 1.334-1.538z"/><path d="M6.103 20.705c-.048 0-.097-.007-.146-.021-2.429-.74-2.859-3.564-2.876-3.684-.039-.273.15-.525.423-.565.272-.038.526.149.566.422.003.023.362 2.316 2.178 2.869.264.081.413.36.333.624-.066.216-.264.355-.478.355zm-1.077 2.012c-.049 0-.099-.007-.148-.023C1.321 21.593.366 17.585.327 17.415c-.062-.269.106-.537.375-.599.271-.062.537.106.6.375.008.036.872 3.618 3.873 4.548.264.082.411.361.33.625-.067.215-.265.353-.479.353z" fill="#5DADEC"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f9cf-1f3fc-200d-2640-fe0f.svg b/public/emoji/1f9cf-1f3fc-200d-2640-fe0f.svg
new file mode 100644
index 0000000000000000000000000000000000000000..a463bd6ef7c9952a04a28a8896e29b6120a1eb10
--- /dev/null
+++ b/public/emoji/1f9cf-1f3fc-200d-2640-fe0f.svg
@@ -0,0 +1 @@
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#9268CA" d="M33.944 36v-3.5c0-3.314-3.686-5.5-7-5.5h-12c-3.313 0-7 2.186-7 5.5V36h26z"/><path fill="#FFE51E" d="M20.889 5.069c4.105 0 10.947 2.053 10.947 10.947 0 8.896 0 10.948-2.053 10.948s-4.79-2.053-8.895-2.053c-4.105 0-6.785 2.053-8.895 2.053-2.287 0-2.053-8.211-2.053-10.948 0-8.894 6.844-10.947 10.949-10.947"/><path fill="#F3D2A2" d="M21.041 29.414c2.008 0 3.563-1.484 3.563-2.491v-3.108h-7.332v2.998c0 1.326 1.761 2.601 3.769 2.601z"/><path fill="#E2C196" d="M17.266 25.179c1.022 1.155 2.29 1.468 3.668 1.468 1.379 0 2.647-.312 3.67-1.468v-2.936h-7.338v2.936z"/><path fill="#F3D2A2" d="M12.678 15.718c0-5.834 3.676-10.563 8.211-10.563 4.533 0 8.209 4.729 8.209 10.563 0 5.833-3.676 10.285-8.209 10.285-4.535 0-8.211-4.452-8.211-10.285"/><path fill="#DF1F32" d="M20.889 23.543c-1.606 0-2.447-.794-2.537-.885-.268-.267-.268-.7 0-.967.266-.265.692-.267.961-.007.035.032.551.491 1.576.491 1.038 0 1.555-.473 1.576-.492.273-.256.703-.248.963.02.26.269.26.691-.004.955-.09.091-.929.885-2.535.885"/><path fill="#FFE51E" d="M10.669 19c-.021-1-.044-.224-.044-.465 0-3.422 2.053.494 2.053-1.943 0-2.439 1.368-2.683 2.736-4.051.685-.685 2.053-2.026 2.053-2.026s3.421 2.067 6.158 2.067c2.736 0 5.474 1.375 5.474 4.112 0 2.736 2.053-1.584 2.053 1.837 0 .244-.022-.531-.04.469h.719c.006-2 .006-1.924.006-3.202 0-8.895-6.842-11.672-10.948-11.672-4.104 0-10.947 2.722-10.947 11.617 0 .793-.02 1.257.008 3.257h.719z"/><path fill="#662113" d="M17.552 17.887c-.465 0-.846-.381-.846-.847v-.845c0-.465.381-.846.846-.846.466 0 .847.381.847.846v.845c0 .466-.381.847-.847.847m6.765 0c-.465 0-.846-.381-.846-.847v-.845c0-.465.381-.846.846-.846.465 0 .846.381.846.846v.845c0 .466-.381.847-.846.847"/><path fill="#C1694F" d="M21.78 20.5h-1.69c-.233 0-.423-.19-.423-.423v-.153c0-.233.189-.424.423-.424h1.69c.233 0 .424.19.424.424v.153c0 .233-.191.423-.424.423"/><path fill="#7450A8" d="M8.002 28.558V36h1l.303-7.442z"/><path fill="#9268CA" d="M4.335 28.053L3.002 36h5l.721-7.588z"/><path fill="#F3D2A2" d="M6.789 22.258c.923-.923 3.558-2.964 4.215-3.637.658-.672 1.53.097 1.068.918-.462.821-3.129 3.847-3.129 3.847s1.59.462 1.949.872 1.026 3.078.41 3.488-1.539.103-1.539.103-.973 2.411-3.487 2.257c-1.044-.064-2.103-.975-2.001-2.514.103-1.539.904-2.969 1.18-3.796.308-.923 1.334-1.538 1.334-1.538z"/><path d="M6.103 20.705c-.048 0-.097-.007-.146-.021-2.429-.74-2.859-3.564-2.876-3.684-.039-.273.15-.525.423-.565.272-.038.526.149.566.422.003.023.362 2.316 2.178 2.869.264.081.413.36.333.624-.066.216-.264.355-.478.355zm-1.077 2.012c-.049 0-.099-.007-.148-.022C1.321 21.593.366 17.586.327 17.416c-.062-.269.106-.537.375-.599.271-.062.537.106.6.375.008.036.872 3.618 3.873 4.548.264.082.411.361.33.625-.067.214-.265.352-.479.352z" fill="#5DADEC"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f9cf-1f3fc-200d-2642-fe0f.svg b/public/emoji/1f9cf-1f3fc-200d-2642-fe0f.svg
new file mode 100644
index 0000000000000000000000000000000000000000..312364641433d85922fe896853bb01d3febddcd7
--- /dev/null
+++ b/public/emoji/1f9cf-1f3fc-200d-2642-fe0f.svg
@@ -0,0 +1 @@
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#4289C1" d="M35.002 36v-2c0-3.314-2.686-6-6-6h-16c-3.313 0-6 2.686-6 6v2h28z"/><path fill="#F3D2A2" d="M16.642 28.101c0 .736 1.965 1.963 4.36 1.963s4.359-1.157 4.359-1.963V24.29h-8.72v3.811z"/><path fill="#E2C196" d="M16.634 25.973c1.216 1.374 2.724 1.746 4.364 1.746 1.639 0 3.146-.373 4.363-1.746v-3.491h-8.728v3.491z"/><path fill="#F3D2A2" d="M14.447 15.936c0 1.448-.734 2.622-1.639 2.622s-1.639-1.174-1.639-2.622.734-2.623 1.639-2.623c.905-.001 1.639 1.174 1.639 2.623m16.388 0c0 1.448-.733 2.622-1.639 2.622-.905 0-1.639-1.174-1.639-2.622s.733-2.623 1.639-2.623c.906-.001 1.639 1.174 1.639 2.623"/><path fill="#F3D2A2" d="M12.48 16.959c0-5.589 3.816-10.121 8.522-10.121 4.707 0 8.523 4.532 8.523 10.121S25.709 27.08 21.002 27.08c-4.706 0-8.522-4.531-8.522-10.121"/><path fill="#C1694F" d="M21.002 23.802c-2.754 0-3.6-.705-3.741-.848-.256-.256-.256-.671 0-.927.248-.248.646-.255.902-.023.052.037.721.487 2.839.487 2.2 0 2.836-.485 2.842-.49.256-.255.657-.243.913.015.256.256.242.683-.014.938-.141.143-.987.848-3.741.848"/><path fill="#FFE51E" d="M21 3.48c5.648 0 9.178 4.168 9.178 7.641s-.706 4.863-1.412 3.473l-1.412-2.778s-4.235 0-5.647-1.39c0 0 2.118 4.168-2.118 0 0 0 .706 2.779-3.53-.694 0 0-2.118 1.389-2.824 4.862-.196.964-1.412 0-1.412-3.473C11.822 7.648 14.646 3.48 21 3.48"/><path fill="#662113" d="M17.002 17c-.55 0-1-.45-1-1v-1c0-.55.45-1 1-1s1 .45 1 1v1c0 .55-.45 1-1 1m8 0c-.55 0-1-.45-1-1v-1c0-.55.45-1 1-1s1 .45 1 1v1c0 .55-.45 1-1 1"/><path fill="#C1694F" d="M21.752 19.75h-1.5c-.413 0-.75-.337-.75-.75s.337-.75.75-.75h1.5c.413 0 .75.337.75.75s-.336.75-.75.75"/><path fill="#2A6797" d="M8.002 28.558V36h1l.303-7.442z"/><path fill="#4289C1" d="M4.335 28.053L3.002 36h5l.721-7.588z"/><path fill="#F3D2A2" d="M6.789 22.258c.923-.923 3.558-2.964 4.215-3.637.658-.672 1.53.097 1.068.918-.462.821-3.129 3.847-3.129 3.847s1.59.462 1.949.872 1.026 3.078.41 3.488-1.539.103-1.539.103-.973 2.411-3.487 2.257c-1.044-.064-2.103-.975-2.001-2.514.103-1.539.904-2.969 1.18-3.796.308-.923 1.334-1.538 1.334-1.538z"/><path d="M6.103 20.705c-.048 0-.097-.007-.146-.021-2.429-.74-2.859-3.564-2.876-3.684-.039-.273.15-.525.423-.565.272-.038.526.149.566.422.003.023.362 2.316 2.178 2.869.264.081.413.36.333.624-.066.216-.264.355-.478.355zm-1.077 2.012c-.049 0-.099-.007-.148-.023C1.321 21.593.366 17.585.327 17.415c-.062-.269.106-.537.375-.599.271-.062.537.106.6.375.008.036.872 3.618 3.873 4.548.264.082.411.361.33.625-.067.215-.265.353-.479.353z" fill="#5DADEC"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f9cf-1f3fc.svg b/public/emoji/1f9cf-1f3fc.svg
new file mode 100644
index 0000000000000000000000000000000000000000..312364641433d85922fe896853bb01d3febddcd7
--- /dev/null
+++ b/public/emoji/1f9cf-1f3fc.svg
@@ -0,0 +1 @@
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#4289C1" d="M35.002 36v-2c0-3.314-2.686-6-6-6h-16c-3.313 0-6 2.686-6 6v2h28z"/><path fill="#F3D2A2" d="M16.642 28.101c0 .736 1.965 1.963 4.36 1.963s4.359-1.157 4.359-1.963V24.29h-8.72v3.811z"/><path fill="#E2C196" d="M16.634 25.973c1.216 1.374 2.724 1.746 4.364 1.746 1.639 0 3.146-.373 4.363-1.746v-3.491h-8.728v3.491z"/><path fill="#F3D2A2" d="M14.447 15.936c0 1.448-.734 2.622-1.639 2.622s-1.639-1.174-1.639-2.622.734-2.623 1.639-2.623c.905-.001 1.639 1.174 1.639 2.623m16.388 0c0 1.448-.733 2.622-1.639 2.622-.905 0-1.639-1.174-1.639-2.622s.733-2.623 1.639-2.623c.906-.001 1.639 1.174 1.639 2.623"/><path fill="#F3D2A2" d="M12.48 16.959c0-5.589 3.816-10.121 8.522-10.121 4.707 0 8.523 4.532 8.523 10.121S25.709 27.08 21.002 27.08c-4.706 0-8.522-4.531-8.522-10.121"/><path fill="#C1694F" d="M21.002 23.802c-2.754 0-3.6-.705-3.741-.848-.256-.256-.256-.671 0-.927.248-.248.646-.255.902-.023.052.037.721.487 2.839.487 2.2 0 2.836-.485 2.842-.49.256-.255.657-.243.913.015.256.256.242.683-.014.938-.141.143-.987.848-3.741.848"/><path fill="#FFE51E" d="M21 3.48c5.648 0 9.178 4.168 9.178 7.641s-.706 4.863-1.412 3.473l-1.412-2.778s-4.235 0-5.647-1.39c0 0 2.118 4.168-2.118 0 0 0 .706 2.779-3.53-.694 0 0-2.118 1.389-2.824 4.862-.196.964-1.412 0-1.412-3.473C11.822 7.648 14.646 3.48 21 3.48"/><path fill="#662113" d="M17.002 17c-.55 0-1-.45-1-1v-1c0-.55.45-1 1-1s1 .45 1 1v1c0 .55-.45 1-1 1m8 0c-.55 0-1-.45-1-1v-1c0-.55.45-1 1-1s1 .45 1 1v1c0 .55-.45 1-1 1"/><path fill="#C1694F" d="M21.752 19.75h-1.5c-.413 0-.75-.337-.75-.75s.337-.75.75-.75h1.5c.413 0 .75.337.75.75s-.336.75-.75.75"/><path fill="#2A6797" d="M8.002 28.558V36h1l.303-7.442z"/><path fill="#4289C1" d="M4.335 28.053L3.002 36h5l.721-7.588z"/><path fill="#F3D2A2" d="M6.789 22.258c.923-.923 3.558-2.964 4.215-3.637.658-.672 1.53.097 1.068.918-.462.821-3.129 3.847-3.129 3.847s1.59.462 1.949.872 1.026 3.078.41 3.488-1.539.103-1.539.103-.973 2.411-3.487 2.257c-1.044-.064-2.103-.975-2.001-2.514.103-1.539.904-2.969 1.18-3.796.308-.923 1.334-1.538 1.334-1.538z"/><path d="M6.103 20.705c-.048 0-.097-.007-.146-.021-2.429-.74-2.859-3.564-2.876-3.684-.039-.273.15-.525.423-.565.272-.038.526.149.566.422.003.023.362 2.316 2.178 2.869.264.081.413.36.333.624-.066.216-.264.355-.478.355zm-1.077 2.012c-.049 0-.099-.007-.148-.023C1.321 21.593.366 17.585.327 17.415c-.062-.269.106-.537.375-.599.271-.062.537.106.6.375.008.036.872 3.618 3.873 4.548.264.082.411.361.33.625-.067.215-.265.353-.479.353z" fill="#5DADEC"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f9cf-1f3fd-200d-2640-fe0f.svg b/public/emoji/1f9cf-1f3fd-200d-2640-fe0f.svg
new file mode 100644
index 0000000000000000000000000000000000000000..623b3445132ce2d7d5c7dd1de4f5e3bfe0cb226d
--- /dev/null
+++ b/public/emoji/1f9cf-1f3fd-200d-2640-fe0f.svg
@@ -0,0 +1 @@
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#9268CA" d="M33.944 36v-3.5c0-3.314-3.686-5.5-7-5.5h-12c-3.313 0-7 2.186-7 5.5V36h26z"/><path fill="#963B22" d="M20.889 5.069c4.105 0 10.947 2.053 10.947 10.947 0 8.896 0 10.948-2.053 10.948s-4.79-2.053-8.895-2.053c-4.105 0-6.785 2.053-8.895 2.053-2.287 0-2.053-8.211-2.053-10.948 0-8.894 6.844-10.947 10.949-10.947"/><path fill="#D4AB88" d="M21.041 29.414c2.008 0 3.563-1.484 3.563-2.491v-3.108h-7.332v2.998c0 1.326 1.761 2.601 3.769 2.601z"/><path fill="#CC9B7A" d="M17.266 25.179c1.022 1.155 2.29 1.468 3.668 1.468 1.379 0 2.647-.312 3.67-1.468v-2.936h-7.338v2.936z"/><path fill="#D4AB88" d="M12.678 15.718c0-5.834 3.676-10.563 8.211-10.563 4.533 0 8.209 4.729 8.209 10.563 0 5.833-3.676 10.285-8.209 10.285-4.535 0-8.211-4.452-8.211-10.285"/><path fill="#DF1F32" d="M20.889 23.543c-1.606 0-2.447-.794-2.537-.885-.268-.267-.268-.7 0-.967.266-.265.692-.267.961-.007.035.032.551.491 1.576.491 1.038 0 1.555-.473 1.576-.492.273-.256.703-.248.963.02.26.269.26.691-.004.955-.09.091-.929.885-2.535.885"/><path fill="#963B22" d="M10.669 19c-.021-1-.044-.224-.044-.465 0-3.422 2.053.494 2.053-1.943 0-2.439 1.368-2.683 2.736-4.051.685-.685 2.053-2.026 2.053-2.026s3.421 2.067 6.158 2.067c2.736 0 5.474 1.375 5.474 4.112 0 2.736 2.053-1.584 2.053 1.837 0 .244-.022-.531-.04.469h.719c.006-2 .006-1.924.006-3.202 0-8.895-6.842-11.672-10.948-11.672-4.104 0-10.947 2.722-10.947 11.617 0 .793-.02 1.257.008 3.257h.719z"/><path fill="#662113" d="M17.552 17.887c-.465 0-.846-.381-.846-.847v-.845c0-.465.381-.846.846-.846.466 0 .847.381.847.846v.845c0 .466-.381.847-.847.847m6.765 0c-.465 0-.846-.381-.846-.847v-.845c0-.465.381-.846.846-.846.465 0 .846.381.846.846v.845c0 .466-.381.847-.846.847"/><path fill="#C1694F" d="M21.78 20.5h-1.69c-.233 0-.423-.19-.423-.423v-.153c0-.233.189-.424.423-.424h1.69c.233 0 .424.19.424.424v.153c0 .233-.191.423-.424.423"/><path fill="#7450A8" d="M8.002 28.558V36h1l.303-7.442z"/><path fill="#9268CA" d="M4.335 28.053L3.002 36h5l.721-7.588z"/><path fill="#D4AB88" d="M6.789 22.258c.923-.923 3.558-2.964 4.215-3.637.658-.672 1.53.097 1.068.918-.462.821-3.129 3.847-3.129 3.847s1.59.462 1.949.872 1.026 3.078.41 3.488-1.539.103-1.539.103-.973 2.411-3.487 2.257c-1.044-.064-2.103-.975-2.001-2.514.103-1.539.904-2.969 1.18-3.796.308-.923 1.334-1.538 1.334-1.538z"/><path d="M6.103 20.705c-.048 0-.097-.007-.146-.021-2.429-.74-2.859-3.564-2.876-3.684-.039-.273.15-.525.423-.565.272-.038.526.149.566.422.003.023.362 2.316 2.178 2.869.264.081.413.36.333.624-.066.216-.264.355-.478.355zm-1.077 2.012c-.049 0-.099-.007-.148-.022C1.321 21.593.366 17.586.327 17.416c-.062-.269.106-.537.375-.599.271-.062.537.106.6.375.008.036.872 3.618 3.873 4.548.264.082.411.361.33.625-.067.214-.265.352-.479.352z" fill="#5DADEC"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f9cf-1f3fd-200d-2642-fe0f.svg b/public/emoji/1f9cf-1f3fd-200d-2642-fe0f.svg
new file mode 100644
index 0000000000000000000000000000000000000000..d41a0fa60729a617417762a14c59357f002a84b5
--- /dev/null
+++ b/public/emoji/1f9cf-1f3fd-200d-2642-fe0f.svg
@@ -0,0 +1 @@
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#4289C1" d="M35.002 36v-2c0-3.314-2.686-6-6-6h-16c-3.313 0-6 2.686-6 6v2h28z"/><path fill="#D4AB88" d="M16.642 28.101c0 .736 1.965 1.963 4.36 1.963s4.359-1.157 4.359-1.963V24.29h-8.72v3.811z"/><path fill="#CC9B7A" d="M16.634 25.973c1.216 1.374 2.724 1.746 4.364 1.746 1.639 0 3.146-.373 4.363-1.746v-3.491h-8.728v3.491z"/><path fill="#D4AB88" d="M14.447 15.936c0 1.448-.734 2.622-1.639 2.622s-1.639-1.174-1.639-2.622.734-2.623 1.639-2.623c.905-.001 1.639 1.174 1.639 2.623m16.388 0c0 1.448-.733 2.622-1.639 2.622-.905 0-1.639-1.174-1.639-2.622s.733-2.623 1.639-2.623c.906-.001 1.639 1.174 1.639 2.623"/><path fill="#D4AB88" d="M12.48 16.959c0-5.589 3.816-10.121 8.522-10.121 4.707 0 8.523 4.532 8.523 10.121S25.709 27.08 21.002 27.08c-4.706 0-8.522-4.531-8.522-10.121"/><path fill="#C1694F" d="M21.002 23.802c-2.754 0-3.6-.705-3.741-.848-.256-.256-.256-.671 0-.927.248-.248.646-.255.902-.023.052.037.721.487 2.839.487 2.2 0 2.836-.485 2.842-.49.256-.255.657-.243.913.015.256.256.242.683-.014.938-.141.143-.987.848-3.741.848"/><path fill="#963B22" d="M21 3.48c5.648 0 9.178 4.168 9.178 7.641s-.706 4.863-1.412 3.473l-1.412-2.778s-4.235 0-5.647-1.39c0 0 2.118 4.168-2.118 0 0 0 .706 2.779-3.53-.694 0 0-2.118 1.389-2.824 4.862-.196.964-1.412 0-1.412-3.473C11.822 7.648 14.646 3.48 21 3.48"/><path fill="#662113" d="M17.002 17c-.55 0-1-.45-1-1v-1c0-.55.45-1 1-1s1 .45 1 1v1c0 .55-.45 1-1 1m8 0c-.55 0-1-.45-1-1v-1c0-.55.45-1 1-1s1 .45 1 1v1c0 .55-.45 1-1 1"/><path fill="#C1694F" d="M21.752 19.75h-1.5c-.413 0-.75-.337-.75-.75s.337-.75.75-.75h1.5c.413 0 .75.337.75.75s-.336.75-.75.75"/><path fill="#2A6797" d="M8.002 28.558V36h1l.303-7.442z"/><path fill="#4289C1" d="M4.335 28.053L3.002 36h5l.721-7.588z"/><path fill="#D4AB88" d="M6.789 22.258c.923-.923 3.558-2.964 4.215-3.637.658-.672 1.53.097 1.068.918-.462.821-3.129 3.847-3.129 3.847s1.59.462 1.949.872 1.026 3.078.41 3.488-1.539.103-1.539.103-.973 2.411-3.487 2.257c-1.044-.064-2.103-.975-2.001-2.514.103-1.539.904-2.969 1.18-3.796.308-.923 1.334-1.538 1.334-1.538z"/><path d="M6.103 20.705c-.048 0-.097-.007-.146-.021-2.429-.74-2.859-3.564-2.876-3.684-.039-.273.15-.525.423-.565.272-.038.526.149.566.422.003.023.362 2.316 2.178 2.869.264.081.413.36.333.624-.066.216-.264.355-.478.355zm-1.077 2.012c-.049 0-.099-.007-.148-.023C1.321 21.593.366 17.585.327 17.415c-.062-.269.106-.537.375-.599.271-.062.537.106.6.375.008.036.872 3.618 3.873 4.548.264.082.411.361.33.625-.067.215-.265.353-.479.353z" fill="#5DADEC"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f9cf-1f3fd.svg b/public/emoji/1f9cf-1f3fd.svg
new file mode 100644
index 0000000000000000000000000000000000000000..d41a0fa60729a617417762a14c59357f002a84b5
--- /dev/null
+++ b/public/emoji/1f9cf-1f3fd.svg
@@ -0,0 +1 @@
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#4289C1" d="M35.002 36v-2c0-3.314-2.686-6-6-6h-16c-3.313 0-6 2.686-6 6v2h28z"/><path fill="#D4AB88" d="M16.642 28.101c0 .736 1.965 1.963 4.36 1.963s4.359-1.157 4.359-1.963V24.29h-8.72v3.811z"/><path fill="#CC9B7A" d="M16.634 25.973c1.216 1.374 2.724 1.746 4.364 1.746 1.639 0 3.146-.373 4.363-1.746v-3.491h-8.728v3.491z"/><path fill="#D4AB88" d="M14.447 15.936c0 1.448-.734 2.622-1.639 2.622s-1.639-1.174-1.639-2.622.734-2.623 1.639-2.623c.905-.001 1.639 1.174 1.639 2.623m16.388 0c0 1.448-.733 2.622-1.639 2.622-.905 0-1.639-1.174-1.639-2.622s.733-2.623 1.639-2.623c.906-.001 1.639 1.174 1.639 2.623"/><path fill="#D4AB88" d="M12.48 16.959c0-5.589 3.816-10.121 8.522-10.121 4.707 0 8.523 4.532 8.523 10.121S25.709 27.08 21.002 27.08c-4.706 0-8.522-4.531-8.522-10.121"/><path fill="#C1694F" d="M21.002 23.802c-2.754 0-3.6-.705-3.741-.848-.256-.256-.256-.671 0-.927.248-.248.646-.255.902-.023.052.037.721.487 2.839.487 2.2 0 2.836-.485 2.842-.49.256-.255.657-.243.913.015.256.256.242.683-.014.938-.141.143-.987.848-3.741.848"/><path fill="#963B22" d="M21 3.48c5.648 0 9.178 4.168 9.178 7.641s-.706 4.863-1.412 3.473l-1.412-2.778s-4.235 0-5.647-1.39c0 0 2.118 4.168-2.118 0 0 0 .706 2.779-3.53-.694 0 0-2.118 1.389-2.824 4.862-.196.964-1.412 0-1.412-3.473C11.822 7.648 14.646 3.48 21 3.48"/><path fill="#662113" d="M17.002 17c-.55 0-1-.45-1-1v-1c0-.55.45-1 1-1s1 .45 1 1v1c0 .55-.45 1-1 1m8 0c-.55 0-1-.45-1-1v-1c0-.55.45-1 1-1s1 .45 1 1v1c0 .55-.45 1-1 1"/><path fill="#C1694F" d="M21.752 19.75h-1.5c-.413 0-.75-.337-.75-.75s.337-.75.75-.75h1.5c.413 0 .75.337.75.75s-.336.75-.75.75"/><path fill="#2A6797" d="M8.002 28.558V36h1l.303-7.442z"/><path fill="#4289C1" d="M4.335 28.053L3.002 36h5l.721-7.588z"/><path fill="#D4AB88" d="M6.789 22.258c.923-.923 3.558-2.964 4.215-3.637.658-.672 1.53.097 1.068.918-.462.821-3.129 3.847-3.129 3.847s1.59.462 1.949.872 1.026 3.078.41 3.488-1.539.103-1.539.103-.973 2.411-3.487 2.257c-1.044-.064-2.103-.975-2.001-2.514.103-1.539.904-2.969 1.18-3.796.308-.923 1.334-1.538 1.334-1.538z"/><path d="M6.103 20.705c-.048 0-.097-.007-.146-.021-2.429-.74-2.859-3.564-2.876-3.684-.039-.273.15-.525.423-.565.272-.038.526.149.566.422.003.023.362 2.316 2.178 2.869.264.081.413.36.333.624-.066.216-.264.355-.478.355zm-1.077 2.012c-.049 0-.099-.007-.148-.023C1.321 21.593.366 17.585.327 17.415c-.062-.269.106-.537.375-.599.271-.062.537.106.6.375.008.036.872 3.618 3.873 4.548.264.082.411.361.33.625-.067.215-.265.353-.479.353z" fill="#5DADEC"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f9cf-1f3fe-200d-2640-fe0f.svg b/public/emoji/1f9cf-1f3fe-200d-2640-fe0f.svg
new file mode 100644
index 0000000000000000000000000000000000000000..d63eee453dd3854e6ae8972c2e3735f5dc99204c
--- /dev/null
+++ b/public/emoji/1f9cf-1f3fe-200d-2640-fe0f.svg
@@ -0,0 +1 @@
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#9268CA" d="M33.944 36v-3.5c0-3.314-3.686-5.5-7-5.5h-12c-3.313 0-7 2.186-7 5.5V36h26z"/><path fill="#60352A" d="M20.889 5.069c4.105 0 10.947 2.053 10.947 10.947 0 8.896 0 10.948-2.053 10.948s-4.79-2.053-8.895-2.053c-4.105 0-6.785 2.053-8.895 2.053-2.287 0-2.053-8.211-2.053-10.948 0-8.894 6.844-10.947 10.949-10.947"/><path fill="#AF7E57" d="M21.041 29.414c2.008 0 3.563-1.484 3.563-2.491v-3.108h-7.332v2.998c0 1.326 1.761 2.601 3.769 2.601z"/><path fill="#9B6A49" d="M17.266 25.179c1.022 1.155 2.29 1.468 3.668 1.468 1.379 0 2.647-.312 3.67-1.468v-2.936h-7.338v2.936z"/><path fill="#AF7E57" d="M12.678 15.718c0-5.834 3.676-10.563 8.211-10.563 4.533 0 8.209 4.729 8.209 10.563 0 5.833-3.676 10.285-8.209 10.285-4.535 0-8.211-4.452-8.211-10.285"/><path fill="#DF1F32" d="M20.889 23.543c-1.606 0-2.447-.794-2.537-.885-.268-.267-.268-.7 0-.967.266-.265.692-.267.961-.007.035.032.551.491 1.576.491 1.038 0 1.555-.473 1.576-.492.273-.256.703-.248.963.02.26.269.26.691-.004.955-.09.091-.929.885-2.535.885"/><path fill="#60352A" d="M10.669 19c-.021-1-.044-.224-.044-.465 0-3.422 2.053.494 2.053-1.943 0-2.439 1.368-2.683 2.736-4.051.685-.685 2.053-2.026 2.053-2.026s3.421 2.067 6.158 2.067c2.736 0 5.474 1.375 5.474 4.112 0 2.736 2.053-1.584 2.053 1.837 0 .244-.022-.531-.04.469h.719c.006-2 .006-1.924.006-3.202 0-8.895-6.842-11.672-10.948-11.672-4.104 0-10.947 2.722-10.947 11.617 0 .793-.02 1.257.008 3.257h.719z"/><path fill="#662113" d="M17.552 17.887c-.465 0-.846-.381-.846-.847v-.845c0-.465.381-.846.846-.846.466 0 .847.381.847.846v.845c0 .466-.381.847-.847.847m6.765 0c-.465 0-.846-.381-.846-.847v-.845c0-.465.381-.846.846-.846.465 0 .846.381.846.846v.845c0 .466-.381.847-.846.847"/><path fill="#915A34" d="M21.78 20.5h-1.69c-.233 0-.423-.19-.423-.423v-.153c0-.233.189-.424.423-.424h1.69c.233 0 .424.19.424.424v.153c0 .233-.191.423-.424.423"/><path fill="#7450A8" d="M8.002 28.558V36h1l.303-7.442z"/><path fill="#9268CA" d="M4.335 28.053L3.002 36h5l.721-7.588z"/><path fill="#AF7E57" d="M6.789 22.258c.923-.923 3.558-2.964 4.215-3.637.658-.672 1.53.097 1.068.918-.462.821-3.129 3.847-3.129 3.847s1.59.462 1.949.872 1.026 3.078.41 3.488-1.539.103-1.539.103-.973 2.411-3.487 2.257c-1.044-.064-2.103-.975-2.001-2.514.103-1.539.904-2.969 1.18-3.796.308-.923 1.334-1.538 1.334-1.538z"/><path d="M6.103 20.705c-.048 0-.097-.007-.146-.021-2.429-.74-2.859-3.564-2.876-3.684-.039-.273.15-.525.423-.565.272-.038.526.149.566.422.003.023.362 2.316 2.178 2.869.264.081.413.36.333.624-.066.216-.264.355-.478.355zm-1.077 2.012c-.049 0-.099-.007-.148-.022C1.321 21.593.366 17.586.327 17.416c-.062-.269.106-.537.375-.599.271-.062.537.106.6.375.008.036.872 3.618 3.873 4.548.264.082.411.361.33.625-.067.214-.265.352-.479.352z" fill="#5DADEC"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f9cf-1f3fe-200d-2642-fe0f.svg b/public/emoji/1f9cf-1f3fe-200d-2642-fe0f.svg
new file mode 100644
index 0000000000000000000000000000000000000000..dd4392664160d1e26901fd908280dc707ca9c39d
--- /dev/null
+++ b/public/emoji/1f9cf-1f3fe-200d-2642-fe0f.svg
@@ -0,0 +1 @@
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#4289C1" d="M35.002 36v-2c0-3.314-2.686-6-6-6h-16c-3.313 0-6 2.686-6 6v2h28z"/><path fill="#AF7E57" d="M16.642 28.101c0 .736 1.965 1.963 4.36 1.963s4.359-1.157 4.359-1.963V24.29h-8.72v3.811z"/><path fill="#9B6A49" d="M16.634 25.973c1.216 1.374 2.724 1.746 4.364 1.746 1.639 0 3.146-.373 4.363-1.746v-3.491h-8.728v3.491z"/><path fill="#AF7E57" d="M14.447 15.936c0 1.448-.734 2.622-1.639 2.622s-1.639-1.174-1.639-2.622.734-2.623 1.639-2.623c.905-.001 1.639 1.174 1.639 2.623m16.388 0c0 1.448-.733 2.622-1.639 2.622-.905 0-1.639-1.174-1.639-2.622s.733-2.623 1.639-2.623c.906-.001 1.639 1.174 1.639 2.623"/><path fill="#AF7E57" d="M12.48 16.959c0-5.589 3.816-10.121 8.522-10.121 4.707 0 8.523 4.532 8.523 10.121S25.709 27.08 21.002 27.08c-4.706 0-8.522-4.531-8.522-10.121"/><path fill="#915A34" d="M21.002 23.802c-2.754 0-3.6-.705-3.741-.848-.256-.256-.256-.671 0-.927.248-.248.646-.255.902-.023.052.037.721.487 2.839.487 2.2 0 2.836-.485 2.842-.49.256-.255.657-.243.913.015.256.256.242.683-.014.938-.141.143-.987.848-3.741.848"/><path fill="#60352A" d="M21 3.48c5.648 0 9.178 4.168 9.178 7.641s-.706 4.863-1.412 3.473l-1.412-2.778s-4.235 0-5.647-1.39c0 0 2.118 4.168-2.118 0 0 0 .706 2.779-3.53-.694 0 0-2.118 1.389-2.824 4.862-.196.964-1.412 0-1.412-3.473C11.822 7.648 14.646 3.48 21 3.48"/><path fill="#662113" d="M17.002 17c-.55 0-1-.45-1-1v-1c0-.55.45-1 1-1s1 .45 1 1v1c0 .55-.45 1-1 1m8 0c-.55 0-1-.45-1-1v-1c0-.55.45-1 1-1s1 .45 1 1v1c0 .55-.45 1-1 1"/><path fill="#915A34" d="M21.752 19.75h-1.5c-.413 0-.75-.337-.75-.75s.337-.75.75-.75h1.5c.413 0 .75.337.75.75s-.336.75-.75.75"/><path fill="#2A6797" d="M8.002 28.558V36h1l.303-7.442z"/><path fill="#4289C1" d="M4.335 28.053L3.002 36h5l.721-7.588z"/><path fill="#AF7E57" d="M6.789 22.258c.923-.923 3.558-2.964 4.215-3.637.658-.672 1.53.097 1.068.918-.462.821-3.129 3.847-3.129 3.847s1.59.462 1.949.872 1.026 3.078.41 3.488-1.539.103-1.539.103-.973 2.411-3.487 2.257c-1.044-.064-2.103-.975-2.001-2.514.103-1.539.904-2.969 1.18-3.796.308-.923 1.334-1.538 1.334-1.538z"/><path d="M6.103 20.705c-.048 0-.097-.007-.146-.021-2.429-.74-2.859-3.564-2.876-3.684-.039-.273.15-.525.423-.565.272-.038.526.149.566.422.003.023.362 2.316 2.178 2.869.264.081.413.36.333.624-.066.216-.264.355-.478.355zm-1.077 2.012c-.049 0-.099-.007-.148-.023C1.321 21.593.366 17.585.327 17.415c-.062-.269.106-.537.375-.599.271-.062.537.106.6.375.008.036.872 3.618 3.873 4.548.264.082.411.361.33.625-.067.215-.265.353-.479.353z" fill="#5DADEC"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f9cf-1f3fe.svg b/public/emoji/1f9cf-1f3fe.svg
new file mode 100644
index 0000000000000000000000000000000000000000..dd4392664160d1e26901fd908280dc707ca9c39d
--- /dev/null
+++ b/public/emoji/1f9cf-1f3fe.svg
@@ -0,0 +1 @@
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#4289C1" d="M35.002 36v-2c0-3.314-2.686-6-6-6h-16c-3.313 0-6 2.686-6 6v2h28z"/><path fill="#AF7E57" d="M16.642 28.101c0 .736 1.965 1.963 4.36 1.963s4.359-1.157 4.359-1.963V24.29h-8.72v3.811z"/><path fill="#9B6A49" d="M16.634 25.973c1.216 1.374 2.724 1.746 4.364 1.746 1.639 0 3.146-.373 4.363-1.746v-3.491h-8.728v3.491z"/><path fill="#AF7E57" d="M14.447 15.936c0 1.448-.734 2.622-1.639 2.622s-1.639-1.174-1.639-2.622.734-2.623 1.639-2.623c.905-.001 1.639 1.174 1.639 2.623m16.388 0c0 1.448-.733 2.622-1.639 2.622-.905 0-1.639-1.174-1.639-2.622s.733-2.623 1.639-2.623c.906-.001 1.639 1.174 1.639 2.623"/><path fill="#AF7E57" d="M12.48 16.959c0-5.589 3.816-10.121 8.522-10.121 4.707 0 8.523 4.532 8.523 10.121S25.709 27.08 21.002 27.08c-4.706 0-8.522-4.531-8.522-10.121"/><path fill="#915A34" d="M21.002 23.802c-2.754 0-3.6-.705-3.741-.848-.256-.256-.256-.671 0-.927.248-.248.646-.255.902-.023.052.037.721.487 2.839.487 2.2 0 2.836-.485 2.842-.49.256-.255.657-.243.913.015.256.256.242.683-.014.938-.141.143-.987.848-3.741.848"/><path fill="#60352A" d="M21 3.48c5.648 0 9.178 4.168 9.178 7.641s-.706 4.863-1.412 3.473l-1.412-2.778s-4.235 0-5.647-1.39c0 0 2.118 4.168-2.118 0 0 0 .706 2.779-3.53-.694 0 0-2.118 1.389-2.824 4.862-.196.964-1.412 0-1.412-3.473C11.822 7.648 14.646 3.48 21 3.48"/><path fill="#662113" d="M17.002 17c-.55 0-1-.45-1-1v-1c0-.55.45-1 1-1s1 .45 1 1v1c0 .55-.45 1-1 1m8 0c-.55 0-1-.45-1-1v-1c0-.55.45-1 1-1s1 .45 1 1v1c0 .55-.45 1-1 1"/><path fill="#915A34" d="M21.752 19.75h-1.5c-.413 0-.75-.337-.75-.75s.337-.75.75-.75h1.5c.413 0 .75.337.75.75s-.336.75-.75.75"/><path fill="#2A6797" d="M8.002 28.558V36h1l.303-7.442z"/><path fill="#4289C1" d="M4.335 28.053L3.002 36h5l.721-7.588z"/><path fill="#AF7E57" d="M6.789 22.258c.923-.923 3.558-2.964 4.215-3.637.658-.672 1.53.097 1.068.918-.462.821-3.129 3.847-3.129 3.847s1.59.462 1.949.872 1.026 3.078.41 3.488-1.539.103-1.539.103-.973 2.411-3.487 2.257c-1.044-.064-2.103-.975-2.001-2.514.103-1.539.904-2.969 1.18-3.796.308-.923 1.334-1.538 1.334-1.538z"/><path d="M6.103 20.705c-.048 0-.097-.007-.146-.021-2.429-.74-2.859-3.564-2.876-3.684-.039-.273.15-.525.423-.565.272-.038.526.149.566.422.003.023.362 2.316 2.178 2.869.264.081.413.36.333.624-.066.216-.264.355-.478.355zm-1.077 2.012c-.049 0-.099-.007-.148-.023C1.321 21.593.366 17.585.327 17.415c-.062-.269.106-.537.375-.599.271-.062.537.106.6.375.008.036.872 3.618 3.873 4.548.264.082.411.361.33.625-.067.215-.265.353-.479.353z" fill="#5DADEC"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f9cf-1f3ff-200d-2640-fe0f.svg b/public/emoji/1f9cf-1f3ff-200d-2640-fe0f.svg
new file mode 100644
index 0000000000000000000000000000000000000000..6064882a7fc4c38b44b5c1c571047d85a2e7d3b6
--- /dev/null
+++ b/public/emoji/1f9cf-1f3ff-200d-2640-fe0f.svg
@@ -0,0 +1 @@
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#9268CA" d="M33.944 36v-3.5c0-3.314-3.686-5.5-7-5.5h-12c-3.313 0-7 2.186-7 5.5V36h26z"/><path fill="#0B0200" d="M20.889 5.069c4.105 0 10.947 2.053 10.947 10.947 0 8.896 0 10.948-2.053 10.948s-4.79-2.053-8.895-2.053c-4.105 0-6.785 2.053-8.895 2.053-2.287 0-2.053-8.211-2.053-10.948 0-8.894 6.844-10.947 10.949-10.947"/><path fill="#7C533E" d="M21.041 29.414c2.008 0 3.563-1.484 3.563-2.491v-3.108h-7.332v2.998c0 1.326 1.761 2.601 3.769 2.601z"/><path fill="#664131" d="M17.266 25.179c1.022 1.155 2.29 1.468 3.668 1.468 1.379 0 2.647-.312 3.67-1.468v-2.936h-7.338v2.936z"/><path fill="#7C533E" d="M12.678 15.718c0-5.834 3.676-10.563 8.211-10.563 4.533 0 8.209 4.729 8.209 10.563 0 5.833-3.676 10.285-8.209 10.285-4.535 0-8.211-4.452-8.211-10.285"/><path fill="#DF1F32" d="M20.889 23.543c-1.606 0-2.447-.794-2.537-.885-.268-.267-.268-.7 0-.967.266-.265.692-.267.961-.007.035.032.551.491 1.576.491 1.038 0 1.555-.473 1.576-.492.273-.256.703-.248.963.02.26.269.26.691-.004.955-.09.091-.929.885-2.535.885"/><path fill="#0B0200" d="M10.669 19c-.021-1-.044-.224-.044-.465 0-3.422 2.053.494 2.053-1.943 0-2.439 1.368-2.683 2.736-4.051.685-.685 2.053-2.026 2.053-2.026s3.421 2.067 6.158 2.067c2.736 0 5.474 1.375 5.474 4.112 0 2.736 2.053-1.584 2.053 1.837 0 .244-.022-.531-.04.469h.719c.006-2 .006-1.924.006-3.202 0-8.895-6.842-11.672-10.948-11.672-4.104 0-10.947 2.722-10.947 11.617 0 .793-.02 1.257.008 3.257h.719z"/><path d="M17.552 17.887c-.465 0-.846-.381-.846-.847v-.845c0-.465.381-.846.846-.846.466 0 .847.381.847.846v.845c0 .466-.381.847-.847.847m6.765 0c-.465 0-.846-.381-.846-.847v-.845c0-.465.381-.846.846-.846.465 0 .846.381.846.846v.845c0 .466-.381.847-.846.847"/><path fill="#3D2E24" d="M21.78 20.5h-1.69c-.233 0-.423-.19-.423-.423v-.153c0-.233.189-.424.423-.424h1.69c.233 0 .424.19.424.424v.153c0 .233-.191.423-.424.423"/><path fill="#7450A8" d="M8.002 28.558V36h1l.303-7.442z"/><path fill="#9268CA" d="M4.335 28.053L3.002 36h5l.721-7.588z"/><path fill="#7C533E" d="M6.789 22.258c.923-.923 3.558-2.964 4.215-3.637.658-.672 1.53.097 1.068.918-.462.821-3.129 3.847-3.129 3.847s1.59.462 1.949.872 1.026 3.078.41 3.488-1.539.103-1.539.103-.973 2.411-3.487 2.257c-1.044-.064-2.103-.975-2.001-2.514.103-1.539.904-2.969 1.18-3.796.308-.923 1.334-1.538 1.334-1.538z"/><path d="M6.103 20.705c-.048 0-.097-.007-.146-.021-2.429-.74-2.859-3.564-2.876-3.684-.039-.273.15-.525.423-.565.272-.038.526.149.566.422.003.023.362 2.316 2.178 2.869.264.081.413.36.333.624-.066.216-.264.355-.478.355zm-1.077 2.012c-.049 0-.099-.007-.148-.022C1.321 21.593.366 17.586.327 17.416c-.062-.269.106-.537.375-.599.271-.062.537.106.6.375.008.036.872 3.618 3.873 4.548.264.082.411.361.33.625-.067.214-.265.352-.479.352z" fill="#5DADEC"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f9cf-1f3ff-200d-2642-fe0f.svg b/public/emoji/1f9cf-1f3ff-200d-2642-fe0f.svg
new file mode 100644
index 0000000000000000000000000000000000000000..748ab421b0f3f1e7c2647e0a968f023b4e971c39
--- /dev/null
+++ b/public/emoji/1f9cf-1f3ff-200d-2642-fe0f.svg
@@ -0,0 +1 @@
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#4289C1" d="M35.002 36v-2c0-3.314-2.686-6-6-6h-16c-3.313 0-6 2.686-6 6v2h28z"/><path fill="#7C533E" d="M16.642 28.101c0 .736 1.965 1.963 4.36 1.963s4.359-1.157 4.359-1.963V24.29h-8.72v3.811z"/><path fill="#664131" d="M16.634 25.973c1.216 1.374 2.724 1.746 4.364 1.746 1.639 0 3.146-.373 4.363-1.746v-3.491h-8.728v3.491z"/><path fill="#7C533E" d="M14.447 15.936c0 1.448-.734 2.622-1.639 2.622s-1.639-1.174-1.639-2.622.734-2.623 1.639-2.623c.905-.001 1.639 1.174 1.639 2.623m16.388 0c0 1.448-.733 2.622-1.639 2.622-.905 0-1.639-1.174-1.639-2.622s.733-2.623 1.639-2.623c.906-.001 1.639 1.174 1.639 2.623"/><path fill="#7C533E" d="M12.48 16.959c0-5.589 3.816-10.121 8.522-10.121 4.707 0 8.523 4.532 8.523 10.121S25.709 27.08 21.002 27.08c-4.706 0-8.522-4.531-8.522-10.121"/><path fill="#3D2E24" d="M21.002 23.802c-2.754 0-3.6-.705-3.741-.848-.256-.256-.256-.671 0-.927.248-.248.646-.255.902-.023.052.037.721.487 2.839.487 2.2 0 2.836-.485 2.842-.49.256-.255.657-.243.913.015.256.256.242.683-.014.938-.141.143-.987.848-3.741.848"/><path fill="#0B0200" d="M21 3.48c5.648 0 9.178 4.168 9.178 7.641s-.706 4.863-1.412 3.473l-1.412-2.778s-4.235 0-5.647-1.39c0 0 2.118 4.168-2.118 0 0 0 .706 2.779-3.53-.694 0 0-2.118 1.389-2.824 4.862-.196.964-1.412 0-1.412-3.473C11.822 7.648 14.646 3.48 21 3.48"/><path d="M17.002 17c-.55 0-1-.45-1-1v-1c0-.55.45-1 1-1s1 .45 1 1v1c0 .55-.45 1-1 1m8 0c-.55 0-1-.45-1-1v-1c0-.55.45-1 1-1s1 .45 1 1v1c0 .55-.45 1-1 1"/><path fill="#3D2E24" d="M21.752 19.75h-1.5c-.413 0-.75-.337-.75-.75s.337-.75.75-.75h1.5c.413 0 .75.337.75.75s-.336.75-.75.75"/><path fill="#2A6797" d="M8.002 28.558V36h1l.303-7.442z"/><path fill="#4289C1" d="M4.335 28.053L3.002 36h5l.721-7.588z"/><path fill="#7C533E" d="M6.789 22.258c.923-.923 3.558-2.964 4.215-3.637.658-.672 1.53.097 1.068.918-.462.821-3.129 3.847-3.129 3.847s1.59.462 1.949.872 1.026 3.078.41 3.488-1.539.103-1.539.103-.973 2.411-3.487 2.257c-1.044-.064-2.103-.975-2.001-2.514.103-1.539.904-2.969 1.18-3.796.308-.923 1.334-1.538 1.334-1.538z"/><path d="M6.103 20.705c-.048 0-.097-.007-.146-.021-2.429-.74-2.859-3.564-2.876-3.684-.039-.273.15-.525.423-.565.272-.038.526.149.566.422.003.023.362 2.316 2.178 2.869.264.081.413.36.333.624-.066.216-.264.355-.478.355zm-1.077 2.012c-.049 0-.099-.007-.148-.023C1.321 21.593.366 17.585.327 17.415c-.062-.269.106-.537.375-.599.271-.062.537.106.6.375.008.036.872 3.618 3.873 4.548.264.082.411.361.33.625-.067.215-.265.353-.479.353z" fill="#5DADEC"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f9cf-1f3ff.svg b/public/emoji/1f9cf-1f3ff.svg
new file mode 100644
index 0000000000000000000000000000000000000000..748ab421b0f3f1e7c2647e0a968f023b4e971c39
--- /dev/null
+++ b/public/emoji/1f9cf-1f3ff.svg
@@ -0,0 +1 @@
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#4289C1" d="M35.002 36v-2c0-3.314-2.686-6-6-6h-16c-3.313 0-6 2.686-6 6v2h28z"/><path fill="#7C533E" d="M16.642 28.101c0 .736 1.965 1.963 4.36 1.963s4.359-1.157 4.359-1.963V24.29h-8.72v3.811z"/><path fill="#664131" d="M16.634 25.973c1.216 1.374 2.724 1.746 4.364 1.746 1.639 0 3.146-.373 4.363-1.746v-3.491h-8.728v3.491z"/><path fill="#7C533E" d="M14.447 15.936c0 1.448-.734 2.622-1.639 2.622s-1.639-1.174-1.639-2.622.734-2.623 1.639-2.623c.905-.001 1.639 1.174 1.639 2.623m16.388 0c0 1.448-.733 2.622-1.639 2.622-.905 0-1.639-1.174-1.639-2.622s.733-2.623 1.639-2.623c.906-.001 1.639 1.174 1.639 2.623"/><path fill="#7C533E" d="M12.48 16.959c0-5.589 3.816-10.121 8.522-10.121 4.707 0 8.523 4.532 8.523 10.121S25.709 27.08 21.002 27.08c-4.706 0-8.522-4.531-8.522-10.121"/><path fill="#3D2E24" d="M21.002 23.802c-2.754 0-3.6-.705-3.741-.848-.256-.256-.256-.671 0-.927.248-.248.646-.255.902-.023.052.037.721.487 2.839.487 2.2 0 2.836-.485 2.842-.49.256-.255.657-.243.913.015.256.256.242.683-.014.938-.141.143-.987.848-3.741.848"/><path fill="#0B0200" d="M21 3.48c5.648 0 9.178 4.168 9.178 7.641s-.706 4.863-1.412 3.473l-1.412-2.778s-4.235 0-5.647-1.39c0 0 2.118 4.168-2.118 0 0 0 .706 2.779-3.53-.694 0 0-2.118 1.389-2.824 4.862-.196.964-1.412 0-1.412-3.473C11.822 7.648 14.646 3.48 21 3.48"/><path d="M17.002 17c-.55 0-1-.45-1-1v-1c0-.55.45-1 1-1s1 .45 1 1v1c0 .55-.45 1-1 1m8 0c-.55 0-1-.45-1-1v-1c0-.55.45-1 1-1s1 .45 1 1v1c0 .55-.45 1-1 1"/><path fill="#3D2E24" d="M21.752 19.75h-1.5c-.413 0-.75-.337-.75-.75s.337-.75.75-.75h1.5c.413 0 .75.337.75.75s-.336.75-.75.75"/><path fill="#2A6797" d="M8.002 28.558V36h1l.303-7.442z"/><path fill="#4289C1" d="M4.335 28.053L3.002 36h5l.721-7.588z"/><path fill="#7C533E" d="M6.789 22.258c.923-.923 3.558-2.964 4.215-3.637.658-.672 1.53.097 1.068.918-.462.821-3.129 3.847-3.129 3.847s1.59.462 1.949.872 1.026 3.078.41 3.488-1.539.103-1.539.103-.973 2.411-3.487 2.257c-1.044-.064-2.103-.975-2.001-2.514.103-1.539.904-2.969 1.18-3.796.308-.923 1.334-1.538 1.334-1.538z"/><path d="M6.103 20.705c-.048 0-.097-.007-.146-.021-2.429-.74-2.859-3.564-2.876-3.684-.039-.273.15-.525.423-.565.272-.038.526.149.566.422.003.023.362 2.316 2.178 2.869.264.081.413.36.333.624-.066.216-.264.355-.478.355zm-1.077 2.012c-.049 0-.099-.007-.148-.023C1.321 21.593.366 17.585.327 17.415c-.062-.269.106-.537.375-.599.271-.062.537.106.6.375.008.036.872 3.618 3.873 4.548.264.082.411.361.33.625-.067.215-.265.353-.479.353z" fill="#5DADEC"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f9cf-200d-2640-fe0f.svg b/public/emoji/1f9cf-200d-2640-fe0f.svg
new file mode 100644
index 0000000000000000000000000000000000000000..7d8f058a8b4e034edae3ed09f01a9c8417050270
--- /dev/null
+++ b/public/emoji/1f9cf-200d-2640-fe0f.svg
@@ -0,0 +1 @@
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#9268CA" d="M33.944 36v-3.5c0-3.314-3.686-5.5-7-5.5h-12c-3.313 0-7 2.186-7 5.5V36h26z"/><path fill="#FFAC33" d="M20.889 5.069c4.105 0 10.947 2.053 10.947 10.947 0 8.896 0 10.948-2.053 10.948s-4.79-2.053-8.895-2.053c-4.105 0-6.785 2.053-8.895 2.053-2.287 0-2.053-8.211-2.053-10.948 0-8.894 6.844-10.947 10.949-10.947"/><path fill="#FFDC5D" d="M21.041 29.414c2.008 0 3.563-1.484 3.563-2.491v-3.108h-7.332v2.998c0 1.326 1.761 2.601 3.769 2.601z"/><path fill="#F9CA55" d="M17.266 25.179c1.022 1.155 2.29 1.468 3.668 1.468 1.379 0 2.647-.312 3.67-1.468v-2.936h-7.338v2.936z"/><path fill="#FFDC5D" d="M12.678 15.718c0-5.834 3.676-10.563 8.211-10.563 4.533 0 8.209 4.729 8.209 10.563 0 5.833-3.676 10.285-8.209 10.285-4.535 0-8.211-4.452-8.211-10.285"/><path fill="#DF1F32" d="M20.889 23.543c-1.606 0-2.447-.794-2.537-.885-.268-.267-.268-.7 0-.967.266-.265.692-.267.961-.007.035.032.551.491 1.576.491 1.038 0 1.555-.473 1.576-.492.273-.256.703-.248.963.02.26.269.26.691-.004.955-.09.091-.929.885-2.535.885"/><path fill="#FFAC33" d="M10.669 19c-.021-1-.044-.224-.044-.465 0-3.422 2.053.494 2.053-1.943 0-2.439 1.368-2.683 2.736-4.051.685-.685 2.053-2.026 2.053-2.026s3.421 2.067 6.158 2.067c2.736 0 5.474 1.375 5.474 4.112 0 2.736 2.053-1.584 2.053 1.837 0 .244-.022-.531-.04.469h.719c.006-2 .006-1.924.006-3.202 0-8.895-6.842-11.672-10.948-11.672-4.104 0-10.947 2.722-10.947 11.617 0 .793-.02 1.257.008 3.257h.719z"/><path fill="#662113" d="M17.552 17.887c-.465 0-.846-.381-.846-.847v-.845c0-.465.381-.846.846-.846.466 0 .847.381.847.846v.845c0 .466-.381.847-.847.847m6.765 0c-.465 0-.846-.381-.846-.847v-.845c0-.465.381-.846.846-.846.465 0 .846.381.846.846v.845c0 .466-.381.847-.846.847"/><path fill="#C1694F" d="M21.78 20.5h-1.69c-.233 0-.423-.19-.423-.423v-.153c0-.233.189-.424.423-.424h1.69c.233 0 .424.19.424.424v.153c0 .233-.191.423-.424.423"/><path fill="#7450A8" d="M8.002 28.558V36h1l.303-7.442z"/><path fill="#9268CA" d="M4.335 28.053L3.002 36h5l.721-7.588z"/><path fill="#FFDC5D" d="M6.789 22.258c.923-.923 3.558-2.964 4.215-3.637.658-.672 1.53.097 1.068.918-.462.821-3.129 3.847-3.129 3.847s1.59.462 1.949.872 1.026 3.078.41 3.488-1.539.103-1.539.103-.973 2.411-3.487 2.257c-1.044-.064-2.103-.975-2.001-2.514.103-1.539.904-2.969 1.18-3.796.308-.923 1.334-1.538 1.334-1.538z"/><path d="M6.103 20.705c-.048 0-.097-.007-.146-.021-2.429-.74-2.859-3.564-2.876-3.684-.039-.273.15-.525.423-.565.272-.038.526.149.566.422.003.023.362 2.316 2.178 2.869.264.081.413.36.333.624-.066.216-.264.355-.478.355zm-1.077 2.012c-.049 0-.099-.007-.148-.022C1.321 21.593.366 17.586.327 17.416c-.062-.269.106-.537.375-.599.271-.062.537.106.6.375.008.036.872 3.618 3.873 4.548.264.082.411.361.33.625-.067.214-.265.352-.479.352z" fill="#5DADEC"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f9cf-200d-2642-fe0f.svg b/public/emoji/1f9cf-200d-2642-fe0f.svg
new file mode 100644
index 0000000000000000000000000000000000000000..8c119c9905919a8e32fd52768949e300b8ab1b15
--- /dev/null
+++ b/public/emoji/1f9cf-200d-2642-fe0f.svg
@@ -0,0 +1 @@
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#4289C1" d="M35.002 36v-2c0-3.314-2.686-6-6-6h-16c-3.313 0-6 2.686-6 6v2h28z"/><path fill="#FFDC5D" d="M16.642 28.101c0 .736 1.965 1.963 4.36 1.963s4.359-1.157 4.359-1.963V24.29h-8.72v3.811z"/><path fill="#F9CA55" d="M16.634 25.973c1.216 1.374 2.724 1.746 4.364 1.746 1.639 0 3.146-.373 4.363-1.746v-3.491h-8.728v3.491z"/><path fill="#FFDC5D" d="M14.447 15.936c0 1.448-.734 2.622-1.639 2.622s-1.639-1.174-1.639-2.622.734-2.623 1.639-2.623c.905-.001 1.639 1.174 1.639 2.623m16.388 0c0 1.448-.733 2.622-1.639 2.622-.905 0-1.639-1.174-1.639-2.622s.733-2.623 1.639-2.623c.906-.001 1.639 1.174 1.639 2.623"/><path fill="#FFDC5D" d="M12.48 16.959c0-5.589 3.816-10.121 8.522-10.121 4.707 0 8.523 4.532 8.523 10.121S25.709 27.08 21.002 27.08c-4.706 0-8.522-4.531-8.522-10.121"/><path fill="#C1694F" d="M21.002 23.802c-2.754 0-3.6-.705-3.741-.848-.256-.256-.256-.671 0-.927.248-.248.646-.255.902-.023.052.037.721.487 2.839.487 2.2 0 2.836-.485 2.842-.49.256-.255.657-.243.913.015.256.256.242.683-.014.938-.141.143-.987.848-3.741.848"/><path fill="#FFAC33" d="M21 3.48c5.648 0 9.178 4.168 9.178 7.641s-.706 4.863-1.412 3.473l-1.412-2.778s-4.235 0-5.647-1.39c0 0 2.118 4.168-2.118 0 0 0 .706 2.779-3.53-.694 0 0-2.118 1.389-2.824 4.862-.196.964-1.412 0-1.412-3.473C11.822 7.648 14.646 3.48 21 3.48"/><path fill="#662113" d="M17.002 17c-.55 0-1-.45-1-1v-1c0-.55.45-1 1-1s1 .45 1 1v1c0 .55-.45 1-1 1m8 0c-.55 0-1-.45-1-1v-1c0-.55.45-1 1-1s1 .45 1 1v1c0 .55-.45 1-1 1"/><path fill="#C1694F" d="M21.752 19.75h-1.5c-.413 0-.75-.337-.75-.75s.337-.75.75-.75h1.5c.413 0 .75.337.75.75s-.336.75-.75.75"/><path fill="#2A6797" d="M8.002 28.558V36h1l.303-7.442z"/><path fill="#4289C1" d="M4.335 28.053L3.002 36h5l.721-7.588z"/><path fill="#FFDC5D" d="M6.789 22.258c.923-.923 3.558-2.964 4.215-3.637.658-.672 1.53.097 1.068.918-.462.821-3.129 3.847-3.129 3.847s1.59.462 1.949.872 1.026 3.078.41 3.488-1.539.103-1.539.103-.973 2.411-3.487 2.257c-1.044-.064-2.103-.975-2.001-2.514.103-1.539.904-2.969 1.18-3.796.308-.923 1.334-1.538 1.334-1.538z"/><path d="M6.103 20.705c-.048 0-.097-.007-.146-.021-2.429-.74-2.859-3.564-2.876-3.684-.039-.273.15-.525.423-.565.272-.038.526.149.566.422.003.023.362 2.316 2.178 2.869.264.081.413.36.333.624-.066.216-.264.355-.478.355zm-1.077 2.012c-.049 0-.099-.007-.148-.023C1.321 21.593.366 17.585.327 17.415c-.062-.269.106-.537.375-.599.271-.062.537.106.6.375.008.036.872 3.618 3.873 4.548.264.082.411.361.33.625-.067.215-.265.353-.479.353z" fill="#5DADEC"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f9cf.svg b/public/emoji/1f9cf.svg
new file mode 100644
index 0000000000000000000000000000000000000000..8c119c9905919a8e32fd52768949e300b8ab1b15
--- /dev/null
+++ b/public/emoji/1f9cf.svg
@@ -0,0 +1 @@
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#4289C1" d="M35.002 36v-2c0-3.314-2.686-6-6-6h-16c-3.313 0-6 2.686-6 6v2h28z"/><path fill="#FFDC5D" d="M16.642 28.101c0 .736 1.965 1.963 4.36 1.963s4.359-1.157 4.359-1.963V24.29h-8.72v3.811z"/><path fill="#F9CA55" d="M16.634 25.973c1.216 1.374 2.724 1.746 4.364 1.746 1.639 0 3.146-.373 4.363-1.746v-3.491h-8.728v3.491z"/><path fill="#FFDC5D" d="M14.447 15.936c0 1.448-.734 2.622-1.639 2.622s-1.639-1.174-1.639-2.622.734-2.623 1.639-2.623c.905-.001 1.639 1.174 1.639 2.623m16.388 0c0 1.448-.733 2.622-1.639 2.622-.905 0-1.639-1.174-1.639-2.622s.733-2.623 1.639-2.623c.906-.001 1.639 1.174 1.639 2.623"/><path fill="#FFDC5D" d="M12.48 16.959c0-5.589 3.816-10.121 8.522-10.121 4.707 0 8.523 4.532 8.523 10.121S25.709 27.08 21.002 27.08c-4.706 0-8.522-4.531-8.522-10.121"/><path fill="#C1694F" d="M21.002 23.802c-2.754 0-3.6-.705-3.741-.848-.256-.256-.256-.671 0-.927.248-.248.646-.255.902-.023.052.037.721.487 2.839.487 2.2 0 2.836-.485 2.842-.49.256-.255.657-.243.913.015.256.256.242.683-.014.938-.141.143-.987.848-3.741.848"/><path fill="#FFAC33" d="M21 3.48c5.648 0 9.178 4.168 9.178 7.641s-.706 4.863-1.412 3.473l-1.412-2.778s-4.235 0-5.647-1.39c0 0 2.118 4.168-2.118 0 0 0 .706 2.779-3.53-.694 0 0-2.118 1.389-2.824 4.862-.196.964-1.412 0-1.412-3.473C11.822 7.648 14.646 3.48 21 3.48"/><path fill="#662113" d="M17.002 17c-.55 0-1-.45-1-1v-1c0-.55.45-1 1-1s1 .45 1 1v1c0 .55-.45 1-1 1m8 0c-.55 0-1-.45-1-1v-1c0-.55.45-1 1-1s1 .45 1 1v1c0 .55-.45 1-1 1"/><path fill="#C1694F" d="M21.752 19.75h-1.5c-.413 0-.75-.337-.75-.75s.337-.75.75-.75h1.5c.413 0 .75.337.75.75s-.336.75-.75.75"/><path fill="#2A6797" d="M8.002 28.558V36h1l.303-7.442z"/><path fill="#4289C1" d="M4.335 28.053L3.002 36h5l.721-7.588z"/><path fill="#FFDC5D" d="M6.789 22.258c.923-.923 3.558-2.964 4.215-3.637.658-.672 1.53.097 1.068.918-.462.821-3.129 3.847-3.129 3.847s1.59.462 1.949.872 1.026 3.078.41 3.488-1.539.103-1.539.103-.973 2.411-3.487 2.257c-1.044-.064-2.103-.975-2.001-2.514.103-1.539.904-2.969 1.18-3.796.308-.923 1.334-1.538 1.334-1.538z"/><path d="M6.103 20.705c-.048 0-.097-.007-.146-.021-2.429-.74-2.859-3.564-2.876-3.684-.039-.273.15-.525.423-.565.272-.038.526.149.566.422.003.023.362 2.316 2.178 2.869.264.081.413.36.333.624-.066.216-.264.355-.478.355zm-1.077 2.012c-.049 0-.099-.007-.148-.023C1.321 21.593.366 17.585.327 17.415c-.062-.269.106-.537.375-.599.271-.062.537.106.6.375.008.036.872 3.618 3.873 4.548.264.082.411.361.33.625-.067.215-.265.353-.479.353z" fill="#5DADEC"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f9d1-1f3fb-200d-1f91d-200d-1f9d1-1f3fb.svg b/public/emoji/1f9d1-1f3fb-200d-1f91d-200d-1f9d1-1f3fb.svg
new file mode 100644
index 0000000000000000000000000000000000000000..5fedd969b5d3a8066c587db4027958d87e63d34e
--- /dev/null
+++ b/public/emoji/1f9d1-1f3fb-200d-1f91d-200d-1f9d1-1f3fb.svg
@@ -0,0 +1 @@
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#292F33" d="M11 0C9.736 0 8.565.393 7.598 1.061 7.401 1.031 7.205 1 7 1 4.791 1 3 2.791 3 5v6c0 3.866 3.134 7 7 7s7-3.134 7-7V6.001C17 2.687 14.314 0 11 0z"/><path fill="#F7DECE" d="M11.213 34.309c-.052.682 1.849.953 2.129.791.299-.173-.698-.623-.702-.977-.019-1.797.53-1.648.311-3.492.443-1.625.672-2.592.672-3.131 0-1.25-3.312-.766-3.312 0 0 .344.365 1.681.417 3.131-.313 1.659.641 1.615.485 3.678zm-2.448 0c.052.682-1.849.953-2.129.791-.299-.173.698-.623.702-.977.019-1.797-.53-1.648-.311-3.492-.443-1.625-.672-2.592-.672-3.131 0-1.25 3.313-.766 3.313 0 0 .344-.365 1.681-.417 3.131.311 1.659-.642 1.615-.486 3.678z"/><path fill="#EEC2AD" d="M10.311 27.5c0 .206.13.771.246 1.5h2.817c.164-.689.249-1.175.249-1.5 0-1.25-3.312-.766-3.312 0zm-3.957 0c0 .325.085.811.249 1.5H9.42c.116-.729.247-1.294.247-1.5 0-.766-3.313-1.25-3.313 0z"/><path fill="#F7DECE" d="M3.258 26.96c-.258.124-.503-.097-.619-.227-.328-.367-.583-1.246-.282-2.209.303-.973.6-2.384 1.199-4.002.081-.22.499-3.764.805-4.445.197-.437 1.28-.896 1.81-.807.529.089.246.651.105 1.13 0 0-.916 3.953-1.016 4.296-.316 1.079-1.624 2.918-1.565 4.237.031.692.06 1.255-.339 1.246-.049.362-.003.735-.098.781zm14.984-.2c.271.091.487-.159.586-.302.279-.405.422-1.309.004-2.227-.423-.927-.894-2.29-1.69-3.821-.108-.208-.966-3.672-1.355-4.309-.25-.409-1.382-.729-1.897-.574-.513.154-.162.676.037 1.134 0 0 1.403 3.807 1.546 4.135.449 1.031 1.977 2.691 2.082 4.008.056.69.097 1.253.492 1.194.094.353.095.729.195.762z"/><path fill="#292F33" d="M13.945 36c.305 0 .372-.418.089-.629-.379-.285-.88-1.371-1.561-1.371h-1.245c-.229 0-.49 1.209-.41 1.48.102.345.433.52.812.52h2.315zm-7.913 0c-.305 0-.372-.418-.089-.629.379-.285.88-1.371 1.561-1.371h1.245c.229 0 .49 1.209.41 1.48-.102.345-.433.52-.811.52H6.032z"/><path fill="#E75A70" d="M14.354 17.771L16 16c-1.438-1.792-4-2-4-2H8s-2.562.208-4 2l1.646 1.771S6.25 20.688 6.25 21 5 25.75 5 28h10c0-2.25-1.25-6.688-1.25-7s.604-3.229.604-3.229z"/><path fill="#DA2F47" d="M13.75 21c0-.106.07-.512.161-1H6.089c.092.488.161.894.161 1 0 .083-.122.509-.223 1h7.942c-.108-.558-.219-.917-.219-1z"/><path fill="#F7DECE" d="M8 11v4c0 1.104.896 2 2 2s2-.896 2-2v-4H8z"/><path fill="#EEC2AD" d="M12 11l-4 .019V15s2 1 4 0v-4z"/><path fill="#F7DECE" d="M15 3H5v6c0 2.762 2.238 5 5 5s5-2.237 5-5V3z"/><path fill="#292F33" d="M15 2H5L4 7c4 0 4-4 4-4s0 4 8 4l-1-5z"/><path fill="#DF1F32" d="M12 12H8s0 1 2 1 2-1 2-1z"/><circle fill="#662113" cx="7.5" cy="8.5" r=".5"/><circle fill="#662113" cx="12.5" cy="8.5" r=".5"/><path fill="#C1694F" d="M9 10h2s0 1-1 1-1-1-1-1z"/><path fill="#292F33" d="M26.5 0c-1.187 0-2.282.379-3.181 1.018C21.473 1.114 20 2.629 20 4.5c0 1.542.007 3.484 2.038 4.208C23.036 10.094 24.66 11 26.5 11c3.037 0 5.5-2.462 5.5-5.499C32 2.463 29.537 0 26.5 0z"/><path fill="#F7DECE" d="M18.117 26.76c-.271.091-.487-.159-.586-.302-.279-.405-.422-1.309-.004-2.227.423-.927.702-2.072 1.69-3.821.115-.204.494-2.746 1.242-4.354.202-.435 1.495-.684 2.009-.529.513.154-.005.98-.037 1.134-.344 1.651-1.305 4.077-1.45 4.404-.8 1.806-1.965 2.389-2.071 3.706-.055.69-.205 1.286-.6 1.228-.092.352-.094.728-.193.761zm14.595.204c.257.126.504-.094.62-.222.33-.365.591-1.242.296-2.208-.297-.975-.424-2.146-1.174-4.01-.087-.217-.129-2.787-.66-4.479-.143-.457-1.392-.875-1.922-.789-.529.086-.124.972-.112 1.129.124 1.682.758 4.213.859 4.556.556 1.895 1.634 2.627 1.566 3.946-.036.692.034 1.302.433 1.296.048.363 0 .735.094.781z"/><path fill="#AAB8C2" d="M29.555 29.5c.5-2.734.422-6.5.422-6.5h-7.963s-.078 3.766.422 6.5c.063.344.188 3.344-.109 5.5-.066.479 2.886.937 2.844-.125-.078-1.969.264-3.513.328-4.5.035-.547.25-1.875.344-3.208.011-.018.295-.018.306 0 .094 1.333.308 2.661.344 3.208.064.987.406 2.531.328 4.5-.042 1.062 2.91.604 2.844.125-.297-2.156-.172-5.156-.11-5.5z"/><path fill="#292F33" d="M30.54 36c.499-.406-.041-1.161-1.42-1.402-1.163-.203-2.2-.032-2.363.35-.212.493-.05 1.052-.05 1.052h3.833zm-9.117 0c-.499-.406.041-1.161 1.42-1.402 1.163-.203 2.2-.032 2.363.35.212.494.05 1.053.05 1.053L21.423 36z"/><path fill="#4289C1" d="M30.797 14.766C29.578 14 28 14 28 14h-4s-1.578 0-2.797.766c-1.201.754-1.656 3-1.656 3l2.203.688.109 5.546h8.281l.109-5.547 2.203-.688c.001.001-.454-2.245-1.655-2.999z"/><path fill="#F7DECE" d="M24 10.042v4c0 .682.896 1.305 2 1.305s2-.668 2-1.305v-4h-4z"/><path fill="#EEC2AD" d="M24 14.042c0 .682.896 1.305 2 1.305s2-.668 2-1.305V11l-4 .019v3.023z"/><path fill="#F7DECE" d="M31 3H21v6c0 2.762 2.238 5 5 5s5-2.237 5-5V3z"/><path fill="#292F33" d="M21 2.5L20.5 5l.5 2c2.333 0 2.85-2.412 2.965-3.488C24.004 4.588 24.779 7 31 7l.5-2-.5-2.5H21z"/><path fill="#C1694F" d="M28 12h-4s0 1 2 1 2-1 2-1z"/><circle fill="#662113" cx="23.5" cy="8.5" r=".5"/><circle fill="#662113" cx="28.5" cy="8.5" r=".5"/><path fill="#C1694F" d="M25 10h2s0 1-1 1-1-1-1-1z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f9d1-1f3fc-200d-1f91d-200d-1f9d1-1f3fb.svg b/public/emoji/1f9d1-1f3fc-200d-1f91d-200d-1f9d1-1f3fb.svg
new file mode 100644
index 0000000000000000000000000000000000000000..53e58734c2a17c7fffeeef7c7a97bb20193bf872
--- /dev/null
+++ b/public/emoji/1f9d1-1f3fc-200d-1f91d-200d-1f9d1-1f3fb.svg
@@ -0,0 +1 @@
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#FFE51E" d="M11 0C9.736 0 8.565.393 7.598 1.061 7.401 1.031 7.205 1 7 1 4.791 1 3 2.791 3 5v6c0 3.866 3.134 7 7 7s7-3.134 7-7V6.001C17 2.687 14.314 0 11 0z"/><path fill="#F3D2A2" d="M11.213 34.309c-.052.682 1.849.953 2.129.791.299-.173-.698-.623-.702-.977-.019-1.797.53-1.648.311-3.492.443-1.625.672-2.592.672-3.131 0-1.25-3.312-.766-3.312 0 0 .344.365 1.681.417 3.131-.313 1.659.641 1.615.485 3.678zm-2.448 0c.052.682-1.849.953-2.129.791-.299-.173.698-.623.702-.977.019-1.797-.53-1.648-.311-3.492-.443-1.625-.672-2.592-.672-3.131 0-1.25 3.313-.766 3.313 0 0 .344-.365 1.681-.417 3.131.311 1.659-.642 1.615-.486 3.678z"/><path fill="#E2C196" d="M10.311 27.5c0 .206.13.771.246 1.5h2.817c.164-.689.249-1.175.249-1.5 0-1.25-3.312-.766-3.312 0zm-3.957 0c0 .325.085.811.249 1.5H9.42c.116-.729.247-1.294.247-1.5 0-.766-3.313-1.25-3.313 0z"/><path fill="#F3D2A2" d="M3.258 26.96c-.258.124-.503-.097-.619-.227-.328-.367-.583-1.246-.282-2.209.303-.973.6-2.384 1.199-4.002.081-.22.499-3.764.805-4.445.197-.437 1.28-.896 1.81-.807.529.089.246.651.105 1.13 0 0-.916 3.953-1.016 4.296-.316 1.079-1.624 2.918-1.565 4.237.031.692.06 1.255-.339 1.246-.049.362-.003.735-.098.781zm14.984-.2c.271.091.487-.159.586-.302.279-.405.422-1.309.004-2.227-.423-.927-.894-2.29-1.69-3.821-.108-.208-.966-3.672-1.355-4.309-.25-.409-1.382-.729-1.897-.574-.513.154-.162.676.037 1.134 0 0 1.403 3.807 1.546 4.135.449 1.031 1.977 2.691 2.082 4.008.056.69.097 1.253.492 1.194.094.353.095.729.195.762z"/><path fill="#292F33" d="M13.945 36c.305 0 .372-.418.089-.629-.379-.285-.88-1.371-1.561-1.371h-1.245c-.229 0-.49 1.209-.41 1.48.102.345.433.52.812.52h2.315zm-7.913 0c-.305 0-.372-.418-.089-.629.379-.285.88-1.371 1.561-1.371h1.245c.229 0 .49 1.209.41 1.48-.102.345-.433.52-.811.52H6.032z"/><path fill="#E75A70" d="M14.354 17.771L16 16c-1.438-1.792-4-2-4-2H8s-2.562.208-4 2l1.646 1.771S6.25 20.688 6.25 21 5 25.75 5 28h10c0-2.25-1.25-6.688-1.25-7s.604-3.229.604-3.229z"/><path fill="#DA2F47" d="M13.75 21c0-.106.07-.512.161-1H6.089c.092.488.161.894.161 1 0 .083-.122.509-.223 1h7.942c-.108-.558-.219-.917-.219-1z"/><path fill="#F3D2A2" d="M8 11v4c0 1.104.896 2 2 2s2-.896 2-2v-4H8z"/><path fill="#E2C196" d="M12 11l-4 .019V15s2 1 4 0v-4z"/><path fill="#F3D2A2" d="M15 3H5v6c0 2.762 2.238 5 5 5s5-2.237 5-5V3z"/><path fill="#FFE51E" d="M15 2H5L4 7c4 0 4-4 4-4s0 4 8 4l-1-5z"/><path fill="#DF1F32" d="M12 12H8s0 1 2 1 2-1 2-1z"/><circle fill="#662113" cx="7.5" cy="8.5" r=".5"/><circle fill="#662113" cx="12.5" cy="8.5" r=".5"/><path fill="#C1694F" d="M9 10h2s0 1-1 1-1-1-1-1z"/><path fill="#292F33" d="M26.5 0c-1.187 0-2.282.379-3.181 1.018C21.473 1.114 20 2.629 20 4.5c0 1.542.007 3.484 2.038 4.208C23.036 10.094 24.66 11 26.5 11c3.037 0 5.5-2.462 5.5-5.499C32 2.463 29.537 0 26.5 0z"/><path fill="#F7DECE" d="M18.117 26.76c-.271.091-.487-.159-.586-.302-.279-.405-.422-1.309-.004-2.227.423-.927.702-2.072 1.69-3.821.115-.204.494-2.746 1.242-4.354.202-.435 1.495-.684 2.009-.529.513.154-.005.98-.037 1.134-.344 1.651-1.305 4.077-1.45 4.404-.8 1.806-1.965 2.389-2.071 3.706-.055.69-.205 1.286-.6 1.228-.092.352-.094.728-.193.761zm14.595.204c.257.126.504-.094.62-.222.33-.365.591-1.242.296-2.208-.297-.975-.424-2.146-1.174-4.01-.087-.217-.129-2.787-.66-4.479-.143-.457-1.392-.875-1.922-.789-.529.086-.124.972-.112 1.129.124 1.682.758 4.213.859 4.556.556 1.895 1.634 2.627 1.566 3.946-.036.692.034 1.302.433 1.296.048.363 0 .735.094.781z"/><path fill="#AAB8C2" d="M29.555 29.5c.5-2.734.422-6.5.422-6.5h-7.963s-.078 3.766.422 6.5c.063.344.188 3.344-.109 5.5-.066.479 2.886.937 2.844-.125-.078-1.969.264-3.513.328-4.5.035-.547.25-1.875.344-3.208.011-.018.295-.018.306 0 .094 1.333.308 2.661.344 3.208.064.987.406 2.531.328 4.5-.042 1.062 2.91.604 2.844.125-.297-2.156-.172-5.156-.11-5.5z"/><path fill="#292F33" d="M30.54 36c.499-.406-.041-1.161-1.42-1.402-1.163-.203-2.2-.032-2.363.35-.212.493-.05 1.052-.05 1.052h3.833zm-9.117 0c-.499-.406.041-1.161 1.42-1.402 1.163-.203 2.2-.032 2.363.35.212.494.05 1.053.05 1.053L21.423 36z"/><path fill="#4289C1" d="M30.797 14.766C29.578 14 28 14 28 14h-4s-1.578 0-2.797.766c-1.201.754-1.656 3-1.656 3l2.203.688.109 5.546h8.281l.109-5.547 2.203-.688c.001.001-.454-2.245-1.655-2.999z"/><path fill="#F7DECE" d="M24 10.042v4c0 .682.896 1.305 2 1.305s2-.668 2-1.305v-4h-4z"/><path fill="#EEC2AD" d="M24 14.042c0 .682.896 1.305 2 1.305s2-.668 2-1.305V11l-4 .019v3.023z"/><path fill="#F7DECE" d="M31 3H21v6c0 2.762 2.238 5 5 5s5-2.237 5-5V3z"/><path fill="#292F33" d="M21 2.5L20.5 5l.5 2c2.333 0 2.85-2.412 2.965-3.488C24.004 4.588 24.779 7 31 7l.5-2-.5-2.5H21z"/><path fill="#C1694F" d="M28 12h-4s0 1 2 1 2-1 2-1z"/><circle fill="#662113" cx="23.5" cy="8.5" r=".5"/><circle fill="#662113" cx="28.5" cy="8.5" r=".5"/><path fill="#C1694F" d="M25 10h2s0 1-1 1-1-1-1-1z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f9d1-1f3fc-200d-1f91d-200d-1f9d1-1f3fc.svg b/public/emoji/1f9d1-1f3fc-200d-1f91d-200d-1f9d1-1f3fc.svg
new file mode 100644
index 0000000000000000000000000000000000000000..d5be6fe590ab9eae4c9a93085f7d8a9603dfeaef
--- /dev/null
+++ b/public/emoji/1f9d1-1f3fc-200d-1f91d-200d-1f9d1-1f3fc.svg
@@ -0,0 +1 @@
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#FFE51E" d="M11 0C9.736 0 8.565.393 7.598 1.061 7.401 1.031 7.205 1 7 1 4.791 1 3 2.791 3 5v6c0 3.866 3.134 7 7 7s7-3.134 7-7V6.001C17 2.687 14.314 0 11 0z"/><path fill="#F3D2A2" d="M11.213 34.309c-.052.682 1.849.953 2.129.791.299-.173-.698-.623-.702-.977-.019-1.797.53-1.648.311-3.492.443-1.625.672-2.592.672-3.131 0-1.25-3.312-.766-3.312 0 0 .344.365 1.681.417 3.131-.313 1.659.641 1.615.485 3.678zm-2.448 0c.052.682-1.849.953-2.129.791-.299-.173.698-.623.702-.977.019-1.797-.53-1.648-.311-3.492-.443-1.625-.672-2.592-.672-3.131 0-1.25 3.313-.766 3.313 0 0 .344-.365 1.681-.417 3.131.311 1.659-.642 1.615-.486 3.678z"/><path fill="#E2C196" d="M10.311 27.5c0 .206.13.771.246 1.5h2.817c.164-.689.249-1.175.249-1.5 0-1.25-3.312-.766-3.312 0zm-3.957 0c0 .325.085.811.249 1.5H9.42c.116-.729.247-1.294.247-1.5 0-.766-3.313-1.25-3.313 0z"/><path fill="#F3D2A2" d="M3.258 26.96c-.258.124-.503-.097-.619-.227-.328-.367-.583-1.246-.282-2.209.303-.973.6-2.384 1.199-4.002.081-.22.499-3.764.805-4.445.197-.437 1.28-.896 1.81-.807.529.089.246.651.105 1.13 0 0-.916 3.953-1.016 4.296-.316 1.079-1.624 2.918-1.565 4.237.031.692.06 1.255-.339 1.246-.049.362-.003.735-.098.781zm14.984-.2c.271.091.487-.159.586-.302.279-.405.422-1.309.004-2.227-.423-.927-.894-2.29-1.69-3.821-.108-.208-.966-3.672-1.355-4.309-.25-.409-1.382-.729-1.897-.574-.513.154-.162.676.037 1.134 0 0 1.403 3.807 1.546 4.135.449 1.031 1.977 2.691 2.082 4.008.056.69.097 1.253.492 1.194.094.353.095.729.195.762z"/><path fill="#292F33" d="M13.945 36c.305 0 .372-.418.089-.629-.379-.285-.88-1.371-1.561-1.371h-1.245c-.229 0-.49 1.209-.41 1.48.102.345.433.52.812.52h2.315zm-7.913 0c-.305 0-.372-.418-.089-.629.379-.285.88-1.371 1.561-1.371h1.245c.229 0 .49 1.209.41 1.48-.102.345-.433.52-.811.52H6.032z"/><path fill="#E75A70" d="M14.354 17.771L16 16c-1.438-1.792-4-2-4-2H8s-2.562.208-4 2l1.646 1.771S6.25 20.688 6.25 21 5 25.75 5 28h10c0-2.25-1.25-6.688-1.25-7s.604-3.229.604-3.229z"/><path fill="#DA2F47" d="M13.75 21c0-.106.07-.512.161-1H6.089c.092.488.161.894.161 1 0 .083-.122.509-.223 1h7.942c-.108-.558-.219-.917-.219-1z"/><path fill="#F3D2A2" d="M8 11v4c0 1.104.896 2 2 2s2-.896 2-2v-4H8z"/><path fill="#E2C196" d="M12 11l-4 .019V15s2 1 4 0v-4z"/><path fill="#F3D2A2" d="M15 3H5v6c0 2.762 2.238 5 5 5s5-2.237 5-5V3z"/><path fill="#FFE51E" d="M15 2H5L4 7c4 0 4-4 4-4s0 4 8 4l-1-5z"/><path fill="#DF1F32" d="M12 12H8s0 1 2 1 2-1 2-1z"/><circle fill="#662113" cx="7.5" cy="8.5" r=".5"/><circle fill="#662113" cx="12.5" cy="8.5" r=".5"/><path fill="#C1694F" d="M9 10h2s0 1-1 1-1-1-1-1z"/><path fill="#FFE51E" d="M26.5 0c-1.187 0-2.282.379-3.181 1.018C21.473 1.114 20 2.629 20 4.5c0 1.542.007 3.484 2.038 4.208C23.036 10.094 24.66 11 26.5 11c3.037 0 5.5-2.462 5.5-5.499C32 2.463 29.537 0 26.5 0z"/><path fill="#F3D2A2" d="M18.117 26.76c-.271.091-.487-.159-.586-.302-.279-.405-.422-1.309-.004-2.227.423-.927.702-2.072 1.69-3.821.115-.204.494-2.746 1.242-4.354.202-.435 1.495-.684 2.009-.529.513.154-.005.98-.037 1.134-.344 1.651-1.305 4.077-1.45 4.404-.8 1.806-1.965 2.389-2.071 3.706-.055.69-.205 1.286-.6 1.228-.092.352-.094.728-.193.761zm14.595.204c.257.126.504-.094.62-.222.33-.365.591-1.242.296-2.208-.297-.975-.424-2.146-1.174-4.01-.087-.217-.129-2.787-.66-4.479-.143-.457-1.392-.875-1.922-.789-.529.086-.124.972-.112 1.129.124 1.682.758 4.213.859 4.556.556 1.895 1.634 2.627 1.566 3.946-.036.692.034 1.302.433 1.296.048.363 0 .735.094.781z"/><path fill="#AAB8C2" d="M29.555 29.5c.5-2.734.422-6.5.422-6.5h-7.963s-.078 3.766.422 6.5c.063.344.188 3.344-.109 5.5-.066.479 2.886.937 2.844-.125-.078-1.969.264-3.513.328-4.5.035-.547.25-1.875.344-3.208.011-.018.295-.018.306 0 .094 1.333.308 2.661.344 3.208.064.987.406 2.531.328 4.5-.042 1.062 2.91.604 2.844.125-.297-2.156-.172-5.156-.11-5.5z"/><path fill="#292F33" d="M30.54 36c.499-.406-.041-1.161-1.42-1.402-1.163-.203-2.2-.032-2.363.35-.212.493-.05 1.052-.05 1.052h3.833zm-9.117 0c-.499-.406.041-1.161 1.42-1.402 1.163-.203 2.2-.032 2.363.35.212.494.05 1.053.05 1.053L21.423 36z"/><path fill="#4289C1" d="M30.797 14.766C29.578 14 28 14 28 14h-4s-1.578 0-2.797.766c-1.201.754-1.656 3-1.656 3l2.203.688.109 5.546h8.281l.109-5.547 2.203-.688c.001.001-.454-2.245-1.655-2.999z"/><path fill="#F3D2A2" d="M24 10.042v4c0 .682.896 1.305 2 1.305s2-.668 2-1.305v-4h-4z"/><path fill="#E2C196" d="M24 14.042c0 .682.896 1.305 2 1.305s2-.668 2-1.305V11l-4 .019v3.023z"/><path fill="#F3D2A2" d="M31 3H21v6c0 2.762 2.238 5 5 5s5-2.237 5-5V3z"/><path fill="#FFE51E" d="M21 2.5L20.5 5l.5 2c2.333 0 2.85-2.412 2.965-3.488C24.004 4.588 24.779 7 31 7l.5-2-.5-2.5H21z"/><path fill="#C1694F" d="M28 12h-4s0 1 2 1 2-1 2-1z"/><circle fill="#662113" cx="23.5" cy="8.5" r=".5"/><circle fill="#662113" cx="28.5" cy="8.5" r=".5"/><path fill="#C1694F" d="M25 10h2s0 1-1 1-1-1-1-1z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f9d1-1f3fd-200d-1f91d-200d-1f9d1-1f3fb.svg b/public/emoji/1f9d1-1f3fd-200d-1f91d-200d-1f9d1-1f3fb.svg
new file mode 100644
index 0000000000000000000000000000000000000000..adf04f14ea62b09978ba6d95b4a35ee0dd37255e
--- /dev/null
+++ b/public/emoji/1f9d1-1f3fd-200d-1f91d-200d-1f9d1-1f3fb.svg
@@ -0,0 +1 @@
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#963B22" d="M11 0C9.736 0 8.565.393 7.598 1.061 7.401 1.031 7.205 1 7 1 4.791 1 3 2.791 3 5v6c0 3.866 3.134 7 7 7s7-3.134 7-7V6.001C17 2.687 14.314 0 11 0z"/><path fill="#D4AB88" d="M11.213 34.309c-.052.682 1.849.953 2.129.791.299-.173-.698-.623-.702-.977-.019-1.797.53-1.648.311-3.492.443-1.625.672-2.592.672-3.131 0-1.25-3.312-.766-3.312 0 0 .344.365 1.681.417 3.131-.313 1.659.641 1.615.485 3.678zm-2.448 0c.052.682-1.849.953-2.129.791-.299-.173.698-.623.702-.977.019-1.797-.53-1.648-.311-3.492-.443-1.625-.672-2.592-.672-3.131 0-1.25 3.313-.766 3.313 0 0 .344-.365 1.681-.417 3.131.311 1.659-.642 1.615-.486 3.678z"/><path fill="#CC9B7A" d="M10.311 27.5c0 .206.13.771.246 1.5h2.817c.164-.689.249-1.175.249-1.5 0-1.25-3.312-.766-3.312 0zm-3.957 0c0 .325.085.811.249 1.5H9.42c.116-.729.247-1.294.247-1.5 0-.766-3.313-1.25-3.313 0z"/><path fill="#D4AB88" d="M3.258 26.96c-.258.124-.503-.097-.619-.227-.328-.367-.583-1.246-.282-2.209.303-.973.6-2.384 1.199-4.002.081-.22.499-3.764.805-4.445.197-.437 1.28-.896 1.81-.807.529.089.246.651.105 1.13 0 0-.916 3.953-1.016 4.296-.316 1.079-1.624 2.918-1.565 4.237.031.692.06 1.255-.339 1.246-.049.362-.003.735-.098.781zm14.984-.2c.271.091.487-.159.586-.302.279-.405.422-1.309.004-2.227-.423-.927-.894-2.29-1.69-3.821-.108-.208-.966-3.672-1.355-4.309-.25-.409-1.382-.729-1.897-.574-.513.154-.162.676.037 1.134 0 0 1.403 3.807 1.546 4.135.449 1.031 1.977 2.691 2.082 4.008.056.69.097 1.253.492 1.194.094.353.095.729.195.762z"/><path fill="#292F33" d="M13.945 36c.305 0 .372-.418.089-.629-.379-.285-.88-1.371-1.561-1.371h-1.245c-.229 0-.49 1.209-.41 1.48.102.345.433.52.812.52h2.315zm-7.913 0c-.305 0-.372-.418-.089-.629.379-.285.88-1.371 1.561-1.371h1.245c.229 0 .49 1.209.41 1.48-.102.345-.433.52-.811.52H6.032z"/><path fill="#E75A70" d="M14.354 17.771L16 16c-1.438-1.792-4-2-4-2H8s-2.562.208-4 2l1.646 1.771S6.25 20.688 6.25 21 5 25.75 5 28h10c0-2.25-1.25-6.688-1.25-7s.604-3.229.604-3.229z"/><path fill="#DA2F47" d="M13.75 21c0-.106.07-.512.161-1H6.089c.092.488.161.894.161 1 0 .083-.122.509-.223 1h7.942c-.108-.558-.219-.917-.219-1z"/><path fill="#D4AB88" d="M8 11v4c0 1.104.896 2 2 2s2-.896 2-2v-4H8z"/><path fill="#CC9B7A" d="M12 11l-4 .019V15s2 1 4 0v-4z"/><path fill="#D4AB88" d="M15 3H5v6c0 2.762 2.238 5 5 5s5-2.237 5-5V3z"/><path fill="#963B22" d="M15 2H5L4 7c4 0 4-4 4-4s0 4 8 4l-1-5z"/><path fill="#DF1F32" d="M12 12H8s0 1 2 1 2-1 2-1z"/><circle fill="#662113" cx="7.5" cy="8.5" r=".5"/><circle fill="#662113" cx="12.5" cy="8.5" r=".5"/><path fill="#C1694F" d="M9 10h2s0 1-1 1-1-1-1-1z"/><path fill="#292F33" d="M26.5 0c-1.187 0-2.282.379-3.181 1.018C21.473 1.114 20 2.629 20 4.5c0 1.542.007 3.484 2.038 4.208C23.036 10.094 24.66 11 26.5 11c3.037 0 5.5-2.462 5.5-5.499C32 2.463 29.537 0 26.5 0z"/><path fill="#F7DECE" d="M18.117 26.76c-.271.091-.487-.159-.586-.302-.279-.405-.422-1.309-.004-2.227.423-.927.702-2.072 1.69-3.821.115-.204.494-2.746 1.242-4.354.202-.435 1.495-.684 2.009-.529.513.154-.005.98-.037 1.134-.344 1.651-1.305 4.077-1.45 4.404-.8 1.806-1.965 2.389-2.071 3.706-.055.69-.205 1.286-.6 1.228-.092.352-.094.728-.193.761zm14.595.204c.257.126.504-.094.62-.222.33-.365.591-1.242.296-2.208-.297-.975-.424-2.146-1.174-4.01-.087-.217-.129-2.787-.66-4.479-.143-.457-1.392-.875-1.922-.789-.529.086-.124.972-.112 1.129.124 1.682.758 4.213.859 4.556.556 1.895 1.634 2.627 1.566 3.946-.036.692.034 1.302.433 1.296.048.363 0 .735.094.781z"/><path fill="#AAB8C2" d="M29.555 29.5c.5-2.734.422-6.5.422-6.5h-7.963s-.078 3.766.422 6.5c.063.344.188 3.344-.109 5.5-.066.479 2.886.937 2.844-.125-.078-1.969.264-3.513.328-4.5.035-.547.25-1.875.344-3.208.011-.018.295-.018.306 0 .094 1.333.308 2.661.344 3.208.064.987.406 2.531.328 4.5-.042 1.062 2.91.604 2.844.125-.297-2.156-.172-5.156-.11-5.5z"/><path fill="#292F33" d="M30.54 36c.499-.406-.041-1.161-1.42-1.402-1.163-.203-2.2-.032-2.363.35-.212.493-.05 1.052-.05 1.052h3.833zm-9.117 0c-.499-.406.041-1.161 1.42-1.402 1.163-.203 2.2-.032 2.363.35.212.494.05 1.053.05 1.053L21.423 36z"/><path fill="#4289C1" d="M30.797 14.766C29.578 14 28 14 28 14h-4s-1.578 0-2.797.766c-1.201.754-1.656 3-1.656 3l2.203.688.109 5.546h8.281l.109-5.547 2.203-.688c.001.001-.454-2.245-1.655-2.999z"/><path fill="#F7DECE" d="M24 10.042v4c0 .682.896 1.305 2 1.305s2-.668 2-1.305v-4h-4z"/><path fill="#EEC2AD" d="M24 14.042c0 .682.896 1.305 2 1.305s2-.668 2-1.305V11l-4 .019v3.023z"/><path fill="#F7DECE" d="M31 3H21v6c0 2.762 2.238 5 5 5s5-2.237 5-5V3z"/><path fill="#292F33" d="M21 2.5L20.5 5l.5 2c2.333 0 2.85-2.412 2.965-3.488C24.004 4.588 24.779 7 31 7l.5-2-.5-2.5H21z"/><path fill="#C1694F" d="M28 12h-4s0 1 2 1 2-1 2-1z"/><circle fill="#662113" cx="23.5" cy="8.5" r=".5"/><circle fill="#662113" cx="28.5" cy="8.5" r=".5"/><path fill="#C1694F" d="M25 10h2s0 1-1 1-1-1-1-1z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f9d1-1f3fd-200d-1f91d-200d-1f9d1-1f3fc.svg b/public/emoji/1f9d1-1f3fd-200d-1f91d-200d-1f9d1-1f3fc.svg
new file mode 100644
index 0000000000000000000000000000000000000000..724aede5b4678378be0ab634fc8eb68dcf052602
--- /dev/null
+++ b/public/emoji/1f9d1-1f3fd-200d-1f91d-200d-1f9d1-1f3fc.svg
@@ -0,0 +1 @@
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#963B22" d="M11 0C9.736 0 8.565.393 7.598 1.061 7.401 1.031 7.205 1 7 1 4.791 1 3 2.791 3 5v6c0 3.866 3.134 7 7 7s7-3.134 7-7V6.001C17 2.687 14.314 0 11 0z"/><path fill="#D4AB88" d="M11.213 34.309c-.052.682 1.849.953 2.129.791.299-.173-.698-.623-.702-.977-.019-1.797.53-1.648.311-3.492.443-1.625.672-2.592.672-3.131 0-1.25-3.312-.766-3.312 0 0 .344.365 1.681.417 3.131-.313 1.659.641 1.615.485 3.678zm-2.448 0c.052.682-1.849.953-2.129.791-.299-.173.698-.623.702-.977.019-1.797-.53-1.648-.311-3.492-.443-1.625-.672-2.592-.672-3.131 0-1.25 3.313-.766 3.313 0 0 .344-.365 1.681-.417 3.131.311 1.659-.642 1.615-.486 3.678z"/><path fill="#CC9B7A" d="M10.311 27.5c0 .206.13.771.246 1.5h2.817c.164-.689.249-1.175.249-1.5 0-1.25-3.312-.766-3.312 0zm-3.957 0c0 .325.085.811.249 1.5H9.42c.116-.729.247-1.294.247-1.5 0-.766-3.313-1.25-3.313 0z"/><path fill="#D4AB88" d="M3.258 26.96c-.258.124-.503-.097-.619-.227-.328-.367-.583-1.246-.282-2.209.303-.973.6-2.384 1.199-4.002.081-.22.499-3.764.805-4.445.197-.437 1.28-.896 1.81-.807.529.089.246.651.105 1.13 0 0-.916 3.953-1.016 4.296-.316 1.079-1.624 2.918-1.565 4.237.031.692.06 1.255-.339 1.246-.049.362-.003.735-.098.781zm14.984-.2c.271.091.487-.159.586-.302.279-.405.422-1.309.004-2.227-.423-.927-.894-2.29-1.69-3.821-.108-.208-.966-3.672-1.355-4.309-.25-.409-1.382-.729-1.897-.574-.513.154-.162.676.037 1.134 0 0 1.403 3.807 1.546 4.135.449 1.031 1.977 2.691 2.082 4.008.056.69.097 1.253.492 1.194.094.353.095.729.195.762z"/><path fill="#292F33" d="M13.945 36c.305 0 .372-.418.089-.629-.379-.285-.88-1.371-1.561-1.371h-1.245c-.229 0-.49 1.209-.41 1.48.102.345.433.52.812.52h2.315zm-7.913 0c-.305 0-.372-.418-.089-.629.379-.285.88-1.371 1.561-1.371h1.245c.229 0 .49 1.209.41 1.48-.102.345-.433.52-.811.52H6.032z"/><path fill="#E75A70" d="M14.354 17.771L16 16c-1.438-1.792-4-2-4-2H8s-2.562.208-4 2l1.646 1.771S6.25 20.688 6.25 21 5 25.75 5 28h10c0-2.25-1.25-6.688-1.25-7s.604-3.229.604-3.229z"/><path fill="#DA2F47" d="M13.75 21c0-.106.07-.512.161-1H6.089c.092.488.161.894.161 1 0 .083-.122.509-.223 1h7.942c-.108-.558-.219-.917-.219-1z"/><path fill="#D4AB88" d="M8 11v4c0 1.104.896 2 2 2s2-.896 2-2v-4H8z"/><path fill="#CC9B7A" d="M12 11l-4 .019V15s2 1 4 0v-4z"/><path fill="#D4AB88" d="M15 3H5v6c0 2.762 2.238 5 5 5s5-2.237 5-5V3z"/><path fill="#963B22" d="M15 2H5L4 7c4 0 4-4 4-4s0 4 8 4l-1-5z"/><path fill="#DF1F32" d="M12 12H8s0 1 2 1 2-1 2-1z"/><circle fill="#662113" cx="7.5" cy="8.5" r=".5"/><circle fill="#662113" cx="12.5" cy="8.5" r=".5"/><path fill="#C1694F" d="M9 10h2s0 1-1 1-1-1-1-1z"/><path fill="#FFE51E" d="M26.5 0c-1.187 0-2.282.379-3.181 1.018C21.473 1.114 20 2.629 20 4.5c0 1.542.007 3.484 2.038 4.208C23.036 10.094 24.66 11 26.5 11c3.037 0 5.5-2.462 5.5-5.499C32 2.463 29.537 0 26.5 0z"/><path fill="#F3D2A2" d="M18.117 26.76c-.271.091-.487-.159-.586-.302-.279-.405-.422-1.309-.004-2.227.423-.927.702-2.072 1.69-3.821.115-.204.494-2.746 1.242-4.354.202-.435 1.495-.684 2.009-.529.513.154-.005.98-.037 1.134-.344 1.651-1.305 4.077-1.45 4.404-.8 1.806-1.965 2.389-2.071 3.706-.055.69-.205 1.286-.6 1.228-.092.352-.094.728-.193.761zm14.595.204c.257.126.504-.094.62-.222.33-.365.591-1.242.296-2.208-.297-.975-.424-2.146-1.174-4.01-.087-.217-.129-2.787-.66-4.479-.143-.457-1.392-.875-1.922-.789-.529.086-.124.972-.112 1.129.124 1.682.758 4.213.859 4.556.556 1.895 1.634 2.627 1.566 3.946-.036.692.034 1.302.433 1.296.048.363 0 .735.094.781z"/><path fill="#AAB8C2" d="M29.555 29.5c.5-2.734.422-6.5.422-6.5h-7.963s-.078 3.766.422 6.5c.063.344.188 3.344-.109 5.5-.066.479 2.886.937 2.844-.125-.078-1.969.264-3.513.328-4.5.035-.547.25-1.875.344-3.208.011-.018.295-.018.306 0 .094 1.333.308 2.661.344 3.208.064.987.406 2.531.328 4.5-.042 1.062 2.91.604 2.844.125-.297-2.156-.172-5.156-.11-5.5z"/><path fill="#292F33" d="M30.54 36c.499-.406-.041-1.161-1.42-1.402-1.163-.203-2.2-.032-2.363.35-.212.493-.05 1.052-.05 1.052h3.833zm-9.117 0c-.499-.406.041-1.161 1.42-1.402 1.163-.203 2.2-.032 2.363.35.212.494.05 1.053.05 1.053L21.423 36z"/><path fill="#4289C1" d="M30.797 14.766C29.578 14 28 14 28 14h-4s-1.578 0-2.797.766c-1.201.754-1.656 3-1.656 3l2.203.688.109 5.546h8.281l.109-5.547 2.203-.688c.001.001-.454-2.245-1.655-2.999z"/><path fill="#F3D2A2" d="M24 10.042v4c0 .682.896 1.305 2 1.305s2-.668 2-1.305v-4h-4z"/><path fill="#E2C196" d="M24 14.042c0 .682.896 1.305 2 1.305s2-.668 2-1.305V11l-4 .019v3.023z"/><path fill="#F3D2A2" d="M31 3H21v6c0 2.762 2.238 5 5 5s5-2.237 5-5V3z"/><path fill="#FFE51E" d="M21 2.5L20.5 5l.5 2c2.333 0 2.85-2.412 2.965-3.488C24.004 4.588 24.779 7 31 7l.5-2-.5-2.5H21z"/><path fill="#C1694F" d="M28 12h-4s0 1 2 1 2-1 2-1z"/><circle fill="#662113" cx="23.5" cy="8.5" r=".5"/><circle fill="#662113" cx="28.5" cy="8.5" r=".5"/><path fill="#C1694F" d="M25 10h2s0 1-1 1-1-1-1-1z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f9d1-1f3fd-200d-1f91d-200d-1f9d1-1f3fd.svg b/public/emoji/1f9d1-1f3fd-200d-1f91d-200d-1f9d1-1f3fd.svg
new file mode 100644
index 0000000000000000000000000000000000000000..15c9bdfedea2a4df0af5d91c330104c7eecf5f12
--- /dev/null
+++ b/public/emoji/1f9d1-1f3fd-200d-1f91d-200d-1f9d1-1f3fd.svg
@@ -0,0 +1 @@
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#963B22" d="M11 0C9.736 0 8.565.393 7.598 1.061 7.401 1.031 7.205 1 7 1 4.791 1 3 2.791 3 5v6c0 3.866 3.134 7 7 7s7-3.134 7-7V6.001C17 2.687 14.314 0 11 0z"/><path fill="#D4AB88" d="M11.213 34.309c-.052.682 1.849.953 2.129.791.299-.173-.698-.623-.702-.977-.019-1.797.53-1.648.311-3.492.443-1.625.672-2.592.672-3.131 0-1.25-3.312-.766-3.312 0 0 .344.365 1.681.417 3.131-.313 1.659.641 1.615.485 3.678zm-2.448 0c.052.682-1.849.953-2.129.791-.299-.173.698-.623.702-.977.019-1.797-.53-1.648-.311-3.492-.443-1.625-.672-2.592-.672-3.131 0-1.25 3.313-.766 3.313 0 0 .344-.365 1.681-.417 3.131.311 1.659-.642 1.615-.486 3.678z"/><path fill="#CC9B7A" d="M10.311 27.5c0 .206.13.771.246 1.5h2.817c.164-.689.249-1.175.249-1.5 0-1.25-3.312-.766-3.312 0zm-3.957 0c0 .325.085.811.249 1.5H9.42c.116-.729.247-1.294.247-1.5 0-.766-3.313-1.25-3.313 0z"/><path fill="#D4AB88" d="M3.258 26.96c-.258.124-.503-.097-.619-.227-.328-.367-.583-1.246-.282-2.209.303-.973.6-2.384 1.199-4.002.081-.22.499-3.764.805-4.445.197-.437 1.28-.896 1.81-.807.529.089.246.651.105 1.13 0 0-.916 3.953-1.016 4.296-.316 1.079-1.624 2.918-1.565 4.237.031.692.06 1.255-.339 1.246-.049.362-.003.735-.098.781zm14.984-.2c.271.091.487-.159.586-.302.279-.405.422-1.309.004-2.227-.423-.927-.894-2.29-1.69-3.821-.108-.208-.966-3.672-1.355-4.309-.25-.409-1.382-.729-1.897-.574-.513.154-.162.676.037 1.134 0 0 1.403 3.807 1.546 4.135.449 1.031 1.977 2.691 2.082 4.008.056.69.097 1.253.492 1.194.094.353.095.729.195.762z"/><path fill="#292F33" d="M13.945 36c.305 0 .372-.418.089-.629-.379-.285-.88-1.371-1.561-1.371h-1.245c-.229 0-.49 1.209-.41 1.48.102.345.433.52.812.52h2.315zm-7.913 0c-.305 0-.372-.418-.089-.629.379-.285.88-1.371 1.561-1.371h1.245c.229 0 .49 1.209.41 1.48-.102.345-.433.52-.811.52H6.032z"/><path fill="#E75A70" d="M14.354 17.771L16 16c-1.438-1.792-4-2-4-2H8s-2.562.208-4 2l1.646 1.771S6.25 20.688 6.25 21 5 25.75 5 28h10c0-2.25-1.25-6.688-1.25-7s.604-3.229.604-3.229z"/><path fill="#DA2F47" d="M13.75 21c0-.106.07-.512.161-1H6.089c.092.488.161.894.161 1 0 .083-.122.509-.223 1h7.942c-.108-.558-.219-.917-.219-1z"/><path fill="#D4AB88" d="M8 11v4c0 1.104.896 2 2 2s2-.896 2-2v-4H8z"/><path fill="#CC9B7A" d="M12 11l-4 .019V15s2 1 4 0v-4z"/><path fill="#D4AB88" d="M15 3H5v6c0 2.762 2.238 5 5 5s5-2.237 5-5V3z"/><path fill="#963B22" d="M15 2H5L4 7c4 0 4-4 4-4s0 4 8 4l-1-5z"/><path fill="#DF1F32" d="M12 12H8s0 1 2 1 2-1 2-1z"/><circle fill="#662113" cx="7.5" cy="8.5" r=".5"/><circle fill="#662113" cx="12.5" cy="8.5" r=".5"/><path fill="#C1694F" d="M9 10h2s0 1-1 1-1-1-1-1z"/><path fill="#963B22" d="M26.5 0c-1.187 0-2.282.379-3.181 1.018C21.473 1.114 20 2.629 20 4.5c0 1.542.007 3.484 2.038 4.208C23.036 10.094 24.66 11 26.5 11c3.037 0 5.5-2.462 5.5-5.499C32 2.463 29.537 0 26.5 0z"/><path fill="#D4AB88" d="M18.117 26.76c-.271.091-.487-.159-.586-.302-.279-.405-.422-1.309-.004-2.227.423-.927.702-2.072 1.69-3.821.115-.204.494-2.746 1.242-4.354.202-.435 1.495-.684 2.009-.529.513.154-.005.98-.037 1.134-.344 1.651-1.305 4.077-1.45 4.404-.8 1.806-1.965 2.389-2.071 3.706-.055.69-.205 1.286-.6 1.228-.092.352-.094.728-.193.761zm14.595.204c.257.126.504-.094.62-.222.33-.365.591-1.242.296-2.208-.297-.975-.424-2.146-1.174-4.01-.087-.217-.129-2.787-.66-4.479-.143-.457-1.392-.875-1.922-.789-.529.086-.124.972-.112 1.129.124 1.682.758 4.213.859 4.556.556 1.895 1.634 2.627 1.566 3.946-.036.692.034 1.302.433 1.296.048.363 0 .735.094.781z"/><path fill="#AAB8C2" d="M29.555 29.5c.5-2.734.422-6.5.422-6.5h-7.963s-.078 3.766.422 6.5c.063.344.188 3.344-.109 5.5-.066.479 2.886.937 2.844-.125-.078-1.969.264-3.513.328-4.5.035-.547.25-1.875.344-3.208.011-.018.295-.018.306 0 .094 1.333.308 2.661.344 3.208.064.987.406 2.531.328 4.5-.042 1.062 2.91.604 2.844.125-.297-2.156-.172-5.156-.11-5.5z"/><path fill="#292F33" d="M30.54 36c.499-.406-.041-1.161-1.42-1.402-1.163-.203-2.2-.032-2.363.35-.212.493-.05 1.052-.05 1.052h3.833zm-9.117 0c-.499-.406.041-1.161 1.42-1.402 1.163-.203 2.2-.032 2.363.35.212.494.05 1.053.05 1.053L21.423 36z"/><path fill="#4289C1" d="M30.797 14.766C29.578 14 28 14 28 14h-4s-1.578 0-2.797.766c-1.201.754-1.656 3-1.656 3l2.203.688.109 5.546h8.281l.109-5.547 2.203-.688c.001.001-.454-2.245-1.655-2.999z"/><path fill="#D4AB88" d="M24 10.042v4c0 .682.896 1.305 2 1.305s2-.668 2-1.305v-4h-4z"/><path fill="#CC9B7A" d="M24 14.042c0 .682.896 1.305 2 1.305s2-.668 2-1.305V11l-4 .019v3.023z"/><path fill="#D4AB88" d="M31 3H21v6c0 2.762 2.238 5 5 5s5-2.237 5-5V3z"/><path fill="#963B22" d="M21 2.5L20.5 5l.5 2c2.333 0 2.85-2.412 2.965-3.488C24.004 4.588 24.779 7 31 7l.5-2-.5-2.5H21z"/><path fill="#C1694F" d="M28 12h-4s0 1 2 1 2-1 2-1z"/><circle fill="#662113" cx="23.5" cy="8.5" r=".5"/><circle fill="#662113" cx="28.5" cy="8.5" r=".5"/><path fill="#C1694F" d="M25 10h2s0 1-1 1-1-1-1-1z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f9d1-1f3fe-200d-1f91d-200d-1f9d1-1f3fb.svg b/public/emoji/1f9d1-1f3fe-200d-1f91d-200d-1f9d1-1f3fb.svg
new file mode 100644
index 0000000000000000000000000000000000000000..c14a8e794bc5ebb5a6dc275a7c4ea1b19611f926
--- /dev/null
+++ b/public/emoji/1f9d1-1f3fe-200d-1f91d-200d-1f9d1-1f3fb.svg
@@ -0,0 +1 @@
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#60352A" d="M11 0C9.736 0 8.565.393 7.598 1.061 7.401 1.031 7.205 1 7 1 4.791 1 3 2.791 3 5v6c0 3.866 3.134 7 7 7s7-3.134 7-7V6.001C17 2.687 14.314 0 11 0z"/><path fill="#AF7E57" d="M11.213 34.309c-.052.682 1.849.953 2.129.791.299-.173-.698-.623-.702-.977-.019-1.797.53-1.648.311-3.492.443-1.625.672-2.592.672-3.131 0-1.25-3.312-.766-3.312 0 0 .344.365 1.681.417 3.131-.313 1.659.641 1.615.485 3.678zm-2.448 0c.052.682-1.849.953-2.129.791-.299-.173.698-.623.702-.977.019-1.797-.53-1.648-.311-3.492-.443-1.625-.672-2.592-.672-3.131 0-1.25 3.313-.766 3.313 0 0 .344-.365 1.681-.417 3.131.311 1.659-.642 1.615-.486 3.678z"/><path fill="#9B6A49" d="M10.311 27.5c0 .206.13.771.246 1.5h2.817c.164-.689.249-1.175.249-1.5 0-1.25-3.312-.766-3.312 0zm-3.957 0c0 .325.085.811.249 1.5H9.42c.116-.729.247-1.294.247-1.5 0-.766-3.313-1.25-3.313 0z"/><path fill="#AF7E57" d="M3.258 26.96c-.258.124-.503-.097-.619-.227-.328-.367-.583-1.246-.282-2.209.303-.973.6-2.384 1.199-4.002.081-.22.499-3.764.805-4.445.197-.437 1.28-.896 1.81-.807.529.089.246.651.105 1.13 0 0-.916 3.953-1.016 4.296-.316 1.079-1.624 2.918-1.565 4.237.031.692.06 1.255-.339 1.246-.049.362-.003.735-.098.781zm14.984-.2c.271.091.487-.159.586-.302.279-.405.422-1.309.004-2.227-.423-.927-.894-2.29-1.69-3.821-.108-.208-.966-3.672-1.355-4.309-.25-.409-1.382-.729-1.897-.574-.513.154-.162.676.037 1.134 0 0 1.403 3.807 1.546 4.135.449 1.031 1.977 2.691 2.082 4.008.056.69.097 1.253.492 1.194.094.353.095.729.195.762z"/><path fill="#292F33" d="M13.945 36c.305 0 .372-.418.089-.629-.379-.285-.88-1.371-1.561-1.371h-1.245c-.229 0-.49 1.209-.41 1.48.102.345.433.52.812.52h2.315zm-7.913 0c-.305 0-.372-.418-.089-.629.379-.285.88-1.371 1.561-1.371h1.245c.229 0 .49 1.209.41 1.48-.102.345-.433.52-.811.52H6.032z"/><path fill="#E75A70" d="M14.354 17.771L16 16c-1.438-1.792-4-2-4-2H8s-2.562.208-4 2l1.646 1.771S6.25 20.688 6.25 21 5 25.75 5 28h10c0-2.25-1.25-6.688-1.25-7s.604-3.229.604-3.229z"/><path fill="#DA2F47" d="M13.75 21c0-.106.07-.512.161-1H6.089c.092.488.161.894.161 1 0 .083-.122.509-.223 1h7.942c-.108-.558-.219-.917-.219-1z"/><path fill="#AF7E57" d="M8 11v4c0 1.104.896 2 2 2s2-.896 2-2v-4H8z"/><path fill="#9B6A49" d="M12 11l-4 .019V15s2 1 4 0v-4z"/><path fill="#AF7E57" d="M15 3H5v6c0 2.762 2.238 5 5 5s5-2.237 5-5V3z"/><path fill="#60352A" d="M15 2H5L4 7c4 0 4-4 4-4s0 4 8 4l-1-5z"/><path fill="#DF1F32" d="M12 12H8s0 1 2 1 2-1 2-1z"/><circle fill="#662113" cx="7.5" cy="8.5" r=".5"/><circle fill="#662113" cx="12.5" cy="8.5" r=".5"/><path fill="#915A34" d="M9 10h2s0 1-1 1-1-1-1-1z"/><path fill="#292F33" d="M26.5 0c-1.187 0-2.282.379-3.181 1.018C21.473 1.114 20 2.629 20 4.5c0 1.542.007 3.484 2.038 4.208C23.036 10.094 24.66 11 26.5 11c3.037 0 5.5-2.462 5.5-5.499C32 2.463 29.537 0 26.5 0z"/><path fill="#F7DECE" d="M18.117 26.76c-.271.091-.487-.159-.586-.302-.279-.405-.422-1.309-.004-2.227.423-.927.702-2.072 1.69-3.821.115-.204.494-2.746 1.242-4.354.202-.435 1.495-.684 2.009-.529.513.154-.005.98-.037 1.134-.344 1.651-1.305 4.077-1.45 4.404-.8 1.806-1.965 2.389-2.071 3.706-.055.69-.205 1.286-.6 1.228-.092.352-.094.728-.193.761zm14.595.204c.257.126.504-.094.62-.222.33-.365.591-1.242.296-2.208-.297-.975-.424-2.146-1.174-4.01-.087-.217-.129-2.787-.66-4.479-.143-.457-1.392-.875-1.922-.789-.529.086-.124.972-.112 1.129.124 1.682.758 4.213.859 4.556.556 1.895 1.634 2.627 1.566 3.946-.036.692.034 1.302.433 1.296.048.363 0 .735.094.781z"/><path fill="#AAB8C2" d="M29.555 29.5c.5-2.734.422-6.5.422-6.5h-7.963s-.078 3.766.422 6.5c.063.344.188 3.344-.109 5.5-.066.479 2.886.937 2.844-.125-.078-1.969.264-3.513.328-4.5.035-.547.25-1.875.344-3.208.011-.018.295-.018.306 0 .094 1.333.308 2.661.344 3.208.064.987.406 2.531.328 4.5-.042 1.062 2.91.604 2.844.125-.297-2.156-.172-5.156-.11-5.5z"/><path fill="#292F33" d="M30.54 36c.499-.406-.041-1.161-1.42-1.402-1.163-.203-2.2-.032-2.363.35-.212.493-.05 1.052-.05 1.052h3.833zm-9.117 0c-.499-.406.041-1.161 1.42-1.402 1.163-.203 2.2-.032 2.363.35.212.494.05 1.053.05 1.053L21.423 36z"/><path fill="#4289C1" d="M30.797 14.766C29.578 14 28 14 28 14h-4s-1.578 0-2.797.766c-1.201.754-1.656 3-1.656 3l2.203.688.109 5.546h8.281l.109-5.547 2.203-.688c.001.001-.454-2.245-1.655-2.999z"/><path fill="#F7DECE" d="M24 10.042v4c0 .682.896 1.305 2 1.305s2-.668 2-1.305v-4h-4z"/><path fill="#EEC2AD" d="M24 14.042c0 .682.896 1.305 2 1.305s2-.668 2-1.305V11l-4 .019v3.023z"/><path fill="#F7DECE" d="M31 3H21v6c0 2.762 2.238 5 5 5s5-2.237 5-5V3z"/><path fill="#292F33" d="M21 2.5L20.5 5l.5 2c2.333 0 2.85-2.412 2.965-3.488C24.004 4.588 24.779 7 31 7l.5-2-.5-2.5H21z"/><path fill="#C1694F" d="M28 12h-4s0 1 2 1 2-1 2-1z"/><circle fill="#662113" cx="23.5" cy="8.5" r=".5"/><circle fill="#662113" cx="28.5" cy="8.5" r=".5"/><path fill="#C1694F" d="M25 10h2s0 1-1 1-1-1-1-1z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f9d1-1f3fe-200d-1f91d-200d-1f9d1-1f3fc.svg b/public/emoji/1f9d1-1f3fe-200d-1f91d-200d-1f9d1-1f3fc.svg
new file mode 100644
index 0000000000000000000000000000000000000000..dff165ed57119d69f7bfba5ef6c2f31092578a05
--- /dev/null
+++ b/public/emoji/1f9d1-1f3fe-200d-1f91d-200d-1f9d1-1f3fc.svg
@@ -0,0 +1 @@
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#60352A" d="M11 0C9.736 0 8.565.393 7.598 1.061 7.401 1.031 7.205 1 7 1 4.791 1 3 2.791 3 5v6c0 3.866 3.134 7 7 7s7-3.134 7-7V6.001C17 2.687 14.314 0 11 0z"/><path fill="#AF7E57" d="M11.213 34.309c-.052.682 1.849.953 2.129.791.299-.173-.698-.623-.702-.977-.019-1.797.53-1.648.311-3.492.443-1.625.672-2.592.672-3.131 0-1.25-3.312-.766-3.312 0 0 .344.365 1.681.417 3.131-.313 1.659.641 1.615.485 3.678zm-2.448 0c.052.682-1.849.953-2.129.791-.299-.173.698-.623.702-.977.019-1.797-.53-1.648-.311-3.492-.443-1.625-.672-2.592-.672-3.131 0-1.25 3.313-.766 3.313 0 0 .344-.365 1.681-.417 3.131.311 1.659-.642 1.615-.486 3.678z"/><path fill="#9B6A49" d="M10.311 27.5c0 .206.13.771.246 1.5h2.817c.164-.689.249-1.175.249-1.5 0-1.25-3.312-.766-3.312 0zm-3.957 0c0 .325.085.811.249 1.5H9.42c.116-.729.247-1.294.247-1.5 0-.766-3.313-1.25-3.313 0z"/><path fill="#AF7E57" d="M3.258 26.96c-.258.124-.503-.097-.619-.227-.328-.367-.583-1.246-.282-2.209.303-.973.6-2.384 1.199-4.002.081-.22.499-3.764.805-4.445.197-.437 1.28-.896 1.81-.807.529.089.246.651.105 1.13 0 0-.916 3.953-1.016 4.296-.316 1.079-1.624 2.918-1.565 4.237.031.692.06 1.255-.339 1.246-.049.362-.003.735-.098.781zm14.984-.2c.271.091.487-.159.586-.302.279-.405.422-1.309.004-2.227-.423-.927-.894-2.29-1.69-3.821-.108-.208-.966-3.672-1.355-4.309-.25-.409-1.382-.729-1.897-.574-.513.154-.162.676.037 1.134 0 0 1.403 3.807 1.546 4.135.449 1.031 1.977 2.691 2.082 4.008.056.69.097 1.253.492 1.194.094.353.095.729.195.762z"/><path fill="#292F33" d="M13.945 36c.305 0 .372-.418.089-.629-.379-.285-.88-1.371-1.561-1.371h-1.245c-.229 0-.49 1.209-.41 1.48.102.345.433.52.812.52h2.315zm-7.913 0c-.305 0-.372-.418-.089-.629.379-.285.88-1.371 1.561-1.371h1.245c.229 0 .49 1.209.41 1.48-.102.345-.433.52-.811.52H6.032z"/><path fill="#E75A70" d="M14.354 17.771L16 16c-1.438-1.792-4-2-4-2H8s-2.562.208-4 2l1.646 1.771S6.25 20.688 6.25 21 5 25.75 5 28h10c0-2.25-1.25-6.688-1.25-7s.604-3.229.604-3.229z"/><path fill="#DA2F47" d="M13.75 21c0-.106.07-.512.161-1H6.089c.092.488.161.894.161 1 0 .083-.122.509-.223 1h7.942c-.108-.558-.219-.917-.219-1z"/><path fill="#AF7E57" d="M8 11v4c0 1.104.896 2 2 2s2-.896 2-2v-4H8z"/><path fill="#9B6A49" d="M12 11l-4 .019V15s2 1 4 0v-4z"/><path fill="#AF7E57" d="M15 3H5v6c0 2.762 2.238 5 5 5s5-2.237 5-5V3z"/><path fill="#60352A" d="M15 2H5L4 7c4 0 4-4 4-4s0 4 8 4l-1-5z"/><path fill="#DF1F32" d="M12 12H8s0 1 2 1 2-1 2-1z"/><circle fill="#662113" cx="7.5" cy="8.5" r=".5"/><circle fill="#662113" cx="12.5" cy="8.5" r=".5"/><path fill="#915A34" d="M9 10h2s0 1-1 1-1-1-1-1z"/><path fill="#FFE51E" d="M26.5 0c-1.187 0-2.282.379-3.181 1.018C21.473 1.114 20 2.629 20 4.5c0 1.542.007 3.484 2.038 4.208C23.036 10.094 24.66 11 26.5 11c3.037 0 5.5-2.462 5.5-5.499C32 2.463 29.537 0 26.5 0z"/><path fill="#F3D2A2" d="M18.117 26.76c-.271.091-.487-.159-.586-.302-.279-.405-.422-1.309-.004-2.227.423-.927.702-2.072 1.69-3.821.115-.204.494-2.746 1.242-4.354.202-.435 1.495-.684 2.009-.529.513.154-.005.98-.037 1.134-.344 1.651-1.305 4.077-1.45 4.404-.8 1.806-1.965 2.389-2.071 3.706-.055.69-.205 1.286-.6 1.228-.092.352-.094.728-.193.761zm14.595.204c.257.126.504-.094.62-.222.33-.365.591-1.242.296-2.208-.297-.975-.424-2.146-1.174-4.01-.087-.217-.129-2.787-.66-4.479-.143-.457-1.392-.875-1.922-.789-.529.086-.124.972-.112 1.129.124 1.682.758 4.213.859 4.556.556 1.895 1.634 2.627 1.566 3.946-.036.692.034 1.302.433 1.296.048.363 0 .735.094.781z"/><path fill="#AAB8C2" d="M29.555 29.5c.5-2.734.422-6.5.422-6.5h-7.963s-.078 3.766.422 6.5c.063.344.188 3.344-.109 5.5-.066.479 2.886.937 2.844-.125-.078-1.969.264-3.513.328-4.5.035-.547.25-1.875.344-3.208.011-.018.295-.018.306 0 .094 1.333.308 2.661.344 3.208.064.987.406 2.531.328 4.5-.042 1.062 2.91.604 2.844.125-.297-2.156-.172-5.156-.11-5.5z"/><path fill="#292F33" d="M30.54 36c.499-.406-.041-1.161-1.42-1.402-1.163-.203-2.2-.032-2.363.35-.212.493-.05 1.052-.05 1.052h3.833zm-9.117 0c-.499-.406.041-1.161 1.42-1.402 1.163-.203 2.2-.032 2.363.35.212.494.05 1.053.05 1.053L21.423 36z"/><path fill="#4289C1" d="M30.797 14.766C29.578 14 28 14 28 14h-4s-1.578 0-2.797.766c-1.201.754-1.656 3-1.656 3l2.203.688.109 5.546h8.281l.109-5.547 2.203-.688c.001.001-.454-2.245-1.655-2.999z"/><path fill="#F3D2A2" d="M24 10.042v4c0 .682.896 1.305 2 1.305s2-.668 2-1.305v-4h-4z"/><path fill="#E2C196" d="M24 14.042c0 .682.896 1.305 2 1.305s2-.668 2-1.305V11l-4 .019v3.023z"/><path fill="#F3D2A2" d="M31 3H21v6c0 2.762 2.238 5 5 5s5-2.237 5-5V3z"/><path fill="#FFE51E" d="M21 2.5L20.5 5l.5 2c2.333 0 2.85-2.412 2.965-3.488C24.004 4.588 24.779 7 31 7l.5-2-.5-2.5H21z"/><path fill="#C1694F" d="M28 12h-4s0 1 2 1 2-1 2-1z"/><circle fill="#662113" cx="23.5" cy="8.5" r=".5"/><circle fill="#662113" cx="28.5" cy="8.5" r=".5"/><path fill="#C1694F" d="M25 10h2s0 1-1 1-1-1-1-1z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f9d1-1f3fe-200d-1f91d-200d-1f9d1-1f3fd.svg b/public/emoji/1f9d1-1f3fe-200d-1f91d-200d-1f9d1-1f3fd.svg
new file mode 100644
index 0000000000000000000000000000000000000000..19a8dab4ca0b2f8f912927f40d48890105f76cc9
--- /dev/null
+++ b/public/emoji/1f9d1-1f3fe-200d-1f91d-200d-1f9d1-1f3fd.svg
@@ -0,0 +1 @@
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#60352A" d="M11 0C9.736 0 8.565.393 7.598 1.061 7.401 1.031 7.205 1 7 1 4.791 1 3 2.791 3 5v6c0 3.866 3.134 7 7 7s7-3.134 7-7V6.001C17 2.687 14.314 0 11 0z"/><path fill="#AF7E57" d="M11.213 34.309c-.052.682 1.849.953 2.129.791.299-.173-.698-.623-.702-.977-.019-1.797.53-1.648.311-3.492.443-1.625.672-2.592.672-3.131 0-1.25-3.312-.766-3.312 0 0 .344.365 1.681.417 3.131-.313 1.659.641 1.615.485 3.678zm-2.448 0c.052.682-1.849.953-2.129.791-.299-.173.698-.623.702-.977.019-1.797-.53-1.648-.311-3.492-.443-1.625-.672-2.592-.672-3.131 0-1.25 3.313-.766 3.313 0 0 .344-.365 1.681-.417 3.131.311 1.659-.642 1.615-.486 3.678z"/><path fill="#9B6A49" d="M10.311 27.5c0 .206.13.771.246 1.5h2.817c.164-.689.249-1.175.249-1.5 0-1.25-3.312-.766-3.312 0zm-3.957 0c0 .325.085.811.249 1.5H9.42c.116-.729.247-1.294.247-1.5 0-.766-3.313-1.25-3.313 0z"/><path fill="#AF7E57" d="M3.258 26.96c-.258.124-.503-.097-.619-.227-.328-.367-.583-1.246-.282-2.209.303-.973.6-2.384 1.199-4.002.081-.22.499-3.764.805-4.445.197-.437 1.28-.896 1.81-.807.529.089.246.651.105 1.13 0 0-.916 3.953-1.016 4.296-.316 1.079-1.624 2.918-1.565 4.237.031.692.06 1.255-.339 1.246-.049.362-.003.735-.098.781zm14.984-.2c.271.091.487-.159.586-.302.279-.405.422-1.309.004-2.227-.423-.927-.894-2.29-1.69-3.821-.108-.208-.966-3.672-1.355-4.309-.25-.409-1.382-.729-1.897-.574-.513.154-.162.676.037 1.134 0 0 1.403 3.807 1.546 4.135.449 1.031 1.977 2.691 2.082 4.008.056.69.097 1.253.492 1.194.094.353.095.729.195.762z"/><path fill="#292F33" d="M13.945 36c.305 0 .372-.418.089-.629-.379-.285-.88-1.371-1.561-1.371h-1.245c-.229 0-.49 1.209-.41 1.48.102.345.433.52.812.52h2.315zm-7.913 0c-.305 0-.372-.418-.089-.629.379-.285.88-1.371 1.561-1.371h1.245c.229 0 .49 1.209.41 1.48-.102.345-.433.52-.811.52H6.032z"/><path fill="#E75A70" d="M14.354 17.771L16 16c-1.438-1.792-4-2-4-2H8s-2.562.208-4 2l1.646 1.771S6.25 20.688 6.25 21 5 25.75 5 28h10c0-2.25-1.25-6.688-1.25-7s.604-3.229.604-3.229z"/><path fill="#DA2F47" d="M13.75 21c0-.106.07-.512.161-1H6.089c.092.488.161.894.161 1 0 .083-.122.509-.223 1h7.942c-.108-.558-.219-.917-.219-1z"/><path fill="#AF7E57" d="M8 11v4c0 1.104.896 2 2 2s2-.896 2-2v-4H8z"/><path fill="#9B6A49" d="M12 11l-4 .019V15s2 1 4 0v-4z"/><path fill="#AF7E57" d="M15 3H5v6c0 2.762 2.238 5 5 5s5-2.237 5-5V3z"/><path fill="#60352A" d="M15 2H5L4 7c4 0 4-4 4-4s0 4 8 4l-1-5z"/><path fill="#DF1F32" d="M12 12H8s0 1 2 1 2-1 2-1z"/><circle fill="#662113" cx="7.5" cy="8.5" r=".5"/><circle fill="#662113" cx="12.5" cy="8.5" r=".5"/><path fill="#915A34" d="M9 10h2s0 1-1 1-1-1-1-1z"/><path fill="#963B22" d="M26.5 0c-1.187 0-2.282.379-3.181 1.018C21.473 1.114 20 2.629 20 4.5c0 1.542.007 3.484 2.038 4.208C23.036 10.094 24.66 11 26.5 11c3.037 0 5.5-2.462 5.5-5.499C32 2.463 29.537 0 26.5 0z"/><path fill="#D4AB88" d="M18.117 26.76c-.271.091-.487-.159-.586-.302-.279-.405-.422-1.309-.004-2.227.423-.927.702-2.072 1.69-3.821.115-.204.494-2.746 1.242-4.354.202-.435 1.495-.684 2.009-.529.513.154-.005.98-.037 1.134-.344 1.651-1.305 4.077-1.45 4.404-.8 1.806-1.965 2.389-2.071 3.706-.055.69-.205 1.286-.6 1.228-.092.352-.094.728-.193.761zm14.595.204c.257.126.504-.094.62-.222.33-.365.591-1.242.296-2.208-.297-.975-.424-2.146-1.174-4.01-.087-.217-.129-2.787-.66-4.479-.143-.457-1.392-.875-1.922-.789-.529.086-.124.972-.112 1.129.124 1.682.758 4.213.859 4.556.556 1.895 1.634 2.627 1.566 3.946-.036.692.034 1.302.433 1.296.048.363 0 .735.094.781z"/><path fill="#AAB8C2" d="M29.555 29.5c.5-2.734.422-6.5.422-6.5h-7.963s-.078 3.766.422 6.5c.063.344.188 3.344-.109 5.5-.066.479 2.886.937 2.844-.125-.078-1.969.264-3.513.328-4.5.035-.547.25-1.875.344-3.208.011-.018.295-.018.306 0 .094 1.333.308 2.661.344 3.208.064.987.406 2.531.328 4.5-.042 1.062 2.91.604 2.844.125-.297-2.156-.172-5.156-.11-5.5z"/><path fill="#292F33" d="M30.54 36c.499-.406-.041-1.161-1.42-1.402-1.163-.203-2.2-.032-2.363.35-.212.493-.05 1.052-.05 1.052h3.833zm-9.117 0c-.499-.406.041-1.161 1.42-1.402 1.163-.203 2.2-.032 2.363.35.212.494.05 1.053.05 1.053L21.423 36z"/><path fill="#4289C1" d="M30.797 14.766C29.578 14 28 14 28 14h-4s-1.578 0-2.797.766c-1.201.754-1.656 3-1.656 3l2.203.688.109 5.546h8.281l.109-5.547 2.203-.688c.001.001-.454-2.245-1.655-2.999z"/><path fill="#D4AB88" d="M24 10.042v4c0 .682.896 1.305 2 1.305s2-.668 2-1.305v-4h-4z"/><path fill="#CC9B7A" d="M24 14.042c0 .682.896 1.305 2 1.305s2-.668 2-1.305V11l-4 .019v3.023z"/><path fill="#D4AB88" d="M31 3H21v6c0 2.762 2.238 5 5 5s5-2.237 5-5V3z"/><path fill="#963B22" d="M21 2.5L20.5 5l.5 2c2.333 0 2.85-2.412 2.965-3.488C24.004 4.588 24.779 7 31 7l.5-2-.5-2.5H21z"/><path fill="#C1694F" d="M28 12h-4s0 1 2 1 2-1 2-1z"/><circle fill="#662113" cx="23.5" cy="8.5" r=".5"/><circle fill="#662113" cx="28.5" cy="8.5" r=".5"/><path fill="#C1694F" d="M25 10h2s0 1-1 1-1-1-1-1z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f9d1-1f3fe-200d-1f91d-200d-1f9d1-1f3fe.svg b/public/emoji/1f9d1-1f3fe-200d-1f91d-200d-1f9d1-1f3fe.svg
new file mode 100644
index 0000000000000000000000000000000000000000..54c46de874c4d2b912948747d53edc841ca81b5b
--- /dev/null
+++ b/public/emoji/1f9d1-1f3fe-200d-1f91d-200d-1f9d1-1f3fe.svg
@@ -0,0 +1 @@
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#60352A" d="M11 0C9.736 0 8.565.393 7.598 1.061 7.401 1.031 7.205 1 7 1 4.791 1 3 2.791 3 5v6c0 3.866 3.134 7 7 7s7-3.134 7-7V6.001C17 2.687 14.314 0 11 0z"/><path fill="#AF7E57" d="M11.213 34.309c-.052.682 1.849.953 2.129.791.299-.173-.698-.623-.702-.977-.019-1.797.53-1.648.311-3.492.443-1.625.672-2.592.672-3.131 0-1.25-3.312-.766-3.312 0 0 .344.365 1.681.417 3.131-.313 1.659.641 1.615.485 3.678zm-2.448 0c.052.682-1.849.953-2.129.791-.299-.173.698-.623.702-.977.019-1.797-.53-1.648-.311-3.492-.443-1.625-.672-2.592-.672-3.131 0-1.25 3.313-.766 3.313 0 0 .344-.365 1.681-.417 3.131.311 1.659-.642 1.615-.486 3.678z"/><path fill="#9B6A49" d="M10.311 27.5c0 .206.13.771.246 1.5h2.817c.164-.689.249-1.175.249-1.5 0-1.25-3.312-.766-3.312 0zm-3.957 0c0 .325.085.811.249 1.5H9.42c.116-.729.247-1.294.247-1.5 0-.766-3.313-1.25-3.313 0z"/><path fill="#AF7E57" d="M3.258 26.96c-.258.124-.503-.097-.619-.227-.328-.367-.583-1.246-.282-2.209.303-.973.6-2.384 1.199-4.002.081-.22.499-3.764.805-4.445.197-.437 1.28-.896 1.81-.807.529.089.246.651.105 1.13 0 0-.916 3.953-1.016 4.296-.316 1.079-1.624 2.918-1.565 4.237.031.692.06 1.255-.339 1.246-.049.362-.003.735-.098.781zm14.984-.2c.271.091.487-.159.586-.302.279-.405.422-1.309.004-2.227-.423-.927-.894-2.29-1.69-3.821-.108-.208-.966-3.672-1.355-4.309-.25-.409-1.382-.729-1.897-.574-.513.154-.162.676.037 1.134 0 0 1.403 3.807 1.546 4.135.449 1.031 1.977 2.691 2.082 4.008.056.69.097 1.253.492 1.194.094.353.095.729.195.762z"/><path fill="#292F33" d="M13.945 36c.305 0 .372-.418.089-.629-.379-.285-.88-1.371-1.561-1.371h-1.245c-.229 0-.49 1.209-.41 1.48.102.345.433.52.812.52h2.315zm-7.913 0c-.305 0-.372-.418-.089-.629.379-.285.88-1.371 1.561-1.371h1.245c.229 0 .49 1.209.41 1.48-.102.345-.433.52-.811.52H6.032z"/><path fill="#E75A70" d="M14.354 17.771L16 16c-1.438-1.792-4-2-4-2H8s-2.562.208-4 2l1.646 1.771S6.25 20.688 6.25 21 5 25.75 5 28h10c0-2.25-1.25-6.688-1.25-7s.604-3.229.604-3.229z"/><path fill="#DA2F47" d="M13.75 21c0-.106.07-.512.161-1H6.089c.092.488.161.894.161 1 0 .083-.122.509-.223 1h7.942c-.108-.558-.219-.917-.219-1z"/><path fill="#AF7E57" d="M8 11v4c0 1.104.896 2 2 2s2-.896 2-2v-4H8z"/><path fill="#9B6A49" d="M12 11l-4 .019V15s2 1 4 0v-4z"/><path fill="#AF7E57" d="M15 3H5v6c0 2.762 2.238 5 5 5s5-2.237 5-5V3z"/><path fill="#60352A" d="M15 2H5L4 7c4 0 4-4 4-4s0 4 8 4l-1-5z"/><path fill="#DF1F32" d="M12 12H8s0 1 2 1 2-1 2-1z"/><circle fill="#662113" cx="7.5" cy="8.5" r=".5"/><circle fill="#662113" cx="12.5" cy="8.5" r=".5"/><path fill="#915A34" d="M9 10h2s0 1-1 1-1-1-1-1z"/><path fill="#60352A" d="M26.5 0c-1.187 0-2.282.379-3.181 1.018C21.473 1.114 20 2.629 20 4.5c0 1.542.007 3.484 2.038 4.208C23.036 10.094 24.66 11 26.5 11c3.037 0 5.5-2.462 5.5-5.499C32 2.463 29.537 0 26.5 0z"/><path fill="#AF7E57" d="M18.117 26.76c-.271.091-.487-.159-.586-.302-.279-.405-.422-1.309-.004-2.227.423-.927.702-2.072 1.69-3.821.115-.204.494-2.746 1.242-4.354.202-.435 1.495-.684 2.009-.529.513.154-.005.98-.037 1.134-.344 1.651-1.305 4.077-1.45 4.404-.8 1.806-1.965 2.389-2.071 3.706-.055.69-.205 1.286-.6 1.228-.092.352-.094.728-.193.761zm14.595.204c.257.126.504-.094.62-.222.33-.365.591-1.242.296-2.208-.297-.975-.424-2.146-1.174-4.01-.087-.217-.129-2.787-.66-4.479-.143-.457-1.392-.875-1.922-.789-.529.086-.124.972-.112 1.129.124 1.682.758 4.213.859 4.556.556 1.895 1.634 2.627 1.566 3.946-.036.692.034 1.302.433 1.296.048.363 0 .735.094.781z"/><path fill="#AAB8C2" d="M29.555 29.5c.5-2.734.422-6.5.422-6.5h-7.963s-.078 3.766.422 6.5c.063.344.188 3.344-.109 5.5-.066.479 2.886.937 2.844-.125-.078-1.969.264-3.513.328-4.5.035-.547.25-1.875.344-3.208.011-.018.295-.018.306 0 .094 1.333.308 2.661.344 3.208.064.987.406 2.531.328 4.5-.042 1.062 2.91.604 2.844.125-.297-2.156-.172-5.156-.11-5.5z"/><path fill="#292F33" d="M30.54 36c.499-.406-.041-1.161-1.42-1.402-1.163-.203-2.2-.032-2.363.35-.212.493-.05 1.052-.05 1.052h3.833zm-9.117 0c-.499-.406.041-1.161 1.42-1.402 1.163-.203 2.2-.032 2.363.35.212.494.05 1.053.05 1.053L21.423 36z"/><path fill="#4289C1" d="M30.797 14.766C29.578 14 28 14 28 14h-4s-1.578 0-2.797.766c-1.201.754-1.656 3-1.656 3l2.203.688.109 5.546h8.281l.109-5.547 2.203-.688c.001.001-.454-2.245-1.655-2.999z"/><path fill="#AF7E57" d="M24 10.042v4c0 .682.896 1.305 2 1.305s2-.668 2-1.305v-4h-4z"/><path fill="#9B6A49" d="M24 14.042c0 .682.896 1.305 2 1.305s2-.668 2-1.305V11l-4 .019v3.023z"/><path fill="#AF7E57" d="M31 3H21v6c0 2.762 2.238 5 5 5s5-2.237 5-5V3z"/><path fill="#60352A" d="M21 2.5L20.5 5l.5 2c2.333 0 2.85-2.412 2.965-3.488C24.004 4.588 24.779 7 31 7l.5-2-.5-2.5H21z"/><path fill="#915A34" d="M28 12h-4s0 1 2 1 2-1 2-1z"/><circle fill="#662113" cx="23.5" cy="8.5" r=".5"/><circle fill="#662113" cx="28.5" cy="8.5" r=".5"/><path fill="#915A34" d="M25 10h2s0 1-1 1-1-1-1-1z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f9d1-1f3ff-200d-1f91d-200d-1f9d1-1f3fb.svg b/public/emoji/1f9d1-1f3ff-200d-1f91d-200d-1f9d1-1f3fb.svg
new file mode 100644
index 0000000000000000000000000000000000000000..cbcfecadc5c1d0921717daf16cff0b27560adcdb
--- /dev/null
+++ b/public/emoji/1f9d1-1f3ff-200d-1f91d-200d-1f9d1-1f3fb.svg
@@ -0,0 +1 @@
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#0B0200" d="M11 0C9.736 0 8.565.393 7.598 1.061 7.401 1.031 7.205 1 7 1 4.791 1 3 2.791 3 5v6c0 3.866 3.134 7 7 7s7-3.134 7-7V6.001C17 2.687 14.314 0 11 0z"/><path fill="#7C533E" d="M11.213 34.309c-.052.682 1.849.953 2.129.791.299-.173-.698-.623-.702-.977-.019-1.797.53-1.648.311-3.492.443-1.625.672-2.592.672-3.131 0-1.25-3.312-.766-3.312 0 0 .344.365 1.681.417 3.131-.313 1.659.641 1.615.485 3.678zm-2.448 0c.052.682-1.849.953-2.129.791-.299-.173.698-.623.702-.977.019-1.797-.53-1.648-.311-3.492-.443-1.625-.672-2.592-.672-3.131 0-1.25 3.313-.766 3.313 0 0 .344-.365 1.681-.417 3.131.311 1.659-.642 1.615-.486 3.678z"/><path fill="#664131" d="M10.311 27.5c0 .206.13.771.246 1.5h2.817c.164-.689.249-1.175.249-1.5 0-1.25-3.312-.766-3.312 0zm-3.957 0c0 .325.085.811.249 1.5H9.42c.116-.729.247-1.294.247-1.5 0-.766-3.313-1.25-3.313 0z"/><path fill="#7C533E" d="M3.258 26.96c-.258.124-.503-.097-.619-.227-.328-.367-.583-1.246-.282-2.209.303-.973.6-2.384 1.199-4.002.081-.22.499-3.764.805-4.445.197-.437 1.28-.896 1.81-.807.529.089.246.651.105 1.13 0 0-.916 3.953-1.016 4.296-.316 1.079-1.624 2.918-1.565 4.237.031.692.06 1.255-.339 1.246-.049.362-.003.735-.098.781zm14.984-.2c.271.091.487-.159.586-.302.279-.405.422-1.309.004-2.227-.423-.927-.894-2.29-1.69-3.821-.108-.208-.966-3.672-1.355-4.309-.25-.409-1.382-.729-1.897-.574-.513.154-.162.676.037 1.134 0 0 1.403 3.807 1.546 4.135.449 1.031 1.977 2.691 2.082 4.008.056.69.097 1.253.492 1.194.094.353.095.729.195.762z"/><path fill="#292F33" d="M13.945 36c.305 0 .372-.418.089-.629-.379-.285-.88-1.371-1.561-1.371h-1.245c-.229 0-.49 1.209-.41 1.48.102.345.433.52.812.52h2.315zm-7.913 0c-.305 0-.372-.418-.089-.629.379-.285.88-1.371 1.561-1.371h1.245c.229 0 .49 1.209.41 1.48-.102.345-.433.52-.811.52H6.032z"/><path fill="#E75A70" d="M14.354 17.771L16 16c-1.438-1.792-4-2-4-2H8s-2.562.208-4 2l1.646 1.771S6.25 20.688 6.25 21 5 25.75 5 28h10c0-2.25-1.25-6.688-1.25-7s.604-3.229.604-3.229z"/><path fill="#DA2F47" d="M13.75 21c0-.106.07-.512.161-1H6.089c.092.488.161.894.161 1 0 .083-.122.509-.223 1h7.942c-.108-.558-.219-.917-.219-1z"/><path fill="#7C533E" d="M8 11v4c0 1.104.896 2 2 2s2-.896 2-2v-4H8z"/><path fill="#664131" d="M12 11l-4 .019V15s2 1 4 0v-4z"/><path fill="#7C533E" d="M15 3H5v6c0 2.762 2.238 5 5 5s5-2.237 5-5V3z"/><path fill="#0B0200" d="M15 2H5L4 7c4 0 4-4 4-4s0 4 8 4l-1-5z"/><path fill="#DF1F32" d="M12 12H8s0 1 2 1 2-1 2-1z"/><circle cx="7.5" cy="8.5" r=".5"/><circle cx="12.5" cy="8.5" r=".5"/><path fill="#3D2E24" d="M9 10h2s0 1-1 1-1-1-1-1z"/><path fill="#292F33" d="M26.5 0c-1.187 0-2.282.379-3.181 1.018C21.473 1.114 20 2.629 20 4.5c0 1.542.007 3.484 2.038 4.208C23.036 10.094 24.66 11 26.5 11c3.037 0 5.5-2.462 5.5-5.499C32 2.463 29.537 0 26.5 0z"/><path fill="#F7DECE" d="M18.117 26.76c-.271.091-.487-.159-.586-.302-.279-.405-.422-1.309-.004-2.227.423-.927.702-2.072 1.69-3.821.115-.204.494-2.746 1.242-4.354.202-.435 1.495-.684 2.009-.529.513.154-.005.98-.037 1.134-.344 1.651-1.305 4.077-1.45 4.404-.8 1.806-1.965 2.389-2.071 3.706-.055.69-.205 1.286-.6 1.228-.092.352-.094.728-.193.761zm14.595.204c.257.126.504-.094.62-.222.33-.365.591-1.242.296-2.208-.297-.975-.424-2.146-1.174-4.01-.087-.217-.129-2.787-.66-4.479-.143-.457-1.392-.875-1.922-.789-.529.086-.124.972-.112 1.129.124 1.682.758 4.213.859 4.556.556 1.895 1.634 2.627 1.566 3.946-.036.692.034 1.302.433 1.296.048.363 0 .735.094.781z"/><path fill="#AAB8C2" d="M29.555 29.5c.5-2.734.422-6.5.422-6.5h-7.963s-.078 3.766.422 6.5c.063.344.188 3.344-.109 5.5-.066.479 2.886.937 2.844-.125-.078-1.969.264-3.513.328-4.5.035-.547.25-1.875.344-3.208.011-.018.295-.018.306 0 .094 1.333.308 2.661.344 3.208.064.987.406 2.531.328 4.5-.042 1.062 2.91.604 2.844.125-.297-2.156-.172-5.156-.11-5.5z"/><path fill="#292F33" d="M30.54 36c.499-.406-.041-1.161-1.42-1.402-1.163-.203-2.2-.032-2.363.35-.212.493-.05 1.052-.05 1.052h3.833zm-9.117 0c-.499-.406.041-1.161 1.42-1.402 1.163-.203 2.2-.032 2.363.35.212.494.05 1.053.05 1.053L21.423 36z"/><path fill="#4289C1" d="M30.797 14.766C29.578 14 28 14 28 14h-4s-1.578 0-2.797.766c-1.201.754-1.656 3-1.656 3l2.203.688.109 5.546h8.281l.109-5.547 2.203-.688c.001.001-.454-2.245-1.655-2.999z"/><path fill="#F7DECE" d="M24 10.042v4c0 .682.896 1.305 2 1.305s2-.668 2-1.305v-4h-4z"/><path fill="#EEC2AD" d="M24 14.042c0 .682.896 1.305 2 1.305s2-.668 2-1.305V11l-4 .019v3.023z"/><path fill="#F7DECE" d="M31 3H21v6c0 2.762 2.238 5 5 5s5-2.237 5-5V3z"/><path fill="#292F33" d="M21 2.5L20.5 5l.5 2c2.333 0 2.85-2.412 2.965-3.488C24.004 4.588 24.779 7 31 7l.5-2-.5-2.5H21z"/><path fill="#C1694F" d="M28 12h-4s0 1 2 1 2-1 2-1z"/><circle fill="#662113" cx="23.5" cy="8.5" r=".5"/><circle fill="#662113" cx="28.5" cy="8.5" r=".5"/><path fill="#C1694F" d="M25 10h2s0 1-1 1-1-1-1-1z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f9d1-1f3ff-200d-1f91d-200d-1f9d1-1f3fc.svg b/public/emoji/1f9d1-1f3ff-200d-1f91d-200d-1f9d1-1f3fc.svg
new file mode 100644
index 0000000000000000000000000000000000000000..fce4c918427717bfa5f2a1241b40b87f814a57a9
--- /dev/null
+++ b/public/emoji/1f9d1-1f3ff-200d-1f91d-200d-1f9d1-1f3fc.svg
@@ -0,0 +1 @@
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#0B0200" d="M11 0C9.736 0 8.565.393 7.598 1.061 7.401 1.031 7.205 1 7 1 4.791 1 3 2.791 3 5v6c0 3.866 3.134 7 7 7s7-3.134 7-7V6.001C17 2.687 14.314 0 11 0z"/><path fill="#7C533E" d="M11.213 34.309c-.052.682 1.849.953 2.129.791.299-.173-.698-.623-.702-.977-.019-1.797.53-1.648.311-3.492.443-1.625.672-2.592.672-3.131 0-1.25-3.312-.766-3.312 0 0 .344.365 1.681.417 3.131-.313 1.659.641 1.615.485 3.678zm-2.448 0c.052.682-1.849.953-2.129.791-.299-.173.698-.623.702-.977.019-1.797-.53-1.648-.311-3.492-.443-1.625-.672-2.592-.672-3.131 0-1.25 3.313-.766 3.313 0 0 .344-.365 1.681-.417 3.131.311 1.659-.642 1.615-.486 3.678z"/><path fill="#664131" d="M10.311 27.5c0 .206.13.771.246 1.5h2.817c.164-.689.249-1.175.249-1.5 0-1.25-3.312-.766-3.312 0zm-3.957 0c0 .325.085.811.249 1.5H9.42c.116-.729.247-1.294.247-1.5 0-.766-3.313-1.25-3.313 0z"/><path fill="#7C533E" d="M3.258 26.96c-.258.124-.503-.097-.619-.227-.328-.367-.583-1.246-.282-2.209.303-.973.6-2.384 1.199-4.002.081-.22.499-3.764.805-4.445.197-.437 1.28-.896 1.81-.807.529.089.246.651.105 1.13 0 0-.916 3.953-1.016 4.296-.316 1.079-1.624 2.918-1.565 4.237.031.692.06 1.255-.339 1.246-.049.362-.003.735-.098.781zm14.984-.2c.271.091.487-.159.586-.302.279-.405.422-1.309.004-2.227-.423-.927-.894-2.29-1.69-3.821-.108-.208-.966-3.672-1.355-4.309-.25-.409-1.382-.729-1.897-.574-.513.154-.162.676.037 1.134 0 0 1.403 3.807 1.546 4.135.449 1.031 1.977 2.691 2.082 4.008.056.69.097 1.253.492 1.194.094.353.095.729.195.762z"/><path fill="#292F33" d="M13.945 36c.305 0 .372-.418.089-.629-.379-.285-.88-1.371-1.561-1.371h-1.245c-.229 0-.49 1.209-.41 1.48.102.345.433.52.812.52h2.315zm-7.913 0c-.305 0-.372-.418-.089-.629.379-.285.88-1.371 1.561-1.371h1.245c.229 0 .49 1.209.41 1.48-.102.345-.433.52-.811.52H6.032z"/><path fill="#E75A70" d="M14.354 17.771L16 16c-1.438-1.792-4-2-4-2H8s-2.562.208-4 2l1.646 1.771S6.25 20.688 6.25 21 5 25.75 5 28h10c0-2.25-1.25-6.688-1.25-7s.604-3.229.604-3.229z"/><path fill="#DA2F47" d="M13.75 21c0-.106.07-.512.161-1H6.089c.092.488.161.894.161 1 0 .083-.122.509-.223 1h7.942c-.108-.558-.219-.917-.219-1z"/><path fill="#7C533E" d="M8 11v4c0 1.104.896 2 2 2s2-.896 2-2v-4H8z"/><path fill="#664131" d="M12 11l-4 .019V15s2 1 4 0v-4z"/><path fill="#7C533E" d="M15 3H5v6c0 2.762 2.238 5 5 5s5-2.237 5-5V3z"/><path fill="#0B0200" d="M15 2H5L4 7c4 0 4-4 4-4s0 4 8 4l-1-5z"/><path fill="#DF1F32" d="M12 12H8s0 1 2 1 2-1 2-1z"/><circle cx="7.5" cy="8.5" r=".5"/><circle cx="12.5" cy="8.5" r=".5"/><path fill="#3D2E24" d="M9 10h2s0 1-1 1-1-1-1-1z"/><path fill="#FFE51E" d="M26.5 0c-1.187 0-2.282.379-3.181 1.018C21.473 1.114 20 2.629 20 4.5c0 1.542.007 3.484 2.038 4.208C23.036 10.094 24.66 11 26.5 11c3.037 0 5.5-2.462 5.5-5.499C32 2.463 29.537 0 26.5 0z"/><path fill="#F3D2A2" d="M18.117 26.76c-.271.091-.487-.159-.586-.302-.279-.405-.422-1.309-.004-2.227.423-.927.702-2.072 1.69-3.821.115-.204.494-2.746 1.242-4.354.202-.435 1.495-.684 2.009-.529.513.154-.005.98-.037 1.134-.344 1.651-1.305 4.077-1.45 4.404-.8 1.806-1.965 2.389-2.071 3.706-.055.69-.205 1.286-.6 1.228-.092.352-.094.728-.193.761zm14.595.204c.257.126.504-.094.62-.222.33-.365.591-1.242.296-2.208-.297-.975-.424-2.146-1.174-4.01-.087-.217-.129-2.787-.66-4.479-.143-.457-1.392-.875-1.922-.789-.529.086-.124.972-.112 1.129.124 1.682.758 4.213.859 4.556.556 1.895 1.634 2.627 1.566 3.946-.036.692.034 1.302.433 1.296.048.363 0 .735.094.781z"/><path fill="#AAB8C2" d="M29.555 29.5c.5-2.734.422-6.5.422-6.5h-7.963s-.078 3.766.422 6.5c.063.344.188 3.344-.109 5.5-.066.479 2.886.937 2.844-.125-.078-1.969.264-3.513.328-4.5.035-.547.25-1.875.344-3.208.011-.018.295-.018.306 0 .094 1.333.308 2.661.344 3.208.064.987.406 2.531.328 4.5-.042 1.062 2.91.604 2.844.125-.297-2.156-.172-5.156-.11-5.5z"/><path fill="#292F33" d="M30.54 36c.499-.406-.041-1.161-1.42-1.402-1.163-.203-2.2-.032-2.363.35-.212.493-.05 1.052-.05 1.052h3.833zm-9.117 0c-.499-.406.041-1.161 1.42-1.402 1.163-.203 2.2-.032 2.363.35.212.494.05 1.053.05 1.053L21.423 36z"/><path fill="#4289C1" d="M30.797 14.766C29.578 14 28 14 28 14h-4s-1.578 0-2.797.766c-1.201.754-1.656 3-1.656 3l2.203.688.109 5.546h8.281l.109-5.547 2.203-.688c.001.001-.454-2.245-1.655-2.999z"/><path fill="#F3D2A2" d="M24 10.042v4c0 .682.896 1.305 2 1.305s2-.668 2-1.305v-4h-4z"/><path fill="#E2C196" d="M24 14.042c0 .682.896 1.305 2 1.305s2-.668 2-1.305V11l-4 .019v3.023z"/><path fill="#F3D2A2" d="M31 3H21v6c0 2.762 2.238 5 5 5s5-2.237 5-5V3z"/><path fill="#FFE51E" d="M21 2.5L20.5 5l.5 2c2.333 0 2.85-2.412 2.965-3.488C24.004 4.588 24.779 7 31 7l.5-2-.5-2.5H21z"/><path fill="#C1694F" d="M28 12h-4s0 1 2 1 2-1 2-1z"/><circle fill="#662113" cx="23.5" cy="8.5" r=".5"/><circle fill="#662113" cx="28.5" cy="8.5" r=".5"/><path fill="#C1694F" d="M25 10h2s0 1-1 1-1-1-1-1z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f9d1-1f3ff-200d-1f91d-200d-1f9d1-1f3fd.svg b/public/emoji/1f9d1-1f3ff-200d-1f91d-200d-1f9d1-1f3fd.svg
new file mode 100644
index 0000000000000000000000000000000000000000..84e2b2bd86423b0fba589466021945d2f12ec73b
--- /dev/null
+++ b/public/emoji/1f9d1-1f3ff-200d-1f91d-200d-1f9d1-1f3fd.svg
@@ -0,0 +1 @@
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#0B0200" d="M11 0C9.736 0 8.565.393 7.598 1.061 7.401 1.031 7.205 1 7 1 4.791 1 3 2.791 3 5v6c0 3.866 3.134 7 7 7s7-3.134 7-7V6.001C17 2.687 14.314 0 11 0z"/><path fill="#7C533E" d="M11.213 34.309c-.052.682 1.849.953 2.129.791.299-.173-.698-.623-.702-.977-.019-1.797.53-1.648.311-3.492.443-1.625.672-2.592.672-3.131 0-1.25-3.312-.766-3.312 0 0 .344.365 1.681.417 3.131-.313 1.659.641 1.615.485 3.678zm-2.448 0c.052.682-1.849.953-2.129.791-.299-.173.698-.623.702-.977.019-1.797-.53-1.648-.311-3.492-.443-1.625-.672-2.592-.672-3.131 0-1.25 3.313-.766 3.313 0 0 .344-.365 1.681-.417 3.131.311 1.659-.642 1.615-.486 3.678z"/><path fill="#664131" d="M10.311 27.5c0 .206.13.771.246 1.5h2.817c.164-.689.249-1.175.249-1.5 0-1.25-3.312-.766-3.312 0zm-3.957 0c0 .325.085.811.249 1.5H9.42c.116-.729.247-1.294.247-1.5 0-.766-3.313-1.25-3.313 0z"/><path fill="#7C533E" d="M3.258 26.96c-.258.124-.503-.097-.619-.227-.328-.367-.583-1.246-.282-2.209.303-.973.6-2.384 1.199-4.002.081-.22.499-3.764.805-4.445.197-.437 1.28-.896 1.81-.807.529.089.246.651.105 1.13 0 0-.916 3.953-1.016 4.296-.316 1.079-1.624 2.918-1.565 4.237.031.692.06 1.255-.339 1.246-.049.362-.003.735-.098.781zm14.984-.2c.271.091.487-.159.586-.302.279-.405.422-1.309.004-2.227-.423-.927-.894-2.29-1.69-3.821-.108-.208-.966-3.672-1.355-4.309-.25-.409-1.382-.729-1.897-.574-.513.154-.162.676.037 1.134 0 0 1.403 3.807 1.546 4.135.449 1.031 1.977 2.691 2.082 4.008.056.69.097 1.253.492 1.194.094.353.095.729.195.762z"/><path fill="#292F33" d="M13.945 36c.305 0 .372-.418.089-.629-.379-.285-.88-1.371-1.561-1.371h-1.245c-.229 0-.49 1.209-.41 1.48.102.345.433.52.812.52h2.315zm-7.913 0c-.305 0-.372-.418-.089-.629.379-.285.88-1.371 1.561-1.371h1.245c.229 0 .49 1.209.41 1.48-.102.345-.433.52-.811.52H6.032z"/><path fill="#E75A70" d="M14.354 17.771L16 16c-1.438-1.792-4-2-4-2H8s-2.562.208-4 2l1.646 1.771S6.25 20.688 6.25 21 5 25.75 5 28h10c0-2.25-1.25-6.688-1.25-7s.604-3.229.604-3.229z"/><path fill="#DA2F47" d="M13.75 21c0-.106.07-.512.161-1H6.089c.092.488.161.894.161 1 0 .083-.122.509-.223 1h7.942c-.108-.558-.219-.917-.219-1z"/><path fill="#7C533E" d="M8 11v4c0 1.104.896 2 2 2s2-.896 2-2v-4H8z"/><path fill="#664131" d="M12 11l-4 .019V15s2 1 4 0v-4z"/><path fill="#7C533E" d="M15 3H5v6c0 2.762 2.238 5 5 5s5-2.237 5-5V3z"/><path fill="#0B0200" d="M15 2H5L4 7c4 0 4-4 4-4s0 4 8 4l-1-5z"/><path fill="#DF1F32" d="M12 12H8s0 1 2 1 2-1 2-1z"/><circle cx="7.5" cy="8.5" r=".5"/><circle cx="12.5" cy="8.5" r=".5"/><path fill="#3D2E24" d="M9 10h2s0 1-1 1-1-1-1-1z"/><path fill="#963B22" d="M26.5 0c-1.187 0-2.282.379-3.181 1.018C21.473 1.114 20 2.629 20 4.5c0 1.542.007 3.484 2.038 4.208C23.036 10.094 24.66 11 26.5 11c3.037 0 5.5-2.462 5.5-5.499C32 2.463 29.537 0 26.5 0z"/><path fill="#D4AB88" d="M18.117 26.76c-.271.091-.487-.159-.586-.302-.279-.405-.422-1.309-.004-2.227.423-.927.702-2.072 1.69-3.821.115-.204.494-2.746 1.242-4.354.202-.435 1.495-.684 2.009-.529.513.154-.005.98-.037 1.134-.344 1.651-1.305 4.077-1.45 4.404-.8 1.806-1.965 2.389-2.071 3.706-.055.69-.205 1.286-.6 1.228-.092.352-.094.728-.193.761zm14.595.204c.257.126.504-.094.62-.222.33-.365.591-1.242.296-2.208-.297-.975-.424-2.146-1.174-4.01-.087-.217-.129-2.787-.66-4.479-.143-.457-1.392-.875-1.922-.789-.529.086-.124.972-.112 1.129.124 1.682.758 4.213.859 4.556.556 1.895 1.634 2.627 1.566 3.946-.036.692.034 1.302.433 1.296.048.363 0 .735.094.781z"/><path fill="#AAB8C2" d="M29.555 29.5c.5-2.734.422-6.5.422-6.5h-7.963s-.078 3.766.422 6.5c.063.344.188 3.344-.109 5.5-.066.479 2.886.937 2.844-.125-.078-1.969.264-3.513.328-4.5.035-.547.25-1.875.344-3.208.011-.018.295-.018.306 0 .094 1.333.308 2.661.344 3.208.064.987.406 2.531.328 4.5-.042 1.062 2.91.604 2.844.125-.297-2.156-.172-5.156-.11-5.5z"/><path fill="#292F33" d="M30.54 36c.499-.406-.041-1.161-1.42-1.402-1.163-.203-2.2-.032-2.363.35-.212.493-.05 1.052-.05 1.052h3.833zm-9.117 0c-.499-.406.041-1.161 1.42-1.402 1.163-.203 2.2-.032 2.363.35.212.494.05 1.053.05 1.053L21.423 36z"/><path fill="#4289C1" d="M30.797 14.766C29.578 14 28 14 28 14h-4s-1.578 0-2.797.766c-1.201.754-1.656 3-1.656 3l2.203.688.109 5.546h8.281l.109-5.547 2.203-.688c.001.001-.454-2.245-1.655-2.999z"/><path fill="#D4AB88" d="M24 10.042v4c0 .682.896 1.305 2 1.305s2-.668 2-1.305v-4h-4z"/><path fill="#CC9B7A" d="M24 14.042c0 .682.896 1.305 2 1.305s2-.668 2-1.305V11l-4 .019v3.023z"/><path fill="#D4AB88" d="M31 3H21v6c0 2.762 2.238 5 5 5s5-2.237 5-5V3z"/><path fill="#963B22" d="M21 2.5L20.5 5l.5 2c2.333 0 2.85-2.412 2.965-3.488C24.004 4.588 24.779 7 31 7l.5-2-.5-2.5H21z"/><path fill="#C1694F" d="M28 12h-4s0 1 2 1 2-1 2-1z"/><circle fill="#662113" cx="23.5" cy="8.5" r=".5"/><circle fill="#662113" cx="28.5" cy="8.5" r=".5"/><path fill="#C1694F" d="M25 10h2s0 1-1 1-1-1-1-1z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f9d1-1f3ff-200d-1f91d-200d-1f9d1-1f3fe.svg b/public/emoji/1f9d1-1f3ff-200d-1f91d-200d-1f9d1-1f3fe.svg
new file mode 100644
index 0000000000000000000000000000000000000000..d0ba4cd18806faf440ce130ce30d3a9fa26f67f9
--- /dev/null
+++ b/public/emoji/1f9d1-1f3ff-200d-1f91d-200d-1f9d1-1f3fe.svg
@@ -0,0 +1 @@
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#0B0200" d="M11 0C9.736 0 8.565.393 7.598 1.061 7.401 1.031 7.205 1 7 1 4.791 1 3 2.791 3 5v6c0 3.866 3.134 7 7 7s7-3.134 7-7V6.001C17 2.687 14.314 0 11 0z"/><path fill="#7C533E" d="M11.213 34.309c-.052.682 1.849.953 2.129.791.299-.173-.698-.623-.702-.977-.019-1.797.53-1.648.311-3.492.443-1.625.672-2.592.672-3.131 0-1.25-3.312-.766-3.312 0 0 .344.365 1.681.417 3.131-.313 1.659.641 1.615.485 3.678zm-2.448 0c.052.682-1.849.953-2.129.791-.299-.173.698-.623.702-.977.019-1.797-.53-1.648-.311-3.492-.443-1.625-.672-2.592-.672-3.131 0-1.25 3.313-.766 3.313 0 0 .344-.365 1.681-.417 3.131.311 1.659-.642 1.615-.486 3.678z"/><path fill="#664131" d="M10.311 27.5c0 .206.13.771.246 1.5h2.817c.164-.689.249-1.175.249-1.5 0-1.25-3.312-.766-3.312 0zm-3.957 0c0 .325.085.811.249 1.5H9.42c.116-.729.247-1.294.247-1.5 0-.766-3.313-1.25-3.313 0z"/><path fill="#7C533E" d="M3.258 26.96c-.258.124-.503-.097-.619-.227-.328-.367-.583-1.246-.282-2.209.303-.973.6-2.384 1.199-4.002.081-.22.499-3.764.805-4.445.197-.437 1.28-.896 1.81-.807.529.089.246.651.105 1.13 0 0-.916 3.953-1.016 4.296-.316 1.079-1.624 2.918-1.565 4.237.031.692.06 1.255-.339 1.246-.049.362-.003.735-.098.781zm14.984-.2c.271.091.487-.159.586-.302.279-.405.422-1.309.004-2.227-.423-.927-.894-2.29-1.69-3.821-.108-.208-.966-3.672-1.355-4.309-.25-.409-1.382-.729-1.897-.574-.513.154-.162.676.037 1.134 0 0 1.403 3.807 1.546 4.135.449 1.031 1.977 2.691 2.082 4.008.056.69.097 1.253.492 1.194.094.353.095.729.195.762z"/><path fill="#292F33" d="M13.945 36c.305 0 .372-.418.089-.629-.379-.285-.88-1.371-1.561-1.371h-1.245c-.229 0-.49 1.209-.41 1.48.102.345.433.52.812.52h2.315zm-7.913 0c-.305 0-.372-.418-.089-.629.379-.285.88-1.371 1.561-1.371h1.245c.229 0 .49 1.209.41 1.48-.102.345-.433.52-.811.52H6.032z"/><path fill="#E75A70" d="M14.354 17.771L16 16c-1.438-1.792-4-2-4-2H8s-2.562.208-4 2l1.646 1.771S6.25 20.688 6.25 21 5 25.75 5 28h10c0-2.25-1.25-6.688-1.25-7s.604-3.229.604-3.229z"/><path fill="#DA2F47" d="M13.75 21c0-.106.07-.512.161-1H6.089c.092.488.161.894.161 1 0 .083-.122.509-.223 1h7.942c-.108-.558-.219-.917-.219-1z"/><path fill="#7C533E" d="M8 11v4c0 1.104.896 2 2 2s2-.896 2-2v-4H8z"/><path fill="#664131" d="M12 11l-4 .019V15s2 1 4 0v-4z"/><path fill="#7C533E" d="M15 3H5v6c0 2.762 2.238 5 5 5s5-2.237 5-5V3z"/><path fill="#0B0200" d="M15 2H5L4 7c4 0 4-4 4-4s0 4 8 4l-1-5z"/><path fill="#DF1F32" d="M12 12H8s0 1 2 1 2-1 2-1z"/><circle cx="7.5" cy="8.5" r=".5"/><circle cx="12.5" cy="8.5" r=".5"/><path fill="#3D2E24" d="M9 10h2s0 1-1 1-1-1-1-1z"/><path fill="#60352A" d="M26.5 0c-1.187 0-2.282.379-3.181 1.018C21.473 1.114 20 2.629 20 4.5c0 1.542.007 3.484 2.038 4.208C23.036 10.094 24.66 11 26.5 11c3.037 0 5.5-2.462 5.5-5.499C32 2.463 29.537 0 26.5 0z"/><path fill="#AF7E57" d="M18.117 26.76c-.271.091-.487-.159-.586-.302-.279-.405-.422-1.309-.004-2.227.423-.927.702-2.072 1.69-3.821.115-.204.494-2.746 1.242-4.354.202-.435 1.495-.684 2.009-.529.513.154-.005.98-.037 1.134-.344 1.651-1.305 4.077-1.45 4.404-.8 1.806-1.965 2.389-2.071 3.706-.055.69-.205 1.286-.6 1.228-.092.352-.094.728-.193.761zm14.595.204c.257.126.504-.094.62-.222.33-.365.591-1.242.296-2.208-.297-.975-.424-2.146-1.174-4.01-.087-.217-.129-2.787-.66-4.479-.143-.457-1.392-.875-1.922-.789-.529.086-.124.972-.112 1.129.124 1.682.758 4.213.859 4.556.556 1.895 1.634 2.627 1.566 3.946-.036.692.034 1.302.433 1.296.048.363 0 .735.094.781z"/><path fill="#AAB8C2" d="M29.555 29.5c.5-2.734.422-6.5.422-6.5h-7.963s-.078 3.766.422 6.5c.063.344.188 3.344-.109 5.5-.066.479 2.886.937 2.844-.125-.078-1.969.264-3.513.328-4.5.035-.547.25-1.875.344-3.208.011-.018.295-.018.306 0 .094 1.333.308 2.661.344 3.208.064.987.406 2.531.328 4.5-.042 1.062 2.91.604 2.844.125-.297-2.156-.172-5.156-.11-5.5z"/><path fill="#292F33" d="M30.54 36c.499-.406-.041-1.161-1.42-1.402-1.163-.203-2.2-.032-2.363.35-.212.493-.05 1.052-.05 1.052h3.833zm-9.117 0c-.499-.406.041-1.161 1.42-1.402 1.163-.203 2.2-.032 2.363.35.212.494.05 1.053.05 1.053L21.423 36z"/><path fill="#4289C1" d="M30.797 14.766C29.578 14 28 14 28 14h-4s-1.578 0-2.797.766c-1.201.754-1.656 3-1.656 3l2.203.688.109 5.546h8.281l.109-5.547 2.203-.688c.001.001-.454-2.245-1.655-2.999z"/><path fill="#AF7E57" d="M24 10.042v4c0 .682.896 1.305 2 1.305s2-.668 2-1.305v-4h-4z"/><path fill="#9B6A49" d="M24 14.042c0 .682.896 1.305 2 1.305s2-.668 2-1.305V11l-4 .019v3.023z"/><path fill="#AF7E57" d="M31 3H21v6c0 2.762 2.238 5 5 5s5-2.237 5-5V3z"/><path fill="#60352A" d="M21 2.5L20.5 5l.5 2c2.333 0 2.85-2.412 2.965-3.488C24.004 4.588 24.779 7 31 7l.5-2-.5-2.5H21z"/><path fill="#915A34" d="M28 12h-4s0 1 2 1 2-1 2-1z"/><circle fill="#662113" cx="23.5" cy="8.5" r=".5"/><circle fill="#662113" cx="28.5" cy="8.5" r=".5"/><path fill="#915A34" d="M25 10h2s0 1-1 1-1-1-1-1z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f9d1-1f3ff-200d-1f91d-200d-1f9d1-1f3ff.svg b/public/emoji/1f9d1-1f3ff-200d-1f91d-200d-1f9d1-1f3ff.svg
new file mode 100644
index 0000000000000000000000000000000000000000..e0cb1e2bb950994aee5c21091ce2bef7256d5e53
--- /dev/null
+++ b/public/emoji/1f9d1-1f3ff-200d-1f91d-200d-1f9d1-1f3ff.svg
@@ -0,0 +1 @@
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#0B0200" d="M11 0C9.736 0 8.565.393 7.598 1.061 7.401 1.031 7.205 1 7 1 4.791 1 3 2.791 3 5v6c0 3.866 3.134 7 7 7s7-3.134 7-7V6.001C17 2.687 14.314 0 11 0z"/><path fill="#7C533E" d="M11.213 34.309c-.052.682 1.849.953 2.129.791.299-.173-.698-.623-.702-.977-.019-1.797.53-1.648.311-3.492.443-1.625.672-2.592.672-3.131 0-1.25-3.312-.766-3.312 0 0 .344.365 1.681.417 3.131-.313 1.659.641 1.615.485 3.678zm-2.448 0c.052.682-1.849.953-2.129.791-.299-.173.698-.623.702-.977.019-1.797-.53-1.648-.311-3.492-.443-1.625-.672-2.592-.672-3.131 0-1.25 3.313-.766 3.313 0 0 .344-.365 1.681-.417 3.131.311 1.659-.642 1.615-.486 3.678z"/><path fill="#664131" d="M10.311 27.5c0 .206.13.771.246 1.5h2.817c.164-.689.249-1.175.249-1.5 0-1.25-3.312-.766-3.312 0zm-3.957 0c0 .325.085.811.249 1.5H9.42c.116-.729.247-1.294.247-1.5 0-.766-3.313-1.25-3.313 0z"/><path fill="#7C533E" d="M3.258 26.96c-.258.124-.503-.097-.619-.227-.328-.367-.583-1.246-.282-2.209.303-.973.6-2.384 1.199-4.002.081-.22.499-3.764.805-4.445.197-.437 1.28-.896 1.81-.807.529.089.246.651.105 1.13 0 0-.916 3.953-1.016 4.296-.316 1.079-1.624 2.918-1.565 4.237.031.692.06 1.255-.339 1.246-.049.362-.003.735-.098.781zm14.984-.2c.271.091.487-.159.586-.302.279-.405.422-1.309.004-2.227-.423-.927-.894-2.29-1.69-3.821-.108-.208-.966-3.672-1.355-4.309-.25-.409-1.382-.729-1.897-.574-.513.154-.162.676.037 1.134 0 0 1.403 3.807 1.546 4.135.449 1.031 1.977 2.691 2.082 4.008.056.69.097 1.253.492 1.194.094.353.095.729.195.762z"/><path fill="#292F33" d="M13.945 36c.305 0 .372-.418.089-.629-.379-.285-.88-1.371-1.561-1.371h-1.245c-.229 0-.49 1.209-.41 1.48.102.345.433.52.812.52h2.315zm-7.913 0c-.305 0-.372-.418-.089-.629.379-.285.88-1.371 1.561-1.371h1.245c.229 0 .49 1.209.41 1.48-.102.345-.433.52-.811.52H6.032z"/><path fill="#E75A70" d="M14.354 17.771L16 16c-1.438-1.792-4-2-4-2H8s-2.562.208-4 2l1.646 1.771S6.25 20.688 6.25 21 5 25.75 5 28h10c0-2.25-1.25-6.688-1.25-7s.604-3.229.604-3.229z"/><path fill="#DA2F47" d="M13.75 21c0-.106.07-.512.161-1H6.089c.092.488.161.894.161 1 0 .083-.122.509-.223 1h7.942c-.108-.558-.219-.917-.219-1z"/><path fill="#7C533E" d="M8 11v4c0 1.104.896 2 2 2s2-.896 2-2v-4H8z"/><path fill="#664131" d="M12 11l-4 .019V15s2 1 4 0v-4z"/><path fill="#7C533E" d="M15 3H5v6c0 2.762 2.238 5 5 5s5-2.237 5-5V3z"/><path fill="#0B0200" d="M15 2H5L4 7c4 0 4-4 4-4s0 4 8 4l-1-5z"/><path fill="#DF1F32" d="M12 12H8s0 1 2 1 2-1 2-1z"/><circle cx="7.5" cy="8.5" r=".5"/><circle cx="12.5" cy="8.5" r=".5"/><path fill="#3D2E24" d="M9 10h2s0 1-1 1-1-1-1-1z"/><path fill="#0B0200" d="M26.5 0c-1.187 0-2.282.379-3.181 1.018C21.473 1.114 20 2.629 20 4.5c0 1.542.007 3.484 2.038 4.208C23.036 10.094 24.66 11 26.5 11c3.037 0 5.5-2.462 5.5-5.499C32 2.463 29.537 0 26.5 0z"/><path fill="#7C533E" d="M18.117 26.76c-.271.091-.487-.159-.586-.302-.279-.405-.422-1.309-.004-2.227.423-.927.702-2.072 1.69-3.821.115-.204.494-2.746 1.242-4.354.202-.435 1.495-.684 2.009-.529.513.154-.005.98-.037 1.134-.344 1.651-1.305 4.077-1.45 4.404-.8 1.806-1.965 2.389-2.071 3.706-.055.69-.205 1.286-.6 1.228-.092.352-.094.728-.193.761zm14.595.204c.257.126.504-.094.62-.222.33-.365.591-1.242.296-2.208-.297-.975-.424-2.146-1.174-4.01-.087-.217-.129-2.787-.66-4.479-.143-.457-1.392-.875-1.922-.789-.529.086-.124.972-.112 1.129.124 1.682.758 4.213.859 4.556.556 1.895 1.634 2.627 1.566 3.946-.036.692.034 1.302.433 1.296.048.363 0 .735.094.781z"/><path fill="#AAB8C2" d="M29.555 29.5c.5-2.734.422-6.5.422-6.5h-7.963s-.078 3.766.422 6.5c.063.344.188 3.344-.109 5.5-.066.479 2.886.937 2.844-.125-.078-1.969.264-3.513.328-4.5.035-.547.25-1.875.344-3.208.011-.018.295-.018.306 0 .094 1.333.308 2.661.344 3.208.064.987.406 2.531.328 4.5-.042 1.062 2.91.604 2.844.125-.297-2.156-.172-5.156-.11-5.5z"/><path fill="#292F33" d="M30.54 36c.499-.406-.041-1.161-1.42-1.402-1.163-.203-2.2-.032-2.363.35-.212.493-.05 1.052-.05 1.052h3.833zm-9.117 0c-.499-.406.041-1.161 1.42-1.402 1.163-.203 2.2-.032 2.363.35.212.494.05 1.053.05 1.053L21.423 36z"/><path fill="#4289C1" d="M30.797 14.766C29.578 14 28 14 28 14h-4s-1.578 0-2.797.766c-1.201.754-1.656 3-1.656 3l2.203.688.109 5.546h8.281l.109-5.547 2.203-.688c.001.001-.454-2.245-1.655-2.999z"/><path fill="#7C533E" d="M24 10.042v4c0 .682.896 1.305 2 1.305s2-.668 2-1.305v-4h-4z"/><path fill="#664131" d="M24 14.042c0 .682.896 1.305 2 1.305s2-.668 2-1.305V11l-4 .019v3.023z"/><path fill="#7C533E" d="M31 3H21v6c0 2.762 2.238 5 5 5s5-2.237 5-5V3z"/><path fill="#0B0200" d="M21 2.5L20.5 5l.5 2c2.333 0 2.85-2.412 2.965-3.488C24.004 4.588 24.779 7 31 7l.5-2-.5-2.5H21z"/><path fill="#3D2E24" d="M28 12h-4s0 1 2 1 2-1 2-1z"/><circle cx="23.5" cy="8.5" r=".5"/><circle cx="28.5" cy="8.5" r=".5"/><path fill="#3D2E24" d="M25 10h2s0 1-1 1-1-1-1-1z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f9d1-200d-1f91d-200d-1f9d1.svg b/public/emoji/1f9d1-200d-1f91d-200d-1f9d1.svg
new file mode 100644
index 0000000000000000000000000000000000000000..f7e46f21075a743cffabce365853b40a14e5c054
--- /dev/null
+++ b/public/emoji/1f9d1-200d-1f91d-200d-1f9d1.svg
@@ -0,0 +1 @@
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#FFAC33" d="M11 0C9.736 0 8.565.393 7.598 1.061 7.401 1.031 7.205 1 7 1 4.791 1 3 2.791 3 5v6c0 3.866 3.134 7 7 7s7-3.134 7-7V6.001C17 2.687 14.314 0 11 0z"/><path fill="#FFDC5D" d="M11.213 34.309c-.052.682 1.849.953 2.129.791.299-.173-.698-.623-.702-.977-.019-1.797.53-1.648.311-3.492.443-1.625.672-2.592.672-3.131 0-1.25-3.312-.766-3.312 0 0 .344.365 1.681.417 3.131-.313 1.659.641 1.615.485 3.678zm-2.448 0c.052.682-1.849.953-2.129.791-.299-.173.698-.623.702-.977.019-1.797-.53-1.648-.311-3.492-.443-1.625-.672-2.592-.672-3.131 0-1.25 3.313-.766 3.313 0 0 .344-.365 1.681-.417 3.131.311 1.659-.642 1.615-.486 3.678z"/><path fill="#F9CA55" d="M10.311 27.5c0 .206.13.771.246 1.5h2.817c.164-.689.249-1.175.249-1.5 0-1.25-3.312-.766-3.312 0zm-3.957 0c0 .325.085.811.249 1.5H9.42c.116-.729.247-1.294.247-1.5 0-.766-3.313-1.25-3.313 0z"/><path fill="#FFDC5D" d="M3.258 26.96c-.258.124-.503-.097-.619-.227-.328-.367-.583-1.246-.282-2.209.303-.973.6-2.384 1.199-4.002.081-.22.499-3.764.805-4.445.197-.437 1.28-.896 1.81-.807.529.089.246.651.105 1.13 0 0-.916 3.953-1.016 4.296-.316 1.079-1.624 2.918-1.565 4.237.031.692.06 1.255-.339 1.246-.049.362-.003.735-.098.781zm14.984-.2c.271.091.487-.159.586-.302.279-.405.422-1.309.004-2.227-.423-.927-.894-2.29-1.69-3.821-.108-.208-.966-3.672-1.355-4.309-.25-.409-1.382-.729-1.897-.574-.513.154-.162.676.037 1.134 0 0 1.403 3.807 1.546 4.135.449 1.031 1.977 2.691 2.082 4.008.056.69.097 1.253.492 1.194.094.353.095.729.195.762z"/><path fill="#292F33" d="M13.945 36c.305 0 .372-.418.089-.629-.379-.285-.88-1.371-1.561-1.371h-1.245c-.229 0-.49 1.209-.41 1.48.102.345.433.52.812.52h2.315zm-7.913 0c-.305 0-.372-.418-.089-.629.379-.285.88-1.371 1.561-1.371h1.245c.229 0 .49 1.209.41 1.48-.102.345-.433.52-.811.52H6.032z"/><path fill="#E75A70" d="M14.354 17.771L16 16c-1.438-1.792-4-2-4-2H8s-2.562.208-4 2l1.646 1.771S6.25 20.688 6.25 21 5 25.75 5 28h10c0-2.25-1.25-6.688-1.25-7s.604-3.229.604-3.229z"/><path fill="#DA2F47" d="M13.75 21c0-.106.07-.512.161-1H6.089c.092.488.161.894.161 1 0 .083-.122.509-.223 1h7.942c-.108-.558-.219-.917-.219-1z"/><path fill="#FFDC5D" d="M8 11v4c0 1.104.896 2 2 2s2-.896 2-2v-4H8z"/><path fill="#F9CA55" d="M12 11l-4 .019V15s2 1 4 0v-4z"/><path fill="#FFDC5D" d="M15 3H5v6c0 2.762 2.238 5 5 5s5-2.237 5-5V3z"/><path fill="#FFAC33" d="M15 2H5L4 7c4 0 4-4 4-4s0 4 8 4l-1-5z"/><path fill="#DF1F32" d="M12 12H8s0 1 2 1 2-1 2-1z"/><circle fill="#662113" cx="7.5" cy="8.5" r=".5"/><circle fill="#662113" cx="12.5" cy="8.5" r=".5"/><path fill="#C1694F" d="M9 10h2s0 1-1 1-1-1-1-1z"/><path fill="#FFAC33" d="M26.5 0c-1.187 0-2.282.379-3.181 1.018C21.473 1.114 20 2.629 20 4.5c0 1.542.007 3.484 2.038 4.208C23.036 10.094 24.66 11 26.5 11c3.037 0 5.5-2.462 5.5-5.499C32 2.463 29.537 0 26.5 0z"/><path fill="#FFDC5D" d="M18.117 26.76c-.271.091-.487-.159-.586-.302-.279-.405-.422-1.309-.004-2.227.423-.927.702-2.072 1.69-3.821.115-.204.494-2.746 1.242-4.354.202-.435 1.495-.684 2.009-.529.513.154-.005.98-.037 1.134-.344 1.651-1.305 4.077-1.45 4.404-.8 1.806-1.965 2.389-2.071 3.706-.055.69-.205 1.286-.6 1.228-.092.352-.094.728-.193.761zm14.595.204c.257.126.504-.094.62-.222.33-.365.591-1.242.296-2.208-.297-.975-.424-2.146-1.174-4.01-.087-.217-.129-2.787-.66-4.479-.143-.457-1.392-.875-1.922-.789-.529.086-.124.972-.112 1.129.124 1.682.758 4.213.859 4.556.556 1.895 1.634 2.627 1.566 3.946-.036.692.034 1.302.433 1.296.048.363 0 .735.094.781z"/><path fill="#AAB8C2" d="M29.555 29.5c.5-2.734.422-6.5.422-6.5h-7.963s-.078 3.766.422 6.5c.063.344.188 3.344-.109 5.5-.066.479 2.886.937 2.844-.125-.078-1.969.264-3.513.328-4.5.035-.547.25-1.875.344-3.208.011-.018.295-.018.306 0 .094 1.333.308 2.661.344 3.208.064.987.406 2.531.328 4.5-.042 1.062 2.91.604 2.844.125-.297-2.156-.172-5.156-.11-5.5z"/><path fill="#292F33" d="M30.54 36c.499-.406-.041-1.161-1.42-1.402-1.163-.203-2.2-.032-2.363.35-.212.493-.05 1.052-.05 1.052h3.833zm-9.117 0c-.499-.406.041-1.161 1.42-1.402 1.163-.203 2.2-.032 2.363.35.212.494.05 1.053.05 1.053L21.423 36z"/><path fill="#4289C1" d="M30.797 14.766C29.578 14 28 14 28 14h-4s-1.578 0-2.797.766c-1.201.754-1.656 3-1.656 3l2.203.688.109 5.546h8.281l.109-5.547 2.203-.688c.001.001-.454-2.245-1.655-2.999z"/><path fill="#FFDC5D" d="M24 10.042v4c0 .682.896 1.305 2 1.305s2-.668 2-1.305v-4h-4z"/><path fill="#F9CA55" d="M24 14.042c0 .682.896 1.305 2 1.305s2-.668 2-1.305V11l-4 .019v3.023z"/><path fill="#FFDC5D" d="M31 3H21v6c0 2.762 2.238 5 5 5s5-2.237 5-5V3z"/><path fill="#FFAC33" d="M21 2.5L20.5 5l.5 2c2.333 0 2.85-2.412 2.965-3.488C24.004 4.588 24.779 7 31 7l.5-2-.5-2.5H21z"/><path fill="#C1694F" d="M28 12h-4s0 1 2 1 2-1 2-1z"/><circle fill="#662113" cx="23.5" cy="8.5" r=".5"/><circle fill="#662113" cx="28.5" cy="8.5" r=".5"/><path fill="#C1694F" d="M25 10h2s0 1-1 1-1-1-1-1z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f9d6-1f3fb-200d-2640-fe0f.svg b/public/emoji/1f9d6-1f3fb-200d-2640-fe0f.svg
index fee0d3edadbb09ff8df14c1dc125da84540cf323..98c29804fe4500ea61d949c4a9b46400c6fc54ae 100644
--- a/public/emoji/1f9d6-1f3fb-200d-2640-fe0f.svg
+++ b/public/emoji/1f9d6-1f3fb-200d-2640-fe0f.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#C1694F" d="M36 32c0 2.209-1.791 4-4 4H4c-2.209 0-4-1.791-4-4V4c0-2.209 1.791-4 4-4h28c2.209 0 4 1.791 4 4v28z"/><path fill="#D99E82" d="M0 4h36v4H0zm0 8h36v4H0zm0 8h36v4H0zm0 8h36v4H0z"/><path opacity=".75" fill="#E1E8ED" d="M33.47 15.4c-.436-.247-.933-.4-1.47-.4-1.657 0-3 1.343-3 3 0 .061.014.118.018.178-.863.301-1.539.977-1.84 1.84-.06-.004-.117-.018-.178-.018-1.311 0-2.414.846-2.822 2.018C24.118 22.014 12.657 22 11 22c-.395 0-.77.081-1.116.22-.259-.957-.974-1.718-1.902-2.041.004-.061.018-.118.018-.179 0-1.657-1.343-3-3-3-.537 0-1.034.153-1.47.4C2.998 16.561 2.067 16 1 16c-.355 0-.685.081-1 .195V32c0 2.209 1.791 4 4 4h28c2.209 0 4-1.791 4-4V14c-1.067 0-1.998.561-2.53 1.4z"/><path fill="#292F33" d="M19.329 1c-1.681 0-3.238.523-4.524 1.41-.261-.039-.523-.08-.795-.08C11.072 2.33 9 5.062 9 8v8c0 5.142 3.858 8.939 9 8.939 5.142 0 8.914-4.312 8.998-8.87L27 9c-.083-4.991-3.263-8-7.671-8z"/><path fill="#F7DECE" d="M23 20h-3v-1h-4v1h-3c-1.469 0-3 1-3 3v12l.022-.004c.058.561.516 1.004 1.092 1.004.615 0 1.114-.499 1.114-1.114 0-.084-.03-.159-.048-.237h11.639c-.018.079-.048.153-.048.237 0 .615.499 1.114 1.114 1.114.576 0 1.034-.443 1.092-1.004L26 35V23c0-2-1.531-3-3-3z"/><path fill="#EEC2AD" d="M20 19h-4v1s2 1 4 0v-1z"/><path fill="#F7DECE" d="M15 6s-1 3-4 4v3c0 3.674 3.327 6.619 6.999 6.619C21.672 19.619 25 16.674 25 13v-3c-8 0-10-4-10-4z"/><path fill="#DF1F32" d="M21 16h-6s.613 1.552 3 1.552S21 16 21 16z"/><circle fill="#662113" cx="15.145" cy="12.726" r=".726"/><circle fill="#662113" cx="20.855" cy="12.726" r=".726"/><path fill="#C1694F" d="M17 14h2s0 1-1 1-1-1-1-1z"/><path fill="#9266CC" d="M12 23h12v13H12z"/><path fill="#CBB7EA" d="M23 36h-4v-9s0-3-2-4h6v13z"/><path fill="#744EAA" d="M24 36h-4v-9s0-3-2-4h6v13z"/><path fill="#744EAA" d="M18 23h-6v1h7.121c-.277-.402-.64-.76-1.121-1z"/><path fill="#9266CC" d="M18.121 24h1c-.277-.402-.64-.76-1.121-1h-1c.481.24.844.598 1.121 1z"/><path fill="#553788" d="M18 23c.481.24.844.598 1.121 1H24v-1h-6z"/><path d="M0 32c0 2.209 1.791 4 4 4h12.816c.112-.314.184-.647.184-1 0-1.657-1.343-3-3-3-.36 0-.7.074-1.019.19.004-.064.019-.125.019-.19 0-1.067-.561-1.998-1.4-2.53.247-.436.4-.933.4-1.47 0-1.657-1.343-3-3-3-.781 0-1.487.306-2.021.796C6.872 24.236 5.587 23 4 23c-1.385 0-2.539.944-2.884 2.22C.77 25.081.395 25 0 25v7zm34-7c-.87 0-1.646.376-2.194.967C31.384 24.821 30.292 24 29 24c-1.657 0-3 1.343-3 3-1.657 0-3 1.343-3 3 0 .537.153 1.034.4 1.47-.839.532-1.4 1.463-1.4 2.53-1.304 0-2.403.837-2.816 2H32c2.209 0 4-1.791 4-4v-6.221C35.468 25.3 34.772 25 34 25z" opacity=".85" fill="#F5F8FA"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><g fill="#E1E8ED"><circle cx="4.5" cy="25.5" r="4.5"/><circle cx="25.5" cy="20.5" r="5.5"/><circle cx="31" cy="26.5" r="5"/><circle cx="12" cy="24" r="5"/><path d="M33 30c-1.657 0-3 1.343-3 3H6c0-1.657-1.343-3-3-3s-3 1.343-3 3 1.343 3 3 3h29v-.184c.314.112.647.184 1 .184 1.657 0 3-1.343 3-3s-1.343-3-3-3z"/><path d="M0 25.5h9V33H0zM20 23h9v4h-9zm11 3.5h5V33h-5z"/></g><path fill="#F7DECE" d="M31 36v-4.5c0-3.314-3.56-5.5-6.875-5.5h-12C8.812 26 5 28.186 5 31.5V36h26z"/><path fill="#292F33" d="M17.945 3.978c4.105 0 10.947 2.053 10.947 10.947 0 8.896 0 10.948-2.053 10.948s-4.79-2.053-8.895-2.053c-4.105 0-6.785 2.053-8.895 2.053-2.287 0-2.053-8.211-2.053-10.948.001-8.894 6.844-10.947 10.949-10.947"/><path fill="#F7DECE" d="M14.5 26c1 1.982 2.792 4.5 3.5 4.5s2.512-2.549 3.5-4.5v-3.591h-7V26z"/><path fill="#EEC2AD" d="M14.322 24.088c1.022 1.155 2.29 1.468 3.668 1.468 1.379 0 2.647-.312 3.67-1.468v-2.937h-7.338v2.937z"/><path fill="#F7DECE" d="M9.734 14.627c0-5.834 3.676-10.563 8.211-10.563 4.533 0 8.209 4.73 8.209 10.563s-3.676 10.285-8.209 10.285c-4.535 0-8.211-4.452-8.211-10.285"/><path fill="#DF1F32" d="M17.945 22.452c-1.606 0-2.447-.794-2.537-.885-.268-.267-.268-.7 0-.967.266-.265.692-.267.961-.007.035.032.551.491 1.576.491 1.038 0 1.555-.473 1.576-.492.273-.256.703-.248.963.02.26.269.26.691-.004.955-.089.091-.929.885-2.535.885"/><path fill="#292F33" d="M7.735 17.909c-.021-1-.044-.224-.044-.465 0-3.422 2.053.494 2.053-1.943 0-2.439 1.368-2.683 2.736-4.051.684-.685 2.053-2.026 2.053-2.026s3.421 2.067 6.158 2.067c2.736 0 5.474 1.375 5.474 4.112 0 2.736 2.053-1.584 2.053 1.837 0 .244-.023-.531-.04.469h.719c.006-2 .006-1.924.006-3.202C28.902 5.812 22.06 2.5 17.954 2.5 13.85 2.5 7.007 5.757 7.007 14.652c0 .793-.02 1.257.008 3.257h.72z"/><path fill="#662113" d="M14.608 16.796c-.465 0-.846-.381-.846-.847v-.845c0-.465.381-.846.846-.846.466 0 .847.381.847.846v.845c0 .466-.381.847-.847.847m6.765 0c-.465 0-.846-.381-.846-.847v-.845c0-.465.381-.846.846-.846.465 0 .846.381.846.846v.845c0 .466-.381.847-.846.847"/><path fill="#C1694F" d="M18.836 19.409h-1.69c-.233 0-.423-.19-.423-.423v-.153c0-.233.189-.424.423-.424h1.69c.233 0 .424.19.424.424v.153c0 .234-.191.423-.424.423"/><path fill="#9266CC" d="M9.75 31.5V36h11.5v-.5h5v-4z"/><path fill="#A47DE2" d="M19.25 31.5c2 1 2 4 2 4v.5h1v-.5h3v-4h-6z"/><path fill="#744EAA" d="M20.25 31.5c2 1 2 4 2 4v.5h4v-4.5h-6z"/><path fill="#744EAA" d="M20.25 31.5H9.75v1h11.621c-.277-.402-.64-.76-1.121-1z"/><path fill="#9266CC" d="M20.371 32.5h1c-.277-.402-.64-.76-1.121-1h-1c.481.24.844.598 1.121 1z"/><path fill="#553788" d="M20.25 31.5c.481.24.844.598 1.121 1h4.879v-1h-6z"/><path d="M32 28c-2.975 0-5.438 2.168-5.911 5.009C26.058 33.008 26.03 33 26 33c-2.049 0-3.806 1.236-4.578 3H33c1.65 0 3-1.35 3-3v-3.463C34.938 28.584 33.539 28 32 28zm-18.422 8c-.772-1.764-2.529-3-4.578-3-.78 0-1.509.194-2.166.512.098-.322.166-.657.166-1.012C7 30.567 5.433 29 3.5 29 1.738 29 .295 30.306.05 32H0v1c0 1.65 1.35 3 3 3h10.578z" opacity=".7" fill="#FFF"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f9d6-1f3fb-200d-2642-fe0f.svg b/public/emoji/1f9d6-1f3fb-200d-2642-fe0f.svg
index 759ae189a932221ace876fbb155cd1bf7b901a13..d3aff3dc1d5ab7831de3128edb12b69f8f32b4e4 100644
--- a/public/emoji/1f9d6-1f3fb-200d-2642-fe0f.svg
+++ b/public/emoji/1f9d6-1f3fb-200d-2642-fe0f.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#C1694F" d="M36 32c0 2.209-1.791 4-4 4H4c-2.209 0-4-1.791-4-4V4c0-2.209 1.791-4 4-4h28c2.209 0 4 1.791 4 4v28z"/><path fill="#D99E82" d="M0 4h36v4H0zm0 8h36v4H0zm0 8h36v4H0zm0 8h36v4H0z"/><path opacity=".75" fill="#E1E8ED" d="M33.47 15.4c-.436-.247-.933-.4-1.47-.4-1.657 0-3 1.343-3 3 0 .061.014.118.018.178-.863.301-1.539.977-1.84 1.84-.06-.004-.117-.018-.178-.018-1.311 0-2.414.846-2.822 2.018C24.118 22.014 12.657 22 11 22c-.395 0-.77.081-1.116.22-.259-.957-.974-1.718-1.902-2.041.004-.061.018-.118.018-.179 0-1.657-1.343-3-3-3-.537 0-1.034.153-1.47.4C2.998 16.561 2.067 16 1 16c-.355 0-.685.081-1 .195V32c0 2.209 1.791 4 4 4h28c2.209 0 4-1.791 4-4V14c-1.067 0-1.998.561-2.53 1.4z"/><path fill="#F7DECE" d="M26 22c0-2-1.531-3-3-3h-1.975v-2h-5.929v2H13c-1.469 0-3 1-3 3v12l.024-.004c-.005.041-.024.076-.024.118 0 .615.499 1.114 1.114 1.114.615 0 1.114-.499 1.114-1.114 0-.164-.04-.317-.103-.457h11.75c-.064.14-.103.293-.103.457 0 .615.499 1.114 1.114 1.114.615 0 1.114-.499 1.114-1.114 0-.042-.019-.077-.024-.118L26 34V22z"/><path fill="#EEC2AD" d="M12.5 32c-.275 0-.5-.225-.5-.5v-8c0-.275.225-.5.5-.5s.5.225.5.5v8c0 .275-.225.5-.5.5zm11 0c-.275 0-.5-.225-.5-.5v-8c0-.275.225-.5.5-.5s.5.225.5.5v8c0 .275-.225.5-.5.5z"/><path fill="#77B255" d="M12 29h12v7H12z"/><path fill="#5C913B" d="M18 29h-6v1h7.121c-.277-.402-.64-.76-1.121-1z"/><path fill="#A6D388" d="M23 36h-4v-3s0-3-2-4h6v7z"/><path fill="#5C913B" d="M24 36h-4v-3s0-3-2-4h6v7z"/><path fill="#77B255" d="M18.121 30h1c-.277-.402-.64-.76-1.121-1h-1c.481.24.844.598 1.121 1z"/><path fill="#3E721D" d="M18 29c.481.24.844.598 1.121 1H24v-1h-6z"/><path fill="#EEC2AD" d="M21.025 16.972L15.096 17v1.553s2.965 1.482 5.929 0v-1.581z"/><path fill="#F7DECE" d="M24.356 6h-12.59v6.147c0 3.478 2.818 6.295 6.295 6.295s6.295-2.817 6.295-6.295V6z"/><path fill="#C1694F" d="M20.579 15.923h-5.036s0 1.259 2.518 1.259 2.518-1.259 2.518-1.259z"/><circle fill="#662113" cx="14.913" cy="11.517" r=".629"/><circle fill="#662113" cx="21.208" cy="11.517" r=".629"/><path fill="#C1694F" d="M16.802 13.405h2.518s0 1.259-1.259 1.259-1.259-1.259-1.259-1.259z"/><path fill="#292F33" d="M18 2c4.328 0 7.033 3.221 7.033 5.905s-.541 3.758-1.082 2.684l-1.082-2.147s-3.246 0-4.328-1.074c0 0 1.623 3.221-1.623 0 0 0 .541 2.148-2.705-.536 0 0-1.623 1.074-2.164 3.757-.15.745-1.082 0-1.082-2.684S13.131 2 18 2"/><path d="M0 32c0 2.209 1.791 4 4 4h12.816c.112-.314.184-.647.184-1 0-1.657-1.343-3-3-3-.36 0-.7.074-1.019.19.004-.064.019-.125.019-.19 0-1.067-.561-1.998-1.4-2.53.247-.436.4-.933.4-1.47 0-1.657-1.343-3-3-3-.781 0-1.487.306-2.021.796C6.872 24.236 5.587 23 4 23c-1.385 0-2.539.944-2.884 2.22C.77 25.081.395 25 0 25v7zm34-7c-.87 0-1.646.376-2.194.967C31.384 24.821 30.292 24 29 24c-1.657 0-3 1.343-3 3-1.657 0-3 1.343-3 3 0 .537.153 1.034.4 1.47-.839.532-1.4 1.463-1.4 2.53-1.304 0-2.403.837-2.816 2H32c2.209 0 4-1.791 4-4v-6.221C35.468 25.3 34.772 25 34 25z" opacity=".85" fill="#F5F8FA"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><g fill="#E1E8ED"><circle cx="4.5" cy="25.5" r="4.5"/><circle cx="25.5" cy="20.5" r="5.5"/><circle cx="31" cy="26.5" r="5"/><circle cx="12" cy="24" r="5"/><path d="M33 30c-1.657 0-3 1.343-3 3H6c0-1.657-1.343-3-3-3s-3 1.343-3 3 1.343 3 3 3h29v-.184c.314.112.647.184 1 .184 1.657 0 3-1.343 3-3s-1.343-3-3-3z"/><path d="M0 25.5h9V33H0zM20 23h9v4h-9zm11 3.5h5V33h-5z"/></g><path d="M23.35 20c1.014.324 2.845 1.15 2.65 2.941 1.924.357 2.306 1.966 2.436 2.907.248 1.79-7.436-.198-7.436-.198l-1-3.482L23.35 20zm-10.38.5c-.769.185-2.749.5-3.64 2.793-1.99 0-2.33 2.02-2.33 3.538 0 2.253 7.336 1.955 8.495.678 1.158-1.277.784-5.36.784-5.36L12.97 20.5z" fill="#77B255"/><path fill="#F7DECE" d="M32 36v-4c0-3.314-2.685-6-6-6H10c-3.313 0-6 2.686-6 6v4h28z"/><path fill="#F7DECE" d="M13.667 27.122L18 31.001l4.316-2.627L22 22h-8z"/><path fill="#EEC2AD" d="M14 24c1.216 1.374 2.355 1.719 3.996 1.719 1.639 0 2.787-.346 4.004-1.719v-4h-8v4z"/><path fill="#F7DECE" d="M11.444 13.936c0 1.448-.734 2.622-1.639 2.622s-1.639-1.174-1.639-2.622.734-2.623 1.639-2.623c.905-.001 1.639 1.174 1.639 2.623m16.389 0c0 1.448-.733 2.622-1.639 2.622-.905 0-1.639-1.174-1.639-2.622s.733-2.623 1.639-2.623c.906-.001 1.639 1.174 1.639 2.623"/><path fill="#F7DECE" d="M9.477 14.96c0-5.589 3.816-10.121 8.523-10.121s8.522 4.532 8.522 10.121S22.707 25.081 18 25.081c-4.707-.001-8.523-4.532-8.523-10.121"/><path fill="#C1694F" d="M18 21.802c-2.754 0-3.6-.705-3.741-.848-.256-.256-.256-.671 0-.927.248-.248.646-.255.902-.023.052.037.721.487 2.839.487 2.2 0 2.836-.485 2.842-.49.256-.255.657-.243.913.015.256.256.242.683-.014.938-.141.143-.987.848-3.741.848"/><path fill="#292F33" d="M18 1.48c5.648 0 9.178 4.168 9.178 7.641s-.706 4.863-1.412 3.473l-1.412-2.778s-4.235 0-5.647-1.39c0 0 2.118 4.168-2.118 0 0 0 .706 2.779-3.53-.694 0 0-2.118 1.389-2.824 4.862-.196.964-1.412 0-1.412-3.473C8.822 5.648 11.646 1.48 18 1.48"/><path fill="#662113" d="M14 15c-.55 0-1-.45-1-1v-1c0-.55.45-1 1-1s1 .45 1 1v1c0 .55-.45 1-1 1m8 0c-.55 0-1-.45-1-1v-1c0-.55.45-1 1-1s1 .45 1 1v1c0 .55-.45 1-1 1"/><path fill="#C1694F" d="M18.75 17.75h-1.5c-.413 0-.75-.337-.75-.75s.337-.75.75-.75h1.5c.413 0 .75.337.75.75s-.337.75-.75.75"/><path fill="#77B255" d="M13.758 25.712c-.269 3.395.314 5.641.636 6.672.158.505-.201 1.016-.729 1.045-.714.039-1.591.08-2.116.08-1 0-3.477 2.243-3.942-.193C7.143 30.88 7 28.711 7 27.909s-.158-3.166 1.167-3.17c1.817-.005 2.155-.153 2.917-.705.857-.622 2.738.879 2.674 1.678zm8.426.007c.247 3.305-.257 5.437-.553 6.44-.145.492-.261.897.099 1.237.698.66 2.007-.07 2.49-.07.92 0 2.935 2.261 3.612-.991.633-3.039.604-5.475.604-6.255s-.468-1.038-1.077-1.363c-1.486-.792-1.982-.149-2.683-.687-.788-.605-2.55.911-2.492 1.689z"/><path fill="#A6D388" d="M8.002 25.236c.156-.67.885-1.175 1.063-.623.177.55.233 3.471.295 4.387s-.608-.184-.861-.898c-.254-.714-.644-2.234-.497-2.866zm19.115-.849c-.175-.579-.846-.279-1.003.176s.021 1.692-.01 2.465c-.031.773.325.014.551-.574.227-.588.627-1.521.462-2.067zm-16.802-.852c.024-.521.923-1.192 1.004-.656.081.536.571 6.09.845 7.289.274 1.199-.196.978-.522.124s-1.401-5.186-1.327-6.757zm14.802-.853c-.245-.141-.842.207-.89.639-.047.432-.005 4.021-.202 4.982-.196.961.115.81.383.133s1.831-5.106.709-5.754z"/><path d="M32 28c-2.975 0-5.438 2.168-5.911 5.009C26.058 33.008 26.03 33 26 33c-2.049 0-3.806 1.236-4.578 3H33c1.65 0 3-1.35 3-3v-3.463C34.938 28.584 33.539 28 32 28zm-18.422 8c-.772-1.764-2.529-3-4.578-3-.78 0-1.509.194-2.166.512.098-.322.166-.657.166-1.012C7 30.567 5.433 29 3.5 29 1.738 29 .295 30.306.05 32H0v1c0 1.65 1.35 3 3 3h10.578z" opacity=".7" fill="#FFF"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f9d6-1f3fb.svg b/public/emoji/1f9d6-1f3fb.svg
index fee0d3edadbb09ff8df14c1dc125da84540cf323..98c29804fe4500ea61d949c4a9b46400c6fc54ae 100644
--- a/public/emoji/1f9d6-1f3fb.svg
+++ b/public/emoji/1f9d6-1f3fb.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#C1694F" d="M36 32c0 2.209-1.791 4-4 4H4c-2.209 0-4-1.791-4-4V4c0-2.209 1.791-4 4-4h28c2.209 0 4 1.791 4 4v28z"/><path fill="#D99E82" d="M0 4h36v4H0zm0 8h36v4H0zm0 8h36v4H0zm0 8h36v4H0z"/><path opacity=".75" fill="#E1E8ED" d="M33.47 15.4c-.436-.247-.933-.4-1.47-.4-1.657 0-3 1.343-3 3 0 .061.014.118.018.178-.863.301-1.539.977-1.84 1.84-.06-.004-.117-.018-.178-.018-1.311 0-2.414.846-2.822 2.018C24.118 22.014 12.657 22 11 22c-.395 0-.77.081-1.116.22-.259-.957-.974-1.718-1.902-2.041.004-.061.018-.118.018-.179 0-1.657-1.343-3-3-3-.537 0-1.034.153-1.47.4C2.998 16.561 2.067 16 1 16c-.355 0-.685.081-1 .195V32c0 2.209 1.791 4 4 4h28c2.209 0 4-1.791 4-4V14c-1.067 0-1.998.561-2.53 1.4z"/><path fill="#292F33" d="M19.329 1c-1.681 0-3.238.523-4.524 1.41-.261-.039-.523-.08-.795-.08C11.072 2.33 9 5.062 9 8v8c0 5.142 3.858 8.939 9 8.939 5.142 0 8.914-4.312 8.998-8.87L27 9c-.083-4.991-3.263-8-7.671-8z"/><path fill="#F7DECE" d="M23 20h-3v-1h-4v1h-3c-1.469 0-3 1-3 3v12l.022-.004c.058.561.516 1.004 1.092 1.004.615 0 1.114-.499 1.114-1.114 0-.084-.03-.159-.048-.237h11.639c-.018.079-.048.153-.048.237 0 .615.499 1.114 1.114 1.114.576 0 1.034-.443 1.092-1.004L26 35V23c0-2-1.531-3-3-3z"/><path fill="#EEC2AD" d="M20 19h-4v1s2 1 4 0v-1z"/><path fill="#F7DECE" d="M15 6s-1 3-4 4v3c0 3.674 3.327 6.619 6.999 6.619C21.672 19.619 25 16.674 25 13v-3c-8 0-10-4-10-4z"/><path fill="#DF1F32" d="M21 16h-6s.613 1.552 3 1.552S21 16 21 16z"/><circle fill="#662113" cx="15.145" cy="12.726" r=".726"/><circle fill="#662113" cx="20.855" cy="12.726" r=".726"/><path fill="#C1694F" d="M17 14h2s0 1-1 1-1-1-1-1z"/><path fill="#9266CC" d="M12 23h12v13H12z"/><path fill="#CBB7EA" d="M23 36h-4v-9s0-3-2-4h6v13z"/><path fill="#744EAA" d="M24 36h-4v-9s0-3-2-4h6v13z"/><path fill="#744EAA" d="M18 23h-6v1h7.121c-.277-.402-.64-.76-1.121-1z"/><path fill="#9266CC" d="M18.121 24h1c-.277-.402-.64-.76-1.121-1h-1c.481.24.844.598 1.121 1z"/><path fill="#553788" d="M18 23c.481.24.844.598 1.121 1H24v-1h-6z"/><path d="M0 32c0 2.209 1.791 4 4 4h12.816c.112-.314.184-.647.184-1 0-1.657-1.343-3-3-3-.36 0-.7.074-1.019.19.004-.064.019-.125.019-.19 0-1.067-.561-1.998-1.4-2.53.247-.436.4-.933.4-1.47 0-1.657-1.343-3-3-3-.781 0-1.487.306-2.021.796C6.872 24.236 5.587 23 4 23c-1.385 0-2.539.944-2.884 2.22C.77 25.081.395 25 0 25v7zm34-7c-.87 0-1.646.376-2.194.967C31.384 24.821 30.292 24 29 24c-1.657 0-3 1.343-3 3-1.657 0-3 1.343-3 3 0 .537.153 1.034.4 1.47-.839.532-1.4 1.463-1.4 2.53-1.304 0-2.403.837-2.816 2H32c2.209 0 4-1.791 4-4v-6.221C35.468 25.3 34.772 25 34 25z" opacity=".85" fill="#F5F8FA"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><g fill="#E1E8ED"><circle cx="4.5" cy="25.5" r="4.5"/><circle cx="25.5" cy="20.5" r="5.5"/><circle cx="31" cy="26.5" r="5"/><circle cx="12" cy="24" r="5"/><path d="M33 30c-1.657 0-3 1.343-3 3H6c0-1.657-1.343-3-3-3s-3 1.343-3 3 1.343 3 3 3h29v-.184c.314.112.647.184 1 .184 1.657 0 3-1.343 3-3s-1.343-3-3-3z"/><path d="M0 25.5h9V33H0zM20 23h9v4h-9zm11 3.5h5V33h-5z"/></g><path fill="#F7DECE" d="M31 36v-4.5c0-3.314-3.56-5.5-6.875-5.5h-12C8.812 26 5 28.186 5 31.5V36h26z"/><path fill="#292F33" d="M17.945 3.978c4.105 0 10.947 2.053 10.947 10.947 0 8.896 0 10.948-2.053 10.948s-4.79-2.053-8.895-2.053c-4.105 0-6.785 2.053-8.895 2.053-2.287 0-2.053-8.211-2.053-10.948.001-8.894 6.844-10.947 10.949-10.947"/><path fill="#F7DECE" d="M14.5 26c1 1.982 2.792 4.5 3.5 4.5s2.512-2.549 3.5-4.5v-3.591h-7V26z"/><path fill="#EEC2AD" d="M14.322 24.088c1.022 1.155 2.29 1.468 3.668 1.468 1.379 0 2.647-.312 3.67-1.468v-2.937h-7.338v2.937z"/><path fill="#F7DECE" d="M9.734 14.627c0-5.834 3.676-10.563 8.211-10.563 4.533 0 8.209 4.73 8.209 10.563s-3.676 10.285-8.209 10.285c-4.535 0-8.211-4.452-8.211-10.285"/><path fill="#DF1F32" d="M17.945 22.452c-1.606 0-2.447-.794-2.537-.885-.268-.267-.268-.7 0-.967.266-.265.692-.267.961-.007.035.032.551.491 1.576.491 1.038 0 1.555-.473 1.576-.492.273-.256.703-.248.963.02.26.269.26.691-.004.955-.089.091-.929.885-2.535.885"/><path fill="#292F33" d="M7.735 17.909c-.021-1-.044-.224-.044-.465 0-3.422 2.053.494 2.053-1.943 0-2.439 1.368-2.683 2.736-4.051.684-.685 2.053-2.026 2.053-2.026s3.421 2.067 6.158 2.067c2.736 0 5.474 1.375 5.474 4.112 0 2.736 2.053-1.584 2.053 1.837 0 .244-.023-.531-.04.469h.719c.006-2 .006-1.924.006-3.202C28.902 5.812 22.06 2.5 17.954 2.5 13.85 2.5 7.007 5.757 7.007 14.652c0 .793-.02 1.257.008 3.257h.72z"/><path fill="#662113" d="M14.608 16.796c-.465 0-.846-.381-.846-.847v-.845c0-.465.381-.846.846-.846.466 0 .847.381.847.846v.845c0 .466-.381.847-.847.847m6.765 0c-.465 0-.846-.381-.846-.847v-.845c0-.465.381-.846.846-.846.465 0 .846.381.846.846v.845c0 .466-.381.847-.846.847"/><path fill="#C1694F" d="M18.836 19.409h-1.69c-.233 0-.423-.19-.423-.423v-.153c0-.233.189-.424.423-.424h1.69c.233 0 .424.19.424.424v.153c0 .234-.191.423-.424.423"/><path fill="#9266CC" d="M9.75 31.5V36h11.5v-.5h5v-4z"/><path fill="#A47DE2" d="M19.25 31.5c2 1 2 4 2 4v.5h1v-.5h3v-4h-6z"/><path fill="#744EAA" d="M20.25 31.5c2 1 2 4 2 4v.5h4v-4.5h-6z"/><path fill="#744EAA" d="M20.25 31.5H9.75v1h11.621c-.277-.402-.64-.76-1.121-1z"/><path fill="#9266CC" d="M20.371 32.5h1c-.277-.402-.64-.76-1.121-1h-1c.481.24.844.598 1.121 1z"/><path fill="#553788" d="M20.25 31.5c.481.24.844.598 1.121 1h4.879v-1h-6z"/><path d="M32 28c-2.975 0-5.438 2.168-5.911 5.009C26.058 33.008 26.03 33 26 33c-2.049 0-3.806 1.236-4.578 3H33c1.65 0 3-1.35 3-3v-3.463C34.938 28.584 33.539 28 32 28zm-18.422 8c-.772-1.764-2.529-3-4.578-3-.78 0-1.509.194-2.166.512.098-.322.166-.657.166-1.012C7 30.567 5.433 29 3.5 29 1.738 29 .295 30.306.05 32H0v1c0 1.65 1.35 3 3 3h10.578z" opacity=".7" fill="#FFF"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f9d6-1f3fc-200d-2640-fe0f.svg b/public/emoji/1f9d6-1f3fc-200d-2640-fe0f.svg
index 880e61dc375af50a61190f46b3684be63cc57ff6..976146defe4398317a5f7e313576848643e69682 100644
--- a/public/emoji/1f9d6-1f3fc-200d-2640-fe0f.svg
+++ b/public/emoji/1f9d6-1f3fc-200d-2640-fe0f.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#C1694F" d="M36 32c0 2.209-1.791 4-4 4H4c-2.209 0-4-1.791-4-4V4c0-2.209 1.791-4 4-4h28c2.209 0 4 1.791 4 4v28z"/><path fill="#D99E82" d="M0 4h36v4H0zm0 8h36v4H0zm0 8h36v4H0zm0 8h36v4H0z"/><path opacity=".75" fill="#E1E8ED" d="M33.47 15.4c-.436-.247-.933-.4-1.47-.4-1.657 0-3 1.343-3 3 0 .061.014.118.018.178-.863.301-1.539.977-1.84 1.84-.06-.004-.117-.018-.178-.018-1.311 0-2.414.846-2.822 2.018C24.118 22.014 12.657 22 11 22c-.395 0-.77.081-1.116.22-.259-.957-.974-1.718-1.902-2.041.004-.061.018-.118.018-.179 0-1.657-1.343-3-3-3-.537 0-1.034.153-1.47.4C2.998 16.561 2.067 16 1 16c-.355 0-.685.081-1 .195V32c0 2.209 1.791 4 4 4h28c2.209 0 4-1.791 4-4V14c-1.067 0-1.998.561-2.53 1.4z"/><path fill="#FFE51E" d="M19.329 1c-1.681 0-3.238.523-4.524 1.41-.261-.039-.523-.08-.795-.08C11.072 2.33 9 5.062 9 8v8c0 5.142 3.858 8.939 9 8.939 5.142 0 8.914-4.312 8.998-8.87L27 9c-.083-4.991-3.263-8-7.671-8z"/><path fill="#F3D2A2" d="M23 20h-3v-1h-4v1h-3c-1.469 0-3 1-3 3v12l.022-.004c.058.561.516 1.004 1.092 1.004.615 0 1.114-.499 1.114-1.114 0-.084-.03-.159-.048-.237h11.639c-.018.079-.048.153-.048.237 0 .615.499 1.114 1.114 1.114.576 0 1.034-.443 1.092-1.004L26 35V23c0-2-1.531-3-3-3z"/><path fill="#E2C196" d="M20 19h-4v1s2 1 4 0v-1z"/><path fill="#F3D2A2" d="M15 6s-1 3-4 4v3c0 3.674 3.327 6.619 6.999 6.619C21.672 19.619 25 16.674 25 13v-3c-8 0-10-4-10-4z"/><path fill="#DF1F32" d="M21 16h-6s.613 1.552 3 1.552S21 16 21 16z"/><circle fill="#662113" cx="15.145" cy="12.726" r=".726"/><circle fill="#662113" cx="20.855" cy="12.726" r=".726"/><path fill="#C1694F" d="M17 14h2s0 1-1 1-1-1-1-1z"/><path fill="#9266CC" d="M12 23h12v13H12z"/><path fill="#CBB7EA" d="M23 36h-4v-9s0-3-2-4h6v13z"/><path fill="#744EAA" d="M24 36h-4v-9s0-3-2-4h6v13z"/><path fill="#744EAA" d="M18 23h-6v1h7.121c-.277-.402-.64-.76-1.121-1z"/><path fill="#9266CC" d="M18.121 24h1c-.277-.402-.64-.76-1.121-1h-1c.481.24.844.598 1.121 1z"/><path fill="#553788" d="M18 23c.481.24.844.598 1.121 1H24v-1h-6z"/><path d="M0 32c0 2.209 1.791 4 4 4h12.816c.112-.314.184-.647.184-1 0-1.657-1.343-3-3-3-.36 0-.7.074-1.019.19.004-.064.019-.125.019-.19 0-1.067-.561-1.998-1.4-2.53.247-.436.4-.933.4-1.47 0-1.657-1.343-3-3-3-.781 0-1.487.306-2.021.796C6.872 24.236 5.587 23 4 23c-1.385 0-2.539.944-2.884 2.22C.77 25.081.395 25 0 25v7zm34-7c-.87 0-1.646.376-2.194.967C31.384 24.821 30.292 24 29 24c-1.657 0-3 1.343-3 3-1.657 0-3 1.343-3 3 0 .537.153 1.034.4 1.47-.839.532-1.4 1.463-1.4 2.53-1.304 0-2.403.837-2.816 2H32c2.209 0 4-1.791 4-4v-6.221C35.468 25.3 34.772 25 34 25z" opacity=".85" fill="#F5F8FA"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><g fill="#E1E8ED"><circle cx="4.5" cy="25.5" r="4.5"/><circle cx="25.5" cy="20.5" r="5.5"/><circle cx="31" cy="26.5" r="5"/><circle cx="12" cy="24" r="5"/><path d="M33 30c-1.657 0-3 1.343-3 3H6c0-1.657-1.343-3-3-3s-3 1.343-3 3 1.343 3 3 3h29v-.184c.314.112.647.184 1 .184 1.657 0 3-1.343 3-3s-1.343-3-3-3z"/><path d="M0 25.5h9V33H0zM20 23h9v4h-9zm11 3.5h5V33h-5z"/></g><path fill="#F3D2A2" d="M31 36v-4.5c0-3.314-3.56-5.5-6.875-5.5h-12C8.812 26 5 28.186 5 31.5V36h26z"/><path fill="#FFE51E" d="M17.945 3.978c4.105 0 10.947 2.053 10.947 10.947 0 8.896 0 10.948-2.053 10.948s-4.79-2.053-8.895-2.053c-4.105 0-6.785 2.053-8.895 2.053-2.287 0-2.053-8.211-2.053-10.948.001-8.894 6.844-10.947 10.949-10.947"/><path fill="#F3D2A2" d="M14.5 26c1 1.982 2.792 4.5 3.5 4.5s2.512-2.549 3.5-4.5v-3.591h-7V26z"/><path fill="#E2C196" d="M14.322 24.088c1.022 1.155 2.29 1.468 3.668 1.468 1.379 0 2.647-.312 3.67-1.468v-2.937h-7.338v2.937z"/><path fill="#F3D2A2" d="M9.734 14.627c0-5.834 3.676-10.563 8.211-10.563 4.533 0 8.209 4.73 8.209 10.563s-3.676 10.285-8.209 10.285c-4.535 0-8.211-4.452-8.211-10.285"/><path fill="#DF1F32" d="M17.945 22.452c-1.606 0-2.447-.794-2.537-.885-.268-.267-.268-.7 0-.967.266-.265.692-.267.961-.007.035.032.551.491 1.576.491 1.038 0 1.555-.473 1.576-.492.273-.256.703-.248.963.02.26.269.26.691-.004.955-.089.091-.929.885-2.535.885"/><path fill="#FFE51E" d="M7.735 17.909c-.021-1-.044-.224-.044-.465 0-3.422 2.053.494 2.053-1.943 0-2.439 1.368-2.683 2.736-4.051.684-.685 2.053-2.026 2.053-2.026s3.421 2.067 6.158 2.067c2.736 0 5.474 1.375 5.474 4.112 0 2.736 2.053-1.584 2.053 1.837 0 .244-.023-.531-.04.469h.719c.006-2 .006-1.924.006-3.202C28.902 5.812 22.06 2.5 17.954 2.5 13.85 2.5 7.007 5.757 7.007 14.652c0 .793-.02 1.257.008 3.257h.72z"/><path fill="#662113" d="M14.608 16.796c-.465 0-.846-.381-.846-.847v-.845c0-.465.381-.846.846-.846.466 0 .847.381.847.846v.845c0 .466-.381.847-.847.847m6.765 0c-.465 0-.846-.381-.846-.847v-.845c0-.465.381-.846.846-.846.465 0 .846.381.846.846v.845c0 .466-.381.847-.846.847"/><path fill="#C1694F" d="M18.836 19.409h-1.69c-.233 0-.423-.19-.423-.423v-.153c0-.233.189-.424.423-.424h1.69c.233 0 .424.19.424.424v.153c0 .234-.191.423-.424.423"/><path fill="#9266CC" d="M9.75 31.5V36h11.5v-.5h5v-4z"/><path fill="#A47DE2" d="M19.25 31.5c2 1 2 4 2 4v.5h1v-.5h3v-4h-6z"/><path fill="#744EAA" d="M20.25 31.5c2 1 2 4 2 4v.5h4v-4.5h-6z"/><path fill="#744EAA" d="M20.25 31.5H9.75v1h11.621c-.277-.402-.64-.76-1.121-1z"/><path fill="#9266CC" d="M20.371 32.5h1c-.277-.402-.64-.76-1.121-1h-1c.481.24.844.598 1.121 1z"/><path fill="#553788" d="M20.25 31.5c.481.24.844.598 1.121 1h4.879v-1h-6z"/><path d="M32 28c-2.975 0-5.438 2.168-5.911 5.009C26.058 33.008 26.03 33 26 33c-2.049 0-3.806 1.236-4.578 3H33c1.65 0 3-1.35 3-3v-3.463C34.938 28.584 33.539 28 32 28zm-18.422 8c-.772-1.764-2.529-3-4.578-3-.78 0-1.509.194-2.166.512.098-.322.166-.657.166-1.012C7 30.567 5.433 29 3.5 29 1.738 29 .295 30.306.05 32H0v1c0 1.65 1.35 3 3 3h10.578z" opacity=".7" fill="#FFF"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f9d6-1f3fc-200d-2642-fe0f.svg b/public/emoji/1f9d6-1f3fc-200d-2642-fe0f.svg
index d6452977532f880464eea38766183ac0bbd4fb78..35f7e555f683fd7380d435e0b73e6a610b578955 100644
--- a/public/emoji/1f9d6-1f3fc-200d-2642-fe0f.svg
+++ b/public/emoji/1f9d6-1f3fc-200d-2642-fe0f.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#C1694F" d="M36 32c0 2.209-1.791 4-4 4H4c-2.209 0-4-1.791-4-4V4c0-2.209 1.791-4 4-4h28c2.209 0 4 1.791 4 4v28z"/><path fill="#D99E82" d="M0 4h36v4H0zm0 8h36v4H0zm0 8h36v4H0zm0 8h36v4H0z"/><path opacity=".75" fill="#E1E8ED" d="M33.47 15.4c-.436-.247-.933-.4-1.47-.4-1.657 0-3 1.343-3 3 0 .061.014.118.018.178-.863.301-1.539.977-1.84 1.84-.06-.004-.117-.018-.178-.018-1.311 0-2.414.846-2.822 2.018C24.118 22.014 12.657 22 11 22c-.395 0-.77.081-1.116.22-.259-.957-.974-1.718-1.902-2.041.004-.061.018-.118.018-.179 0-1.657-1.343-3-3-3-.537 0-1.034.153-1.47.4C2.998 16.561 2.067 16 1 16c-.355 0-.685.081-1 .195V32c0 2.209 1.791 4 4 4h28c2.209 0 4-1.791 4-4V14c-1.067 0-1.998.561-2.53 1.4z"/><path fill="#F3D2A2" d="M26 22c0-2-1.531-3-3-3h-1.975v-2h-5.929v2H13c-1.469 0-3 1-3 3v12l.024-.004c-.005.041-.024.076-.024.118 0 .615.499 1.114 1.114 1.114.615 0 1.114-.499 1.114-1.114 0-.164-.04-.317-.103-.457h11.75c-.064.14-.103.293-.103.457 0 .615.499 1.114 1.114 1.114.615 0 1.114-.499 1.114-1.114 0-.042-.019-.077-.024-.118L26 34V22z"/><path fill="#E2C196" d="M12.5 32c-.275 0-.5-.225-.5-.5v-8c0-.275.225-.5.5-.5s.5.225.5.5v8c0 .275-.225.5-.5.5zm11 0c-.275 0-.5-.225-.5-.5v-8c0-.275.225-.5.5-.5s.5.225.5.5v8c0 .275-.225.5-.5.5z"/><path fill="#77B255" d="M12 29h12v7H12z"/><path fill="#5C913B" d="M18 29h-6v1h7.121c-.277-.402-.64-.76-1.121-1z"/><path fill="#A6D388" d="M23 36h-4v-3s0-3-2-4h6v7z"/><path fill="#5C913B" d="M24 36h-4v-3s0-3-2-4h6v7z"/><path fill="#77B255" d="M18.121 30h1c-.277-.402-.64-.76-1.121-1h-1c.481.24.844.598 1.121 1z"/><path fill="#3E721D" d="M18 29c.481.24.844.598 1.121 1H24v-1h-6z"/><path fill="#E2C196" d="M21.025 16.972L15.096 17v1.553s2.965 1.482 5.929 0v-1.581z"/><path fill="#F3D2A2" d="M24.356 6h-12.59v6.147c0 3.478 2.818 6.295 6.295 6.295s6.295-2.817 6.295-6.295V6z"/><path fill="#C1694F" d="M20.579 15.923h-5.036s0 1.259 2.518 1.259 2.518-1.259 2.518-1.259z"/><circle fill="#662113" cx="14.913" cy="11.517" r=".629"/><circle fill="#662113" cx="21.208" cy="11.517" r=".629"/><path fill="#C1694F" d="M16.802 13.405h2.518s0 1.259-1.259 1.259-1.259-1.259-1.259-1.259z"/><path fill="#FFE51E" d="M18 2c4.328 0 7.033 3.221 7.033 5.905s-.541 3.758-1.082 2.684l-1.082-2.147s-3.246 0-4.328-1.074c0 0 1.623 3.221-1.623 0 0 0 .541 2.148-2.705-.536 0 0-1.623 1.074-2.164 3.757-.15.745-1.082 0-1.082-2.684S13.131 2 18 2"/><path d="M0 32c0 2.209 1.791 4 4 4h12.816c.112-.314.184-.647.184-1 0-1.657-1.343-3-3-3-.36 0-.7.074-1.019.19.004-.064.019-.125.019-.19 0-1.067-.561-1.998-1.4-2.53.247-.436.4-.933.4-1.47 0-1.657-1.343-3-3-3-.781 0-1.487.306-2.021.796C6.872 24.236 5.587 23 4 23c-1.385 0-2.539.944-2.884 2.22C.77 25.081.395 25 0 25v7zm34-7c-.87 0-1.646.376-2.194.967C31.384 24.821 30.292 24 29 24c-1.657 0-3 1.343-3 3-1.657 0-3 1.343-3 3 0 .537.153 1.034.4 1.47-.839.532-1.4 1.463-1.4 2.53-1.304 0-2.403.837-2.816 2H32c2.209 0 4-1.791 4-4v-6.221C35.468 25.3 34.772 25 34 25z" opacity=".85" fill="#F5F8FA"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><g fill="#E1E8ED"><circle cx="4.5" cy="25.5" r="4.5"/><circle cx="25.5" cy="20.5" r="5.5"/><circle cx="31" cy="26.5" r="5"/><circle cx="12" cy="24" r="5"/><path d="M33 30c-1.657 0-3 1.343-3 3H6c0-1.657-1.343-3-3-3s-3 1.343-3 3 1.343 3 3 3h29v-.184c.314.112.647.184 1 .184 1.657 0 3-1.343 3-3s-1.343-3-3-3z"/><path d="M0 25.5h9V33H0zM20 23h9v4h-9zm11 3.5h5V33h-5z"/></g><path d="M23.35 20c1.014.324 2.845 1.15 2.65 2.941 1.924.357 2.306 1.966 2.436 2.907.248 1.79-7.436-.198-7.436-.198l-1-3.482L23.35 20zm-10.38.5c-.769.185-2.749.5-3.64 2.793-1.99 0-2.33 2.02-2.33 3.538 0 2.253 7.336 1.955 8.495.678 1.158-1.277.784-5.36.784-5.36L12.97 20.5z" fill="#77B255"/><path fill="#F3D2A2" d="M32 36v-4c0-3.314-2.685-6-6-6H10c-3.313 0-6 2.686-6 6v4h28z"/><path fill="#F3D2A2" d="M13.667 27.122L18 31.001l4.316-2.627L22 22h-8z"/><path fill="#E2C196" d="M14 24c1.216 1.374 2.355 1.719 3.996 1.719 1.639 0 2.787-.346 4.004-1.719v-4h-8v4z"/><path fill="#F3D2A2" d="M11.444 13.936c0 1.448-.734 2.622-1.639 2.622s-1.639-1.174-1.639-2.622.734-2.623 1.639-2.623c.905-.001 1.639 1.174 1.639 2.623m16.389 0c0 1.448-.733 2.622-1.639 2.622-.905 0-1.639-1.174-1.639-2.622s.733-2.623 1.639-2.623c.906-.001 1.639 1.174 1.639 2.623"/><path fill="#F3D2A2" d="M9.477 14.96c0-5.589 3.816-10.121 8.523-10.121s8.522 4.532 8.522 10.121S22.707 25.081 18 25.081c-4.707-.001-8.523-4.532-8.523-10.121"/><path fill="#C1694F" d="M18 21.802c-2.754 0-3.6-.705-3.741-.848-.256-.256-.256-.671 0-.927.248-.248.646-.255.902-.023.052.037.721.487 2.839.487 2.2 0 2.836-.485 2.842-.49.256-.255.657-.243.913.015.256.256.242.683-.014.938-.141.143-.987.848-3.741.848"/><path fill="#FFE51E" d="M18 1.48c5.648 0 9.178 4.168 9.178 7.641s-.706 4.863-1.412 3.473l-1.412-2.778s-4.235 0-5.647-1.39c0 0 2.118 4.168-2.118 0 0 0 .706 2.779-3.53-.694 0 0-2.118 1.389-2.824 4.862-.196.964-1.412 0-1.412-3.473C8.822 5.648 11.646 1.48 18 1.48"/><path fill="#662113" d="M14 15c-.55 0-1-.45-1-1v-1c0-.55.45-1 1-1s1 .45 1 1v1c0 .55-.45 1-1 1m8 0c-.55 0-1-.45-1-1v-1c0-.55.45-1 1-1s1 .45 1 1v1c0 .55-.45 1-1 1"/><path fill="#C1694F" d="M18.75 17.75h-1.5c-.413 0-.75-.337-.75-.75s.337-.75.75-.75h1.5c.413 0 .75.337.75.75s-.337.75-.75.75"/><path fill="#77B255" d="M13.758 25.712c-.269 3.395.314 5.641.636 6.672.158.505-.201 1.016-.729 1.045-.714.039-1.591.08-2.116.08-1 0-3.477 2.243-3.942-.193C7.143 30.88 7 28.711 7 27.909s-.158-3.166 1.167-3.17c1.817-.005 2.155-.153 2.917-.705.857-.622 2.738.879 2.674 1.678zm8.426.007c.247 3.305-.257 5.437-.553 6.44-.145.492-.261.897.099 1.237.698.66 2.007-.07 2.49-.07.92 0 2.935 2.261 3.612-.991.633-3.039.604-5.475.604-6.255s-.468-1.038-1.077-1.363c-1.486-.792-1.982-.149-2.683-.687-.788-.605-2.55.911-2.492 1.689z"/><path fill="#A6D388" d="M8.002 25.236c.156-.67.885-1.175 1.063-.623.177.55.233 3.471.295 4.387s-.608-.184-.861-.898c-.254-.714-.644-2.234-.497-2.866zm19.115-.849c-.175-.579-.846-.279-1.003.176s.021 1.692-.01 2.465c-.031.773.325.014.551-.574.227-.588.627-1.521.462-2.067zm-16.802-.852c.024-.521.923-1.192 1.004-.656.081.536.571 6.09.845 7.289.274 1.199-.196.978-.522.124s-1.401-5.186-1.327-6.757zm14.802-.853c-.245-.141-.842.207-.89.639-.047.432-.005 4.021-.202 4.982-.196.961.115.81.383.133s1.831-5.106.709-5.754z"/><path d="M32 28c-2.975 0-5.438 2.168-5.911 5.009C26.058 33.008 26.03 33 26 33c-2.049 0-3.806 1.236-4.578 3H33c1.65 0 3-1.35 3-3v-3.463C34.938 28.584 33.539 28 32 28zm-18.422 8c-.772-1.764-2.529-3-4.578-3-.78 0-1.509.194-2.166.512.098-.322.166-.657.166-1.012C7 30.567 5.433 29 3.5 29 1.738 29 .295 30.306.05 32H0v1c0 1.65 1.35 3 3 3h10.578z" opacity=".7" fill="#FFF"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f9d6-1f3fc.svg b/public/emoji/1f9d6-1f3fc.svg
index 880e61dc375af50a61190f46b3684be63cc57ff6..976146defe4398317a5f7e313576848643e69682 100644
--- a/public/emoji/1f9d6-1f3fc.svg
+++ b/public/emoji/1f9d6-1f3fc.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#C1694F" d="M36 32c0 2.209-1.791 4-4 4H4c-2.209 0-4-1.791-4-4V4c0-2.209 1.791-4 4-4h28c2.209 0 4 1.791 4 4v28z"/><path fill="#D99E82" d="M0 4h36v4H0zm0 8h36v4H0zm0 8h36v4H0zm0 8h36v4H0z"/><path opacity=".75" fill="#E1E8ED" d="M33.47 15.4c-.436-.247-.933-.4-1.47-.4-1.657 0-3 1.343-3 3 0 .061.014.118.018.178-.863.301-1.539.977-1.84 1.84-.06-.004-.117-.018-.178-.018-1.311 0-2.414.846-2.822 2.018C24.118 22.014 12.657 22 11 22c-.395 0-.77.081-1.116.22-.259-.957-.974-1.718-1.902-2.041.004-.061.018-.118.018-.179 0-1.657-1.343-3-3-3-.537 0-1.034.153-1.47.4C2.998 16.561 2.067 16 1 16c-.355 0-.685.081-1 .195V32c0 2.209 1.791 4 4 4h28c2.209 0 4-1.791 4-4V14c-1.067 0-1.998.561-2.53 1.4z"/><path fill="#FFE51E" d="M19.329 1c-1.681 0-3.238.523-4.524 1.41-.261-.039-.523-.08-.795-.08C11.072 2.33 9 5.062 9 8v8c0 5.142 3.858 8.939 9 8.939 5.142 0 8.914-4.312 8.998-8.87L27 9c-.083-4.991-3.263-8-7.671-8z"/><path fill="#F3D2A2" d="M23 20h-3v-1h-4v1h-3c-1.469 0-3 1-3 3v12l.022-.004c.058.561.516 1.004 1.092 1.004.615 0 1.114-.499 1.114-1.114 0-.084-.03-.159-.048-.237h11.639c-.018.079-.048.153-.048.237 0 .615.499 1.114 1.114 1.114.576 0 1.034-.443 1.092-1.004L26 35V23c0-2-1.531-3-3-3z"/><path fill="#E2C196" d="M20 19h-4v1s2 1 4 0v-1z"/><path fill="#F3D2A2" d="M15 6s-1 3-4 4v3c0 3.674 3.327 6.619 6.999 6.619C21.672 19.619 25 16.674 25 13v-3c-8 0-10-4-10-4z"/><path fill="#DF1F32" d="M21 16h-6s.613 1.552 3 1.552S21 16 21 16z"/><circle fill="#662113" cx="15.145" cy="12.726" r=".726"/><circle fill="#662113" cx="20.855" cy="12.726" r=".726"/><path fill="#C1694F" d="M17 14h2s0 1-1 1-1-1-1-1z"/><path fill="#9266CC" d="M12 23h12v13H12z"/><path fill="#CBB7EA" d="M23 36h-4v-9s0-3-2-4h6v13z"/><path fill="#744EAA" d="M24 36h-4v-9s0-3-2-4h6v13z"/><path fill="#744EAA" d="M18 23h-6v1h7.121c-.277-.402-.64-.76-1.121-1z"/><path fill="#9266CC" d="M18.121 24h1c-.277-.402-.64-.76-1.121-1h-1c.481.24.844.598 1.121 1z"/><path fill="#553788" d="M18 23c.481.24.844.598 1.121 1H24v-1h-6z"/><path d="M0 32c0 2.209 1.791 4 4 4h12.816c.112-.314.184-.647.184-1 0-1.657-1.343-3-3-3-.36 0-.7.074-1.019.19.004-.064.019-.125.019-.19 0-1.067-.561-1.998-1.4-2.53.247-.436.4-.933.4-1.47 0-1.657-1.343-3-3-3-.781 0-1.487.306-2.021.796C6.872 24.236 5.587 23 4 23c-1.385 0-2.539.944-2.884 2.22C.77 25.081.395 25 0 25v7zm34-7c-.87 0-1.646.376-2.194.967C31.384 24.821 30.292 24 29 24c-1.657 0-3 1.343-3 3-1.657 0-3 1.343-3 3 0 .537.153 1.034.4 1.47-.839.532-1.4 1.463-1.4 2.53-1.304 0-2.403.837-2.816 2H32c2.209 0 4-1.791 4-4v-6.221C35.468 25.3 34.772 25 34 25z" opacity=".85" fill="#F5F8FA"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><g fill="#E1E8ED"><circle cx="4.5" cy="25.5" r="4.5"/><circle cx="25.5" cy="20.5" r="5.5"/><circle cx="31" cy="26.5" r="5"/><circle cx="12" cy="24" r="5"/><path d="M33 30c-1.657 0-3 1.343-3 3H6c0-1.657-1.343-3-3-3s-3 1.343-3 3 1.343 3 3 3h29v-.184c.314.112.647.184 1 .184 1.657 0 3-1.343 3-3s-1.343-3-3-3z"/><path d="M0 25.5h9V33H0zM20 23h9v4h-9zm11 3.5h5V33h-5z"/></g><path fill="#F3D2A2" d="M31 36v-4.5c0-3.314-3.56-5.5-6.875-5.5h-12C8.812 26 5 28.186 5 31.5V36h26z"/><path fill="#FFE51E" d="M17.945 3.978c4.105 0 10.947 2.053 10.947 10.947 0 8.896 0 10.948-2.053 10.948s-4.79-2.053-8.895-2.053c-4.105 0-6.785 2.053-8.895 2.053-2.287 0-2.053-8.211-2.053-10.948.001-8.894 6.844-10.947 10.949-10.947"/><path fill="#F3D2A2" d="M14.5 26c1 1.982 2.792 4.5 3.5 4.5s2.512-2.549 3.5-4.5v-3.591h-7V26z"/><path fill="#E2C196" d="M14.322 24.088c1.022 1.155 2.29 1.468 3.668 1.468 1.379 0 2.647-.312 3.67-1.468v-2.937h-7.338v2.937z"/><path fill="#F3D2A2" d="M9.734 14.627c0-5.834 3.676-10.563 8.211-10.563 4.533 0 8.209 4.73 8.209 10.563s-3.676 10.285-8.209 10.285c-4.535 0-8.211-4.452-8.211-10.285"/><path fill="#DF1F32" d="M17.945 22.452c-1.606 0-2.447-.794-2.537-.885-.268-.267-.268-.7 0-.967.266-.265.692-.267.961-.007.035.032.551.491 1.576.491 1.038 0 1.555-.473 1.576-.492.273-.256.703-.248.963.02.26.269.26.691-.004.955-.089.091-.929.885-2.535.885"/><path fill="#FFE51E" d="M7.735 17.909c-.021-1-.044-.224-.044-.465 0-3.422 2.053.494 2.053-1.943 0-2.439 1.368-2.683 2.736-4.051.684-.685 2.053-2.026 2.053-2.026s3.421 2.067 6.158 2.067c2.736 0 5.474 1.375 5.474 4.112 0 2.736 2.053-1.584 2.053 1.837 0 .244-.023-.531-.04.469h.719c.006-2 .006-1.924.006-3.202C28.902 5.812 22.06 2.5 17.954 2.5 13.85 2.5 7.007 5.757 7.007 14.652c0 .793-.02 1.257.008 3.257h.72z"/><path fill="#662113" d="M14.608 16.796c-.465 0-.846-.381-.846-.847v-.845c0-.465.381-.846.846-.846.466 0 .847.381.847.846v.845c0 .466-.381.847-.847.847m6.765 0c-.465 0-.846-.381-.846-.847v-.845c0-.465.381-.846.846-.846.465 0 .846.381.846.846v.845c0 .466-.381.847-.846.847"/><path fill="#C1694F" d="M18.836 19.409h-1.69c-.233 0-.423-.19-.423-.423v-.153c0-.233.189-.424.423-.424h1.69c.233 0 .424.19.424.424v.153c0 .234-.191.423-.424.423"/><path fill="#9266CC" d="M9.75 31.5V36h11.5v-.5h5v-4z"/><path fill="#A47DE2" d="M19.25 31.5c2 1 2 4 2 4v.5h1v-.5h3v-4h-6z"/><path fill="#744EAA" d="M20.25 31.5c2 1 2 4 2 4v.5h4v-4.5h-6z"/><path fill="#744EAA" d="M20.25 31.5H9.75v1h11.621c-.277-.402-.64-.76-1.121-1z"/><path fill="#9266CC" d="M20.371 32.5h1c-.277-.402-.64-.76-1.121-1h-1c.481.24.844.598 1.121 1z"/><path fill="#553788" d="M20.25 31.5c.481.24.844.598 1.121 1h4.879v-1h-6z"/><path d="M32 28c-2.975 0-5.438 2.168-5.911 5.009C26.058 33.008 26.03 33 26 33c-2.049 0-3.806 1.236-4.578 3H33c1.65 0 3-1.35 3-3v-3.463C34.938 28.584 33.539 28 32 28zm-18.422 8c-.772-1.764-2.529-3-4.578-3-.78 0-1.509.194-2.166.512.098-.322.166-.657.166-1.012C7 30.567 5.433 29 3.5 29 1.738 29 .295 30.306.05 32H0v1c0 1.65 1.35 3 3 3h10.578z" opacity=".7" fill="#FFF"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f9d6-1f3fd-200d-2640-fe0f.svg b/public/emoji/1f9d6-1f3fd-200d-2640-fe0f.svg
index 25da28dbdba013a509195ed8ef3ca7fa69e3c68f..b29750071346197c75c28100ed0b3ea4b1ee524d 100644
--- a/public/emoji/1f9d6-1f3fd-200d-2640-fe0f.svg
+++ b/public/emoji/1f9d6-1f3fd-200d-2640-fe0f.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#C1694F" d="M36 32c0 2.209-1.791 4-4 4H4c-2.209 0-4-1.791-4-4V4c0-2.209 1.791-4 4-4h28c2.209 0 4 1.791 4 4v28z"/><path fill="#D99E82" d="M0 4h36v4H0zm0 8h36v4H0zm0 8h36v4H0zm0 8h36v4H0z"/><path opacity=".75" fill="#E1E8ED" d="M33.47 15.4c-.436-.247-.933-.4-1.47-.4-1.657 0-3 1.343-3 3 0 .061.014.118.018.178-.863.301-1.539.977-1.84 1.84-.06-.004-.117-.018-.178-.018-1.311 0-2.414.846-2.822 2.018C24.118 22.014 12.657 22 11 22c-.395 0-.77.081-1.116.22-.259-.957-.974-1.718-1.902-2.041.004-.061.018-.118.018-.179 0-1.657-1.343-3-3-3-.537 0-1.034.153-1.47.4C2.998 16.561 2.067 16 1 16c-.355 0-.685.081-1 .195V32c0 2.209 1.791 4 4 4h28c2.209 0 4-1.791 4-4V14c-1.067 0-1.998.561-2.53 1.4z"/><path fill="#963B22" d="M19.329 1c-1.681 0-3.238.523-4.524 1.41-.261-.039-.523-.08-.795-.08C11.072 2.33 9 5.062 9 8v8c0 5.142 3.858 8.939 9 8.939 5.142 0 8.914-4.312 8.998-8.87L27 9c-.083-4.991-3.263-8-7.671-8z"/><path fill="#D5AB88" d="M23 20h-3v-1h-4v1h-3c-1.469 0-3 1-3 3v12l.022-.004c.058.561.516 1.004 1.092 1.004.615 0 1.114-.499 1.114-1.114 0-.084-.03-.159-.048-.237h11.639c-.018.079-.048.153-.048.237 0 .615.499 1.114 1.114 1.114.576 0 1.034-.443 1.092-1.004L26 35V23c0-2-1.531-3-3-3z"/><path fill="#CC9B7A" d="M20 19h-4v1s2 1 4 0v-1z"/><path fill="#D5AB88" d="M15 6s-1 3-4 4v3c0 3.674 3.327 6.619 6.999 6.619C21.672 19.619 25 16.674 25 13v-3c-8 0-10-4-10-4z"/><path fill="#DF1F32" d="M21 16h-6s.613 1.552 3 1.552S21 16 21 16z"/><circle fill="#662113" cx="15.145" cy="12.726" r=".726"/><circle fill="#662113" cx="20.855" cy="12.726" r=".726"/><path fill="#C1694F" d="M17 14h2s0 1-1 1-1-1-1-1z"/><path fill="#9266CC" d="M12 23h12v13H12z"/><path fill="#CBB7EA" d="M23 36h-4v-9s0-3-2-4h6v13z"/><path fill="#744EAA" d="M24 36h-4v-9s0-3-2-4h6v13z"/><path fill="#744EAA" d="M18 23h-6v1h7.121c-.277-.402-.64-.76-1.121-1z"/><path fill="#9266CC" d="M18.121 24h1c-.277-.402-.64-.76-1.121-1h-1c.481.24.844.598 1.121 1z"/><path fill="#553788" d="M18 23c.481.24.844.598 1.121 1H24v-1h-6z"/><path d="M0 32c0 2.209 1.791 4 4 4h12.816c.112-.314.184-.647.184-1 0-1.657-1.343-3-3-3-.36 0-.7.074-1.019.19.004-.064.019-.125.019-.19 0-1.067-.561-1.998-1.4-2.53.247-.436.4-.933.4-1.47 0-1.657-1.343-3-3-3-.781 0-1.487.306-2.021.796C6.872 24.236 5.587 23 4 23c-1.385 0-2.539.944-2.884 2.22C.77 25.081.395 25 0 25v7zm34-7c-.87 0-1.646.376-2.194.967C31.384 24.821 30.292 24 29 24c-1.657 0-3 1.343-3 3-1.657 0-3 1.343-3 3 0 .537.153 1.034.4 1.47-.839.532-1.4 1.463-1.4 2.53-1.304 0-2.403.837-2.816 2H32c2.209 0 4-1.791 4-4v-6.221C35.468 25.3 34.772 25 34 25z" opacity=".85" fill="#F5F8FA"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><g fill="#E1E8ED"><circle cx="4.5" cy="25.5" r="4.5"/><circle cx="25.5" cy="20.5" r="5.5"/><circle cx="31" cy="26.5" r="5"/><circle cx="12" cy="24" r="5"/><path d="M33 30c-1.657 0-3 1.343-3 3H6c0-1.657-1.343-3-3-3s-3 1.343-3 3 1.343 3 3 3h29v-.184c.314.112.647.184 1 .184 1.657 0 3-1.343 3-3s-1.343-3-3-3z"/><path d="M0 25.5h9V33H0zM20 23h9v4h-9zm11 3.5h5V33h-5z"/></g><path fill="#D4AB88" d="M31 36v-4.5c0-3.314-3.56-5.5-6.875-5.5h-12C8.812 26 5 28.186 5 31.5V36h26z"/><path fill="#963B22" d="M17.945 3.978c4.105 0 10.947 2.053 10.947 10.947 0 8.896 0 10.948-2.053 10.948s-4.79-2.053-8.895-2.053c-4.105 0-6.785 2.053-8.895 2.053-2.287 0-2.053-8.211-2.053-10.948.001-8.894 6.844-10.947 10.949-10.947"/><path fill="#D4AB88" d="M14.5 26c1 1.982 2.792 4.5 3.5 4.5s2.512-2.549 3.5-4.5v-3.591h-7V26z"/><path fill="#CC9B7A" d="M14.322 24.088c1.022 1.155 2.29 1.468 3.668 1.468 1.379 0 2.647-.312 3.67-1.468v-2.937h-7.338v2.937z"/><path fill="#D4AB88" d="M9.734 14.627c0-5.834 3.676-10.563 8.211-10.563 4.533 0 8.209 4.73 8.209 10.563s-3.676 10.285-8.209 10.285c-4.535 0-8.211-4.452-8.211-10.285"/><path fill="#DF1F32" d="M17.945 22.452c-1.606 0-2.447-.794-2.537-.885-.268-.267-.268-.7 0-.967.266-.265.692-.267.961-.007.035.032.551.491 1.576.491 1.038 0 1.555-.473 1.576-.492.273-.256.703-.248.963.02.26.269.26.691-.004.955-.089.091-.929.885-2.535.885"/><path fill="#963B22" d="M7.735 17.909c-.021-1-.044-.224-.044-.465 0-3.422 2.053.494 2.053-1.943 0-2.439 1.368-2.683 2.736-4.051.684-.685 2.053-2.026 2.053-2.026s3.421 2.067 6.158 2.067c2.736 0 5.474 1.375 5.474 4.112 0 2.736 2.053-1.584 2.053 1.837 0 .244-.023-.531-.04.469h.719c.006-2 .006-1.924.006-3.202C28.902 5.812 22.06 2.5 17.954 2.5 13.85 2.5 7.007 5.757 7.007 14.652c0 .793-.02 1.257.008 3.257h.72z"/><path fill="#662113" d="M14.608 16.796c-.465 0-.846-.381-.846-.847v-.845c0-.465.381-.846.846-.846.466 0 .847.381.847.846v.845c0 .466-.381.847-.847.847m6.765 0c-.465 0-.846-.381-.846-.847v-.845c0-.465.381-.846.846-.846.465 0 .846.381.846.846v.845c0 .466-.381.847-.846.847"/><path fill="#C1694F" d="M18.836 19.409h-1.69c-.233 0-.423-.19-.423-.423v-.153c0-.233.189-.424.423-.424h1.69c.233 0 .424.19.424.424v.153c0 .234-.191.423-.424.423"/><path fill="#9266CC" d="M9.75 31.5V36h11.5v-.5h5v-4z"/><path fill="#A47DE2" d="M19.25 31.5c2 1 2 4 2 4v.5h1v-.5h3v-4h-6z"/><path fill="#744EAA" d="M20.25 31.5c2 1 2 4 2 4v.5h4v-4.5h-6z"/><path fill="#744EAA" d="M20.25 31.5H9.75v1h11.621c-.277-.402-.64-.76-1.121-1z"/><path fill="#9266CC" d="M20.371 32.5h1c-.277-.402-.64-.76-1.121-1h-1c.481.24.844.598 1.121 1z"/><path fill="#553788" d="M20.25 31.5c.481.24.844.598 1.121 1h4.879v-1h-6z"/><path d="M32 28c-2.975 0-5.438 2.168-5.911 5.009C26.058 33.008 26.03 33 26 33c-2.049 0-3.806 1.236-4.578 3H33c1.65 0 3-1.35 3-3v-3.463C34.938 28.584 33.539 28 32 28zm-18.422 8c-.772-1.764-2.529-3-4.578-3-.78 0-1.509.194-2.166.512.098-.322.166-.657.166-1.012C7 30.567 5.433 29 3.5 29 1.738 29 .295 30.306.05 32H0v1c0 1.65 1.35 3 3 3h10.578z" opacity=".7" fill="#FFF"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f9d6-1f3fd-200d-2642-fe0f.svg b/public/emoji/1f9d6-1f3fd-200d-2642-fe0f.svg
index 1825b641a6fe9e43e2fda825aa32b470a908b63a..42772b46e77140237970aa25752a2bf58fc12b02 100644
--- a/public/emoji/1f9d6-1f3fd-200d-2642-fe0f.svg
+++ b/public/emoji/1f9d6-1f3fd-200d-2642-fe0f.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#C1694F" d="M36 32c0 2.209-1.791 4-4 4H4c-2.209 0-4-1.791-4-4V4c0-2.209 1.791-4 4-4h28c2.209 0 4 1.791 4 4v28z"/><path fill="#D99E82" d="M0 4h36v4H0zm0 8h36v4H0zm0 8h36v4H0zm0 8h36v4H0z"/><path opacity=".75" fill="#E1E8ED" d="M33.47 15.4c-.436-.247-.933-.4-1.47-.4-1.657 0-3 1.343-3 3 0 .061.014.118.018.178-.863.301-1.539.977-1.84 1.84-.06-.004-.117-.018-.178-.018-1.311 0-2.414.846-2.822 2.018C24.118 22.014 12.657 22 11 22c-.395 0-.77.081-1.116.22-.259-.957-.974-1.718-1.902-2.041.004-.061.018-.118.018-.179 0-1.657-1.343-3-3-3-.537 0-1.034.153-1.47.4C2.998 16.561 2.067 16 1 16c-.355 0-.685.081-1 .195V32c0 2.209 1.791 4 4 4h28c2.209 0 4-1.791 4-4V14c-1.067 0-1.998.561-2.53 1.4z"/><path fill="#D5AB88" d="M26 22c0-2-1.531-3-3-3h-1.975v-2h-5.929v2H13c-1.469 0-3 1-3 3v12l.024-.004c-.005.041-.024.076-.024.118 0 .615.499 1.114 1.114 1.114.615 0 1.114-.499 1.114-1.114 0-.164-.04-.317-.103-.457h11.75c-.064.14-.103.293-.103.457 0 .615.499 1.114 1.114 1.114.615 0 1.114-.499 1.114-1.114 0-.042-.019-.077-.024-.118L26 34V22z"/><path fill="#CC9B7A" d="M12.5 32c-.275 0-.5-.225-.5-.5v-8c0-.275.225-.5.5-.5s.5.225.5.5v8c0 .275-.225.5-.5.5zm11 0c-.275 0-.5-.225-.5-.5v-8c0-.275.225-.5.5-.5s.5.225.5.5v8c0 .275-.225.5-.5.5z"/><path fill="#77B255" d="M12 29h12v7H12z"/><path fill="#5C913B" d="M18 29h-6v1h7.121c-.277-.402-.64-.76-1.121-1z"/><path fill="#A6D388" d="M23 36h-4v-3s0-3-2-4h6v7z"/><path fill="#5C913B" d="M24 36h-4v-3s0-3-2-4h6v7z"/><path fill="#77B255" d="M18.121 30h1c-.277-.402-.64-.76-1.121-1h-1c.481.24.844.598 1.121 1z"/><path fill="#3E721D" d="M18 29c.481.24.844.598 1.121 1H24v-1h-6z"/><path fill="#CC9B7A" d="M21.025 16.972L15.096 17v1.553s2.965 1.482 5.929 0v-1.581z"/><path fill="#D5AB88" d="M24.356 6h-12.59v6.147c0 3.478 2.818 6.295 6.295 6.295s6.295-2.817 6.295-6.295V6z"/><path fill="#C1694F" d="M20.579 15.923h-5.036s0 1.259 2.518 1.259 2.518-1.259 2.518-1.259z"/><circle fill="#662113" cx="14.913" cy="11.517" r=".629"/><circle fill="#662113" cx="21.208" cy="11.517" r=".629"/><path fill="#C1694F" d="M16.802 13.405h2.518s0 1.259-1.259 1.259-1.259-1.259-1.259-1.259z"/><path fill="#963B22" d="M18 2c4.328 0 7.033 3.221 7.033 5.905s-.541 3.758-1.082 2.684l-1.082-2.147s-3.246 0-4.328-1.074c0 0 1.623 3.221-1.623 0 0 0 .541 2.148-2.705-.536 0 0-1.623 1.074-2.164 3.757-.15.745-1.082 0-1.082-2.684S13.131 2 18 2"/><path d="M0 32c0 2.209 1.791 4 4 4h12.816c.112-.314.184-.647.184-1 0-1.657-1.343-3-3-3-.36 0-.7.074-1.019.19.004-.064.019-.125.019-.19 0-1.067-.561-1.998-1.4-2.53.247-.436.4-.933.4-1.47 0-1.657-1.343-3-3-3-.781 0-1.487.306-2.021.796C6.872 24.236 5.587 23 4 23c-1.385 0-2.539.944-2.884 2.22C.77 25.081.395 25 0 25v7zm34-7c-.87 0-1.646.376-2.194.967C31.384 24.821 30.292 24 29 24c-1.657 0-3 1.343-3 3-1.657 0-3 1.343-3 3 0 .537.153 1.034.4 1.47-.839.532-1.4 1.463-1.4 2.53-1.304 0-2.403.837-2.816 2H32c2.209 0 4-1.791 4-4v-6.221C35.468 25.3 34.772 25 34 25z" opacity=".85" fill="#F5F8FA"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><g fill="#E1E8ED"><circle cx="4.5" cy="25.5" r="4.5"/><circle cx="25.5" cy="20.5" r="5.5"/><circle cx="31" cy="26.5" r="5"/><circle cx="12" cy="24" r="5"/><path d="M33 30c-1.657 0-3 1.343-3 3H6c0-1.657-1.343-3-3-3s-3 1.343-3 3 1.343 3 3 3h29v-.184c.314.112.647.184 1 .184 1.657 0 3-1.343 3-3s-1.343-3-3-3z"/><path d="M0 25.5h9V33H0zM20 23h9v4h-9zm11 3.5h5V33h-5z"/></g><path d="M23.35 20c1.014.324 2.845 1.15 2.65 2.941 1.924.357 2.306 1.966 2.436 2.907.248 1.79-7.436-.198-7.436-.198l-1-3.482L23.35 20zm-10.38.5c-.769.185-2.749.5-3.64 2.793-1.99 0-2.33 2.02-2.33 3.538 0 2.253 7.336 1.955 8.495.678 1.158-1.277.784-5.36.784-5.36L12.97 20.5z" fill="#77B255"/><path fill="#D4AB88" d="M32 36v-4c0-3.314-2.685-6-6-6H10c-3.313 0-6 2.686-6 6v4h28z"/><path fill="#D4AB88" d="M13.667 27.122L18 31.001l4.316-2.627L22 22h-8z"/><path fill="#CC9B7A" d="M14 24c1.216 1.374 2.355 1.719 3.996 1.719 1.639 0 2.787-.346 4.004-1.719v-4h-8v4z"/><path fill="#D4AB88" d="M11.444 13.936c0 1.448-.734 2.622-1.639 2.622s-1.639-1.174-1.639-2.622.734-2.623 1.639-2.623c.905-.001 1.639 1.174 1.639 2.623m16.389 0c0 1.448-.733 2.622-1.639 2.622-.905 0-1.639-1.174-1.639-2.622s.733-2.623 1.639-2.623c.906-.001 1.639 1.174 1.639 2.623"/><path fill="#D4AB88" d="M9.477 14.96c0-5.589 3.816-10.121 8.523-10.121s8.522 4.532 8.522 10.121S22.707 25.081 18 25.081c-4.707-.001-8.523-4.532-8.523-10.121"/><path fill="#C1694F" d="M18 21.802c-2.754 0-3.6-.705-3.741-.848-.256-.256-.256-.671 0-.927.248-.248.646-.255.902-.023.052.037.721.487 2.839.487 2.2 0 2.836-.485 2.842-.49.256-.255.657-.243.913.015.256.256.242.683-.014.938-.141.143-.987.848-3.741.848"/><path fill="#963B22" d="M18 1.48c5.648 0 9.178 4.168 9.178 7.641s-.706 4.863-1.412 3.473l-1.412-2.778s-4.235 0-5.647-1.39c0 0 2.118 4.168-2.118 0 0 0 .706 2.779-3.53-.694 0 0-2.118 1.389-2.824 4.862-.196.964-1.412 0-1.412-3.473C8.822 5.648 11.646 1.48 18 1.48"/><path fill="#662113" d="M14 15c-.55 0-1-.45-1-1v-1c0-.55.45-1 1-1s1 .45 1 1v1c0 .55-.45 1-1 1m8 0c-.55 0-1-.45-1-1v-1c0-.55.45-1 1-1s1 .45 1 1v1c0 .55-.45 1-1 1"/><path fill="#C1694F" d="M18.75 17.75h-1.5c-.413 0-.75-.337-.75-.75s.337-.75.75-.75h1.5c.413 0 .75.337.75.75s-.337.75-.75.75"/><path fill="#77B255" d="M13.758 25.712c-.269 3.395.314 5.641.636 6.672.158.505-.201 1.016-.729 1.045-.714.039-1.591.08-2.116.08-1 0-3.477 2.243-3.942-.193C7.143 30.88 7 28.711 7 27.909s-.158-3.166 1.167-3.17c1.817-.005 2.155-.153 2.917-.705.857-.622 2.738.879 2.674 1.678zm8.426.007c.247 3.305-.257 5.437-.553 6.44-.145.492-.261.897.099 1.237.698.66 2.007-.07 2.49-.07.92 0 2.935 2.261 3.612-.991.633-3.039.604-5.475.604-6.255s-.468-1.038-1.077-1.363c-1.486-.792-1.982-.149-2.683-.687-.788-.605-2.55.911-2.492 1.689z"/><path fill="#A6D388" d="M8.002 25.236c.156-.67.885-1.175 1.063-.623.177.55.233 3.471.295 4.387s-.608-.184-.861-.898c-.254-.714-.644-2.234-.497-2.866zm19.115-.849c-.175-.579-.846-.279-1.003.176s.021 1.692-.01 2.465c-.031.773.325.014.551-.574.227-.588.627-1.521.462-2.067zm-16.802-.852c.024-.521.923-1.192 1.004-.656.081.536.571 6.09.845 7.289.274 1.199-.196.978-.522.124s-1.401-5.186-1.327-6.757zm14.802-.853c-.245-.141-.842.207-.89.639-.047.432-.005 4.021-.202 4.982-.196.961.115.81.383.133s1.831-5.106.709-5.754z"/><path d="M32 28c-2.975 0-5.438 2.168-5.911 5.009C26.058 33.008 26.03 33 26 33c-2.049 0-3.806 1.236-4.578 3H33c1.65 0 3-1.35 3-3v-3.463C34.938 28.584 33.539 28 32 28zm-18.422 8c-.772-1.764-2.529-3-4.578-3-.78 0-1.509.194-2.166.512.098-.322.166-.657.166-1.012C7 30.567 5.433 29 3.5 29 1.738 29 .295 30.306.05 32H0v1c0 1.65 1.35 3 3 3h10.578z" opacity=".7" fill="#FFF"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f9d6-1f3fd.svg b/public/emoji/1f9d6-1f3fd.svg
index 25da28dbdba013a509195ed8ef3ca7fa69e3c68f..b29750071346197c75c28100ed0b3ea4b1ee524d 100644
--- a/public/emoji/1f9d6-1f3fd.svg
+++ b/public/emoji/1f9d6-1f3fd.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#C1694F" d="M36 32c0 2.209-1.791 4-4 4H4c-2.209 0-4-1.791-4-4V4c0-2.209 1.791-4 4-4h28c2.209 0 4 1.791 4 4v28z"/><path fill="#D99E82" d="M0 4h36v4H0zm0 8h36v4H0zm0 8h36v4H0zm0 8h36v4H0z"/><path opacity=".75" fill="#E1E8ED" d="M33.47 15.4c-.436-.247-.933-.4-1.47-.4-1.657 0-3 1.343-3 3 0 .061.014.118.018.178-.863.301-1.539.977-1.84 1.84-.06-.004-.117-.018-.178-.018-1.311 0-2.414.846-2.822 2.018C24.118 22.014 12.657 22 11 22c-.395 0-.77.081-1.116.22-.259-.957-.974-1.718-1.902-2.041.004-.061.018-.118.018-.179 0-1.657-1.343-3-3-3-.537 0-1.034.153-1.47.4C2.998 16.561 2.067 16 1 16c-.355 0-.685.081-1 .195V32c0 2.209 1.791 4 4 4h28c2.209 0 4-1.791 4-4V14c-1.067 0-1.998.561-2.53 1.4z"/><path fill="#963B22" d="M19.329 1c-1.681 0-3.238.523-4.524 1.41-.261-.039-.523-.08-.795-.08C11.072 2.33 9 5.062 9 8v8c0 5.142 3.858 8.939 9 8.939 5.142 0 8.914-4.312 8.998-8.87L27 9c-.083-4.991-3.263-8-7.671-8z"/><path fill="#D5AB88" d="M23 20h-3v-1h-4v1h-3c-1.469 0-3 1-3 3v12l.022-.004c.058.561.516 1.004 1.092 1.004.615 0 1.114-.499 1.114-1.114 0-.084-.03-.159-.048-.237h11.639c-.018.079-.048.153-.048.237 0 .615.499 1.114 1.114 1.114.576 0 1.034-.443 1.092-1.004L26 35V23c0-2-1.531-3-3-3z"/><path fill="#CC9B7A" d="M20 19h-4v1s2 1 4 0v-1z"/><path fill="#D5AB88" d="M15 6s-1 3-4 4v3c0 3.674 3.327 6.619 6.999 6.619C21.672 19.619 25 16.674 25 13v-3c-8 0-10-4-10-4z"/><path fill="#DF1F32" d="M21 16h-6s.613 1.552 3 1.552S21 16 21 16z"/><circle fill="#662113" cx="15.145" cy="12.726" r=".726"/><circle fill="#662113" cx="20.855" cy="12.726" r=".726"/><path fill="#C1694F" d="M17 14h2s0 1-1 1-1-1-1-1z"/><path fill="#9266CC" d="M12 23h12v13H12z"/><path fill="#CBB7EA" d="M23 36h-4v-9s0-3-2-4h6v13z"/><path fill="#744EAA" d="M24 36h-4v-9s0-3-2-4h6v13z"/><path fill="#744EAA" d="M18 23h-6v1h7.121c-.277-.402-.64-.76-1.121-1z"/><path fill="#9266CC" d="M18.121 24h1c-.277-.402-.64-.76-1.121-1h-1c.481.24.844.598 1.121 1z"/><path fill="#553788" d="M18 23c.481.24.844.598 1.121 1H24v-1h-6z"/><path d="M0 32c0 2.209 1.791 4 4 4h12.816c.112-.314.184-.647.184-1 0-1.657-1.343-3-3-3-.36 0-.7.074-1.019.19.004-.064.019-.125.019-.19 0-1.067-.561-1.998-1.4-2.53.247-.436.4-.933.4-1.47 0-1.657-1.343-3-3-3-.781 0-1.487.306-2.021.796C6.872 24.236 5.587 23 4 23c-1.385 0-2.539.944-2.884 2.22C.77 25.081.395 25 0 25v7zm34-7c-.87 0-1.646.376-2.194.967C31.384 24.821 30.292 24 29 24c-1.657 0-3 1.343-3 3-1.657 0-3 1.343-3 3 0 .537.153 1.034.4 1.47-.839.532-1.4 1.463-1.4 2.53-1.304 0-2.403.837-2.816 2H32c2.209 0 4-1.791 4-4v-6.221C35.468 25.3 34.772 25 34 25z" opacity=".85" fill="#F5F8FA"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><g fill="#E1E8ED"><circle cx="4.5" cy="25.5" r="4.5"/><circle cx="25.5" cy="20.5" r="5.5"/><circle cx="31" cy="26.5" r="5"/><circle cx="12" cy="24" r="5"/><path d="M33 30c-1.657 0-3 1.343-3 3H6c0-1.657-1.343-3-3-3s-3 1.343-3 3 1.343 3 3 3h29v-.184c.314.112.647.184 1 .184 1.657 0 3-1.343 3-3s-1.343-3-3-3z"/><path d="M0 25.5h9V33H0zM20 23h9v4h-9zm11 3.5h5V33h-5z"/></g><path fill="#D4AB88" d="M31 36v-4.5c0-3.314-3.56-5.5-6.875-5.5h-12C8.812 26 5 28.186 5 31.5V36h26z"/><path fill="#963B22" d="M17.945 3.978c4.105 0 10.947 2.053 10.947 10.947 0 8.896 0 10.948-2.053 10.948s-4.79-2.053-8.895-2.053c-4.105 0-6.785 2.053-8.895 2.053-2.287 0-2.053-8.211-2.053-10.948.001-8.894 6.844-10.947 10.949-10.947"/><path fill="#D4AB88" d="M14.5 26c1 1.982 2.792 4.5 3.5 4.5s2.512-2.549 3.5-4.5v-3.591h-7V26z"/><path fill="#CC9B7A" d="M14.322 24.088c1.022 1.155 2.29 1.468 3.668 1.468 1.379 0 2.647-.312 3.67-1.468v-2.937h-7.338v2.937z"/><path fill="#D4AB88" d="M9.734 14.627c0-5.834 3.676-10.563 8.211-10.563 4.533 0 8.209 4.73 8.209 10.563s-3.676 10.285-8.209 10.285c-4.535 0-8.211-4.452-8.211-10.285"/><path fill="#DF1F32" d="M17.945 22.452c-1.606 0-2.447-.794-2.537-.885-.268-.267-.268-.7 0-.967.266-.265.692-.267.961-.007.035.032.551.491 1.576.491 1.038 0 1.555-.473 1.576-.492.273-.256.703-.248.963.02.26.269.26.691-.004.955-.089.091-.929.885-2.535.885"/><path fill="#963B22" d="M7.735 17.909c-.021-1-.044-.224-.044-.465 0-3.422 2.053.494 2.053-1.943 0-2.439 1.368-2.683 2.736-4.051.684-.685 2.053-2.026 2.053-2.026s3.421 2.067 6.158 2.067c2.736 0 5.474 1.375 5.474 4.112 0 2.736 2.053-1.584 2.053 1.837 0 .244-.023-.531-.04.469h.719c.006-2 .006-1.924.006-3.202C28.902 5.812 22.06 2.5 17.954 2.5 13.85 2.5 7.007 5.757 7.007 14.652c0 .793-.02 1.257.008 3.257h.72z"/><path fill="#662113" d="M14.608 16.796c-.465 0-.846-.381-.846-.847v-.845c0-.465.381-.846.846-.846.466 0 .847.381.847.846v.845c0 .466-.381.847-.847.847m6.765 0c-.465 0-.846-.381-.846-.847v-.845c0-.465.381-.846.846-.846.465 0 .846.381.846.846v.845c0 .466-.381.847-.846.847"/><path fill="#C1694F" d="M18.836 19.409h-1.69c-.233 0-.423-.19-.423-.423v-.153c0-.233.189-.424.423-.424h1.69c.233 0 .424.19.424.424v.153c0 .234-.191.423-.424.423"/><path fill="#9266CC" d="M9.75 31.5V36h11.5v-.5h5v-4z"/><path fill="#A47DE2" d="M19.25 31.5c2 1 2 4 2 4v.5h1v-.5h3v-4h-6z"/><path fill="#744EAA" d="M20.25 31.5c2 1 2 4 2 4v.5h4v-4.5h-6z"/><path fill="#744EAA" d="M20.25 31.5H9.75v1h11.621c-.277-.402-.64-.76-1.121-1z"/><path fill="#9266CC" d="M20.371 32.5h1c-.277-.402-.64-.76-1.121-1h-1c.481.24.844.598 1.121 1z"/><path fill="#553788" d="M20.25 31.5c.481.24.844.598 1.121 1h4.879v-1h-6z"/><path d="M32 28c-2.975 0-5.438 2.168-5.911 5.009C26.058 33.008 26.03 33 26 33c-2.049 0-3.806 1.236-4.578 3H33c1.65 0 3-1.35 3-3v-3.463C34.938 28.584 33.539 28 32 28zm-18.422 8c-.772-1.764-2.529-3-4.578-3-.78 0-1.509.194-2.166.512.098-.322.166-.657.166-1.012C7 30.567 5.433 29 3.5 29 1.738 29 .295 30.306.05 32H0v1c0 1.65 1.35 3 3 3h10.578z" opacity=".7" fill="#FFF"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f9d6-1f3fe-200d-2640-fe0f.svg b/public/emoji/1f9d6-1f3fe-200d-2640-fe0f.svg
index 6fb5efd1a974a9a636687f8516c9b032f6b3a8fe..935ff329073e83c415a4b53a32d22945b80dd13f 100644
--- a/public/emoji/1f9d6-1f3fe-200d-2640-fe0f.svg
+++ b/public/emoji/1f9d6-1f3fe-200d-2640-fe0f.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#C1694F" d="M36 32c0 2.209-1.791 4-4 4H4c-2.209 0-4-1.791-4-4V4c0-2.209 1.791-4 4-4h28c2.209 0 4 1.791 4 4v28z"/><path fill="#D99E82" d="M0 4h36v4H0zm0 8h36v4H0zm0 8h36v4H0zm0 8h36v4H0z"/><path opacity=".75" fill="#E1E8ED" d="M33.47 15.4c-.436-.247-.933-.4-1.47-.4-1.657 0-3 1.343-3 3 0 .061.014.118.018.178-.863.301-1.539.977-1.84 1.84-.06-.004-.117-.018-.178-.018-1.311 0-2.414.846-2.822 2.018C24.118 22.014 12.657 22 11 22c-.395 0-.77.081-1.116.22-.259-.957-.974-1.718-1.902-2.041.004-.061.018-.118.018-.179 0-1.657-1.343-3-3-3-.537 0-1.034.153-1.47.4C2.998 16.561 2.067 16 1 16c-.355 0-.685.081-1 .195V32c0 2.209 1.791 4 4 4h28c2.209 0 4-1.791 4-4V14c-1.067 0-1.998.561-2.53 1.4z"/><path fill="#60352A" d="M19.329 1c-1.681 0-3.238.523-4.524 1.41-.261-.039-.523-.08-.795-.08C11.072 2.33 9 5.062 9 8v8c0 5.142 3.858 8.939 9 8.939 5.142 0 8.914-4.312 8.998-8.87L27 9c-.083-4.991-3.263-8-7.671-8z"/><path fill="#AF7E57" d="M23 20h-3v-1h-4v1h-3c-1.469 0-3 1-3 3v12l.022-.004c.058.561.516 1.004 1.092 1.004.615 0 1.114-.499 1.114-1.114 0-.084-.03-.159-.048-.237h11.639c-.018.079-.048.153-.048.237 0 .615.499 1.114 1.114 1.114.576 0 1.034-.443 1.092-1.004L26 35V23c0-2-1.531-3-3-3z"/><path fill="#9B6A49" d="M20 19h-4v1s2 1 4 0v-1z"/><path fill="#AF7E57" d="M15 6s-1 3-4 4v3c0 3.674 3.327 6.619 6.999 6.619C21.672 19.619 25 16.674 25 13v-3c-8 0-10-4-10-4z"/><path fill="#DF1F32" d="M21 16h-6s.613 1.552 3 1.552S21 16 21 16z"/><circle fill="#662113" cx="15.145" cy="12.726" r=".726"/><circle fill="#662113" cx="20.855" cy="12.726" r=".726"/><path fill="#915A34" d="M17 14h2s0 1-1 1-1-1-1-1z"/><path fill="#9266CC" d="M12 23h12v13H12z"/><path fill="#CBB7EA" d="M23 36h-4v-9s0-3-2-4h6v13z"/><path fill="#744EAA" d="M24 36h-4v-9s0-3-2-4h6v13z"/><path fill="#744EAA" d="M18 23h-6v1h7.121c-.277-.402-.64-.76-1.121-1z"/><path fill="#9266CC" d="M18.121 24h1c-.277-.402-.64-.76-1.121-1h-1c.481.24.844.598 1.121 1z"/><path fill="#553788" d="M18 23c.481.24.844.598 1.121 1H24v-1h-6z"/><path d="M0 32c0 2.209 1.791 4 4 4h12.816c.112-.314.184-.647.184-1 0-1.657-1.343-3-3-3-.36 0-.7.074-1.019.19.004-.064.019-.125.019-.19 0-1.067-.561-1.998-1.4-2.53.247-.436.4-.933.4-1.47 0-1.657-1.343-3-3-3-.781 0-1.487.306-2.021.796C6.872 24.236 5.587 23 4 23c-1.385 0-2.539.944-2.884 2.22C.77 25.081.395 25 0 25v7zm34-7c-.87 0-1.646.376-2.194.967C31.384 24.821 30.292 24 29 24c-1.657 0-3 1.343-3 3-1.657 0-3 1.343-3 3 0 .537.153 1.034.4 1.47-.839.532-1.4 1.463-1.4 2.53-1.304 0-2.403.837-2.816 2H32c2.209 0 4-1.791 4-4v-6.221C35.468 25.3 34.772 25 34 25z" opacity=".85" fill="#F5F8FA"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><g fill="#E1E8ED"><circle cx="4.5" cy="25.5" r="4.5"/><circle cx="25.5" cy="20.5" r="5.5"/><circle cx="31" cy="26.5" r="5"/><circle cx="12" cy="24" r="5"/><path d="M33 30c-1.657 0-3 1.343-3 3H6c0-1.657-1.343-3-3-3s-3 1.343-3 3 1.343 3 3 3h29v-.184c.314.112.647.184 1 .184 1.657 0 3-1.343 3-3s-1.343-3-3-3z"/><path d="M0 25.5h9V33H0zM20 23h9v4h-9zm11 3.5h5V33h-5z"/></g><path fill="#AF7E57" d="M31 36v-4.5c0-3.314-3.56-5.5-6.875-5.5h-12C8.812 26 5 28.186 5 31.5V36h26z"/><path fill="#60352A" d="M17.945 3.978c4.105 0 10.947 2.053 10.947 10.947 0 8.896 0 10.948-2.053 10.948s-4.79-2.053-8.895-2.053c-4.105 0-6.785 2.053-8.895 2.053-2.287 0-2.053-8.211-2.053-10.948.001-8.894 6.844-10.947 10.949-10.947"/><path fill="#AF7E57" d="M14.5 26c1 1.982 2.792 4.5 3.5 4.5s2.512-2.549 3.5-4.5v-3.591h-7V26z"/><path fill="#9B6A49" d="M14.322 24.088c1.022 1.155 2.29 1.468 3.668 1.468 1.379 0 2.647-.312 3.67-1.468v-2.937h-7.338v2.937z"/><path fill="#AF7E57" d="M9.734 14.627c0-5.834 3.676-10.563 8.211-10.563 4.533 0 8.209 4.73 8.209 10.563s-3.676 10.285-8.209 10.285c-4.535 0-8.211-4.452-8.211-10.285"/><path fill="#DF1F32" d="M17.945 22.452c-1.606 0-2.447-.794-2.537-.885-.268-.267-.268-.7 0-.967.266-.265.692-.267.961-.007.035.032.551.491 1.576.491 1.038 0 1.555-.473 1.576-.492.273-.256.703-.248.963.02.26.269.26.691-.004.955-.089.091-.929.885-2.535.885"/><path fill="#60352A" d="M7.735 17.909c-.021-1-.044-.224-.044-.465 0-3.422 2.053.494 2.053-1.943 0-2.439 1.368-2.683 2.736-4.051.684-.685 2.053-2.026 2.053-2.026s3.421 2.067 6.158 2.067c2.736 0 5.474 1.375 5.474 4.112 0 2.736 2.053-1.584 2.053 1.837 0 .244-.023-.531-.04.469h.719c.006-2 .006-1.924.006-3.202C28.902 5.812 22.06 2.5 17.954 2.5 13.85 2.5 7.007 5.757 7.007 14.652c0 .793-.02 1.257.008 3.257h.72z"/><path fill="#662113" d="M14.608 16.796c-.465 0-.846-.381-.846-.847v-.845c0-.465.381-.846.846-.846.466 0 .847.381.847.846v.845c0 .466-.381.847-.847.847m6.765 0c-.465 0-.846-.381-.846-.847v-.845c0-.465.381-.846.846-.846.465 0 .846.381.846.846v.845c0 .466-.381.847-.846.847"/><path fill="#915A34" d="M18.836 19.409h-1.69c-.233 0-.423-.19-.423-.423v-.153c0-.233.189-.424.423-.424h1.69c.233 0 .424.19.424.424v.153c0 .234-.191.423-.424.423"/><path fill="#9266CC" d="M9.75 31.5V36h11.5v-.5h5v-4z"/><path fill="#A47DE2" d="M19.25 31.5c2 1 2 4 2 4v.5h1v-.5h3v-4h-6z"/><path fill="#744EAA" d="M20.25 31.5c2 1 2 4 2 4v.5h4v-4.5h-6z"/><path fill="#744EAA" d="M20.25 31.5H9.75v1h11.621c-.277-.402-.64-.76-1.121-1z"/><path fill="#9266CC" d="M20.371 32.5h1c-.277-.402-.64-.76-1.121-1h-1c.481.24.844.598 1.121 1z"/><path fill="#553788" d="M20.25 31.5c.481.24.844.598 1.121 1h4.879v-1h-6z"/><path d="M32 28c-2.975 0-5.438 2.168-5.911 5.009C26.058 33.008 26.03 33 26 33c-2.049 0-3.806 1.236-4.578 3H33c1.65 0 3-1.35 3-3v-3.463C34.938 28.584 33.539 28 32 28zm-18.422 8c-.772-1.764-2.529-3-4.578-3-.78 0-1.509.194-2.166.512.098-.322.166-.657.166-1.012C7 30.567 5.433 29 3.5 29 1.738 29 .295 30.306.05 32H0v1c0 1.65 1.35 3 3 3h10.578z" opacity=".7" fill="#FFF"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f9d6-1f3fe-200d-2642-fe0f.svg b/public/emoji/1f9d6-1f3fe-200d-2642-fe0f.svg
index 767cf703d33f8595d53b11309443e8366b57576b..4846f7336b372ee592713d0db562d88e2ba65ee7 100644
--- a/public/emoji/1f9d6-1f3fe-200d-2642-fe0f.svg
+++ b/public/emoji/1f9d6-1f3fe-200d-2642-fe0f.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#C1694F" d="M36 32c0 2.209-1.791 4-4 4H4c-2.209 0-4-1.791-4-4V4c0-2.209 1.791-4 4-4h28c2.209 0 4 1.791 4 4v28z"/><path fill="#D99E82" d="M0 4h36v4H0zm0 8h36v4H0zm0 8h36v4H0zm0 8h36v4H0z"/><path opacity=".75" fill="#E1E8ED" d="M33.47 15.4c-.436-.247-.933-.4-1.47-.4-1.657 0-3 1.343-3 3 0 .061.014.118.018.178-.863.301-1.539.977-1.84 1.84-.06-.004-.117-.018-.178-.018-1.311 0-2.414.846-2.822 2.018C24.118 22.014 12.657 22 11 22c-.395 0-.77.081-1.116.22-.259-.957-.974-1.718-1.902-2.041.004-.061.018-.118.018-.179 0-1.657-1.343-3-3-3-.537 0-1.034.153-1.47.4C2.998 16.561 2.067 16 1 16c-.355 0-.685.081-1 .195V32c0 2.209 1.791 4 4 4h28c2.209 0 4-1.791 4-4V14c-1.067 0-1.998.561-2.53 1.4z"/><path fill="#AF7E57" d="M26 22c0-2-1.531-3-3-3h-1.975v-2h-5.929v2H13c-1.469 0-3 1-3 3v12l.024-.004c-.005.041-.024.076-.024.118 0 .615.499 1.114 1.114 1.114.615 0 1.114-.499 1.114-1.114 0-.164-.04-.317-.103-.457h11.75c-.064.14-.103.293-.103.457 0 .615.499 1.114 1.114 1.114.615 0 1.114-.499 1.114-1.114 0-.042-.019-.077-.024-.118L26 34V22z"/><path fill="#9B6A49" d="M12.5 32c-.275 0-.5-.225-.5-.5v-8c0-.275.225-.5.5-.5s.5.225.5.5v8c0 .275-.225.5-.5.5zm11 0c-.275 0-.5-.225-.5-.5v-8c0-.275.225-.5.5-.5s.5.225.5.5v8c0 .275-.225.5-.5.5z"/><path fill="#77B255" d="M12 29h12v7H12z"/><path fill="#5C913B" d="M18 29h-6v1h7.121c-.277-.402-.64-.76-1.121-1z"/><path fill="#A6D388" d="M23 36h-4v-3s0-3-2-4h6v7z"/><path fill="#5C913B" d="M24 36h-4v-3s0-3-2-4h6v7z"/><path fill="#77B255" d="M18.121 30h1c-.277-.402-.64-.76-1.121-1h-1c.481.24.844.598 1.121 1z"/><path fill="#3E721D" d="M18 29c.481.24.844.598 1.121 1H24v-1h-6z"/><path fill="#9B6A49" d="M21.025 16.972L15.096 17v1.553s2.965 1.482 5.929 0v-1.581z"/><path fill="#AF7E57" d="M24.356 6h-12.59v6.147c0 3.478 2.818 6.295 6.295 6.295s6.295-2.817 6.295-6.295V6z"/><path fill="#915A34" d="M20.579 15.923h-5.036s0 1.259 2.518 1.259 2.518-1.259 2.518-1.259z"/><circle fill="#662113" cx="14.913" cy="11.517" r=".629"/><circle fill="#662113" cx="21.208" cy="11.517" r=".629"/><path fill="#915A34" d="M16.802 13.405h2.518s0 1.259-1.259 1.259-1.259-1.259-1.259-1.259z"/><path fill="#60352A" d="M18 2c4.328 0 7.033 3.221 7.033 5.905s-.541 3.758-1.082 2.684l-1.082-2.147s-3.246 0-4.328-1.074c0 0 1.623 3.221-1.623 0 0 0 .541 2.148-2.705-.536 0 0-1.623 1.074-2.164 3.757-.15.745-1.082 0-1.082-2.684S13.131 2 18 2"/><path d="M0 32c0 2.209 1.791 4 4 4h12.816c.112-.314.184-.647.184-1 0-1.657-1.343-3-3-3-.36 0-.7.074-1.019.19.004-.064.019-.125.019-.19 0-1.067-.561-1.998-1.4-2.53.247-.436.4-.933.4-1.47 0-1.657-1.343-3-3-3-.781 0-1.487.306-2.021.796C6.872 24.236 5.587 23 4 23c-1.385 0-2.539.944-2.884 2.22C.77 25.081.395 25 0 25v7zm34-7c-.87 0-1.646.376-2.194.967C31.384 24.821 30.292 24 29 24c-1.657 0-3 1.343-3 3-1.657 0-3 1.343-3 3 0 .537.153 1.034.4 1.47-.839.532-1.4 1.463-1.4 2.53-1.304 0-2.403.837-2.816 2H32c2.209 0 4-1.791 4-4v-6.221C35.468 25.3 34.772 25 34 25z" opacity=".85" fill="#F5F8FA"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><g fill="#E1E8ED"><circle cx="4.5" cy="25.5" r="4.5"/><circle cx="25.5" cy="20.5" r="5.5"/><circle cx="31" cy="26.5" r="5"/><circle cx="12" cy="24" r="5"/><path d="M33 30c-1.657 0-3 1.343-3 3H6c0-1.657-1.343-3-3-3s-3 1.343-3 3 1.343 3 3 3h29v-.184c.314.112.647.184 1 .184 1.657 0 3-1.343 3-3s-1.343-3-3-3z"/><path d="M0 25.5h9V33H0zM20 23h9v4h-9zm11 3.5h5V33h-5z"/></g><path d="M23.35 20c1.014.324 2.845 1.15 2.65 2.941 1.924.357 2.306 1.966 2.436 2.907.248 1.79-7.436-.198-7.436-.198l-1-3.482L23.35 20zm-10.38.5c-.769.185-2.749.5-3.64 2.793-1.99 0-2.33 2.02-2.33 3.538 0 2.253 7.336 1.955 8.495.678 1.158-1.277.784-5.36.784-5.36L12.97 20.5z" fill="#77B255"/><path fill="#AF7E57" d="M32 36v-4c0-3.314-2.685-6-6-6H10c-3.313 0-6 2.686-6 6v4h28z"/><path fill="#AF7E57" d="M13.667 27.122L18 31.001l4.316-2.627L22 22h-8z"/><path fill="#9B6A49" d="M14 24c1.216 1.374 2.355 1.719 3.996 1.719 1.639 0 2.787-.346 4.004-1.719v-4h-8v4z"/><path fill="#AF7E57" d="M11.444 13.936c0 1.448-.734 2.622-1.639 2.622s-1.639-1.174-1.639-2.622.734-2.623 1.639-2.623c.905-.001 1.639 1.174 1.639 2.623m16.389 0c0 1.448-.733 2.622-1.639 2.622-.905 0-1.639-1.174-1.639-2.622s.733-2.623 1.639-2.623c.906-.001 1.639 1.174 1.639 2.623"/><path fill="#AF7E57" d="M9.477 14.96c0-5.589 3.816-10.121 8.523-10.121s8.522 4.532 8.522 10.121S22.707 25.081 18 25.081c-4.707-.001-8.523-4.532-8.523-10.121"/><path fill="#915A34" d="M18 21.802c-2.754 0-3.6-.705-3.741-.848-.256-.256-.256-.671 0-.927.248-.248.646-.255.902-.023.052.037.721.487 2.839.487 2.2 0 2.836-.485 2.842-.49.256-.255.657-.243.913.015.256.256.242.683-.014.938-.141.143-.987.848-3.741.848"/><path fill="#60352A" d="M18 1.48c5.648 0 9.178 4.168 9.178 7.641s-.706 4.863-1.412 3.473l-1.412-2.778s-4.235 0-5.647-1.39c0 0 2.118 4.168-2.118 0 0 0 .706 2.779-3.53-.694 0 0-2.118 1.389-2.824 4.862-.196.964-1.412 0-1.412-3.473C8.822 5.648 11.646 1.48 18 1.48"/><path fill="#662113" d="M14 15c-.55 0-1-.45-1-1v-1c0-.55.45-1 1-1s1 .45 1 1v1c0 .55-.45 1-1 1m8 0c-.55 0-1-.45-1-1v-1c0-.55.45-1 1-1s1 .45 1 1v1c0 .55-.45 1-1 1"/><path fill="#915A34" d="M18.75 17.75h-1.5c-.413 0-.75-.337-.75-.75s.337-.75.75-.75h1.5c.413 0 .75.337.75.75s-.337.75-.75.75"/><path fill="#77B255" d="M13.758 25.712c-.269 3.395.314 5.641.636 6.672.158.505-.201 1.016-.729 1.045-.714.039-1.591.08-2.116.08-1 0-3.477 2.243-3.942-.193C7.143 30.88 7 28.711 7 27.909s-.158-3.166 1.167-3.17c1.817-.005 2.155-.153 2.917-.705.857-.622 2.738.879 2.674 1.678zm8.426.007c.247 3.305-.257 5.437-.553 6.44-.145.492-.261.897.099 1.237.698.66 2.007-.07 2.49-.07.92 0 2.935 2.261 3.612-.991.633-3.039.604-5.475.604-6.255s-.468-1.038-1.077-1.363c-1.486-.792-1.982-.149-2.683-.687-.788-.605-2.55.911-2.492 1.689z"/><path fill="#A6D388" d="M8.002 25.236c.156-.67.885-1.175 1.063-.623.177.55.233 3.471.295 4.387s-.608-.184-.861-.898c-.254-.714-.644-2.234-.497-2.866zm19.115-.849c-.175-.579-.846-.279-1.003.176s.021 1.692-.01 2.465c-.031.773.325.014.551-.574.227-.588.627-1.521.462-2.067zm-16.802-.852c.024-.521.923-1.192 1.004-.656.081.536.571 6.09.845 7.289.274 1.199-.196.978-.522.124s-1.401-5.186-1.327-6.757zm14.802-.853c-.245-.141-.842.207-.89.639-.047.432-.005 4.021-.202 4.982-.196.961.115.81.383.133s1.831-5.106.709-5.754z"/><path d="M32 28c-2.975 0-5.438 2.168-5.911 5.009C26.058 33.008 26.03 33 26 33c-2.049 0-3.806 1.236-4.578 3H33c1.65 0 3-1.35 3-3v-3.463C34.938 28.584 33.539 28 32 28zm-18.422 8c-.772-1.764-2.529-3-4.578-3-.78 0-1.509.194-2.166.512.098-.322.166-.657.166-1.012C7 30.567 5.433 29 3.5 29 1.738 29 .295 30.306.05 32H0v1c0 1.65 1.35 3 3 3h10.578z" opacity=".7" fill="#FFF"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f9d6-1f3fe.svg b/public/emoji/1f9d6-1f3fe.svg
index 6fb5efd1a974a9a636687f8516c9b032f6b3a8fe..935ff329073e83c415a4b53a32d22945b80dd13f 100644
--- a/public/emoji/1f9d6-1f3fe.svg
+++ b/public/emoji/1f9d6-1f3fe.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#C1694F" d="M36 32c0 2.209-1.791 4-4 4H4c-2.209 0-4-1.791-4-4V4c0-2.209 1.791-4 4-4h28c2.209 0 4 1.791 4 4v28z"/><path fill="#D99E82" d="M0 4h36v4H0zm0 8h36v4H0zm0 8h36v4H0zm0 8h36v4H0z"/><path opacity=".75" fill="#E1E8ED" d="M33.47 15.4c-.436-.247-.933-.4-1.47-.4-1.657 0-3 1.343-3 3 0 .061.014.118.018.178-.863.301-1.539.977-1.84 1.84-.06-.004-.117-.018-.178-.018-1.311 0-2.414.846-2.822 2.018C24.118 22.014 12.657 22 11 22c-.395 0-.77.081-1.116.22-.259-.957-.974-1.718-1.902-2.041.004-.061.018-.118.018-.179 0-1.657-1.343-3-3-3-.537 0-1.034.153-1.47.4C2.998 16.561 2.067 16 1 16c-.355 0-.685.081-1 .195V32c0 2.209 1.791 4 4 4h28c2.209 0 4-1.791 4-4V14c-1.067 0-1.998.561-2.53 1.4z"/><path fill="#60352A" d="M19.329 1c-1.681 0-3.238.523-4.524 1.41-.261-.039-.523-.08-.795-.08C11.072 2.33 9 5.062 9 8v8c0 5.142 3.858 8.939 9 8.939 5.142 0 8.914-4.312 8.998-8.87L27 9c-.083-4.991-3.263-8-7.671-8z"/><path fill="#AF7E57" d="M23 20h-3v-1h-4v1h-3c-1.469 0-3 1-3 3v12l.022-.004c.058.561.516 1.004 1.092 1.004.615 0 1.114-.499 1.114-1.114 0-.084-.03-.159-.048-.237h11.639c-.018.079-.048.153-.048.237 0 .615.499 1.114 1.114 1.114.576 0 1.034-.443 1.092-1.004L26 35V23c0-2-1.531-3-3-3z"/><path fill="#9B6A49" d="M20 19h-4v1s2 1 4 0v-1z"/><path fill="#AF7E57" d="M15 6s-1 3-4 4v3c0 3.674 3.327 6.619 6.999 6.619C21.672 19.619 25 16.674 25 13v-3c-8 0-10-4-10-4z"/><path fill="#DF1F32" d="M21 16h-6s.613 1.552 3 1.552S21 16 21 16z"/><circle fill="#662113" cx="15.145" cy="12.726" r=".726"/><circle fill="#662113" cx="20.855" cy="12.726" r=".726"/><path fill="#915A34" d="M17 14h2s0 1-1 1-1-1-1-1z"/><path fill="#9266CC" d="M12 23h12v13H12z"/><path fill="#CBB7EA" d="M23 36h-4v-9s0-3-2-4h6v13z"/><path fill="#744EAA" d="M24 36h-4v-9s0-3-2-4h6v13z"/><path fill="#744EAA" d="M18 23h-6v1h7.121c-.277-.402-.64-.76-1.121-1z"/><path fill="#9266CC" d="M18.121 24h1c-.277-.402-.64-.76-1.121-1h-1c.481.24.844.598 1.121 1z"/><path fill="#553788" d="M18 23c.481.24.844.598 1.121 1H24v-1h-6z"/><path d="M0 32c0 2.209 1.791 4 4 4h12.816c.112-.314.184-.647.184-1 0-1.657-1.343-3-3-3-.36 0-.7.074-1.019.19.004-.064.019-.125.019-.19 0-1.067-.561-1.998-1.4-2.53.247-.436.4-.933.4-1.47 0-1.657-1.343-3-3-3-.781 0-1.487.306-2.021.796C6.872 24.236 5.587 23 4 23c-1.385 0-2.539.944-2.884 2.22C.77 25.081.395 25 0 25v7zm34-7c-.87 0-1.646.376-2.194.967C31.384 24.821 30.292 24 29 24c-1.657 0-3 1.343-3 3-1.657 0-3 1.343-3 3 0 .537.153 1.034.4 1.47-.839.532-1.4 1.463-1.4 2.53-1.304 0-2.403.837-2.816 2H32c2.209 0 4-1.791 4-4v-6.221C35.468 25.3 34.772 25 34 25z" opacity=".85" fill="#F5F8FA"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><g fill="#E1E8ED"><circle cx="4.5" cy="25.5" r="4.5"/><circle cx="25.5" cy="20.5" r="5.5"/><circle cx="31" cy="26.5" r="5"/><circle cx="12" cy="24" r="5"/><path d="M33 30c-1.657 0-3 1.343-3 3H6c0-1.657-1.343-3-3-3s-3 1.343-3 3 1.343 3 3 3h29v-.184c.314.112.647.184 1 .184 1.657 0 3-1.343 3-3s-1.343-3-3-3z"/><path d="M0 25.5h9V33H0zM20 23h9v4h-9zm11 3.5h5V33h-5z"/></g><path fill="#AF7E57" d="M31 36v-4.5c0-3.314-3.56-5.5-6.875-5.5h-12C8.812 26 5 28.186 5 31.5V36h26z"/><path fill="#60352A" d="M17.945 3.978c4.105 0 10.947 2.053 10.947 10.947 0 8.896 0 10.948-2.053 10.948s-4.79-2.053-8.895-2.053c-4.105 0-6.785 2.053-8.895 2.053-2.287 0-2.053-8.211-2.053-10.948.001-8.894 6.844-10.947 10.949-10.947"/><path fill="#AF7E57" d="M14.5 26c1 1.982 2.792 4.5 3.5 4.5s2.512-2.549 3.5-4.5v-3.591h-7V26z"/><path fill="#9B6A49" d="M14.322 24.088c1.022 1.155 2.29 1.468 3.668 1.468 1.379 0 2.647-.312 3.67-1.468v-2.937h-7.338v2.937z"/><path fill="#AF7E57" d="M9.734 14.627c0-5.834 3.676-10.563 8.211-10.563 4.533 0 8.209 4.73 8.209 10.563s-3.676 10.285-8.209 10.285c-4.535 0-8.211-4.452-8.211-10.285"/><path fill="#DF1F32" d="M17.945 22.452c-1.606 0-2.447-.794-2.537-.885-.268-.267-.268-.7 0-.967.266-.265.692-.267.961-.007.035.032.551.491 1.576.491 1.038 0 1.555-.473 1.576-.492.273-.256.703-.248.963.02.26.269.26.691-.004.955-.089.091-.929.885-2.535.885"/><path fill="#60352A" d="M7.735 17.909c-.021-1-.044-.224-.044-.465 0-3.422 2.053.494 2.053-1.943 0-2.439 1.368-2.683 2.736-4.051.684-.685 2.053-2.026 2.053-2.026s3.421 2.067 6.158 2.067c2.736 0 5.474 1.375 5.474 4.112 0 2.736 2.053-1.584 2.053 1.837 0 .244-.023-.531-.04.469h.719c.006-2 .006-1.924.006-3.202C28.902 5.812 22.06 2.5 17.954 2.5 13.85 2.5 7.007 5.757 7.007 14.652c0 .793-.02 1.257.008 3.257h.72z"/><path fill="#662113" d="M14.608 16.796c-.465 0-.846-.381-.846-.847v-.845c0-.465.381-.846.846-.846.466 0 .847.381.847.846v.845c0 .466-.381.847-.847.847m6.765 0c-.465 0-.846-.381-.846-.847v-.845c0-.465.381-.846.846-.846.465 0 .846.381.846.846v.845c0 .466-.381.847-.846.847"/><path fill="#915A34" d="M18.836 19.409h-1.69c-.233 0-.423-.19-.423-.423v-.153c0-.233.189-.424.423-.424h1.69c.233 0 .424.19.424.424v.153c0 .234-.191.423-.424.423"/><path fill="#9266CC" d="M9.75 31.5V36h11.5v-.5h5v-4z"/><path fill="#A47DE2" d="M19.25 31.5c2 1 2 4 2 4v.5h1v-.5h3v-4h-6z"/><path fill="#744EAA" d="M20.25 31.5c2 1 2 4 2 4v.5h4v-4.5h-6z"/><path fill="#744EAA" d="M20.25 31.5H9.75v1h11.621c-.277-.402-.64-.76-1.121-1z"/><path fill="#9266CC" d="M20.371 32.5h1c-.277-.402-.64-.76-1.121-1h-1c.481.24.844.598 1.121 1z"/><path fill="#553788" d="M20.25 31.5c.481.24.844.598 1.121 1h4.879v-1h-6z"/><path d="M32 28c-2.975 0-5.438 2.168-5.911 5.009C26.058 33.008 26.03 33 26 33c-2.049 0-3.806 1.236-4.578 3H33c1.65 0 3-1.35 3-3v-3.463C34.938 28.584 33.539 28 32 28zm-18.422 8c-.772-1.764-2.529-3-4.578-3-.78 0-1.509.194-2.166.512.098-.322.166-.657.166-1.012C7 30.567 5.433 29 3.5 29 1.738 29 .295 30.306.05 32H0v1c0 1.65 1.35 3 3 3h10.578z" opacity=".7" fill="#FFF"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f9d6-1f3ff-200d-2640-fe0f.svg b/public/emoji/1f9d6-1f3ff-200d-2640-fe0f.svg
index 963f6cabd902da148370f4e0ff1003c39619a06e..1c0862f7a3118f2b0bf5ed930968409b8de17163 100644
--- a/public/emoji/1f9d6-1f3ff-200d-2640-fe0f.svg
+++ b/public/emoji/1f9d6-1f3ff-200d-2640-fe0f.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#C1694F" d="M36 32c0 2.209-1.791 4-4 4H4c-2.209 0-4-1.791-4-4V4c0-2.209 1.791-4 4-4h28c2.209 0 4 1.791 4 4v28z"/><path fill="#D99E82" d="M0 4h36v4H0zm0 8h36v4H0zm0 8h36v4H0zm0 8h36v4H0z"/><path opacity=".75" fill="#E1E8ED" d="M33.47 15.4c-.436-.247-.933-.4-1.47-.4-1.657 0-3 1.343-3 3 0 .061.014.118.018.178-.863.301-1.539.977-1.84 1.84-.06-.004-.117-.018-.178-.018-1.311 0-2.414.846-2.822 2.018C24.118 22.014 12.657 22 11 22c-.395 0-.77.081-1.116.22-.259-.957-.974-1.718-1.902-2.041.004-.061.018-.118.018-.179 0-1.657-1.343-3-3-3-.537 0-1.034.153-1.47.4C2.998 16.561 2.067 16 1 16c-.355 0-.685.081-1 .195V32c0 2.209 1.791 4 4 4h28c2.209 0 4-1.791 4-4V14c-1.067 0-1.998.561-2.53 1.4z"/><path fill="#0B0200" d="M19.329 1c-1.681 0-3.238.523-4.524 1.41-.261-.039-.523-.08-.795-.08C11.072 2.33 9 5.062 9 8v8c0 5.142 3.858 8.939 9 8.939 5.142 0 8.914-4.312 8.998-8.87L27 9c-.083-4.991-3.263-8-7.671-8z"/><path fill="#7C533E" d="M23 20h-3v-1h-4v1h-3c-1.469 0-3 1-3 3v12l.022-.004c.058.561.516 1.004 1.092 1.004.615 0 1.114-.499 1.114-1.114 0-.084-.03-.159-.048-.237h11.639c-.018.079-.048.153-.048.237 0 .615.499 1.114 1.114 1.114.576 0 1.034-.443 1.092-1.004L26 35V23c0-2-1.531-3-3-3z"/><path fill="#664131" d="M20 19h-4v1s2 1 4 0v-1z"/><path fill="#7C533E" d="M15 6s-1 3-4 4v3c0 3.674 3.327 6.619 6.999 6.619C21.672 19.619 25 16.674 25 13v-3c-8 0-10-4-10-4z"/><path fill="#DF1F32" d="M21 16h-6s.613 1.552 3 1.552S21 16 21 16z"/><circle cx="15.145" cy="12.726" r=".726"/><circle cx="20.855" cy="12.726" r=".726"/><path fill="#3D2E24" d="M17 14h2s0 1-1 1-1-1-1-1z"/><path fill="#9266CC" d="M12 23h12v13H12z"/><path fill="#CBB7EA" d="M23 36h-4v-9s0-3-2-4h6v13z"/><path fill="#744EAA" d="M24 36h-4v-9s0-3-2-4h6v13z"/><path fill="#744EAA" d="M18 23h-6v1h7.121c-.277-.402-.64-.76-1.121-1z"/><path fill="#9266CC" d="M18.121 24h1c-.277-.402-.64-.76-1.121-1h-1c.481.24.844.598 1.121 1z"/><path fill="#553788" d="M18 23c.481.24.844.598 1.121 1H24v-1h-6z"/><path d="M0 32c0 2.209 1.791 4 4 4h12.816c.112-.314.184-.647.184-1 0-1.657-1.343-3-3-3-.36 0-.7.074-1.019.19.004-.064.019-.125.019-.19 0-1.067-.561-1.998-1.4-2.53.247-.436.4-.933.4-1.47 0-1.657-1.343-3-3-3-.781 0-1.487.306-2.021.796C6.872 24.236 5.587 23 4 23c-1.385 0-2.539.944-2.884 2.22C.77 25.081.395 25 0 25v7zm34-7c-.87 0-1.646.376-2.194.967C31.384 24.821 30.292 24 29 24c-1.657 0-3 1.343-3 3-1.657 0-3 1.343-3 3 0 .537.153 1.034.4 1.47-.839.532-1.4 1.463-1.4 2.53-1.304 0-2.403.837-2.816 2H32c2.209 0 4-1.791 4-4v-6.221C35.468 25.3 34.772 25 34 25z" opacity=".85" fill="#F5F8FA"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><g fill="#E1E8ED"><circle cx="4.5" cy="25.5" r="4.5"/><circle cx="25.5" cy="20.5" r="5.5"/><circle cx="31" cy="26.5" r="5"/><circle cx="12" cy="24" r="5"/><path d="M33 30c-1.657 0-3 1.343-3 3H6c0-1.657-1.343-3-3-3s-3 1.343-3 3 1.343 3 3 3h29v-.184c.314.112.647.184 1 .184 1.657 0 3-1.343 3-3s-1.343-3-3-3z"/><path d="M0 25.5h9V33H0zM20 23h9v4h-9zm11 3.5h5V33h-5z"/></g><path fill="#7C533E" d="M31 36v-4.5c0-3.314-3.56-5.5-6.875-5.5h-12C8.812 26 5 28.186 5 31.5V36h26z"/><path fill="#0B0200" d="M17.945 3.978c4.105 0 10.947 2.053 10.947 10.947 0 8.896 0 10.948-2.053 10.948s-4.79-2.053-8.895-2.053c-4.105 0-6.785 2.053-8.895 2.053-2.287 0-2.053-8.211-2.053-10.948.001-8.894 6.844-10.947 10.949-10.947"/><path fill="#7C533E" d="M14.5 26c1 1.982 2.792 4.5 3.5 4.5s2.512-2.549 3.5-4.5v-3.591h-7V26z"/><path fill="#664131" d="M14.322 24.088c1.022 1.155 2.29 1.468 3.668 1.468 1.379 0 2.647-.312 3.67-1.468v-2.937h-7.338v2.937z"/><path fill="#7C533E" d="M9.734 14.627c0-5.834 3.676-10.563 8.211-10.563 4.533 0 8.209 4.73 8.209 10.563s-3.676 10.285-8.209 10.285c-4.535 0-8.211-4.452-8.211-10.285"/><path fill="#DF1F32" d="M17.945 22.452c-1.606 0-2.447-.794-2.537-.885-.268-.267-.268-.7 0-.967.266-.265.692-.267.961-.007.035.032.551.491 1.576.491 1.038 0 1.555-.473 1.576-.492.273-.256.703-.248.963.02.26.269.26.691-.004.955-.089.091-.929.885-2.535.885"/><path fill="#0B0200" d="M7.735 17.909c-.021-1-.044-.224-.044-.465 0-3.422 2.053.494 2.053-1.943 0-2.439 1.368-2.683 2.736-4.051.684-.685 2.053-2.026 2.053-2.026s3.421 2.067 6.158 2.067c2.736 0 5.474 1.375 5.474 4.112 0 2.736 2.053-1.584 2.053 1.837 0 .244-.023-.531-.04.469h.719c.006-2 .006-1.924.006-3.202C28.902 5.812 22.06 2.5 17.954 2.5 13.85 2.5 7.007 5.757 7.007 14.652c0 .793-.02 1.257.008 3.257h.72z"/><path d="M14.608 16.796c-.465 0-.846-.381-.846-.847v-.845c0-.465.381-.846.846-.846.466 0 .847.381.847.846v.845c0 .466-.381.847-.847.847m6.765 0c-.465 0-.846-.381-.846-.847v-.845c0-.465.381-.846.846-.846.465 0 .846.381.846.846v.845c0 .466-.381.847-.846.847"/><path fill="#3D2E24" d="M18.836 19.409h-1.69c-.233 0-.423-.19-.423-.423v-.153c0-.233.189-.424.423-.424h1.69c.233 0 .424.19.424.424v.153c0 .234-.191.423-.424.423"/><path fill="#9266CC" d="M9.75 31.5V36h11.5v-.5h5v-4z"/><path fill="#A47DE2" d="M19.25 31.5c2 1 2 4 2 4v.5h1v-.5h3v-4h-6z"/><path fill="#744EAA" d="M20.25 31.5c2 1 2 4 2 4v.5h4v-4.5h-6z"/><path fill="#744EAA" d="M20.25 31.5H9.75v1h11.621c-.277-.402-.64-.76-1.121-1z"/><path fill="#9266CC" d="M20.371 32.5h1c-.277-.402-.64-.76-1.121-1h-1c.481.24.844.598 1.121 1z"/><path fill="#553788" d="M20.25 31.5c.481.24.844.598 1.121 1h4.879v-1h-6z"/><path d="M32 28c-2.975 0-5.438 2.168-5.911 5.009C26.058 33.008 26.03 33 26 33c-2.049 0-3.806 1.236-4.578 3H33c1.65 0 3-1.35 3-3v-3.463C34.938 28.584 33.539 28 32 28zm-18.422 8c-.772-1.764-2.529-3-4.578-3-.78 0-1.509.194-2.166.512.098-.322.166-.657.166-1.012C7 30.567 5.433 29 3.5 29 1.738 29 .295 30.306.05 32H0v1c0 1.65 1.35 3 3 3h10.578z" opacity=".7" fill="#FFF"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f9d6-1f3ff-200d-2642-fe0f.svg b/public/emoji/1f9d6-1f3ff-200d-2642-fe0f.svg
index d0a9f4d717d4e56d4cdd902bf0476a53fe37d13f..7512a609d638f46fa02d1f190bc60caf74b20a94 100644
--- a/public/emoji/1f9d6-1f3ff-200d-2642-fe0f.svg
+++ b/public/emoji/1f9d6-1f3ff-200d-2642-fe0f.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#C1694F" d="M36 32c0 2.209-1.791 4-4 4H4c-2.209 0-4-1.791-4-4V4c0-2.209 1.791-4 4-4h28c2.209 0 4 1.791 4 4v28z"/><path fill="#D99E82" d="M0 4h36v4H0zm0 8h36v4H0zm0 8h36v4H0zm0 8h36v4H0z"/><path opacity=".75" fill="#E1E8ED" d="M33.47 15.4c-.436-.247-.933-.4-1.47-.4-1.657 0-3 1.343-3 3 0 .061.014.118.018.178-.863.301-1.539.977-1.84 1.84-.06-.004-.117-.018-.178-.018-1.311 0-2.414.846-2.822 2.018C24.118 22.014 12.657 22 11 22c-.395 0-.77.081-1.116.22-.259-.957-.974-1.718-1.902-2.041.004-.061.018-.118.018-.179 0-1.657-1.343-3-3-3-.537 0-1.034.153-1.47.4C2.998 16.561 2.067 16 1 16c-.355 0-.685.081-1 .195V32c0 2.209 1.791 4 4 4h28c2.209 0 4-1.791 4-4V14c-1.067 0-1.998.561-2.53 1.4z"/><path fill="#7C533E" d="M26 22c0-2-1.531-3-3-3h-1.975v-2h-5.929v2H13c-1.469 0-3 1-3 3v12l.024-.004c-.005.041-.024.076-.024.118 0 .615.499 1.114 1.114 1.114.615 0 1.114-.499 1.114-1.114 0-.164-.04-.317-.103-.457h11.75c-.064.14-.103.293-.103.457 0 .615.499 1.114 1.114 1.114.615 0 1.114-.499 1.114-1.114 0-.042-.019-.077-.024-.118L26 34V22z"/><path fill="#664131" d="M12.5 32c-.275 0-.5-.225-.5-.5v-8c0-.275.225-.5.5-.5s.5.225.5.5v8c0 .275-.225.5-.5.5zm11 0c-.275 0-.5-.225-.5-.5v-8c0-.275.225-.5.5-.5s.5.225.5.5v8c0 .275-.225.5-.5.5z"/><path fill="#77B255" d="M12 29h12v7H12z"/><path fill="#5C913B" d="M18 29h-6v1h7.121c-.277-.402-.64-.76-1.121-1z"/><path fill="#A6D388" d="M23 36h-4v-3s0-3-2-4h6v7z"/><path fill="#5C913B" d="M24 36h-4v-3s0-3-2-4h6v7z"/><path fill="#77B255" d="M18.121 30h1c-.277-.402-.64-.76-1.121-1h-1c.481.24.844.598 1.121 1z"/><path fill="#3E721D" d="M18 29c.481.24.844.598 1.121 1H24v-1h-6z"/><path fill="#664131" d="M21.025 16.972L15.096 17v1.553s2.965 1.482 5.929 0v-1.581z"/><path fill="#7C533E" d="M24.356 6h-12.59v6.147c0 3.478 2.818 6.295 6.295 6.295s6.295-2.817 6.295-6.295V6z"/><path fill="#3D2E24" d="M20.579 15.923h-5.036s0 1.259 2.518 1.259 2.518-1.259 2.518-1.259z"/><circle cx="14.913" cy="11.517" r=".629"/><circle cx="21.208" cy="11.517" r=".629"/><path fill="#3D2E24" d="M16.802 13.405h2.518s0 1.259-1.259 1.259-1.259-1.259-1.259-1.259z"/><path fill="#0B0200" d="M18 2c4.328 0 7.033 3.221 7.033 5.905s-.541 3.758-1.082 2.684l-1.082-2.147s-3.246 0-4.328-1.074c0 0 1.623 3.221-1.623 0 0 0 .541 2.148-2.705-.536 0 0-1.623 1.074-2.164 3.757-.15.745-1.082 0-1.082-2.684S13.131 2 18 2"/><path d="M0 32c0 2.209 1.791 4 4 4h12.816c.112-.314.184-.647.184-1 0-1.657-1.343-3-3-3-.36 0-.7.074-1.019.19.004-.064.019-.125.019-.19 0-1.067-.561-1.998-1.4-2.53.247-.436.4-.933.4-1.47 0-1.657-1.343-3-3-3-.781 0-1.487.306-2.021.796C6.872 24.236 5.587 23 4 23c-1.385 0-2.539.944-2.884 2.22C.77 25.081.395 25 0 25v7zm34-7c-.87 0-1.646.376-2.194.967C31.384 24.821 30.292 24 29 24c-1.657 0-3 1.343-3 3-1.657 0-3 1.343-3 3 0 .537.153 1.034.4 1.47-.839.532-1.4 1.463-1.4 2.53-1.304 0-2.403.837-2.816 2H32c2.209 0 4-1.791 4-4v-6.221C35.468 25.3 34.772 25 34 25z" opacity=".85" fill="#F5F8FA"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><g fill="#E1E8ED"><circle cx="4.5" cy="25.5" r="4.5"/><circle cx="25.5" cy="20.5" r="5.5"/><circle cx="31" cy="26.5" r="5"/><circle cx="12" cy="24" r="5"/><path d="M33 30c-1.657 0-3 1.343-3 3H6c0-1.657-1.343-3-3-3s-3 1.343-3 3 1.343 3 3 3h29v-.184c.314.112.647.184 1 .184 1.657 0 3-1.343 3-3s-1.343-3-3-3z"/><path d="M0 25.5h9V33H0zM20 23h9v4h-9zm11 3.5h5V33h-5z"/></g><path d="M23.35 20c1.014.324 2.845 1.15 2.65 2.941 1.924.357 2.306 1.966 2.436 2.907.248 1.79-7.436-.198-7.436-.198l-1-3.482L23.35 20zm-10.38.5c-.769.185-2.749.5-3.64 2.793-1.99 0-2.33 2.02-2.33 3.538 0 2.253 7.336 1.955 8.495.678 1.158-1.277.784-5.36.784-5.36L12.97 20.5z" fill="#77B255"/><path fill="#7C533E" d="M32 36v-4c0-3.314-2.685-6-6-6H10c-3.313 0-6 2.686-6 6v4h28z"/><path fill="#7C533E" d="M13.667 27.122L18 31.001l4.316-2.627L22 22h-8z"/><path fill="#664131" d="M14 24c1.216 1.374 2.355 1.719 3.996 1.719 1.639 0 2.787-.346 4.004-1.719v-4h-8v4z"/><path fill="#7C533E" d="M11.444 13.936c0 1.448-.734 2.622-1.639 2.622s-1.639-1.174-1.639-2.622.734-2.623 1.639-2.623c.905-.001 1.639 1.174 1.639 2.623m16.389 0c0 1.448-.733 2.622-1.639 2.622-.905 0-1.639-1.174-1.639-2.622s.733-2.623 1.639-2.623c.906-.001 1.639 1.174 1.639 2.623"/><path fill="#7C533E" d="M9.477 14.96c0-5.589 3.816-10.121 8.523-10.121s8.522 4.532 8.522 10.121S22.707 25.081 18 25.081c-4.707-.001-8.523-4.532-8.523-10.121"/><path fill="#3D2E24" d="M18 21.802c-2.754 0-3.6-.705-3.741-.848-.256-.256-.256-.671 0-.927.248-.248.646-.255.902-.023.052.037.721.487 2.839.487 2.2 0 2.836-.485 2.842-.49.256-.255.657-.243.913.015.256.256.242.683-.014.938-.141.143-.987.848-3.741.848"/><path fill="#0B0200" d="M18 1.48c5.648 0 9.178 4.168 9.178 7.641s-.706 4.863-1.412 3.473l-1.412-2.778s-4.235 0-5.647-1.39c0 0 2.118 4.168-2.118 0 0 0 .706 2.779-3.53-.694 0 0-2.118 1.389-2.824 4.862-.196.964-1.412 0-1.412-3.473C8.822 5.648 11.646 1.48 18 1.48"/><path d="M14 15c-.55 0-1-.45-1-1v-1c0-.55.45-1 1-1s1 .45 1 1v1c0 .55-.45 1-1 1m8 0c-.55 0-1-.45-1-1v-1c0-.55.45-1 1-1s1 .45 1 1v1c0 .55-.45 1-1 1"/><path fill="#3D2E24" d="M18.75 17.75h-1.5c-.413 0-.75-.337-.75-.75s.337-.75.75-.75h1.5c.413 0 .75.337.75.75s-.337.75-.75.75"/><path fill="#77B255" d="M13.758 25.712c-.269 3.395.314 5.641.636 6.672.158.505-.201 1.016-.729 1.045-.714.039-1.591.08-2.116.08-1 0-3.477 2.243-3.942-.193C7.143 30.88 7 28.711 7 27.909s-.158-3.166 1.167-3.17c1.817-.005 2.155-.153 2.917-.705.857-.622 2.738.879 2.674 1.678zm8.426.007c.247 3.305-.257 5.437-.553 6.44-.145.492-.261.897.099 1.237.698.66 2.007-.07 2.49-.07.92 0 2.935 2.261 3.612-.991.633-3.039.604-5.475.604-6.255s-.468-1.038-1.077-1.363c-1.486-.792-1.982-.149-2.683-.687-.788-.605-2.55.911-2.492 1.689z"/><path fill="#A6D388" d="M8.002 25.236c.156-.67.885-1.175 1.063-.623.177.55.233 3.471.295 4.387s-.608-.184-.861-.898c-.254-.714-.644-2.234-.497-2.866zm19.115-.849c-.175-.579-.846-.279-1.003.176s.021 1.692-.01 2.465c-.031.773.325.014.551-.574.227-.588.627-1.521.462-2.067zm-16.802-.852c.024-.521.923-1.192 1.004-.656.081.536.571 6.09.845 7.289.274 1.199-.196.978-.522.124s-1.401-5.186-1.327-6.757zm14.802-.853c-.245-.141-.842.207-.89.639-.047.432-.005 4.021-.202 4.982-.196.961.115.81.383.133s1.831-5.106.709-5.754z"/><path d="M32 28c-2.975 0-5.438 2.168-5.911 5.009C26.058 33.008 26.03 33 26 33c-2.049 0-3.806 1.236-4.578 3H33c1.65 0 3-1.35 3-3v-3.463C34.938 28.584 33.539 28 32 28zm-18.422 8c-.772-1.764-2.529-3-4.578-3-.78 0-1.509.194-2.166.512.098-.322.166-.657.166-1.012C7 30.567 5.433 29 3.5 29 1.738 29 .295 30.306.05 32H0v1c0 1.65 1.35 3 3 3h10.578z" opacity=".7" fill="#FFF"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f9d6-1f3ff.svg b/public/emoji/1f9d6-1f3ff.svg
index 963f6cabd902da148370f4e0ff1003c39619a06e..1c0862f7a3118f2b0bf5ed930968409b8de17163 100644
--- a/public/emoji/1f9d6-1f3ff.svg
+++ b/public/emoji/1f9d6-1f3ff.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#C1694F" d="M36 32c0 2.209-1.791 4-4 4H4c-2.209 0-4-1.791-4-4V4c0-2.209 1.791-4 4-4h28c2.209 0 4 1.791 4 4v28z"/><path fill="#D99E82" d="M0 4h36v4H0zm0 8h36v4H0zm0 8h36v4H0zm0 8h36v4H0z"/><path opacity=".75" fill="#E1E8ED" d="M33.47 15.4c-.436-.247-.933-.4-1.47-.4-1.657 0-3 1.343-3 3 0 .061.014.118.018.178-.863.301-1.539.977-1.84 1.84-.06-.004-.117-.018-.178-.018-1.311 0-2.414.846-2.822 2.018C24.118 22.014 12.657 22 11 22c-.395 0-.77.081-1.116.22-.259-.957-.974-1.718-1.902-2.041.004-.061.018-.118.018-.179 0-1.657-1.343-3-3-3-.537 0-1.034.153-1.47.4C2.998 16.561 2.067 16 1 16c-.355 0-.685.081-1 .195V32c0 2.209 1.791 4 4 4h28c2.209 0 4-1.791 4-4V14c-1.067 0-1.998.561-2.53 1.4z"/><path fill="#0B0200" d="M19.329 1c-1.681 0-3.238.523-4.524 1.41-.261-.039-.523-.08-.795-.08C11.072 2.33 9 5.062 9 8v8c0 5.142 3.858 8.939 9 8.939 5.142 0 8.914-4.312 8.998-8.87L27 9c-.083-4.991-3.263-8-7.671-8z"/><path fill="#7C533E" d="M23 20h-3v-1h-4v1h-3c-1.469 0-3 1-3 3v12l.022-.004c.058.561.516 1.004 1.092 1.004.615 0 1.114-.499 1.114-1.114 0-.084-.03-.159-.048-.237h11.639c-.018.079-.048.153-.048.237 0 .615.499 1.114 1.114 1.114.576 0 1.034-.443 1.092-1.004L26 35V23c0-2-1.531-3-3-3z"/><path fill="#664131" d="M20 19h-4v1s2 1 4 0v-1z"/><path fill="#7C533E" d="M15 6s-1 3-4 4v3c0 3.674 3.327 6.619 6.999 6.619C21.672 19.619 25 16.674 25 13v-3c-8 0-10-4-10-4z"/><path fill="#DF1F32" d="M21 16h-6s.613 1.552 3 1.552S21 16 21 16z"/><circle cx="15.145" cy="12.726" r=".726"/><circle cx="20.855" cy="12.726" r=".726"/><path fill="#3D2E24" d="M17 14h2s0 1-1 1-1-1-1-1z"/><path fill="#9266CC" d="M12 23h12v13H12z"/><path fill="#CBB7EA" d="M23 36h-4v-9s0-3-2-4h6v13z"/><path fill="#744EAA" d="M24 36h-4v-9s0-3-2-4h6v13z"/><path fill="#744EAA" d="M18 23h-6v1h7.121c-.277-.402-.64-.76-1.121-1z"/><path fill="#9266CC" d="M18.121 24h1c-.277-.402-.64-.76-1.121-1h-1c.481.24.844.598 1.121 1z"/><path fill="#553788" d="M18 23c.481.24.844.598 1.121 1H24v-1h-6z"/><path d="M0 32c0 2.209 1.791 4 4 4h12.816c.112-.314.184-.647.184-1 0-1.657-1.343-3-3-3-.36 0-.7.074-1.019.19.004-.064.019-.125.019-.19 0-1.067-.561-1.998-1.4-2.53.247-.436.4-.933.4-1.47 0-1.657-1.343-3-3-3-.781 0-1.487.306-2.021.796C6.872 24.236 5.587 23 4 23c-1.385 0-2.539.944-2.884 2.22C.77 25.081.395 25 0 25v7zm34-7c-.87 0-1.646.376-2.194.967C31.384 24.821 30.292 24 29 24c-1.657 0-3 1.343-3 3-1.657 0-3 1.343-3 3 0 .537.153 1.034.4 1.47-.839.532-1.4 1.463-1.4 2.53-1.304 0-2.403.837-2.816 2H32c2.209 0 4-1.791 4-4v-6.221C35.468 25.3 34.772 25 34 25z" opacity=".85" fill="#F5F8FA"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><g fill="#E1E8ED"><circle cx="4.5" cy="25.5" r="4.5"/><circle cx="25.5" cy="20.5" r="5.5"/><circle cx="31" cy="26.5" r="5"/><circle cx="12" cy="24" r="5"/><path d="M33 30c-1.657 0-3 1.343-3 3H6c0-1.657-1.343-3-3-3s-3 1.343-3 3 1.343 3 3 3h29v-.184c.314.112.647.184 1 .184 1.657 0 3-1.343 3-3s-1.343-3-3-3z"/><path d="M0 25.5h9V33H0zM20 23h9v4h-9zm11 3.5h5V33h-5z"/></g><path fill="#7C533E" d="M31 36v-4.5c0-3.314-3.56-5.5-6.875-5.5h-12C8.812 26 5 28.186 5 31.5V36h26z"/><path fill="#0B0200" d="M17.945 3.978c4.105 0 10.947 2.053 10.947 10.947 0 8.896 0 10.948-2.053 10.948s-4.79-2.053-8.895-2.053c-4.105 0-6.785 2.053-8.895 2.053-2.287 0-2.053-8.211-2.053-10.948.001-8.894 6.844-10.947 10.949-10.947"/><path fill="#7C533E" d="M14.5 26c1 1.982 2.792 4.5 3.5 4.5s2.512-2.549 3.5-4.5v-3.591h-7V26z"/><path fill="#664131" d="M14.322 24.088c1.022 1.155 2.29 1.468 3.668 1.468 1.379 0 2.647-.312 3.67-1.468v-2.937h-7.338v2.937z"/><path fill="#7C533E" d="M9.734 14.627c0-5.834 3.676-10.563 8.211-10.563 4.533 0 8.209 4.73 8.209 10.563s-3.676 10.285-8.209 10.285c-4.535 0-8.211-4.452-8.211-10.285"/><path fill="#DF1F32" d="M17.945 22.452c-1.606 0-2.447-.794-2.537-.885-.268-.267-.268-.7 0-.967.266-.265.692-.267.961-.007.035.032.551.491 1.576.491 1.038 0 1.555-.473 1.576-.492.273-.256.703-.248.963.02.26.269.26.691-.004.955-.089.091-.929.885-2.535.885"/><path fill="#0B0200" d="M7.735 17.909c-.021-1-.044-.224-.044-.465 0-3.422 2.053.494 2.053-1.943 0-2.439 1.368-2.683 2.736-4.051.684-.685 2.053-2.026 2.053-2.026s3.421 2.067 6.158 2.067c2.736 0 5.474 1.375 5.474 4.112 0 2.736 2.053-1.584 2.053 1.837 0 .244-.023-.531-.04.469h.719c.006-2 .006-1.924.006-3.202C28.902 5.812 22.06 2.5 17.954 2.5 13.85 2.5 7.007 5.757 7.007 14.652c0 .793-.02 1.257.008 3.257h.72z"/><path d="M14.608 16.796c-.465 0-.846-.381-.846-.847v-.845c0-.465.381-.846.846-.846.466 0 .847.381.847.846v.845c0 .466-.381.847-.847.847m6.765 0c-.465 0-.846-.381-.846-.847v-.845c0-.465.381-.846.846-.846.465 0 .846.381.846.846v.845c0 .466-.381.847-.846.847"/><path fill="#3D2E24" d="M18.836 19.409h-1.69c-.233 0-.423-.19-.423-.423v-.153c0-.233.189-.424.423-.424h1.69c.233 0 .424.19.424.424v.153c0 .234-.191.423-.424.423"/><path fill="#9266CC" d="M9.75 31.5V36h11.5v-.5h5v-4z"/><path fill="#A47DE2" d="M19.25 31.5c2 1 2 4 2 4v.5h1v-.5h3v-4h-6z"/><path fill="#744EAA" d="M20.25 31.5c2 1 2 4 2 4v.5h4v-4.5h-6z"/><path fill="#744EAA" d="M20.25 31.5H9.75v1h11.621c-.277-.402-.64-.76-1.121-1z"/><path fill="#9266CC" d="M20.371 32.5h1c-.277-.402-.64-.76-1.121-1h-1c.481.24.844.598 1.121 1z"/><path fill="#553788" d="M20.25 31.5c.481.24.844.598 1.121 1h4.879v-1h-6z"/><path d="M32 28c-2.975 0-5.438 2.168-5.911 5.009C26.058 33.008 26.03 33 26 33c-2.049 0-3.806 1.236-4.578 3H33c1.65 0 3-1.35 3-3v-3.463C34.938 28.584 33.539 28 32 28zm-18.422 8c-.772-1.764-2.529-3-4.578-3-.78 0-1.509.194-2.166.512.098-.322.166-.657.166-1.012C7 30.567 5.433 29 3.5 29 1.738 29 .295 30.306.05 32H0v1c0 1.65 1.35 3 3 3h10.578z" opacity=".7" fill="#FFF"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f9d6-200d-2640-fe0f.svg b/public/emoji/1f9d6-200d-2640-fe0f.svg
index c587685a6266d1508aa50bb7f613b9f5d1ecc101..f1d0343e324144afe0558774408e9535c0111696 100644
--- a/public/emoji/1f9d6-200d-2640-fe0f.svg
+++ b/public/emoji/1f9d6-200d-2640-fe0f.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#C1694F" d="M36 32c0 2.209-1.791 4-4 4H4c-2.209 0-4-1.791-4-4V4c0-2.209 1.791-4 4-4h28c2.209 0 4 1.791 4 4v28z"/><path fill="#D99E82" d="M0 4h36v4H0zm0 8h36v4H0zm0 8h36v4H0zm0 8h36v4H0z"/><path opacity=".75" fill="#E1E8ED" d="M33.47 15.4c-.436-.247-.933-.4-1.47-.4-1.657 0-3 1.343-3 3 0 .061.014.118.018.178-.863.301-1.539.977-1.84 1.84-.06-.004-.117-.018-.178-.018-1.311 0-2.414.846-2.822 2.018C24.118 22.014 12.657 22 11 22c-.395 0-.77.081-1.116.22-.259-.957-.974-1.718-1.902-2.041.004-.061.018-.118.018-.179 0-1.657-1.343-3-3-3-.537 0-1.034.153-1.47.4C2.998 16.561 2.067 16 1 16c-.355 0-.685.081-1 .195V32c0 2.209 1.791 4 4 4h28c2.209 0 4-1.791 4-4V14c-1.067 0-1.998.561-2.53 1.4z"/><path fill="#FFAC33" d="M19.329 1c-1.681 0-3.238.523-4.524 1.41-.261-.039-.523-.08-.795-.08C11.072 2.33 9 5.062 9 8v8c0 5.142 3.858 8.939 9 8.939 5.142 0 8.914-4.312 8.998-8.87L27 9c-.083-4.991-3.263-8-7.671-8z"/><path fill="#FFDC5D" d="M23 20h-3v-1h-4v1h-3c-1.469 0-3 1-3 3v12l.022-.004c.058.561.516 1.004 1.092 1.004.615 0 1.114-.499 1.114-1.114 0-.084-.03-.159-.048-.237h11.639c-.018.079-.048.153-.048.237 0 .615.499 1.114 1.114 1.114.576 0 1.034-.443 1.092-1.004L26 35V23c0-2-1.531-3-3-3z"/><path fill="#F9CA55" d="M20 19h-4v1s2 1 4 0v-1z"/><path fill="#FFDC5D" d="M15 6s-1 3-4 4v3c0 3.674 3.327 6.619 6.999 6.619C21.672 19.619 25 16.674 25 13v-3c-8 0-10-4-10-4z"/><path fill="#DF1F32" d="M21 16h-6s.613 1.552 3 1.552S21 16 21 16z"/><circle fill="#662113" cx="15.145" cy="12.726" r=".726"/><circle fill="#662113" cx="20.855" cy="12.726" r=".726"/><path fill="#C1694F" d="M17 14h2s0 1-1 1-1-1-1-1z"/><path fill="#9266CC" d="M12 23h12v13H12z"/><path fill="#CBB7EA" d="M23 36h-4v-9s0-3-2-4h6v13z"/><path fill="#744EAA" d="M24 36h-4v-9s0-3-2-4h6v13z"/><path fill="#744EAA" d="M18 23h-6v1h7.121c-.277-.402-.64-.76-1.121-1z"/><path fill="#9266CC" d="M18.121 24h1c-.277-.402-.64-.76-1.121-1h-1c.481.24.844.598 1.121 1z"/><path fill="#553788" d="M18 23c.481.24.844.598 1.121 1H24v-1h-6z"/><path d="M0 32c0 2.209 1.791 4 4 4h12.816c.112-.314.184-.647.184-1 0-1.657-1.343-3-3-3-.36 0-.7.074-1.019.19.004-.064.019-.125.019-.19 0-1.067-.561-1.998-1.4-2.53.247-.436.4-.933.4-1.47 0-1.657-1.343-3-3-3-.781 0-1.487.306-2.021.796C6.872 24.236 5.587 23 4 23c-1.385 0-2.539.944-2.884 2.22C.77 25.081.395 25 0 25v7zm34-7c-.87 0-1.646.376-2.194.967C31.384 24.821 30.292 24 29 24c-1.657 0-3 1.343-3 3-1.657 0-3 1.343-3 3 0 .537.153 1.034.4 1.47-.839.532-1.4 1.463-1.4 2.53-1.304 0-2.403.837-2.816 2H32c2.209 0 4-1.791 4-4v-6.221C35.468 25.3 34.772 25 34 25z" opacity=".85" fill="#F5F8FA"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><g fill="#E1E8ED"><circle cx="4.5" cy="25.5" r="4.5"/><circle cx="25.5" cy="20.5" r="5.5"/><circle cx="31" cy="26.5" r="5"/><circle cx="12" cy="24" r="5"/><path d="M33 30c-1.657 0-3 1.343-3 3H6c0-1.657-1.343-3-3-3s-3 1.343-3 3 1.343 3 3 3h29v-.184c.314.112.647.184 1 .184 1.657 0 3-1.343 3-3s-1.343-3-3-3z"/><path d="M0 25.5h9V33H0zM20 23h9v4h-9zm11 3.5h5V33h-5z"/></g><path fill="#FFDC5D" d="M31 36v-4.5c0-3.314-3.56-5.5-6.875-5.5h-12C8.812 26 5 28.186 5 31.5V36h26z"/><path fill="#FFAC33" d="M17.945 3.978c4.105 0 10.947 2.053 10.947 10.947 0 8.896 0 10.948-2.053 10.948s-4.79-2.053-8.895-2.053c-4.105 0-6.785 2.053-8.895 2.053-2.287 0-2.053-8.211-2.053-10.948.001-8.894 6.844-10.947 10.949-10.947"/><path fill="#FFDC5D" d="M14.5 26c1 1.982 2.792 4.5 3.5 4.5s2.512-2.549 3.5-4.5v-3.591h-7V26z"/><path fill="#F9CA55" d="M14.322 24.088c1.022 1.155 2.29 1.468 3.668 1.468 1.379 0 2.647-.312 3.67-1.468v-2.937h-7.338v2.937z"/><path fill="#FFDC5D" d="M9.734 14.627c0-5.834 3.676-10.563 8.211-10.563 4.533 0 8.209 4.73 8.209 10.563s-3.676 10.285-8.209 10.285c-4.535 0-8.211-4.452-8.211-10.285"/><path fill="#DF1F32" d="M17.945 22.452c-1.606 0-2.447-.794-2.537-.885-.268-.267-.268-.7 0-.967.266-.265.692-.267.961-.007.035.032.551.491 1.576.491 1.038 0 1.555-.473 1.576-.492.273-.256.703-.248.963.02.26.269.26.691-.004.955-.089.091-.929.885-2.535.885"/><path fill="#FFAC33" d="M7.735 17.909c-.021-1-.044-.224-.044-.465 0-3.422 2.053.494 2.053-1.943 0-2.439 1.368-2.683 2.736-4.051.684-.685 2.053-2.026 2.053-2.026s3.421 2.067 6.158 2.067c2.736 0 5.474 1.375 5.474 4.112 0 2.736 2.053-1.584 2.053 1.837 0 .244-.023-.531-.04.469h.719c.006-2 .006-1.924.006-3.202C28.902 5.812 22.06 2.5 17.954 2.5 13.85 2.5 7.007 5.757 7.007 14.652c0 .793-.02 1.257.008 3.257h.72z"/><path fill="#662113" d="M14.608 16.796c-.465 0-.846-.381-.846-.847v-.845c0-.465.381-.846.846-.846.466 0 .847.381.847.846v.845c0 .466-.381.847-.847.847m6.765 0c-.465 0-.846-.381-.846-.847v-.845c0-.465.381-.846.846-.846.465 0 .846.381.846.846v.845c0 .466-.381.847-.846.847"/><path fill="#C1694F" d="M18.836 19.409h-1.69c-.233 0-.423-.19-.423-.423v-.153c0-.233.189-.424.423-.424h1.69c.233 0 .424.19.424.424v.153c0 .234-.191.423-.424.423"/><path fill="#9266CC" d="M9.75 31.5V36h11.5v-.5h5v-4z"/><path fill="#A47DE2" d="M19.25 31.5c2 1 2 4 2 4v.5h1v-.5h3v-4h-6z"/><path fill="#744EAA" d="M20.25 31.5c2 1 2 4 2 4v.5h4v-4.5h-6z"/><path fill="#744EAA" d="M20.25 31.5H9.75v1h11.621c-.277-.402-.64-.76-1.121-1z"/><path fill="#9266CC" d="M20.371 32.5h1c-.277-.402-.64-.76-1.121-1h-1c.481.24.844.598 1.121 1z"/><path fill="#553788" d="M20.25 31.5c.481.24.844.598 1.121 1h4.879v-1h-6z"/><path d="M32 28c-2.975 0-5.438 2.168-5.911 5.009C26.058 33.008 26.03 33 26 33c-2.049 0-3.806 1.236-4.578 3H33c1.65 0 3-1.35 3-3v-3.463C34.938 28.584 33.539 28 32 28zm-18.422 8c-.772-1.764-2.529-3-4.578-3-.78 0-1.509.194-2.166.512.098-.322.166-.657.166-1.012C7 30.567 5.433 29 3.5 29 1.738 29 .295 30.306.05 32H0v1c0 1.65 1.35 3 3 3h10.578z" opacity=".7" fill="#FFF"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f9d6-200d-2642-fe0f.svg b/public/emoji/1f9d6-200d-2642-fe0f.svg
index d161c4917c956e5aac288033e9095efa6a5e15fc..3ecdeee764a8f6e07e53d0bbab65cb3c700c6311 100644
--- a/public/emoji/1f9d6-200d-2642-fe0f.svg
+++ b/public/emoji/1f9d6-200d-2642-fe0f.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#C1694F" d="M36 32c0 2.209-1.791 4-4 4H4c-2.209 0-4-1.791-4-4V4c0-2.209 1.791-4 4-4h28c2.209 0 4 1.791 4 4v28z"/><path fill="#D99E82" d="M0 4h36v4H0zm0 8h36v4H0zm0 8h36v4H0zm0 8h36v4H0z"/><path opacity=".75" fill="#E1E8ED" d="M33.47 15.4c-.436-.247-.933-.4-1.47-.4-1.657 0-3 1.343-3 3 0 .061.014.118.018.178-.863.301-1.539.977-1.84 1.84-.06-.004-.117-.018-.178-.018-1.311 0-2.414.846-2.822 2.018C24.118 22.014 12.657 22 11 22c-.395 0-.77.081-1.116.22-.259-.957-.974-1.718-1.902-2.041.004-.061.018-.118.018-.179 0-1.657-1.343-3-3-3-.537 0-1.034.153-1.47.4C2.998 16.561 2.067 16 1 16c-.355 0-.685.081-1 .195V32c0 2.209 1.791 4 4 4h28c2.209 0 4-1.791 4-4V14c-1.067 0-1.998.561-2.53 1.4z"/><path fill="#FFDC5D" d="M26 22c0-2-1.531-3-3-3h-1.975v-2h-5.929v2H13c-1.469 0-3 1-3 3v12l.024-.004c-.005.041-.024.076-.024.118 0 .615.499 1.114 1.114 1.114.615 0 1.114-.499 1.114-1.114 0-.164-.04-.317-.103-.457h11.75c-.064.14-.103.293-.103.457 0 .615.499 1.114 1.114 1.114.615 0 1.114-.499 1.114-1.114 0-.042-.019-.077-.024-.118L26 34V22z"/><path fill="#F9CA55" d="M12.5 32c-.275 0-.5-.225-.5-.5v-8c0-.275.225-.5.5-.5s.5.225.5.5v8c0 .275-.225.5-.5.5zm11 0c-.275 0-.5-.225-.5-.5v-8c0-.275.225-.5.5-.5s.5.225.5.5v8c0 .275-.225.5-.5.5z"/><path fill="#77B255" d="M12 29h12v7H12z"/><path fill="#5C913B" d="M18 29h-6v1h7.121c-.277-.402-.64-.76-1.121-1z"/><path fill="#A6D388" d="M23 36h-4v-3s0-3-2-4h6v7z"/><path fill="#5C913B" d="M24 36h-4v-3s0-3-2-4h6v7z"/><path fill="#77B255" d="M18.121 30h1c-.277-.402-.64-.76-1.121-1h-1c.481.24.844.598 1.121 1z"/><path fill="#3E721D" d="M18 29c.481.24.844.598 1.121 1H24v-1h-6z"/><path fill="#F9CA55" d="M21.025 16.972L15.096 17v1.553s2.965 1.482 5.929 0v-1.581z"/><path fill="#FFDC5D" d="M24.356 6h-12.59v6.147c0 3.478 2.818 6.295 6.295 6.295s6.295-2.817 6.295-6.295V6z"/><path fill="#C1694F" d="M20.579 15.923h-5.036s0 1.259 2.518 1.259 2.518-1.259 2.518-1.259z"/><circle fill="#662113" cx="14.913" cy="11.517" r=".629"/><circle fill="#662113" cx="21.208" cy="11.517" r=".629"/><path fill="#C1694F" d="M16.802 13.405h2.518s0 1.259-1.259 1.259-1.259-1.259-1.259-1.259z"/><path fill="#FFAC33" d="M18 2c4.328 0 7.033 3.221 7.033 5.905s-.541 3.758-1.082 2.684l-1.082-2.147s-3.246 0-4.328-1.074c0 0 1.623 3.221-1.623 0 0 0 .541 2.148-2.705-.536 0 0-1.623 1.074-2.164 3.757-.15.745-1.082 0-1.082-2.684S13.131 2 18 2"/><path d="M0 32c0 2.209 1.791 4 4 4h12.816c.112-.314.184-.647.184-1 0-1.657-1.343-3-3-3-.36 0-.7.074-1.019.19.004-.064.019-.125.019-.19 0-1.067-.561-1.998-1.4-2.53.247-.436.4-.933.4-1.47 0-1.657-1.343-3-3-3-.781 0-1.487.306-2.021.796C6.872 24.236 5.587 23 4 23c-1.385 0-2.539.944-2.884 2.22C.77 25.081.395 25 0 25v7zm34-7c-.87 0-1.646.376-2.194.967C31.384 24.821 30.292 24 29 24c-1.657 0-3 1.343-3 3-1.657 0-3 1.343-3 3 0 .537.153 1.034.4 1.47-.839.532-1.4 1.463-1.4 2.53-1.304 0-2.403.837-2.816 2H32c2.209 0 4-1.791 4-4v-6.221C35.468 25.3 34.772 25 34 25z" opacity=".85" fill="#F5F8FA"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><g fill="#E1E8ED"><circle cx="4.5" cy="25.5" r="4.5"/><circle cx="25.5" cy="20.5" r="5.5"/><circle cx="31" cy="26.5" r="5"/><circle cx="12" cy="24" r="5"/><path d="M33 30c-1.657 0-3 1.343-3 3H6c0-1.657-1.343-3-3-3s-3 1.343-3 3 1.343 3 3 3h29v-.184c.314.112.647.184 1 .184 1.657 0 3-1.343 3-3s-1.343-3-3-3z"/><path d="M0 25.5h9V33H0zM20 23h9v4h-9zm11 3.5h5V33h-5z"/></g><path d="M23.35 20c1.014.324 2.845 1.15 2.65 2.941 1.924.357 2.306 1.966 2.436 2.907.248 1.79-7.436-.198-7.436-.198l-1-3.482L23.35 20zm-10.38.5c-.769.185-2.749.5-3.64 2.793-1.99 0-2.33 2.02-2.33 3.538 0 2.253 7.336 1.955 8.495.678 1.158-1.277.784-5.36.784-5.36L12.97 20.5z" fill="#77B255"/><path fill="#FFDC5D" d="M32 36v-4c0-3.314-2.685-6-6-6H10c-3.313 0-6 2.686-6 6v4h28z"/><path fill="#FFDC5D" d="M13.667 27.122L18 31.001l4.316-2.627L22 22h-8z"/><path fill="#F9CA55" d="M14 24c1.216 1.374 2.355 1.719 3.996 1.719 1.639 0 2.787-.346 4.004-1.719v-4h-8v4z"/><path fill="#FFDC5D" d="M11.444 13.936c0 1.448-.734 2.622-1.639 2.622s-1.639-1.174-1.639-2.622.734-2.623 1.639-2.623c.905-.001 1.639 1.174 1.639 2.623m16.389 0c0 1.448-.733 2.622-1.639 2.622-.905 0-1.639-1.174-1.639-2.622s.733-2.623 1.639-2.623c.906-.001 1.639 1.174 1.639 2.623"/><path fill="#FFDC5D" d="M9.477 14.96c0-5.589 3.816-10.121 8.523-10.121s8.522 4.532 8.522 10.121S22.707 25.081 18 25.081c-4.707-.001-8.523-4.532-8.523-10.121"/><path fill="#C1694F" d="M18 21.802c-2.754 0-3.6-.705-3.741-.848-.256-.256-.256-.671 0-.927.248-.248.646-.255.902-.023.052.037.721.487 2.839.487 2.2 0 2.836-.485 2.842-.49.256-.255.657-.243.913.015.256.256.242.683-.014.938-.141.143-.987.848-3.741.848"/><path fill="#FFAC33" d="M18 1.48c5.648 0 9.178 4.168 9.178 7.641s-.706 4.863-1.412 3.473l-1.412-2.778s-4.235 0-5.647-1.39c0 0 2.118 4.168-2.118 0 0 0 .706 2.779-3.53-.694 0 0-2.118 1.389-2.824 4.862-.196.964-1.412 0-1.412-3.473C8.822 5.648 11.646 1.48 18 1.48"/><path fill="#662113" d="M14 15c-.55 0-1-.45-1-1v-1c0-.55.45-1 1-1s1 .45 1 1v1c0 .55-.45 1-1 1m8 0c-.55 0-1-.45-1-1v-1c0-.55.45-1 1-1s1 .45 1 1v1c0 .55-.45 1-1 1"/><path fill="#C1694F" d="M18.75 17.75h-1.5c-.413 0-.75-.337-.75-.75s.337-.75.75-.75h1.5c.413 0 .75.337.75.75s-.337.75-.75.75"/><path fill="#77B255" d="M13.758 25.712c-.269 3.395.314 5.641.636 6.672.158.505-.201 1.016-.729 1.045-.714.039-1.591.08-2.116.08-1 0-3.477 2.243-3.942-.193C7.143 30.88 7 28.711 7 27.909s-.158-3.166 1.167-3.17c1.817-.005 2.155-.153 2.917-.705.857-.622 2.738.879 2.674 1.678zm8.426.007c.247 3.305-.257 5.437-.553 6.44-.145.492-.261.897.099 1.237.698.66 2.007-.07 2.49-.07.92 0 2.935 2.261 3.612-.991.633-3.039.604-5.475.604-6.255s-.468-1.038-1.077-1.363c-1.486-.792-1.982-.149-2.683-.687-.788-.605-2.55.911-2.492 1.689z"/><path fill="#A6D388" d="M8.002 25.236c.156-.67.885-1.175 1.063-.623.177.55.233 3.471.295 4.387s-.608-.184-.861-.898c-.254-.714-.644-2.234-.497-2.866zm19.115-.849c-.175-.579-.846-.279-1.003.176s.021 1.692-.01 2.465c-.031.773.325.014.551-.574.227-.588.627-1.521.462-2.067zm-16.802-.852c.024-.521.923-1.192 1.004-.656.081.536.571 6.09.845 7.289.274 1.199-.196.978-.522.124s-1.401-5.186-1.327-6.757zm14.802-.853c-.245-.141-.842.207-.89.639-.047.432-.005 4.021-.202 4.982-.196.961.115.81.383.133s1.831-5.106.709-5.754z"/><path d="M32 28c-2.975 0-5.438 2.168-5.911 5.009C26.058 33.008 26.03 33 26 33c-2.049 0-3.806 1.236-4.578 3H33c1.65 0 3-1.35 3-3v-3.463C34.938 28.584 33.539 28 32 28zm-18.422 8c-.772-1.764-2.529-3-4.578-3-.78 0-1.509.194-2.166.512.098-.322.166-.657.166-1.012C7 30.567 5.433 29 3.5 29 1.738 29 .295 30.306.05 32H0v1c0 1.65 1.35 3 3 3h10.578z" opacity=".7" fill="#FFF"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f9d6.svg b/public/emoji/1f9d6.svg
index c587685a6266d1508aa50bb7f613b9f5d1ecc101..f1d0343e324144afe0558774408e9535c0111696 100644
--- a/public/emoji/1f9d6.svg
+++ b/public/emoji/1f9d6.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#C1694F" d="M36 32c0 2.209-1.791 4-4 4H4c-2.209 0-4-1.791-4-4V4c0-2.209 1.791-4 4-4h28c2.209 0 4 1.791 4 4v28z"/><path fill="#D99E82" d="M0 4h36v4H0zm0 8h36v4H0zm0 8h36v4H0zm0 8h36v4H0z"/><path opacity=".75" fill="#E1E8ED" d="M33.47 15.4c-.436-.247-.933-.4-1.47-.4-1.657 0-3 1.343-3 3 0 .061.014.118.018.178-.863.301-1.539.977-1.84 1.84-.06-.004-.117-.018-.178-.018-1.311 0-2.414.846-2.822 2.018C24.118 22.014 12.657 22 11 22c-.395 0-.77.081-1.116.22-.259-.957-.974-1.718-1.902-2.041.004-.061.018-.118.018-.179 0-1.657-1.343-3-3-3-.537 0-1.034.153-1.47.4C2.998 16.561 2.067 16 1 16c-.355 0-.685.081-1 .195V32c0 2.209 1.791 4 4 4h28c2.209 0 4-1.791 4-4V14c-1.067 0-1.998.561-2.53 1.4z"/><path fill="#FFAC33" d="M19.329 1c-1.681 0-3.238.523-4.524 1.41-.261-.039-.523-.08-.795-.08C11.072 2.33 9 5.062 9 8v8c0 5.142 3.858 8.939 9 8.939 5.142 0 8.914-4.312 8.998-8.87L27 9c-.083-4.991-3.263-8-7.671-8z"/><path fill="#FFDC5D" d="M23 20h-3v-1h-4v1h-3c-1.469 0-3 1-3 3v12l.022-.004c.058.561.516 1.004 1.092 1.004.615 0 1.114-.499 1.114-1.114 0-.084-.03-.159-.048-.237h11.639c-.018.079-.048.153-.048.237 0 .615.499 1.114 1.114 1.114.576 0 1.034-.443 1.092-1.004L26 35V23c0-2-1.531-3-3-3z"/><path fill="#F9CA55" d="M20 19h-4v1s2 1 4 0v-1z"/><path fill="#FFDC5D" d="M15 6s-1 3-4 4v3c0 3.674 3.327 6.619 6.999 6.619C21.672 19.619 25 16.674 25 13v-3c-8 0-10-4-10-4z"/><path fill="#DF1F32" d="M21 16h-6s.613 1.552 3 1.552S21 16 21 16z"/><circle fill="#662113" cx="15.145" cy="12.726" r=".726"/><circle fill="#662113" cx="20.855" cy="12.726" r=".726"/><path fill="#C1694F" d="M17 14h2s0 1-1 1-1-1-1-1z"/><path fill="#9266CC" d="M12 23h12v13H12z"/><path fill="#CBB7EA" d="M23 36h-4v-9s0-3-2-4h6v13z"/><path fill="#744EAA" d="M24 36h-4v-9s0-3-2-4h6v13z"/><path fill="#744EAA" d="M18 23h-6v1h7.121c-.277-.402-.64-.76-1.121-1z"/><path fill="#9266CC" d="M18.121 24h1c-.277-.402-.64-.76-1.121-1h-1c.481.24.844.598 1.121 1z"/><path fill="#553788" d="M18 23c.481.24.844.598 1.121 1H24v-1h-6z"/><path d="M0 32c0 2.209 1.791 4 4 4h12.816c.112-.314.184-.647.184-1 0-1.657-1.343-3-3-3-.36 0-.7.074-1.019.19.004-.064.019-.125.019-.19 0-1.067-.561-1.998-1.4-2.53.247-.436.4-.933.4-1.47 0-1.657-1.343-3-3-3-.781 0-1.487.306-2.021.796C6.872 24.236 5.587 23 4 23c-1.385 0-2.539.944-2.884 2.22C.77 25.081.395 25 0 25v7zm34-7c-.87 0-1.646.376-2.194.967C31.384 24.821 30.292 24 29 24c-1.657 0-3 1.343-3 3-1.657 0-3 1.343-3 3 0 .537.153 1.034.4 1.47-.839.532-1.4 1.463-1.4 2.53-1.304 0-2.403.837-2.816 2H32c2.209 0 4-1.791 4-4v-6.221C35.468 25.3 34.772 25 34 25z" opacity=".85" fill="#F5F8FA"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><g fill="#E1E8ED"><circle cx="4.5" cy="25.5" r="4.5"/><circle cx="25.5" cy="20.5" r="5.5"/><circle cx="31" cy="26.5" r="5"/><circle cx="12" cy="24" r="5"/><path d="M33 30c-1.657 0-3 1.343-3 3H6c0-1.657-1.343-3-3-3s-3 1.343-3 3 1.343 3 3 3h29v-.184c.314.112.647.184 1 .184 1.657 0 3-1.343 3-3s-1.343-3-3-3z"/><path d="M0 25.5h9V33H0zM20 23h9v4h-9zm11 3.5h5V33h-5z"/></g><path fill="#FFDC5D" d="M31 36v-4.5c0-3.314-3.56-5.5-6.875-5.5h-12C8.812 26 5 28.186 5 31.5V36h26z"/><path fill="#FFAC33" d="M17.945 3.978c4.105 0 10.947 2.053 10.947 10.947 0 8.896 0 10.948-2.053 10.948s-4.79-2.053-8.895-2.053c-4.105 0-6.785 2.053-8.895 2.053-2.287 0-2.053-8.211-2.053-10.948.001-8.894 6.844-10.947 10.949-10.947"/><path fill="#FFDC5D" d="M14.5 26c1 1.982 2.792 4.5 3.5 4.5s2.512-2.549 3.5-4.5v-3.591h-7V26z"/><path fill="#F9CA55" d="M14.322 24.088c1.022 1.155 2.29 1.468 3.668 1.468 1.379 0 2.647-.312 3.67-1.468v-2.937h-7.338v2.937z"/><path fill="#FFDC5D" d="M9.734 14.627c0-5.834 3.676-10.563 8.211-10.563 4.533 0 8.209 4.73 8.209 10.563s-3.676 10.285-8.209 10.285c-4.535 0-8.211-4.452-8.211-10.285"/><path fill="#DF1F32" d="M17.945 22.452c-1.606 0-2.447-.794-2.537-.885-.268-.267-.268-.7 0-.967.266-.265.692-.267.961-.007.035.032.551.491 1.576.491 1.038 0 1.555-.473 1.576-.492.273-.256.703-.248.963.02.26.269.26.691-.004.955-.089.091-.929.885-2.535.885"/><path fill="#FFAC33" d="M7.735 17.909c-.021-1-.044-.224-.044-.465 0-3.422 2.053.494 2.053-1.943 0-2.439 1.368-2.683 2.736-4.051.684-.685 2.053-2.026 2.053-2.026s3.421 2.067 6.158 2.067c2.736 0 5.474 1.375 5.474 4.112 0 2.736 2.053-1.584 2.053 1.837 0 .244-.023-.531-.04.469h.719c.006-2 .006-1.924.006-3.202C28.902 5.812 22.06 2.5 17.954 2.5 13.85 2.5 7.007 5.757 7.007 14.652c0 .793-.02 1.257.008 3.257h.72z"/><path fill="#662113" d="M14.608 16.796c-.465 0-.846-.381-.846-.847v-.845c0-.465.381-.846.846-.846.466 0 .847.381.847.846v.845c0 .466-.381.847-.847.847m6.765 0c-.465 0-.846-.381-.846-.847v-.845c0-.465.381-.846.846-.846.465 0 .846.381.846.846v.845c0 .466-.381.847-.846.847"/><path fill="#C1694F" d="M18.836 19.409h-1.69c-.233 0-.423-.19-.423-.423v-.153c0-.233.189-.424.423-.424h1.69c.233 0 .424.19.424.424v.153c0 .234-.191.423-.424.423"/><path fill="#9266CC" d="M9.75 31.5V36h11.5v-.5h5v-4z"/><path fill="#A47DE2" d="M19.25 31.5c2 1 2 4 2 4v.5h1v-.5h3v-4h-6z"/><path fill="#744EAA" d="M20.25 31.5c2 1 2 4 2 4v.5h4v-4.5h-6z"/><path fill="#744EAA" d="M20.25 31.5H9.75v1h11.621c-.277-.402-.64-.76-1.121-1z"/><path fill="#9266CC" d="M20.371 32.5h1c-.277-.402-.64-.76-1.121-1h-1c.481.24.844.598 1.121 1z"/><path fill="#553788" d="M20.25 31.5c.481.24.844.598 1.121 1h4.879v-1h-6z"/><path d="M32 28c-2.975 0-5.438 2.168-5.911 5.009C26.058 33.008 26.03 33 26 33c-2.049 0-3.806 1.236-4.578 3H33c1.65 0 3-1.35 3-3v-3.463C34.938 28.584 33.539 28 32 28zm-18.422 8c-.772-1.764-2.529-3-4.578-3-.78 0-1.509.194-2.166.512.098-.322.166-.657.166-1.012C7 30.567 5.433 29 3.5 29 1.738 29 .295 30.306.05 32H0v1c0 1.65 1.35 3 3 3h10.578z" opacity=".7" fill="#FFF"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f9d8-1f3fb-200d-2640-fe0f.svg b/public/emoji/1f9d8-1f3fb-200d-2640-fe0f.svg
index b40f1d8b6725632c1356e759d0e5639c88e840d4..e51d2e4390d31bc16b5135364640772d7c7d4609 100644
--- a/public/emoji/1f9d8-1f3fb-200d-2640-fe0f.svg
+++ b/public/emoji/1f9d8-1f3fb-200d-2640-fe0f.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#F7DECE" d="M5.001 28c-.367 0-.72-.202-.896-.553-.247-.494-.047-1.095.447-1.342l5.544-2.772.917-5.498c.091-.544.605-.913 1.151-.822.544.091.913.606.822 1.151l-1 6c-.053.315-.253.587-.539.73l-6 3c-.143.072-.296.106-.446.106zm25.998 0c-.15 0-.303-.034-.446-.105l-6-3c-.286-.144-.486-.415-.539-.73l-1-6c-.091-.545.277-1.06.822-1.151.543-.09 1.061.277 1.15.822l.916 5.498 5.545 2.772c.494.247.694.848.447 1.342-.175.35-.528.552-.895.552z"/><path fill="#4289C1" d="M13 27.25h10v4.5H13z"/><path fill="#292F33" d="M19 0c-1.264 0-2.435.393-3.402 1.061C15.402 1.031 15.205 1 15 1c-2.209 0-4 1.791-4 4v4c0 3.866 3.134 7 7 7s7-3.134 7-7V6.001C25 2.687 22.314 0 19 0z"/><path fill="#9268CA" d="M23 15H13c-2.562 0-2.458 4-2.458 4H13v9h10v-9h2.458s.104-4-2.458-4z"/><path fill="#F7DECE" d="M16 3s-.011 3.285-3 3.894V9c0 2.05 1.236 3.806 3 4.578V15c0 1.104.896 2 2 2s2-.896 2-2v-1.422c1.764-.772 3-2.528 3-4.577V6.968C16.019 6.644 16 3 16 3z"/><path fill="#DF1F32" d="M20 12h-4s0 1 2 1 2-1 2-1z"/><circle fill="#662113" cx="15.5" cy="8.5" r=".5"/><circle fill="#662113" cx="20.5" cy="8.5" r=".5"/><path fill="#C1694F" d="M17 10h2s0 1-1 1-1-1-1-1z"/><path fill="#F7DECE" d="M8.417 34.556c.308.769 1.181 1.142 1.95.834l12.395-3.803s3.49.701 3.351-1.294c-.106-1.52-2.586-2.245-4.467-1.491-1.881.754-12.395 3.803-12.395 3.803-.768.309-1.142 1.182-.834 1.951z"/><path fill="#EEC2AD" d="M25.756 30.608c-.212-.689-2.021-.422-2.456-.303-.435.12-12.47 3.844-13.453 4.16-.924.296-.364 1.06.087 1.026.033-.008.066-.01.099-.02L21.8 31.884c.877-.274 1.884-.166 2.719-.244.396-.037.802-.167.877-.202.166-.075.511-.34.36-.83z"/><path fill="#F7DECE" d="M27.583 34.556c-.308.769-1.181 1.142-1.95.834l-12.395-3.803s-3.49.701-3.351-1.294c.106-1.52 2.586-2.245 4.467-1.491 1.881.754 12.395 3.803 12.395 3.803.768.309 1.142 1.182.834 1.951z"/><path fill="#EEC2AD" d="M10.244 30.608c.212-.689 2.021-.422 2.456-.303.435.12 12.47 3.844 13.453 4.16.924.296.364 1.06-.087 1.026-.033-.008-.066-.01-.099-.02L14.2 31.884c-.877-.274-1.884-.166-2.719-.244-.396-.037-.802-.167-.877-.202-.166-.075-.511-.34-.36-.83z"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#4289C1" d="M28.632 30.563c-.178-1.426-1.568-1.931-2.257-1.931-.884 0-2.992 1.106-3.375-.585l-.037-.183-9.91-.012-.053.184c-.375 1.708-2.492.596-3.378.596-.689 0-2.079.505-2.257 1.931C7.365 30.563 14.13 33 18 33c3.873 0 10.632-2.437 10.632-2.437z"/><path fill="#F7DECE" d="M12.165 17.014c-.546-.091-1.06.278-1.151.822l-.825 4.947c-.071.043-.142.087-.217.135-1.762 1.131-1.661 3.529-2.934 4.616-.171.146-.949.766-1.203 1.325-.336.738.22.444.045.695-.406.584-.414 1.478-.127 1.686l.373.1c.557.403 2.081-1.336 2.281-2.302.3-1.443 3.075-3.25 3.589-4.653.162-.444.224-.787.173-1.074l1.106-5.145c.091-.546-.566-1.062-1.11-1.152zm17.922 12.598c-.175-.251.437-.016.101-.754-.255-.56-1.089-1.179-1.259-1.325-1.273-1.087-1.116-3.485-2.878-4.616-.083-.054-.164-.104-.243-.151l-.822-4.93c-.09-.544-.607-.912-1.15-.822-.545.091-1.235.606-1.145 1.151l1.151 5.222c-.028.272.036.592.184.998.513 1.402 3.289 3.209 3.589 4.653.201.967 1.725 2.706 2.281 2.302l.373-.1c.289-.21.225-1.044-.182-1.628z"/><path fill="#F7DECE" d="M22.757 35.82c-1.04.089-2.02-.208-3 0-.475.03-.802 0-1.277-.416s-8.287-1.515-9.713-2.465c-.658-.439-1.662-1.54-1.396-2.465.263-.913 1.139-1.429 2.198-1.455 2.065-.051 6 2.941 8.851 4.04.518.2.948-.052 1.604.119.683.178 2.317-.555 3.149-.446 1.129.149 1.574.683 1.485 1.604-.094.974-.861 1.395-1.901 1.484z"/><path fill="#EEC2AD" d="M22.757 35.82c-1.04.089-2.02-.208-3 0-.475.03-.802 0-1.277-.416s.889-2.399 1.545-2.228c.683.178 2.317-.555 3.149-.446 1.129.149 1.574.683 1.485 1.604-.095.976-.862 1.397-1.902 1.486zm-11.561-2.614c.238-.624 1.188-.891 1.634-.95s1.188.208 1.693.416c.505.208 1.118.234 1.504.085.386-.149.668-.124.958 0 .078.033.423 0 .546-.067 0 0 1.79.616 1.136.824-.653.208-5.421.524-6.074.524s-1.397-.832-1.397-.832z"/><path fill="#EEC2AD" d="M7.371 30.474c.006-.02.016-.037.022-.056.201.762.76 1.66 1.401 1.898.802.297 7.247 2.198 8.049 2.287.802.089 1.99.208 2.228.386.238.178.861.238 1.366.119.505-.119 1.782.356 2.436.208.653-.148 1.604-.445 1.782-1.247.003-.015.007-.022.011-.034.004.096.003.195-.007.302-.094.975-.861 1.396-1.901 1.485s-2.02-.208-3 0c-.475.03-.802 0-1.277-.416-.475-.416-8.287-1.515-9.713-2.465-.659-.441-1.663-1.543-1.397-2.467z"/><path fill="#F7DECE" d="M13.243 35.82c1.04.089 2.02-.208 3 0 .475.03.802 0 1.277-.416s8.287-1.515 9.713-2.465c.658-.439 1.662-1.54 1.396-2.465-.263-.913-1.139-1.429-2.198-1.455-2.065-.051-6 2.941-8.851 4.04-.518.2-.948-.052-1.604.119-.683.178-2.317-.555-3.149-.446-1.129.149-1.574.683-1.485 1.604.094.974.861 1.395 1.901 1.484z"/><path fill="#292F33" d="M19 0c-1.264 0-2.435.393-3.402 1.061C15.402 1.031 15.205 1 15 1c-2.209 0-4 1.791-4 4v4c0 3.866 3.134 7 7 7s7-3.134 7-7V6.001C25 2.687 22.314 0 19 0z"/><path fill="#9268CA" d="M22.543 15h-9.089c-2.562 0-2.912 4-2.912 4l2.458.632s.454 2.376.454 4.337S13 28 13 28s2.031.335 5 .335S23 28 23 28s-.487-2.071-.487-4.061.487-4.307.487-4.307L25.458 19s-.353-4-2.915-4z"/><path fill="#F7DECE" d="M16 11v4c0 1.104.896 2 2 2s2-.896 2-2v-4h-4z"/><path fill="#EEC2AD" d="M20 11l-4 .019V15s2 1 4 0v-4z"/><path fill="#F7DECE" d="M16 3s-.011 3.285-3 3.894V9c0 2.762 2.238 5 5 5s5-2.237 5-5V6.968C16.019 6.644 16 3 16 3z"/><path fill="#DF1F32" d="M20 12h-4s0 1 2 1 2-1 2-1z"/><path fill="#C1694F" d="M16.25 8.75h-1.5c-.137 0-.25-.113-.25-.25s.113-.25.25-.25h1.5c.138 0 .25.113.25.25s-.112.25-.25.25zm5 0h-1.5c-.138 0-.25-.113-.25-.25s.112-.25.25-.25h1.5c.138 0 .25.113.25.25s-.112.25-.25.25zM17 10h2s0 1-1 1-1-1-1-1z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f9d8-1f3fb-200d-2642-fe0f.svg b/public/emoji/1f9d8-1f3fb-200d-2642-fe0f.svg
index 15bbacb554884a7a3e9022f7a8d306b0177bc46c..ce17dc94b3c035e8a035aa0d7e0daf39e4e06685 100644
--- a/public/emoji/1f9d8-1f3fb-200d-2642-fe0f.svg
+++ b/public/emoji/1f9d8-1f3fb-200d-2642-fe0f.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><g fill="#F7DECE"><path d="M11.561 24.806L5.82 27.855c-.607.322-1.368.089-1.69-.518-.322-.607-.089-1.368.518-1.69l5.741-3.048c.607-.322 1.368-.089 1.69.518.322.606.089 1.367-.518 1.689z"/><path d="M13.48 17.493l-1.266 6.375c-.134.674-.795 1.116-1.47.983-.674-.134-1.116-.795-.983-1.47l1.266-6.375c.134-.674.795-1.116 1.47-.983.674.135 1.117.796.983 1.47z"/></g><g fill="#F7DECE"><path d="M24.439 24.806l5.741 3.048c.607.322 1.368.089 1.69-.518.322-.607.089-1.368-.518-1.69l-5.741-3.048c-.607-.322-1.368-.089-1.69.518-.322.607-.089 1.368.518 1.69z"/><path d="M22.52 17.493l1.266 6.375c.134.674.795 1.116 1.47.983.674-.134 1.116-.795.983-1.47l-1.266-6.375c-.134-.674-.795-1.116-1.47-.983-.674.135-1.117.796-.983 1.47z"/></g><path fill="#4289B1" d="M22.999 31.75s0 1.25-5 1.25-5-1.25-5-1.25v-5.5h10v5.5z"/><path fill="#77B255" d="M22.999 15h-10c-2.562 0-2.458 4-2.458 4h2.458v9h10v-9h2.458s.105-4-2.458-4z"/><path fill="#F7DECE" d="M15.667 10.389v4.666c0 .312 1.045 1.093 2.333 1.093 1.288 0 2.333-.819 2.333-1.093v-4.666h-4.666z"/><path fill="#F7DECE" d="M22.954 3.966h-9.908v5.433c0 2.737 2.218 4.954 4.954 4.954 2.736 0 4.954-2.217 4.954-4.954V3.966z"/><path fill="#C1694F" d="M19.982 12.057h-3.964s0 .991 1.982.991 1.982-.991 1.982-.991z"/><circle fill="#662113" cx="15.5" cy="8.5" r=".495"/><circle fill="#662113" cx="20.5" cy="8.5" r=".495"/><path fill="#C1694F" d="M17.009 10.076h1.982s0 .991-.991.991-.991-.991-.991-.991z"/><path fill="#292F33" d="M18 .953c3.385 0 5.5 2.579 5.5 4.728 0 2.149-.423 3.009-.846 2.149l-.846-1.719s-2.538 0-3.384-.86c0 0 1.269 2.579-1.269 0 0 0 .423 1.72-2.115-.429 0 0-1.269.86-1.692 3.008-.117.597-.846 0-.846-2.149C12.5 3.532 14.192.953 18 .953"/><path fill="#F7DECE" d="M26.587 29.054s-1.533-.374-2.532-.349c-.23-.03-.469-.016-.706.051l-12.977 3.721c-.925.265-1.465 1.239-1.2 2.165.265.925 1.239 1.465 2.165 1.2l11.942-3.425c.883-.253 1.988-.044 2.826-.061.838-.017 1.632-.478 1.766-1.431.134-.953-.331-1.737-1.284-1.871z"/><path fill="#EEC2AD" d="M27.136 31.402c-.196-.694-2.206-.474-2.644-.365s-12.556 3.551-13.547 3.844c-.93.275-.388 1.051.063 1.028.033-.007.066-.008.1-.018l11.942-3.425c.883-.253 1.99-.003 2.826-.061.397-.027.806-.148.881-.181.168-.071.518-.328.379-.822z"/><path fill="#F7DECE" d="M9.413 29.054s1.533-.374 2.532-.349c.23-.03.469-.016.706.051l12.977 3.721c.925.265 1.465 1.239 1.2 2.165-.265.925-1.239 1.465-2.165 1.2L12.72 32.418c-.883-.253-1.988-.044-2.826-.061-.838-.017-1.632-.478-1.766-1.431-.133-.954.332-1.738 1.285-1.872z"/><path fill="#EEC2AD" d="M8.864 31.402c.196-.694 2.206-.474 2.644-.365s12.556 3.551 13.547 3.844c.93.275.388 1.051-.063 1.028-.033-.007-.066-.008-.1-.018L12.95 32.467c-.883-.253-1.99-.003-2.826-.061-.397-.027-.806-.148-.881-.181-.168-.072-.518-.329-.379-.823z"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#4289C1" d="M28.632 30.563c-.178-1.426-1.568-1.931-2.257-1.931-.884 0-2.992 1.106-3.375-.585l-.037-.183-9.91-.012-.053.184c-.375 1.708-2.492.596-3.378.596-.689 0-2.079.505-2.257 1.931C7.365 30.563 14.13 33 18 33c3.873 0 10.632-2.437 10.632-2.437z"/><path fill="#F7DECE" d="M12.497 16.024c-.674-.134-1.336 1.309-1.47 1.983L9.846 23.02c-1.619 1.166-1.57 3.454-2.808 4.512-.171.146-.949.766-1.203 1.325-.336.738.22.444.045.695-.406.584-.414 1.478-.127 1.686l.373.1c.557.403 2.081-1.336 2.281-2.302.3-1.443 3.075-3.25 3.589-4.653.006-.017.007-.029.013-.046.097-.138.169-.294.204-.469l1.266-6.375c.135-.674-.308-1.335-.982-1.469zm17.59 13.588c-.175-.251.437-.016.101-.754-.255-.56-1.089-1.179-1.259-1.325-1.246-1.064-1.133-3.377-2.781-4.535l-1.176-4.99c-.134-.674-.795-2.117-1.47-1.983-.674.134-1.116.795-.983 1.47l1.266 6.375c.038.191.125.355.236.501l.004.014c.513 1.402 3.289 3.209 3.589 4.653.201.967 1.725 2.706 2.281 2.302l.373-.1c.29-.21.226-1.044-.181-1.628z"/><path fill="#F7DECE" d="M22.757 35.82c-1.04.089-2.02-.208-3 0-.475.03-.802 0-1.277-.416s-8.287-1.515-9.713-2.465c-.658-.439-1.662-1.54-1.396-2.465.263-.913 1.139-1.429 2.198-1.455 2.065-.051 6 2.941 8.851 4.04.518.2.948-.052 1.604.119.683.178 2.317-.555 3.149-.446 1.129.149 1.574.683 1.485 1.604-.094.974-.861 1.395-1.901 1.484z"/><path fill="#EEC2AD" d="M22.757 35.82c-1.04.089-2.02-.208-3 0-.475.03-.802 0-1.277-.416s.889-2.399 1.545-2.228c.683.178 2.317-.555 3.149-.446 1.129.149 1.574.683 1.485 1.604-.095.976-.862 1.397-1.902 1.486zm-11.561-2.614c.238-.624 1.188-.891 1.634-.95s1.188.208 1.693.416c.505.208 1.118.234 1.504.085.386-.149.668-.124.958 0 .078.033.423 0 .546-.067 0 0 1.79.616 1.136.824-.653.208-5.421.524-6.074.524s-1.397-.832-1.397-.832z"/><path fill="#EEC2AD" d="M7.371 30.474c.006-.02.016-.037.022-.056.201.762.76 1.66 1.401 1.898.802.297 7.247 2.198 8.049 2.287.802.089 1.99.208 2.228.386.238.178.861.238 1.366.119.505-.119 1.782.356 2.436.208.653-.148 1.604-.445 1.782-1.247.003-.015.007-.022.011-.034.004.096.003.195-.007.302-.094.975-.861 1.396-1.901 1.485s-2.02-.208-3 0c-.475.03-.802 0-1.277-.416-.475-.416-8.287-1.515-9.713-2.465-.659-.441-1.663-1.543-1.397-2.467z"/><path fill="#F7DECE" d="M13.243 35.82c1.04.089 2.02-.208 3 0 .475.03.802 0 1.277-.416s8.287-1.515 9.713-2.465c.658-.439 1.662-1.54 1.396-2.465-.263-.913-1.139-1.429-2.198-1.455-2.065-.051-6 2.941-8.851 4.04-.518.2-.948-.052-1.604.119-.683.178-2.317-.555-3.149-.446-1.129.149-1.574.683-1.485 1.604.094.974.861 1.395 1.901 1.484z"/><path fill="#77B255" d="M22.543 15h-9.06c-2.562 0-2.943 4.394-2.943 4.394l2.458.535s.31 3.589.271 5.27c-.038 1.682-.27 2.801-.27 2.801s1.912.394 5 .394 5-.394 5-.394-.349-1.606-.349-2.978.349-5.093.349-5.093l2.458-.535S25.105 15 22.543 15z"/><path fill="#F7DECE" d="M15.667 10.389v4.666c0 .312.553 1.488 2.333 1.488 1.781 0 2.333-1.214 2.333-1.488v-4.666h-4.666z"/><path fill="#EEC2AD" d="M20.333 9.774l-4.666.022v4.644s2.333 1.167 4.666 0V9.774z"/><path fill="#F7DECE" d="M22.954 3.966h-9.908v5.433c0 2.737 2.218 4.954 4.954 4.954 2.736 0 4.954-2.217 4.954-4.954V3.966z"/><path fill="#C1694F" d="M19.982 12.057h-3.964s0 .991 1.982.991 1.982-.991 1.982-.991zM16.25 8.75h-1.5c-.137 0-.25-.113-.25-.25s.113-.25.25-.25h1.5c.138 0 .25.113.25.25s-.112.25-.25.25zm5 0h-1.5c-.138 0-.25-.113-.25-.25s.112-.25.25-.25h1.5c.138 0 .25.113.25.25s-.112.25-.25.25zm-4.241 1.326h1.982s0 .991-.991.991-.991-.991-.991-.991z"/><path fill="#292F33" d="M18 .953c3.385 0 5.5 2.579 5.5 4.728 0 2.149-.423 3.009-.846 2.149l-.846-1.719s-2.538 0-3.384-.86c0 0 1.269 2.579-1.269 0 0 0 .423 1.72-2.115-.429 0 0-1.269.86-1.692 3.008-.117.597-.846 0-.846-2.149C12.5 3.532 14.192.953 18 .953"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f9d8-1f3fb.svg b/public/emoji/1f9d8-1f3fb.svg
index b40f1d8b6725632c1356e759d0e5639c88e840d4..e51d2e4390d31bc16b5135364640772d7c7d4609 100644
--- a/public/emoji/1f9d8-1f3fb.svg
+++ b/public/emoji/1f9d8-1f3fb.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#F7DECE" d="M5.001 28c-.367 0-.72-.202-.896-.553-.247-.494-.047-1.095.447-1.342l5.544-2.772.917-5.498c.091-.544.605-.913 1.151-.822.544.091.913.606.822 1.151l-1 6c-.053.315-.253.587-.539.73l-6 3c-.143.072-.296.106-.446.106zm25.998 0c-.15 0-.303-.034-.446-.105l-6-3c-.286-.144-.486-.415-.539-.73l-1-6c-.091-.545.277-1.06.822-1.151.543-.09 1.061.277 1.15.822l.916 5.498 5.545 2.772c.494.247.694.848.447 1.342-.175.35-.528.552-.895.552z"/><path fill="#4289C1" d="M13 27.25h10v4.5H13z"/><path fill="#292F33" d="M19 0c-1.264 0-2.435.393-3.402 1.061C15.402 1.031 15.205 1 15 1c-2.209 0-4 1.791-4 4v4c0 3.866 3.134 7 7 7s7-3.134 7-7V6.001C25 2.687 22.314 0 19 0z"/><path fill="#9268CA" d="M23 15H13c-2.562 0-2.458 4-2.458 4H13v9h10v-9h2.458s.104-4-2.458-4z"/><path fill="#F7DECE" d="M16 3s-.011 3.285-3 3.894V9c0 2.05 1.236 3.806 3 4.578V15c0 1.104.896 2 2 2s2-.896 2-2v-1.422c1.764-.772 3-2.528 3-4.577V6.968C16.019 6.644 16 3 16 3z"/><path fill="#DF1F32" d="M20 12h-4s0 1 2 1 2-1 2-1z"/><circle fill="#662113" cx="15.5" cy="8.5" r=".5"/><circle fill="#662113" cx="20.5" cy="8.5" r=".5"/><path fill="#C1694F" d="M17 10h2s0 1-1 1-1-1-1-1z"/><path fill="#F7DECE" d="M8.417 34.556c.308.769 1.181 1.142 1.95.834l12.395-3.803s3.49.701 3.351-1.294c-.106-1.52-2.586-2.245-4.467-1.491-1.881.754-12.395 3.803-12.395 3.803-.768.309-1.142 1.182-.834 1.951z"/><path fill="#EEC2AD" d="M25.756 30.608c-.212-.689-2.021-.422-2.456-.303-.435.12-12.47 3.844-13.453 4.16-.924.296-.364 1.06.087 1.026.033-.008.066-.01.099-.02L21.8 31.884c.877-.274 1.884-.166 2.719-.244.396-.037.802-.167.877-.202.166-.075.511-.34.36-.83z"/><path fill="#F7DECE" d="M27.583 34.556c-.308.769-1.181 1.142-1.95.834l-12.395-3.803s-3.49.701-3.351-1.294c.106-1.52 2.586-2.245 4.467-1.491 1.881.754 12.395 3.803 12.395 3.803.768.309 1.142 1.182.834 1.951z"/><path fill="#EEC2AD" d="M10.244 30.608c.212-.689 2.021-.422 2.456-.303.435.12 12.47 3.844 13.453 4.16.924.296.364 1.06-.087 1.026-.033-.008-.066-.01-.099-.02L14.2 31.884c-.877-.274-1.884-.166-2.719-.244-.396-.037-.802-.167-.877-.202-.166-.075-.511-.34-.36-.83z"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#4289C1" d="M28.632 30.563c-.178-1.426-1.568-1.931-2.257-1.931-.884 0-2.992 1.106-3.375-.585l-.037-.183-9.91-.012-.053.184c-.375 1.708-2.492.596-3.378.596-.689 0-2.079.505-2.257 1.931C7.365 30.563 14.13 33 18 33c3.873 0 10.632-2.437 10.632-2.437z"/><path fill="#F7DECE" d="M12.165 17.014c-.546-.091-1.06.278-1.151.822l-.825 4.947c-.071.043-.142.087-.217.135-1.762 1.131-1.661 3.529-2.934 4.616-.171.146-.949.766-1.203 1.325-.336.738.22.444.045.695-.406.584-.414 1.478-.127 1.686l.373.1c.557.403 2.081-1.336 2.281-2.302.3-1.443 3.075-3.25 3.589-4.653.162-.444.224-.787.173-1.074l1.106-5.145c.091-.546-.566-1.062-1.11-1.152zm17.922 12.598c-.175-.251.437-.016.101-.754-.255-.56-1.089-1.179-1.259-1.325-1.273-1.087-1.116-3.485-2.878-4.616-.083-.054-.164-.104-.243-.151l-.822-4.93c-.09-.544-.607-.912-1.15-.822-.545.091-1.235.606-1.145 1.151l1.151 5.222c-.028.272.036.592.184.998.513 1.402 3.289 3.209 3.589 4.653.201.967 1.725 2.706 2.281 2.302l.373-.1c.289-.21.225-1.044-.182-1.628z"/><path fill="#F7DECE" d="M22.757 35.82c-1.04.089-2.02-.208-3 0-.475.03-.802 0-1.277-.416s-8.287-1.515-9.713-2.465c-.658-.439-1.662-1.54-1.396-2.465.263-.913 1.139-1.429 2.198-1.455 2.065-.051 6 2.941 8.851 4.04.518.2.948-.052 1.604.119.683.178 2.317-.555 3.149-.446 1.129.149 1.574.683 1.485 1.604-.094.974-.861 1.395-1.901 1.484z"/><path fill="#EEC2AD" d="M22.757 35.82c-1.04.089-2.02-.208-3 0-.475.03-.802 0-1.277-.416s.889-2.399 1.545-2.228c.683.178 2.317-.555 3.149-.446 1.129.149 1.574.683 1.485 1.604-.095.976-.862 1.397-1.902 1.486zm-11.561-2.614c.238-.624 1.188-.891 1.634-.95s1.188.208 1.693.416c.505.208 1.118.234 1.504.085.386-.149.668-.124.958 0 .078.033.423 0 .546-.067 0 0 1.79.616 1.136.824-.653.208-5.421.524-6.074.524s-1.397-.832-1.397-.832z"/><path fill="#EEC2AD" d="M7.371 30.474c.006-.02.016-.037.022-.056.201.762.76 1.66 1.401 1.898.802.297 7.247 2.198 8.049 2.287.802.089 1.99.208 2.228.386.238.178.861.238 1.366.119.505-.119 1.782.356 2.436.208.653-.148 1.604-.445 1.782-1.247.003-.015.007-.022.011-.034.004.096.003.195-.007.302-.094.975-.861 1.396-1.901 1.485s-2.02-.208-3 0c-.475.03-.802 0-1.277-.416-.475-.416-8.287-1.515-9.713-2.465-.659-.441-1.663-1.543-1.397-2.467z"/><path fill="#F7DECE" d="M13.243 35.82c1.04.089 2.02-.208 3 0 .475.03.802 0 1.277-.416s8.287-1.515 9.713-2.465c.658-.439 1.662-1.54 1.396-2.465-.263-.913-1.139-1.429-2.198-1.455-2.065-.051-6 2.941-8.851 4.04-.518.2-.948-.052-1.604.119-.683.178-2.317-.555-3.149-.446-1.129.149-1.574.683-1.485 1.604.094.974.861 1.395 1.901 1.484z"/><path fill="#292F33" d="M19 0c-1.264 0-2.435.393-3.402 1.061C15.402 1.031 15.205 1 15 1c-2.209 0-4 1.791-4 4v4c0 3.866 3.134 7 7 7s7-3.134 7-7V6.001C25 2.687 22.314 0 19 0z"/><path fill="#9268CA" d="M22.543 15h-9.089c-2.562 0-2.912 4-2.912 4l2.458.632s.454 2.376.454 4.337S13 28 13 28s2.031.335 5 .335S23 28 23 28s-.487-2.071-.487-4.061.487-4.307.487-4.307L25.458 19s-.353-4-2.915-4z"/><path fill="#F7DECE" d="M16 11v4c0 1.104.896 2 2 2s2-.896 2-2v-4h-4z"/><path fill="#EEC2AD" d="M20 11l-4 .019V15s2 1 4 0v-4z"/><path fill="#F7DECE" d="M16 3s-.011 3.285-3 3.894V9c0 2.762 2.238 5 5 5s5-2.237 5-5V6.968C16.019 6.644 16 3 16 3z"/><path fill="#DF1F32" d="M20 12h-4s0 1 2 1 2-1 2-1z"/><path fill="#C1694F" d="M16.25 8.75h-1.5c-.137 0-.25-.113-.25-.25s.113-.25.25-.25h1.5c.138 0 .25.113.25.25s-.112.25-.25.25zm5 0h-1.5c-.138 0-.25-.113-.25-.25s.112-.25.25-.25h1.5c.138 0 .25.113.25.25s-.112.25-.25.25zM17 10h2s0 1-1 1-1-1-1-1z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f9d8-1f3fc-200d-2640-fe0f.svg b/public/emoji/1f9d8-1f3fc-200d-2640-fe0f.svg
index fb0b3cb98fb6835043f7df359f02f7718da986ad..079727076dff6bee26b7c32966a0d6388c66ac45 100644
--- a/public/emoji/1f9d8-1f3fc-200d-2640-fe0f.svg
+++ b/public/emoji/1f9d8-1f3fc-200d-2640-fe0f.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#F3D2A2" d="M5.001 28c-.367 0-.72-.202-.896-.553-.247-.494-.047-1.095.447-1.342l5.544-2.772.917-5.498c.091-.544.605-.913 1.151-.822.544.091.913.606.822 1.151l-1 6c-.053.315-.253.587-.539.73l-6 3c-.143.072-.296.106-.446.106zm25.998 0c-.15 0-.303-.034-.446-.105l-6-3c-.286-.144-.486-.415-.539-.73l-1-6c-.091-.545.277-1.06.822-1.151.543-.09 1.061.277 1.15.822l.916 5.498 5.545 2.772c.494.247.694.848.447 1.342-.175.35-.528.552-.895.552z"/><path fill="#4289C1" d="M13 27.25h10v4.5H13z"/><path fill="#FFE51E" d="M19 0c-1.264 0-2.435.393-3.402 1.061C15.402 1.031 15.205 1 15 1c-2.209 0-4 1.791-4 4v4c0 3.866 3.134 7 7 7s7-3.134 7-7V6.001C25 2.687 22.314 0 19 0z"/><path fill="#9268CA" d="M23 15H13c-2.562 0-2.458 4-2.458 4H13v9h10v-9h2.458s.104-4-2.458-4z"/><path fill="#F3D2A2" d="M16 3s-.011 3.285-3 3.894V9c0 2.05 1.236 3.806 3 4.578V15c0 1.104.896 2 2 2s2-.896 2-2v-1.422c1.764-.772 3-2.528 3-4.577V6.968C16.019 6.644 16 3 16 3z"/><path fill="#DF1F32" d="M20 12h-4s0 1 2 1 2-1 2-1z"/><circle fill="#662113" cx="15.5" cy="8.5" r=".5"/><circle fill="#662113" cx="20.5" cy="8.5" r=".5"/><path fill="#C1694F" d="M17 10h2s0 1-1 1-1-1-1-1z"/><path fill="#F3D2A2" d="M8.417 34.556c.308.769 1.181 1.142 1.95.834l12.395-3.803s3.49.701 3.351-1.294c-.106-1.52-2.586-2.245-4.467-1.491-1.881.754-12.395 3.803-12.395 3.803-.768.309-1.142 1.182-.834 1.951z"/><path fill="#E2C196" d="M25.756 30.608c-.212-.689-2.021-.422-2.456-.303-.435.12-12.47 3.844-13.453 4.16-.924.296-.364 1.06.087 1.026.033-.008.066-.01.099-.02L21.8 31.884c.877-.274 1.884-.166 2.719-.244.396-.037.802-.167.877-.202.166-.075.511-.34.36-.83z"/><path fill="#F3D2A2" d="M27.583 34.556c-.308.769-1.181 1.142-1.95.834l-12.395-3.803s-3.49.701-3.351-1.294c.106-1.52 2.586-2.245 4.467-1.491 1.881.754 12.395 3.803 12.395 3.803.768.309 1.142 1.182.834 1.951z"/><path fill="#E2C196" d="M10.244 30.608c.212-.689 2.021-.422 2.456-.303.435.12 12.47 3.844 13.453 4.16.924.296.364 1.06-.087 1.026-.033-.008-.066-.01-.099-.02L14.2 31.884c-.877-.274-1.884-.166-2.719-.244-.396-.037-.802-.167-.877-.202-.166-.075-.511-.34-.36-.83z"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#4289C1" d="M28.632 30.563c-.178-1.426-1.568-1.931-2.257-1.931-.884 0-2.992 1.106-3.375-.585l-.037-.183-9.91-.012-.053.184c-.375 1.708-2.492.596-3.378.596-.689 0-2.079.505-2.257 1.931C7.365 30.563 14.13 33 18 33c3.873 0 10.632-2.437 10.632-2.437z"/><path fill="#F3D2A2" d="M12.165 17.014c-.546-.091-1.06.278-1.151.822l-.825 4.947c-.071.043-.142.087-.217.135-1.762 1.131-1.661 3.529-2.934 4.616-.171.146-.949.766-1.203 1.325-.336.738.22.444.045.695-.406.584-.414 1.478-.127 1.686l.373.1c.557.403 2.081-1.336 2.281-2.302.3-1.443 3.075-3.25 3.589-4.653.162-.444.224-.787.173-1.074l1.106-5.145c.091-.546-.566-1.062-1.11-1.152zm17.922 12.598c-.175-.251.437-.016.101-.754-.255-.56-1.089-1.179-1.259-1.325-1.273-1.087-1.116-3.485-2.878-4.616-.083-.054-.164-.104-.243-.151l-.822-4.93c-.09-.544-.607-.912-1.15-.822-.545.091-1.235.606-1.145 1.151l1.151 5.222c-.028.272.036.592.184.998.513 1.402 3.289 3.209 3.589 4.653.201.967 1.725 2.706 2.281 2.302l.373-.1c.289-.21.225-1.044-.182-1.628z"/><path fill="#F3D2A2" d="M22.757 35.82c-1.04.089-2.02-.208-3 0-.475.03-.802 0-1.277-.416s-8.287-1.515-9.713-2.465c-.658-.439-1.662-1.54-1.396-2.465.263-.913 1.139-1.429 2.198-1.455 2.065-.051 6 2.941 8.851 4.04.518.2.948-.052 1.604.119.683.178 2.317-.555 3.149-.446 1.129.149 1.574.683 1.485 1.604-.094.974-.861 1.395-1.901 1.484z"/><path fill="#E2C196" d="M22.757 35.82c-1.04.089-2.02-.208-3 0-.475.03-.802 0-1.277-.416s.889-2.399 1.545-2.228c.683.178 2.317-.555 3.149-.446 1.129.149 1.574.683 1.485 1.604-.095.976-.862 1.397-1.902 1.486zm-11.561-2.614c.238-.624 1.188-.891 1.634-.95s1.188.208 1.693.416c.505.208 1.118.234 1.504.085.386-.149.668-.124.958 0 .078.033.423 0 .546-.067 0 0 1.79.616 1.136.824-.653.208-5.421.524-6.074.524s-1.397-.832-1.397-.832z"/><path fill="#E2C196" d="M7.371 30.474c.006-.02.016-.037.022-.056.201.762.76 1.66 1.401 1.898.802.297 7.247 2.198 8.049 2.287.802.089 1.99.208 2.228.386.238.178.861.238 1.366.119.505-.119 1.782.356 2.436.208.653-.148 1.604-.445 1.782-1.247.003-.015.007-.022.011-.034.004.096.003.195-.007.302-.094.975-.861 1.396-1.901 1.485s-2.02-.208-3 0c-.475.03-.802 0-1.277-.416-.475-.416-8.287-1.515-9.713-2.465-.659-.441-1.663-1.543-1.397-2.467z"/><path fill="#F3D2A2" d="M13.243 35.82c1.04.089 2.02-.208 3 0 .475.03.802 0 1.277-.416s8.287-1.515 9.713-2.465c.658-.439 1.662-1.54 1.396-2.465-.263-.913-1.139-1.429-2.198-1.455-2.065-.051-6 2.941-8.851 4.04-.518.2-.948-.052-1.604.119-.683.178-2.317-.555-3.149-.446-1.129.149-1.574.683-1.485 1.604.094.974.861 1.395 1.901 1.484z"/><path fill="#FFE51E" d="M19 0c-1.264 0-2.435.393-3.402 1.061C15.402 1.031 15.205 1 15 1c-2.209 0-4 1.791-4 4v4c0 3.866 3.134 7 7 7s7-3.134 7-7V6.001C25 2.687 22.314 0 19 0z"/><path fill="#9268CA" d="M22.543 15h-9.089c-2.562 0-2.912 4-2.912 4l2.458.632s.454 2.376.454 4.337S13 28 13 28s2.031.335 5 .335S23 28 23 28s-.487-2.071-.487-4.061.487-4.307.487-4.307L25.458 19s-.353-4-2.915-4z"/><path fill="#F3D2A2" d="M16 11v4c0 1.104.896 2 2 2s2-.896 2-2v-4h-4z"/><path fill="#E2C196" d="M20 11l-4 .019V15s2 1 4 0v-4z"/><path fill="#F3D2A2" d="M16 3s-.011 3.285-3 3.894V9c0 2.762 2.238 5 5 5s5-2.237 5-5V6.968C16.019 6.644 16 3 16 3z"/><path fill="#DF1F32" d="M20 12h-4s0 1 2 1 2-1 2-1z"/><path fill="#C1694F" d="M16.25 8.75h-1.5c-.137 0-.25-.113-.25-.25s.113-.25.25-.25h1.5c.138 0 .25.113.25.25s-.112.25-.25.25zm5 0h-1.5c-.138 0-.25-.113-.25-.25s.112-.25.25-.25h1.5c.138 0 .25.113.25.25s-.112.25-.25.25zM17 10h2s0 1-1 1-1-1-1-1z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f9d8-1f3fc-200d-2642-fe0f.svg b/public/emoji/1f9d8-1f3fc-200d-2642-fe0f.svg
index 5c4a81ada0a584d60e9b555b2e9e6bd2595b4fbb..9e4c8d06869eff15e15d23f74ddbf79dcad0eaaa 100644
--- a/public/emoji/1f9d8-1f3fc-200d-2642-fe0f.svg
+++ b/public/emoji/1f9d8-1f3fc-200d-2642-fe0f.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><g fill="#F3D2A2"><path d="M11.561 24.806L5.82 27.855c-.607.322-1.368.089-1.69-.518-.322-.607-.089-1.368.518-1.69l5.741-3.048c.607-.322 1.368-.089 1.69.518.322.606.089 1.367-.518 1.689z"/><path d="M13.48 17.493l-1.266 6.375c-.134.674-.795 1.116-1.47.983-.674-.134-1.116-.795-.983-1.47l1.266-6.375c.134-.674.795-1.116 1.47-.983.674.135 1.117.796.983 1.47z"/></g><g fill="#F3D2A2"><path d="M24.439 24.806l5.741 3.048c.607.322 1.368.089 1.69-.518.322-.607.089-1.368-.518-1.69l-5.741-3.048c-.607-.322-1.368-.089-1.69.518-.322.607-.089 1.368.518 1.69z"/><path d="M22.52 17.493l1.266 6.375c.134.674.795 1.116 1.47.983.674-.134 1.116-.795.983-1.47l-1.266-6.375c-.134-.674-.795-1.116-1.47-.983-.674.135-1.117.796-.983 1.47z"/></g><path fill="#4289B1" d="M22.999 31.75s0 1.25-5 1.25-5-1.25-5-1.25v-5.5h10v5.5z"/><path fill="#77B255" d="M22.999 15h-10c-2.562 0-2.458 4-2.458 4h2.458v9h10v-9h2.458s.105-4-2.458-4z"/><path fill="#F3D2A2" d="M15.667 10.389v4.666c0 .312 1.045 1.093 2.333 1.093 1.288 0 2.333-.819 2.333-1.093v-4.666h-4.666z"/><path fill="#F3D2A2" d="M22.954 3.966h-9.908v5.433c0 2.737 2.218 4.954 4.954 4.954 2.736 0 4.954-2.217 4.954-4.954V3.966z"/><path fill="#C1694F" d="M19.982 12.057h-3.964s0 .991 1.982.991 1.982-.991 1.982-.991z"/><circle fill="#662113" cx="15.5" cy="8.5" r=".495"/><circle fill="#662113" cx="20.5" cy="8.5" r=".495"/><path fill="#C1694F" d="M17.009 10.076h1.982s0 .991-.991.991-.991-.991-.991-.991z"/><path fill="#FFE51E" d="M18 .953c3.385 0 5.5 2.579 5.5 4.728 0 2.149-.423 3.009-.846 2.149l-.846-1.719s-2.538 0-3.384-.86c0 0 1.269 2.579-1.269 0 0 0 .423 1.72-2.115-.429 0 0-1.269.86-1.692 3.008-.117.597-.846 0-.846-2.149C12.5 3.532 14.192.953 18 .953"/><path fill="#F3D2A2" d="M26.587 29.054s-1.533-.374-2.532-.349c-.23-.03-.469-.016-.706.051l-12.977 3.721c-.925.265-1.465 1.239-1.2 2.165.265.925 1.239 1.465 2.165 1.2l11.942-3.425c.883-.253 1.988-.044 2.826-.061.838-.017 1.632-.478 1.766-1.431.134-.953-.331-1.737-1.284-1.871z"/><path fill="#E2C196" d="M27.136 31.402c-.196-.694-2.206-.474-2.644-.365s-12.556 3.551-13.547 3.844c-.93.275-.388 1.051.063 1.028.033-.007.066-.008.1-.018l11.942-3.425c.883-.253 1.99-.003 2.826-.061.397-.027.806-.148.881-.181.168-.071.518-.328.379-.822z"/><path fill="#F3D2A2" d="M9.413 29.054s1.533-.374 2.532-.349c.23-.03.469-.016.706.051l12.977 3.721c.925.265 1.465 1.239 1.2 2.165-.265.925-1.239 1.465-2.165 1.2L12.72 32.418c-.883-.253-1.988-.044-2.826-.061-.838-.017-1.632-.478-1.766-1.431-.133-.954.332-1.738 1.285-1.872z"/><path fill="#E2C196" d="M8.864 31.402c.196-.694 2.206-.474 2.644-.365s12.556 3.551 13.547 3.844c.93.275.388 1.051-.063 1.028-.033-.007-.066-.008-.1-.018L12.95 32.467c-.883-.253-1.99-.003-2.826-.061-.397-.027-.806-.148-.881-.181-.168-.072-.518-.329-.379-.823z"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#4289C1" d="M28.632 30.563c-.178-1.426-1.568-1.931-2.257-1.931-.884 0-2.992 1.106-3.375-.585l-.037-.183-9.91-.012-.053.184c-.375 1.708-2.492.596-3.378.596-.689 0-2.079.505-2.257 1.931C7.365 30.563 14.13 33 18 33c3.873 0 10.632-2.437 10.632-2.437z"/><path fill="#F3D2A2" d="M12.497 16.024c-.674-.134-1.336 1.309-1.47 1.983L9.846 23.02c-1.619 1.166-1.57 3.454-2.808 4.512-.171.146-.949.766-1.203 1.325-.336.738.22.444.045.695-.406.584-.414 1.478-.127 1.686l.373.1c.557.403 2.081-1.336 2.281-2.302.3-1.443 3.075-3.25 3.589-4.653.006-.017.007-.029.013-.046.097-.138.169-.294.204-.469l1.266-6.375c.135-.674-.308-1.335-.982-1.469zm17.59 13.588c-.175-.251.437-.016.101-.754-.255-.56-1.089-1.179-1.259-1.325-1.246-1.064-1.133-3.377-2.781-4.535l-1.176-4.99c-.134-.674-.795-2.117-1.47-1.983-.674.134-1.116.795-.983 1.47l1.266 6.375c.038.191.125.355.236.501l.004.014c.513 1.402 3.289 3.209 3.589 4.653.201.967 1.725 2.706 2.281 2.302l.373-.1c.29-.21.226-1.044-.181-1.628z"/><path fill="#F3D2A2" d="M22.757 35.82c-1.04.089-2.02-.208-3 0-.475.03-.802 0-1.277-.416s-8.287-1.515-9.713-2.465c-.658-.439-1.662-1.54-1.396-2.465.263-.913 1.139-1.429 2.198-1.455 2.065-.051 6 2.941 8.851 4.04.518.2.948-.052 1.604.119.683.178 2.317-.555 3.149-.446 1.129.149 1.574.683 1.485 1.604-.094.974-.861 1.395-1.901 1.484z"/><path fill="#E2C196" d="M22.757 35.82c-1.04.089-2.02-.208-3 0-.475.03-.802 0-1.277-.416s.889-2.399 1.545-2.228c.683.178 2.317-.555 3.149-.446 1.129.149 1.574.683 1.485 1.604-.095.976-.862 1.397-1.902 1.486zm-11.561-2.614c.238-.624 1.188-.891 1.634-.95s1.188.208 1.693.416c.505.208 1.118.234 1.504.085.386-.149.668-.124.958 0 .078.033.423 0 .546-.067 0 0 1.79.616 1.136.824-.653.208-5.421.524-6.074.524s-1.397-.832-1.397-.832z"/><path fill="#E2C196" d="M7.371 30.474c.006-.02.016-.037.022-.056.201.762.76 1.66 1.401 1.898.802.297 7.247 2.198 8.049 2.287.802.089 1.99.208 2.228.386.238.178.861.238 1.366.119.505-.119 1.782.356 2.436.208.653-.148 1.604-.445 1.782-1.247.003-.015.007-.022.011-.034.004.096.003.195-.007.302-.094.975-.861 1.396-1.901 1.485s-2.02-.208-3 0c-.475.03-.802 0-1.277-.416-.475-.416-8.287-1.515-9.713-2.465-.659-.441-1.663-1.543-1.397-2.467z"/><path fill="#F3D2A2" d="M13.243 35.82c1.04.089 2.02-.208 3 0 .475.03.802 0 1.277-.416s8.287-1.515 9.713-2.465c.658-.439 1.662-1.54 1.396-2.465-.263-.913-1.139-1.429-2.198-1.455-2.065-.051-6 2.941-8.851 4.04-.518.2-.948-.052-1.604.119-.683.178-2.317-.555-3.149-.446-1.129.149-1.574.683-1.485 1.604.094.974.861 1.395 1.901 1.484z"/><path fill="#77B255" d="M22.543 15h-9.06c-2.562 0-2.943 4.394-2.943 4.394l2.458.535s.31 3.589.271 5.27c-.038 1.682-.27 2.801-.27 2.801s1.912.394 5 .394 5-.394 5-.394-.349-1.606-.349-2.978.349-5.093.349-5.093l2.458-.535S25.105 15 22.543 15z"/><path fill="#F3D2A2" d="M15.667 10.389v4.666c0 .312.553 1.488 2.333 1.488 1.781 0 2.333-1.214 2.333-1.488v-4.666h-4.666z"/><path fill="#E2C196" d="M20.333 9.774l-4.666.022v4.644s2.333 1.167 4.666 0V9.774z"/><path fill="#F3D2A2" d="M22.954 3.966h-9.908v5.433c0 2.737 2.218 4.954 4.954 4.954 2.736 0 4.954-2.217 4.954-4.954V3.966z"/><path fill="#C1694F" d="M19.982 12.057h-3.964s0 .991 1.982.991 1.982-.991 1.982-.991zM16.25 8.75h-1.5c-.137 0-.25-.113-.25-.25s.113-.25.25-.25h1.5c.138 0 .25.113.25.25s-.112.25-.25.25zm5 0h-1.5c-.138 0-.25-.113-.25-.25s.112-.25.25-.25h1.5c.138 0 .25.113.25.25s-.112.25-.25.25zm-4.241 1.326h1.982s0 .991-.991.991-.991-.991-.991-.991z"/><path fill="#FFE51E" d="M18 .953c3.385 0 5.5 2.579 5.5 4.728 0 2.149-.423 3.009-.846 2.149l-.846-1.719s-2.538 0-3.384-.86c0 0 1.269 2.579-1.269 0 0 0 .423 1.72-2.115-.429 0 0-1.269.86-1.692 3.008-.117.597-.846 0-.846-2.149C12.5 3.532 14.192.953 18 .953"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f9d8-1f3fc.svg b/public/emoji/1f9d8-1f3fc.svg
index fb0b3cb98fb6835043f7df359f02f7718da986ad..079727076dff6bee26b7c32966a0d6388c66ac45 100644
--- a/public/emoji/1f9d8-1f3fc.svg
+++ b/public/emoji/1f9d8-1f3fc.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#F3D2A2" d="M5.001 28c-.367 0-.72-.202-.896-.553-.247-.494-.047-1.095.447-1.342l5.544-2.772.917-5.498c.091-.544.605-.913 1.151-.822.544.091.913.606.822 1.151l-1 6c-.053.315-.253.587-.539.73l-6 3c-.143.072-.296.106-.446.106zm25.998 0c-.15 0-.303-.034-.446-.105l-6-3c-.286-.144-.486-.415-.539-.73l-1-6c-.091-.545.277-1.06.822-1.151.543-.09 1.061.277 1.15.822l.916 5.498 5.545 2.772c.494.247.694.848.447 1.342-.175.35-.528.552-.895.552z"/><path fill="#4289C1" d="M13 27.25h10v4.5H13z"/><path fill="#FFE51E" d="M19 0c-1.264 0-2.435.393-3.402 1.061C15.402 1.031 15.205 1 15 1c-2.209 0-4 1.791-4 4v4c0 3.866 3.134 7 7 7s7-3.134 7-7V6.001C25 2.687 22.314 0 19 0z"/><path fill="#9268CA" d="M23 15H13c-2.562 0-2.458 4-2.458 4H13v9h10v-9h2.458s.104-4-2.458-4z"/><path fill="#F3D2A2" d="M16 3s-.011 3.285-3 3.894V9c0 2.05 1.236 3.806 3 4.578V15c0 1.104.896 2 2 2s2-.896 2-2v-1.422c1.764-.772 3-2.528 3-4.577V6.968C16.019 6.644 16 3 16 3z"/><path fill="#DF1F32" d="M20 12h-4s0 1 2 1 2-1 2-1z"/><circle fill="#662113" cx="15.5" cy="8.5" r=".5"/><circle fill="#662113" cx="20.5" cy="8.5" r=".5"/><path fill="#C1694F" d="M17 10h2s0 1-1 1-1-1-1-1z"/><path fill="#F3D2A2" d="M8.417 34.556c.308.769 1.181 1.142 1.95.834l12.395-3.803s3.49.701 3.351-1.294c-.106-1.52-2.586-2.245-4.467-1.491-1.881.754-12.395 3.803-12.395 3.803-.768.309-1.142 1.182-.834 1.951z"/><path fill="#E2C196" d="M25.756 30.608c-.212-.689-2.021-.422-2.456-.303-.435.12-12.47 3.844-13.453 4.16-.924.296-.364 1.06.087 1.026.033-.008.066-.01.099-.02L21.8 31.884c.877-.274 1.884-.166 2.719-.244.396-.037.802-.167.877-.202.166-.075.511-.34.36-.83z"/><path fill="#F3D2A2" d="M27.583 34.556c-.308.769-1.181 1.142-1.95.834l-12.395-3.803s-3.49.701-3.351-1.294c.106-1.52 2.586-2.245 4.467-1.491 1.881.754 12.395 3.803 12.395 3.803.768.309 1.142 1.182.834 1.951z"/><path fill="#E2C196" d="M10.244 30.608c.212-.689 2.021-.422 2.456-.303.435.12 12.47 3.844 13.453 4.16.924.296.364 1.06-.087 1.026-.033-.008-.066-.01-.099-.02L14.2 31.884c-.877-.274-1.884-.166-2.719-.244-.396-.037-.802-.167-.877-.202-.166-.075-.511-.34-.36-.83z"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#4289C1" d="M28.632 30.563c-.178-1.426-1.568-1.931-2.257-1.931-.884 0-2.992 1.106-3.375-.585l-.037-.183-9.91-.012-.053.184c-.375 1.708-2.492.596-3.378.596-.689 0-2.079.505-2.257 1.931C7.365 30.563 14.13 33 18 33c3.873 0 10.632-2.437 10.632-2.437z"/><path fill="#F3D2A2" d="M12.165 17.014c-.546-.091-1.06.278-1.151.822l-.825 4.947c-.071.043-.142.087-.217.135-1.762 1.131-1.661 3.529-2.934 4.616-.171.146-.949.766-1.203 1.325-.336.738.22.444.045.695-.406.584-.414 1.478-.127 1.686l.373.1c.557.403 2.081-1.336 2.281-2.302.3-1.443 3.075-3.25 3.589-4.653.162-.444.224-.787.173-1.074l1.106-5.145c.091-.546-.566-1.062-1.11-1.152zm17.922 12.598c-.175-.251.437-.016.101-.754-.255-.56-1.089-1.179-1.259-1.325-1.273-1.087-1.116-3.485-2.878-4.616-.083-.054-.164-.104-.243-.151l-.822-4.93c-.09-.544-.607-.912-1.15-.822-.545.091-1.235.606-1.145 1.151l1.151 5.222c-.028.272.036.592.184.998.513 1.402 3.289 3.209 3.589 4.653.201.967 1.725 2.706 2.281 2.302l.373-.1c.289-.21.225-1.044-.182-1.628z"/><path fill="#F3D2A2" d="M22.757 35.82c-1.04.089-2.02-.208-3 0-.475.03-.802 0-1.277-.416s-8.287-1.515-9.713-2.465c-.658-.439-1.662-1.54-1.396-2.465.263-.913 1.139-1.429 2.198-1.455 2.065-.051 6 2.941 8.851 4.04.518.2.948-.052 1.604.119.683.178 2.317-.555 3.149-.446 1.129.149 1.574.683 1.485 1.604-.094.974-.861 1.395-1.901 1.484z"/><path fill="#E2C196" d="M22.757 35.82c-1.04.089-2.02-.208-3 0-.475.03-.802 0-1.277-.416s.889-2.399 1.545-2.228c.683.178 2.317-.555 3.149-.446 1.129.149 1.574.683 1.485 1.604-.095.976-.862 1.397-1.902 1.486zm-11.561-2.614c.238-.624 1.188-.891 1.634-.95s1.188.208 1.693.416c.505.208 1.118.234 1.504.085.386-.149.668-.124.958 0 .078.033.423 0 .546-.067 0 0 1.79.616 1.136.824-.653.208-5.421.524-6.074.524s-1.397-.832-1.397-.832z"/><path fill="#E2C196" d="M7.371 30.474c.006-.02.016-.037.022-.056.201.762.76 1.66 1.401 1.898.802.297 7.247 2.198 8.049 2.287.802.089 1.99.208 2.228.386.238.178.861.238 1.366.119.505-.119 1.782.356 2.436.208.653-.148 1.604-.445 1.782-1.247.003-.015.007-.022.011-.034.004.096.003.195-.007.302-.094.975-.861 1.396-1.901 1.485s-2.02-.208-3 0c-.475.03-.802 0-1.277-.416-.475-.416-8.287-1.515-9.713-2.465-.659-.441-1.663-1.543-1.397-2.467z"/><path fill="#F3D2A2" d="M13.243 35.82c1.04.089 2.02-.208 3 0 .475.03.802 0 1.277-.416s8.287-1.515 9.713-2.465c.658-.439 1.662-1.54 1.396-2.465-.263-.913-1.139-1.429-2.198-1.455-2.065-.051-6 2.941-8.851 4.04-.518.2-.948-.052-1.604.119-.683.178-2.317-.555-3.149-.446-1.129.149-1.574.683-1.485 1.604.094.974.861 1.395 1.901 1.484z"/><path fill="#FFE51E" d="M19 0c-1.264 0-2.435.393-3.402 1.061C15.402 1.031 15.205 1 15 1c-2.209 0-4 1.791-4 4v4c0 3.866 3.134 7 7 7s7-3.134 7-7V6.001C25 2.687 22.314 0 19 0z"/><path fill="#9268CA" d="M22.543 15h-9.089c-2.562 0-2.912 4-2.912 4l2.458.632s.454 2.376.454 4.337S13 28 13 28s2.031.335 5 .335S23 28 23 28s-.487-2.071-.487-4.061.487-4.307.487-4.307L25.458 19s-.353-4-2.915-4z"/><path fill="#F3D2A2" d="M16 11v4c0 1.104.896 2 2 2s2-.896 2-2v-4h-4z"/><path fill="#E2C196" d="M20 11l-4 .019V15s2 1 4 0v-4z"/><path fill="#F3D2A2" d="M16 3s-.011 3.285-3 3.894V9c0 2.762 2.238 5 5 5s5-2.237 5-5V6.968C16.019 6.644 16 3 16 3z"/><path fill="#DF1F32" d="M20 12h-4s0 1 2 1 2-1 2-1z"/><path fill="#C1694F" d="M16.25 8.75h-1.5c-.137 0-.25-.113-.25-.25s.113-.25.25-.25h1.5c.138 0 .25.113.25.25s-.112.25-.25.25zm5 0h-1.5c-.138 0-.25-.113-.25-.25s.112-.25.25-.25h1.5c.138 0 .25.113.25.25s-.112.25-.25.25zM17 10h2s0 1-1 1-1-1-1-1z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f9d8-1f3fd-200d-2640-fe0f.svg b/public/emoji/1f9d8-1f3fd-200d-2640-fe0f.svg
index 6e5be98c9d40fe242074fb5b8f6a931824ca3f0e..010541a1eb002a073c4fd824a5d8583ef5a04c6e 100644
--- a/public/emoji/1f9d8-1f3fd-200d-2640-fe0f.svg
+++ b/public/emoji/1f9d8-1f3fd-200d-2640-fe0f.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#D5AB88" d="M5.001 28c-.367 0-.72-.202-.896-.553-.247-.494-.047-1.095.447-1.342l5.544-2.772.917-5.498c.091-.544.605-.913 1.151-.822.544.091.913.606.822 1.151l-1 6c-.053.315-.253.587-.539.73l-6 3c-.143.072-.296.106-.446.106zm25.998 0c-.15 0-.303-.034-.446-.105l-6-3c-.286-.144-.486-.415-.539-.73l-1-6c-.091-.545.277-1.06.822-1.151.543-.09 1.061.277 1.15.822l.916 5.498 5.545 2.772c.494.247.694.848.447 1.342-.175.35-.528.552-.895.552z"/><path fill="#4289C1" d="M13 27.25h10v4.5H13z"/><path fill="#963B22" d="M19 0c-1.264 0-2.435.393-3.402 1.061C15.402 1.031 15.205 1 15 1c-2.209 0-4 1.791-4 4v4c0 3.866 3.134 7 7 7s7-3.134 7-7V6.001C25 2.687 22.314 0 19 0z"/><path fill="#9268CA" d="M23 15H13c-2.562 0-2.458 4-2.458 4H13v9h10v-9h2.458s.104-4-2.458-4z"/><path fill="#D5AB88" d="M16 11v4c0 1.104.896 2 2 2s2-.896 2-2v-4h-4z"/><path fill="#D5AB88" d="M16 3s-.011 3.285-3 3.894V9c0 2.762 2.238 5 5 5s5-2.237 5-5V6.968C16.019 6.644 16 3 16 3z"/><path fill="#DF1F32" d="M20 12h-4s0 1 2 1 2-1 2-1z"/><circle fill="#662113" cx="15.5" cy="8.5" r=".5"/><circle fill="#662113" cx="20.5" cy="8.5" r=".5"/><path fill="#C1694F" d="M17 10h2s0 1-1 1-1-1-1-1z"/><path fill="#D5AB88" d="M8.417 34.556c.308.769 1.181 1.142 1.95.834l12.395-3.803s3.49.701 3.351-1.294c-.106-1.52-2.586-2.245-4.467-1.491-1.881.754-12.395 3.803-12.395 3.803-.768.309-1.142 1.182-.834 1.951z"/><path fill="#CC9B7A" d="M25.756 30.608c-.212-.689-2.021-.422-2.456-.303-.435.12-12.47 3.844-13.453 4.16-.924.296-.364 1.06.087 1.026.033-.008.066-.01.099-.02L21.8 31.884c.877-.274 1.884-.166 2.719-.244.396-.037.802-.167.877-.202.166-.075.511-.34.36-.83z"/><path fill="#D5AB88" d="M27.583 34.556c-.308.769-1.181 1.142-1.95.834l-12.395-3.803s-3.49.701-3.351-1.294c.106-1.52 2.586-2.245 4.467-1.491 1.881.754 12.395 3.803 12.395 3.803.768.309 1.142 1.182.834 1.951z"/><path fill="#CC9B7A" d="M10.244 30.608c.212-.689 2.021-.422 2.456-.303.435.12 12.47 3.844 13.453 4.16.924.296.364 1.06-.087 1.026-.033-.008-.066-.01-.099-.02L14.2 31.884c-.877-.274-1.884-.166-2.719-.244-.396-.037-.802-.167-.877-.202-.166-.075-.511-.34-.36-.83z"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#4289C1" d="M28.632 30.563c-.178-1.426-1.568-1.931-2.257-1.931-.884 0-2.992 1.106-3.375-.585l-.037-.183-9.91-.012-.053.184c-.375 1.708-2.492.596-3.378.596-.689 0-2.079.505-2.257 1.931C7.365 30.563 14.13 33 18 33c3.873 0 10.632-2.437 10.632-2.437z"/><path fill="#D4AB88" d="M12.165 17.014c-.546-.091-1.06.278-1.151.822l-.825 4.947c-.071.043-.142.087-.217.135-1.762 1.131-1.661 3.529-2.934 4.616-.171.146-.949.766-1.203 1.325-.336.738.22.444.045.695-.406.584-.414 1.478-.127 1.686l.373.1c.557.403 2.081-1.336 2.281-2.302.3-1.443 3.075-3.25 3.589-4.653.162-.444.224-.787.173-1.074l1.106-5.145c.091-.546-.566-1.062-1.11-1.152zm17.922 12.598c-.175-.251.437-.016.101-.754-.255-.56-1.089-1.179-1.259-1.325-1.273-1.087-1.116-3.485-2.878-4.616-.083-.054-.164-.104-.243-.151l-.822-4.93c-.09-.544-.607-.912-1.15-.822-.545.091-1.235.606-1.145 1.151l1.151 5.222c-.028.272.036.592.184.998.513 1.402 3.289 3.209 3.589 4.653.201.967 1.725 2.706 2.281 2.302l.373-.1c.289-.21.225-1.044-.182-1.628z"/><path fill="#D4AB88" d="M22.757 35.82c-1.04.089-2.02-.208-3 0-.475.03-.802 0-1.277-.416s-8.287-1.515-9.713-2.465c-.658-.439-1.662-1.54-1.396-2.465.263-.913 1.139-1.429 2.198-1.455 2.065-.051 6 2.941 8.851 4.04.518.2.948-.052 1.604.119.683.178 2.317-.555 3.149-.446 1.129.149 1.574.683 1.485 1.604-.094.974-.861 1.395-1.901 1.484z"/><path fill="#CC9B7A" d="M22.757 35.82c-1.04.089-2.02-.208-3 0-.475.03-.802 0-1.277-.416s.889-2.399 1.545-2.228c.683.178 2.317-.555 3.149-.446 1.129.149 1.574.683 1.485 1.604-.095.976-.862 1.397-1.902 1.486zm-11.561-2.614c.238-.624 1.188-.891 1.634-.95s1.188.208 1.693.416c.505.208 1.118.234 1.504.085.386-.149.668-.124.958 0 .078.033.423 0 .546-.067 0 0 1.79.616 1.136.824-.653.208-5.421.524-6.074.524s-1.397-.832-1.397-.832z"/><path fill="#CC9B7A" d="M7.371 30.474c.006-.02.016-.037.022-.056.201.762.76 1.66 1.401 1.898.802.297 7.247 2.198 8.049 2.287.802.089 1.99.208 2.228.386.238.178.861.238 1.366.119.505-.119 1.782.356 2.436.208.653-.148 1.604-.445 1.782-1.247.003-.015.007-.022.011-.034.004.096.003.195-.007.302-.094.975-.861 1.396-1.901 1.485s-2.02-.208-3 0c-.475.03-.802 0-1.277-.416-.475-.416-8.287-1.515-9.713-2.465-.659-.441-1.663-1.543-1.397-2.467z"/><path fill="#D4AB88" d="M13.243 35.82c1.04.089 2.02-.208 3 0 .475.03.802 0 1.277-.416s8.287-1.515 9.713-2.465c.658-.439 1.662-1.54 1.396-2.465-.263-.913-1.139-1.429-2.198-1.455-2.065-.051-6 2.941-8.851 4.04-.518.2-.948-.052-1.604.119-.683.178-2.317-.555-3.149-.446-1.129.149-1.574.683-1.485 1.604.094.974.861 1.395 1.901 1.484z"/><path fill="#963B22" d="M19 0c-1.264 0-2.435.393-3.402 1.061C15.402 1.031 15.205 1 15 1c-2.209 0-4 1.791-4 4v4c0 3.866 3.134 7 7 7s7-3.134 7-7V6.001C25 2.687 22.314 0 19 0z"/><path fill="#9268CA" d="M22.543 15h-9.089c-2.562 0-2.912 4-2.912 4l2.458.632s.454 2.376.454 4.337S13 28 13 28s2.031.335 5 .335S23 28 23 28s-.487-2.071-.487-4.061.487-4.307.487-4.307L25.458 19s-.353-4-2.915-4z"/><path fill="#D4AB88" d="M16 11v4c0 1.104.896 2 2 2s2-.896 2-2v-4h-4z"/><path fill="#CC9B7A" d="M20 11l-4 .019V15s2 1 4 0v-4z"/><path fill="#D4AB88" d="M16 3s-.011 3.285-3 3.894V9c0 2.762 2.238 5 5 5s5-2.237 5-5V6.968C16.019 6.644 16 3 16 3z"/><path fill="#DF1F32" d="M20 12h-4s0 1 2 1 2-1 2-1z"/><path fill="#C1694F" d="M16.25 8.75h-1.5c-.137 0-.25-.113-.25-.25s.113-.25.25-.25h1.5c.138 0 .25.113.25.25s-.112.25-.25.25zm5 0h-1.5c-.138 0-.25-.113-.25-.25s.112-.25.25-.25h1.5c.138 0 .25.113.25.25s-.112.25-.25.25zM17 10h2s0 1-1 1-1-1-1-1z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f9d8-1f3fd-200d-2642-fe0f.svg b/public/emoji/1f9d8-1f3fd-200d-2642-fe0f.svg
index 586840250ea40a0dfc49b4bcc7df26b2e1fbd8f7..6c3b34f59003d9c08de2c18ae4bcab2f43f52f57 100644
--- a/public/emoji/1f9d8-1f3fd-200d-2642-fe0f.svg
+++ b/public/emoji/1f9d8-1f3fd-200d-2642-fe0f.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><g fill="#D5AB88"><path d="M11.561 24.806L5.82 27.855c-.607.322-1.368.089-1.69-.518-.322-.607-.089-1.368.518-1.69l5.741-3.048c.607-.322 1.368-.089 1.69.518.322.606.089 1.367-.518 1.689z"/><path d="M13.48 17.493l-1.266 6.375c-.134.674-.795 1.116-1.47.983-.674-.134-1.116-.795-.983-1.47l1.266-6.375c.134-.674.795-1.116 1.47-.983.674.135 1.117.796.983 1.47z"/></g><g fill="#D5AB88"><path d="M24.439 24.806l5.741 3.048c.607.322 1.368.089 1.69-.518.322-.607.089-1.368-.518-1.69l-5.741-3.048c-.607-.322-1.368-.089-1.69.518-.322.607-.089 1.368.518 1.69z"/><path d="M22.52 17.493l1.266 6.375c.134.674.795 1.116 1.47.983.674-.134 1.116-.795.983-1.47l-1.266-6.375c-.134-.674-.795-1.116-1.47-.983-.674.135-1.117.796-.983 1.47z"/></g><path fill="#4289B1" d="M22.999 31.75s0 1.25-5 1.25-5-1.25-5-1.25v-5.5h10v5.5z"/><path fill="#77B255" d="M22.999 15h-10c-2.562 0-2.458 4-2.458 4h2.458v9h10v-9h2.458s.105-4-2.458-4z"/><path fill="#D5AB88" d="M15.667 10.389v4.666c0 .312 1.045 1.093 2.333 1.093 1.288 0 2.333-.819 2.333-1.093v-4.666h-4.666z"/><path fill="#D5AB88" d="M22.954 3.966h-9.908v5.433c0 2.737 2.218 4.954 4.954 4.954 2.736 0 4.954-2.217 4.954-4.954V3.966z"/><path fill="#C1694F" d="M19.982 12.057h-3.964s0 .991 1.982.991 1.982-.991 1.982-.991z"/><circle fill="#662113" cx="15.5" cy="8.5" r=".495"/><circle fill="#662113" cx="20.5" cy="8.5" r=".495"/><path fill="#C1694F" d="M17.009 10.076h1.982s0 .991-.991.991-.991-.991-.991-.991z"/><path fill="#963B22" d="M18 .953c3.385 0 5.5 2.579 5.5 4.728 0 2.149-.423 3.009-.846 2.149l-.846-1.719s-2.538 0-3.384-.86c0 0 1.269 2.579-1.269 0 0 0 .423 1.72-2.115-.429 0 0-1.269.86-1.692 3.008-.117.597-.846 0-.846-2.149C12.5 3.532 14.192.953 18 .953"/><path fill="#D5AB88" d="M26.587 29.054s-1.533-.374-2.532-.349c-.23-.03-.469-.016-.706.051l-12.977 3.721c-.925.265-1.465 1.239-1.2 2.165.265.925 1.239 1.465 2.165 1.2l11.942-3.425c.883-.253 1.988-.044 2.826-.061.838-.017 1.632-.478 1.766-1.431.134-.953-.331-1.737-1.284-1.871z"/><path fill="#CC9B7A" d="M27.136 31.402c-.196-.694-2.206-.474-2.644-.365s-12.556 3.551-13.547 3.844c-.93.275-.388 1.051.063 1.028.033-.007.066-.008.1-.018l11.942-3.425c.883-.253 1.99-.003 2.826-.061.397-.027.806-.148.881-.181.168-.071.518-.328.379-.822z"/><path fill="#D5AB88" d="M9.413 29.054s1.533-.374 2.532-.349c.23-.03.469-.016.706.051l12.977 3.721c.925.265 1.465 1.239 1.2 2.165-.265.925-1.239 1.465-2.165 1.2L12.72 32.418c-.883-.253-1.988-.044-2.826-.061-.838-.017-1.632-.478-1.766-1.431-.133-.954.332-1.738 1.285-1.872z"/><path fill="#CC9B7A" d="M8.864 31.402c.196-.694 2.206-.474 2.644-.365s12.556 3.551 13.547 3.844c.93.275.388 1.051-.063 1.028-.033-.007-.066-.008-.1-.018L12.95 32.467c-.883-.253-1.99-.003-2.826-.061-.397-.027-.806-.148-.881-.181-.168-.072-.518-.329-.379-.823z"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#4289C1" d="M28.632 30.563c-.178-1.426-1.568-1.931-2.257-1.931-.884 0-2.992 1.106-3.375-.585l-.037-.183-9.91-.012-.053.184c-.375 1.708-2.492.596-3.378.596-.689 0-2.079.505-2.257 1.931C7.365 30.563 14.13 33 18 33c3.873 0 10.632-2.437 10.632-2.437z"/><path fill="#D4AB88" d="M12.497 16.024c-.674-.134-1.336 1.309-1.47 1.983L9.846 23.02c-1.619 1.166-1.57 3.454-2.808 4.512-.171.146-.949.766-1.203 1.325-.336.738.22.444.045.695-.406.584-.414 1.478-.127 1.686l.373.1c.557.403 2.081-1.336 2.281-2.302.3-1.443 3.075-3.25 3.589-4.653.006-.017.007-.029.013-.046.097-.138.169-.294.204-.469l1.266-6.375c.135-.674-.308-1.335-.982-1.469zm17.59 13.588c-.175-.251.437-.016.101-.754-.255-.56-1.089-1.179-1.259-1.325-1.246-1.064-1.133-3.377-2.781-4.535l-1.176-4.99c-.134-.674-.795-2.117-1.47-1.983-.674.134-1.116.795-.983 1.47l1.266 6.375c.038.191.125.355.236.501l.004.014c.513 1.402 3.289 3.209 3.589 4.653.201.967 1.725 2.706 2.281 2.302l.373-.1c.29-.21.226-1.044-.181-1.628z"/><path fill="#D4AB88" d="M22.757 35.82c-1.04.089-2.02-.208-3 0-.475.03-.802 0-1.277-.416s-8.287-1.515-9.713-2.465c-.658-.439-1.662-1.54-1.396-2.465.263-.913 1.139-1.429 2.198-1.455 2.065-.051 6 2.941 8.851 4.04.518.2.948-.052 1.604.119.683.178 2.317-.555 3.149-.446 1.129.149 1.574.683 1.485 1.604-.094.974-.861 1.395-1.901 1.484z"/><path fill="#CC9B7A" d="M22.757 35.82c-1.04.089-2.02-.208-3 0-.475.03-.802 0-1.277-.416s.889-2.399 1.545-2.228c.683.178 2.317-.555 3.149-.446 1.129.149 1.574.683 1.485 1.604-.095.976-.862 1.397-1.902 1.486zm-11.561-2.614c.238-.624 1.188-.891 1.634-.95s1.188.208 1.693.416c.505.208 1.118.234 1.504.085.386-.149.668-.124.958 0 .078.033.423 0 .546-.067 0 0 1.79.616 1.136.824-.653.208-5.421.524-6.074.524s-1.397-.832-1.397-.832z"/><path fill="#CC9B7A" d="M7.371 30.474c.006-.02.016-.037.022-.056.201.762.76 1.66 1.401 1.898.802.297 7.247 2.198 8.049 2.287.802.089 1.99.208 2.228.386.238.178.861.238 1.366.119.505-.119 1.782.356 2.436.208.653-.148 1.604-.445 1.782-1.247.003-.015.007-.022.011-.034.004.096.003.195-.007.302-.094.975-.861 1.396-1.901 1.485s-2.02-.208-3 0c-.475.03-.802 0-1.277-.416-.475-.416-8.287-1.515-9.713-2.465-.659-.441-1.663-1.543-1.397-2.467z"/><path fill="#D4AB88" d="M13.243 35.82c1.04.089 2.02-.208 3 0 .475.03.802 0 1.277-.416s8.287-1.515 9.713-2.465c.658-.439 1.662-1.54 1.396-2.465-.263-.913-1.139-1.429-2.198-1.455-2.065-.051-6 2.941-8.851 4.04-.518.2-.948-.052-1.604.119-.683.178-2.317-.555-3.149-.446-1.129.149-1.574.683-1.485 1.604.094.974.861 1.395 1.901 1.484z"/><path fill="#77B255" d="M22.543 15h-9.06c-2.562 0-2.943 4.394-2.943 4.394l2.458.535s.31 3.589.271 5.27c-.038 1.682-.27 2.801-.27 2.801s1.912.394 5 .394 5-.394 5-.394-.349-1.606-.349-2.978.349-5.093.349-5.093l2.458-.535S25.105 15 22.543 15z"/><path fill="#D4AB88" d="M15.667 10.389v4.666c0 .312.553 1.488 2.333 1.488 1.781 0 2.333-1.214 2.333-1.488v-4.666h-4.666z"/><path fill="#CC9B7A" d="M20.333 9.774l-4.666.022v4.644s2.333 1.167 4.666 0V9.774z"/><path fill="#D4AB88" d="M22.954 3.966h-9.908v5.433c0 2.737 2.218 4.954 4.954 4.954 2.736 0 4.954-2.217 4.954-4.954V3.966z"/><path fill="#C1694F" d="M19.982 12.057h-3.964s0 .991 1.982.991 1.982-.991 1.982-.991zM16.25 8.75h-1.5c-.137 0-.25-.113-.25-.25s.113-.25.25-.25h1.5c.138 0 .25.113.25.25s-.112.25-.25.25zm5 0h-1.5c-.138 0-.25-.113-.25-.25s.112-.25.25-.25h1.5c.138 0 .25.113.25.25s-.112.25-.25.25zm-4.241 1.326h1.982s0 .991-.991.991-.991-.991-.991-.991z"/><path fill="#963B22" d="M18 .953c3.385 0 5.5 2.579 5.5 4.728 0 2.149-.423 3.009-.846 2.149l-.846-1.719s-2.538 0-3.384-.86c0 0 1.269 2.579-1.269 0 0 0 .423 1.72-2.115-.429 0 0-1.269.86-1.692 3.008-.117.597-.846 0-.846-2.149C12.5 3.532 14.192.953 18 .953"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f9d8-1f3fd.svg b/public/emoji/1f9d8-1f3fd.svg
index 6e5be98c9d40fe242074fb5b8f6a931824ca3f0e..010541a1eb002a073c4fd824a5d8583ef5a04c6e 100644
--- a/public/emoji/1f9d8-1f3fd.svg
+++ b/public/emoji/1f9d8-1f3fd.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#D5AB88" d="M5.001 28c-.367 0-.72-.202-.896-.553-.247-.494-.047-1.095.447-1.342l5.544-2.772.917-5.498c.091-.544.605-.913 1.151-.822.544.091.913.606.822 1.151l-1 6c-.053.315-.253.587-.539.73l-6 3c-.143.072-.296.106-.446.106zm25.998 0c-.15 0-.303-.034-.446-.105l-6-3c-.286-.144-.486-.415-.539-.73l-1-6c-.091-.545.277-1.06.822-1.151.543-.09 1.061.277 1.15.822l.916 5.498 5.545 2.772c.494.247.694.848.447 1.342-.175.35-.528.552-.895.552z"/><path fill="#4289C1" d="M13 27.25h10v4.5H13z"/><path fill="#963B22" d="M19 0c-1.264 0-2.435.393-3.402 1.061C15.402 1.031 15.205 1 15 1c-2.209 0-4 1.791-4 4v4c0 3.866 3.134 7 7 7s7-3.134 7-7V6.001C25 2.687 22.314 0 19 0z"/><path fill="#9268CA" d="M23 15H13c-2.562 0-2.458 4-2.458 4H13v9h10v-9h2.458s.104-4-2.458-4z"/><path fill="#D5AB88" d="M16 11v4c0 1.104.896 2 2 2s2-.896 2-2v-4h-4z"/><path fill="#D5AB88" d="M16 3s-.011 3.285-3 3.894V9c0 2.762 2.238 5 5 5s5-2.237 5-5V6.968C16.019 6.644 16 3 16 3z"/><path fill="#DF1F32" d="M20 12h-4s0 1 2 1 2-1 2-1z"/><circle fill="#662113" cx="15.5" cy="8.5" r=".5"/><circle fill="#662113" cx="20.5" cy="8.5" r=".5"/><path fill="#C1694F" d="M17 10h2s0 1-1 1-1-1-1-1z"/><path fill="#D5AB88" d="M8.417 34.556c.308.769 1.181 1.142 1.95.834l12.395-3.803s3.49.701 3.351-1.294c-.106-1.52-2.586-2.245-4.467-1.491-1.881.754-12.395 3.803-12.395 3.803-.768.309-1.142 1.182-.834 1.951z"/><path fill="#CC9B7A" d="M25.756 30.608c-.212-.689-2.021-.422-2.456-.303-.435.12-12.47 3.844-13.453 4.16-.924.296-.364 1.06.087 1.026.033-.008.066-.01.099-.02L21.8 31.884c.877-.274 1.884-.166 2.719-.244.396-.037.802-.167.877-.202.166-.075.511-.34.36-.83z"/><path fill="#D5AB88" d="M27.583 34.556c-.308.769-1.181 1.142-1.95.834l-12.395-3.803s-3.49.701-3.351-1.294c.106-1.52 2.586-2.245 4.467-1.491 1.881.754 12.395 3.803 12.395 3.803.768.309 1.142 1.182.834 1.951z"/><path fill="#CC9B7A" d="M10.244 30.608c.212-.689 2.021-.422 2.456-.303.435.12 12.47 3.844 13.453 4.16.924.296.364 1.06-.087 1.026-.033-.008-.066-.01-.099-.02L14.2 31.884c-.877-.274-1.884-.166-2.719-.244-.396-.037-.802-.167-.877-.202-.166-.075-.511-.34-.36-.83z"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#4289C1" d="M28.632 30.563c-.178-1.426-1.568-1.931-2.257-1.931-.884 0-2.992 1.106-3.375-.585l-.037-.183-9.91-.012-.053.184c-.375 1.708-2.492.596-3.378.596-.689 0-2.079.505-2.257 1.931C7.365 30.563 14.13 33 18 33c3.873 0 10.632-2.437 10.632-2.437z"/><path fill="#D4AB88" d="M12.165 17.014c-.546-.091-1.06.278-1.151.822l-.825 4.947c-.071.043-.142.087-.217.135-1.762 1.131-1.661 3.529-2.934 4.616-.171.146-.949.766-1.203 1.325-.336.738.22.444.045.695-.406.584-.414 1.478-.127 1.686l.373.1c.557.403 2.081-1.336 2.281-2.302.3-1.443 3.075-3.25 3.589-4.653.162-.444.224-.787.173-1.074l1.106-5.145c.091-.546-.566-1.062-1.11-1.152zm17.922 12.598c-.175-.251.437-.016.101-.754-.255-.56-1.089-1.179-1.259-1.325-1.273-1.087-1.116-3.485-2.878-4.616-.083-.054-.164-.104-.243-.151l-.822-4.93c-.09-.544-.607-.912-1.15-.822-.545.091-1.235.606-1.145 1.151l1.151 5.222c-.028.272.036.592.184.998.513 1.402 3.289 3.209 3.589 4.653.201.967 1.725 2.706 2.281 2.302l.373-.1c.289-.21.225-1.044-.182-1.628z"/><path fill="#D4AB88" d="M22.757 35.82c-1.04.089-2.02-.208-3 0-.475.03-.802 0-1.277-.416s-8.287-1.515-9.713-2.465c-.658-.439-1.662-1.54-1.396-2.465.263-.913 1.139-1.429 2.198-1.455 2.065-.051 6 2.941 8.851 4.04.518.2.948-.052 1.604.119.683.178 2.317-.555 3.149-.446 1.129.149 1.574.683 1.485 1.604-.094.974-.861 1.395-1.901 1.484z"/><path fill="#CC9B7A" d="M22.757 35.82c-1.04.089-2.02-.208-3 0-.475.03-.802 0-1.277-.416s.889-2.399 1.545-2.228c.683.178 2.317-.555 3.149-.446 1.129.149 1.574.683 1.485 1.604-.095.976-.862 1.397-1.902 1.486zm-11.561-2.614c.238-.624 1.188-.891 1.634-.95s1.188.208 1.693.416c.505.208 1.118.234 1.504.085.386-.149.668-.124.958 0 .078.033.423 0 .546-.067 0 0 1.79.616 1.136.824-.653.208-5.421.524-6.074.524s-1.397-.832-1.397-.832z"/><path fill="#CC9B7A" d="M7.371 30.474c.006-.02.016-.037.022-.056.201.762.76 1.66 1.401 1.898.802.297 7.247 2.198 8.049 2.287.802.089 1.99.208 2.228.386.238.178.861.238 1.366.119.505-.119 1.782.356 2.436.208.653-.148 1.604-.445 1.782-1.247.003-.015.007-.022.011-.034.004.096.003.195-.007.302-.094.975-.861 1.396-1.901 1.485s-2.02-.208-3 0c-.475.03-.802 0-1.277-.416-.475-.416-8.287-1.515-9.713-2.465-.659-.441-1.663-1.543-1.397-2.467z"/><path fill="#D4AB88" d="M13.243 35.82c1.04.089 2.02-.208 3 0 .475.03.802 0 1.277-.416s8.287-1.515 9.713-2.465c.658-.439 1.662-1.54 1.396-2.465-.263-.913-1.139-1.429-2.198-1.455-2.065-.051-6 2.941-8.851 4.04-.518.2-.948-.052-1.604.119-.683.178-2.317-.555-3.149-.446-1.129.149-1.574.683-1.485 1.604.094.974.861 1.395 1.901 1.484z"/><path fill="#963B22" d="M19 0c-1.264 0-2.435.393-3.402 1.061C15.402 1.031 15.205 1 15 1c-2.209 0-4 1.791-4 4v4c0 3.866 3.134 7 7 7s7-3.134 7-7V6.001C25 2.687 22.314 0 19 0z"/><path fill="#9268CA" d="M22.543 15h-9.089c-2.562 0-2.912 4-2.912 4l2.458.632s.454 2.376.454 4.337S13 28 13 28s2.031.335 5 .335S23 28 23 28s-.487-2.071-.487-4.061.487-4.307.487-4.307L25.458 19s-.353-4-2.915-4z"/><path fill="#D4AB88" d="M16 11v4c0 1.104.896 2 2 2s2-.896 2-2v-4h-4z"/><path fill="#CC9B7A" d="M20 11l-4 .019V15s2 1 4 0v-4z"/><path fill="#D4AB88" d="M16 3s-.011 3.285-3 3.894V9c0 2.762 2.238 5 5 5s5-2.237 5-5V6.968C16.019 6.644 16 3 16 3z"/><path fill="#DF1F32" d="M20 12h-4s0 1 2 1 2-1 2-1z"/><path fill="#C1694F" d="M16.25 8.75h-1.5c-.137 0-.25-.113-.25-.25s.113-.25.25-.25h1.5c.138 0 .25.113.25.25s-.112.25-.25.25zm5 0h-1.5c-.138 0-.25-.113-.25-.25s.112-.25.25-.25h1.5c.138 0 .25.113.25.25s-.112.25-.25.25zM17 10h2s0 1-1 1-1-1-1-1z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f9d8-1f3fe-200d-2640-fe0f.svg b/public/emoji/1f9d8-1f3fe-200d-2640-fe0f.svg
index 220b92fe26349b455ec511738a4cd912541455e2..71bc5ad760f96480442d40f21f56e2c7d90fb967 100644
--- a/public/emoji/1f9d8-1f3fe-200d-2640-fe0f.svg
+++ b/public/emoji/1f9d8-1f3fe-200d-2640-fe0f.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#AF7E57" d="M5.001 28c-.367 0-.72-.202-.896-.553-.247-.494-.047-1.095.447-1.342l5.544-2.772.917-5.498c.091-.544.605-.913 1.151-.822.544.091.913.606.822 1.151l-1 6c-.053.315-.253.587-.539.73l-6 3c-.143.072-.296.106-.446.106zm25.998 0c-.15 0-.303-.034-.446-.105l-6-3c-.286-.144-.486-.415-.539-.73l-1-6c-.091-.545.277-1.06.822-1.151.543-.09 1.061.277 1.15.822l.916 5.498 5.545 2.772c.494.247.694.848.447 1.342-.175.35-.528.552-.895.552z"/><path fill="#4289C1" d="M13 27.25h10v4.5H13z"/><path fill="#60352A" d="M19 0c-1.264 0-2.435.393-3.402 1.061C15.402 1.031 15.205 1 15 1c-2.209 0-4 1.791-4 4v4c0 3.866 3.134 7 7 7s7-3.134 7-7V6.001C25 2.687 22.314 0 19 0z"/><path fill="#9268CA" d="M23 15H13c-2.562 0-2.458 4-2.458 4H13v9h10v-9h2.458s.104-4-2.458-4z"/><path fill="#AF7E57" d="M16 11v4c0 1.104.896 2 2 2s2-.896 2-2v-4h-4z"/><path fill="#AF7E57" d="M16 3s-.011 3.285-3 3.894V9c0 2.762 2.238 5 5 5s5-2.237 5-5V6.968C16.019 6.644 16 3 16 3z"/><path fill="#DF1F32" d="M20 12h-4s0 1 2 1 2-1 2-1z"/><circle fill="#662113" cx="15.5" cy="8.5" r=".5"/><circle fill="#662113" cx="20.5" cy="8.5" r=".5"/><path fill="#915A34" d="M17 10h2s0 1-1 1-1-1-1-1z"/><path fill="#AF7E57" d="M8.417 34.556c.308.769 1.181 1.142 1.95.834l12.395-3.803s3.49.701 3.351-1.294c-.106-1.52-2.586-2.245-4.467-1.491-1.881.754-12.395 3.803-12.395 3.803-.768.309-1.142 1.182-.834 1.951z"/><path fill="#9B6A49" d="M25.756 30.608c-.212-.689-2.021-.422-2.456-.303-.435.12-12.47 3.844-13.453 4.16-.924.296-.364 1.06.087 1.026.033-.008.066-.01.099-.02L21.8 31.884c.877-.274 1.884-.166 2.719-.244.396-.037.802-.167.877-.202.166-.075.511-.34.36-.83z"/><path fill="#AF7E57" d="M27.583 34.556c-.308.769-1.181 1.142-1.95.834l-12.395-3.803s-3.49.701-3.351-1.294c.106-1.52 2.586-2.245 4.467-1.491 1.881.754 12.395 3.803 12.395 3.803.768.309 1.142 1.182.834 1.951z"/><path fill="#9B6A49" d="M10.244 30.608c.212-.689 2.021-.422 2.456-.303.435.12 12.47 3.844 13.453 4.16.924.296.364 1.06-.087 1.026-.033-.008-.066-.01-.099-.02L14.2 31.884c-.877-.274-1.884-.166-2.719-.244-.396-.037-.802-.167-.877-.202-.166-.075-.511-.34-.36-.83z"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#4289C1" d="M28.632 30.563c-.178-1.426-1.568-1.931-2.257-1.931-.884 0-2.992 1.106-3.375-.585l-.037-.183-9.91-.012-.053.184c-.375 1.708-2.492.596-3.378.596-.689 0-2.079.505-2.257 1.931C7.365 30.563 14.13 33 18 33c3.873 0 10.632-2.437 10.632-2.437z"/><path fill="#AF7E57" d="M12.165 17.014c-.546-.091-1.06.278-1.151.822l-.825 4.947c-.071.043-.142.087-.217.135-1.762 1.131-1.661 3.529-2.934 4.616-.171.146-.949.766-1.203 1.325-.336.738.22.444.045.695-.406.584-.414 1.478-.127 1.686l.373.1c.557.403 2.081-1.336 2.281-2.302.3-1.443 3.075-3.25 3.589-4.653.162-.444.224-.787.173-1.074l1.106-5.145c.091-.546-.566-1.062-1.11-1.152zm17.922 12.598c-.175-.251.437-.016.101-.754-.255-.56-1.089-1.179-1.259-1.325-1.273-1.087-1.116-3.485-2.878-4.616-.083-.054-.164-.104-.243-.151l-.822-4.93c-.09-.544-.607-.912-1.15-.822-.545.091-1.235.606-1.145 1.151l1.151 5.222c-.028.272.036.592.184.998.513 1.402 3.289 3.209 3.589 4.653.201.967 1.725 2.706 2.281 2.302l.373-.1c.289-.21.225-1.044-.182-1.628z"/><path fill="#AF7E57" d="M22.757 35.82c-1.04.089-2.02-.208-3 0-.475.03-.802 0-1.277-.416s-8.287-1.515-9.713-2.465c-.658-.439-1.662-1.54-1.396-2.465.263-.913 1.139-1.429 2.198-1.455 2.065-.051 6 2.941 8.851 4.04.518.2.948-.052 1.604.119.683.178 2.317-.555 3.149-.446 1.129.149 1.574.683 1.485 1.604-.094.974-.861 1.395-1.901 1.484z"/><path fill="#9B6A49" d="M22.757 35.82c-1.04.089-2.02-.208-3 0-.475.03-.802 0-1.277-.416s.889-2.399 1.545-2.228c.683.178 2.317-.555 3.149-.446 1.129.149 1.574.683 1.485 1.604-.095.976-.862 1.397-1.902 1.486zm-11.561-2.614c.238-.624 1.188-.891 1.634-.95s1.188.208 1.693.416c.505.208 1.118.234 1.504.085.386-.149.668-.124.958 0 .078.033.423 0 .546-.067 0 0 1.79.616 1.136.824-.653.208-5.421.524-6.074.524s-1.397-.832-1.397-.832z"/><path fill="#9B6A49" d="M7.371 30.474c.006-.02.016-.037.022-.056.201.762.76 1.66 1.401 1.898.802.297 7.247 2.198 8.049 2.287.802.089 1.99.208 2.228.386.238.178.861.238 1.366.119.505-.119 1.782.356 2.436.208.653-.148 1.604-.445 1.782-1.247.003-.015.007-.022.011-.034.004.096.003.195-.007.302-.094.975-.861 1.396-1.901 1.485s-2.02-.208-3 0c-.475.03-.802 0-1.277-.416-.475-.416-8.287-1.515-9.713-2.465-.659-.441-1.663-1.543-1.397-2.467z"/><path fill="#AF7E57" d="M13.243 35.82c1.04.089 2.02-.208 3 0 .475.03.802 0 1.277-.416s8.287-1.515 9.713-2.465c.658-.439 1.662-1.54 1.396-2.465-.263-.913-1.139-1.429-2.198-1.455-2.065-.051-6 2.941-8.851 4.04-.518.2-.948-.052-1.604.119-.683.178-2.317-.555-3.149-.446-1.129.149-1.574.683-1.485 1.604.094.974.861 1.395 1.901 1.484z"/><path fill="#60352A" d="M19 0c-1.264 0-2.435.393-3.402 1.061C15.402 1.031 15.205 1 15 1c-2.209 0-4 1.791-4 4v4c0 3.866 3.134 7 7 7s7-3.134 7-7V6.001C25 2.687 22.314 0 19 0z"/><path fill="#9268CA" d="M22.543 15h-9.089c-2.562 0-2.912 4-2.912 4l2.458.632s.454 2.376.454 4.337S13 28 13 28s2.031.335 5 .335S23 28 23 28s-.487-2.071-.487-4.061.487-4.307.487-4.307L25.458 19s-.353-4-2.915-4z"/><path fill="#AF7E57" d="M16 11v4c0 1.104.896 2 2 2s2-.896 2-2v-4h-4z"/><path fill="#9B6A49" d="M20 11l-4 .019V15s2 1 4 0v-4z"/><path fill="#AF7E57" d="M16 3s-.011 3.285-3 3.894V9c0 2.762 2.238 5 5 5s5-2.237 5-5V6.968C16.019 6.644 16 3 16 3z"/><path fill="#DF1F32" d="M20 12h-4s0 1 2 1 2-1 2-1z"/><path fill="#915A34" d="M16.25 8.75h-1.5c-.137 0-.25-.113-.25-.25s.113-.25.25-.25h1.5c.138 0 .25.113.25.25s-.112.25-.25.25zm5 0h-1.5c-.138 0-.25-.113-.25-.25s.112-.25.25-.25h1.5c.138 0 .25.113.25.25s-.112.25-.25.25zM17 10h2s0 1-1 1-1-1-1-1z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f9d8-1f3fe-200d-2642-fe0f.svg b/public/emoji/1f9d8-1f3fe-200d-2642-fe0f.svg
index 63897507f73d675b4c546a0af8ac9da03aeca4ac..c3629c6c704d810f944b05200bb32740841d92a4 100644
--- a/public/emoji/1f9d8-1f3fe-200d-2642-fe0f.svg
+++ b/public/emoji/1f9d8-1f3fe-200d-2642-fe0f.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><g fill="#AF7E57"><path d="M11.561 24.806L5.82 27.855c-.607.322-1.368.089-1.69-.518-.322-.607-.089-1.368.518-1.69l5.741-3.048c.607-.322 1.368-.089 1.69.518.322.606.089 1.367-.518 1.689z"/><path d="M13.48 17.493l-1.266 6.375c-.134.674-.795 1.116-1.47.983-.674-.134-1.116-.795-.983-1.47l1.266-6.375c.134-.674.795-1.116 1.47-.983.674.135 1.117.796.983 1.47z"/></g><g fill="#AF7E57"><path d="M24.439 24.806l5.741 3.048c.607.322 1.368.089 1.69-.518.322-.607.089-1.368-.518-1.69l-5.741-3.048c-.607-.322-1.368-.089-1.69.518-.322.607-.089 1.368.518 1.69z"/><path d="M22.52 17.493l1.266 6.375c.134.674.795 1.116 1.47.983.674-.134 1.116-.795.983-1.47l-1.266-6.375c-.134-.674-.795-1.116-1.47-.983-.674.135-1.117.796-.983 1.47z"/></g><path fill="#4289B1" d="M22.999 31.75s0 1.25-5 1.25-5-1.25-5-1.25v-5.5h10v5.5z"/><path fill="#77B255" d="M22.999 15h-10c-2.562 0-2.458 4-2.458 4h2.458v9h10v-9h2.458s.105-4-2.458-4z"/><path fill="#AF7E57" d="M15.667 10.389v4.666c0 .312 1.045 1.093 2.333 1.093 1.288 0 2.333-.819 2.333-1.093v-4.666h-4.666z"/><path fill="#AF7E57" d="M22.954 3.966h-9.908v5.433c0 2.737 2.218 4.954 4.954 4.954 2.736 0 4.954-2.217 4.954-4.954V3.966z"/><path fill="#915A34" d="M19.982 12.057h-3.964s0 .991 1.982.991 1.982-.991 1.982-.991z"/><circle fill="#662113" cx="15.5" cy="8.5" r=".495"/><circle fill="#662113" cx="20.5" cy="8.5" r=".495"/><path fill="#915A34" d="M17.009 10.076h1.982s0 .991-.991.991-.991-.991-.991-.991z"/><path fill="#60352A" d="M18 .953c3.385 0 5.5 2.579 5.5 4.728 0 2.149-.423 3.009-.846 2.149l-.846-1.719s-2.538 0-3.384-.86c0 0 1.269 2.579-1.269 0 0 0 .423 1.72-2.115-.429 0 0-1.269.86-1.692 3.008-.117.597-.846 0-.846-2.149C12.5 3.532 14.192.953 18 .953"/><path fill="#AF7E57" d="M26.587 29.054s-1.533-.374-2.532-.349c-.23-.03-.469-.016-.706.051l-12.977 3.721c-.925.265-1.465 1.239-1.2 2.165.265.925 1.239 1.465 2.165 1.2l11.942-3.425c.883-.253 1.988-.044 2.826-.061.838-.017 1.632-.478 1.766-1.431.134-.953-.331-1.737-1.284-1.871z"/><path fill="#9B6A49" d="M27.136 31.402c-.196-.694-2.206-.474-2.644-.365s-12.556 3.551-13.547 3.844c-.93.275-.388 1.051.063 1.028.033-.007.066-.008.1-.018l11.942-3.425c.883-.253 1.99-.003 2.826-.061.397-.027.806-.148.881-.181.168-.071.518-.328.379-.822z"/><path fill="#AF7E57" d="M9.413 29.054s1.533-.374 2.532-.349c.23-.03.469-.016.706.051l12.977 3.721c.925.265 1.465 1.239 1.2 2.165-.265.925-1.239 1.465-2.165 1.2L12.72 32.418c-.883-.253-1.988-.044-2.826-.061-.838-.017-1.632-.478-1.766-1.431-.133-.954.332-1.738 1.285-1.872z"/><path fill="#9B6A49" d="M8.864 31.402c.196-.694 2.206-.474 2.644-.365s12.556 3.551 13.547 3.844c.93.275.388 1.051-.063 1.028-.033-.007-.066-.008-.1-.018L12.95 32.467c-.883-.253-1.99-.003-2.826-.061-.397-.027-.806-.148-.881-.181-.168-.072-.518-.329-.379-.823z"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#4289C1" d="M28.632 30.563c-.178-1.426-1.568-1.931-2.257-1.931-.884 0-2.992 1.106-3.375-.585l-.037-.183-9.91-.012-.053.184c-.375 1.708-2.492.596-3.378.596-.689 0-2.079.505-2.257 1.931C7.365 30.563 14.13 33 18 33c3.873 0 10.632-2.437 10.632-2.437z"/><path fill="#AF7E57" d="M12.497 16.024c-.674-.134-1.336 1.309-1.47 1.983L9.846 23.02c-1.619 1.166-1.57 3.454-2.808 4.512-.171.146-.949.766-1.203 1.325-.336.738.22.444.045.695-.406.584-.414 1.478-.127 1.686l.373.1c.557.403 2.081-1.336 2.281-2.302.3-1.443 3.075-3.25 3.589-4.653.006-.017.007-.029.013-.046.097-.138.169-.294.204-.469l1.266-6.375c.135-.674-.308-1.335-.982-1.469zm17.59 13.588c-.175-.251.437-.016.101-.754-.255-.56-1.089-1.179-1.259-1.325-1.246-1.064-1.133-3.377-2.781-4.535l-1.176-4.99c-.134-.674-.795-2.117-1.47-1.983-.674.134-1.116.795-.983 1.47l1.266 6.375c.038.191.125.355.236.501l.004.014c.513 1.402 3.289 3.209 3.589 4.653.201.967 1.725 2.706 2.281 2.302l.373-.1c.29-.21.226-1.044-.181-1.628z"/><path fill="#AF7E57" d="M22.757 35.82c-1.04.089-2.02-.208-3 0-.475.03-.802 0-1.277-.416s-8.287-1.515-9.713-2.465c-.658-.439-1.662-1.54-1.396-2.465.263-.913 1.139-1.429 2.198-1.455 2.065-.051 6 2.941 8.851 4.04.518.2.948-.052 1.604.119.683.178 2.317-.555 3.149-.446 1.129.149 1.574.683 1.485 1.604-.094.974-.861 1.395-1.901 1.484z"/><path fill="#9B6A49" d="M22.757 35.82c-1.04.089-2.02-.208-3 0-.475.03-.802 0-1.277-.416s.889-2.399 1.545-2.228c.683.178 2.317-.555 3.149-.446 1.129.149 1.574.683 1.485 1.604-.095.976-.862 1.397-1.902 1.486zm-11.561-2.614c.238-.624 1.188-.891 1.634-.95s1.188.208 1.693.416c.505.208 1.118.234 1.504.085.386-.149.668-.124.958 0 .078.033.423 0 .546-.067 0 0 1.79.616 1.136.824-.653.208-5.421.524-6.074.524s-1.397-.832-1.397-.832z"/><path fill="#9B6A49" d="M7.371 30.474c.006-.02.016-.037.022-.056.201.762.76 1.66 1.401 1.898.802.297 7.247 2.198 8.049 2.287.802.089 1.99.208 2.228.386.238.178.861.238 1.366.119.505-.119 1.782.356 2.436.208.653-.148 1.604-.445 1.782-1.247.003-.015.007-.022.011-.034.004.096.003.195-.007.302-.094.975-.861 1.396-1.901 1.485s-2.02-.208-3 0c-.475.03-.802 0-1.277-.416-.475-.416-8.287-1.515-9.713-2.465-.659-.441-1.663-1.543-1.397-2.467z"/><path fill="#AF7E57" d="M13.243 35.82c1.04.089 2.02-.208 3 0 .475.03.802 0 1.277-.416s8.287-1.515 9.713-2.465c.658-.439 1.662-1.54 1.396-2.465-.263-.913-1.139-1.429-2.198-1.455-2.065-.051-6 2.941-8.851 4.04-.518.2-.948-.052-1.604.119-.683.178-2.317-.555-3.149-.446-1.129.149-1.574.683-1.485 1.604.094.974.861 1.395 1.901 1.484z"/><path fill="#77B255" d="M22.543 15h-9.06c-2.562 0-2.943 4.394-2.943 4.394l2.458.535s.31 3.589.271 5.27c-.038 1.682-.27 2.801-.27 2.801s1.912.394 5 .394 5-.394 5-.394-.349-1.606-.349-2.978.349-5.093.349-5.093l2.458-.535S25.105 15 22.543 15z"/><path fill="#AF7E57" d="M15.667 10.389v4.666c0 .312.553 1.488 2.333 1.488 1.781 0 2.333-1.214 2.333-1.488v-4.666h-4.666z"/><path fill="#9B6A49" d="M20.333 9.774l-4.666.022v4.644s2.333 1.167 4.666 0V9.774z"/><path fill="#AF7E57" d="M22.954 3.966h-9.908v5.433c0 2.737 2.218 4.954 4.954 4.954 2.736 0 4.954-2.217 4.954-4.954V3.966z"/><path fill="#915A34" d="M19.982 12.057h-3.964s0 .991 1.982.991 1.982-.991 1.982-.991zM16.25 8.75h-1.5c-.137 0-.25-.113-.25-.25s.113-.25.25-.25h1.5c.138 0 .25.113.25.25s-.112.25-.25.25zm5 0h-1.5c-.138 0-.25-.113-.25-.25s.112-.25.25-.25h1.5c.138 0 .25.113.25.25s-.112.25-.25.25zm-4.241 1.326h1.982s0 .991-.991.991-.991-.991-.991-.991z"/><path fill="#60352A" d="M18 .953c3.385 0 5.5 2.579 5.5 4.728 0 2.149-.423 3.009-.846 2.149l-.846-1.719s-2.538 0-3.384-.86c0 0 1.269 2.579-1.269 0 0 0 .423 1.72-2.115-.429 0 0-1.269.86-1.692 3.008-.117.597-.846 0-.846-2.149C12.5 3.532 14.192.953 18 .953"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f9d8-1f3fe.svg b/public/emoji/1f9d8-1f3fe.svg
index 220b92fe26349b455ec511738a4cd912541455e2..71bc5ad760f96480442d40f21f56e2c7d90fb967 100644
--- a/public/emoji/1f9d8-1f3fe.svg
+++ b/public/emoji/1f9d8-1f3fe.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#AF7E57" d="M5.001 28c-.367 0-.72-.202-.896-.553-.247-.494-.047-1.095.447-1.342l5.544-2.772.917-5.498c.091-.544.605-.913 1.151-.822.544.091.913.606.822 1.151l-1 6c-.053.315-.253.587-.539.73l-6 3c-.143.072-.296.106-.446.106zm25.998 0c-.15 0-.303-.034-.446-.105l-6-3c-.286-.144-.486-.415-.539-.73l-1-6c-.091-.545.277-1.06.822-1.151.543-.09 1.061.277 1.15.822l.916 5.498 5.545 2.772c.494.247.694.848.447 1.342-.175.35-.528.552-.895.552z"/><path fill="#4289C1" d="M13 27.25h10v4.5H13z"/><path fill="#60352A" d="M19 0c-1.264 0-2.435.393-3.402 1.061C15.402 1.031 15.205 1 15 1c-2.209 0-4 1.791-4 4v4c0 3.866 3.134 7 7 7s7-3.134 7-7V6.001C25 2.687 22.314 0 19 0z"/><path fill="#9268CA" d="M23 15H13c-2.562 0-2.458 4-2.458 4H13v9h10v-9h2.458s.104-4-2.458-4z"/><path fill="#AF7E57" d="M16 11v4c0 1.104.896 2 2 2s2-.896 2-2v-4h-4z"/><path fill="#AF7E57" d="M16 3s-.011 3.285-3 3.894V9c0 2.762 2.238 5 5 5s5-2.237 5-5V6.968C16.019 6.644 16 3 16 3z"/><path fill="#DF1F32" d="M20 12h-4s0 1 2 1 2-1 2-1z"/><circle fill="#662113" cx="15.5" cy="8.5" r=".5"/><circle fill="#662113" cx="20.5" cy="8.5" r=".5"/><path fill="#915A34" d="M17 10h2s0 1-1 1-1-1-1-1z"/><path fill="#AF7E57" d="M8.417 34.556c.308.769 1.181 1.142 1.95.834l12.395-3.803s3.49.701 3.351-1.294c-.106-1.52-2.586-2.245-4.467-1.491-1.881.754-12.395 3.803-12.395 3.803-.768.309-1.142 1.182-.834 1.951z"/><path fill="#9B6A49" d="M25.756 30.608c-.212-.689-2.021-.422-2.456-.303-.435.12-12.47 3.844-13.453 4.16-.924.296-.364 1.06.087 1.026.033-.008.066-.01.099-.02L21.8 31.884c.877-.274 1.884-.166 2.719-.244.396-.037.802-.167.877-.202.166-.075.511-.34.36-.83z"/><path fill="#AF7E57" d="M27.583 34.556c-.308.769-1.181 1.142-1.95.834l-12.395-3.803s-3.49.701-3.351-1.294c.106-1.52 2.586-2.245 4.467-1.491 1.881.754 12.395 3.803 12.395 3.803.768.309 1.142 1.182.834 1.951z"/><path fill="#9B6A49" d="M10.244 30.608c.212-.689 2.021-.422 2.456-.303.435.12 12.47 3.844 13.453 4.16.924.296.364 1.06-.087 1.026-.033-.008-.066-.01-.099-.02L14.2 31.884c-.877-.274-1.884-.166-2.719-.244-.396-.037-.802-.167-.877-.202-.166-.075-.511-.34-.36-.83z"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#4289C1" d="M28.632 30.563c-.178-1.426-1.568-1.931-2.257-1.931-.884 0-2.992 1.106-3.375-.585l-.037-.183-9.91-.012-.053.184c-.375 1.708-2.492.596-3.378.596-.689 0-2.079.505-2.257 1.931C7.365 30.563 14.13 33 18 33c3.873 0 10.632-2.437 10.632-2.437z"/><path fill="#AF7E57" d="M12.165 17.014c-.546-.091-1.06.278-1.151.822l-.825 4.947c-.071.043-.142.087-.217.135-1.762 1.131-1.661 3.529-2.934 4.616-.171.146-.949.766-1.203 1.325-.336.738.22.444.045.695-.406.584-.414 1.478-.127 1.686l.373.1c.557.403 2.081-1.336 2.281-2.302.3-1.443 3.075-3.25 3.589-4.653.162-.444.224-.787.173-1.074l1.106-5.145c.091-.546-.566-1.062-1.11-1.152zm17.922 12.598c-.175-.251.437-.016.101-.754-.255-.56-1.089-1.179-1.259-1.325-1.273-1.087-1.116-3.485-2.878-4.616-.083-.054-.164-.104-.243-.151l-.822-4.93c-.09-.544-.607-.912-1.15-.822-.545.091-1.235.606-1.145 1.151l1.151 5.222c-.028.272.036.592.184.998.513 1.402 3.289 3.209 3.589 4.653.201.967 1.725 2.706 2.281 2.302l.373-.1c.289-.21.225-1.044-.182-1.628z"/><path fill="#AF7E57" d="M22.757 35.82c-1.04.089-2.02-.208-3 0-.475.03-.802 0-1.277-.416s-8.287-1.515-9.713-2.465c-.658-.439-1.662-1.54-1.396-2.465.263-.913 1.139-1.429 2.198-1.455 2.065-.051 6 2.941 8.851 4.04.518.2.948-.052 1.604.119.683.178 2.317-.555 3.149-.446 1.129.149 1.574.683 1.485 1.604-.094.974-.861 1.395-1.901 1.484z"/><path fill="#9B6A49" d="M22.757 35.82c-1.04.089-2.02-.208-3 0-.475.03-.802 0-1.277-.416s.889-2.399 1.545-2.228c.683.178 2.317-.555 3.149-.446 1.129.149 1.574.683 1.485 1.604-.095.976-.862 1.397-1.902 1.486zm-11.561-2.614c.238-.624 1.188-.891 1.634-.95s1.188.208 1.693.416c.505.208 1.118.234 1.504.085.386-.149.668-.124.958 0 .078.033.423 0 .546-.067 0 0 1.79.616 1.136.824-.653.208-5.421.524-6.074.524s-1.397-.832-1.397-.832z"/><path fill="#9B6A49" d="M7.371 30.474c.006-.02.016-.037.022-.056.201.762.76 1.66 1.401 1.898.802.297 7.247 2.198 8.049 2.287.802.089 1.99.208 2.228.386.238.178.861.238 1.366.119.505-.119 1.782.356 2.436.208.653-.148 1.604-.445 1.782-1.247.003-.015.007-.022.011-.034.004.096.003.195-.007.302-.094.975-.861 1.396-1.901 1.485s-2.02-.208-3 0c-.475.03-.802 0-1.277-.416-.475-.416-8.287-1.515-9.713-2.465-.659-.441-1.663-1.543-1.397-2.467z"/><path fill="#AF7E57" d="M13.243 35.82c1.04.089 2.02-.208 3 0 .475.03.802 0 1.277-.416s8.287-1.515 9.713-2.465c.658-.439 1.662-1.54 1.396-2.465-.263-.913-1.139-1.429-2.198-1.455-2.065-.051-6 2.941-8.851 4.04-.518.2-.948-.052-1.604.119-.683.178-2.317-.555-3.149-.446-1.129.149-1.574.683-1.485 1.604.094.974.861 1.395 1.901 1.484z"/><path fill="#60352A" d="M19 0c-1.264 0-2.435.393-3.402 1.061C15.402 1.031 15.205 1 15 1c-2.209 0-4 1.791-4 4v4c0 3.866 3.134 7 7 7s7-3.134 7-7V6.001C25 2.687 22.314 0 19 0z"/><path fill="#9268CA" d="M22.543 15h-9.089c-2.562 0-2.912 4-2.912 4l2.458.632s.454 2.376.454 4.337S13 28 13 28s2.031.335 5 .335S23 28 23 28s-.487-2.071-.487-4.061.487-4.307.487-4.307L25.458 19s-.353-4-2.915-4z"/><path fill="#AF7E57" d="M16 11v4c0 1.104.896 2 2 2s2-.896 2-2v-4h-4z"/><path fill="#9B6A49" d="M20 11l-4 .019V15s2 1 4 0v-4z"/><path fill="#AF7E57" d="M16 3s-.011 3.285-3 3.894V9c0 2.762 2.238 5 5 5s5-2.237 5-5V6.968C16.019 6.644 16 3 16 3z"/><path fill="#DF1F32" d="M20 12h-4s0 1 2 1 2-1 2-1z"/><path fill="#915A34" d="M16.25 8.75h-1.5c-.137 0-.25-.113-.25-.25s.113-.25.25-.25h1.5c.138 0 .25.113.25.25s-.112.25-.25.25zm5 0h-1.5c-.138 0-.25-.113-.25-.25s.112-.25.25-.25h1.5c.138 0 .25.113.25.25s-.112.25-.25.25zM17 10h2s0 1-1 1-1-1-1-1z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f9d8-1f3ff-200d-2640-fe0f.svg b/public/emoji/1f9d8-1f3ff-200d-2640-fe0f.svg
index ab672b006168175128488b760abea51f26818268..5cc0fb7d458f33c2f359452a239ec5857b51830f 100644
--- a/public/emoji/1f9d8-1f3ff-200d-2640-fe0f.svg
+++ b/public/emoji/1f9d8-1f3ff-200d-2640-fe0f.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#7C533E" d="M5.001 28c-.367 0-.72-.202-.896-.553-.247-.494-.047-1.095.447-1.342l5.544-2.772.917-5.498c.091-.544.605-.913 1.151-.822.544.091.913.606.822 1.151l-1 6c-.053.315-.253.587-.539.73l-6 3c-.143.072-.296.106-.446.106zm25.998 0c-.15 0-.303-.034-.446-.105l-6-3c-.286-.144-.486-.415-.539-.73l-1-6c-.091-.545.277-1.06.822-1.151.543-.09 1.061.277 1.15.822l.916 5.498 5.545 2.772c.494.247.694.848.447 1.342-.175.35-.528.552-.895.552z"/><path fill="#4289C1" d="M13 27.25h10v4.5H13z"/><path fill="#0B0200" d="M19 0c-1.264 0-2.435.393-3.402 1.061C15.402 1.031 15.205 1 15 1c-2.209 0-4 1.791-4 4v4c0 3.866 3.134 7 7 7s7-3.134 7-7V6.001C25 2.687 22.314 0 19 0z"/><path fill="#9268CA" d="M23 15H13c-2.562 0-2.458 4-2.458 4H13v9h10v-9h2.458s.104-4-2.458-4z"/><path fill="#7C533E" d="M16 11v4c0 1.104.896 2 2 2s2-.896 2-2v-4h-4z"/><path fill="#7C533E" d="M16 3s-.011 3.285-3 3.894V9c0 2.762 2.238 5 5 5s5-2.237 5-5V6.968C16.019 6.644 16 3 16 3z"/><path fill="#DF1F32" d="M20 12h-4s0 1 2 1 2-1 2-1z"/><circle cx="15.5" cy="8.5" r=".5"/><circle cx="20.5" cy="8.5" r=".5"/><path fill="#3D2E24" d="M17 10h2s0 1-1 1-1-1-1-1z"/><path fill="#7C533E" d="M8.418 34.556c.308.769 1.181 1.142 1.95.834l12.395-3.803s3.49.701 3.351-1.294c-.106-1.52-2.586-2.245-4.467-1.491-1.881.754-12.395 3.803-12.395 3.803-.769.309-1.143 1.182-.834 1.951z"/><path fill="#664131" d="M25.756 30.608c-.212-.689-2.021-.422-2.456-.303-.435.12-12.47 3.844-13.453 4.16-.924.296-.364 1.06.087 1.026.033-.008.066-.01.099-.02L21.8 31.884c.877-.274 1.884-.166 2.719-.244.396-.037.802-.167.877-.202.167-.075.511-.34.36-.83z"/><path fill="#7C533E" d="M27.583 34.556c-.308.769-1.181 1.142-1.95.834l-12.395-3.803s-3.49.701-3.351-1.294c.106-1.52 2.586-2.245 4.467-1.491 1.881.754 12.395 3.803 12.395 3.803.769.309 1.142 1.182.834 1.951z"/><path fill="#664131" d="M10.244 30.608c.212-.689 2.021-.422 2.456-.303.435.12 12.47 3.844 13.453 4.16.924.296.364 1.06-.087 1.026-.033-.008-.066-.01-.099-.02L14.2 31.884c-.877-.274-1.884-.166-2.719-.244-.396-.037-.802-.167-.877-.202-.166-.075-.511-.34-.36-.83z"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#4289C1" d="M28.632 30.563c-.178-1.426-1.568-1.931-2.257-1.931-.884 0-2.992 1.106-3.375-.585l-.037-.183-9.91-.012-.053.184c-.375 1.708-2.492.596-3.378.596-.689 0-2.079.505-2.257 1.931C7.365 30.563 14.13 33 18 33c3.873 0 10.632-2.437 10.632-2.437z"/><path fill="#7C533E" d="M12.165 17.014c-.546-.091-1.06.278-1.151.822l-.825 4.947c-.071.043-.142.087-.217.135-1.762 1.131-1.661 3.529-2.934 4.616-.171.146-.949.766-1.203 1.325-.336.738.22.444.045.695-.406.584-.414 1.478-.127 1.686l.373.1c.557.403 2.081-1.336 2.281-2.302.3-1.443 3.075-3.25 3.589-4.653.162-.444.224-.787.173-1.074l1.106-5.145c.091-.546-.566-1.062-1.11-1.152zm17.922 12.598c-.175-.251.437-.016.101-.754-.255-.56-1.089-1.179-1.259-1.325-1.273-1.087-1.116-3.485-2.878-4.616-.083-.054-.164-.104-.243-.151l-.822-4.93c-.09-.544-.607-.912-1.15-.822-.545.091-1.235.606-1.145 1.151l1.151 5.222c-.028.272.036.592.184.998.513 1.402 3.289 3.209 3.589 4.653.201.967 1.725 2.706 2.281 2.302l.373-.1c.289-.21.225-1.044-.182-1.628z"/><path fill="#7C533E" d="M22.757 35.82c-1.04.089-2.02-.208-3 0-.475.03-.802 0-1.277-.416s-8.287-1.515-9.713-2.465c-.658-.439-1.662-1.54-1.396-2.465.263-.913 1.139-1.429 2.198-1.455 2.065-.051 6 2.941 8.851 4.04.518.2.948-.052 1.604.119.683.178 2.317-.555 3.149-.446 1.129.149 1.574.683 1.485 1.604-.094.974-.861 1.395-1.901 1.484z"/><path fill="#664131" d="M22.757 35.82c-1.04.089-2.02-.208-3 0-.475.03-.802 0-1.277-.416s.889-2.399 1.545-2.228c.683.178 2.317-.555 3.149-.446 1.129.149 1.574.683 1.485 1.604-.095.976-.862 1.397-1.902 1.486zm-11.561-2.614c.238-.624 1.188-.891 1.634-.95s1.188.208 1.693.416c.505.208 1.118.234 1.504.085.386-.149.668-.124.958 0 .078.033.423 0 .546-.067 0 0 1.79.616 1.136.824-.653.208-5.421.524-6.074.524s-1.397-.832-1.397-.832z"/><path fill="#664131" d="M7.371 30.474c.006-.02.016-.037.022-.056.201.762.76 1.66 1.401 1.898.802.297 7.247 2.198 8.049 2.287.802.089 1.99.208 2.228.386.238.178.861.238 1.366.119.505-.119 1.782.356 2.436.208.653-.148 1.604-.445 1.782-1.247.003-.015.007-.022.011-.034.004.096.003.195-.007.302-.094.975-.861 1.396-1.901 1.485s-2.02-.208-3 0c-.475.03-.802 0-1.277-.416-.475-.416-8.287-1.515-9.713-2.465-.659-.441-1.663-1.543-1.397-2.467z"/><path fill="#7C533E" d="M13.243 35.82c1.04.089 2.02-.208 3 0 .475.03.802 0 1.277-.416s8.287-1.515 9.713-2.465c.658-.439 1.662-1.54 1.396-2.465-.263-.913-1.139-1.429-2.198-1.455-2.065-.051-6 2.941-8.851 4.04-.518.2-.948-.052-1.604.119-.683.178-2.317-.555-3.149-.446-1.129.149-1.574.683-1.485 1.604.094.974.861 1.395 1.901 1.484z"/><path fill="#0B0200" d="M19 0c-1.264 0-2.435.393-3.402 1.061C15.402 1.031 15.205 1 15 1c-2.209 0-4 1.791-4 4v4c0 3.866 3.134 7 7 7s7-3.134 7-7V6.001C25 2.687 22.314 0 19 0z"/><path fill="#9268CA" d="M22.543 15h-9.089c-2.562 0-2.912 4-2.912 4l2.458.632s.454 2.376.454 4.337S13 28 13 28s2.031.335 5 .335S23 28 23 28s-.487-2.071-.487-4.061.487-4.307.487-4.307L25.458 19s-.353-4-2.915-4z"/><path fill="#7C533E" d="M16 11v4c0 1.104.896 2 2 2s2-.896 2-2v-4h-4z"/><path fill="#664131" d="M20 11l-4 .019V15s2 1 4 0v-4z"/><path fill="#7C533E" d="M16 3s-.011 3.285-3 3.894V9c0 2.762 2.238 5 5 5s5-2.237 5-5V6.968C16.019 6.644 16 3 16 3z"/><path fill="#DF1F32" d="M20 12h-4s0 1 2 1 2-1 2-1z"/><path fill="#3D2E24" d="M16.25 8.75h-1.5c-.137 0-.25-.113-.25-.25s.113-.25.25-.25h1.5c.138 0 .25.113.25.25s-.112.25-.25.25zm5 0h-1.5c-.138 0-.25-.113-.25-.25s.112-.25.25-.25h1.5c.138 0 .25.113.25.25s-.112.25-.25.25zM17 10h2s0 1-1 1-1-1-1-1z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f9d8-1f3ff-200d-2642-fe0f.svg b/public/emoji/1f9d8-1f3ff-200d-2642-fe0f.svg
index b49b1a5a449111f7d9998daef4b5832bfdf3936d..33acb8085c5a8c6083a7b4fca14e0adb283bad67 100644
--- a/public/emoji/1f9d8-1f3ff-200d-2642-fe0f.svg
+++ b/public/emoji/1f9d8-1f3ff-200d-2642-fe0f.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><g fill="#7C533E"><path d="M11.561 24.806L5.82 27.855c-.607.322-1.368.089-1.69-.518-.322-.607-.089-1.368.518-1.69l5.741-3.048c.607-.322 1.368-.089 1.69.518.322.606.089 1.367-.518 1.689z"/><path d="M13.48 17.493l-1.266 6.375c-.134.674-.795 1.116-1.47.983-.674-.134-1.116-.795-.983-1.47l1.266-6.375c.134-.674.795-1.116 1.47-.983.674.135 1.117.796.983 1.47z"/></g><g fill="#7C533E"><path d="M24.439 24.806l5.741 3.048c.607.322 1.368.089 1.69-.518.322-.607.089-1.368-.518-1.69l-5.741-3.048c-.607-.322-1.368-.089-1.69.518-.322.607-.089 1.368.518 1.69z"/><path d="M22.52 17.493l1.266 6.375c.134.674.795 1.116 1.47.983.674-.134 1.116-.795.983-1.47l-1.266-6.375c-.134-.674-.795-1.116-1.47-.983-.674.135-1.117.796-.983 1.47z"/></g><path fill="#4289B1" d="M22.999 31.75s0 1.25-5 1.25-5-1.25-5-1.25v-5.5h10v5.5z"/><path fill="#77B255" d="M22.999 15h-10c-2.562 0-2.458 4-2.458 4h2.458v9h10v-9h2.458s.105-4-2.458-4z"/><path fill="#7C533E" d="M15.667 10.389v4.666c0 .312 1.045 1.093 2.333 1.093 1.288 0 2.333-.819 2.333-1.093v-4.666h-4.666z"/><path fill="#7C533E" d="M22.954 3.966h-9.908v5.433c0 2.737 2.218 4.954 4.954 4.954 2.736 0 4.954-2.217 4.954-4.954V3.966z"/><path fill="#3D2E24" d="M19.982 12.057h-3.964s0 .991 1.982.991 1.982-.991 1.982-.991z"/><circle cx="15.5" cy="8.5" r=".495"/><circle cx="20.5" cy="8.5" r=".495"/><path fill="#3D2E24" d="M17.009 10.076h1.982s0 .991-.991.991-.991-.991-.991-.991z"/><path fill="#0B0200" d="M18 .953c3.385 0 5.5 2.579 5.5 4.728 0 2.149-.423 3.009-.846 2.149l-.846-1.719s-2.538 0-3.384-.86c0 0 1.269 2.579-1.269 0 0 0 .423 1.72-2.115-.429 0 0-1.269.86-1.692 3.008-.117.597-.846 0-.846-2.149C12.5 3.532 14.192.953 18 .953"/><path fill="#7C533E" d="M26.587 29.054s-1.533-.374-2.532-.349c-.23-.03-.469-.016-.706.051l-12.977 3.721c-.925.265-1.465 1.239-1.2 2.165.265.925 1.239 1.465 2.165 1.2l11.942-3.425c.883-.253 1.988-.044 2.826-.061.838-.017 1.632-.478 1.766-1.431.134-.953-.331-1.737-1.284-1.871z"/><path fill="#664131" d="M27.136 31.402c-.196-.694-2.206-.474-2.644-.365s-12.556 3.551-13.547 3.844c-.93.275-.388 1.051.063 1.028.033-.007.066-.008.1-.018l11.942-3.425c.883-.253 1.99-.003 2.826-.061.397-.027.806-.148.881-.181.168-.071.518-.328.379-.822z"/><path fill="#7C533E" d="M9.413 29.054s1.533-.374 2.532-.349c.23-.03.469-.016.706.051l12.977 3.721c.925.265 1.465 1.239 1.2 2.165-.265.925-1.239 1.465-2.165 1.2L12.72 32.418c-.883-.253-1.988-.044-2.826-.061-.838-.017-1.632-.478-1.766-1.431-.133-.954.332-1.738 1.285-1.872z"/><path fill="#664131" d="M8.864 31.402c.196-.694 2.206-.474 2.644-.365s12.556 3.551 13.547 3.844c.93.275.388 1.051-.063 1.028-.033-.007-.066-.008-.1-.018L12.95 32.467c-.883-.253-1.99-.003-2.826-.061-.397-.027-.806-.148-.881-.181-.168-.072-.518-.329-.379-.823z"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#4289C1" d="M28.632 30.563c-.178-1.426-1.568-1.931-2.257-1.931-.884 0-2.992 1.106-3.375-.585l-.037-.183-9.91-.012-.053.184c-.375 1.708-2.492.596-3.378.596-.689 0-2.079.505-2.257 1.931C7.365 30.563 14.13 33 18 33c3.873 0 10.632-2.437 10.632-2.437z"/><path fill="#7C533E" d="M12.497 16.024c-.674-.134-1.336 1.309-1.47 1.983L9.846 23.02c-1.619 1.166-1.57 3.454-2.808 4.512-.171.146-.949.766-1.203 1.325-.336.738.22.444.045.695-.406.584-.414 1.478-.127 1.686l.373.1c.557.403 2.081-1.336 2.281-2.302.3-1.443 3.075-3.25 3.589-4.653.006-.017.007-.029.013-.046.097-.138.169-.294.204-.469l1.266-6.375c.135-.674-.308-1.335-.982-1.469zm17.59 13.588c-.175-.251.437-.016.101-.754-.255-.56-1.089-1.179-1.259-1.325-1.246-1.064-1.133-3.377-2.781-4.535l-1.176-4.99c-.134-.674-.795-2.117-1.47-1.983-.674.134-1.116.795-.983 1.47l1.266 6.375c.038.191.125.355.236.501l.004.014c.513 1.402 3.289 3.209 3.589 4.653.201.967 1.725 2.706 2.281 2.302l.373-.1c.29-.21.226-1.044-.181-1.628z"/><path fill="#7C533E" d="M22.757 35.82c-1.04.089-2.02-.208-3 0-.475.03-.802 0-1.277-.416s-8.287-1.515-9.713-2.465c-.658-.439-1.662-1.54-1.396-2.465.263-.913 1.139-1.429 2.198-1.455 2.065-.051 6 2.941 8.851 4.04.518.2.948-.052 1.604.119.683.178 2.317-.555 3.149-.446 1.129.149 1.574.683 1.485 1.604-.094.974-.861 1.395-1.901 1.484z"/><path fill="#664131" d="M22.757 35.82c-1.04.089-2.02-.208-3 0-.475.03-.802 0-1.277-.416s.889-2.399 1.545-2.228c.683.178 2.317-.555 3.149-.446 1.129.149 1.574.683 1.485 1.604-.095.976-.862 1.397-1.902 1.486zm-11.561-2.614c.238-.624 1.188-.891 1.634-.95s1.188.208 1.693.416c.505.208 1.118.234 1.504.085.386-.149.668-.124.958 0 .078.033.423 0 .546-.067 0 0 1.79.616 1.136.824-.653.208-5.421.524-6.074.524s-1.397-.832-1.397-.832z"/><path fill="#664131" d="M7.371 30.474c.006-.02.016-.037.022-.056.201.762.76 1.66 1.401 1.898.802.297 7.247 2.198 8.049 2.287.802.089 1.99.208 2.228.386.238.178.861.238 1.366.119.505-.119 1.782.356 2.436.208.653-.148 1.604-.445 1.782-1.247.003-.015.007-.022.011-.034.004.096.003.195-.007.302-.094.975-.861 1.396-1.901 1.485s-2.02-.208-3 0c-.475.03-.802 0-1.277-.416-.475-.416-8.287-1.515-9.713-2.465-.659-.441-1.663-1.543-1.397-2.467z"/><path fill="#7C533E" d="M13.243 35.82c1.04.089 2.02-.208 3 0 .475.03.802 0 1.277-.416s8.287-1.515 9.713-2.465c.658-.439 1.662-1.54 1.396-2.465-.263-.913-1.139-1.429-2.198-1.455-2.065-.051-6 2.941-8.851 4.04-.518.2-.948-.052-1.604.119-.683.178-2.317-.555-3.149-.446-1.129.149-1.574.683-1.485 1.604.094.974.861 1.395 1.901 1.484z"/><path fill="#77B255" d="M22.543 15h-9.06c-2.562 0-2.943 4.394-2.943 4.394l2.458.535s.31 3.589.271 5.27c-.038 1.682-.27 2.801-.27 2.801s1.912.394 5 .394 5-.394 5-.394-.349-1.606-.349-2.978.349-5.093.349-5.093l2.458-.535S25.105 15 22.543 15z"/><path fill="#7C533E" d="M15.667 10.389v4.666c0 .312.553 1.488 2.333 1.488 1.781 0 2.333-1.214 2.333-1.488v-4.666h-4.666z"/><path fill="#664131" d="M20.333 9.774l-4.666.022v4.644s2.333 1.167 4.666 0V9.774z"/><path fill="#7C533E" d="M22.954 3.966h-9.908v5.433c0 2.737 2.218 4.954 4.954 4.954 2.736 0 4.954-2.217 4.954-4.954V3.966z"/><path fill="#3D2E24" d="M19.982 12.057h-3.964s0 .991 1.982.991 1.982-.991 1.982-.991zM16.25 8.75h-1.5c-.137 0-.25-.113-.25-.25s.113-.25.25-.25h1.5c.138 0 .25.113.25.25s-.112.25-.25.25zm5 0h-1.5c-.138 0-.25-.113-.25-.25s.112-.25.25-.25h1.5c.138 0 .25.113.25.25s-.112.25-.25.25zm-4.241 1.326h1.982s0 .991-.991.991-.991-.991-.991-.991z"/><path fill="#0B0200" d="M18 .953c3.385 0 5.5 2.579 5.5 4.728 0 2.149-.423 3.009-.846 2.149l-.846-1.719s-2.538 0-3.384-.86c0 0 1.269 2.579-1.269 0 0 0 .423 1.72-2.115-.429 0 0-1.269.86-1.692 3.008-.117.597-.846 0-.846-2.149C12.5 3.532 14.192.953 18 .953"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f9d8-1f3ff.svg b/public/emoji/1f9d8-1f3ff.svg
index ab672b006168175128488b760abea51f26818268..5cc0fb7d458f33c2f359452a239ec5857b51830f 100644
--- a/public/emoji/1f9d8-1f3ff.svg
+++ b/public/emoji/1f9d8-1f3ff.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#7C533E" d="M5.001 28c-.367 0-.72-.202-.896-.553-.247-.494-.047-1.095.447-1.342l5.544-2.772.917-5.498c.091-.544.605-.913 1.151-.822.544.091.913.606.822 1.151l-1 6c-.053.315-.253.587-.539.73l-6 3c-.143.072-.296.106-.446.106zm25.998 0c-.15 0-.303-.034-.446-.105l-6-3c-.286-.144-.486-.415-.539-.73l-1-6c-.091-.545.277-1.06.822-1.151.543-.09 1.061.277 1.15.822l.916 5.498 5.545 2.772c.494.247.694.848.447 1.342-.175.35-.528.552-.895.552z"/><path fill="#4289C1" d="M13 27.25h10v4.5H13z"/><path fill="#0B0200" d="M19 0c-1.264 0-2.435.393-3.402 1.061C15.402 1.031 15.205 1 15 1c-2.209 0-4 1.791-4 4v4c0 3.866 3.134 7 7 7s7-3.134 7-7V6.001C25 2.687 22.314 0 19 0z"/><path fill="#9268CA" d="M23 15H13c-2.562 0-2.458 4-2.458 4H13v9h10v-9h2.458s.104-4-2.458-4z"/><path fill="#7C533E" d="M16 11v4c0 1.104.896 2 2 2s2-.896 2-2v-4h-4z"/><path fill="#7C533E" d="M16 3s-.011 3.285-3 3.894V9c0 2.762 2.238 5 5 5s5-2.237 5-5V6.968C16.019 6.644 16 3 16 3z"/><path fill="#DF1F32" d="M20 12h-4s0 1 2 1 2-1 2-1z"/><circle cx="15.5" cy="8.5" r=".5"/><circle cx="20.5" cy="8.5" r=".5"/><path fill="#3D2E24" d="M17 10h2s0 1-1 1-1-1-1-1z"/><path fill="#7C533E" d="M8.418 34.556c.308.769 1.181 1.142 1.95.834l12.395-3.803s3.49.701 3.351-1.294c-.106-1.52-2.586-2.245-4.467-1.491-1.881.754-12.395 3.803-12.395 3.803-.769.309-1.143 1.182-.834 1.951z"/><path fill="#664131" d="M25.756 30.608c-.212-.689-2.021-.422-2.456-.303-.435.12-12.47 3.844-13.453 4.16-.924.296-.364 1.06.087 1.026.033-.008.066-.01.099-.02L21.8 31.884c.877-.274 1.884-.166 2.719-.244.396-.037.802-.167.877-.202.167-.075.511-.34.36-.83z"/><path fill="#7C533E" d="M27.583 34.556c-.308.769-1.181 1.142-1.95.834l-12.395-3.803s-3.49.701-3.351-1.294c.106-1.52 2.586-2.245 4.467-1.491 1.881.754 12.395 3.803 12.395 3.803.769.309 1.142 1.182.834 1.951z"/><path fill="#664131" d="M10.244 30.608c.212-.689 2.021-.422 2.456-.303.435.12 12.47 3.844 13.453 4.16.924.296.364 1.06-.087 1.026-.033-.008-.066-.01-.099-.02L14.2 31.884c-.877-.274-1.884-.166-2.719-.244-.396-.037-.802-.167-.877-.202-.166-.075-.511-.34-.36-.83z"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#4289C1" d="M28.632 30.563c-.178-1.426-1.568-1.931-2.257-1.931-.884 0-2.992 1.106-3.375-.585l-.037-.183-9.91-.012-.053.184c-.375 1.708-2.492.596-3.378.596-.689 0-2.079.505-2.257 1.931C7.365 30.563 14.13 33 18 33c3.873 0 10.632-2.437 10.632-2.437z"/><path fill="#7C533E" d="M12.165 17.014c-.546-.091-1.06.278-1.151.822l-.825 4.947c-.071.043-.142.087-.217.135-1.762 1.131-1.661 3.529-2.934 4.616-.171.146-.949.766-1.203 1.325-.336.738.22.444.045.695-.406.584-.414 1.478-.127 1.686l.373.1c.557.403 2.081-1.336 2.281-2.302.3-1.443 3.075-3.25 3.589-4.653.162-.444.224-.787.173-1.074l1.106-5.145c.091-.546-.566-1.062-1.11-1.152zm17.922 12.598c-.175-.251.437-.016.101-.754-.255-.56-1.089-1.179-1.259-1.325-1.273-1.087-1.116-3.485-2.878-4.616-.083-.054-.164-.104-.243-.151l-.822-4.93c-.09-.544-.607-.912-1.15-.822-.545.091-1.235.606-1.145 1.151l1.151 5.222c-.028.272.036.592.184.998.513 1.402 3.289 3.209 3.589 4.653.201.967 1.725 2.706 2.281 2.302l.373-.1c.289-.21.225-1.044-.182-1.628z"/><path fill="#7C533E" d="M22.757 35.82c-1.04.089-2.02-.208-3 0-.475.03-.802 0-1.277-.416s-8.287-1.515-9.713-2.465c-.658-.439-1.662-1.54-1.396-2.465.263-.913 1.139-1.429 2.198-1.455 2.065-.051 6 2.941 8.851 4.04.518.2.948-.052 1.604.119.683.178 2.317-.555 3.149-.446 1.129.149 1.574.683 1.485 1.604-.094.974-.861 1.395-1.901 1.484z"/><path fill="#664131" d="M22.757 35.82c-1.04.089-2.02-.208-3 0-.475.03-.802 0-1.277-.416s.889-2.399 1.545-2.228c.683.178 2.317-.555 3.149-.446 1.129.149 1.574.683 1.485 1.604-.095.976-.862 1.397-1.902 1.486zm-11.561-2.614c.238-.624 1.188-.891 1.634-.95s1.188.208 1.693.416c.505.208 1.118.234 1.504.085.386-.149.668-.124.958 0 .078.033.423 0 .546-.067 0 0 1.79.616 1.136.824-.653.208-5.421.524-6.074.524s-1.397-.832-1.397-.832z"/><path fill="#664131" d="M7.371 30.474c.006-.02.016-.037.022-.056.201.762.76 1.66 1.401 1.898.802.297 7.247 2.198 8.049 2.287.802.089 1.99.208 2.228.386.238.178.861.238 1.366.119.505-.119 1.782.356 2.436.208.653-.148 1.604-.445 1.782-1.247.003-.015.007-.022.011-.034.004.096.003.195-.007.302-.094.975-.861 1.396-1.901 1.485s-2.02-.208-3 0c-.475.03-.802 0-1.277-.416-.475-.416-8.287-1.515-9.713-2.465-.659-.441-1.663-1.543-1.397-2.467z"/><path fill="#7C533E" d="M13.243 35.82c1.04.089 2.02-.208 3 0 .475.03.802 0 1.277-.416s8.287-1.515 9.713-2.465c.658-.439 1.662-1.54 1.396-2.465-.263-.913-1.139-1.429-2.198-1.455-2.065-.051-6 2.941-8.851 4.04-.518.2-.948-.052-1.604.119-.683.178-2.317-.555-3.149-.446-1.129.149-1.574.683-1.485 1.604.094.974.861 1.395 1.901 1.484z"/><path fill="#0B0200" d="M19 0c-1.264 0-2.435.393-3.402 1.061C15.402 1.031 15.205 1 15 1c-2.209 0-4 1.791-4 4v4c0 3.866 3.134 7 7 7s7-3.134 7-7V6.001C25 2.687 22.314 0 19 0z"/><path fill="#9268CA" d="M22.543 15h-9.089c-2.562 0-2.912 4-2.912 4l2.458.632s.454 2.376.454 4.337S13 28 13 28s2.031.335 5 .335S23 28 23 28s-.487-2.071-.487-4.061.487-4.307.487-4.307L25.458 19s-.353-4-2.915-4z"/><path fill="#7C533E" d="M16 11v4c0 1.104.896 2 2 2s2-.896 2-2v-4h-4z"/><path fill="#664131" d="M20 11l-4 .019V15s2 1 4 0v-4z"/><path fill="#7C533E" d="M16 3s-.011 3.285-3 3.894V9c0 2.762 2.238 5 5 5s5-2.237 5-5V6.968C16.019 6.644 16 3 16 3z"/><path fill="#DF1F32" d="M20 12h-4s0 1 2 1 2-1 2-1z"/><path fill="#3D2E24" d="M16.25 8.75h-1.5c-.137 0-.25-.113-.25-.25s.113-.25.25-.25h1.5c.138 0 .25.113.25.25s-.112.25-.25.25zm5 0h-1.5c-.138 0-.25-.113-.25-.25s.112-.25.25-.25h1.5c.138 0 .25.113.25.25s-.112.25-.25.25zM17 10h2s0 1-1 1-1-1-1-1z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f9d8-200d-2640-fe0f.svg b/public/emoji/1f9d8-200d-2640-fe0f.svg
index 241b3d23a78d7adb1b2cde4d7ad11346fe033118..8fcb70fb6fdab617230b27cb8d0b3ba2b768d90f 100644
--- a/public/emoji/1f9d8-200d-2640-fe0f.svg
+++ b/public/emoji/1f9d8-200d-2640-fe0f.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#FFDC5D" d="M5.001 28c-.367 0-.72-.202-.896-.553-.247-.494-.047-1.095.447-1.342l5.544-2.772.917-5.498c.091-.544.605-.913 1.151-.822.544.091.913.606.822 1.151l-1 6c-.053.315-.253.587-.539.73l-6 3c-.143.072-.296.106-.446.106zm25.998 0c-.15 0-.303-.034-.446-.105l-6-3c-.286-.144-.486-.415-.539-.73l-1-6c-.091-.545.277-1.06.822-1.151.543-.09 1.061.277 1.15.822l.916 5.498 5.545 2.772c.494.247.694.848.447 1.342-.175.35-.528.552-.895.552z"/><path fill="#4289C1" d="M13 27.25h10v4.5H13z"/><path fill="#FFAC33" d="M19 0c-1.264 0-2.435.393-3.402 1.061C15.402 1.031 15.205 1 15 1c-2.209 0-4 1.791-4 4v4c0 3.866 3.134 7 7 7s7-3.134 7-7V6.001C25 2.687 22.314 0 19 0z"/><path fill="#9268CA" d="M23 15H13c-2.562 0-2.458 4-2.458 4H13v9h10v-9h2.458s.104-4-2.458-4z"/><path fill="#FFDC5D" d="M16 11v4c0 1.104.896 2 2 2s2-.896 2-2v-4h-4z"/><path fill="#FFDC5D" d="M16 3s-.011 3.285-3 3.894V9c0 2.762 2.238 5 5 5s5-2.237 5-5V6.968C16.019 6.644 16 3 16 3z"/><path fill="#DF1F32" d="M20 12h-4s0 1 2 1 2-1 2-1z"/><circle fill="#662113" cx="15.5" cy="8.5" r=".5"/><circle fill="#662113" cx="20.5" cy="8.5" r=".5"/><path fill="#C1694F" d="M17 10h2s0 1-1 1-1-1-1-1z"/><path fill="#FFDC5D" d="M8.417 34.556c.308.769 1.181 1.142 1.95.834l12.395-3.803s3.49.701 3.351-1.294c-.106-1.52-2.586-2.245-4.467-1.491-1.881.754-12.395 3.803-12.395 3.803-.768.309-1.142 1.182-.834 1.951z"/><path fill="#F9CA55" d="M25.756 30.608c-.212-.689-2.021-.422-2.456-.303-.435.12-12.47 3.844-13.453 4.16-.924.296-.364 1.06.087 1.026.033-.008.066-.01.099-.02L21.8 31.884c.877-.274 1.884-.166 2.719-.244.396-.037.802-.167.877-.202.166-.075.511-.34.36-.83z"/><path fill="#FFDC5D" d="M27.583 34.556c-.308.769-1.181 1.142-1.95.834l-12.395-3.803s-3.49.701-3.351-1.294c.106-1.52 2.586-2.245 4.467-1.491 1.881.754 12.395 3.803 12.395 3.803.768.309 1.142 1.182.834 1.951z"/><path fill="#F9CA55" d="M10.244 30.608c.212-.689 2.021-.422 2.456-.303.435.12 12.47 3.844 13.453 4.16.924.296.364 1.06-.087 1.026-.033-.008-.066-.01-.099-.02L14.2 31.884c-.877-.274-1.884-.166-2.719-.244-.396-.037-.802-.167-.877-.202-.166-.075-.511-.34-.36-.83z"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#4289C1" d="M28.632 30.563c-.178-1.426-1.568-1.931-2.257-1.931-.884 0-2.992 1.106-3.375-.585l-.037-.183-9.91-.012-.053.184c-.375 1.708-2.492.596-3.378.596-.689 0-2.079.505-2.257 1.931C7.365 30.563 14.13 33 18 33c3.873 0 10.632-2.437 10.632-2.437z"/><path fill="#FFDC5D" d="M12.165 17.014c-.546-.091-1.06.278-1.151.822l-.825 4.947c-.071.043-.142.087-.217.135-1.762 1.131-1.661 3.529-2.934 4.616-.171.146-.949.766-1.203 1.325-.336.738.22.444.045.695-.406.584-.414 1.478-.127 1.686l.373.1c.557.403 2.081-1.336 2.281-2.302.3-1.443 3.075-3.25 3.589-4.653.162-.444.224-.787.173-1.074l1.106-5.145c.091-.546-.566-1.062-1.11-1.152zm17.922 12.598c-.175-.251.437-.016.101-.754-.255-.56-1.089-1.179-1.259-1.325-1.273-1.087-1.116-3.485-2.878-4.616-.083-.054-.164-.104-.243-.151l-.822-4.93c-.09-.544-.607-.912-1.15-.822-.545.091-1.235.606-1.145 1.151l1.151 5.222c-.028.272.036.592.184.998.513 1.402 3.289 3.209 3.589 4.653.201.967 1.725 2.706 2.281 2.302l.373-.1c.289-.21.225-1.044-.182-1.628z"/><path fill="#FFDC5D" d="M22.757 35.82c-1.04.089-2.02-.208-3 0-.475.03-.802 0-1.277-.416s-8.287-1.515-9.713-2.465c-.658-.439-1.662-1.54-1.396-2.465.263-.913 1.139-1.429 2.198-1.455 2.065-.051 6 2.941 8.851 4.04.518.2.948-.052 1.604.119.683.178 2.317-.555 3.149-.446 1.129.149 1.574.683 1.485 1.604-.094.974-.861 1.395-1.901 1.484z"/><path fill="#F9CA55" d="M22.757 35.82c-1.04.089-2.02-.208-3 0-.475.03-.802 0-1.277-.416s.889-2.399 1.545-2.228c.683.178 2.317-.555 3.149-.446 1.129.149 1.574.683 1.485 1.604-.095.976-.862 1.397-1.902 1.486zm-11.561-2.614c.238-.624 1.188-.891 1.634-.95s1.188.208 1.693.416c.505.208 1.118.234 1.504.085.386-.149.668-.124.958 0 .078.033.423 0 .546-.067 0 0 1.79.616 1.136.824-.653.208-5.421.524-6.074.524s-1.397-.832-1.397-.832z"/><path fill="#F9CA55" d="M7.371 30.474c.006-.02.016-.037.022-.056.201.762.76 1.66 1.401 1.898.802.297 7.247 2.198 8.049 2.287.802.089 1.99.208 2.228.386.238.178.861.238 1.366.119.505-.119 1.782.356 2.436.208.653-.148 1.604-.445 1.782-1.247.003-.015.007-.022.011-.034.004.096.003.195-.007.302-.094.975-.861 1.396-1.901 1.485s-2.02-.208-3 0c-.475.03-.802 0-1.277-.416-.475-.416-8.287-1.515-9.713-2.465-.659-.441-1.663-1.543-1.397-2.467z"/><path fill="#FFDC5D" d="M13.243 35.82c1.04.089 2.02-.208 3 0 .475.03.802 0 1.277-.416s8.287-1.515 9.713-2.465c.658-.439 1.662-1.54 1.396-2.465-.263-.913-1.139-1.429-2.198-1.455-2.065-.051-6 2.941-8.851 4.04-.518.2-.948-.052-1.604.119-.683.178-2.317-.555-3.149-.446-1.129.149-1.574.683-1.485 1.604.094.974.861 1.395 1.901 1.484z"/><path fill="#FFAC33" d="M19 0c-1.264 0-2.435.393-3.402 1.061C15.402 1.031 15.205 1 15 1c-2.209 0-4 1.791-4 4v4c0 3.866 3.134 7 7 7s7-3.134 7-7V6.001C25 2.687 22.314 0 19 0z"/><path fill="#9268CA" d="M22.543 15h-9.089c-2.562 0-2.912 4-2.912 4l2.458.632s.454 2.376.454 4.337S13 28 13 28s2.031.335 5 .335S23 28 23 28s-.487-2.071-.487-4.061.487-4.307.487-4.307L25.458 19s-.353-4-2.915-4z"/><path fill="#FFDC5D" d="M16 11v4c0 1.104.896 2 2 2s2-.896 2-2v-4h-4z"/><path fill="#F9CA55" d="M20 11l-4 .019V15s2 1 4 0v-4z"/><path fill="#FFDC5D" d="M16 3s-.011 3.285-3 3.894V9c0 2.762 2.238 5 5 5s5-2.237 5-5V6.968C16.019 6.644 16 3 16 3z"/><path fill="#DF1F32" d="M20 12h-4s0 1 2 1 2-1 2-1z"/><path fill="#C1694F" d="M16.25 8.75h-1.5c-.137 0-.25-.113-.25-.25s.113-.25.25-.25h1.5c.138 0 .25.113.25.25s-.112.25-.25.25zm5 0h-1.5c-.138 0-.25-.113-.25-.25s.112-.25.25-.25h1.5c.138 0 .25.113.25.25s-.112.25-.25.25zM17 10h2s0 1-1 1-1-1-1-1z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f9d8-200d-2642-fe0f.svg b/public/emoji/1f9d8-200d-2642-fe0f.svg
index bf60483af810a33a1cfda2ad2b82c7ba0cbfa3af..e0c1f483a410f669327e6d1e34d42750695e96ab 100644
--- a/public/emoji/1f9d8-200d-2642-fe0f.svg
+++ b/public/emoji/1f9d8-200d-2642-fe0f.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><g fill="#FFDC5D"><path d="M11.561 24.806L5.82 27.855c-.607.322-1.368.089-1.69-.518-.322-.607-.089-1.368.518-1.69l5.741-3.048c.607-.322 1.368-.089 1.69.518.322.606.089 1.367-.518 1.689z"/><path d="M13.48 17.493l-1.266 6.375c-.134.674-.795 1.116-1.47.983-.674-.134-1.116-.795-.983-1.47l1.266-6.375c.134-.674.795-1.116 1.47-.983.674.135 1.117.796.983 1.47z"/></g><g fill="#FFDC5D"><path d="M24.439 24.806l5.741 3.048c.607.322 1.368.089 1.69-.518.322-.607.089-1.368-.518-1.69l-5.741-3.048c-.607-.322-1.368-.089-1.69.518-.322.607-.089 1.368.518 1.69z"/><path d="M22.52 17.493l1.266 6.375c.134.674.795 1.116 1.47.983.674-.134 1.116-.795.983-1.47l-1.266-6.375c-.134-.674-.795-1.116-1.47-.983-.674.135-1.117.796-.983 1.47z"/></g><path fill="#4289B1" d="M22.999 31.75s0 1.25-5 1.25-5-1.25-5-1.25v-5.5h10v5.5z"/><path fill="#77B255" d="M22.999 15h-10c-2.562 0-2.458 4-2.458 4h2.458v9h10v-9h2.458s.105-4-2.458-4z"/><path fill="#FFDC5D" d="M26.587 29.054s-1.533-.374-2.532-.349c-.23-.03-.469-.016-.706.051l-12.977 3.721c-.925.265-1.465 1.239-1.2 2.165.265.925 1.239 1.465 2.165 1.2l11.942-3.425c.883-.253 1.988-.044 2.826-.061.838-.017 1.632-.478 1.766-1.431.134-.953-.331-1.737-1.284-1.871z"/><path fill="#FFCC4D" d="M27.136 31.402c-.196-.694-2.206-.474-2.644-.365s-12.556 3.551-13.547 3.844c-.93.275-.388 1.051.063 1.028.033-.007.066-.008.1-.018l11.942-3.425c.883-.253 1.99-.003 2.826-.061.397-.027.806-.148.881-.181.168-.071.518-.328.379-.822z"/><path fill="#FFDC5D" d="M9.413 29.054s1.533-.374 2.532-.349c.23-.03.469-.016.706.051l12.977 3.721c.925.265 1.465 1.239 1.2 2.165-.265.925-1.239 1.465-2.165 1.2L12.72 32.418c-.883-.253-1.988-.044-2.826-.061-.838-.017-1.632-.478-1.766-1.431-.133-.954.332-1.738 1.285-1.872z"/><path fill="#FFCC4D" d="M8.864 31.402c.196-.694 2.206-.474 2.644-.365s12.556 3.551 13.547 3.844c.93.275.388 1.051-.063 1.028-.033-.007-.066-.008-.1-.018L12.95 32.467c-.883-.253-1.99-.003-2.826-.061-.397-.027-.806-.148-.881-.181-.168-.072-.518-.329-.379-.823z"/><path fill="#FFDC5D" d="M15.667 10.389v4.666c0 .312 1.045 1.093 2.333 1.093 1.288 0 2.333-.819 2.333-1.093v-4.666h-4.666z"/><path fill="#FFDC5D" d="M22.954 3.966h-9.908v5.433c0 2.737 2.218 4.954 4.954 4.954 2.736 0 4.954-2.217 4.954-4.954V3.966z"/><path fill="#C1694F" d="M19.982 12.057h-3.964s0 .991 1.982.991 1.982-.991 1.982-.991z"/><circle fill="#662113" cx="15.5" cy="8.5" r=".495"/><circle fill="#662113" cx="20.5" cy="8.5" r=".495"/><path fill="#C1694F" d="M17.009 10.076h1.982s0 .991-.991.991-.991-.991-.991-.991z"/><path fill="#FFAC33" d="M18 .953c3.385 0 5.5 2.579 5.5 4.728 0 2.149-.423 3.009-.846 2.149l-.846-1.719s-2.538 0-3.384-.86c0 0 1.269 2.579-1.269 0 0 0 .423 1.72-2.115-.429 0 0-1.269.86-1.692 3.008-.117.597-.846 0-.846-2.149C12.5 3.532 14.192.953 18 .953"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#4289C1" d="M28.632 30.563c-.178-1.426-1.568-1.931-2.257-1.931-.884 0-2.992 1.106-3.375-.585l-.037-.183-9.91-.012-.053.184c-.375 1.708-2.492.596-3.378.596-.689 0-2.079.505-2.257 1.931C7.365 30.563 14.13 33 18 33c3.873 0 10.632-2.437 10.632-2.437z"/><path fill="#FFDC5D" d="M12.497 16.024c-.674-.134-1.336 1.309-1.47 1.983L9.846 23.02c-1.619 1.166-1.57 3.454-2.808 4.512-.171.146-.949.766-1.203 1.325-.336.738.22.444.045.695-.406.584-.414 1.478-.127 1.686l.373.1c.557.403 2.081-1.336 2.281-2.302.3-1.443 3.075-3.25 3.589-4.653.006-.017.007-.029.013-.046.097-.138.169-.294.204-.469l1.266-6.375c.135-.674-.308-1.335-.982-1.469zm17.59 13.588c-.175-.251.437-.016.101-.754-.255-.56-1.089-1.179-1.259-1.325-1.246-1.064-1.133-3.377-2.781-4.535l-1.176-4.99c-.134-.674-.795-2.117-1.47-1.983-.674.134-1.116.795-.983 1.47l1.266 6.375c.038.191.125.355.236.501l.004.014c.513 1.402 3.289 3.209 3.589 4.653.201.967 1.725 2.706 2.281 2.302l.373-.1c.29-.21.226-1.044-.181-1.628z"/><path fill="#FFDC5D" d="M22.757 35.82c-1.04.089-2.02-.208-3 0-.475.03-.802 0-1.277-.416s-8.287-1.515-9.713-2.465c-.658-.439-1.662-1.54-1.396-2.465.263-.913 1.139-1.429 2.198-1.455 2.065-.051 6 2.941 8.851 4.04.518.2.948-.052 1.604.119.683.178 2.317-.555 3.149-.446 1.129.149 1.574.683 1.485 1.604-.094.974-.861 1.395-1.901 1.484z"/><path fill="#F9CA55" d="M22.757 35.82c-1.04.089-2.02-.208-3 0-.475.03-.802 0-1.277-.416s.889-2.399 1.545-2.228c.683.178 2.317-.555 3.149-.446 1.129.149 1.574.683 1.485 1.604-.095.976-.862 1.397-1.902 1.486zm-11.561-2.614c.238-.624 1.188-.891 1.634-.95s1.188.208 1.693.416c.505.208 1.118.234 1.504.085.386-.149.668-.124.958 0 .078.033.423 0 .546-.067 0 0 1.79.616 1.136.824-.653.208-5.421.524-6.074.524s-1.397-.832-1.397-.832z"/><path fill="#F9CA55" d="M7.371 30.474c.006-.02.016-.037.022-.056.201.762.76 1.66 1.401 1.898.802.297 7.247 2.198 8.049 2.287.802.089 1.99.208 2.228.386.238.178.861.238 1.366.119.505-.119 1.782.356 2.436.208.653-.148 1.604-.445 1.782-1.247.003-.015.007-.022.011-.034.004.096.003.195-.007.302-.094.975-.861 1.396-1.901 1.485s-2.02-.208-3 0c-.475.03-.802 0-1.277-.416-.475-.416-8.287-1.515-9.713-2.465-.659-.441-1.663-1.543-1.397-2.467z"/><path fill="#FFDC5D" d="M13.243 35.82c1.04.089 2.02-.208 3 0 .475.03.802 0 1.277-.416s8.287-1.515 9.713-2.465c.658-.439 1.662-1.54 1.396-2.465-.263-.913-1.139-1.429-2.198-1.455-2.065-.051-6 2.941-8.851 4.04-.518.2-.948-.052-1.604.119-.683.178-2.317-.555-3.149-.446-1.129.149-1.574.683-1.485 1.604.094.974.861 1.395 1.901 1.484z"/><path fill="#77B255" d="M22.543 15h-9.06c-2.562 0-2.943 4.394-2.943 4.394l2.458.535s.31 3.589.271 5.27c-.038 1.682-.27 2.801-.27 2.801s1.912.394 5 .394 5-.394 5-.394-.349-1.606-.349-2.978.349-5.093.349-5.093l2.458-.535S25.105 15 22.543 15z"/><path fill="#FFDC5D" d="M15.667 10.389v4.666c0 .312.553 1.488 2.333 1.488 1.781 0 2.333-1.214 2.333-1.488v-4.666h-4.666z"/><path fill="#F9CA55" d="M20.333 9.774l-4.666.022v4.644s2.333 1.167 4.666 0V9.774z"/><path fill="#FFDC5D" d="M22.954 3.966h-9.908v5.433c0 2.737 2.218 4.954 4.954 4.954 2.736 0 4.954-2.217 4.954-4.954V3.966z"/><path fill="#C1694F" d="M19.982 12.057h-3.964s0 .991 1.982.991 1.982-.991 1.982-.991zM16.25 8.75h-1.5c-.137 0-.25-.113-.25-.25s.113-.25.25-.25h1.5c.138 0 .25.113.25.25s-.112.25-.25.25zm5 0h-1.5c-.138 0-.25-.113-.25-.25s.112-.25.25-.25h1.5c.138 0 .25.113.25.25s-.112.25-.25.25zm-4.241 1.326h1.982s0 .991-.991.991-.991-.991-.991-.991z"/><path fill="#FFAC33" d="M18 .953c3.385 0 5.5 2.579 5.5 4.728 0 2.149-.423 3.009-.846 2.149l-.846-1.719s-2.538 0-3.384-.86c0 0 1.269 2.579-1.269 0 0 0 .423 1.72-2.115-.429 0 0-1.269.86-1.692 3.008-.117.597-.846 0-.846-2.149C12.5 3.532 14.192.953 18 .953"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f9d8.svg b/public/emoji/1f9d8.svg
index 241b3d23a78d7adb1b2cde4d7ad11346fe033118..8fcb70fb6fdab617230b27cb8d0b3ba2b768d90f 100644
--- a/public/emoji/1f9d8.svg
+++ b/public/emoji/1f9d8.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#FFDC5D" d="M5.001 28c-.367 0-.72-.202-.896-.553-.247-.494-.047-1.095.447-1.342l5.544-2.772.917-5.498c.091-.544.605-.913 1.151-.822.544.091.913.606.822 1.151l-1 6c-.053.315-.253.587-.539.73l-6 3c-.143.072-.296.106-.446.106zm25.998 0c-.15 0-.303-.034-.446-.105l-6-3c-.286-.144-.486-.415-.539-.73l-1-6c-.091-.545.277-1.06.822-1.151.543-.09 1.061.277 1.15.822l.916 5.498 5.545 2.772c.494.247.694.848.447 1.342-.175.35-.528.552-.895.552z"/><path fill="#4289C1" d="M13 27.25h10v4.5H13z"/><path fill="#FFAC33" d="M19 0c-1.264 0-2.435.393-3.402 1.061C15.402 1.031 15.205 1 15 1c-2.209 0-4 1.791-4 4v4c0 3.866 3.134 7 7 7s7-3.134 7-7V6.001C25 2.687 22.314 0 19 0z"/><path fill="#9268CA" d="M23 15H13c-2.562 0-2.458 4-2.458 4H13v9h10v-9h2.458s.104-4-2.458-4z"/><path fill="#FFDC5D" d="M16 11v4c0 1.104.896 2 2 2s2-.896 2-2v-4h-4z"/><path fill="#FFDC5D" d="M16 3s-.011 3.285-3 3.894V9c0 2.762 2.238 5 5 5s5-2.237 5-5V6.968C16.019 6.644 16 3 16 3z"/><path fill="#DF1F32" d="M20 12h-4s0 1 2 1 2-1 2-1z"/><circle fill="#662113" cx="15.5" cy="8.5" r=".5"/><circle fill="#662113" cx="20.5" cy="8.5" r=".5"/><path fill="#C1694F" d="M17 10h2s0 1-1 1-1-1-1-1z"/><path fill="#FFDC5D" d="M8.417 34.556c.308.769 1.181 1.142 1.95.834l12.395-3.803s3.49.701 3.351-1.294c-.106-1.52-2.586-2.245-4.467-1.491-1.881.754-12.395 3.803-12.395 3.803-.768.309-1.142 1.182-.834 1.951z"/><path fill="#F9CA55" d="M25.756 30.608c-.212-.689-2.021-.422-2.456-.303-.435.12-12.47 3.844-13.453 4.16-.924.296-.364 1.06.087 1.026.033-.008.066-.01.099-.02L21.8 31.884c.877-.274 1.884-.166 2.719-.244.396-.037.802-.167.877-.202.166-.075.511-.34.36-.83z"/><path fill="#FFDC5D" d="M27.583 34.556c-.308.769-1.181 1.142-1.95.834l-12.395-3.803s-3.49.701-3.351-1.294c.106-1.52 2.586-2.245 4.467-1.491 1.881.754 12.395 3.803 12.395 3.803.768.309 1.142 1.182.834 1.951z"/><path fill="#F9CA55" d="M10.244 30.608c.212-.689 2.021-.422 2.456-.303.435.12 12.47 3.844 13.453 4.16.924.296.364 1.06-.087 1.026-.033-.008-.066-.01-.099-.02L14.2 31.884c-.877-.274-1.884-.166-2.719-.244-.396-.037-.802-.167-.877-.202-.166-.075-.511-.34-.36-.83z"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#4289C1" d="M28.632 30.563c-.178-1.426-1.568-1.931-2.257-1.931-.884 0-2.992 1.106-3.375-.585l-.037-.183-9.91-.012-.053.184c-.375 1.708-2.492.596-3.378.596-.689 0-2.079.505-2.257 1.931C7.365 30.563 14.13 33 18 33c3.873 0 10.632-2.437 10.632-2.437z"/><path fill="#FFDC5D" d="M12.165 17.014c-.546-.091-1.06.278-1.151.822l-.825 4.947c-.071.043-.142.087-.217.135-1.762 1.131-1.661 3.529-2.934 4.616-.171.146-.949.766-1.203 1.325-.336.738.22.444.045.695-.406.584-.414 1.478-.127 1.686l.373.1c.557.403 2.081-1.336 2.281-2.302.3-1.443 3.075-3.25 3.589-4.653.162-.444.224-.787.173-1.074l1.106-5.145c.091-.546-.566-1.062-1.11-1.152zm17.922 12.598c-.175-.251.437-.016.101-.754-.255-.56-1.089-1.179-1.259-1.325-1.273-1.087-1.116-3.485-2.878-4.616-.083-.054-.164-.104-.243-.151l-.822-4.93c-.09-.544-.607-.912-1.15-.822-.545.091-1.235.606-1.145 1.151l1.151 5.222c-.028.272.036.592.184.998.513 1.402 3.289 3.209 3.589 4.653.201.967 1.725 2.706 2.281 2.302l.373-.1c.289-.21.225-1.044-.182-1.628z"/><path fill="#FFDC5D" d="M22.757 35.82c-1.04.089-2.02-.208-3 0-.475.03-.802 0-1.277-.416s-8.287-1.515-9.713-2.465c-.658-.439-1.662-1.54-1.396-2.465.263-.913 1.139-1.429 2.198-1.455 2.065-.051 6 2.941 8.851 4.04.518.2.948-.052 1.604.119.683.178 2.317-.555 3.149-.446 1.129.149 1.574.683 1.485 1.604-.094.974-.861 1.395-1.901 1.484z"/><path fill="#F9CA55" d="M22.757 35.82c-1.04.089-2.02-.208-3 0-.475.03-.802 0-1.277-.416s.889-2.399 1.545-2.228c.683.178 2.317-.555 3.149-.446 1.129.149 1.574.683 1.485 1.604-.095.976-.862 1.397-1.902 1.486zm-11.561-2.614c.238-.624 1.188-.891 1.634-.95s1.188.208 1.693.416c.505.208 1.118.234 1.504.085.386-.149.668-.124.958 0 .078.033.423 0 .546-.067 0 0 1.79.616 1.136.824-.653.208-5.421.524-6.074.524s-1.397-.832-1.397-.832z"/><path fill="#F9CA55" d="M7.371 30.474c.006-.02.016-.037.022-.056.201.762.76 1.66 1.401 1.898.802.297 7.247 2.198 8.049 2.287.802.089 1.99.208 2.228.386.238.178.861.238 1.366.119.505-.119 1.782.356 2.436.208.653-.148 1.604-.445 1.782-1.247.003-.015.007-.022.011-.034.004.096.003.195-.007.302-.094.975-.861 1.396-1.901 1.485s-2.02-.208-3 0c-.475.03-.802 0-1.277-.416-.475-.416-8.287-1.515-9.713-2.465-.659-.441-1.663-1.543-1.397-2.467z"/><path fill="#FFDC5D" d="M13.243 35.82c1.04.089 2.02-.208 3 0 .475.03.802 0 1.277-.416s8.287-1.515 9.713-2.465c.658-.439 1.662-1.54 1.396-2.465-.263-.913-1.139-1.429-2.198-1.455-2.065-.051-6 2.941-8.851 4.04-.518.2-.948-.052-1.604.119-.683.178-2.317-.555-3.149-.446-1.129.149-1.574.683-1.485 1.604.094.974.861 1.395 1.901 1.484z"/><path fill="#FFAC33" d="M19 0c-1.264 0-2.435.393-3.402 1.061C15.402 1.031 15.205 1 15 1c-2.209 0-4 1.791-4 4v4c0 3.866 3.134 7 7 7s7-3.134 7-7V6.001C25 2.687 22.314 0 19 0z"/><path fill="#9268CA" d="M22.543 15h-9.089c-2.562 0-2.912 4-2.912 4l2.458.632s.454 2.376.454 4.337S13 28 13 28s2.031.335 5 .335S23 28 23 28s-.487-2.071-.487-4.061.487-4.307.487-4.307L25.458 19s-.353-4-2.915-4z"/><path fill="#FFDC5D" d="M16 11v4c0 1.104.896 2 2 2s2-.896 2-2v-4h-4z"/><path fill="#F9CA55" d="M20 11l-4 .019V15s2 1 4 0v-4z"/><path fill="#FFDC5D" d="M16 3s-.011 3.285-3 3.894V9c0 2.762 2.238 5 5 5s5-2.237 5-5V6.968C16.019 6.644 16 3 16 3z"/><path fill="#DF1F32" d="M20 12h-4s0 1 2 1 2-1 2-1z"/><path fill="#C1694F" d="M16.25 8.75h-1.5c-.137 0-.25-.113-.25-.25s.113-.25.25-.25h1.5c.138 0 .25.113.25.25s-.112.25-.25.25zm5 0h-1.5c-.138 0-.25-.113-.25-.25s.112-.25.25-.25h1.5c.138 0 .25.113.25.25s-.112.25-.25.25zM17 10h2s0 1-1 1-1-1-1-1z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f9dc-1f3fb-200d-2640-fe0f.svg b/public/emoji/1f9dc-1f3fb-200d-2640-fe0f.svg
index 3e624eb9372bf256178aa7df7d0c6dab3c808c97..e211b06a1dd75faf09776e5a4b18933341212ad0 100644
--- a/public/emoji/1f9dc-1f3fb-200d-2640-fe0f.svg
+++ b/public/emoji/1f9dc-1f3fb-200d-2640-fe0f.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#292F33" d="M17 0c-1.264 0-2.435.393-3.402 1.061C13.401 1.031 13.205 1 13 1c-2.209 0-4 1.791-4 4v6c0 3.866 3.134 7 7 7s7-3.134 7-7V6.001C23 2.687 20.313 0 17 0z"/><path fill="#F7DECE" d="M29.637 18.636c-.305-.612-1.02-.844-1.589-.515l-3.102 1.79-2.11-4.23c-.346-.929-1.188-1.587-2.175-1.587h-9.49c-1.016 0-1.454.595-1.656.938L3.244 25.656c-.347.588-.184 1.368.363 1.741.174.12.367.182.559.194.412.026.824-.183 1.06-.585l5.539-9.401.51.274 1.173 5.048-1.173 5.048h9.387l-1.173-5.048 1.173-5.048.48-.258 2.292 4.594c.305.612 1.02.844 1.589.515l4.136-2.387c.568-.327.784-1.096.478-1.707z"/><path fill="#E75A70" d="M15.968 17.879s-1.173-1.262-2.347-1.262-2.347 1.262-2.347 1.262l.88 3.786h7.627l.88-3.786s-1.173-1.262-2.347-1.262c-1.172 0-2.346 1.262-2.346 1.262z"/><path fill="#F7DECE" d="M14 10v4c0 1.104.896 2 2 2s2-.896 2-2v-4h-4z"/><path fill="#EEC2AD" d="M18 10l-4 .019V14s2 1 4 0v-4z"/><path fill="#F7DECE" d="M21 3.05H11v5.973C11 11.773 13.238 14 16 14s5-2.227 5-4.977V3.05z"/><path fill="#292F33" d="M14 3s0 4 8 4V3h-8zm0 0s0 4-4 4V3h4z"/><path fill="#DF1F32" d="M18 12h-4s0 1 2 1 2-1 2-1z"/><circle fill="#662113" cx="13.5" cy="8.5" r=".5"/><circle fill="#662113" cx="18.5" cy="8.5" r=".5"/><path fill="#C1694F" d="M15 10h2s0 1-1 1-1-1-1-1z"/><path fill="#5D9040" d="M29.014 28.838c2.254-1.98 1.374-5.968 1.374-5.968-.751.66-1.41 2.663-3.664 4.642-.803.705-1.2 1.629-1.306 2.454-.842.23-2.145.529-3.418.587-.706.032-1.436-.046-2.172-.195C20.535 29.809 21 28.96 21 28v-1c0-1.1-.9-2-2-2h-9c-1.201 0-2.236.719-2.714 1.745l-.008.003-.011.031c-.043.095-.072.196-.105.296-.025.076-.051.152-.072.23-.012.049-.025.098-.034.148-.57 2.401.735 5.48 3.944 6.547 1.979.658 6.075 1.291 9.662.658 2.511-.443 4.61-1.555 5.924-2.402.635.247 1.499.23 2.735-.214 2.272-.816 2.356-3.324 6.075-4.905-2.55-.836-6.382 1.701-6.382 1.701z"/><path fill="#292F33" d="M19.447 30.269c-.023 0-.049-.002-.073-.007-2.24-.446-6.787-2.547-6.979-2.637-.188-.087-.27-.31-.183-.497.087-.189.312-.271.498-.183.046.021 4.657 2.152 6.81 2.58.203.041.335.238.295.441-.036.18-.192.303-.368.303z"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#2CB4CD" d="M20.716 11.182c-.994-1.383-1.654-5.509-1.654-5.509-.155-2.715-2.494-5.572-5.571-5.572-1.173 0-2.26.365-3.159.985-.182-.027-.365-.056-.555-.056-2.051 0-3.714 1.663-3.714 3.714 0 0-.73 2.881-1.521 3.797.377-.223.706-.465.997-.724-.259 1.306-.788 3.586-1.478 4.547.765-.55 1.41-1.136 1.859-1.795-.021.647-.399 1.267-.837 3.348-.458 2.177.364 2.197 1.385 2.646 1.795.789 12.847 1.296 13.281-.969.513-2.675.068-4.112-.425-5.624.391.429.86.83 1.392 1.212z"/><path fill="#F7DECE" d="M16.125 13.384s-2.26-.137-3.764-.137-2.959.1-3.392.137l-1.963 3.619.526.283s1.209 4.354 1.209 5.202c0 .848-1.209 5.202-1.209 5.202h9.674s-1.209-4.075-1.209-5.202 1.209-5.202 1.209-5.202l.495-.266-1.576-3.636z"/><path fill="#DD415D" d="M12.369 17.286s-1.209-1.301-2.418-1.301-2.418 1.301-2.418 1.301l.983 3.902h7.681l1.009-3.902s-1.209-1.301-2.418-1.301-2.419 1.301-2.419 1.301z"/><path fill="#316116" d="M28.744 25.545c1.738-2.783-.967-7.196-.967-7.196-.067.534-.348 1.714-.348 1.714-.163.998-.678 2.566-2.219 4.469-1.049 1.294 4.467 5.504 5.708 4.687 1.937-1.276 1.587-3.432 3.655-5.726.367-.407.8-.817 1.346-1.228-3.575-.319-7.175 3.28-7.175 3.28zm-3.123 3.078c-4.478 3.618-9.355 2.292-10.385 1.38l-7.644-5.978c-5.516 0-4.48 7.846 1.132 10.349 9.576 4.271 17.103-1.423 18.399-4.18l-1.502-1.571z"/><path fill="#66A644" d="M27.814 26.878c1.408-2.155.357-5.346-.385-6.815-.163.998-.843 2.383-2.384 4.286-1.049 1.294-.483 3.302-.021 4.199l.001.001c-3.596 2.842-7.065 2.264-8.825 1.464 1.17-.542 1.986-1.7 1.986-3.053 0-1.87-1.547-3.385-3.454-3.385h-7.14c-5.516 0-4.48 7.39 1.132 9.843 9.165 4.007 17-.67 18.793-3.448.863.096 2.363.056 3.573-.741 1.937-1.276 1.414-3.441 3.482-5.734-3.483.249-6.758 3.383-6.758 3.383z"/><path fill="#316116" d="M16.212 30.014c-2.309-.46-6.994-2.625-7.193-2.717-.194-.09-.278-.319-.188-.512.09-.195.321-.28.513-.188.048.022 5.488 2.428 7.707 2.869 0 0-.158.133-.336.267-.179.132-.503.281-.503.281z"/><path fill="#F7DECE" d="M7.399 17.278c-1.878 1.035-3.24 2.455-3.336 2.617-.239.404-.437 1.592-.276 2.415.145.741.177 2.238.66 2.915.198.277.107.759-.032 1.208-.419 1.353.306 3.199-.145 2.882-.918-.644-1.074-1.83-1.047-2.528.015-.393-.166-.884-.257-1.138-.059-.16-1.245-3.203-1.518-4.54-.148-.722-.333-1.302.275-2.155.903-1.266 2.094-2.996 3.311-3.885 2.012-1.471 3.936-1.687 3.936-1.687s-.911 3.532-1.571 3.896zm23-6.626c-.084.009-.143.102-.203.238-.023-.164-.074-.276-.184-.264-.129.013-.201.22-.304.492-.027-.047-.062-.079-.117-.078-.261.009-.349.811-.909 1.334-.081.036-.154.078-.248.104-.059.016-.098.041-.146.061.005-.255.171-.405.271-.474.239-.166.089-.586-.314-.331-.289.183-.41.365-.501.55-.255.519-.354 1.058-.333 1.487l-.119.215c-.139.242-1.626 1.17-2.696 1.967-1.066.793-1.846 1.694-2.415 1.132-.396-.391-1.591-1.706-3.322-2.833-1.093-.712-2.733-.866-2.733-.866-.807.662.166 3.109.894 3.566.938.589 4.26 2.925 5.306 3.391s1.704-.161 2.196-.609c.403-.366 3.434-4.072 3.703-4.326.365-.344 1.063-.797 1.457-1.491.338-.596.543-1.079.667-1.855.071-.456.402-1.447.05-1.41zM10.706 9.387v3.714c0 1.026.831 1.857 1.857 1.857s1.857-.831 1.857-1.857V9.387h-3.714z"/><path fill="#EEC2AD" d="M14.419 9.387l-3.714.017v3.697s1.857.928 3.714 0V9.387z"/><path fill="#F7DECE" d="M17.205 2.934H7.92V8.48c0 2.553 2.078 4.621 4.642 4.621 2.564 0 4.643-2.068 4.643-4.621V2.934z"/><path fill="#DF1F32" d="M14.419 11.244h-3.714s0 .928 1.857.928 1.857-.928 1.857-.928z"/><circle fill="#662113" cx="10.241" cy="7.994" r=".464"/><circle fill="#662113" cx="14.884" cy="7.994" r=".464"/><path fill="#C1694F" d="M11.634 9.387h1.857s0 .928-.929.928c-.928 0-.928-.928-.928-.928z"/><path fill="#2CB4CD" d="M18.133 6.601l-.613-4.114H6.992v4.114c3.674 0 3.713-3.628 3.714-3.707.001.08.08 3.707 7.427 3.707z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f9dc-1f3fb-200d-2642-fe0f.svg b/public/emoji/1f9dc-1f3fb-200d-2642-fe0f.svg
index d2167b4ae9c2f869fc0b07540c630f50658f5144..4263e6a86be57b20ed243000e4050af170d1d55b 100644
--- a/public/emoji/1f9dc-1f3fb-200d-2642-fe0f.svg
+++ b/public/emoji/1f9dc-1f3fb-200d-2642-fe0f.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#F7DECE" d="M29.637 18.636c-.305-.612-1.02-.844-1.589-.515l-3.102 1.79-1.718-3.444.012-.009c-.171-.34-.336-.669-.502-.972l-.011-.023c-.002-.003-.005-.005-.006-.008-.457-.834-.924-1.455-1.549-1.455H11.044c-.365.004-.688.167-.93.474l-.797 1.01c-.25.289-.494.597-.713.904l-5.199 6.589c-.426.54-.333 1.33.207 1.756s1.33.333 1.756-.207l5.821-7.378.811 6.856-.725 3.971h9.387L20 24.004l.77-7.128 2.664 5.34c.305.612 1.02.844 1.589.515l4.136-2.387c.568-.328.784-1.097.478-1.708z"/><path fill="#F7DECE" d="M14 11v4c0 1.104.896 2 2 2s2-.896 2-2v-4h-4z"/><path fill="#EEC2AD" d="M18 10l-4 .019V14s2 1 4 0v-4z"/><path fill="#F7DECE" d="M21 5l-10-.952V9c0 2.762 2.238 5 5 5s5-2.237 5-5V5z"/><path fill="#C1694F" d="M18 12h-4s0 1 2 1 2-1 2-1z"/><circle fill="#662113" cx="13.5" cy="8.5" r=".5"/><circle fill="#662113" cx="18.5" cy="8.5" r=".5"/><path fill="#C1694F" d="M15 10h2s0 1-1 1-1-1-1-1z"/><path fill="#292F33" d="M16 1.043c3.433 0 5.578 2.533 5.578 4.644s-.429 2.955-.858 2.111l-.858-1.688s-2.574 0-3.432-.845c0 0 1.287 2.533-1.287 0 0 0 .429 1.689-2.145-.422 0 0-1.287.844-1.716 2.955-.119.586-.858 0-.858-2.111-.002-2.111 1.714-4.644 5.576-4.644"/><path fill="#3B88C3" d="M10 31h8c1.65 0 3-1.35 3-3v-1c0-1.1-.9-2-2-2h-9c-1.65 0-3 1.35-3 3s1.35 3 3 3z"/><path fill="#3B88C3" d="M7.278 26.749C6.235 29.211 7.468 32.826 11 34c1.979.658 6.075 1.291 9.662.658 4.291-.757 7.397-3.473 7.397-3.473l-1.725-1.492s-2.22.764-4.334.861c-3.894.178-8.488-2.926-11-3.554-2.878-.719-3.722-.251-3.722-.251z"/><path fill="#3B88C3" d="M25.756 31.674c-.651-.742-.535-2.842.968-4.161 2.254-1.98 2.912-3.982 3.664-4.642 0 0 .88 3.988-1.374 5.968 0 0 3.832-2.537 6.382-1.701-3.719 1.581-3.803 4.089-6.075 4.905-1.882.675-2.913.373-3.565-.369z"/><path fill="#292F33" d="M19.447 30.269c-.023 0-.049-.002-.073-.007-2.24-.446-6.787-2.547-6.979-2.637-.188-.087-.27-.31-.183-.497.087-.189.312-.271.498-.183.046.021 4.657 2.152 6.81 2.58.203.041.335.238.295.441-.036.18-.192.303-.368.303z"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#F7DECE" d="M16.703 13.234c-2.061-.088-4.3-.078-4.3-.078s-2.24-.01-4.3.078c-.501.021-.979.233-1.35.456-.439.264-.728.544-.728.544.105 1.368 1.219 3.286 1.368 3.564.418.78.922 4.264.922 4.264.114 1.201 0 2 0 2h8.176s-.114-.799 0-2c0 0 .504-3.484.922-4.264.149-.278 1.263-2.196 1.368-3.564 0 0-.984-.953-2.078-1z"/><path fill="#E0AA94" d="M14.985 18.332c-1.131 0-1.968-.354-2.014-.374-.126-.055-.185-.202-.13-.328.054-.126.2-.187.328-.131.014.006 1.35.565 2.857.215.137-.029.269.053.3.187.031.134-.053.269-.187.3-.403.095-.793.131-1.154.131zm-5.324 0c-.36 0-.75-.036-1.155-.13-.134-.031-.218-.166-.187-.3.031-.134.164-.216.3-.187 1.516.353 2.844-.209 2.857-.215.127-.056.274.003.329.13s-.004.274-.13.329c-.047.02-.883.373-2.014.373z"/><path fill="#184F87" d="M28.744 25.545c1.738-2.783-.967-7.196-.967-7.196-.067.534-.348 1.714-.348 1.714-.163.998-.678 2.566-2.219 4.469-1.049 1.294 4.467 5.504 5.708 4.687 1.937-1.276 1.587-3.432 3.655-5.726.367-.407.8-.817 1.346-1.228-3.575-.319-7.175 3.28-7.175 3.28zm-3.123 3.078c-4.478 3.618-9.355 2.292-10.385 1.38l-7.644-5.978c-5.516 0-4.48 7.846 1.132 10.349 9.576 4.271 17.103-1.423 18.399-4.18l-1.502-1.571z"/><path fill="#4292E0" d="M27.814 26.878c1.408-2.155.357-5.346-.385-6.815-.163.998-.843 2.383-2.384 4.286-1.049 1.294-.483 3.302-.021 4.199l.001.001c-3.596 2.842-7.065 2.264-8.825 1.464 1.17-.542 1.986-1.7 1.986-3.053 0-1.87-1.547-3.385-3.454-3.385h-7.14c-5.516 0-4.48 7.39 1.132 9.843 9.165 4.007 17-.67 18.793-3.448.863.096 2.363.056 3.573-.741 1.937-1.276 1.414-3.441 3.482-5.734-3.483.249-6.758 3.383-6.758 3.383z"/><path fill="#184F87" d="M16.212 30.014c-2.309-.46-6.994-2.625-7.193-2.717-.194-.09-.278-.319-.188-.512.09-.195.321-.28.513-.188.048.022 5.488 2.428 7.707 2.869 0 0-.158.133-.336.267-.179.132-.503.281-.503.281z"/><path fill="#F7DECE" d="M7.482 17.392c-1.878 1.035-3.267 2.429-3.38 2.58-.477.637-.324 1.509-.251 2.345.086.995.112 2.231.595 2.908.198.277.107.759-.032 1.208-.419 1.353.306 3.199-.145 2.882-.918-.644-1.074-1.83-1.047-2.528.015-.393-.166-.884-.257-1.138-.059-.16-1.348-3.094-1.622-4.431-.148-.722-.186-1.381.379-2.263.621-.971 1.939-2.945 3.117-3.885.989-.789 1.564-1.189 1.914-1.38 1.57-.857 1.389 3.338.729 3.702zm22.917-6.74c-.084.009-.143.102-.203.238-.023-.164-.074-.276-.184-.264-.129.013-.201.22-.304.492-.027-.047-.062-.079-.117-.078-.261.009-.349.811-.909 1.334-.081.036-.154.078-.248.104-.059.016-.098.041-.146.061.005-.255.171-.405.271-.474.239-.166.089-.586-.314-.331-.289.183-.41.365-.501.55-.255.519-.354 1.058-.333 1.487l-.119.215c-.139.242-1.626 1.17-2.696 1.967-1.066.793-1.846 1.694-2.415 1.132-.396-.391-1.462-1.74-3.322-2.833-1.124-.661-2.733-.866-2.733-.866-.807.662.226 3.019.812 3.647.981 1.051 4.341 2.844 5.388 3.31s1.704-.161 2.196-.609c.403-.366 3.434-4.072 3.703-4.326.365-.344 1.063-.797 1.457-1.491.338-.596.543-1.079.667-1.855.071-.456.402-1.447.05-1.41zm-19.86-.361v3.727c0 1.029.834 1.864 1.864 1.864 1.029 0 1.864-.834 1.864-1.864v-3.727h-3.728z"/><path fill="#EEC2AD" d="M14.267 9.36l-3.727.017v3.71s1.864.932 3.727 0V9.36z"/><path fill="#F7DECE" d="M17.062 4.701l-9.318-.827v4.554c0 2.574 2.086 4.659 4.659 4.659s4.659-2.085 4.659-4.659V4.701z"/><path fill="#C1694F" d="M14.267 11.223h-3.728s0 .932 1.864.932 1.864-.932 1.864-.932z"/><circle fill="#662113" cx="10.073" cy="7.962" r=".466"/><circle fill="#662113" cx="14.733" cy="7.962" r=".466"/><path fill="#C1694F" d="M11.471 9.36h1.864s0 .932-.932.932-.932-.932-.932-.932z"/><path fill="#4292E0" d="M12.403 1.013c3.199 0 5.198 2.36 5.198 4.327s-.4 2.754-.8 1.967l-.8-1.573s-2.399 0-3.198-.787c0 0 1.2 2.36-1.2 0 0 0 .4 1.574-1.999-.393 0 0-1.2.787-1.599 2.753-.111.546-.8 0-.8-1.967 0-1.966 1.6-4.327 5.198-4.327"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f9dc-1f3fb.svg b/public/emoji/1f9dc-1f3fb.svg
index 3e624eb9372bf256178aa7df7d0c6dab3c808c97..e211b06a1dd75faf09776e5a4b18933341212ad0 100644
--- a/public/emoji/1f9dc-1f3fb.svg
+++ b/public/emoji/1f9dc-1f3fb.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#292F33" d="M17 0c-1.264 0-2.435.393-3.402 1.061C13.401 1.031 13.205 1 13 1c-2.209 0-4 1.791-4 4v6c0 3.866 3.134 7 7 7s7-3.134 7-7V6.001C23 2.687 20.313 0 17 0z"/><path fill="#F7DECE" d="M29.637 18.636c-.305-.612-1.02-.844-1.589-.515l-3.102 1.79-2.11-4.23c-.346-.929-1.188-1.587-2.175-1.587h-9.49c-1.016 0-1.454.595-1.656.938L3.244 25.656c-.347.588-.184 1.368.363 1.741.174.12.367.182.559.194.412.026.824-.183 1.06-.585l5.539-9.401.51.274 1.173 5.048-1.173 5.048h9.387l-1.173-5.048 1.173-5.048.48-.258 2.292 4.594c.305.612 1.02.844 1.589.515l4.136-2.387c.568-.327.784-1.096.478-1.707z"/><path fill="#E75A70" d="M15.968 17.879s-1.173-1.262-2.347-1.262-2.347 1.262-2.347 1.262l.88 3.786h7.627l.88-3.786s-1.173-1.262-2.347-1.262c-1.172 0-2.346 1.262-2.346 1.262z"/><path fill="#F7DECE" d="M14 10v4c0 1.104.896 2 2 2s2-.896 2-2v-4h-4z"/><path fill="#EEC2AD" d="M18 10l-4 .019V14s2 1 4 0v-4z"/><path fill="#F7DECE" d="M21 3.05H11v5.973C11 11.773 13.238 14 16 14s5-2.227 5-4.977V3.05z"/><path fill="#292F33" d="M14 3s0 4 8 4V3h-8zm0 0s0 4-4 4V3h4z"/><path fill="#DF1F32" d="M18 12h-4s0 1 2 1 2-1 2-1z"/><circle fill="#662113" cx="13.5" cy="8.5" r=".5"/><circle fill="#662113" cx="18.5" cy="8.5" r=".5"/><path fill="#C1694F" d="M15 10h2s0 1-1 1-1-1-1-1z"/><path fill="#5D9040" d="M29.014 28.838c2.254-1.98 1.374-5.968 1.374-5.968-.751.66-1.41 2.663-3.664 4.642-.803.705-1.2 1.629-1.306 2.454-.842.23-2.145.529-3.418.587-.706.032-1.436-.046-2.172-.195C20.535 29.809 21 28.96 21 28v-1c0-1.1-.9-2-2-2h-9c-1.201 0-2.236.719-2.714 1.745l-.008.003-.011.031c-.043.095-.072.196-.105.296-.025.076-.051.152-.072.23-.012.049-.025.098-.034.148-.57 2.401.735 5.48 3.944 6.547 1.979.658 6.075 1.291 9.662.658 2.511-.443 4.61-1.555 5.924-2.402.635.247 1.499.23 2.735-.214 2.272-.816 2.356-3.324 6.075-4.905-2.55-.836-6.382 1.701-6.382 1.701z"/><path fill="#292F33" d="M19.447 30.269c-.023 0-.049-.002-.073-.007-2.24-.446-6.787-2.547-6.979-2.637-.188-.087-.27-.31-.183-.497.087-.189.312-.271.498-.183.046.021 4.657 2.152 6.81 2.58.203.041.335.238.295.441-.036.18-.192.303-.368.303z"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#2CB4CD" d="M20.716 11.182c-.994-1.383-1.654-5.509-1.654-5.509-.155-2.715-2.494-5.572-5.571-5.572-1.173 0-2.26.365-3.159.985-.182-.027-.365-.056-.555-.056-2.051 0-3.714 1.663-3.714 3.714 0 0-.73 2.881-1.521 3.797.377-.223.706-.465.997-.724-.259 1.306-.788 3.586-1.478 4.547.765-.55 1.41-1.136 1.859-1.795-.021.647-.399 1.267-.837 3.348-.458 2.177.364 2.197 1.385 2.646 1.795.789 12.847 1.296 13.281-.969.513-2.675.068-4.112-.425-5.624.391.429.86.83 1.392 1.212z"/><path fill="#F7DECE" d="M16.125 13.384s-2.26-.137-3.764-.137-2.959.1-3.392.137l-1.963 3.619.526.283s1.209 4.354 1.209 5.202c0 .848-1.209 5.202-1.209 5.202h9.674s-1.209-4.075-1.209-5.202 1.209-5.202 1.209-5.202l.495-.266-1.576-3.636z"/><path fill="#DD415D" d="M12.369 17.286s-1.209-1.301-2.418-1.301-2.418 1.301-2.418 1.301l.983 3.902h7.681l1.009-3.902s-1.209-1.301-2.418-1.301-2.419 1.301-2.419 1.301z"/><path fill="#316116" d="M28.744 25.545c1.738-2.783-.967-7.196-.967-7.196-.067.534-.348 1.714-.348 1.714-.163.998-.678 2.566-2.219 4.469-1.049 1.294 4.467 5.504 5.708 4.687 1.937-1.276 1.587-3.432 3.655-5.726.367-.407.8-.817 1.346-1.228-3.575-.319-7.175 3.28-7.175 3.28zm-3.123 3.078c-4.478 3.618-9.355 2.292-10.385 1.38l-7.644-5.978c-5.516 0-4.48 7.846 1.132 10.349 9.576 4.271 17.103-1.423 18.399-4.18l-1.502-1.571z"/><path fill="#66A644" d="M27.814 26.878c1.408-2.155.357-5.346-.385-6.815-.163.998-.843 2.383-2.384 4.286-1.049 1.294-.483 3.302-.021 4.199l.001.001c-3.596 2.842-7.065 2.264-8.825 1.464 1.17-.542 1.986-1.7 1.986-3.053 0-1.87-1.547-3.385-3.454-3.385h-7.14c-5.516 0-4.48 7.39 1.132 9.843 9.165 4.007 17-.67 18.793-3.448.863.096 2.363.056 3.573-.741 1.937-1.276 1.414-3.441 3.482-5.734-3.483.249-6.758 3.383-6.758 3.383z"/><path fill="#316116" d="M16.212 30.014c-2.309-.46-6.994-2.625-7.193-2.717-.194-.09-.278-.319-.188-.512.09-.195.321-.28.513-.188.048.022 5.488 2.428 7.707 2.869 0 0-.158.133-.336.267-.179.132-.503.281-.503.281z"/><path fill="#F7DECE" d="M7.399 17.278c-1.878 1.035-3.24 2.455-3.336 2.617-.239.404-.437 1.592-.276 2.415.145.741.177 2.238.66 2.915.198.277.107.759-.032 1.208-.419 1.353.306 3.199-.145 2.882-.918-.644-1.074-1.83-1.047-2.528.015-.393-.166-.884-.257-1.138-.059-.16-1.245-3.203-1.518-4.54-.148-.722-.333-1.302.275-2.155.903-1.266 2.094-2.996 3.311-3.885 2.012-1.471 3.936-1.687 3.936-1.687s-.911 3.532-1.571 3.896zm23-6.626c-.084.009-.143.102-.203.238-.023-.164-.074-.276-.184-.264-.129.013-.201.22-.304.492-.027-.047-.062-.079-.117-.078-.261.009-.349.811-.909 1.334-.081.036-.154.078-.248.104-.059.016-.098.041-.146.061.005-.255.171-.405.271-.474.239-.166.089-.586-.314-.331-.289.183-.41.365-.501.55-.255.519-.354 1.058-.333 1.487l-.119.215c-.139.242-1.626 1.17-2.696 1.967-1.066.793-1.846 1.694-2.415 1.132-.396-.391-1.591-1.706-3.322-2.833-1.093-.712-2.733-.866-2.733-.866-.807.662.166 3.109.894 3.566.938.589 4.26 2.925 5.306 3.391s1.704-.161 2.196-.609c.403-.366 3.434-4.072 3.703-4.326.365-.344 1.063-.797 1.457-1.491.338-.596.543-1.079.667-1.855.071-.456.402-1.447.05-1.41zM10.706 9.387v3.714c0 1.026.831 1.857 1.857 1.857s1.857-.831 1.857-1.857V9.387h-3.714z"/><path fill="#EEC2AD" d="M14.419 9.387l-3.714.017v3.697s1.857.928 3.714 0V9.387z"/><path fill="#F7DECE" d="M17.205 2.934H7.92V8.48c0 2.553 2.078 4.621 4.642 4.621 2.564 0 4.643-2.068 4.643-4.621V2.934z"/><path fill="#DF1F32" d="M14.419 11.244h-3.714s0 .928 1.857.928 1.857-.928 1.857-.928z"/><circle fill="#662113" cx="10.241" cy="7.994" r=".464"/><circle fill="#662113" cx="14.884" cy="7.994" r=".464"/><path fill="#C1694F" d="M11.634 9.387h1.857s0 .928-.929.928c-.928 0-.928-.928-.928-.928z"/><path fill="#2CB4CD" d="M18.133 6.601l-.613-4.114H6.992v4.114c3.674 0 3.713-3.628 3.714-3.707.001.08.08 3.707 7.427 3.707z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f9dc-1f3fc-200d-2640-fe0f.svg b/public/emoji/1f9dc-1f3fc-200d-2640-fe0f.svg
index c0c2c62126423cdfcddb80addab96bb2030a5d54..de8fa7329381ed45c1f3b8530dc2357193a937b3 100644
--- a/public/emoji/1f9dc-1f3fc-200d-2640-fe0f.svg
+++ b/public/emoji/1f9dc-1f3fc-200d-2640-fe0f.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#FFE51E" d="M17 0c-1.264 0-2.435.393-3.402 1.061C13.401 1.031 13.205 1 13 1c-2.209 0-4 1.791-4 4v6c0 3.866 3.134 7 7 7s7-3.134 7-7V6.001C23 2.687 20.313 0 17 0z"/><path fill="#F3D2A2" d="M29.637 18.636c-.305-.612-1.02-.844-1.589-.515l-3.102 1.79-2.11-4.23c-.346-.929-1.188-1.587-2.175-1.587h-9.49c-1.016 0-1.454.595-1.656.938L3.244 25.656c-.347.588-.184 1.368.363 1.741.174.12.367.182.559.194.412.026.824-.183 1.06-.585l5.539-9.401.51.274 1.173 5.048-1.173 5.048h9.387l-1.173-5.048 1.173-5.048.48-.258 2.292 4.594c.305.612 1.02.844 1.589.515l4.136-2.387c.568-.327.784-1.096.478-1.707z"/><path fill="#E75A70" d="M15.968 17.879s-1.173-1.262-2.347-1.262-2.347 1.262-2.347 1.262l.88 3.786h7.627l.88-3.786s-1.173-1.262-2.347-1.262c-1.172 0-2.346 1.262-2.346 1.262z"/><path fill="#F3D2A2" d="M14 10v4c0 1.104.896 2 2 2s2-.896 2-2v-4h-4z"/><path fill="#E2C196" d="M18 10l-4 .019V14s2 1 4 0v-4z"/><path fill="#F3D2A2" d="M21 3.05H11v5.973C11 11.773 13.238 14 16 14s5-2.227 5-4.977V3.05z"/><path fill="#FFE51E" d="M14 3s0 4 8 4V3h-8zm0 0s0 4-4 4V3h4z"/><path fill="#DF1F32" d="M18 12h-4s0 1 2 1 2-1 2-1z"/><circle fill="#662113" cx="13.5" cy="8.5" r=".5"/><circle fill="#662113" cx="18.5" cy="8.5" r=".5"/><path fill="#C1694F" d="M15 10h2s0 1-1 1-1-1-1-1z"/><path fill="#5D9040" d="M29.014 28.838c2.254-1.98 1.374-5.968 1.374-5.968-.751.66-1.41 2.663-3.664 4.642-.803.705-1.2 1.629-1.306 2.454-.842.23-2.145.529-3.418.587-.706.032-1.436-.046-2.172-.195C20.535 29.809 21 28.96 21 28v-1c0-1.1-.9-2-2-2h-9c-1.201 0-2.236.719-2.714 1.745l-.008.003-.011.031c-.043.095-.072.196-.105.296-.025.076-.051.152-.072.23-.012.049-.025.098-.034.148-.57 2.401.735 5.48 3.944 6.547 1.979.658 6.075 1.291 9.662.658 2.511-.443 4.61-1.555 5.924-2.402.635.247 1.499.23 2.735-.214 2.272-.816 2.356-3.324 6.075-4.905-2.55-.836-6.382 1.701-6.382 1.701z"/><path fill="#292F33" d="M19.447 30.269c-.023 0-.049-.002-.073-.007-2.24-.446-6.787-2.547-6.979-2.637-.188-.087-.27-.31-.183-.497.087-.189.312-.271.498-.183.046.021 4.657 2.152 6.81 2.58.203.041.335.238.295.441-.036.18-.192.303-.368.303z"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#2CB4CD" d="M20.716 11.182c-.994-1.383-1.654-5.509-1.654-5.509-.155-2.715-2.494-5.572-5.571-5.572-1.173 0-2.26.365-3.159.985-.182-.027-.365-.056-.555-.056-2.051 0-3.714 1.663-3.714 3.714 0 0-.73 2.881-1.521 3.797.377-.223.706-.465.997-.724-.259 1.306-.788 3.586-1.478 4.547.765-.55 1.41-1.136 1.859-1.795-.021.647-.399 1.267-.837 3.348-.458 2.177.364 2.197 1.385 2.646 1.795.789 12.847 1.296 13.281-.969.513-2.675.068-4.112-.425-5.624.391.429.86.83 1.392 1.212z"/><path fill="#F3D2A2" d="M16.125 13.384s-2.26-.137-3.764-.137-2.959.1-3.392.137l-1.963 3.619.526.283s1.209 4.354 1.209 5.202c0 .848-1.209 5.202-1.209 5.202h9.674s-1.209-4.075-1.209-5.202 1.209-5.202 1.209-5.202l.495-.266-1.576-3.636z"/><path fill="#DD415D" d="M12.369 17.286s-1.209-1.301-2.418-1.301-2.418 1.301-2.418 1.301l.983 3.902h7.681l1.009-3.902s-1.209-1.301-2.418-1.301-2.419 1.301-2.419 1.301z"/><path fill="#316116" d="M28.744 25.545c1.738-2.783-.967-7.196-.967-7.196-.067.534-.348 1.714-.348 1.714-.163.998-.678 2.566-2.219 4.469-1.049 1.294 4.467 5.504 5.708 4.687 1.937-1.276 1.587-3.432 3.655-5.726.367-.407.8-.817 1.346-1.228-3.575-.319-7.175 3.28-7.175 3.28zm-3.123 3.078c-4.478 3.618-9.355 2.292-10.385 1.38l-7.644-5.978c-5.516 0-4.48 7.846 1.132 10.349 9.576 4.271 17.103-1.423 18.399-4.18l-1.502-1.571z"/><path fill="#66A644" d="M27.814 26.878c1.408-2.155.357-5.346-.385-6.815-.163.998-.843 2.383-2.384 4.286-1.049 1.294-.483 3.302-.021 4.199l.001.001c-3.596 2.842-7.065 2.264-8.825 1.464 1.17-.542 1.986-1.7 1.986-3.053 0-1.87-1.547-3.385-3.454-3.385h-7.14c-5.516 0-4.48 7.39 1.132 9.843 9.165 4.007 17-.67 18.793-3.448.863.096 2.363.056 3.573-.741 1.937-1.276 1.414-3.441 3.482-5.734-3.483.249-6.758 3.383-6.758 3.383z"/><path fill="#316116" d="M16.212 30.014c-2.309-.46-6.994-2.625-7.193-2.717-.194-.09-.278-.319-.188-.512.09-.195.321-.28.513-.188.048.022 5.488 2.428 7.707 2.869 0 0-.158.133-.336.267-.179.132-.503.281-.503.281z"/><path fill="#F3D2A2" d="M7.399 17.278c-1.878 1.035-3.24 2.455-3.336 2.617-.239.404-.437 1.592-.276 2.415.145.741.177 2.238.66 2.915.198.277.107.759-.032 1.208-.419 1.353.306 3.199-.145 2.882-.918-.644-1.074-1.83-1.047-2.528.015-.393-.166-.884-.257-1.138-.059-.16-1.245-3.203-1.518-4.54-.148-.722-.333-1.302.275-2.155.903-1.266 2.094-2.996 3.311-3.885 2.012-1.471 3.936-1.687 3.936-1.687s-.911 3.532-1.571 3.896zm23-6.626c-.084.009-.143.102-.203.238-.023-.164-.074-.276-.184-.264-.129.013-.201.22-.304.492-.027-.047-.062-.079-.117-.078-.261.009-.349.811-.909 1.334-.081.036-.154.078-.248.104-.059.016-.098.041-.146.061.005-.255.171-.405.271-.474.239-.166.089-.586-.314-.331-.289.183-.41.365-.501.55-.255.519-.354 1.058-.333 1.487l-.119.215c-.139.242-1.626 1.17-2.696 1.967-1.066.793-1.846 1.694-2.415 1.132-.396-.391-1.591-1.706-3.322-2.833-1.093-.712-2.733-.866-2.733-.866-.807.662.166 3.109.894 3.566.938.589 4.26 2.925 5.306 3.391s1.704-.161 2.196-.609c.403-.366 3.434-4.072 3.703-4.326.365-.344 1.063-.797 1.457-1.491.338-.596.543-1.079.667-1.855.071-.456.402-1.447.05-1.41zM10.706 9.387v3.714c0 1.026.831 1.857 1.857 1.857s1.857-.831 1.857-1.857V9.387h-3.714z"/><path fill="#E2C196" d="M14.419 9.387l-3.714.017v3.697s1.857.928 3.714 0V9.387z"/><path fill="#F3D2A2" d="M17.205 2.934H7.92V8.48c0 2.553 2.078 4.621 4.642 4.621 2.564 0 4.643-2.068 4.643-4.621V2.934z"/><path fill="#DF1F32" d="M14.419 11.244h-3.714s0 .928 1.857.928 1.857-.928 1.857-.928z"/><circle fill="#662113" cx="10.241" cy="7.994" r=".464"/><circle fill="#662113" cx="14.884" cy="7.994" r=".464"/><path fill="#C1694F" d="M11.634 9.387h1.857s0 .928-.929.928c-.928 0-.928-.928-.928-.928z"/><path fill="#2CB4CD" d="M18.133 6.601l-.613-4.114H6.992v4.114c3.674 0 3.713-3.628 3.714-3.707.001.08.08 3.707 7.427 3.707z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f9dc-1f3fc-200d-2642-fe0f.svg b/public/emoji/1f9dc-1f3fc-200d-2642-fe0f.svg
index 7a7ea8b2afa821bf49b86154b1e9a75fdf447235..18637d961c72d45f2928c4dc60962c23fa3717c3 100644
--- a/public/emoji/1f9dc-1f3fc-200d-2642-fe0f.svg
+++ b/public/emoji/1f9dc-1f3fc-200d-2642-fe0f.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#F3D2A2" d="M29.637 18.636c-.305-.612-1.02-.844-1.589-.515l-3.102 1.79-1.718-3.444.012-.009c-.171-.34-.336-.669-.502-.972l-.011-.023c-.002-.003-.005-.005-.006-.008-.457-.834-.924-1.455-1.549-1.455H11.044c-.365.004-.688.167-.93.474l-.797 1.01c-.25.289-.494.597-.713.904l-5.199 6.589c-.426.54-.333 1.33.207 1.756s1.33.333 1.756-.207l5.821-7.378.811 6.856-.725 3.971h9.387L20 24.004l.77-7.128 2.664 5.34c.305.612 1.02.844 1.589.515l4.136-2.387c.568-.328.784-1.097.478-1.708z"/><path fill="#F3D2A2" d="M14 11v4c0 1.104.896 2 2 2s2-.896 2-2v-4h-4z"/><path fill="#E2C196" d="M18 10l-4 .019V14s2 1 4 0v-4z"/><path fill="#F3D2A2" d="M21 5l-10-.952V9c0 2.762 2.238 5 5 5s5-2.237 5-5V5z"/><path fill="#C1694F" d="M18 12h-4s0 1 2 1 2-1 2-1z"/><circle fill="#662113" cx="13.5" cy="8.5" r=".5"/><circle fill="#662113" cx="18.5" cy="8.5" r=".5"/><path fill="#C1694F" d="M15 10h2s0 1-1 1-1-1-1-1z"/><path fill="#FFE51E" d="M16 1.043c3.433 0 5.578 2.533 5.578 4.644s-.429 2.955-.858 2.111l-.858-1.688s-2.574 0-3.432-.845c0 0 1.287 2.533-1.287 0 0 0 .429 1.689-2.145-.422 0 0-1.287.844-1.716 2.955-.119.586-.858 0-.858-2.111-.002-2.111 1.714-4.644 5.576-4.644"/><path fill="#3B88C3" d="M10 31h8c1.65 0 3-1.35 3-3v-1c0-1.1-.9-2-2-2h-9c-1.65 0-3 1.35-3 3s1.35 3 3 3z"/><path fill="#3B88C3" d="M7.278 26.749C6.235 29.211 7.468 32.826 11 34c1.979.658 6.075 1.291 9.662.658 4.291-.757 7.397-3.473 7.397-3.473l-1.725-1.492s-2.22.764-4.334.861c-3.894.178-8.488-2.926-11-3.554-2.878-.719-3.722-.251-3.722-.251z"/><path fill="#3B88C3" d="M25.756 31.674c-.651-.742-.535-2.842.968-4.161 2.254-1.98 2.912-3.982 3.664-4.642 0 0 .88 3.988-1.374 5.968 0 0 3.832-2.537 6.382-1.701-3.719 1.581-3.803 4.089-6.075 4.905-1.882.675-2.913.373-3.565-.369z"/><path fill="#292F33" d="M19.447 30.269c-.023 0-.049-.002-.073-.007-2.24-.446-6.787-2.547-6.979-2.637-.188-.087-.27-.31-.183-.497.087-.189.312-.271.498-.183.046.021 4.657 2.152 6.81 2.58.203.041.335.238.295.441-.036.18-.192.303-.368.303z"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#F3D2A2" d="M16.703 13.234c-2.061-.088-4.3-.078-4.3-.078s-2.24-.01-4.3.078c-.501.021-.979.233-1.35.456-.439.264-.728.544-.728.544.105 1.368 1.219 3.286 1.368 3.564.418.78.922 4.264.922 4.264.114 1.201 0 2 0 2h8.176s-.114-.799 0-2c0 0 .504-3.484.922-4.264.149-.278 1.263-2.196 1.368-3.564 0 0-.984-.953-2.078-1z"/><path fill="#D2A077" d="M14.985 18.332c-1.131 0-1.968-.354-2.014-.374-.126-.055-.185-.202-.13-.328.054-.126.2-.187.328-.131.014.006 1.35.565 2.857.215.137-.029.269.053.3.187.031.134-.053.269-.187.3-.403.095-.793.131-1.154.131zm-5.324 0c-.36 0-.75-.036-1.155-.13-.134-.031-.218-.166-.187-.3.031-.134.164-.216.3-.187 1.516.353 2.844-.209 2.857-.215.127-.056.274.003.329.13s-.004.274-.13.329c-.047.02-.883.373-2.014.373z"/><path fill="#184F87" d="M28.744 25.545c1.738-2.783-.967-7.196-.967-7.196-.067.534-.348 1.714-.348 1.714-.163.998-.678 2.566-2.219 4.469-1.049 1.294 4.467 5.504 5.708 4.687 1.937-1.276 1.587-3.432 3.655-5.726.367-.407.8-.817 1.346-1.228-3.575-.319-7.175 3.28-7.175 3.28zm-3.123 3.078c-4.478 3.618-9.355 2.292-10.385 1.38l-7.644-5.978c-5.516 0-4.48 7.846 1.132 10.349 9.576 4.271 17.103-1.423 18.399-4.18l-1.502-1.571z"/><path fill="#4292E0" d="M27.814 26.878c1.408-2.155.357-5.346-.385-6.815-.163.998-.843 2.383-2.384 4.286-1.049 1.294-.483 3.302-.021 4.199l.001.001c-3.596 2.842-7.065 2.264-8.825 1.464 1.17-.542 1.986-1.7 1.986-3.053 0-1.87-1.547-3.385-3.454-3.385h-7.14c-5.516 0-4.48 7.39 1.132 9.843 9.165 4.007 17-.67 18.793-3.448.863.096 2.363.056 3.573-.741 1.937-1.276 1.414-3.441 3.482-5.734-3.483.249-6.758 3.383-6.758 3.383z"/><path fill="#184F87" d="M16.212 30.014c-2.309-.46-6.994-2.625-7.193-2.717-.194-.09-.278-.319-.188-.512.09-.195.321-.28.513-.188.048.022 5.488 2.428 7.707 2.869 0 0-.158.133-.336.267-.179.132-.503.281-.503.281z"/><path fill="#F3D2A2" d="M7.482 17.392c-1.878 1.035-3.267 2.429-3.38 2.58-.477.637-.324 1.509-.251 2.345.086.995.112 2.231.595 2.908.198.277.107.759-.032 1.208-.419 1.353.306 3.199-.145 2.882-.918-.644-1.074-1.83-1.047-2.528.015-.393-.166-.884-.257-1.138-.059-.16-1.348-3.094-1.622-4.431-.148-.722-.186-1.381.379-2.263.621-.971 1.939-2.945 3.117-3.885.989-.789 1.564-1.189 1.914-1.38 1.57-.857 1.389 3.338.729 3.702zm22.917-6.74c-.084.009-.143.102-.203.238-.023-.164-.074-.276-.184-.264-.129.013-.201.22-.304.492-.027-.047-.062-.079-.117-.078-.261.009-.349.811-.909 1.334-.081.036-.154.078-.248.104-.059.016-.098.041-.146.061.005-.255.171-.405.271-.474.239-.166.089-.586-.314-.331-.289.183-.41.365-.501.55-.255.519-.354 1.058-.333 1.487l-.119.215c-.139.242-1.626 1.17-2.696 1.967-1.066.793-1.846 1.694-2.415 1.132-.396-.391-1.462-1.74-3.322-2.833-1.124-.661-2.733-.866-2.733-.866-.807.662.226 3.019.812 3.647.981 1.051 4.341 2.844 5.388 3.31s1.704-.161 2.196-.609c.403-.366 3.434-4.072 3.703-4.326.365-.344 1.063-.797 1.457-1.491.338-.596.543-1.079.667-1.855.071-.456.402-1.447.05-1.41zm-19.86-.361v3.727c0 1.029.834 1.864 1.864 1.864 1.029 0 1.864-.834 1.864-1.864v-3.727h-3.728z"/><path fill="#E2C196" d="M14.267 9.36l-3.727.017v3.71s1.864.932 3.727 0V9.36z"/><path fill="#F3D2A2" d="M17.062 4.701l-9.318-.827v4.554c0 2.574 2.086 4.659 4.659 4.659s4.659-2.085 4.659-4.659V4.701z"/><path fill="#C1694F" d="M14.267 11.223h-3.728s0 .932 1.864.932 1.864-.932 1.864-.932z"/><circle fill="#662113" cx="10.073" cy="7.962" r=".466"/><circle fill="#662113" cx="14.733" cy="7.962" r=".466"/><path fill="#C1694F" d="M11.471 9.36h1.864s0 .932-.932.932-.932-.932-.932-.932z"/><path fill="#4292E0" d="M12.403 1.013c3.199 0 5.198 2.36 5.198 4.327s-.4 2.754-.8 1.967l-.8-1.573s-2.399 0-3.198-.787c0 0 1.2 2.36-1.2 0 0 0 .4 1.574-1.999-.393 0 0-1.2.787-1.599 2.753-.111.546-.8 0-.8-1.967 0-1.966 1.6-4.327 5.198-4.327"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f9dc-1f3fc.svg b/public/emoji/1f9dc-1f3fc.svg
index c0c2c62126423cdfcddb80addab96bb2030a5d54..de8fa7329381ed45c1f3b8530dc2357193a937b3 100644
--- a/public/emoji/1f9dc-1f3fc.svg
+++ b/public/emoji/1f9dc-1f3fc.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#FFE51E" d="M17 0c-1.264 0-2.435.393-3.402 1.061C13.401 1.031 13.205 1 13 1c-2.209 0-4 1.791-4 4v6c0 3.866 3.134 7 7 7s7-3.134 7-7V6.001C23 2.687 20.313 0 17 0z"/><path fill="#F3D2A2" d="M29.637 18.636c-.305-.612-1.02-.844-1.589-.515l-3.102 1.79-2.11-4.23c-.346-.929-1.188-1.587-2.175-1.587h-9.49c-1.016 0-1.454.595-1.656.938L3.244 25.656c-.347.588-.184 1.368.363 1.741.174.12.367.182.559.194.412.026.824-.183 1.06-.585l5.539-9.401.51.274 1.173 5.048-1.173 5.048h9.387l-1.173-5.048 1.173-5.048.48-.258 2.292 4.594c.305.612 1.02.844 1.589.515l4.136-2.387c.568-.327.784-1.096.478-1.707z"/><path fill="#E75A70" d="M15.968 17.879s-1.173-1.262-2.347-1.262-2.347 1.262-2.347 1.262l.88 3.786h7.627l.88-3.786s-1.173-1.262-2.347-1.262c-1.172 0-2.346 1.262-2.346 1.262z"/><path fill="#F3D2A2" d="M14 10v4c0 1.104.896 2 2 2s2-.896 2-2v-4h-4z"/><path fill="#E2C196" d="M18 10l-4 .019V14s2 1 4 0v-4z"/><path fill="#F3D2A2" d="M21 3.05H11v5.973C11 11.773 13.238 14 16 14s5-2.227 5-4.977V3.05z"/><path fill="#FFE51E" d="M14 3s0 4 8 4V3h-8zm0 0s0 4-4 4V3h4z"/><path fill="#DF1F32" d="M18 12h-4s0 1 2 1 2-1 2-1z"/><circle fill="#662113" cx="13.5" cy="8.5" r=".5"/><circle fill="#662113" cx="18.5" cy="8.5" r=".5"/><path fill="#C1694F" d="M15 10h2s0 1-1 1-1-1-1-1z"/><path fill="#5D9040" d="M29.014 28.838c2.254-1.98 1.374-5.968 1.374-5.968-.751.66-1.41 2.663-3.664 4.642-.803.705-1.2 1.629-1.306 2.454-.842.23-2.145.529-3.418.587-.706.032-1.436-.046-2.172-.195C20.535 29.809 21 28.96 21 28v-1c0-1.1-.9-2-2-2h-9c-1.201 0-2.236.719-2.714 1.745l-.008.003-.011.031c-.043.095-.072.196-.105.296-.025.076-.051.152-.072.23-.012.049-.025.098-.034.148-.57 2.401.735 5.48 3.944 6.547 1.979.658 6.075 1.291 9.662.658 2.511-.443 4.61-1.555 5.924-2.402.635.247 1.499.23 2.735-.214 2.272-.816 2.356-3.324 6.075-4.905-2.55-.836-6.382 1.701-6.382 1.701z"/><path fill="#292F33" d="M19.447 30.269c-.023 0-.049-.002-.073-.007-2.24-.446-6.787-2.547-6.979-2.637-.188-.087-.27-.31-.183-.497.087-.189.312-.271.498-.183.046.021 4.657 2.152 6.81 2.58.203.041.335.238.295.441-.036.18-.192.303-.368.303z"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#2CB4CD" d="M20.716 11.182c-.994-1.383-1.654-5.509-1.654-5.509-.155-2.715-2.494-5.572-5.571-5.572-1.173 0-2.26.365-3.159.985-.182-.027-.365-.056-.555-.056-2.051 0-3.714 1.663-3.714 3.714 0 0-.73 2.881-1.521 3.797.377-.223.706-.465.997-.724-.259 1.306-.788 3.586-1.478 4.547.765-.55 1.41-1.136 1.859-1.795-.021.647-.399 1.267-.837 3.348-.458 2.177.364 2.197 1.385 2.646 1.795.789 12.847 1.296 13.281-.969.513-2.675.068-4.112-.425-5.624.391.429.86.83 1.392 1.212z"/><path fill="#F3D2A2" d="M16.125 13.384s-2.26-.137-3.764-.137-2.959.1-3.392.137l-1.963 3.619.526.283s1.209 4.354 1.209 5.202c0 .848-1.209 5.202-1.209 5.202h9.674s-1.209-4.075-1.209-5.202 1.209-5.202 1.209-5.202l.495-.266-1.576-3.636z"/><path fill="#DD415D" d="M12.369 17.286s-1.209-1.301-2.418-1.301-2.418 1.301-2.418 1.301l.983 3.902h7.681l1.009-3.902s-1.209-1.301-2.418-1.301-2.419 1.301-2.419 1.301z"/><path fill="#316116" d="M28.744 25.545c1.738-2.783-.967-7.196-.967-7.196-.067.534-.348 1.714-.348 1.714-.163.998-.678 2.566-2.219 4.469-1.049 1.294 4.467 5.504 5.708 4.687 1.937-1.276 1.587-3.432 3.655-5.726.367-.407.8-.817 1.346-1.228-3.575-.319-7.175 3.28-7.175 3.28zm-3.123 3.078c-4.478 3.618-9.355 2.292-10.385 1.38l-7.644-5.978c-5.516 0-4.48 7.846 1.132 10.349 9.576 4.271 17.103-1.423 18.399-4.18l-1.502-1.571z"/><path fill="#66A644" d="M27.814 26.878c1.408-2.155.357-5.346-.385-6.815-.163.998-.843 2.383-2.384 4.286-1.049 1.294-.483 3.302-.021 4.199l.001.001c-3.596 2.842-7.065 2.264-8.825 1.464 1.17-.542 1.986-1.7 1.986-3.053 0-1.87-1.547-3.385-3.454-3.385h-7.14c-5.516 0-4.48 7.39 1.132 9.843 9.165 4.007 17-.67 18.793-3.448.863.096 2.363.056 3.573-.741 1.937-1.276 1.414-3.441 3.482-5.734-3.483.249-6.758 3.383-6.758 3.383z"/><path fill="#316116" d="M16.212 30.014c-2.309-.46-6.994-2.625-7.193-2.717-.194-.09-.278-.319-.188-.512.09-.195.321-.28.513-.188.048.022 5.488 2.428 7.707 2.869 0 0-.158.133-.336.267-.179.132-.503.281-.503.281z"/><path fill="#F3D2A2" d="M7.399 17.278c-1.878 1.035-3.24 2.455-3.336 2.617-.239.404-.437 1.592-.276 2.415.145.741.177 2.238.66 2.915.198.277.107.759-.032 1.208-.419 1.353.306 3.199-.145 2.882-.918-.644-1.074-1.83-1.047-2.528.015-.393-.166-.884-.257-1.138-.059-.16-1.245-3.203-1.518-4.54-.148-.722-.333-1.302.275-2.155.903-1.266 2.094-2.996 3.311-3.885 2.012-1.471 3.936-1.687 3.936-1.687s-.911 3.532-1.571 3.896zm23-6.626c-.084.009-.143.102-.203.238-.023-.164-.074-.276-.184-.264-.129.013-.201.22-.304.492-.027-.047-.062-.079-.117-.078-.261.009-.349.811-.909 1.334-.081.036-.154.078-.248.104-.059.016-.098.041-.146.061.005-.255.171-.405.271-.474.239-.166.089-.586-.314-.331-.289.183-.41.365-.501.55-.255.519-.354 1.058-.333 1.487l-.119.215c-.139.242-1.626 1.17-2.696 1.967-1.066.793-1.846 1.694-2.415 1.132-.396-.391-1.591-1.706-3.322-2.833-1.093-.712-2.733-.866-2.733-.866-.807.662.166 3.109.894 3.566.938.589 4.26 2.925 5.306 3.391s1.704-.161 2.196-.609c.403-.366 3.434-4.072 3.703-4.326.365-.344 1.063-.797 1.457-1.491.338-.596.543-1.079.667-1.855.071-.456.402-1.447.05-1.41zM10.706 9.387v3.714c0 1.026.831 1.857 1.857 1.857s1.857-.831 1.857-1.857V9.387h-3.714z"/><path fill="#E2C196" d="M14.419 9.387l-3.714.017v3.697s1.857.928 3.714 0V9.387z"/><path fill="#F3D2A2" d="M17.205 2.934H7.92V8.48c0 2.553 2.078 4.621 4.642 4.621 2.564 0 4.643-2.068 4.643-4.621V2.934z"/><path fill="#DF1F32" d="M14.419 11.244h-3.714s0 .928 1.857.928 1.857-.928 1.857-.928z"/><circle fill="#662113" cx="10.241" cy="7.994" r=".464"/><circle fill="#662113" cx="14.884" cy="7.994" r=".464"/><path fill="#C1694F" d="M11.634 9.387h1.857s0 .928-.929.928c-.928 0-.928-.928-.928-.928z"/><path fill="#2CB4CD" d="M18.133 6.601l-.613-4.114H6.992v4.114c3.674 0 3.713-3.628 3.714-3.707.001.08.08 3.707 7.427 3.707z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f9dc-1f3fd-200d-2640-fe0f.svg b/public/emoji/1f9dc-1f3fd-200d-2640-fe0f.svg
index 04bda3d0bd000a90bbcd4fe04ceca60829b9c5d3..0ad162b31056d8c3bb50ea124a41096b5b32d993 100644
--- a/public/emoji/1f9dc-1f3fd-200d-2640-fe0f.svg
+++ b/public/emoji/1f9dc-1f3fd-200d-2640-fe0f.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#963B22" d="M17 0c-1.264 0-2.435.393-3.402 1.061C13.401 1.031 13.205 1 13 1c-2.209 0-4 1.791-4 4v6c0 3.866 3.134 7 7 7s7-3.134 7-7V6.001C23 2.687 20.313 0 17 0z"/><path fill="#D5AB88" d="M29.637 18.636c-.305-.612-1.02-.844-1.589-.515l-3.102 1.79-2.11-4.23c-.346-.929-1.188-1.587-2.175-1.587h-9.49c-1.016 0-1.454.595-1.656.938L3.244 25.656c-.347.588-.184 1.368.363 1.741.174.12.367.182.559.194.412.026.824-.183 1.06-.585l5.539-9.401.51.274 1.173 5.048-1.173 5.048h9.387l-1.173-5.048 1.173-5.048.48-.258 2.292 4.594c.305.612 1.02.844 1.589.515l4.136-2.387c.568-.327.784-1.096.478-1.707z"/><path fill="#E75A70" d="M15.968 17.879s-1.173-1.262-2.347-1.262-2.347 1.262-2.347 1.262l.88 3.786h7.627l.88-3.786s-1.173-1.262-2.347-1.262c-1.172 0-2.346 1.262-2.346 1.262z"/><path fill="#D5AB88" d="M14 10v4c0 1.104.896 2 2 2s2-.896 2-2v-4h-4z"/><path fill="#CC9B7A" d="M18 10l-4 .019V14s2 1 4 0v-4z"/><path fill="#D5AB88" d="M21 3.05H11v5.973C11 11.773 13.238 14 16 14s5-2.227 5-4.977V3.05z"/><path fill="#963B22" d="M14 3s0 4 8 4V3h-8zm0 0s0 4-4 4V3h4z"/><path fill="#DF1F32" d="M18 12h-4s0 1 2 1 2-1 2-1z"/><circle fill="#662113" cx="13.5" cy="8.5" r=".5"/><circle fill="#662113" cx="18.5" cy="8.5" r=".5"/><path fill="#C1694F" d="M15 10h2s0 1-1 1-1-1-1-1z"/><path fill="#5D9040" d="M29.014 28.838c2.254-1.98 1.374-5.968 1.374-5.968-.751.66-1.41 2.663-3.664 4.642-.803.705-1.2 1.629-1.306 2.454-.842.23-2.145.529-3.418.587-.706.032-1.436-.046-2.172-.195C20.535 29.809 21 28.96 21 28v-1c0-1.1-.9-2-2-2h-9c-1.201 0-2.236.719-2.714 1.745l-.008.003-.011.031c-.043.095-.072.196-.105.296-.025.076-.051.152-.072.23-.012.049-.025.098-.034.148-.57 2.401.735 5.48 3.944 6.547 1.979.658 6.075 1.291 9.662.658 2.511-.443 4.61-1.555 5.924-2.402.635.247 1.499.23 2.735-.214 2.272-.816 2.356-3.324 6.075-4.905-2.55-.836-6.382 1.701-6.382 1.701z"/><path fill="#292F33" d="M19.447 30.269c-.023 0-.049-.002-.073-.007-2.24-.446-6.787-2.547-6.979-2.637-.188-.087-.27-.31-.183-.497.087-.189.312-.271.498-.183.046.021 4.657 2.152 6.81 2.58.203.041.335.238.295.441-.036.18-.192.303-.368.303z"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#2CB4CD" d="M20.716 11.182c-.994-1.383-1.654-5.509-1.654-5.509-.155-2.715-2.494-5.572-5.571-5.572-1.173 0-2.26.365-3.159.985-.182-.027-.365-.056-.555-.056-2.051 0-3.714 1.663-3.714 3.714 0 0-.73 2.881-1.521 3.797.377-.223.706-.465.997-.724-.259 1.306-.788 3.586-1.478 4.547.765-.55 1.41-1.136 1.859-1.795-.021.647-.399 1.267-.837 3.348-.458 2.177.364 2.197 1.385 2.646 1.795.789 12.847 1.296 13.281-.969.513-2.675.068-4.112-.425-5.624.391.429.86.83 1.392 1.212z"/><path fill="#D4AB88" d="M16.125 13.384s-2.26-.137-3.764-.137-2.959.1-3.392.137l-1.963 3.619.526.283s1.209 4.354 1.209 5.202c0 .848-1.209 5.202-1.209 5.202h9.674s-1.209-4.075-1.209-5.202 1.209-5.202 1.209-5.202l.495-.266-1.576-3.636z"/><path fill="#DD415D" d="M12.369 17.286s-1.209-1.301-2.418-1.301-2.418 1.301-2.418 1.301l.983 3.902h7.681l1.009-3.902s-1.209-1.301-2.418-1.301-2.419 1.301-2.419 1.301z"/><path fill="#316116" d="M28.744 25.545c1.738-2.783-.967-7.196-.967-7.196-.067.534-.348 1.714-.348 1.714-.163.998-.678 2.566-2.219 4.469-1.049 1.294 4.467 5.504 5.708 4.687 1.937-1.276 1.587-3.432 3.655-5.726.367-.407.8-.817 1.346-1.228-3.575-.319-7.175 3.28-7.175 3.28zm-3.123 3.078c-4.478 3.618-9.355 2.292-10.385 1.38l-7.644-5.978c-5.516 0-4.48 7.846 1.132 10.349 9.576 4.271 17.103-1.423 18.399-4.18l-1.502-1.571z"/><path fill="#66A644" d="M27.814 26.878c1.408-2.155.357-5.346-.385-6.815-.163.998-.843 2.383-2.384 4.286-1.049 1.294-.483 3.302-.021 4.199l.001.001c-3.596 2.842-7.065 2.264-8.825 1.464 1.17-.542 1.986-1.7 1.986-3.053 0-1.87-1.547-3.385-3.454-3.385h-7.14c-5.516 0-4.48 7.39 1.132 9.843 9.165 4.007 17-.67 18.793-3.448.863.096 2.363.056 3.573-.741 1.937-1.276 1.414-3.441 3.482-5.734-3.483.249-6.758 3.383-6.758 3.383z"/><path fill="#316116" d="M16.212 30.014c-2.309-.46-6.994-2.625-7.193-2.717-.194-.09-.278-.319-.188-.512.09-.195.321-.28.513-.188.048.022 5.488 2.428 7.707 2.869 0 0-.158.133-.336.267-.179.132-.503.281-.503.281z"/><path fill="#D4AB88" d="M7.399 17.278c-1.878 1.035-3.24 2.455-3.336 2.617-.239.404-.437 1.592-.276 2.415.145.741.177 2.238.66 2.915.198.277.107.759-.032 1.208-.419 1.353.306 3.199-.145 2.882-.918-.644-1.074-1.83-1.047-2.528.015-.393-.166-.884-.257-1.138-.059-.16-1.245-3.203-1.518-4.54-.148-.722-.333-1.302.275-2.155.903-1.266 2.094-2.996 3.311-3.885 2.012-1.471 3.936-1.687 3.936-1.687s-.911 3.532-1.571 3.896zm23-6.626c-.084.009-.143.102-.203.238-.023-.164-.074-.276-.184-.264-.129.013-.201.22-.304.492-.027-.047-.062-.079-.117-.078-.261.009-.349.811-.909 1.334-.081.036-.154.078-.248.104-.059.016-.098.041-.146.061.005-.255.171-.405.271-.474.239-.166.089-.586-.314-.331-.289.183-.41.365-.501.55-.255.519-.354 1.058-.333 1.487l-.119.215c-.139.242-1.626 1.17-2.696 1.967-1.066.793-1.846 1.694-2.415 1.132-.396-.391-1.591-1.706-3.322-2.833-1.093-.712-2.733-.866-2.733-.866-.807.662.166 3.109.894 3.566.938.589 4.26 2.925 5.306 3.391s1.704-.161 2.196-.609c.403-.366 3.434-4.072 3.703-4.326.365-.344 1.063-.797 1.457-1.491.338-.596.543-1.079.667-1.855.071-.456.402-1.447.05-1.41zM10.706 9.387v3.714c0 1.026.831 1.857 1.857 1.857s1.857-.831 1.857-1.857V9.387h-3.714z"/><path fill="#CC9B7A" d="M14.419 9.387l-3.714.017v3.697s1.857.928 3.714 0V9.387z"/><path fill="#D4AB88" d="M17.205 2.934H7.92V8.48c0 2.553 2.078 4.621 4.642 4.621 2.564 0 4.643-2.068 4.643-4.621V2.934z"/><path fill="#DF1F32" d="M14.419 11.244h-3.714s0 .928 1.857.928 1.857-.928 1.857-.928z"/><circle fill="#662113" cx="10.241" cy="7.994" r=".464"/><circle fill="#662113" cx="14.884" cy="7.994" r=".464"/><path fill="#C1694F" d="M11.634 9.387h1.857s0 .928-.929.928c-.928 0-.928-.928-.928-.928z"/><path fill="#2CB4CD" d="M18.133 6.601l-.613-4.114H6.992v4.114c3.674 0 3.713-3.628 3.714-3.707.001.08.08 3.707 7.427 3.707z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f9dc-1f3fd-200d-2642-fe0f.svg b/public/emoji/1f9dc-1f3fd-200d-2642-fe0f.svg
index 8f5f004243952382f64c27260d7325256ca50e18..727971080d141bc1774d0592ec13bfc72fdaf9b5 100644
--- a/public/emoji/1f9dc-1f3fd-200d-2642-fe0f.svg
+++ b/public/emoji/1f9dc-1f3fd-200d-2642-fe0f.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#D5AB88" d="M29.637 18.636c-.305-.612-1.02-.844-1.589-.515l-3.102 1.79-1.718-3.444.012-.009c-.171-.34-.336-.669-.502-.972l-.011-.023c-.002-.003-.005-.005-.006-.008-.457-.834-.924-1.455-1.549-1.455H11.044c-.365.004-.688.167-.93.474l-.797 1.01c-.25.289-.494.597-.713.904l-5.199 6.589c-.426.54-.333 1.33.207 1.756s1.33.333 1.756-.207l5.821-7.378.811 6.856-.725 3.971h9.387L20 24.004l.77-7.128 2.664 5.34c.305.612 1.02.844 1.589.515l4.136-2.387c.568-.328.784-1.097.478-1.708z"/><path fill="#D5AB88" d="M14 11v4c0 1.104.896 2 2 2s2-.896 2-2v-4h-4z"/><path fill="#CC9B7A" d="M18 10l-4 .019V14s2 1 4 0v-4z"/><path fill="#D5AB88" d="M21 5L11 3.993V9c0 2.762 2.238 5 5 5s5-2.237 5-5V5z"/><path fill="#C1694F" d="M18 12h-4s0 1 2 1 2-1 2-1z"/><circle fill="#662113" cx="13.5" cy="8.5" r=".5"/><circle fill="#662113" cx="18.5" cy="8.5" r=".5"/><path fill="#C1694F" d="M15 10h2s0 1-1 1-1-1-1-1z"/><path fill="#963B22" d="M16 1.043c3.433 0 5.578 2.533 5.578 4.644s-.429 2.955-.858 2.111l-.858-1.688s-2.574 0-3.432-.845c0 0 1.287 2.533-1.287 0 0 0 .429 1.689-2.145-.422 0 0-1.287.844-1.716 2.955-.119.586-.858 0-.858-2.111-.002-2.111 1.714-4.644 5.576-4.644"/><path fill="#3B88C3" d="M10 31h8c1.65 0 3-1.35 3-3v-1c0-1.1-.9-2-2-2h-9c-1.65 0-3 1.35-3 3s1.35 3 3 3z"/><path fill="#3B88C3" d="M7.278 26.749C6.235 29.211 7.468 32.826 11 34c1.979.658 6.075 1.291 9.662.658 4.291-.757 7.397-3.473 7.397-3.473l-1.725-1.492s-2.22.764-4.334.861c-3.894.178-8.488-2.926-11-3.554-2.878-.719-3.722-.251-3.722-.251z"/><path fill="#3B88C3" d="M25.756 31.674c-.651-.742-.535-2.842.968-4.161 2.254-1.98 2.912-3.982 3.664-4.642 0 0 .88 3.988-1.374 5.968 0 0 3.832-2.537 6.382-1.701-3.719 1.581-3.803 4.089-6.075 4.905-1.882.675-2.913.373-3.565-.369z"/><path fill="#292F33" d="M19.447 30.269c-.023 0-.049-.002-.073-.007-2.24-.446-6.787-2.547-6.979-2.637-.188-.087-.27-.31-.183-.497.087-.189.312-.271.498-.183.046.021 4.657 2.152 6.81 2.58.203.041.335.238.295.441-.036.18-.192.303-.368.303z"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#D4AB88" d="M16.703 13.234c-2.061-.088-4.3-.078-4.3-.078s-2.24-.01-4.3.078c-.501.021-.979.233-1.35.456-.439.264-.728.544-.728.544.105 1.368 1.219 3.286 1.368 3.564.418.78.922 4.264.922 4.264.114 1.201 0 2 0 2h8.176s-.114-.799 0-2c0 0 .504-3.484.922-4.264.149-.278 1.263-2.196 1.368-3.564 0 0-.984-.953-2.078-1z"/><path fill="#B78B60" d="M14.985 18.332c-1.131 0-1.968-.354-2.014-.374-.126-.055-.185-.202-.13-.328.054-.126.2-.187.328-.131.014.006 1.35.565 2.857.215.137-.029.269.053.3.187.031.134-.053.269-.187.3-.403.095-.793.131-1.154.131zm-5.324 0c-.36 0-.75-.036-1.155-.13-.134-.031-.218-.166-.187-.3.031-.134.164-.216.3-.187 1.516.353 2.844-.209 2.857-.215.127-.056.274.003.329.13s-.004.274-.13.329c-.047.02-.883.373-2.014.373z"/><path fill="#184F87" d="M28.744 25.545c1.738-2.783-.967-7.196-.967-7.196-.067.534-.348 1.714-.348 1.714-.163.998-.678 2.566-2.219 4.469-1.049 1.294 4.467 5.504 5.708 4.687 1.937-1.276 1.587-3.432 3.655-5.726.367-.407.8-.817 1.346-1.228-3.575-.319-7.175 3.28-7.175 3.28zm-3.123 3.078c-4.478 3.618-9.355 2.292-10.385 1.38l-7.644-5.978c-5.516 0-4.48 7.846 1.132 10.349 9.576 4.271 17.103-1.423 18.399-4.18l-1.502-1.571z"/><path fill="#4292E0" d="M27.814 26.878c1.408-2.155.357-5.346-.385-6.815-.163.998-.843 2.383-2.384 4.286-1.049 1.294-.483 3.302-.021 4.199l.001.001c-3.596 2.842-7.065 2.264-8.825 1.464 1.17-.542 1.986-1.7 1.986-3.053 0-1.87-1.547-3.385-3.454-3.385h-7.14c-5.516 0-4.48 7.39 1.132 9.843 9.165 4.007 17-.67 18.793-3.448.863.096 2.363.056 3.573-.741 1.937-1.276 1.414-3.441 3.482-5.734-3.483.249-6.758 3.383-6.758 3.383z"/><path fill="#184F87" d="M16.212 30.014c-2.309-.46-6.994-2.625-7.193-2.717-.194-.09-.278-.319-.188-.512.09-.195.321-.28.513-.188.048.022 5.488 2.428 7.707 2.869 0 0-.158.133-.336.267-.179.132-.503.281-.503.281z"/><path fill="#D4AB88" d="M7.482 17.392c-1.878 1.035-3.267 2.429-3.38 2.58-.477.637-.324 1.509-.251 2.345.086.995.112 2.231.595 2.908.198.277.107.759-.032 1.208-.419 1.353.306 3.199-.145 2.882-.918-.644-1.074-1.83-1.047-2.528.015-.393-.166-.884-.257-1.138-.059-.16-1.348-3.094-1.622-4.431-.148-.722-.186-1.381.379-2.263.621-.971 1.939-2.945 3.117-3.885.989-.789 1.564-1.189 1.914-1.38 1.57-.857 1.389 3.338.729 3.702zm22.917-6.74c-.084.009-.143.102-.203.238-.023-.164-.074-.276-.184-.264-.129.013-.201.22-.304.492-.027-.047-.062-.079-.117-.078-.261.009-.349.811-.909 1.334-.081.036-.154.078-.248.104-.059.016-.098.041-.146.061.005-.255.171-.405.271-.474.239-.166.089-.586-.314-.331-.289.183-.41.365-.501.55-.255.519-.354 1.058-.333 1.487l-.119.215c-.139.242-1.626 1.17-2.696 1.967-1.066.793-1.846 1.694-2.415 1.132-.396-.391-1.462-1.74-3.322-2.833-1.124-.661-2.733-.866-2.733-.866-.807.662.226 3.019.812 3.647.981 1.051 4.341 2.844 5.388 3.31s1.704-.161 2.196-.609c.403-.366 3.434-4.072 3.703-4.326.365-.344 1.063-.797 1.457-1.491.338-.596.543-1.079.667-1.855.071-.456.402-1.447.05-1.41zm-19.86-.361v3.727c0 1.029.834 1.864 1.864 1.864 1.029 0 1.864-.834 1.864-1.864v-3.727h-3.728z"/><path fill="#CC9B7A" d="M14.267 9.36l-3.727.017v3.71s1.864.932 3.727 0V9.36z"/><path fill="#D4AB88" d="M17.062 4.701l-9.318-.827v4.554c0 2.574 2.086 4.659 4.659 4.659s4.659-2.085 4.659-4.659V4.701z"/><path fill="#C1694F" d="M14.267 11.223h-3.728s0 .932 1.864.932 1.864-.932 1.864-.932z"/><circle fill="#662113" cx="10.073" cy="7.962" r=".466"/><circle fill="#662113" cx="14.733" cy="7.962" r=".466"/><path fill="#C1694F" d="M11.471 9.36h1.864s0 .932-.932.932-.932-.932-.932-.932z"/><path fill="#4292E0" d="M12.403 1.013c3.199 0 5.198 2.36 5.198 4.327s-.4 2.754-.8 1.967l-.8-1.573s-2.399 0-3.198-.787c0 0 1.2 2.36-1.2 0 0 0 .4 1.574-1.999-.393 0 0-1.2.787-1.599 2.753-.111.546-.8 0-.8-1.967 0-1.966 1.6-4.327 5.198-4.327"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f9dc-1f3fd.svg b/public/emoji/1f9dc-1f3fd.svg
index 04bda3d0bd000a90bbcd4fe04ceca60829b9c5d3..0ad162b31056d8c3bb50ea124a41096b5b32d993 100644
--- a/public/emoji/1f9dc-1f3fd.svg
+++ b/public/emoji/1f9dc-1f3fd.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#963B22" d="M17 0c-1.264 0-2.435.393-3.402 1.061C13.401 1.031 13.205 1 13 1c-2.209 0-4 1.791-4 4v6c0 3.866 3.134 7 7 7s7-3.134 7-7V6.001C23 2.687 20.313 0 17 0z"/><path fill="#D5AB88" d="M29.637 18.636c-.305-.612-1.02-.844-1.589-.515l-3.102 1.79-2.11-4.23c-.346-.929-1.188-1.587-2.175-1.587h-9.49c-1.016 0-1.454.595-1.656.938L3.244 25.656c-.347.588-.184 1.368.363 1.741.174.12.367.182.559.194.412.026.824-.183 1.06-.585l5.539-9.401.51.274 1.173 5.048-1.173 5.048h9.387l-1.173-5.048 1.173-5.048.48-.258 2.292 4.594c.305.612 1.02.844 1.589.515l4.136-2.387c.568-.327.784-1.096.478-1.707z"/><path fill="#E75A70" d="M15.968 17.879s-1.173-1.262-2.347-1.262-2.347 1.262-2.347 1.262l.88 3.786h7.627l.88-3.786s-1.173-1.262-2.347-1.262c-1.172 0-2.346 1.262-2.346 1.262z"/><path fill="#D5AB88" d="M14 10v4c0 1.104.896 2 2 2s2-.896 2-2v-4h-4z"/><path fill="#CC9B7A" d="M18 10l-4 .019V14s2 1 4 0v-4z"/><path fill="#D5AB88" d="M21 3.05H11v5.973C11 11.773 13.238 14 16 14s5-2.227 5-4.977V3.05z"/><path fill="#963B22" d="M14 3s0 4 8 4V3h-8zm0 0s0 4-4 4V3h4z"/><path fill="#DF1F32" d="M18 12h-4s0 1 2 1 2-1 2-1z"/><circle fill="#662113" cx="13.5" cy="8.5" r=".5"/><circle fill="#662113" cx="18.5" cy="8.5" r=".5"/><path fill="#C1694F" d="M15 10h2s0 1-1 1-1-1-1-1z"/><path fill="#5D9040" d="M29.014 28.838c2.254-1.98 1.374-5.968 1.374-5.968-.751.66-1.41 2.663-3.664 4.642-.803.705-1.2 1.629-1.306 2.454-.842.23-2.145.529-3.418.587-.706.032-1.436-.046-2.172-.195C20.535 29.809 21 28.96 21 28v-1c0-1.1-.9-2-2-2h-9c-1.201 0-2.236.719-2.714 1.745l-.008.003-.011.031c-.043.095-.072.196-.105.296-.025.076-.051.152-.072.23-.012.049-.025.098-.034.148-.57 2.401.735 5.48 3.944 6.547 1.979.658 6.075 1.291 9.662.658 2.511-.443 4.61-1.555 5.924-2.402.635.247 1.499.23 2.735-.214 2.272-.816 2.356-3.324 6.075-4.905-2.55-.836-6.382 1.701-6.382 1.701z"/><path fill="#292F33" d="M19.447 30.269c-.023 0-.049-.002-.073-.007-2.24-.446-6.787-2.547-6.979-2.637-.188-.087-.27-.31-.183-.497.087-.189.312-.271.498-.183.046.021 4.657 2.152 6.81 2.58.203.041.335.238.295.441-.036.18-.192.303-.368.303z"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#2CB4CD" d="M20.716 11.182c-.994-1.383-1.654-5.509-1.654-5.509-.155-2.715-2.494-5.572-5.571-5.572-1.173 0-2.26.365-3.159.985-.182-.027-.365-.056-.555-.056-2.051 0-3.714 1.663-3.714 3.714 0 0-.73 2.881-1.521 3.797.377-.223.706-.465.997-.724-.259 1.306-.788 3.586-1.478 4.547.765-.55 1.41-1.136 1.859-1.795-.021.647-.399 1.267-.837 3.348-.458 2.177.364 2.197 1.385 2.646 1.795.789 12.847 1.296 13.281-.969.513-2.675.068-4.112-.425-5.624.391.429.86.83 1.392 1.212z"/><path fill="#D4AB88" d="M16.125 13.384s-2.26-.137-3.764-.137-2.959.1-3.392.137l-1.963 3.619.526.283s1.209 4.354 1.209 5.202c0 .848-1.209 5.202-1.209 5.202h9.674s-1.209-4.075-1.209-5.202 1.209-5.202 1.209-5.202l.495-.266-1.576-3.636z"/><path fill="#DD415D" d="M12.369 17.286s-1.209-1.301-2.418-1.301-2.418 1.301-2.418 1.301l.983 3.902h7.681l1.009-3.902s-1.209-1.301-2.418-1.301-2.419 1.301-2.419 1.301z"/><path fill="#316116" d="M28.744 25.545c1.738-2.783-.967-7.196-.967-7.196-.067.534-.348 1.714-.348 1.714-.163.998-.678 2.566-2.219 4.469-1.049 1.294 4.467 5.504 5.708 4.687 1.937-1.276 1.587-3.432 3.655-5.726.367-.407.8-.817 1.346-1.228-3.575-.319-7.175 3.28-7.175 3.28zm-3.123 3.078c-4.478 3.618-9.355 2.292-10.385 1.38l-7.644-5.978c-5.516 0-4.48 7.846 1.132 10.349 9.576 4.271 17.103-1.423 18.399-4.18l-1.502-1.571z"/><path fill="#66A644" d="M27.814 26.878c1.408-2.155.357-5.346-.385-6.815-.163.998-.843 2.383-2.384 4.286-1.049 1.294-.483 3.302-.021 4.199l.001.001c-3.596 2.842-7.065 2.264-8.825 1.464 1.17-.542 1.986-1.7 1.986-3.053 0-1.87-1.547-3.385-3.454-3.385h-7.14c-5.516 0-4.48 7.39 1.132 9.843 9.165 4.007 17-.67 18.793-3.448.863.096 2.363.056 3.573-.741 1.937-1.276 1.414-3.441 3.482-5.734-3.483.249-6.758 3.383-6.758 3.383z"/><path fill="#316116" d="M16.212 30.014c-2.309-.46-6.994-2.625-7.193-2.717-.194-.09-.278-.319-.188-.512.09-.195.321-.28.513-.188.048.022 5.488 2.428 7.707 2.869 0 0-.158.133-.336.267-.179.132-.503.281-.503.281z"/><path fill="#D4AB88" d="M7.399 17.278c-1.878 1.035-3.24 2.455-3.336 2.617-.239.404-.437 1.592-.276 2.415.145.741.177 2.238.66 2.915.198.277.107.759-.032 1.208-.419 1.353.306 3.199-.145 2.882-.918-.644-1.074-1.83-1.047-2.528.015-.393-.166-.884-.257-1.138-.059-.16-1.245-3.203-1.518-4.54-.148-.722-.333-1.302.275-2.155.903-1.266 2.094-2.996 3.311-3.885 2.012-1.471 3.936-1.687 3.936-1.687s-.911 3.532-1.571 3.896zm23-6.626c-.084.009-.143.102-.203.238-.023-.164-.074-.276-.184-.264-.129.013-.201.22-.304.492-.027-.047-.062-.079-.117-.078-.261.009-.349.811-.909 1.334-.081.036-.154.078-.248.104-.059.016-.098.041-.146.061.005-.255.171-.405.271-.474.239-.166.089-.586-.314-.331-.289.183-.41.365-.501.55-.255.519-.354 1.058-.333 1.487l-.119.215c-.139.242-1.626 1.17-2.696 1.967-1.066.793-1.846 1.694-2.415 1.132-.396-.391-1.591-1.706-3.322-2.833-1.093-.712-2.733-.866-2.733-.866-.807.662.166 3.109.894 3.566.938.589 4.26 2.925 5.306 3.391s1.704-.161 2.196-.609c.403-.366 3.434-4.072 3.703-4.326.365-.344 1.063-.797 1.457-1.491.338-.596.543-1.079.667-1.855.071-.456.402-1.447.05-1.41zM10.706 9.387v3.714c0 1.026.831 1.857 1.857 1.857s1.857-.831 1.857-1.857V9.387h-3.714z"/><path fill="#CC9B7A" d="M14.419 9.387l-3.714.017v3.697s1.857.928 3.714 0V9.387z"/><path fill="#D4AB88" d="M17.205 2.934H7.92V8.48c0 2.553 2.078 4.621 4.642 4.621 2.564 0 4.643-2.068 4.643-4.621V2.934z"/><path fill="#DF1F32" d="M14.419 11.244h-3.714s0 .928 1.857.928 1.857-.928 1.857-.928z"/><circle fill="#662113" cx="10.241" cy="7.994" r=".464"/><circle fill="#662113" cx="14.884" cy="7.994" r=".464"/><path fill="#C1694F" d="M11.634 9.387h1.857s0 .928-.929.928c-.928 0-.928-.928-.928-.928z"/><path fill="#2CB4CD" d="M18.133 6.601l-.613-4.114H6.992v4.114c3.674 0 3.713-3.628 3.714-3.707.001.08.08 3.707 7.427 3.707z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f9dc-1f3fe-200d-2640-fe0f.svg b/public/emoji/1f9dc-1f3fe-200d-2640-fe0f.svg
index eb04d4715ca9125d72d022e80bd9b15a82c03011..5f71af9d0255183e071ee1767a99ca6417bdd8f7 100644
--- a/public/emoji/1f9dc-1f3fe-200d-2640-fe0f.svg
+++ b/public/emoji/1f9dc-1f3fe-200d-2640-fe0f.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#60352A" d="M17 0c-1.264 0-2.435.393-3.402 1.061C13.401 1.031 13.205 1 13 1c-2.209 0-4 1.791-4 4v6c0 3.866 3.134 7 7 7s7-3.134 7-7V6.001C23 2.687 20.313 0 17 0z"/><path fill="#AF7E57" d="M29.637 18.636c-.305-.612-1.02-.844-1.589-.515l-3.102 1.79-2.11-4.23c-.346-.929-1.188-1.587-2.175-1.587h-9.49c-1.016 0-1.454.595-1.656.938L3.244 25.656c-.347.588-.184 1.368.363 1.741.174.12.367.182.559.194.412.026.824-.183 1.06-.585l5.539-9.401.51.274 1.173 5.048-1.173 5.048h9.387l-1.173-5.048 1.173-5.048.48-.258 2.292 4.594c.305.612 1.02.844 1.589.515l4.136-2.387c.568-.327.784-1.096.478-1.707z"/><path fill="#E75A70" d="M15.968 17.879s-1.173-1.262-2.347-1.262-2.347 1.262-2.347 1.262l.88 3.786h7.627l.88-3.786s-1.173-1.262-2.347-1.262c-1.172 0-2.346 1.262-2.346 1.262z"/><path fill="#AF7E57" d="M14 10v4c0 1.104.896 2 2 2s2-.896 2-2v-4h-4z"/><path fill="#9B6A49" d="M18 10l-4 .019V14s2 1 4 0v-4z"/><path fill="#AF7E57" d="M21 3.05H11v5.973C11 11.773 13.238 14 16 14s5-2.227 5-4.977V3.05z"/><path fill="#60352A" d="M14 3s0 4 8 4V3h-8zm0 0s0 4-4 4V3h4z"/><path fill="#DF1F32" d="M18 12h-4s0 1 2 1 2-1 2-1z"/><circle fill="#662113" cx="13.5" cy="8.5" r=".5"/><circle fill="#662113" cx="18.5" cy="8.5" r=".5"/><path fill="#915A34" d="M15 10h2s0 1-1 1-1-1-1-1z"/><path fill="#5D9040" d="M29.014 28.838c2.254-1.98 1.374-5.968 1.374-5.968-.751.66-1.41 2.663-3.664 4.642-.803.705-1.2 1.629-1.306 2.454-.842.23-2.145.529-3.418.587-.706.032-1.436-.046-2.172-.195C20.535 29.809 21 28.96 21 28v-1c0-1.1-.9-2-2-2h-9c-1.201 0-2.236.719-2.714 1.745l-.008.003-.011.031c-.043.095-.072.196-.105.296-.025.076-.051.152-.072.23-.012.049-.025.098-.034.148-.57 2.401.735 5.48 3.944 6.547 1.979.658 6.075 1.291 9.662.658 2.511-.443 4.61-1.555 5.924-2.402.635.247 1.499.23 2.735-.214 2.272-.816 2.356-3.324 6.075-4.905-2.55-.836-6.382 1.701-6.382 1.701z"/><path fill="#292F33" d="M19.447 30.269c-.023 0-.049-.002-.073-.007-2.24-.446-6.787-2.547-6.979-2.637-.188-.087-.27-.31-.183-.497.087-.189.312-.271.498-.183.046.021 4.657 2.152 6.81 2.58.203.041.335.238.295.441-.036.18-.192.303-.368.303z"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#2CB4CD" d="M20.716 11.182c-.994-1.383-1.654-5.509-1.654-5.509-.155-2.715-2.494-5.572-5.571-5.572-1.173 0-2.26.365-3.159.985-.182-.027-.365-.056-.555-.056-2.051 0-3.714 1.663-3.714 3.714 0 0-.73 2.881-1.521 3.797.377-.223.706-.465.997-.724-.259 1.306-.788 3.586-1.478 4.547.765-.55 1.41-1.136 1.859-1.795-.021.647-.399 1.267-.837 3.348-.458 2.177.364 2.197 1.385 2.646 1.795.789 12.847 1.296 13.281-.969.513-2.675.068-4.112-.425-5.624.391.429.86.83 1.392 1.212z"/><path fill="#AF7E57" d="M16.125 13.384s-2.26-.137-3.764-.137-2.959.1-3.392.137l-1.963 3.619.526.283s1.209 4.354 1.209 5.202c0 .848-1.209 5.202-1.209 5.202h9.674s-1.209-4.075-1.209-5.202 1.209-5.202 1.209-5.202l.495-.266-1.576-3.636z"/><path fill="#DD415D" d="M12.369 17.286s-1.209-1.301-2.418-1.301-2.418 1.301-2.418 1.301l.983 3.902h7.681l1.009-3.902s-1.209-1.301-2.418-1.301-2.419 1.301-2.419 1.301z"/><path fill="#316116" d="M28.744 25.545c1.738-2.783-.967-7.196-.967-7.196-.067.534-.348 1.714-.348 1.714-.163.998-.678 2.566-2.219 4.469-1.049 1.294 4.467 5.504 5.708 4.687 1.937-1.276 1.587-3.432 3.655-5.726.367-.407.8-.817 1.346-1.228-3.575-.319-7.175 3.28-7.175 3.28zm-3.123 3.078c-4.478 3.618-9.355 2.292-10.385 1.38l-7.644-5.978c-5.516 0-4.48 7.846 1.132 10.349 9.576 4.271 17.103-1.423 18.399-4.18l-1.502-1.571z"/><path fill="#66A644" d="M27.814 26.878c1.408-2.155.357-5.346-.385-6.815-.163.998-.843 2.383-2.384 4.286-1.049 1.294-.483 3.302-.021 4.199l.001.001c-3.596 2.842-7.065 2.264-8.825 1.464 1.17-.542 1.986-1.7 1.986-3.053 0-1.87-1.547-3.385-3.454-3.385h-7.14c-5.516 0-4.48 7.39 1.132 9.843 9.165 4.007 17-.67 18.793-3.448.863.096 2.363.056 3.573-.741 1.937-1.276 1.414-3.441 3.482-5.734-3.483.249-6.758 3.383-6.758 3.383z"/><path fill="#316116" d="M16.212 30.014c-2.309-.46-6.994-2.625-7.193-2.717-.194-.09-.278-.319-.188-.512.09-.195.321-.28.513-.188.048.022 5.488 2.428 7.707 2.869 0 0-.158.133-.336.267-.179.132-.503.281-.503.281z"/><path fill="#AF7E57" d="M7.399 17.278c-1.878 1.035-3.24 2.455-3.336 2.617-.239.404-.437 1.592-.276 2.415.145.741.177 2.238.66 2.915.198.277.107.759-.032 1.208-.419 1.353.306 3.199-.145 2.882-.918-.644-1.074-1.83-1.047-2.528.015-.393-.166-.884-.257-1.138-.059-.16-1.245-3.203-1.518-4.54-.148-.722-.333-1.302.275-2.155.903-1.266 2.094-2.996 3.311-3.885 2.012-1.471 3.936-1.687 3.936-1.687s-.911 3.532-1.571 3.896zm23-6.626c-.084.009-.143.102-.203.238-.023-.164-.074-.276-.184-.264-.129.013-.201.22-.304.492-.027-.047-.062-.079-.117-.078-.261.009-.349.811-.909 1.334-.081.036-.154.078-.248.104-.059.016-.098.041-.146.061.005-.255.171-.405.271-.474.239-.166.089-.586-.314-.331-.289.183-.41.365-.501.55-.255.519-.354 1.058-.333 1.487l-.119.215c-.139.242-1.626 1.17-2.696 1.967-1.066.793-1.846 1.694-2.415 1.132-.396-.391-1.591-1.706-3.322-2.833-1.093-.712-2.733-.866-2.733-.866-.807.662.166 3.109.894 3.566.938.589 4.26 2.925 5.306 3.391s1.704-.161 2.196-.609c.403-.366 3.434-4.072 3.703-4.326.365-.344 1.063-.797 1.457-1.491.338-.596.543-1.079.667-1.855.071-.456.402-1.447.05-1.41zM10.706 9.387v3.714c0 1.026.831 1.857 1.857 1.857s1.857-.831 1.857-1.857V9.387h-3.714z"/><path fill="#9B6A49" d="M14.419 9.387l-3.714.017v3.697s1.857.928 3.714 0V9.387z"/><path fill="#AF7E57" d="M17.205 2.934H7.92V8.48c0 2.553 2.078 4.621 4.642 4.621 2.564 0 4.643-2.068 4.643-4.621V2.934z"/><path fill="#DF1F32" d="M14.419 11.244h-3.714s0 .928 1.857.928 1.857-.928 1.857-.928z"/><circle fill="#662113" cx="10.241" cy="7.994" r=".464"/><circle fill="#662113" cx="14.884" cy="7.994" r=".464"/><path fill="#915A34" d="M11.634 9.387h1.857s0 .928-.929.928c-.928 0-.928-.928-.928-.928z"/><path fill="#2CB4CD" d="M18.133 6.601l-.613-4.114H6.992v4.114c3.674 0 3.713-3.628 3.714-3.707.001.08.08 3.707 7.427 3.707z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f9dc-1f3fe-200d-2642-fe0f.svg b/public/emoji/1f9dc-1f3fe-200d-2642-fe0f.svg
index bc61ced36e2264e3d55f84461bc33eecb90f6c84..faeb2fa9e673737dfc92030f4e806270439d4d6a 100644
--- a/public/emoji/1f9dc-1f3fe-200d-2642-fe0f.svg
+++ b/public/emoji/1f9dc-1f3fe-200d-2642-fe0f.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#AF7E57" d="M29.637 18.636c-.305-.612-1.02-.844-1.589-.515l-3.102 1.79-1.718-3.444.012-.009c-.171-.34-.336-.669-.502-.972l-.011-.023c-.002-.003-.005-.005-.006-.008-.457-.834-.924-1.455-1.549-1.455H11.044c-.365.004-.688.167-.93.474l-.797 1.01c-.25.289-.494.597-.713.904l-5.199 6.589c-.426.54-.333 1.33.207 1.756s1.33.333 1.756-.207l5.821-7.378.811 6.856-.725 3.971h9.387L20 24.004l.77-7.128 2.664 5.34c.305.612 1.02.844 1.589.515l4.136-2.387c.568-.328.784-1.097.478-1.708z"/><path fill="#AF7E57" d="M14 11v4c0 1.104.896 2 2 2s2-.896 2-2v-4h-4z"/><path fill="#9B6A49" d="M18 10l-4 .019V14s2 1 4 0v-4z"/><path fill="#AF7E57" d="M21 5l-10-.967V9c0 2.762 2.238 5 5 5s5-2.237 5-5V5z"/><path fill="#915A34" d="M18 12h-4s0 1 2 1 2-1 2-1z"/><circle fill="#662113" cx="13.5" cy="8.5" r=".5"/><circle fill="#662113" cx="18.5" cy="8.5" r=".5"/><path fill="#915A34" d="M15 10h2s0 1-1 1-1-1-1-1z"/><path fill="#60352A" d="M16 1.043c3.433 0 5.578 2.533 5.578 4.644s-.429 2.955-.858 2.111l-.858-1.688s-2.574 0-3.432-.845c0 0 1.287 2.533-1.287 0 0 0 .429 1.689-2.145-.422 0 0-1.287.844-1.716 2.955-.119.586-.858 0-.858-2.111-.002-2.111 1.714-4.644 5.576-4.644"/><path fill="#3B88C3" d="M10 31h8c1.65 0 3-1.35 3-3v-1c0-1.1-.9-2-2-2h-9c-1.65 0-3 1.35-3 3s1.35 3 3 3z"/><path fill="#3B88C3" d="M7.278 26.749C6.235 29.211 7.468 32.826 11 34c1.979.658 6.075 1.291 9.662.658 4.291-.757 7.397-3.473 7.397-3.473l-1.725-1.492s-2.22.764-4.334.861c-3.894.178-8.488-2.926-11-3.554-2.878-.719-3.722-.251-3.722-.251z"/><path fill="#3B88C3" d="M25.756 31.674c-.651-.742-.535-2.842.968-4.161 2.254-1.98 2.912-3.982 3.664-4.642 0 0 .88 3.988-1.374 5.968 0 0 3.832-2.537 6.382-1.701-3.719 1.581-3.803 4.089-6.075 4.905-1.882.675-2.913.373-3.565-.369z"/><path fill="#292F33" d="M19.447 30.269c-.023 0-.049-.002-.073-.007-2.24-.446-6.787-2.547-6.979-2.637-.188-.087-.27-.31-.183-.497.087-.189.312-.271.498-.183.046.021 4.657 2.152 6.81 2.58.203.041.335.238.295.441-.036.18-.192.303-.368.303z"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#AF7E57" d="M16.703 13.234c-2.061-.088-4.3-.078-4.3-.078s-2.24-.01-4.3.078c-.501.021-.979.233-1.35.456-.439.264-.728.544-.728.544.105 1.368 1.219 3.286 1.368 3.564.418.78.922 4.264.922 4.264.114 1.201 0 2 0 2h8.176s-.114-.799 0-2c0 0 .504-3.484.922-4.264.149-.278 1.263-2.196 1.368-3.564 0 0-.984-.953-2.078-1z"/><path fill="#90603E" d="M14.985 18.332c-1.131 0-1.968-.354-2.014-.374-.126-.055-.185-.202-.13-.328.054-.126.2-.187.328-.131.014.006 1.35.565 2.857.215.137-.029.269.053.3.187.031.134-.053.269-.187.3-.403.095-.793.131-1.154.131zm-5.324 0c-.36 0-.75-.036-1.155-.13-.134-.031-.218-.166-.187-.3.031-.134.164-.216.3-.187 1.516.353 2.844-.209 2.857-.215.127-.056.274.003.329.13s-.004.274-.13.329c-.047.02-.883.373-2.014.373z"/><path fill="#184F87" d="M28.744 25.545c1.738-2.783-.967-7.196-.967-7.196-.067.534-.348 1.714-.348 1.714-.163.998-.678 2.566-2.219 4.469-1.049 1.294 4.467 5.504 5.708 4.687 1.937-1.276 1.587-3.432 3.655-5.726.367-.407.8-.817 1.346-1.228-3.575-.319-7.175 3.28-7.175 3.28zm-3.123 3.078c-4.478 3.618-9.355 2.292-10.385 1.38l-7.644-5.978c-5.516 0-4.48 7.846 1.132 10.349 9.576 4.271 17.103-1.423 18.399-4.18l-1.502-1.571z"/><path fill="#4292E0" d="M27.814 26.878c1.408-2.155.357-5.346-.385-6.815-.163.998-.843 2.383-2.384 4.286-1.049 1.294-.483 3.302-.021 4.199l.001.001c-3.596 2.842-7.065 2.264-8.825 1.464 1.17-.542 1.986-1.7 1.986-3.053 0-1.87-1.547-3.385-3.454-3.385h-7.14c-5.516 0-4.48 7.39 1.132 9.843 9.165 4.007 17-.67 18.793-3.448.863.096 2.363.056 3.573-.741 1.937-1.276 1.414-3.441 3.482-5.734-3.483.249-6.758 3.383-6.758 3.383z"/><path fill="#184F87" d="M16.212 30.014c-2.309-.46-6.994-2.625-7.193-2.717-.194-.09-.278-.319-.188-.512.09-.195.321-.28.513-.188.048.022 5.488 2.428 7.707 2.869 0 0-.158.133-.336.267-.179.132-.503.281-.503.281z"/><path fill="#AF7E57" d="M7.482 17.392c-1.878 1.035-3.267 2.429-3.38 2.58-.477.637-.324 1.509-.251 2.345.086.995.112 2.231.595 2.908.198.277.107.759-.032 1.208-.419 1.353.306 3.199-.145 2.882-.918-.644-1.074-1.83-1.047-2.528.015-.393-.166-.884-.257-1.138-.059-.16-1.348-3.094-1.622-4.431-.148-.722-.186-1.381.379-2.263.621-.971 1.939-2.945 3.117-3.885.989-.789 1.564-1.189 1.914-1.38 1.57-.857 1.389 3.338.729 3.702zm22.917-6.74c-.084.009-.143.102-.203.238-.023-.164-.074-.276-.184-.264-.129.013-.201.22-.304.492-.027-.047-.062-.079-.117-.078-.261.009-.349.811-.909 1.334-.081.036-.154.078-.248.104-.059.016-.098.041-.146.061.005-.255.171-.405.271-.474.239-.166.089-.586-.314-.331-.289.183-.41.365-.501.55-.255.519-.354 1.058-.333 1.487l-.119.215c-.139.242-1.626 1.17-2.696 1.967-1.066.793-1.846 1.694-2.415 1.132-.396-.391-1.462-1.74-3.322-2.833-1.124-.661-2.733-.866-2.733-.866-.807.662.226 3.019.812 3.647.981 1.051 4.341 2.844 5.388 3.31s1.704-.161 2.196-.609c.403-.366 3.434-4.072 3.703-4.326.365-.344 1.063-.797 1.457-1.491.338-.596.543-1.079.667-1.855.071-.456.402-1.447.05-1.41zm-19.86-.361v3.727c0 1.029.834 1.864 1.864 1.864 1.029 0 1.864-.834 1.864-1.864v-3.727h-3.728z"/><path fill="#9B6A49" d="M14.267 9.36l-3.727.017v3.71s1.864.932 3.727 0V9.36z"/><path fill="#AF7E57" d="M17.062 4.701l-9.318-.827v4.554c0 2.574 2.086 4.659 4.659 4.659s4.659-2.085 4.659-4.659V4.701z"/><path fill="#915A34" d="M14.267 11.223h-3.728s0 .932 1.864.932 1.864-.932 1.864-.932z"/><circle fill="#662113" cx="10.073" cy="7.962" r=".466"/><circle fill="#662113" cx="14.733" cy="7.962" r=".466"/><path fill="#915A34" d="M11.471 9.36h1.864s0 .932-.932.932-.932-.932-.932-.932z"/><path fill="#4292E0" d="M12.403 1.013c3.199 0 5.198 2.36 5.198 4.327s-.4 2.754-.8 1.967l-.8-1.573s-2.399 0-3.198-.787c0 0 1.2 2.36-1.2 0 0 0 .4 1.574-1.999-.393 0 0-1.2.787-1.599 2.753-.111.546-.8 0-.8-1.967 0-1.966 1.6-4.327 5.198-4.327"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f9dc-1f3fe.svg b/public/emoji/1f9dc-1f3fe.svg
index eb04d4715ca9125d72d022e80bd9b15a82c03011..5f71af9d0255183e071ee1767a99ca6417bdd8f7 100644
--- a/public/emoji/1f9dc-1f3fe.svg
+++ b/public/emoji/1f9dc-1f3fe.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#60352A" d="M17 0c-1.264 0-2.435.393-3.402 1.061C13.401 1.031 13.205 1 13 1c-2.209 0-4 1.791-4 4v6c0 3.866 3.134 7 7 7s7-3.134 7-7V6.001C23 2.687 20.313 0 17 0z"/><path fill="#AF7E57" d="M29.637 18.636c-.305-.612-1.02-.844-1.589-.515l-3.102 1.79-2.11-4.23c-.346-.929-1.188-1.587-2.175-1.587h-9.49c-1.016 0-1.454.595-1.656.938L3.244 25.656c-.347.588-.184 1.368.363 1.741.174.12.367.182.559.194.412.026.824-.183 1.06-.585l5.539-9.401.51.274 1.173 5.048-1.173 5.048h9.387l-1.173-5.048 1.173-5.048.48-.258 2.292 4.594c.305.612 1.02.844 1.589.515l4.136-2.387c.568-.327.784-1.096.478-1.707z"/><path fill="#E75A70" d="M15.968 17.879s-1.173-1.262-2.347-1.262-2.347 1.262-2.347 1.262l.88 3.786h7.627l.88-3.786s-1.173-1.262-2.347-1.262c-1.172 0-2.346 1.262-2.346 1.262z"/><path fill="#AF7E57" d="M14 10v4c0 1.104.896 2 2 2s2-.896 2-2v-4h-4z"/><path fill="#9B6A49" d="M18 10l-4 .019V14s2 1 4 0v-4z"/><path fill="#AF7E57" d="M21 3.05H11v5.973C11 11.773 13.238 14 16 14s5-2.227 5-4.977V3.05z"/><path fill="#60352A" d="M14 3s0 4 8 4V3h-8zm0 0s0 4-4 4V3h4z"/><path fill="#DF1F32" d="M18 12h-4s0 1 2 1 2-1 2-1z"/><circle fill="#662113" cx="13.5" cy="8.5" r=".5"/><circle fill="#662113" cx="18.5" cy="8.5" r=".5"/><path fill="#915A34" d="M15 10h2s0 1-1 1-1-1-1-1z"/><path fill="#5D9040" d="M29.014 28.838c2.254-1.98 1.374-5.968 1.374-5.968-.751.66-1.41 2.663-3.664 4.642-.803.705-1.2 1.629-1.306 2.454-.842.23-2.145.529-3.418.587-.706.032-1.436-.046-2.172-.195C20.535 29.809 21 28.96 21 28v-1c0-1.1-.9-2-2-2h-9c-1.201 0-2.236.719-2.714 1.745l-.008.003-.011.031c-.043.095-.072.196-.105.296-.025.076-.051.152-.072.23-.012.049-.025.098-.034.148-.57 2.401.735 5.48 3.944 6.547 1.979.658 6.075 1.291 9.662.658 2.511-.443 4.61-1.555 5.924-2.402.635.247 1.499.23 2.735-.214 2.272-.816 2.356-3.324 6.075-4.905-2.55-.836-6.382 1.701-6.382 1.701z"/><path fill="#292F33" d="M19.447 30.269c-.023 0-.049-.002-.073-.007-2.24-.446-6.787-2.547-6.979-2.637-.188-.087-.27-.31-.183-.497.087-.189.312-.271.498-.183.046.021 4.657 2.152 6.81 2.58.203.041.335.238.295.441-.036.18-.192.303-.368.303z"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#2CB4CD" d="M20.716 11.182c-.994-1.383-1.654-5.509-1.654-5.509-.155-2.715-2.494-5.572-5.571-5.572-1.173 0-2.26.365-3.159.985-.182-.027-.365-.056-.555-.056-2.051 0-3.714 1.663-3.714 3.714 0 0-.73 2.881-1.521 3.797.377-.223.706-.465.997-.724-.259 1.306-.788 3.586-1.478 4.547.765-.55 1.41-1.136 1.859-1.795-.021.647-.399 1.267-.837 3.348-.458 2.177.364 2.197 1.385 2.646 1.795.789 12.847 1.296 13.281-.969.513-2.675.068-4.112-.425-5.624.391.429.86.83 1.392 1.212z"/><path fill="#AF7E57" d="M16.125 13.384s-2.26-.137-3.764-.137-2.959.1-3.392.137l-1.963 3.619.526.283s1.209 4.354 1.209 5.202c0 .848-1.209 5.202-1.209 5.202h9.674s-1.209-4.075-1.209-5.202 1.209-5.202 1.209-5.202l.495-.266-1.576-3.636z"/><path fill="#DD415D" d="M12.369 17.286s-1.209-1.301-2.418-1.301-2.418 1.301-2.418 1.301l.983 3.902h7.681l1.009-3.902s-1.209-1.301-2.418-1.301-2.419 1.301-2.419 1.301z"/><path fill="#316116" d="M28.744 25.545c1.738-2.783-.967-7.196-.967-7.196-.067.534-.348 1.714-.348 1.714-.163.998-.678 2.566-2.219 4.469-1.049 1.294 4.467 5.504 5.708 4.687 1.937-1.276 1.587-3.432 3.655-5.726.367-.407.8-.817 1.346-1.228-3.575-.319-7.175 3.28-7.175 3.28zm-3.123 3.078c-4.478 3.618-9.355 2.292-10.385 1.38l-7.644-5.978c-5.516 0-4.48 7.846 1.132 10.349 9.576 4.271 17.103-1.423 18.399-4.18l-1.502-1.571z"/><path fill="#66A644" d="M27.814 26.878c1.408-2.155.357-5.346-.385-6.815-.163.998-.843 2.383-2.384 4.286-1.049 1.294-.483 3.302-.021 4.199l.001.001c-3.596 2.842-7.065 2.264-8.825 1.464 1.17-.542 1.986-1.7 1.986-3.053 0-1.87-1.547-3.385-3.454-3.385h-7.14c-5.516 0-4.48 7.39 1.132 9.843 9.165 4.007 17-.67 18.793-3.448.863.096 2.363.056 3.573-.741 1.937-1.276 1.414-3.441 3.482-5.734-3.483.249-6.758 3.383-6.758 3.383z"/><path fill="#316116" d="M16.212 30.014c-2.309-.46-6.994-2.625-7.193-2.717-.194-.09-.278-.319-.188-.512.09-.195.321-.28.513-.188.048.022 5.488 2.428 7.707 2.869 0 0-.158.133-.336.267-.179.132-.503.281-.503.281z"/><path fill="#AF7E57" d="M7.399 17.278c-1.878 1.035-3.24 2.455-3.336 2.617-.239.404-.437 1.592-.276 2.415.145.741.177 2.238.66 2.915.198.277.107.759-.032 1.208-.419 1.353.306 3.199-.145 2.882-.918-.644-1.074-1.83-1.047-2.528.015-.393-.166-.884-.257-1.138-.059-.16-1.245-3.203-1.518-4.54-.148-.722-.333-1.302.275-2.155.903-1.266 2.094-2.996 3.311-3.885 2.012-1.471 3.936-1.687 3.936-1.687s-.911 3.532-1.571 3.896zm23-6.626c-.084.009-.143.102-.203.238-.023-.164-.074-.276-.184-.264-.129.013-.201.22-.304.492-.027-.047-.062-.079-.117-.078-.261.009-.349.811-.909 1.334-.081.036-.154.078-.248.104-.059.016-.098.041-.146.061.005-.255.171-.405.271-.474.239-.166.089-.586-.314-.331-.289.183-.41.365-.501.55-.255.519-.354 1.058-.333 1.487l-.119.215c-.139.242-1.626 1.17-2.696 1.967-1.066.793-1.846 1.694-2.415 1.132-.396-.391-1.591-1.706-3.322-2.833-1.093-.712-2.733-.866-2.733-.866-.807.662.166 3.109.894 3.566.938.589 4.26 2.925 5.306 3.391s1.704-.161 2.196-.609c.403-.366 3.434-4.072 3.703-4.326.365-.344 1.063-.797 1.457-1.491.338-.596.543-1.079.667-1.855.071-.456.402-1.447.05-1.41zM10.706 9.387v3.714c0 1.026.831 1.857 1.857 1.857s1.857-.831 1.857-1.857V9.387h-3.714z"/><path fill="#9B6A49" d="M14.419 9.387l-3.714.017v3.697s1.857.928 3.714 0V9.387z"/><path fill="#AF7E57" d="M17.205 2.934H7.92V8.48c0 2.553 2.078 4.621 4.642 4.621 2.564 0 4.643-2.068 4.643-4.621V2.934z"/><path fill="#DF1F32" d="M14.419 11.244h-3.714s0 .928 1.857.928 1.857-.928 1.857-.928z"/><circle fill="#662113" cx="10.241" cy="7.994" r=".464"/><circle fill="#662113" cx="14.884" cy="7.994" r=".464"/><path fill="#915A34" d="M11.634 9.387h1.857s0 .928-.929.928c-.928 0-.928-.928-.928-.928z"/><path fill="#2CB4CD" d="M18.133 6.601l-.613-4.114H6.992v4.114c3.674 0 3.713-3.628 3.714-3.707.001.08.08 3.707 7.427 3.707z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f9dc-1f3ff-200d-2640-fe0f.svg b/public/emoji/1f9dc-1f3ff-200d-2640-fe0f.svg
index 2fc30a85cc2f134b91c76d1a3ea8b7753038d5f4..f2932edee7852c2c6debcb9f6f1db1da830afebe 100644
--- a/public/emoji/1f9dc-1f3ff-200d-2640-fe0f.svg
+++ b/public/emoji/1f9dc-1f3ff-200d-2640-fe0f.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#0B0200" d="M17 0c-1.264 0-2.435.393-3.402 1.061C13.401 1.031 13.205 1 13 1c-2.209 0-4 1.791-4 4v6c0 3.866 3.134 7 7 7s7-3.134 7-7V6.001C23 2.687 20.313 0 17 0z"/><path fill="#7C533E" d="M29.637 18.636c-.305-.612-1.02-.844-1.589-.515l-3.102 1.79-2.11-4.23c-.346-.929-1.188-1.587-2.175-1.587h-9.49c-1.016 0-1.454.595-1.656.938L3.244 25.656c-.347.588-.184 1.368.363 1.741.174.12.367.182.559.194.412.026.824-.183 1.06-.585l5.539-9.401.51.274 1.173 5.048-1.173 5.048h9.387l-1.173-5.048 1.173-5.048.48-.258 2.292 4.594c.305.612 1.02.844 1.589.515l4.136-2.387c.568-.327.784-1.096.478-1.707z"/><path fill="#E75A70" d="M15.968 17.879s-1.173-1.262-2.347-1.262-2.347 1.262-2.347 1.262l.88 3.786h7.627l.88-3.786s-1.173-1.262-2.347-1.262c-1.172 0-2.346 1.262-2.346 1.262z"/><path fill="#7C533E" d="M14 10v4c0 1.104.896 2 2 2s2-.896 2-2v-4h-4z"/><path fill="#664131" d="M18 10l-4 .019V14s2 1 4 0v-4z"/><path fill="#7C533E" d="M21 3.05H11v5.973C11 11.773 13.238 14 16 14s5-2.227 5-4.977V3.05z"/><path fill="#0B0200" d="M14 3s0 4 8 4V3h-8zm0 0s0 4-4 4V3h4z"/><path fill="#DF1F32" d="M18 12h-4s0 1 2 1 2-1 2-1z"/><circle cx="13.5" cy="8.5" r=".5"/><circle cx="18.5" cy="8.5" r=".5"/><path fill="#3D2E24" d="M15 10h2s0 1-1 1-1-1-1-1z"/><path fill="#5D9040" d="M29.014 28.838c2.254-1.98 1.374-5.968 1.374-5.968-.751.66-1.41 2.663-3.664 4.642-.803.705-1.2 1.629-1.306 2.454-.842.23-2.145.529-3.418.587-.706.032-1.436-.046-2.172-.195C20.535 29.809 21 28.96 21 28v-1c0-1.1-.9-2-2-2h-9c-1.201 0-2.236.719-2.714 1.745l-.008.003-.011.031c-.043.095-.072.196-.105.296-.025.076-.051.152-.072.23-.012.049-.025.098-.034.148-.57 2.401.735 5.48 3.944 6.547 1.979.658 6.075 1.291 9.662.658 2.511-.443 4.61-1.555 5.924-2.402.635.247 1.499.23 2.735-.214 2.272-.816 2.356-3.324 6.075-4.905-2.55-.836-6.382 1.701-6.382 1.701z"/><path fill="#292F33" d="M19.447 30.269c-.023 0-.049-.002-.073-.007-2.24-.446-6.787-2.547-6.979-2.637-.188-.087-.27-.31-.183-.497.087-.189.312-.271.498-.183.046.021 4.657 2.152 6.81 2.58.203.041.335.238.295.441-.036.18-.192.303-.368.303z"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#2CB4CD" d="M20.716 11.182c-.994-1.383-1.654-5.509-1.654-5.509-.155-2.715-2.494-5.572-5.571-5.572-1.173 0-2.26.365-3.159.985-.182-.027-.365-.056-.555-.056-2.051 0-3.714 1.663-3.714 3.714 0 0-.73 2.881-1.521 3.797.377-.223.706-.465.997-.724-.259 1.306-.788 3.586-1.478 4.547.765-.55 1.41-1.136 1.859-1.795-.021.647-.399 1.267-.837 3.348-.458 2.177.364 2.197 1.385 2.646 1.795.789 12.847 1.296 13.281-.969.513-2.675.068-4.112-.425-5.624.391.429.86.83 1.392 1.212z"/><path fill="#7C533E" d="M16.125 13.384s-2.26-.137-3.764-.137-2.959.1-3.392.137l-1.963 3.619.526.283s1.209 4.354 1.209 5.202c0 .848-1.209 5.202-1.209 5.202h9.674s-1.209-4.075-1.209-5.202 1.209-5.202 1.209-5.202l.495-.266-1.576-3.636z"/><path fill="#DD415D" d="M12.369 17.286s-1.209-1.301-2.418-1.301-2.418 1.301-2.418 1.301l.983 3.902h7.681l1.009-3.902s-1.209-1.301-2.418-1.301-2.419 1.301-2.419 1.301z"/><path fill="#316116" d="M28.744 25.545c1.738-2.783-.967-7.196-.967-7.196-.067.534-.348 1.714-.348 1.714-.163.998-.678 2.566-2.219 4.469-1.049 1.294 4.467 5.504 5.708 4.687 1.937-1.276 1.587-3.432 3.655-5.726.367-.407.8-.817 1.346-1.228-3.575-.319-7.175 3.28-7.175 3.28zm-3.123 3.078c-4.478 3.618-9.355 2.292-10.385 1.38l-7.644-5.978c-5.516 0-4.48 7.846 1.132 10.349 9.576 4.271 17.103-1.423 18.399-4.18l-1.502-1.571z"/><path fill="#66A644" d="M27.814 26.878c1.408-2.155.357-5.346-.385-6.815-.163.998-.843 2.383-2.384 4.286-1.049 1.294-.483 3.302-.021 4.199l.001.001c-3.596 2.842-7.065 2.264-8.825 1.464 1.17-.542 1.986-1.7 1.986-3.053 0-1.87-1.547-3.385-3.454-3.385h-7.14c-5.516 0-4.48 7.39 1.132 9.843 9.165 4.007 17-.67 18.793-3.448.863.096 2.363.056 3.573-.741 1.937-1.276 1.414-3.441 3.482-5.734-3.483.249-6.758 3.383-6.758 3.383z"/><path fill="#316116" d="M16.212 30.014c-2.309-.46-6.994-2.625-7.193-2.717-.194-.09-.278-.319-.188-.512.09-.195.321-.28.513-.188.048.022 5.488 2.428 7.707 2.869 0 0-.158.133-.336.267-.179.132-.503.281-.503.281z"/><path fill="#7C533E" d="M7.399 17.278c-1.878 1.035-3.24 2.455-3.336 2.617-.239.404-.437 1.592-.276 2.415.145.741.177 2.238.66 2.915.198.277.107.759-.032 1.208-.419 1.353.306 3.199-.145 2.882-.918-.644-1.074-1.83-1.047-2.528.015-.393-.166-.884-.257-1.138-.059-.16-1.245-3.203-1.518-4.54-.148-.722-.333-1.302.275-2.155.903-1.266 2.094-2.996 3.311-3.885 2.012-1.471 3.936-1.687 3.936-1.687s-.911 3.532-1.571 3.896zm23-6.626c-.084.009-.143.102-.203.238-.023-.164-.074-.276-.184-.264-.129.013-.201.22-.304.492-.027-.047-.062-.079-.117-.078-.261.009-.349.811-.909 1.334-.081.036-.154.078-.248.104-.059.016-.098.041-.146.061.005-.255.171-.405.271-.474.239-.166.089-.586-.314-.331-.289.183-.41.365-.501.55-.255.519-.354 1.058-.333 1.487l-.119.215c-.139.242-1.626 1.17-2.696 1.967-1.066.793-1.846 1.694-2.415 1.132-.396-.391-1.591-1.706-3.322-2.833-1.093-.712-2.733-.866-2.733-.866-.807.662.166 3.109.894 3.566.938.589 4.26 2.925 5.306 3.391s1.704-.161 2.196-.609c.403-.366 3.434-4.072 3.703-4.326.365-.344 1.063-.797 1.457-1.491.338-.596.543-1.079.667-1.855.071-.456.402-1.447.05-1.41zM10.706 9.387v3.714c0 1.026.831 1.857 1.857 1.857s1.857-.831 1.857-1.857V9.387h-3.714z"/><path fill="#664131" d="M14.419 9.387l-3.714.017v3.697s1.857.928 3.714 0V9.387z"/><path fill="#7C533E" d="M17.205 2.934H7.92V8.48c0 2.553 2.078 4.621 4.642 4.621 2.564 0 4.643-2.068 4.643-4.621V2.934z"/><path fill="#DF1F32" d="M14.419 11.244h-3.714s0 .928 1.857.928 1.857-.928 1.857-.928z"/><circle cx="10.241" cy="7.994" r=".464"/><circle cx="14.884" cy="7.994" r=".464"/><path fill="#3D2E24" d="M11.634 9.387h1.857s0 .928-.929.928c-.928 0-.928-.928-.928-.928z"/><path fill="#2CB4CD" d="M18.133 6.601l-.613-4.114H6.992v4.114c3.674 0 3.713-3.628 3.714-3.707.001.08.08 3.707 7.427 3.707z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f9dc-1f3ff-200d-2642-fe0f.svg b/public/emoji/1f9dc-1f3ff-200d-2642-fe0f.svg
index d671d743ed4302e994396a298233ac12060ac289..2d28d8d39ba8e4271572bed1806b9e8bd4d5d2e8 100644
--- a/public/emoji/1f9dc-1f3ff-200d-2642-fe0f.svg
+++ b/public/emoji/1f9dc-1f3ff-200d-2642-fe0f.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#7C533E" d="M29.637 18.636c-.305-.612-1.02-.844-1.589-.515l-3.102 1.79-1.718-3.444.012-.009c-.171-.34-.336-.669-.502-.972l-.011-.023c-.002-.003-.005-.005-.006-.008-.457-.834-.924-1.455-1.549-1.455H11.044c-.365.004-.688.167-.93.474l-.797 1.01c-.25.289-.494.597-.713.904l-5.199 6.589c-.426.54-.333 1.33.207 1.756s1.33.333 1.756-.207l5.821-7.378.811 6.856-.725 3.971h9.387L20 24.004l.77-7.128 2.664 5.34c.305.612 1.02.844 1.589.515l4.136-2.387c.568-.328.784-1.097.478-1.708z"/><path fill="#7C533E" d="M14 11v4c0 1.104.896 2 2 2s2-.896 2-2v-4h-4z"/><path fill="#664131" d="M18 10l-4 .019V14s2 1 4 0v-4z"/><path fill="#7C533E" d="M21 5l-10-.887V9c0 2.762 2.238 5 5 5s5-2.237 5-5V5z"/><path fill="#3D2E24" d="M18 12h-4s0 1 2 1 2-1 2-1z"/><circle cx="13.5" cy="8.5" r=".5"/><circle cx="18.5" cy="8.5" r=".5"/><path fill="#3D2E24" d="M15 10h2s0 1-1 1-1-1-1-1z"/><path fill="#0B0200" d="M16 1.043c3.433 0 5.578 2.533 5.578 4.644s-.429 2.955-.858 2.111l-.858-1.688s-2.574 0-3.432-.845c0 0 1.287 2.533-1.287 0 0 0 .429 1.689-2.145-.422 0 0-1.287.844-1.716 2.955-.119.586-.858 0-.858-2.111-.002-2.111 1.714-4.644 5.576-4.644"/><path fill="#3B88C3" d="M10 31h8c1.65 0 3-1.35 3-3v-1c0-1.1-.9-2-2-2h-9c-1.65 0-3 1.35-3 3s1.35 3 3 3z"/><path fill="#3B88C3" d="M7.278 26.749C6.235 29.211 7.468 32.826 11 34c1.979.658 6.075 1.291 9.662.658 4.291-.757 7.397-3.473 7.397-3.473l-1.725-1.492s-2.22.764-4.334.861c-3.894.178-8.488-2.926-11-3.554-2.878-.719-3.722-.251-3.722-.251z"/><path fill="#3B88C3" d="M25.756 31.674c-.651-.742-.535-2.842.968-4.161 2.254-1.98 2.912-3.982 3.664-4.642 0 0 .88 3.988-1.374 5.968 0 0 3.832-2.537 6.382-1.701-3.719 1.581-3.803 4.089-6.075 4.905-1.882.675-2.913.373-3.565-.369z"/><path fill="#292F33" d="M19.447 30.269c-.023 0-.049-.002-.073-.007-2.24-.446-6.787-2.547-6.979-2.637-.188-.087-.27-.31-.183-.497.087-.189.312-.271.498-.183.046.021 4.657 2.152 6.81 2.58.203.041.335.238.295.441-.036.18-.192.303-.368.303z"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#7C533E" d="M16.703 13.234c-2.061-.088-4.3-.078-4.3-.078s-2.24-.01-4.3.078c-.501.021-.979.233-1.35.456-.439.264-.728.544-.728.544.105 1.368 1.219 3.286 1.368 3.564.418.78.922 4.264.922 4.264.114 1.201 0 2 0 2h8.176s-.114-.799 0-2c0 0 .504-3.484.922-4.264.149-.278 1.263-2.196 1.368-3.564 0 0-.984-.953-2.078-1z"/><path fill="#583529" d="M14.985 18.332c-1.131 0-1.968-.354-2.014-.374-.126-.055-.185-.202-.13-.328.054-.126.2-.187.328-.131.014.006 1.35.565 2.857.215.137-.029.269.053.3.187.031.134-.053.269-.187.3-.403.095-.793.131-1.154.131zm-5.324 0c-.36 0-.75-.036-1.155-.13-.134-.031-.218-.166-.187-.3.031-.134.164-.216.3-.187 1.516.353 2.844-.209 2.857-.215.127-.056.274.003.329.13s-.004.274-.13.329c-.047.02-.883.373-2.014.373z"/><path fill="#184F87" d="M28.744 25.545c1.738-2.783-.967-7.196-.967-7.196-.067.534-.348 1.714-.348 1.714-.163.998-.678 2.566-2.219 4.469-1.049 1.294 4.467 5.504 5.708 4.687 1.937-1.276 1.587-3.432 3.655-5.726.367-.407.8-.817 1.346-1.228-3.575-.319-7.175 3.28-7.175 3.28zm-3.123 3.078c-4.478 3.618-9.355 2.292-10.385 1.38l-7.644-5.978c-5.516 0-4.48 7.846 1.132 10.349 9.576 4.271 17.103-1.423 18.399-4.18l-1.502-1.571z"/><path fill="#4292E0" d="M27.814 26.878c1.408-2.155.357-5.346-.385-6.815-.163.998-.843 2.383-2.384 4.286-1.049 1.294-.483 3.302-.021 4.199l.001.001c-3.596 2.842-7.065 2.264-8.825 1.464 1.17-.542 1.986-1.7 1.986-3.053 0-1.87-1.547-3.385-3.454-3.385h-7.14c-5.516 0-4.48 7.39 1.132 9.843 9.165 4.007 17-.67 18.793-3.448.863.096 2.363.056 3.573-.741 1.937-1.276 1.414-3.441 3.482-5.734-3.483.249-6.758 3.383-6.758 3.383z"/><path fill="#184F87" d="M16.212 30.014c-2.309-.46-6.994-2.625-7.193-2.717-.194-.09-.278-.319-.188-.512.09-.195.321-.28.513-.188.048.022 5.488 2.428 7.707 2.869 0 0-.158.133-.336.267-.179.132-.503.281-.503.281z"/><path fill="#7C533E" d="M7.482 17.392c-1.878 1.035-3.267 2.429-3.38 2.58-.477.637-.324 1.509-.251 2.345.086.995.112 2.231.595 2.908.198.277.107.759-.032 1.208-.419 1.353.306 3.199-.145 2.882-.918-.644-1.074-1.83-1.047-2.528.015-.393-.166-.884-.257-1.138-.059-.16-1.348-3.094-1.622-4.431-.148-.722-.186-1.381.379-2.263.621-.971 1.939-2.945 3.117-3.885.989-.789 1.564-1.189 1.914-1.38 1.57-.857 1.389 3.338.729 3.702zm22.917-6.74c-.084.009-.143.102-.203.238-.023-.164-.074-.276-.184-.264-.129.013-.201.22-.304.492-.027-.047-.062-.079-.117-.078-.261.009-.349.811-.909 1.334-.081.036-.154.078-.248.104-.059.016-.098.041-.146.061.005-.255.171-.405.271-.474.239-.166.089-.586-.314-.331-.289.183-.41.365-.501.55-.255.519-.354 1.058-.333 1.487l-.119.215c-.139.242-1.626 1.17-2.696 1.967-1.066.793-1.846 1.694-2.415 1.132-.396-.391-1.462-1.74-3.322-2.833-1.124-.661-2.733-.866-2.733-.866-.807.662.226 3.019.812 3.647.981 1.051 4.341 2.844 5.388 3.31s1.704-.161 2.196-.609c.403-.366 3.434-4.072 3.703-4.326.365-.344 1.063-.797 1.457-1.491.338-.596.543-1.079.667-1.855.071-.456.402-1.447.05-1.41zm-19.86-.361v3.727c0 1.029.834 1.864 1.864 1.864 1.029 0 1.864-.834 1.864-1.864v-3.727h-3.728z"/><path fill="#664131" d="M14.267 9.36l-3.727.017v3.71s1.864.932 3.727 0V9.36z"/><path fill="#7C533E" d="M17.062 4.701l-9.318-.827v4.554c0 2.574 2.086 4.659 4.659 4.659s4.659-2.085 4.659-4.659V4.701z"/><path fill="#3D2E24" d="M14.267 11.223h-3.728s0 .932 1.864.932 1.864-.932 1.864-.932z"/><circle cx="10.073" cy="7.962" r=".466"/><circle cx="14.733" cy="7.962" r=".466"/><path fill="#3D2E24" d="M11.471 9.36h1.864s0 .932-.932.932-.932-.932-.932-.932z"/><path fill="#4292E0" d="M12.403 1.013c3.199 0 5.198 2.36 5.198 4.327s-.4 2.754-.8 1.967l-.8-1.573s-2.399 0-3.198-.787c0 0 1.2 2.36-1.2 0 0 0 .4 1.574-1.999-.393 0 0-1.2.787-1.599 2.753-.111.546-.8 0-.8-1.967 0-1.966 1.6-4.327 5.198-4.327"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f9dc-1f3ff.svg b/public/emoji/1f9dc-1f3ff.svg
index 2fc30a85cc2f134b91c76d1a3ea8b7753038d5f4..f2932edee7852c2c6debcb9f6f1db1da830afebe 100644
--- a/public/emoji/1f9dc-1f3ff.svg
+++ b/public/emoji/1f9dc-1f3ff.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#0B0200" d="M17 0c-1.264 0-2.435.393-3.402 1.061C13.401 1.031 13.205 1 13 1c-2.209 0-4 1.791-4 4v6c0 3.866 3.134 7 7 7s7-3.134 7-7V6.001C23 2.687 20.313 0 17 0z"/><path fill="#7C533E" d="M29.637 18.636c-.305-.612-1.02-.844-1.589-.515l-3.102 1.79-2.11-4.23c-.346-.929-1.188-1.587-2.175-1.587h-9.49c-1.016 0-1.454.595-1.656.938L3.244 25.656c-.347.588-.184 1.368.363 1.741.174.12.367.182.559.194.412.026.824-.183 1.06-.585l5.539-9.401.51.274 1.173 5.048-1.173 5.048h9.387l-1.173-5.048 1.173-5.048.48-.258 2.292 4.594c.305.612 1.02.844 1.589.515l4.136-2.387c.568-.327.784-1.096.478-1.707z"/><path fill="#E75A70" d="M15.968 17.879s-1.173-1.262-2.347-1.262-2.347 1.262-2.347 1.262l.88 3.786h7.627l.88-3.786s-1.173-1.262-2.347-1.262c-1.172 0-2.346 1.262-2.346 1.262z"/><path fill="#7C533E" d="M14 10v4c0 1.104.896 2 2 2s2-.896 2-2v-4h-4z"/><path fill="#664131" d="M18 10l-4 .019V14s2 1 4 0v-4z"/><path fill="#7C533E" d="M21 3.05H11v5.973C11 11.773 13.238 14 16 14s5-2.227 5-4.977V3.05z"/><path fill="#0B0200" d="M14 3s0 4 8 4V3h-8zm0 0s0 4-4 4V3h4z"/><path fill="#DF1F32" d="M18 12h-4s0 1 2 1 2-1 2-1z"/><circle cx="13.5" cy="8.5" r=".5"/><circle cx="18.5" cy="8.5" r=".5"/><path fill="#3D2E24" d="M15 10h2s0 1-1 1-1-1-1-1z"/><path fill="#5D9040" d="M29.014 28.838c2.254-1.98 1.374-5.968 1.374-5.968-.751.66-1.41 2.663-3.664 4.642-.803.705-1.2 1.629-1.306 2.454-.842.23-2.145.529-3.418.587-.706.032-1.436-.046-2.172-.195C20.535 29.809 21 28.96 21 28v-1c0-1.1-.9-2-2-2h-9c-1.201 0-2.236.719-2.714 1.745l-.008.003-.011.031c-.043.095-.072.196-.105.296-.025.076-.051.152-.072.23-.012.049-.025.098-.034.148-.57 2.401.735 5.48 3.944 6.547 1.979.658 6.075 1.291 9.662.658 2.511-.443 4.61-1.555 5.924-2.402.635.247 1.499.23 2.735-.214 2.272-.816 2.356-3.324 6.075-4.905-2.55-.836-6.382 1.701-6.382 1.701z"/><path fill="#292F33" d="M19.447 30.269c-.023 0-.049-.002-.073-.007-2.24-.446-6.787-2.547-6.979-2.637-.188-.087-.27-.31-.183-.497.087-.189.312-.271.498-.183.046.021 4.657 2.152 6.81 2.58.203.041.335.238.295.441-.036.18-.192.303-.368.303z"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#2CB4CD" d="M20.716 11.182c-.994-1.383-1.654-5.509-1.654-5.509-.155-2.715-2.494-5.572-5.571-5.572-1.173 0-2.26.365-3.159.985-.182-.027-.365-.056-.555-.056-2.051 0-3.714 1.663-3.714 3.714 0 0-.73 2.881-1.521 3.797.377-.223.706-.465.997-.724-.259 1.306-.788 3.586-1.478 4.547.765-.55 1.41-1.136 1.859-1.795-.021.647-.399 1.267-.837 3.348-.458 2.177.364 2.197 1.385 2.646 1.795.789 12.847 1.296 13.281-.969.513-2.675.068-4.112-.425-5.624.391.429.86.83 1.392 1.212z"/><path fill="#7C533E" d="M16.125 13.384s-2.26-.137-3.764-.137-2.959.1-3.392.137l-1.963 3.619.526.283s1.209 4.354 1.209 5.202c0 .848-1.209 5.202-1.209 5.202h9.674s-1.209-4.075-1.209-5.202 1.209-5.202 1.209-5.202l.495-.266-1.576-3.636z"/><path fill="#DD415D" d="M12.369 17.286s-1.209-1.301-2.418-1.301-2.418 1.301-2.418 1.301l.983 3.902h7.681l1.009-3.902s-1.209-1.301-2.418-1.301-2.419 1.301-2.419 1.301z"/><path fill="#316116" d="M28.744 25.545c1.738-2.783-.967-7.196-.967-7.196-.067.534-.348 1.714-.348 1.714-.163.998-.678 2.566-2.219 4.469-1.049 1.294 4.467 5.504 5.708 4.687 1.937-1.276 1.587-3.432 3.655-5.726.367-.407.8-.817 1.346-1.228-3.575-.319-7.175 3.28-7.175 3.28zm-3.123 3.078c-4.478 3.618-9.355 2.292-10.385 1.38l-7.644-5.978c-5.516 0-4.48 7.846 1.132 10.349 9.576 4.271 17.103-1.423 18.399-4.18l-1.502-1.571z"/><path fill="#66A644" d="M27.814 26.878c1.408-2.155.357-5.346-.385-6.815-.163.998-.843 2.383-2.384 4.286-1.049 1.294-.483 3.302-.021 4.199l.001.001c-3.596 2.842-7.065 2.264-8.825 1.464 1.17-.542 1.986-1.7 1.986-3.053 0-1.87-1.547-3.385-3.454-3.385h-7.14c-5.516 0-4.48 7.39 1.132 9.843 9.165 4.007 17-.67 18.793-3.448.863.096 2.363.056 3.573-.741 1.937-1.276 1.414-3.441 3.482-5.734-3.483.249-6.758 3.383-6.758 3.383z"/><path fill="#316116" d="M16.212 30.014c-2.309-.46-6.994-2.625-7.193-2.717-.194-.09-.278-.319-.188-.512.09-.195.321-.28.513-.188.048.022 5.488 2.428 7.707 2.869 0 0-.158.133-.336.267-.179.132-.503.281-.503.281z"/><path fill="#7C533E" d="M7.399 17.278c-1.878 1.035-3.24 2.455-3.336 2.617-.239.404-.437 1.592-.276 2.415.145.741.177 2.238.66 2.915.198.277.107.759-.032 1.208-.419 1.353.306 3.199-.145 2.882-.918-.644-1.074-1.83-1.047-2.528.015-.393-.166-.884-.257-1.138-.059-.16-1.245-3.203-1.518-4.54-.148-.722-.333-1.302.275-2.155.903-1.266 2.094-2.996 3.311-3.885 2.012-1.471 3.936-1.687 3.936-1.687s-.911 3.532-1.571 3.896zm23-6.626c-.084.009-.143.102-.203.238-.023-.164-.074-.276-.184-.264-.129.013-.201.22-.304.492-.027-.047-.062-.079-.117-.078-.261.009-.349.811-.909 1.334-.081.036-.154.078-.248.104-.059.016-.098.041-.146.061.005-.255.171-.405.271-.474.239-.166.089-.586-.314-.331-.289.183-.41.365-.501.55-.255.519-.354 1.058-.333 1.487l-.119.215c-.139.242-1.626 1.17-2.696 1.967-1.066.793-1.846 1.694-2.415 1.132-.396-.391-1.591-1.706-3.322-2.833-1.093-.712-2.733-.866-2.733-.866-.807.662.166 3.109.894 3.566.938.589 4.26 2.925 5.306 3.391s1.704-.161 2.196-.609c.403-.366 3.434-4.072 3.703-4.326.365-.344 1.063-.797 1.457-1.491.338-.596.543-1.079.667-1.855.071-.456.402-1.447.05-1.41zM10.706 9.387v3.714c0 1.026.831 1.857 1.857 1.857s1.857-.831 1.857-1.857V9.387h-3.714z"/><path fill="#664131" d="M14.419 9.387l-3.714.017v3.697s1.857.928 3.714 0V9.387z"/><path fill="#7C533E" d="M17.205 2.934H7.92V8.48c0 2.553 2.078 4.621 4.642 4.621 2.564 0 4.643-2.068 4.643-4.621V2.934z"/><path fill="#DF1F32" d="M14.419 11.244h-3.714s0 .928 1.857.928 1.857-.928 1.857-.928z"/><circle cx="10.241" cy="7.994" r=".464"/><circle cx="14.884" cy="7.994" r=".464"/><path fill="#3D2E24" d="M11.634 9.387h1.857s0 .928-.929.928c-.928 0-.928-.928-.928-.928z"/><path fill="#2CB4CD" d="M18.133 6.601l-.613-4.114H6.992v4.114c3.674 0 3.713-3.628 3.714-3.707.001.08.08 3.707 7.427 3.707z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f9dc-200d-2640-fe0f.svg b/public/emoji/1f9dc-200d-2640-fe0f.svg
index 2a7eba55a4bcff50ca4f822f0c33deb8a54e0e3e..750f2433524721170db946630a5ede31f5869e14 100644
--- a/public/emoji/1f9dc-200d-2640-fe0f.svg
+++ b/public/emoji/1f9dc-200d-2640-fe0f.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#FFAC33" d="M17 0c-1.264 0-2.435.393-3.402 1.061C13.401 1.031 13.205 1 13 1c-2.209 0-4 1.791-4 4v6c0 3.866 3.134 7 7 7s7-3.134 7-7V6.001C23 2.687 20.313 0 17 0z"/><path fill="#FFDC5D" d="M29.637 18.636c-.305-.612-1.02-.844-1.589-.515l-3.102 1.79-2.11-4.23c-.346-.929-1.188-1.587-2.175-1.587h-9.49c-1.016 0-1.454.595-1.656.938L3.244 25.656c-.347.588-.184 1.368.363 1.741.174.12.367.182.559.194.412.026.824-.183 1.06-.585l5.539-9.401.51.274 1.173 5.048-1.173 5.048h9.387l-1.173-5.048 1.173-5.048.48-.258 2.292 4.594c.305.612 1.02.844 1.589.515l4.136-2.387c.568-.327.784-1.096.478-1.707z"/><path fill="#E75A70" d="M15.968 17.879s-1.173-1.262-2.347-1.262-2.347 1.262-2.347 1.262l.88 3.786h7.627l.88-3.786s-1.173-1.262-2.347-1.262c-1.172 0-2.346 1.262-2.346 1.262z"/><path fill="#FFDC5D" d="M14 10v4c0 1.104.896 2 2 2s2-.896 2-2v-4h-4z"/><path fill="#F9CA55" d="M18 10l-4 .019V14s2 1 4 0v-4z"/><path fill="#FFDC5D" d="M21 3.05H11v5.973C11 11.773 13.238 14 16 14s5-2.227 5-4.977V3.05z"/><path fill="#FFAC33" d="M14 3s0 4 8 4V3h-8zm0 0s0 4-4 4V3h4z"/><path fill="#DF1F32" d="M18 12h-4s0 1 2 1 2-1 2-1z"/><circle fill="#662113" cx="13.5" cy="8.5" r=".5"/><circle fill="#662113" cx="18.5" cy="8.5" r=".5"/><path fill="#C1694F" d="M15 10h2s0 1-1 1-1-1-1-1z"/><path fill="#5D9040" d="M29.014 28.838c2.254-1.98 1.374-5.968 1.374-5.968-.751.66-1.41 2.663-3.664 4.642-.803.705-1.2 1.629-1.306 2.454-.842.23-2.145.529-3.418.587-.706.032-1.436-.046-2.172-.195C20.535 29.809 21 28.96 21 28v-1c0-1.1-.9-2-2-2h-9c-1.201 0-2.236.719-2.714 1.745l-.008.003-.011.031c-.043.095-.072.196-.105.296-.025.076-.051.152-.072.23-.012.049-.025.098-.034.148-.57 2.401.735 5.48 3.944 6.547 1.979.658 6.075 1.291 9.662.658 2.511-.443 4.61-1.555 5.924-2.402.635.247 1.499.23 2.735-.214 2.272-.816 2.356-3.324 6.075-4.905-2.55-.836-6.382 1.701-6.382 1.701z"/><path fill="#292F33" d="M19.447 30.269c-.023 0-.049-.002-.073-.007-2.24-.446-6.787-2.547-6.979-2.637-.188-.087-.27-.31-.183-.497.087-.189.312-.271.498-.183.046.021 4.657 2.152 6.81 2.58.203.041.335.238.295.441-.036.18-.192.303-.368.303z"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#2CB4CD" d="M20.716 11.182c-.994-1.383-1.654-5.509-1.654-5.509-.155-2.715-2.494-5.572-5.571-5.572-1.173 0-2.26.365-3.159.985-.182-.027-.365-.056-.555-.056-2.051 0-3.714 1.663-3.714 3.714 0 0-.73 2.881-1.521 3.797.377-.223.706-.465.997-.724-.259 1.306-.788 3.586-1.478 4.547.765-.55 1.41-1.136 1.859-1.795-.021.647-.399 1.267-.837 3.348-.458 2.177.364 2.197 1.385 2.646 1.795.789 12.847 1.296 13.281-.969.513-2.675.068-4.112-.425-5.624.391.429.86.83 1.392 1.212z"/><path fill="#FFDC5D" d="M16.125 13.384s-2.26-.137-3.764-.137-2.959.1-3.392.137l-1.963 3.619.526.283s1.209 4.354 1.209 5.202c0 .848-1.209 5.202-1.209 5.202h9.674s-1.209-4.075-1.209-5.202 1.209-5.202 1.209-5.202l.495-.266-1.576-3.636z"/><path fill="#DD415D" d="M12.369 17.286s-1.209-1.301-2.418-1.301-2.418 1.301-2.418 1.301l.983 3.902h7.681l1.009-3.902s-1.209-1.301-2.418-1.301-2.419 1.301-2.419 1.301z"/><path fill="#316116" d="M28.744 25.545c1.738-2.783-.967-7.196-.967-7.196-.067.534-.348 1.714-.348 1.714-.163.998-.678 2.566-2.219 4.469-1.049 1.294 4.467 5.504 5.708 4.687 1.937-1.276 1.587-3.432 3.655-5.726.367-.407.8-.817 1.346-1.228-3.575-.319-7.175 3.28-7.175 3.28zm-3.123 3.078c-4.478 3.618-9.355 2.292-10.385 1.38l-7.644-5.978c-5.516 0-4.48 7.846 1.132 10.349 9.576 4.271 17.103-1.423 18.399-4.18l-1.502-1.571z"/><path fill="#66A644" d="M27.814 26.878c1.408-2.155.357-5.346-.385-6.815-.163.998-.843 2.383-2.384 4.286-1.049 1.294-.483 3.302-.021 4.199l.001.001c-3.596 2.842-7.065 2.264-8.825 1.464 1.17-.542 1.986-1.7 1.986-3.053 0-1.87-1.547-3.385-3.454-3.385h-7.14c-5.516 0-4.48 7.39 1.132 9.843 9.165 4.007 17-.67 18.793-3.448.863.096 2.363.056 3.573-.741 1.937-1.276 1.414-3.441 3.482-5.734-3.483.249-6.758 3.383-6.758 3.383z"/><path fill="#316116" d="M16.212 30.014c-2.309-.46-6.994-2.625-7.193-2.717-.194-.09-.278-.319-.188-.512.09-.195.321-.28.513-.188.048.022 5.488 2.428 7.707 2.869 0 0-.158.133-.336.267-.179.132-.503.281-.503.281z"/><path fill="#FFDC5D" d="M7.399 17.278c-1.878 1.035-3.24 2.455-3.336 2.617-.239.404-.437 1.592-.276 2.415.145.741.177 2.238.66 2.915.198.277.107.759-.032 1.208-.419 1.353.306 3.199-.145 2.882-.918-.644-1.074-1.83-1.047-2.528.015-.393-.166-.884-.257-1.138-.059-.16-1.245-3.203-1.518-4.54-.148-.722-.333-1.302.275-2.155.903-1.266 2.094-2.996 3.311-3.885 2.012-1.471 3.936-1.687 3.936-1.687s-.911 3.532-1.571 3.896zm23-6.626c-.084.009-.143.102-.203.238-.023-.164-.074-.276-.184-.264-.129.013-.201.22-.304.492-.027-.047-.062-.079-.117-.078-.261.009-.349.811-.909 1.334-.081.036-.154.078-.248.104-.059.016-.098.041-.146.061.005-.255.171-.405.271-.474.239-.166.089-.586-.314-.331-.289.183-.41.365-.501.55-.255.519-.354 1.058-.333 1.487l-.119.215c-.139.242-1.626 1.17-2.696 1.967-1.066.793-1.846 1.694-2.415 1.132-.396-.391-1.591-1.706-3.322-2.833-1.093-.712-2.733-.866-2.733-.866-.807.662.166 3.109.894 3.566.938.589 4.26 2.925 5.306 3.391s1.704-.161 2.196-.609c.403-.366 3.434-4.072 3.703-4.326.365-.344 1.063-.797 1.457-1.491.338-.596.543-1.079.667-1.855.071-.456.402-1.447.05-1.41zM10.706 9.387v3.714c0 1.026.831 1.857 1.857 1.857s1.857-.831 1.857-1.857V9.387h-3.714z"/><path fill="#F9CA55" d="M14.419 9.387l-3.714.017v3.697s1.857.928 3.714 0V9.387z"/><path fill="#FFDC5D" d="M17.205 2.934H7.92V8.48c0 2.553 2.078 4.621 4.642 4.621 2.564 0 4.643-2.068 4.643-4.621V2.934z"/><path fill="#DF1F32" d="M14.419 11.244h-3.714s0 .928 1.857.928 1.857-.928 1.857-.928z"/><circle fill="#662113" cx="10.241" cy="7.994" r=".464"/><circle fill="#662113" cx="14.884" cy="7.994" r=".464"/><path fill="#C1694F" d="M11.634 9.387h1.857s0 .928-.929.928c-.928 0-.928-.928-.928-.928z"/><path fill="#2CB4CD" d="M18.133 6.601l-.613-4.114H6.992v4.114c3.674 0 3.713-3.628 3.714-3.707.001.08.08 3.707 7.427 3.707z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f9dc-200d-2642-fe0f.svg b/public/emoji/1f9dc-200d-2642-fe0f.svg
index b003edae9e6d9d9cc05df0a5a67bc33efeec6810..07111b5dd5d176bbb38ba1c86bc2eec31d2cf480 100644
--- a/public/emoji/1f9dc-200d-2642-fe0f.svg
+++ b/public/emoji/1f9dc-200d-2642-fe0f.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#FFDC5D" d="M29.637 18.636c-.305-.612-1.02-.844-1.589-.515l-3.102 1.79-1.718-3.444.012-.009c-.171-.34-.336-.669-.502-.972l-.011-.023c-.002-.003-.005-.005-.006-.008-.457-.834-.924-1.455-1.549-1.455H11.044c-.365.004-.688.167-.93.474l-.797 1.01c-.25.289-.494.597-.713.904l-5.199 6.589c-.426.54-.333 1.33.207 1.756s1.33.333 1.756-.207l5.821-7.378.811 6.856-.725 3.971h9.387L20 24.004l.77-7.128 2.664 5.34c.305.612 1.02.844 1.589.515l4.136-2.387c.568-.328.784-1.097.478-1.708z"/><path fill="#FFDC5D" d="M14 11v4c0 1.104.896 2 2 2s2-.896 2-2v-4h-4z"/><path fill="#F9CA55" d="M18 10l-4 .019V14s2 1 4 0v-4z"/><path fill="#FFDC5D" d="M21 5l-10-.887V9c0 2.762 2.238 5 5 5s5-2.237 5-5V5z"/><path fill="#C1694F" d="M18 12h-4s0 1 2 1 2-1 2-1z"/><circle fill="#662113" cx="13.5" cy="8.5" r=".5"/><circle fill="#662113" cx="18.5" cy="8.5" r=".5"/><path fill="#C1694F" d="M15 10h2s0 1-1 1-1-1-1-1z"/><path fill="#FFAC33" d="M16 1.043c3.433 0 5.578 2.533 5.578 4.644s-.429 2.955-.858 2.111l-.858-1.688s-2.574 0-3.432-.845c0 0 1.287 2.533-1.287 0 0 0 .429 1.689-2.145-.422 0 0-1.287.844-1.716 2.955-.119.586-.858 0-.858-2.111-.002-2.111 1.714-4.644 5.576-4.644"/><path fill="#3B88C3" d="M10 31h8c1.65 0 3-1.35 3-3v-1c0-1.1-.9-2-2-2h-9c-1.65 0-3 1.35-3 3s1.35 3 3 3z"/><path fill="#3B88C3" d="M7.278 26.749C6.235 29.211 7.468 32.826 11 34c1.979.658 6.075 1.291 9.662.658 4.291-.757 7.397-3.473 7.397-3.473l-1.725-1.492s-2.22.764-4.334.861c-3.894.178-8.488-2.926-11-3.554-2.878-.719-3.722-.251-3.722-.251z"/><path fill="#3B88C3" d="M25.756 31.674c-.651-.742-.535-2.842.968-4.161 2.254-1.98 2.912-3.982 3.664-4.642 0 0 .88 3.988-1.374 5.968 0 0 3.832-2.537 6.382-1.701-3.719 1.581-3.803 4.089-6.075 4.905-1.882.675-2.913.373-3.565-.369z"/><path fill="#292F33" d="M19.447 30.269c-.023 0-.049-.002-.073-.007-2.24-.446-6.787-2.547-6.979-2.637-.188-.087-.27-.31-.183-.497.087-.189.312-.271.498-.183.046.021 4.657 2.152 6.81 2.58.203.041.335.238.295.441-.036.18-.192.303-.368.303z"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#FFDC5D" d="M16.703 13.234c-2.061-.088-4.3-.078-4.3-.078s-2.24-.01-4.3.078c-.501.021-.979.233-1.35.456-.439.264-.728.544-.728.544.105 1.368 1.219 3.286 1.368 3.564.418.78.922 4.264.922 4.264.114 1.201 0 2 0 2h8.176s-.114-.799 0-2c0 0 .504-3.484.922-4.264.149-.278 1.263-2.196 1.368-3.564 0 0-.984-.953-2.078-1z"/><path fill="#EF9645" d="M14.985 18.332c-1.131 0-1.968-.354-2.014-.374-.126-.055-.185-.202-.13-.328.054-.126.2-.187.328-.131.014.006 1.35.565 2.857.215.137-.029.269.053.3.187.031.134-.053.269-.187.3-.403.095-.793.131-1.154.131zm-5.324 0c-.36 0-.75-.036-1.155-.13-.134-.031-.218-.166-.187-.3.031-.134.164-.216.3-.187 1.516.353 2.844-.209 2.857-.215.127-.056.274.003.329.13s-.004.274-.13.329c-.047.02-.883.373-2.014.373z"/><path fill="#184F87" d="M28.744 25.545c1.738-2.783-.967-7.196-.967-7.196-.067.534-.348 1.714-.348 1.714-.163.998-.678 2.566-2.219 4.469-1.049 1.294 4.467 5.504 5.708 4.687 1.937-1.276 1.587-3.432 3.655-5.726.367-.407.8-.817 1.346-1.228-3.575-.319-7.175 3.28-7.175 3.28zm-3.123 3.078c-4.478 3.618-9.355 2.292-10.385 1.38l-7.644-5.978c-5.516 0-4.48 7.846 1.132 10.349 9.576 4.271 17.103-1.423 18.399-4.18l-1.502-1.571z"/><path fill="#4292E0" d="M27.814 26.878c1.408-2.155.357-5.346-.385-6.815-.163.998-.843 2.383-2.384 4.286-1.049 1.294-.483 3.302-.021 4.199l.001.001c-3.596 2.842-7.065 2.264-8.825 1.464 1.17-.542 1.986-1.7 1.986-3.053 0-1.87-1.547-3.385-3.454-3.385h-7.14c-5.516 0-4.48 7.39 1.132 9.843 9.165 4.007 17-.67 18.793-3.448.863.096 2.363.056 3.573-.741 1.937-1.276 1.414-3.441 3.482-5.734-3.483.249-6.758 3.383-6.758 3.383z"/><path fill="#184F87" d="M16.212 30.014c-2.309-.46-6.994-2.625-7.193-2.717-.194-.09-.278-.319-.188-.512.09-.195.321-.28.513-.188.048.022 5.488 2.428 7.707 2.869 0 0-.158.133-.336.267-.179.132-.503.281-.503.281z"/><path fill="#FFDC5D" d="M7.482 17.392c-1.878 1.035-3.267 2.429-3.38 2.58-.477.637-.324 1.509-.251 2.345.086.995.112 2.231.595 2.908.198.277.107.759-.032 1.208-.419 1.353.306 3.199-.145 2.882-.918-.644-1.074-1.83-1.047-2.528.015-.393-.166-.884-.257-1.138-.059-.16-1.348-3.094-1.622-4.431-.148-.722-.186-1.381.379-2.263.621-.971 1.939-2.945 3.117-3.885.989-.789 1.564-1.189 1.914-1.38 1.57-.857 1.389 3.338.729 3.702zm22.917-6.74c-.084.009-.143.102-.203.238-.023-.164-.074-.276-.184-.264-.129.013-.201.22-.304.492-.027-.047-.062-.079-.117-.078-.261.009-.349.811-.909 1.334-.081.036-.154.078-.248.104-.059.016-.098.041-.146.061.005-.255.171-.405.271-.474.239-.166.089-.586-.314-.331-.289.183-.41.365-.501.55-.255.519-.354 1.058-.333 1.487l-.119.215c-.139.242-1.626 1.17-2.696 1.967-1.066.793-1.846 1.694-2.415 1.132-.396-.391-1.462-1.74-3.322-2.833-1.124-.661-2.733-.866-2.733-.866-.807.662.226 3.019.812 3.647.981 1.051 4.341 2.844 5.388 3.31s1.704-.161 2.196-.609c.403-.366 3.434-4.072 3.703-4.326.365-.344 1.063-.797 1.457-1.491.338-.596.543-1.079.667-1.855.071-.456.402-1.447.05-1.41zm-19.86-.361v3.727c0 1.029.834 1.864 1.864 1.864 1.029 0 1.864-.834 1.864-1.864v-3.727h-3.728z"/><path fill="#F9CA55" d="M14.267 9.36l-3.727.017v3.71s1.864.932 3.727 0V9.36z"/><path fill="#FFDC5D" d="M17.062 4.701l-9.318-.827v4.554c0 2.574 2.086 4.659 4.659 4.659s4.659-2.085 4.659-4.659V4.701z"/><path fill="#C1694F" d="M14.267 11.223h-3.728s0 .932 1.864.932 1.864-.932 1.864-.932z"/><circle fill="#662113" cx="10.073" cy="7.962" r=".466"/><circle fill="#662113" cx="14.733" cy="7.962" r=".466"/><path fill="#C1694F" d="M11.471 9.36h1.864s0 .932-.932.932-.932-.932-.932-.932z"/><path fill="#4292E0" d="M12.403 1.013c3.199 0 5.198 2.36 5.198 4.327s-.4 2.754-.8 1.967l-.8-1.573s-2.399 0-3.198-.787c0 0 1.2 2.36-1.2 0 0 0 .4 1.574-1.999-.393 0 0-1.2.787-1.599 2.753-.111.546-.8 0-.8-1.967 0-1.966 1.6-4.327 5.198-4.327"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f9dc.svg b/public/emoji/1f9dc.svg
index 2a7eba55a4bcff50ca4f822f0c33deb8a54e0e3e..750f2433524721170db946630a5ede31f5869e14 100644
--- a/public/emoji/1f9dc.svg
+++ b/public/emoji/1f9dc.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#FFAC33" d="M17 0c-1.264 0-2.435.393-3.402 1.061C13.401 1.031 13.205 1 13 1c-2.209 0-4 1.791-4 4v6c0 3.866 3.134 7 7 7s7-3.134 7-7V6.001C23 2.687 20.313 0 17 0z"/><path fill="#FFDC5D" d="M29.637 18.636c-.305-.612-1.02-.844-1.589-.515l-3.102 1.79-2.11-4.23c-.346-.929-1.188-1.587-2.175-1.587h-9.49c-1.016 0-1.454.595-1.656.938L3.244 25.656c-.347.588-.184 1.368.363 1.741.174.12.367.182.559.194.412.026.824-.183 1.06-.585l5.539-9.401.51.274 1.173 5.048-1.173 5.048h9.387l-1.173-5.048 1.173-5.048.48-.258 2.292 4.594c.305.612 1.02.844 1.589.515l4.136-2.387c.568-.327.784-1.096.478-1.707z"/><path fill="#E75A70" d="M15.968 17.879s-1.173-1.262-2.347-1.262-2.347 1.262-2.347 1.262l.88 3.786h7.627l.88-3.786s-1.173-1.262-2.347-1.262c-1.172 0-2.346 1.262-2.346 1.262z"/><path fill="#FFDC5D" d="M14 10v4c0 1.104.896 2 2 2s2-.896 2-2v-4h-4z"/><path fill="#F9CA55" d="M18 10l-4 .019V14s2 1 4 0v-4z"/><path fill="#FFDC5D" d="M21 3.05H11v5.973C11 11.773 13.238 14 16 14s5-2.227 5-4.977V3.05z"/><path fill="#FFAC33" d="M14 3s0 4 8 4V3h-8zm0 0s0 4-4 4V3h4z"/><path fill="#DF1F32" d="M18 12h-4s0 1 2 1 2-1 2-1z"/><circle fill="#662113" cx="13.5" cy="8.5" r=".5"/><circle fill="#662113" cx="18.5" cy="8.5" r=".5"/><path fill="#C1694F" d="M15 10h2s0 1-1 1-1-1-1-1z"/><path fill="#5D9040" d="M29.014 28.838c2.254-1.98 1.374-5.968 1.374-5.968-.751.66-1.41 2.663-3.664 4.642-.803.705-1.2 1.629-1.306 2.454-.842.23-2.145.529-3.418.587-.706.032-1.436-.046-2.172-.195C20.535 29.809 21 28.96 21 28v-1c0-1.1-.9-2-2-2h-9c-1.201 0-2.236.719-2.714 1.745l-.008.003-.011.031c-.043.095-.072.196-.105.296-.025.076-.051.152-.072.23-.012.049-.025.098-.034.148-.57 2.401.735 5.48 3.944 6.547 1.979.658 6.075 1.291 9.662.658 2.511-.443 4.61-1.555 5.924-2.402.635.247 1.499.23 2.735-.214 2.272-.816 2.356-3.324 6.075-4.905-2.55-.836-6.382 1.701-6.382 1.701z"/><path fill="#292F33" d="M19.447 30.269c-.023 0-.049-.002-.073-.007-2.24-.446-6.787-2.547-6.979-2.637-.188-.087-.27-.31-.183-.497.087-.189.312-.271.498-.183.046.021 4.657 2.152 6.81 2.58.203.041.335.238.295.441-.036.18-.192.303-.368.303z"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#2CB4CD" d="M20.716 11.182c-.994-1.383-1.654-5.509-1.654-5.509-.155-2.715-2.494-5.572-5.571-5.572-1.173 0-2.26.365-3.159.985-.182-.027-.365-.056-.555-.056-2.051 0-3.714 1.663-3.714 3.714 0 0-.73 2.881-1.521 3.797.377-.223.706-.465.997-.724-.259 1.306-.788 3.586-1.478 4.547.765-.55 1.41-1.136 1.859-1.795-.021.647-.399 1.267-.837 3.348-.458 2.177.364 2.197 1.385 2.646 1.795.789 12.847 1.296 13.281-.969.513-2.675.068-4.112-.425-5.624.391.429.86.83 1.392 1.212z"/><path fill="#FFDC5D" d="M16.125 13.384s-2.26-.137-3.764-.137-2.959.1-3.392.137l-1.963 3.619.526.283s1.209 4.354 1.209 5.202c0 .848-1.209 5.202-1.209 5.202h9.674s-1.209-4.075-1.209-5.202 1.209-5.202 1.209-5.202l.495-.266-1.576-3.636z"/><path fill="#DD415D" d="M12.369 17.286s-1.209-1.301-2.418-1.301-2.418 1.301-2.418 1.301l.983 3.902h7.681l1.009-3.902s-1.209-1.301-2.418-1.301-2.419 1.301-2.419 1.301z"/><path fill="#316116" d="M28.744 25.545c1.738-2.783-.967-7.196-.967-7.196-.067.534-.348 1.714-.348 1.714-.163.998-.678 2.566-2.219 4.469-1.049 1.294 4.467 5.504 5.708 4.687 1.937-1.276 1.587-3.432 3.655-5.726.367-.407.8-.817 1.346-1.228-3.575-.319-7.175 3.28-7.175 3.28zm-3.123 3.078c-4.478 3.618-9.355 2.292-10.385 1.38l-7.644-5.978c-5.516 0-4.48 7.846 1.132 10.349 9.576 4.271 17.103-1.423 18.399-4.18l-1.502-1.571z"/><path fill="#66A644" d="M27.814 26.878c1.408-2.155.357-5.346-.385-6.815-.163.998-.843 2.383-2.384 4.286-1.049 1.294-.483 3.302-.021 4.199l.001.001c-3.596 2.842-7.065 2.264-8.825 1.464 1.17-.542 1.986-1.7 1.986-3.053 0-1.87-1.547-3.385-3.454-3.385h-7.14c-5.516 0-4.48 7.39 1.132 9.843 9.165 4.007 17-.67 18.793-3.448.863.096 2.363.056 3.573-.741 1.937-1.276 1.414-3.441 3.482-5.734-3.483.249-6.758 3.383-6.758 3.383z"/><path fill="#316116" d="M16.212 30.014c-2.309-.46-6.994-2.625-7.193-2.717-.194-.09-.278-.319-.188-.512.09-.195.321-.28.513-.188.048.022 5.488 2.428 7.707 2.869 0 0-.158.133-.336.267-.179.132-.503.281-.503.281z"/><path fill="#FFDC5D" d="M7.399 17.278c-1.878 1.035-3.24 2.455-3.336 2.617-.239.404-.437 1.592-.276 2.415.145.741.177 2.238.66 2.915.198.277.107.759-.032 1.208-.419 1.353.306 3.199-.145 2.882-.918-.644-1.074-1.83-1.047-2.528.015-.393-.166-.884-.257-1.138-.059-.16-1.245-3.203-1.518-4.54-.148-.722-.333-1.302.275-2.155.903-1.266 2.094-2.996 3.311-3.885 2.012-1.471 3.936-1.687 3.936-1.687s-.911 3.532-1.571 3.896zm23-6.626c-.084.009-.143.102-.203.238-.023-.164-.074-.276-.184-.264-.129.013-.201.22-.304.492-.027-.047-.062-.079-.117-.078-.261.009-.349.811-.909 1.334-.081.036-.154.078-.248.104-.059.016-.098.041-.146.061.005-.255.171-.405.271-.474.239-.166.089-.586-.314-.331-.289.183-.41.365-.501.55-.255.519-.354 1.058-.333 1.487l-.119.215c-.139.242-1.626 1.17-2.696 1.967-1.066.793-1.846 1.694-2.415 1.132-.396-.391-1.591-1.706-3.322-2.833-1.093-.712-2.733-.866-2.733-.866-.807.662.166 3.109.894 3.566.938.589 4.26 2.925 5.306 3.391s1.704-.161 2.196-.609c.403-.366 3.434-4.072 3.703-4.326.365-.344 1.063-.797 1.457-1.491.338-.596.543-1.079.667-1.855.071-.456.402-1.447.05-1.41zM10.706 9.387v3.714c0 1.026.831 1.857 1.857 1.857s1.857-.831 1.857-1.857V9.387h-3.714z"/><path fill="#F9CA55" d="M14.419 9.387l-3.714.017v3.697s1.857.928 3.714 0V9.387z"/><path fill="#FFDC5D" d="M17.205 2.934H7.92V8.48c0 2.553 2.078 4.621 4.642 4.621 2.564 0 4.643-2.068 4.643-4.621V2.934z"/><path fill="#DF1F32" d="M14.419 11.244h-3.714s0 .928 1.857.928 1.857-.928 1.857-.928z"/><circle fill="#662113" cx="10.241" cy="7.994" r=".464"/><circle fill="#662113" cx="14.884" cy="7.994" r=".464"/><path fill="#C1694F" d="M11.634 9.387h1.857s0 .928-.929.928c-.928 0-.928-.928-.928-.928z"/><path fill="#2CB4CD" d="M18.133 6.601l-.613-4.114H6.992v4.114c3.674 0 3.713-3.628 3.714-3.707.001.08.08 3.707 7.427 3.707z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f9e9.svg b/public/emoji/1f9e9.svg
index 5f1e0d05ccabdae574f082066f1aa1e7e781fe8d..1505f6846686bccfcab9ee30a9e4dc31a39bc548 100644
--- a/public/emoji/1f9e9.svg
+++ b/public/emoji/1f9e9.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#50A5E6" d="M34.981 26.637c-.425-.479-1.038-.732-1.773-.732-.789 0-1.313.347-1.82.682-.562.371-1.643 1.255-2.743 1.255-1.952 0-3.562-2.167-3.562-4.75s1.031-4.688 3-4.688c1.209 0 2.157 1.121 2.773 1.448.473.252.919.489 1.477.489 1.232 0 2.217-1.03 2.372-2.507.201-1.909-.371-7.584-.451-8.153-.105-.751-.792-1.181-1.576-1.127-1.2.082-8.114.236-8.337.236-2.263 0-2.592-1.03-2.075-2.675.078-.247.257-.649.257-1.5 0-2.499-2.025-4.524-4.524-4.524s-4.524 2.025-4.524 4.524c0 .852.18 1.254.257 1.5.518 1.645.188 2.675-2.075 2.675-.223 0-7.137-.153-8.337-.236-.782-.054-1.469.376-1.575 1.129-.08.569-.651 6.243-.451 8.153.155 1.477 1.14 2.507 2.372 2.507.558 0 1.004-.237 1.477-.489.616-.327 1.564-1.448 2.773-1.448 1.969 0 3 2.104 3 4.688s-1.61 4.75-3.562 4.75c-1.1 0-2.181-.884-2.743-1.255-.507-.335-1.031-.682-1.82-.682-.735 0-1.348.253-1.773.732-.518.583-.725 1.453-.598 2.514.188 1.563.702 5.495.702 5.495.153 1.059.765 1.294 1.518 1.259.011-.001 11.732-.814 15.36-.814s15.349.813 15.361.814c.753.035 1.365-.2 1.518-1.259 0 0 .514-3.932.702-5.495.126-1.061-.081-1.931-.6-2.516z"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#50A5E6" d="M26.093 4.612c-.498.498-.629.839-.728 1.029-.66 1.266-1.455 1.676-2.78.351-.13-.13-4.087-4.267-4.741-5.017-.427-.49-1.081-.64-1.584-.262-.38.286-4.035 3.273-5.035 4.507-.774.955-.8 2.134-.079 2.856.326.326.727.449 1.151.578.552.169 1.763.068 2.47.775 1.133 1.133.54 2.924-.917 4.421-1.497 1.457-3.288 2.05-4.421.917-.708-.708-.606-1.918-.775-2.47-.129-.424-.252-.824-.578-1.151-.721-.721-1.9-.694-2.856.079-1.235 1-4.221 4.655-4.507 5.035-.379.503-.228 1.156.262 1.584.75.654 4.887 4.611 5.017 4.741 1.324 1.324.915 2.12-.351 2.78-.19.099-.53.229-1.029.728-1.462 1.462-1.462 3.833 0 5.295 1.462 1.462 3.833 1.462 5.295 0 .498-.498.629-.839.728-1.029.66-1.266 1.455-1.676 2.78-.351.13.13 4.087 4.267 4.741 5.017.427.49 1.081.64 1.584.262.38-.286 4.035-3.273 5.035-4.507.774-.955.8-2.134.079-2.856-.326-.326-.727-.449-1.151-.578-.552-.169-1.763-.068-2.47-.775-1.133-1.133-.54-2.924.917-4.421 1.497-1.457 3.288-2.05 4.421-.917.708.708.606 1.918.775 2.47.129.424.252.824.578 1.151.721.721 1.9.694 2.856-.079 1.235-1 4.221-4.655 4.507-5.035.379-.503.228-1.156-.262-1.584-.75-.654-4.887-4.611-5.017-4.741-1.324-1.324-.915-2.12.351-2.78.19-.099.53-.229 1.029-.728 1.462-1.462 1.462-3.833 0-5.295-1.462-1.463-3.833-1.463-5.295 0z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1f9eb.svg b/public/emoji/1f9eb.svg
index 6bcdc55e48559314565dbc2d5f1ccf4bdbebbbaa..8fdeaf9e037f7aa97e1dc0e6b6145989f2dadede 100644
--- a/public/emoji/1f9eb.svg
+++ b/public/emoji/1f9eb.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><ellipse fill="#99AAB5" cx="18" cy="21" rx="17" ry="9"/><path fill="#99AAB5" d="M1 15h34v6H1z"/><ellipse fill="#CCD6DD" cx="18" cy="15" rx="17" ry="9"/><ellipse fill="#EA596E" cx="18" cy="14.5" rx="15.111" ry="7.5"/><path fill="#99AAB5" d="M18 9c7.661 0 13.974 2.832 14.961 6.5.088-.328.15-.66.15-1C33.111 10.358 26.346 7 18 7S2.889 10.358 2.889 14.5c0 .34.061.672.15 1C4.026 11.832 10.339 9 18 9z"/><path fill="#E1E8ED" d="M2 18.017v5c.858 1.275 2.226 2.421 4 3.357v-5c-1.774-.936-3.142-2.082-4-3.357zM32 25.1c.832-.639 1.499-1.34 2-2.083v-5c-.501.744-1.168 1.444-2 2.083v5z"/><ellipse fill="#F5F8FA" cx="11.5" cy="13" rx="1.5" ry="1"/><ellipse fill="#F5F8FA" cx="8.5" cy="15" rx="1.5" ry="1"/><ellipse fill="#F5F8FA" cx="15.5" cy="14" rx="1.5" ry="1"/><ellipse fill="#F5F8FA" cx="11.5" cy="17" rx="1.5" ry="1"/><ellipse fill="#F5F8FA" cx="21.5" cy="18" rx="1.5" ry="1"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#99AAB5" d="M1 15h34v6H1z"/><path fill="#99AAB5" d="M18 12c-9.389 0-17 4.029-17 9 0 1.06.364 2.073 1 3.017.858 1.275 2.226 2.421 4 3.357C9.075 28.996 13.316 30 18 30c5.81 0 10.934-1.545 14-3.9.832-.639 1.499-1.34 2-2.083.636-.945 1-1.957 1-3.017 0-4.971-7.611-9-17-9z"/><path fill="#E1E8ED" d="M2 18.017v6c.858 1.275 2.226 2.421 4 3.357v-6c-1.774-.936-3.142-2.082-4-3.357zm32 6v-6c-.501.744-1.168 1.444-2 2.083v6c.832-.638 1.499-1.339 2-2.083z"/><ellipse fill="#CCD6DD" cx="18" cy="15" rx="17" ry="9"/><ellipse fill="#EA596E" cx="18" cy="14.5" rx="15.111" ry="7.5"/><path fill="#99AAB5" d="M18 9c7.661 0 13.974 2.832 14.961 6.5.088-.328.15-.66.15-1C33.111 10.358 26.346 7 18 7S2.889 10.358 2.889 14.5c0 .34.061.672.15 1C4.026 11.832 10.339 9 18 9z"/><ellipse fill="#F5F8FA" cx="11.5" cy="13" rx="1.5" ry="1"/><ellipse fill="#F5F8FA" cx="8.5" cy="15" rx="1.5" ry="1"/><ellipse fill="#F5F8FA" cx="15.5" cy="14" rx="1.5" ry="1"/><ellipse fill="#F5F8FA" cx="11.5" cy="17" rx="1.5" ry="1"/><ellipse fill="#F5F8FA" cx="21.5" cy="18" rx="1.5" ry="1"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1fa70.svg b/public/emoji/1fa70.svg
new file mode 100644
index 0000000000000000000000000000000000000000..a8df4c67d5a53035d37b898bcda75a4d54d3088e
--- /dev/null
+++ b/public/emoji/1fa70.svg
@@ -0,0 +1 @@
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#F4ABBA" d="M23.27.108C25.631.042 32.366 2.7 32.366 18.25c-.147 2.005-.342 9.193-5.379 12.714h-5.33c-1.027-.44-2.445-2.249-2.445-8.362 0-1.809 1.43-6.741 1.467-8.118.081-3.042-.634-4.525-1.842-7.531C17.304 3.14 19.749.205 23.27.108z"/><path fill="#EA596E" d="M29.408 7.443c.631 1.565 4.066 13.431-2.491 13.529-1.649.13-4.613-.179-2.14-7.906.947-2.494-1.367-7.637-1.579-8.655-.316-1.516 2.263-3.13 3.999-.831 1.555 2.057 2.211 3.863 2.211 3.863z"/><path fill="#F4ABBA" d="M23.401 20.622c-.283 0-.558-.146-.711-.407-.23-.393-.099-.896.294-1.126 3.134-1.837 6.378-6.191 7.165-7.913.189-.414.675-.597 1.092-.406.413.189.595.678.406 1.091-.886 1.936-4.356 6.613-7.831 8.648-.13.077-.273.113-.415.113z"/><path fill="#F4ABBA" d="M31.42 17.688c-.064 0-.13-.007-.195-.023-1.504-.366-6.195-2.541-8.011-6.311-.197-.41-.025-.902.384-1.099.412-.198.902-.025 1.099.384 1.54 3.196 5.668 5.122 6.917 5.426.442.107.713.553.605.995-.092.376-.429.628-.799.628zM12.338 4.963c-2.371-.066-9.137 2.603-9.137 18.224.147 2.014.344 9.235 5.403 12.772h5.354c1.032-.442 2.456-2.26 2.456-8.4 0-1.818-1.398-6.773-1.474-8.154-.186-3.401.637-4.545 1.85-7.565 1.541-3.832-.915-6.779-4.452-6.877z"/><path fill="#EA596E" d="M6.172 12.331c-.634 1.572-4.084 13.492 2.502 13.59 1.656.131 4.634-.18 2.15-7.941-.951-2.505 1.373-7.672 1.586-8.695.317-1.523-2.273-3.144-4.017-.835-1.562 2.067-2.221 3.881-2.221 3.881z"/><path fill="#F4ABBA" d="M12.206 25.569c-.142 0-.286-.037-.417-.113-3.49-2.045-6.976-6.742-7.866-8.687-.19-.416-.007-.906.408-1.096.416-.19.906-.008 1.096.408.792 1.73 4.05 6.104 7.198 7.948.394.231.526.738.295 1.132-.153.262-.43.408-.714.408z"/><path fill="#F4ABBA" d="M4.211 22.563c-.373 0-.711-.254-.803-.632-.108-.443.164-.891.607-.999 1.247-.303 5.361-2.219 6.89-5.391.199-.412.694-.583 1.104-.386.412.198.584.693.386 1.104-1.946 4.038-6.873 6.009-7.988 6.281-.066.016-.132.023-.196.023z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1fa71.svg b/public/emoji/1fa71.svg
new file mode 100644
index 0000000000000000000000000000000000000000..df3ecebac48768f9349dc3b12168a8e77be0169b
--- /dev/null
+++ b/public/emoji/1fa71.svg
@@ -0,0 +1 @@
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#9268CA" d="M27 12.964c0-3-3.198-9.355-4-12.964h-1c0 2 1 8.998-4 8.998S14 2 14 0h-1c-.802 3.609-4 9.964-4 12.964s3.34 4.144 2 8.036c-1.292 3.753-2 6-2 7 5 1 7 5 7 8h4c0-2 2-7 7-8 0-1-.708-3.247-2-7-1.34-3.893 2-5.036 2-8.036z"/><path fill="#78B159" d="M24.695 19h-13.39c.019.31-.003.645-.06 1h13.509c-.056-.355-.078-.69-.059-1zM25 21H11c-.251.728-.472 1.383-.678 2h15.356c-.206-.617-.427-1.272-.678-2z"/><path fill="#7450A8" d="M21 17h-6c-1.914 0-3.827-.007-5.741-2.635.555 1.523 1.826 2.657 2.024 4.43C12.649 18.002 16.55 18 18 18s5.351.002 6.717.795c.198-1.773 1.469-2.907 2.024-4.43C24.827 16.993 22.914 17 21 17zM9.505 25.57C9.174 26.704 9 27.506 9 28c5 1 7 5 7 8h1c0-5.476-4.884-9.105-7.495-10.43zM27 28c0-.494-.174-1.296-.505-2.43C23.884 26.895 19 30.524 19 36h1c0-2 2-7 7-8z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1fa72.svg b/public/emoji/1fa72.svg
new file mode 100644
index 0000000000000000000000000000000000000000..7486e6afe1521644da8c39d68089a8b4dad7e511
--- /dev/null
+++ b/public/emoji/1fa72.svg
@@ -0,0 +1 @@
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#2976AA" d="M36 17.96V10l-8.296-2H8.348L.052 10v7.96C.052 21.426 12.376 32 14.835 32h6.382C23.4 32 36 21.715 36 17.96z"/><g fill="#5DADEC"><path d="M4.617 18.577l-1.892-.647C4 14.201 4 10.904 4 9.32h2c0 1.692 0 5.213-1.383 9.257zm26.818.152C30 14.622 30 11.041 30 9.32h2c0 1.611 0 4.963 1.323 8.75l-1.888.659z"/><path d="M36 10H.052V8.199c0-.735.596-1.331 1.331-1.331h33.286c.735 0 1.331.596 1.331 1.331V10z"/></g><path d="M3.702 18.154l-.03.099c.011-.033.018-.065.03-.099-1.464-.547-2.75-.865-3.649-1.019v.825C.052 21.426 12.409 32 14.854 32h.934c-1.155-8.143-7.473-12.122-12.086-13.846zM36 17.96v-.747c-.897.147-2.196.459-3.677 1.005.021.061.035.12.057.181-.021-.061-.036-.12-.057-.181-4.6 1.696-10.905 5.635-12.059 13.782h.934C23.369 32 36 21.715 36 17.96z" fill="#1D567C"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1fa73.svg b/public/emoji/1fa73.svg
new file mode 100644
index 0000000000000000000000000000000000000000..03e70ca89e718cff4568c7b6ba9e1c8834071b51
--- /dev/null
+++ b/public/emoji/1fa73.svg
@@ -0,0 +1 @@
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#78B159" d="M31 6V1.955c0-.527-.428-.955-.955-.955H5.955C5.428 1 5 1.428 5 1.955V6L0 31l14 4 4-10.545L22 35l14-4-5-25z"/><g fill="#5D9040"><path d="M5 4h26v2H5zm8.782 2h-2.074c-1.378 4.107-5.46 5.399-7.87 5.807l-.421 2.107c3.606-.408 8.9-2.403 10.365-7.914z"/><path d="M32.583 13.914l-.421-2.107c-2.41-.408-6.491-1.701-7.87-5.807h-2.074c1.464 5.511 6.759 7.506 10.365 7.914zM17 6v21.091l1-2.636 1 2.636V6z"/><path d="M18.149 23H18v-2h.149C19.722 21 21 19.722 21 18.149V5h2v13.149C23 20.824 20.824 23 18.149 23z"/></g></svg>
\ No newline at end of file
diff --git a/public/emoji/1fa78.svg b/public/emoji/1fa78.svg
new file mode 100644
index 0000000000000000000000000000000000000000..2dc83a56d328a5d485e7615f3266283473ebde70
--- /dev/null
+++ b/public/emoji/1fa78.svg
@@ -0,0 +1 @@
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#DA2F47" d="M28.344 17.768L18.148 1.09 8.7 17.654c-2.2 3.51-2.392 8.074-.081 11.854 3.285 5.373 10.363 7.098 15.811 3.857 5.446-3.24 7.199-10.22 3.914-15.597z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1fa79.svg b/public/emoji/1fa79.svg
new file mode 100644
index 0000000000000000000000000000000000000000..41d5722af30c1b610f9fe64772261e5c9fc748c4
--- /dev/null
+++ b/public/emoji/1fa79.svg
@@ -0,0 +1 @@
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#D99E82" d="M2.92 21.393L21.393 2.92c3.227-3.227 8.46-3.227 11.687 0 3.227 3.227 3.227 8.46 0 11.687L14.607 33.08c-3.227 3.227-8.46 3.227-11.687 0-3.227-3.228-3.227-8.46 0-11.687z"/><g fill="#C1694F"><circle cx="4.389" cy="25.778" r=".972"/><circle cx="7.306" cy="28.694" r=".972"/><circle cx="10.222" cy="31.611" r=".972"/><circle cx="7.306" cy="22.861" r=".972"/><circle cx="10.222" cy="25.778" r=".972"/><circle cx="13.139" cy="28.694" r=".972"/><path d="M21.896 7.189c.064-.533.548-.913 1.081-.849.533.064.913.548.849 1.081-.064.533-.548.913-1.081.849-.533-.063-.913-.547-.849-1.081z"/><circle cx="25.778" cy="10.222" r=".972"/><circle cx="28.694" cy="13.139" r=".972"/><circle cx="25.778" cy="4.389" r=".972"/><circle cx="28.694" cy="7.306" r=".972"/><circle cx="31.611" cy="10.222" r=".972"/></g><path fill="#EABAA7" d="M6.82 17.514L17.512 6.819 29.18 18.486 18.486 29.18z"/><path fill="#F7DED5" d="M9.799 18.423c-.249 0-.498-.095-.687-.285-.38-.38-.38-.995 0-1.375l7.715-7.715c.38-.38.995-.38 1.375 0s.38.995 0 1.375l-7.715 7.715c-.191.191-.439.285-.688.285z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1fa7a.svg b/public/emoji/1fa7a.svg
new file mode 100644
index 0000000000000000000000000000000000000000..848c72e6eb23e4cf2326c8e238e423f6ba3cea96
--- /dev/null
+++ b/public/emoji/1fa7a.svg
@@ -0,0 +1 @@
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#31373D" d="M28.977 16.492l.011-.006c-1.466.66-3.102.795-4.676.372-1.626-.436-3.006-1.423-3.947-2.796.019.028.034.058.054.086L19 14l-.213 1.302c1.019 1.443 2.426 2.535 4.069 3.174l-.084.311c-.408 1.521-.275 3.296-.134 5.176.184 2.45.375 4.984-.665 6.933-.978 1.829-2.921 2.919-5.205 2.919h-.032c-2.129-.01-4.063-.98-4.813-2.415-.538-1.03-.597-2.431-.66-3.912-.101-2.393-.214-5.104-2.268-7.443l-3.949-4.501-1.503 1.319 3.949 4.5c1.588 1.811 1.682 4.046 1.773 6.209.069 1.636.14 3.328.885 4.754 1.101 2.106 3.682 3.476 6.577 3.489h.042c3.035 0 5.638-1.484 6.968-3.977 1.314-2.461 1.092-5.417.895-8.025-.128-1.704-.249-3.315.071-4.506l.085-.318c.451.069.902.113 1.352.113 1.252-.001 2.487-.277 3.644-.795L30 17l-1.023-.508z"/><path fill="#99AAB5" d="M1.258 18.867c-1.457-1.66-1.292-4.188.368-5.645 1.66-1.457 4.188-1.292 5.645.368 1.457 1.661 1.292 4.188-.368 5.645-1.66 1.457-4.188 1.293-5.645-.368z"/><path fill="#31373D" d="M2.762 17.548c-.729-.83-.646-2.094.184-2.822.83-.729 2.094-.646 2.822.184.729.83.646 2.094-.184 2.822-.83.729-2.094.646-2.822-.184z"/><path fill="#99AAB5" d="M29.791 18.318l-.814-1.826c1.936-.865 3.362-2.534 3.911-4.579l.778-2.897c.286-1.065-.348-2.164-1.413-2.451l.52-1.932c2.13.573 3.397 2.771 2.825 4.901l-.778 2.897c-.707 2.63-2.54 4.775-5.029 5.887zm-11.006-3.014c-1.555-2.197-2.047-4.946-1.35-7.542l.778-2.897c.572-2.131 2.771-3.398 4.9-2.826l-.519 1.932c-1.067-.286-2.164.348-2.45 1.413l-.778 2.898c-.543 2.019-.16 4.158 1.051 5.867l-1.632 1.155z"/><path fill="#31373D" d="M22.56 6.032c-.8-.215-1.274-1.038-1.059-1.838l.778-2.897c.215-.8 1.038-1.274 1.838-1.059.8.215 1.274 1.038 1.059 1.838l-.778 2.897c-.215.8-1.038 1.274-1.838 1.059zm8.692 2.335c-.8-.215-1.274-1.038-1.059-1.838l.778-2.897c.215-.8 1.038-1.274 1.838-1.059.8.215 1.274 1.038 1.06 1.838l-.778 2.897c-.216.8-1.039 1.274-1.839 1.059z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1fa80.svg b/public/emoji/1fa80.svg
new file mode 100644
index 0000000000000000000000000000000000000000..fc9af9be9d2d8913c521758e5f148846283990c0
--- /dev/null
+++ b/public/emoji/1fa80.svg
@@ -0,0 +1 @@
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><ellipse fill="#BE1931" cx="17.722" cy="21.507" rx="12.917" ry="13.993"/><ellipse fill="#A0041E" cx="15.569" cy="21.507" rx="12.917" ry="13.993"/><path fill="#99AAB5" d="M28.298 13.741c-1.643 0-3.457-.825-5.227-1.629-2.124-.966-4.322-1.966-5.46-1.113l-1.167-1.555c2.06-1.544 4.79-.303 7.431.898 2.023.92 4.117 1.868 5.327 1.263.664-.331 1.155-1.195 1.459-2.566l1.899.422c-.444 2-1.259 3.27-2.49 3.885-.558.278-1.153.395-1.772.395z"/><ellipse fill="#DD2E44" cx="13.417" cy="21.507" rx="12.917" ry="13.993"/><ellipse fill="#EA596E" cx="12.878" cy="21.507" rx="9.149" ry="10.433"/><path fill="#99AAB5" d="M31.611 10.222c-2.41 0-3.889-3.398-3.889-5.833S29.176.5 31.611.5 35.5 1.954 35.5 4.389c0 2.436-1.479 5.833-3.889 5.833zm0-7.778c-1.344 0-1.944.6-1.944 1.944 0 1.878 1.141 3.889 1.944 3.889s1.944-2.011 1.944-3.889c.001-1.344-.599-1.944-1.944-1.944z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1fa81.svg b/public/emoji/1fa81.svg
new file mode 100644
index 0000000000000000000000000000000000000000..fd8605e468471119640e562102e7942e4d98a3f3
--- /dev/null
+++ b/public/emoji/1fa81.svg
@@ -0,0 +1 @@
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#55ACEE" d="M22.45 32.289L.592 18.752 6.55.711l18.042 5.958z"/><path fill="#269" d="M20.543 29.5c-.366 0-.719-.201-.895-.551L6.929 3.687c-.249-.493-.05-1.095.443-1.343.494-.249 1.095-.05 1.343.443l12.72 25.264c.248.493.05 1.094-.444 1.343-.143.072-.297.106-.448.106z"/><path fill="#269" d="M3.12 18.48c-.366 0-.718-.201-.894-.55-.249-.493-.05-1.095.443-1.343l18.947-9.54c.49-.25 1.094-.05 1.343.443.248.493.05 1.095-.443 1.343l-18.947 9.54c-.145.073-.298.107-.449.107z"/><path fill="#3B88C3" d="M27.367 35.339c-2.44 0-4.521-1.268-6.199-3.784-.307-.459-.183-1.08.277-1.387.458-.307 1.079-.183 1.387.277 1.564 2.343 3.359 3.228 5.644 2.781.945-.184 1.793-.98 2.27-2.132.701-1.693.47-3.668-.62-5.282-2.006-2.971-2.777-6.787-2.063-10.21.615-2.956 2.24-5.344 4.698-6.905.466-.295 1.084-.158 1.38.308.297.466.158 1.084-.308 1.38-2.516 1.598-3.462 3.941-3.813 5.625-.604 2.905.055 6.151 1.765 8.683 1.466 2.172 1.769 4.851.811 7.167-.734 1.772-2.131 3.018-3.736 3.329-.513.1-1.009.15-1.493.15z"/><path d="M31.532 30.992c-.781-2.485-2.807-4.482-4.157-2.075-1.342 2.392 1.04 3.456 3.717 2.74.781 2.485 2.807 4.482 4.157 2.075 1.342-2.392-1.039-3.456-3.717-2.74zm-1.425-7.039c2.377 1.066 5.215.876 4.311-1.731-.898-2.592-3.275-1.517-4.517.961-2.377-1.066-5.215-.876-4.311 1.731.898 2.592 3.275 1.517 4.517-.961zm-1.261-6.597c1.355 2.225 3.802 3.676 4.534 1.015.727-2.645-1.84-3.105-4.267-1.766-1.355-2.224-3.802-3.676-4.534-1.015-.728 2.645 1.84 3.105 4.267 1.766zm2.897-6.557c-.132 2.602 1.074 5.178 3.177 3.39 2.089-1.777.226-3.602-2.534-3.861.132-2.602-1.074-5.178-3.177-3.39-2.089 1.777-.225 3.602 2.534 3.861z" fill="#9266CC"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1fa82.svg b/public/emoji/1fa82.svg
new file mode 100644
index 0000000000000000000000000000000000000000..acb16e264e9d91971e121fd9e40c1fdfc3c260b5
--- /dev/null
+++ b/public/emoji/1fa82.svg
@@ -0,0 +1 @@
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><g fill="#66757F"><path d="M11.945 32.885c-.185 0-.363-.103-.45-.28L.652 10.624c-.123-.248-.021-.549.228-.671.25-.122.549-.02.671.228l10.843 21.98c.123.248.021.549-.228.672-.071.035-.147.052-.221.052z"/><path d="M11.944 32.885c-.216 0-.416-.141-.481-.358L4.042 7.612c-.079-.265.072-.545.338-.624.268-.079.545.073.624.338l7.421 24.914c.079.266-.072.545-.338.624-.047.014-.095.021-.143.021z"/><path d="M11.944 32.885c-.259 0-.479-.199-.5-.462L9.214 4.428c-.022-.276.184-.518.46-.54.278-.02.518.184.54.46l2.23 27.995c.022.276-.184.518-.46.54l-.04.002z"/><path d="M11.945 32.885c-.17 0-.336-.087-.43-.243-.143-.237-.066-.546.171-.688l21-12.64c.237-.143.546-.066.688.171s.066.546-.171.688l-21 12.64c-.081.048-.17.072-.258.072z"/><path d="M11.944 32.885c-.141 0-.281-.06-.38-.175-.181-.21-.157-.526.053-.707l19.705-16.957c.21-.18.527-.157.707.053.181.21.157.527-.053.708L12.271 32.763c-.094.082-.21.122-.327.122z"/><path d="M11.944 32.885c-.106 0-.212-.034-.303-.103-.22-.168-.263-.482-.096-.703L28.546 9.726c.168-.221.482-.262.703-.096.221.168.264.482.096.703L12.344 32.687c-.099.129-.249.198-.4.198z"/></g><path fill="#A0041E" d="M33.25 20.343s-3.106-3.669-15.62-7.34S.521 10.741.521 10.741-1.158-4.917 20.982 1.578 33.25 20.343 33.25 20.343z"/><path fill="#F4900C" d="M15.799 29.523c-.095-.427-.489-.521-.633-.196-.144.325-.214 1.356-.214 1.356s-.337-.915-.656-1.37l-.031-.047c-.054-.072-.107-.132-.157-.167l-.02-.013c-.246-.206-.596-.356-1.034-.485s-.813-.191-1.132-.151h-.024c-.061.003-.139.025-.222.056-.018.006-.034.015-.052.022-.514.21-1.292.799-1.292.799s.498-.906.552-1.257c.054-.351-.328-.485-.639-.177-.31.308-1.13 2.047-1.011 2.449.119.402.788.23 1.217.097l.198-.064c-.07.395-.111.863-.02 1.321-.887 1.998-.811 3.811-.411 3.928.616.181 1.137-2.356 1.44-2.267.303.089-.524 2.461.092 2.642.4.117 1.339-1.323 1.671-3.484.324-.337.542-.752.697-1.123.045.055.091.113.132.161.29.344.759.85 1.077.576.318-.272.567-2.179.472-2.606z"/><path fill="#FFAC33" d="M14.531 28.329c-.174.592-.851 1.497-1.758 1.231s-.988-1.393-.815-1.985.511-1.742 1.798-1.365.949 1.527.775 2.119z"/><path fill="#292F33" d="M13.783 26.115c-1.729-.507-2.329 1.149-2.03 1.65.299.502.64.04 1.463.282.823.241.861.814 1.384.553.522-.26.913-1.977-.817-2.485z"/><path fill="#99AAB5" d="M14.665 28.462c-.117.4-.536.629-.936.511-.4-.117-.629-.536-.511-.936.117-.4.472-.411.872-.294.399.118.692.319.575.719z"/><path fill="#88C9F9" d="M14.398 28.425c-.076.258-.347.406-.605.331-.258-.076-.406-.347-.331-.605.076-.258.305-.266.564-.19.258.076.448.206.372.464z"/><path fill="#99AAB5" d="M13.219 28.038c-.117.4-.536.629-.936.511-.4-.117-.629-.536-.511-.936.117-.4.472-.411.872-.294s.693.319.575.719z"/><path fill="#88C9F9" d="M12.952 28.001c-.076.258-.347.406-.605.331-.258-.076-.406-.347-.331-.605.076-.258.305-.266.564-.19s.448.206.372.464z"/><path fill="#FFAC33" d="M13.093 32.695l-2.284-.67c-.14-.041-.22-.188-.179-.328.041-.14.188-.22.328-.179l2.284.67c.14.041.22.188.179.328-.042.14-.188.22-.328.179z"/><path fill="#F4ABBA" d="M7.156 10.73c1.122.135 2.402.336 3.854.626L11.09.012C9.606.046 8.327.244 7.228.565L7.156 10.73zm16.935 4.463c1.379.541 2.564 1.063 3.581 1.555l5.431-8.593c-.752-.864-1.721-1.721-2.951-2.552l-6.061 9.59z"/><path fill="#DD2E44" d="M24.091 15.193l6.061-9.59c-2.163-1.461-5.128-2.84-9.17-4.026S13.7-.05 11.09.011l-.08 11.344c1.907.38 4.095.907 6.62 1.647 2.525.742 4.65 1.481 6.461 2.191z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1fa90.svg b/public/emoji/1fa90.svg
new file mode 100644
index 0000000000000000000000000000000000000000..46a0c53cea531d63a7aa4483666a74149fc67f88
--- /dev/null
+++ b/public/emoji/1fa90.svg
@@ -0,0 +1 @@
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><circle fill="#FFCC4D" cx="18" cy="18" r="10.694"/><path fill="#F4900C" d="M10.229 22.751c-.985.067-1.689-.308-2.203-.917.214.557.487 1.081.788 1.588.771.289 1.591.41 2.54-.272-.463-.227-.88-.415-1.125-.399zM23.086 8.608c.045.328-.187.5-.75.363-.955-.232-1.793.776-2.274 1.619-.947 1.657-4.854 3.524-4.857 2.087-.001-.679-3.452.843-3.893.161-.417-.644-1.663-.396-1.921-1.168-1.135 1.544-1.869 3.402-2.04 5.422.377.718.864 1.282 1.352 1.526.66.33 3.726 1.528 4.174.763.747-1.276 5.229-.373 5.122-1.044-.205-1.285 2.427-.23 3.373-1.886.482-.843 1.533-1.49 2.489-1.258 1.116.271 2.493-1.643 2.389-3.996-.871-1.057-1.951-1.931-3.164-2.589zm3.181 16.175c-.338.166-.671.293-.975.326-2.248.243-2.734 2.005-4.242 1.703-.777-.156-1.837 1.214-3.05 1.297-.611.042-1.489.141-2.386.308.768.175 1.565.277 2.386.277 3.331 0 6.305-1.523 8.267-3.911z"/><path fill="#E85E00" d="M23.225 8.674c.953.535 1.811 1.213 2.554 2.003 2.491-.157 4.01.429 3.883 1.777-.066.705-.585 1.542-1.431 2.435-2.108 2.221-6.309 4.796-11.07 6.602-3.309 1.255-6.258 1.9-8.366 1.934-2.145.035-3.418-.563-3.302-1.803.076-.815.752-1.806 1.852-2.857-.019-.255-.039-.507-.039-.765 0-.848.109-1.669.296-2.461C3.3 18.522.5 21.807.5 24.369c0 3.487 5.162 4.558 12.275 2.957 1.65-.371 3.405-.886 5.225-1.549 3.9-1.419 7.489-3.3 10.399-5.317 4.301-2.983 7.101-6.268 7.101-8.83 0-3.486-5.162-4.558-12.275-2.956z"/><path fill="#F4900C" d="M6.356 18.051c-.742.711-1.369 1.524-1.88 2.382-.49.852-.907 1.811-.844 2.671.035.856.682 1.366 1.558 1.602.874.227 1.845.287 2.834.229 1.962-.089 3.93-.415 5.841-.965 1.924-.505 3.791-1.225 5.615-2.036 3.648-1.628 7.068-3.789 10.132-6.382.368-.333.771-.649 1.124-.986.333-.337.647-.713.91-1.097.522-.768.826-1.667.335-2.352-.49-.696-1.495-1.075-2.453-1.271-.981-.187-2.01-.23-3.03-.111.992-.265 2.037-.395 3.088-.316 1.03.092 2.172.3 3.008 1.221.41.457.599 1.145.524 1.746-.057.611-.293 1.15-.563 1.635-.278.485-.59.925-.945 1.348-.352.404-.709.777-1.072 1.163-2.932 2.994-6.44 5.414-10.261 7.159-3.816 1.72-7.974 2.911-12.261 2.754-1.056-.04-2.157-.133-3.236-.548-.534-.209-1.082-.517-1.5-1.016-.429-.49-.635-1.171-.589-1.774.098-1.213.704-2.152 1.349-2.976.664-.819 1.447-1.525 2.316-2.08z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1fa91.svg b/public/emoji/1fa91.svg
new file mode 100644
index 0000000000000000000000000000000000000000..8db580193f88211532b9a0ebe5bab679ed32575d
--- /dev/null
+++ b/public/emoji/1fa91.svg
@@ -0,0 +1 @@
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#A4523A" d="M12 20c-1.1 0-2 .9-2 2v10c0 1.1.9 2 2 2s2-.9 2-2V22c0-1.1-.9-2-2-2zm18 0c-1.1 0-2 .9-2 2v10c0 1.1.9 2 2 2s2-.9 2-2V22c0-1.1-.9-2-2-2z"/><path fill="#C1694F" d="M13 2h16v8H13z"/><path fill="#C1694F" d="M16 9h2v13h-2zm4 0h2v13h-2zm4 0h2v13h-2zM7 23c-1.1 0-2 .9-2 2v9c0 1.1.9 2 2 2s2-.9 2-2v-9c0-1.1-.9-2-2-2z"/><path fill="#C1694F" d="M25 21c-1.1 0-2 .9-2 2v11c0 1.1.9 2 2 2s2-.9 2-2V23c0-1.1-.9-2-2-2zM12 0c-1.1 0-2 .9-2 2v20h4V2c0-1.1-.9-2-2-2zm18 0c-1.1 0-2 .9-2 2v20h4V2c0-1.1-.9-2-2-2z"/><path fill="#A4523A" d="M14 2h1v8h-1zm14 8h-1V2h1z"/><path fill="#D99E82" d="M30.769 20H10.341c-.223 0-.442.061-.633.175l-5.954 3.041s22.726 2.418 24.726 2.418l3.029-2.265c.309-.232.491-.597.491-.985v-1.153c0-.68-.551-1.231-1.231-1.231z"/><path fill="#A4523A" d="M16 10h2v1h-2zM5 26h4v1H5zm18 0h4v1h-4zm-3-16h2v1h-2zm4 0h2v1h-2z"/><path fill="#C1694F" d="M27.44 26H4.56C3.698 26 3 25.328 3 24.5S3.698 23 4.56 23h22.88c.862 0 1.56.672 1.56 1.5s-.698 1.5-1.56 1.5z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1fa92.svg b/public/emoji/1fa92.svg
new file mode 100644
index 0000000000000000000000000000000000000000..3b261c90f7ae70094b70abdec682eb9cc415e1b0
--- /dev/null
+++ b/public/emoji/1fa92.svg
@@ -0,0 +1 @@
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#77B255" d="M8.53 21.304L21.304 8.53c1.451-1.451 1.451-3.825 0-5.276l-1.666-1.666c-1.451-1.451-3.825-1.451-5.276 0L1.588 14.362c-1.451 1.451-1.451 3.825 0 5.276l1.666 1.666c1.451 1.45 3.825 1.45 5.276 0z"/><path fill="#77B255" d="M34.355 34.355c1.145-1.145 1.145-3.02 0-4.165L14.917 10.752c-1.145-1.145-3.02-1.145-4.165 0s-1.145 3.02 0 4.165L30.19 34.355c1.145 1.145 3.019 1.145 4.165 0z"/><path fill="#5C913B" d="M24.551 18.998l9.803 9.803c1.527 1.527 1.527 4.026 0 5.554-1.527 1.527-4.026 1.527-5.554 0l-9.803-9.803c-1.534-1.534-1.534-4.02 0-5.554 1.534-1.534 4.021-1.534 5.554 0z"/><path fill="#E1E8ED" d="M5.198 17.694L17.694 5.198c.382-.382.382-1.007 0-1.388-.382-.382-1.007-.382-1.388 0L3.81 16.305c-.382.382-.382 1.007 0 1.388.381.382 1.006.382 1.388.001zm2.083 2.082L19.776 7.281c.382-.382.382-1.007 0-1.388-.382-.382-1.007-.382-1.388 0L5.892 18.388c-.382.382-.382 1.007 0 1.388.382.382 1.007.382 1.389 0z"/><path fill="#5C913B" d="M18.388 14.223l-4.165 4.166-1.39-1.39L17 12.835z"/><path fill="#3E721D" d="M23.594 25.677l2.083-2.083c.573-.573.573-1.51 0-2.083-.573-.573-1.51-.573-2.083 0l-2.083 2.083c-.573.573-.573 1.51 0 2.083.574.573 1.511.573 2.083 0zm3.471 3.471l2.083-2.083c.573-.573.573-1.51 0-2.083-.573-.573-1.51-.573-2.083 0l-2.083 2.083c-.573.573-.573 1.51 0 2.083.574.573 1.511.573 2.083 0zm3.471 3.471l2.083-2.083c.573-.573.573-1.51 0-2.083-.573-.573-1.51-.573-2.083 0l-2.083 2.083c-.573.573-.573 1.51 0 2.083.574.573 1.511.573 2.083 0z"/><path fill="#A6D388" d="M3.472 15.255L15.255 3.472c.58-.58.58-1.521 0-2.101l-.338-.338L1.033 14.917l.338.338c.58.58 1.521.58 2.101 0z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1fa93.svg b/public/emoji/1fa93.svg
new file mode 100644
index 0000000000000000000000000000000000000000..f886dfaee5e433ac118ed1d0d79d058780ea72ac
--- /dev/null
+++ b/public/emoji/1fa93.svg
@@ -0,0 +1 @@
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#F4900C" d="M35.22 30.741l-.024.024c-.97.97-2.542.97-3.511 0L7.835 6.915c-.582-.582-.582-1.525 0-2.107l1.429-1.429c.582-.582 1.525-.582 2.107 0l23.85 23.85c.969.97.969 2.542-.001 3.512z"/><path fill="#66757F" d="M17.765 6.946L14.229 3.41c-.586-.586-1.535-.586-2.121 0L8.573 6.946c-2.128 2.092-3.85 3.015-6.055 3.056-.171 1.573.665 5.193 1.967 6.652 1.692 1.896 4.545 2.495 7.223 2.454-.134-2.363.437-4.422 2.521-6.506l3.535-3.536c.587-.585.587-1.535.001-2.12z"/><path fill="#CCD6DD" d="M2.518 10.002C1.767 10.016.962 9.93.064 9.75c-.707 4.95 7.071 12.728 12.021 12.021-.193-.937-.328-1.819-.376-2.663-4.418-1.409-8.107-5.072-9.191-9.106z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1fa94.svg b/public/emoji/1fa94.svg
new file mode 100644
index 0000000000000000000000000000000000000000..34c5f381d69d9b0589a4b3b76f1d8d69cf7a7e96
--- /dev/null
+++ b/public/emoji/1fa94.svg
@@ -0,0 +1 @@
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#BE1931" d="M33.139 21.464c.719.341.364 1.157 0 1.865-1.755 3.412-11.661 12.123-19.776 12.123C6.259 35.452.5 29.806.5 23.329c0-6.477 7.91-3.098 13.056-6.528 1.715 0 1.865-3.73 19.583 4.663z"/><path fill="#7F031E" d="M31.274 21.464c3.129 2.014-11.033 7.027-18.138 7.027C6.032 28.491.5 25.982.5 22.352c0-3.63 5.759-6.573 12.863-6.573 7.105 0 12.316 2.085 17.911 5.685z"/><path fill="#FFAC33" d="M29.409 22.396c2.655 1.8-8.492 6.201-16.046 6.201-7.03 0-11.35-2.432-11.35-5.432 0-3 5.082-5.432 11.35-5.432s12.316 2.134 16.046 4.663z"/><path d="M24.745 24.262c-.418 0-.798-.282-.904-.706-.124-.499.178-1.005.679-1.131 3.698-.925 5.061-1.766 5.849-4.917.125-.5.632-.803 1.131-.679.499.125.803.631.679 1.131-1.107 4.428-3.685 5.393-7.207 6.274-.076.019-.152.028-.227.028z"/><path fill="#F4900C" d="M26.75 12.119c0 4.296 2.496 5.833 4.375 5.833s4.375-1.538 4.375-5.833c0-4.296-1.944-8.651-4.375-11.567-2.431 2.916-4.375 7.271-4.375 11.567z"/><ellipse fill="#FFCC4D" cx="31.125" cy="13.577" rx="2.431" ry="4.375"/><ellipse fill="#FFCC4D" cx="12.167" cy="22.813" rx="6.806" ry="2.917"/></svg>
\ No newline at end of file
diff --git a/public/emoji/1fa95.svg b/public/emoji/1fa95.svg
new file mode 100644
index 0000000000000000000000000000000000000000..da6e25d06b84f7f2d4991e48d951a9b3a0e7d119
--- /dev/null
+++ b/public/emoji/1fa95.svg
@@ -0,0 +1 @@
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><circle fill="#67757F" cx="10.047" cy="16.953" r="1"/><circle fill="#67757F" cx="1.047" cy="25.953" r="1"/><circle fill="#67757F" cx="19.047" cy="25.953" r="1"/><circle fill="#67757F" cx="10.047" cy="34.953" r="1"/><circle fill="#67757F" cx="3.547" cy="19.828" r="1"/><circle fill="#67757F" cx="16.214" cy="32.495" r="1"/><path fill="#292F33" d="M32.339 5.338l-15.45 17.334-3.561-3.56L30.66 3.66z"/><ellipse transform="rotate(-52.019 10.047 25.953)" fill="#F18F26" cx="10.047" cy="25.953" rx="9" ry="9"/><ellipse transform="rotate(-52.019 10.047 25.953)" fill="#F5F8FA" cx="10.047" cy="25.953" rx="7" ry="7"/><path fill="#CCD6DD" d="M4.628 29.934L28.8 5.807l.53.531L5.16 30.466zm.869.87L29.67 6.676l.531.531L6.028 31.335z"/><path fill="#292F33" d="M2.047 31.953l2-3s1 0 2 1 1 2 1 2l-3 2-2-2z"/><path fill="#67757F" d="M9.097 30.903c-.256 0-.512-.098-.707-.293l-3-3c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3 3c.391.391.391 1.023 0 1.414-.196.196-.452.293-.707.293z"/><path fill="#F18F26" d="M34.704 2.685c.438.438.438 1.155-.001 1.592l-3.186 3.186c-.438.438-1.155.438-1.593-.001l-1.39-1.389c-.438-.438-.438-1.155.001-1.592l3.187-3.186c.438-.438 1.155-.438 1.593 0l1.389 1.39z"/><circle fill="#642116" cx="33" cy="8" r="1"/><circle fill="#642116" cx="35" cy="6" r="1"/><circle fill="#642116" cx="28" cy="3" r="1"/><circle fill="#642116" cx="30" cy="1" r="1"/></svg>
\ No newline at end of file
diff --git a/public/emoji/2122.svg b/public/emoji/2122.svg
index 00d47725046c1f02fccd4c14c13aed2e134df19f..1706c28b175dd11307703e29c21381e969328a57 100644
--- a/public/emoji/2122.svg
+++ b/public/emoji/2122.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path d="M5.208 12.674H2.374c-1.248 0-1.768-.91-1.768-1.794 0-.91.65-1.794 1.768-1.794h9.568c1.118 0 1.768.884 1.768 1.794 0 .884-.52 1.794-1.768 1.794H9.108v13.053c0 1.299-.832 2.027-1.95 2.027-1.118 0-1.95-.729-1.95-2.027V12.674zm11.258-1.742c.156-.936 1.17-2.002 2.548-2.002 1.301 0 2.314.937 2.601 1.872l3.066 10.296h.053l3.068-10.296c.285-.936 1.301-1.872 2.6-1.872 1.379 0 2.393 1.066 2.549 2.002l2.418 14.507c.025.156.025.312.025.443 0 1.143-.832 1.871-1.871 1.871-1.326 0-1.848-.598-2.029-1.82l-1.533-10.581h-.053l-3.119 10.894c-.182.623-.676 1.508-2.08 1.508s-1.899-.885-2.08-1.508l-3.121-10.894h-.051l-1.535 10.581c-.182 1.223-.702 1.82-2.028 1.82-1.04 0-1.872-.729-1.872-1.871 0-.131 0-.287.026-.443l2.418-14.507z" fill="#292F33"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path d="M5.208 12.674H2.374c-1.248 0-1.768-.91-1.768-1.794 0-.91.65-1.794 1.768-1.794h9.568c1.118 0 1.768.884 1.768 1.794 0 .884-.52 1.794-1.768 1.794H9.108v13.053c0 1.299-.832 2.027-1.95 2.027-1.118 0-1.95-.729-1.95-2.027V12.674zm11.258-1.742c.156-.936 1.17-2.002 2.548-2.002 1.301 0 2.314.937 2.601 1.872l3.066 10.296h.053l3.068-10.296c.285-.936 1.301-1.872 2.6-1.872 1.379 0 2.393 1.066 2.549 2.002l2.418 14.507c.025.156.025.312.025.443 0 1.143-.832 1.871-1.871 1.871-1.326 0-1.848-.598-2.029-1.82l-1.533-10.581h-.053l-3.119 10.894c-.182.623-.676 1.508-2.08 1.508s-1.899-.885-2.08-1.508l-3.121-10.894h-.051l-1.535 10.581c-.182 1.223-.702 1.82-2.028 1.82-1.04 0-1.872-.729-1.872-1.871 0-.131 0-.287.026-.443l2.418-14.507z" fill="#31373D"/></svg>
\ No newline at end of file
diff --git a/public/emoji/231a.svg b/public/emoji/231a.svg
index e36b3f5b3db91cec7014f2daaf326686d2851641..53e6f6efc7a01338c29d7539cb13cb40f12820f5 100644
--- a/public/emoji/231a.svg
+++ b/public/emoji/231a.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#292F33" d="M25 32c0 2.209-1.791 4-4 4h-6c-2.209 0-4-1.791-4-4V4c0-2.209 1.791-4 4-4h6c2.209 0 4 1.791 4 4v28z"/><path fill="#99AAB5" d="M32 18c0-1.104-.896-2-2-2h-1c-1.104 0-2 .896-2 2s.896 2 2 2h1c1.104 0 2-.896 2-2z"/><path fill="#CCD6DD" d="M6 18c0-6.627 5.373-12 12-12 6.628 0 12 5.373 12 12s-5.372 12-12 12c-6.627 0-12-5.373-12-12z"/><path fill="#F5F8FA" d="M10 18c0-4.418 3.582-8 8-8 4.419 0 8 3.582 8 8s-3.581 8-8 8c-4.418 0-8-3.582-8-8z"/><path fill="#66757F" d="M23 22c-.175 0-.353-.046-.514-.143l-5-3c-.301-.18-.486-.505-.486-.857v-7c0-.552.448-1 1-1s1 .448 1 1v6.434l4.516 2.708c.474.284.627.898.343 1.372-.188.313-.519.486-.859.486z"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#31373D" d="M25 32c0 2.209-1.791 4-4 4h-6c-2.209 0-4-1.791-4-4V4c0-2.209 1.791-4 4-4h6c2.209 0 4 1.791 4 4v28z"/><path fill="#99AAB5" d="M32 18c0-1.104-.896-2-2-2h-1c-1.104 0-2 .896-2 2s.896 2 2 2h1c1.104 0 2-.896 2-2z"/><path fill="#CCD6DD" d="M6 18c0-6.627 5.373-12 12-12 6.628 0 12 5.373 12 12s-5.372 12-12 12c-6.627 0-12-5.373-12-12z"/><path fill="#F5F8FA" d="M10 18c0-4.418 3.582-8 8-8 4.419 0 8 3.582 8 8s-3.581 8-8 8c-4.418 0-8-3.582-8-8z"/><path fill="#66757F" d="M23 22c-.175 0-.353-.046-.514-.143l-5-3c-.301-.18-.486-.505-.486-.857v-7c0-.552.448-1 1-1s1 .448 1 1v6.434l4.516 2.708c.474.284.627.898.343 1.372-.188.313-.519.486-.859.486z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/25aa.svg b/public/emoji/25aa.svg
index aa954224570f8bbc9f057393366b5bdae88c79f1..cb4f63bc73645eb5a9e62c9a6314069ce4ad6673 100644
--- a/public/emoji/25aa.svg
+++ b/public/emoji/25aa.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#292F33" d="M25 24c0 .553-.447 1-1 1H12c-.552 0-1-.447-1-1V12c0-.552.448-1 1-1h12c.553 0 1 .448 1 1v12z"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#31373D" d="M25 24c0 .553-.447 1-1 1H12c-.552 0-1-.447-1-1V12c0-.552.448-1 1-1h12c.553 0 1 .448 1 1v12z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/25fc.svg b/public/emoji/25fc.svg
index 9a19ab57826400f8c026764ae696ccffafa4d1a1..b91ca8056fa8eca19aa39d04b5ac7d5dd7c158aa 100644
--- a/public/emoji/25fc.svg
+++ b/public/emoji/25fc.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#292F33" d="M33 30c0 1.657-1.343 3-3 3H6c-1.657 0-3-1.343-3-3V6c0-1.657 1.343-3 3-3h24c1.657 0 3 1.343 3 3v24z"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#31373D" d="M33 30c0 1.657-1.343 3-3 3H6c-1.657 0-3-1.343-3-3V6c0-1.657 1.343-3 3-3h24c1.657 0 3 1.343 3 3v24z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/25fe.svg b/public/emoji/25fe.svg
index 4185a7297916c4ca010ee0e77cdf8bf182f9c38a..9c0abf0f937446e2b865990087fbdcc41c0d39ee 100644
--- a/public/emoji/25fe.svg
+++ b/public/emoji/25fe.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#292F33" d="M29 27c0 1.104-.896 2-2 2H9c-1.104 0-2-.896-2-2V9c0-1.104.896-2 2-2h18c1.104 0 2 .896 2 2v18z"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#31373D" d="M29 27c0 1.104-.896 2-2 2H9c-1.104 0-2-.896-2-2V9c0-1.104.896-2 2-2h18c1.104 0 2 .896 2 2v18z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/261d-1f3fb.svg b/public/emoji/261d-1f3fb.svg
index ac7d39521525fa04e45bdc31789ed65122371bf1..854b494b3d5e8a5c641eaf0aad1249d9c8fb7d25 100644
--- a/public/emoji/261d-1f3fb.svg
+++ b/public/emoji/261d-1f3fb.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#D89882" d="M15.94 15.838c-.01-1.379 1.108-2.505 2.488-2.515 1.379-.01 2.423 1.1 2.433 2.479l-.006 4.303s1.844 11.797-5.428 11.797-8.414-8.673-8.414-8.673l-.025-2.241c-.01-1.29 8.952-5.15 8.952-5.15z"/><path fill="#F7DECE" d="M20.936 16.957v-2.044c-.008-1.103-.909-1.991-2.012-1.983-1.103.008-1.991.909-1.983 2.012l.012 2.016h3.983zm2.593 2.684c-1.107 0-2.013-.906-2.013-2.013V4.712c0-1.107.906-2.013 2.013-2.013 1.107 0 2.013.906 2.013 2.013v12.916c0 1.107-.906 2.013-2.013 2.013zM9 23c-1.107 0-2.013-.906-2.013-2.013V17.01c0-1.107.906-2.013 2.013-2.013 1.107 0 2.013.906 2.013 2.013v3.977C11.012 22.094 10.106 23 9 23z"/><path fill="#D89882" d="M13.193 22.033c-1.2 0-2.181-.982-2.181-2.181V15.54c0-1.2.982-2.181 2.181-2.181 1.2 0 2.181.982 2.181 2.181v4.311c0 1.2-.981 2.182-2.181 2.182zm14.773-1.889c-.013-1.814-1.494-3.274-3.308-3.261h-7.87l.013 6.992h7.907c1.814-.013 3.274-1.494 3.261-3.308l-.003-.423z"/><path fill="#F7DECE" d="M13.93 12.965c1.103-.008 2.004.88 2.012 1.983v2.793c-.605.553-.969 1.324-.963 2.209.005.752.297 1.429.758 1.951-.336.619-.982 1.047-1.736 1.052-1.103.008-2.004-.88-2.012-1.983l-.043-5.993c-.007-1.103.881-2.004 1.984-2.012z"/><path fill="#F7DECE" d="M27.873 19.273c-.39-1.145-1.422-1.403-1.921-1.399h-7.961c-1.107 0-2.013.906-2.013 2.013s.906 2.013 2.013 2.013l5.493-.003c.276-.002.501.229.503.505.002.276-.22.522-.496.522h-.125c-2.685 0-4.847 3.153-4.819 7.008.002.276-.22.482-.496.484-.276.002-.501-.22-.503-.496-.022-3.006 1.187-5.637 2.983-7.013l-2.534.018c-.999.007-1.273-.278-1.475-.391l.003.003c-.145.232-.922 1.416-2.516 1.416-1.723 0-2.37-1.154-2.494-1.335-.519.799-1.443 1.306-2.516 1.306-.714 0-1.529-.188-1.987-.731.146 6.662 5.541 11.759 12.07 11.712 5.708-.041 10.362-5.069 10.328-9.871-.098-2.659-1.537-5.761-1.537-5.761z"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#E0AA94" d="M26.992 19.016c-.255-.255-.799-.611-1.44-.962l-1.911-2-2.113 2h-.58l-2.509-3.634c-1.379.01-2.497 1.136-2.487 2.515l-3.556-2.112c-.817.364-1.389 1.18-1.389 2.133v.96l-4 4.168.016 2.185 9.984 10.729S27.525 19.71 27.55 19.74c-.129-.223-.513-.702-.558-.724z"/><g fill="#F7DECE"><path d="M25.552 5.81c0-1.107-.906-2.013-2.013-2.013-1.107 0-2.013.906-2.013 2.013v12.245h4.025V5.81zm-4.605 12.244V16.01c-.008-1.103-.909-1.991-2.012-1.983-1.103.008-1.991.909-1.983 2.012l.012 2.016h3.983zM8.916 16h.168c1.059 0 1.916.858 1.916 1.917v4.166C11 23.142 10.143 24 9.084 24h-.168C7.857 24 7 23.142 7 22.083v-4.166C7 16.858 7.857 16 8.916 16zm6.918 2.96l-.056.062C15.304 19.551 15 20.233 15 21c0 .063.013.123.018.185.044.678.308 1.292.728 1.774-.071.129-.163.243-.259.353-.366.417-.89.688-1.487.688-1.104 0-2-.896-2-2v-6c0-.441.147-.845.389-1.176.364-.497.947-.824 1.611-.824 1.104 0 2 .896 2 2v2.778c-.061.055-.109.123-.166.182z"/><path d="M9.062 25c1.024 0 1.925-.526 2.45-1.322.123.183.271.346.431.497 1.185 1.115 3.034 1.044 4.167-.086.152-.152.303-.305.419-.488l-.003-.003C16.727 23.713 17 24 18 24h2.537c-.37.279-.708.623-1.024 1-1.228 1.467-2.013 3.606-2.013 6 0 .276.224.5.5.5s.5-.224.5-.5c0-2.548.956-4.775 2.377-6 .732-.631 1.584-1 2.498-1 .713.079.847-1 .125-1H18c-1.104 0-2-.896-2-2s.896-2 2-2h8c.858 0 1.66.596 1.913 1.415L29 24c.103.335.479 1.871.411 2.191C29.411 31 24.715 36 19 36c-6.537 0-11.844-5.231-11.986-11.734l.014.01c.515.445 1.176.724 1.91.724h.124z"/></g></svg>
\ No newline at end of file
diff --git a/public/emoji/261d-1f3fc.svg b/public/emoji/261d-1f3fc.svg
index 5ac3bbcfb183db9d8dab8a79d5731262bc8f0e14..76dac4ee67cf61038935e561ecffd20b4c19faf4 100644
--- a/public/emoji/261d-1f3fc.svg
+++ b/public/emoji/261d-1f3fc.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#C68F6A" d="M15.94 15.838c-.01-1.379 1.108-2.505 2.488-2.515 1.379-.01 2.423 1.1 2.433 2.479l-.006 4.303s1.844 11.797-5.428 11.797-8.414-8.673-8.414-8.673l-.025-2.241c-.01-1.29 8.952-5.15 8.952-5.15z"/><path fill="#F3D2A2" d="M20.936 16.957v-2.044c-.008-1.103-.909-1.991-2.012-1.983-1.103.008-1.991.909-1.983 2.012l.012 2.016h3.983zm2.593 2.684c-1.107 0-2.013-.906-2.013-2.013V4.712c0-1.107.906-2.013 2.013-2.013 1.107 0 2.013.906 2.013 2.013v12.916c0 1.107-.906 2.013-2.013 2.013zM9 23c-1.107 0-2.013-.906-2.013-2.013V17.01c0-1.107.906-2.013 2.013-2.013 1.107 0 2.013.906 2.013 2.013v3.977C11.012 22.094 10.106 23 9 23z"/><path fill="#C68F6A" d="M13.193 22.033c-1.2 0-2.181-.982-2.181-2.181V15.54c0-1.2.982-2.181 2.181-2.181 1.2 0 2.181.982 2.181 2.181v4.311c0 1.2-.981 2.182-2.181 2.182zm14.773-1.889c-.013-1.814-1.494-3.274-3.308-3.261h-7.87l.013 6.992h7.907c1.814-.013 3.274-1.494 3.261-3.308l-.003-.423z"/><path fill="#F3D2A2" d="M13.93 12.965c1.103-.008 2.004.88 2.012 1.983v2.793c-.605.553-.969 1.324-.963 2.209.005.752.297 1.429.758 1.951-.336.619-.982 1.047-1.736 1.052-1.103.008-2.004-.88-2.012-1.983l-.043-5.993c-.007-1.103.881-2.004 1.984-2.012z"/><path fill="#F3D2A2" d="M27.873 19.273c-.39-1.145-1.422-1.403-1.921-1.399h-7.961c-1.107 0-2.013.906-2.013 2.013s.906 2.013 2.013 2.013l5.493-.003c.276-.002.501.229.503.505.002.276-.22.522-.496.522h-.125c-2.685 0-4.847 3.153-4.819 7.008.002.276-.22.482-.496.484-.276.002-.501-.22-.503-.496-.022-3.006 1.187-5.637 2.983-7.013l-2.534.018c-.999.007-1.273-.278-1.475-.391l.003.003c-.145.232-.922 1.416-2.516 1.416-1.723 0-2.37-1.154-2.494-1.335-.519.799-1.443 1.306-2.516 1.306-.714 0-1.529-.188-1.987-.731.146 6.662 5.541 11.759 12.07 11.712 5.708-.041 10.362-5.069 10.328-9.871-.098-2.659-1.537-5.761-1.537-5.761z"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#D2A077" d="M26.992 19.016c-.255-.255-.799-.611-1.44-.962l-1.911-2-2.113 2h-.58l-2.509-3.634c-1.379.01-2.497 1.136-2.487 2.515l-3.556-2.112c-.817.364-1.389 1.18-1.389 2.133v.96l-4 4.168.016 2.185 9.984 10.729S27.525 19.71 27.55 19.74c-.129-.223-.513-.702-.558-.724z"/><g fill="#F3D2A2"><path d="M25.552 5.81c0-1.107-.906-2.013-2.013-2.013-1.107 0-2.013.906-2.013 2.013v12.245h4.025V5.81zm-4.605 12.244V16.01c-.008-1.103-.909-1.991-2.012-1.983-1.103.008-1.991.909-1.983 2.012l.012 2.016h3.983zM8.916 16h.168c1.059 0 1.916.858 1.916 1.917v4.166C11 23.142 10.143 24 9.084 24h-.168C7.857 24 7 23.142 7 22.083v-4.166C7 16.858 7.857 16 8.916 16zm6.918 2.96l-.056.062C15.304 19.551 15 20.233 15 21c0 .063.013.123.018.185.044.678.308 1.292.728 1.774-.071.129-.163.243-.259.353-.366.417-.89.688-1.487.688-1.104 0-2-.896-2-2v-6c0-.441.147-.845.389-1.176.364-.497.947-.824 1.611-.824 1.104 0 2 .896 2 2v2.778c-.061.055-.109.123-.166.182z"/><path d="M9.062 25c1.024 0 1.925-.526 2.45-1.322.123.183.271.346.431.497 1.185 1.115 3.034 1.044 4.167-.086.152-.152.303-.305.419-.488l-.003-.003C16.727 23.713 17 24 18 24h2.537c-.37.279-.708.623-1.024 1-1.228 1.467-2.013 3.606-2.013 6 0 .276.224.5.5.5s.5-.224.5-.5c0-2.548.956-4.775 2.377-6 .732-.631 1.584-1 2.498-1 .713.079.847-1 .125-1H18c-1.104 0-2-.896-2-2s.896-2 2-2h8c.858 0 1.66.596 1.913 1.415L29 24c.103.335.479 1.871.411 2.191C29.411 31 24.715 36 19 36c-6.537 0-11.844-5.231-11.986-11.734l.014.01c.515.445 1.176.724 1.91.724h.124z"/></g></svg>
\ No newline at end of file
diff --git a/public/emoji/261d-1f3fd.svg b/public/emoji/261d-1f3fd.svg
index 0b42896598e9f7655f6621e6a3eec7830f13ff59..e03f60e18b375022ba7eee18cbfdd2ba7e64bec4 100644
--- a/public/emoji/261d-1f3fd.svg
+++ b/public/emoji/261d-1f3fd.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#AA8052" d="M15.94 15.838c-.01-1.379 1.108-2.505 2.488-2.515 1.379-.01 2.423 1.1 2.433 2.479l-.006 4.303s1.844 11.797-5.428 11.797-8.414-8.673-8.414-8.673l-.025-2.241c-.01-1.29 8.952-5.15 8.952-5.15z"/><path fill="#D5AB88" d="M20.936 16.957v-2.044c-.008-1.103-.909-1.991-2.012-1.983-1.103.008-1.991.909-1.983 2.012l.012 2.016h3.983zm2.593 2.684c-1.107 0-2.013-.906-2.013-2.013V4.712c0-1.107.906-2.013 2.013-2.013 1.107 0 2.013.906 2.013 2.013v12.916c0 1.107-.906 2.013-2.013 2.013zM9 23c-1.107 0-2.013-.906-2.013-2.013V17.01c0-1.107.906-2.013 2.013-2.013 1.107 0 2.013.906 2.013 2.013v3.977C11.012 22.094 10.106 23 9 23z"/><path fill="#AA8052" d="M13.193 22.033c-1.2 0-2.181-.982-2.181-2.181V15.54c0-1.2.982-2.181 2.181-2.181 1.2 0 2.181.982 2.181 2.181v4.311c0 1.2-.981 2.182-2.181 2.182zm14.773-1.889c-.013-1.814-1.494-3.274-3.308-3.261h-7.87l.013 6.992h7.907c1.814-.013 3.274-1.494 3.261-3.308l-.003-.423z"/><path fill="#D5AB88" d="M13.93 12.965c1.103-.008 2.004.88 2.012 1.983v2.793c-.605.553-.969 1.324-.963 2.209.005.752.297 1.429.758 1.951-.336.619-.982 1.047-1.736 1.052-1.103.008-2.004-.88-2.012-1.983l-.043-5.993c-.007-1.103.881-2.004 1.984-2.012z"/><path fill="#D5AB88" d="M27.873 19.273c-.39-1.145-1.422-1.403-1.921-1.399h-7.961c-1.107 0-2.013.906-2.013 2.013s.906 2.013 2.013 2.013l5.493-.003c.276-.002.501.229.503.505.002.276-.22.522-.496.522h-.125c-2.685 0-4.847 3.153-4.819 7.008.002.276-.22.482-.496.484-.276.002-.501-.22-.503-.496-.022-3.006 1.187-5.637 2.983-7.013l-2.534.018c-.999.007-1.273-.278-1.475-.391l.003.003c-.145.232-.922 1.416-2.516 1.416-1.723 0-2.37-1.154-2.494-1.335-.519.799-1.443 1.306-2.516 1.306-.714 0-1.529-.188-1.987-.731.146 6.662 5.541 11.759 12.07 11.712 5.708-.041 10.362-5.069 10.328-9.871-.098-2.659-1.537-5.761-1.537-5.761z"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#B78B60" d="M26.992 19.016c-.255-.255-.799-.611-1.44-.962l-1.911-2-2.113 2h-.58l-2.509-3.634c-1.379.01-2.497 1.136-2.487 2.515l-3.556-2.112c-.817.364-1.389 1.18-1.389 2.133v.96l-4 4.168.016 2.185 9.984 10.729S27.525 19.71 27.55 19.74c-.129-.223-.513-.702-.558-.724z"/><g fill="#D4AB88"><path d="M25.552 5.81c0-1.107-.906-2.013-2.013-2.013-1.107 0-2.013.906-2.013 2.013v12.245h4.025V5.81zm-4.605 12.244V16.01c-.008-1.103-.909-1.991-2.012-1.983-1.103.008-1.991.909-1.983 2.012l.012 2.016h3.983zM8.916 16h.168c1.059 0 1.916.858 1.916 1.917v4.166C11 23.142 10.143 24 9.084 24h-.168C7.857 24 7 23.142 7 22.083v-4.166C7 16.858 7.857 16 8.916 16zm6.918 2.96l-.056.062C15.304 19.551 15 20.233 15 21c0 .063.013.123.018.185.044.678.308 1.292.728 1.774-.071.129-.163.243-.259.353-.366.417-.89.688-1.487.688-1.104 0-2-.896-2-2v-6c0-.441.147-.845.389-1.176.364-.497.947-.824 1.611-.824 1.104 0 2 .896 2 2v2.778c-.061.055-.109.123-.166.182z"/><path d="M9.062 25c1.024 0 1.925-.526 2.45-1.322.123.183.271.346.431.497 1.185 1.115 3.034 1.044 4.167-.086.152-.152.303-.305.419-.488l-.003-.003C16.727 23.713 17 24 18 24h2.537c-.37.279-.708.623-1.024 1-1.228 1.467-2.013 3.606-2.013 6 0 .276.224.5.5.5s.5-.224.5-.5c0-2.548.956-4.775 2.377-6 .732-.631 1.584-1 2.498-1 .713.079.847-1 .125-1H18c-1.104 0-2-.896-2-2s.896-2 2-2h8c.858 0 1.66.596 1.913 1.415L29 24c.103.335.479 1.871.411 2.191C29.411 31 24.715 36 19 36c-6.537 0-11.844-5.231-11.986-11.734l.014.01c.515.445 1.176.724 1.91.724h.124z"/></g></svg>
\ No newline at end of file
diff --git a/public/emoji/261d-1f3fe.svg b/public/emoji/261d-1f3fe.svg
index 026dd7182560c69a3d349828297219cb79c64551..a83945629b678ac61cfb31a8db7121805aba54cf 100644
--- a/public/emoji/261d-1f3fe.svg
+++ b/public/emoji/261d-1f3fe.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#845636" d="M15.94 15.838c-.01-1.379 1.108-2.505 2.488-2.515 1.379-.01 2.423 1.1 2.433 2.479l-.006 4.303s1.844 11.797-5.428 11.797-8.414-8.673-8.414-8.673l-.025-2.241c-.01-1.29 8.952-5.15 8.952-5.15z"/><path fill="#AF7E57" d="M20.936 16.957v-2.044c-.008-1.103-.909-1.991-2.012-1.983-1.103.008-1.991.909-1.983 2.012l.012 2.016h3.983zm2.593 2.684c-1.107 0-2.013-.906-2.013-2.013V4.712c0-1.107.906-2.013 2.013-2.013 1.107 0 2.013.906 2.013 2.013v12.916c0 1.107-.906 2.013-2.013 2.013zM9 23c-1.107 0-2.013-.906-2.013-2.013V17.01c0-1.107.906-2.013 2.013-2.013 1.107 0 2.013.906 2.013 2.013v3.977C11.012 22.094 10.106 23 9 23z"/><path fill="#845636" d="M13.193 22.033c-1.2 0-2.181-.982-2.181-2.181V15.54c0-1.2.982-2.181 2.181-2.181 1.2 0 2.181.982 2.181 2.181v4.311c0 1.2-.981 2.182-2.181 2.182zm14.773-1.889c-.013-1.814-1.494-3.274-3.308-3.261h-7.87l.013 6.992h7.907c1.814-.013 3.274-1.494 3.261-3.308l-.003-.423z"/><path fill="#AF7E57" d="M13.93 12.965c1.103-.008 2.004.88 2.012 1.983v2.793c-.605.553-.969 1.324-.963 2.209.005.752.297 1.429.758 1.951-.336.619-.982 1.047-1.736 1.052-1.103.008-2.004-.88-2.012-1.983l-.043-5.993c-.007-1.103.881-2.004 1.984-2.012z"/><path fill="#AF7E57" d="M27.873 19.273c-.39-1.145-1.422-1.403-1.921-1.399h-7.961c-1.107 0-2.013.906-2.013 2.013s.906 2.013 2.013 2.013l5.493-.003c.276-.002.501.229.503.505.002.276-.22.522-.496.522h-.125c-2.685 0-4.847 3.153-4.819 7.008.002.276-.22.482-.496.484-.276.002-.501-.22-.503-.496-.022-3.006 1.187-5.637 2.983-7.013l-2.534.018c-.999.007-1.273-.278-1.475-.391l.003.003c-.145.232-.922 1.416-2.516 1.416-1.723 0-2.37-1.154-2.494-1.335-.519.799-1.443 1.306-2.516 1.306-.714 0-1.529-.188-1.987-.731.146 6.662 5.541 11.759 12.07 11.712 5.708-.041 10.362-5.069 10.328-9.871-.098-2.659-1.537-5.761-1.537-5.761z"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#90603E" d="M26.992 19.016c-.255-.255-.799-.611-1.44-.962l-1.911-2-2.113 2h-.58l-2.509-3.634c-1.379.01-2.497 1.136-2.487 2.515l-3.556-2.112c-.817.364-1.389 1.18-1.389 2.133v.96l-4 4.168.016 2.185 9.984 10.729S27.525 19.71 27.55 19.74c-.129-.223-.513-.702-.558-.724z"/><g fill="#AF7E57"><path d="M25.552 5.81c0-1.107-.906-2.013-2.013-2.013-1.107 0-2.013.906-2.013 2.013v12.245h4.025V5.81zm-4.605 12.244V16.01c-.008-1.103-.909-1.991-2.012-1.983-1.103.008-1.991.909-1.983 2.012l.012 2.016h3.983zM8.916 16h.168c1.059 0 1.916.858 1.916 1.917v4.166C11 23.142 10.143 24 9.084 24h-.168C7.857 24 7 23.142 7 22.083v-4.166C7 16.858 7.857 16 8.916 16zm6.918 2.96l-.056.062C15.304 19.551 15 20.233 15 21c0 .063.013.123.018.185.044.678.308 1.292.728 1.774-.071.129-.163.243-.259.353-.366.417-.89.688-1.487.688-1.104 0-2-.896-2-2v-6c0-.441.147-.845.389-1.176.364-.497.947-.824 1.611-.824 1.104 0 2 .896 2 2v2.778c-.061.055-.109.123-.166.182z"/><path d="M9.062 25c1.024 0 1.925-.526 2.45-1.322.123.183.271.346.431.497 1.185 1.115 3.034 1.044 4.167-.086.152-.152.303-.305.419-.488l-.003-.003C16.727 23.713 17 24 18 24h2.537c-.37.279-.708.623-1.024 1-1.228 1.467-2.013 3.606-2.013 6 0 .276.224.5.5.5s.5-.224.5-.5c0-2.548.956-4.775 2.377-6 .732-.631 1.584-1 2.498-1 .713.079.847-1 .125-1H18c-1.104 0-2-.896-2-2s.896-2 2-2h8c.858 0 1.66.596 1.913 1.415L29 24c.103.335.479 1.871.411 2.191C29.411 31 24.715 36 19 36c-6.537 0-11.844-5.231-11.986-11.734l.014.01c.515.445 1.176.724 1.91.724h.124z"/></g></svg>
\ No newline at end of file
diff --git a/public/emoji/261d-1f3ff.svg b/public/emoji/261d-1f3ff.svg
index a9aacf2b0cc9ca1c2836bdffa693f32744dab2d3..85884955493b769e7ea633b1eb58689c7b5928bf 100644
--- a/public/emoji/261d-1f3ff.svg
+++ b/public/emoji/261d-1f3ff.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#543226" d="M15.94 15.838c-.01-1.379 1.108-2.505 2.488-2.515 1.379-.01 2.423 1.1 2.433 2.479l-.006 4.303s1.844 11.797-5.428 11.797-8.414-8.673-8.414-8.673l-.025-2.241c-.01-1.29 8.952-5.15 8.952-5.15z"/><path fill="#7C533E" d="M20.936 16.957v-2.044c-.008-1.103-.909-1.991-2.012-1.983-1.103.008-1.991.909-1.983 2.012l.012 2.016h3.983zm2.593 2.684c-1.107 0-2.013-.906-2.013-2.013V4.712c0-1.107.906-2.013 2.013-2.013 1.107 0 2.013.906 2.013 2.013v12.916c0 1.107-.906 2.013-2.013 2.013zM9 23c-1.107 0-2.013-.906-2.013-2.013V17.01c0-1.107.906-2.013 2.013-2.013 1.107 0 2.013.906 2.013 2.013v3.977C11.012 22.094 10.106 23 9 23z"/><path fill="#543226" d="M13.193 22.033c-1.2 0-2.181-.982-2.181-2.181V15.54c0-1.2.982-2.181 2.181-2.181 1.2 0 2.181.982 2.181 2.181v4.311c0 1.2-.981 2.182-2.181 2.182zm14.773-1.889c-.013-1.814-1.494-3.274-3.308-3.261h-7.87l.013 6.992h7.907c1.814-.013 3.274-1.494 3.261-3.308l-.003-.423z"/><path fill="#7C533E" d="M13.93 12.965c1.103-.008 2.004.88 2.012 1.983v2.793c-.605.553-.969 1.324-.963 2.209.005.752.297 1.429.758 1.951-.336.619-.982 1.047-1.736 1.052-1.103.008-2.004-.88-2.012-1.983l-.043-5.993c-.007-1.103.881-2.004 1.984-2.012z"/><path fill="#7C533E" d="M27.873 19.273c-.39-1.145-1.422-1.403-1.921-1.399h-7.961c-1.107 0-2.013.906-2.013 2.013s.906 2.013 2.013 2.013l5.493-.003c.276-.002.501.229.503.505.002.276-.22.522-.496.522h-.125c-2.685 0-4.847 3.153-4.819 7.008.002.276-.22.482-.496.484-.276.002-.501-.22-.503-.496-.022-3.006 1.187-5.637 2.983-7.013l-2.534.018c-.999.007-1.273-.278-1.475-.391l.003.003c-.145.232-.922 1.416-2.516 1.416-1.723 0-2.37-1.154-2.494-1.335-.519.799-1.443 1.306-2.516 1.306-.714 0-1.529-.188-1.987-.731.146 6.662 5.541 11.759 12.07 11.712 5.708-.041 10.362-5.069 10.328-9.871-.098-2.659-1.537-5.761-1.537-5.761z"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#583529" d="M26.992 19.016c-.255-.255-.799-.611-1.44-.962l-1.911-2-2.113 2h-.58l-2.509-3.634c-1.379.01-2.497 1.136-2.487 2.515l-3.556-2.112c-.817.364-1.389 1.18-1.389 2.133v.96l-4 4.168.016 2.185 9.984 10.729S27.525 19.71 27.55 19.74c-.129-.223-.513-.702-.558-.724z"/><g fill="#7C533E"><path d="M25.552 5.81c0-1.107-.906-2.013-2.013-2.013-1.107 0-2.013.906-2.013 2.013v12.245h4.025V5.81zm-4.605 12.244V16.01c-.008-1.103-.909-1.991-2.012-1.983-1.103.008-1.991.909-1.983 2.012l.012 2.016h3.983zM8.916 16h.168c1.059 0 1.916.858 1.916 1.917v4.166C11 23.142 10.143 24 9.084 24h-.168C7.857 24 7 23.142 7 22.083v-4.166C7 16.858 7.857 16 8.916 16zm6.918 2.96l-.056.062C15.304 19.551 15 20.233 15 21c0 .063.013.123.018.185.044.678.308 1.292.728 1.774-.071.129-.163.243-.259.353-.366.417-.89.688-1.487.688-1.104 0-2-.896-2-2v-6c0-.441.147-.845.389-1.176.364-.497.947-.824 1.611-.824 1.104 0 2 .896 2 2v2.778c-.061.055-.109.123-.166.182z"/><path d="M9.062 25c1.024 0 1.925-.526 2.45-1.322.123.183.271.346.431.497 1.185 1.115 3.034 1.044 4.167-.086.152-.152.303-.305.419-.488l-.003-.003C16.727 23.713 17 24 18 24h2.537c-.37.279-.708.623-1.024 1-1.228 1.467-2.013 3.606-2.013 6 0 .276.224.5.5.5s.5-.224.5-.5c0-2.548.956-4.775 2.377-6 .732-.631 1.584-1 2.498-1 .713.079.847-1 .125-1H18c-1.104 0-2-.896-2-2s.896-2 2-2h8c.858 0 1.66.596 1.913 1.415L29 24c.103.335.479 1.871.411 2.191C29.411 31 24.715 36 19 36c-6.537 0-11.844-5.231-11.986-11.734l.014.01c.515.445 1.176.724 1.91.724h.124z"/></g></svg>
\ No newline at end of file
diff --git a/public/emoji/261d.svg b/public/emoji/261d.svg
index a0666143a3cd08f4bb377734f0bac06d6b959de6..95d8ddd17c5b45d5c32e721ae4f6eeaeba3bbd2a 100644
--- a/public/emoji/261d.svg
+++ b/public/emoji/261d.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#EF9645" d="M15.94 15.838c-.01-1.379 1.108-2.505 2.488-2.515 1.379-.01 2.423 1.1 2.433 2.479l-.006 4.303s1.844 11.797-5.428 11.797-8.414-8.673-8.414-8.673l-.025-2.241c-.01-1.29 8.952-5.15 8.952-5.15z"/><path fill="#FFDC5D" d="M20.936 16.957v-2.044c-.008-1.103-.909-1.991-2.012-1.983-1.103.008-1.991.909-1.983 2.012l.012 2.016h3.983zm2.593 2.684c-1.107 0-2.013-.906-2.013-2.013V4.712c0-1.107.906-2.013 2.013-2.013 1.107 0 2.013.906 2.013 2.013v12.916c0 1.107-.906 2.013-2.013 2.013zM9 23c-1.107 0-2.013-.906-2.013-2.013V17.01c0-1.107.906-2.013 2.013-2.013 1.107 0 2.013.906 2.013 2.013v3.977C11.012 22.094 10.106 23 9 23z"/><path fill="#EF9645" d="M13.193 22.033c-1.2 0-2.181-.982-2.181-2.181V15.54c0-1.2.982-2.181 2.181-2.181 1.2 0 2.181.982 2.181 2.181v4.311c0 1.2-.981 2.182-2.181 2.182zm14.773-1.889c-.013-1.814-1.494-3.274-3.308-3.261h-7.87l.013 6.992h7.907c1.814-.013 3.274-1.494 3.261-3.308l-.003-.423z"/><path fill="#FFDC5D" d="M13.93 12.965c1.103-.008 2.004.88 2.012 1.983v2.793c-.605.553-.969 1.324-.963 2.209.005.752.297 1.429.758 1.951-.336.619-.982 1.047-1.736 1.052-1.103.008-2.004-.88-2.012-1.983l-.043-5.993c-.007-1.103.881-2.004 1.984-2.012z"/><path fill="#FFDC5D" d="M27.873 19.273c-.39-1.145-1.422-1.403-1.921-1.399h-7.961c-1.107 0-2.013.906-2.013 2.013s.906 2.013 2.013 2.013l5.493-.003c.276-.002.501.229.503.505.002.276-.22.522-.496.522h-.125c-2.685 0-4.847 3.153-4.819 7.008.002.276-.22.482-.496.484-.276.002-.501-.22-.503-.496-.022-3.006 1.187-5.637 2.983-7.013l-2.534.018c-.999.007-1.273-.278-1.475-.391l.003.003c-.145.232-.922 1.416-2.516 1.416-1.723 0-2.37-1.154-2.494-1.335-.519.799-1.443 1.306-2.516 1.306-.714 0-1.529-.188-1.987-.731.146 6.662 5.541 11.759 12.07 11.712 5.708-.041 10.362-5.069 10.328-9.871-.098-2.659-1.537-5.761-1.537-5.761z"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#EF9645" d="M26.992 19.016c-.255-.255-.799-.611-1.44-.962l-1.911-2-2.113 2h-.58l-2.509-3.634c-1.379.01-2.497 1.136-2.487 2.515l-3.556-2.112c-.817.364-1.389 1.18-1.389 2.133v.96l-4 4.168.016 2.185 9.984 10.729S27.525 19.71 27.55 19.74c-.129-.223-.513-.702-.558-.724z"/><g fill="#FFDC5D"><path d="M25.552 5.81c0-1.107-.906-2.013-2.013-2.013-1.107 0-2.013.906-2.013 2.013v12.245h4.025V5.81zm-4.605 12.244V16.01c-.008-1.103-.909-1.991-2.012-1.983-1.103.008-1.991.909-1.983 2.012l.012 2.016h3.983zM8.916 16h.168c1.059 0 1.916.858 1.916 1.917v4.166C11 23.142 10.143 24 9.084 24h-.168C7.857 24 7 23.142 7 22.083v-4.166C7 16.858 7.857 16 8.916 16zm6.918 2.96l-.056.062C15.304 19.551 15 20.233 15 21c0 .063.013.123.018.185.044.678.308 1.292.728 1.774-.071.129-.163.243-.259.353-.366.417-.89.688-1.487.688-1.104 0-2-.896-2-2v-6c0-.441.147-.845.389-1.176.364-.497.947-.824 1.611-.824 1.104 0 2 .896 2 2v2.778c-.061.055-.109.123-.166.182z"/><path d="M9.062 25c1.024 0 1.925-.526 2.45-1.322.123.183.271.346.431.497 1.185 1.115 3.034 1.044 4.167-.086.152-.152.303-.305.419-.488l-.003-.003C16.727 23.713 17 24 18 24h2.537c-.37.279-.708.623-1.024 1-1.228 1.467-2.013 3.606-2.013 6 0 .276.224.5.5.5s.5-.224.5-.5c0-2.548.956-4.775 2.377-6 .732-.631 1.584-1 2.498-1 .713.079.847-1 .125-1H18c-1.104 0-2-.896-2-2s.896-2 2-2h8c.858 0 1.66.596 1.913 1.415L29 24c.103.335.479 1.871.411 2.191C29.411 31 24.715 36 19 36c-6.537 0-11.844-5.231-11.986-11.734l.014.01c.515.445 1.176.724 1.91.724h.124z"/></g></svg>
\ No newline at end of file
diff --git a/public/emoji/265f.svg b/public/emoji/265f.svg
index e1ff6bb0c27fad340fcbc0b2985b8826847af616..10c880c2f736bb3718d4c2b639823f2c2b39c27f 100644
--- a/public/emoji/265f.svg
+++ b/public/emoji/265f.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#292F33" d="M27.819 33.653C28.46 32.997 29 32.072 29 30.801c0-3.149-3.645-6.753-5-9.801-1.333-3-2.104-5.875-.083-6.688l.17-.073c.578-.218.913-.47.913-.739 0-.46-.97-.872-2.494-1.147C24.03 11.069 25 9.149 25 7c0-3.866-3.134-7-7-7s-7 3.134-7 7c0 2.149.97 4.069 2.494 5.353C11.97 12.628 11 13.04 11 13.5c0 .269.335.521.914.739.056.024.106.048.169.073C14.104 15.125 13.333 18 12 21c-1.355 3.048-5 6.652-5 9.801 0 1.271.54 2.196 1.181 2.852C7.432 34.058 7 34.515 7 35c0 .351.233.687.639 1H28.36c.407-.313.64-.649.64-1 0-.485-.432-.942-1.181-1.347z"/><path fill="#66757F" d="M22.001 4.75c-.275 0-.54-.152-.672-.415-.03-.058-.866-1.585-3.329-1.585s-3.298 1.527-3.333 1.593c-.192.364-.644.509-1.008.32-.366-.188-.514-.631-.33-.999.049-.098 1.247-2.414 4.671-2.414 3.424 0 4.621 2.316 4.671 2.415.186.371.035.821-.336 1.006-.107.054-.222.079-.334.079zM22 14c-.075 0-.151-.017-.224-.053-.004-.001-.988-.447-3.776-.447-2.789 0-3.772.446-3.782.45-.247.117-.546.013-.665-.234-.119-.246-.021-.541.224-.664.113-.056 1.192-.552 4.223-.552 3.03 0 4.11.496 4.224.553.247.124.347.424.224.671-.089.175-.265.276-.448.276zM10 34.5c-.254 0-.471-.192-.497-.45-.027-.274.173-.52.448-.547C10 33.497 15.01 33 18 33s7.999.497 8.05.503c.274.027.476.272.447.547-.027.274-.275.479-.547.447C25.9 34.492 20.94 34 18 34c-2.941 0-7.9.492-7.95.497L10 34.5z"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#31373D" d="M27.819 33.653C28.46 32.997 29 32.072 29 30.801c0-3.149-3.645-6.753-5-9.801-1.333-3-2.104-5.875-.083-6.688l.17-.073c.578-.218.913-.47.913-.739 0-.46-.97-.872-2.494-1.147C24.03 11.069 25 9.149 25 7c0-3.866-3.134-7-7-7s-7 3.134-7 7c0 2.149.97 4.069 2.494 5.353C11.97 12.628 11 13.04 11 13.5c0 .269.335.521.914.739.056.024.106.048.169.073C14.104 15.125 13.333 18 12 21c-1.355 3.048-5 6.652-5 9.801 0 1.271.54 2.196 1.181 2.852C7.432 34.058 7 34.515 7 35c0 .351.233.687.639 1H28.36c.407-.313.64-.649.64-1 0-.485-.432-.942-1.181-1.347z"/><path fill="#66757F" d="M22.001 4.75c-.275 0-.54-.152-.672-.415-.03-.058-.866-1.585-3.329-1.585s-3.298 1.527-3.333 1.593c-.192.364-.644.509-1.008.32-.366-.188-.514-.631-.33-.999.049-.098 1.247-2.414 4.671-2.414 3.424 0 4.621 2.316 4.671 2.415.186.371.035.821-.336 1.006-.107.054-.222.079-.334.079zM22 14c-.075 0-.151-.017-.224-.053-.004-.001-.988-.447-3.776-.447-2.789 0-3.772.446-3.782.45-.247.117-.546.013-.665-.234-.119-.246-.021-.541.224-.664.113-.056 1.192-.552 4.223-.552 3.03 0 4.11.496 4.224.553.247.124.347.424.224.671-.089.175-.265.276-.448.276zM10 34.5c-.254 0-.471-.192-.497-.45-.027-.274.173-.52.448-.547C10 33.497 15.01 33 18 33s7.999.497 8.05.503c.274.027.476.272.447.547-.027.274-.275.479-.547.447C25.9 34.492 20.94 34 18 34c-2.941 0-7.9.492-7.95.497L10 34.5z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/2660.svg b/public/emoji/2660.svg
index 96c1139a8ddbd17632f2e9fbb54410050965ebf0..5f7b10914675f58287d49e7a9a965f49e88d6cc3 100644
--- a/public/emoji/2660.svg
+++ b/public/emoji/2660.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#292F33" d="M32.799 20.336C32.799 11.456 18 .198 18 .198S3.201 11.456 3.201 20.336c0 6.946 8.175 10.172 12.766 5.173C15.631 29.688 11.247 33 7 33h.5c-.829 0-1.5.672-1.5 1.5S6.671 36 7.5 36h21c.828 0 1.5-.672 1.5-1.5s-.672-1.5-1.5-1.5h.5c-4.246 0-8.632-3.312-8.967-7.491 4.591 4.999 12.766 1.773 12.766-5.173z"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#31373D" d="M32.799 20.336C32.799 11.456 18 .198 18 .198S3.201 11.456 3.201 20.336c0 6.946 8.175 10.172 12.766 5.173C15.631 29.688 11.247 33 7 33h.5c-.829 0-1.5.672-1.5 1.5S6.671 36 7.5 36h21c.828 0 1.5-.672 1.5-1.5s-.672-1.5-1.5-1.5h.5c-4.246 0-8.632-3.312-8.967-7.491 4.591 4.999 12.766 1.773 12.766-5.173z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/2663.svg b/public/emoji/2663.svg
index 29e2ff93766a2a1bf3ec1ce214a687d42a597f59..a9dce6f24810c4d0b90682c14925ea0ad35cfd8c 100644
--- a/public/emoji/2663.svg
+++ b/public/emoji/2663.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#292F33" d="M25.5 28c4.143 0 7.5-3.358 7.5-7.5 0-4.142-3.357-7.5-7.5-7.5-1.359 0-2.631.367-3.73 1h-.21c2.047-1.217 3.423-3.445 3.423-6 0-3.857-3.126-6.984-6.983-6.984S11.016 4.143 11.016 8c0 2.555 1.376 4.783 3.423 6h-.208c-1.1-.633-2.371-1-3.731-1C6.358 13 3 16.358 3 20.5c0 4.142 3.358 7.5 7.5 7.5 2.155 0 4.091-.914 5.46-2.368C15.549 29.753 11.205 33 7 33h.5c-.829 0-1.5.672-1.5 1.5S6.671 36 7.5 36h21c.828 0 1.5-.672 1.5-1.5s-.672-1.5-1.5-1.5h.5c-4.205 0-8.549-3.248-8.959-7.369C21.408 27.086 23.346 28 25.5 28z"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#31373D" d="M25.5 28c4.143 0 7.5-3.358 7.5-7.5 0-4.142-3.357-7.5-7.5-7.5-1.359 0-2.631.367-3.73 1h-.21c2.047-1.217 3.423-3.445 3.423-6 0-3.857-3.126-6.984-6.983-6.984S11.016 4.143 11.016 8c0 2.555 1.376 4.783 3.423 6h-.208c-1.1-.633-2.371-1-3.731-1C6.358 13 3 16.358 3 20.5c0 4.142 3.358 7.5 7.5 7.5 2.155 0 4.091-.914 5.46-2.368C15.549 29.753 11.205 33 7 33h.5c-.829 0-1.5.672-1.5 1.5S6.671 36 7.5 36h21c.828 0 1.5-.672 1.5-1.5s-.672-1.5-1.5-1.5h.5c-4.205 0-8.549-3.248-8.959-7.369C21.408 27.086 23.346 28 25.5 28z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/2665.svg b/public/emoji/2665.svg
index f05d460cddae8f480288720d2b1030ce478ad9ca..67f49c3d3ce6bfad66f6c589efb60689abb89baf 100644
--- a/public/emoji/2665.svg
+++ b/public/emoji/2665.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#DD2E44" d="M2.067 11.319C2.067 2.521 14.251-.74 18 9.445 21.749-.741 33.933 2.52 33.933 11.319 33.933 20.879 18 33 18 33S2.067 20.879 2.067 11.319z"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#BE1931" d="M2.067 11.319C2.067 2.521 14.251-.74 18 9.445 21.749-.741 33.933 2.52 33.933 11.319 33.933 20.879 18 33 18 33S2.067 20.879 2.067 11.319z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/2666.svg b/public/emoji/2666.svg
index c2706b60742ac5fbb818ccf5a22741a699223753..02f93aadd40d30193b5feba302377a30af71ae8d 100644
--- a/public/emoji/2666.svg
+++ b/public/emoji/2666.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#DD2E44" d="M18.437 35.747c-.242.337-.632.337-.874 0L5.314 18.612c-.242-.338-.242-.886 0-1.224L17.563.253c.242-.338.632-.338.874 0l12.25 17.135c.241.338.241.886 0 1.224l-12.25 17.135z"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#BE1931" d="M18.437 35.747c-.242.337-.632.337-.874 0L5.314 18.612c-.242-.338-.242-.886 0-1.224L17.563.253c.242-.338.632-.338.874 0l12.25 17.135c.241.338.241.886 0 1.224l-12.25 17.135z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/26a7.svg b/public/emoji/26a7.svg
new file mode 100644
index 0000000000000000000000000000000000000000..0d0b230b5ef0b82288ff7e41fdb9bbf371a637f4
--- /dev/null
+++ b/public/emoji/26a7.svg
@@ -0,0 +1 @@
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#9266CC" d="M36 32c0 2.209-1.791 4-4 4H4c-2.209 0-4-1.791-4-4V4c0-2.209 1.791-4 4-4h28c2.209 0 4 1.791 4 4v28z"/><path fill="#FFF" d="M18 24.3c-3.749 0-6.8-3.051-6.8-6.8s3.051-6.8 6.8-6.8 6.8 3.051 6.8 6.8-3.051 6.8-6.8 6.8zm0-11.2c-2.426 0-4.4 1.974-4.4 4.4s1.974 4.4 4.4 4.4 4.4-1.974 4.4-4.4-1.974-4.4-4.4-4.4z"/><path fill="#FFF" d="M18 31.5c-.663 0-1.2-.538-1.2-1.2v-7.2c0-.663.537-1.2 1.2-1.2s1.2.538 1.2 1.2v7.2c0 .662-.537 1.2-1.2 1.2z"/><path fill="#FFF" d="M21.9 28.3h-7.8c-.663 0-1.2-.537-1.2-1.2s.537-1.2 1.2-1.2h7.8c.663 0 1.2.538 1.2 1.2s-.537 1.2-1.2 1.2zm6.9-22.8h-7.175c-.663 0-1.2.537-1.2 1.2s.537 1.2 1.2 1.2h4.278l-5.6 5.503L22 15.1l5.6-5.503V13.9c0 .662.538 1.2 1.2 1.2.663 0 1.2-.538 1.2-1.2V6.7c0-.663-.538-1.2-1.2-1.2zm-15.194 5.291l-2.315 2.315c-.469.469-1.229.468-1.697 0-.468-.468-.469-1.228 0-1.697l2.315-2.315c.469-.469 1.229-.468 1.697 0 .469.468.469 1.228 0 1.697z"/><path fill="#FFF" d="M7.2 5.5h7.175c.663 0 1.2.537 1.2 1.2s-.537 1.2-1.2 1.2h-4.278l5.6 5.503L14 15.1 8.4 9.597V13.9c0 .662-.537 1.2-1.2 1.2S6 14.562 6 13.9V6.7c0-.663.537-1.2 1.2-1.2z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/26ab.svg b/public/emoji/26ab.svg
index 8f1a63a0d939f1b76468fb289df9eaf56a5ddebf..169b72cc90aaee1a81d2b840dd72ea02c62cc8c6 100644
--- a/public/emoji/26ab.svg
+++ b/public/emoji/26ab.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><circle fill="#292F33" cx="18" cy="18" r="18"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><circle fill="#31373D" cx="18" cy="18" r="18"/></svg>
\ No newline at end of file
diff --git a/public/emoji/26bd.svg b/public/emoji/26bd.svg
index b7ab49521968d2710efa925fea990e9c6fe0a9a5..f24749cb5eab382f9e40e4dae8e936d8eaae0829 100644
--- a/public/emoji/26bd.svg
+++ b/public/emoji/26bd.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><circle fill="#F5F8FA" cx="18" cy="18" r="18"/><path d="M18 11c-.552 0-1-.448-1-1V3c0-.552.448-1 1-1s1 .448 1 1v7c0 .552-.448 1-1 1zm-6.583 4.5c-.1 0-.202-.015-.302-.047l-8.041-2.542c-.527-.167-.819-.728-.652-1.255.166-.527.73-.818 1.255-.652l8.042 2.542c.527.167.819.729.652 1.255-.136.426-.53.699-.954.699zm13.625-.291c-.434 0-.833-.285-.96-.722-.154-.531.151-1.085.682-1.239l6.75-1.958c.531-.153 1.085.153 1.238.682.154.531-.151 1.085-.682 1.239l-6.75 1.958c-.092.027-.186.04-.278.04zm2.001 14.958c-.306 0-.606-.14-.803-.403l-5.459-7.333c-.33-.442-.238-1.069.205-1.399.442-.331 1.069-.238 1.399.205l5.459 7.333c.33.442.238 1.069-.205 1.399-.179.134-.389.198-.596.198zm-18.294-.083c-.197 0-.395-.058-.57-.179-.454-.316-.565-.938-.25-1.392l5.125-7.375c.315-.454.938-.566 1.392-.251.454.315.565.939.25 1.392l-5.125 7.375c-.194.281-.506.43-.822.43zM3.5 27.062c-.44 0-.844-.293-.965-.738L.347 18.262c-.145-.533.17-1.082.704-1.227.535-.141 1.083.171 1.227.704l2.188 8.062c.145.533-.17 1.082-.704 1.226-.088.025-.176.035-.262.035zM22 34h-9c-.552 0-1-.447-1-1s.448-1 1-1h9c.553 0 1 .447 1 1s-.447 1-1 1zm10.126-6.875c-.079 0-.16-.009-.24-.029-.536-.132-.864-.674-.731-1.21l2.125-8.625c.133-.536.679-.862 1.21-.732.536.132.864.674.731 1.211l-2.125 8.625c-.113.455-.521.76-.97.76zM30.312 7.688c-.17 0-.342-.043-.5-.134L22.25 3.179c-.478-.277-.642-.888-.364-1.367.275-.478.886-.643 1.366-.365l7.562 4.375c.478.277.642.888.364 1.367-.185.32-.521.499-.866.499zm-24.811 0c-.312 0-.618-.145-.813-.417-.322-.45-.22-1.074.229-1.396l6.188-4.438c.449-.322 1.074-.219 1.396.229.322.449.219 1.074-.229 1.396L6.083 7.5c-.177.126-.38.188-.582.188z" fill="#CCD6DD"/><path d="M25.493 13.516l-7.208-5.083c-.348-.245-.814-.243-1.161.006l-7.167 5.167c-.343.248-.494.684-.375 1.091l2.5 8.583c.124.426.515.72.96.72H22c.43 0 .81-.274.948-.681l2.917-8.667c.141-.419-.011-.881-.372-1.136zM1.292 19.542c.058 0 .117-.005.175-.016.294-.052.55-.233.697-.494l3.375-6c.051-.091.087-.188.108-.291L6.98 6.2c.06-.294-.016-.6-.206-.832C6.584 5.135 6.3 5 6 5h-.428C2.145 8.277 0 12.884 0 18c0 .266.028.525.04.788l.602.514c.182.156.413.24.65.24zm9.325-16.547c.106.219.313.373.553.412l6.375 1.042c.04.006.081.01.121.01.04 0 .081-.003.122-.01l6.084-1c.2-.033.38-.146.495-.314.116-.168.158-.375.118-.575l-.292-1.443C22.26.407 20.18 0 18 0c-2.425 0-4.734.486-6.845 1.356l-.521.95c-.117.213-.123.47-.017.689zm20.517 2.724l-1.504-.095c-.228-.013-.455.076-.609.249-.152.173-.218.402-.175.63l1.167 6.198c.017.086.048.148.093.224 1.492 2.504 3.152 5.301 3.381 5.782.024.084.062.079.114.151.14.195.372.142.612.142h.007c.198 0 .323.094 1.768-.753.001-.083.012-.164.012-.247 0-4.753-1.856-9.064-4.866-12.281zM14.541 33.376c.011-.199-.058-.395-.191-.544l-4.5-5c-.06-.066-.131-.122-.211-.163-5.885-3.069-5.994-3.105-6.066-3.13-.078-.025-.161-.039-.242-.039-.537 0-.695.065-1.185 2.024 2.236 4.149 6.053 7.316 10.644 8.703l1.5-1.333c.149-.132.239-.319.251-.518zm17.833-8.567c-.189-.08-.405-.078-.592.005l-6.083 2.667c-.106.046-.2.116-.274.205l-4.25 5.083c-.129.154-.19.352-.172.552.02.2.117.384.272.51.683.559 1.261 1.03 1.767 1.44 4.437-1.294 8.154-4.248 10.454-8.146l-.712-1.889c-.072-.193-.221-.347-.41-.427z" fill="#292F33"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><circle fill="#F5F8FA" cx="18" cy="18" r="18"/><path d="M18 11c-.552 0-1-.448-1-1V3c0-.552.448-1 1-1s1 .448 1 1v7c0 .552-.448 1-1 1zm-6.583 4.5c-.1 0-.202-.015-.302-.047l-8.041-2.542c-.527-.167-.819-.728-.652-1.255.166-.527.73-.818 1.255-.652l8.042 2.542c.527.167.819.729.652 1.255-.136.426-.53.699-.954.699zm13.625-.291c-.434 0-.833-.285-.96-.722-.154-.531.151-1.085.682-1.239l6.75-1.958c.531-.153 1.085.153 1.238.682.154.531-.151 1.085-.682 1.239l-6.75 1.958c-.092.027-.186.04-.278.04zm2.001 14.958c-.306 0-.606-.14-.803-.403l-5.459-7.333c-.33-.442-.238-1.069.205-1.399.442-.331 1.069-.238 1.399.205l5.459 7.333c.33.442.238 1.069-.205 1.399-.179.134-.389.198-.596.198zm-18.294-.083c-.197 0-.395-.058-.57-.179-.454-.316-.565-.938-.25-1.392l5.125-7.375c.315-.454.938-.566 1.392-.251.454.315.565.939.25 1.392l-5.125 7.375c-.194.281-.506.43-.822.43zM3.5 27.062c-.44 0-.844-.293-.965-.738L.347 18.262c-.145-.533.17-1.082.704-1.227.535-.141 1.083.171 1.227.704l2.188 8.062c.145.533-.17 1.082-.704 1.226-.088.025-.176.035-.262.035zM22 34h-9c-.552 0-1-.447-1-1s.448-1 1-1h9c.553 0 1 .447 1 1s-.447 1-1 1zm10.126-6.875c-.079 0-.16-.009-.24-.029-.536-.132-.864-.674-.731-1.21l2.125-8.625c.133-.536.679-.862 1.21-.732.536.132.864.674.731 1.211l-2.125 8.625c-.113.455-.521.76-.97.76zM30.312 7.688c-.17 0-.342-.043-.5-.134L22.25 3.179c-.478-.277-.642-.888-.364-1.367.275-.478.886-.643 1.366-.365l7.562 4.375c.478.277.642.888.364 1.367-.185.32-.521.499-.866.499zm-24.811 0c-.312 0-.618-.145-.813-.417-.322-.45-.22-1.074.229-1.396l6.188-4.438c.449-.322 1.074-.219 1.396.229.322.449.219 1.074-.229 1.396L6.083 7.5c-.177.126-.38.188-.582.188z" fill="#CCD6DD"/><path d="M25.493 13.516l-7.208-5.083c-.348-.245-.814-.243-1.161.006l-7.167 5.167c-.343.248-.494.684-.375 1.091l2.5 8.583c.124.426.515.72.96.72H22c.43 0 .81-.274.948-.681l2.917-8.667c.141-.419-.011-.881-.372-1.136zM1.292 19.542c.058 0 .117-.005.175-.016.294-.052.55-.233.697-.494l3.375-6c.051-.091.087-.188.108-.291L6.98 6.2c.06-.294-.016-.6-.206-.832C6.584 5.135 6.3 5 6 5h-.428C2.145 8.277 0 12.884 0 18c0 .266.028.525.04.788l.602.514c.182.156.413.24.65.24zm9.325-16.547c.106.219.313.373.553.412l6.375 1.042c.04.006.081.01.121.01.04 0 .081-.003.122-.01l6.084-1c.2-.033.38-.146.495-.314.116-.168.158-.375.118-.575l-.292-1.443C22.26.407 20.18 0 18 0c-2.425 0-4.734.486-6.845 1.356l-.521.95c-.117.213-.123.47-.017.689zm20.517 2.724l-1.504-.095c-.228-.013-.455.076-.609.249-.152.173-.218.402-.175.63l1.167 6.198c.017.086.048.148.093.224 1.492 2.504 3.152 5.301 3.381 5.782.024.084.062.079.114.151.14.195.372.142.612.142h.007c.198 0 .323.094 1.768-.753.001-.083.012-.164.012-.247 0-4.753-1.856-9.064-4.866-12.281zM14.541 33.376c.011-.199-.058-.395-.191-.544l-4.5-5c-.06-.066-.131-.122-.211-.163-5.885-3.069-5.994-3.105-6.066-3.13-.078-.025-.161-.039-.242-.039-.537 0-.695.065-1.185 2.024 2.236 4.149 6.053 7.316 10.644 8.703l1.5-1.333c.149-.132.239-.319.251-.518zm17.833-8.567c-.189-.08-.405-.078-.592.005l-6.083 2.667c-.106.046-.2.116-.274.205l-4.25 5.083c-.129.154-.19.352-.172.552.02.2.117.384.272.51.683.559 1.261 1.03 1.767 1.44 4.437-1.294 8.154-4.248 10.454-8.146l-.712-1.889c-.072-.193-.221-.347-.41-.427z" fill="#31373D"/></svg>
\ No newline at end of file
diff --git a/public/emoji/26f7-1f3fb.svg b/public/emoji/26f7-1f3fb.svg
index fc070edb95c1c17d47c772e78067b59787b1abaf..e62b3406b418b961f94ade468436f70ba802c4f3 100644
--- a/public/emoji/26f7-1f3fb.svg
+++ b/public/emoji/26f7-1f3fb.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#E1E8ED" d="M36 13.062V32s0 4-4 4H4c-4 0-4-4-4-4v-4.938s17-10 36-14z"/><path fill="#8899A6" d="M14.751 24.46c.167.177.14.473-.062.662-.201.189-.5.2-.666.023l-6.647-7.052c-.167-.177-.139-.474.062-.664.201-.189.499-.199.666-.022l6.647 7.053z"/><path fill="#AA8ED6" d="M26.812 17.809c.435.516.086 1.301-.777 1.756L6.571 29.783c-1.812.876-4.896-.04-5.271-.79-.416-.832 1.193-1.11 2.057-1.563l20.322-10.67c.863-.453 1.914-.401 2.349.113l.784.936zm5.013 4.535c.435.516.086 1.301-.777 1.756L11.583 34.318c-1.812.876-4.896-.04-5.271-.79-.416-.832 1.193-1.11 2.057-1.563l20.322-10.67c.863-.453 1.914-.4 2.349.113l.785.936z"/><path fill="#67757F" d="M13.497 25.772c.273-.041.543-.143.787-.311l2.151-1.189c1.08-.562.68-1.912.614-2.359l-.621-2.793 2.564-3.298c.627-.804.48-3.3-.324-3.926-.806-.626-1.965-.479-2.589.325l-3.05 3.922c-.31.398-.443.907-.368 1.406l.633 4.218-1.118.664c-.837.582-1.043 1.732-.462 2.568.414.596 1.112.871 1.783.773z"/><path fill="#67757F" d="M19.594 29.781c.264-.083 2.75-1.562 2.75-1.562.865-.688.323-2.444.168-2.869l-1.438-3.923 1.85-3.745c.451-.913.076-2.021-.838-2.471-.914-.452-2.021-.075-2.471.837l-2.2 4.455c-.224.454-.251.978-.079 1.452l1.469 4.005-1.004.779c-.731.71-.747 1.878-.037 2.609.506.518 1.183.639 1.83.433z"/><path fill="#BBDDF5" d="M9.639 19.396c3.667-1.292 5.389-6.467 5.573-7.052.331-1.054-.254-2.177-1.308-2.508-1.053-.331-2.174.252-2.507 1.304-.507 1.588-1.8 4.03-3.088 4.484-1.042.367-1.589 1.509-1.222 2.551.368 1.042 1.51 1.589 2.552 1.221z"/><path fill="#8899A6" d="M34.844 21.326c.228.156.285.467.129.693-.157.228-.468.287-.694.129l-9.062-6.236c-.228-.157-.286-.468-.129-.696.156-.227.468-.285.695-.128l9.061 6.238z"/><path fill="#BBDDF5" d="M27.002 17.521c.791-.279 1.351-1.038 1.335-1.921-.058-3.346-1.616-5.92-4.392-7.249-1.964-.94-3.863-.937-4.073-.933-1.103.019-1.985.929-1.966 2.034.019 1.101.923 1.978 2.022 1.966 1.02-.002 4.342.301 4.409 4.251.02 1.104.93 1.984 2.033 1.965.223-.004.436-.044.632-.113z"/><path fill="#67757F" d="M15.132 16.931c.642 1.824 2.641 2.781 4.464 2.138 1.823-.642 2.78-2.641 2.138-4.464l-1.329-3.773c-.643-1.823-2.641-2.78-4.464-2.138-1.823.643-2.78 2.641-2.138 4.464l1.329 3.773z"/><path fill="#BBDDF5" d="M11.417 12.409c.367 1.042 1.509 1.588 2.551 1.222l6.601-2.327c1.042-.367 1.589-1.509 1.222-2.551-.366-1.042-1.509-1.589-2.551-1.222l-6.602 2.326c-1.04.368-1.587 1.51-1.221 2.552z"/><path fill="#BBDDF5" d="M17 18c-2.614-.366-3.175-1.493-3.244-1.69l-1.15-3.261c-.83-2.358 1.723-3.258 3.414-3.854 1.69-.595 3.61-.074 5.075.863 2.822 1.804 2.347 6.303 2.347 6.303.005.343-.075.859-.171.993-.061.084-2.188 1.218-6.271.646z"/><path fill="#1C6399" d="M29.996 3.938l-1.119-2.653c-.076-.181-.273-.295-.487-.286-.129.006-3.21.174-7.169 3.112-3.748 2.78-4.634 2.82-6.578 2.906l-2.997.133c-.133.006-.257.059-.347.148-.506.498-.615 1.17-.291 1.799.411.796 1.623 1.614 3.795 1.517 1.437-.064 3.482-1.196 5.851-2.507 2.91-1.61 6.208-3.436 8.894-3.555.161-.007.309-.083.396-.205.09-.122.11-.274.052-.409z"/><path fill="#F7DECE" d="M16.405 4.29c.734 2.083-.36 4.368-2.443 5.102s-4.368-.36-5.102-2.443c-.734-2.084.692-3.425 2.776-4.159 2.083-.735 4.035-.584 4.769 1.5z"/><path fill="#9AAAB4" d="M10.361 6.419c1.886-.665 3.44-2.272 3.772-1.329.333.943.997 2.83 2.883 2.165 1.886-.665.503-7.599-5.156-5.605-5.657 1.994-4.328 5.766-1.499 4.769z"/><path fill="#BDDDF4" d="M11.471 6.559c.275.781-.135 1.638-.917 1.913-.781.275-1.637-.135-1.913-.917-.275-.781.135-1.637.916-1.913.782-.275 1.638.135 1.914.917z"/><path fill="#67757F" d="M10.721 8.943c-1.041.367-2.185-.181-2.552-1.221-.366-1.041.182-2.185 1.222-2.552s2.185.182 2.551 1.222c.367 1.041-.181 2.185-1.221 2.551zm-.997-2.829c-.52.183-.794.755-.611 1.275.183.52.755.794 1.275.611.52-.183.794-.755.611-1.275-.183-.52-.755-.794-1.275-.611z"/><path fill="#BDDDF4" d="M14.3 5.562c.275.781-.135 1.638-.917 1.913-.781.275-1.638-.135-1.913-.916-.275-.782.135-1.638.916-1.914.782-.275 1.639.135 1.914.917z"/><path fill="#67757F" d="M13.55 7.946c-1.04.367-2.184-.182-2.551-1.222s.181-2.185 1.222-2.551c1.04-.366 2.185.182 2.551 1.222.366 1.041-.182 2.185-1.222 2.551zm-.997-2.829c-.52.183-.794.755-.611 1.275.183.52.755.794 1.275.611.52-.183.794-.755.611-1.275-.182-.521-.755-.794-1.275-.611z"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#E1E8ED" d="M36 13.062V32s0 4-4 4H4c-4 0-4-4-4-4v-4.938s17-10 36-14z"/><path fill="#8899A7" d="M14.751 24.46c.167.177.14.473-.062.662-.201.189-.5.2-.666.023l-6.647-7.052c-.167-.177-.139-.474.062-.664.201-.189.499-.199.666-.022l6.647 7.053z"/><path fill="#AA8ED6" d="M26.812 17.809c.435.516.086 1.301-.777 1.756L6.571 29.783c-1.812.876-4.896-.04-5.271-.79-.416-.832 1.193-1.11 2.057-1.563l20.322-10.67c.863-.453 1.914-.401 2.349.113l.784.936z"/><path fill="#1C6399" d="M13.562 21.828c-.234.641-1.078 1.061-1.625 1.468s-.641.766-.641 1.204.328 1.047 1.656 1 2.125-.703 2.391-.969.531-.375.547-.328.859-.372.938-.616c.078-.243.047-1.29-.219-1.853s-3.047.094-3.047.094z"/><path fill="#AA8ED6" d="M31.825 22.344c.435.516.086 1.301-.777 1.756L11.583 34.318c-1.812.876-4.896-.04-5.271-.79-.416-.832 1.193-1.11 2.057-1.563l20.322-10.67c.863-.453 1.914-.4 2.349.113l.785.936z"/><path fill="#1C6399" d="M19.344 26c-.234.641-1.078 1.061-1.625 1.468s-.641.766-.641 1.204.328 1.047 1.656 1 2.125-.703 2.391-.969.531-.375.547-.328.859-.372.938-.616c.078-.243.047-1.29-.219-1.853S19.344 26 19.344 26z"/><path fill="#55ACEE" d="M18.558 26.942c.4-.141.798-.159 1.159.017.436.212.673.642.673.799 0 .077-.266.391-.403.079-.153-.347-.806-.877-1.429-.895zm-.69.505c.36-.127.719-.143 1.044.015.393.191.606.578.606.719 0 .069-.239.352-.363.071-.138-.313-.726-.789-1.287-.805z"/><path fill="#8899A7" d="M34.844 21.326c.228.156.285.467.129.693-.157.228-.468.287-.694.129l-9.062-6.236c-.228-.157-.286-.468-.129-.696.156-.227.468-.285.695-.128l9.061 6.238z"/><path fill="#1C6399" d="M24.688 14.404c-.312.958-.676 1.875-.312 2.412.359.531 1.672 1.382 2.406 1.278s1.469-1.75.927-3.21c-.312-.841-3.021-.48-3.021-.48z"/><path fill="#67757F" d="M21.733 14.605l-7.449-.077-1.255 1.614c-.31.398-.467 1.01-.467 1.337-.001.833.562 2.792.732 4.287.181 1.598 3.542.793 3.497.192-.073-.972.11-1.64-.302-2.511-.078-.165.199-.662.199-.662.415.24.872.395 1.353.449l-.627 1.269c-.224.454-.259 1.109-.086 1.584 0 0 1.328 3.135 1.476 3.874.323 1.602 4.206.488 3.706-.61-.595-1.308-.553-2.954-1.438-3.923.905-1.135 2.197-2.59 2.041-3.979.002-.001-1.319-2.672-1.38-2.844z"/><path fill="#BBDDF5" d="M21.062 7.057c-.524-.108-6.586 2.12-8.108 2.69-1.959.733-1.381 2.407-2.238 3.944-.459.823-1.578 1.197-2.252 1.815-.7.643-.278 1.564.196 2.262.794 1.169 1.585 1.244 2.766.487.916-.587 1.594-1.51 2.162-2.422.724 2.055 3.283 2.263 5.183 2.32 1.193.036 2.42-.056 3.566-.407.837-.257 1.119-.397 1.105-1.385 0 0 .222-2.11-.544-4.019.385.302.737.501.927.959.152.369.08.794.196 1.156.165.511.585.7 1.087.866.607.201 1.322.321 1.963.252.87-.094.849-.441.778-1.294-.129-1.561-.546-3.25-1.748-4.316-1.411-1.25-3.16-2.52-5.039-2.908z"/><path fill="#1C6399" d="M29.996 3.938l-1.119-2.653c-.076-.181-.273-.295-.487-.286-.129.006-3.21.174-7.169 3.112-3.748 2.78-4.634 2.82-6.578 2.906l-2.997.133c-.133.006-.257.059-.347.148-.506.498-.615 1.17-.291 1.799.411.796 1.623 1.614 3.795 1.517 1.437-.064 3.482-1.196 5.851-2.507 2.91-1.61 6.208-3.436 8.894-3.555.161-.007.309-.083.396-.205.09-.122.11-.274.052-.409z"/><path fill="#F7DECE" d="M16.405 4.29c.734 2.083-.36 4.368-2.443 5.102s-4.368-.36-5.102-2.443c-.734-2.084.692-3.425 2.776-4.159 2.083-.735 4.035-.584 4.769 1.5z"/><path fill="#9AAAB4" d="M10.361 6.419c1.886-.665 3.44-2.272 3.772-1.329.333.943.997 2.83 2.883 2.165 1.886-.665.503-7.599-5.156-5.605-5.657 1.994-4.328 5.766-1.499 4.769z"/><circle fill="#67757F" cx="10.056" cy="7.057" r="2"/><circle fill="#BDDDF4" cx="10.056" cy="7.057" r="1"/><circle fill="#67757F" cx="12.891" cy="6.062" r="2"/><circle fill="#BDDDF4" cx="12.891" cy="6.062" r="1"/><path fill="#1C6399" d="M8.312 16.373c-.907.382-1.531 1.127-1.703 1.517s.358 1.815 1.703 2.219 1.485-1.297 1.813-1.609-.844-2.535-1.813-2.127z"/><path fill="#8899A7" d="M7.387 18.082l-.151-.161c-.167-.177-.139-.474.062-.664.201-.189.499-.199.666-.022 0 0 .092.095.151.161.22.245-.539.892-.728.686z"/><path fill="#004A77" d="M9.818 19.122c.117-.394-.157-1.006-.338-1.249-.337.439-.792.91-1.184.808.084.314.578.204.885.016.307-.189.637.425.637.425z"/><path fill="#55ACEE" d="M12.776 22.771c.4-.141.798-.159 1.159.017.436.212.673.642.673.799 0 .077-.266.391-.403.079-.152-.348-.805-.878-1.429-.895zm-.69.504c.36-.127.719-.143 1.044.015.393.191.606.578.606.719 0 .069-.239.352-.363.071-.137-.313-.725-.789-1.287-.805z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/26f7-1f3fc.svg b/public/emoji/26f7-1f3fc.svg
index e3f08e7ccc2a3f278bd2a456663505df62684a15..38dac4b1952a8717b0d5baa19e9b7a9262eb55d5 100644
--- a/public/emoji/26f7-1f3fc.svg
+++ b/public/emoji/26f7-1f3fc.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#E1E8ED" d="M36 13.062V32s0 4-4 4H4c-4 0-4-4-4-4v-4.938s17-10 36-14z"/><path fill="#8899A6" d="M14.751 24.46c.167.177.14.473-.062.662-.201.189-.5.2-.666.023l-6.647-7.052c-.167-.177-.139-.474.062-.664.201-.189.499-.199.666-.022l6.647 7.053z"/><path fill="#AA8ED6" d="M26.812 17.809c.435.516.086 1.301-.777 1.756L6.571 29.783c-1.812.876-4.896-.04-5.271-.79-.416-.832 1.193-1.11 2.057-1.563l20.322-10.67c.863-.453 1.914-.401 2.349.113l.784.936zm5.013 4.535c.435.516.086 1.301-.777 1.756L11.583 34.318c-1.812.876-4.896-.04-5.271-.79-.416-.832 1.193-1.11 2.057-1.563l20.322-10.67c.863-.453 1.914-.4 2.349.113l.785.936z"/><path fill="#67757F" d="M13.497 25.772c.273-.041.543-.143.787-.311l2.151-1.189c1.08-.562.68-1.912.614-2.359l-.621-2.793 2.564-3.298c.627-.804.48-3.3-.324-3.926-.806-.626-1.965-.479-2.589.325l-3.05 3.922c-.31.398-.443.907-.368 1.406l.633 4.218-1.118.664c-.837.582-1.043 1.732-.462 2.568.414.596 1.112.871 1.783.773z"/><path fill="#67757F" d="M19.594 29.781c.264-.083 2.75-1.562 2.75-1.562.865-.688.323-2.444.168-2.869l-1.438-3.923 1.85-3.745c.451-.913.076-2.021-.838-2.471-.914-.452-2.021-.075-2.471.837l-2.2 4.455c-.224.454-.251.978-.079 1.452l1.469 4.005-1.004.779c-.731.71-.747 1.878-.037 2.609.506.518 1.183.639 1.83.433z"/><path fill="#BBDDF5" d="M9.639 19.396c3.667-1.292 5.389-6.467 5.573-7.052.331-1.054-.254-2.177-1.308-2.508-1.053-.331-2.174.252-2.507 1.304-.507 1.588-1.8 4.03-3.088 4.484-1.042.367-1.589 1.509-1.222 2.551.368 1.042 1.51 1.589 2.552 1.221z"/><path fill="#8899A6" d="M34.844 21.326c.228.156.285.467.129.693-.157.228-.468.287-.694.129l-9.062-6.236c-.228-.157-.286-.468-.129-.696.156-.227.468-.285.695-.128l9.061 6.238z"/><path fill="#BBDDF5" d="M27.002 17.521c.791-.279 1.351-1.038 1.335-1.921-.058-3.346-1.616-5.92-4.392-7.249-1.964-.94-3.863-.937-4.073-.933-1.103.019-1.985.929-1.966 2.034.019 1.101.923 1.978 2.022 1.966 1.02-.002 4.342.301 4.409 4.251.02 1.104.93 1.984 2.033 1.965.223-.004.436-.044.632-.113z"/><path fill="#67757F" d="M15.132 16.931c.642 1.824 2.641 2.781 4.464 2.138 1.823-.642 2.78-2.641 2.138-4.464l-1.329-3.773c-.643-1.823-2.641-2.78-4.464-2.138-1.823.643-2.78 2.641-2.138 4.464l1.329 3.773z"/><path fill="#BBDDF5" d="M11.417 12.409c.367 1.042 1.509 1.588 2.551 1.222l6.601-2.327c1.042-.367 1.589-1.509 1.222-2.551-.366-1.042-1.509-1.589-2.551-1.222l-6.602 2.326c-1.04.368-1.587 1.51-1.221 2.552z"/><path fill="#BBDDF5" d="M17 18c-2.614-.366-3.175-1.493-3.244-1.69l-1.15-3.261c-.83-2.358 1.723-3.258 3.414-3.854 1.69-.595 3.61-.074 5.075.863 2.822 1.804 2.347 6.303 2.347 6.303.005.343-.075.859-.171.993-.061.084-2.188 1.218-6.271.646z"/><path fill="#1C6399" d="M29.996 3.938l-1.119-2.653c-.076-.181-.273-.295-.487-.286-.129.006-3.21.174-7.169 3.112-3.748 2.78-4.634 2.82-6.578 2.906l-2.997.133c-.133.006-.257.059-.347.148-.506.498-.615 1.17-.291 1.799.411.796 1.623 1.614 3.795 1.517 1.437-.064 3.482-1.196 5.851-2.507 2.91-1.61 6.208-3.436 8.894-3.555.161-.007.309-.083.396-.205.09-.122.11-.274.052-.409z"/><path fill="#F3D2A2" d="M16.405 4.29c.734 2.083-.36 4.368-2.443 5.102s-4.368-.36-5.102-2.443c-.734-2.084.692-3.425 2.776-4.159 2.083-.735 4.035-.584 4.769 1.5z"/><path fill="#9AAAB4" d="M10.361 6.419c1.886-.665 3.44-2.272 3.772-1.329.333.943.997 2.83 2.883 2.165 1.886-.665.503-7.599-5.156-5.605-5.657 1.994-4.328 5.766-1.499 4.769z"/><path fill="#BDDDF4" d="M11.471 6.559c.275.781-.135 1.638-.917 1.913-.781.275-1.637-.135-1.913-.917-.275-.781.135-1.637.916-1.913.782-.275 1.638.135 1.914.917z"/><path fill="#67757F" d="M10.721 8.943c-1.041.367-2.185-.181-2.552-1.221-.366-1.041.182-2.185 1.222-2.552s2.185.182 2.551 1.222c.367 1.041-.181 2.185-1.221 2.551zm-.997-2.829c-.52.183-.794.755-.611 1.275.183.52.755.794 1.275.611.52-.183.794-.755.611-1.275-.183-.52-.755-.794-1.275-.611z"/><path fill="#BDDDF4" d="M14.3 5.562c.275.781-.135 1.638-.917 1.913-.781.275-1.638-.135-1.913-.916-.275-.782.135-1.638.916-1.914.782-.275 1.639.135 1.914.917z"/><path fill="#67757F" d="M13.55 7.946c-1.04.367-2.184-.182-2.551-1.222s.181-2.185 1.222-2.551c1.04-.366 2.185.182 2.551 1.222.366 1.041-.182 2.185-1.222 2.551zm-.997-2.829c-.52.183-.794.755-.611 1.275.183.52.755.794 1.275.611.52-.183.794-.755.611-1.275-.182-.521-.755-.794-1.275-.611z"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#E1E8ED" d="M36 13.062V32s0 4-4 4H4c-4 0-4-4-4-4v-4.938s17-10 36-14z"/><path fill="#8899A7" d="M14.751 24.46c.167.177.14.473-.062.662-.201.189-.5.2-.666.023l-6.647-7.052c-.167-.177-.139-.474.062-.664.201-.189.499-.199.666-.022l6.647 7.053z"/><path fill="#AA8ED6" d="M26.812 17.809c.435.516.086 1.301-.777 1.756L6.571 29.783c-1.812.876-4.896-.04-5.271-.79-.416-.832 1.193-1.11 2.057-1.563l20.322-10.67c.863-.453 1.914-.401 2.349.113l.784.936z"/><path fill="#1C6399" d="M13.562 21.828c-.234.641-1.078 1.061-1.625 1.468s-.641.766-.641 1.204.328 1.047 1.656 1 2.125-.703 2.391-.969.531-.375.547-.328.859-.372.938-.616c.078-.243.047-1.29-.219-1.853s-3.047.094-3.047.094z"/><path fill="#AA8ED6" d="M31.825 22.344c.435.516.086 1.301-.777 1.756L11.583 34.318c-1.812.876-4.896-.04-5.271-.79-.416-.832 1.193-1.11 2.057-1.563l20.322-10.67c.863-.453 1.914-.4 2.349.113l.785.936z"/><path fill="#1C6399" d="M19.344 26c-.234.641-1.078 1.061-1.625 1.468s-.641.766-.641 1.204.328 1.047 1.656 1 2.125-.703 2.391-.969.531-.375.547-.328.859-.372.938-.616c.078-.243.047-1.29-.219-1.853S19.344 26 19.344 26z"/><path fill="#55ACEE" d="M18.558 26.942c.4-.141.798-.159 1.159.017.436.212.673.642.673.799 0 .077-.266.391-.403.079-.153-.347-.806-.877-1.429-.895zm-.69.505c.36-.127.719-.143 1.044.015.393.191.606.578.606.719 0 .069-.239.352-.363.071-.138-.313-.726-.789-1.287-.805z"/><path fill="#8899A7" d="M34.844 21.326c.228.156.285.467.129.693-.157.228-.468.287-.694.129l-9.062-6.236c-.228-.157-.286-.468-.129-.696.156-.227.468-.285.695-.128l9.061 6.238z"/><path fill="#1C6399" d="M24.688 14.404c-.312.958-.676 1.875-.312 2.412.359.531 1.672 1.382 2.406 1.278s1.469-1.75.927-3.21c-.312-.841-3.021-.48-3.021-.48z"/><path fill="#67757F" d="M21.733 14.605l-7.449-.077-1.255 1.614c-.31.398-.467 1.01-.467 1.337-.001.833.562 2.792.732 4.287.181 1.598 3.542.793 3.497.192-.073-.972.11-1.64-.302-2.511-.078-.165.199-.662.199-.662.415.24.872.395 1.353.449l-.627 1.269c-.224.454-.259 1.109-.086 1.584 0 0 1.328 3.135 1.476 3.874.323 1.602 4.206.488 3.706-.61-.595-1.308-.553-2.954-1.438-3.923.905-1.135 2.197-2.59 2.041-3.979.002-.001-1.319-2.672-1.38-2.844z"/><path fill="#BBDDF5" d="M21.062 7.057c-.524-.108-6.586 2.12-8.108 2.69-1.959.733-1.381 2.407-2.238 3.944-.459.823-1.578 1.197-2.252 1.815-.7.643-.278 1.564.196 2.262.794 1.169 1.585 1.244 2.766.487.916-.587 1.594-1.51 2.162-2.422.724 2.055 3.283 2.263 5.183 2.32 1.193.036 2.42-.056 3.566-.407.837-.257 1.119-.397 1.105-1.385 0 0 .222-2.11-.544-4.019.385.302.737.501.927.959.152.369.08.794.196 1.156.165.511.585.7 1.087.866.607.201 1.322.321 1.963.252.87-.094.849-.441.778-1.294-.129-1.561-.546-3.25-1.748-4.316-1.411-1.25-3.16-2.52-5.039-2.908z"/><path fill="#1C6399" d="M29.996 3.938l-1.119-2.653c-.076-.181-.273-.295-.487-.286-.129.006-3.21.174-7.169 3.112-3.748 2.78-4.634 2.82-6.578 2.906l-2.997.133c-.133.006-.257.059-.347.148-.506.498-.615 1.17-.291 1.799.411.796 1.623 1.614 3.795 1.517 1.437-.064 3.482-1.196 5.851-2.507 2.91-1.61 6.208-3.436 8.894-3.555.161-.007.309-.083.396-.205.09-.122.11-.274.052-.409z"/><path fill="#F3D2A2" d="M16.405 4.29c.734 2.083-.36 4.368-2.443 5.102s-4.368-.36-5.102-2.443c-.734-2.084.692-3.425 2.776-4.159 2.083-.735 4.035-.584 4.769 1.5z"/><path fill="#9AAAB4" d="M10.361 6.419c1.886-.665 3.44-2.272 3.772-1.329.333.943.997 2.83 2.883 2.165 1.886-.665.503-7.599-5.156-5.605-5.657 1.994-4.328 5.766-1.499 4.769z"/><circle fill="#67757F" cx="10.056" cy="7.057" r="2"/><circle fill="#BDDDF4" cx="10.056" cy="7.057" r="1"/><circle fill="#67757F" cx="12.891" cy="6.062" r="2"/><circle fill="#BDDDF4" cx="12.891" cy="6.062" r="1"/><path fill="#1C6399" d="M8.312 16.373c-.907.382-1.531 1.127-1.703 1.517s.358 1.815 1.703 2.219 1.485-1.297 1.813-1.609-.844-2.535-1.813-2.127z"/><path fill="#8899A7" d="M7.387 18.082l-.151-.161c-.167-.177-.139-.474.062-.664.201-.189.499-.199.666-.022 0 0 .092.095.151.161.22.245-.539.892-.728.686z"/><path fill="#004A77" d="M9.818 19.122c.117-.394-.157-1.006-.338-1.249-.337.439-.792.91-1.184.808.084.314.578.204.885.016.307-.189.637.425.637.425z"/><path fill="#55ACEE" d="M12.776 22.771c.4-.141.798-.159 1.159.017.436.212.673.642.673.799 0 .077-.266.391-.403.079-.152-.348-.805-.878-1.429-.895zm-.69.504c.36-.127.719-.143 1.044.015.393.191.606.578.606.719 0 .069-.239.352-.363.071-.137-.313-.725-.789-1.287-.805z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/26f7-1f3fd.svg b/public/emoji/26f7-1f3fd.svg
index f0acc1ae51d87047884b04a0a524ae58ff8ba43d..88013381fe0dd616400a6a41122a7f007e25a801 100644
--- a/public/emoji/26f7-1f3fd.svg
+++ b/public/emoji/26f7-1f3fd.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#E1E8ED" d="M36 13.062V32s0 4-4 4H4c-4 0-4-4-4-4v-4.938s17-10 36-14z"/><path fill="#8899A6" d="M14.751 24.46c.167.177.14.473-.062.662-.201.189-.5.2-.666.023l-6.647-7.052c-.167-.177-.139-.474.062-.664.201-.189.499-.199.666-.022l6.647 7.053z"/><path fill="#AA8ED6" d="M26.812 17.809c.435.516.086 1.301-.777 1.756L6.571 29.783c-1.812.876-4.896-.04-5.271-.79-.416-.832 1.193-1.11 2.057-1.563l20.322-10.67c.863-.453 1.914-.401 2.349.113l.784.936zm5.013 4.535c.435.516.086 1.301-.777 1.756L11.583 34.318c-1.812.876-4.896-.04-5.271-.79-.416-.832 1.193-1.11 2.057-1.563l20.322-10.67c.863-.453 1.914-.4 2.349.113l.785.936z"/><path fill="#67757F" d="M13.497 25.772c.273-.041.543-.143.787-.311l2.151-1.189c1.08-.562.68-1.912.614-2.359l-.621-2.793 2.564-3.298c.627-.804.48-3.3-.324-3.926-.806-.626-1.965-.479-2.589.325l-3.05 3.922c-.31.398-.443.907-.368 1.406l.633 4.218-1.118.664c-.837.582-1.043 1.732-.462 2.568.414.596 1.112.871 1.783.773z"/><path fill="#67757F" d="M19.594 29.781c.264-.083 2.75-1.562 2.75-1.562.865-.688.323-2.444.168-2.869l-1.438-3.923 1.85-3.745c.451-.913.076-2.021-.838-2.471-.914-.452-2.021-.075-2.471.837l-2.2 4.455c-.224.454-.251.978-.079 1.452l1.469 4.005-1.004.779c-.731.71-.747 1.878-.037 2.609.506.518 1.183.639 1.83.433z"/><path fill="#BBDDF5" d="M9.639 19.396c3.667-1.292 5.389-6.467 5.573-7.052.331-1.054-.254-2.177-1.308-2.508-1.053-.331-2.174.252-2.507 1.304-.507 1.588-1.8 4.03-3.088 4.484-1.042.367-1.589 1.509-1.222 2.551.368 1.042 1.51 1.589 2.552 1.221z"/><path fill="#8899A6" d="M34.844 21.326c.228.156.285.467.129.693-.157.228-.468.287-.694.129l-9.062-6.236c-.228-.157-.286-.468-.129-.696.156-.227.468-.285.695-.128l9.061 6.238z"/><path fill="#BBDDF5" d="M27.002 17.521c.791-.279 1.351-1.038 1.335-1.921-.058-3.346-1.616-5.92-4.392-7.249-1.964-.94-3.863-.937-4.073-.933-1.103.019-1.985.929-1.966 2.034.019 1.101.923 1.978 2.022 1.966 1.02-.002 4.342.301 4.409 4.251.02 1.104.93 1.984 2.033 1.965.223-.004.436-.044.632-.113z"/><path fill="#67757F" d="M15.132 16.931c.642 1.824 2.641 2.781 4.464 2.138 1.823-.642 2.78-2.641 2.138-4.464l-1.329-3.773c-.643-1.823-2.641-2.78-4.464-2.138-1.823.643-2.78 2.641-2.138 4.464l1.329 3.773z"/><path fill="#BBDDF5" d="M11.417 12.409c.367 1.042 1.509 1.588 2.551 1.222l6.601-2.327c1.042-.367 1.589-1.509 1.222-2.551-.366-1.042-1.509-1.589-2.551-1.222l-6.602 2.326c-1.04.368-1.587 1.51-1.221 2.552z"/><path fill="#BBDDF5" d="M17 18c-2.614-.366-3.175-1.493-3.244-1.69l-1.15-3.261c-.83-2.358 1.723-3.258 3.414-3.854 1.69-.595 3.61-.074 5.075.863 2.822 1.804 2.347 6.303 2.347 6.303.005.343-.075.859-.171.993-.061.084-2.188 1.218-6.271.646z"/><path fill="#1C6399" d="M29.996 3.938l-1.119-2.653c-.076-.181-.273-.295-.487-.286-.129.006-3.21.174-7.169 3.112-3.748 2.78-4.634 2.82-6.578 2.906l-2.997.133c-.133.006-.257.059-.347.148-.506.498-.615 1.17-.291 1.799.411.796 1.623 1.614 3.795 1.517 1.437-.064 3.482-1.196 5.851-2.507 2.91-1.61 6.208-3.436 8.894-3.555.161-.007.309-.083.396-.205.09-.122.11-.274.052-.409z"/><path fill="#D5AB88" d="M16.405 4.29c.734 2.083-.36 4.368-2.443 5.102s-4.368-.36-5.102-2.443c-.734-2.084.692-3.425 2.776-4.159 2.083-.735 4.035-.584 4.769 1.5z"/><path fill="#9AAAB4" d="M10.361 6.419c1.886-.665 3.44-2.272 3.772-1.329.333.943.997 2.83 2.883 2.165 1.886-.665.503-7.599-5.156-5.605-5.657 1.994-4.328 5.766-1.499 4.769z"/><path fill="#BDDDF4" d="M11.471 6.559c.275.781-.135 1.638-.917 1.913-.781.275-1.637-.135-1.913-.917-.275-.781.135-1.637.916-1.913.782-.275 1.638.135 1.914.917z"/><path fill="#67757F" d="M10.721 8.943c-1.041.367-2.185-.181-2.552-1.221-.366-1.041.182-2.185 1.222-2.552s2.185.182 2.551 1.222c.367 1.041-.181 2.185-1.221 2.551zm-.997-2.829c-.52.183-.794.755-.611 1.275.183.52.755.794 1.275.611.52-.183.794-.755.611-1.275-.183-.52-.755-.794-1.275-.611z"/><path fill="#BDDDF4" d="M14.3 5.562c.275.781-.135 1.638-.917 1.913-.781.275-1.638-.135-1.913-.916-.275-.782.135-1.638.916-1.914.782-.275 1.639.135 1.914.917z"/><path fill="#67757F" d="M13.55 7.946c-1.04.367-2.184-.182-2.551-1.222s.181-2.185 1.222-2.551c1.04-.366 2.185.182 2.551 1.222.366 1.041-.182 2.185-1.222 2.551zm-.997-2.829c-.52.183-.794.755-.611 1.275.183.52.755.794 1.275.611.52-.183.794-.755.611-1.275-.182-.521-.755-.794-1.275-.611z"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#E1E8ED" d="M36 13.062V32s0 4-4 4H4c-4 0-4-4-4-4v-4.938s17-10 36-14z"/><path fill="#8899A7" d="M14.751 24.46c.167.177.14.473-.062.662-.201.189-.5.2-.666.023l-6.647-7.052c-.167-.177-.139-.474.062-.664.201-.189.499-.199.666-.022l6.647 7.053z"/><path fill="#AA8ED6" d="M26.812 17.809c.435.516.086 1.301-.777 1.756L6.571 29.783c-1.812.876-4.896-.04-5.271-.79-.416-.832 1.193-1.11 2.057-1.563l20.322-10.67c.863-.453 1.914-.401 2.349.113l.784.936z"/><path fill="#1C6399" d="M13.562 21.828c-.234.641-1.078 1.061-1.625 1.468s-.641.766-.641 1.204.328 1.047 1.656 1 2.125-.703 2.391-.969.531-.375.547-.328.859-.372.938-.616c.078-.243.047-1.29-.219-1.853s-3.047.094-3.047.094z"/><path fill="#AA8ED6" d="M31.825 22.344c.435.516.086 1.301-.777 1.756L11.583 34.318c-1.812.876-4.896-.04-5.271-.79-.416-.832 1.193-1.11 2.057-1.563l20.322-10.67c.863-.453 1.914-.4 2.349.113l.785.936z"/><path fill="#1C6399" d="M19.344 26c-.234.641-1.078 1.061-1.625 1.468s-.641.766-.641 1.204.328 1.047 1.656 1 2.125-.703 2.391-.969.531-.375.547-.328.859-.372.938-.616c.078-.243.047-1.29-.219-1.853S19.344 26 19.344 26z"/><path fill="#55ACEE" d="M18.558 26.942c.4-.141.798-.159 1.159.017.436.212.673.642.673.799 0 .077-.266.391-.403.079-.153-.347-.806-.877-1.429-.895zm-.69.505c.36-.127.719-.143 1.044.015.393.191.606.578.606.719 0 .069-.239.352-.363.071-.138-.313-.726-.789-1.287-.805z"/><path fill="#8899A7" d="M34.844 21.326c.228.156.285.467.129.693-.157.228-.468.287-.694.129l-9.062-6.236c-.228-.157-.286-.468-.129-.696.156-.227.468-.285.695-.128l9.061 6.238z"/><path fill="#1C6399" d="M24.688 14.404c-.312.958-.676 1.875-.312 2.412.359.531 1.672 1.382 2.406 1.278s1.469-1.75.927-3.21c-.312-.841-3.021-.48-3.021-.48z"/><path fill="#67757F" d="M21.733 14.605l-7.449-.077-1.255 1.614c-.31.398-.467 1.01-.467 1.337-.001.833.562 2.792.732 4.287.181 1.598 3.542.793 3.497.192-.073-.972.11-1.64-.302-2.511-.078-.165.199-.662.199-.662.415.24.872.395 1.353.449l-.627 1.269c-.224.454-.259 1.109-.086 1.584 0 0 1.328 3.135 1.476 3.874.323 1.602 4.206.488 3.706-.61-.595-1.308-.553-2.954-1.438-3.923.905-1.135 2.197-2.59 2.041-3.979.002-.001-1.319-2.672-1.38-2.844z"/><path fill="#BBDDF5" d="M21.062 7.057c-.524-.108-6.586 2.12-8.108 2.69-1.959.733-1.381 2.407-2.238 3.944-.459.823-1.578 1.197-2.252 1.815-.7.643-.278 1.564.196 2.262.794 1.169 1.585 1.244 2.766.487.916-.587 1.594-1.51 2.162-2.422.724 2.055 3.283 2.263 5.183 2.32 1.193.036 2.42-.056 3.566-.407.837-.257 1.119-.397 1.105-1.385 0 0 .222-2.11-.544-4.019.385.302.737.501.927.959.152.369.08.794.196 1.156.165.511.585.7 1.087.866.607.201 1.322.321 1.963.252.87-.094.849-.441.778-1.294-.129-1.561-.546-3.25-1.748-4.316-1.411-1.25-3.16-2.52-5.039-2.908z"/><path fill="#1C6399" d="M29.996 3.938l-1.119-2.653c-.076-.181-.273-.295-.487-.286-.129.006-3.21.174-7.169 3.112-3.748 2.78-4.634 2.82-6.578 2.906l-2.997.133c-.133.006-.257.059-.347.148-.506.498-.615 1.17-.291 1.799.411.796 1.623 1.614 3.795 1.517 1.437-.064 3.482-1.196 5.851-2.507 2.91-1.61 6.208-3.436 8.894-3.555.161-.007.309-.083.396-.205.09-.122.11-.274.052-.409z"/><path fill="#D4AB88" d="M16.405 4.29c.734 2.083-.36 4.368-2.443 5.102s-4.368-.36-5.102-2.443c-.734-2.084.692-3.425 2.776-4.159 2.083-.735 4.035-.584 4.769 1.5z"/><path fill="#9AAAB4" d="M10.361 6.419c1.886-.665 3.44-2.272 3.772-1.329.333.943.997 2.83 2.883 2.165 1.886-.665.503-7.599-5.156-5.605-5.657 1.994-4.328 5.766-1.499 4.769z"/><circle fill="#67757F" cx="10.056" cy="7.057" r="2"/><circle fill="#BDDDF4" cx="10.056" cy="7.057" r="1"/><circle fill="#67757F" cx="12.891" cy="6.062" r="2"/><circle fill="#BDDDF4" cx="12.891" cy="6.062" r="1"/><path fill="#1C6399" d="M8.312 16.373c-.907.382-1.531 1.127-1.703 1.517s.358 1.815 1.703 2.219 1.485-1.297 1.813-1.609-.844-2.535-1.813-2.127z"/><path fill="#8899A7" d="M7.387 18.082l-.151-.161c-.167-.177-.139-.474.062-.664.201-.189.499-.199.666-.022 0 0 .092.095.151.161.22.245-.539.892-.728.686z"/><path fill="#004A77" d="M9.818 19.122c.117-.394-.157-1.006-.338-1.249-.337.439-.792.91-1.184.808.084.314.578.204.885.016.307-.189.637.425.637.425z"/><path fill="#55ACEE" d="M12.776 22.771c.4-.141.798-.159 1.159.017.436.212.673.642.673.799 0 .077-.266.391-.403.079-.152-.348-.805-.878-1.429-.895zm-.69.504c.36-.127.719-.143 1.044.015.393.191.606.578.606.719 0 .069-.239.352-.363.071-.137-.313-.725-.789-1.287-.805z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/26f7-1f3fe.svg b/public/emoji/26f7-1f3fe.svg
index 658c3dba6671f3794c81047dc882a1e944b59ea6..cb4c3011a241d0035329f877f171c6f5f3dd9c2f 100644
--- a/public/emoji/26f7-1f3fe.svg
+++ b/public/emoji/26f7-1f3fe.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#E1E8ED" d="M36 13.062V32s0 4-4 4H4c-4 0-4-4-4-4v-4.938s17-10 36-14z"/><path fill="#8899A6" d="M14.751 24.46c.167.177.14.473-.062.662-.201.189-.5.2-.666.023l-6.647-7.052c-.167-.177-.139-.474.062-.664.201-.189.499-.199.666-.022l6.647 7.053z"/><path fill="#AA8ED6" d="M26.812 17.809c.435.516.086 1.301-.777 1.756L6.571 29.783c-1.812.876-4.896-.04-5.271-.79-.416-.832 1.193-1.11 2.057-1.563l20.322-10.67c.863-.453 1.914-.401 2.349.113l.784.936zm5.013 4.535c.435.516.086 1.301-.777 1.756L11.583 34.318c-1.812.876-4.896-.04-5.271-.79-.416-.832 1.193-1.11 2.057-1.563l20.322-10.67c.863-.453 1.914-.4 2.349.113l.785.936z"/><path fill="#67757F" d="M13.497 25.772c.273-.041.543-.143.787-.311l2.151-1.189c1.08-.562.68-1.912.614-2.359l-.621-2.793 2.564-3.298c.627-.804.48-3.3-.324-3.926-.806-.626-1.965-.479-2.589.325l-3.05 3.922c-.31.398-.443.907-.368 1.406l.633 4.218-1.118.664c-.837.582-1.043 1.732-.462 2.568.414.596 1.112.871 1.783.773z"/><path fill="#67757F" d="M19.594 29.781c.264-.083 2.75-1.562 2.75-1.562.865-.688.323-2.444.168-2.869l-1.438-3.923 1.85-3.745c.451-.913.076-2.021-.838-2.471-.914-.452-2.021-.075-2.471.837l-2.2 4.455c-.224.454-.251.978-.079 1.452l1.469 4.005-1.004.779c-.731.71-.747 1.878-.037 2.609.506.518 1.183.639 1.83.433z"/><path fill="#BBDDF5" d="M9.639 19.396c3.667-1.292 5.389-6.467 5.573-7.052.331-1.054-.254-2.177-1.308-2.508-1.053-.331-2.174.252-2.507 1.304-.507 1.588-1.8 4.03-3.088 4.484-1.042.367-1.589 1.509-1.222 2.551.368 1.042 1.51 1.589 2.552 1.221z"/><path fill="#8899A6" d="M34.844 21.326c.228.156.285.467.129.693-.157.228-.468.287-.694.129l-9.062-6.236c-.228-.157-.286-.468-.129-.696.156-.227.468-.285.695-.128l9.061 6.238z"/><path fill="#BBDDF5" d="M27.002 17.521c.791-.279 1.351-1.038 1.335-1.921-.058-3.346-1.616-5.92-4.392-7.249-1.964-.94-3.863-.937-4.073-.933-1.103.019-1.985.929-1.966 2.034.019 1.101.923 1.978 2.022 1.966 1.02-.002 4.342.301 4.409 4.251.02 1.104.93 1.984 2.033 1.965.223-.004.436-.044.632-.113z"/><path fill="#67757F" d="M15.132 16.931c.642 1.824 2.641 2.781 4.464 2.138 1.823-.642 2.78-2.641 2.138-4.464l-1.329-3.773c-.643-1.823-2.641-2.78-4.464-2.138-1.823.643-2.78 2.641-2.138 4.464l1.329 3.773z"/><path fill="#BBDDF5" d="M11.417 12.409c.367 1.042 1.509 1.588 2.551 1.222l6.601-2.327c1.042-.367 1.589-1.509 1.222-2.551-.366-1.042-1.509-1.589-2.551-1.222l-6.602 2.326c-1.04.368-1.587 1.51-1.221 2.552z"/><path fill="#BBDDF5" d="M17 18c-2.614-.366-3.175-1.493-3.244-1.69l-1.15-3.261c-.83-2.358 1.723-3.258 3.414-3.854 1.69-.595 3.61-.074 5.075.863 2.822 1.804 2.347 6.303 2.347 6.303.005.343-.075.859-.171.993-.061.084-2.188 1.218-6.271.646z"/><path fill="#1C6399" d="M29.996 3.938l-1.119-2.653c-.076-.181-.273-.295-.487-.286-.129.006-3.21.174-7.169 3.112-3.748 2.78-4.634 2.82-6.578 2.906l-2.997.133c-.133.006-.257.059-.347.148-.506.498-.615 1.17-.291 1.799.411.796 1.623 1.614 3.795 1.517 1.437-.064 3.482-1.196 5.851-2.507 2.91-1.61 6.208-3.436 8.894-3.555.161-.007.309-.083.396-.205.09-.122.11-.274.052-.409z"/><path fill="#AF7E57" d="M16.405 4.29c.734 2.083-.36 4.368-2.443 5.102s-4.368-.36-5.102-2.443c-.734-2.084.692-3.425 2.776-4.159 2.083-.735 4.035-.584 4.769 1.5z"/><path fill="#9AAAB4" d="M10.361 6.419c1.886-.665 3.44-2.272 3.772-1.329.333.943.997 2.83 2.883 2.165 1.886-.665.503-7.599-5.156-5.605-5.657 1.994-4.328 5.766-1.499 4.769z"/><path fill="#BDDDF4" d="M11.471 6.559c.275.781-.135 1.638-.917 1.913-.781.275-1.637-.135-1.913-.917-.275-.781.135-1.637.916-1.913.782-.275 1.638.135 1.914.917z"/><path fill="#67757F" d="M10.721 8.943c-1.041.367-2.185-.181-2.552-1.221-.366-1.041.182-2.185 1.222-2.552s2.185.182 2.551 1.222c.367 1.041-.181 2.185-1.221 2.551zm-.997-2.829c-.52.183-.794.755-.611 1.275.183.52.755.794 1.275.611.52-.183.794-.755.611-1.275-.183-.52-.755-.794-1.275-.611z"/><path fill="#BDDDF4" d="M14.3 5.562c.275.781-.135 1.638-.917 1.913-.781.275-1.638-.135-1.913-.916-.275-.782.135-1.638.916-1.914.782-.275 1.639.135 1.914.917z"/><path fill="#67757F" d="M13.55 7.946c-1.04.367-2.184-.182-2.551-1.222s.181-2.185 1.222-2.551c1.04-.366 2.185.182 2.551 1.222.366 1.041-.182 2.185-1.222 2.551zm-.997-2.829c-.52.183-.794.755-.611 1.275.183.52.755.794 1.275.611.52-.183.794-.755.611-1.275-.182-.521-.755-.794-1.275-.611z"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#E1E8ED" d="M36 13.062V32s0 4-4 4H4c-4 0-4-4-4-4v-4.938s17-10 36-14z"/><path fill="#8899A7" d="M14.751 24.46c.167.177.14.473-.062.662-.201.189-.5.2-.666.023l-6.647-7.052c-.167-.177-.139-.474.062-.664.201-.189.499-.199.666-.022l6.647 7.053z"/><path fill="#AA8ED6" d="M26.812 17.809c.435.516.086 1.301-.777 1.756L6.571 29.783c-1.812.876-4.896-.04-5.271-.79-.416-.832 1.193-1.11 2.057-1.563l20.322-10.67c.863-.453 1.914-.401 2.349.113l.784.936z"/><path fill="#1C6399" d="M13.562 21.828c-.234.641-1.078 1.061-1.625 1.468s-.641.766-.641 1.204.328 1.047 1.656 1 2.125-.703 2.391-.969.531-.375.547-.328.859-.372.938-.616c.078-.243.047-1.29-.219-1.853s-3.047.094-3.047.094z"/><path fill="#AA8ED6" d="M31.825 22.344c.435.516.086 1.301-.777 1.756L11.583 34.318c-1.812.876-4.896-.04-5.271-.79-.416-.832 1.193-1.11 2.057-1.563l20.322-10.67c.863-.453 1.914-.4 2.349.113l.785.936z"/><path fill="#1C6399" d="M19.344 26c-.234.641-1.078 1.061-1.625 1.468s-.641.766-.641 1.204.328 1.047 1.656 1 2.125-.703 2.391-.969.531-.375.547-.328.859-.372.938-.616c.078-.243.047-1.29-.219-1.853S19.344 26 19.344 26z"/><path fill="#55ACEE" d="M18.558 26.942c.4-.141.798-.159 1.159.017.436.212.673.642.673.799 0 .077-.266.391-.403.079-.153-.347-.806-.877-1.429-.895zm-.69.505c.36-.127.719-.143 1.044.015.393.191.606.578.606.719 0 .069-.239.352-.363.071-.138-.313-.726-.789-1.287-.805z"/><path fill="#8899A7" d="M34.844 21.326c.228.156.285.467.129.693-.157.228-.468.287-.694.129l-9.062-6.236c-.228-.157-.286-.468-.129-.696.156-.227.468-.285.695-.128l9.061 6.238z"/><path fill="#1C6399" d="M24.688 14.404c-.312.958-.676 1.875-.312 2.412.359.531 1.672 1.382 2.406 1.278s1.469-1.75.927-3.21c-.312-.841-3.021-.48-3.021-.48z"/><path fill="#67757F" d="M21.733 14.605l-7.449-.077-1.255 1.614c-.31.398-.467 1.01-.467 1.337-.001.833.562 2.792.732 4.287.181 1.598 3.542.793 3.497.192-.073-.972.11-1.64-.302-2.511-.078-.165.199-.662.199-.662.415.24.872.395 1.353.449l-.627 1.269c-.224.454-.259 1.109-.086 1.584 0 0 1.328 3.135 1.476 3.874.323 1.602 4.206.488 3.706-.61-.595-1.308-.553-2.954-1.438-3.923.905-1.135 2.197-2.59 2.041-3.979.002-.001-1.319-2.672-1.38-2.844z"/><path fill="#BBDDF5" d="M21.062 7.057c-.524-.108-6.586 2.12-8.108 2.69-1.959.733-1.381 2.407-2.238 3.944-.459.823-1.578 1.197-2.252 1.815-.7.643-.278 1.564.196 2.262.794 1.169 1.585 1.244 2.766.487.916-.587 1.594-1.51 2.162-2.422.724 2.055 3.283 2.263 5.183 2.32 1.193.036 2.42-.056 3.566-.407.837-.257 1.119-.397 1.105-1.385 0 0 .222-2.11-.544-4.019.385.302.737.501.927.959.152.369.08.794.196 1.156.165.511.585.7 1.087.866.607.201 1.322.321 1.963.252.87-.094.849-.441.778-1.294-.129-1.561-.546-3.25-1.748-4.316-1.411-1.25-3.16-2.52-5.039-2.908z"/><path fill="#1C6399" d="M29.996 3.938l-1.119-2.653c-.076-.181-.273-.295-.487-.286-.129.006-3.21.174-7.169 3.112-3.748 2.78-4.634 2.82-6.578 2.906l-2.997.133c-.133.006-.257.059-.347.148-.506.498-.615 1.17-.291 1.799.411.796 1.623 1.614 3.795 1.517 1.437-.064 3.482-1.196 5.851-2.507 2.91-1.61 6.208-3.436 8.894-3.555.161-.007.309-.083.396-.205.09-.122.11-.274.052-.409z"/><path fill="#AF7E57" d="M16.405 4.29c.734 2.083-.36 4.368-2.443 5.102s-4.368-.36-5.102-2.443c-.734-2.084.692-3.425 2.776-4.159 2.083-.735 4.035-.584 4.769 1.5z"/><path fill="#9AAAB4" d="M10.361 6.419c1.886-.665 3.44-2.272 3.772-1.329.333.943.997 2.83 2.883 2.165 1.886-.665.503-7.599-5.156-5.605-5.657 1.994-4.328 5.766-1.499 4.769z"/><circle fill="#67757F" cx="10.056" cy="7.057" r="2"/><circle fill="#BDDDF4" cx="10.056" cy="7.057" r="1"/><circle fill="#67757F" cx="12.891" cy="6.062" r="2"/><circle fill="#BDDDF4" cx="12.891" cy="6.062" r="1"/><path fill="#1C6399" d="M8.312 16.373c-.907.382-1.531 1.127-1.703 1.517s.358 1.815 1.703 2.219 1.485-1.297 1.813-1.609-.844-2.535-1.813-2.127z"/><path fill="#8899A7" d="M7.387 18.082l-.151-.161c-.167-.177-.139-.474.062-.664.201-.189.499-.199.666-.022 0 0 .092.095.151.161.22.245-.539.892-.728.686z"/><path fill="#004A77" d="M9.818 19.122c.117-.394-.157-1.006-.338-1.249-.337.439-.792.91-1.184.808.084.314.578.204.885.016.307-.189.637.425.637.425z"/><path fill="#55ACEE" d="M12.776 22.771c.4-.141.798-.159 1.159.017.436.212.673.642.673.799 0 .077-.266.391-.403.079-.152-.348-.805-.878-1.429-.895zm-.69.504c.36-.127.719-.143 1.044.015.393.191.606.578.606.719 0 .069-.239.352-.363.071-.137-.313-.725-.789-1.287-.805z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/26f7-1f3ff.svg b/public/emoji/26f7-1f3ff.svg
index 1151022153a8e0a95d7636b9b5070b4a1a0b4432..4184e4a476d61b44320b3a9902929d16d78ade7f 100644
--- a/public/emoji/26f7-1f3ff.svg
+++ b/public/emoji/26f7-1f3ff.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#E1E8ED" d="M36 13.062V32s0 4-4 4H4c-4 0-4-4-4-4v-4.938s17-10 36-14z"/><path fill="#8899A6" d="M14.751 24.46c.167.177.14.473-.062.662-.201.189-.5.2-.666.023l-6.647-7.052c-.167-.177-.139-.474.062-.664.201-.189.499-.199.666-.022l6.647 7.053z"/><path fill="#AA8ED6" d="M26.812 17.809c.435.516.086 1.301-.777 1.756L6.571 29.783c-1.812.876-4.896-.04-5.271-.79-.416-.832 1.193-1.11 2.057-1.563l20.322-10.67c.863-.453 1.914-.401 2.349.113l.784.936zm5.013 4.535c.435.516.086 1.301-.777 1.756L11.583 34.318c-1.812.876-4.896-.04-5.271-.79-.416-.832 1.193-1.11 2.057-1.563l20.322-10.67c.863-.453 1.914-.4 2.349.113l.785.936z"/><path fill="#67757F" d="M13.497 25.772c.273-.041.543-.143.787-.311l2.151-1.189c1.08-.562.68-1.912.614-2.359l-.621-2.793 2.564-3.298c.627-.804.48-3.3-.324-3.926-.806-.626-1.965-.479-2.589.325l-3.05 3.922c-.31.398-.443.907-.368 1.406l.633 4.218-1.118.664c-.837.582-1.043 1.732-.462 2.568.414.596 1.112.871 1.783.773z"/><path fill="#67757F" d="M19.594 29.781c.264-.083 2.75-1.562 2.75-1.562.865-.688.323-2.444.168-2.869l-1.438-3.923 1.85-3.745c.451-.913.076-2.021-.838-2.471-.914-.452-2.021-.075-2.471.837l-2.2 4.455c-.224.454-.251.978-.079 1.452l1.469 4.005-1.004.779c-.731.71-.747 1.878-.037 2.609.506.518 1.183.639 1.83.433z"/><path fill="#BBDDF5" d="M9.639 19.396c3.667-1.292 5.389-6.467 5.573-7.052.331-1.054-.254-2.177-1.308-2.508-1.053-.331-2.174.252-2.507 1.304-.507 1.588-1.8 4.03-3.088 4.484-1.042.367-1.589 1.509-1.222 2.551.368 1.042 1.51 1.589 2.552 1.221z"/><path fill="#8899A6" d="M34.844 21.326c.228.156.285.467.129.693-.157.228-.468.287-.694.129l-9.062-6.236c-.228-.157-.286-.468-.129-.696.156-.227.468-.285.695-.128l9.061 6.238z"/><path fill="#BBDDF5" d="M27.002 17.521c.791-.279 1.351-1.038 1.335-1.921-.058-3.346-1.616-5.92-4.392-7.249-1.964-.94-3.863-.937-4.073-.933-1.103.019-1.985.929-1.966 2.034.019 1.101.923 1.978 2.022 1.966 1.02-.002 4.342.301 4.409 4.251.02 1.104.93 1.984 2.033 1.965.223-.004.436-.044.632-.113z"/><path fill="#67757F" d="M15.132 16.931c.642 1.824 2.641 2.781 4.464 2.138 1.823-.642 2.78-2.641 2.138-4.464l-1.329-3.773c-.643-1.823-2.641-2.78-4.464-2.138-1.823.643-2.78 2.641-2.138 4.464l1.329 3.773z"/><path fill="#BBDDF5" d="M11.417 12.409c.367 1.042 1.509 1.588 2.551 1.222l6.601-2.327c1.042-.367 1.589-1.509 1.222-2.551-.366-1.042-1.509-1.589-2.551-1.222l-6.602 2.326c-1.04.368-1.587 1.51-1.221 2.552z"/><path fill="#BBDDF5" d="M17 18c-2.614-.366-3.175-1.493-3.244-1.69l-1.15-3.261c-.83-2.358 1.723-3.258 3.414-3.854 1.69-.595 3.61-.074 5.075.863 2.822 1.804 2.347 6.303 2.347 6.303.005.343-.075.859-.171.993-.061.084-2.188 1.218-6.271.646z"/><path fill="#1C6399" d="M29.996 3.938l-1.119-2.653c-.076-.181-.273-.295-.487-.286-.129.006-3.21.174-7.169 3.112-3.748 2.78-4.634 2.82-6.578 2.906l-2.997.133c-.133.006-.257.059-.347.148-.506.498-.615 1.17-.291 1.799.411.796 1.623 1.614 3.795 1.517 1.437-.064 3.482-1.196 5.851-2.507 2.91-1.61 6.208-3.436 8.894-3.555.161-.007.309-.083.396-.205.09-.122.11-.274.052-.409z"/><path fill="#7C533E" d="M16.405 4.29c.734 2.083-.36 4.368-2.443 5.102s-4.368-.36-5.102-2.443c-.734-2.084.692-3.425 2.776-4.159 2.083-.735 4.035-.584 4.769 1.5z"/><path fill="#9AAAB4" d="M10.361 6.419c1.886-.665 3.44-2.272 3.772-1.329.333.943.997 2.83 2.883 2.165 1.886-.665.503-7.599-5.156-5.605-5.657 1.994-4.328 5.766-1.499 4.769z"/><path fill="#BDDDF4" d="M11.471 6.559c.275.781-.135 1.638-.917 1.913-.781.275-1.637-.135-1.913-.917-.275-.781.135-1.637.916-1.913.782-.275 1.638.135 1.914.917z"/><path fill="#67757F" d="M10.721 8.943c-1.041.367-2.185-.181-2.552-1.221-.366-1.041.182-2.185 1.222-2.552s2.185.182 2.551 1.222c.367 1.041-.181 2.185-1.221 2.551zm-.997-2.829c-.52.183-.794.755-.611 1.275.183.52.755.794 1.275.611.52-.183.794-.755.611-1.275-.183-.52-.755-.794-1.275-.611z"/><path fill="#BDDDF4" d="M14.3 5.562c.275.781-.135 1.638-.917 1.913-.781.275-1.638-.135-1.913-.916-.275-.782.135-1.638.916-1.914.782-.275 1.639.135 1.914.917z"/><path fill="#67757F" d="M13.55 7.946c-1.04.367-2.184-.182-2.551-1.222s.181-2.185 1.222-2.551c1.04-.366 2.185.182 2.551 1.222.366 1.041-.182 2.185-1.222 2.551zm-.997-2.829c-.52.183-.794.755-.611 1.275.183.52.755.794 1.275.611.52-.183.794-.755.611-1.275-.182-.521-.755-.794-1.275-.611z"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#E1E8ED" d="M36 13.062V32s0 4-4 4H4c-4 0-4-4-4-4v-4.938s17-10 36-14z"/><path fill="#8899A7" d="M14.751 24.46c.167.177.14.473-.062.662-.201.189-.5.2-.666.023l-6.647-7.052c-.167-.177-.139-.474.062-.664.201-.189.499-.199.666-.022l6.647 7.053z"/><path fill="#AA8ED6" d="M26.812 17.809c.435.516.086 1.301-.777 1.756L6.571 29.783c-1.812.876-4.896-.04-5.271-.79-.416-.832 1.193-1.11 2.057-1.563l20.322-10.67c.863-.453 1.914-.401 2.349.113l.784.936z"/><path fill="#1C6399" d="M13.562 21.828c-.234.641-1.078 1.061-1.625 1.468s-.641.766-.641 1.204.328 1.047 1.656 1 2.125-.703 2.391-.969.531-.375.547-.328.859-.372.938-.616c.078-.243.047-1.29-.219-1.853s-3.047.094-3.047.094z"/><path fill="#AA8ED6" d="M31.825 22.344c.435.516.086 1.301-.777 1.756L11.583 34.318c-1.812.876-4.896-.04-5.271-.79-.416-.832 1.193-1.11 2.057-1.563l20.322-10.67c.863-.453 1.914-.4 2.349.113l.785.936z"/><path fill="#1C6399" d="M19.344 26c-.234.641-1.078 1.061-1.625 1.468s-.641.766-.641 1.204.328 1.047 1.656 1 2.125-.703 2.391-.969.531-.375.547-.328.859-.372.938-.616c.078-.243.047-1.29-.219-1.853S19.344 26 19.344 26z"/><path fill="#55ACEE" d="M18.558 26.942c.4-.141.798-.159 1.159.017.436.212.673.642.673.799 0 .077-.266.391-.403.079-.153-.347-.806-.877-1.429-.895zm-.69.505c.36-.127.719-.143 1.044.015.393.191.606.578.606.719 0 .069-.239.352-.363.071-.138-.313-.726-.789-1.287-.805z"/><path fill="#8899A7" d="M34.844 21.326c.228.156.285.467.129.693-.157.228-.468.287-.694.129l-9.062-6.236c-.228-.157-.286-.468-.129-.696.156-.227.468-.285.695-.128l9.061 6.238z"/><path fill="#1C6399" d="M24.688 14.404c-.312.958-.676 1.875-.312 2.412.359.531 1.672 1.382 2.406 1.278s1.469-1.75.927-3.21c-.312-.841-3.021-.48-3.021-.48z"/><path fill="#67757F" d="M21.733 14.605l-7.449-.077-1.255 1.614c-.31.398-.467 1.01-.467 1.337-.001.833.562 2.792.732 4.287.181 1.598 3.542.793 3.497.192-.073-.972.11-1.64-.302-2.511-.078-.165.199-.662.199-.662.415.24.872.395 1.353.449l-.627 1.269c-.224.454-.259 1.109-.086 1.584 0 0 1.328 3.135 1.476 3.874.323 1.602 4.206.488 3.706-.61-.595-1.308-.553-2.954-1.438-3.923.905-1.135 2.197-2.59 2.041-3.979.002-.001-1.319-2.672-1.38-2.844z"/><path fill="#BBDDF5" d="M21.062 7.057c-.524-.108-6.586 2.12-8.108 2.69-1.959.733-1.381 2.407-2.238 3.944-.459.823-1.578 1.197-2.252 1.815-.7.643-.278 1.564.196 2.262.794 1.169 1.585 1.244 2.766.487.916-.587 1.594-1.51 2.162-2.422.724 2.055 3.283 2.263 5.183 2.32 1.193.036 2.42-.056 3.566-.407.837-.257 1.119-.397 1.105-1.385 0 0 .222-2.11-.544-4.019.385.302.737.501.927.959.152.369.08.794.196 1.156.165.511.585.7 1.087.866.607.201 1.322.321 1.963.252.87-.094.849-.441.778-1.294-.129-1.561-.546-3.25-1.748-4.316-1.411-1.25-3.16-2.52-5.039-2.908z"/><path fill="#1C6399" d="M29.996 3.938l-1.119-2.653c-.076-.181-.273-.295-.487-.286-.129.006-3.21.174-7.169 3.112-3.748 2.78-4.634 2.82-6.578 2.906l-2.997.133c-.133.006-.257.059-.347.148-.506.498-.615 1.17-.291 1.799.411.796 1.623 1.614 3.795 1.517 1.437-.064 3.482-1.196 5.851-2.507 2.91-1.61 6.208-3.436 8.894-3.555.161-.007.309-.083.396-.205.09-.122.11-.274.052-.409z"/><path fill="#7C533E" d="M16.405 4.29c.734 2.083-.36 4.368-2.443 5.102s-4.368-.36-5.102-2.443c-.734-2.084.692-3.425 2.776-4.159 2.083-.735 4.035-.584 4.769 1.5z"/><path fill="#9AAAB4" d="M10.361 6.419c1.886-.665 3.44-2.272 3.772-1.329.333.943.997 2.83 2.883 2.165 1.886-.665.503-7.599-5.156-5.605-5.657 1.994-4.328 5.766-1.499 4.769z"/><circle fill="#67757F" cx="10.056" cy="7.057" r="2"/><circle fill="#BDDDF4" cx="10.056" cy="7.057" r="1"/><circle fill="#67757F" cx="12.891" cy="6.062" r="2"/><circle fill="#BDDDF4" cx="12.891" cy="6.062" r="1"/><path fill="#1C6399" d="M8.312 16.373c-.907.382-1.531 1.127-1.703 1.517s.358 1.815 1.703 2.219 1.485-1.297 1.813-1.609-.844-2.535-1.813-2.127z"/><path fill="#8899A7" d="M7.387 18.082l-.151-.161c-.167-.177-.139-.474.062-.664.201-.189.499-.199.666-.022 0 0 .092.095.151.161.22.245-.539.892-.728.686z"/><path fill="#004A77" d="M9.818 19.122c.117-.394-.157-1.006-.338-1.249-.337.439-.792.91-1.184.808.084.314.578.204.885.016.307-.189.637.425.637.425z"/><path fill="#55ACEE" d="M12.776 22.771c.4-.141.798-.159 1.159.017.436.212.673.642.673.799 0 .077-.266.391-.403.079-.152-.348-.805-.878-1.429-.895zm-.69.504c.36-.127.719-.143 1.044.015.393.191.606.578.606.719 0 .069-.239.352-.363.071-.137-.313-.725-.789-1.287-.805z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/26f7.svg b/public/emoji/26f7.svg
index 641d07275f3eb8869e8019415347f650a51344e1..ade6f21bd7ea17ec8cb6c9208ff54876cf060dc8 100644
--- a/public/emoji/26f7.svg
+++ b/public/emoji/26f7.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#E1E8ED" d="M36 13.062V32s0 4-4 4H4c-4 0-4-4-4-4v-4.938s17-10 36-14z"/><path fill="#8899A6" d="M14.751 24.46c.167.177.14.473-.062.662-.201.189-.5.2-.666.023l-6.647-7.052c-.167-.177-.139-.474.062-.664.201-.189.499-.199.666-.022l6.647 7.053z"/><path fill="#AA8ED6" d="M26.812 17.809c.435.516.086 1.301-.777 1.756L6.571 29.783c-1.812.876-4.896-.04-5.271-.79-.416-.832 1.193-1.11 2.057-1.563l20.322-10.67c.863-.453 1.914-.401 2.349.113l.784.936zm5.013 4.535c.435.516.086 1.301-.777 1.756L11.583 34.318c-1.812.876-4.896-.04-5.271-.79-.416-.832 1.193-1.11 2.057-1.563l20.322-10.67c.863-.453 1.914-.4 2.349.113l.785.936z"/><path fill="#67757F" d="M13.497 25.772c.273-.041.543-.143.787-.311l2.151-1.189c1.08-.562.68-1.912.614-2.359l-.621-2.793 2.564-3.298c.627-.804.48-3.3-.324-3.926-.806-.626-1.965-.479-2.589.325l-3.05 3.922c-.31.398-.443.907-.368 1.406l.633 4.218-1.118.664c-.837.582-1.043 1.732-.462 2.568.414.596 1.112.871 1.783.773z"/><path fill="#67757F" d="M19.594 29.781c.264-.083 2.75-1.562 2.75-1.562.865-.688.323-2.444.168-2.869l-1.438-3.923 1.85-3.745c.451-.913.076-2.021-.838-2.471-.914-.452-2.021-.075-2.471.837l-2.2 4.455c-.224.454-.251.978-.079 1.452l1.469 4.005-1.004.779c-.731.71-.747 1.878-.037 2.609.506.518 1.183.639 1.83.433z"/><path fill="#BBDDF5" d="M9.639 19.396c3.667-1.292 5.389-6.467 5.573-7.052.331-1.054-.254-2.177-1.308-2.508-1.053-.331-2.174.252-2.507 1.304-.507 1.588-1.8 4.03-3.088 4.484-1.042.367-1.589 1.509-1.222 2.551.368 1.042 1.51 1.589 2.552 1.221z"/><path fill="#8899A6" d="M34.844 21.326c.228.156.285.467.129.693-.157.228-.468.287-.694.129l-9.062-6.236c-.228-.157-.286-.468-.129-.696.156-.227.468-.285.695-.128l9.061 6.238z"/><path fill="#BBDDF5" d="M27.002 17.521c.791-.279 1.351-1.038 1.335-1.921-.058-3.346-1.616-5.92-4.392-7.249-1.964-.94-3.863-.937-4.073-.933-1.103.019-1.985.929-1.966 2.034.019 1.101.923 1.978 2.022 1.966 1.02-.002 4.342.301 4.409 4.251.02 1.104.93 1.984 2.033 1.965.223-.004.436-.044.632-.113z"/><path fill="#67757F" d="M15.132 16.931c.642 1.824 2.641 2.781 4.464 2.138 1.823-.642 2.78-2.641 2.138-4.464l-1.329-3.773c-.643-1.823-2.641-2.78-4.464-2.138-1.823.643-2.78 2.641-2.138 4.464l1.329 3.773z"/><path fill="#BBDDF5" d="M11.417 12.409c.367 1.042 1.509 1.588 2.551 1.222l6.601-2.327c1.042-.367 1.589-1.509 1.222-2.551-.366-1.042-1.509-1.589-2.551-1.222l-6.602 2.326c-1.04.368-1.587 1.51-1.221 2.552z"/><path fill="#BBDDF5" d="M17 18c-2.614-.366-3.175-1.493-3.244-1.69l-1.15-3.261c-.83-2.358 1.723-3.258 3.414-3.854 1.69-.595 3.61-.074 5.075.863 2.822 1.804 2.347 6.303 2.347 6.303.005.343-.075.859-.171.993-.061.084-2.188 1.218-6.271.646z"/><path fill="#1C6399" d="M29.996 3.938l-1.119-2.653c-.076-.181-.273-.295-.487-.286-.129.006-3.21.174-7.169 3.112-3.748 2.78-4.634 2.82-6.578 2.906l-2.997.133c-.133.006-.257.059-.347.148-.506.498-.615 1.17-.291 1.799.411.796 1.623 1.614 3.795 1.517 1.437-.064 3.482-1.196 5.851-2.507 2.91-1.61 6.208-3.436 8.894-3.555.161-.007.309-.083.396-.205.09-.122.11-.274.052-.409z"/><path fill="#FFDC5D" d="M16.405 4.29c.734 2.083-.36 4.368-2.443 5.102s-4.368-.36-5.102-2.443c-.734-2.084.692-3.425 2.776-4.159 2.083-.735 4.035-.584 4.769 1.5z"/><path fill="#9AAAB4" d="M10.361 6.419c1.886-.665 3.44-2.272 3.772-1.329.333.943.997 2.83 2.883 2.165 1.886-.665.503-7.599-5.156-5.605-5.657 1.994-4.328 5.766-1.499 4.769z"/><path fill="#BDDDF4" d="M11.471 6.559c.275.781-.135 1.638-.917 1.913-.781.275-1.637-.135-1.913-.917-.275-.781.135-1.637.916-1.913.782-.275 1.638.135 1.914.917z"/><path fill="#67757F" d="M10.721 8.943c-1.041.367-2.185-.181-2.552-1.221-.366-1.041.182-2.185 1.222-2.552s2.185.182 2.551 1.222c.367 1.041-.181 2.185-1.221 2.551zm-.997-2.829c-.52.183-.794.755-.611 1.275.183.52.755.794 1.275.611.52-.183.794-.755.611-1.275-.183-.52-.755-.794-1.275-.611z"/><path fill="#BDDDF4" d="M14.3 5.562c.275.781-.135 1.638-.917 1.913-.781.275-1.638-.135-1.913-.916-.275-.782.135-1.638.916-1.914.782-.275 1.639.135 1.914.917z"/><path fill="#67757F" d="M13.55 7.946c-1.04.367-2.184-.182-2.551-1.222s.181-2.185 1.222-2.551c1.04-.366 2.185.182 2.551 1.222.366 1.041-.182 2.185-1.222 2.551zm-.997-2.829c-.52.183-.794.755-.611 1.275.183.52.755.794 1.275.611.52-.183.794-.755.611-1.275-.182-.521-.755-.794-1.275-.611z"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#E1E8ED" d="M36 13.062V32s0 4-4 4H4c-4 0-4-4-4-4v-4.938s17-10 36-14z"/><path fill="#8899A7" d="M14.751 24.46c.167.177.14.473-.062.662-.201.189-.5.2-.666.023l-6.647-7.052c-.167-.177-.139-.474.062-.664.201-.189.499-.199.666-.022l6.647 7.053z"/><path fill="#AA8ED6" d="M26.812 17.809c.435.516.086 1.301-.777 1.756L6.571 29.783c-1.812.876-4.896-.04-5.271-.79-.416-.832 1.193-1.11 2.057-1.563l20.322-10.67c.863-.453 1.914-.401 2.349.113l.784.936z"/><path fill="#1C6399" d="M13.562 21.828c-.234.641-1.078 1.061-1.625 1.468s-.641.766-.641 1.204.328 1.047 1.656 1 2.125-.703 2.391-.969.531-.375.547-.328.859-.372.938-.616c.078-.243.047-1.29-.219-1.853s-3.047.094-3.047.094z"/><path fill="#AA8ED6" d="M31.825 22.344c.435.516.086 1.301-.777 1.756L11.583 34.318c-1.812.876-4.896-.04-5.271-.79-.416-.832 1.193-1.11 2.057-1.563l20.322-10.67c.863-.453 1.914-.4 2.349.113l.785.936z"/><path fill="#1C6399" d="M19.344 26c-.234.641-1.078 1.061-1.625 1.468s-.641.766-.641 1.204.328 1.047 1.656 1 2.125-.703 2.391-.969.531-.375.547-.328.859-.372.938-.616c.078-.243.047-1.29-.219-1.853S19.344 26 19.344 26z"/><path fill="#55ACEE" d="M18.558 26.942c.4-.141.798-.159 1.159.017.436.212.673.642.673.799 0 .077-.266.391-.403.079-.153-.347-.806-.877-1.429-.895zm-.69.505c.36-.127.719-.143 1.044.015.393.191.606.578.606.719 0 .069-.239.352-.363.071-.138-.313-.726-.789-1.287-.805z"/><path fill="#8899A7" d="M34.844 21.326c.228.156.285.467.129.693-.157.228-.468.287-.694.129l-9.062-6.236c-.228-.157-.286-.468-.129-.696.156-.227.468-.285.695-.128l9.061 6.238z"/><path fill="#1C6399" d="M24.688 14.404c-.312.958-.676 1.875-.312 2.412.359.531 1.672 1.382 2.406 1.278s1.469-1.75.927-3.21c-.312-.841-3.021-.48-3.021-.48z"/><path fill="#67757F" d="M21.733 14.605l-7.449-.077-1.255 1.614c-.31.398-.467 1.01-.467 1.337-.001.833.562 2.792.732 4.287.181 1.598 3.542.793 3.497.192-.073-.972.11-1.64-.302-2.511-.078-.165.199-.662.199-.662.415.24.872.395 1.353.449l-.627 1.269c-.224.454-.259 1.109-.086 1.584 0 0 1.328 3.135 1.476 3.874.323 1.602 4.206.488 3.706-.61-.595-1.308-.553-2.954-1.438-3.923.905-1.135 2.197-2.59 2.041-3.979.002-.001-1.319-2.672-1.38-2.844z"/><path fill="#BBDDF5" d="M21.062 7.057c-.524-.108-6.586 2.12-8.108 2.69-1.959.733-1.381 2.407-2.238 3.944-.459.823-1.578 1.197-2.252 1.815-.7.643-.278 1.564.196 2.262.794 1.169 1.585 1.244 2.766.487.916-.587 1.594-1.51 2.162-2.422.724 2.055 3.283 2.263 5.183 2.32 1.193.036 2.42-.056 3.566-.407.837-.257 1.119-.397 1.105-1.385 0 0 .222-2.11-.544-4.019.385.302.737.501.927.959.152.369.08.794.196 1.156.165.511.585.7 1.087.866.607.201 1.322.321 1.963.252.87-.094.849-.441.778-1.294-.129-1.561-.546-3.25-1.748-4.316-1.411-1.25-3.16-2.52-5.039-2.908z"/><path fill="#1C6399" d="M29.996 3.938l-1.119-2.653c-.076-.181-.273-.295-.487-.286-.129.006-3.21.174-7.169 3.112-3.748 2.78-4.634 2.82-6.578 2.906l-2.997.133c-.133.006-.257.059-.347.148-.506.498-.615 1.17-.291 1.799.411.796 1.623 1.614 3.795 1.517 1.437-.064 3.482-1.196 5.851-2.507 2.91-1.61 6.208-3.436 8.894-3.555.161-.007.309-.083.396-.205.09-.122.11-.274.052-.409z"/><path fill="#FFDC5D" d="M16.405 4.29c.734 2.083-.36 4.368-2.443 5.102s-4.368-.36-5.102-2.443c-.734-2.084.692-3.425 2.776-4.159 2.083-.735 4.035-.584 4.769 1.5z"/><path fill="#9AAAB4" d="M10.361 6.419c1.886-.665 3.44-2.272 3.772-1.329.333.943.997 2.83 2.883 2.165 1.886-.665.503-7.599-5.156-5.605-5.657 1.994-4.328 5.766-1.499 4.769z"/><circle fill="#67757F" cx="10.056" cy="7.057" r="2"/><circle fill="#BDDDF4" cx="10.056" cy="7.057" r="1"/><circle fill="#67757F" cx="12.891" cy="6.062" r="2"/><circle fill="#BDDDF4" cx="12.891" cy="6.062" r="1"/><path fill="#1C6399" d="M8.312 16.373c-.907.382-1.531 1.127-1.703 1.517s.358 1.815 1.703 2.219 1.485-1.297 1.813-1.609-.844-2.535-1.813-2.127z"/><path fill="#8899A7" d="M7.387 18.082l-.151-.161c-.167-.177-.139-.474.062-.664.201-.189.499-.199.666-.022 0 0 .092.095.151.161.22.245-.539.892-.728.686z"/><path fill="#004A77" d="M9.818 19.122c.117-.394-.157-1.006-.338-1.249-.337.439-.792.91-1.184.808.084.314.578.204.885.016.307-.189.637.425.637.425z"/><path fill="#55ACEE" d="M12.776 22.771c.4-.141.798-.159 1.159.017.436.212.673.642.673.799 0 .077-.266.391-.403.079-.152-.348-.805-.878-1.429-.895zm-.69.504c.36-.127.719-.143 1.044.015.393.191.606.578.606.719 0 .069-.239.352-.363.071-.137-.313-.725-.789-1.287-.805z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/26f9-1f3fb-200d-2640-fe0f.svg b/public/emoji/26f9-1f3fb-200d-2640-fe0f.svg
index 9f29fcee8a5d33d83195f697276aec163e610ae1..8a00ebc809aab032499a39bdd67702562b563dae 100644
--- a/public/emoji/26f9-1f3fb-200d-2640-fe0f.svg
+++ b/public/emoji/26f9-1f3fb-200d-2640-fe0f.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#F7DECE" d="M30.853 27.634c-.081 0-.163-.01-.243-.028l-7.476-1.668c-.403-.094-.713-.402-.81-.805l-1.216-5.066c-.068-.282-.023-.572.129-.819.151-.247.391-.421.672-.487.085-.021.171-.031.256-.031.502 0 .935.342 1.052.832l1.06 4.415 6.821 1.517c.283.065.522.237.676.483.153.246.202.536.137.818-.094.402-.403.713-.807.81-.083.019-.167.029-.251.029zM11.318 4.474c-1.158.564.52 2.167.439 3.483-.052.909 1.722.595 1.722.595s1.159-.564 1.425 1.455c.262 2.017 3.141 2.05 2.877.03-.266-2.016-2.131-2.69-1.612-4.435 1.239-4.176-4.851-1.128-4.851-1.128z"/><path fill="#F7DECE" d="M27.516 15.314c-.373.089-.779-.03-1.043-.342-2.682-3.189-8.798-3.763-8.859-3.769-.572-.05-.997-.556-.946-1.129.05-.572.548-.998 1.127-.947.286.024 7.034.65 10.275 4.503.37.441.313 1.098-.128 1.469-.129.107-.275.178-.426.215zM17.47 35.301c-.598.028-1.107-.435-1.135-1.031l-.448-8.575c-.011-.243.061-.486.203-.684l5.246-7.271c.184-.255.469-.417.782-.445.259-.023.518.048.73.2.235.17.391.421.438.707.046.286-.022.573-.191.806l-5.024 6.966.431 8.195c.022.48-.28.925-.737 1.079-.077.025-.158.043-.242.051l-.053.002z"/><path fill="#A0041E" d="M15.28 24.425l5.246-7.271c.672-.932 1.976-1.144 2.909-.47.934.673 1.144 1.977.471 2.909l-4.819 6.681c-.001-.001-4.083-1.467-3.807-1.849z"/><path fill="#BE1931" d="M21.352 25.366L20.136 20.3c-.27-1.119.421-2.245 1.541-2.513 1.119-.268 2.244.421 2.513 1.541l.915 3.814c-.001 0-3.569 2.993-3.753 2.224z"/><path fill="#F7DECE" d="M17.259 3.842c.537 2.238-.842 4.489-3.081 5.026-2.239.537-4.489-.842-5.026-3.081-.538-2.239.842-4.49 3.08-5.027 2.239-.537 4.49.842 5.027 3.082z"/><path fill="#292F33" d="M21.375 4.462c-1.083.083-2.14.092-4.208-1.976C15.792 1.111 14.564.273 11.834.643c-2.899.394-5.018 3.169-3 4.17.88.437 1.529.095 2.88.295 2.121.315 2.707 2.456 4.62 2.711 3.743.501 6.124-3.44 5.041-3.357z"/><ellipse transform="rotate(-80.781 7 24.32)" fill="#FFAC33" cx="7" cy="24.32" rx="4" ry="4"/><path fill="#C1694F" d="M8.075 24.126c.849.786 1.747 1.413 2.586 1.793.135-.307.223-.636.277-.978-.697-.337-1.44-.862-2.156-1.521l1.448-1.448c-.197-.271-.432-.51-.69-.724l-1.465 1.465c-.717-.779-1.286-1.595-1.615-2.343-.34.046-.669.121-.976.248.014.035.018.065.033.1.373.872 1.03 1.815 1.851 2.702l-1.442 1.442c-.883-.818-1.823-1.471-2.691-1.845-.111.322-.18.661-.206 1.014.706.336 1.462.868 2.189 1.538l-1.285 1.286c.214.258.453.492.724.69l1.268-1.268c.658.714 1.136 1.401 1.448 2.002.349-.033.685-.104 1.003-.22-.396-.834-1.015-1.712-1.737-2.495l1.436-1.438z"/><path fill="#DD2E44" d="M18.333 35.988c.383-.001.591-.366.572-.758-.03-.626-.072-.881-.072-.881-.062-.299-.324-.912-.688-.912-2.642 0-5.538.879-6.23 1.5-.409.367-.146 1.061.397 1.06l6.021-.009zm6.875-17.207c-.208.365-1.473-.525-2.99.281-2.156 1.146-3.339.467-3.339.467-3.486-5.595-6.243-8.149-2.809-11.024 1.097-.918 2.454-.523 3.663.76 2.913 3.089 5.684 9.152 5.475 9.516z"/><path fill="#DD2E44" d="M18.353 34.699h-1.977c-.185 0-.595-.158-.595-.35l.188-1.084c0-.193.096-.5.376-.5s.64.235.999.235.688-.522.96-.522c.211 0 .305.084.336.35l.193 1.521c0 .193-.295.35-.48.35zm14.494-8.875c.056-.379-.275-.638-.665-.677-.624-.062-.882-.058-.882-.058-.305.017-.949.186-1.003.546-.388 2.614.055 5.607.568 6.383.303.458 1.028.301 1.107-.237l.875-5.957z"/><path fill="#DD2E44" d="M31.575 25.615l-.291 1.955c-.027.183-.243.565-.434.537l-1.044-.345c-.19-.028-.481-.169-.439-.446.041-.277.326-.599.379-.954.053-.355-.415-.757-.375-1.026.031-.209.128-.289.396-.281l1.533.033c.19.029.302.344.275.527z"/><path fill="#F7DECE" d="M15.148 11.32c-.033.046-3.381 4.532-8.152 5.032l.002.02c-.483.051-.884.417-.931.919-.053.573.367 1.082.941 1.135.07.006.135-.014.203-.023l.003.021c5.678-.594 9.456-5.654 9.613-5.869l-1.679-1.235z"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#F7DECE" d="M26.29 26.753c-.53-.033-.658-.368-.708-.617-.16-.802-.275-1.489-.333-1.845l-3.604.707c.168.654.657 2.438 1.271 3.619.354.682.711.703 1.666.758 0 0 3.975-.139 6.542-.237.885-.034.973-1.48.215-1.657-.751-.176-1.595-.346-2.276-.413-.465-.044-2.533-.3-2.773-.315zm-12.431-3.068c-.57.514-.5.865-.312 1.803 0 0 1.113 3.738 1.854 6.2.265.881 1.698.641 1.679-.138-.019-.771-.067-1.63-.174-2.305-.073-.463-.346-2.528-.392-2.764-.102-.523.19-.73.419-.84.736-.356 1.371-.642 1.7-.786l-1.591-3.311c-.59.327-2.194 1.249-3.183 2.141z"/><path fill="#BE1931" d="M33.493 26.983c-.195-.018-.89-.026-1.139.032l-1.55.085c-.078.002-.137.069-.131.147.017.225.309.899.018 1.424-.195.351-.656.495-.688.679-.01.058.032.112.091.118 0 0 .284-.012.532.003.217.1.626.182.836.408.063.148.242.283.364.684.072.239.412 1.33.412 1.33.081.278.189.345.236.494.095.306.263 1.127.346 1.387.083.26.28.37.433.391.152.02.239-.016.239-.016s.385-.362.64-2.01c.15-.967.095-4.904.095-4.904l-.144-.114c-.143-.115-.384-.119-.59-.138z"/><path fill="#CCD6DD" d="M31.227 29.855c-.033 0-.066-.008-.097-.025-.097-.053-.132-.175-.078-.272l.17-.307c.054-.097.178-.131.271-.078.097.053.132.175.078.272l-.17.307c-.035.066-.104.103-.174.103z"/><path fill="#DD2E44" d="M33.882 29.325c-.243-.098-.797-.461-.953-.853-.141-.354-.241-1.312-.259-1.493.297-.028.753-.01.9.004.194.018.448.047.582.16.012.01-.22 1.64-.27 2.182z"/><path fill="#CCD6DD" d="M34.147 27.12s-.002.164-.079.276c-.077.113-.129.39-.149.596-.019.206-.105.981-.083 1.524.022.544.194 1.527.203 1.855s.003.839-.065 1.217c-.069.378-.142.715-.199.922-.073.267-.171.486-.285.639 0 0 .43-.03.757-.667.258-.503.402-.986.454-1.457.004-.036.112-1.291.163-1.918.037-.459.1-1.191.1-1.191.081-.868.1-1.309.061-1.475-.007-.029-.013-.152-.106-.279-.059-.083-.761-.153-.772-.042zm-2.472 3.287c-.074 0-.146-.042-.181-.113-.048-.099-.006-.219.094-.267l.316-.152c.102-.047.219-.006.268.094.048.099.006.219-.094.267l-.316.152c-.028.013-.057.019-.087.019zm.269.656c-.085 0-.164-.055-.191-.141-.032-.106.026-.218.132-.25l.354-.11c.109-.034.218.026.251.132.032.106-.026.218-.132.25l-.354.11c-.021.007-.04.009-.06.009zm.23.679c-.095 0-.179-.067-.196-.164-.021-.109.052-.213.16-.233l.334-.061c.117-.019.213.052.232.161.021.109-.052.213-.16.233l-.334.061-.036.003z"/><path fill="#BE1931" d="M18.11 33.515c-.031-.194-.196-.868-.314-1.095l-.467-1.48c-.021-.075-.101-.116-.175-.09-.214.073-.794.523-1.375.371-.388-.102-.642-.513-.828-.498-.059.005-.101.059-.092.117 0 0 .082.272.129.516-.043.235-.021.651-.188.911-.128.098-.214.305-.572.522-.213.129-1.186.729-1.186.729-.25.148-.287.269-.42.351-.273.168-1.026.535-1.257.68-.231.145-.289.363-.271.516.018.152.074.228.074.228s.446.283 2.106.121c.974-.095 4.774-1.125 4.774-1.125l.075-.167c.076-.168.02-.403-.013-.607z"/><path fill="#CCD6DD" d="M15.299 32.271c-.017 0-.033-.002-.051-.006l-.34-.089c-.106-.028-.171-.137-.143-.244.028-.107.132-.172.244-.143l.34.089c.106.028.171.137.143.244-.023.09-.104.149-.193.149z"/><path fill="#DD2E44" d="M15.938 34.472c.035-.26.248-.886.59-1.135.308-.224 1.211-.559 1.382-.622.101.281.197.727.22.873.031.192.06.447-.017.606-.05.105-1.547.178-2.175.278z"/><path fill="#CCD6DD" d="M18.14 34.183s-.159.039-.287-.008-.409-.028-.614.004c-.204.033-.976.142-1.497.298-.521.157-1.431.567-1.747.657s-.812.211-1.195.239c-.383.027-.728.04-.942.036-.277-.004-.513-.045-.69-.117 0 0 .136.409.834.567.552.125 1.055.145 1.524.078.036-.005 1.278-.212 1.899-.318.453-.078 1.178-.198 1.178-.198.861-.137 1.293-.229 1.444-.307.027-.014.144-.05.244-.172.066-.079-.041-.777-.151-.759zm-3.378-1.16c-.057 0-.113-.024-.153-.071l-.227-.269c-.071-.084-.06-.211.024-.282.084-.07.21-.061.282.024l.227.269c.071.084.06.211-.024.282-.037.032-.083.047-.129.047zm-.601.47c-.067 0-.133-.034-.17-.095l-.194-.316c-.059-.094-.029-.217.065-.275.092-.057.218-.029.274.066l.194.316c.059.094.029.217-.065.275-.032.02-.068.029-.104.029zm-.653.384c-.075 0-.148-.043-.182-.116l-.142-.308c-.046-.1-.002-.219.098-.265.101-.046.22-.003.266.098l.142.308c.046.1.002.219-.098.265-.027.012-.055.018-.084.018z"/><path fill="#A0041E" d="M16.444 21.431c.754-.391 3.244-1.626 4.948-1.799.156-.016.295.078.346.218l1.259 3.435c.065.176-.033.372-.222.433-.78.251-2.74.917-4.224 1.706-.157.084-.345.045-.443-.094-.442-.624-1.591-2.328-1.848-3.543-.031-.144.047-.286.184-.356z"/><path fill="#BE1931" d="M21.42 25.547c-.187-.828-.749-3.55-.494-5.242.023-.155.147-.265.292-.279l3.581-.349c.184-.018.346.126.357.325.047.818.198 2.882.584 4.518.041.173-.043.345-.198.405-.703.27-2.609.95-3.829.892-.144-.008-.259-.12-.293-.27z"/><path fill="#F7DECE" d="M18.032 10.659c-.037.617.172 1.537 1.603 1.665 1.43.128 2.808-.164 3.392-.377.584-.214.637.836.892 1.807.256.974.44 1.739.407 1.947-.054.352-.726 1.071-.388 1.647s.848 1.115 1.404.854 1.009-.557 1.136-.889c.127-.333-.626-1.25-.674-1.525s-.081-3.894-.146-4.3c-.08-.496-.172-1.177-1.01-1.395-.838-.218-4.153-.593-4.985-.688-.954-.109-1.582.436-1.631 1.254z"/><path fill="#F7DECE" d="M19.132 6.366c.31-.401.546-.872.661-1.455.409-2.083-.794-4.073-2.688-4.444-1.893-.372-4.483 1.029-4.425 3.151.057 2.107 1.229 5.214 2.993 4.69.466-.138.932-.29 1.375-.474.189.224.325 1.081.247 1.815-.2 1.87 2.381 2.065 2.579.192.157-1.481-.768-2.423-.742-3.475z"/><path fill="#292F33" d="M24.54 2.488c-1.311-.014-2.496-1.36-3.845-.501-.264.168-.456.337-.604.503-.234-.711-.636-1.367-1.299-1.799-.648-.422-1.443-.737-2.194-.652-4.578.516-4.329 3.827-3.981 4.137.348.31 1.299-.572 2.002-.669.328-.046 1.041-.053 1.419.49.306.44.411 1.33.411 1.33s.012-1.012.041-1.368c.027-.332.356-.714.801-.221.387.428.19 1.268-.079 1.356-.207.068.129.575.648.961.946.704 1.681.428 1.786.389.106-.039.465-.118.648-1.333.026-.169.044-.35.055-.537.374.324.987.709 1.827.715.929.007 2.619-.466 3.586-1.621.744-.889 1.05-2.355 1.05-2.355-.395.736-1.283 1.186-2.272 1.175z"/><path fill="#DD2E44" d="M22.418 9.749c-.897-1.578-2.174-2.314-3.528-1.683-2.437 1.136-2.644 2.853-1.828 5.349.603 1.845 2.094 3.688 2.906 6.927 0 0 2.246.202 5.436-.14 0-.001-.827-6.655-2.986-10.453z"/><path fill="#F7DECE" d="M19.923 10.158c-.603-.298-1.501-.279-2.236 1.101-.735 1.38-.969 2.5-1.173 3.36-.157.659-1.276.42-2.358.265-1.086-.156-2.742-.317-2.938-.438-.191-.118-1.507-.386-1.973-.393-.34-.005-2.01.282-2.402.612-.461.388 2.658.325 2.937.594s.914.457 1.312.562c.294.078 4.284 1.268 4.719 1.375.531.131 1.239.341 1.813-.406.574-.748 2.271-3.675 2.719-4.469.513-.91.38-1.768-.42-2.163z"/><circle fill="#FFAC33" cx="6.397" cy="21.831" r="3.603"/><path fill="#C1694F" d="M7.365 21.657c.764.708 1.573 1.273 2.329 1.615.122-.277.201-.573.25-.881-.628-.303-1.297-.777-1.942-1.37l1.304-1.304c-.178-.245-.389-.459-.621-.652l-1.32 1.32c-.646-.702-1.158-1.437-1.455-2.11-.306.042-.603.109-.879.223.013.031.016.059.03.09.336.785.927 1.635 1.667 2.434L5.43 22.319c-.796-.737-1.642-1.325-2.423-1.662-.1.29-.162.595-.185.914.636.302 1.317.782 1.972 1.385l-1.158 1.158c.193.232.408.444.652.621l1.142-1.142c.592.643 1.023 1.262 1.304 1.803.315-.03.617-.093.903-.199-.356-.751-.914-1.542-1.564-2.247l1.292-1.293z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/26f9-1f3fb-200d-2642-fe0f.svg b/public/emoji/26f9-1f3fb-200d-2642-fe0f.svg
index b748978121278c907dc1bf45b09b5c88a6104e50..78a8b5d4928814f9c13f16831b199cc20e4921c3 100644
--- a/public/emoji/26f9-1f3fb-200d-2642-fe0f.svg
+++ b/public/emoji/26f9-1f3fb-200d-2642-fe0f.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#F7DECE" d="M30.853 27.634c-.081 0-.163-.01-.243-.028l-7.476-1.668c-.403-.094-.713-.402-.81-.805l-1.216-5.066c-.068-.282-.023-.572.129-.819.151-.247.391-.421.672-.487.085-.021.171-.031.256-.031.502 0 .935.342 1.052.832l1.06 4.415 6.821 1.517c.283.065.522.237.676.483.153.246.202.536.137.818-.094.402-.403.713-.807.81-.083.019-.167.029-.251.029zM11.318 4.474c-1.158.564.52 2.167.439 3.483-.052.909 1.722.595 1.722.595s1.159-.564 1.425 1.455c.262 2.017 3.141 2.05 2.877.03-.266-2.016-2.131-2.69-1.612-4.435 1.239-4.176-4.851-1.128-4.851-1.128z"/><path fill="#F7DECE" d="M27.516 15.314c-.373.089-.779-.03-1.043-.342-2.682-3.189-8.798-3.763-8.859-3.769-.572-.05-.997-.556-.946-1.129.05-.572.548-.998 1.127-.947.286.024 7.034.65 10.275 4.503.37.441.313 1.098-.128 1.469-.129.107-.275.178-.426.215zM17.47 35.301c-.598.028-1.107-.435-1.135-1.031l-.448-8.575c-.011-.243.061-.486.203-.684l5.246-7.271c.184-.255.469-.417.782-.445.259-.023.518.048.73.2.235.17.391.421.438.707.046.286-.022.573-.191.806l-5.024 6.966.431 8.195c.022.48-.28.925-.737 1.079-.077.025-.158.043-.242.051l-.053.002z"/><path fill="#2A6797" d="M15.28 24.425l5.246-7.271c.672-.932 1.976-1.144 2.909-.47.934.673 1.144 1.977.471 2.909l-4.819 6.681c-.001-.001-4.083-1.467-3.807-1.849z"/><path fill="#357BAA" d="M21.352 25.366L20.136 20.3c-.27-1.119.421-2.245 1.541-2.513 1.119-.268 2.244.421 2.513 1.541l.915 3.814c-.001 0-3.569 2.993-3.753 2.224z"/><path fill="#4289C1" d="M18.333 35.988c.383-.001.591-.366.572-.758-.03-.626-.072-.881-.072-.881-.062-.299-.324-.912-.688-.912-2.642 0-5.538.879-6.23 1.5-.409.367-.146 1.061.397 1.06l6.021-.009zm6.875-17.207c-.208.365-1.473-.525-2.99.281-2.156 1.146-3.339.467-3.339.467-3.486-5.595-6.243-8.149-2.809-11.024 1.097-.918 2.454-.523 3.663.76 2.913 3.089 5.684 9.152 5.475 9.516z"/><path fill="#B39155" d="M11.456 5.045c-1.292.498-1.379-.954-.764-1.773.867-1.155 3.366-1.697 4.665-1.06 1.297.637 1.728 2.432.86 3.587-.613.817-.652 2.054-1.083.26-.43-1.793-1.083.261-1.298-.636-.216-.897-2.38-.378-2.38-.378z"/><path fill="#F7DECE" d="M15.148 11.32c-.033.046-3.381 4.532-8.152 5.032l.002.02c-.483.051-.884.417-.931.919-.053.573.367 1.082.941 1.135.07.006.135-.014.203-.023l.003.021c5.678-.594 9.456-5.654 9.613-5.869l-1.679-1.235z"/><ellipse transform="rotate(-80.781 7 24.32)" fill="#FFAC33" cx="7" cy="24.32" rx="4" ry="4"/><path fill="#C1694F" d="M8.075 24.127c.849.786 1.747 1.413 2.586 1.793.135-.307.223-.636.277-.978-.697-.337-1.44-.862-2.156-1.521l1.448-1.448c-.197-.271-.432-.51-.69-.724l-1.465 1.465c-.717-.779-1.286-1.595-1.615-2.343-.34.046-.669.121-.976.248.014.035.018.065.033.1.373.872 1.03 1.815 1.851 2.702l-1.442 1.442c-.883-.818-1.823-1.471-2.691-1.845-.111.322-.18.661-.206 1.014.706.336 1.462.868 2.189 1.538l-1.285 1.286c.214.258.453.492.724.69l1.268-1.268c.658.714 1.136 1.401 1.448 2.002.349-.033.685-.104 1.003-.22-.396-.834-1.015-1.712-1.737-2.495l1.436-1.438z"/><path fill="#F7DECE" d="M17.255 5.459c-.262 2.342-2.251 3.358-4.247 4.134-1.904.741-3.484-2.589-3.74-4.915C9.01 2.336 11.747.549 13.875.788s3.642 2.33 3.38 4.671z"/><path fill="#292F33" d="M9.962 1.651c2.704-1.981 4.635-1.834 6.321-.68 1.674 1.146 1.929 3.534 1.603 5.091-.326 1.557-.776 1.507-.776 1.507s-2.07.636-2.373-1.306c-.096-.614.567-.999-.248-1.849-.525-.547-1.574-.176-1.516.665.058.841-.384.716-.384.716L11.158 3.66s-1.095.019-1.627 1.064c-.333.657-1.931-1.343.431-3.073z"/><path fill="#4289C1" d="M18.353 34.699h-1.977c-.185 0-.595-.158-.595-.35l.188-1.084c0-.193.096-.5.376-.5s.64.235.999.235.688-.522.96-.522c.211 0 .305.084.336.35l.193 1.521c0 .193-.295.35-.48.35zm14.494-8.875c.056-.379-.275-.638-.665-.677-.624-.062-.882-.058-.882-.058-.305.017-.949.186-1.003.546-.388 2.614.055 5.607.568 6.383.303.458 1.028.301 1.107-.237l.875-5.957z"/><path fill="#4289C1" d="M31.575 25.615l-.291 1.955c-.027.183-.243.565-.434.537l-1.044-.345c-.19-.028-.481-.169-.439-.446.041-.277.326-.599.379-.954.053-.355-.415-.757-.375-1.026.031-.209.128-.289.396-.281l1.533.033c.19.029.302.344.275.527z"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#F7DECE" d="M26.3 26.621c-.339-.021-.504-.165-.57-.496-.187-.94-.313-1.721-.356-1.993l-3.912.767c.118.473.644 2.5 1.322 3.806.393.757.831.782 1.79.838 0 0 3.726-.134 6.305-.231 1.142-.043 1.225-1.795.253-2.014-.692-.156-1.438-.3-2.053-.36-.465-.046-2.539-.303-2.779-.317zm-7.462-1.676l-1.729-3.593c-.428.233-2.257 1.253-3.35 2.237-.635.572-.549 1.002-.36 1.944 0 0 1.087 3.639 1.831 6.111.32 1.062 2.024.713 1.995-.251-.022-.732-.07-1.523-.171-2.156-.073-.463-.348-2.534-.394-2.77-.064-.334.033-.53.337-.677.863-.416 1.588-.735 1.841-.845z"/><path fill="#1C6399" d="M32.67 26.978c-.133.007-.238.02-.315.037l-1.55.085c-.078.002-.137.069-.131.147.017.225.309.899.018 1.424-.195.351-.656.495-.688.679-.01.058.032.112.091.118 0 0 .284-.012.532.003.217.1.626.182.836.408.063.148.242.283.364.684.072.239.412 1.33.412 1.33.081.278.189.345.236.494.095.306.263 1.127.346 1.387.083.26.28.37.433.391.152.02.239-.016.239-.016s.385-.362.64-2.01c.15-.967.095-4.904.095-4.904l-1.558-.257z"/><path fill="#CCD6DD" d="M31.227 29.855c-.033 0-.066-.008-.097-.025-.097-.053-.132-.175-.078-.272l.17-.307c.054-.097.178-.131.271-.078.097.053.132.175.078.272l-.17.307c-.035.066-.103.103-.174.103z"/><path fill="#3B94D9" d="M33.882 29.325c-.243-.098-.797-.461-.953-.853-.141-.354-.241-1.312-.259-1.493.297-.028.753-.01.9.004.194.018.447.044.585.166-.001-.001-.214 1.543-.273 2.176z"/><path fill="#CCD6DD" d="M34.148 27.12s-.002.164-.079.276c-.077.113-.129.39-.149.596-.019.206-.105.981-.083 1.524.022.544.194 1.527.203 1.855.009.328.003.839-.065 1.217-.069.378-.142.715-.199.922-.073.267-.171.486-.285.639 0 0 .43-.03.757-.667.258-.503.402-.986.454-1.457l.263-3.109c.081-.868.1-1.309.061-1.475-.007-.029-.013-.152-.106-.279-.06-.083-.762-.153-.772-.042zm-2.472 3.287c-.074 0-.146-.042-.181-.113-.048-.1-.006-.219.094-.267l.317-.152c.101-.046.219-.006.268.094.048.1.006.219-.094.267l-.317.152c-.029.013-.058.019-.087.019zm.268.657c-.086 0-.164-.055-.191-.141-.032-.105.026-.218.132-.25l.354-.11c.112-.033.217.027.251.132.032.105-.026.218-.132.25l-.354.11c-.021.006-.04.009-.06.009zm.232.678c-.095 0-.179-.067-.196-.164-.021-.109.052-.213.16-.233l.333-.061c.108-.02.213.052.232.161.021.109-.052.213-.16.233l-.333.061-.036.003z"/><path fill="#1C6399" d="M17.911 32.716c-.04-.128-.078-.226-.114-.296l-.467-1.48c-.021-.075-.101-.116-.175-.09-.214.073-.794.523-1.375.371-.388-.102-.642-.513-.828-.498-.059.005-.101.059-.092.117 0 0 .082.272.129.516-.043.235-.021.651-.188.911-.128.098-.214.305-.572.522-.213.129-1.186.729-1.186.729-.25.148-.287.269-.42.351-.273.168-1.026.535-1.257.68-.231.145-.289.363-.271.516.018.152.074.228.074.228s.446.283 2.106.121c.974-.095 4.775-1.117 4.775-1.117s-.049-1.295-.139-1.581z"/><path fill="#CCD6DD" d="M15.3 32.271c-.017 0-.033-.002-.051-.006l-.34-.089c-.106-.028-.171-.137-.143-.244.027-.107.131-.171.244-.143l.34.089c.106.028.171.137.143.244-.023.09-.105.149-.193.149z"/><path fill="#3B94D9" d="M15.939 34.472c.035-.26.248-.886.59-1.135.308-.224 1.211-.559 1.382-.622.101.281.197.727.22.873.031.192.072.411-.022.609 0 .001-1.543.176-2.17.275z"/><path fill="#CCD6DD" d="M18.141 34.183s-.159.039-.287-.008-.409-.028-.614.004c-.204.033-.976.142-1.497.298-.521.157-1.431.567-1.747.657s-.812.211-1.195.239c-.383.027-.728.04-.942.036-.277-.004-.513-.045-.69-.117 0 0 .136.409.834.567.552.125 1.055.145 1.524.078.036-.005 3.077-.517 3.077-.517.861-.137 1.293-.229 1.444-.307.027-.014.144-.05.244-.172.065-.078-.042-.776-.151-.758zm-3.379-1.16c-.057 0-.113-.024-.153-.071l-.227-.269c-.071-.084-.06-.211.024-.282.084-.07.21-.061.282.024l.227.269c.071.084.06.211-.024.282-.037.032-.083.047-.129.047zm-.6.47c-.067 0-.133-.034-.17-.095l-.194-.316c-.059-.094-.029-.217.065-.275.093-.057.217-.029.274.066l.194.316c.059.094.029.217-.065.275-.032.02-.068.029-.104.029zm-.652.384c-.075 0-.147-.043-.182-.116l-.143-.308c-.046-.1-.003-.219.098-.265.1-.047.219-.003.266.097l.143.308c.046.1.003.219-.098.265-.028.013-.056.019-.084.019z"/><path fill="#1C6399" d="M16.404 21.332c.751-.398 3.235-1.653 4.947-1.804.156-.014.298.088.352.235l1.328 3.635c.068.186-.027.391-.216.451-.781.25-2.74.915-4.22 1.719-.157.085-.347.041-.448-.106-.456-.664-1.642-2.477-1.923-3.76-.032-.15.045-.298.18-.37z"/><path fill="#357BAA" d="M21.264 25.576c-.196-.827-.785-3.547-.501-5.242.026-.155.16-.266.316-.281l3.853-.37c.198-.019.371.124.382.323.046.818.196 2.882.601 4.517.043.173-.048.346-.216.407-.758.274-2.811.965-4.123.914-.153-.006-.276-.118-.312-.268z"/><path fill="#F7DECE" d="M18.032 10.676c-.037.617.172 1.537 1.603 1.665 1.43.128 2.808-.164 3.392-.377.584-.214.637.836.892 1.807.256.974.44 1.739.407 1.947-.054.352-.726 1.071-.388 1.647.338.576.848 1.115 1.404.854s1.009-.557 1.136-.889c.127-.333-.626-1.25-.674-1.525s-.081-3.894-.146-4.3c-.08-.496-.172-1.177-1.01-1.395s-4.153-.593-4.985-.688c-.953-.109-1.582.436-1.631 1.254z"/><path fill="#F7DECE" d="M18.885 6.217c.253-.418.429-.895.475-1.466C19.525 2.71 18.155.934 16.3.784c-1.855-.15-4.184 1.475-3.897 3.502.285 2.013 1.746 4.863 3.38 4.169.431-.183.861-.38 1.267-.604.205.194.429 1.001.435 1.713.012 1.814 2.507 1.72 2.492-.097-.013-1.437-1.002-2.239-1.092-3.25z"/><path fill="#292F33" d="M12.925 1.639c2.296-1.793 3.976-1.717 5.471-.76 1.485.951 1.77 3.017 1.528 4.378-.241 1.361-.633 1.329-.633 1.329s-1.781.607-2.096-1.071c-.1-.531.466-.883-.265-1.599-.47-.461-1.372-.111-1.299.618.073.729-.314.632-.314.632l-1.3-1.814s-.951.046-1.384.968c-.272.579-1.713-1.115.292-2.681z"/><path fill="#4289C1" d="M22.418 9.765c-.897-1.578-2.174-2.314-3.528-1.683-4.238 1.976-1.905 5.849.189 12.276 0 0 3.134.202 6.325-.14.001 0-.826-6.654-2.986-10.453z"/><path fill="#F7DECE" d="M19.924 10.175c-.603-.298-1.614-.479-2.349.901-.735 1.38-1.027 2.884-1.06 3.561-.033.677-1.108.284-2.191.128-1.086-.156-2.853-.332-3.048-.453-.191-.118-1.565-.234-2.03-.242-.34-.005-2.104.282-2.496.612-.461.388 2.73.461 3.01.729.28.269.876.481 1.274.587.294.078 4.391 1.364 4.826 1.471.531.131 1.253.327 1.827-.421.574-.748 2.356-3.913 2.804-4.707.512-.909.232-1.771-.567-2.166z"/><circle fill="#FFAC33" cx="6.397" cy="21.831" r="3.603"/><path fill="#C1694F" d="M7.365 21.657c.764.708 1.573 1.273 2.329 1.615.122-.277.201-.573.25-.881-.628-.303-1.297-.777-1.942-1.37l1.304-1.304c-.178-.245-.389-.459-.621-.652l-1.32 1.32c-.646-.702-1.158-1.437-1.455-2.11-.306.042-.603.109-.879.223.013.031.016.059.03.09.336.785.927 1.635 1.667 2.434L5.43 22.319c-.796-.737-1.642-1.325-2.423-1.662-.1.29-.162.595-.185.914.636.302 1.317.782 1.972 1.385l-1.158 1.158c.193.232.408.444.652.621l1.142-1.142c.592.643 1.023 1.262 1.304 1.803.315-.03.617-.093.903-.199-.356-.751-.914-1.542-1.564-2.247l1.292-1.293z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/26f9-1f3fb.svg b/public/emoji/26f9-1f3fb.svg
index b748978121278c907dc1bf45b09b5c88a6104e50..78a8b5d4928814f9c13f16831b199cc20e4921c3 100644
--- a/public/emoji/26f9-1f3fb.svg
+++ b/public/emoji/26f9-1f3fb.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#F7DECE" d="M30.853 27.634c-.081 0-.163-.01-.243-.028l-7.476-1.668c-.403-.094-.713-.402-.81-.805l-1.216-5.066c-.068-.282-.023-.572.129-.819.151-.247.391-.421.672-.487.085-.021.171-.031.256-.031.502 0 .935.342 1.052.832l1.06 4.415 6.821 1.517c.283.065.522.237.676.483.153.246.202.536.137.818-.094.402-.403.713-.807.81-.083.019-.167.029-.251.029zM11.318 4.474c-1.158.564.52 2.167.439 3.483-.052.909 1.722.595 1.722.595s1.159-.564 1.425 1.455c.262 2.017 3.141 2.05 2.877.03-.266-2.016-2.131-2.69-1.612-4.435 1.239-4.176-4.851-1.128-4.851-1.128z"/><path fill="#F7DECE" d="M27.516 15.314c-.373.089-.779-.03-1.043-.342-2.682-3.189-8.798-3.763-8.859-3.769-.572-.05-.997-.556-.946-1.129.05-.572.548-.998 1.127-.947.286.024 7.034.65 10.275 4.503.37.441.313 1.098-.128 1.469-.129.107-.275.178-.426.215zM17.47 35.301c-.598.028-1.107-.435-1.135-1.031l-.448-8.575c-.011-.243.061-.486.203-.684l5.246-7.271c.184-.255.469-.417.782-.445.259-.023.518.048.73.2.235.17.391.421.438.707.046.286-.022.573-.191.806l-5.024 6.966.431 8.195c.022.48-.28.925-.737 1.079-.077.025-.158.043-.242.051l-.053.002z"/><path fill="#2A6797" d="M15.28 24.425l5.246-7.271c.672-.932 1.976-1.144 2.909-.47.934.673 1.144 1.977.471 2.909l-4.819 6.681c-.001-.001-4.083-1.467-3.807-1.849z"/><path fill="#357BAA" d="M21.352 25.366L20.136 20.3c-.27-1.119.421-2.245 1.541-2.513 1.119-.268 2.244.421 2.513 1.541l.915 3.814c-.001 0-3.569 2.993-3.753 2.224z"/><path fill="#4289C1" d="M18.333 35.988c.383-.001.591-.366.572-.758-.03-.626-.072-.881-.072-.881-.062-.299-.324-.912-.688-.912-2.642 0-5.538.879-6.23 1.5-.409.367-.146 1.061.397 1.06l6.021-.009zm6.875-17.207c-.208.365-1.473-.525-2.99.281-2.156 1.146-3.339.467-3.339.467-3.486-5.595-6.243-8.149-2.809-11.024 1.097-.918 2.454-.523 3.663.76 2.913 3.089 5.684 9.152 5.475 9.516z"/><path fill="#B39155" d="M11.456 5.045c-1.292.498-1.379-.954-.764-1.773.867-1.155 3.366-1.697 4.665-1.06 1.297.637 1.728 2.432.86 3.587-.613.817-.652 2.054-1.083.26-.43-1.793-1.083.261-1.298-.636-.216-.897-2.38-.378-2.38-.378z"/><path fill="#F7DECE" d="M15.148 11.32c-.033.046-3.381 4.532-8.152 5.032l.002.02c-.483.051-.884.417-.931.919-.053.573.367 1.082.941 1.135.07.006.135-.014.203-.023l.003.021c5.678-.594 9.456-5.654 9.613-5.869l-1.679-1.235z"/><ellipse transform="rotate(-80.781 7 24.32)" fill="#FFAC33" cx="7" cy="24.32" rx="4" ry="4"/><path fill="#C1694F" d="M8.075 24.127c.849.786 1.747 1.413 2.586 1.793.135-.307.223-.636.277-.978-.697-.337-1.44-.862-2.156-1.521l1.448-1.448c-.197-.271-.432-.51-.69-.724l-1.465 1.465c-.717-.779-1.286-1.595-1.615-2.343-.34.046-.669.121-.976.248.014.035.018.065.033.1.373.872 1.03 1.815 1.851 2.702l-1.442 1.442c-.883-.818-1.823-1.471-2.691-1.845-.111.322-.18.661-.206 1.014.706.336 1.462.868 2.189 1.538l-1.285 1.286c.214.258.453.492.724.69l1.268-1.268c.658.714 1.136 1.401 1.448 2.002.349-.033.685-.104 1.003-.22-.396-.834-1.015-1.712-1.737-2.495l1.436-1.438z"/><path fill="#F7DECE" d="M17.255 5.459c-.262 2.342-2.251 3.358-4.247 4.134-1.904.741-3.484-2.589-3.74-4.915C9.01 2.336 11.747.549 13.875.788s3.642 2.33 3.38 4.671z"/><path fill="#292F33" d="M9.962 1.651c2.704-1.981 4.635-1.834 6.321-.68 1.674 1.146 1.929 3.534 1.603 5.091-.326 1.557-.776 1.507-.776 1.507s-2.07.636-2.373-1.306c-.096-.614.567-.999-.248-1.849-.525-.547-1.574-.176-1.516.665.058.841-.384.716-.384.716L11.158 3.66s-1.095.019-1.627 1.064c-.333.657-1.931-1.343.431-3.073z"/><path fill="#4289C1" d="M18.353 34.699h-1.977c-.185 0-.595-.158-.595-.35l.188-1.084c0-.193.096-.5.376-.5s.64.235.999.235.688-.522.96-.522c.211 0 .305.084.336.35l.193 1.521c0 .193-.295.35-.48.35zm14.494-8.875c.056-.379-.275-.638-.665-.677-.624-.062-.882-.058-.882-.058-.305.017-.949.186-1.003.546-.388 2.614.055 5.607.568 6.383.303.458 1.028.301 1.107-.237l.875-5.957z"/><path fill="#4289C1" d="M31.575 25.615l-.291 1.955c-.027.183-.243.565-.434.537l-1.044-.345c-.19-.028-.481-.169-.439-.446.041-.277.326-.599.379-.954.053-.355-.415-.757-.375-1.026.031-.209.128-.289.396-.281l1.533.033c.19.029.302.344.275.527z"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#F7DECE" d="M26.3 26.621c-.339-.021-.504-.165-.57-.496-.187-.94-.313-1.721-.356-1.993l-3.912.767c.118.473.644 2.5 1.322 3.806.393.757.831.782 1.79.838 0 0 3.726-.134 6.305-.231 1.142-.043 1.225-1.795.253-2.014-.692-.156-1.438-.3-2.053-.36-.465-.046-2.539-.303-2.779-.317zm-7.462-1.676l-1.729-3.593c-.428.233-2.257 1.253-3.35 2.237-.635.572-.549 1.002-.36 1.944 0 0 1.087 3.639 1.831 6.111.32 1.062 2.024.713 1.995-.251-.022-.732-.07-1.523-.171-2.156-.073-.463-.348-2.534-.394-2.77-.064-.334.033-.53.337-.677.863-.416 1.588-.735 1.841-.845z"/><path fill="#1C6399" d="M32.67 26.978c-.133.007-.238.02-.315.037l-1.55.085c-.078.002-.137.069-.131.147.017.225.309.899.018 1.424-.195.351-.656.495-.688.679-.01.058.032.112.091.118 0 0 .284-.012.532.003.217.1.626.182.836.408.063.148.242.283.364.684.072.239.412 1.33.412 1.33.081.278.189.345.236.494.095.306.263 1.127.346 1.387.083.26.28.37.433.391.152.02.239-.016.239-.016s.385-.362.64-2.01c.15-.967.095-4.904.095-4.904l-1.558-.257z"/><path fill="#CCD6DD" d="M31.227 29.855c-.033 0-.066-.008-.097-.025-.097-.053-.132-.175-.078-.272l.17-.307c.054-.097.178-.131.271-.078.097.053.132.175.078.272l-.17.307c-.035.066-.103.103-.174.103z"/><path fill="#3B94D9" d="M33.882 29.325c-.243-.098-.797-.461-.953-.853-.141-.354-.241-1.312-.259-1.493.297-.028.753-.01.9.004.194.018.447.044.585.166-.001-.001-.214 1.543-.273 2.176z"/><path fill="#CCD6DD" d="M34.148 27.12s-.002.164-.079.276c-.077.113-.129.39-.149.596-.019.206-.105.981-.083 1.524.022.544.194 1.527.203 1.855.009.328.003.839-.065 1.217-.069.378-.142.715-.199.922-.073.267-.171.486-.285.639 0 0 .43-.03.757-.667.258-.503.402-.986.454-1.457l.263-3.109c.081-.868.1-1.309.061-1.475-.007-.029-.013-.152-.106-.279-.06-.083-.762-.153-.772-.042zm-2.472 3.287c-.074 0-.146-.042-.181-.113-.048-.1-.006-.219.094-.267l.317-.152c.101-.046.219-.006.268.094.048.1.006.219-.094.267l-.317.152c-.029.013-.058.019-.087.019zm.268.657c-.086 0-.164-.055-.191-.141-.032-.105.026-.218.132-.25l.354-.11c.112-.033.217.027.251.132.032.105-.026.218-.132.25l-.354.11c-.021.006-.04.009-.06.009zm.232.678c-.095 0-.179-.067-.196-.164-.021-.109.052-.213.16-.233l.333-.061c.108-.02.213.052.232.161.021.109-.052.213-.16.233l-.333.061-.036.003z"/><path fill="#1C6399" d="M17.911 32.716c-.04-.128-.078-.226-.114-.296l-.467-1.48c-.021-.075-.101-.116-.175-.09-.214.073-.794.523-1.375.371-.388-.102-.642-.513-.828-.498-.059.005-.101.059-.092.117 0 0 .082.272.129.516-.043.235-.021.651-.188.911-.128.098-.214.305-.572.522-.213.129-1.186.729-1.186.729-.25.148-.287.269-.42.351-.273.168-1.026.535-1.257.68-.231.145-.289.363-.271.516.018.152.074.228.074.228s.446.283 2.106.121c.974-.095 4.775-1.117 4.775-1.117s-.049-1.295-.139-1.581z"/><path fill="#CCD6DD" d="M15.3 32.271c-.017 0-.033-.002-.051-.006l-.34-.089c-.106-.028-.171-.137-.143-.244.027-.107.131-.171.244-.143l.34.089c.106.028.171.137.143.244-.023.09-.105.149-.193.149z"/><path fill="#3B94D9" d="M15.939 34.472c.035-.26.248-.886.59-1.135.308-.224 1.211-.559 1.382-.622.101.281.197.727.22.873.031.192.072.411-.022.609 0 .001-1.543.176-2.17.275z"/><path fill="#CCD6DD" d="M18.141 34.183s-.159.039-.287-.008-.409-.028-.614.004c-.204.033-.976.142-1.497.298-.521.157-1.431.567-1.747.657s-.812.211-1.195.239c-.383.027-.728.04-.942.036-.277-.004-.513-.045-.69-.117 0 0 .136.409.834.567.552.125 1.055.145 1.524.078.036-.005 3.077-.517 3.077-.517.861-.137 1.293-.229 1.444-.307.027-.014.144-.05.244-.172.065-.078-.042-.776-.151-.758zm-3.379-1.16c-.057 0-.113-.024-.153-.071l-.227-.269c-.071-.084-.06-.211.024-.282.084-.07.21-.061.282.024l.227.269c.071.084.06.211-.024.282-.037.032-.083.047-.129.047zm-.6.47c-.067 0-.133-.034-.17-.095l-.194-.316c-.059-.094-.029-.217.065-.275.093-.057.217-.029.274.066l.194.316c.059.094.029.217-.065.275-.032.02-.068.029-.104.029zm-.652.384c-.075 0-.147-.043-.182-.116l-.143-.308c-.046-.1-.003-.219.098-.265.1-.047.219-.003.266.097l.143.308c.046.1.003.219-.098.265-.028.013-.056.019-.084.019z"/><path fill="#1C6399" d="M16.404 21.332c.751-.398 3.235-1.653 4.947-1.804.156-.014.298.088.352.235l1.328 3.635c.068.186-.027.391-.216.451-.781.25-2.74.915-4.22 1.719-.157.085-.347.041-.448-.106-.456-.664-1.642-2.477-1.923-3.76-.032-.15.045-.298.18-.37z"/><path fill="#357BAA" d="M21.264 25.576c-.196-.827-.785-3.547-.501-5.242.026-.155.16-.266.316-.281l3.853-.37c.198-.019.371.124.382.323.046.818.196 2.882.601 4.517.043.173-.048.346-.216.407-.758.274-2.811.965-4.123.914-.153-.006-.276-.118-.312-.268z"/><path fill="#F7DECE" d="M18.032 10.676c-.037.617.172 1.537 1.603 1.665 1.43.128 2.808-.164 3.392-.377.584-.214.637.836.892 1.807.256.974.44 1.739.407 1.947-.054.352-.726 1.071-.388 1.647.338.576.848 1.115 1.404.854s1.009-.557 1.136-.889c.127-.333-.626-1.25-.674-1.525s-.081-3.894-.146-4.3c-.08-.496-.172-1.177-1.01-1.395s-4.153-.593-4.985-.688c-.953-.109-1.582.436-1.631 1.254z"/><path fill="#F7DECE" d="M18.885 6.217c.253-.418.429-.895.475-1.466C19.525 2.71 18.155.934 16.3.784c-1.855-.15-4.184 1.475-3.897 3.502.285 2.013 1.746 4.863 3.38 4.169.431-.183.861-.38 1.267-.604.205.194.429 1.001.435 1.713.012 1.814 2.507 1.72 2.492-.097-.013-1.437-1.002-2.239-1.092-3.25z"/><path fill="#292F33" d="M12.925 1.639c2.296-1.793 3.976-1.717 5.471-.76 1.485.951 1.77 3.017 1.528 4.378-.241 1.361-.633 1.329-.633 1.329s-1.781.607-2.096-1.071c-.1-.531.466-.883-.265-1.599-.47-.461-1.372-.111-1.299.618.073.729-.314.632-.314.632l-1.3-1.814s-.951.046-1.384.968c-.272.579-1.713-1.115.292-2.681z"/><path fill="#4289C1" d="M22.418 9.765c-.897-1.578-2.174-2.314-3.528-1.683-4.238 1.976-1.905 5.849.189 12.276 0 0 3.134.202 6.325-.14.001 0-.826-6.654-2.986-10.453z"/><path fill="#F7DECE" d="M19.924 10.175c-.603-.298-1.614-.479-2.349.901-.735 1.38-1.027 2.884-1.06 3.561-.033.677-1.108.284-2.191.128-1.086-.156-2.853-.332-3.048-.453-.191-.118-1.565-.234-2.03-.242-.34-.005-2.104.282-2.496.612-.461.388 2.73.461 3.01.729.28.269.876.481 1.274.587.294.078 4.391 1.364 4.826 1.471.531.131 1.253.327 1.827-.421.574-.748 2.356-3.913 2.804-4.707.512-.909.232-1.771-.567-2.166z"/><circle fill="#FFAC33" cx="6.397" cy="21.831" r="3.603"/><path fill="#C1694F" d="M7.365 21.657c.764.708 1.573 1.273 2.329 1.615.122-.277.201-.573.25-.881-.628-.303-1.297-.777-1.942-1.37l1.304-1.304c-.178-.245-.389-.459-.621-.652l-1.32 1.32c-.646-.702-1.158-1.437-1.455-2.11-.306.042-.603.109-.879.223.013.031.016.059.03.09.336.785.927 1.635 1.667 2.434L5.43 22.319c-.796-.737-1.642-1.325-2.423-1.662-.1.29-.162.595-.185.914.636.302 1.317.782 1.972 1.385l-1.158 1.158c.193.232.408.444.652.621l1.142-1.142c.592.643 1.023 1.262 1.304 1.803.315-.03.617-.093.903-.199-.356-.751-.914-1.542-1.564-2.247l1.292-1.293z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/26f9-1f3fc-200d-2640-fe0f.svg b/public/emoji/26f9-1f3fc-200d-2640-fe0f.svg
index a40339c429d30666fc85b8475a82a8b34ff3efdb..8bcada01a54fb42736ce7d3c7e48b520ece927e4 100644
--- a/public/emoji/26f9-1f3fc-200d-2640-fe0f.svg
+++ b/public/emoji/26f9-1f3fc-200d-2640-fe0f.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#F3D2A2" d="M30.853 27.634c-.081 0-.163-.01-.243-.028l-7.476-1.668c-.403-.094-.713-.402-.81-.805l-1.216-5.066c-.068-.282-.023-.572.129-.819.151-.247.391-.421.672-.487.085-.021.171-.031.256-.031.502 0 .935.342 1.052.832l1.06 4.415 6.821 1.517c.283.065.522.237.676.483.153.246.202.536.137.818-.094.402-.403.713-.807.81-.083.019-.167.029-.251.029zM11.318 4.474c-1.158.564.52 2.167.439 3.483-.052.909 1.722.595 1.722.595s1.159-.564 1.425 1.455c.262 2.017 3.141 2.05 2.877.03-.266-2.016-2.131-2.69-1.612-4.435 1.239-4.176-4.851-1.128-4.851-1.128z"/><path fill="#F3D2A2" d="M27.516 15.314c-.373.089-.779-.03-1.043-.342-2.682-3.189-8.798-3.763-8.859-3.769-.572-.05-.997-.556-.946-1.129.05-.572.548-.998 1.127-.947.286.024 7.034.65 10.275 4.503.37.441.313 1.098-.128 1.469-.129.107-.275.178-.426.215zM17.47 35.301c-.598.028-1.107-.435-1.135-1.031l-.448-8.575c-.011-.243.061-.486.203-.684l5.246-7.271c.184-.255.469-.417.782-.445.259-.023.518.048.73.2.235.17.391.421.438.707.046.286-.022.573-.191.806l-5.024 6.966.431 8.195c.022.48-.28.925-.737 1.079-.077.025-.158.043-.242.051l-.053.002z"/><path fill="#A0041E" d="M15.28 24.425l5.246-7.271c.672-.932 1.976-1.144 2.909-.47.934.673 1.144 1.977.471 2.909l-4.819 6.681c-.001-.001-4.083-1.467-3.807-1.849z"/><path fill="#BE1931" d="M21.352 25.366L20.136 20.3c-.27-1.119.421-2.245 1.541-2.513 1.119-.268 2.244.421 2.513 1.541l.915 3.814c-.001 0-3.569 2.993-3.753 2.224z"/><path fill="#F3D2A2" d="M17.259 3.842c.537 2.238-.842 4.489-3.081 5.026-2.239.537-4.489-.842-5.026-3.081-.538-2.239.842-4.49 3.08-5.027 2.239-.537 4.49.842 5.027 3.082z"/><path fill="#FFE51E" d="M21.375 4.462c-1.083.083-2.14.092-4.208-1.976C15.792 1.111 14.564.273 11.834.643c-2.899.394-5.018 3.169-3 4.17.88.437 1.529.095 2.88.295 2.121.315 2.707 2.456 4.62 2.711 3.743.501 6.124-3.44 5.041-3.357z"/><ellipse transform="rotate(-80.781 7 24.32)" fill="#FFAC33" cx="7" cy="24.32" rx="4" ry="4"/><path fill="#C1694F" d="M8.075 24.126c.849.786 1.747 1.413 2.586 1.793.135-.307.223-.636.277-.978-.697-.337-1.44-.862-2.156-1.521l1.448-1.448c-.197-.271-.432-.51-.69-.724l-1.465 1.465c-.717-.779-1.286-1.595-1.615-2.343-.34.046-.669.121-.976.248.014.035.018.065.033.1.373.872 1.03 1.815 1.851 2.702l-1.442 1.442c-.883-.818-1.823-1.471-2.691-1.845-.111.322-.18.661-.206 1.014.706.336 1.462.868 2.189 1.538l-1.285 1.286c.214.258.453.492.724.69l1.268-1.268c.658.714 1.136 1.401 1.448 2.002.349-.033.685-.104 1.003-.22-.396-.834-1.015-1.712-1.737-2.495l1.436-1.438z"/><path fill="#DD2E44" d="M18.333 35.988c.383-.001.591-.366.572-.758-.03-.626-.072-.881-.072-.881-.062-.299-.324-.912-.688-.912-2.642 0-5.538.879-6.23 1.5-.409.367-.146 1.061.397 1.06l6.021-.009zm6.875-17.207c-.208.365-1.473-.525-2.99.281-2.156 1.146-3.339.467-3.339.467-3.486-5.595-6.243-8.149-2.809-11.024 1.097-.918 2.454-.523 3.663.76 2.913 3.089 5.684 9.152 5.475 9.516z"/><path fill="#DD2E44" d="M18.353 34.699h-1.977c-.185 0-.595-.158-.595-.35l.188-1.084c0-.193.096-.5.376-.5s.64.235.999.235.688-.522.96-.522c.211 0 .305.084.336.35l.193 1.521c0 .193-.295.35-.48.35zm14.494-8.875c.056-.379-.275-.638-.665-.677-.624-.062-.882-.058-.882-.058-.305.017-.949.186-1.003.546-.388 2.614.055 5.607.568 6.383.303.458 1.028.301 1.107-.237l.875-5.957z"/><path fill="#DD2E44" d="M31.575 25.615l-.291 1.955c-.027.183-.243.565-.434.537l-1.044-.345c-.19-.028-.481-.169-.439-.446.041-.277.326-.599.379-.954.053-.355-.415-.757-.375-1.026.031-.209.128-.289.396-.281l1.533.033c.19.029.302.344.275.527z"/><path fill="#F3D2A2" d="M15.148 11.32c-.033.046-3.381 4.532-8.152 5.032l.002.02c-.483.051-.884.417-.931.919-.053.573.367 1.082.941 1.135.07.006.135-.014.203-.023l.003.021c5.678-.594 9.456-5.654 9.613-5.869l-1.679-1.235z"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#F3D2A2" d="M26.29 26.753c-.53-.033-.658-.368-.708-.617-.16-.802-.275-1.489-.333-1.845l-3.604.707c.168.654.657 2.438 1.271 3.619.354.682.711.703 1.666.758 0 0 3.975-.139 6.542-.237.885-.034.973-1.48.215-1.657-.751-.176-1.595-.346-2.276-.413-.465-.044-2.533-.3-2.773-.315zm-12.431-3.068c-.57.514-.5.865-.312 1.803 0 0 1.113 3.738 1.854 6.2.265.881 1.698.641 1.679-.138-.019-.771-.067-1.63-.174-2.305-.073-.463-.346-2.528-.392-2.764-.102-.523.19-.73.419-.84.736-.356 1.371-.642 1.7-.786l-1.591-3.311c-.59.327-2.194 1.249-3.183 2.141z"/><path fill="#BE1931" d="M33.493 26.983c-.195-.018-.89-.026-1.139.032l-1.55.085c-.078.002-.137.069-.131.147.017.225.309.899.018 1.424-.195.351-.656.495-.688.679-.01.058.032.112.091.118 0 0 .284-.012.532.003.217.1.626.182.836.408.063.148.242.283.364.684.072.239.412 1.33.412 1.33.081.278.189.345.236.494.095.306.263 1.127.346 1.387.083.26.28.37.433.391.152.02.239-.016.239-.016s.385-.362.64-2.01c.15-.967.095-4.904.095-4.904l-.144-.114c-.143-.115-.384-.119-.59-.138z"/><path fill="#CCD6DD" d="M31.227 29.855c-.033 0-.066-.008-.097-.025-.097-.053-.132-.175-.078-.272l.17-.307c.054-.097.178-.131.271-.078.097.053.132.175.078.272l-.17.307c-.035.066-.104.103-.174.103z"/><path fill="#DD2E44" d="M33.882 29.325c-.243-.098-.797-.461-.953-.853-.141-.354-.241-1.312-.259-1.493.297-.028.753-.01.9.004.194.018.448.047.582.16.012.01-.22 1.64-.27 2.182z"/><path fill="#CCD6DD" d="M34.147 27.12s-.002.164-.079.276c-.077.113-.129.39-.149.596-.019.206-.105.981-.083 1.524.022.544.194 1.527.203 1.855s.003.839-.065 1.217c-.069.378-.142.715-.199.922-.073.267-.171.486-.285.639 0 0 .43-.03.757-.667.258-.503.402-.986.454-1.457.004-.036.112-1.291.163-1.918.037-.459.1-1.191.1-1.191.081-.868.1-1.309.061-1.475-.007-.029-.013-.152-.106-.279-.059-.083-.761-.153-.772-.042zm-2.472 3.287c-.074 0-.146-.042-.181-.113-.048-.099-.006-.219.094-.267l.316-.152c.102-.047.219-.006.268.094.048.099.006.219-.094.267l-.316.152c-.028.013-.057.019-.087.019zm.269.656c-.085 0-.164-.055-.191-.141-.032-.106.026-.218.132-.25l.354-.11c.109-.034.218.026.251.132.032.106-.026.218-.132.25l-.354.11c-.021.007-.04.009-.06.009zm.23.679c-.095 0-.179-.067-.196-.164-.021-.109.052-.213.16-.233l.334-.061c.117-.019.213.052.232.161.021.109-.052.213-.16.233l-.334.061-.036.003z"/><path fill="#BE1931" d="M18.11 33.515c-.031-.194-.196-.868-.314-1.095l-.467-1.48c-.021-.075-.101-.116-.175-.09-.214.073-.794.523-1.375.371-.388-.102-.642-.513-.828-.498-.059.005-.101.059-.092.117 0 0 .082.272.129.516-.043.235-.021.651-.188.911-.128.098-.214.305-.572.522-.213.129-1.186.729-1.186.729-.25.148-.287.269-.42.351-.273.168-1.026.535-1.257.68-.231.145-.289.363-.271.516.018.152.074.228.074.228s.446.283 2.106.121c.974-.095 4.774-1.125 4.774-1.125l.075-.167c.076-.168.02-.403-.013-.607z"/><path fill="#CCD6DD" d="M15.299 32.271c-.017 0-.033-.002-.051-.006l-.34-.089c-.106-.028-.171-.137-.143-.244.028-.107.132-.172.244-.143l.34.089c.106.028.171.137.143.244-.023.09-.104.149-.193.149z"/><path fill="#DD2E44" d="M15.938 34.472c.035-.26.248-.886.59-1.135.308-.224 1.211-.559 1.382-.622.101.281.197.727.22.873.031.192.06.447-.017.606-.05.105-1.547.178-2.175.278z"/><path fill="#CCD6DD" d="M18.14 34.183s-.159.039-.287-.008-.409-.028-.614.004c-.204.033-.976.142-1.497.298-.521.157-1.431.567-1.747.657s-.812.211-1.195.239c-.383.027-.728.04-.942.036-.277-.004-.513-.045-.69-.117 0 0 .136.409.834.567.552.125 1.055.145 1.524.078.036-.005 1.278-.212 1.899-.318.453-.078 1.178-.198 1.178-.198.861-.137 1.293-.229 1.444-.307.027-.014.144-.05.244-.172.066-.079-.041-.777-.151-.759zm-3.378-1.16c-.057 0-.113-.024-.153-.071l-.227-.269c-.071-.084-.06-.211.024-.282.084-.07.21-.061.282.024l.227.269c.071.084.06.211-.024.282-.037.032-.083.047-.129.047zm-.601.47c-.067 0-.133-.034-.17-.095l-.194-.316c-.059-.094-.029-.217.065-.275.092-.057.218-.029.274.066l.194.316c.059.094.029.217-.065.275-.032.02-.068.029-.104.029zm-.653.384c-.075 0-.148-.043-.182-.116l-.142-.308c-.046-.1-.002-.219.098-.265.101-.046.22-.003.266.098l.142.308c.046.1.002.219-.098.265-.027.012-.055.018-.084.018z"/><path fill="#A0041E" d="M16.444 21.431c.754-.391 3.244-1.626 4.948-1.799.156-.016.295.078.346.218l1.259 3.435c.065.176-.033.372-.222.433-.78.251-2.74.917-4.224 1.706-.157.084-.345.045-.443-.094-.442-.624-1.591-2.328-1.848-3.543-.031-.144.047-.286.184-.356z"/><path fill="#BE1931" d="M21.42 25.547c-.187-.828-.749-3.55-.494-5.242.023-.155.147-.265.292-.279l3.581-.349c.184-.018.346.126.357.325.047.818.198 2.882.584 4.518.041.173-.043.345-.198.405-.703.27-2.609.95-3.829.892-.144-.008-.259-.12-.293-.27z"/><path fill="#F3D2A2" d="M18.032 10.659c-.037.617.172 1.537 1.603 1.665 1.43.128 2.808-.164 3.392-.377.584-.214.637.836.892 1.807.256.974.44 1.739.407 1.947-.054.352-.726 1.071-.388 1.647s.848 1.115 1.404.854 1.009-.557 1.136-.889c.127-.333-.626-1.25-.674-1.525s-.081-3.894-.146-4.3c-.08-.496-.172-1.177-1.01-1.395-.838-.218-4.153-.593-4.985-.688-.954-.109-1.582.436-1.631 1.254z"/><path fill="#F3D2A2" d="M19.132 6.366c.31-.401.546-.872.661-1.455.409-2.083-.794-4.073-2.688-4.444-1.893-.372-4.483 1.029-4.425 3.151.057 2.107 1.229 5.214 2.993 4.69.466-.138.932-.29 1.375-.474.189.224.325 1.081.247 1.815-.2 1.87 2.381 2.065 2.579.192.157-1.481-.768-2.423-.742-3.475z"/><path fill="#FFE51E" d="M24.54 2.488c-1.311-.014-2.496-1.36-3.845-.501-.264.168-.456.337-.604.503-.234-.711-.636-1.367-1.299-1.799-.648-.422-1.443-.737-2.194-.652-4.578.516-4.329 3.827-3.981 4.137.348.31 1.299-.572 2.002-.669.328-.046 1.041-.053 1.419.49.306.44.411 1.33.411 1.33s.012-1.012.041-1.368c.027-.332.356-.714.801-.221.387.428.19 1.268-.079 1.356-.207.068.129.575.648.961.946.704 1.681.428 1.786.389.106-.039.465-.118.648-1.333.026-.169.044-.35.055-.537.374.324.987.709 1.827.715.929.007 2.619-.466 3.586-1.621.744-.889 1.05-2.355 1.05-2.355-.395.736-1.283 1.186-2.272 1.175z"/><path fill="#DD2E44" d="M22.418 9.749c-.897-1.578-2.174-2.314-3.528-1.683-2.437 1.136-2.644 2.853-1.828 5.349.603 1.845 2.094 3.688 2.906 6.927 0 0 2.246.202 5.436-.14 0-.001-.827-6.655-2.986-10.453z"/><path fill="#F3D2A2" d="M19.923 10.158c-.603-.298-1.501-.279-2.236 1.101-.735 1.38-.969 2.5-1.173 3.36-.157.659-1.276.42-2.358.265-1.086-.156-2.742-.317-2.938-.438-.191-.118-1.507-.386-1.973-.393-.34-.005-2.01.282-2.402.612-.461.388 2.658.325 2.937.594s.914.457 1.312.562c.294.078 4.284 1.268 4.719 1.375.531.131 1.239.341 1.813-.406.574-.748 2.271-3.675 2.719-4.469.513-.91.38-1.768-.42-2.163z"/><circle fill="#FFAC33" cx="6.397" cy="21.831" r="3.603"/><path fill="#C1694F" d="M7.365 21.657c.764.708 1.573 1.273 2.329 1.615.122-.277.201-.573.25-.881-.628-.303-1.297-.777-1.942-1.37l1.304-1.304c-.178-.245-.389-.459-.621-.652l-1.32 1.32c-.646-.702-1.158-1.437-1.455-2.11-.306.042-.603.109-.879.223.013.031.016.059.03.09.336.785.927 1.635 1.667 2.434L5.43 22.319c-.796-.737-1.642-1.325-2.423-1.662-.1.29-.162.595-.185.914.636.302 1.317.782 1.972 1.385l-1.158 1.158c.193.232.408.444.652.621l1.142-1.142c.592.643 1.023 1.262 1.304 1.803.315-.03.617-.093.903-.199-.356-.751-.914-1.542-1.564-2.247l1.292-1.293z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/26f9-1f3fc-200d-2642-fe0f.svg b/public/emoji/26f9-1f3fc-200d-2642-fe0f.svg
index 102413c1db40ed1b2af3b0b7c857a3216a300c01..fb2b1e1b536df8749fe1cf47ad701b3149239195 100644
--- a/public/emoji/26f9-1f3fc-200d-2642-fe0f.svg
+++ b/public/emoji/26f9-1f3fc-200d-2642-fe0f.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#F3D2A2" d="M30.853 27.634c-.081 0-.163-.01-.243-.028l-7.476-1.668c-.403-.094-.713-.402-.81-.805l-1.216-5.066c-.068-.282-.023-.572.129-.819.151-.247.391-.421.672-.487.085-.021.171-.031.256-.031.502 0 .935.342 1.052.832l1.06 4.415 6.821 1.517c.283.065.522.237.676.483.153.246.202.536.137.818-.094.402-.403.713-.807.81-.083.019-.167.029-.251.029zM11.318 4.474c-1.158.564.52 2.167.439 3.483-.052.909 1.722.595 1.722.595s1.159-.564 1.425 1.455c.262 2.017 3.141 2.05 2.877.03-.266-2.016-2.131-2.69-1.612-4.435 1.239-4.176-4.851-1.128-4.851-1.128z"/><path fill="#F3D2A2" d="M27.516 15.314c-.373.089-.779-.03-1.043-.342-2.682-3.189-8.798-3.763-8.859-3.769-.572-.05-.997-.556-.946-1.129.05-.572.548-.998 1.127-.947.286.024 7.034.65 10.275 4.503.37.441.313 1.098-.128 1.469-.129.107-.275.178-.426.215zM17.47 35.301c-.598.028-1.107-.435-1.135-1.031l-.448-8.575c-.011-.243.061-.486.203-.684l5.246-7.271c.184-.255.469-.417.782-.445.259-.023.518.048.73.2.235.17.391.421.438.707.046.286-.022.573-.191.806l-5.024 6.966.431 8.195c.022.48-.28.925-.737 1.079-.077.025-.158.043-.242.051l-.053.002z"/><path fill="#2A6797" d="M15.28 24.425l5.246-7.271c.672-.932 1.976-1.144 2.909-.47.934.673 1.144 1.977.471 2.909l-4.819 6.681c-.001-.001-4.083-1.467-3.807-1.849z"/><path fill="#357BAA" d="M21.352 25.366L20.136 20.3c-.27-1.119.421-2.245 1.541-2.513 1.119-.268 2.244.421 2.513 1.541l.915 3.814c-.001 0-3.569 2.993-3.753 2.224z"/><path fill="#4289C1" d="M18.333 35.988c.383-.001.591-.366.572-.758-.03-.626-.072-.881-.072-.881-.062-.299-.324-.912-.688-.912-2.642 0-5.538.879-6.23 1.5-.409.367-.146 1.061.397 1.06l6.021-.009zm6.875-17.207c-.208.365-1.473-.525-2.99.281-2.156 1.146-3.339.467-3.339.467-3.486-5.595-6.243-8.149-2.809-11.024 1.097-.918 2.454-.523 3.663.76 2.913 3.089 5.684 9.152 5.475 9.516z"/><path fill="#B39155" d="M11.456 5.045c-1.292.498-1.379-.954-.764-1.773.867-1.155 3.366-1.697 4.665-1.06 1.297.637 1.728 2.432.86 3.587-.613.817-.652 2.054-1.083.26-.43-1.793-1.083.261-1.298-.636-.216-.897-2.38-.378-2.38-.378z"/><path fill="#F3D2A2" d="M15.148 11.32c-.033.046-3.381 4.532-8.152 5.032l.002.02c-.483.051-.884.417-.931.919-.053.573.367 1.082.941 1.135.07.006.135-.014.203-.023l.003.021c5.678-.594 9.456-5.654 9.613-5.869l-1.679-1.235z"/><ellipse transform="rotate(-80.781 7 24.32)" fill="#FFAC33" cx="7" cy="24.32" rx="4" ry="4"/><path fill="#C1694F" d="M8.075 24.127c.849.786 1.747 1.413 2.586 1.793.135-.307.223-.636.277-.978-.697-.337-1.44-.862-2.156-1.521l1.448-1.448c-.197-.271-.432-.51-.69-.724l-1.465 1.465c-.717-.779-1.286-1.595-1.615-2.343-.34.046-.669.121-.976.248.014.035.018.065.033.1.373.872 1.03 1.815 1.851 2.702l-1.442 1.442c-.883-.818-1.823-1.471-2.691-1.845-.111.322-.18.661-.206 1.014.706.336 1.462.868 2.189 1.538l-1.285 1.286c.214.258.453.492.724.69l1.268-1.268c.658.714 1.136 1.401 1.448 2.002.349-.033.685-.104 1.003-.22-.396-.834-1.015-1.712-1.737-2.495l1.436-1.438z"/><path fill="#F3D2A2" d="M17.255 5.459c-.262 2.342-2.251 3.358-4.247 4.134-1.904.741-3.484-2.589-3.74-4.915C9.01 2.336 11.747.549 13.875.788s3.642 2.33 3.38 4.671z"/><path fill="#FFE51E" d="M9.962 1.651c2.704-1.981 4.635-1.834 6.321-.68 1.674 1.146 1.929 3.534 1.603 5.091-.326 1.557-.776 1.507-.776 1.507s-2.07.636-2.373-1.306c-.096-.614.567-.999-.248-1.849-.525-.547-1.574-.176-1.516.665.058.841-.384.716-.384.716L11.158 3.66s-1.095.019-1.627 1.064c-.333.657-1.931-1.343.431-3.073z"/><path fill="#4289C1" d="M18.353 34.699h-1.977c-.185 0-.595-.158-.595-.35l.188-1.084c0-.193.096-.5.376-.5s.64.235.999.235.688-.522.96-.522c.211 0 .305.084.336.35l.193 1.521c0 .193-.295.35-.48.35zm14.494-8.875c.056-.379-.275-.638-.665-.677-.624-.062-.882-.058-.882-.058-.305.017-.949.186-1.003.546-.388 2.614.055 5.607.568 6.383.303.458 1.028.301 1.107-.237l.875-5.957z"/><path fill="#4289C1" d="M31.575 25.615l-.291 1.955c-.027.183-.243.565-.434.537l-1.044-.345c-.19-.028-.481-.169-.439-.446.041-.277.326-.599.379-.954.053-.355-.415-.757-.375-1.026.031-.209.128-.289.396-.281l1.533.033c.19.029.302.344.275.527z"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#F3D2A2" d="M26.3 26.621c-.339-.021-.504-.165-.57-.496-.187-.94-.313-1.721-.356-1.993l-3.912.767c.118.473.644 2.5 1.322 3.806.393.757.831.782 1.79.838 0 0 3.726-.134 6.305-.231 1.142-.043 1.225-1.795.253-2.014-.692-.156-1.438-.3-2.053-.36-.465-.046-2.539-.303-2.779-.317zm-7.462-1.676l-1.729-3.593c-.428.233-2.257 1.253-3.35 2.237-.635.572-.549 1.002-.36 1.944 0 0 1.087 3.639 1.831 6.111.32 1.062 2.024.713 1.995-.251-.022-.732-.07-1.523-.171-2.156-.073-.463-.348-2.534-.394-2.77-.064-.334.033-.53.337-.677.863-.416 1.588-.735 1.841-.845z"/><path fill="#1C6399" d="M32.67 26.978c-.133.007-.238.02-.315.037l-1.55.085c-.078.002-.137.069-.131.147.017.225.309.899.018 1.424-.195.351-.656.495-.688.679-.01.058.032.112.091.118 0 0 .284-.012.532.003.217.1.626.182.836.408.063.148.242.283.364.684.072.239.412 1.33.412 1.33.081.278.189.345.236.494.095.306.263 1.127.346 1.387.083.26.28.37.433.391.152.02.239-.016.239-.016s.385-.362.64-2.01c.15-.967.095-4.904.095-4.904l-1.558-.257z"/><path fill="#CCD6DD" d="M31.227 29.855c-.033 0-.066-.008-.097-.025-.097-.053-.132-.175-.078-.272l.17-.307c.054-.097.178-.131.271-.078.097.053.132.175.078.272l-.17.307c-.035.066-.103.103-.174.103z"/><path fill="#3B94D9" d="M33.882 29.325c-.243-.098-.797-.461-.953-.853-.141-.354-.241-1.312-.259-1.493.297-.028.753-.01.9.004.194.018.447.044.585.166-.001-.001-.214 1.543-.273 2.176z"/><path fill="#CCD6DD" d="M34.148 27.12s-.002.164-.079.276c-.077.113-.129.39-.149.596-.019.206-.105.981-.083 1.524.022.544.194 1.527.203 1.855.009.328.003.839-.065 1.217-.069.378-.142.715-.199.922-.073.267-.171.486-.285.639 0 0 .43-.03.757-.667.258-.503.402-.986.454-1.457l.263-3.109c.081-.868.1-1.309.061-1.475-.007-.029-.013-.152-.106-.279-.06-.083-.762-.153-.772-.042zm-2.472 3.287c-.074 0-.146-.042-.181-.113-.048-.1-.006-.219.094-.267l.317-.152c.101-.046.219-.006.268.094.048.1.006.219-.094.267l-.317.152c-.029.013-.058.019-.087.019zm.268.657c-.086 0-.164-.055-.191-.141-.032-.105.026-.218.132-.25l.354-.11c.112-.033.217.027.251.132.032.105-.026.218-.132.25l-.354.11c-.021.006-.04.009-.06.009zm.232.678c-.095 0-.179-.067-.196-.164-.021-.109.052-.213.16-.233l.333-.061c.108-.02.213.052.232.161.021.109-.052.213-.16.233l-.333.061-.036.003z"/><path fill="#1C6399" d="M17.911 32.716c-.04-.128-.078-.226-.114-.296l-.467-1.48c-.021-.075-.101-.116-.175-.09-.214.073-.794.523-1.375.371-.388-.102-.642-.513-.828-.498-.059.005-.101.059-.092.117 0 0 .082.272.129.516-.043.235-.021.651-.188.911-.128.098-.214.305-.572.522-.213.129-1.186.729-1.186.729-.25.148-.287.269-.42.351-.273.168-1.026.535-1.257.68-.231.145-.289.363-.271.516.018.152.074.228.074.228s.446.283 2.106.121c.974-.095 4.775-1.117 4.775-1.117s-.049-1.295-.139-1.581z"/><path fill="#CCD6DD" d="M15.3 32.271c-.017 0-.033-.002-.051-.006l-.34-.089c-.106-.028-.171-.137-.143-.244.027-.107.131-.171.244-.143l.34.089c.106.028.171.137.143.244-.023.09-.105.149-.193.149z"/><path fill="#3B94D9" d="M15.939 34.472c.035-.26.248-.886.59-1.135.308-.224 1.211-.559 1.382-.622.101.281.197.727.22.873.031.192.072.411-.022.609 0 .001-1.543.176-2.17.275z"/><path fill="#CCD6DD" d="M18.141 34.183s-.159.039-.287-.008-.409-.028-.614.004c-.204.033-.976.142-1.497.298-.521.157-1.431.567-1.747.657s-.812.211-1.195.239c-.383.027-.728.04-.942.036-.277-.004-.513-.045-.69-.117 0 0 .136.409.834.567.552.125 1.055.145 1.524.078.036-.005 3.077-.517 3.077-.517.861-.137 1.293-.229 1.444-.307.027-.014.144-.05.244-.172.065-.078-.042-.776-.151-.758zm-3.379-1.16c-.057 0-.113-.024-.153-.071l-.227-.269c-.071-.084-.06-.211.024-.282.084-.07.21-.061.282.024l.227.269c.071.084.06.211-.024.282-.037.032-.083.047-.129.047zm-.6.47c-.067 0-.133-.034-.17-.095l-.194-.316c-.059-.094-.029-.217.065-.275.093-.057.217-.029.274.066l.194.316c.059.094.029.217-.065.275-.032.02-.068.029-.104.029zm-.652.384c-.075 0-.147-.043-.182-.116l-.143-.308c-.046-.1-.003-.219.098-.265.1-.047.219-.003.266.097l.143.308c.046.1.003.219-.098.265-.028.013-.056.019-.084.019z"/><path fill="#1C6399" d="M16.404 21.332c.751-.398 3.235-1.653 4.947-1.804.156-.014.298.088.352.235l1.328 3.635c.068.186-.027.391-.216.451-.781.25-2.74.915-4.22 1.719-.157.085-.347.041-.448-.106-.456-.664-1.642-2.477-1.923-3.76-.032-.15.045-.298.18-.37z"/><path fill="#357BAA" d="M21.264 25.576c-.196-.827-.785-3.547-.501-5.242.026-.155.16-.266.316-.281l3.853-.37c.198-.019.371.124.382.323.046.818.196 2.882.601 4.517.043.173-.048.346-.216.407-.758.274-2.811.965-4.123.914-.153-.006-.276-.118-.312-.268z"/><path fill="#F3D2A2" d="M18.032 10.676c-.037.617.172 1.537 1.603 1.665 1.43.128 2.808-.164 3.392-.377.584-.214.637.836.892 1.807.256.974.44 1.739.407 1.947-.054.352-.726 1.071-.388 1.647.338.576.848 1.115 1.404.854s1.009-.557 1.136-.889c.127-.333-.626-1.25-.674-1.525s-.081-3.894-.146-4.3c-.08-.496-.172-1.177-1.01-1.395s-4.153-.593-4.985-.688c-.953-.109-1.582.436-1.631 1.254z"/><path fill="#F3D2A2" d="M18.885 6.217c.253-.418.429-.895.475-1.466C19.525 2.71 18.155.934 16.3.784c-1.855-.15-4.184 1.475-3.897 3.502.285 2.013 1.746 4.863 3.38 4.169.431-.183.861-.38 1.267-.604.205.194.429 1.001.435 1.713.012 1.814 2.507 1.72 2.492-.097-.013-1.437-1.002-2.239-1.092-3.25z"/><path fill="#FFE51E" d="M12.925 1.639c2.296-1.793 3.976-1.717 5.471-.76 1.485.951 1.77 3.017 1.528 4.378-.241 1.361-.633 1.329-.633 1.329s-1.781.607-2.096-1.071c-.1-.531.466-.883-.265-1.599-.47-.461-1.372-.111-1.299.618.073.729-.314.632-.314.632l-1.3-1.814s-.951.046-1.384.968c-.272.579-1.713-1.115.292-2.681z"/><path fill="#4289C1" d="M22.418 9.765c-.897-1.578-2.174-2.314-3.528-1.683-4.238 1.976-1.905 5.849.189 12.276 0 0 3.134.202 6.325-.14.001 0-.826-6.654-2.986-10.453z"/><path fill="#F3D2A2" d="M19.924 10.175c-.603-.298-1.614-.479-2.349.901-.735 1.38-1.027 2.884-1.06 3.561-.033.677-1.108.284-2.191.128-1.086-.156-2.853-.332-3.048-.453-.191-.118-1.565-.234-2.03-.242-.34-.005-2.104.282-2.496.612-.461.388 2.73.461 3.01.729.28.269.876.481 1.274.587.294.078 4.391 1.364 4.826 1.471.531.131 1.253.327 1.827-.421.574-.748 2.356-3.913 2.804-4.707.512-.909.232-1.771-.567-2.166z"/><circle fill="#FFAC33" cx="6.397" cy="21.831" r="3.603"/><path fill="#C1694F" d="M7.365 21.657c.764.708 1.573 1.273 2.329 1.615.122-.277.201-.573.25-.881-.628-.303-1.297-.777-1.942-1.37l1.304-1.304c-.178-.245-.389-.459-.621-.652l-1.32 1.32c-.646-.702-1.158-1.437-1.455-2.11-.306.042-.603.109-.879.223.013.031.016.059.03.09.336.785.927 1.635 1.667 2.434L5.43 22.319c-.796-.737-1.642-1.325-2.423-1.662-.1.29-.162.595-.185.914.636.302 1.317.782 1.972 1.385l-1.158 1.158c.193.232.408.444.652.621l1.142-1.142c.592.643 1.023 1.262 1.304 1.803.315-.03.617-.093.903-.199-.356-.751-.914-1.542-1.564-2.247l1.292-1.293z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/26f9-1f3fc.svg b/public/emoji/26f9-1f3fc.svg
index 102413c1db40ed1b2af3b0b7c857a3216a300c01..fb2b1e1b536df8749fe1cf47ad701b3149239195 100644
--- a/public/emoji/26f9-1f3fc.svg
+++ b/public/emoji/26f9-1f3fc.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#F3D2A2" d="M30.853 27.634c-.081 0-.163-.01-.243-.028l-7.476-1.668c-.403-.094-.713-.402-.81-.805l-1.216-5.066c-.068-.282-.023-.572.129-.819.151-.247.391-.421.672-.487.085-.021.171-.031.256-.031.502 0 .935.342 1.052.832l1.06 4.415 6.821 1.517c.283.065.522.237.676.483.153.246.202.536.137.818-.094.402-.403.713-.807.81-.083.019-.167.029-.251.029zM11.318 4.474c-1.158.564.52 2.167.439 3.483-.052.909 1.722.595 1.722.595s1.159-.564 1.425 1.455c.262 2.017 3.141 2.05 2.877.03-.266-2.016-2.131-2.69-1.612-4.435 1.239-4.176-4.851-1.128-4.851-1.128z"/><path fill="#F3D2A2" d="M27.516 15.314c-.373.089-.779-.03-1.043-.342-2.682-3.189-8.798-3.763-8.859-3.769-.572-.05-.997-.556-.946-1.129.05-.572.548-.998 1.127-.947.286.024 7.034.65 10.275 4.503.37.441.313 1.098-.128 1.469-.129.107-.275.178-.426.215zM17.47 35.301c-.598.028-1.107-.435-1.135-1.031l-.448-8.575c-.011-.243.061-.486.203-.684l5.246-7.271c.184-.255.469-.417.782-.445.259-.023.518.048.73.2.235.17.391.421.438.707.046.286-.022.573-.191.806l-5.024 6.966.431 8.195c.022.48-.28.925-.737 1.079-.077.025-.158.043-.242.051l-.053.002z"/><path fill="#2A6797" d="M15.28 24.425l5.246-7.271c.672-.932 1.976-1.144 2.909-.47.934.673 1.144 1.977.471 2.909l-4.819 6.681c-.001-.001-4.083-1.467-3.807-1.849z"/><path fill="#357BAA" d="M21.352 25.366L20.136 20.3c-.27-1.119.421-2.245 1.541-2.513 1.119-.268 2.244.421 2.513 1.541l.915 3.814c-.001 0-3.569 2.993-3.753 2.224z"/><path fill="#4289C1" d="M18.333 35.988c.383-.001.591-.366.572-.758-.03-.626-.072-.881-.072-.881-.062-.299-.324-.912-.688-.912-2.642 0-5.538.879-6.23 1.5-.409.367-.146 1.061.397 1.06l6.021-.009zm6.875-17.207c-.208.365-1.473-.525-2.99.281-2.156 1.146-3.339.467-3.339.467-3.486-5.595-6.243-8.149-2.809-11.024 1.097-.918 2.454-.523 3.663.76 2.913 3.089 5.684 9.152 5.475 9.516z"/><path fill="#B39155" d="M11.456 5.045c-1.292.498-1.379-.954-.764-1.773.867-1.155 3.366-1.697 4.665-1.06 1.297.637 1.728 2.432.86 3.587-.613.817-.652 2.054-1.083.26-.43-1.793-1.083.261-1.298-.636-.216-.897-2.38-.378-2.38-.378z"/><path fill="#F3D2A2" d="M15.148 11.32c-.033.046-3.381 4.532-8.152 5.032l.002.02c-.483.051-.884.417-.931.919-.053.573.367 1.082.941 1.135.07.006.135-.014.203-.023l.003.021c5.678-.594 9.456-5.654 9.613-5.869l-1.679-1.235z"/><ellipse transform="rotate(-80.781 7 24.32)" fill="#FFAC33" cx="7" cy="24.32" rx="4" ry="4"/><path fill="#C1694F" d="M8.075 24.127c.849.786 1.747 1.413 2.586 1.793.135-.307.223-.636.277-.978-.697-.337-1.44-.862-2.156-1.521l1.448-1.448c-.197-.271-.432-.51-.69-.724l-1.465 1.465c-.717-.779-1.286-1.595-1.615-2.343-.34.046-.669.121-.976.248.014.035.018.065.033.1.373.872 1.03 1.815 1.851 2.702l-1.442 1.442c-.883-.818-1.823-1.471-2.691-1.845-.111.322-.18.661-.206 1.014.706.336 1.462.868 2.189 1.538l-1.285 1.286c.214.258.453.492.724.69l1.268-1.268c.658.714 1.136 1.401 1.448 2.002.349-.033.685-.104 1.003-.22-.396-.834-1.015-1.712-1.737-2.495l1.436-1.438z"/><path fill="#F3D2A2" d="M17.255 5.459c-.262 2.342-2.251 3.358-4.247 4.134-1.904.741-3.484-2.589-3.74-4.915C9.01 2.336 11.747.549 13.875.788s3.642 2.33 3.38 4.671z"/><path fill="#FFE51E" d="M9.962 1.651c2.704-1.981 4.635-1.834 6.321-.68 1.674 1.146 1.929 3.534 1.603 5.091-.326 1.557-.776 1.507-.776 1.507s-2.07.636-2.373-1.306c-.096-.614.567-.999-.248-1.849-.525-.547-1.574-.176-1.516.665.058.841-.384.716-.384.716L11.158 3.66s-1.095.019-1.627 1.064c-.333.657-1.931-1.343.431-3.073z"/><path fill="#4289C1" d="M18.353 34.699h-1.977c-.185 0-.595-.158-.595-.35l.188-1.084c0-.193.096-.5.376-.5s.64.235.999.235.688-.522.96-.522c.211 0 .305.084.336.35l.193 1.521c0 .193-.295.35-.48.35zm14.494-8.875c.056-.379-.275-.638-.665-.677-.624-.062-.882-.058-.882-.058-.305.017-.949.186-1.003.546-.388 2.614.055 5.607.568 6.383.303.458 1.028.301 1.107-.237l.875-5.957z"/><path fill="#4289C1" d="M31.575 25.615l-.291 1.955c-.027.183-.243.565-.434.537l-1.044-.345c-.19-.028-.481-.169-.439-.446.041-.277.326-.599.379-.954.053-.355-.415-.757-.375-1.026.031-.209.128-.289.396-.281l1.533.033c.19.029.302.344.275.527z"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#F3D2A2" d="M26.3 26.621c-.339-.021-.504-.165-.57-.496-.187-.94-.313-1.721-.356-1.993l-3.912.767c.118.473.644 2.5 1.322 3.806.393.757.831.782 1.79.838 0 0 3.726-.134 6.305-.231 1.142-.043 1.225-1.795.253-2.014-.692-.156-1.438-.3-2.053-.36-.465-.046-2.539-.303-2.779-.317zm-7.462-1.676l-1.729-3.593c-.428.233-2.257 1.253-3.35 2.237-.635.572-.549 1.002-.36 1.944 0 0 1.087 3.639 1.831 6.111.32 1.062 2.024.713 1.995-.251-.022-.732-.07-1.523-.171-2.156-.073-.463-.348-2.534-.394-2.77-.064-.334.033-.53.337-.677.863-.416 1.588-.735 1.841-.845z"/><path fill="#1C6399" d="M32.67 26.978c-.133.007-.238.02-.315.037l-1.55.085c-.078.002-.137.069-.131.147.017.225.309.899.018 1.424-.195.351-.656.495-.688.679-.01.058.032.112.091.118 0 0 .284-.012.532.003.217.1.626.182.836.408.063.148.242.283.364.684.072.239.412 1.33.412 1.33.081.278.189.345.236.494.095.306.263 1.127.346 1.387.083.26.28.37.433.391.152.02.239-.016.239-.016s.385-.362.64-2.01c.15-.967.095-4.904.095-4.904l-1.558-.257z"/><path fill="#CCD6DD" d="M31.227 29.855c-.033 0-.066-.008-.097-.025-.097-.053-.132-.175-.078-.272l.17-.307c.054-.097.178-.131.271-.078.097.053.132.175.078.272l-.17.307c-.035.066-.103.103-.174.103z"/><path fill="#3B94D9" d="M33.882 29.325c-.243-.098-.797-.461-.953-.853-.141-.354-.241-1.312-.259-1.493.297-.028.753-.01.9.004.194.018.447.044.585.166-.001-.001-.214 1.543-.273 2.176z"/><path fill="#CCD6DD" d="M34.148 27.12s-.002.164-.079.276c-.077.113-.129.39-.149.596-.019.206-.105.981-.083 1.524.022.544.194 1.527.203 1.855.009.328.003.839-.065 1.217-.069.378-.142.715-.199.922-.073.267-.171.486-.285.639 0 0 .43-.03.757-.667.258-.503.402-.986.454-1.457l.263-3.109c.081-.868.1-1.309.061-1.475-.007-.029-.013-.152-.106-.279-.06-.083-.762-.153-.772-.042zm-2.472 3.287c-.074 0-.146-.042-.181-.113-.048-.1-.006-.219.094-.267l.317-.152c.101-.046.219-.006.268.094.048.1.006.219-.094.267l-.317.152c-.029.013-.058.019-.087.019zm.268.657c-.086 0-.164-.055-.191-.141-.032-.105.026-.218.132-.25l.354-.11c.112-.033.217.027.251.132.032.105-.026.218-.132.25l-.354.11c-.021.006-.04.009-.06.009zm.232.678c-.095 0-.179-.067-.196-.164-.021-.109.052-.213.16-.233l.333-.061c.108-.02.213.052.232.161.021.109-.052.213-.16.233l-.333.061-.036.003z"/><path fill="#1C6399" d="M17.911 32.716c-.04-.128-.078-.226-.114-.296l-.467-1.48c-.021-.075-.101-.116-.175-.09-.214.073-.794.523-1.375.371-.388-.102-.642-.513-.828-.498-.059.005-.101.059-.092.117 0 0 .082.272.129.516-.043.235-.021.651-.188.911-.128.098-.214.305-.572.522-.213.129-1.186.729-1.186.729-.25.148-.287.269-.42.351-.273.168-1.026.535-1.257.68-.231.145-.289.363-.271.516.018.152.074.228.074.228s.446.283 2.106.121c.974-.095 4.775-1.117 4.775-1.117s-.049-1.295-.139-1.581z"/><path fill="#CCD6DD" d="M15.3 32.271c-.017 0-.033-.002-.051-.006l-.34-.089c-.106-.028-.171-.137-.143-.244.027-.107.131-.171.244-.143l.34.089c.106.028.171.137.143.244-.023.09-.105.149-.193.149z"/><path fill="#3B94D9" d="M15.939 34.472c.035-.26.248-.886.59-1.135.308-.224 1.211-.559 1.382-.622.101.281.197.727.22.873.031.192.072.411-.022.609 0 .001-1.543.176-2.17.275z"/><path fill="#CCD6DD" d="M18.141 34.183s-.159.039-.287-.008-.409-.028-.614.004c-.204.033-.976.142-1.497.298-.521.157-1.431.567-1.747.657s-.812.211-1.195.239c-.383.027-.728.04-.942.036-.277-.004-.513-.045-.69-.117 0 0 .136.409.834.567.552.125 1.055.145 1.524.078.036-.005 3.077-.517 3.077-.517.861-.137 1.293-.229 1.444-.307.027-.014.144-.05.244-.172.065-.078-.042-.776-.151-.758zm-3.379-1.16c-.057 0-.113-.024-.153-.071l-.227-.269c-.071-.084-.06-.211.024-.282.084-.07.21-.061.282.024l.227.269c.071.084.06.211-.024.282-.037.032-.083.047-.129.047zm-.6.47c-.067 0-.133-.034-.17-.095l-.194-.316c-.059-.094-.029-.217.065-.275.093-.057.217-.029.274.066l.194.316c.059.094.029.217-.065.275-.032.02-.068.029-.104.029zm-.652.384c-.075 0-.147-.043-.182-.116l-.143-.308c-.046-.1-.003-.219.098-.265.1-.047.219-.003.266.097l.143.308c.046.1.003.219-.098.265-.028.013-.056.019-.084.019z"/><path fill="#1C6399" d="M16.404 21.332c.751-.398 3.235-1.653 4.947-1.804.156-.014.298.088.352.235l1.328 3.635c.068.186-.027.391-.216.451-.781.25-2.74.915-4.22 1.719-.157.085-.347.041-.448-.106-.456-.664-1.642-2.477-1.923-3.76-.032-.15.045-.298.18-.37z"/><path fill="#357BAA" d="M21.264 25.576c-.196-.827-.785-3.547-.501-5.242.026-.155.16-.266.316-.281l3.853-.37c.198-.019.371.124.382.323.046.818.196 2.882.601 4.517.043.173-.048.346-.216.407-.758.274-2.811.965-4.123.914-.153-.006-.276-.118-.312-.268z"/><path fill="#F3D2A2" d="M18.032 10.676c-.037.617.172 1.537 1.603 1.665 1.43.128 2.808-.164 3.392-.377.584-.214.637.836.892 1.807.256.974.44 1.739.407 1.947-.054.352-.726 1.071-.388 1.647.338.576.848 1.115 1.404.854s1.009-.557 1.136-.889c.127-.333-.626-1.25-.674-1.525s-.081-3.894-.146-4.3c-.08-.496-.172-1.177-1.01-1.395s-4.153-.593-4.985-.688c-.953-.109-1.582.436-1.631 1.254z"/><path fill="#F3D2A2" d="M18.885 6.217c.253-.418.429-.895.475-1.466C19.525 2.71 18.155.934 16.3.784c-1.855-.15-4.184 1.475-3.897 3.502.285 2.013 1.746 4.863 3.38 4.169.431-.183.861-.38 1.267-.604.205.194.429 1.001.435 1.713.012 1.814 2.507 1.72 2.492-.097-.013-1.437-1.002-2.239-1.092-3.25z"/><path fill="#FFE51E" d="M12.925 1.639c2.296-1.793 3.976-1.717 5.471-.76 1.485.951 1.77 3.017 1.528 4.378-.241 1.361-.633 1.329-.633 1.329s-1.781.607-2.096-1.071c-.1-.531.466-.883-.265-1.599-.47-.461-1.372-.111-1.299.618.073.729-.314.632-.314.632l-1.3-1.814s-.951.046-1.384.968c-.272.579-1.713-1.115.292-2.681z"/><path fill="#4289C1" d="M22.418 9.765c-.897-1.578-2.174-2.314-3.528-1.683-4.238 1.976-1.905 5.849.189 12.276 0 0 3.134.202 6.325-.14.001 0-.826-6.654-2.986-10.453z"/><path fill="#F3D2A2" d="M19.924 10.175c-.603-.298-1.614-.479-2.349.901-.735 1.38-1.027 2.884-1.06 3.561-.033.677-1.108.284-2.191.128-1.086-.156-2.853-.332-3.048-.453-.191-.118-1.565-.234-2.03-.242-.34-.005-2.104.282-2.496.612-.461.388 2.73.461 3.01.729.28.269.876.481 1.274.587.294.078 4.391 1.364 4.826 1.471.531.131 1.253.327 1.827-.421.574-.748 2.356-3.913 2.804-4.707.512-.909.232-1.771-.567-2.166z"/><circle fill="#FFAC33" cx="6.397" cy="21.831" r="3.603"/><path fill="#C1694F" d="M7.365 21.657c.764.708 1.573 1.273 2.329 1.615.122-.277.201-.573.25-.881-.628-.303-1.297-.777-1.942-1.37l1.304-1.304c-.178-.245-.389-.459-.621-.652l-1.32 1.32c-.646-.702-1.158-1.437-1.455-2.11-.306.042-.603.109-.879.223.013.031.016.059.03.09.336.785.927 1.635 1.667 2.434L5.43 22.319c-.796-.737-1.642-1.325-2.423-1.662-.1.29-.162.595-.185.914.636.302 1.317.782 1.972 1.385l-1.158 1.158c.193.232.408.444.652.621l1.142-1.142c.592.643 1.023 1.262 1.304 1.803.315-.03.617-.093.903-.199-.356-.751-.914-1.542-1.564-2.247l1.292-1.293z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/26f9-1f3fd-200d-2640-fe0f.svg b/public/emoji/26f9-1f3fd-200d-2640-fe0f.svg
index eecd25bcea88f7e2e776aaca2eb1e73f8074b2db..edb6001b4f48d26c8145b9c32025785278bfab2d 100644
--- a/public/emoji/26f9-1f3fd-200d-2640-fe0f.svg
+++ b/public/emoji/26f9-1f3fd-200d-2640-fe0f.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#D5AB88" d="M30.853 27.634c-.081 0-.163-.01-.243-.028l-7.476-1.668c-.403-.094-.713-.402-.81-.805l-1.216-5.066c-.068-.282-.023-.572.129-.819.151-.247.391-.421.672-.487.085-.021.171-.031.256-.031.502 0 .935.342 1.052.832l1.06 4.415 6.821 1.517c.283.065.522.237.676.483.153.246.202.536.137.818-.094.402-.403.713-.807.81-.083.019-.167.029-.251.029zM11.318 4.474c-1.158.564.52 2.167.439 3.483-.052.909 1.722.595 1.722.595s1.159-.564 1.425 1.455c.262 2.017 3.141 2.05 2.877.03-.266-2.016-2.131-2.69-1.612-4.435 1.239-4.176-4.851-1.128-4.851-1.128z"/><path fill="#D5AB88" d="M27.516 15.314c-.373.089-.779-.03-1.043-.342-2.682-3.189-8.798-3.763-8.859-3.769-.572-.05-.997-.556-.946-1.129.05-.572.548-.998 1.127-.947.286.024 7.034.65 10.275 4.503.37.441.313 1.098-.128 1.469-.129.107-.275.178-.426.215zM17.47 35.301c-.598.028-1.107-.435-1.135-1.031l-.448-8.575c-.011-.243.061-.486.203-.684l5.246-7.271c.184-.255.469-.417.782-.445.259-.023.518.048.73.2.235.17.391.421.438.707.046.286-.022.573-.191.806l-5.024 6.966.431 8.195c.022.48-.28.925-.737 1.079-.077.025-.158.043-.242.051l-.053.002z"/><path fill="#A0041E" d="M15.28 24.425l5.246-7.271c.672-.932 1.976-1.144 2.909-.47.934.673 1.144 1.977.471 2.909l-4.819 6.681c-.001-.001-4.083-1.467-3.807-1.849z"/><path fill="#BE1931" d="M21.352 25.366L20.136 20.3c-.27-1.119.421-2.245 1.541-2.513 1.119-.268 2.244.421 2.513 1.541l.915 3.814c-.001 0-3.569 2.993-3.753 2.224z"/><path fill="#D5AB88" d="M17.259 3.842c.537 2.238-.842 4.489-3.081 5.026-2.239.537-4.489-.842-5.026-3.081-.538-2.239.842-4.49 3.08-5.027 2.239-.537 4.49.842 5.027 3.082z"/><path fill="#963B22" d="M21.375 4.462c-1.083.083-2.14.092-4.208-1.976C15.792 1.111 14.564.273 11.834.643c-2.899.394-5.018 3.169-3 4.17.88.437 1.529.095 2.88.295 2.121.315 2.707 2.456 4.62 2.711 3.743.501 6.124-3.44 5.041-3.357z"/><ellipse transform="rotate(-80.781 7 24.32)" fill="#FFAC33" cx="7" cy="24.32" rx="4" ry="4"/><path fill="#C1694F" d="M8.075 24.126c.849.786 1.747 1.413 2.586 1.793.135-.307.223-.636.277-.978-.697-.337-1.44-.862-2.156-1.521l1.448-1.448c-.197-.271-.432-.51-.69-.724l-1.465 1.465c-.717-.779-1.286-1.595-1.615-2.343-.34.046-.669.121-.976.248.014.035.018.065.033.1.373.872 1.03 1.815 1.851 2.702l-1.442 1.442c-.883-.818-1.823-1.471-2.691-1.845-.111.322-.18.661-.206 1.014.706.336 1.462.868 2.189 1.538l-1.285 1.286c.214.258.453.492.724.69l1.268-1.268c.658.714 1.136 1.401 1.448 2.002.349-.033.685-.104 1.003-.22-.396-.834-1.015-1.712-1.737-2.495l1.436-1.438z"/><path fill="#DD2E44" d="M18.333 35.988c.383-.001.591-.366.572-.758-.03-.626-.072-.881-.072-.881-.062-.299-.324-.912-.688-.912-2.642 0-5.538.879-6.23 1.5-.409.367-.146 1.061.397 1.06l6.021-.009zm6.875-17.207c-.208.365-1.473-.525-2.99.281-2.156 1.146-3.339.467-3.339.467-3.486-5.595-6.243-8.149-2.809-11.024 1.097-.918 2.454-.523 3.663.76 2.913 3.089 5.684 9.152 5.475 9.516z"/><path fill="#DD2E44" d="M18.353 34.699h-1.977c-.185 0-.595-.158-.595-.35l.188-1.084c0-.193.096-.5.376-.5s.64.235.999.235.688-.522.96-.522c.211 0 .305.084.336.35l.193 1.521c0 .193-.295.35-.48.35zm14.494-8.875c.056-.379-.275-.638-.665-.677-.624-.062-.882-.058-.882-.058-.305.017-.949.186-1.003.546-.388 2.614.055 5.607.568 6.383.303.458 1.028.301 1.107-.237l.875-5.957z"/><path fill="#DD2E44" d="M31.575 25.615l-.291 1.955c-.027.183-.243.565-.434.537l-1.044-.345c-.19-.028-.481-.169-.439-.446.041-.277.326-.599.379-.954.053-.355-.415-.757-.375-1.026.031-.209.128-.289.396-.281l1.533.033c.19.029.302.344.275.527z"/><path fill="#D5AB88" d="M15.148 11.32c-.033.046-3.381 4.532-8.152 5.032l.002.02c-.483.051-.884.417-.931.919-.053.573.367 1.082.941 1.135.07.006.135-.014.203-.023l.003.021c5.678-.594 9.456-5.654 9.613-5.869l-1.679-1.235z"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#D4AB88" d="M26.29 26.753c-.53-.033-.658-.368-.708-.617-.16-.802-.275-1.489-.333-1.845l-3.604.707c.168.654.657 2.438 1.271 3.619.354.682.711.703 1.666.758 0 0 3.975-.139 6.542-.237.885-.034.973-1.48.215-1.657-.751-.176-1.595-.346-2.276-.413-.465-.044-2.533-.3-2.773-.315zm-12.431-3.068c-.57.514-.5.865-.312 1.803 0 0 1.113 3.738 1.854 6.2.265.881 1.698.641 1.679-.138-.019-.771-.067-1.63-.174-2.305-.073-.463-.346-2.528-.392-2.764-.102-.523.19-.73.419-.84.736-.356 1.371-.642 1.7-.786l-1.591-3.311c-.59.327-2.194 1.249-3.183 2.141z"/><path fill="#BE1931" d="M33.493 26.983c-.195-.018-.89-.026-1.139.032l-1.55.085c-.078.002-.137.069-.131.147.017.225.309.899.018 1.424-.195.351-.656.495-.688.679-.01.058.032.112.091.118 0 0 .284-.012.532.003.217.1.626.182.836.408.063.148.242.283.364.684.072.239.412 1.33.412 1.33.081.278.189.345.236.494.095.306.263 1.127.346 1.387.083.26.28.37.433.391.152.02.239-.016.239-.016s.385-.362.64-2.01c.15-.967.095-4.904.095-4.904l-.144-.114c-.143-.115-.384-.119-.59-.138z"/><path fill="#CCD6DD" d="M31.227 29.855c-.033 0-.066-.008-.097-.025-.097-.053-.132-.175-.078-.272l.17-.307c.054-.097.178-.131.271-.078.097.053.132.175.078.272l-.17.307c-.035.066-.104.103-.174.103z"/><path fill="#DD2E44" d="M33.882 29.325c-.243-.098-.797-.461-.953-.853-.141-.354-.241-1.312-.259-1.493.297-.028.753-.01.9.004.194.018.448.047.582.16.012.01-.22 1.64-.27 2.182z"/><path fill="#CCD6DD" d="M34.147 27.12s-.002.164-.079.276c-.077.113-.129.39-.149.596-.019.206-.105.981-.083 1.524.022.544.194 1.527.203 1.855s.003.839-.065 1.217c-.069.378-.142.715-.199.922-.073.267-.171.486-.285.639 0 0 .43-.03.757-.667.258-.503.402-.986.454-1.457.004-.036.112-1.291.163-1.918.037-.459.1-1.191.1-1.191.081-.868.1-1.309.061-1.475-.007-.029-.013-.152-.106-.279-.059-.083-.761-.153-.772-.042zm-2.472 3.287c-.074 0-.146-.042-.181-.113-.048-.099-.006-.219.094-.267l.316-.152c.102-.047.219-.006.268.094.048.099.006.219-.094.267l-.316.152c-.028.013-.057.019-.087.019zm.269.656c-.085 0-.164-.055-.191-.141-.032-.106.026-.218.132-.25l.354-.11c.109-.034.218.026.251.132.032.106-.026.218-.132.25l-.354.11c-.021.007-.04.009-.06.009zm.23.679c-.095 0-.179-.067-.196-.164-.021-.109.052-.213.16-.233l.334-.061c.117-.019.213.052.232.161.021.109-.052.213-.16.233l-.334.061-.036.003z"/><path fill="#BE1931" d="M18.11 33.515c-.031-.194-.196-.868-.314-1.095l-.467-1.48c-.021-.075-.101-.116-.175-.09-.214.073-.794.523-1.375.371-.388-.102-.642-.513-.828-.498-.059.005-.101.059-.092.117 0 0 .082.272.129.516-.043.235-.021.651-.188.911-.128.098-.214.305-.572.522-.213.129-1.186.729-1.186.729-.25.148-.287.269-.42.351-.273.168-1.026.535-1.257.68-.231.145-.289.363-.271.516.018.152.074.228.074.228s.446.283 2.106.121c.974-.095 4.774-1.125 4.774-1.125l.075-.167c.076-.168.02-.403-.013-.607z"/><path fill="#CCD6DD" d="M15.299 32.271c-.017 0-.033-.002-.051-.006l-.34-.089c-.106-.028-.171-.137-.143-.244.028-.107.132-.172.244-.143l.34.089c.106.028.171.137.143.244-.023.09-.104.149-.193.149z"/><path fill="#DD2E44" d="M15.938 34.472c.035-.26.248-.886.59-1.135.308-.224 1.211-.559 1.382-.622.101.281.197.727.22.873.031.192.06.447-.017.606-.05.105-1.547.178-2.175.278z"/><path fill="#CCD6DD" d="M18.14 34.183s-.159.039-.287-.008-.409-.028-.614.004c-.204.033-.976.142-1.497.298-.521.157-1.431.567-1.747.657s-.812.211-1.195.239c-.383.027-.728.04-.942.036-.277-.004-.513-.045-.69-.117 0 0 .136.409.834.567.552.125 1.055.145 1.524.078.036-.005 1.278-.212 1.899-.318.453-.078 1.178-.198 1.178-.198.861-.137 1.293-.229 1.444-.307.027-.014.144-.05.244-.172.066-.079-.041-.777-.151-.759zm-3.378-1.16c-.057 0-.113-.024-.153-.071l-.227-.269c-.071-.084-.06-.211.024-.282.084-.07.21-.061.282.024l.227.269c.071.084.06.211-.024.282-.037.032-.083.047-.129.047zm-.601.47c-.067 0-.133-.034-.17-.095l-.194-.316c-.059-.094-.029-.217.065-.275.092-.057.218-.029.274.066l.194.316c.059.094.029.217-.065.275-.032.02-.068.029-.104.029zm-.653.384c-.075 0-.148-.043-.182-.116l-.142-.308c-.046-.1-.002-.219.098-.265.101-.046.22-.003.266.098l.142.308c.046.1.002.219-.098.265-.027.012-.055.018-.084.018z"/><path fill="#A0041E" d="M16.444 21.431c.754-.391 3.244-1.626 4.948-1.799.156-.016.295.078.346.218l1.259 3.435c.065.176-.033.372-.222.433-.78.251-2.74.917-4.224 1.706-.157.084-.345.045-.443-.094-.442-.624-1.591-2.328-1.848-3.543-.031-.144.047-.286.184-.356z"/><path fill="#BE1931" d="M21.42 25.547c-.187-.828-.749-3.55-.494-5.242.023-.155.147-.265.292-.279l3.581-.349c.184-.018.346.126.357.325.047.818.198 2.882.584 4.518.041.173-.043.345-.198.405-.703.27-2.609.95-3.829.892-.144-.008-.259-.12-.293-.27z"/><path fill="#D4AB88" d="M18.032 10.659c-.037.617.172 1.537 1.603 1.665 1.43.128 2.808-.164 3.392-.377.584-.214.637.836.892 1.807.256.974.44 1.739.407 1.947-.054.352-.726 1.071-.388 1.647s.848 1.115 1.404.854 1.009-.557 1.136-.889c.127-.333-.626-1.25-.674-1.525s-.081-3.894-.146-4.3c-.08-.496-.172-1.177-1.01-1.395-.838-.218-4.153-.593-4.985-.688-.954-.109-1.582.436-1.631 1.254z"/><path fill="#D4AB88" d="M19.132 6.366c.31-.401.546-.872.661-1.455.409-2.083-.794-4.073-2.688-4.444-1.893-.372-4.483 1.029-4.425 3.151.057 2.107 1.229 5.214 2.993 4.69.466-.138.932-.29 1.375-.474.189.224.325 1.081.247 1.815-.2 1.87 2.381 2.065 2.579.192.157-1.481-.768-2.423-.742-3.475z"/><path fill="#963B22" d="M24.54 2.488c-1.311-.014-2.496-1.36-3.845-.501-.264.168-.456.337-.604.503-.234-.711-.636-1.367-1.299-1.799-.648-.422-1.443-.737-2.194-.652-4.578.516-4.329 3.827-3.981 4.137.348.31 1.299-.572 2.002-.669.328-.046 1.041-.053 1.419.49.306.44.411 1.33.411 1.33s.012-1.012.041-1.368c.027-.332.356-.714.801-.221.387.428.19 1.268-.079 1.356-.207.068.129.575.648.961.946.704 1.681.428 1.786.389.106-.039.465-.118.648-1.333.026-.169.044-.35.055-.537.374.324.987.709 1.827.715.929.007 2.619-.466 3.586-1.621.744-.889 1.05-2.355 1.05-2.355-.395.736-1.283 1.186-2.272 1.175z"/><path fill="#DD2E44" d="M22.418 9.749c-.897-1.578-2.174-2.314-3.528-1.683-2.437 1.136-2.644 2.853-1.828 5.349.603 1.845 2.094 3.688 2.906 6.927 0 0 2.246.202 5.436-.14 0-.001-.827-6.655-2.986-10.453z"/><path fill="#D4AB88" d="M19.923 10.158c-.603-.298-1.501-.279-2.236 1.101-.735 1.38-.969 2.5-1.173 3.36-.157.659-1.276.42-2.358.265-1.086-.156-2.742-.317-2.938-.438-.191-.118-1.507-.386-1.973-.393-.34-.005-2.01.282-2.402.612-.461.388 2.658.325 2.937.594s.914.457 1.312.562c.294.078 4.284 1.268 4.719 1.375.531.131 1.239.341 1.813-.406.574-.748 2.271-3.675 2.719-4.469.513-.91.38-1.768-.42-2.163z"/><circle fill="#FFAC33" cx="6.397" cy="21.831" r="3.603"/><path fill="#C1694F" d="M7.365 21.657c.764.708 1.573 1.273 2.329 1.615.122-.277.201-.573.25-.881-.628-.303-1.297-.777-1.942-1.37l1.304-1.304c-.178-.245-.389-.459-.621-.652l-1.32 1.32c-.646-.702-1.158-1.437-1.455-2.11-.306.042-.603.109-.879.223.013.031.016.059.03.09.336.785.927 1.635 1.667 2.434L5.43 22.319c-.796-.737-1.642-1.325-2.423-1.662-.1.29-.162.595-.185.914.636.302 1.317.782 1.972 1.385l-1.158 1.158c.193.232.408.444.652.621l1.142-1.142c.592.643 1.023 1.262 1.304 1.803.315-.03.617-.093.903-.199-.356-.751-.914-1.542-1.564-2.247l1.292-1.293z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/26f9-1f3fd-200d-2642-fe0f.svg b/public/emoji/26f9-1f3fd-200d-2642-fe0f.svg
index c7a24c37b7c9212baf7b1b81a888588b94decc7a..9282cee90ddf8dc288c3ba7024e95c00ff6efbd1 100644
--- a/public/emoji/26f9-1f3fd-200d-2642-fe0f.svg
+++ b/public/emoji/26f9-1f3fd-200d-2642-fe0f.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#D5AB88" d="M30.853 27.634c-.081 0-.163-.01-.243-.028l-7.476-1.668c-.403-.094-.713-.402-.81-.805l-1.216-5.066c-.068-.282-.023-.572.129-.819.151-.247.391-.421.672-.487.085-.021.171-.031.256-.031.502 0 .935.342 1.052.832l1.06 4.415 6.821 1.517c.283.065.522.237.676.483.153.246.202.536.137.818-.094.402-.403.713-.807.81-.083.019-.167.029-.251.029zM11.318 4.474c-1.158.564.52 2.167.439 3.483-.052.909 1.722.595 1.722.595s1.159-.564 1.425 1.455c.262 2.017 3.141 2.05 2.877.03-.266-2.016-2.131-2.69-1.612-4.435 1.239-4.176-4.851-1.128-4.851-1.128z"/><path fill="#D5AB88" d="M27.516 15.314c-.373.089-.779-.03-1.043-.342-2.682-3.189-8.798-3.763-8.859-3.769-.572-.05-.997-.556-.946-1.129.05-.572.548-.998 1.127-.947.286.024 7.034.65 10.275 4.503.37.441.313 1.098-.128 1.469-.129.107-.275.178-.426.215zM17.47 35.301c-.598.028-1.107-.435-1.135-1.031l-.448-8.575c-.011-.243.061-.486.203-.684l5.246-7.271c.184-.255.469-.417.782-.445.259-.023.518.048.73.2.235.17.391.421.438.707.046.286-.022.573-.191.806l-5.024 6.966.431 8.195c.022.48-.28.925-.737 1.079-.077.025-.158.043-.242.051l-.053.002z"/><path fill="#2A6797" d="M15.28 24.425l5.246-7.271c.672-.932 1.976-1.144 2.909-.47.934.673 1.144 1.977.471 2.909l-4.819 6.681c-.001-.001-4.083-1.467-3.807-1.849z"/><path fill="#357BAA" d="M21.352 25.366L20.136 20.3c-.27-1.119.421-2.245 1.541-2.513 1.119-.268 2.244.421 2.513 1.541l.915 3.814c-.001 0-3.569 2.993-3.753 2.224z"/><path fill="#4289C1" d="M18.333 35.988c.383-.001.591-.366.572-.758-.03-.626-.072-.881-.072-.881-.062-.299-.324-.912-.688-.912-2.642 0-5.538.879-6.23 1.5-.409.367-.146 1.061.397 1.06l6.021-.009zm6.875-17.207c-.208.365-1.473-.525-2.99.281-2.156 1.146-3.339.467-3.339.467-3.486-5.595-6.243-8.149-2.809-11.024 1.097-.918 2.454-.523 3.663.76 2.913 3.089 5.684 9.152 5.475 9.516z"/><path fill="#B39155" d="M11.456 5.045c-1.292.498-1.379-.954-.764-1.773.867-1.155 3.366-1.697 4.665-1.06 1.297.637 1.728 2.432.86 3.587-.613.817-.652 2.054-1.083.26-.43-1.793-1.083.261-1.298-.636-.216-.897-2.38-.378-2.38-.378z"/><path fill="#D5AB88" d="M15.148 11.32c-.033.046-3.381 4.532-8.152 5.032l.002.02c-.483.051-.884.417-.931.919-.053.573.367 1.082.941 1.135.07.006.135-.014.203-.023l.003.021c5.678-.594 9.456-5.654 9.613-5.869l-1.679-1.235z"/><ellipse transform="rotate(-80.781 7 24.32)" fill="#FFAC33" cx="7" cy="24.32" rx="4" ry="4"/><path fill="#C1694F" d="M8.075 24.127c.849.786 1.747 1.413 2.586 1.793.135-.307.223-.636.277-.978-.697-.337-1.44-.862-2.156-1.521l1.448-1.448c-.197-.271-.432-.51-.69-.724l-1.465 1.465c-.717-.779-1.286-1.595-1.615-2.343-.34.046-.669.121-.976.248.014.035.018.065.033.1.373.872 1.03 1.815 1.851 2.702l-1.442 1.442c-.883-.818-1.823-1.471-2.691-1.845-.111.322-.18.661-.206 1.014.706.336 1.462.868 2.189 1.538l-1.285 1.286c.214.258.453.492.724.69l1.268-1.268c.658.714 1.136 1.401 1.448 2.002.349-.033.685-.104 1.003-.22-.396-.834-1.015-1.712-1.737-2.495l1.436-1.438z"/><path fill="#D5AB88" d="M17.255 5.459c-.262 2.342-2.251 3.358-4.247 4.134-1.904.741-3.484-2.589-3.74-4.915C9.01 2.336 11.747.549 13.875.788s3.642 2.33 3.38 4.671z"/><path fill="#963B22" d="M9.962 1.651c2.704-1.981 4.635-1.834 6.321-.68 1.674 1.146 1.929 3.534 1.603 5.091-.326 1.557-.776 1.507-.776 1.507s-2.07.636-2.373-1.306c-.096-.614.567-.999-.248-1.849-.525-.547-1.574-.176-1.516.665.058.841-.384.716-.384.716L11.158 3.66s-1.095.019-1.627 1.064c-.333.657-1.931-1.343.431-3.073z"/><path fill="#4289C1" d="M18.353 34.699h-1.977c-.185 0-.595-.158-.595-.35l.188-1.084c0-.193.096-.5.376-.5s.64.235.999.235.688-.522.96-.522c.211 0 .305.084.336.35l.193 1.521c0 .193-.295.35-.48.35zm14.494-8.875c.056-.379-.275-.638-.665-.677-.624-.062-.882-.058-.882-.058-.305.017-.949.186-1.003.546-.388 2.614.055 5.607.568 6.383.303.458 1.028.301 1.107-.237l.875-5.957z"/><path fill="#4289C1" d="M31.575 25.615l-.291 1.955c-.027.183-.243.565-.434.537l-1.044-.345c-.19-.028-.481-.169-.439-.446.041-.277.326-.599.379-.954.053-.355-.415-.757-.375-1.026.031-.209.128-.289.396-.281l1.533.033c.19.029.302.344.275.527z"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#D4AB88" d="M26.3 26.621c-.339-.021-.504-.165-.57-.496-.187-.94-.313-1.721-.356-1.993l-3.912.767c.118.473.644 2.5 1.322 3.806.393.757.831.782 1.79.838 0 0 3.726-.134 6.305-.231 1.142-.043 1.225-1.795.253-2.014-.692-.156-1.438-.3-2.053-.36-.465-.046-2.539-.303-2.779-.317zm-7.462-1.676l-1.729-3.593c-.428.233-2.257 1.253-3.35 2.237-.635.572-.549 1.002-.36 1.944 0 0 1.087 3.639 1.831 6.111.32 1.062 2.024.713 1.995-.251-.022-.732-.07-1.523-.171-2.156-.073-.463-.348-2.534-.394-2.77-.064-.334.033-.53.337-.677.863-.416 1.588-.735 1.841-.845z"/><path fill="#1C6399" d="M32.67 26.978c-.133.007-.238.02-.315.037l-1.55.085c-.078.002-.137.069-.131.147.017.225.309.899.018 1.424-.195.351-.656.495-.688.679-.01.058.032.112.091.118 0 0 .284-.012.532.003.217.1.626.182.836.408.063.148.242.283.364.684.072.239.412 1.33.412 1.33.081.278.189.345.236.494.095.306.263 1.127.346 1.387.083.26.28.37.433.391.152.02.239-.016.239-.016s.385-.362.64-2.01c.15-.967.095-4.904.095-4.904l-1.558-.257z"/><path fill="#CCD6DD" d="M31.227 29.855c-.033 0-.066-.008-.097-.025-.097-.053-.132-.175-.078-.272l.17-.307c.054-.097.178-.131.271-.078.097.053.132.175.078.272l-.17.307c-.035.066-.103.103-.174.103z"/><path fill="#3B94D9" d="M33.882 29.325c-.243-.098-.797-.461-.953-.853-.141-.354-.241-1.312-.259-1.493.297-.028.753-.01.9.004.194.018.447.044.585.166-.001-.001-.214 1.543-.273 2.176z"/><path fill="#CCD6DD" d="M34.148 27.12s-.002.164-.079.276c-.077.113-.129.39-.149.596-.019.206-.105.981-.083 1.524.022.544.194 1.527.203 1.855.009.328.003.839-.065 1.217-.069.378-.142.715-.199.922-.073.267-.171.486-.285.639 0 0 .43-.03.757-.667.258-.503.402-.986.454-1.457l.263-3.109c.081-.868.1-1.309.061-1.475-.007-.029-.013-.152-.106-.279-.06-.083-.762-.153-.772-.042zm-2.472 3.287c-.074 0-.146-.042-.181-.113-.048-.1-.006-.219.094-.267l.317-.152c.101-.046.219-.006.268.094.048.1.006.219-.094.267l-.317.152c-.029.013-.058.019-.087.019zm.268.657c-.086 0-.164-.055-.191-.141-.032-.105.026-.218.132-.25l.354-.11c.112-.033.217.027.251.132.032.105-.026.218-.132.25l-.354.11c-.021.006-.04.009-.06.009zm.232.678c-.095 0-.179-.067-.196-.164-.021-.109.052-.213.16-.233l.333-.061c.108-.02.213.052.232.161.021.109-.052.213-.16.233l-.333.061-.036.003z"/><path fill="#1C6399" d="M17.911 32.716c-.04-.128-.078-.226-.114-.296l-.467-1.48c-.021-.075-.101-.116-.175-.09-.214.073-.794.523-1.375.371-.388-.102-.642-.513-.828-.498-.059.005-.101.059-.092.117 0 0 .082.272.129.516-.043.235-.021.651-.188.911-.128.098-.214.305-.572.522-.213.129-1.186.729-1.186.729-.25.148-.287.269-.42.351-.273.168-1.026.535-1.257.68-.231.145-.289.363-.271.516.018.152.074.228.074.228s.446.283 2.106.121c.974-.095 4.775-1.117 4.775-1.117s-.049-1.295-.139-1.581z"/><path fill="#CCD6DD" d="M15.3 32.271c-.017 0-.033-.002-.051-.006l-.34-.089c-.106-.028-.171-.137-.143-.244.027-.107.131-.171.244-.143l.34.089c.106.028.171.137.143.244-.023.09-.105.149-.193.149z"/><path fill="#3B94D9" d="M15.939 34.472c.035-.26.248-.886.59-1.135.308-.224 1.211-.559 1.382-.622.101.281.197.727.22.873.031.192.072.411-.022.609 0 .001-1.543.176-2.17.275z"/><path fill="#CCD6DD" d="M18.141 34.183s-.159.039-.287-.008-.409-.028-.614.004c-.204.033-.976.142-1.497.298-.521.157-1.431.567-1.747.657s-.812.211-1.195.239c-.383.027-.728.04-.942.036-.277-.004-.513-.045-.69-.117 0 0 .136.409.834.567.552.125 1.055.145 1.524.078.036-.005 3.077-.517 3.077-.517.861-.137 1.293-.229 1.444-.307.027-.014.144-.05.244-.172.065-.078-.042-.776-.151-.758zm-3.379-1.16c-.057 0-.113-.024-.153-.071l-.227-.269c-.071-.084-.06-.211.024-.282.084-.07.21-.061.282.024l.227.269c.071.084.06.211-.024.282-.037.032-.083.047-.129.047zm-.6.47c-.067 0-.133-.034-.17-.095l-.194-.316c-.059-.094-.029-.217.065-.275.093-.057.217-.029.274.066l.194.316c.059.094.029.217-.065.275-.032.02-.068.029-.104.029zm-.652.384c-.075 0-.147-.043-.182-.116l-.143-.308c-.046-.1-.003-.219.098-.265.1-.047.219-.003.266.097l.143.308c.046.1.003.219-.098.265-.028.013-.056.019-.084.019z"/><path fill="#1C6399" d="M16.404 21.332c.751-.398 3.235-1.653 4.947-1.804.156-.014.298.088.352.235l1.328 3.635c.068.186-.027.391-.216.451-.781.25-2.74.915-4.22 1.719-.157.085-.347.041-.448-.106-.456-.664-1.642-2.477-1.923-3.76-.032-.15.045-.298.18-.37z"/><path fill="#357BAA" d="M21.264 25.576c-.196-.827-.785-3.547-.501-5.242.026-.155.16-.266.316-.281l3.853-.37c.198-.019.371.124.382.323.046.818.196 2.882.601 4.517.043.173-.048.346-.216.407-.758.274-2.811.965-4.123.914-.153-.006-.276-.118-.312-.268z"/><path fill="#D4AB88" d="M18.032 10.676c-.037.617.172 1.537 1.603 1.665 1.43.128 2.808-.164 3.392-.377.584-.214.637.836.892 1.807.256.974.44 1.739.407 1.947-.054.352-.726 1.071-.388 1.647.338.576.848 1.115 1.404.854s1.009-.557 1.136-.889c.127-.333-.626-1.25-.674-1.525s-.081-3.894-.146-4.3c-.08-.496-.172-1.177-1.01-1.395s-4.153-.593-4.985-.688c-.953-.109-1.582.436-1.631 1.254z"/><path fill="#D4AB88" d="M18.885 6.217c.253-.418.429-.895.475-1.466C19.525 2.71 18.155.934 16.3.784c-1.855-.15-4.184 1.475-3.897 3.502.285 2.013 1.746 4.863 3.38 4.169.431-.183.861-.38 1.267-.604.205.194.429 1.001.435 1.713.012 1.814 2.507 1.72 2.492-.097-.013-1.437-1.002-2.239-1.092-3.25z"/><path fill="#963B22" d="M12.925 1.639c2.296-1.793 3.976-1.717 5.471-.76 1.485.951 1.77 3.017 1.528 4.378-.241 1.361-.633 1.329-.633 1.329s-1.781.607-2.096-1.071c-.1-.531.466-.883-.265-1.599-.47-.461-1.372-.111-1.299.618.073.729-.314.632-.314.632l-1.3-1.814s-.951.046-1.384.968c-.272.579-1.713-1.115.292-2.681z"/><path fill="#4289C1" d="M22.418 9.765c-.897-1.578-2.174-2.314-3.528-1.683-4.238 1.976-1.905 5.849.189 12.276 0 0 3.134.202 6.325-.14.001 0-.826-6.654-2.986-10.453z"/><path fill="#D4AB88" d="M19.924 10.175c-.603-.298-1.614-.479-2.349.901-.735 1.38-1.027 2.884-1.06 3.561-.033.677-1.108.284-2.191.128-1.086-.156-2.853-.332-3.048-.453-.191-.118-1.565-.234-2.03-.242-.34-.005-2.104.282-2.496.612-.461.388 2.73.461 3.01.729.28.269.876.481 1.274.587.294.078 4.391 1.364 4.826 1.471.531.131 1.253.327 1.827-.421.574-.748 2.356-3.913 2.804-4.707.512-.909.232-1.771-.567-2.166z"/><circle fill="#FFAC33" cx="6.397" cy="21.831" r="3.603"/><path fill="#C1694F" d="M7.365 21.657c.764.708 1.573 1.273 2.329 1.615.122-.277.201-.573.25-.881-.628-.303-1.297-.777-1.942-1.37l1.304-1.304c-.178-.245-.389-.459-.621-.652l-1.32 1.32c-.646-.702-1.158-1.437-1.455-2.11-.306.042-.603.109-.879.223.013.031.016.059.03.09.336.785.927 1.635 1.667 2.434L5.43 22.319c-.796-.737-1.642-1.325-2.423-1.662-.1.29-.162.595-.185.914.636.302 1.317.782 1.972 1.385l-1.158 1.158c.193.232.408.444.652.621l1.142-1.142c.592.643 1.023 1.262 1.304 1.803.315-.03.617-.093.903-.199-.356-.751-.914-1.542-1.564-2.247l1.292-1.293z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/26f9-1f3fd.svg b/public/emoji/26f9-1f3fd.svg
index c7a24c37b7c9212baf7b1b81a888588b94decc7a..9282cee90ddf8dc288c3ba7024e95c00ff6efbd1 100644
--- a/public/emoji/26f9-1f3fd.svg
+++ b/public/emoji/26f9-1f3fd.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#D5AB88" d="M30.853 27.634c-.081 0-.163-.01-.243-.028l-7.476-1.668c-.403-.094-.713-.402-.81-.805l-1.216-5.066c-.068-.282-.023-.572.129-.819.151-.247.391-.421.672-.487.085-.021.171-.031.256-.031.502 0 .935.342 1.052.832l1.06 4.415 6.821 1.517c.283.065.522.237.676.483.153.246.202.536.137.818-.094.402-.403.713-.807.81-.083.019-.167.029-.251.029zM11.318 4.474c-1.158.564.52 2.167.439 3.483-.052.909 1.722.595 1.722.595s1.159-.564 1.425 1.455c.262 2.017 3.141 2.05 2.877.03-.266-2.016-2.131-2.69-1.612-4.435 1.239-4.176-4.851-1.128-4.851-1.128z"/><path fill="#D5AB88" d="M27.516 15.314c-.373.089-.779-.03-1.043-.342-2.682-3.189-8.798-3.763-8.859-3.769-.572-.05-.997-.556-.946-1.129.05-.572.548-.998 1.127-.947.286.024 7.034.65 10.275 4.503.37.441.313 1.098-.128 1.469-.129.107-.275.178-.426.215zM17.47 35.301c-.598.028-1.107-.435-1.135-1.031l-.448-8.575c-.011-.243.061-.486.203-.684l5.246-7.271c.184-.255.469-.417.782-.445.259-.023.518.048.73.2.235.17.391.421.438.707.046.286-.022.573-.191.806l-5.024 6.966.431 8.195c.022.48-.28.925-.737 1.079-.077.025-.158.043-.242.051l-.053.002z"/><path fill="#2A6797" d="M15.28 24.425l5.246-7.271c.672-.932 1.976-1.144 2.909-.47.934.673 1.144 1.977.471 2.909l-4.819 6.681c-.001-.001-4.083-1.467-3.807-1.849z"/><path fill="#357BAA" d="M21.352 25.366L20.136 20.3c-.27-1.119.421-2.245 1.541-2.513 1.119-.268 2.244.421 2.513 1.541l.915 3.814c-.001 0-3.569 2.993-3.753 2.224z"/><path fill="#4289C1" d="M18.333 35.988c.383-.001.591-.366.572-.758-.03-.626-.072-.881-.072-.881-.062-.299-.324-.912-.688-.912-2.642 0-5.538.879-6.23 1.5-.409.367-.146 1.061.397 1.06l6.021-.009zm6.875-17.207c-.208.365-1.473-.525-2.99.281-2.156 1.146-3.339.467-3.339.467-3.486-5.595-6.243-8.149-2.809-11.024 1.097-.918 2.454-.523 3.663.76 2.913 3.089 5.684 9.152 5.475 9.516z"/><path fill="#B39155" d="M11.456 5.045c-1.292.498-1.379-.954-.764-1.773.867-1.155 3.366-1.697 4.665-1.06 1.297.637 1.728 2.432.86 3.587-.613.817-.652 2.054-1.083.26-.43-1.793-1.083.261-1.298-.636-.216-.897-2.38-.378-2.38-.378z"/><path fill="#D5AB88" d="M15.148 11.32c-.033.046-3.381 4.532-8.152 5.032l.002.02c-.483.051-.884.417-.931.919-.053.573.367 1.082.941 1.135.07.006.135-.014.203-.023l.003.021c5.678-.594 9.456-5.654 9.613-5.869l-1.679-1.235z"/><ellipse transform="rotate(-80.781 7 24.32)" fill="#FFAC33" cx="7" cy="24.32" rx="4" ry="4"/><path fill="#C1694F" d="M8.075 24.127c.849.786 1.747 1.413 2.586 1.793.135-.307.223-.636.277-.978-.697-.337-1.44-.862-2.156-1.521l1.448-1.448c-.197-.271-.432-.51-.69-.724l-1.465 1.465c-.717-.779-1.286-1.595-1.615-2.343-.34.046-.669.121-.976.248.014.035.018.065.033.1.373.872 1.03 1.815 1.851 2.702l-1.442 1.442c-.883-.818-1.823-1.471-2.691-1.845-.111.322-.18.661-.206 1.014.706.336 1.462.868 2.189 1.538l-1.285 1.286c.214.258.453.492.724.69l1.268-1.268c.658.714 1.136 1.401 1.448 2.002.349-.033.685-.104 1.003-.22-.396-.834-1.015-1.712-1.737-2.495l1.436-1.438z"/><path fill="#D5AB88" d="M17.255 5.459c-.262 2.342-2.251 3.358-4.247 4.134-1.904.741-3.484-2.589-3.74-4.915C9.01 2.336 11.747.549 13.875.788s3.642 2.33 3.38 4.671z"/><path fill="#963B22" d="M9.962 1.651c2.704-1.981 4.635-1.834 6.321-.68 1.674 1.146 1.929 3.534 1.603 5.091-.326 1.557-.776 1.507-.776 1.507s-2.07.636-2.373-1.306c-.096-.614.567-.999-.248-1.849-.525-.547-1.574-.176-1.516.665.058.841-.384.716-.384.716L11.158 3.66s-1.095.019-1.627 1.064c-.333.657-1.931-1.343.431-3.073z"/><path fill="#4289C1" d="M18.353 34.699h-1.977c-.185 0-.595-.158-.595-.35l.188-1.084c0-.193.096-.5.376-.5s.64.235.999.235.688-.522.96-.522c.211 0 .305.084.336.35l.193 1.521c0 .193-.295.35-.48.35zm14.494-8.875c.056-.379-.275-.638-.665-.677-.624-.062-.882-.058-.882-.058-.305.017-.949.186-1.003.546-.388 2.614.055 5.607.568 6.383.303.458 1.028.301 1.107-.237l.875-5.957z"/><path fill="#4289C1" d="M31.575 25.615l-.291 1.955c-.027.183-.243.565-.434.537l-1.044-.345c-.19-.028-.481-.169-.439-.446.041-.277.326-.599.379-.954.053-.355-.415-.757-.375-1.026.031-.209.128-.289.396-.281l1.533.033c.19.029.302.344.275.527z"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#D4AB88" d="M26.3 26.621c-.339-.021-.504-.165-.57-.496-.187-.94-.313-1.721-.356-1.993l-3.912.767c.118.473.644 2.5 1.322 3.806.393.757.831.782 1.79.838 0 0 3.726-.134 6.305-.231 1.142-.043 1.225-1.795.253-2.014-.692-.156-1.438-.3-2.053-.36-.465-.046-2.539-.303-2.779-.317zm-7.462-1.676l-1.729-3.593c-.428.233-2.257 1.253-3.35 2.237-.635.572-.549 1.002-.36 1.944 0 0 1.087 3.639 1.831 6.111.32 1.062 2.024.713 1.995-.251-.022-.732-.07-1.523-.171-2.156-.073-.463-.348-2.534-.394-2.77-.064-.334.033-.53.337-.677.863-.416 1.588-.735 1.841-.845z"/><path fill="#1C6399" d="M32.67 26.978c-.133.007-.238.02-.315.037l-1.55.085c-.078.002-.137.069-.131.147.017.225.309.899.018 1.424-.195.351-.656.495-.688.679-.01.058.032.112.091.118 0 0 .284-.012.532.003.217.1.626.182.836.408.063.148.242.283.364.684.072.239.412 1.33.412 1.33.081.278.189.345.236.494.095.306.263 1.127.346 1.387.083.26.28.37.433.391.152.02.239-.016.239-.016s.385-.362.64-2.01c.15-.967.095-4.904.095-4.904l-1.558-.257z"/><path fill="#CCD6DD" d="M31.227 29.855c-.033 0-.066-.008-.097-.025-.097-.053-.132-.175-.078-.272l.17-.307c.054-.097.178-.131.271-.078.097.053.132.175.078.272l-.17.307c-.035.066-.103.103-.174.103z"/><path fill="#3B94D9" d="M33.882 29.325c-.243-.098-.797-.461-.953-.853-.141-.354-.241-1.312-.259-1.493.297-.028.753-.01.9.004.194.018.447.044.585.166-.001-.001-.214 1.543-.273 2.176z"/><path fill="#CCD6DD" d="M34.148 27.12s-.002.164-.079.276c-.077.113-.129.39-.149.596-.019.206-.105.981-.083 1.524.022.544.194 1.527.203 1.855.009.328.003.839-.065 1.217-.069.378-.142.715-.199.922-.073.267-.171.486-.285.639 0 0 .43-.03.757-.667.258-.503.402-.986.454-1.457l.263-3.109c.081-.868.1-1.309.061-1.475-.007-.029-.013-.152-.106-.279-.06-.083-.762-.153-.772-.042zm-2.472 3.287c-.074 0-.146-.042-.181-.113-.048-.1-.006-.219.094-.267l.317-.152c.101-.046.219-.006.268.094.048.1.006.219-.094.267l-.317.152c-.029.013-.058.019-.087.019zm.268.657c-.086 0-.164-.055-.191-.141-.032-.105.026-.218.132-.25l.354-.11c.112-.033.217.027.251.132.032.105-.026.218-.132.25l-.354.11c-.021.006-.04.009-.06.009zm.232.678c-.095 0-.179-.067-.196-.164-.021-.109.052-.213.16-.233l.333-.061c.108-.02.213.052.232.161.021.109-.052.213-.16.233l-.333.061-.036.003z"/><path fill="#1C6399" d="M17.911 32.716c-.04-.128-.078-.226-.114-.296l-.467-1.48c-.021-.075-.101-.116-.175-.09-.214.073-.794.523-1.375.371-.388-.102-.642-.513-.828-.498-.059.005-.101.059-.092.117 0 0 .082.272.129.516-.043.235-.021.651-.188.911-.128.098-.214.305-.572.522-.213.129-1.186.729-1.186.729-.25.148-.287.269-.42.351-.273.168-1.026.535-1.257.68-.231.145-.289.363-.271.516.018.152.074.228.074.228s.446.283 2.106.121c.974-.095 4.775-1.117 4.775-1.117s-.049-1.295-.139-1.581z"/><path fill="#CCD6DD" d="M15.3 32.271c-.017 0-.033-.002-.051-.006l-.34-.089c-.106-.028-.171-.137-.143-.244.027-.107.131-.171.244-.143l.34.089c.106.028.171.137.143.244-.023.09-.105.149-.193.149z"/><path fill="#3B94D9" d="M15.939 34.472c.035-.26.248-.886.59-1.135.308-.224 1.211-.559 1.382-.622.101.281.197.727.22.873.031.192.072.411-.022.609 0 .001-1.543.176-2.17.275z"/><path fill="#CCD6DD" d="M18.141 34.183s-.159.039-.287-.008-.409-.028-.614.004c-.204.033-.976.142-1.497.298-.521.157-1.431.567-1.747.657s-.812.211-1.195.239c-.383.027-.728.04-.942.036-.277-.004-.513-.045-.69-.117 0 0 .136.409.834.567.552.125 1.055.145 1.524.078.036-.005 3.077-.517 3.077-.517.861-.137 1.293-.229 1.444-.307.027-.014.144-.05.244-.172.065-.078-.042-.776-.151-.758zm-3.379-1.16c-.057 0-.113-.024-.153-.071l-.227-.269c-.071-.084-.06-.211.024-.282.084-.07.21-.061.282.024l.227.269c.071.084.06.211-.024.282-.037.032-.083.047-.129.047zm-.6.47c-.067 0-.133-.034-.17-.095l-.194-.316c-.059-.094-.029-.217.065-.275.093-.057.217-.029.274.066l.194.316c.059.094.029.217-.065.275-.032.02-.068.029-.104.029zm-.652.384c-.075 0-.147-.043-.182-.116l-.143-.308c-.046-.1-.003-.219.098-.265.1-.047.219-.003.266.097l.143.308c.046.1.003.219-.098.265-.028.013-.056.019-.084.019z"/><path fill="#1C6399" d="M16.404 21.332c.751-.398 3.235-1.653 4.947-1.804.156-.014.298.088.352.235l1.328 3.635c.068.186-.027.391-.216.451-.781.25-2.74.915-4.22 1.719-.157.085-.347.041-.448-.106-.456-.664-1.642-2.477-1.923-3.76-.032-.15.045-.298.18-.37z"/><path fill="#357BAA" d="M21.264 25.576c-.196-.827-.785-3.547-.501-5.242.026-.155.16-.266.316-.281l3.853-.37c.198-.019.371.124.382.323.046.818.196 2.882.601 4.517.043.173-.048.346-.216.407-.758.274-2.811.965-4.123.914-.153-.006-.276-.118-.312-.268z"/><path fill="#D4AB88" d="M18.032 10.676c-.037.617.172 1.537 1.603 1.665 1.43.128 2.808-.164 3.392-.377.584-.214.637.836.892 1.807.256.974.44 1.739.407 1.947-.054.352-.726 1.071-.388 1.647.338.576.848 1.115 1.404.854s1.009-.557 1.136-.889c.127-.333-.626-1.25-.674-1.525s-.081-3.894-.146-4.3c-.08-.496-.172-1.177-1.01-1.395s-4.153-.593-4.985-.688c-.953-.109-1.582.436-1.631 1.254z"/><path fill="#D4AB88" d="M18.885 6.217c.253-.418.429-.895.475-1.466C19.525 2.71 18.155.934 16.3.784c-1.855-.15-4.184 1.475-3.897 3.502.285 2.013 1.746 4.863 3.38 4.169.431-.183.861-.38 1.267-.604.205.194.429 1.001.435 1.713.012 1.814 2.507 1.72 2.492-.097-.013-1.437-1.002-2.239-1.092-3.25z"/><path fill="#963B22" d="M12.925 1.639c2.296-1.793 3.976-1.717 5.471-.76 1.485.951 1.77 3.017 1.528 4.378-.241 1.361-.633 1.329-.633 1.329s-1.781.607-2.096-1.071c-.1-.531.466-.883-.265-1.599-.47-.461-1.372-.111-1.299.618.073.729-.314.632-.314.632l-1.3-1.814s-.951.046-1.384.968c-.272.579-1.713-1.115.292-2.681z"/><path fill="#4289C1" d="M22.418 9.765c-.897-1.578-2.174-2.314-3.528-1.683-4.238 1.976-1.905 5.849.189 12.276 0 0 3.134.202 6.325-.14.001 0-.826-6.654-2.986-10.453z"/><path fill="#D4AB88" d="M19.924 10.175c-.603-.298-1.614-.479-2.349.901-.735 1.38-1.027 2.884-1.06 3.561-.033.677-1.108.284-2.191.128-1.086-.156-2.853-.332-3.048-.453-.191-.118-1.565-.234-2.03-.242-.34-.005-2.104.282-2.496.612-.461.388 2.73.461 3.01.729.28.269.876.481 1.274.587.294.078 4.391 1.364 4.826 1.471.531.131 1.253.327 1.827-.421.574-.748 2.356-3.913 2.804-4.707.512-.909.232-1.771-.567-2.166z"/><circle fill="#FFAC33" cx="6.397" cy="21.831" r="3.603"/><path fill="#C1694F" d="M7.365 21.657c.764.708 1.573 1.273 2.329 1.615.122-.277.201-.573.25-.881-.628-.303-1.297-.777-1.942-1.37l1.304-1.304c-.178-.245-.389-.459-.621-.652l-1.32 1.32c-.646-.702-1.158-1.437-1.455-2.11-.306.042-.603.109-.879.223.013.031.016.059.03.09.336.785.927 1.635 1.667 2.434L5.43 22.319c-.796-.737-1.642-1.325-2.423-1.662-.1.29-.162.595-.185.914.636.302 1.317.782 1.972 1.385l-1.158 1.158c.193.232.408.444.652.621l1.142-1.142c.592.643 1.023 1.262 1.304 1.803.315-.03.617-.093.903-.199-.356-.751-.914-1.542-1.564-2.247l1.292-1.293z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/26f9-1f3fe-200d-2640-fe0f.svg b/public/emoji/26f9-1f3fe-200d-2640-fe0f.svg
index 282ac545aa0c94ef8ef55b571e68e3287bfd89e0..5eee281382e78bf16dcf9105c9d1c328be914a01 100644
--- a/public/emoji/26f9-1f3fe-200d-2640-fe0f.svg
+++ b/public/emoji/26f9-1f3fe-200d-2640-fe0f.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#AF7E57" d="M30.853 27.634c-.081 0-.163-.01-.243-.028l-7.476-1.668c-.403-.094-.713-.402-.81-.805l-1.216-5.066c-.068-.282-.023-.572.129-.819.151-.247.391-.421.672-.487.085-.021.171-.031.256-.031.502 0 .935.342 1.052.832l1.06 4.415 6.821 1.517c.283.065.522.237.676.483.153.246.202.536.137.818-.094.402-.403.713-.807.81-.083.019-.167.029-.251.029zM11.318 4.474c-1.158.564.52 2.167.439 3.483-.052.909 1.722.595 1.722.595s1.159-.564 1.425 1.455c.262 2.017 3.141 2.05 2.877.03-.266-2.016-2.131-2.69-1.612-4.435 1.239-4.176-4.851-1.128-4.851-1.128z"/><path fill="#AF7E57" d="M27.516 15.314c-.373.089-.779-.03-1.043-.342-2.682-3.189-8.798-3.763-8.859-3.769-.572-.05-.997-.556-.946-1.129.05-.572.548-.998 1.127-.947.286.024 7.034.65 10.275 4.503.37.441.313 1.098-.128 1.469-.129.107-.275.178-.426.215zM17.47 35.301c-.598.028-1.107-.435-1.135-1.031l-.448-8.575c-.011-.243.061-.486.203-.684l5.246-7.271c.184-.255.469-.417.782-.445.259-.023.518.048.73.2.235.17.391.421.438.707.046.286-.022.573-.191.806l-5.024 6.966.431 8.195c.022.48-.28.925-.737 1.079-.077.025-.158.043-.242.051l-.053.002z"/><path fill="#A0041E" d="M15.28 24.425l5.246-7.271c.672-.932 1.976-1.144 2.909-.47.934.673 1.144 1.977.471 2.909l-4.819 6.681c-.001-.001-4.083-1.467-3.807-1.849z"/><path fill="#BE1931" d="M21.352 25.366L20.136 20.3c-.27-1.119.421-2.245 1.541-2.513 1.119-.268 2.244.421 2.513 1.541l.915 3.814c-.001 0-3.569 2.993-3.753 2.224z"/><path fill="#AF7E57" d="M17.259 3.842c.537 2.238-.842 4.489-3.081 5.026-2.239.537-4.489-.842-5.026-3.081-.538-2.239.842-4.49 3.08-5.027 2.239-.537 4.49.842 5.027 3.082z"/><path fill="#60352A" d="M21.375 4.462c-1.083.083-2.14.092-4.208-1.976C15.792 1.111 14.564.273 11.834.643c-2.899.394-5.018 3.169-3 4.17.88.437 1.529.095 2.88.295 2.121.315 2.707 2.456 4.62 2.711 3.743.501 6.124-3.44 5.041-3.357z"/><ellipse transform="rotate(-80.781 7 24.32)" fill="#FFAC33" cx="7" cy="24.32" rx="4" ry="4"/><path fill="#C1694F" d="M8.075 24.126c.849.786 1.747 1.413 2.586 1.793.135-.307.223-.636.277-.978-.697-.337-1.44-.862-2.156-1.521l1.448-1.448c-.197-.271-.432-.51-.69-.724l-1.465 1.465c-.717-.779-1.286-1.595-1.615-2.343-.34.046-.669.121-.976.248.014.035.018.065.033.1.373.872 1.03 1.815 1.851 2.702l-1.442 1.442c-.883-.818-1.823-1.471-2.691-1.845-.111.322-.18.661-.206 1.014.706.336 1.462.868 2.189 1.538l-1.285 1.286c.214.258.453.492.724.69l1.268-1.268c.658.714 1.136 1.401 1.448 2.002.349-.033.685-.104 1.003-.22-.396-.834-1.015-1.712-1.737-2.495l1.436-1.438z"/><path fill="#DD2E44" d="M18.333 35.988c.383-.001.591-.366.572-.758-.03-.626-.072-.881-.072-.881-.062-.299-.324-.912-.688-.912-2.642 0-5.538.879-6.23 1.5-.409.367-.146 1.061.397 1.06l6.021-.009zm6.875-17.207c-.208.365-1.473-.525-2.99.281-2.156 1.146-3.339.467-3.339.467-3.486-5.595-6.243-8.149-2.809-11.024 1.097-.918 2.454-.523 3.663.76 2.913 3.089 5.684 9.152 5.475 9.516z"/><path fill="#DD2E44" d="M18.353 34.699h-1.977c-.185 0-.595-.158-.595-.35l.188-1.084c0-.193.096-.5.376-.5s.64.235.999.235.688-.522.96-.522c.211 0 .305.084.336.35l.193 1.521c0 .193-.295.35-.48.35zm14.494-8.875c.056-.379-.275-.638-.665-.677-.624-.062-.882-.058-.882-.058-.305.017-.949.186-1.003.546-.388 2.614.055 5.607.568 6.383.303.458 1.028.301 1.107-.237l.875-5.957z"/><path fill="#DD2E44" d="M31.575 25.615l-.291 1.955c-.027.183-.243.565-.434.537l-1.044-.345c-.19-.028-.481-.169-.439-.446.041-.277.326-.599.379-.954.053-.355-.415-.757-.375-1.026.031-.209.128-.289.396-.281l1.533.033c.19.029.302.344.275.527z"/><path fill="#AF7E57" d="M15.148 11.32c-.033.046-3.381 4.532-8.152 5.032l.002.02c-.483.051-.884.417-.931.919-.053.573.367 1.082.941 1.135.07.006.135-.014.203-.023l.003.021c5.678-.594 9.456-5.654 9.613-5.869l-1.679-1.235z"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#AF7E57" d="M26.29 26.753c-.53-.033-.658-.368-.708-.617-.16-.802-.275-1.489-.333-1.845l-3.604.707c.168.654.657 2.438 1.271 3.619.354.682.711.703 1.666.758 0 0 3.975-.139 6.542-.237.885-.034.973-1.48.215-1.657-.751-.176-1.595-.346-2.276-.413-.465-.044-2.533-.3-2.773-.315zm-12.431-3.068c-.57.514-.5.865-.312 1.803 0 0 1.113 3.738 1.854 6.2.265.881 1.698.641 1.679-.138-.019-.771-.067-1.63-.174-2.305-.073-.463-.346-2.528-.392-2.764-.102-.523.19-.73.419-.84.736-.356 1.371-.642 1.7-.786l-1.591-3.311c-.59.327-2.194 1.249-3.183 2.141z"/><path fill="#BE1931" d="M33.493 26.983c-.195-.018-.89-.026-1.139.032l-1.55.085c-.078.002-.137.069-.131.147.017.225.309.899.018 1.424-.195.351-.656.495-.688.679-.01.058.032.112.091.118 0 0 .284-.012.532.003.217.1.626.182.836.408.063.148.242.283.364.684.072.239.412 1.33.412 1.33.081.278.189.345.236.494.095.306.263 1.127.346 1.387.083.26.28.37.433.391.152.02.239-.016.239-.016s.385-.362.64-2.01c.15-.967.095-4.904.095-4.904l-.144-.114c-.143-.115-.384-.119-.59-.138z"/><path fill="#CCD6DD" d="M31.227 29.855c-.033 0-.066-.008-.097-.025-.097-.053-.132-.175-.078-.272l.17-.307c.054-.097.178-.131.271-.078.097.053.132.175.078.272l-.17.307c-.035.066-.104.103-.174.103z"/><path fill="#DD2E44" d="M33.882 29.325c-.243-.098-.797-.461-.953-.853-.141-.354-.241-1.312-.259-1.493.297-.028.753-.01.9.004.194.018.448.047.582.16.012.01-.22 1.64-.27 2.182z"/><path fill="#CCD6DD" d="M34.147 27.12s-.002.164-.079.276c-.077.113-.129.39-.149.596-.019.206-.105.981-.083 1.524.022.544.194 1.527.203 1.855s.003.839-.065 1.217c-.069.378-.142.715-.199.922-.073.267-.171.486-.285.639 0 0 .43-.03.757-.667.258-.503.402-.986.454-1.457.004-.036.112-1.291.163-1.918.037-.459.1-1.191.1-1.191.081-.868.1-1.309.061-1.475-.007-.029-.013-.152-.106-.279-.059-.083-.761-.153-.772-.042zm-2.472 3.287c-.074 0-.146-.042-.181-.113-.048-.099-.006-.219.094-.267l.316-.152c.102-.047.219-.006.268.094.048.099.006.219-.094.267l-.316.152c-.028.013-.057.019-.087.019zm.269.656c-.085 0-.164-.055-.191-.141-.032-.106.026-.218.132-.25l.354-.11c.109-.034.218.026.251.132.032.106-.026.218-.132.25l-.354.11c-.021.007-.04.009-.06.009zm.23.679c-.095 0-.179-.067-.196-.164-.021-.109.052-.213.16-.233l.334-.061c.117-.019.213.052.232.161.021.109-.052.213-.16.233l-.334.061-.036.003z"/><path fill="#BE1931" d="M18.11 33.515c-.031-.194-.196-.868-.314-1.095l-.467-1.48c-.021-.075-.101-.116-.175-.09-.214.073-.794.523-1.375.371-.388-.102-.642-.513-.828-.498-.059.005-.101.059-.092.117 0 0 .082.272.129.516-.043.235-.021.651-.188.911-.128.098-.214.305-.572.522-.213.129-1.186.729-1.186.729-.25.148-.287.269-.42.351-.273.168-1.026.535-1.257.68-.231.145-.289.363-.271.516.018.152.074.228.074.228s.446.283 2.106.121c.974-.095 4.774-1.125 4.774-1.125l.075-.167c.076-.168.02-.403-.013-.607z"/><path fill="#CCD6DD" d="M15.299 32.271c-.017 0-.033-.002-.051-.006l-.34-.089c-.106-.028-.171-.137-.143-.244.028-.107.132-.172.244-.143l.34.089c.106.028.171.137.143.244-.023.09-.104.149-.193.149z"/><path fill="#DD2E44" d="M15.938 34.472c.035-.26.248-.886.59-1.135.308-.224 1.211-.559 1.382-.622.101.281.197.727.22.873.031.192.06.447-.017.606-.05.105-1.547.178-2.175.278z"/><path fill="#CCD6DD" d="M18.14 34.183s-.159.039-.287-.008-.409-.028-.614.004c-.204.033-.976.142-1.497.298-.521.157-1.431.567-1.747.657s-.812.211-1.195.239c-.383.027-.728.04-.942.036-.277-.004-.513-.045-.69-.117 0 0 .136.409.834.567.552.125 1.055.145 1.524.078.036-.005 1.278-.212 1.899-.318.453-.078 1.178-.198 1.178-.198.861-.137 1.293-.229 1.444-.307.027-.014.144-.05.244-.172.066-.079-.041-.777-.151-.759zm-3.378-1.16c-.057 0-.113-.024-.153-.071l-.227-.269c-.071-.084-.06-.211.024-.282.084-.07.21-.061.282.024l.227.269c.071.084.06.211-.024.282-.037.032-.083.047-.129.047zm-.601.47c-.067 0-.133-.034-.17-.095l-.194-.316c-.059-.094-.029-.217.065-.275.092-.057.218-.029.274.066l.194.316c.059.094.029.217-.065.275-.032.02-.068.029-.104.029zm-.653.384c-.075 0-.148-.043-.182-.116l-.142-.308c-.046-.1-.002-.219.098-.265.101-.046.22-.003.266.098l.142.308c.046.1.002.219-.098.265-.027.012-.055.018-.084.018z"/><path fill="#A0041E" d="M16.444 21.431c.754-.391 3.244-1.626 4.948-1.799.156-.016.295.078.346.218l1.259 3.435c.065.176-.033.372-.222.433-.78.251-2.74.917-4.224 1.706-.157.084-.345.045-.443-.094-.442-.624-1.591-2.328-1.848-3.543-.031-.144.047-.286.184-.356z"/><path fill="#BE1931" d="M21.42 25.547c-.187-.828-.749-3.55-.494-5.242.023-.155.147-.265.292-.279l3.581-.349c.184-.018.346.126.357.325.047.818.198 2.882.584 4.518.041.173-.043.345-.198.405-.703.27-2.609.95-3.829.892-.144-.008-.259-.12-.293-.27z"/><path fill="#AF7E57" d="M18.032 10.659c-.037.617.172 1.537 1.603 1.665 1.43.128 2.808-.164 3.392-.377.584-.214.637.836.892 1.807.256.974.44 1.739.407 1.947-.054.352-.726 1.071-.388 1.647s.848 1.115 1.404.854 1.009-.557 1.136-.889c.127-.333-.626-1.25-.674-1.525s-.081-3.894-.146-4.3c-.08-.496-.172-1.177-1.01-1.395-.838-.218-4.153-.593-4.985-.688-.954-.109-1.582.436-1.631 1.254z"/><path fill="#AF7E57" d="M19.132 6.366c.31-.401.546-.872.661-1.455.409-2.083-.794-4.073-2.688-4.444-1.893-.372-4.483 1.029-4.425 3.151.057 2.107 1.229 5.214 2.993 4.69.466-.138.932-.29 1.375-.474.189.224.325 1.081.247 1.815-.2 1.87 2.381 2.065 2.579.192.157-1.481-.768-2.423-.742-3.475z"/><path fill="#60352A" d="M24.54 2.488c-1.311-.014-2.496-1.36-3.845-.501-.264.168-.456.337-.604.503-.234-.711-.636-1.367-1.299-1.799-.648-.422-1.443-.737-2.194-.652-4.578.516-4.329 3.827-3.981 4.137.348.31 1.299-.572 2.002-.669.328-.046 1.041-.053 1.419.49.306.44.411 1.33.411 1.33s.012-1.012.041-1.368c.027-.332.356-.714.801-.221.387.428.19 1.268-.079 1.356-.207.068.129.575.648.961.946.704 1.681.428 1.786.389.106-.039.465-.118.648-1.333.026-.169.044-.35.055-.537.374.324.987.709 1.827.715.929.007 2.619-.466 3.586-1.621.744-.889 1.05-2.355 1.05-2.355-.395.736-1.283 1.186-2.272 1.175z"/><path fill="#DD2E44" d="M22.418 9.749c-.897-1.578-2.174-2.314-3.528-1.683-2.437 1.136-2.644 2.853-1.828 5.349.603 1.845 2.094 3.688 2.906 6.927 0 0 2.246.202 5.436-.14 0-.001-.827-6.655-2.986-10.453z"/><path fill="#AF7E57" d="M19.923 10.158c-.603-.298-1.501-.279-2.236 1.101-.735 1.38-.969 2.5-1.173 3.36-.157.659-1.276.42-2.358.265-1.086-.156-2.742-.317-2.938-.438-.191-.118-1.507-.386-1.973-.393-.34-.005-2.01.282-2.402.612-.461.388 2.658.325 2.937.594s.914.457 1.312.562c.294.078 4.284 1.268 4.719 1.375.531.131 1.239.341 1.813-.406.574-.748 2.271-3.675 2.719-4.469.513-.91.38-1.768-.42-2.163z"/><circle fill="#FFAC33" cx="6.397" cy="21.831" r="3.603"/><path fill="#C1694F" d="M7.365 21.657c.764.708 1.573 1.273 2.329 1.615.122-.277.201-.573.25-.881-.628-.303-1.297-.777-1.942-1.37l1.304-1.304c-.178-.245-.389-.459-.621-.652l-1.32 1.32c-.646-.702-1.158-1.437-1.455-2.11-.306.042-.603.109-.879.223.013.031.016.059.03.09.336.785.927 1.635 1.667 2.434L5.43 22.319c-.796-.737-1.642-1.325-2.423-1.662-.1.29-.162.595-.185.914.636.302 1.317.782 1.972 1.385l-1.158 1.158c.193.232.408.444.652.621l1.142-1.142c.592.643 1.023 1.262 1.304 1.803.315-.03.617-.093.903-.199-.356-.751-.914-1.542-1.564-2.247l1.292-1.293z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/26f9-1f3fe-200d-2642-fe0f.svg b/public/emoji/26f9-1f3fe-200d-2642-fe0f.svg
index 7a5b647c0ef5cd394554e0c18e34d537308907d8..d618e5a4544f7ea721d5389b3abb7aaaa97226f4 100644
--- a/public/emoji/26f9-1f3fe-200d-2642-fe0f.svg
+++ b/public/emoji/26f9-1f3fe-200d-2642-fe0f.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#AF7E57" d="M30.853 27.634c-.081 0-.163-.01-.243-.028l-7.476-1.668c-.403-.094-.713-.402-.81-.805l-1.216-5.066c-.068-.282-.023-.572.129-.819.151-.247.391-.421.672-.487.085-.021.171-.031.256-.031.502 0 .935.342 1.052.832l1.06 4.415 6.821 1.517c.283.065.522.237.676.483.153.246.202.536.137.818-.094.402-.403.713-.807.81-.083.019-.167.029-.251.029zM11.318 4.474c-1.158.564.52 2.167.439 3.483-.052.909 1.722.595 1.722.595s1.159-.564 1.425 1.455c.262 2.017 3.141 2.05 2.877.03-.266-2.016-2.131-2.69-1.612-4.435 1.239-4.176-4.851-1.128-4.851-1.128z"/><path fill="#AF7E57" d="M27.516 15.314c-.373.089-.779-.03-1.043-.342-2.682-3.189-8.798-3.763-8.859-3.769-.572-.05-.997-.556-.946-1.129.05-.572.548-.998 1.127-.947.286.024 7.034.65 10.275 4.503.37.441.313 1.098-.128 1.469-.129.107-.275.178-.426.215zM17.47 35.301c-.598.028-1.107-.435-1.135-1.031l-.448-8.575c-.011-.243.061-.486.203-.684l5.246-7.271c.184-.255.469-.417.782-.445.259-.023.518.048.73.2.235.17.391.421.438.707.046.286-.022.573-.191.806l-5.024 6.966.431 8.195c.022.48-.28.925-.737 1.079-.077.025-.158.043-.242.051l-.053.002z"/><path fill="#2A6797" d="M15.28 24.425l5.246-7.271c.672-.932 1.976-1.144 2.909-.47.934.673 1.144 1.977.471 2.909l-4.819 6.681c-.001-.001-4.083-1.467-3.807-1.849z"/><path fill="#357BAA" d="M21.352 25.366L20.136 20.3c-.27-1.119.421-2.245 1.541-2.513 1.119-.268 2.244.421 2.513 1.541l.915 3.814c-.001 0-3.569 2.993-3.753 2.224z"/><path fill="#4289C1" d="M18.333 35.988c.383-.001.591-.366.572-.758-.03-.626-.072-.881-.072-.881-.062-.299-.324-.912-.688-.912-2.642 0-5.538.879-6.23 1.5-.409.367-.146 1.061.397 1.06l6.021-.009zm6.875-17.207c-.208.365-1.473-.525-2.99.281-2.156 1.146-3.339.467-3.339.467-3.486-5.595-6.243-8.149-2.809-11.024 1.097-.918 2.454-.523 3.663.76 2.913 3.089 5.684 9.152 5.475 9.516z"/><path fill="#B39155" d="M11.456 5.045c-1.292.498-1.379-.954-.764-1.773.867-1.155 3.366-1.697 4.665-1.06 1.297.637 1.728 2.432.86 3.587-.613.817-.652 2.054-1.083.26-.43-1.793-1.083.261-1.298-.636-.216-.897-2.38-.378-2.38-.378z"/><path fill="#AF7E57" d="M15.148 11.32c-.033.046-3.381 4.532-8.152 5.032l.002.02c-.483.051-.884.417-.931.919-.053.573.367 1.082.941 1.135.07.006.135-.014.203-.023l.003.021c5.678-.594 9.456-5.654 9.613-5.869l-1.679-1.235z"/><ellipse transform="rotate(-80.781 7 24.32)" fill="#FFAC33" cx="7" cy="24.32" rx="4" ry="4"/><path fill="#C1694F" d="M8.075 24.127c.849.786 1.747 1.413 2.586 1.793.135-.307.223-.636.277-.978-.697-.337-1.44-.862-2.156-1.521l1.448-1.448c-.197-.271-.432-.51-.69-.724l-1.465 1.465c-.717-.779-1.286-1.595-1.615-2.343-.34.046-.669.121-.976.248.014.035.018.065.033.1.373.872 1.03 1.815 1.851 2.702l-1.442 1.442c-.883-.818-1.823-1.471-2.691-1.845-.111.322-.18.661-.206 1.014.706.336 1.462.868 2.189 1.538l-1.285 1.286c.214.258.453.492.724.69l1.268-1.268c.658.714 1.136 1.401 1.448 2.002.349-.033.685-.104 1.003-.22-.396-.834-1.015-1.712-1.737-2.495l1.436-1.438z"/><path fill="#AF7E57" d="M17.255 5.459c-.262 2.342-2.251 3.358-4.247 4.134-1.904.741-3.484-2.589-3.74-4.915C9.01 2.336 11.747.549 13.875.788s3.642 2.33 3.38 4.671z"/><path fill="#60352A" d="M9.962 1.651c2.704-1.981 4.635-1.834 6.321-.68 1.674 1.146 1.929 3.534 1.603 5.091-.326 1.557-.776 1.507-.776 1.507s-2.07.636-2.373-1.306c-.096-.614.567-.999-.248-1.849-.525-.547-1.574-.176-1.516.665.058.841-.384.716-.384.716L11.158 3.66s-1.095.019-1.627 1.064c-.333.657-1.931-1.343.431-3.073z"/><path fill="#4289C1" d="M18.353 34.699h-1.977c-.185 0-.595-.158-.595-.35l.188-1.084c0-.193.096-.5.376-.5s.64.235.999.235.688-.522.96-.522c.211 0 .305.084.336.35l.193 1.521c0 .193-.295.35-.48.35zm14.494-8.875c.056-.379-.275-.638-.665-.677-.624-.062-.882-.058-.882-.058-.305.017-.949.186-1.003.546-.388 2.614.055 5.607.568 6.383.303.458 1.028.301 1.107-.237l.875-5.957z"/><path fill="#4289C1" d="M31.575 25.615l-.291 1.955c-.027.183-.243.565-.434.537l-1.044-.345c-.19-.028-.481-.169-.439-.446.041-.277.326-.599.379-.954.053-.355-.415-.757-.375-1.026.031-.209.128-.289.396-.281l1.533.033c.19.029.302.344.275.527z"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#AF7E57" d="M26.3 26.621c-.339-.021-.504-.165-.57-.496-.187-.94-.313-1.721-.356-1.993l-3.912.767c.118.473.644 2.5 1.322 3.806.393.757.831.782 1.79.838 0 0 3.726-.134 6.305-.231 1.142-.043 1.225-1.795.253-2.014-.692-.156-1.438-.3-2.053-.36-.465-.046-2.539-.303-2.779-.317zm-7.462-1.676l-1.729-3.593c-.428.233-2.257 1.253-3.35 2.237-.635.572-.549 1.002-.36 1.944 0 0 1.087 3.639 1.831 6.111.32 1.062 2.024.713 1.995-.251-.022-.732-.07-1.523-.171-2.156-.073-.463-.348-2.534-.394-2.77-.064-.334.033-.53.337-.677.863-.416 1.588-.735 1.841-.845z"/><path fill="#1C6399" d="M32.67 26.978c-.133.007-.238.02-.315.037l-1.55.085c-.078.002-.137.069-.131.147.017.225.309.899.018 1.424-.195.351-.656.495-.688.679-.01.058.032.112.091.118 0 0 .284-.012.532.003.217.1.626.182.836.408.063.148.242.283.364.684.072.239.412 1.33.412 1.33.081.278.189.345.236.494.095.306.263 1.127.346 1.387.083.26.28.37.433.391.152.02.239-.016.239-.016s.385-.362.64-2.01c.15-.967.095-4.904.095-4.904l-1.558-.257z"/><path fill="#CCD6DD" d="M31.227 29.855c-.033 0-.066-.008-.097-.025-.097-.053-.132-.175-.078-.272l.17-.307c.054-.097.178-.131.271-.078.097.053.132.175.078.272l-.17.307c-.035.066-.103.103-.174.103z"/><path fill="#3B94D9" d="M33.882 29.325c-.243-.098-.797-.461-.953-.853-.141-.354-.241-1.312-.259-1.493.297-.028.753-.01.9.004.194.018.447.044.585.166-.001-.001-.214 1.543-.273 2.176z"/><path fill="#CCD6DD" d="M34.148 27.12s-.002.164-.079.276c-.077.113-.129.39-.149.596-.019.206-.105.981-.083 1.524.022.544.194 1.527.203 1.855.009.328.003.839-.065 1.217-.069.378-.142.715-.199.922-.073.267-.171.486-.285.639 0 0 .43-.03.757-.667.258-.503.402-.986.454-1.457l.263-3.109c.081-.868.1-1.309.061-1.475-.007-.029-.013-.152-.106-.279-.06-.083-.762-.153-.772-.042zm-2.472 3.287c-.074 0-.146-.042-.181-.113-.048-.1-.006-.219.094-.267l.317-.152c.101-.046.219-.006.268.094.048.1.006.219-.094.267l-.317.152c-.029.013-.058.019-.087.019zm.268.657c-.086 0-.164-.055-.191-.141-.032-.105.026-.218.132-.25l.354-.11c.112-.033.217.027.251.132.032.105-.026.218-.132.25l-.354.11c-.021.006-.04.009-.06.009zm.232.678c-.095 0-.179-.067-.196-.164-.021-.109.052-.213.16-.233l.333-.061c.108-.02.213.052.232.161.021.109-.052.213-.16.233l-.333.061-.036.003z"/><path fill="#1C6399" d="M17.911 32.716c-.04-.128-.078-.226-.114-.296l-.467-1.48c-.021-.075-.101-.116-.175-.09-.214.073-.794.523-1.375.371-.388-.102-.642-.513-.828-.498-.059.005-.101.059-.092.117 0 0 .082.272.129.516-.043.235-.021.651-.188.911-.128.098-.214.305-.572.522-.213.129-1.186.729-1.186.729-.25.148-.287.269-.42.351-.273.168-1.026.535-1.257.68-.231.145-.289.363-.271.516.018.152.074.228.074.228s.446.283 2.106.121c.974-.095 4.775-1.117 4.775-1.117s-.049-1.295-.139-1.581z"/><path fill="#CCD6DD" d="M15.3 32.271c-.017 0-.033-.002-.051-.006l-.34-.089c-.106-.028-.171-.137-.143-.244.027-.107.131-.171.244-.143l.34.089c.106.028.171.137.143.244-.023.09-.105.149-.193.149z"/><path fill="#3B94D9" d="M15.939 34.472c.035-.26.248-.886.59-1.135.308-.224 1.211-.559 1.382-.622.101.281.197.727.22.873.031.192.072.411-.022.609 0 .001-1.543.176-2.17.275z"/><path fill="#CCD6DD" d="M18.141 34.183s-.159.039-.287-.008-.409-.028-.614.004c-.204.033-.976.142-1.497.298-.521.157-1.431.567-1.747.657s-.812.211-1.195.239c-.383.027-.728.04-.942.036-.277-.004-.513-.045-.69-.117 0 0 .136.409.834.567.552.125 1.055.145 1.524.078.036-.005 3.077-.517 3.077-.517.861-.137 1.293-.229 1.444-.307.027-.014.144-.05.244-.172.065-.078-.042-.776-.151-.758zm-3.379-1.16c-.057 0-.113-.024-.153-.071l-.227-.269c-.071-.084-.06-.211.024-.282.084-.07.21-.061.282.024l.227.269c.071.084.06.211-.024.282-.037.032-.083.047-.129.047zm-.6.47c-.067 0-.133-.034-.17-.095l-.194-.316c-.059-.094-.029-.217.065-.275.093-.057.217-.029.274.066l.194.316c.059.094.029.217-.065.275-.032.02-.068.029-.104.029zm-.652.384c-.075 0-.147-.043-.182-.116l-.143-.308c-.046-.1-.003-.219.098-.265.1-.047.219-.003.266.097l.143.308c.046.1.003.219-.098.265-.028.013-.056.019-.084.019z"/><path fill="#1C6399" d="M16.404 21.332c.751-.398 3.235-1.653 4.947-1.804.156-.014.298.088.352.235l1.328 3.635c.068.186-.027.391-.216.451-.781.25-2.74.915-4.22 1.719-.157.085-.347.041-.448-.106-.456-.664-1.642-2.477-1.923-3.76-.032-.15.045-.298.18-.37z"/><path fill="#357BAA" d="M21.264 25.576c-.196-.827-.785-3.547-.501-5.242.026-.155.16-.266.316-.281l3.853-.37c.198-.019.371.124.382.323.046.818.196 2.882.601 4.517.043.173-.048.346-.216.407-.758.274-2.811.965-4.123.914-.153-.006-.276-.118-.312-.268z"/><path fill="#AF7E57" d="M18.032 10.676c-.037.617.172 1.537 1.603 1.665 1.43.128 2.808-.164 3.392-.377.584-.214.637.836.892 1.807.256.974.44 1.739.407 1.947-.054.352-.726 1.071-.388 1.647.338.576.848 1.115 1.404.854s1.009-.557 1.136-.889c.127-.333-.626-1.25-.674-1.525s-.081-3.894-.146-4.3c-.08-.496-.172-1.177-1.01-1.395s-4.153-.593-4.985-.688c-.953-.109-1.582.436-1.631 1.254z"/><path fill="#AF7E57" d="M18.885 6.217c.253-.418.429-.895.475-1.466C19.525 2.71 18.155.934 16.3.784c-1.855-.15-4.184 1.475-3.897 3.502.285 2.013 1.746 4.863 3.38 4.169.431-.183.861-.38 1.267-.604.205.194.429 1.001.435 1.713.012 1.814 2.507 1.72 2.492-.097-.013-1.437-1.002-2.239-1.092-3.25z"/><path fill="#60352A" d="M12.925 1.639c2.296-1.793 3.976-1.717 5.471-.76 1.485.951 1.77 3.017 1.528 4.378-.241 1.361-.633 1.329-.633 1.329s-1.781.607-2.096-1.071c-.1-.531.466-.883-.265-1.599-.47-.461-1.372-.111-1.299.618.073.729-.314.632-.314.632l-1.3-1.814s-.951.046-1.384.968c-.272.579-1.713-1.115.292-2.681z"/><path fill="#4289C1" d="M22.418 9.765c-.897-1.578-2.174-2.314-3.528-1.683-4.238 1.976-1.905 5.849.189 12.276 0 0 3.134.202 6.325-.14.001 0-.826-6.654-2.986-10.453z"/><path fill="#AF7E57" d="M19.924 10.175c-.603-.298-1.614-.479-2.349.901-.735 1.38-1.027 2.884-1.06 3.561-.033.677-1.108.284-2.191.128-1.086-.156-2.853-.332-3.048-.453-.191-.118-1.565-.234-2.03-.242-.34-.005-2.104.282-2.496.612-.461.388 2.73.461 3.01.729.28.269.876.481 1.274.587.294.078 4.391 1.364 4.826 1.471.531.131 1.253.327 1.827-.421.574-.748 2.356-3.913 2.804-4.707.512-.909.232-1.771-.567-2.166z"/><circle fill="#FFAC33" cx="6.397" cy="21.831" r="3.603"/><path fill="#C1694F" d="M7.365 21.657c.764.708 1.573 1.273 2.329 1.615.122-.277.201-.573.25-.881-.628-.303-1.297-.777-1.942-1.37l1.304-1.304c-.178-.245-.389-.459-.621-.652l-1.32 1.32c-.646-.702-1.158-1.437-1.455-2.11-.306.042-.603.109-.879.223.013.031.016.059.03.09.336.785.927 1.635 1.667 2.434L5.43 22.319c-.796-.737-1.642-1.325-2.423-1.662-.1.29-.162.595-.185.914.636.302 1.317.782 1.972 1.385l-1.158 1.158c.193.232.408.444.652.621l1.142-1.142c.592.643 1.023 1.262 1.304 1.803.315-.03.617-.093.903-.199-.356-.751-.914-1.542-1.564-2.247l1.292-1.293z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/26f9-1f3fe.svg b/public/emoji/26f9-1f3fe.svg
index 7a5b647c0ef5cd394554e0c18e34d537308907d8..d618e5a4544f7ea721d5389b3abb7aaaa97226f4 100644
--- a/public/emoji/26f9-1f3fe.svg
+++ b/public/emoji/26f9-1f3fe.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#AF7E57" d="M30.853 27.634c-.081 0-.163-.01-.243-.028l-7.476-1.668c-.403-.094-.713-.402-.81-.805l-1.216-5.066c-.068-.282-.023-.572.129-.819.151-.247.391-.421.672-.487.085-.021.171-.031.256-.031.502 0 .935.342 1.052.832l1.06 4.415 6.821 1.517c.283.065.522.237.676.483.153.246.202.536.137.818-.094.402-.403.713-.807.81-.083.019-.167.029-.251.029zM11.318 4.474c-1.158.564.52 2.167.439 3.483-.052.909 1.722.595 1.722.595s1.159-.564 1.425 1.455c.262 2.017 3.141 2.05 2.877.03-.266-2.016-2.131-2.69-1.612-4.435 1.239-4.176-4.851-1.128-4.851-1.128z"/><path fill="#AF7E57" d="M27.516 15.314c-.373.089-.779-.03-1.043-.342-2.682-3.189-8.798-3.763-8.859-3.769-.572-.05-.997-.556-.946-1.129.05-.572.548-.998 1.127-.947.286.024 7.034.65 10.275 4.503.37.441.313 1.098-.128 1.469-.129.107-.275.178-.426.215zM17.47 35.301c-.598.028-1.107-.435-1.135-1.031l-.448-8.575c-.011-.243.061-.486.203-.684l5.246-7.271c.184-.255.469-.417.782-.445.259-.023.518.048.73.2.235.17.391.421.438.707.046.286-.022.573-.191.806l-5.024 6.966.431 8.195c.022.48-.28.925-.737 1.079-.077.025-.158.043-.242.051l-.053.002z"/><path fill="#2A6797" d="M15.28 24.425l5.246-7.271c.672-.932 1.976-1.144 2.909-.47.934.673 1.144 1.977.471 2.909l-4.819 6.681c-.001-.001-4.083-1.467-3.807-1.849z"/><path fill="#357BAA" d="M21.352 25.366L20.136 20.3c-.27-1.119.421-2.245 1.541-2.513 1.119-.268 2.244.421 2.513 1.541l.915 3.814c-.001 0-3.569 2.993-3.753 2.224z"/><path fill="#4289C1" d="M18.333 35.988c.383-.001.591-.366.572-.758-.03-.626-.072-.881-.072-.881-.062-.299-.324-.912-.688-.912-2.642 0-5.538.879-6.23 1.5-.409.367-.146 1.061.397 1.06l6.021-.009zm6.875-17.207c-.208.365-1.473-.525-2.99.281-2.156 1.146-3.339.467-3.339.467-3.486-5.595-6.243-8.149-2.809-11.024 1.097-.918 2.454-.523 3.663.76 2.913 3.089 5.684 9.152 5.475 9.516z"/><path fill="#B39155" d="M11.456 5.045c-1.292.498-1.379-.954-.764-1.773.867-1.155 3.366-1.697 4.665-1.06 1.297.637 1.728 2.432.86 3.587-.613.817-.652 2.054-1.083.26-.43-1.793-1.083.261-1.298-.636-.216-.897-2.38-.378-2.38-.378z"/><path fill="#AF7E57" d="M15.148 11.32c-.033.046-3.381 4.532-8.152 5.032l.002.02c-.483.051-.884.417-.931.919-.053.573.367 1.082.941 1.135.07.006.135-.014.203-.023l.003.021c5.678-.594 9.456-5.654 9.613-5.869l-1.679-1.235z"/><ellipse transform="rotate(-80.781 7 24.32)" fill="#FFAC33" cx="7" cy="24.32" rx="4" ry="4"/><path fill="#C1694F" d="M8.075 24.127c.849.786 1.747 1.413 2.586 1.793.135-.307.223-.636.277-.978-.697-.337-1.44-.862-2.156-1.521l1.448-1.448c-.197-.271-.432-.51-.69-.724l-1.465 1.465c-.717-.779-1.286-1.595-1.615-2.343-.34.046-.669.121-.976.248.014.035.018.065.033.1.373.872 1.03 1.815 1.851 2.702l-1.442 1.442c-.883-.818-1.823-1.471-2.691-1.845-.111.322-.18.661-.206 1.014.706.336 1.462.868 2.189 1.538l-1.285 1.286c.214.258.453.492.724.69l1.268-1.268c.658.714 1.136 1.401 1.448 2.002.349-.033.685-.104 1.003-.22-.396-.834-1.015-1.712-1.737-2.495l1.436-1.438z"/><path fill="#AF7E57" d="M17.255 5.459c-.262 2.342-2.251 3.358-4.247 4.134-1.904.741-3.484-2.589-3.74-4.915C9.01 2.336 11.747.549 13.875.788s3.642 2.33 3.38 4.671z"/><path fill="#60352A" d="M9.962 1.651c2.704-1.981 4.635-1.834 6.321-.68 1.674 1.146 1.929 3.534 1.603 5.091-.326 1.557-.776 1.507-.776 1.507s-2.07.636-2.373-1.306c-.096-.614.567-.999-.248-1.849-.525-.547-1.574-.176-1.516.665.058.841-.384.716-.384.716L11.158 3.66s-1.095.019-1.627 1.064c-.333.657-1.931-1.343.431-3.073z"/><path fill="#4289C1" d="M18.353 34.699h-1.977c-.185 0-.595-.158-.595-.35l.188-1.084c0-.193.096-.5.376-.5s.64.235.999.235.688-.522.96-.522c.211 0 .305.084.336.35l.193 1.521c0 .193-.295.35-.48.35zm14.494-8.875c.056-.379-.275-.638-.665-.677-.624-.062-.882-.058-.882-.058-.305.017-.949.186-1.003.546-.388 2.614.055 5.607.568 6.383.303.458 1.028.301 1.107-.237l.875-5.957z"/><path fill="#4289C1" d="M31.575 25.615l-.291 1.955c-.027.183-.243.565-.434.537l-1.044-.345c-.19-.028-.481-.169-.439-.446.041-.277.326-.599.379-.954.053-.355-.415-.757-.375-1.026.031-.209.128-.289.396-.281l1.533.033c.19.029.302.344.275.527z"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#AF7E57" d="M26.3 26.621c-.339-.021-.504-.165-.57-.496-.187-.94-.313-1.721-.356-1.993l-3.912.767c.118.473.644 2.5 1.322 3.806.393.757.831.782 1.79.838 0 0 3.726-.134 6.305-.231 1.142-.043 1.225-1.795.253-2.014-.692-.156-1.438-.3-2.053-.36-.465-.046-2.539-.303-2.779-.317zm-7.462-1.676l-1.729-3.593c-.428.233-2.257 1.253-3.35 2.237-.635.572-.549 1.002-.36 1.944 0 0 1.087 3.639 1.831 6.111.32 1.062 2.024.713 1.995-.251-.022-.732-.07-1.523-.171-2.156-.073-.463-.348-2.534-.394-2.77-.064-.334.033-.53.337-.677.863-.416 1.588-.735 1.841-.845z"/><path fill="#1C6399" d="M32.67 26.978c-.133.007-.238.02-.315.037l-1.55.085c-.078.002-.137.069-.131.147.017.225.309.899.018 1.424-.195.351-.656.495-.688.679-.01.058.032.112.091.118 0 0 .284-.012.532.003.217.1.626.182.836.408.063.148.242.283.364.684.072.239.412 1.33.412 1.33.081.278.189.345.236.494.095.306.263 1.127.346 1.387.083.26.28.37.433.391.152.02.239-.016.239-.016s.385-.362.64-2.01c.15-.967.095-4.904.095-4.904l-1.558-.257z"/><path fill="#CCD6DD" d="M31.227 29.855c-.033 0-.066-.008-.097-.025-.097-.053-.132-.175-.078-.272l.17-.307c.054-.097.178-.131.271-.078.097.053.132.175.078.272l-.17.307c-.035.066-.103.103-.174.103z"/><path fill="#3B94D9" d="M33.882 29.325c-.243-.098-.797-.461-.953-.853-.141-.354-.241-1.312-.259-1.493.297-.028.753-.01.9.004.194.018.447.044.585.166-.001-.001-.214 1.543-.273 2.176z"/><path fill="#CCD6DD" d="M34.148 27.12s-.002.164-.079.276c-.077.113-.129.39-.149.596-.019.206-.105.981-.083 1.524.022.544.194 1.527.203 1.855.009.328.003.839-.065 1.217-.069.378-.142.715-.199.922-.073.267-.171.486-.285.639 0 0 .43-.03.757-.667.258-.503.402-.986.454-1.457l.263-3.109c.081-.868.1-1.309.061-1.475-.007-.029-.013-.152-.106-.279-.06-.083-.762-.153-.772-.042zm-2.472 3.287c-.074 0-.146-.042-.181-.113-.048-.1-.006-.219.094-.267l.317-.152c.101-.046.219-.006.268.094.048.1.006.219-.094.267l-.317.152c-.029.013-.058.019-.087.019zm.268.657c-.086 0-.164-.055-.191-.141-.032-.105.026-.218.132-.25l.354-.11c.112-.033.217.027.251.132.032.105-.026.218-.132.25l-.354.11c-.021.006-.04.009-.06.009zm.232.678c-.095 0-.179-.067-.196-.164-.021-.109.052-.213.16-.233l.333-.061c.108-.02.213.052.232.161.021.109-.052.213-.16.233l-.333.061-.036.003z"/><path fill="#1C6399" d="M17.911 32.716c-.04-.128-.078-.226-.114-.296l-.467-1.48c-.021-.075-.101-.116-.175-.09-.214.073-.794.523-1.375.371-.388-.102-.642-.513-.828-.498-.059.005-.101.059-.092.117 0 0 .082.272.129.516-.043.235-.021.651-.188.911-.128.098-.214.305-.572.522-.213.129-1.186.729-1.186.729-.25.148-.287.269-.42.351-.273.168-1.026.535-1.257.68-.231.145-.289.363-.271.516.018.152.074.228.074.228s.446.283 2.106.121c.974-.095 4.775-1.117 4.775-1.117s-.049-1.295-.139-1.581z"/><path fill="#CCD6DD" d="M15.3 32.271c-.017 0-.033-.002-.051-.006l-.34-.089c-.106-.028-.171-.137-.143-.244.027-.107.131-.171.244-.143l.34.089c.106.028.171.137.143.244-.023.09-.105.149-.193.149z"/><path fill="#3B94D9" d="M15.939 34.472c.035-.26.248-.886.59-1.135.308-.224 1.211-.559 1.382-.622.101.281.197.727.22.873.031.192.072.411-.022.609 0 .001-1.543.176-2.17.275z"/><path fill="#CCD6DD" d="M18.141 34.183s-.159.039-.287-.008-.409-.028-.614.004c-.204.033-.976.142-1.497.298-.521.157-1.431.567-1.747.657s-.812.211-1.195.239c-.383.027-.728.04-.942.036-.277-.004-.513-.045-.69-.117 0 0 .136.409.834.567.552.125 1.055.145 1.524.078.036-.005 3.077-.517 3.077-.517.861-.137 1.293-.229 1.444-.307.027-.014.144-.05.244-.172.065-.078-.042-.776-.151-.758zm-3.379-1.16c-.057 0-.113-.024-.153-.071l-.227-.269c-.071-.084-.06-.211.024-.282.084-.07.21-.061.282.024l.227.269c.071.084.06.211-.024.282-.037.032-.083.047-.129.047zm-.6.47c-.067 0-.133-.034-.17-.095l-.194-.316c-.059-.094-.029-.217.065-.275.093-.057.217-.029.274.066l.194.316c.059.094.029.217-.065.275-.032.02-.068.029-.104.029zm-.652.384c-.075 0-.147-.043-.182-.116l-.143-.308c-.046-.1-.003-.219.098-.265.1-.047.219-.003.266.097l.143.308c.046.1.003.219-.098.265-.028.013-.056.019-.084.019z"/><path fill="#1C6399" d="M16.404 21.332c.751-.398 3.235-1.653 4.947-1.804.156-.014.298.088.352.235l1.328 3.635c.068.186-.027.391-.216.451-.781.25-2.74.915-4.22 1.719-.157.085-.347.041-.448-.106-.456-.664-1.642-2.477-1.923-3.76-.032-.15.045-.298.18-.37z"/><path fill="#357BAA" d="M21.264 25.576c-.196-.827-.785-3.547-.501-5.242.026-.155.16-.266.316-.281l3.853-.37c.198-.019.371.124.382.323.046.818.196 2.882.601 4.517.043.173-.048.346-.216.407-.758.274-2.811.965-4.123.914-.153-.006-.276-.118-.312-.268z"/><path fill="#AF7E57" d="M18.032 10.676c-.037.617.172 1.537 1.603 1.665 1.43.128 2.808-.164 3.392-.377.584-.214.637.836.892 1.807.256.974.44 1.739.407 1.947-.054.352-.726 1.071-.388 1.647.338.576.848 1.115 1.404.854s1.009-.557 1.136-.889c.127-.333-.626-1.25-.674-1.525s-.081-3.894-.146-4.3c-.08-.496-.172-1.177-1.01-1.395s-4.153-.593-4.985-.688c-.953-.109-1.582.436-1.631 1.254z"/><path fill="#AF7E57" d="M18.885 6.217c.253-.418.429-.895.475-1.466C19.525 2.71 18.155.934 16.3.784c-1.855-.15-4.184 1.475-3.897 3.502.285 2.013 1.746 4.863 3.38 4.169.431-.183.861-.38 1.267-.604.205.194.429 1.001.435 1.713.012 1.814 2.507 1.72 2.492-.097-.013-1.437-1.002-2.239-1.092-3.25z"/><path fill="#60352A" d="M12.925 1.639c2.296-1.793 3.976-1.717 5.471-.76 1.485.951 1.77 3.017 1.528 4.378-.241 1.361-.633 1.329-.633 1.329s-1.781.607-2.096-1.071c-.1-.531.466-.883-.265-1.599-.47-.461-1.372-.111-1.299.618.073.729-.314.632-.314.632l-1.3-1.814s-.951.046-1.384.968c-.272.579-1.713-1.115.292-2.681z"/><path fill="#4289C1" d="M22.418 9.765c-.897-1.578-2.174-2.314-3.528-1.683-4.238 1.976-1.905 5.849.189 12.276 0 0 3.134.202 6.325-.14.001 0-.826-6.654-2.986-10.453z"/><path fill="#AF7E57" d="M19.924 10.175c-.603-.298-1.614-.479-2.349.901-.735 1.38-1.027 2.884-1.06 3.561-.033.677-1.108.284-2.191.128-1.086-.156-2.853-.332-3.048-.453-.191-.118-1.565-.234-2.03-.242-.34-.005-2.104.282-2.496.612-.461.388 2.73.461 3.01.729.28.269.876.481 1.274.587.294.078 4.391 1.364 4.826 1.471.531.131 1.253.327 1.827-.421.574-.748 2.356-3.913 2.804-4.707.512-.909.232-1.771-.567-2.166z"/><circle fill="#FFAC33" cx="6.397" cy="21.831" r="3.603"/><path fill="#C1694F" d="M7.365 21.657c.764.708 1.573 1.273 2.329 1.615.122-.277.201-.573.25-.881-.628-.303-1.297-.777-1.942-1.37l1.304-1.304c-.178-.245-.389-.459-.621-.652l-1.32 1.32c-.646-.702-1.158-1.437-1.455-2.11-.306.042-.603.109-.879.223.013.031.016.059.03.09.336.785.927 1.635 1.667 2.434L5.43 22.319c-.796-.737-1.642-1.325-2.423-1.662-.1.29-.162.595-.185.914.636.302 1.317.782 1.972 1.385l-1.158 1.158c.193.232.408.444.652.621l1.142-1.142c.592.643 1.023 1.262 1.304 1.803.315-.03.617-.093.903-.199-.356-.751-.914-1.542-1.564-2.247l1.292-1.293z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/26f9-1f3ff-200d-2640-fe0f.svg b/public/emoji/26f9-1f3ff-200d-2640-fe0f.svg
index bbc1e9fe751601ccb1856211c4961d15031c7ed5..52dcb9bec74c7dcc8e672cc06af3e58cefc1e007 100644
--- a/public/emoji/26f9-1f3ff-200d-2640-fe0f.svg
+++ b/public/emoji/26f9-1f3ff-200d-2640-fe0f.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#7C533E" d="M30.853 27.634c-.081 0-.163-.01-.243-.028l-7.476-1.668c-.403-.094-.713-.402-.81-.805l-1.216-5.066c-.068-.282-.023-.572.129-.819.151-.247.391-.421.672-.487.085-.021.171-.031.256-.031.502 0 .935.342 1.052.832l1.06 4.415 6.821 1.517c.283.065.522.237.676.483.153.246.202.536.137.818-.094.402-.403.713-.807.81-.083.019-.167.029-.251.029zM11.318 4.474c-1.158.564.52 2.167.439 3.483-.052.909 1.722.595 1.722.595s1.159-.564 1.425 1.455c.262 2.017 3.141 2.05 2.877.03-.266-2.016-2.131-2.69-1.612-4.435 1.239-4.176-4.851-1.128-4.851-1.128z"/><path fill="#7C533E" d="M27.516 15.314c-.373.089-.779-.03-1.043-.342-2.682-3.189-8.798-3.763-8.859-3.769-.572-.05-.997-.556-.946-1.129.05-.572.548-.998 1.127-.947.286.024 7.034.65 10.275 4.503.37.441.313 1.098-.128 1.469-.129.107-.275.178-.426.215zM17.47 35.301c-.598.028-1.107-.435-1.135-1.031l-.448-8.575c-.011-.243.061-.486.203-.684l5.246-7.271c.184-.255.469-.417.782-.445.259-.023.518.048.73.2.235.17.391.421.438.707.046.286-.022.573-.191.806l-5.024 6.966.431 8.195c.022.48-.28.925-.737 1.079-.077.025-.158.043-.242.051l-.053.002z"/><path fill="#A0041E" d="M15.28 24.425l5.246-7.271c.672-.932 1.976-1.144 2.909-.47.934.673 1.144 1.977.471 2.909l-4.819 6.681c-.001-.001-4.083-1.467-3.807-1.849z"/><path fill="#BE1931" d="M21.352 25.366L20.136 20.3c-.27-1.119.421-2.245 1.541-2.513 1.119-.268 2.244.421 2.513 1.541l.915 3.814c-.001 0-3.569 2.993-3.753 2.224z"/><path fill="#7C533E" d="M17.259 3.842c.537 2.238-.842 4.489-3.081 5.026-2.239.537-4.489-.842-5.026-3.081-.538-2.239.842-4.49 3.08-5.027 2.239-.537 4.49.842 5.027 3.082z"/><path fill="#0B0200" d="M21.375 4.462c-1.083.083-2.14.092-4.208-1.976C15.792 1.111 14.564.273 11.834.643c-2.899.394-5.018 3.169-3 4.17.88.437 1.529.095 2.88.295 2.121.315 2.707 2.456 4.62 2.711 3.743.501 6.124-3.44 5.041-3.357z"/><ellipse transform="rotate(-80.781 7 24.32)" fill="#FFAC33" cx="7" cy="24.32" rx="4" ry="4"/><path fill="#C1694F" d="M8.075 24.126c.849.786 1.747 1.413 2.586 1.793.135-.307.223-.636.277-.978-.697-.337-1.44-.862-2.156-1.521l1.448-1.448c-.197-.271-.432-.51-.69-.724l-1.465 1.465c-.717-.779-1.286-1.595-1.615-2.343-.34.046-.669.121-.976.248.014.035.018.065.033.1.373.872 1.03 1.815 1.851 2.702l-1.442 1.442c-.883-.818-1.823-1.471-2.691-1.845-.111.322-.18.661-.206 1.014.706.336 1.462.868 2.189 1.538l-1.285 1.286c.214.258.453.492.724.69l1.268-1.268c.658.714 1.136 1.401 1.448 2.002.349-.033.685-.104 1.003-.22-.396-.834-1.015-1.712-1.737-2.495l1.436-1.438z"/><path fill="#DD2E44" d="M18.333 35.988c.383-.001.591-.366.572-.758-.03-.626-.072-.881-.072-.881-.062-.299-.324-.912-.688-.912-2.642 0-5.538.879-6.23 1.5-.409.367-.146 1.061.397 1.06l6.021-.009zm6.875-17.207c-.208.365-1.473-.525-2.99.281-2.156 1.146-3.339.467-3.339.467-3.486-5.595-6.243-8.149-2.809-11.024 1.097-.918 2.454-.523 3.663.76 2.913 3.089 5.684 9.152 5.475 9.516z"/><path fill="#DD2E44" d="M18.353 34.699h-1.977c-.185 0-.595-.158-.595-.35l.188-1.084c0-.193.096-.5.376-.5s.64.235.999.235.688-.522.96-.522c.211 0 .305.084.336.35l.193 1.521c0 .193-.295.35-.48.35zm14.494-8.875c.056-.379-.275-.638-.665-.677-.624-.062-.882-.058-.882-.058-.305.017-.949.186-1.003.546-.388 2.614.055 5.607.568 6.383.303.458 1.028.301 1.107-.237l.875-5.957z"/><path fill="#DD2E44" d="M31.575 25.615l-.291 1.955c-.027.183-.243.565-.434.537l-1.044-.345c-.19-.028-.481-.169-.439-.446.041-.277.326-.599.379-.954.053-.355-.415-.757-.375-1.026.031-.209.128-.289.396-.281l1.533.033c.19.029.302.344.275.527z"/><path fill="#7C533E" d="M15.148 11.32c-.033.046-3.381 4.532-8.152 5.032l.002.02c-.483.051-.884.417-.931.919-.053.573.367 1.082.941 1.135.07.006.135-.014.203-.023l.003.021c5.678-.594 9.456-5.654 9.613-5.869l-1.679-1.235z"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#7C533E" d="M26.29 26.753c-.53-.033-.658-.368-.708-.617-.16-.802-.275-1.489-.333-1.845l-3.604.707c.168.654.657 2.438 1.271 3.619.354.682.711.703 1.666.758 0 0 3.975-.139 6.542-.237.885-.034.973-1.48.215-1.657-.751-.176-1.595-.346-2.276-.413-.465-.044-2.533-.3-2.773-.315zm-12.431-3.068c-.57.514-.5.865-.312 1.803 0 0 1.113 3.738 1.854 6.2.265.881 1.698.641 1.679-.138-.019-.771-.067-1.63-.174-2.305-.073-.463-.346-2.528-.392-2.764-.102-.523.19-.73.419-.84.736-.356 1.371-.642 1.7-.786l-1.591-3.311c-.59.327-2.194 1.249-3.183 2.141z"/><path fill="#BE1931" d="M33.493 26.983c-.195-.018-.89-.026-1.139.032l-1.55.085c-.078.002-.137.069-.131.147.017.225.309.899.018 1.424-.195.351-.656.495-.688.679-.01.058.032.112.091.118 0 0 .284-.012.532.003.217.1.626.182.836.408.063.148.242.283.364.684.072.239.412 1.33.412 1.33.081.278.189.345.236.494.095.306.263 1.127.346 1.387.083.26.28.37.433.391.152.02.239-.016.239-.016s.385-.362.64-2.01c.15-.967.095-4.904.095-4.904l-.144-.114c-.143-.115-.384-.119-.59-.138z"/><path fill="#CCD6DD" d="M31.227 29.855c-.033 0-.066-.008-.097-.025-.097-.053-.132-.175-.078-.272l.17-.307c.054-.097.178-.131.271-.078.097.053.132.175.078.272l-.17.307c-.035.066-.104.103-.174.103z"/><path fill="#DD2E44" d="M33.882 29.325c-.243-.098-.797-.461-.953-.853-.141-.354-.241-1.312-.259-1.493.297-.028.753-.01.9.004.194.018.448.047.582.16.012.01-.22 1.64-.27 2.182z"/><path fill="#CCD6DD" d="M34.147 27.12s-.002.164-.079.276c-.077.113-.129.39-.149.596-.019.206-.105.981-.083 1.524.022.544.194 1.527.203 1.855s.003.839-.065 1.217c-.069.378-.142.715-.199.922-.073.267-.171.486-.285.639 0 0 .43-.03.757-.667.258-.503.402-.986.454-1.457.004-.036.112-1.291.163-1.918.037-.459.1-1.191.1-1.191.081-.868.1-1.309.061-1.475-.007-.029-.013-.152-.106-.279-.059-.083-.761-.153-.772-.042zm-2.472 3.287c-.074 0-.146-.042-.181-.113-.048-.099-.006-.219.094-.267l.316-.152c.102-.047.219-.006.268.094.048.099.006.219-.094.267l-.316.152c-.028.013-.057.019-.087.019zm.269.656c-.085 0-.164-.055-.191-.141-.032-.106.026-.218.132-.25l.354-.11c.109-.034.218.026.251.132.032.106-.026.218-.132.25l-.354.11c-.021.007-.04.009-.06.009zm.23.679c-.095 0-.179-.067-.196-.164-.021-.109.052-.213.16-.233l.334-.061c.117-.019.213.052.232.161.021.109-.052.213-.16.233l-.334.061-.036.003z"/><path fill="#BE1931" d="M18.11 33.515c-.031-.194-.196-.868-.314-1.095l-.467-1.48c-.021-.075-.101-.116-.175-.09-.214.073-.794.523-1.375.371-.388-.102-.642-.513-.828-.498-.059.005-.101.059-.092.117 0 0 .082.272.129.516-.043.235-.021.651-.188.911-.128.098-.214.305-.572.522-.213.129-1.186.729-1.186.729-.25.148-.287.269-.42.351-.273.168-1.026.535-1.257.68-.231.145-.289.363-.271.516.018.152.074.228.074.228s.446.283 2.106.121c.974-.095 4.774-1.125 4.774-1.125l.075-.167c.076-.168.02-.403-.013-.607z"/><path fill="#CCD6DD" d="M15.299 32.271c-.017 0-.033-.002-.051-.006l-.34-.089c-.106-.028-.171-.137-.143-.244.028-.107.132-.172.244-.143l.34.089c.106.028.171.137.143.244-.023.09-.104.149-.193.149z"/><path fill="#DD2E44" d="M15.938 34.472c.035-.26.248-.886.59-1.135.308-.224 1.211-.559 1.382-.622.101.281.197.727.22.873.031.192.06.447-.017.606-.05.105-1.547.178-2.175.278z"/><path fill="#CCD6DD" d="M18.14 34.183s-.159.039-.287-.008-.409-.028-.614.004c-.204.033-.976.142-1.497.298-.521.157-1.431.567-1.747.657s-.812.211-1.195.239c-.383.027-.728.04-.942.036-.277-.004-.513-.045-.69-.117 0 0 .136.409.834.567.552.125 1.055.145 1.524.078.036-.005 1.278-.212 1.899-.318.453-.078 1.178-.198 1.178-.198.861-.137 1.293-.229 1.444-.307.027-.014.144-.05.244-.172.066-.079-.041-.777-.151-.759zm-3.378-1.16c-.057 0-.113-.024-.153-.071l-.227-.269c-.071-.084-.06-.211.024-.282.084-.07.21-.061.282.024l.227.269c.071.084.06.211-.024.282-.037.032-.083.047-.129.047zm-.601.47c-.067 0-.133-.034-.17-.095l-.194-.316c-.059-.094-.029-.217.065-.275.092-.057.218-.029.274.066l.194.316c.059.094.029.217-.065.275-.032.02-.068.029-.104.029zm-.653.384c-.075 0-.148-.043-.182-.116l-.142-.308c-.046-.1-.002-.219.098-.265.101-.046.22-.003.266.098l.142.308c.046.1.002.219-.098.265-.027.012-.055.018-.084.018z"/><path fill="#A0041E" d="M16.444 21.431c.754-.391 3.244-1.626 4.948-1.799.156-.016.295.078.346.218l1.259 3.435c.065.176-.033.372-.222.433-.78.251-2.74.917-4.224 1.706-.157.084-.345.045-.443-.094-.442-.624-1.591-2.328-1.848-3.543-.031-.144.047-.286.184-.356z"/><path fill="#BE1931" d="M21.42 25.547c-.187-.828-.749-3.55-.494-5.242.023-.155.147-.265.292-.279l3.581-.349c.184-.018.346.126.357.325.047.818.198 2.882.584 4.518.041.173-.043.345-.198.405-.703.27-2.609.95-3.829.892-.144-.008-.259-.12-.293-.27z"/><path fill="#7C533E" d="M18.032 10.659c-.037.617.172 1.537 1.603 1.665 1.43.128 2.808-.164 3.392-.377.584-.214.637.836.892 1.807.256.974.44 1.739.407 1.947-.054.352-.726 1.071-.388 1.647s.848 1.115 1.404.854 1.009-.557 1.136-.889c.127-.333-.626-1.25-.674-1.525s-.081-3.894-.146-4.3c-.08-.496-.172-1.177-1.01-1.395-.838-.218-4.153-.593-4.985-.688-.954-.109-1.582.436-1.631 1.254z"/><path fill="#7C533E" d="M19.132 6.366c.31-.401.546-.872.661-1.455.409-2.083-.794-4.073-2.688-4.444-1.893-.372-4.483 1.029-4.425 3.151.057 2.107 1.229 5.214 2.993 4.69.466-.138.932-.29 1.375-.474.189.224.325 1.081.247 1.815-.2 1.87 2.381 2.065 2.579.192.157-1.481-.768-2.423-.742-3.475z"/><path fill="#0B0200" d="M24.54 2.488c-1.311-.014-2.496-1.36-3.845-.501-.264.168-.456.337-.604.503-.234-.711-.636-1.367-1.299-1.799-.648-.422-1.443-.737-2.194-.652-4.578.516-4.329 3.827-3.981 4.137.348.31 1.299-.572 2.002-.669.328-.046 1.041-.053 1.419.49.306.44.411 1.33.411 1.33s.012-1.012.041-1.368c.027-.332.356-.714.801-.221.387.428.19 1.268-.079 1.356-.207.068.129.575.648.961.946.704 1.681.428 1.786.389.106-.039.465-.118.648-1.333.026-.169.044-.35.055-.537.374.324.987.709 1.827.715.929.007 2.619-.466 3.586-1.621.744-.889 1.05-2.355 1.05-2.355-.395.736-1.283 1.186-2.272 1.175z"/><path fill="#DD2E44" d="M22.418 9.749c-.897-1.578-2.174-2.314-3.528-1.683-2.437 1.136-2.644 2.853-1.828 5.349.603 1.845 2.094 3.688 2.906 6.927 0 0 2.246.202 5.436-.14 0-.001-.827-6.655-2.986-10.453z"/><path fill="#7C533E" d="M19.923 10.158c-.603-.298-1.501-.279-2.236 1.101-.735 1.38-.969 2.5-1.173 3.36-.157.659-1.276.42-2.358.265-1.086-.156-2.742-.317-2.938-.438-.191-.118-1.507-.386-1.973-.393-.34-.005-2.01.282-2.402.612-.461.388 2.658.325 2.937.594s.914.457 1.312.562c.294.078 4.284 1.268 4.719 1.375.531.131 1.239.341 1.813-.406.574-.748 2.271-3.675 2.719-4.469.513-.91.38-1.768-.42-2.163z"/><circle fill="#FFAC33" cx="6.397" cy="21.831" r="3.603"/><path fill="#C1694F" d="M7.365 21.657c.764.708 1.573 1.273 2.329 1.615.122-.277.201-.573.25-.881-.628-.303-1.297-.777-1.942-1.37l1.304-1.304c-.178-.245-.389-.459-.621-.652l-1.32 1.32c-.646-.702-1.158-1.437-1.455-2.11-.306.042-.603.109-.879.223.013.031.016.059.03.09.336.785.927 1.635 1.667 2.434L5.43 22.319c-.796-.737-1.642-1.325-2.423-1.662-.1.29-.162.595-.185.914.636.302 1.317.782 1.972 1.385l-1.158 1.158c.193.232.408.444.652.621l1.142-1.142c.592.643 1.023 1.262 1.304 1.803.315-.03.617-.093.903-.199-.356-.751-.914-1.542-1.564-2.247l1.292-1.293z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/26f9-1f3ff-200d-2642-fe0f.svg b/public/emoji/26f9-1f3ff-200d-2642-fe0f.svg
index 601b85c1bcb06d799d63ff94471c521081fd380d..c174ef8bc1c518be0b885abb357c76936241f539 100644
--- a/public/emoji/26f9-1f3ff-200d-2642-fe0f.svg
+++ b/public/emoji/26f9-1f3ff-200d-2642-fe0f.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#7C533E" d="M30.853 27.634c-.081 0-.163-.01-.243-.028l-7.476-1.668c-.403-.094-.713-.402-.81-.805l-1.216-5.066c-.068-.282-.023-.572.129-.819.151-.247.391-.421.672-.487.085-.021.171-.031.256-.031.502 0 .935.342 1.052.832l1.06 4.415 6.821 1.517c.283.065.522.237.676.483.153.246.202.536.137.818-.094.402-.403.713-.807.81-.083.019-.167.029-.251.029zM11.318 4.474c-1.158.564.52 2.167.439 3.483-.052.909 1.722.595 1.722.595s1.159-.564 1.425 1.455c.262 2.017 3.141 2.05 2.877.03-.266-2.016-2.131-2.69-1.612-4.435 1.239-4.176-4.851-1.128-4.851-1.128z"/><path fill="#7C533E" d="M27.516 15.314c-.373.089-.779-.03-1.043-.342-2.682-3.189-8.798-3.763-8.859-3.769-.572-.05-.997-.556-.946-1.129.05-.572.548-.998 1.127-.947.286.024 7.034.65 10.275 4.503.37.441.313 1.098-.128 1.469-.129.107-.275.178-.426.215zM17.47 35.301c-.598.028-1.107-.435-1.135-1.031l-.448-8.575c-.011-.243.061-.486.203-.684l5.246-7.271c.184-.255.469-.417.782-.445.259-.023.518.048.73.2.235.17.391.421.438.707.046.286-.022.573-.191.806l-5.024 6.966.431 8.195c.022.48-.28.925-.737 1.079-.077.025-.158.043-.242.051l-.053.002z"/><path fill="#2A6797" d="M15.28 24.425l5.246-7.271c.672-.932 1.976-1.144 2.909-.47.934.673 1.144 1.977.471 2.909l-4.819 6.681c-.001-.001-4.083-1.467-3.807-1.849z"/><path fill="#357BAA" d="M21.352 25.366L20.136 20.3c-.27-1.119.421-2.245 1.541-2.513 1.119-.268 2.244.421 2.513 1.541l.915 3.814c-.001 0-3.569 2.993-3.753 2.224z"/><path fill="#4289C1" d="M18.333 35.988c.383-.001.591-.366.572-.758-.03-.626-.072-.881-.072-.881-.062-.299-.324-.912-.688-.912-2.642 0-5.538.879-6.23 1.5-.409.367-.146 1.061.397 1.06l6.021-.009zm6.875-17.207c-.208.365-1.473-.525-2.99.281-2.156 1.146-3.339.467-3.339.467-3.486-5.595-6.243-8.149-2.809-11.024 1.097-.918 2.454-.523 3.663.76 2.913 3.089 5.684 9.152 5.475 9.516z"/><path fill="#B39155" d="M11.456 5.045c-1.292.498-1.379-.954-.764-1.773.867-1.155 3.366-1.697 4.665-1.06 1.297.637 1.728 2.432.86 3.587-.613.817-.652 2.054-1.083.26-.43-1.793-1.083.261-1.298-.636-.216-.897-2.38-.378-2.38-.378z"/><path fill="#7C533E" d="M15.148 11.32c-.033.046-3.381 4.532-8.152 5.032l.002.02c-.483.051-.884.417-.931.919-.053.573.367 1.082.941 1.135.07.006.135-.014.203-.023l.003.021c5.678-.594 9.456-5.654 9.613-5.869l-1.679-1.235z"/><ellipse transform="rotate(-80.781 7 24.32)" fill="#FFAC33" cx="7" cy="24.32" rx="4" ry="4"/><path fill="#C1694F" d="M8.075 24.127c.849.786 1.747 1.413 2.586 1.793.135-.307.223-.636.277-.978-.697-.337-1.44-.862-2.156-1.521l1.448-1.448c-.197-.271-.432-.51-.69-.724l-1.465 1.465c-.717-.779-1.286-1.595-1.615-2.343-.34.046-.669.121-.976.248.014.035.018.065.033.1.373.872 1.03 1.815 1.851 2.702l-1.442 1.442c-.883-.818-1.823-1.471-2.691-1.845-.111.322-.18.661-.206 1.014.706.336 1.462.868 2.189 1.538l-1.285 1.286c.214.258.453.492.724.69l1.268-1.268c.658.714 1.136 1.401 1.448 2.002.349-.033.685-.104 1.003-.22-.396-.834-1.015-1.712-1.737-2.495l1.436-1.438z"/><path fill="#7C533E" d="M17.255 5.459c-.262 2.342-2.251 3.358-4.247 4.134-1.904.741-3.484-2.589-3.74-4.915C9.01 2.336 11.747.549 13.875.788s3.642 2.33 3.38 4.671z"/><path fill="#0B0200" d="M9.962 1.651c2.704-1.981 4.635-1.834 6.321-.68 1.674 1.146 1.929 3.534 1.603 5.091-.326 1.557-.776 1.507-.776 1.507s-2.07.636-2.373-1.306c-.096-.614.567-.999-.248-1.849-.525-.547-1.574-.176-1.516.665.058.841-.384.716-.384.716L11.158 3.66s-1.095.019-1.627 1.064c-.333.657-1.931-1.343.431-3.073z"/><path fill="#4289C1" d="M18.353 34.699h-1.977c-.185 0-.595-.158-.595-.35l.188-1.084c0-.193.096-.5.376-.5s.64.235.999.235.688-.522.96-.522c.211 0 .305.084.336.35l.193 1.521c0 .193-.295.35-.48.35zm14.494-8.875c.056-.379-.275-.638-.665-.677-.624-.062-.882-.058-.882-.058-.305.017-.949.186-1.003.546-.388 2.614.055 5.607.568 6.383.303.458 1.028.301 1.107-.237l.875-5.957z"/><path fill="#4289C1" d="M31.575 25.615l-.291 1.955c-.027.183-.243.565-.434.537l-1.044-.345c-.19-.028-.481-.169-.439-.446.041-.277.326-.599.379-.954.053-.355-.415-.757-.375-1.026.031-.209.128-.289.396-.281l1.533.033c.19.029.302.344.275.527z"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#7C533E" d="M26.3 26.621c-.339-.021-.504-.165-.57-.496-.187-.94-.313-1.721-.356-1.993l-3.912.767c.118.473.644 2.5 1.322 3.806.393.757.831.782 1.79.838 0 0 3.726-.134 6.305-.231 1.142-.043 1.225-1.795.253-2.014-.692-.156-1.438-.3-2.053-.36-.465-.046-2.539-.303-2.779-.317zm-7.462-1.676l-1.729-3.593c-.428.233-2.257 1.253-3.35 2.237-.635.572-.549 1.002-.36 1.944 0 0 1.087 3.639 1.831 6.111.32 1.062 2.024.713 1.995-.251-.022-.732-.07-1.523-.171-2.156-.073-.463-.348-2.534-.394-2.77-.064-.334.033-.53.337-.677.863-.416 1.588-.735 1.841-.845z"/><path fill="#1C6399" d="M32.67 26.978c-.133.007-.238.02-.315.037l-1.55.085c-.078.002-.137.069-.131.147.017.225.309.899.018 1.424-.195.351-.656.495-.688.679-.01.058.032.112.091.118 0 0 .284-.012.532.003.217.1.626.182.836.408.063.148.242.283.364.684.072.239.412 1.33.412 1.33.081.278.189.345.236.494.095.306.263 1.127.346 1.387.083.26.28.37.433.391.152.02.239-.016.239-.016s.385-.362.64-2.01c.15-.967.095-4.904.095-4.904l-1.558-.257z"/><path fill="#CCD6DD" d="M31.227 29.855c-.033 0-.066-.008-.097-.025-.097-.053-.132-.175-.078-.272l.17-.307c.054-.097.178-.131.271-.078.097.053.132.175.078.272l-.17.307c-.035.066-.103.103-.174.103z"/><path fill="#3B94D9" d="M33.882 29.325c-.243-.098-.797-.461-.953-.853-.141-.354-.241-1.312-.259-1.493.297-.028.753-.01.9.004.194.018.447.044.585.166-.001-.001-.214 1.543-.273 2.176z"/><path fill="#CCD6DD" d="M34.148 27.12s-.002.164-.079.276c-.077.113-.129.39-.149.596-.019.206-.105.981-.083 1.524.022.544.194 1.527.203 1.855.009.328.003.839-.065 1.217-.069.378-.142.715-.199.922-.073.267-.171.486-.285.639 0 0 .43-.03.757-.667.258-.503.402-.986.454-1.457l.263-3.109c.081-.868.1-1.309.061-1.475-.007-.029-.013-.152-.106-.279-.06-.083-.762-.153-.772-.042zm-2.472 3.287c-.074 0-.146-.042-.181-.113-.048-.1-.006-.219.094-.267l.317-.152c.101-.046.219-.006.268.094.048.1.006.219-.094.267l-.317.152c-.029.013-.058.019-.087.019zm.268.657c-.086 0-.164-.055-.191-.141-.032-.105.026-.218.132-.25l.354-.11c.112-.033.217.027.251.132.032.105-.026.218-.132.25l-.354.11c-.021.006-.04.009-.06.009zm.232.678c-.095 0-.179-.067-.196-.164-.021-.109.052-.213.16-.233l.333-.061c.108-.02.213.052.232.161.021.109-.052.213-.16.233l-.333.061-.036.003z"/><path fill="#1C6399" d="M17.911 32.716c-.04-.128-.078-.226-.114-.296l-.467-1.48c-.021-.075-.101-.116-.175-.09-.214.073-.794.523-1.375.371-.388-.102-.642-.513-.828-.498-.059.005-.101.059-.092.117 0 0 .082.272.129.516-.043.235-.021.651-.188.911-.128.098-.214.305-.572.522-.213.129-1.186.729-1.186.729-.25.148-.287.269-.42.351-.273.168-1.026.535-1.257.68-.231.145-.289.363-.271.516.018.152.074.228.074.228s.446.283 2.106.121c.974-.095 4.775-1.117 4.775-1.117s-.049-1.295-.139-1.581z"/><path fill="#CCD6DD" d="M15.3 32.271c-.017 0-.033-.002-.051-.006l-.34-.089c-.106-.028-.171-.137-.143-.244.027-.107.131-.171.244-.143l.34.089c.106.028.171.137.143.244-.023.09-.105.149-.193.149z"/><path fill="#3B94D9" d="M15.939 34.472c.035-.26.248-.886.59-1.135.308-.224 1.211-.559 1.382-.622.101.281.197.727.22.873.031.192.072.411-.022.609 0 .001-1.543.176-2.17.275z"/><path fill="#CCD6DD" d="M18.141 34.183s-.159.039-.287-.008-.409-.028-.614.004c-.204.033-.976.142-1.497.298-.521.157-1.431.567-1.747.657s-.812.211-1.195.239c-.383.027-.728.04-.942.036-.277-.004-.513-.045-.69-.117 0 0 .136.409.834.567.552.125 1.055.145 1.524.078.036-.005 3.077-.517 3.077-.517.861-.137 1.293-.229 1.444-.307.027-.014.144-.05.244-.172.065-.078-.042-.776-.151-.758zm-3.379-1.16c-.057 0-.113-.024-.153-.071l-.227-.269c-.071-.084-.06-.211.024-.282.084-.07.21-.061.282.024l.227.269c.071.084.06.211-.024.282-.037.032-.083.047-.129.047zm-.6.47c-.067 0-.133-.034-.17-.095l-.194-.316c-.059-.094-.029-.217.065-.275.093-.057.217-.029.274.066l.194.316c.059.094.029.217-.065.275-.032.02-.068.029-.104.029zm-.652.384c-.075 0-.147-.043-.182-.116l-.143-.308c-.046-.1-.003-.219.098-.265.1-.047.219-.003.266.097l.143.308c.046.1.003.219-.098.265-.028.013-.056.019-.084.019z"/><path fill="#1C6399" d="M16.404 21.332c.751-.398 3.235-1.653 4.947-1.804.156-.014.298.088.352.235l1.328 3.635c.068.186-.027.391-.216.451-.781.25-2.74.915-4.22 1.719-.157.085-.347.041-.448-.106-.456-.664-1.642-2.477-1.923-3.76-.032-.15.045-.298.18-.37z"/><path fill="#357BAA" d="M21.264 25.576c-.196-.827-.785-3.547-.501-5.242.026-.155.16-.266.316-.281l3.853-.37c.198-.019.371.124.382.323.046.818.196 2.882.601 4.517.043.173-.048.346-.216.407-.758.274-2.811.965-4.123.914-.153-.006-.276-.118-.312-.268z"/><path fill="#7C533E" d="M18.032 10.676c-.037.617.172 1.537 1.603 1.665 1.43.128 2.808-.164 3.392-.377.584-.214.637.836.892 1.807.256.974.44 1.739.407 1.947-.054.352-.726 1.071-.388 1.647.338.576.848 1.115 1.404.854s1.009-.557 1.136-.889c.127-.333-.626-1.25-.674-1.525s-.081-3.894-.146-4.3c-.08-.496-.172-1.177-1.01-1.395s-4.153-.593-4.985-.688c-.953-.109-1.582.436-1.631 1.254z"/><path fill="#7C533E" d="M18.885 6.217c.253-.418.429-.895.475-1.466C19.525 2.71 18.155.934 16.3.784c-1.855-.15-4.184 1.475-3.897 3.502.285 2.013 1.746 4.863 3.38 4.169.431-.183.861-.38 1.267-.604.205.194.429 1.001.435 1.713.012 1.814 2.507 1.72 2.492-.097-.013-1.437-1.002-2.239-1.092-3.25z"/><path fill="#0B0200" d="M12.925 1.639c2.296-1.793 3.976-1.717 5.471-.76 1.485.951 1.77 3.017 1.528 4.378-.241 1.361-.633 1.329-.633 1.329s-1.781.607-2.096-1.071c-.1-.531.466-.883-.265-1.599-.47-.461-1.372-.111-1.299.618.073.729-.314.632-.314.632l-1.3-1.814s-.951.046-1.384.968c-.272.579-1.713-1.115.292-2.681z"/><path fill="#4289C1" d="M22.418 9.765c-.897-1.578-2.174-2.314-3.528-1.683-4.238 1.976-1.905 5.849.189 12.276 0 0 3.134.202 6.325-.14.001 0-.826-6.654-2.986-10.453z"/><path fill="#7C533E" d="M19.924 10.175c-.603-.298-1.614-.479-2.349.901-.735 1.38-1.027 2.884-1.06 3.561-.033.677-1.108.284-2.191.128-1.086-.156-2.853-.332-3.048-.453-.191-.118-1.565-.234-2.03-.242-.34-.005-2.104.282-2.496.612-.461.388 2.73.461 3.01.729.28.269.876.481 1.274.587.294.078 4.391 1.364 4.826 1.471.531.131 1.253.327 1.827-.421.574-.748 2.356-3.913 2.804-4.707.512-.909.232-1.771-.567-2.166z"/><circle fill="#FFAC33" cx="6.397" cy="21.831" r="3.603"/><path fill="#C1694F" d="M7.365 21.657c.764.708 1.573 1.273 2.329 1.615.122-.277.201-.573.25-.881-.628-.303-1.297-.777-1.942-1.37l1.304-1.304c-.178-.245-.389-.459-.621-.652l-1.32 1.32c-.646-.702-1.158-1.437-1.455-2.11-.306.042-.603.109-.879.223.013.031.016.059.03.09.336.785.927 1.635 1.667 2.434L5.43 22.319c-.796-.737-1.642-1.325-2.423-1.662-.1.29-.162.595-.185.914.636.302 1.317.782 1.972 1.385l-1.158 1.158c.193.232.408.444.652.621l1.142-1.142c.592.643 1.023 1.262 1.304 1.803.315-.03.617-.093.903-.199-.356-.751-.914-1.542-1.564-2.247l1.292-1.293z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/26f9-1f3ff.svg b/public/emoji/26f9-1f3ff.svg
index 601b85c1bcb06d799d63ff94471c521081fd380d..c174ef8bc1c518be0b885abb357c76936241f539 100644
--- a/public/emoji/26f9-1f3ff.svg
+++ b/public/emoji/26f9-1f3ff.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#7C533E" d="M30.853 27.634c-.081 0-.163-.01-.243-.028l-7.476-1.668c-.403-.094-.713-.402-.81-.805l-1.216-5.066c-.068-.282-.023-.572.129-.819.151-.247.391-.421.672-.487.085-.021.171-.031.256-.031.502 0 .935.342 1.052.832l1.06 4.415 6.821 1.517c.283.065.522.237.676.483.153.246.202.536.137.818-.094.402-.403.713-.807.81-.083.019-.167.029-.251.029zM11.318 4.474c-1.158.564.52 2.167.439 3.483-.052.909 1.722.595 1.722.595s1.159-.564 1.425 1.455c.262 2.017 3.141 2.05 2.877.03-.266-2.016-2.131-2.69-1.612-4.435 1.239-4.176-4.851-1.128-4.851-1.128z"/><path fill="#7C533E" d="M27.516 15.314c-.373.089-.779-.03-1.043-.342-2.682-3.189-8.798-3.763-8.859-3.769-.572-.05-.997-.556-.946-1.129.05-.572.548-.998 1.127-.947.286.024 7.034.65 10.275 4.503.37.441.313 1.098-.128 1.469-.129.107-.275.178-.426.215zM17.47 35.301c-.598.028-1.107-.435-1.135-1.031l-.448-8.575c-.011-.243.061-.486.203-.684l5.246-7.271c.184-.255.469-.417.782-.445.259-.023.518.048.73.2.235.17.391.421.438.707.046.286-.022.573-.191.806l-5.024 6.966.431 8.195c.022.48-.28.925-.737 1.079-.077.025-.158.043-.242.051l-.053.002z"/><path fill="#2A6797" d="M15.28 24.425l5.246-7.271c.672-.932 1.976-1.144 2.909-.47.934.673 1.144 1.977.471 2.909l-4.819 6.681c-.001-.001-4.083-1.467-3.807-1.849z"/><path fill="#357BAA" d="M21.352 25.366L20.136 20.3c-.27-1.119.421-2.245 1.541-2.513 1.119-.268 2.244.421 2.513 1.541l.915 3.814c-.001 0-3.569 2.993-3.753 2.224z"/><path fill="#4289C1" d="M18.333 35.988c.383-.001.591-.366.572-.758-.03-.626-.072-.881-.072-.881-.062-.299-.324-.912-.688-.912-2.642 0-5.538.879-6.23 1.5-.409.367-.146 1.061.397 1.06l6.021-.009zm6.875-17.207c-.208.365-1.473-.525-2.99.281-2.156 1.146-3.339.467-3.339.467-3.486-5.595-6.243-8.149-2.809-11.024 1.097-.918 2.454-.523 3.663.76 2.913 3.089 5.684 9.152 5.475 9.516z"/><path fill="#B39155" d="M11.456 5.045c-1.292.498-1.379-.954-.764-1.773.867-1.155 3.366-1.697 4.665-1.06 1.297.637 1.728 2.432.86 3.587-.613.817-.652 2.054-1.083.26-.43-1.793-1.083.261-1.298-.636-.216-.897-2.38-.378-2.38-.378z"/><path fill="#7C533E" d="M15.148 11.32c-.033.046-3.381 4.532-8.152 5.032l.002.02c-.483.051-.884.417-.931.919-.053.573.367 1.082.941 1.135.07.006.135-.014.203-.023l.003.021c5.678-.594 9.456-5.654 9.613-5.869l-1.679-1.235z"/><ellipse transform="rotate(-80.781 7 24.32)" fill="#FFAC33" cx="7" cy="24.32" rx="4" ry="4"/><path fill="#C1694F" d="M8.075 24.127c.849.786 1.747 1.413 2.586 1.793.135-.307.223-.636.277-.978-.697-.337-1.44-.862-2.156-1.521l1.448-1.448c-.197-.271-.432-.51-.69-.724l-1.465 1.465c-.717-.779-1.286-1.595-1.615-2.343-.34.046-.669.121-.976.248.014.035.018.065.033.1.373.872 1.03 1.815 1.851 2.702l-1.442 1.442c-.883-.818-1.823-1.471-2.691-1.845-.111.322-.18.661-.206 1.014.706.336 1.462.868 2.189 1.538l-1.285 1.286c.214.258.453.492.724.69l1.268-1.268c.658.714 1.136 1.401 1.448 2.002.349-.033.685-.104 1.003-.22-.396-.834-1.015-1.712-1.737-2.495l1.436-1.438z"/><path fill="#7C533E" d="M17.255 5.459c-.262 2.342-2.251 3.358-4.247 4.134-1.904.741-3.484-2.589-3.74-4.915C9.01 2.336 11.747.549 13.875.788s3.642 2.33 3.38 4.671z"/><path fill="#0B0200" d="M9.962 1.651c2.704-1.981 4.635-1.834 6.321-.68 1.674 1.146 1.929 3.534 1.603 5.091-.326 1.557-.776 1.507-.776 1.507s-2.07.636-2.373-1.306c-.096-.614.567-.999-.248-1.849-.525-.547-1.574-.176-1.516.665.058.841-.384.716-.384.716L11.158 3.66s-1.095.019-1.627 1.064c-.333.657-1.931-1.343.431-3.073z"/><path fill="#4289C1" d="M18.353 34.699h-1.977c-.185 0-.595-.158-.595-.35l.188-1.084c0-.193.096-.5.376-.5s.64.235.999.235.688-.522.96-.522c.211 0 .305.084.336.35l.193 1.521c0 .193-.295.35-.48.35zm14.494-8.875c.056-.379-.275-.638-.665-.677-.624-.062-.882-.058-.882-.058-.305.017-.949.186-1.003.546-.388 2.614.055 5.607.568 6.383.303.458 1.028.301 1.107-.237l.875-5.957z"/><path fill="#4289C1" d="M31.575 25.615l-.291 1.955c-.027.183-.243.565-.434.537l-1.044-.345c-.19-.028-.481-.169-.439-.446.041-.277.326-.599.379-.954.053-.355-.415-.757-.375-1.026.031-.209.128-.289.396-.281l1.533.033c.19.029.302.344.275.527z"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#7C533E" d="M26.3 26.621c-.339-.021-.504-.165-.57-.496-.187-.94-.313-1.721-.356-1.993l-3.912.767c.118.473.644 2.5 1.322 3.806.393.757.831.782 1.79.838 0 0 3.726-.134 6.305-.231 1.142-.043 1.225-1.795.253-2.014-.692-.156-1.438-.3-2.053-.36-.465-.046-2.539-.303-2.779-.317zm-7.462-1.676l-1.729-3.593c-.428.233-2.257 1.253-3.35 2.237-.635.572-.549 1.002-.36 1.944 0 0 1.087 3.639 1.831 6.111.32 1.062 2.024.713 1.995-.251-.022-.732-.07-1.523-.171-2.156-.073-.463-.348-2.534-.394-2.77-.064-.334.033-.53.337-.677.863-.416 1.588-.735 1.841-.845z"/><path fill="#1C6399" d="M32.67 26.978c-.133.007-.238.02-.315.037l-1.55.085c-.078.002-.137.069-.131.147.017.225.309.899.018 1.424-.195.351-.656.495-.688.679-.01.058.032.112.091.118 0 0 .284-.012.532.003.217.1.626.182.836.408.063.148.242.283.364.684.072.239.412 1.33.412 1.33.081.278.189.345.236.494.095.306.263 1.127.346 1.387.083.26.28.37.433.391.152.02.239-.016.239-.016s.385-.362.64-2.01c.15-.967.095-4.904.095-4.904l-1.558-.257z"/><path fill="#CCD6DD" d="M31.227 29.855c-.033 0-.066-.008-.097-.025-.097-.053-.132-.175-.078-.272l.17-.307c.054-.097.178-.131.271-.078.097.053.132.175.078.272l-.17.307c-.035.066-.103.103-.174.103z"/><path fill="#3B94D9" d="M33.882 29.325c-.243-.098-.797-.461-.953-.853-.141-.354-.241-1.312-.259-1.493.297-.028.753-.01.9.004.194.018.447.044.585.166-.001-.001-.214 1.543-.273 2.176z"/><path fill="#CCD6DD" d="M34.148 27.12s-.002.164-.079.276c-.077.113-.129.39-.149.596-.019.206-.105.981-.083 1.524.022.544.194 1.527.203 1.855.009.328.003.839-.065 1.217-.069.378-.142.715-.199.922-.073.267-.171.486-.285.639 0 0 .43-.03.757-.667.258-.503.402-.986.454-1.457l.263-3.109c.081-.868.1-1.309.061-1.475-.007-.029-.013-.152-.106-.279-.06-.083-.762-.153-.772-.042zm-2.472 3.287c-.074 0-.146-.042-.181-.113-.048-.1-.006-.219.094-.267l.317-.152c.101-.046.219-.006.268.094.048.1.006.219-.094.267l-.317.152c-.029.013-.058.019-.087.019zm.268.657c-.086 0-.164-.055-.191-.141-.032-.105.026-.218.132-.25l.354-.11c.112-.033.217.027.251.132.032.105-.026.218-.132.25l-.354.11c-.021.006-.04.009-.06.009zm.232.678c-.095 0-.179-.067-.196-.164-.021-.109.052-.213.16-.233l.333-.061c.108-.02.213.052.232.161.021.109-.052.213-.16.233l-.333.061-.036.003z"/><path fill="#1C6399" d="M17.911 32.716c-.04-.128-.078-.226-.114-.296l-.467-1.48c-.021-.075-.101-.116-.175-.09-.214.073-.794.523-1.375.371-.388-.102-.642-.513-.828-.498-.059.005-.101.059-.092.117 0 0 .082.272.129.516-.043.235-.021.651-.188.911-.128.098-.214.305-.572.522-.213.129-1.186.729-1.186.729-.25.148-.287.269-.42.351-.273.168-1.026.535-1.257.68-.231.145-.289.363-.271.516.018.152.074.228.074.228s.446.283 2.106.121c.974-.095 4.775-1.117 4.775-1.117s-.049-1.295-.139-1.581z"/><path fill="#CCD6DD" d="M15.3 32.271c-.017 0-.033-.002-.051-.006l-.34-.089c-.106-.028-.171-.137-.143-.244.027-.107.131-.171.244-.143l.34.089c.106.028.171.137.143.244-.023.09-.105.149-.193.149z"/><path fill="#3B94D9" d="M15.939 34.472c.035-.26.248-.886.59-1.135.308-.224 1.211-.559 1.382-.622.101.281.197.727.22.873.031.192.072.411-.022.609 0 .001-1.543.176-2.17.275z"/><path fill="#CCD6DD" d="M18.141 34.183s-.159.039-.287-.008-.409-.028-.614.004c-.204.033-.976.142-1.497.298-.521.157-1.431.567-1.747.657s-.812.211-1.195.239c-.383.027-.728.04-.942.036-.277-.004-.513-.045-.69-.117 0 0 .136.409.834.567.552.125 1.055.145 1.524.078.036-.005 3.077-.517 3.077-.517.861-.137 1.293-.229 1.444-.307.027-.014.144-.05.244-.172.065-.078-.042-.776-.151-.758zm-3.379-1.16c-.057 0-.113-.024-.153-.071l-.227-.269c-.071-.084-.06-.211.024-.282.084-.07.21-.061.282.024l.227.269c.071.084.06.211-.024.282-.037.032-.083.047-.129.047zm-.6.47c-.067 0-.133-.034-.17-.095l-.194-.316c-.059-.094-.029-.217.065-.275.093-.057.217-.029.274.066l.194.316c.059.094.029.217-.065.275-.032.02-.068.029-.104.029zm-.652.384c-.075 0-.147-.043-.182-.116l-.143-.308c-.046-.1-.003-.219.098-.265.1-.047.219-.003.266.097l.143.308c.046.1.003.219-.098.265-.028.013-.056.019-.084.019z"/><path fill="#1C6399" d="M16.404 21.332c.751-.398 3.235-1.653 4.947-1.804.156-.014.298.088.352.235l1.328 3.635c.068.186-.027.391-.216.451-.781.25-2.74.915-4.22 1.719-.157.085-.347.041-.448-.106-.456-.664-1.642-2.477-1.923-3.76-.032-.15.045-.298.18-.37z"/><path fill="#357BAA" d="M21.264 25.576c-.196-.827-.785-3.547-.501-5.242.026-.155.16-.266.316-.281l3.853-.37c.198-.019.371.124.382.323.046.818.196 2.882.601 4.517.043.173-.048.346-.216.407-.758.274-2.811.965-4.123.914-.153-.006-.276-.118-.312-.268z"/><path fill="#7C533E" d="M18.032 10.676c-.037.617.172 1.537 1.603 1.665 1.43.128 2.808-.164 3.392-.377.584-.214.637.836.892 1.807.256.974.44 1.739.407 1.947-.054.352-.726 1.071-.388 1.647.338.576.848 1.115 1.404.854s1.009-.557 1.136-.889c.127-.333-.626-1.25-.674-1.525s-.081-3.894-.146-4.3c-.08-.496-.172-1.177-1.01-1.395s-4.153-.593-4.985-.688c-.953-.109-1.582.436-1.631 1.254z"/><path fill="#7C533E" d="M18.885 6.217c.253-.418.429-.895.475-1.466C19.525 2.71 18.155.934 16.3.784c-1.855-.15-4.184 1.475-3.897 3.502.285 2.013 1.746 4.863 3.38 4.169.431-.183.861-.38 1.267-.604.205.194.429 1.001.435 1.713.012 1.814 2.507 1.72 2.492-.097-.013-1.437-1.002-2.239-1.092-3.25z"/><path fill="#0B0200" d="M12.925 1.639c2.296-1.793 3.976-1.717 5.471-.76 1.485.951 1.77 3.017 1.528 4.378-.241 1.361-.633 1.329-.633 1.329s-1.781.607-2.096-1.071c-.1-.531.466-.883-.265-1.599-.47-.461-1.372-.111-1.299.618.073.729-.314.632-.314.632l-1.3-1.814s-.951.046-1.384.968c-.272.579-1.713-1.115.292-2.681z"/><path fill="#4289C1" d="M22.418 9.765c-.897-1.578-2.174-2.314-3.528-1.683-4.238 1.976-1.905 5.849.189 12.276 0 0 3.134.202 6.325-.14.001 0-.826-6.654-2.986-10.453z"/><path fill="#7C533E" d="M19.924 10.175c-.603-.298-1.614-.479-2.349.901-.735 1.38-1.027 2.884-1.06 3.561-.033.677-1.108.284-2.191.128-1.086-.156-2.853-.332-3.048-.453-.191-.118-1.565-.234-2.03-.242-.34-.005-2.104.282-2.496.612-.461.388 2.73.461 3.01.729.28.269.876.481 1.274.587.294.078 4.391 1.364 4.826 1.471.531.131 1.253.327 1.827-.421.574-.748 2.356-3.913 2.804-4.707.512-.909.232-1.771-.567-2.166z"/><circle fill="#FFAC33" cx="6.397" cy="21.831" r="3.603"/><path fill="#C1694F" d="M7.365 21.657c.764.708 1.573 1.273 2.329 1.615.122-.277.201-.573.25-.881-.628-.303-1.297-.777-1.942-1.37l1.304-1.304c-.178-.245-.389-.459-.621-.652l-1.32 1.32c-.646-.702-1.158-1.437-1.455-2.11-.306.042-.603.109-.879.223.013.031.016.059.03.09.336.785.927 1.635 1.667 2.434L5.43 22.319c-.796-.737-1.642-1.325-2.423-1.662-.1.29-.162.595-.185.914.636.302 1.317.782 1.972 1.385l-1.158 1.158c.193.232.408.444.652.621l1.142-1.142c.592.643 1.023 1.262 1.304 1.803.315-.03.617-.093.903-.199-.356-.751-.914-1.542-1.564-2.247l1.292-1.293z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/26f9-fe0f-200d-2640-fe0f.svg b/public/emoji/26f9-fe0f-200d-2640-fe0f.svg
index 90080c21ea4124cff6dd6673beb2a2df32c5e117..f25f03dbe203cfa7d7466a7fbb9a1350989f15f4 100644
--- a/public/emoji/26f9-fe0f-200d-2640-fe0f.svg
+++ b/public/emoji/26f9-fe0f-200d-2640-fe0f.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#FFDC5D" d="M30.853 27.634c-.081 0-.163-.01-.243-.028l-7.476-1.668c-.403-.094-.713-.402-.81-.805l-1.216-5.066c-.068-.282-.023-.572.129-.819.151-.247.391-.421.672-.487.085-.021.171-.031.256-.031.502 0 .935.342 1.052.832l1.06 4.415 6.821 1.517c.283.065.522.237.676.483.153.246.202.536.137.818-.094.402-.403.713-.807.81-.083.019-.167.029-.251.029zM11.318 4.474c-1.158.564.52 2.167.439 3.483-.052.909 1.722.595 1.722.595s1.159-.564 1.425 1.455c.262 2.017 3.141 2.05 2.877.03-.266-2.016-2.131-2.69-1.612-4.435 1.239-4.176-4.851-1.128-4.851-1.128z"/><path fill="#FFDC5D" d="M27.516 15.314c-.373.089-.779-.03-1.043-.342-2.682-3.189-8.798-3.763-8.859-3.769-.572-.05-.997-.556-.946-1.129.05-.572.548-.998 1.127-.947.286.024 7.034.65 10.275 4.503.37.441.313 1.098-.128 1.469-.129.107-.275.178-.426.215zM17.47 35.301c-.598.028-1.107-.435-1.135-1.031l-.448-8.575c-.011-.243.061-.486.203-.684l5.246-7.271c.184-.255.469-.417.782-.445.259-.023.518.048.73.2.235.17.391.421.438.707.046.286-.022.573-.191.806l-5.024 6.966.431 8.195c.022.48-.28.925-.737 1.079-.077.025-.158.043-.242.051l-.053.002z"/><path fill="#A0041E" d="M15.28 24.425l5.246-7.271c.672-.932 1.976-1.144 2.909-.47.934.673 1.144 1.977.471 2.909l-4.819 6.681c-.001-.001-4.083-1.467-3.807-1.849z"/><path fill="#BE1931" d="M21.352 25.366L20.136 20.3c-.27-1.119.421-2.245 1.541-2.513 1.119-.268 2.244.421 2.513 1.541l.915 3.814c-.001 0-3.569 2.993-3.753 2.224z"/><path fill="#FFDC5D" d="M17.259 3.842c.537 2.238-.842 4.489-3.081 5.026-2.239.537-4.489-.842-5.026-3.081-.538-2.239.842-4.49 3.08-5.027 2.239-.537 4.49.842 5.027 3.082z"/><path fill="#FFAC33" d="M21.375 4.462c-1.083.083-2.14.092-4.208-1.976C15.792 1.111 14.564.273 11.834.643c-2.899.394-5.018 3.169-3 4.17.88.437 1.529.095 2.88.295 2.121.315 2.707 2.456 4.62 2.711 3.743.501 6.124-3.44 5.041-3.357z"/><ellipse transform="rotate(-80.781 7 24.32)" fill="#FFAC33" cx="7" cy="24.32" rx="4" ry="4"/><path fill="#C1694F" d="M8.075 24.126c.849.786 1.747 1.413 2.586 1.793.135-.307.223-.636.277-.978-.697-.337-1.44-.862-2.156-1.521l1.448-1.448c-.197-.271-.432-.51-.69-.724l-1.465 1.465c-.717-.779-1.286-1.595-1.615-2.343-.34.046-.669.121-.976.248.014.035.018.065.033.1.373.872 1.03 1.815 1.851 2.702l-1.442 1.442c-.883-.818-1.823-1.471-2.691-1.845-.111.322-.18.661-.206 1.014.706.336 1.462.868 2.189 1.538l-1.285 1.286c.214.258.453.492.724.69l1.268-1.268c.658.714 1.136 1.401 1.448 2.002.349-.033.685-.104 1.003-.22-.396-.834-1.015-1.712-1.737-2.495l1.436-1.438z"/><path fill="#DD2E44" d="M18.333 35.988c.383-.001.591-.366.572-.758-.03-.626-.072-.881-.072-.881-.062-.299-.324-.912-.688-.912-2.642 0-5.538.879-6.23 1.5-.409.367-.146 1.061.397 1.06l6.021-.009zm6.875-17.207c-.208.365-1.473-.525-2.99.281-2.156 1.146-3.339.467-3.339.467-3.486-5.595-6.243-8.149-2.809-11.024 1.097-.918 2.454-.523 3.663.76 2.913 3.089 5.684 9.152 5.475 9.516z"/><path fill="#DD2E44" d="M18.353 34.699h-1.977c-.185 0-.595-.158-.595-.35l.188-1.084c0-.193.096-.5.376-.5s.64.235.999.235.688-.522.96-.522c.211 0 .305.084.336.35l.193 1.521c0 .193-.295.35-.48.35zm14.494-8.875c.056-.379-.275-.638-.665-.677-.624-.062-.882-.058-.882-.058-.305.017-.949.186-1.003.546-.388 2.614.055 5.607.568 6.383.303.458 1.028.301 1.107-.237l.875-5.957z"/><path fill="#DD2E44" d="M31.575 25.615l-.291 1.955c-.027.183-.243.565-.434.537l-1.044-.345c-.19-.028-.481-.169-.439-.446.041-.277.326-.599.379-.954.053-.355-.415-.757-.375-1.026.031-.209.128-.289.396-.281l1.533.033c.19.029.302.344.275.527z"/><path fill="#FFDC5D" d="M15.148 11.32c-.033.046-3.381 4.532-8.152 5.032l.002.02c-.483.051-.884.417-.931.919-.053.573.367 1.082.941 1.135.07.006.135-.014.203-.023l.003.021c5.678-.594 9.456-5.654 9.613-5.869l-1.679-1.235z"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#FFDC5D" d="M26.29 26.753c-.53-.033-.658-.368-.708-.617-.16-.802-.275-1.489-.333-1.845l-3.604.707c.168.654.657 2.438 1.271 3.619.354.682.711.703 1.666.758 0 0 3.975-.139 6.542-.237.885-.034.973-1.48.215-1.657-.751-.176-1.595-.346-2.276-.413-.465-.044-2.533-.3-2.773-.315zm-12.431-3.068c-.57.514-.5.865-.312 1.803 0 0 1.113 3.738 1.854 6.2.265.881 1.698.641 1.679-.138-.019-.771-.067-1.63-.174-2.305-.073-.463-.346-2.528-.392-2.764-.102-.523.19-.73.419-.84.736-.356 1.371-.642 1.7-.786l-1.591-3.311c-.59.327-2.194 1.249-3.183 2.141z"/><path fill="#BE1931" d="M33.493 26.983c-.195-.018-.89-.026-1.139.032l-1.55.085c-.078.002-.137.069-.131.147.017.225.309.899.018 1.424-.195.351-.656.495-.688.679-.01.058.032.112.091.118 0 0 .284-.012.532.003.217.1.626.182.836.408.063.148.242.283.364.684.072.239.412 1.33.412 1.33.081.278.189.345.236.494.095.306.263 1.127.346 1.387.083.26.28.37.433.391.152.02.239-.016.239-.016s.385-.362.64-2.01c.15-.967.095-4.904.095-4.904l-.144-.114c-.143-.115-.384-.119-.59-.138z"/><path fill="#CCD6DD" d="M31.227 29.855c-.033 0-.066-.008-.097-.025-.097-.053-.132-.175-.078-.272l.17-.307c.054-.097.178-.131.271-.078.097.053.132.175.078.272l-.17.307c-.035.066-.104.103-.174.103z"/><path fill="#DD2E44" d="M33.882 29.325c-.243-.098-.797-.461-.953-.853-.141-.354-.241-1.312-.259-1.493.297-.028.753-.01.9.004.194.018.448.047.582.16.012.01-.22 1.64-.27 2.182z"/><path fill="#CCD6DD" d="M34.147 27.12s-.002.164-.079.276c-.077.113-.129.39-.149.596-.019.206-.105.981-.083 1.524.022.544.194 1.527.203 1.855s.003.839-.065 1.217c-.069.378-.142.715-.199.922-.073.267-.171.486-.285.639 0 0 .43-.03.757-.667.258-.503.402-.986.454-1.457.004-.036.112-1.291.163-1.918.037-.459.1-1.191.1-1.191.081-.868.1-1.309.061-1.475-.007-.029-.013-.152-.106-.279-.059-.083-.761-.153-.772-.042zm-2.472 3.287c-.074 0-.146-.042-.181-.113-.048-.099-.006-.219.094-.267l.316-.152c.102-.047.219-.006.268.094.048.099.006.219-.094.267l-.316.152c-.028.013-.057.019-.087.019zm.269.656c-.085 0-.164-.055-.191-.141-.032-.106.026-.218.132-.25l.354-.11c.109-.034.218.026.251.132.032.106-.026.218-.132.25l-.354.11c-.021.007-.04.009-.06.009zm.23.679c-.095 0-.179-.067-.196-.164-.021-.109.052-.213.16-.233l.334-.061c.117-.019.213.052.232.161.021.109-.052.213-.16.233l-.334.061-.036.003z"/><path fill="#BE1931" d="M18.11 33.515c-.031-.194-.196-.868-.314-1.095l-.467-1.48c-.021-.075-.101-.116-.175-.09-.214.073-.794.523-1.375.371-.388-.102-.642-.513-.828-.498-.059.005-.101.059-.092.117 0 0 .082.272.129.516-.043.235-.021.651-.188.911-.128.098-.214.305-.572.522-.213.129-1.186.729-1.186.729-.25.148-.287.269-.42.351-.273.168-1.026.535-1.257.68-.231.145-.289.363-.271.516.018.152.074.228.074.228s.446.283 2.106.121c.974-.095 4.774-1.125 4.774-1.125l.075-.167c.076-.168.02-.403-.013-.607z"/><path fill="#CCD6DD" d="M15.299 32.271c-.017 0-.033-.002-.051-.006l-.34-.089c-.106-.028-.171-.137-.143-.244.028-.107.132-.172.244-.143l.34.089c.106.028.171.137.143.244-.023.09-.104.149-.193.149z"/><path fill="#DD2E44" d="M15.938 34.472c.035-.26.248-.886.59-1.135.308-.224 1.211-.559 1.382-.622.101.281.197.727.22.873.031.192.06.447-.017.606-.05.105-1.547.178-2.175.278z"/><path fill="#CCD6DD" d="M18.14 34.183s-.159.039-.287-.008-.409-.028-.614.004c-.204.033-.976.142-1.497.298-.521.157-1.431.567-1.747.657s-.812.211-1.195.239c-.383.027-.728.04-.942.036-.277-.004-.513-.045-.69-.117 0 0 .136.409.834.567.552.125 1.055.145 1.524.078.036-.005 1.278-.212 1.899-.318.453-.078 1.178-.198 1.178-.198.861-.137 1.293-.229 1.444-.307.027-.014.144-.05.244-.172.066-.079-.041-.777-.151-.759zm-3.378-1.16c-.057 0-.113-.024-.153-.071l-.227-.269c-.071-.084-.06-.211.024-.282.084-.07.21-.061.282.024l.227.269c.071.084.06.211-.024.282-.037.032-.083.047-.129.047zm-.601.47c-.067 0-.133-.034-.17-.095l-.194-.316c-.059-.094-.029-.217.065-.275.092-.057.218-.029.274.066l.194.316c.059.094.029.217-.065.275-.032.02-.068.029-.104.029zm-.653.384c-.075 0-.148-.043-.182-.116l-.142-.308c-.046-.1-.002-.219.098-.265.101-.046.22-.003.266.098l.142.308c.046.1.002.219-.098.265-.027.012-.055.018-.084.018z"/><path fill="#A0041E" d="M16.444 21.431c.754-.391 3.244-1.626 4.948-1.799.156-.016.295.078.346.218l1.259 3.435c.065.176-.033.372-.222.433-.78.251-2.74.917-4.224 1.706-.157.084-.345.045-.443-.094-.442-.624-1.591-2.328-1.848-3.543-.031-.144.047-.286.184-.356z"/><path fill="#BE1931" d="M21.42 25.547c-.187-.828-.749-3.55-.494-5.242.023-.155.147-.265.292-.279l3.581-.349c.184-.018.346.126.357.325.047.818.198 2.882.584 4.518.041.173-.043.345-.198.405-.703.27-2.609.95-3.829.892-.144-.008-.259-.12-.293-.27z"/><path fill="#FFDC5D" d="M18.032 10.659c-.037.617.172 1.537 1.603 1.665 1.43.128 2.808-.164 3.392-.377.584-.214.637.836.892 1.807.256.974.44 1.739.407 1.947-.054.352-.726 1.071-.388 1.647s.848 1.115 1.404.854 1.009-.557 1.136-.889c.127-.333-.626-1.25-.674-1.525s-.081-3.894-.146-4.3c-.08-.496-.172-1.177-1.01-1.395-.838-.218-4.153-.593-4.985-.688-.954-.109-1.582.436-1.631 1.254z"/><path fill="#FFDC5D" d="M19.132 6.366c.31-.401.546-.872.661-1.455.409-2.083-.794-4.073-2.688-4.444-1.893-.372-4.483 1.029-4.425 3.151.057 2.107 1.229 5.214 2.993 4.69.466-.138.932-.29 1.375-.474.189.224.325 1.081.247 1.815-.2 1.87 2.381 2.065 2.579.192.157-1.481-.768-2.423-.742-3.475z"/><path fill="#FFAC33" d="M24.54 2.488c-1.311-.014-2.496-1.36-3.845-.501-.264.168-.456.337-.604.503-.234-.711-.636-1.367-1.299-1.799-.648-.422-1.443-.737-2.194-.652-4.578.516-4.329 3.827-3.981 4.137.348.31 1.299-.572 2.002-.669.328-.046 1.041-.053 1.419.49.306.44.411 1.33.411 1.33s.012-1.012.041-1.368c.027-.332.356-.714.801-.221.387.428.19 1.268-.079 1.356-.207.068.129.575.648.961.946.704 1.681.428 1.786.389.106-.039.465-.118.648-1.333.026-.169.044-.35.055-.537.374.324.987.709 1.827.715.929.007 2.619-.466 3.586-1.621.744-.889 1.05-2.355 1.05-2.355-.395.736-1.283 1.186-2.272 1.175z"/><path fill="#DD2E44" d="M22.418 9.749c-.897-1.578-2.174-2.314-3.528-1.683-2.437 1.136-2.644 2.853-1.828 5.349.603 1.845 2.094 3.688 2.906 6.927 0 0 2.246.202 5.436-.14 0-.001-.827-6.655-2.986-10.453z"/><path fill="#FFDC5D" d="M19.923 10.158c-.603-.298-1.501-.279-2.236 1.101-.735 1.38-.969 2.5-1.173 3.36-.157.659-1.276.42-2.358.265-1.086-.156-2.742-.317-2.938-.438-.191-.118-1.507-.386-1.973-.393-.34-.005-2.01.282-2.402.612-.461.388 2.658.325 2.937.594s.914.457 1.312.562c.294.078 4.284 1.268 4.719 1.375.531.131 1.239.341 1.813-.406.574-.748 2.271-3.675 2.719-4.469.513-.91.38-1.768-.42-2.163z"/><circle fill="#FFAC33" cx="6.397" cy="21.831" r="3.603"/><path fill="#C1694F" d="M7.365 21.657c.764.708 1.573 1.273 2.329 1.615.122-.277.201-.573.25-.881-.628-.303-1.297-.777-1.942-1.37l1.304-1.304c-.178-.245-.389-.459-.621-.652l-1.32 1.32c-.646-.702-1.158-1.437-1.455-2.11-.306.042-.603.109-.879.223.013.031.016.059.03.09.336.785.927 1.635 1.667 2.434L5.43 22.319c-.796-.737-1.642-1.325-2.423-1.662-.1.29-.162.595-.185.914.636.302 1.317.782 1.972 1.385l-1.158 1.158c.193.232.408.444.652.621l1.142-1.142c.592.643 1.023 1.262 1.304 1.803.315-.03.617-.093.903-.199-.356-.751-.914-1.542-1.564-2.247l1.292-1.293z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/26f9-fe0f-200d-2642-fe0f.svg b/public/emoji/26f9-fe0f-200d-2642-fe0f.svg
index 4ddcf7f8e0cbd4244fbb6ea6b988f63fea76d9c0..ee014e406db0584adda665451a1a258deb0ecfa4 100644
--- a/public/emoji/26f9-fe0f-200d-2642-fe0f.svg
+++ b/public/emoji/26f9-fe0f-200d-2642-fe0f.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#FFDC5D" d="M30.853 27.634c-.081 0-.163-.01-.243-.028l-7.476-1.668c-.403-.094-.713-.402-.81-.805l-1.216-5.066c-.068-.282-.023-.572.129-.819.151-.247.391-.421.672-.487.085-.021.171-.031.256-.031.502 0 .935.342 1.052.832l1.06 4.415 6.821 1.517c.283.065.522.237.676.483.153.246.202.536.137.818-.094.402-.403.713-.807.81-.083.019-.167.029-.251.029zM11.318 4.474c-1.158.564.52 2.167.439 3.483-.052.909 1.722.595 1.722.595s1.159-.564 1.425 1.455c.262 2.017 3.141 2.05 2.877.03-.266-2.016-2.131-2.69-1.612-4.435 1.239-4.176-4.851-1.128-4.851-1.128z"/><path fill="#FFDC5D" d="M27.516 15.314c-.373.089-.779-.03-1.043-.342-2.682-3.189-8.798-3.763-8.859-3.769-.572-.05-.997-.556-.946-1.129.05-.572.548-.998 1.127-.947.286.024 7.034.65 10.275 4.503.37.441.313 1.098-.128 1.469-.129.107-.275.178-.426.215zM17.47 35.301c-.598.028-1.107-.435-1.135-1.031l-.448-8.575c-.011-.243.061-.486.203-.684l5.246-7.271c.184-.255.469-.417.782-.445.259-.023.518.048.73.2.235.17.391.421.438.707.046.286-.022.573-.191.806l-5.024 6.966.431 8.195c.022.48-.28.925-.737 1.079-.077.025-.158.043-.242.051l-.053.002z"/><path fill="#2A6797" d="M15.28 24.425l5.246-7.271c.672-.932 1.976-1.144 2.909-.47.934.673 1.144 1.977.471 2.909l-4.819 6.681c-.001-.001-4.083-1.467-3.807-1.849z"/><path fill="#357BAA" d="M21.352 25.366L20.136 20.3c-.27-1.119.421-2.245 1.541-2.513 1.119-.268 2.244.421 2.513 1.541l.915 3.814c-.001 0-3.569 2.993-3.753 2.224z"/><path fill="#4289C1" d="M18.333 35.988c.383-.001.591-.366.572-.758-.03-.626-.072-.881-.072-.881-.062-.299-.324-.912-.688-.912-2.642 0-5.538.879-6.23 1.5-.409.367-.146 1.061.397 1.06l6.021-.009zm6.875-17.207c-.208.365-1.473-.525-2.99.281-2.156 1.146-3.339.467-3.339.467-3.486-5.595-6.243-8.149-2.809-11.024 1.097-.918 2.454-.523 3.663.76 2.913 3.089 5.684 9.152 5.475 9.516z"/><path fill="#B39155" d="M11.456 5.045c-1.292.498-1.379-.954-.764-1.773.867-1.155 3.366-1.697 4.665-1.06 1.297.637 1.728 2.432.86 3.587-.613.817-.652 2.054-1.083.26-.43-1.793-1.083.261-1.298-.636-.216-.897-2.38-.378-2.38-.378z"/><path fill="#FFDC5D" d="M15.148 11.32c-.033.046-3.381 4.532-8.152 5.032l.002.02c-.483.051-.884.417-.931.919-.053.573.367 1.082.941 1.135.07.006.135-.014.203-.023l.003.021c5.678-.594 9.456-5.654 9.613-5.869l-1.679-1.235z"/><ellipse transform="rotate(-80.781 7 24.32)" fill="#FFAC33" cx="7" cy="24.32" rx="4" ry="4"/><path fill="#C1694F" d="M8.075 24.127c.849.786 1.747 1.413 2.586 1.793.135-.307.223-.636.277-.978-.697-.337-1.44-.862-2.156-1.521l1.448-1.448c-.197-.271-.432-.51-.69-.724l-1.465 1.465c-.717-.779-1.286-1.595-1.615-2.343-.34.046-.669.121-.976.248.014.035.018.065.033.1.373.872 1.03 1.815 1.851 2.702l-1.442 1.442c-.883-.818-1.823-1.471-2.691-1.845-.111.322-.18.661-.206 1.014.706.336 1.462.868 2.189 1.538l-1.285 1.286c.214.258.453.492.724.69l1.268-1.268c.658.714 1.136 1.401 1.448 2.002.349-.033.685-.104 1.003-.22-.396-.834-1.015-1.712-1.737-2.495l1.436-1.438z"/><path fill="#FFDC5D" d="M17.255 5.459c-.262 2.342-2.251 3.358-4.247 4.134-1.904.741-3.484-2.589-3.74-4.915C9.01 2.336 11.747.549 13.875.788s3.642 2.33 3.38 4.671z"/><path fill="#FFAC33" d="M9.962 1.651c2.704-1.981 4.635-1.834 6.321-.68 1.674 1.146 1.929 3.534 1.603 5.091-.326 1.557-.776 1.507-.776 1.507s-2.07.636-2.373-1.306c-.096-.614.567-.999-.248-1.849-.525-.547-1.574-.176-1.516.665.058.841-.384.716-.384.716L11.158 3.66s-1.095.019-1.627 1.064c-.333.657-1.931-1.343.431-3.073z"/><path fill="#4289C1" d="M18.353 34.699h-1.977c-.185 0-.595-.158-.595-.35l.188-1.084c0-.193.096-.5.376-.5s.64.235.999.235.688-.522.96-.522c.211 0 .305.084.336.35l.193 1.521c0 .193-.295.35-.48.35zm14.494-8.875c.056-.379-.275-.638-.665-.677-.624-.062-.882-.058-.882-.058-.305.017-.949.186-1.003.546-.388 2.614.055 5.607.568 6.383.303.458 1.028.301 1.107-.237l.875-5.957z"/><path fill="#4289C1" d="M31.575 25.615l-.291 1.955c-.027.183-.243.565-.434.537l-1.044-.345c-.19-.028-.481-.169-.439-.446.041-.277.326-.599.379-.954.053-.355-.415-.757-.375-1.026.031-.209.128-.289.396-.281l1.533.033c.19.029.302.344.275.527z"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#FFDC5D" d="M26.3 26.621c-.339-.021-.504-.165-.57-.496-.187-.94-.313-1.721-.356-1.993l-3.912.767c.118.473.644 2.5 1.322 3.806.393.757.831.782 1.79.838 0 0 3.726-.134 6.305-.231 1.142-.043 1.225-1.795.253-2.014-.692-.156-1.438-.3-2.053-.36-.465-.046-2.539-.303-2.779-.317zm-7.462-1.676l-1.729-3.593c-.428.233-2.257 1.253-3.35 2.237-.635.572-.549 1.002-.36 1.944 0 0 1.087 3.639 1.831 6.111.32 1.062 2.024.713 1.995-.251-.022-.732-.07-1.523-.171-2.156-.073-.463-.348-2.534-.394-2.77-.064-.334.033-.53.337-.677.863-.416 1.588-.735 1.841-.845z"/><path fill="#1C6399" d="M32.67 26.978c-.133.007-.238.02-.315.037l-1.55.085c-.078.002-.137.069-.131.147.017.225.309.899.018 1.424-.195.351-.656.495-.688.679-.01.058.032.112.091.118 0 0 .284-.012.532.003.217.1.626.182.836.408.063.148.242.283.364.684.072.239.412 1.33.412 1.33.081.278.189.345.236.494.095.306.263 1.127.346 1.387.083.26.28.37.433.391.152.02.239-.016.239-.016s.385-.362.64-2.01c.15-.967.095-4.904.095-4.904l-1.558-.257z"/><path fill="#CCD6DD" d="M31.227 29.855c-.033 0-.066-.008-.097-.025-.097-.053-.132-.175-.078-.272l.17-.307c.054-.097.178-.131.271-.078.097.053.132.175.078.272l-.17.307c-.035.066-.103.103-.174.103z"/><path fill="#3B94D9" d="M33.882 29.325c-.243-.098-.797-.461-.953-.853-.141-.354-.241-1.312-.259-1.493.297-.028.753-.01.9.004.194.018.447.044.585.166-.001-.001-.214 1.543-.273 2.176z"/><path fill="#CCD6DD" d="M34.148 27.12s-.002.164-.079.276c-.077.113-.129.39-.149.596-.019.206-.105.981-.083 1.524.022.544.194 1.527.203 1.855.009.328.003.839-.065 1.217-.069.378-.142.715-.199.922-.073.267-.171.486-.285.639 0 0 .43-.03.757-.667.258-.503.402-.986.454-1.457l.263-3.109c.081-.868.1-1.309.061-1.475-.007-.029-.013-.152-.106-.279-.06-.083-.762-.153-.772-.042zm-2.472 3.287c-.074 0-.146-.042-.181-.113-.048-.1-.006-.219.094-.267l.317-.152c.101-.046.219-.006.268.094.048.1.006.219-.094.267l-.317.152c-.029.013-.058.019-.087.019zm.268.657c-.086 0-.164-.055-.191-.141-.032-.105.026-.218.132-.25l.354-.11c.112-.033.217.027.251.132.032.105-.026.218-.132.25l-.354.11c-.021.006-.04.009-.06.009zm.232.678c-.095 0-.179-.067-.196-.164-.021-.109.052-.213.16-.233l.333-.061c.108-.02.213.052.232.161.021.109-.052.213-.16.233l-.333.061-.036.003z"/><path fill="#1C6399" d="M17.911 32.716c-.04-.128-.078-.226-.114-.296l-.467-1.48c-.021-.075-.101-.116-.175-.09-.214.073-.794.523-1.375.371-.388-.102-.642-.513-.828-.498-.059.005-.101.059-.092.117 0 0 .082.272.129.516-.043.235-.021.651-.188.911-.128.098-.214.305-.572.522-.213.129-1.186.729-1.186.729-.25.148-.287.269-.42.351-.273.168-1.026.535-1.257.68-.231.145-.289.363-.271.516.018.152.074.228.074.228s.446.283 2.106.121c.974-.095 4.775-1.117 4.775-1.117s-.049-1.295-.139-1.581z"/><path fill="#CCD6DD" d="M15.3 32.271c-.017 0-.033-.002-.051-.006l-.34-.089c-.106-.028-.171-.137-.143-.244.027-.107.131-.171.244-.143l.34.089c.106.028.171.137.143.244-.023.09-.105.149-.193.149z"/><path fill="#3B94D9" d="M15.939 34.472c.035-.26.248-.886.59-1.135.308-.224 1.211-.559 1.382-.622.101.281.197.727.22.873.031.192.072.411-.022.609 0 .001-1.543.176-2.17.275z"/><path fill="#CCD6DD" d="M18.141 34.183s-.159.039-.287-.008-.409-.028-.614.004c-.204.033-.976.142-1.497.298-.521.157-1.431.567-1.747.657s-.812.211-1.195.239c-.383.027-.728.04-.942.036-.277-.004-.513-.045-.69-.117 0 0 .136.409.834.567.552.125 1.055.145 1.524.078.036-.005 3.077-.517 3.077-.517.861-.137 1.293-.229 1.444-.307.027-.014.144-.05.244-.172.065-.078-.042-.776-.151-.758zm-3.379-1.16c-.057 0-.113-.024-.153-.071l-.227-.269c-.071-.084-.06-.211.024-.282.084-.07.21-.061.282.024l.227.269c.071.084.06.211-.024.282-.037.032-.083.047-.129.047zm-.6.47c-.067 0-.133-.034-.17-.095l-.194-.316c-.059-.094-.029-.217.065-.275.093-.057.217-.029.274.066l.194.316c.059.094.029.217-.065.275-.032.02-.068.029-.104.029zm-.652.384c-.075 0-.147-.043-.182-.116l-.143-.308c-.046-.1-.003-.219.098-.265.1-.047.219-.003.266.097l.143.308c.046.1.003.219-.098.265-.028.013-.056.019-.084.019z"/><path fill="#1C6399" d="M16.404 21.332c.751-.398 3.235-1.653 4.947-1.804.156-.014.298.088.352.235l1.328 3.635c.068.186-.027.391-.216.451-.781.25-2.74.915-4.22 1.719-.157.085-.347.041-.448-.106-.456-.664-1.642-2.477-1.923-3.76-.032-.15.045-.298.18-.37z"/><path fill="#357BAA" d="M21.264 25.576c-.196-.827-.785-3.547-.501-5.242.026-.155.16-.266.316-.281l3.853-.37c.198-.019.371.124.382.323.046.818.196 2.882.601 4.517.043.173-.048.346-.216.407-.758.274-2.811.965-4.123.914-.153-.006-.276-.118-.312-.268z"/><path fill="#FFDC5D" d="M18.032 10.676c-.037.617.172 1.537 1.603 1.665 1.43.128 2.808-.164 3.392-.377.584-.214.637.836.892 1.807.256.974.44 1.739.407 1.947-.054.352-.726 1.071-.388 1.647.338.576.848 1.115 1.404.854s1.009-.557 1.136-.889c.127-.333-.626-1.25-.674-1.525s-.081-3.894-.146-4.3c-.08-.496-.172-1.177-1.01-1.395s-4.153-.593-4.985-.688c-.953-.109-1.582.436-1.631 1.254z"/><path fill="#FFDC5D" d="M18.885 6.217c.253-.418.429-.895.475-1.466C19.525 2.71 18.155.934 16.3.784c-1.855-.15-4.184 1.475-3.897 3.502.285 2.013 1.746 4.863 3.38 4.169.431-.183.861-.38 1.267-.604.205.194.429 1.001.435 1.713.012 1.814 2.507 1.72 2.492-.097-.013-1.437-1.002-2.239-1.092-3.25z"/><path fill="#FFAC33" d="M12.925 1.639c2.296-1.793 3.976-1.717 5.471-.76 1.485.951 1.77 3.017 1.528 4.378-.241 1.361-.633 1.329-.633 1.329s-1.781.607-2.096-1.071c-.1-.531.466-.883-.265-1.599-.47-.461-1.372-.111-1.299.618.073.729-.314.632-.314.632l-1.3-1.814s-.951.046-1.384.968c-.272.579-1.713-1.115.292-2.681z"/><path fill="#4289C1" d="M22.418 9.765c-.897-1.578-2.174-2.314-3.528-1.683-4.238 1.976-1.905 5.849.189 12.276 0 0 3.134.202 6.325-.14.001 0-.826-6.654-2.986-10.453z"/><path fill="#FFDC5D" d="M19.924 10.175c-.603-.298-1.614-.479-2.349.901-.735 1.38-1.027 2.884-1.06 3.561-.033.677-1.108.284-2.191.128-1.086-.156-2.853-.332-3.048-.453-.191-.118-1.565-.234-2.03-.242-.34-.005-2.104.282-2.496.612-.461.388 2.73.461 3.01.729.28.269.876.481 1.274.587.294.078 4.391 1.364 4.826 1.471.531.131 1.253.327 1.827-.421.574-.748 2.356-3.913 2.804-4.707.512-.909.232-1.771-.567-2.166z"/><circle fill="#FFAC33" cx="6.397" cy="21.831" r="3.603"/><path fill="#C1694F" d="M7.365 21.657c.764.708 1.573 1.273 2.329 1.615.122-.277.201-.573.25-.881-.628-.303-1.297-.777-1.942-1.37l1.304-1.304c-.178-.245-.389-.459-.621-.652l-1.32 1.32c-.646-.702-1.158-1.437-1.455-2.11-.306.042-.603.109-.879.223.013.031.016.059.03.09.336.785.927 1.635 1.667 2.434L5.43 22.319c-.796-.737-1.642-1.325-2.423-1.662-.1.29-.162.595-.185.914.636.302 1.317.782 1.972 1.385l-1.158 1.158c.193.232.408.444.652.621l1.142-1.142c.592.643 1.023 1.262 1.304 1.803.315-.03.617-.093.903-.199-.356-.751-.914-1.542-1.564-2.247l1.292-1.293z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/26f9.svg b/public/emoji/26f9.svg
index 4ddcf7f8e0cbd4244fbb6ea6b988f63fea76d9c0..ee014e406db0584adda665451a1a258deb0ecfa4 100644
--- a/public/emoji/26f9.svg
+++ b/public/emoji/26f9.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#FFDC5D" d="M30.853 27.634c-.081 0-.163-.01-.243-.028l-7.476-1.668c-.403-.094-.713-.402-.81-.805l-1.216-5.066c-.068-.282-.023-.572.129-.819.151-.247.391-.421.672-.487.085-.021.171-.031.256-.031.502 0 .935.342 1.052.832l1.06 4.415 6.821 1.517c.283.065.522.237.676.483.153.246.202.536.137.818-.094.402-.403.713-.807.81-.083.019-.167.029-.251.029zM11.318 4.474c-1.158.564.52 2.167.439 3.483-.052.909 1.722.595 1.722.595s1.159-.564 1.425 1.455c.262 2.017 3.141 2.05 2.877.03-.266-2.016-2.131-2.69-1.612-4.435 1.239-4.176-4.851-1.128-4.851-1.128z"/><path fill="#FFDC5D" d="M27.516 15.314c-.373.089-.779-.03-1.043-.342-2.682-3.189-8.798-3.763-8.859-3.769-.572-.05-.997-.556-.946-1.129.05-.572.548-.998 1.127-.947.286.024 7.034.65 10.275 4.503.37.441.313 1.098-.128 1.469-.129.107-.275.178-.426.215zM17.47 35.301c-.598.028-1.107-.435-1.135-1.031l-.448-8.575c-.011-.243.061-.486.203-.684l5.246-7.271c.184-.255.469-.417.782-.445.259-.023.518.048.73.2.235.17.391.421.438.707.046.286-.022.573-.191.806l-5.024 6.966.431 8.195c.022.48-.28.925-.737 1.079-.077.025-.158.043-.242.051l-.053.002z"/><path fill="#2A6797" d="M15.28 24.425l5.246-7.271c.672-.932 1.976-1.144 2.909-.47.934.673 1.144 1.977.471 2.909l-4.819 6.681c-.001-.001-4.083-1.467-3.807-1.849z"/><path fill="#357BAA" d="M21.352 25.366L20.136 20.3c-.27-1.119.421-2.245 1.541-2.513 1.119-.268 2.244.421 2.513 1.541l.915 3.814c-.001 0-3.569 2.993-3.753 2.224z"/><path fill="#4289C1" d="M18.333 35.988c.383-.001.591-.366.572-.758-.03-.626-.072-.881-.072-.881-.062-.299-.324-.912-.688-.912-2.642 0-5.538.879-6.23 1.5-.409.367-.146 1.061.397 1.06l6.021-.009zm6.875-17.207c-.208.365-1.473-.525-2.99.281-2.156 1.146-3.339.467-3.339.467-3.486-5.595-6.243-8.149-2.809-11.024 1.097-.918 2.454-.523 3.663.76 2.913 3.089 5.684 9.152 5.475 9.516z"/><path fill="#B39155" d="M11.456 5.045c-1.292.498-1.379-.954-.764-1.773.867-1.155 3.366-1.697 4.665-1.06 1.297.637 1.728 2.432.86 3.587-.613.817-.652 2.054-1.083.26-.43-1.793-1.083.261-1.298-.636-.216-.897-2.38-.378-2.38-.378z"/><path fill="#FFDC5D" d="M15.148 11.32c-.033.046-3.381 4.532-8.152 5.032l.002.02c-.483.051-.884.417-.931.919-.053.573.367 1.082.941 1.135.07.006.135-.014.203-.023l.003.021c5.678-.594 9.456-5.654 9.613-5.869l-1.679-1.235z"/><ellipse transform="rotate(-80.781 7 24.32)" fill="#FFAC33" cx="7" cy="24.32" rx="4" ry="4"/><path fill="#C1694F" d="M8.075 24.127c.849.786 1.747 1.413 2.586 1.793.135-.307.223-.636.277-.978-.697-.337-1.44-.862-2.156-1.521l1.448-1.448c-.197-.271-.432-.51-.69-.724l-1.465 1.465c-.717-.779-1.286-1.595-1.615-2.343-.34.046-.669.121-.976.248.014.035.018.065.033.1.373.872 1.03 1.815 1.851 2.702l-1.442 1.442c-.883-.818-1.823-1.471-2.691-1.845-.111.322-.18.661-.206 1.014.706.336 1.462.868 2.189 1.538l-1.285 1.286c.214.258.453.492.724.69l1.268-1.268c.658.714 1.136 1.401 1.448 2.002.349-.033.685-.104 1.003-.22-.396-.834-1.015-1.712-1.737-2.495l1.436-1.438z"/><path fill="#FFDC5D" d="M17.255 5.459c-.262 2.342-2.251 3.358-4.247 4.134-1.904.741-3.484-2.589-3.74-4.915C9.01 2.336 11.747.549 13.875.788s3.642 2.33 3.38 4.671z"/><path fill="#FFAC33" d="M9.962 1.651c2.704-1.981 4.635-1.834 6.321-.68 1.674 1.146 1.929 3.534 1.603 5.091-.326 1.557-.776 1.507-.776 1.507s-2.07.636-2.373-1.306c-.096-.614.567-.999-.248-1.849-.525-.547-1.574-.176-1.516.665.058.841-.384.716-.384.716L11.158 3.66s-1.095.019-1.627 1.064c-.333.657-1.931-1.343.431-3.073z"/><path fill="#4289C1" d="M18.353 34.699h-1.977c-.185 0-.595-.158-.595-.35l.188-1.084c0-.193.096-.5.376-.5s.64.235.999.235.688-.522.96-.522c.211 0 .305.084.336.35l.193 1.521c0 .193-.295.35-.48.35zm14.494-8.875c.056-.379-.275-.638-.665-.677-.624-.062-.882-.058-.882-.058-.305.017-.949.186-1.003.546-.388 2.614.055 5.607.568 6.383.303.458 1.028.301 1.107-.237l.875-5.957z"/><path fill="#4289C1" d="M31.575 25.615l-.291 1.955c-.027.183-.243.565-.434.537l-1.044-.345c-.19-.028-.481-.169-.439-.446.041-.277.326-.599.379-.954.053-.355-.415-.757-.375-1.026.031-.209.128-.289.396-.281l1.533.033c.19.029.302.344.275.527z"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#FFDC5D" d="M26.3 26.621c-.339-.021-.504-.165-.57-.496-.187-.94-.313-1.721-.356-1.993l-3.912.767c.118.473.644 2.5 1.322 3.806.393.757.831.782 1.79.838 0 0 3.726-.134 6.305-.231 1.142-.043 1.225-1.795.253-2.014-.692-.156-1.438-.3-2.053-.36-.465-.046-2.539-.303-2.779-.317zm-7.462-1.676l-1.729-3.593c-.428.233-2.257 1.253-3.35 2.237-.635.572-.549 1.002-.36 1.944 0 0 1.087 3.639 1.831 6.111.32 1.062 2.024.713 1.995-.251-.022-.732-.07-1.523-.171-2.156-.073-.463-.348-2.534-.394-2.77-.064-.334.033-.53.337-.677.863-.416 1.588-.735 1.841-.845z"/><path fill="#1C6399" d="M32.67 26.978c-.133.007-.238.02-.315.037l-1.55.085c-.078.002-.137.069-.131.147.017.225.309.899.018 1.424-.195.351-.656.495-.688.679-.01.058.032.112.091.118 0 0 .284-.012.532.003.217.1.626.182.836.408.063.148.242.283.364.684.072.239.412 1.33.412 1.33.081.278.189.345.236.494.095.306.263 1.127.346 1.387.083.26.28.37.433.391.152.02.239-.016.239-.016s.385-.362.64-2.01c.15-.967.095-4.904.095-4.904l-1.558-.257z"/><path fill="#CCD6DD" d="M31.227 29.855c-.033 0-.066-.008-.097-.025-.097-.053-.132-.175-.078-.272l.17-.307c.054-.097.178-.131.271-.078.097.053.132.175.078.272l-.17.307c-.035.066-.103.103-.174.103z"/><path fill="#3B94D9" d="M33.882 29.325c-.243-.098-.797-.461-.953-.853-.141-.354-.241-1.312-.259-1.493.297-.028.753-.01.9.004.194.018.447.044.585.166-.001-.001-.214 1.543-.273 2.176z"/><path fill="#CCD6DD" d="M34.148 27.12s-.002.164-.079.276c-.077.113-.129.39-.149.596-.019.206-.105.981-.083 1.524.022.544.194 1.527.203 1.855.009.328.003.839-.065 1.217-.069.378-.142.715-.199.922-.073.267-.171.486-.285.639 0 0 .43-.03.757-.667.258-.503.402-.986.454-1.457l.263-3.109c.081-.868.1-1.309.061-1.475-.007-.029-.013-.152-.106-.279-.06-.083-.762-.153-.772-.042zm-2.472 3.287c-.074 0-.146-.042-.181-.113-.048-.1-.006-.219.094-.267l.317-.152c.101-.046.219-.006.268.094.048.1.006.219-.094.267l-.317.152c-.029.013-.058.019-.087.019zm.268.657c-.086 0-.164-.055-.191-.141-.032-.105.026-.218.132-.25l.354-.11c.112-.033.217.027.251.132.032.105-.026.218-.132.25l-.354.11c-.021.006-.04.009-.06.009zm.232.678c-.095 0-.179-.067-.196-.164-.021-.109.052-.213.16-.233l.333-.061c.108-.02.213.052.232.161.021.109-.052.213-.16.233l-.333.061-.036.003z"/><path fill="#1C6399" d="M17.911 32.716c-.04-.128-.078-.226-.114-.296l-.467-1.48c-.021-.075-.101-.116-.175-.09-.214.073-.794.523-1.375.371-.388-.102-.642-.513-.828-.498-.059.005-.101.059-.092.117 0 0 .082.272.129.516-.043.235-.021.651-.188.911-.128.098-.214.305-.572.522-.213.129-1.186.729-1.186.729-.25.148-.287.269-.42.351-.273.168-1.026.535-1.257.68-.231.145-.289.363-.271.516.018.152.074.228.074.228s.446.283 2.106.121c.974-.095 4.775-1.117 4.775-1.117s-.049-1.295-.139-1.581z"/><path fill="#CCD6DD" d="M15.3 32.271c-.017 0-.033-.002-.051-.006l-.34-.089c-.106-.028-.171-.137-.143-.244.027-.107.131-.171.244-.143l.34.089c.106.028.171.137.143.244-.023.09-.105.149-.193.149z"/><path fill="#3B94D9" d="M15.939 34.472c.035-.26.248-.886.59-1.135.308-.224 1.211-.559 1.382-.622.101.281.197.727.22.873.031.192.072.411-.022.609 0 .001-1.543.176-2.17.275z"/><path fill="#CCD6DD" d="M18.141 34.183s-.159.039-.287-.008-.409-.028-.614.004c-.204.033-.976.142-1.497.298-.521.157-1.431.567-1.747.657s-.812.211-1.195.239c-.383.027-.728.04-.942.036-.277-.004-.513-.045-.69-.117 0 0 .136.409.834.567.552.125 1.055.145 1.524.078.036-.005 3.077-.517 3.077-.517.861-.137 1.293-.229 1.444-.307.027-.014.144-.05.244-.172.065-.078-.042-.776-.151-.758zm-3.379-1.16c-.057 0-.113-.024-.153-.071l-.227-.269c-.071-.084-.06-.211.024-.282.084-.07.21-.061.282.024l.227.269c.071.084.06.211-.024.282-.037.032-.083.047-.129.047zm-.6.47c-.067 0-.133-.034-.17-.095l-.194-.316c-.059-.094-.029-.217.065-.275.093-.057.217-.029.274.066l.194.316c.059.094.029.217-.065.275-.032.02-.068.029-.104.029zm-.652.384c-.075 0-.147-.043-.182-.116l-.143-.308c-.046-.1-.003-.219.098-.265.1-.047.219-.003.266.097l.143.308c.046.1.003.219-.098.265-.028.013-.056.019-.084.019z"/><path fill="#1C6399" d="M16.404 21.332c.751-.398 3.235-1.653 4.947-1.804.156-.014.298.088.352.235l1.328 3.635c.068.186-.027.391-.216.451-.781.25-2.74.915-4.22 1.719-.157.085-.347.041-.448-.106-.456-.664-1.642-2.477-1.923-3.76-.032-.15.045-.298.18-.37z"/><path fill="#357BAA" d="M21.264 25.576c-.196-.827-.785-3.547-.501-5.242.026-.155.16-.266.316-.281l3.853-.37c.198-.019.371.124.382.323.046.818.196 2.882.601 4.517.043.173-.048.346-.216.407-.758.274-2.811.965-4.123.914-.153-.006-.276-.118-.312-.268z"/><path fill="#FFDC5D" d="M18.032 10.676c-.037.617.172 1.537 1.603 1.665 1.43.128 2.808-.164 3.392-.377.584-.214.637.836.892 1.807.256.974.44 1.739.407 1.947-.054.352-.726 1.071-.388 1.647.338.576.848 1.115 1.404.854s1.009-.557 1.136-.889c.127-.333-.626-1.25-.674-1.525s-.081-3.894-.146-4.3c-.08-.496-.172-1.177-1.01-1.395s-4.153-.593-4.985-.688c-.953-.109-1.582.436-1.631 1.254z"/><path fill="#FFDC5D" d="M18.885 6.217c.253-.418.429-.895.475-1.466C19.525 2.71 18.155.934 16.3.784c-1.855-.15-4.184 1.475-3.897 3.502.285 2.013 1.746 4.863 3.38 4.169.431-.183.861-.38 1.267-.604.205.194.429 1.001.435 1.713.012 1.814 2.507 1.72 2.492-.097-.013-1.437-1.002-2.239-1.092-3.25z"/><path fill="#FFAC33" d="M12.925 1.639c2.296-1.793 3.976-1.717 5.471-.76 1.485.951 1.77 3.017 1.528 4.378-.241 1.361-.633 1.329-.633 1.329s-1.781.607-2.096-1.071c-.1-.531.466-.883-.265-1.599-.47-.461-1.372-.111-1.299.618.073.729-.314.632-.314.632l-1.3-1.814s-.951.046-1.384.968c-.272.579-1.713-1.115.292-2.681z"/><path fill="#4289C1" d="M22.418 9.765c-.897-1.578-2.174-2.314-3.528-1.683-4.238 1.976-1.905 5.849.189 12.276 0 0 3.134.202 6.325-.14.001 0-.826-6.654-2.986-10.453z"/><path fill="#FFDC5D" d="M19.924 10.175c-.603-.298-1.614-.479-2.349.901-.735 1.38-1.027 2.884-1.06 3.561-.033.677-1.108.284-2.191.128-1.086-.156-2.853-.332-3.048-.453-.191-.118-1.565-.234-2.03-.242-.34-.005-2.104.282-2.496.612-.461.388 2.73.461 3.01.729.28.269.876.481 1.274.587.294.078 4.391 1.364 4.826 1.471.531.131 1.253.327 1.827-.421.574-.748 2.356-3.913 2.804-4.707.512-.909.232-1.771-.567-2.166z"/><circle fill="#FFAC33" cx="6.397" cy="21.831" r="3.603"/><path fill="#C1694F" d="M7.365 21.657c.764.708 1.573 1.273 2.329 1.615.122-.277.201-.573.25-.881-.628-.303-1.297-.777-1.942-1.37l1.304-1.304c-.178-.245-.389-.459-.621-.652l-1.32 1.32c-.646-.702-1.158-1.437-1.455-2.11-.306.042-.603.109-.879.223.013.031.016.059.03.09.336.785.927 1.635 1.667 2.434L5.43 22.319c-.796-.737-1.642-1.325-2.423-1.662-.1.29-.162.595-.185.914.636.302 1.317.782 1.972 1.385l-1.158 1.158c.193.232.408.444.652.621l1.142-1.142c.592.643 1.023 1.262 1.304 1.803.315-.03.617-.093.903-.199-.356-.751-.914-1.542-1.564-2.247l1.292-1.293z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/270a-1f3fb.svg b/public/emoji/270a-1f3fb.svg
index 953d5211a9407d5433b591d2e5f671b3441cfc60..1929efb8baff56d62f97f9d5c002d79d8f32a9f5 100644
--- a/public/emoji/270a-1f3fb.svg
+++ b/public/emoji/270a-1f3fb.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#D89882" d="M18 10.087l5.007-.047h6.016c.973 0 2.265-.038 3.195.873-.81-1.187-2.172-1.967-3.718-1.967H28l-.243-.094H22.1l.016-4c0-.812.531-1.578.734-1.998-1.096.592-1.85 1.737-1.85 3.07l-.087.272v2.656L18 8.868c-1.201 0-2.182.427-2.915 1.266l-.016-1.375.016-4.828c0-.758.406-1.438.669-1.954C14.71 2.669 14 3.946 14 5.424v.522l-.181.978.031 8.022c0 .891-.414 1.576-1.031 2.125-.53.472-1.053.656-1.819.656-1.657 0-2.884-1.281-2.884-2.938L8.1 5.712c0-.816.453-1.391.756-1.861C7.757 4.441 7 5.588 7 6.924V8.81l-.072.214v6.058c0 1.989-1.891 2.786-2.828 2.786-1.719 0-3.1-1.203-3.1-2.786v2.645s.185.209.194.312c.881.882 2.156 1.016 2.984 1.016 1.594 0 2.684-.851 3.337-2.062.678 1.212 1.913 2.016 3.428 2.016s3.684-.738 4.056-3.344c.141.167.506.51.678.641.703.531 1.585.734 2.322.734l1.116-.031h1.734c-.535.27-.778.552-1.203.938-1.729 1.568-2.578 4.094-2.578 7.672 0 .276.317.562.594.562.276 0 .578-.317.578-.594 0-3.962.973-6.327 3.203-7.562 1.175-.651 2.626-.969 4.516-.969.059 0 .562-.031.562-.031.276 0 .594-.333.594-.609 0-.276-.271-.547-.547-.547H20.13L18 15.853c-1.657 0-2.915-1.281-2.915-2.938 0-1.657 1.258-2.828 2.915-2.828z"/><path fill="#F7DECE" d="M4.124 18.946c1.474 0 2.738-.831 3.392-2.043.678 1.212 1.958 2.043 3.446 2.043h.076c1.153 0 2.169-.51 2.889-1.298.022-.025.051-.043.073-.068v-.014c.185-.212.343-.448.481-.695.04-.072.069-.151.105-.227.093-.194.176-.394.236-.606.052-.173.106-.344.134-.526.141.167.296.319.46.46.069.059.147.107.221.162.116.086.229.177.355.251.589.351 1.271.56 2.008.56h3.166c-.535.27-.999.614-1.424 1-1.729 1.568-2.579 4.085-2.579 7.663 0 .276.224.5.5.5s.5-.224.5-.5c0-3.962 1.01-6.427 3.24-7.663 1.175-.651 2.682-.967 4.571-.967.059 0 .526-.033.526-.033.276 0 .5-.224.5-.5s-.224-.5-.5-.5H18c-1.657 0-3-1.343-3-3s1.343-3 3-3h11c.973 0 2.288.056 3.218.967.325.318.604.736.803 1.297l1.659 5.472c.156.512.73 2.857.626 3.346 0 7.34-8.7 14.972-19.004 14.972C6.326 36 1 27.883 1 17.957v-.229c.01.01.021.016.031.026.881.882 1.799 1.192 2.845 1.192h.248z"/><path fill="#F7DECE" d="M3.864 5.946h.271C5.718 5.946 7 7.229 7 8.81v6.273c0 1.582-1.282 2.864-2.864 2.864h-.272C2.282 17.946 1 16.664 1 15.082V8.81c0-1.581 1.282-2.864 2.864-2.864zM14 9.222v5.724c0 .891-.396 1.683-1.014 2.233-.53.472-1.221.767-1.986.767-1.657 0-3-1.343-3-3v-9c0-.816.328-1.554.857-2.095.544-.557 1.302-.905 2.143-.905 1.657 0 3 1.343 3 3v3.276zm4-.276c-1.201 0-2.267.541-3 1.38V3.947c0-.758.29-1.442.753-1.97C16.303 1.35 17.1.947 18 .947c1.657 0 3 1.343 3 3v5h-3zm4-4.007c0-.812.326-1.545.85-2.085.544-.559 1.301-.909 2.143-.909h.014C26.66 1.946 28 3.286 28 4.939v4.006h-6V4.939z"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#E0AA94" d="M32.218 10.913c-.81-1.187-2.172-1.967-3.718-1.967H28s-5.353-5.672-5.15-6.091C21.754 3.446 21 4.591 21 5.924c0 0-5.509-3.431-5.247-3.947C14.71 2.669 14 3.946 14 5.424v.522S8.553 4.321 8.857 3.851C7.757 4.441 7 5.588 7 6.924V8.81l-6 6.272v2.645l17.16 14.439c0 .001 13.128-22.164 14.058-21.253z"/><g fill="#F7DECE"><path d="M4.124 18.946c1.474 0 2.738-.831 3.392-2.043.678 1.212 1.958 2.043 3.446 2.043h.076c1.153 0 2.169-.51 2.889-1.298.023-.024.073-.082.073-.082.185-.212.343-.448.481-.695.04-.072.281-.621.342-.833.052-.173.106-.344.134-.526.141.167.296.319.46.46.069.059.45.339.576.413.589.351 1.271.56 2.008.56h3.166c-.535.27-.999.614-1.424 1-1.729 1.568-2.579 4.085-2.579 7.663 0 .276.224.5.5.5s.5-.224.5-.5c0-3.962 1.01-6.427 3.24-7.663 1.175-.651 2.682-.967 4.571-.967.059 0 .526-.033.526-.033.276 0 .5-.224.5-.5s-.224-.5-.5-.5H18c-1.657 0-3-1.343-3-3s1.343-3 3-3h11c.973 0 2.288.056 3.218.967.325.318.604.736.803 1.297l1.659 5.472c.156.512.73 2.857.626 3.346 0 7.34-8.7 14.972-19.004 14.972C6.326 36 1 27.883 1 17.957v-.229c.01.01.021.016.031.026.881.882 1.799 1.192 2.845 1.192h.248z"/><path d="M3.864 5.946h.271C5.718 5.946 7 7.229 7 8.81v6.272c0 1.582-1.282 2.864-2.864 2.864h-.272C2.282 17.946 1 16.664 1 15.082V8.81c0-1.581 1.282-2.864 2.864-2.864zm10.136 9c0 .891-.396 1.683-1.014 2.233-.53.472-1.221.767-1.986.767-1.657 0-3-1.343-3-3v-9c0-.816.328-1.554.857-2.095.544-.557 1.302-.905 2.143-.905 1.657 0 3 1.343 3 3v9zm4-6c-1.201 0-2.267.541-3 1.38v-6.38c0-.758.29-1.442.753-1.97.55-.627 1.347-1.03 2.247-1.03 1.657 0 3 1.343 3 3v5h-3zm4-4.007c0-.812.326-1.545.85-2.085.544-.559 1.301-.909 2.143-.909h.014C26.66 1.946 28 3.286 28 4.939v4.007h-6V4.939z"/></g></svg>
\ No newline at end of file
diff --git a/public/emoji/270a-1f3fc.svg b/public/emoji/270a-1f3fc.svg
index 7e4f57598f18598b6d88b813f15af7c8362ac0fd..09dc7d3b58f1f2cd2207072742dea8e0c9eb2dc0 100644
--- a/public/emoji/270a-1f3fc.svg
+++ b/public/emoji/270a-1f3fc.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#C68F6A" d="M18 10.087l5.007-.047h6.016c.973 0 2.265-.038 3.195.873-.81-1.187-2.172-1.967-3.718-1.967H28l-.243-.094H22.1l.016-4c0-.812.531-1.578.734-1.998-1.096.592-1.85 1.737-1.85 3.07l-.087.272v2.656L18 8.868c-1.201 0-2.182.427-2.915 1.266l-.016-1.375.016-4.828c0-.758.406-1.438.669-1.954C14.71 2.669 14 3.946 14 5.424v.522l-.181.978.031 8.022c0 .891-.414 1.576-1.031 2.125-.53.472-1.053.656-1.819.656-1.657 0-2.884-1.281-2.884-2.938L8.1 5.712c0-.816.453-1.391.756-1.861C7.757 4.441 7 5.588 7 6.924V8.81l-.072.214v6.058c0 1.989-1.891 2.786-2.828 2.786-1.719 0-3.1-1.203-3.1-2.786v2.645s.185.209.194.312c.881.882 2.156 1.016 2.984 1.016 1.594 0 2.684-.851 3.337-2.062.678 1.212 1.913 2.016 3.428 2.016s3.684-.738 4.056-3.344c.141.167.506.51.678.641.703.531 1.585.734 2.322.734l1.116-.031h1.734c-.535.27-.778.552-1.203.938-1.729 1.568-2.578 4.094-2.578 7.672 0 .276.317.562.594.562.276 0 .578-.317.578-.594 0-3.962.973-6.327 3.203-7.562 1.175-.651 2.626-.969 4.516-.969.059 0 .562-.031.562-.031.276 0 .594-.333.594-.609 0-.276-.271-.547-.547-.547H20.13L18 15.853c-1.657 0-2.915-1.281-2.915-2.938 0-1.657 1.258-2.828 2.915-2.828z"/><path fill="#F3D2A2" d="M4.124 18.946c1.474 0 2.738-.831 3.392-2.043.678 1.212 1.958 2.043 3.446 2.043h.076c1.153 0 2.169-.51 2.889-1.298.022-.025.051-.043.073-.068v-.014c.185-.212.343-.448.481-.695.04-.072.069-.151.105-.227.093-.194.176-.394.236-.606.052-.173.106-.344.134-.526.141.167.296.319.46.46.069.059.147.107.221.162.116.086.229.177.355.251.589.351 1.271.56 2.008.56h3.166c-.535.27-.999.614-1.424 1-1.729 1.568-2.579 4.085-2.579 7.663 0 .276.224.5.5.5s.5-.224.5-.5c0-3.962 1.01-6.427 3.24-7.663 1.175-.651 2.682-.967 4.571-.967.059 0 .526-.033.526-.033.276 0 .5-.224.5-.5s-.224-.5-.5-.5H18c-1.657 0-3-1.343-3-3s1.343-3 3-3h11c.973 0 2.288.056 3.218.967.325.318.604.736.803 1.297l1.659 5.472c.156.512.73 2.857.626 3.346 0 7.34-8.7 14.972-19.004 14.972C6.326 36 1 27.883 1 17.957v-.229c.01.01.021.016.031.026.881.882 1.799 1.192 2.845 1.192h.248z"/><path fill="#F3D2A2" d="M3.864 5.946h.271C5.718 5.946 7 7.229 7 8.81v6.273c0 1.582-1.282 2.864-2.864 2.864h-.272C2.282 17.946 1 16.664 1 15.082V8.81c0-1.581 1.282-2.864 2.864-2.864zM14 9.222v5.724c0 .891-.396 1.683-1.014 2.233-.53.472-1.221.767-1.986.767-1.657 0-3-1.343-3-3v-9c0-.816.328-1.554.857-2.095.544-.557 1.302-.905 2.143-.905 1.657 0 3 1.343 3 3v3.276zm4-.276c-1.201 0-2.267.541-3 1.38V3.947c0-.758.29-1.442.753-1.97C16.303 1.35 17.1.947 18 .947c1.657 0 3 1.343 3 3v5h-3zm4-4.007c0-.812.326-1.545.85-2.085.544-.559 1.301-.909 2.143-.909h.014C26.66 1.946 28 3.286 28 4.939v4.006h-6V4.939z"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#D2A077" d="M32.218 10.913c-.81-1.187-2.172-1.967-3.718-1.967H28s-5.353-5.672-5.15-6.091C21.754 3.446 21 4.591 21 5.924c0 0-5.509-3.431-5.247-3.947C14.71 2.669 14 3.946 14 5.424v.522S8.553 4.321 8.857 3.851C7.757 4.441 7 5.588 7 6.924V8.81l-6 6.272v2.645l17.16 14.439c0 .001 13.128-22.164 14.058-21.253z"/><g fill="#F3D2A2"><path d="M4.124 18.946c1.474 0 2.738-.831 3.392-2.043.678 1.212 1.958 2.043 3.446 2.043h.076c1.153 0 2.169-.51 2.889-1.298.023-.024.073-.082.073-.082.185-.212.343-.448.481-.695.04-.072.281-.621.342-.833.052-.173.106-.344.134-.526.141.167.296.319.46.46.069.059.45.339.576.413.589.351 1.271.56 2.008.56h3.166c-.535.27-.999.614-1.424 1-1.729 1.568-2.579 4.085-2.579 7.663 0 .276.224.5.5.5s.5-.224.5-.5c0-3.962 1.01-6.427 3.24-7.663 1.175-.651 2.682-.967 4.571-.967.059 0 .526-.033.526-.033.276 0 .5-.224.5-.5s-.224-.5-.5-.5H18c-1.657 0-3-1.343-3-3s1.343-3 3-3h11c.973 0 2.288.056 3.218.967.325.318.604.736.803 1.297l1.659 5.472c.156.512.73 2.857.626 3.346 0 7.34-8.7 14.972-19.004 14.972C6.326 36 1 27.883 1 17.957v-.229c.01.01.021.016.031.026.881.882 1.799 1.192 2.845 1.192h.248z"/><path d="M3.864 5.946h.271C5.718 5.946 7 7.229 7 8.81v6.272c0 1.582-1.282 2.864-2.864 2.864h-.272C2.282 17.946 1 16.664 1 15.082V8.81c0-1.581 1.282-2.864 2.864-2.864zm10.136 9c0 .891-.396 1.683-1.014 2.233-.53.472-1.221.767-1.986.767-1.657 0-3-1.343-3-3v-9c0-.816.328-1.554.857-2.095.544-.557 1.302-.905 2.143-.905 1.657 0 3 1.343 3 3v9zm4-6c-1.201 0-2.267.541-3 1.38v-6.38c0-.758.29-1.442.753-1.97.55-.627 1.347-1.03 2.247-1.03 1.657 0 3 1.343 3 3v5h-3zm4-4.007c0-.812.326-1.545.85-2.085.544-.559 1.301-.909 2.143-.909h.014C26.66 1.946 28 3.286 28 4.939v4.007h-6V4.939z"/></g></svg>
\ No newline at end of file
diff --git a/public/emoji/270a-1f3fd.svg b/public/emoji/270a-1f3fd.svg
index 68f4030fafbbafecb9a360a69892efa00c72a224..329832daf6e5e4e64a7e197a9c2ed606c2c262d4 100644
--- a/public/emoji/270a-1f3fd.svg
+++ b/public/emoji/270a-1f3fd.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#AA8052" d="M18 10.087l5.007-.047h6.016c.973 0 2.265-.038 3.195.873-.81-1.187-2.172-1.967-3.718-1.967H28l-.243-.094H22.1l.016-4c0-.812.531-1.578.734-1.998-1.096.592-1.85 1.737-1.85 3.07l-.087.272v2.656L18 8.868c-1.201 0-2.182.427-2.915 1.266l-.016-1.375.016-4.828c0-.758.406-1.438.669-1.954C14.71 2.669 14 3.946 14 5.424v.522l-.181.978.031 8.022c0 .891-.414 1.576-1.031 2.125-.53.472-1.053.656-1.819.656-1.657 0-2.884-1.281-2.884-2.938L8.1 5.712c0-.816.453-1.391.756-1.861C7.757 4.441 7 5.588 7 6.924V8.81l-.072.214v6.058c0 1.989-1.891 2.786-2.828 2.786-1.719 0-3.1-1.203-3.1-2.786v2.645s.185.209.194.312c.881.882 2.156 1.016 2.984 1.016 1.594 0 2.684-.851 3.337-2.062.678 1.212 1.913 2.016 3.428 2.016s3.684-.738 4.056-3.344c.141.167.506.51.678.641.703.531 1.585.734 2.322.734l1.116-.031h1.734c-.535.27-.778.552-1.203.938-1.729 1.568-2.578 4.094-2.578 7.672 0 .276.317.562.594.562.276 0 .578-.317.578-.594 0-3.962.973-6.327 3.203-7.562 1.175-.651 2.626-.969 4.516-.969.059 0 .562-.031.562-.031.276 0 .594-.333.594-.609 0-.276-.271-.547-.547-.547H20.13L18 15.853c-1.657 0-2.915-1.281-2.915-2.938 0-1.657 1.258-2.828 2.915-2.828z"/><path fill="#D5AB88" d="M4.124 18.946c1.474 0 2.738-.831 3.392-2.043.678 1.212 1.958 2.043 3.446 2.043h.076c1.153 0 2.169-.51 2.889-1.298.022-.025.051-.043.073-.068v-.014c.185-.212.343-.448.481-.695.04-.072.069-.151.105-.227.093-.194.176-.394.236-.606.052-.173.106-.344.134-.526.141.167.296.319.46.46.069.059.147.107.221.162.116.086.229.177.355.251.589.351 1.271.56 2.008.56h3.166c-.535.27-.999.614-1.424 1-1.729 1.568-2.579 4.085-2.579 7.663 0 .276.224.5.5.5s.5-.224.5-.5c0-3.962 1.01-6.427 3.24-7.663 1.175-.651 2.682-.967 4.571-.967.059 0 .526-.033.526-.033.276 0 .5-.224.5-.5s-.224-.5-.5-.5H18c-1.657 0-3-1.343-3-3s1.343-3 3-3h11c.973 0 2.288.056 3.218.967.325.318.604.736.803 1.297l1.659 5.472c.156.512.73 2.857.626 3.346 0 7.34-8.7 14.972-19.004 14.972C6.326 36 1 27.883 1 17.957v-.229c.01.01.021.016.031.026.881.882 1.799 1.192 2.845 1.192h.248z"/><path fill="#D5AB88" d="M3.864 5.946h.271C5.718 5.946 7 7.229 7 8.81v6.273c0 1.582-1.282 2.864-2.864 2.864h-.272C2.282 17.946 1 16.664 1 15.082V8.81c0-1.581 1.282-2.864 2.864-2.864zM14 9.222v5.724c0 .891-.396 1.683-1.014 2.233-.53.472-1.221.767-1.986.767-1.657 0-3-1.343-3-3v-9c0-.816.328-1.554.857-2.095.544-.557 1.302-.905 2.143-.905 1.657 0 3 1.343 3 3v3.276zm4-.276c-1.201 0-2.267.541-3 1.38V3.947c0-.758.29-1.442.753-1.97C16.303 1.35 17.1.947 18 .947c1.657 0 3 1.343 3 3v5h-3zm4-4.007c0-.812.326-1.545.85-2.085.544-.559 1.301-.909 2.143-.909h.014C26.66 1.946 28 3.286 28 4.939v4.006h-6V4.939z"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#B78B60" d="M32.218 10.913c-.81-1.187-2.172-1.967-3.718-1.967H28s-5.353-5.672-5.15-6.091C21.754 3.446 21 4.591 21 5.924c0 0-5.509-3.431-5.247-3.947C14.71 2.669 14 3.946 14 5.424v.522S8.553 4.321 8.857 3.851C7.757 4.441 7 5.588 7 6.924V8.81l-6 6.272v2.645l17.16 14.439c0 .001 13.128-22.164 14.058-21.253z"/><g fill="#D4AB88"><path d="M4.124 18.946c1.474 0 2.738-.831 3.392-2.043.678 1.212 1.958 2.043 3.446 2.043h.076c1.153 0 2.169-.51 2.889-1.298.023-.024.073-.082.073-.082.185-.212.343-.448.481-.695.04-.072.281-.621.342-.833.052-.173.106-.344.134-.526.141.167.296.319.46.46.069.059.45.339.576.413.589.351 1.271.56 2.008.56h3.166c-.535.27-.999.614-1.424 1-1.729 1.568-2.579 4.085-2.579 7.663 0 .276.224.5.5.5s.5-.224.5-.5c0-3.962 1.01-6.427 3.24-7.663 1.175-.651 2.682-.967 4.571-.967.059 0 .526-.033.526-.033.276 0 .5-.224.5-.5s-.224-.5-.5-.5H18c-1.657 0-3-1.343-3-3s1.343-3 3-3h11c.973 0 2.288.056 3.218.967.325.318.604.736.803 1.297l1.659 5.472c.156.512.73 2.857.626 3.346 0 7.34-8.7 14.972-19.004 14.972C6.326 36 1 27.883 1 17.957v-.229c.01.01.021.016.031.026.881.882 1.799 1.192 2.845 1.192h.248z"/><path d="M3.864 5.946h.271C5.718 5.946 7 7.229 7 8.81v6.272c0 1.582-1.282 2.864-2.864 2.864h-.272C2.282 17.946 1 16.664 1 15.082V8.81c0-1.581 1.282-2.864 2.864-2.864zm10.136 9c0 .891-.396 1.683-1.014 2.233-.53.472-1.221.767-1.986.767-1.657 0-3-1.343-3-3v-9c0-.816.328-1.554.857-2.095.544-.557 1.302-.905 2.143-.905 1.657 0 3 1.343 3 3v9zm4-6c-1.201 0-2.267.541-3 1.38v-6.38c0-.758.29-1.442.753-1.97.55-.627 1.347-1.03 2.247-1.03 1.657 0 3 1.343 3 3v5h-3zm4-4.007c0-.812.326-1.545.85-2.085.544-.559 1.301-.909 2.143-.909h.014C26.66 1.946 28 3.286 28 4.939v4.007h-6V4.939z"/></g></svg>
\ No newline at end of file
diff --git a/public/emoji/270a-1f3fe.svg b/public/emoji/270a-1f3fe.svg
index a6d1fe8b5e2ad4a2b31bcd5904f0055867fa8a69..b4bcfc5c06ec968696a5e77e63d8f282dad18cdd 100644
--- a/public/emoji/270a-1f3fe.svg
+++ b/public/emoji/270a-1f3fe.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#845636" d="M18 10.087l5.007-.047h6.016c.973 0 2.265-.038 3.195.873-.81-1.187-2.172-1.967-3.718-1.967H28l-.243-.094H22.1l.016-4c0-.812.531-1.578.734-1.998-1.096.592-1.85 1.737-1.85 3.07l-.087.272v2.656L18 8.868c-1.201 0-2.182.427-2.915 1.266l-.016-1.375.016-4.828c0-.758.406-1.438.669-1.954C14.71 2.669 14 3.946 14 5.424v.522l-.181.978.031 8.022c0 .891-.414 1.576-1.031 2.125-.53.472-1.053.656-1.819.656-1.657 0-2.884-1.281-2.884-2.938L8.1 5.712c0-.816.453-1.391.756-1.861C7.757 4.441 7 5.588 7 6.924V8.81l-.072.214v6.058c0 1.989-1.891 2.786-2.828 2.786-1.719 0-3.1-1.203-3.1-2.786v2.645s.185.209.194.312c.881.882 2.156 1.016 2.984 1.016 1.594 0 2.684-.851 3.337-2.062.678 1.212 1.913 2.016 3.428 2.016s3.684-.738 4.056-3.344c.141.167.506.51.678.641.703.531 1.585.734 2.322.734l1.116-.031h1.734c-.535.27-.778.552-1.203.938-1.729 1.568-2.578 4.094-2.578 7.672 0 .276.317.562.594.562.276 0 .578-.317.578-.594 0-3.962.973-6.327 3.203-7.562 1.175-.651 2.626-.969 4.516-.969.059 0 .562-.031.562-.031.276 0 .594-.333.594-.609 0-.276-.271-.547-.547-.547H20.13L18 15.853c-1.657 0-2.915-1.281-2.915-2.938 0-1.657 1.258-2.828 2.915-2.828z"/><path fill="#AF7E57" d="M4.124 18.946c1.474 0 2.738-.831 3.392-2.043.678 1.212 1.958 2.043 3.446 2.043h.076c1.153 0 2.169-.51 2.889-1.298.022-.025.051-.043.073-.068v-.014c.185-.212.343-.448.481-.695.04-.072.069-.151.105-.227.093-.194.176-.394.236-.606.052-.173.106-.344.134-.526.141.167.296.319.46.46.069.059.147.107.221.162.116.086.229.177.355.251.589.351 1.271.56 2.008.56h3.166c-.535.27-.999.614-1.424 1-1.729 1.568-2.579 4.085-2.579 7.663 0 .276.224.5.5.5s.5-.224.5-.5c0-3.962 1.01-6.427 3.24-7.663 1.175-.651 2.682-.967 4.571-.967.059 0 .526-.033.526-.033.276 0 .5-.224.5-.5s-.224-.5-.5-.5H18c-1.657 0-3-1.343-3-3s1.343-3 3-3h11c.973 0 2.288.056 3.218.967.325.318.604.736.803 1.297l1.659 5.472c.156.512.73 2.857.626 3.346 0 7.34-8.7 14.972-19.004 14.972C6.326 36 1 27.883 1 17.957v-.229c.01.01.021.016.031.026.881.882 1.799 1.192 2.845 1.192h.248z"/><path fill="#AF7E57" d="M3.864 5.946h.271C5.718 5.946 7 7.229 7 8.81v6.273c0 1.582-1.282 2.864-2.864 2.864h-.272C2.282 17.946 1 16.664 1 15.082V8.81c0-1.581 1.282-2.864 2.864-2.864zM14 9.222v5.724c0 .891-.396 1.683-1.014 2.233-.53.472-1.221.767-1.986.767-1.657 0-3-1.343-3-3v-9c0-.816.328-1.554.857-2.095.544-.557 1.302-.905 2.143-.905 1.657 0 3 1.343 3 3v3.276zm4-.276c-1.201 0-2.267.541-3 1.38V3.947c0-.758.29-1.442.753-1.97C16.303 1.35 17.1.947 18 .947c1.657 0 3 1.343 3 3v5h-3zm4-4.007c0-.812.326-1.545.85-2.085.544-.559 1.301-.909 2.143-.909h.014C26.66 1.946 28 3.286 28 4.939v4.006h-6V4.939z"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#90603E" d="M32.218 10.913c-.81-1.187-2.172-1.967-3.718-1.967H28s-5.353-5.672-5.15-6.091C21.754 3.446 21 4.591 21 5.924c0 0-5.509-3.431-5.247-3.947C14.71 2.669 14 3.946 14 5.424v.522S8.553 4.321 8.857 3.851C7.757 4.441 7 5.588 7 6.924V8.81l-6 6.272v2.645l17.16 14.439c0 .001 13.128-22.164 14.058-21.253z"/><g fill="#AF7E57"><path d="M4.124 18.946c1.474 0 2.738-.831 3.392-2.043.678 1.212 1.958 2.043 3.446 2.043h.076c1.153 0 2.169-.51 2.889-1.298.023-.024.073-.082.073-.082.185-.212.343-.448.481-.695.04-.072.281-.621.342-.833.052-.173.106-.344.134-.526.141.167.296.319.46.46.069.059.45.339.576.413.589.351 1.271.56 2.008.56h3.166c-.535.27-.999.614-1.424 1-1.729 1.568-2.579 4.085-2.579 7.663 0 .276.224.5.5.5s.5-.224.5-.5c0-3.962 1.01-6.427 3.24-7.663 1.175-.651 2.682-.967 4.571-.967.059 0 .526-.033.526-.033.276 0 .5-.224.5-.5s-.224-.5-.5-.5H18c-1.657 0-3-1.343-3-3s1.343-3 3-3h11c.973 0 2.288.056 3.218.967.325.318.604.736.803 1.297l1.659 5.472c.156.512.73 2.857.626 3.346 0 7.34-8.7 14.972-19.004 14.972C6.326 36 1 27.883 1 17.957v-.229c.01.01.021.016.031.026.881.882 1.799 1.192 2.845 1.192h.248z"/><path d="M3.864 5.946h.271C5.718 5.946 7 7.229 7 8.81v6.272c0 1.582-1.282 2.864-2.864 2.864h-.272C2.282 17.946 1 16.664 1 15.082V8.81c0-1.581 1.282-2.864 2.864-2.864zm10.136 9c0 .891-.396 1.683-1.014 2.233-.53.472-1.221.767-1.986.767-1.657 0-3-1.343-3-3v-9c0-.816.328-1.554.857-2.095.544-.557 1.302-.905 2.143-.905 1.657 0 3 1.343 3 3v9zm4-6c-1.201 0-2.267.541-3 1.38v-6.38c0-.758.29-1.442.753-1.97.55-.627 1.347-1.03 2.247-1.03 1.657 0 3 1.343 3 3v5h-3zm4-4.007c0-.812.326-1.545.85-2.085.544-.559 1.301-.909 2.143-.909h.014C26.66 1.946 28 3.286 28 4.939v4.007h-6V4.939z"/></g></svg>
\ No newline at end of file
diff --git a/public/emoji/270a-1f3ff.svg b/public/emoji/270a-1f3ff.svg
index 74f881096d7579b042ec7927f44f649e89945e78..e7dd06eb6d7d9fa8e8150cbe0ed0b0f18f80d3c0 100644
--- a/public/emoji/270a-1f3ff.svg
+++ b/public/emoji/270a-1f3ff.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#543226" d="M18 10.087l5.007-.047h6.016c.973 0 2.265-.038 3.195.873-.81-1.187-2.172-1.967-3.718-1.967H28l-.243-.094H22.1l.016-4c0-.812.531-1.578.734-1.998-1.096.592-1.85 1.737-1.85 3.07l-.087.272v2.656L18 8.868c-1.201 0-2.182.427-2.915 1.266l-.016-1.375.016-4.828c0-.758.406-1.438.669-1.954C14.71 2.669 14 3.946 14 5.424v.522l-.181.978.031 8.022c0 .891-.414 1.576-1.031 2.125-.53.472-1.053.656-1.819.656-1.657 0-2.884-1.281-2.884-2.938L8.1 5.712c0-.816.453-1.391.756-1.861C7.757 4.441 7 5.588 7 6.924V8.81l-.072.214v6.058c0 1.989-1.891 2.786-2.828 2.786-1.719 0-3.1-1.203-3.1-2.786v2.645s.185.209.194.312c.881.882 2.156 1.016 2.984 1.016 1.594 0 2.684-.851 3.337-2.062.678 1.212 1.913 2.016 3.428 2.016s3.684-.738 4.056-3.344c.141.167.506.51.678.641.703.531 1.585.734 2.322.734l1.116-.031h1.734c-.535.27-.778.552-1.203.938-1.729 1.568-2.578 4.094-2.578 7.672 0 .276.317.562.594.562.276 0 .578-.317.578-.594 0-3.962.973-6.327 3.203-7.562 1.175-.651 2.626-.969 4.516-.969.059 0 .562-.031.562-.031.276 0 .594-.333.594-.609 0-.276-.271-.547-.547-.547H20.13L18 15.853c-1.657 0-2.915-1.281-2.915-2.938 0-1.657 1.258-2.828 2.915-2.828z"/><path fill="#7C533E" d="M4.124 18.946c1.474 0 2.738-.831 3.392-2.043.678 1.212 1.958 2.043 3.446 2.043h.076c1.153 0 2.169-.51 2.889-1.298.022-.025.051-.043.073-.068v-.014c.185-.212.343-.448.481-.695.04-.072.069-.151.105-.227.093-.194.176-.394.236-.606.052-.173.106-.344.134-.526.141.167.296.319.46.46.069.059.147.107.221.162.116.086.229.177.355.251.589.351 1.271.56 2.008.56h3.166c-.535.27-.999.614-1.424 1-1.729 1.568-2.579 4.085-2.579 7.663 0 .276.224.5.5.5s.5-.224.5-.5c0-3.962 1.01-6.427 3.24-7.663 1.175-.651 2.682-.967 4.571-.967.059 0 .526-.033.526-.033.276 0 .5-.224.5-.5s-.224-.5-.5-.5H18c-1.657 0-3-1.343-3-3s1.343-3 3-3h11c.973 0 2.288.056 3.218.967.325.318.604.736.803 1.297l1.659 5.472c.156.512.73 2.857.626 3.346 0 7.34-8.7 14.972-19.004 14.972C6.326 36 1 27.883 1 17.957v-.229c.01.01.021.016.031.026.881.882 1.799 1.192 2.845 1.192h.248z"/><path fill="#7C533E" d="M3.864 5.946h.271C5.718 5.946 7 7.229 7 8.81v6.273c0 1.582-1.282 2.864-2.864 2.864h-.272C2.282 17.946 1 16.664 1 15.082V8.81c0-1.581 1.282-2.864 2.864-2.864zM14 9.222v5.724c0 .891-.396 1.683-1.014 2.233-.53.472-1.221.767-1.986.767-1.657 0-3-1.343-3-3v-9c0-.816.328-1.554.857-2.095.544-.557 1.302-.905 2.143-.905 1.657 0 3 1.343 3 3v3.276zm4-.276c-1.201 0-2.267.541-3 1.38V3.947c0-.758.29-1.442.753-1.97C16.303 1.35 17.1.947 18 .947c1.657 0 3 1.343 3 3v5h-3zm4-4.007c0-.812.326-1.545.85-2.085.544-.559 1.301-.909 2.143-.909h.014C26.66 1.946 28 3.286 28 4.939v4.006h-6V4.939z"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#583529" d="M32.218 10.913c-.81-1.187-2.172-1.967-3.718-1.967H28s-5.353-5.672-5.15-6.091C21.754 3.446 21 4.591 21 5.924c0 0-5.509-3.431-5.247-3.947C14.71 2.669 14 3.946 14 5.424v.522S8.553 4.321 8.857 3.851C7.757 4.441 7 5.588 7 6.924V8.81l-6 6.272v2.645l17.16 14.439c0 .001 13.128-22.164 14.058-21.253z"/><g fill="#7C533E"><path d="M4.124 18.946c1.474 0 2.738-.831 3.392-2.043.678 1.212 1.958 2.043 3.446 2.043h.076c1.153 0 2.169-.51 2.889-1.298.023-.024.073-.082.073-.082.185-.212.343-.448.481-.695.04-.072.281-.621.342-.833.052-.173.106-.344.134-.526.141.167.296.319.46.46.069.059.45.339.576.413.589.351 1.271.56 2.008.56h3.166c-.535.27-.999.614-1.424 1-1.729 1.568-2.579 4.085-2.579 7.663 0 .276.224.5.5.5s.5-.224.5-.5c0-3.962 1.01-6.427 3.24-7.663 1.175-.651 2.682-.967 4.571-.967.059 0 .526-.033.526-.033.276 0 .5-.224.5-.5s-.224-.5-.5-.5H18c-1.657 0-3-1.343-3-3s1.343-3 3-3h11c.973 0 2.288.056 3.218.967.325.318.604.736.803 1.297l1.659 5.472c.156.512.73 2.857.626 3.346 0 7.34-8.7 14.972-19.004 14.972C6.326 36 1 27.883 1 17.957v-.229c.01.01.021.016.031.026.881.882 1.799 1.192 2.845 1.192h.248z"/><path d="M3.864 5.946h.271C5.718 5.946 7 7.229 7 8.81v6.272c0 1.582-1.282 2.864-2.864 2.864h-.272C2.282 17.946 1 16.664 1 15.082V8.81c0-1.581 1.282-2.864 2.864-2.864zm10.136 9c0 .891-.396 1.683-1.014 2.233-.53.472-1.221.767-1.986.767-1.657 0-3-1.343-3-3v-9c0-.816.328-1.554.857-2.095.544-.557 1.302-.905 2.143-.905 1.657 0 3 1.343 3 3v9zm4-6c-1.201 0-2.267.541-3 1.38v-6.38c0-.758.29-1.442.753-1.97.55-.627 1.347-1.03 2.247-1.03 1.657 0 3 1.343 3 3v5h-3zm4-4.007c0-.812.326-1.545.85-2.085.544-.559 1.301-.909 2.143-.909h.014C26.66 1.946 28 3.286 28 4.939v4.007h-6V4.939z"/></g></svg>
\ No newline at end of file
diff --git a/public/emoji/270a.svg b/public/emoji/270a.svg
index 2e25dd39c81b0e290141a23deb7669ae5d84c6d0..99910432f2452be3ecd8046ed8b53dcb49ab365f 100644
--- a/public/emoji/270a.svg
+++ b/public/emoji/270a.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#EF9645" d="M18 10.087l5.007-.047h6.016c.973 0 2.265-.038 3.195.873-.81-1.187-2.172-1.967-3.718-1.967H28l-.243-.094H22.1l.016-4c0-.812.531-1.578.734-1.998-1.096.592-1.85 1.737-1.85 3.07l-.087.272v2.656L18 8.868c-1.201 0-2.182.427-2.915 1.266l-.016-1.375.016-4.828c0-.758.406-1.438.669-1.954C14.71 2.669 14 3.946 14 5.424v.522l-.181.978.031 8.022c0 .891-.414 1.576-1.031 2.125-.53.472-1.053.656-1.819.656-1.657 0-2.884-1.281-2.884-2.938L8.1 5.712c0-.816.453-1.391.756-1.861C7.757 4.441 7 5.588 7 6.924V8.81l-.072.214v6.058c0 1.989-1.891 2.786-2.828 2.786-1.719 0-3.1-1.203-3.1-2.786v2.645s.185.209.194.312c.881.882 2.156 1.016 2.984 1.016 1.594 0 2.684-.851 3.337-2.062.678 1.212 1.913 2.016 3.428 2.016s3.684-.738 4.056-3.344c.141.167.506.51.678.641.703.531 1.585.734 2.322.734l1.116-.031h1.734c-.535.27-.778.552-1.203.938-1.729 1.568-2.578 4.094-2.578 7.672 0 .276.317.562.594.562.276 0 .578-.317.578-.594 0-3.962.973-6.327 3.203-7.562 1.175-.651 2.626-.969 4.516-.969.059 0 .562-.031.562-.031.276 0 .594-.333.594-.609 0-.276-.271-.547-.547-.547H20.13L18 15.853c-1.657 0-2.915-1.281-2.915-2.938 0-1.657 1.258-2.828 2.915-2.828z"/><path fill="#FFDC5D" d="M4.124 18.946c1.474 0 2.738-.831 3.392-2.043.678 1.212 1.958 2.043 3.446 2.043h.076c1.153 0 2.169-.51 2.889-1.298.022-.025.051-.043.073-.068v-.014c.185-.212.343-.448.481-.695.04-.072.069-.151.105-.227.093-.194.176-.394.236-.606.052-.173.106-.344.134-.526.141.167.296.319.46.46.069.059.147.107.221.162.116.086.229.177.355.251.589.351 1.271.56 2.008.56h3.166c-.535.27-.999.614-1.424 1-1.729 1.568-2.579 4.085-2.579 7.663 0 .276.224.5.5.5s.5-.224.5-.5c0-3.962 1.01-6.427 3.24-7.663 1.175-.651 2.682-.967 4.571-.967.059 0 .526-.033.526-.033.276 0 .5-.224.5-.5s-.224-.5-.5-.5H18c-1.657 0-3-1.343-3-3s1.343-3 3-3h11c.973 0 2.288.056 3.218.967.325.318.604.736.803 1.297l1.659 5.472c.156.512.73 2.857.626 3.346 0 7.34-8.7 14.972-19.004 14.972C6.326 36 1 27.883 1 17.957v-.229c.01.01.021.016.031.026.881.882 1.799 1.192 2.845 1.192h.248z"/><path fill="#FFDC5D" d="M3.864 5.946h.271C5.718 5.946 7 7.229 7 8.81v6.273c0 1.582-1.282 2.864-2.864 2.864h-.272C2.282 17.946 1 16.664 1 15.082V8.81c0-1.581 1.282-2.864 2.864-2.864zM14 9.222v5.724c0 .891-.396 1.683-1.014 2.233-.53.472-1.221.767-1.986.767-1.657 0-3-1.343-3-3v-9c0-.816.328-1.554.857-2.095.544-.557 1.302-.905 2.143-.905 1.657 0 3 1.343 3 3v3.276zm4-.276c-1.201 0-2.267.541-3 1.38V3.947c0-.758.29-1.442.753-1.97C16.303 1.35 17.1.947 18 .947c1.657 0 3 1.343 3 3v5h-3zm4-4.007c0-.812.326-1.545.85-2.085.544-.559 1.301-.909 2.143-.909h.014C26.66 1.946 28 3.286 28 4.939v4.006h-6V4.939z"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#EF9645" d="M32.218 10.913c-.81-1.187-2.172-1.967-3.718-1.967H28s-5.353-5.672-5.15-6.091C21.754 3.446 21 4.591 21 5.924c0 0-5.509-3.431-5.247-3.947C14.71 2.669 14 3.946 14 5.424v.522S8.553 4.321 8.857 3.851C7.757 4.441 7 5.588 7 6.924V8.81l-6 6.272v2.645l17.16 14.439c0 .001 13.128-22.164 14.058-21.253z"/><g fill="#FFDC5D"><path d="M4.124 18.946c1.474 0 2.738-.831 3.392-2.043.678 1.212 1.958 2.043 3.446 2.043h.076c1.153 0 2.169-.51 2.889-1.298.023-.024.073-.082.073-.082.185-.212.343-.448.481-.695.04-.072.281-.621.342-.833.052-.173.106-.344.134-.526.141.167.296.319.46.46.069.059.45.339.576.413.589.351 1.271.56 2.008.56h3.166c-.535.27-.999.614-1.424 1-1.729 1.568-2.579 4.085-2.579 7.663 0 .276.224.5.5.5s.5-.224.5-.5c0-3.962 1.01-6.427 3.24-7.663 1.175-.651 2.682-.967 4.571-.967.059 0 .526-.033.526-.033.276 0 .5-.224.5-.5s-.224-.5-.5-.5H18c-1.657 0-3-1.343-3-3s1.343-3 3-3h11c.973 0 2.288.056 3.218.967.325.318.604.736.803 1.297l1.659 5.472c.156.512.73 2.857.626 3.346 0 7.34-8.7 14.972-19.004 14.972C6.326 36 1 27.883 1 17.957v-.229c.01.01.021.016.031.026.881.882 1.799 1.192 2.845 1.192h.248z"/><path d="M3.864 5.946h.271C5.718 5.946 7 7.229 7 8.81v6.272c0 1.582-1.282 2.864-2.864 2.864h-.272C2.282 17.946 1 16.664 1 15.082V8.81c0-1.581 1.282-2.864 2.864-2.864zm10.136 9c0 .891-.396 1.683-1.014 2.233-.53.472-1.221.767-1.986.767-1.657 0-3-1.343-3-3v-9c0-.816.328-1.554.857-2.095.544-.557 1.302-.905 2.143-.905 1.657 0 3 1.343 3 3v9zm4-6c-1.201 0-2.267.541-3 1.38v-6.38c0-.758.29-1.442.753-1.97.55-.627 1.347-1.03 2.247-1.03 1.657 0 3 1.343 3 3v5h-3zm4-4.007c0-.812.326-1.545.85-2.085.544-.559 1.301-.909 2.143-.909h.014C26.66 1.946 28 3.286 28 4.939v4.007h-6V4.939z"/></g></svg>
\ No newline at end of file
diff --git a/public/emoji/270b-1f3fb.svg b/public/emoji/270b-1f3fb.svg
index df49e072757c18b1cbb91c9bea0e16f3ef5e5cc6..5b64565d23f9571e21dda46ce80c3aa06c9d72f4 100644
--- a/public/emoji/270b-1f3fb.svg
+++ b/public/emoji/270b-1f3fb.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#E0AA94" d="M10 4.965C10 3.604 11.104 2.5 12.465 2.5h.07C13.896 2.5 15 3.604 15 4.965v-2.16C15 1.532 16.032.5 17.305.5h.391C18.968.5 20 1.532 20 2.805V4c0-1.381 1.119-2.5 2.5-2.5S25 2.619 25 4v9.347c0-1.02.827-1.847 1.846-1.847h.308c1.02 0 1.846.827 1.846 1.847v9.807C29 24.173 28.173 25 27.154 25H27v1h-2.15c-.695 3.424-3.721 6-7.35 6-4.143 0-7.5-3.357-7.5-7.5v-6c0-.217.015-.431.032-.643-.013-.107-.032-.211-.032-.322V4.965z"/><path fill="#F7DECE" d="M6 8s0-2 2-2 2 2 2 2v9.286c0-.147 1-.281 1-.398V4s0-2 2-2 2 2 2 2v12.122c0-.028 1-.052 1-.069V2s0-2 2-2 2 2 2 2v14.052c0 .017 1 .053 1 .082V3s0-2 2-2 2 2 2 2v16c-6 0-10 5-10 10 0 1 1 1 1 1 0-6 4-10 10-10v-7s0-2 2-2 2 2 2 2v11c0 6.627-5.373 12-12 12S6 30.627 6 24V8z"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#E0AA94" d="M20.5 2.965c-1.381 0-2.5 1.119-2.5 2.5v.005L15.5.465c-1.381 0-2.5 1.119-2.5 2.5V4.25l-2.5-1.535c-1.381 0-2.5 1.119-2.5 2.5V8.75L7 18h13.542L20.5 2.965z"/><path fill="#F7DECE" d="M31.375 16.219c-1.381-.611-3.354.208-4.75 2.188-.917 1.3-1.187 3.151-2.391 3.344-.46.073-1.234-.313-1.234-1.397V4.5s0-2-2-2-2 2-2 2v11.633c0-.029-1-.064-1-.082V2s0-2-2-2-2 2-2 2v14.053c0 .017-1 .041-1 .069V4.25s0-2-2-2-2 2-2 2v12.638c0 .118-1 .251-1 .398V8.75s0-2-2-2-2 2-2 2V24c0 6.627 5.373 12 12 12 4.775 0 8.06-2.598 9.896-5.292 1.557-2.285 2.009-4.658 2.104-5.375 0 0 .123-1.479 1.156-2.865 1.469-1.969 2.5-3.156 3.125-3.866.317-.358.625-1.706-.906-2.383z"/><path fill="#E0AA94" d="M23.439 21.471c-.297-.266-.372-.552-.417-.808-1.892.259-4.457.789-6.427 2.715-2.556 2.499-2.992 5.2-2.971 7.007.017 1.457.812 2.147 1.045-.012.292-2.706 2.254-8.063 8.784-8.58.028-.002.387-.024.591-.035 0 0-.352-.06-.605-.287z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/270b-1f3fc.svg b/public/emoji/270b-1f3fc.svg
index 948e1cbd1c4e351c1adaec28b1d24a8666cd5bfa..3f69cc70938e8bba1664d026eacbf627a359c901 100644
--- a/public/emoji/270b-1f3fc.svg
+++ b/public/emoji/270b-1f3fc.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#D2A077" d="M10 4.965C10 3.604 11.104 2.5 12.465 2.5h.07C13.896 2.5 15 3.604 15 4.965v-2.16C15 1.532 16.032.5 17.305.5h.391C18.968.5 20 1.532 20 2.805V4c0-1.381 1.119-2.5 2.5-2.5S25 2.619 25 4v9.347c0-1.02.827-1.847 1.846-1.847h.308c1.02 0 1.846.827 1.846 1.847v9.807C29 24.173 28.173 25 27.154 25H27v1h-2.15c-.695 3.424-3.721 6-7.35 6-4.143 0-7.5-3.357-7.5-7.5v-6c0-.217.015-.431.032-.643-.013-.107-.032-.211-.032-.322V4.965z"/><path fill="#F3D2A2" d="M6 8s0-2 2-2 2 2 2 2v9.286c0-.147 1-.281 1-.398V4s0-2 2-2 2 2 2 2v12.122c0-.028 1-.052 1-.069V2s0-2 2-2 2 2 2 2v14.052c0 .017 1 .053 1 .082V3s0-2 2-2 2 2 2 2v16c-6 0-10 5-10 10 0 1 1 1 1 1 0-6 4-10 10-10v-7s0-2 2-2 2 2 2 2v11c0 6.627-5.373 12-12 12S6 30.627 6 24V8z"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#D2A077" d="M20.5 2.965c-1.381 0-2.5 1.119-2.5 2.5v.005L15.5.465c-1.381 0-2.5 1.119-2.5 2.5V4.25l-2.5-1.535c-1.381 0-2.5 1.119-2.5 2.5V8.75L7 18h13.542L20.5 2.965z"/><path fill="#F3D2A2" d="M31.375 16.219c-1.381-.611-3.354.208-4.75 2.188-.917 1.3-1.187 3.151-2.391 3.344-.46.073-1.234-.313-1.234-1.397V4.5s0-2-2-2-2 2-2 2v11.633c0-.029-1-.064-1-.082V2s0-2-2-2-2 2-2 2v14.053c0 .017-1 .041-1 .069V4.25s0-2-2-2-2 2-2 2v12.638c0 .118-1 .251-1 .398V8.75s0-2-2-2-2 2-2 2V24c0 6.627 5.373 12 12 12 4.775 0 8.06-2.598 9.896-5.292 1.557-2.285 2.009-4.658 2.104-5.375 0 0 .123-1.479 1.156-2.865 1.469-1.969 2.5-3.156 3.125-3.866.317-.358.625-1.706-.906-2.383z"/><path fill="#D2A077" d="M23.439 21.471c-.297-.266-.372-.552-.417-.808-1.892.259-4.457.789-6.427 2.715-2.556 2.499-2.992 5.2-2.971 7.007.017 1.457.812 2.147 1.045-.012.292-2.706 2.254-8.063 8.784-8.58.028-.002.387-.024.591-.035 0 0-.352-.06-.605-.287z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/270b-1f3fd.svg b/public/emoji/270b-1f3fd.svg
index fc45ac6ded6b96f8dcd8fb6540936b9fc8f10f0a..02f74174c9fecd8b0060c5feef67f9eb33a46edc 100644
--- a/public/emoji/270b-1f3fd.svg
+++ b/public/emoji/270b-1f3fd.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#B78B60" d="M10 4.965C10 3.604 11.104 2.5 12.465 2.5h.07C13.896 2.5 15 3.604 15 4.965v-2.16C15 1.532 16.032.5 17.305.5h.391C18.968.5 20 1.532 20 2.805V4c0-1.381 1.119-2.5 2.5-2.5S25 2.619 25 4v9.347c0-1.02.827-1.847 1.846-1.847h.308c1.02 0 1.846.827 1.846 1.847v9.807C29 24.173 28.173 25 27.154 25H27v1h-2.15c-.695 3.424-3.721 6-7.35 6-4.143 0-7.5-3.357-7.5-7.5v-6c0-.217.015-.431.032-.643-.013-.107-.032-.211-.032-.322V4.965z"/><path fill="#D5AB88" d="M6 8s0-2 2-2 2 2 2 2v9.286c0-.147 1-.281 1-.398V4s0-2 2-2 2 2 2 2v12.122c0-.028 1-.052 1-.069V2s0-2 2-2 2 2 2 2v14.052c0 .017 1 .053 1 .082V3s0-2 2-2 2 2 2 2v16c-6 0-10 5-10 10 0 1 1 1 1 1 0-6 4-10 10-10v-7s0-2 2-2 2 2 2 2v11c0 6.627-5.373 12-12 12S6 30.627 6 24V8z"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#B78B60" d="M20.5 2.965c-1.381 0-2.5 1.119-2.5 2.5v.005L15.5.465c-1.381 0-2.5 1.119-2.5 2.5V4.25l-2.5-1.535c-1.381 0-2.5 1.119-2.5 2.5V8.75L7 18h13.542L20.5 2.965z"/><path fill="#D5AB88" d="M31.375 16.219c-1.381-.611-3.354.208-4.75 2.188-.917 1.3-1.187 3.151-2.391 3.344-.46.073-1.234-.313-1.234-1.397V4.5s0-2-2-2-2 2-2 2v11.633c0-.029-1-.064-1-.082V2s0-2-2-2-2 2-2 2v14.053c0 .017-1 .041-1 .069V4.25s0-2-2-2-2 2-2 2v12.638c0 .118-1 .251-1 .398V8.75s0-2-2-2-2 2-2 2V24c0 6.627 5.373 12 12 12 4.775 0 8.06-2.598 9.896-5.292 1.557-2.285 2.009-4.658 2.104-5.375 0 0 .123-1.479 1.156-2.865 1.469-1.969 2.5-3.156 3.125-3.866.317-.358.625-1.706-.906-2.383z"/><path fill="#B78B60" d="M23.439 21.471c-.297-.266-.372-.552-.417-.808-1.892.259-4.457.789-6.427 2.715-2.556 2.499-2.992 5.2-2.971 7.007.017 1.457.812 2.147 1.045-.012.292-2.706 2.254-8.063 8.784-8.58.028-.002.387-.024.591-.035 0 0-.352-.06-.605-.287z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/270b-1f3fe.svg b/public/emoji/270b-1f3fe.svg
index 012bcd2c57fd08bdf72f0d2b15b39fde1bf03f3e..ed89dbac5fe010711c4851364e34c02e6eb2e714 100644
--- a/public/emoji/270b-1f3fe.svg
+++ b/public/emoji/270b-1f3fe.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#90603E" d="M10 4.965C10 3.604 11.104 2.5 12.465 2.5h.07C13.896 2.5 15 3.604 15 4.965v-2.16C15 1.532 16.032.5 17.305.5h.391C18.968.5 20 1.532 20 2.805V4c0-1.381 1.119-2.5 2.5-2.5S25 2.619 25 4v9.347c0-1.02.827-1.847 1.846-1.847h.308c1.02 0 1.846.827 1.846 1.847v9.807C29 24.173 28.173 25 27.154 25H27v1h-2.15c-.695 3.424-3.721 6-7.35 6-4.143 0-7.5-3.357-7.5-7.5v-6c0-.217.015-.431.032-.643-.013-.107-.032-.211-.032-.322V4.965z"/><path fill="#AF7E57" d="M6 8s0-2 2-2 2 2 2 2v9.286c0-.147 1-.281 1-.398V4s0-2 2-2 2 2 2 2v12.122c0-.028 1-.052 1-.069V2s0-2 2-2 2 2 2 2v14.052c0 .017 1 .053 1 .082V3s0-2 2-2 2 2 2 2v16c-6 0-10 5-10 10 0 1 1 1 1 1 0-6 4-10 10-10v-7s0-2 2-2 2 2 2 2v11c0 6.627-5.373 12-12 12S6 30.627 6 24V8z"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#90603E" d="M20.5 2.965c-1.381 0-2.5 1.119-2.5 2.5v.005L15.5.465c-1.381 0-2.5 1.119-2.5 2.5V4.25l-2.5-1.535c-1.381 0-2.5 1.119-2.5 2.5V8.75L7 18h13.542L20.5 2.965z"/><path fill="#AF7E57" d="M31.375 16.219c-1.381-.611-3.354.208-4.75 2.188-.917 1.3-1.187 3.151-2.391 3.344-.46.073-1.234-.313-1.234-1.397V4.5s0-2-2-2-2 2-2 2v11.633c0-.029-1-.064-1-.082V2s0-2-2-2-2 2-2 2v14.053c0 .017-1 .041-1 .069V4.25s0-2-2-2-2 2-2 2v12.638c0 .118-1 .251-1 .398V8.75s0-2-2-2-2 2-2 2V24c0 6.627 5.373 12 12 12 4.775 0 8.06-2.598 9.896-5.292 1.557-2.285 2.009-4.658 2.104-5.375 0 0 .123-1.479 1.156-2.865 1.469-1.969 2.5-3.156 3.125-3.866.317-.358.625-1.706-.906-2.383z"/><path fill="#90603E" d="M23.439 21.471c-.297-.266-.372-.552-.417-.808-1.892.259-4.457.789-6.427 2.715-2.556 2.499-2.992 5.2-2.971 7.007.017 1.457.812 2.147 1.045-.012.292-2.706 2.254-8.063 8.784-8.58.028-.002.387-.024.591-.035 0 0-.352-.06-.605-.287z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/270b-1f3ff.svg b/public/emoji/270b-1f3ff.svg
index 7676af18cb55b1739fa914617aba44dbb00219af..74072202cdb4832e3171f4dd61f7daaf30d9d9af 100644
--- a/public/emoji/270b-1f3ff.svg
+++ b/public/emoji/270b-1f3ff.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#583529" d="M10 4.965C10 3.604 11.104 2.5 12.465 2.5h.07C13.896 2.5 15 3.604 15 4.965v-2.16C15 1.532 16.032.5 17.305.5h.391C18.968.5 20 1.532 20 2.805V4c0-1.381 1.119-2.5 2.5-2.5S25 2.619 25 4v9.347c0-1.02.827-1.847 1.846-1.847h.308c1.02 0 1.846.827 1.846 1.847v9.807C29 24.173 28.173 25 27.154 25H27v1h-2.15c-.695 3.424-3.721 6-7.35 6-4.143 0-7.5-3.357-7.5-7.5v-6c0-.217.015-.431.032-.643-.013-.107-.032-.211-.032-.322V4.965z"/><path fill="#7C533E" d="M6 8s0-2 2-2 2 2 2 2v9.286c0-.147 1-.281 1-.398V4s0-2 2-2 2 2 2 2v12.122c0-.028 1-.052 1-.069V2s0-2 2-2 2 2 2 2v14.052c0 .017 1 .053 1 .082V3s0-2 2-2 2 2 2 2v16c-6 0-10 5-10 10 0 1 1 1 1 1 0-6 4-10 10-10v-7s0-2 2-2 2 2 2 2v11c0 6.627-5.373 12-12 12S6 30.627 6 24V8z"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#583529" d="M20.5 2.965c-1.381 0-2.5 1.119-2.5 2.5v.005L15.5.465c-1.381 0-2.5 1.119-2.5 2.5V4.25l-2.5-1.535c-1.381 0-2.5 1.119-2.5 2.5V8.75L7 18h13.542L20.5 2.965z"/><path fill="#7C533E" d="M31.375 16.219c-1.381-.611-3.354.208-4.75 2.188-.917 1.3-1.187 3.151-2.391 3.344-.46.073-1.234-.313-1.234-1.397V4.5s0-2-2-2-2 2-2 2v11.633c0-.029-1-.064-1-.082V2s0-2-2-2-2 2-2 2v14.053c0 .017-1 .041-1 .069V4.25s0-2-2-2-2 2-2 2v12.638c0 .118-1 .251-1 .398V8.75s0-2-2-2-2 2-2 2V24c0 6.627 5.373 12 12 12 4.775 0 8.06-2.598 9.896-5.292 1.557-2.285 2.009-4.658 2.104-5.375 0 0 .123-1.479 1.156-2.865 1.469-1.969 2.5-3.156 3.125-3.866.317-.358.625-1.706-.906-2.383z"/><path fill="#583529" d="M23.439 21.471c-.297-.266-.372-.552-.417-.808-1.892.259-4.457.789-6.427 2.715-2.556 2.499-2.992 5.2-2.971 7.007.017 1.457.812 2.147 1.045-.012.292-2.706 2.254-8.063 8.784-8.58.028-.002.387-.024.591-.035 0 0-.352-.06-.605-.287z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/270b.svg b/public/emoji/270b.svg
index 9bd7879dafe4eb281daeaa56844b2b466487e9f4..31576f16e95a31a1fd0457c366c41eb36b3699a3 100644
--- a/public/emoji/270b.svg
+++ b/public/emoji/270b.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#EF9645" d="M10 4.965C10 3.604 11.104 2.5 12.465 2.5h.07C13.896 2.5 15 3.604 15 4.965v-2.16C15 1.532 16.032.5 17.305.5h.391C18.968.5 20 1.532 20 2.805V4c0-1.381 1.119-2.5 2.5-2.5S25 2.619 25 4v9.347c0-1.02.827-1.847 1.846-1.847h.308c1.02 0 1.846.827 1.846 1.847v9.807C29 24.173 28.173 25 27.154 25H27v1h-2.15c-.695 3.424-3.721 6-7.35 6-4.143 0-7.5-3.357-7.5-7.5v-6c0-.217.015-.431.032-.643-.013-.107-.032-.211-.032-.322V4.965z"/><path fill="#FFDC5D" d="M6 8s0-2 2-2 2 2 2 2v9.286c0-.147 1-.281 1-.398V4s0-2 2-2 2 2 2 2v12.122c0-.028 1-.052 1-.069V2s0-2 2-2 2 2 2 2v14.052c0 .017 1 .053 1 .082V3s0-2 2-2 2 2 2 2v16c-6 0-10 5-10 10 0 1 1 1 1 1 0-6 4-10 10-10v-7s0-2 2-2 2 2 2 2v11c0 6.627-5.373 12-12 12S6 30.627 6 24V8z"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#EF9645" d="M20.5 2.965c-1.381 0-2.5 1.119-2.5 2.5v.005L15.5.465c-1.381 0-2.5 1.119-2.5 2.5V4.25l-2.5-1.535c-1.381 0-2.5 1.119-2.5 2.5V8.75L7 18h13.542L20.5 2.965z"/><path fill="#FFDC5D" d="M31.375 16.219c-1.381-.611-3.354.208-4.75 2.188-.917 1.3-1.187 3.151-2.391 3.344-.46.073-1.234-.313-1.234-1.397V4.5s0-2-2-2-2 2-2 2v11.633c0-.029-1-.064-1-.082V2s0-2-2-2-2 2-2 2v14.053c0 .017-1 .041-1 .069V4.25s0-2-2-2-2 2-2 2v12.638c0 .118-1 .251-1 .398V8.75s0-2-2-2-2 2-2 2V24c0 6.627 5.373 12 12 12 4.775 0 8.06-2.598 9.896-5.292 1.557-2.285 2.009-4.658 2.104-5.375 0 0 .123-1.479 1.156-2.865 1.469-1.969 2.5-3.156 3.125-3.866.317-.358.625-1.706-.906-2.383z"/><path fill="#EF9645" d="M23.439 21.471c-.297-.266-.372-.552-.417-.808-1.892.259-4.457.789-6.427 2.715-2.556 2.499-2.992 5.2-2.971 7.007.017 1.457.812 2.147 1.045-.012.292-2.706 2.254-8.063 8.784-8.58.028-.002.387-.024.591-.035 0 0-.352-.06-.605-.287z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/270c-1f3fb.svg b/public/emoji/270c-1f3fb.svg
index b675ead6407e7171d07840a97931ab3a52999f86..a95327abbee3fed76a74fd77d2fa2509bf9cc82f 100644
--- a/public/emoji/270c-1f3fb.svg
+++ b/public/emoji/270c-1f3fb.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#D89882" d="M8.916 23.891s1.737.109 1.94-1.808l.016-4.161.128-.005v-.96c0-.952.572-1.769 1.389-2.133-.242.331-.283 7.176-.283 7.176 0 1.104.789 1.891 1.894 1.891.755 0 1.265-.314 1.606-.932-.458-.526-.734-1.206-.734-1.959 0-1.312.781-2.141 1.128-2.222 0 0 .056-.07.082-.084.368-.306.804-.535 1.291-.634l.02.001.261-.155h6.928c1.306 0 1.558.486 1.538.475l.02.011c.591.305 1.076.773 1.404 1.35-.025-.031-.681-.633-1.543-.633s-8-.047-8-.047c-1.104 0-1.925.833-1.925 1.938s.82 1.922 1.925 1.922l5.5-.016c.276 0 .591.317.591.594 0 .276-.314.578-.591.578 0 0-1.558-.069-2.847 1.25-1.209 1.238-2.078 3.803-2.078 5.672 0 .276-.299.578-.575.578s-.582-.302-.582-.578c0-3.01.941-5.525 2.75-6.891H18c-1 0-1.273-.244-1.474-.359.001.001-.701 1.359-2.526 1.359-.237 0-1.628-.047-2.487-1.266-1.125 1.422-2.575 1.266-2.575 1.266-.733 0-1.566-.328-1.91-.833C7.015 24.185 7 24.095 7 24v-1.917c0 1.059.857 1.808 1.916 1.808z"/><path fill="#F7DECE" d="M24.581 18H18c-.208 0-.411.021-.607.061l-.073-.278-3.273-12.464s-.416-1.957 1.54-2.372c1.956-.416 2.372 1.54 2.372 1.54l3.097 11.569c.446.024.878.063 1.305.107l2.061-10.512s.188-1.991 2.18-1.804c1.991.188 1.803 2.179 1.803 2.179L26.34 17.187l-.221 1.194c-.464-.235-.982-.381-1.538-.381zM8.916 16h.168c1.059 0 1.916.858 1.916 1.917v4.166C11 23.142 10.143 24 9.084 24h-.168C7.857 24 7 23.142 7 22.083v-4.166C7 16.858 7.857 16 8.916 16zM15 21c0 .753.287 1.433.745 1.959C15.404 23.576 14.755 24 14 24c-1.104 0-2-.896-2-2v-6c0-.441.147-.845.389-1.176.364-.497.947-.824 1.611-.824 1.104 0 2 .896 2 2v2.778c-.609.549-1 1.336-1 2.222z"/><path fill="#F7DECE" d="M9.062 25c1.024 0 1.925-.526 2.45-1.322.123.183.271.346.431.497.049.046.102.085.155.128.119.099.243.189.377.269.066.039.132.074.201.108.14.069.285.125.435.172.067.021.131.046.2.062.223.052.452.086.689.086.236 0 .461-.036.681-.089.076-.018.148-.042.223-.066.137-.044.269-.099.396-.161.082-.04.163-.076.24-.124.164-.1.318-.213.46-.341.202-.184.384-.387.53-.618l-.003-.003c.2.115.473.402 1.473.402h2.537c-1.809 1.365-3.037 3.99-3.037 7 0 .276.224.5.5.5s.5-.224.5-.5c0-3.859 2.187-7 4.875-7h.125c.276 0 .5-.224.5-.5s-.224-.5-.5-.5H18c-1.104 0-2-.896-2-2s.896-2 2-2h8c.032 0 .062.008.094.01.073.003.145.01.216.022.062.01.122.021.182.037.064.017.125.035.187.058.062.022.122.047.181.075.057.027.111.058.165.09.056.033.109.067.161.107.052.038.102.08.15.124.046.041.09.084.132.13.027.029.051.06.075.091l.052.063c.038.051.073.102.106.156.034.056.064.112.093.171.03.062.056.125.08.19.012.031.029.06.039.093L29 24c.103.335.479 1.871.411 2.191C29.411 31 24.715 36 19 36c-6.537 0-11.844-5.231-11.986-11.734l.014.01c.515.445 1.176.724 1.91.724h.124z"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#E0AA94" d="M26.992 19.016c-.255-.255-.553-.47-.875-.636l-.4-1.356-8.012-.056-.307 1.091c-.467.095-1.041.389-1.393.718l-3.611-3.954c-.817.364-1.389 1.18-1.389 2.133v.96l-4 4.166.016 2.188 9.984 10.729s10.518-15.288 10.543-15.258c-.127-.224-.511-.703-.556-.725z"/><g fill="#F7DECE"><path d="M24.581 18H18c-.208 0-.411.021-.607.061l-.073-.278-3.273-12.464s-.416-1.957 1.54-2.372c1.956-.416 2.372 1.54 2.372 1.54l3.097 11.569c.446.024.878.063 1.305.107l2.061-10.512s.188-1.991 2.18-1.804c1.991.188 1.803 2.179 1.803 2.179L26.34 17.187l-.221 1.194c-.464-.235-.982-.381-1.538-.381zM8.916 16h.168c1.059 0 1.916.858 1.916 1.917v4.166C11 23.142 10.143 24 9.084 24h-.168C7.857 24 7 23.142 7 22.083v-4.166C7 16.858 7.857 16 8.916 16zm6.918 2.96l-.056.062C15.304 19.551 15 20.233 15 21c0 .063.013.123.018.185.044.678.308 1.292.728 1.774-.071.129-.163.243-.259.353-.366.417-.89.688-1.487.688-1.104 0-2-.896-2-2v-6c0-.441.147-.845.389-1.176.364-.497.947-.824 1.611-.824 1.104 0 2 .896 2 2v2.778c-.061.055-.109.123-.166.182z"/><path d="M9.062 25c1.024 0 1.925-.526 2.45-1.322.123.183.271.346.431.497 1.185 1.115 3.034 1.044 4.167-.086.152-.152.303-.305.419-.488l-.003-.003C16.727 23.713 17 24 18 24h2.537c-.37.279-.708.623-1.024 1-1.228 1.467-2.013 3.606-2.013 6 0 .276.224.5.5.5s.5-.224.5-.5c0-2.548.956-4.775 2.377-6 .732-.631 1.584-1 2.498-1 .713.079.847-1 .125-1H18c-1.104 0-2-.896-2-2s.896-2 2-2h8c.858 0 1.66.596 1.913 1.415L29 24c.103.335.479 1.871.411 2.191C29.411 31 24.715 36 19 36c-6.537 0-11.844-5.231-11.986-11.734l.014.01c.515.445 1.176.724 1.91.724h.124z"/></g></svg>
\ No newline at end of file
diff --git a/public/emoji/270c-1f3fc.svg b/public/emoji/270c-1f3fc.svg
index 4dcf981648012bd1ea6be3ab0aceb28f9128a09d..d748f2094827907a0140425373562d9a281c2cdf 100644
--- a/public/emoji/270c-1f3fc.svg
+++ b/public/emoji/270c-1f3fc.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#C68F6A" d="M8.916 23.891s1.737.109 1.94-1.808l.016-4.161.128-.005v-.96c0-.952.572-1.769 1.389-2.133-.242.331-.283 7.176-.283 7.176 0 1.104.789 1.891 1.894 1.891.755 0 1.265-.314 1.606-.932-.458-.526-.734-1.206-.734-1.959 0-1.312.781-2.141 1.128-2.222 0 0 .056-.07.082-.084.368-.306.804-.535 1.291-.634l.02.001.261-.155h6.928c1.306 0 1.558.486 1.538.475l.02.011c.591.305 1.076.773 1.404 1.35-.025-.031-.681-.633-1.543-.633s-8-.047-8-.047c-1.104 0-1.925.833-1.925 1.938s.82 1.922 1.925 1.922l5.5-.016c.276 0 .591.317.591.594 0 .276-.314.578-.591.578 0 0-1.558-.069-2.847 1.25-1.209 1.238-2.078 3.803-2.078 5.672 0 .276-.299.578-.575.578s-.582-.302-.582-.578c0-3.01.941-5.525 2.75-6.891H18c-1 0-1.273-.244-1.474-.359.001.001-.701 1.359-2.526 1.359-.237 0-1.628-.047-2.487-1.266-1.125 1.422-2.575 1.266-2.575 1.266-.733 0-1.566-.328-1.91-.833C7.015 24.185 7 24.095 7 24v-1.917c0 1.059.857 1.808 1.916 1.808z"/><path fill="#F3D2A2" d="M24.581 18H18c-.208 0-.411.021-.607.061l-.073-.278-3.273-12.464s-.416-1.957 1.54-2.372c1.956-.416 2.372 1.54 2.372 1.54l3.097 11.569c.446.024.878.063 1.305.107l2.061-10.512s.188-1.991 2.18-1.804c1.991.188 1.803 2.179 1.803 2.179L26.34 17.187l-.221 1.194c-.464-.235-.982-.381-1.538-.381zM8.916 16h.168c1.059 0 1.916.858 1.916 1.917v4.166C11 23.142 10.143 24 9.084 24h-.168C7.857 24 7 23.142 7 22.083v-4.166C7 16.858 7.857 16 8.916 16zM15 21c0 .753.287 1.433.745 1.959C15.404 23.576 14.755 24 14 24c-1.104 0-2-.896-2-2v-6c0-.441.147-.845.389-1.176.364-.497.947-.824 1.611-.824 1.104 0 2 .896 2 2v2.778c-.609.549-1 1.336-1 2.222z"/><path fill="#F3D2A2" d="M9.062 25c1.024 0 1.925-.526 2.45-1.322.123.183.271.346.431.497.049.046.102.085.155.128.119.099.243.189.377.269.066.039.132.074.201.108.14.069.285.125.435.172.067.021.131.046.2.062.223.052.452.086.689.086.236 0 .461-.036.681-.089.076-.018.148-.042.223-.066.137-.044.269-.099.396-.161.082-.04.163-.076.24-.124.164-.1.318-.213.46-.341.202-.184.384-.387.53-.618l-.003-.003c.2.115.473.402 1.473.402h2.537c-1.809 1.365-3.037 3.99-3.037 7 0 .276.224.5.5.5s.5-.224.5-.5c0-3.859 2.187-7 4.875-7h.125c.276 0 .5-.224.5-.5s-.224-.5-.5-.5H18c-1.104 0-2-.896-2-2s.896-2 2-2h8c.032 0 .062.008.094.01.073.003.145.01.216.022.062.01.122.021.182.037.064.017.125.035.187.058.062.022.122.047.181.075.057.027.111.058.165.09.056.033.109.067.161.107.052.038.102.08.15.124.046.041.09.084.132.13.027.029.051.06.075.091l.052.063c.038.051.073.102.106.156.034.056.064.112.093.171.03.062.056.125.08.19.012.031.029.06.039.093L29 24c.103.335.479 1.871.411 2.191C29.411 31 24.715 36 19 36c-6.537 0-11.844-5.231-11.986-11.734l.014.01c.515.445 1.176.724 1.91.724h.124z"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#D2A077" d="M26.992 19.016c-.255-.255-.553-.47-.875-.636l-.4-1.356-8.012-.056-.307 1.091c-.467.095-1.041.389-1.393.718l-3.611-3.954c-.817.364-1.389 1.18-1.389 2.133v.96l-4 4.166.016 2.188 9.984 10.729s10.518-15.288 10.543-15.258c-.127-.224-.511-.703-.556-.725z"/><g fill="#F3D2A2"><path d="M24.581 18H18c-.208 0-.411.021-.607.061l-.073-.278-3.273-12.464s-.416-1.957 1.54-2.372c1.956-.416 2.372 1.54 2.372 1.54l3.097 11.569c.446.024.878.063 1.305.107l2.061-10.512s.188-1.991 2.18-1.804c1.991.188 1.803 2.179 1.803 2.179L26.34 17.187l-.221 1.194c-.464-.235-.982-.381-1.538-.381zM8.916 16h.168c1.059 0 1.916.858 1.916 1.917v4.166C11 23.142 10.143 24 9.084 24h-.168C7.857 24 7 23.142 7 22.083v-4.166C7 16.858 7.857 16 8.916 16zm6.918 2.96l-.056.062C15.304 19.551 15 20.233 15 21c0 .063.013.123.018.185.044.678.308 1.292.728 1.774-.071.129-.163.243-.259.353-.366.417-.89.688-1.487.688-1.104 0-2-.896-2-2v-6c0-.441.147-.845.389-1.176.364-.497.947-.824 1.611-.824 1.104 0 2 .896 2 2v2.778c-.061.055-.109.123-.166.182z"/><path d="M9.062 25c1.024 0 1.925-.526 2.45-1.322.123.183.271.346.431.497 1.185 1.115 3.034 1.044 4.167-.086.152-.152.303-.305.419-.488l-.003-.003C16.727 23.713 17 24 18 24h2.537c-.37.279-.708.623-1.024 1-1.228 1.467-2.013 3.606-2.013 6 0 .276.224.5.5.5s.5-.224.5-.5c0-2.548.956-4.775 2.377-6 .732-.631 1.584-1 2.498-1 .713.079.847-1 .125-1H18c-1.104 0-2-.896-2-2s.896-2 2-2h8c.858 0 1.66.596 1.913 1.415L29 24c.103.335.479 1.871.411 2.191C29.411 31 24.715 36 19 36c-6.537 0-11.844-5.231-11.986-11.734l.014.01c.515.445 1.176.724 1.91.724h.124z"/></g></svg>
\ No newline at end of file
diff --git a/public/emoji/270c-1f3fd.svg b/public/emoji/270c-1f3fd.svg
index b00e6af96927ced77258e61f4091a444efa7c47e..f93272ac3691d736ea74a782a5a371b93832431b 100644
--- a/public/emoji/270c-1f3fd.svg
+++ b/public/emoji/270c-1f3fd.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#AA8052" d="M8.916 23.891s1.737.109 1.94-1.808l.016-4.161.128-.005v-.96c0-.952.572-1.769 1.389-2.133-.242.331-.283 7.176-.283 7.176 0 1.104.789 1.891 1.894 1.891.755 0 1.265-.314 1.606-.932-.458-.526-.734-1.206-.734-1.959 0-1.312.781-2.141 1.128-2.222 0 0 .056-.07.082-.084.368-.306.804-.535 1.291-.634l.02.001.261-.155h6.928c1.306 0 1.558.486 1.538.475l.02.011c.591.305 1.076.773 1.404 1.35-.025-.031-.681-.633-1.543-.633s-8-.047-8-.047c-1.104 0-1.925.833-1.925 1.938s.82 1.922 1.925 1.922l5.5-.016c.276 0 .591.317.591.594 0 .276-.314.578-.591.578 0 0-1.558-.069-2.847 1.25-1.209 1.238-2.078 3.803-2.078 5.672 0 .276-.299.578-.575.578s-.582-.302-.582-.578c0-3.01.941-5.525 2.75-6.891H18c-1 0-1.273-.244-1.474-.359.001.001-.701 1.359-2.526 1.359-.237 0-1.628-.047-2.487-1.266-1.125 1.422-2.575 1.266-2.575 1.266-.733 0-1.566-.328-1.91-.833C7.015 24.185 7 24.095 7 24v-1.917c0 1.059.857 1.808 1.916 1.808z"/><path fill="#D5AB88" d="M24.581 18H18c-.208 0-.411.021-.607.061l-.073-.278-3.273-12.464s-.416-1.957 1.54-2.372c1.956-.416 2.372 1.54 2.372 1.54l3.097 11.569c.446.024.878.063 1.305.107l2.061-10.512s.188-1.991 2.18-1.804c1.991.188 1.803 2.179 1.803 2.179L26.34 17.187l-.221 1.194c-.464-.235-.982-.381-1.538-.381zM8.916 16h.168c1.059 0 1.916.858 1.916 1.917v4.166C11 23.142 10.143 24 9.084 24h-.168C7.857 24 7 23.142 7 22.083v-4.166C7 16.858 7.857 16 8.916 16zM15 21c0 .753.287 1.433.745 1.959C15.404 23.576 14.755 24 14 24c-1.104 0-2-.896-2-2v-6c0-.441.147-.845.389-1.176.364-.497.947-.824 1.611-.824 1.104 0 2 .896 2 2v2.778c-.609.549-1 1.336-1 2.222z"/><path fill="#D5AB88" d="M9.062 25c1.024 0 1.925-.526 2.45-1.322.123.183.271.346.431.497.049.046.102.085.155.128.119.099.243.189.377.269.066.039.132.074.201.108.14.069.285.125.435.172.067.021.131.046.2.062.223.052.452.086.689.086.236 0 .461-.036.681-.089.076-.018.148-.042.223-.066.137-.044.269-.099.396-.161.082-.04.163-.076.24-.124.164-.1.318-.213.46-.341.202-.184.384-.387.53-.618l-.003-.003c.2.115.473.402 1.473.402h2.537c-1.809 1.365-3.037 3.99-3.037 7 0 .276.224.5.5.5s.5-.224.5-.5c0-3.859 2.187-7 4.875-7h.125c.276 0 .5-.224.5-.5s-.224-.5-.5-.5H18c-1.104 0-2-.896-2-2s.896-2 2-2h8c.032 0 .062.008.094.01.073.003.145.01.216.022.062.01.122.021.182.037.064.017.125.035.187.058.062.022.122.047.181.075.057.027.111.058.165.09.056.033.109.067.161.107.052.038.102.08.15.124.046.041.09.084.132.13.027.029.051.06.075.091l.052.063c.038.051.073.102.106.156.034.056.064.112.093.171.03.062.056.125.08.19.012.031.029.06.039.093L29 24c.103.335.479 1.871.411 2.191C29.411 31 24.715 36 19 36c-6.537 0-11.844-5.231-11.986-11.734l.014.01c.515.445 1.176.724 1.91.724h.124z"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#B78B60" d="M26.992 19.016c-.255-.255-.553-.47-.875-.636l-.4-1.356-8.012-.056-.307 1.091c-.467.095-1.041.389-1.393.718l-3.611-3.954c-.817.364-1.389 1.18-1.389 2.133v.96l-4 4.166.016 2.188 9.984 10.729s10.518-15.288 10.543-15.258c-.127-.224-.511-.703-.556-.725z"/><g fill="#D4AB88"><path d="M24.581 18H18c-.208 0-.411.021-.607.061l-.073-.278-3.273-12.464s-.416-1.957 1.54-2.372c1.956-.416 2.372 1.54 2.372 1.54l3.097 11.569c.446.024.878.063 1.305.107l2.061-10.512s.188-1.991 2.18-1.804c1.991.188 1.803 2.179 1.803 2.179L26.34 17.187l-.221 1.194c-.464-.235-.982-.381-1.538-.381zM8.916 16h.168c1.059 0 1.916.858 1.916 1.917v4.166C11 23.142 10.143 24 9.084 24h-.168C7.857 24 7 23.142 7 22.083v-4.166C7 16.858 7.857 16 8.916 16zm6.918 2.96l-.056.062C15.304 19.551 15 20.233 15 21c0 .063.013.123.018.185.044.678.308 1.292.728 1.774-.071.129-.163.243-.259.353-.366.417-.89.688-1.487.688-1.104 0-2-.896-2-2v-6c0-.441.147-.845.389-1.176.364-.497.947-.824 1.611-.824 1.104 0 2 .896 2 2v2.778c-.061.055-.109.123-.166.182z"/><path d="M9.062 25c1.024 0 1.925-.526 2.45-1.322.123.183.271.346.431.497 1.185 1.115 3.034 1.044 4.167-.086.152-.152.303-.305.419-.488l-.003-.003C16.727 23.713 17 24 18 24h2.537c-.37.279-.708.623-1.024 1-1.228 1.467-2.013 3.606-2.013 6 0 .276.224.5.5.5s.5-.224.5-.5c0-2.548.956-4.775 2.377-6 .732-.631 1.584-1 2.498-1 .713.079.847-1 .125-1H18c-1.104 0-2-.896-2-2s.896-2 2-2h8c.858 0 1.66.596 1.913 1.415L29 24c.103.335.479 1.871.411 2.191C29.411 31 24.715 36 19 36c-6.537 0-11.844-5.231-11.986-11.734l.014.01c.515.445 1.176.724 1.91.724h.124z"/></g></svg>
\ No newline at end of file
diff --git a/public/emoji/270c-1f3fe.svg b/public/emoji/270c-1f3fe.svg
index 2572d7264d88247e68036a630bdbc8eaf28c0ad9..aca5302c75d1228b8f53c032c5aed61d13126a1a 100644
--- a/public/emoji/270c-1f3fe.svg
+++ b/public/emoji/270c-1f3fe.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#845636" d="M8.916 23.891s1.737.109 1.94-1.808l.016-4.161.128-.005v-.96c0-.952.572-1.769 1.389-2.133-.242.331-.283 7.176-.283 7.176 0 1.104.789 1.891 1.894 1.891.755 0 1.265-.314 1.606-.932-.458-.526-.734-1.206-.734-1.959 0-1.312.781-2.141 1.128-2.222 0 0 .056-.07.082-.084.368-.306.804-.535 1.291-.634l.02.001.261-.155h6.928c1.306 0 1.558.486 1.538.475l.02.011c.591.305 1.076.773 1.404 1.35-.025-.031-.681-.633-1.543-.633s-8-.047-8-.047c-1.104 0-1.925.833-1.925 1.938s.82 1.922 1.925 1.922l5.5-.016c.276 0 .591.317.591.594 0 .276-.314.578-.591.578 0 0-1.558-.069-2.847 1.25-1.209 1.238-2.078 3.803-2.078 5.672 0 .276-.299.578-.575.578s-.582-.302-.582-.578c0-3.01.941-5.525 2.75-6.891H18c-1 0-1.273-.244-1.474-.359.001.001-.701 1.359-2.526 1.359-.237 0-1.628-.047-2.487-1.266-1.125 1.422-2.575 1.266-2.575 1.266-.733 0-1.566-.328-1.91-.833C7.015 24.185 7 24.095 7 24v-1.917c0 1.059.857 1.808 1.916 1.808z"/><path fill="#AF7E57" d="M24.581 18H18c-.208 0-.411.021-.607.061l-.073-.278-3.273-12.464s-.416-1.957 1.54-2.372c1.956-.416 2.372 1.54 2.372 1.54l3.097 11.569c.446.024.878.063 1.305.107l2.061-10.512s.188-1.991 2.18-1.804c1.991.188 1.803 2.179 1.803 2.179L26.34 17.187l-.221 1.194c-.464-.235-.982-.381-1.538-.381zM8.916 16h.168c1.059 0 1.916.858 1.916 1.917v4.166C11 23.142 10.143 24 9.084 24h-.168C7.857 24 7 23.142 7 22.083v-4.166C7 16.858 7.857 16 8.916 16zM15 21c0 .753.287 1.433.745 1.959C15.404 23.576 14.755 24 14 24c-1.104 0-2-.896-2-2v-6c0-.441.147-.845.389-1.176.364-.497.947-.824 1.611-.824 1.104 0 2 .896 2 2v2.778c-.609.549-1 1.336-1 2.222z"/><path fill="#AF7E57" d="M9.062 25c1.024 0 1.925-.526 2.45-1.322.123.183.271.346.431.497.049.046.102.085.155.128.119.099.243.189.377.269.066.039.132.074.201.108.14.069.285.125.435.172.067.021.131.046.2.062.223.052.452.086.689.086.236 0 .461-.036.681-.089.076-.018.148-.042.223-.066.137-.044.269-.099.396-.161.082-.04.163-.076.24-.124.164-.1.318-.213.46-.341.202-.184.384-.387.53-.618l-.003-.003c.2.115.473.402 1.473.402h2.537c-1.809 1.365-3.037 3.99-3.037 7 0 .276.224.5.5.5s.5-.224.5-.5c0-3.859 2.187-7 4.875-7h.125c.276 0 .5-.224.5-.5s-.224-.5-.5-.5H18c-1.104 0-2-.896-2-2s.896-2 2-2h8c.032 0 .062.008.094.01.073.003.145.01.216.022.062.01.122.021.182.037.064.017.125.035.187.058.062.022.122.047.181.075.057.027.111.058.165.09.056.033.109.067.161.107.052.038.102.08.15.124.046.041.09.084.132.13.027.029.051.06.075.091l.052.063c.038.051.073.102.106.156.034.056.064.112.093.171.03.062.056.125.08.19.012.031.029.06.039.093L29 24c.103.335.479 1.871.411 2.191C29.411 31 24.715 36 19 36c-6.537 0-11.844-5.231-11.986-11.734l.014.01c.515.445 1.176.724 1.91.724h.124z"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#90603E" d="M26.992 19.016c-.255-.255-.553-.47-.875-.636l-.4-1.356-8.012-.056-.307 1.091c-.467.095-1.041.389-1.393.718l-3.611-3.954c-.817.364-1.389 1.18-1.389 2.133v.96l-4 4.166.016 2.188 9.984 10.729s10.518-15.288 10.543-15.258c-.127-.224-.511-.703-.556-.725z"/><g fill="#AF7E57"><path d="M24.581 18H18c-.208 0-.411.021-.607.061l-.073-.278-3.273-12.464s-.416-1.957 1.54-2.372c1.956-.416 2.372 1.54 2.372 1.54l3.097 11.569c.446.024.878.063 1.305.107l2.061-10.512s.188-1.991 2.18-1.804c1.991.188 1.803 2.179 1.803 2.179L26.34 17.187l-.221 1.194c-.464-.235-.982-.381-1.538-.381zM8.916 16h.168c1.059 0 1.916.858 1.916 1.917v4.166C11 23.142 10.143 24 9.084 24h-.168C7.857 24 7 23.142 7 22.083v-4.166C7 16.858 7.857 16 8.916 16zm6.918 2.96l-.056.062C15.304 19.551 15 20.233 15 21c0 .063.013.123.018.185.044.678.308 1.292.728 1.774-.071.129-.163.243-.259.353-.366.417-.89.688-1.487.688-1.104 0-2-.896-2-2v-6c0-.441.147-.845.389-1.176.364-.497.947-.824 1.611-.824 1.104 0 2 .896 2 2v2.778c-.061.055-.109.123-.166.182z"/><path d="M9.062 25c1.024 0 1.925-.526 2.45-1.322.123.183.271.346.431.497 1.185 1.115 3.034 1.044 4.167-.086.152-.152.303-.305.419-.488l-.003-.003C16.727 23.713 17 24 18 24h2.537c-.37.279-.708.623-1.024 1-1.228 1.467-2.013 3.606-2.013 6 0 .276.224.5.5.5s.5-.224.5-.5c0-2.548.956-4.775 2.377-6 .732-.631 1.584-1 2.498-1 .713.079.847-1 .125-1H18c-1.104 0-2-.896-2-2s.896-2 2-2h8c.858 0 1.66.596 1.913 1.415L29 24c.103.335.479 1.871.411 2.191C29.411 31 24.715 36 19 36c-6.537 0-11.844-5.231-11.986-11.734l.014.01c.515.445 1.176.724 1.91.724h.124z"/></g></svg>
\ No newline at end of file
diff --git a/public/emoji/270c-1f3ff.svg b/public/emoji/270c-1f3ff.svg
index 82b6bdb6af8cc5eea707d90c63ddcd0b1cead98a..3fa9742964d015c2f2ac9ab09de6cb1956e908bc 100644
--- a/public/emoji/270c-1f3ff.svg
+++ b/public/emoji/270c-1f3ff.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#543226" d="M8.916 23.891s1.737.109 1.94-1.808l.016-4.161.128-.005v-.96c0-.952.572-1.769 1.389-2.133-.242.331-.283 7.176-.283 7.176 0 1.104.789 1.891 1.894 1.891.755 0 1.265-.314 1.606-.932-.458-.526-.734-1.206-.734-1.959 0-1.312.781-2.141 1.128-2.222 0 0 .056-.07.082-.084.368-.306.804-.535 1.291-.634l.02.001.261-.155h6.928c1.306 0 1.558.486 1.538.475l.02.011c.591.305 1.076.773 1.404 1.35-.025-.031-.681-.633-1.543-.633s-8-.047-8-.047c-1.104 0-1.925.833-1.925 1.938s.82 1.922 1.925 1.922l5.5-.016c.276 0 .591.317.591.594 0 .276-.314.578-.591.578 0 0-1.558-.069-2.847 1.25-1.209 1.238-2.078 3.803-2.078 5.672 0 .276-.299.578-.575.578s-.582-.302-.582-.578c0-3.01.941-5.525 2.75-6.891H18c-1 0-1.273-.244-1.474-.359.001.001-.701 1.359-2.526 1.359-.237 0-1.628-.047-2.487-1.266-1.125 1.422-2.575 1.266-2.575 1.266-.733 0-1.566-.328-1.91-.833C7.015 24.185 7 24.095 7 24v-1.917c0 1.059.857 1.808 1.916 1.808z"/><path fill="#7C533E" d="M24.581 18H18c-.208 0-.411.021-.607.061l-.073-.278-3.273-12.464s-.416-1.957 1.54-2.372c1.956-.416 2.372 1.54 2.372 1.54l3.097 11.569c.446.024.878.063 1.305.107l2.061-10.512s.188-1.991 2.18-1.804c1.991.188 1.803 2.179 1.803 2.179L26.34 17.187l-.221 1.194c-.464-.235-.982-.381-1.538-.381zM8.916 16h.168c1.059 0 1.916.858 1.916 1.917v4.166C11 23.142 10.143 24 9.084 24h-.168C7.857 24 7 23.142 7 22.083v-4.166C7 16.858 7.857 16 8.916 16zM15 21c0 .753.287 1.433.745 1.959C15.404 23.576 14.755 24 14 24c-1.104 0-2-.896-2-2v-6c0-.441.147-.845.389-1.176.364-.497.947-.824 1.611-.824 1.104 0 2 .896 2 2v2.778c-.609.549-1 1.336-1 2.222z"/><path fill="#7C533E" d="M9.062 25c1.024 0 1.925-.526 2.45-1.322.123.183.271.346.431.497.049.046.102.085.155.128.119.099.243.189.377.269.066.039.132.074.201.108.14.069.285.125.435.172.067.021.131.046.2.062.223.052.452.086.689.086.236 0 .461-.036.681-.089.076-.018.148-.042.223-.066.137-.044.269-.099.396-.161.082-.04.163-.076.24-.124.164-.1.318-.213.46-.341.202-.184.384-.387.53-.618l-.003-.003c.2.115.473.402 1.473.402h2.537c-1.809 1.365-3.037 3.99-3.037 7 0 .276.224.5.5.5s.5-.224.5-.5c0-3.859 2.187-7 4.875-7h.125c.276 0 .5-.224.5-.5s-.224-.5-.5-.5H18c-1.104 0-2-.896-2-2s.896-2 2-2h8c.032 0 .062.008.094.01.073.003.145.01.216.022.062.01.122.021.182.037.064.017.125.035.187.058.062.022.122.047.181.075.057.027.111.058.165.09.056.033.109.067.161.107.052.038.102.08.15.124.046.041.09.084.132.13.027.029.051.06.075.091l.052.063c.038.051.073.102.106.156.034.056.064.112.093.171.03.062.056.125.08.19.012.031.029.06.039.093L29 24c.103.335.479 1.871.411 2.191C29.411 31 24.715 36 19 36c-6.537 0-11.844-5.231-11.986-11.734l.014.01c.515.445 1.176.724 1.91.724h.124z"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#583529" d="M26.992 19.016c-.255-.255-.553-.47-.875-.636l-.4-1.356-8.012-.056-.307 1.091c-.467.095-1.041.389-1.393.718l-3.611-3.954c-.817.364-1.389 1.18-1.389 2.133v.96l-4 4.166.016 2.188 9.984 10.729s10.518-15.288 10.543-15.258c-.127-.224-.511-.703-.556-.725z"/><g fill="#7C533E"><path d="M24.581 18H18c-.208 0-.411.021-.607.061l-.073-.278-3.273-12.464s-.416-1.957 1.54-2.372c1.956-.416 2.372 1.54 2.372 1.54l3.097 11.569c.446.024.878.063 1.305.107l2.061-10.512s.188-1.991 2.18-1.804c1.991.188 1.803 2.179 1.803 2.179L26.34 17.187l-.221 1.194c-.464-.235-.982-.381-1.538-.381zM8.916 16h.168c1.059 0 1.916.858 1.916 1.917v4.166C11 23.142 10.143 24 9.084 24h-.168C7.857 24 7 23.142 7 22.083v-4.166C7 16.858 7.857 16 8.916 16zm6.918 2.96l-.056.062C15.304 19.551 15 20.233 15 21c0 .063.013.123.018.185.044.678.308 1.292.728 1.774-.071.129-.163.243-.259.353-.366.417-.89.688-1.487.688-1.104 0-2-.896-2-2v-6c0-.441.147-.845.389-1.176.364-.497.947-.824 1.611-.824 1.104 0 2 .896 2 2v2.778c-.061.055-.109.123-.166.182z"/><path d="M9.062 25c1.024 0 1.925-.526 2.45-1.322.123.183.271.346.431.497 1.185 1.115 3.034 1.044 4.167-.086.152-.152.303-.305.419-.488l-.003-.003C16.727 23.713 17 24 18 24h2.537c-.37.279-.708.623-1.024 1-1.228 1.467-2.013 3.606-2.013 6 0 .276.224.5.5.5s.5-.224.5-.5c0-2.548.956-4.775 2.377-6 .732-.631 1.584-1 2.498-1 .713.079.847-1 .125-1H18c-1.104 0-2-.896-2-2s.896-2 2-2h8c.858 0 1.66.596 1.913 1.415L29 24c.103.335.479 1.871.411 2.191C29.411 31 24.715 36 19 36c-6.537 0-11.844-5.231-11.986-11.734l.014.01c.515.445 1.176.724 1.91.724h.124z"/></g></svg>
\ No newline at end of file
diff --git a/public/emoji/270c.svg b/public/emoji/270c.svg
index 552410befbe9d217644caaf81b2f609371f76158..730545f576fc371ca5eeb4823e49aaa8ebdcbc25 100644
--- a/public/emoji/270c.svg
+++ b/public/emoji/270c.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#EF9645" d="M8.916 23.891s1.737.109 1.94-1.808l.016-4.161.128-.005v-.96c0-.952.572-1.769 1.389-2.133-.242.331-.283 7.176-.283 7.176 0 1.104.789 1.891 1.894 1.891.755 0 1.265-.314 1.606-.932-.458-.526-.734-1.206-.734-1.959 0-1.312.781-2.141 1.128-2.222 0 0 .056-.07.082-.084.368-.306.804-.535 1.291-.634l.02.001.261-.155h6.928c1.306 0 1.558.486 1.538.475l.02.011c.591.305 1.076.773 1.404 1.35-.025-.031-.681-.633-1.543-.633s-8-.047-8-.047c-1.104 0-1.925.833-1.925 1.938s.82 1.922 1.925 1.922l5.5-.016c.276 0 .591.317.591.594 0 .276-.314.578-.591.578 0 0-1.558-.069-2.847 1.25-1.209 1.238-2.078 3.803-2.078 5.672 0 .276-.299.578-.575.578s-.582-.302-.582-.578c0-3.01.941-5.525 2.75-6.891H18c-1 0-1.273-.244-1.474-.359.001.001-.701 1.359-2.526 1.359-.237 0-1.628-.047-2.487-1.266-1.125 1.422-2.575 1.266-2.575 1.266-.733 0-1.566-.328-1.91-.833C7.015 24.185 7 24.095 7 24v-1.917c0 1.059.857 1.808 1.916 1.808z"/><path fill="#FFDC5D" d="M24.581 18H18c-.208 0-.411.021-.607.061l-.073-.278-3.273-12.464s-.416-1.957 1.54-2.372c1.956-.416 2.372 1.54 2.372 1.54l3.097 11.569c.446.024.878.063 1.305.107l2.061-10.512s.188-1.991 2.18-1.804c1.991.188 1.803 2.179 1.803 2.179L26.34 17.187l-.221 1.194c-.464-.235-.982-.381-1.538-.381zM8.916 16h.168c1.059 0 1.916.858 1.916 1.917v4.166C11 23.142 10.143 24 9.084 24h-.168C7.857 24 7 23.142 7 22.083v-4.166C7 16.858 7.857 16 8.916 16zM15 21c0 .753.287 1.433.745 1.959C15.404 23.576 14.755 24 14 24c-1.104 0-2-.896-2-2v-6c0-.441.147-.845.389-1.176.364-.497.947-.824 1.611-.824 1.104 0 2 .896 2 2v2.778c-.609.549-1 1.336-1 2.222z"/><path fill="#FFDC5D" d="M9.062 25c1.024 0 1.925-.526 2.45-1.322.123.183.271.346.431.497.049.046.102.085.155.128.119.099.243.189.377.269.066.039.132.074.201.108.14.069.285.125.435.172.067.021.131.046.2.062.223.052.452.086.689.086.236 0 .461-.036.681-.089.076-.018.148-.042.223-.066.137-.044.269-.099.396-.161.082-.04.163-.076.24-.124.164-.1.318-.213.46-.341.202-.184.384-.387.53-.618l-.003-.003c.2.115.473.402 1.473.402h2.537c-1.809 1.365-3.037 3.99-3.037 7 0 .276.224.5.5.5s.5-.224.5-.5c0-3.859 2.187-7 4.875-7h.125c.276 0 .5-.224.5-.5s-.224-.5-.5-.5H18c-1.104 0-2-.896-2-2s.896-2 2-2h8c.032 0 .062.008.094.01.073.003.145.01.216.022.062.01.122.021.182.037.064.017.125.035.187.058.062.022.122.047.181.075.057.027.111.058.165.09.056.033.109.067.161.107.052.038.102.08.15.124.046.041.09.084.132.13.027.029.051.06.075.091l.052.063c.038.051.073.102.106.156.034.056.064.112.093.171.03.062.056.125.08.19.012.031.029.06.039.093L29 24c.103.335.479 1.871.411 2.191C29.411 31 24.715 36 19 36c-6.537 0-11.844-5.231-11.986-11.734l.014.01c.515.445 1.176.724 1.91.724h.124z"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#EF9645" d="M26.992 19.016c-.255-.255-.553-.47-.875-.636l-.4-1.356-8.012-.056-.307 1.091c-.467.095-1.041.389-1.393.718l-3.611-3.954c-.817.364-1.389 1.18-1.389 2.133v.96l-4 4.166.016 2.188 9.984 10.729s10.518-15.288 10.543-15.258c-.127-.224-.511-.703-.556-.725z"/><g fill="#FFDC5D"><path d="M24.581 18H18c-.208 0-.411.021-.607.061l-.073-.278-3.273-12.464s-.416-1.957 1.54-2.372c1.956-.416 2.372 1.54 2.372 1.54l3.097 11.569c.446.024.878.063 1.305.107l2.061-10.512s.188-1.991 2.18-1.804c1.991.188 1.803 2.179 1.803 2.179L26.34 17.187l-.221 1.194c-.464-.235-.982-.381-1.538-.381zM8.916 16h.168c1.059 0 1.916.858 1.916 1.917v4.166C11 23.142 10.143 24 9.084 24h-.168C7.857 24 7 23.142 7 22.083v-4.166C7 16.858 7.857 16 8.916 16zm6.918 2.96l-.056.062C15.304 19.551 15 20.233 15 21c0 .063.013.123.018.185.044.678.308 1.292.728 1.774-.071.129-.163.243-.259.353-.366.417-.89.688-1.487.688-1.104 0-2-.896-2-2v-6c0-.441.147-.845.389-1.176.364-.497.947-.824 1.611-.824 1.104 0 2 .896 2 2v2.778c-.061.055-.109.123-.166.182z"/><path d="M9.062 25c1.024 0 1.925-.526 2.45-1.322.123.183.271.346.431.497 1.185 1.115 3.034 1.044 4.167-.086.152-.152.303-.305.419-.488l-.003-.003C16.727 23.713 17 24 18 24h2.537c-.37.279-.708.623-1.024 1-1.228 1.467-2.013 3.606-2.013 6 0 .276.224.5.5.5s.5-.224.5-.5c0-2.548.956-4.775 2.377-6 .732-.631 1.584-1 2.498-1 .713.079.847-1 .125-1H18c-1.104 0-2-.896-2-2s.896-2 2-2h8c.858 0 1.66.596 1.913 1.415L29 24c.103.335.479 1.871.411 2.191C29.411 31 24.715 36 19 36c-6.537 0-11.844-5.231-11.986-11.734l.014.01c.515.445 1.176.724 1.91.724h.124z"/></g></svg>
\ No newline at end of file
diff --git a/public/emoji/2712.svg b/public/emoji/2712.svg
index 478ac14c63c51338e579b5c6c056a3ac7949b7ef..8eaec690e2ee3ef2eb67ae8a7af04afd0db84dac 100644
--- a/public/emoji/2712.svg
+++ b/public/emoji/2712.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#99AAB5" d="M31.986 32.729c-.292.167-.626.271-.987.271-1.104 0-2-.896-2-2s.896-2 2-2 2 .896 2 2c0 .361-.104.695-.271.987l3.146 3.146L34.999 28l-9-7-5 5 7 9 7.134.876-3.147-3.147z"/><path fill="#66757F" d="M13.643 5.308c1.151 1.151 1.151 3.016 0 4.167l-4.167 4.168c-1.151 1.15-3.018 1.15-4.167 0L1.141 9.475c-1.15-1.151-1.15-3.016 0-4.167l4.167-4.167c1.15-1.151 3.016-1.151 4.167 0l4.168 4.167z"/><path fill="#292F33" d="M26.643 18.309L9.44 1.105 1.107 9.44l17.202 17.202c1.15 1.15 3.016 1.15 4.168 0l4.166-4.168c1.15-1.15 1.15-3.015 0-4.165z"/><path fill="#66757F" d="M8.225 16.56l8.334-8.335 2.124 2.125-8.333 8.334z"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#99AAB5" d="M31.986 32.729c-.292.167-.626.271-.987.271-1.104 0-2-.896-2-2s.896-2 2-2 2 .896 2 2c0 .361-.104.695-.271.987l3.146 3.146L34.999 28l-9-7-5 5 7 9 7.134.876-3.147-3.147z"/><path fill="#66757F" d="M13.643 5.308c1.151 1.151 1.151 3.016 0 4.167l-4.167 4.168c-1.151 1.15-3.018 1.15-4.167 0L1.141 9.475c-1.15-1.151-1.15-3.016 0-4.167l4.167-4.167c1.15-1.151 3.016-1.151 4.167 0l4.168 4.167z"/><path fill="#31373D" d="M26.643 18.309L9.44 1.105 1.107 9.44l17.202 17.202c1.15 1.15 3.016 1.15 4.168 0l4.166-4.168c1.15-1.15 1.15-3.015 0-4.165z"/><path fill="#66757F" d="M8.225 16.56l8.334-8.335 2.124 2.125-8.333 8.334z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/2714.svg b/public/emoji/2714.svg
index c50efc0bb8d601e2a4b25893a8118e712517a09d..17972389ea0085268e7b89a15455f8f168ec652a 100644
--- a/public/emoji/2714.svg
+++ b/public/emoji/2714.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#292F33" d="M34.459 1.375c-1.391-.902-3.248-.506-4.149.884L13.5 28.17l-8.198-7.58c-1.217-1.125-3.114-1.051-4.239.166-1.125 1.216-1.051 3.115.166 4.239l10.764 9.952s.309.266.452.359c.504.328 1.07.484 1.63.484.982 0 1.945-.482 2.52-1.368L35.343 5.524c.902-1.39.506-3.248-.884-4.149z"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#31373D" d="M34.459 1.375c-1.391-.902-3.248-.506-4.149.884L13.5 28.17l-8.198-7.58c-1.217-1.125-3.114-1.051-4.239.166-1.125 1.216-1.051 3.115.166 4.239l10.764 9.952s.309.266.452.359c.504.328 1.07.484 1.63.484.982 0 1.945-.482 2.52-1.368L35.343 5.524c.902-1.39.506-3.248-.884-4.149z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/2716.svg b/public/emoji/2716.svg
index 57b136e3ab5f9cae36979615f448de584c5d826c..d102373015de9100cbb9c9f5bb505b08581f9342 100644
--- a/public/emoji/2716.svg
+++ b/public/emoji/2716.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#292F33" d="M22.238 18.004l9.883-9.883c1.172-1.171 1.172-3.071 0-4.243-1.172-1.171-3.07-1.171-4.242 0l-9.883 9.883-9.883-9.882c-1.171-1.172-3.071-1.172-4.243 0-1.171 1.171-1.171 3.071 0 4.243l9.883 9.882-9.907 9.907c-1.171 1.171-1.171 3.071 0 4.242.585.586 1.354.879 2.121.879s1.536-.293 2.122-.879l9.906-9.906 9.882 9.882c.586.586 1.354.879 2.121.879s1.535-.293 2.121-.879c1.172-1.171 1.172-3.071 0-4.242l-9.881-9.883z"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#31373D" d="M22.238 18.004l9.883-9.883c1.172-1.171 1.172-3.071 0-4.243-1.172-1.171-3.07-1.171-4.242 0l-9.883 9.883-9.883-9.882c-1.171-1.172-3.071-1.172-4.243 0-1.171 1.171-1.171 3.071 0 4.243l9.883 9.882-9.907 9.907c-1.171 1.171-1.171 3.071 0 4.242.585.586 1.354.879 2.121.879s1.536-.293 2.122-.879l9.906-9.906 9.882 9.882c.586.586 1.354.879 2.121.879s1.535-.293 2.121-.879c1.172-1.171 1.172-3.071 0-4.242l-9.881-9.883z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/2734.svg b/public/emoji/2734.svg
index 0b92b0987ef4a519ab7ba8c5e5fda21957f39cb3..17ed819875dcf52b477b27a5290f75b367b778c0 100644
--- a/public/emoji/2734.svg
+++ b/public/emoji/2734.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#292F33" d="M13.574 11.235c1.335.971 2.631.43 2.882-1.201l1.088-7.069c.251-1.631.661-1.631.912 0l1.088 7.069c.251 1.631 1.548 2.171 2.882 1.201l6.148-4.471c1.334-.971 1.632-.673.661.662l-4.471 6.147c-.971 1.335-.431 2.631 1.2 2.882l7.07 1.088c1.631.251 1.631.661 0 .912l-7.07 1.088c-1.631.251-2.171 1.548-1.2 2.882l4.471 6.148c.971 1.334.673 1.632-.661.661l-6.148-4.471c-1.334-.971-2.631-.431-2.882 1.2l-1.088 7.07c-.251 1.631-.661 1.631-.912 0l-1.088-7.07c-.251-1.631-1.548-2.171-2.882-1.2l-6.147 4.471c-1.334.971-1.581.713-.546-.573l5.085-6.324c1.034-1.286.542-2.523-1.092-2.748l-8.057-1.113c-1.634-.226-1.638-.62-.008-.876l7.228-1.135c1.63-.256 2.17-1.558 1.199-2.892L6.765 7.426c-.971-1.334-.673-1.632.661-.661l6.148 4.47z"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#31373D" d="M13.574 11.235c1.335.971 2.631.43 2.882-1.201l1.088-7.069c.251-1.631.661-1.631.912 0l1.088 7.069c.251 1.631 1.548 2.171 2.882 1.201l6.148-4.471c1.334-.971 1.632-.673.661.662l-4.471 6.147c-.971 1.335-.431 2.631 1.2 2.882l7.07 1.088c1.631.251 1.631.661 0 .912l-7.07 1.088c-1.631.251-2.171 1.548-1.2 2.882l4.471 6.148c.971 1.334.673 1.632-.661.661l-6.148-4.471c-1.334-.971-2.631-.431-2.882 1.2l-1.088 7.07c-.251 1.631-.661 1.631-.912 0l-1.088-7.07c-.251-1.631-1.548-2.171-2.882-1.2l-6.147 4.471c-1.334.971-1.581.713-.546-.573l5.085-6.324c1.034-1.286.542-2.523-1.092-2.748l-8.057-1.113c-1.634-.226-1.638-.62-.008-.876l7.228-1.135c1.63-.256 2.17-1.558 1.199-2.892L6.765 7.426c-.971-1.334-.673-1.632.661-.661l6.148 4.47z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/2763.svg b/public/emoji/2763.svg
index ba8ab02d27aeadc06f59622993f11a3eb4c197a2..b78e87834b1962a0fff1638421346166afbf77d8 100644
--- a/public/emoji/2763.svg
+++ b/public/emoji/2763.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#BE1931" d="M18 4C14.875-2.375 6-.731 6 7c0 7.062 12 17 12 17s12-9.938 12-17c0-7.731-8.875-9.375-12-3z"/><circle fill="#BE1931" cx="18" cy="31" r="5"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#DD2E44" d="M18 4C14.875-2.375 6-.731 6 7c0 7.062 12 17 12 17s12-9.938 12-17c0-7.731-8.875-9.375-12-3z"/><circle fill="#DD2E44" cx="18" cy="31" r="5"/></svg>
\ No newline at end of file
diff --git a/public/emoji/2764.svg b/public/emoji/2764.svg
index d8577c65eb5876efeacef10d79985a08d727b4f2..7eb5c5913df8d19e92a85caad0371f682e48b675 100644
--- a/public/emoji/2764.svg
+++ b/public/emoji/2764.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#BE1931" d="M35.885 11.833c0-5.45-4.418-9.868-9.867-9.868-3.308 0-6.227 1.633-8.018 4.129-1.791-2.496-4.71-4.129-8.017-4.129-5.45 0-9.868 4.417-9.868 9.868 0 .772.098 1.52.266 2.241C1.751 22.587 11.216 31.568 18 34.034c6.783-2.466 16.249-11.447 17.617-19.959.17-.721.268-1.469.268-2.242z"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#DD2E44" d="M35.885 11.833c0-5.45-4.418-9.868-9.867-9.868-3.308 0-6.227 1.633-8.018 4.129-1.791-2.496-4.71-4.129-8.017-4.129-5.45 0-9.868 4.417-9.868 9.868 0 .772.098 1.52.266 2.241C1.751 22.587 11.216 31.568 18 34.034c6.783-2.466 16.249-11.447 17.617-19.959.17-.721.268-1.469.268-2.242z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/2795.svg b/public/emoji/2795.svg
index 9f453538557a79f11902d97b1b5efb0df543898d..5d55ec2d559e5b449c55e81346df8fc8482ed7a2 100644
--- a/public/emoji/2795.svg
+++ b/public/emoji/2795.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#292F33" d="M31 15H21V5c0-1.657-1.343-3-3-3s-3 1.343-3 3v10H5c-1.657 0-3 1.343-3 3s1.343 3 3 3h10v10c0 1.657 1.343 3 3 3s3-1.343 3-3V21h10c1.657 0 3-1.343 3-3s-1.343-3-3-3z"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#31373D" d="M31 15H21V5c0-1.657-1.343-3-3-3s-3 1.343-3 3v10H5c-1.657 0-3 1.343-3 3s1.343 3 3 3h10v10c0 1.657 1.343 3 3 3s3-1.343 3-3V21h10c1.657 0 3-1.343 3-3s-1.343-3-3-3z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/2796.svg b/public/emoji/2796.svg
index a1f2581a067435461954c9cabe87cb2af995b9ba..589c0127cfa301455186563bb97755bb496fd998 100644
--- a/public/emoji/2796.svg
+++ b/public/emoji/2796.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#292F33" d="M34 18c0 1.657-1.343 3-3 3H5c-1.657 0-3-1.343-3-3s1.343-3 3-3h26c1.657 0 3 1.343 3 3z"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#31373D" d="M34 18c0 1.657-1.343 3-3 3H5c-1.657 0-3-1.343-3-3s1.343-3 3-3h26c1.657 0 3 1.343 3 3z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/2797.svg b/public/emoji/2797.svg
index cc7982d397ce201e4f3e3689bd5a3a1894f89436..6b8a7c173022c5b242f89c84ee418d0f6ed1f7cb 100644
--- a/public/emoji/2797.svg
+++ b/public/emoji/2797.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#292F33" d="M34 18c0 1.657-1.343 3-3 3H5c-1.657 0-3-1.343-3-3s1.343-3 3-3h26c1.657 0 3 1.343 3 3z"/><circle fill="#292F33" cx="18" cy="7" r="4"/><circle fill="#292F33" cx="18" cy="29" r="4"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#31373D" d="M34 18c0 1.657-1.343 3-3 3H5c-1.657 0-3-1.343-3-3s1.343-3 3-3h26c1.657 0 3 1.343 3 3z"/><circle fill="#31373D" cx="18" cy="7" r="4"/><circle fill="#31373D" cx="18" cy="29" r="4"/></svg>
\ No newline at end of file
diff --git a/public/emoji/27b0.svg b/public/emoji/27b0.svg
index 8fafa684deda70c057ca0389a1b4338fe79a1beb..33abaa91f6c2463b78f0e03a3d33db91c89f59fa 100644
--- a/public/emoji/27b0.svg
+++ b/public/emoji/27b0.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#292F33" d="M18 32.625c-5.09 0-10.5-3.965-10.5-11.312 0-4.877 3.365-9.178 7.591-12.272C12.393 7.739 9.756 7 8 7c-2.708 0-5.499.914-5.527.923-.79.258-1.635-.165-1.896-.951-.261-.785.163-1.633.949-1.895C1.658 5.033 4.793 4 8 4c2.695 0 6.449 1.158 10.01 3.162C21.565 5.158 25.31 4 28 4c3.207 0 6.222 1.559 6.344 1.625.781.422 1.312.699 1.125 1.266-.182.551-.891.328-1.75.234-.029-.003-2.156-.391-5.688-.391-1.752 0-4.41 1.003-7.1 2.304 4.215 3.083 7.568 7.36 7.568 12.212C28.5 28.639 23.09 32.625 18 32.625zm.013-21.954c-4.03 2.585-7.513 6.345-7.513 10.642 0 6.056 4.6 8.312 7.5 8.312 2.899 0 7.5-2.273 7.5-8.375 0-4.27-3.468-8.005-7.487-10.579z"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#31373D" d="M18 32.625c-5.09 0-10.5-3.965-10.5-11.312 0-4.877 3.365-9.178 7.591-12.272C12.393 7.739 9.756 7 8 7c-2.708 0-5.499.914-5.527.923-.79.258-1.635-.165-1.896-.951-.261-.785.163-1.633.949-1.895C1.658 5.033 4.793 4 8 4c2.695 0 6.449 1.158 10.01 3.162C21.565 5.158 25.31 4 28 4c3.207 0 6.222 1.559 6.344 1.625.781.422 1.312.699 1.125 1.266-.182.551-.891.328-1.75.234-.029-.003-2.156-.391-5.688-.391-1.752 0-4.41 1.003-7.1 2.304 4.215 3.083 7.568 7.36 7.568 12.212C28.5 28.639 23.09 32.625 18 32.625zm.013-21.954c-4.03 2.585-7.513 6.345-7.513 10.642 0 6.056 4.6 8.312 7.5 8.312 2.899 0 7.5-2.273 7.5-8.375 0-4.27-3.468-8.005-7.487-10.579z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/2b1b.svg b/public/emoji/2b1b.svg
index 9c4b877ccfdc0f030942a1b8cc39afb0ea04a2db..42b60e34102195e5596c3da9de037a2c75b35518 100644
--- a/public/emoji/2b1b.svg
+++ b/public/emoji/2b1b.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#292F33" d="M36 32c0 2.209-1.791 4-4 4H4c-2.209 0-4-1.791-4-4V4c0-2.209 1.791-4 4-4h28c2.209 0 4 1.791 4 4v28z"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#31373D" d="M36 32c0 2.209-1.791 4-4 4H4c-2.209 0-4-1.791-4-4V4c0-2.209 1.791-4 4-4h28c2.209 0 4 1.791 4 4v28z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/a9.svg b/public/emoji/a9.svg
index 1cdc43a0ab79cfe476c0f157b16bf658dbf87114..afe4fedd6473e34ad7a89b48f1bb8272e1904122 100644
--- a/public/emoji/a9.svg
+++ b/public/emoji/a9.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#292F33" d="M18 0C8.059 0 0 8.06 0 18c0 9.941 8.059 18 18 18s18-8.059 18-18c0-9.94-8.059-18-18-18zm0 34C9.164 34 2 26.837 2 18 2 9.164 9.164 2 18 2c8.837 0 16 7.164 16 16 0 8.837-7.163 16-16 16z"/><path fill="#292F33" d="M18.723 6.552c2.263 0 6.666.744 6.666 3.473 0 1.116-.775 2.077-1.922 2.077-1.272 0-2.139-1.085-4.744-1.085-3.845 0-5.829 3.256-5.829 7.038 0 3.689 2.015 6.852 5.829 6.852 2.605 0 3.658-1.302 4.929-1.302 1.396 0 2.047 1.395 2.047 2.107 0 2.977-4.682 3.659-6.976 3.659-6.294 0-10.666-4.992-10.666-11.41 0-6.448 4.341-11.409 10.666-11.409z"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#31373D" d="M18 0C8.059 0 0 8.06 0 18c0 9.941 8.059 18 18 18s18-8.059 18-18c0-9.94-8.059-18-18-18zm0 34C9.164 34 2 26.837 2 18 2 9.164 9.164 2 18 2c8.837 0 16 7.164 16 16 0 8.837-7.163 16-16 16z"/><path fill="#31373D" d="M18.723 6.552c2.263 0 6.666.744 6.666 3.473 0 1.116-.775 2.077-1.922 2.077-1.272 0-2.139-1.085-4.744-1.085-3.845 0-5.829 3.256-5.829 7.038 0 3.689 2.015 6.852 5.829 6.852 2.605 0 3.658-1.302 4.929-1.302 1.396 0 2.047 1.395 2.047 2.107 0 2.977-4.682 3.659-6.976 3.659-6.294 0-10.666-4.992-10.666-11.41 0-6.448 4.341-11.409 10.666-11.409z"/></svg>
\ No newline at end of file
diff --git a/public/emoji/ae.svg b/public/emoji/ae.svg
index a41b2a210633093e15673852b9e09e3ffeb9544a..bd51781e2615fcf6d3bb87d4161e61e461703009 100644
--- a/public/emoji/ae.svg
+++ b/public/emoji/ae.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#292F33" d="M18 0C8.059 0 0 8.06 0 18c0 9.941 8.059 18 18 18s18-8.059 18-18c0-9.94-8.059-18-18-18zm0 34C9.164 34 2 26.837 2 18 2 9.164 9.164 2 18 2c8.837 0 16 7.164 16 16 0 8.837-7.163 16-16 16z"/><path fill="#292F33" d="M10.777 9.342c0-1.488.837-2.418 2.388-2.418h5.457c4.775 0 7.72 2.14 7.72 7.007 0 3.411-2.573 5.364-5.736 5.86l5.272 5.644c.433.465.619.93.619 1.364 0 1.209-.961 2.387-2.324 2.387-.559 0-1.303-.217-1.799-.806l-6.883-8.341h-.062v6.728c0 1.551-.992 2.418-2.326 2.418s-2.326-.867-2.326-2.418V9.342zm4.651 7.348h3.193c1.705 0 2.884-1.023 2.884-2.759 0-1.767-1.18-2.729-2.884-2.729h-3.193v5.488z"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#31373D" d="M18 0C8.059 0 0 8.06 0 18c0 9.941 8.059 18 18 18s18-8.059 18-18c0-9.94-8.059-18-18-18zm0 34C9.164 34 2 26.837 2 18 2 9.164 9.164 2 18 2c8.837 0 16 7.164 16 16 0 8.837-7.163 16-16 16z"/><path fill="#31373D" d="M10.777 9.342c0-1.488.837-2.418 2.388-2.418h5.457c4.775 0 7.72 2.14 7.72 7.007 0 3.411-2.573 5.364-5.736 5.86l5.272 5.644c.433.465.619.93.619 1.364 0 1.209-.961 2.387-2.324 2.387-.559 0-1.303-.217-1.799-.806l-6.883-8.341h-.062v6.728c0 1.551-.992 2.418-2.326 2.418s-2.326-.867-2.326-2.418V9.342zm4.651 7.348h3.193c1.705 0 2.884-1.023 2.884-2.759 0-1.767-1.18-2.729-2.884-2.729h-3.193v5.488z"/></svg>
\ No newline at end of file
diff --git a/spec/controllers/api/proofs_controller_spec.rb b/spec/controllers/api/proofs_controller_spec.rb
index dbde4927f1484d63eaa6ea3436c423fe0b9158a1..2fe6150052cff37afbb900cbabc69e5bdada0151 100644
--- a/spec/controllers/api/proofs_controller_spec.rb
+++ b/spec/controllers/api/proofs_controller_spec.rb
@@ -85,10 +85,7 @@ describe Api::ProofsController do
         end
 
         it 'has the correct avatar url' do
-          first_part = 'https://cb6e6126.ngrok.io/system/accounts/avatars/'
-          last_part  = 'original/avatar.gif'
-
-          expect(body_as_json[:avatar]).to match /#{Regexp.quote(first_part)}(?:\d{3,5}\/){3}#{Regexp.quote(last_part)}/
+          expect(body_as_json[:avatar]).to match "https://cb6e6126.ngrok.io#{alice.avatar.url}"
         end
       end
     end
diff --git a/spec/controllers/api/v1/accounts/credentials_controller_spec.rb b/spec/controllers/api/v1/accounts/credentials_controller_spec.rb
index 19ac32612858962721baa4edd7ee3132f1ff50c7..ebd462a039421c0470b4137593aa6210d4a65980 100644
--- a/spec/controllers/api/v1/accounts/credentials_controller_spec.rb
+++ b/spec/controllers/api/v1/accounts/credentials_controller_spec.rb
@@ -59,6 +59,19 @@ describe Api::V1::Accounts::CredentialsController do
         end
       end
 
+      describe 'with empty source list' do
+        before do
+          patch :update, params: {
+            display_name: "I'm a cat",
+            source: {},
+          }, as: :json
+        end
+
+        it 'returns http success' do
+          expect(response).to have_http_status(200)
+        end
+     end
+
       describe 'with invalid data' do
         before do
           patch :update, params: { note: 'This is too long. ' * 30 }
diff --git a/spec/controllers/api/v1/accounts/follower_accounts_controller_spec.rb b/spec/controllers/api/v1/accounts/follower_accounts_controller_spec.rb
index 75e0570e92794368af77109ebc121aaa7724fb96..54587187ff94a326a2cda8ef4636f349a4686282 100644
--- a/spec/controllers/api/v1/accounts/follower_accounts_controller_spec.rb
+++ b/spec/controllers/api/v1/accounts/follower_accounts_controller_spec.rb
@@ -3,19 +3,38 @@ require 'rails_helper'
 describe Api::V1::Accounts::FollowerAccountsController do
   render_views
 
-  let(:user)  { Fabricate(:user, account: Fabricate(:account, username: 'alice')) }
-  let(:token) { Fabricate(:accessible_access_token, resource_owner_id: user.id, scopes: 'read:accounts') }
+  let(:user)    { Fabricate(:user, account: Fabricate(:account, username: 'alice')) }
+  let(:token)   { Fabricate(:accessible_access_token, resource_owner_id: user.id, scopes: 'read:accounts') }
+  let(:account) { Fabricate(:account) }
+  let(:alice)   { Fabricate(:account) }
+  let(:bob)     { Fabricate(:account) }
 
   before do
-    Fabricate(:follow, target_account: user.account)
+    alice.follow!(account)
+    bob.follow!(account)
     allow(controller).to receive(:doorkeeper_token) { token }
   end
 
   describe 'GET #index' do
     it 'returns http success' do
-      get :index, params: { account_id: user.account.id, limit: 1 }
+      get :index, params: { account_id: account.id, limit: 2 }
 
       expect(response).to have_http_status(200)
     end
+
+    it 'returns accounts following the given account' do
+      get :index, params: { account_id: account.id, limit: 2 }
+
+      expect(body_as_json.size).to eq 2
+      expect([body_as_json[0][:id], body_as_json[1][:id]]).to match_array([alice.id.to_s, bob.id.to_s])
+    end
+
+    it 'does not return blocked users' do
+      user.account.block!(bob)
+      get :index, params: { account_id: account.id, limit: 2 }
+
+      expect(body_as_json.size).to eq 1
+      expect(body_as_json[0][:id]).to eq alice.id.to_s
+    end
   end
 end
diff --git a/spec/controllers/api/v1/accounts/following_accounts_controller_spec.rb b/spec/controllers/api/v1/accounts/following_accounts_controller_spec.rb
index 7f7105ad3aa3b68d0516d9344dfb6354b5fa4225..a580a7368444534523a3fdf4b4c6ea8ba158bd7f 100644
--- a/spec/controllers/api/v1/accounts/following_accounts_controller_spec.rb
+++ b/spec/controllers/api/v1/accounts/following_accounts_controller_spec.rb
@@ -3,19 +3,38 @@ require 'rails_helper'
 describe Api::V1::Accounts::FollowingAccountsController do
   render_views
 
-  let(:user)  { Fabricate(:user, account: Fabricate(:account, username: 'alice')) }
-  let(:token) { Fabricate(:accessible_access_token, resource_owner_id: user.id, scopes: 'read:accounts') }
+  let(:user)    { Fabricate(:user, account: Fabricate(:account, username: 'alice')) }
+  let(:token)   { Fabricate(:accessible_access_token, resource_owner_id: user.id, scopes: 'read:accounts') }
+  let(:account) { Fabricate(:account) }
+  let(:alice)   { Fabricate(:account) }
+  let(:bob)     { Fabricate(:account) }
 
   before do
-    Fabricate(:follow, account: user.account)
+    account.follow!(alice)
+    account.follow!(bob)
     allow(controller).to receive(:doorkeeper_token) { token }
   end
 
   describe 'GET #index' do
     it 'returns http success' do
-      get :index, params: { account_id: user.account.id, limit: 1 }
+      get :index, params: { account_id: account.id, limit: 2 }
 
       expect(response).to have_http_status(200)
     end
+
+    it 'returns accounts followed by the given account' do
+      get :index, params: { account_id: account.id, limit: 2 }
+
+      expect(body_as_json.size).to eq 2
+      expect([body_as_json[0][:id], body_as_json[1][:id]]).to match_array([alice.id.to_s, bob.id.to_s])
+    end
+
+    it 'does not return blocked users' do
+      user.account.block!(bob)
+      get :index, params: { account_id: account.id, limit: 2 }
+
+      expect(body_as_json.size).to eq 1
+      expect(body_as_json[0][:id]).to eq alice.id.to_s
+    end
   end
 end
diff --git a/spec/controllers/api/v1/bookmarks_controller_spec.rb b/spec/controllers/api/v1/bookmarks_controller_spec.rb
new file mode 100644
index 0000000000000000000000000000000000000000..d7c5847b0c7220beba8c656a4c1bfe918581ff96
--- /dev/null
+++ b/spec/controllers/api/v1/bookmarks_controller_spec.rb
@@ -0,0 +1,78 @@
+require 'rails_helper'
+
+RSpec.describe Api::V1::BookmarksController, type: :controller do
+  render_views
+
+  let(:user)  { Fabricate(:user) }
+  let(:token) { Fabricate(:accessible_access_token, resource_owner_id: user.id, scopes: 'read:bookmarks') }
+
+  describe 'GET #index' do
+    context 'without token' do
+      it 'returns http unauthorized' do
+        get :index
+        expect(response).to have_http_status :unauthorized
+      end
+    end
+
+    context 'with token' do
+      context 'without read scope' do
+        before do
+          allow(controller).to receive(:doorkeeper_token) do
+            Fabricate(:accessible_access_token, resource_owner_id: user.id, scopes: '')
+          end
+        end
+
+        it 'returns http forbidden' do
+          get :index
+          expect(response).to have_http_status :forbidden
+        end
+      end
+
+      context 'without valid resource owner' do
+        before do
+          token = Fabricate(:accessible_access_token, resource_owner_id: user.id, scopes: 'read')
+          user.destroy!
+
+          allow(controller).to receive(:doorkeeper_token) { token }
+        end
+
+        it 'returns http unprocessable entity' do
+          get :index
+          expect(response).to have_http_status :unprocessable_entity
+        end
+      end
+
+      context 'with read scope and valid resource owner' do
+        before do
+          allow(controller).to receive(:doorkeeper_token) do
+            Fabricate(:accessible_access_token, resource_owner_id: user.id, scopes: 'read')
+          end
+        end
+
+        it 'shows bookmarks owned by the user' do
+          bookmarked_by_user = Fabricate(:bookmark, account: user.account)
+          bookmarked_by_others = Fabricate(:bookmark)
+
+          get :index
+
+          expect(assigns(:statuses)).to match_array [bookmarked_by_user.status]
+        end
+
+        it 'adds pagination headers if necessary' do
+          bookmark = Fabricate(:bookmark, account: user.account)
+
+          get :index, params: { limit: 1 }
+
+          expect(response.headers['Link'].find_link(['rel', 'next']).href).to eq "http://test.host/api/v1/bookmarks?limit=1&max_id=#{bookmark.id}"
+          expect(response.headers['Link'].find_link(['rel', 'prev']).href).to eq "http://test.host/api/v1/bookmarks?limit=1&min_id=#{bookmark.id}"
+        end
+
+        it 'does not add pagination headers if not necessary' do
+          get :index
+
+          expect(response.headers['Link']).to eq nil
+        end
+      end
+    end
+  end
+end
diff --git a/spec/controllers/api/v1/statuses/bookmarks_controller_spec.rb b/spec/controllers/api/v1/statuses/bookmarks_controller_spec.rb
new file mode 100644
index 0000000000000000000000000000000000000000..b79853718d1a08894fe1af9059f1a4595f64e18b
--- /dev/null
+++ b/spec/controllers/api/v1/statuses/bookmarks_controller_spec.rb
@@ -0,0 +1,57 @@
+# frozen_string_literal: true
+
+require 'rails_helper'
+
+describe Api::V1::Statuses::BookmarksController do
+  render_views
+
+  let(:user)  { Fabricate(:user, account: Fabricate(:account, username: 'alice')) }
+  let(:app)   { Fabricate(:application, name: 'Test app', website: 'http://testapp.com') }
+  let(:token) { Fabricate(:accessible_access_token, resource_owner_id: user.id, scopes: 'write:bookmarks', application: app) }
+
+  context 'with an oauth token' do
+    before do
+      allow(controller).to receive(:doorkeeper_token) { token }
+    end
+
+    describe 'POST #create' do
+      let(:status) { Fabricate(:status, account: user.account) }
+
+      before do
+        post :create, params: { status_id: status.id }
+      end
+
+      it 'returns http success' do
+        expect(response).to have_http_status(:success)
+      end
+
+      it 'updates the bookmarked attribute' do
+        expect(user.account.bookmarked?(status)).to be true
+      end
+
+      it 'return json with updated attributes' do
+        hash_body = body_as_json
+
+        expect(hash_body[:id]).to eq status.id.to_s
+        expect(hash_body[:bookmarked]).to be true
+      end
+    end
+
+    describe 'POST #destroy' do
+      let(:status) { Fabricate(:status, account: user.account) }
+
+      before do
+        Bookmark.find_or_create_by!(account: user.account, status: status)
+        post :destroy, params: { status_id: status.id }
+      end
+
+      it 'returns http success' do
+        expect(response).to have_http_status(:success)
+      end
+
+      it 'updates the bookmarked attribute' do
+        expect(user.account.bookmarked?(status)).to be false
+      end
+    end
+  end
+end
diff --git a/spec/controllers/api/v1/statuses/favourited_by_accounts_controller_spec.rb b/spec/controllers/api/v1/statuses/favourited_by_accounts_controller_spec.rb
index 40f75c700f592ccbe809398a90775fb32bcf4354..f053ae573858e4a02a9baa09c61a8c89f15b46d8 100644
--- a/spec/controllers/api/v1/statuses/favourited_by_accounts_controller_spec.rb
+++ b/spec/controllers/api/v1/statuses/favourited_by_accounts_controller_spec.rb
@@ -6,6 +6,8 @@ RSpec.describe Api::V1::Statuses::FavouritedByAccountsController, type: :control
   let(:user)  { Fabricate(:user, account: Fabricate(:account, username: 'alice')) }
   let(:app)   { Fabricate(:application, name: 'Test app', website: 'http://testapp.com') }
   let(:token) { Fabricate(:accessible_access_token, resource_owner_id: user.id, application: app, scopes: 'read:accounts') }
+  let(:alice) { Fabricate(:account) }
+  let(:bob)   { Fabricate(:account) }
 
   context 'with an oauth token' do
     before do
@@ -16,14 +18,28 @@ RSpec.describe Api::V1::Statuses::FavouritedByAccountsController, type: :control
       let(:status) { Fabricate(:status, account: user.account) }
 
       before do
-        Fabricate(:favourite, status: status)
+        Favourite.create!(account: alice, status: status)
+        Favourite.create!(account: bob, status: status)
       end
 
       it 'returns http success' do
-        get :index, params: { status_id: status.id, limit: 1 }
+        get :index, params: { status_id: status.id, limit: 2 }
         expect(response).to have_http_status(200)
         expect(response.headers['Link'].links.size).to eq(2)
       end
+
+      it 'returns accounts who favorited the status' do
+        get :index, params: { status_id: status.id, limit: 2 }
+        expect(body_as_json.size).to eq 2
+      expect([body_as_json[0][:id], body_as_json[1][:id]]).to match_array([alice.id.to_s, bob.id.to_s])
+      end
+
+      it 'does not return blocked users' do
+        user.account.block!(bob)
+        get :index, params: { status_id: status.id, limit: 2 }
+        expect(body_as_json.size).to eq 1
+        expect(body_as_json[0][:id]).to eq alice.id.to_s
+      end
     end
   end
 
diff --git a/spec/controllers/api/v1/statuses/reblogged_by_accounts_controller_spec.rb b/spec/controllers/api/v1/statuses/reblogged_by_accounts_controller_spec.rb
index d758786dc99c07003f8130f809452a04ea73a1fa..60908b7b380d8d6db58e156b38c92223410d3423 100644
--- a/spec/controllers/api/v1/statuses/reblogged_by_accounts_controller_spec.rb
+++ b/spec/controllers/api/v1/statuses/reblogged_by_accounts_controller_spec.rb
@@ -6,6 +6,8 @@ RSpec.describe Api::V1::Statuses::RebloggedByAccountsController, type: :controll
   let(:user)  { Fabricate(:user, account: Fabricate(:account, username: 'alice')) }
   let(:app)   { Fabricate(:application, name: 'Test app', website: 'http://testapp.com') }
   let(:token) { Fabricate(:accessible_access_token, resource_owner_id: user.id, application: app, scopes: 'read:accounts') }
+  let(:alice) { Fabricate(:account) }
+  let(:bob)   { Fabricate(:account) }
 
   context 'with an oauth token' do
     before do
@@ -16,14 +18,28 @@ RSpec.describe Api::V1::Statuses::RebloggedByAccountsController, type: :controll
       let(:status) { Fabricate(:status, account: user.account) }
 
       before do
-        Fabricate(:status, reblog_of_id: status.id)
+        Fabricate(:status, account: alice, reblog_of_id: status.id)
+        Fabricate(:status, account: bob, reblog_of_id: status.id)
       end
 
       it 'returns http success' do
-        get :index, params: { status_id: status.id, limit: 1 }
+        get :index, params: { status_id: status.id, limit: 2 }
         expect(response).to have_http_status(200)
         expect(response.headers['Link'].links.size).to eq(2)
       end
+
+      it 'returns accounts who reblogged the status' do
+        get :index, params: { status_id: status.id, limit: 2 }
+        expect(body_as_json.size).to eq 2
+      expect([body_as_json[0][:id], body_as_json[1][:id]]).to match_array([alice.id.to_s, bob.id.to_s])
+      end
+
+      it 'does not return blocked users' do
+        user.account.block!(bob)
+        get :index, params: { status_id: status.id, limit: 2 }
+        expect(body_as_json.size).to eq 1
+        expect(body_as_json[0][:id]).to eq alice.id.to_s
+      end
     end
   end
 
diff --git a/spec/controllers/application_controller_spec.rb b/spec/controllers/application_controller_spec.rb
index da4a794cddc30d94adcdbc8c200e2cf01173987b..63ae27a924ef98ec1120676cbec9a1affec43d9c 100644
--- a/spec/controllers/application_controller_spec.rb
+++ b/spec/controllers/application_controller_spec.rb
@@ -22,11 +22,6 @@ describe ApplicationController, type: :controller do
   end
 
   shared_examples 'respond_with_error' do |code|
-    it "returns http #{code} for any" do
-      subject
-      expect(response).to have_http_status(code)
-    end
-
     it "returns http #{code} for http" do
       subject
       expect(response).to have_http_status(code)
diff --git a/spec/controllers/concerns/obfuscate_filename_spec.rb b/spec/controllers/concerns/obfuscate_filename_spec.rb
deleted file mode 100644
index e06d53c038557ef52ea530bddd159197218bfb6e..0000000000000000000000000000000000000000
--- a/spec/controllers/concerns/obfuscate_filename_spec.rb
+++ /dev/null
@@ -1,30 +0,0 @@
-# frozen_string_literal: true
-
-require 'rails_helper'
-
-describe ApplicationController, type: :controller do
-  controller do
-    include ObfuscateFilename
-
-    obfuscate_filename :file
-
-    def file
-      render plain: params[:file]&.original_filename
-    end
-  end
-
-  before do
-    routes.draw { get 'file' => 'anonymous#file' }
-  end
-
-  it 'obfusticates filename if the given parameter is specified' do
-    file = fixture_file_upload('files/imports.txt', 'text/plain')
-    post 'file', params: { file: file }
-    expect(response.body).to end_with '.txt'
-    expect(response.body).not_to include 'imports'
-  end
-
-  it 'does nothing if the given parameter is not specified' do
-    post 'file'
-  end
-end
diff --git a/spec/controllers/follower_accounts_controller_spec.rb b/spec/controllers/follower_accounts_controller_spec.rb
index 83032ab6464014e871cca31c67ae824cb1c78a27..34a0cf3f482ec58929e973f9ff27a3cdda07183d 100644
--- a/spec/controllers/follower_accounts_controller_spec.rb
+++ b/spec/controllers/follower_accounts_controller_spec.rb
@@ -22,6 +22,18 @@ describe FollowerAccountsController do
         expect(assigned[0]).to eq follow1
         expect(assigned[1]).to eq follow0
       end
+
+      it 'does not assign blocked users' do
+        user = Fabricate(:user)
+        user.account.block!(follower0)
+        sign_in(user)
+
+        expect(response).to have_http_status(200)
+
+        assigned = assigns(:follows).to_a
+        expect(assigned.size).to eq 1
+        expect(assigned[0]).to eq follow1
+      end
     end
 
     context 'when format is json' do
diff --git a/spec/controllers/following_accounts_controller_spec.rb b/spec/controllers/following_accounts_controller_spec.rb
index d5e4ee587f428626aea4ebcc1314dd1fedbb6d52..e9a1f597df609af3c9331362e0016c396dd2bc97 100644
--- a/spec/controllers/following_accounts_controller_spec.rb
+++ b/spec/controllers/following_accounts_controller_spec.rb
@@ -22,6 +22,18 @@ describe FollowingAccountsController do
         expect(assigned[0]).to eq follow1
         expect(assigned[1]).to eq follow0
       end
+
+      it 'does not assign blocked users' do
+        user = Fabricate(:user)
+        user.account.block!(followee0)
+        sign_in(user)
+
+        expect(response).to have_http_status(200)
+
+        assigned = assigns(:follows).to_a
+        expect(assigned.size).to eq 1
+        expect(assigned[0]).to eq follow1
+      end
     end
 
     context 'when format is json' do
diff --git a/spec/controllers/settings/featured_tags_controller_spec.rb b/spec/controllers/settings/featured_tags_controller_spec.rb
new file mode 100644
index 0000000000000000000000000000000000000000..33b87f9f67bffc43259554c8956d03c17171d29b
--- /dev/null
+++ b/spec/controllers/settings/featured_tags_controller_spec.rb
@@ -0,0 +1,43 @@
+require 'rails_helper'
+
+describe Settings::FeaturedTagsController do
+  render_views
+
+  shared_examples 'authenticate user' do
+    it 'redirects to sign_in page' do
+      is_expected.to redirect_to new_user_session_path
+    end
+  end
+
+  describe 'POST #create' do
+    context 'when user is not sign in' do
+      subject { post :create }
+
+      it_behaves_like 'authenticate user'
+    end
+
+    context 'when user is sign in' do
+      subject { post :create, params: { featured_tag: params } }
+
+      let(:user) { Fabricate(:user, password: '12345678') }
+
+      before { sign_in user, scope: :user }
+
+      context 'when parameter is valid' do
+        let(:params) { { name: 'test' } }
+
+        it 'creates featured tag' do
+          expect { subject }.to change { user.account.featured_tags.count }.by(1)
+        end
+      end
+
+      context 'when parameter is invalid' do
+        let(:params) { { name: 'test, #foo !bleh' } }
+
+        it 'renders new' do
+          expect(subject).to render_template :index
+        end
+      end
+    end
+  end
+end
diff --git a/spec/fabricators/account_subscribe_fabricator.rb b/spec/fabricators/account_subscribe_fabricator.rb
new file mode 100644
index 0000000000000000000000000000000000000000..c9fbf4706a317327a3d91b5168842330e81e7536
--- /dev/null
+++ b/spec/fabricators/account_subscribe_fabricator.rb
@@ -0,0 +1,4 @@
+Fabricator(:account_subscribe) do
+  account
+  target_account
+end
diff --git a/spec/fabricators/bookmark_fabricator.rb b/spec/fabricators/bookmark_fabricator.rb
new file mode 100644
index 0000000000000000000000000000000000000000..12cbc5bfa4cf611e639843ea32b6862777221fc7
--- /dev/null
+++ b/spec/fabricators/bookmark_fabricator.rb
@@ -0,0 +1,4 @@
+Fabricator(:bookmark) do
+  account
+  status
+end
diff --git a/spec/fabricators/domain_subscribe_fabricator.rb b/spec/fabricators/domain_subscribe_fabricator.rb
new file mode 100644
index 0000000000000000000000000000000000000000..8dd39b0d6b6be99d5603ab665508e322c30a96c2
--- /dev/null
+++ b/spec/fabricators/domain_subscribe_fabricator.rb
@@ -0,0 +1,5 @@
+Fabricator(:domain_subscribe) do
+  account
+  list
+  domain
+end
diff --git a/spec/fabricators/favourite_tag_fabricator.rb b/spec/fabricators/favourite_tag_fabricator.rb
new file mode 100644
index 0000000000000000000000000000000000000000..7e244043a863ed26ad5a6d051a0d8a351c15b5ea
--- /dev/null
+++ b/spec/fabricators/favourite_tag_fabricator.rb
@@ -0,0 +1,4 @@
+Fabricator(:favourite_tag) do
+  account
+  tag
+end
diff --git a/spec/fabricators/follow_tag_fabricator.rb b/spec/fabricators/follow_tag_fabricator.rb
new file mode 100644
index 0000000000000000000000000000000000000000..3c39f781b76382741158a0ce191869e1ab4c6f83
--- /dev/null
+++ b/spec/fabricators/follow_tag_fabricator.rb
@@ -0,0 +1,4 @@
+Fabricator(:follow_tag) do
+  account
+  tag
+end
diff --git a/spec/fabricators/keyword_subscribe_fabricator.rb b/spec/fabricators/keyword_subscribe_fabricator.rb
new file mode 100644
index 0000000000000000000000000000000000000000..3913be0ce6b663496c5b829c052b6338198b53b1
--- /dev/null
+++ b/spec/fabricators/keyword_subscribe_fabricator.rb
@@ -0,0 +1,6 @@
+Fabricator(:keyword_subscribe) do
+  account
+  keyword
+  ignorecase
+  regexp
+end
diff --git a/spec/features/log_in_spec.rb b/spec/features/log_in_spec.rb
index f6c26cd0f13b869dfb1ecc3e4a0bb662c0b59fee..de1a6de031511b35edd24b1259519208b5a4f343 100644
--- a/spec/features/log_in_spec.rb
+++ b/spec/features/log_in_spec.rb
@@ -1,47 +1,51 @@
-require "rails_helper"
+# frozen_string_literal: true
 
-feature "Log in" do
-  given(:email)        { "test@examle.com" }
+require 'rails_helper'
+
+feature 'Log in' do
+  include ProfileStories
+
+  given(:email)        { "test@example.com" }
   given(:password)     { "password" }
   given(:confirmed_at) { Time.zone.now }
 
   background do
-    Fabricate(:user, email: email, password: password, confirmed_at: confirmed_at)
+    as_a_registered_user
     visit new_user_session_path
   end
 
   subject { page }
 
-  scenario "A valid email and password user is able to log in" do
-    fill_in "user_email", with: email
-    fill_in "user_password", with: password
+  scenario 'A valid email and password user is able to log in' do
+    fill_in 'user_email', with: email
+    fill_in 'user_password', with: password
     click_on I18n.t('auth.login')
 
-    is_expected.to have_css("div.app-holder")
+    is_expected.to have_css('div.app-holder')
   end
 
-  scenario "A invalid email and password user is not able to log in" do
-    fill_in "user_email", with: "invalid_email"
-    fill_in "user_password", with: "invalid_password"
+  scenario 'A invalid email and password user is not able to log in' do
+    fill_in 'user_email', with: 'invalid_email'
+    fill_in 'user_password', with: 'invalid_password'
     click_on I18n.t('auth.login')
 
-    is_expected.to have_css(".flash-message", text: failure_message("invalid"))
+    is_expected.to have_css('.flash-message', text: failure_message('invalid'))
   end
 
   context do
     given(:confirmed_at) { nil }
 
-    scenario "A unconfirmed user is able to log in" do
-      fill_in "user_email", with: email
-      fill_in "user_password", with: password
+    scenario 'A unconfirmed user is able to log in' do
+      fill_in 'user_email', with: email
+      fill_in 'user_password', with: password
       click_on I18n.t('auth.login')
 
-      is_expected.to have_css("div.admin-wrapper")
+      is_expected.to have_css('div.admin-wrapper')
     end
   end
 
   def failure_message(message)
     keys = User.authentication_keys.map { |key| User.human_attribute_name(key) }
-    I18n.t("devise.failure.#{message}", authentication_keys: keys.join("support.array.words_connector"))
+    I18n.t("devise.failure.#{message}", authentication_keys: keys.join('support.array.words_connector'))
   end
 end
diff --git a/spec/features/profile_spec.rb b/spec/features/profile_spec.rb
new file mode 100644
index 0000000000000000000000000000000000000000..3202167cab51eaa44cd5d5d30d57dfb953af7af3
--- /dev/null
+++ b/spec/features/profile_spec.rb
@@ -0,0 +1,53 @@
+# frozen_string_literal: true
+
+require 'rails_helper'
+
+feature 'Profile' do
+  include ProfileStories
+
+  given(:local_domain) { ENV['LOCAL_DOMAIN'] }
+
+  background do
+    as_a_logged_in_user
+    with_alice_as_local_user
+  end
+
+  subject { page }
+
+  scenario 'I can view Annes public account' do
+    visit account_path('alice')
+
+    is_expected.to have_title("alice (@alice@#{local_domain})")
+
+    within('.public-account-header h1') do
+      is_expected.to have_content("alice @alice@#{local_domain}")
+    end
+
+    bio_elem = first('.public-account-bio')
+    expect(bio_elem).to have_content(alice_bio)
+    # The bio has hashtags made clickable
+    expect(bio_elem).to have_link('cryptology')
+    expect(bio_elem).to have_link('science')
+    # Nicknames are make clickable
+    expect(bio_elem).to have_link('@alice')
+    expect(bio_elem).to have_link('@bob')
+    # Nicknames not on server are not clickable
+    expect(bio_elem).not_to have_link('@pepe')
+  end
+
+  scenario 'I can change my account' do
+    visit settings_profile_path
+    fill_in 'Display name', with: 'Bob'
+    fill_in 'Bio', with: 'Bob is silent'
+    click_on 'Save changes'
+    is_expected.to have_content 'Changes successfully saved!'
+
+    # View my own public profile and see the changes
+    click_link "Bob @bob@#{local_domain}"
+
+    within('.public-account-header h1') do
+      is_expected.to have_content("Bob @bob@#{local_domain}")
+    end
+    expect(first('.public-account-bio')).to have_content('Bob is silent')
+  end
+end
diff --git a/spec/fixtures/xml/mastodon.atom b/spec/fixtures/xml/mastodon.atom
index 9ece3bc2e39b356f50c87bce8d0b8aeb04e98d4a..92921a93800800b3fd121d396004ec7649cf3eab 100644
--- a/spec/fixtures/xml/mastodon.atom
+++ b/spec/fixtures/xml/mastodon.atom
@@ -123,7 +123,7 @@
     <published>2016-10-10T00:41:31Z</published>
     <updated>2016-10-10T00:41:31Z</updated>
     <title>Social media needs MOAR cats! http://kickass.zone/media/3</title>
-    <content type="html">&lt;p&gt;Social media needs MOAR cats! &lt;a rel="nofollow noopener" href="http://kickass.zone/media/3"&gt;http://kickass.zone/media/3&lt;/a&gt;&lt;/p&gt;</content>
+    <content type="html">&lt;p&gt;Social media needs MOAR cats! &lt;a rel="nofollow noopener noreferrer" href="http://kickass.zone/media/3"&gt;http://kickass.zone/media/3&lt;/a&gt;&lt;/p&gt;</content>
     <activity:verb>http://activitystrea.ms/schema/1.0/post</activity:verb>
     <link rel="self" type="application/atom+xml" href="http://kickass.zone/users/localhost/updates/9.atom"/>
     <link rel="alternate" type="text/html" href="http://kickass.zone/users/localhost/updates/9"/>
@@ -135,7 +135,7 @@
     <published>2016-10-10T00:38:39Z</published>
     <updated>2016-10-10T00:38:39Z</updated>
     <title>http://kickass.zone/media/2</title>
-    <content type="html">&lt;p&gt;&lt;a rel="nofollow noopener" href="http://kickass.zone/media/2"&gt;http://kickass.zone/media/2&lt;/a&gt;&lt;/p&gt;</content>
+    <content type="html">&lt;p&gt;&lt;a rel="nofollow noopener noreferrer" href="http://kickass.zone/media/2"&gt;http://kickass.zone/media/2&lt;/a&gt;&lt;/p&gt;</content>
     <activity:verb>http://activitystrea.ms/schema/1.0/post</activity:verb>
     <link rel="self" type="application/atom+xml" href="http://kickass.zone/users/localhost/updates/8.atom"/>
     <link rel="alternate" type="text/html" href="http://kickass.zone/users/localhost/updates/8"/>
diff --git a/spec/helpers/accounts_helper_spec.rb b/spec/helpers/accounts_helper_spec.rb
new file mode 100644
index 0000000000000000000000000000000000000000..2b35b23b799ecab09aa1910feac981d709e1158c
--- /dev/null
+++ b/spec/helpers/accounts_helper_spec.rb
@@ -0,0 +1,67 @@
+require 'rails_helper'
+
+RSpec.describe AccountsHelper, type: :helper do
+  def set_not_embedded_view
+    params[:controller] = "not_#{StatusesHelper::EMBEDDED_CONTROLLER}"
+    params[:action] = "not_#{StatusesHelper::EMBEDDED_ACTION}"
+  end
+
+  def set_embedded_view
+    params[:controller] = StatusesHelper::EMBEDDED_CONTROLLER
+    params[:action] = StatusesHelper::EMBEDDED_ACTION
+  end
+
+  describe '#display_name' do
+    it 'uses the display name when it exists' do
+      account = Account.new(display_name: "Display", username: "Username")
+
+      expect(helper.display_name(account)).to eq "Display"
+    end
+
+    it 'uses the username when display name is nil' do
+      account = Account.new(display_name: nil, username: "Username")
+
+      expect(helper.display_name(account)).to eq "Username"
+    end
+  end
+
+  describe '#acct' do
+    it 'is fully qualified for embedded local accounts' do
+      allow(Rails.configuration.x).to receive(:local_domain).and_return('local_domain')
+      set_embedded_view
+      account = Account.new(domain: nil, username: 'user')
+
+      acct = helper.acct(account)
+
+      expect(acct).to eq '@user@local_domain'
+    end
+
+    it 'is fully qualified for embedded foreign accounts' do
+      set_embedded_view
+      account = Account.new(domain: 'foreign_server.com', username: 'user')
+
+      acct = helper.acct(account)
+
+      expect(acct).to eq '@user@foreign_server.com'
+    end
+
+    it 'is fully qualified for non embedded foreign accounts' do
+      set_not_embedded_view
+      account = Account.new(domain: 'foreign_server.com', username: 'user')
+
+      acct = helper.acct(account)
+
+      expect(acct).to eq '@user@foreign_server.com'
+    end
+
+    it 'is fully qualified for non embedded local accounts' do
+      allow(Rails.configuration.x).to receive(:local_domain).and_return('local_domain')
+      set_not_embedded_view
+      account = Account.new(domain: nil, username: 'user')
+
+      acct = helper.acct(account)
+
+      expect(acct).to eq '@user@local_domain'
+    end
+  end
+end
diff --git a/spec/helpers/admin/account_moderation_notes_helper_spec.rb b/spec/helpers/admin/account_moderation_notes_helper_spec.rb
index ddfe8b46f9f1fbd7cccee8266e75f236e0116111..622ce880657fd753fbf1c9f3bcf252ff6500976a 100644
--- a/spec/helpers/admin/account_moderation_notes_helper_spec.rb
+++ b/spec/helpers/admin/account_moderation_notes_helper_spec.rb
@@ -3,7 +3,7 @@
 require 'rails_helper'
 
 RSpec.describe Admin::AccountModerationNotesHelper, type: :helper do
-  include StatusesHelper
+  include AccountsHelper
 
   describe '#admin_account_link_to' do
     context 'account is nil' do
diff --git a/spec/helpers/statuses_helper_spec.rb b/spec/helpers/statuses_helper_spec.rb
index 510955a2ff5349cd460965ee20c60efcbf8dfa8a..940ff072e602ff1e840a806f31bec1d19b67b3fb 100644
--- a/spec/helpers/statuses_helper_spec.rb
+++ b/spec/helpers/statuses_helper_spec.rb
@@ -1,20 +1,6 @@
 require 'rails_helper'
 
 RSpec.describe StatusesHelper, type: :helper do
-  describe '#display_name' do
-    it 'uses the display name when it exists' do
-      account = Account.new(display_name: "Display", username: "Username")
-
-      expect(helper.display_name(account)).to eq "Display"
-    end
-
-    it 'uses the username when display name is nil' do
-      account = Account.new(display_name: nil, username: "Username")
-
-      expect(helper.display_name(account)).to eq "Username"
-    end
-  end
-
   describe '#stream_link_target' do
     it 'returns nil if it is not an embedded view' do
       set_not_embedded_view
@@ -29,46 +15,6 @@ RSpec.describe StatusesHelper, type: :helper do
     end
   end
 
-  describe '#acct' do
-    it 'is fully qualified for embedded local accounts' do
-      allow(Rails.configuration.x).to receive(:local_domain).and_return('local_domain')
-      set_embedded_view
-      account = Account.new(domain: nil, username: 'user')
-
-      acct = helper.acct(account)
-
-      expect(acct).to eq '@user@local_domain'
-    end
-
-    it 'is fully qualified for embedded foreign accounts' do
-      set_embedded_view
-      account = Account.new(domain: 'foreign_server.com', username: 'user')
-
-      acct = helper.acct(account)
-
-      expect(acct).to eq '@user@foreign_server.com'
-    end
-
-    it 'is fully qualified for non embedded foreign accounts' do
-      set_not_embedded_view
-      account = Account.new(domain: 'foreign_server.com', username: 'user')
-
-      acct = helper.acct(account)
-
-      expect(acct).to eq '@user@foreign_server.com'
-    end
-
-    it 'is fully qualified for non embedded local accounts' do
-      allow(Rails.configuration.x).to receive(:local_domain).and_return('local_domain')
-      set_not_embedded_view
-      account = Account.new(domain: nil, username: 'user')
-
-      acct = helper.acct(account)
-
-      expect(acct).to eq '@user@local_domain'
-    end
-  end
-
   def set_not_embedded_view
     params[:controller] = "not_#{StatusesHelper::EMBEDDED_CONTROLLER}"
     params[:action] = "not_#{StatusesHelper::EMBEDDED_ACTION}"
diff --git a/spec/lib/activitypub/activity/create_spec.rb b/spec/lib/activitypub/activity/create_spec.rb
index 412609de408d0125397d44bfdd33027ce34ec296..c4efb5cc9329841268b925533c2798cfedab4b73 100644
--- a/spec/lib/activitypub/activity/create_spec.rb
+++ b/spec/lib/activitypub/activity/create_spec.rb
@@ -261,6 +261,32 @@ RSpec.describe ActivityPub::Activity::Create do
         end
       end
 
+
+      context 'with media attachments with long description' do
+        let(:object_json) do
+          {
+            id: [ActivityPub::TagManager.instance.uri_for(sender), '#bar'].join,
+            type: 'Note',
+            content: 'Lorem ipsum',
+            attachment: [
+              {
+                type: 'Document',
+                mediaType: 'image/png',
+                url: 'http://example.com/attachment.png',
+                name: '*' * 1500,
+              },
+            ],
+          }
+        end
+
+        it 'creates status' do
+          status = sender.statuses.first
+
+          expect(status).to_not be_nil
+          expect(status.media_attachments.map(&:description)).to include('*' * 1500)
+        end
+      end
+
       context 'with media attachments with focal points' do
         let(:object_json) do
           {
@@ -352,6 +378,28 @@ RSpec.describe ActivityPub::Activity::Create do
         end
       end
 
+      context 'with hashtags invalid name' do
+        let(:object_json) do
+          {
+            id: [ActivityPub::TagManager.instance.uri_for(sender), '#bar'].join,
+            type: 'Note',
+            content: 'Lorem ipsum',
+            tag: [
+              {
+                type: 'Hashtag',
+                href: 'http://example.com/blah',
+                name: 'foo, #eh !',
+              },
+            ],
+          }
+        end
+
+        it 'creates status' do
+          status = sender.statuses.first
+          expect(status).to_not be_nil
+        end
+      end
+
       context 'with emojis' do
         let(:object_json) do
           {
diff --git a/spec/lib/formatter_spec.rb b/spec/lib/formatter_spec.rb
index b8108a247716ced195b017e3aac3ffb2403ee37c..83be0a5883b904cfddefe3d4092a5ace14e7d98d 100644
--- a/spec/lib/formatter_spec.rb
+++ b/spec/lib/formatter_spec.rb
@@ -242,6 +242,22 @@ RSpec.describe Formatter do
         is_expected.to include '/tags/hashtag%E3%82%BF%E3%82%B0" class="mention hashtag" rel="tag">#<span>hashtagã‚¿ã‚°</span></a>'
       end
     end
+
+    context 'given a stand-alone xmpp: URI' do
+      let(:text) { 'xmpp:user@instance.com' }
+
+      it 'matches the full URI' do
+        is_expected.to include 'href="xmpp:user@instance.com"'
+      end
+    end
+
+    context 'given a an xmpp: URI with a query-string' do
+      let(:text) { 'please join xmpp:muc@instance.com?join right now' }
+
+      it 'matches the full URI' do
+        is_expected.to include 'href="xmpp:muc@instance.com?join"'
+      end
+    end
   end
 
   describe '#format_spoiler' do
diff --git a/spec/lib/sanitize_config_spec.rb b/spec/lib/sanitize_config_spec.rb
index 54bd8693cc871103b6f45026c536843701019a3f..feb86af352838263b037f8d5ede0fba8ad200c0f 100644
--- a/spec/lib/sanitize_config_spec.rb
+++ b/spec/lib/sanitize_config_spec.rb
@@ -24,7 +24,7 @@ describe Sanitize::Config do
     end
 
     it 'keep links in lists' do
-      expect(Sanitize.fragment('<p>Check out:</p><ul><li><a href="https://joinmastodon.org" rel="nofollow noopener" target="_blank">joinmastodon.org</a></li><li>Bar</li></ul>', subject)).to eq '<p>Check out:</p><p><a href="https://joinmastodon.org" rel="nofollow noopener" target="_blank">joinmastodon.org</a><br>Bar</p>'
+      expect(Sanitize.fragment('<p>Check out:</p><ul><li><a href="https://joinmastodon.org" rel="nofollow noopener noreferrer" target="_blank">joinmastodon.org</a></li><li>Bar</li></ul>', subject)).to eq '<p>Check out:</p><p><a href="https://joinmastodon.org" rel="nofollow noopener noreferrer" target="_blank">joinmastodon.org</a><br>Bar</p>'
     end
   end
 end
diff --git a/spec/lib/settings/scoped_settings_spec.rb b/spec/lib/settings/scoped_settings_spec.rb
index 7566685b4a532b26e53989b80193c181f2c0707c..7c6fa688b7b67ae2acbea87052cd140a436cb32f 100644
--- a/spec/lib/settings/scoped_settings_spec.rb
+++ b/spec/lib/settings/scoped_settings_spec.rb
@@ -6,7 +6,7 @@ RSpec.describe Settings::ScopedSettings do
   let(:object)         { Fabricate(:user) }
   let(:scoped_setting) { described_class.new(object) }
   let(:val)            { 'whatever' }
-  let(:methods)        { %i(auto_play_gif default_sensitive unfollow_modal boost_modal delete_modal reduce_motion system_font_ui noindex theme) }
+  let(:methods)        { %i(auto_play_gif default_sensitive unfollow_modal unsubscribe_modal boost_modal delete_modal reduce_motion system_font_ui noindex theme) }
 
   describe '.initialize' do
     it 'sets @object' do
diff --git a/spec/lib/user_settings_decorator_spec.rb b/spec/lib/user_settings_decorator_spec.rb
index 462c5b1249f3e7d4b291a3d42ea2acf31d90b434..af5ca29f19c3edbbf3aaf8df103fff12f577a5c4 100644
--- a/spec/lib/user_settings_decorator_spec.rb
+++ b/spec/lib/user_settings_decorator_spec.rb
@@ -42,6 +42,13 @@ describe UserSettingsDecorator do
       expect(user.settings['unfollow_modal']).to eq false
     end
 
+    it 'updates the user settings value for unsubscribe modal' do
+      values = { 'setting_unsubscribe_modal' => '0' }
+
+      settings.update(values)
+      expect(user.settings['unsubscribe_modal']).to eq false
+    end
+
     it 'updates the user settings value for boost modal' do
       values = { 'setting_boost_modal' => '1' }
 
diff --git a/spec/middleware/handle_bad_encoding_middleware_spec.rb b/spec/middleware/handle_bad_encoding_middleware_spec.rb
new file mode 100644
index 0000000000000000000000000000000000000000..8c0d24f1821e7430d9f054de156b0e2c55633a8f
--- /dev/null
+++ b/spec/middleware/handle_bad_encoding_middleware_spec.rb
@@ -0,0 +1,21 @@
+require 'rails_helper'
+
+RSpec.describe HandleBadEncodingMiddleware do
+  let(:app) { double() }
+  let(:middleware) { HandleBadEncodingMiddleware.new(app) }
+
+  it "request with query string is unchanged" do
+    expect(app).to receive(:call).with("PATH" => "/some/path", "QUERY_STRING" => "name=fred")
+    middleware.call("PATH" => "/some/path", "QUERY_STRING" => "name=fred")
+  end
+
+  it "request with no query string is unchanged" do
+    expect(app).to receive(:call).with("PATH" => "/some/path")
+    middleware.call("PATH" => "/some/path")
+  end
+
+  it "request with invalid encoding in query string drops query string" do
+    expect(app).to receive(:call).with("QUERY_STRING" => "", "PATH" => "/some/path")
+    middleware.call("QUERY_STRING" => "q=%2Fsearch%2Fall%Forder%3Ddescending%26page%3D5%26sort%3Dcreated_at", "PATH" => "/some/path")
+  end
+end
diff --git a/spec/models/account_spec.rb b/spec/models/account_spec.rb
index a9f787a8df66ef2f64c09a3cafc3f7d5cd6a5672..386e9160682078863ba58597aec25240c2f4f080 100644
--- a/spec/models/account_spec.rb
+++ b/spec/models/account_spec.rb
@@ -216,13 +216,6 @@ RSpec.describe Account, type: :model do
     end
   end
 
-  describe '#subscription' do
-    it 'returns an OStatus subscription' do
-      account = Fabricate(:account)
-      expect(account.subscription('')).to be_instance_of OStatus2::Subscription
-    end
-  end
-
   describe '#object_type' do
     it 'is always a person' do
       account = Fabricate(:account)
@@ -824,4 +817,5 @@ RSpec.describe Account, type: :model do
   end
 
   include_examples 'AccountAvatar', :account
+  include_examples 'AccountHeader', :account
 end
diff --git a/spec/models/account_subscribe_spec.rb b/spec/models/account_subscribe_spec.rb
new file mode 100644
index 0000000000000000000000000000000000000000..283f53b2041edeffc89f6a223d8e20ee70145f3b
--- /dev/null
+++ b/spec/models/account_subscribe_spec.rb
@@ -0,0 +1,4 @@
+require 'rails_helper'
+
+RSpec.describe AccountSubscribe, type: :model do
+end
diff --git a/spec/models/domain_block_spec.rb b/spec/models/domain_block_spec.rb
index d98c5e11863030c11bbf694496b2d14db93335d5..28647dc89c62554a5cc2b62e0339e9a58e6a1bc5 100644
--- a/spec/models/domain_block_spec.rb
+++ b/spec/models/domain_block_spec.rb
@@ -52,6 +52,16 @@ RSpec.describe DomainBlock, type: :model do
       block = Fabricate(:domain_block, domain: 'sub.example.com')
       expect(DomainBlock.rule_for('sub.example.com')).to eq block
     end
+
+    it 'returns a rule matching a blocked TLD' do
+      block = Fabricate(:domain_block, domain: 'google')
+      expect(DomainBlock.rule_for('google')).to eq block
+    end
+
+    it 'returns a rule matching a subdomain of a blocked TLD' do
+      block = Fabricate(:domain_block, domain: 'google')
+      expect(DomainBlock.rule_for('maps.google')).to eq block
+    end
   end
 
   describe '#stricter_than?' do
diff --git a/spec/models/domain_subscribe_spec.rb b/spec/models/domain_subscribe_spec.rb
new file mode 100644
index 0000000000000000000000000000000000000000..167c574c128a8e39fdc48266dccc93f3350c59ea
--- /dev/null
+++ b/spec/models/domain_subscribe_spec.rb
@@ -0,0 +1,4 @@
+require 'rails_helper'
+
+RSpec.describe DomainSubscribe, type: :model do
+end
diff --git a/spec/models/favourite_tag_spec.rb b/spec/models/favourite_tag_spec.rb
new file mode 100644
index 0000000000000000000000000000000000000000..ff99f96f3ccdb41c73ceeade9070464cba3fb923
--- /dev/null
+++ b/spec/models/favourite_tag_spec.rb
@@ -0,0 +1,4 @@
+require 'rails_helper'
+
+RSpec.describe FavouriteTag, type: :model do
+end
diff --git a/spec/models/follow_tag_spec.rb b/spec/models/follow_tag_spec.rb
new file mode 100644
index 0000000000000000000000000000000000000000..07c708859e07dcf44ec782cd64c44d89f1cbb204
--- /dev/null
+++ b/spec/models/follow_tag_spec.rb
@@ -0,0 +1,4 @@
+require 'rails_helper'
+
+RSpec.describe FollowTag, type: :model do
+end
diff --git a/spec/models/keyword_subscribe_spec.rb b/spec/models/keyword_subscribe_spec.rb
new file mode 100644
index 0000000000000000000000000000000000000000..87fa7935ff08cce9fe331f9a35a6751a28fba7d8
--- /dev/null
+++ b/spec/models/keyword_subscribe_spec.rb
@@ -0,0 +1,4 @@
+require 'rails_helper'
+
+RSpec.describe KeywordSubscribe, type: :model do
+end
diff --git a/spec/models/media_attachment_spec.rb b/spec/models/media_attachment_spec.rb
index 266cd492039ec6a3ab1305fc7d7f463766584756..a275621a134be4d3c37e4cbba151c79e5e7c9214 100644
--- a/spec/models/media_attachment_spec.rb
+++ b/spec/models/media_attachment_spec.rb
@@ -133,13 +133,31 @@ RSpec.describe MediaAttachment, type: :model do
       expect(media.file.meta["small"]["height"]).to eq 327
       expect(media.file.meta["small"]["aspect"]).to eq 490.0 / 327
     end
+
+    it 'gives the file a random name' do
+      expect(media.file_file_name).to_not eq 'attachment.jpg'
+    end
+  end
+
+  describe 'base64-encoded jpeg' do
+    let(:base64_attachment) { "data:image/jpeg;base64,#{Base64.encode64(attachment_fixture('attachment.jpg').read)}" }
+    let(:media) { MediaAttachment.create(account: Fabricate(:account), file: base64_attachment) }
+
+    it 'saves media attachment' do
+      expect(media.persisted?).to be true
+      expect(media.file).to_not be_nil
+    end
+
+    it 'gives the file a file name' do
+      expect(media.file_file_name).to_not be_blank
+    end
   end
 
   describe 'descriptions for remote attachments' do
-    it 'are cut off at 140 characters' do
+    it 'are cut off at 1500 characters' do
       media = Fabricate(:media_attachment, description: 'foo' * 1000, remote_url: 'http://example.com/blah.jpg')
 
-      expect(media.description.size).to be <= 420
+      expect(media.description.size).to be <= 1_500
     end
   end
 end
diff --git a/spec/models/notification_spec.rb b/spec/models/notification_spec.rb
index 59c582cde0d26075f77cf20ac0fe29c0eb71cc4d..d2e676ec26e9af83ed8652c3625757754b53e175 100644
--- a/spec/models/notification_spec.rb
+++ b/spec/models/notification_spec.rb
@@ -34,32 +34,6 @@ RSpec.describe Notification, type: :model do
     end
   end
 
-  describe '#browserable?' do
-    let(:notification) { Fabricate(:notification) }
-
-    subject { notification.browserable? }
-
-    context 'type is :follow_request' do
-      before do
-        allow(notification).to receive(:type).and_return(:follow_request)
-      end
-
-      it 'returns false' do
-        is_expected.to be false
-      end
-    end
-
-    context 'type is not :follow_request' do
-      before do
-        allow(notification).to receive(:type).and_return(:else)
-      end
-
-      it 'returns true' do
-        is_expected.to be true
-      end
-    end
-  end
-
   describe '#type' do
     it 'returns :reblog for a Status' do
       notification = Notification.new(activity: Status.new)
diff --git a/spec/models/status_spec.rb b/spec/models/status_spec.rb
index 0b6086978d890af4c93764d13a151d300734422e..76f031fdf72adbbc1b9959aa739acab1a2760675 100644
--- a/spec/models/status_spec.rb
+++ b/spec/models/status_spec.rb
@@ -96,16 +96,20 @@ RSpec.describe Status, type: :model do
 
     context 'unless destroyed?' do
       context 'if reblog?' do
-        it 'returns "#{account.acct} shared a status by #{reblog.account.acct}"' do
+        it 'returns "#{account.acct} shared #{reblog.account.acct}\'s: #{preview}"' do
           reblog = subject.reblog = other
-          expect(subject.title).to eq "#{account.acct} shared a status by #{reblog.account.acct}"
+          preview = subject.text.slice(0, 10).split("\n")[0]
+          expect(subject.title).to(
+            eq "#{account.acct} shared #{reblog.account.acct}'s: #{preview}"
+          )
         end
       end
 
       context 'unless reblog?' do
-        it 'returns "New status by #{account.acct}"' do
+        it 'returns "#{account.acct}: #{preview}"' do
           subject.reblog = nil
-          expect(subject.title).to eq "New status by #{account.acct}"
+          preview = subject.text.slice(0, 20).split("\n")[0]
+          expect(subject.title).to eq "#{account.acct}: #{preview}"
         end
       end
     end
diff --git a/spec/requests/localization_spec.rb b/spec/requests/localization_spec.rb
index 496a885e8d9126514f080c595c01b37cba0ea264..175f02ae997084684b61c0b241ba70b33439bba7 100644
--- a/spec/requests/localization_spec.rb
+++ b/spec/requests/localization_spec.rb
@@ -26,6 +26,7 @@ describe 'Localization' do
       I18n.t('about.tagline', locale: 'es')
     )
   end
+
   it 'falls back to english when locale is missing' do
     headers = { 'Accept-Language' => '12-FAKE' }
 
diff --git a/spec/services/activitypub/fetch_remote_status_service_spec.rb b/spec/services/activitypub/fetch_remote_status_service_spec.rb
index 78dd59e3b6ccb743afc2d07988025462338b0ea1..1ecc469524f3e113180aca201b2b50a395d46e82 100644
--- a/spec/services/activitypub/fetch_remote_status_service_spec.rb
+++ b/spec/services/activitypub/fetch_remote_status_service_spec.rb
@@ -104,6 +104,26 @@ RSpec.describe ActivityPub::FetchRemoteStatusService, type: :service do
       end
     end
 
+    context 'with Event object' do
+      let(:object) do
+        {
+          '@context': 'https://www.w3.org/ns/activitystreams',
+          id: "https://#{valid_domain}/@foo/1234",
+          type: 'Event',
+          name: "Let's change the world",
+          attributedTo: ActivityPub::TagManager.instance.uri_for(sender)
+        }
+      end
+
+      it 'creates status' do
+        status = sender.statuses.first
+
+        expect(status).to_not be_nil
+        expect(status.url).to eq "https://#{valid_domain}/@foo/1234"
+        expect(strip_tags(status.text)).to eq "Let's change the world https://#{valid_domain}/@foo/1234"
+      end
+    end
+
     context 'with wrong id' do
       let(:note) do
         {
diff --git a/spec/services/fetch_link_card_service_spec.rb b/spec/services/fetch_link_card_service_spec.rb
index 9761c5f0649623ec3193fa8ccaf35075f20f14a3..8b296cc704876382736ec632f088136862edf193 100644
--- a/spec/services/fetch_link_card_service_spec.rb
+++ b/spec/services/fetch_link_card_service_spec.rb
@@ -80,7 +80,7 @@ RSpec.describe FetchLinkCardService, type: :service do
   end
 
   context 'in a remote status' do
-    let(:status) { Fabricate(:status, account: Fabricate(:account, domain: 'example.com'), text: 'Habt ihr ein paar gute Links zu #<span class="tag"><a href="https://quitter.se/tag/wannacry" target="_blank" rel="tag noopener" title="https://quitter.se/tag/wannacry">Wannacry</a></span> herumfliegen?   Ich will mal unter <br> <a href="https://github.com/qbi/WannaCry" target="_blank" rel="noopener" title="https://github.com/qbi/WannaCry">https://github.com/qbi/WannaCry</a> was sammeln. !<a href="http://sn.jonkman.ca/group/416/id" target="_blank" rel="noopener" title="http://sn.jonkman.ca/group/416/id">security</a>&nbsp;') }
+    let(:status) { Fabricate(:status, account: Fabricate(:account, domain: 'example.com'), text: 'Habt ihr ein paar gute Links zu <a>foo</a> #<span class="tag"><a href="https://quitter.se/tag/wannacry" target="_blank" rel="tag noopener noreferrer" title="https://quitter.se/tag/wannacry">Wannacry</a></span> herumfliegen?   Ich will mal unter <br> <a href="https://github.com/qbi/WannaCry" target="_blank" rel="noopener noreferrer" title="https://github.com/qbi/WannaCry">https://github.com/qbi/WannaCry</a> was sammeln. !<a href="http://sn.jonkman.ca/group/416/id" target="_blank" rel="noopener noreferrer" title="http://sn.jonkman.ca/group/416/id">security</a>&nbsp;') }
 
     it 'parses out URLs' do
       expect(a_request(:get, 'https://github.com/qbi/WannaCry')).to have_been_made.at_least_once
diff --git a/spec/services/fetch_oembed_service_spec.rb b/spec/services/fetch_oembed_service_spec.rb
index 5789fb53bebbd168bb5007f72207b0362304123c..a4262b040853f1cbe0f992c29f770d6a826eb75a 100644
--- a/spec/services/fetch_oembed_service_spec.rb
+++ b/spec/services/fetch_oembed_service_spec.rb
@@ -113,6 +113,24 @@ describe FetchOEmbedService, type: :service do
 
     end
 
+    context 'when endpoint is cached' do
+      before do
+        stub_request(:get, 'http://www.youtube.com/oembed?format=json&url=https://www.youtube.com/watch?v=dqwpQarrDwk').to_return(
+          status: 200,
+          headers: { 'Content-Type': 'text/html' },
+          body: request_fixture('oembed_json_empty.html')
+        )
+      end
+
+      it 'returns new provider without fetching original URL first' do
+        subject.call('https://www.youtube.com/watch?v=dqwpQarrDwk', cached_endpoint: { endpoint: 'http://www.youtube.com/oembed?format=json&url={url}', format: :json })
+        expect(a_request(:get, 'https://www.youtube.com/watch?v=dqwpQarrDwk')).to_not have_been_made
+        expect(subject.endpoint_url).to eq 'http://www.youtube.com/oembed?format=json&url=https%3A%2F%2Fwww.youtube.com%2Fwatch%3Fv%3DdqwpQarrDwk'
+        expect(subject.format).to eq :json
+        expect(a_request(:get, 'http://www.youtube.com/oembed?format=json&url=https%3A%2F%2Fwww.youtube.com%2Fwatch%3Fv%3DdqwpQarrDwk')).to have_been_made
+      end
+    end
+
     context 'when status code is not 200' do
       before do
         stub_request(:get, 'https://host.test/oembed.html').to_return(
diff --git a/spec/services/fetch_remote_account_service_spec.rb b/spec/services/fetch_remote_account_service_spec.rb
deleted file mode 100644
index ee7325be28671b9c0fd61f34388d23e736e77b2a..0000000000000000000000000000000000000000
--- a/spec/services/fetch_remote_account_service_spec.rb
+++ /dev/null
@@ -1,50 +0,0 @@
-require 'rails_helper'
-
-RSpec.describe FetchRemoteAccountService, type: :service do
-  let(:url) { 'https://example.com/alice' }
-  let(:prefetched_body) { nil }
-  let(:protocol) { :ostatus }
-
-  subject { FetchRemoteAccountService.new.call(url, prefetched_body, protocol) }
-
-  let(:actor) do
-    {
-      '@context': 'https://www.w3.org/ns/activitystreams',
-      id: 'https://example.com/alice',
-      type: 'Person',
-      preferredUsername: 'alice',
-      name: 'Alice',
-      summary: 'Foo bar',
-      inbox: 'http://example.com/alice/inbox',
-    }
-  end
-
-  let(:webfinger) { { subject: 'acct:alice@example.com', links: [{ rel: 'self', href: 'https://example.com/alice' }] } }
-  let(:xml) { File.read(Rails.root.join('spec', 'fixtures', 'xml', 'mastodon.atom')) }
-
-  shared_examples 'return Account' do
-    it { is_expected.to be_an Account }
-  end
-
-  context 'protocol is :activitypub' do
-    let(:prefetched_body) { Oj.dump(actor) }
-    let(:protocol) { :activitypub }
-
-    before do
-      stub_request(:get, 'https://example.com/.well-known/webfinger?resource=acct:alice@example.com').to_return(body: Oj.dump(webfinger), headers: { 'Content-Type': 'application/jrd+json' })
-    end
-
-    include_examples 'return Account'
-  end
-
-  context 'when prefetched_body is nil' do
-    context 'protocol is :activitypub' do
-      before do
-        stub_request(:get, url).to_return(status: 200, body: Oj.dump(actor), headers: { 'Content-Type' => 'application/activity+json' })
-        stub_request(:get, 'https://example.com/.well-known/webfinger?resource=acct:alice@example.com').to_return(body: Oj.dump(webfinger), headers: { 'Content-Type': 'application/jrd+json' })
-      end
-
-      include_examples 'return Account'
-    end
-  end
-end
diff --git a/spec/services/fetch_remote_status_service_spec.rb b/spec/services/fetch_remote_status_service_spec.rb
index f9db024b93ab17dcb17988144c9f212bf391ad92..1c4b4fee2645191581ee00544aa4fb1fe4a4ee92 100644
--- a/spec/services/fetch_remote_status_service_spec.rb
+++ b/spec/services/fetch_remote_status_service_spec.rb
@@ -16,9 +16,8 @@ RSpec.describe FetchRemoteStatusService, type: :service do
   end
 
   context 'protocol is :activitypub' do
-    subject { described_class.new.call(note[:id], prefetched_body, protocol) }
+    subject { described_class.new.call(note[:id], prefetched_body) }
     let(:prefetched_body) { Oj.dump(note) }
-    let(:protocol) { :activitypub }
 
     before do
       account.update(uri: ActivityPub::TagManager.instance.uri_for(account))
@@ -59,7 +58,7 @@ RSpec.describe FetchRemoteStatusService, type: :service do
         </entry>
       XML
 
-      expect(subject.call('https://fake.domain/foo', status_body, :ostatus)).to be_nil
+      expect(subject.call('https://fake.domain/foo', status_body)).to be_nil
     end
 
     it 'does not create status with wrong id when id uses http format' do
@@ -81,7 +80,7 @@ RSpec.describe FetchRemoteStatusService, type: :service do
         </entry>
       XML
 
-      expect(subject.call('https://real.domain/statuses/456', status_body, :ostatus)).to be_nil
+      expect(subject.call('https://real.domain/statuses/456', status_body)).to be_nil
     end
   end
 end
diff --git a/spec/services/fetch_resource_service_spec.rb b/spec/services/fetch_resource_service_spec.rb
index f836147d354f3d13aff473705c8830a0983ba59c..3af6a06899eff266976a95e5271de16931f3bd16 100644
--- a/spec/services/fetch_resource_service_spec.rb
+++ b/spec/services/fetch_resource_service_spec.rb
@@ -71,14 +71,14 @@ RSpec.describe FetchResourceService, type: :service do
         let(:content_type) { 'application/activity+json; charset=utf-8' }
         let(:body) { json }
 
-        it { is_expected.to eq [1, { prefetched_body: body, id: true }, :activitypub] }
+        it { is_expected.to eq [1, { prefetched_body: body, id: true }] }
       end
 
       context 'when content type is ld+json with profile' do
         let(:content_type) { 'application/ld+json; profile="https://www.w3.org/ns/activitystreams"' }
         let(:body) { json }
 
-        it { is_expected.to eq [1, { prefetched_body: body, id: true }, :activitypub] }
+        it { is_expected.to eq [1, { prefetched_body: body, id: true }] }
       end
 
       before do
@@ -89,14 +89,14 @@ RSpec.describe FetchResourceService, type: :service do
       context 'when link header is present' do
         let(:headers) { { 'Link' => '<http://example.com/foo>; rel="alternate"; type="application/activity+json"', } }
 
-        it { is_expected.to eq [1, { prefetched_body: json, id: true }, :activitypub] }
+        it { is_expected.to eq [1, { prefetched_body: json, id: true }] }
       end
 
       context 'when content type is text/html' do
         let(:content_type) { 'text/html' }
         let(:body) { '<html><head><link rel="alternate" href="http://example.com/foo" type="application/activity+json"/></head></html>' }
 
-        it { is_expected.to eq [1, { prefetched_body: json, id: true }, :activitypub] }
+        it { is_expected.to eq [1, { prefetched_body: json, id: true }] }
       end
     end
   end
diff --git a/spec/services/process_mentions_service_spec.rb b/spec/services/process_mentions_service_spec.rb
index b1abd79b0f2b5ceb8d12ca374f3038428df067b2..c30de8eeb9c20f15a4686ab31753115e0a1f1649 100644
--- a/spec/services/process_mentions_service_spec.rb
+++ b/spec/services/process_mentions_service_spec.rb
@@ -5,11 +5,11 @@ RSpec.describe ProcessMentionsService, type: :service do
   let(:visibility) { :public }
   let(:status)     { Fabricate(:status, account: account, text: "Hello @#{remote_user.acct}", visibility: visibility) }
 
+  subject { ProcessMentionsService.new }
+
   context 'OStatus with public toot' do
     let(:remote_user) { Fabricate(:account, username: 'remote_user', protocol: :ostatus, domain: 'example.com', salmon_url: 'http://salmon.example.com') }
 
-    subject { ProcessMentionsService.new }
-
     before do
       stub_request(:post, remote_user.salmon_url)
       subject.call(status)
@@ -24,8 +24,6 @@ RSpec.describe ProcessMentionsService, type: :service do
     let(:visibility)  { :private }
     let(:remote_user) { Fabricate(:account, username: 'remote_user', protocol: :ostatus, domain: 'example.com', salmon_url: 'http://salmon.example.com') }
 
-    subject { ProcessMentionsService.new }
-
     before do
       stub_request(:post, remote_user.salmon_url)
       subject.call(status)
@@ -41,29 +39,45 @@ RSpec.describe ProcessMentionsService, type: :service do
   end
 
   context 'ActivityPub' do
-    let(:remote_user) { Fabricate(:account, username: 'remote_user', protocol: :activitypub, domain: 'example.com', inbox_url: 'http://example.com/inbox') }
+    context do
+      let(:remote_user) { Fabricate(:account, username: 'remote_user', protocol: :activitypub, domain: 'example.com', inbox_url: 'http://example.com/inbox') }
 
-    subject { ProcessMentionsService.new }
+      before do
+        stub_request(:post, remote_user.inbox_url)
+        subject.call(status)
+      end
 
-    before do
-      stub_request(:post, remote_user.inbox_url)
-      subject.call(status)
-    end
+      it 'creates a mention' do
+        expect(remote_user.mentions.where(status: status).count).to eq 1
+      end
 
-    it 'creates a mention' do
-      expect(remote_user.mentions.where(status: status).count).to eq 1
+      it 'sends activity to the inbox' do
+        expect(a_request(:post, remote_user.inbox_url)).to have_been_made.once
+      end
     end
 
-    it 'sends activity to the inbox' do
-      expect(a_request(:post, remote_user.inbox_url)).to have_been_made.once
+    context 'with an IDN domain' do
+      let(:remote_user) { Fabricate(:account, username: 'sneak', protocol: :activitypub, domain: 'xn--hresiar-mxa.ch', inbox_url: 'http://example.com/inbox') }
+      let(:status) { Fabricate(:status, account: account, text: "Hello @sneak@hæresiar.ch") }
+
+      before do
+        stub_request(:post, remote_user.inbox_url)
+        subject.call(status)
+      end
+
+      it 'creates a mention' do
+        expect(remote_user.mentions.where(status: status).count).to eq 1
+      end
+
+      it 'sends activity to the inbox' do
+        expect(a_request(:post, remote_user.inbox_url)).to have_been_made.once
+      end
     end
   end
 
   context 'Temporarily-unreachable ActivityPub user' do
     let(:remote_user) { Fabricate(:account, username: 'remote_user', protocol: :activitypub, domain: 'example.com', inbox_url: 'http://example.com/inbox', last_webfingered_at: nil) }
 
-    subject { ProcessMentionsService.new }
-
     before do
       stub_request(:get, "https://example.com/.well-known/host-meta").to_return(status: 404)
       stub_request(:get, "https://example.com/.well-known/webfinger?resource=acct:remote_user@example.com").to_return(status: 500)
diff --git a/spec/services/verify_link_service_spec.rb b/spec/services/verify_link_service_spec.rb
index 2edcdb75f12494e499a0b1f31a67b75ae9a3e50e..3fc88e60e4b06218965fe5cc10daf7644181c454 100644
--- a/spec/services/verify_link_service_spec.rb
+++ b/spec/services/verify_link_service_spec.rb
@@ -28,12 +28,12 @@ RSpec.describe VerifyLinkService, type: :service do
       end
     end
 
-    context 'when a link contains an <a rel="noopener"> back' do
+    context 'when a link contains an <a rel="noopener noreferrer"> back' do
       let(:html) do
         <<-HTML
           <!doctype html>
           <body>
-            <a href="#{ActivityPub::TagManager.instance.url_for(account)}" rel="noopener me" target="_blank">Follow me on Mastodon</a>
+            <a href="#{ActivityPub::TagManager.instance.url_for(account)}" rel="me noopener noreferrer" target="_blank">Follow me on Mastodon</a>
           </body>
         HTML
       end
diff --git a/spec/spec_helper.rb b/spec/spec_helper.rb
index 45ba1bbd9bd976ecdc4b59b6814f0832b82be51f..b6d127a0840217158e1a067e4854252beb98b323 100644
--- a/spec/spec_helper.rb
+++ b/spec/spec_helper.rb
@@ -12,6 +12,7 @@ end
 gc_counter = -1
 
 RSpec.configure do |config|
+  config.example_status_persistence_file_path = "tmp/rspec/examples.txt"
   config.expect_with :rspec do |expectations|
     expectations.include_chain_clauses_in_custom_matcher_descriptions = true
   end
diff --git a/spec/support/examples/models/concerns/account_avatar.rb b/spec/support/examples/models/concerns/account_avatar.rb
index f2a8a2459c57faf6553fec0d30172c849d6cf97b..2180f52739fb5a8aff940c89e8a36fae92cf8ea8 100644
--- a/spec/support/examples/models/concerns/account_avatar.rb
+++ b/spec/support/examples/models/concerns/account_avatar.rb
@@ -16,4 +16,24 @@ shared_examples 'AccountAvatar' do |fabricator|
       end
     end
   end
+
+  describe 'base64-encoded files' do
+    let(:base64_attachment) { "data:image/jpeg;base64,#{Base64.encode64(attachment_fixture('attachment.jpg').read)}" }
+    let(:account) { Fabricate(fabricator, avatar: base64_attachment) }
+
+    it 'saves avatar' do
+      expect(account.persisted?).to be true
+      expect(account.avatar).to_not be_nil
+    end
+
+    it 'gives the avatar a file name' do
+      expect(account.avatar_file_name).to_not be_blank
+    end
+
+    it 'saves a new avatar under a different file name' do
+      previous_file_name = account.avatar_file_name
+      account.update(avatar: base64_attachment)
+      expect(account.avatar_file_name).to_not eq previous_file_name
+    end
+  end
 end
diff --git a/spec/support/examples/models/concerns/account_header.rb b/spec/support/examples/models/concerns/account_header.rb
new file mode 100644
index 0000000000000000000000000000000000000000..77ee0e62901380f5baa298557acf4ecab442b2f0
--- /dev/null
+++ b/spec/support/examples/models/concerns/account_header.rb
@@ -0,0 +1,23 @@
+# frozen_string_literal: true
+
+shared_examples 'AccountHeader' do |fabricator|
+  describe 'base64-encoded files' do
+    let(:base64_attachment) { "data:image/jpeg;base64,#{Base64.encode64(attachment_fixture('attachment.jpg').read)}" }
+    let(:account) { Fabricate(fabricator, header: base64_attachment) }
+
+    it 'saves header' do
+      expect(account.persisted?).to be true
+      expect(account.header).to_not be_nil
+    end
+
+    it 'gives the header a file name' do
+      expect(account.header_file_name).to_not be_blank
+    end
+
+    it 'saves a new header under a different file name' do
+      previous_file_name = account.header_file_name
+      account.update(header: base64_attachment)
+      expect(account.header_file_name).to_not eq previous_file_name
+    end
+  end
+end
diff --git a/spec/support/stories/profile_stories.rb b/spec/support/stories/profile_stories.rb
new file mode 100644
index 0000000000000000000000000000000000000000..75b413330fc1da6339ec6c723b86e2d3f05c965f
--- /dev/null
+++ b/spec/support/stories/profile_stories.rb
@@ -0,0 +1,45 @@
+# frozen_string_literal: true
+
+module ProfileStories
+  attr_reader :bob, :alice, :alice_bio
+
+  def as_a_registered_user
+    @bob = Fabricate(
+      :user,
+      email: email, password: password, confirmed_at: confirmed_at,
+      account: Fabricate(:account, username: 'bob')
+    )
+  end
+
+  def as_a_logged_in_user
+    as_a_registered_user
+    visit new_user_session_path
+    fill_in 'user_email', with: email
+    fill_in 'user_password', with: password
+    click_on I18n.t('auth.login')
+  end
+
+  def with_alice_as_local_user
+    @alice_bio = '@alice and @bob are fictional characters commonly used as'\
+                 'placeholder names in #cryptology, as well as #science and'\
+                 'engineering 📖 literature. Not affilated with @pepe.'
+
+    @alice = Fabricate(
+      :user,
+      email: 'alice@example.com', password: password, confirmed_at: confirmed_at,
+      account: Fabricate(:account, username: 'alice', note: @alice_bio)
+    )
+  end
+
+  def confirmed_at
+    @confirmed_at ||= Time.zone.now
+  end
+
+  def email
+    @email ||= 'test@example.com'
+  end
+
+  def password
+    @password ||= 'password'
+  end
+end
diff --git a/spec/workers/move_worker_spec.rb b/spec/workers/move_worker_spec.rb
new file mode 100644
index 0000000000000000000000000000000000000000..b8f4d99007aeaabf3cb85eefad692ec0a29b42b2
--- /dev/null
+++ b/spec/workers/move_worker_spec.rb
@@ -0,0 +1,63 @@
+# frozen_string_literal: true
+
+require 'rails_helper'
+
+describe MoveWorker do
+  let(:local_follower)   { Fabricate(:user, email: 'bob@example.com', account: Fabricate(:account, username: 'bob')).account }
+  let(:source_account)   { Fabricate(:account, protocol: :activitypub, domain: 'example.com') }
+  let(:target_account)   { Fabricate(:account, protocol: :activitypub, domain: 'example.com') }
+
+  subject { described_class.new }
+
+  before do
+    local_follower.follow!(source_account)
+  end
+
+  context 'both accounts are distant' do
+    describe 'perform' do
+      it 'calls UnfollowFollowWorker' do
+        allow(UnfollowFollowWorker).to receive(:push_bulk)
+        subject.perform(source_account.id, target_account.id)
+        expect(UnfollowFollowWorker).to have_received(:push_bulk).with([local_follower.id])
+      end
+    end
+  end
+
+  context 'target account is local' do
+    let(:target_account) { Fabricate(:user, email: 'alice@example.com', account: Fabricate(:account, username: 'alice')).account }
+
+    describe 'perform' do
+      it 'calls UnfollowFollowWorker' do
+        allow(UnfollowFollowWorker).to receive(:push_bulk)
+        subject.perform(source_account.id, target_account.id)
+        expect(UnfollowFollowWorker).to have_received(:push_bulk).with([local_follower.id])
+      end
+    end
+  end
+
+  context 'both target and source accounts are local' do
+    let(:target_account) { Fabricate(:user, email: 'alice@example.com', account: Fabricate(:account, username: 'alice')).account }
+    let(:source_account) { Fabricate(:user, email: 'alice_@example.com', account: Fabricate(:account, username: 'alice_')).account }
+
+    describe 'perform' do
+      it 'calls makes local followers follow the target account' do
+        subject.perform(source_account.id, target_account.id)
+        expect(local_follower.following?(target_account)).to be true
+      end
+
+      it 'does not fail when a local user is already following both accounts' do
+        double_follower = Fabricate(:user, email: 'eve@example.com', account: Fabricate(:account, username: 'eve')).account
+        double_follower.follow!(source_account)
+        double_follower.follow!(target_account)
+        subject.perform(source_account.id, target_account.id)
+        expect(local_follower.following?(target_account)).to be true
+      end
+
+      it 'does not allow the moved account to follow themselves' do
+        source_account.follow!(target_account)
+        subject.perform(source_account.id, target_account.id)
+        expect(target_account.following?(target_account)).to be false
+      end
+    end
+  end
+end
diff --git a/spec/workers/refollow_worker_spec.rb b/spec/workers/refollow_worker_spec.rb
new file mode 100644
index 0000000000000000000000000000000000000000..29771aa59b7e396948bc861157e421a163b9103b
--- /dev/null
+++ b/spec/workers/refollow_worker_spec.rb
@@ -0,0 +1,30 @@
+# frozen_string_literal: true
+
+require 'rails_helper'
+
+describe RefollowWorker do
+  subject { described_class.new }
+  let(:account) { Fabricate(:account, domain: 'example.org', protocol: :activitypub) }
+  let(:alice)   { Fabricate(:account, domain: nil, username: 'alice') }
+  let(:bob)     { Fabricate(:account, domain: nil, username: 'bob') }
+
+  describe 'perform' do
+    let(:service) { double }
+
+    before do
+      allow(FollowService).to receive(:new).and_return(service)
+      allow(service).to receive(:call)
+
+      alice.follow!(account, reblogs: true)
+      bob.follow!(account, reblogs: false)
+    end
+
+    it 'calls FollowService for local followers' do
+      result = subject.perform(account.id)
+
+      expect(result).to be_nil
+      expect(service).to have_received(:call).with(alice, account, reblogs: true)
+      expect(service).to have_received(:call).with(bob, account, reblogs: false)
+    end
+  end
+end
diff --git a/spec/workers/unfollow_follow_worker_spec.rb b/spec/workers/unfollow_follow_worker_spec.rb
new file mode 100644
index 0000000000000000000000000000000000000000..5052c5616a9a4038baaef9df6c61ae2718ac9f9d
--- /dev/null
+++ b/spec/workers/unfollow_follow_worker_spec.rb
@@ -0,0 +1,50 @@
+# frozen_string_literal: true
+
+require 'rails_helper'
+
+describe UnfollowFollowWorker do
+  let(:local_follower)   { Fabricate(:user, email: 'bob@example.com', account: Fabricate(:account, username: 'bob')).account }
+  let(:source_account)   { Fabricate(:account) }
+  let(:target_account)   { Fabricate(:account) }
+  let(:show_reblogs)     { true }
+
+  subject { described_class.new }
+
+  before do
+    local_follower.follow!(source_account, reblogs: show_reblogs)
+  end
+
+  context 'when show_reblogs is true' do
+    let(:show_reblogs) { true }
+
+    describe 'perform' do
+      it 'unfollows source account and follows target account' do
+        subject.perform(local_follower.id, source_account.id, target_account.id)
+        expect(local_follower.following?(source_account)).to be false
+        expect(local_follower.following?(target_account)).to be true
+      end
+
+      it 'preserves show_reblogs' do
+        subject.perform(local_follower.id, source_account.id, target_account.id)
+        expect(Follow.find_by(account: local_follower, target_account: target_account).show_reblogs?).to be show_reblogs
+      end
+    end
+  end
+
+  context 'when show_reblogs is false' do
+    let(:show_reblogs) { false }
+
+    describe 'perform' do
+      it 'unfollows source account and follows target account' do
+        subject.perform(local_follower.id, source_account.id, target_account.id)
+        expect(local_follower.following?(source_account)).to be false
+        expect(local_follower.following?(target_account)).to be true
+      end
+
+      it 'preserves show_reblogs' do
+        subject.perform(local_follower.id, source_account.id, target_account.id)
+        expect(Follow.find_by(account: local_follower, target_account: target_account).show_reblogs?).to be show_reblogs
+      end
+    end
+  end
+end
diff --git a/streaming/index.js b/streaming/index.js
index f743f574451e233ed7250aff0543db5966f9a332..d4c1c3ed7eddfe37b0ece364b3ff9f505e69aabc 100644
--- a/streaming/index.js
+++ b/streaming/index.js
@@ -266,6 +266,8 @@ const startWorker = (workerId) => {
     'public:media',
     'public:local',
     'public:local:media',
+    'public:remote',
+    'public:remote:media',
     'hashtag',
     'hashtag:local',
   ];
@@ -297,6 +299,7 @@ const startWorker = (workerId) => {
   const PUBLIC_ENDPOINTS = [
     '/api/v1/streaming/public',
     '/api/v1/streaming/public/local',
+    '/api/v1/streaming/public/remote',
     '/api/v1/streaming/hashtag',
     '/api/v1/streaming/hashtag/local',
   ];
@@ -538,6 +541,19 @@ const startWorker = (workerId) => {
     streamFrom(channel, req, streamToHttp(req, res), streamHttpEnd(req), true);
   });
 
+  app.get('/api/v1/streaming/public/remote', (req, res) => {
+    const onlyMedia  = req.query.only_media === '1' || req.query.only_media === 'true';
+    const channel    = onlyMedia ? 'timeline:public:remote:media' : 'timeline:public:remote';
+    const { domain } = req.query;
+
+    if (!domain || domain.length === 0) {
+      httpNotFound(res);
+      return;
+    }
+
+    streamFrom(`${channel}:${domain.toLowerCase()}`, req, streamToHttp(req, res), streamHttpEnd(req), true);
+  });
+
   app.get('/api/v1/streaming/direct', (req, res) => {
     const channel = `timeline:direct:${req.accountId}`;
     streamFrom(channel, req, streamToHttp(req, res), streamHttpEnd(req, subscriptionHeartbeat(channel)), true);
@@ -602,12 +618,28 @@ const startWorker = (workerId) => {
     case 'public:local':
       streamFrom('timeline:public:local', req, streamToWs(req, ws), streamWsEnd(req, ws), true);
       break;
+    case 'public:remote':
+      if (!location.query.domain || location.query.domain.length === 0) {
+        ws.close();
+        return;
+      }
+
+      streamFrom(`timeline:public:remote:${location.query.domain.toLowerCase()}`, req, streamToWs(req, ws), streamWsEnd(req, ws), true);
+      break;
     case 'public:media':
       streamFrom('timeline:public:media', req, streamToWs(req, ws), streamWsEnd(req, ws), true);
       break;
     case 'public:local:media':
       streamFrom('timeline:public:local:media', req, streamToWs(req, ws), streamWsEnd(req, ws), true);
       break;
+    case 'public:remote:media':
+      if (!location.query.domain || location.query.domain.length === 0) {
+        ws.close();
+        return;
+      }
+
+      streamFrom(`timeline:public:remote:media:${location.query.domain.toLowerCase()}`, req, streamToWs(req, ws), streamWsEnd(req, ws), true);
+      break;
     case 'direct':
       channel = `timeline:direct:${req.accountId}`;
       streamFrom(channel, req, streamToWs(req, ws), streamWsEnd(req, ws, subscriptionHeartbeat(channel)), true);
diff --git a/yarn.lock b/yarn.lock
index 74323bf5bb7f2685e91ff79d1300f8a0d5a84290..bf83649eab9f0524cc48da4d00bac8c18d5c5de7 100644
--- a/yarn.lock
+++ b/yarn.lock
@@ -2,771 +2,798 @@
 # yarn lockfile v1
 
 
-"@babel/code-frame@^7.0.0", "@babel/code-frame@^7.5.5":
-  version "7.5.5"
-  resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.5.5.tgz#bc0782f6d69f7b7d49531219699b988f669a8f9d"
-  integrity sha512-27d4lZoomVyo51VegxI20xZPuSHusqbQag/ztrBC7wegWoQ1nLREPVSKSW8byhTlzTKyNE4ifaTA6lCp7JjpFw==
+"@babel/code-frame@^7.0.0", "@babel/code-frame@^7.8.3":
+  version "7.8.3"
+  resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.8.3.tgz#33e25903d7481181534e12ec0a25f16b6fcf419e"
+  integrity sha512-a9gxpmdXtZEInkCSHUJDLHZVBgb1QS0jhss4cPP93EW7s+uC5bikET2twEF3KV+7rDblJcmNvTR7VJejqd2C2g==
   dependencies:
-    "@babel/highlight" "^7.0.0"
+    "@babel/highlight" "^7.8.3"
 
-"@babel/core@^7.1.0":
-  version "7.3.4"
-  resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.3.4.tgz#921a5a13746c21e32445bf0798680e9d11a6530b"
-  integrity sha512-jRsuseXBo9pN197KnDwhhaaBzyZr2oIcLHHTt2oDdQrej5Qp57dCCJafWx5ivU8/alEYDpssYqv1MUqcxwQlrA==
+"@babel/compat-data@^7.8.0", "@babel/compat-data@^7.8.1":
+  version "7.8.1"
+  resolved "https://registry.yarnpkg.com/@babel/compat-data/-/compat-data-7.8.1.tgz#fc0bbbb7991e4fb2b47e168e60f2cc2c41680be9"
+  integrity sha512-Z+6ZOXvyOWYxJ50BwxzdhRnRsGST8Y3jaZgxYig575lTjVSs3KtJnmESwZegg6e2Dn0td1eDhoWlp1wI4BTCPw==
   dependencies:
-    "@babel/code-frame" "^7.0.0"
-    "@babel/generator" "^7.3.4"
-    "@babel/helpers" "^7.2.0"
-    "@babel/parser" "^7.3.4"
-    "@babel/template" "^7.2.2"
-    "@babel/traverse" "^7.3.4"
-    "@babel/types" "^7.3.4"
-    convert-source-map "^1.1.0"
-    debug "^4.1.0"
-    json5 "^2.1.0"
-    lodash "^4.17.11"
-    resolve "^1.3.2"
-    semver "^5.4.1"
-    source-map "^0.5.0"
+    browserslist "^4.8.2"
+    invariant "^2.2.4"
+    semver "^5.5.0"
 
-"@babel/core@^7.4.5":
-  version "7.4.5"
-  resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.4.5.tgz#081f97e8ffca65a9b4b0fdc7e274e703f000c06a"
-  integrity sha512-OvjIh6aqXtlsA8ujtGKfC7LYWksYSX8yQcM8Ay3LuvVeQ63lcOKgoZWVqcpFwkd29aYU9rVx7jxhfhiEDV9MZA==
-  dependencies:
-    "@babel/code-frame" "^7.0.0"
-    "@babel/generator" "^7.4.4"
-    "@babel/helpers" "^7.4.4"
-    "@babel/parser" "^7.4.5"
-    "@babel/template" "^7.4.4"
-    "@babel/traverse" "^7.4.5"
-    "@babel/types" "^7.4.4"
-    convert-source-map "^1.1.0"
+"@babel/core@^7.1.0", "@babel/core@^7.4.5", "@babel/core@^7.8.3":
+  version "7.8.3"
+  resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.8.3.tgz#30b0ebb4dd1585de6923a0b4d179e0b9f5d82941"
+  integrity sha512-4XFkf8AwyrEG7Ziu3L2L0Cv+WyY47Tcsp70JFmpftbAA1K7YL/sgE9jh9HyNj08Y/U50ItUchpN0w6HxAoX1rA==
+  dependencies:
+    "@babel/code-frame" "^7.8.3"
+    "@babel/generator" "^7.8.3"
+    "@babel/helpers" "^7.8.3"
+    "@babel/parser" "^7.8.3"
+    "@babel/template" "^7.8.3"
+    "@babel/traverse" "^7.8.3"
+    "@babel/types" "^7.8.3"
+    convert-source-map "^1.7.0"
     debug "^4.1.0"
+    gensync "^1.0.0-beta.1"
     json5 "^2.1.0"
-    lodash "^4.17.11"
+    lodash "^4.17.13"
     resolve "^1.3.2"
     semver "^5.4.1"
     source-map "^0.5.0"
 
-"@babel/generator@^7.0.0", "@babel/generator@^7.3.4":
-  version "7.3.4"
-  resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.3.4.tgz#9aa48c1989257877a9d971296e5b73bfe72e446e"
-  integrity sha512-8EXhHRFqlVVWXPezBW5keTiQi/rJMQTg/Y9uVCEZ0CAF3PKtCCaVRnp64Ii1ujhkoDhhF1fVsImoN4yJ2uz4Wg==
+"@babel/generator@^7.0.0", "@babel/generator@^7.8.3":
+  version "7.8.3"
+  resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.8.3.tgz#0e22c005b0a94c1c74eafe19ef78ce53a4d45c03"
+  integrity sha512-WjoPk8hRpDRqqzRpvaR8/gDUPkrnOOeuT2m8cNICJtZH6mwaCo3v0OKMI7Y6SM1pBtyijnLtAL0HDi41pf41ug==
   dependencies:
-    "@babel/types" "^7.3.4"
-    jsesc "^2.5.1"
-    lodash "^4.17.11"
-    source-map "^0.5.0"
-    trim-right "^1.0.1"
-
-"@babel/generator@^7.4.4":
-  version "7.4.4"
-  resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.4.4.tgz#174a215eb843fc392c7edcaabeaa873de6e8f041"
-  integrity sha512-53UOLK6TVNqKxf7RUh8NE851EHRxOOeVXKbK2bivdb+iziMyk03Sr4eaE9OELCbyZAAafAKPDwF2TPUES5QbxQ==
-  dependencies:
-    "@babel/types" "^7.4.4"
-    jsesc "^2.5.1"
-    lodash "^4.17.11"
-    source-map "^0.5.0"
-    trim-right "^1.0.1"
-
-"@babel/generator@^7.5.5":
-  version "7.5.5"
-  resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.5.5.tgz#873a7f936a3c89491b43536d12245b626664e3cf"
-  integrity sha512-ETI/4vyTSxTzGnU2c49XHv2zhExkv9JHLTwDAFz85kmcwuShvYG2H08FwgIguQf4JC75CBnXAUM5PqeF4fj0nQ==
-  dependencies:
-    "@babel/types" "^7.5.5"
+    "@babel/types" "^7.8.3"
     jsesc "^2.5.1"
     lodash "^4.17.13"
     source-map "^0.5.0"
-    trim-right "^1.0.1"
 
-"@babel/helper-annotate-as-pure@^7.0.0":
-  version "7.0.0"
-  resolved "https://registry.yarnpkg.com/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.0.0.tgz#323d39dd0b50e10c7c06ca7d7638e6864d8c5c32"
-  integrity sha512-3UYcJUj9kvSLbLbUIfQTqzcy5VX7GRZ/CCDrnOaZorFFM01aXp1+GJwuFGV4NDDoAS+mOUyHcO6UD/RfqOks3Q==
+"@babel/helper-annotate-as-pure@^7.8.3":
+  version "7.8.3"
+  resolved "https://registry.yarnpkg.com/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.8.3.tgz#60bc0bc657f63a0924ff9a4b4a0b24a13cf4deee"
+  integrity sha512-6o+mJrZBxOoEX77Ezv9zwW7WV8DdluouRKNY/IR5u/YTMuKHgugHOzYWlYvYLpLA9nPsQCAAASpCIbjI9Mv+Uw==
   dependencies:
-    "@babel/types" "^7.0.0"
+    "@babel/types" "^7.8.3"
 
-"@babel/helper-builder-binary-assignment-operator-visitor@^7.1.0":
-  version "7.1.0"
-  resolved "https://registry.yarnpkg.com/@babel/helper-builder-binary-assignment-operator-visitor/-/helper-builder-binary-assignment-operator-visitor-7.1.0.tgz#6b69628dfe4087798e0c4ed98e3d4a6b2fbd2f5f"
-  integrity sha512-qNSR4jrmJ8M1VMM9tibvyRAHXQs2PmaksQF7c1CGJNipfe3D8p+wgNwgso/P2A2r2mdgBWAXljNWR0QRZAMW8w==
+"@babel/helper-builder-binary-assignment-operator-visitor@^7.8.3":
+  version "7.8.3"
+  resolved "https://registry.yarnpkg.com/@babel/helper-builder-binary-assignment-operator-visitor/-/helper-builder-binary-assignment-operator-visitor-7.8.3.tgz#c84097a427a061ac56a1c30ebf54b7b22d241503"
+  integrity sha512-5eFOm2SyFPK4Rh3XMMRDjN7lBH0orh3ss0g3rTYZnBQ+r6YPj7lgDyCvPphynHvUrobJmeMignBr6Acw9mAPlw==
   dependencies:
-    "@babel/helper-explode-assignable-expression" "^7.1.0"
-    "@babel/types" "^7.0.0"
+    "@babel/helper-explode-assignable-expression" "^7.8.3"
+    "@babel/types" "^7.8.3"
 
-"@babel/helper-builder-react-jsx@^7.0.0":
-  version "7.0.0"
-  resolved "https://registry.yarnpkg.com/@babel/helper-builder-react-jsx/-/helper-builder-react-jsx-7.0.0.tgz#fa154cb53eb918cf2a9a7ce928e29eb649c5acdb"
-  integrity sha512-ebJ2JM6NAKW0fQEqN8hOLxK84RbRz9OkUhGS/Xd5u56ejMfVbayJ4+LykERZCOUM6faa6Fp3SZNX3fcT16MKHw==
+"@babel/helper-builder-react-jsx@^7.8.0":
+  version "7.8.0"
+  resolved "https://registry.yarnpkg.com/@babel/helper-builder-react-jsx/-/helper-builder-react-jsx-7.8.0.tgz#4b9111eb862f5fd8840c37d200610fa95ab0aad8"
+  integrity sha512-Zg7VLtZzcAHoQ13S0pEIGKo8OAG3s5kjsk/4keGmUeNuc810T9fVp6izIaL8ZVeAErRFWJdvqFItY3QMTHMsSg==
   dependencies:
-    "@babel/types" "^7.0.0"
+    "@babel/types" "^7.8.0"
     esutils "^2.0.0"
 
-"@babel/helper-call-delegate@^7.4.4":
-  version "7.4.4"
-  resolved "https://registry.yarnpkg.com/@babel/helper-call-delegate/-/helper-call-delegate-7.4.4.tgz#87c1f8ca19ad552a736a7a27b1c1fcf8b1ff1f43"
-  integrity sha512-l79boDFJ8S1c5hvQvG+rc+wHw6IuH7YldmRKsYtpbawsxURu/paVy57FZMomGK22/JckepaikOkY0MoAmdyOlQ==
+"@babel/helper-builder-react-jsx@^7.8.3":
+  version "7.8.3"
+  resolved "https://registry.yarnpkg.com/@babel/helper-builder-react-jsx/-/helper-builder-react-jsx-7.8.3.tgz#dee98d7d79cc1f003d80b76fe01c7f8945665ff6"
+  integrity sha512-JT8mfnpTkKNCboTqZsQTdGo3l3Ik3l7QIt9hh0O9DYiwVel37VoJpILKM4YFbP2euF32nkQSb+F9cUk9b7DDXQ==
   dependencies:
-    "@babel/helper-hoist-variables" "^7.4.4"
-    "@babel/traverse" "^7.4.4"
-    "@babel/types" "^7.4.4"
+    "@babel/types" "^7.8.3"
+    esutils "^2.0.0"
 
-"@babel/helper-create-class-features-plugin@^7.4.4", "@babel/helper-create-class-features-plugin@^7.5.5":
-  version "7.5.5"
-  resolved "https://registry.yarnpkg.com/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.5.5.tgz#401f302c8ddbc0edd36f7c6b2887d8fa1122e5a4"
-  integrity sha512-ZsxkyYiRA7Bg+ZTRpPvB6AbOFKTFFK4LrvTet8lInm0V468MWCaSYJE+I7v2z2r8KNLtYiV+K5kTCnR7dvyZjg==
+"@babel/helper-call-delegate@^7.8.3":
+  version "7.8.3"
+  resolved "https://registry.yarnpkg.com/@babel/helper-call-delegate/-/helper-call-delegate-7.8.3.tgz#de82619898aa605d409c42be6ffb8d7204579692"
+  integrity sha512-6Q05px0Eb+N4/GTyKPPvnkig7Lylw+QzihMpws9iiZQv7ZImf84ZsZpQH7QoWN4n4tm81SnSzPgHw2qtO0Zf3A==
   dependencies:
-    "@babel/helper-function-name" "^7.1.0"
-    "@babel/helper-member-expression-to-functions" "^7.5.5"
-    "@babel/helper-optimise-call-expression" "^7.0.0"
-    "@babel/helper-plugin-utils" "^7.0.0"
-    "@babel/helper-replace-supers" "^7.5.5"
-    "@babel/helper-split-export-declaration" "^7.4.4"
+    "@babel/helper-hoist-variables" "^7.8.3"
+    "@babel/traverse" "^7.8.3"
+    "@babel/types" "^7.8.3"
 
-"@babel/helper-define-map@^7.5.5":
-  version "7.5.5"
-  resolved "https://registry.yarnpkg.com/@babel/helper-define-map/-/helper-define-map-7.5.5.tgz#3dec32c2046f37e09b28c93eb0b103fd2a25d369"
-  integrity sha512-fTfxx7i0B5NJqvUOBBGREnrqbTxRh7zinBANpZXAVDlsZxYdclDp467G1sQ8VZYMnAURY3RpBUAgOYT9GfzHBg==
+"@babel/helper-compilation-targets@^7.8.3":
+  version "7.8.3"
+  resolved "https://registry.yarnpkg.com/@babel/helper-compilation-targets/-/helper-compilation-targets-7.8.3.tgz#2deedc816fd41dca7355ef39fd40c9ea69f0719a"
+  integrity sha512-JLylPCsFjhLN+6uBSSh3iYdxKdeO9MNmoY96PE/99d8kyBFaXLORtAVhqN6iHa+wtPeqxKLghDOZry0+Aiw9Tw==
   dependencies:
-    "@babel/helper-function-name" "^7.1.0"
-    "@babel/types" "^7.5.5"
+    "@babel/compat-data" "^7.8.1"
+    browserslist "^4.8.2"
+    invariant "^2.2.4"
+    levenary "^1.1.0"
+    semver "^5.5.0"
+
+"@babel/helper-create-class-features-plugin@^7.8.3":
+  version "7.8.3"
+  resolved "https://registry.yarnpkg.com/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.8.3.tgz#5b94be88c255f140fd2c10dd151e7f98f4bff397"
+  integrity sha512-qmp4pD7zeTxsv0JNecSBsEmG1ei2MqwJq4YQcK3ZWm/0t07QstWfvuV/vm3Qt5xNMFETn2SZqpMx2MQzbtq+KA==
+  dependencies:
+    "@babel/helper-function-name" "^7.8.3"
+    "@babel/helper-member-expression-to-functions" "^7.8.3"
+    "@babel/helper-optimise-call-expression" "^7.8.3"
+    "@babel/helper-plugin-utils" "^7.8.3"
+    "@babel/helper-replace-supers" "^7.8.3"
+    "@babel/helper-split-export-declaration" "^7.8.3"
+
+"@babel/helper-create-regexp-features-plugin@^7.8.3":
+  version "7.8.3"
+  resolved "https://registry.yarnpkg.com/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.8.3.tgz#c774268c95ec07ee92476a3862b75cc2839beb79"
+  integrity sha512-Gcsm1OHCUr9o9TcJln57xhWHtdXbA2pgQ58S0Lxlks0WMGNXuki4+GLfX0p+L2ZkINUGZvfkz8rzoqJQSthI+Q==
+  dependencies:
+    "@babel/helper-regex" "^7.8.3"
+    regexpu-core "^4.6.0"
+
+"@babel/helper-define-map@^7.8.3":
+  version "7.8.3"
+  resolved "https://registry.yarnpkg.com/@babel/helper-define-map/-/helper-define-map-7.8.3.tgz#a0655cad5451c3760b726eba875f1cd8faa02c15"
+  integrity sha512-PoeBYtxoZGtct3md6xZOCWPcKuMuk3IHhgxsRRNtnNShebf4C8YonTSblsK4tvDbm+eJAw2HAPOfCr+Q/YRG/g==
+  dependencies:
+    "@babel/helper-function-name" "^7.8.3"
+    "@babel/types" "^7.8.3"
     lodash "^4.17.13"
 
-"@babel/helper-explode-assignable-expression@^7.1.0":
-  version "7.1.0"
-  resolved "https://registry.yarnpkg.com/@babel/helper-explode-assignable-expression/-/helper-explode-assignable-expression-7.1.0.tgz#537fa13f6f1674df745b0c00ec8fe4e99681c8f6"
-  integrity sha512-NRQpfHrJ1msCHtKjbzs9YcMmJZOg6mQMmGRB+hbamEdG5PNpaSm95275VD92DvJKuyl0s2sFiDmMZ+EnnvufqA==
+"@babel/helper-explode-assignable-expression@^7.8.3":
+  version "7.8.3"
+  resolved "https://registry.yarnpkg.com/@babel/helper-explode-assignable-expression/-/helper-explode-assignable-expression-7.8.3.tgz#a728dc5b4e89e30fc2dfc7d04fa28a930653f982"
+  integrity sha512-N+8eW86/Kj147bO9G2uclsg5pwfs/fqqY5rwgIL7eTBklgXjcOJ3btzS5iM6AitJcftnY7pm2lGsrJVYLGjzIw==
   dependencies:
-    "@babel/traverse" "^7.1.0"
-    "@babel/types" "^7.0.0"
+    "@babel/traverse" "^7.8.3"
+    "@babel/types" "^7.8.3"
 
-"@babel/helper-function-name@^7.1.0":
-  version "7.1.0"
-  resolved "https://registry.yarnpkg.com/@babel/helper-function-name/-/helper-function-name-7.1.0.tgz#a0ceb01685f73355d4360c1247f582bfafc8ff53"
-  integrity sha512-A95XEoCpb3TO+KZzJ4S/5uW5fNe26DjBGqf1o9ucyLyCmi1dXq/B3c8iaWTfBk3VvetUxl16e8tIrd5teOCfGw==
+"@babel/helper-function-name@^7.8.3":
+  version "7.8.3"
+  resolved "https://registry.yarnpkg.com/@babel/helper-function-name/-/helper-function-name-7.8.3.tgz#eeeb665a01b1f11068e9fb86ad56a1cb1a824cca"
+  integrity sha512-BCxgX1BC2hD/oBlIFUgOCQDOPV8nSINxCwM3o93xP4P9Fq6aV5sgv2cOOITDMtCfQ+3PvHp3l689XZvAM9QyOA==
   dependencies:
-    "@babel/helper-get-function-arity" "^7.0.0"
-    "@babel/template" "^7.1.0"
-    "@babel/types" "^7.0.0"
+    "@babel/helper-get-function-arity" "^7.8.3"
+    "@babel/template" "^7.8.3"
+    "@babel/types" "^7.8.3"
 
-"@babel/helper-get-function-arity@^7.0.0":
-  version "7.0.0"
-  resolved "https://registry.yarnpkg.com/@babel/helper-get-function-arity/-/helper-get-function-arity-7.0.0.tgz#83572d4320e2a4657263734113c42868b64e49c3"
-  integrity sha512-r2DbJeg4svYvt3HOS74U4eWKsUAMRH01Z1ds1zx8KNTPtpTL5JAsdFv8BNyOpVqdFhHkkRDIg5B4AsxmkjAlmQ==
+"@babel/helper-get-function-arity@^7.8.3":
+  version "7.8.3"
+  resolved "https://registry.yarnpkg.com/@babel/helper-get-function-arity/-/helper-get-function-arity-7.8.3.tgz#b894b947bd004381ce63ea1db9f08547e920abd5"
+  integrity sha512-FVDR+Gd9iLjUMY1fzE2SR0IuaJToR4RkCDARVfsBBPSP53GEqSFjD8gNyxg246VUyc/ALRxFaAK8rVG7UT7xRA==
   dependencies:
-    "@babel/types" "^7.0.0"
+    "@babel/types" "^7.8.3"
 
-"@babel/helper-hoist-variables@^7.4.4":
-  version "7.4.4"
-  resolved "https://registry.yarnpkg.com/@babel/helper-hoist-variables/-/helper-hoist-variables-7.4.4.tgz#0298b5f25c8c09c53102d52ac4a98f773eb2850a"
-  integrity sha512-VYk2/H/BnYbZDDg39hr3t2kKyifAm1W6zHRfhx8jGjIHpQEBv9dry7oQ2f3+J703TLu69nYdxsovl0XYfcnK4w==
+"@babel/helper-hoist-variables@^7.8.3":
+  version "7.8.3"
+  resolved "https://registry.yarnpkg.com/@babel/helper-hoist-variables/-/helper-hoist-variables-7.8.3.tgz#1dbe9b6b55d78c9b4183fc8cdc6e30ceb83b7134"
+  integrity sha512-ky1JLOjcDUtSc+xkt0xhYff7Z6ILTAHKmZLHPxAhOP0Nd77O+3nCsd6uSVYur6nJnCI029CrNbYlc0LoPfAPQg==
   dependencies:
-    "@babel/types" "^7.4.4"
+    "@babel/types" "^7.8.3"
 
-"@babel/helper-member-expression-to-functions@^7.5.5":
-  version "7.5.5"
-  resolved "https://registry.yarnpkg.com/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.5.5.tgz#1fb5b8ec4453a93c439ee9fe3aeea4a84b76b590"
-  integrity sha512-5qZ3D1uMclSNqYcXqiHoA0meVdv+xUEex9em2fqMnrk/scphGlGgg66zjMrPJESPwrFJ6sbfFQYUSa0Mz7FabA==
+"@babel/helper-member-expression-to-functions@^7.8.3":
+  version "7.8.3"
+  resolved "https://registry.yarnpkg.com/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.8.3.tgz#659b710498ea6c1d9907e0c73f206eee7dadc24c"
+  integrity sha512-fO4Egq88utkQFjbPrSHGmGLFqmrshs11d46WI+WZDESt7Wu7wN2G2Iu+NMMZJFDOVRHAMIkB5SNh30NtwCA7RA==
   dependencies:
-    "@babel/types" "^7.5.5"
+    "@babel/types" "^7.8.3"
 
-"@babel/helper-module-imports@^7.0.0", "@babel/helper-module-imports@^7.0.0-beta.49":
-  version "7.0.0"
-  resolved "https://registry.yarnpkg.com/@babel/helper-module-imports/-/helper-module-imports-7.0.0.tgz#96081b7111e486da4d2cd971ad1a4fe216cc2e3d"
-  integrity sha512-aP/hlLq01DWNEiDg4Jn23i+CXxW/owM4WpDLFUbpjxe4NS3BhLVZQ5i7E0ZrxuQ/vwekIeciyamgB1UIYxxM6A==
+"@babel/helper-module-imports@^7.0.0", "@babel/helper-module-imports@^7.0.0-beta.49", "@babel/helper-module-imports@^7.7.4", "@babel/helper-module-imports@^7.8.3":
+  version "7.8.3"
+  resolved "https://registry.yarnpkg.com/@babel/helper-module-imports/-/helper-module-imports-7.8.3.tgz#7fe39589b39c016331b6b8c3f441e8f0b1419498"
+  integrity sha512-R0Bx3jippsbAEtzkpZ/6FIiuzOURPcMjHp+Z6xPe6DtApDJx+w7UYyOLanZqO8+wKR9G10s/FmHXvxaMd9s6Kg==
   dependencies:
-    "@babel/types" "^7.0.0"
+    "@babel/types" "^7.8.3"
 
-"@babel/helper-module-transforms@^7.1.0", "@babel/helper-module-transforms@^7.4.4":
-  version "7.4.4"
-  resolved "https://registry.yarnpkg.com/@babel/helper-module-transforms/-/helper-module-transforms-7.4.4.tgz#96115ea42a2f139e619e98ed46df6019b94414b8"
-  integrity sha512-3Z1yp8TVQf+B4ynN7WoHPKS8EkdTbgAEy0nU0rs/1Kw4pDgmvYH3rz3aI11KgxKCba2cn7N+tqzV1mY2HMN96w==
+"@babel/helper-module-transforms@^7.8.3":
+  version "7.8.3"
+  resolved "https://registry.yarnpkg.com/@babel/helper-module-transforms/-/helper-module-transforms-7.8.3.tgz#d305e35d02bee720fbc2c3c3623aa0c316c01590"
+  integrity sha512-C7NG6B7vfBa/pwCOshpMbOYUmrYQDfCpVL/JCRu0ek8B5p8kue1+BCXpg2vOYs7w5ACB9GTOBYQ5U6NwrMg+3Q==
   dependencies:
-    "@babel/helper-module-imports" "^7.0.0"
-    "@babel/helper-simple-access" "^7.1.0"
-    "@babel/helper-split-export-declaration" "^7.4.4"
-    "@babel/template" "^7.4.4"
-    "@babel/types" "^7.4.4"
-    lodash "^4.17.11"
+    "@babel/helper-module-imports" "^7.8.3"
+    "@babel/helper-simple-access" "^7.8.3"
+    "@babel/helper-split-export-declaration" "^7.8.3"
+    "@babel/template" "^7.8.3"
+    "@babel/types" "^7.8.3"
+    lodash "^4.17.13"
 
-"@babel/helper-optimise-call-expression@^7.0.0":
-  version "7.0.0"
-  resolved "https://registry.yarnpkg.com/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.0.0.tgz#a2920c5702b073c15de51106200aa8cad20497d5"
-  integrity sha512-u8nd9NQePYNQV8iPWu/pLLYBqZBa4ZaY1YWRFMuxrid94wKI1QNt67NEZ7GAe5Kc/0LLScbim05xZFWkAdrj9g==
+"@babel/helper-optimise-call-expression@^7.8.3":
+  version "7.8.3"
+  resolved "https://registry.yarnpkg.com/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.8.3.tgz#7ed071813d09c75298ef4f208956006b6111ecb9"
+  integrity sha512-Kag20n86cbO2AvHca6EJsvqAd82gc6VMGule4HwebwMlwkpXuVqrNRj6CkCV2sKxgi9MyAUnZVnZ6lJ1/vKhHQ==
   dependencies:
-    "@babel/types" "^7.0.0"
+    "@babel/types" "^7.8.3"
 
-"@babel/helper-plugin-utils@^7.0.0":
-  version "7.0.0"
-  resolved "https://registry.yarnpkg.com/@babel/helper-plugin-utils/-/helper-plugin-utils-7.0.0.tgz#bbb3fbee98661c569034237cc03967ba99b4f250"
-  integrity sha512-CYAOUCARwExnEixLdB6sDm2dIJ/YgEAKDM1MOeMeZu9Ld/bDgVo8aiWrXwcY7OBh+1Ea2uUcVRcxKk0GJvW7QA==
-
-"@babel/helper-regex@^7.0.0", "@babel/helper-regex@^7.4.4":
-  version "7.4.4"
-  resolved "https://registry.yarnpkg.com/@babel/helper-regex/-/helper-regex-7.4.4.tgz#a47e02bc91fb259d2e6727c2a30013e3ac13c4a2"
-  integrity sha512-Y5nuB/kESmR3tKjU8Nkn1wMGEx1tjJX076HBMeL3XLQCu6vA/YRzuTW0bbb+qRnXvQGn+d6Rx953yffl8vEy7Q==
-  dependencies:
-    lodash "^4.17.11"
+"@babel/helper-plugin-utils@^7.0.0", "@babel/helper-plugin-utils@^7.8.0", "@babel/helper-plugin-utils@^7.8.3":
+  version "7.8.3"
+  resolved "https://registry.yarnpkg.com/@babel/helper-plugin-utils/-/helper-plugin-utils-7.8.3.tgz#9ea293be19babc0f52ff8ca88b34c3611b208670"
+  integrity sha512-j+fq49Xds2smCUNYmEHF9kGNkhbet6yVIBp4e6oeQpH1RUs/Ir06xUKzDjDkGcaaokPiTNs2JBWHjaE4csUkZQ==
 
-"@babel/helper-remap-async-to-generator@^7.1.0":
-  version "7.1.0"
-  resolved "https://registry.yarnpkg.com/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.1.0.tgz#361d80821b6f38da75bd3f0785ece20a88c5fe7f"
-  integrity sha512-3fOK0L+Fdlg8S5al8u/hWE6vhufGSn0bN09xm2LXMy//REAF8kDCrYoOBKYmA8m5Nom+sV9LyLCwrFynA8/slg==
+"@babel/helper-regex@^7.8.3":
+  version "7.8.3"
+  resolved "https://registry.yarnpkg.com/@babel/helper-regex/-/helper-regex-7.8.3.tgz#139772607d51b93f23effe72105b319d2a4c6965"
+  integrity sha512-BWt0QtYv/cg/NecOAZMdcn/waj/5P26DR4mVLXfFtDokSR6fyuG0Pj+e2FqtSME+MqED1khnSMulkmGl8qWiUQ==
   dependencies:
-    "@babel/helper-annotate-as-pure" "^7.0.0"
-    "@babel/helper-wrap-function" "^7.1.0"
-    "@babel/template" "^7.1.0"
-    "@babel/traverse" "^7.1.0"
-    "@babel/types" "^7.0.0"
+    lodash "^4.17.13"
 
-"@babel/helper-replace-supers@^7.5.5":
-  version "7.5.5"
-  resolved "https://registry.yarnpkg.com/@babel/helper-replace-supers/-/helper-replace-supers-7.5.5.tgz#f84ce43df031222d2bad068d2626cb5799c34bc2"
-  integrity sha512-XvRFWrNnlsow2u7jXDuH4jDDctkxbS7gXssrP4q2nUD606ukXHRvydj346wmNg+zAgpFx4MWf4+usfC93bElJg==
+"@babel/helper-remap-async-to-generator@^7.8.3":
+  version "7.8.3"
+  resolved "https://registry.yarnpkg.com/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.8.3.tgz#273c600d8b9bf5006142c1e35887d555c12edd86"
+  integrity sha512-kgwDmw4fCg7AVgS4DukQR/roGp+jP+XluJE5hsRZwxCYGg+Rv9wSGErDWhlI90FODdYfd4xG4AQRiMDjjN0GzA==
+  dependencies:
+    "@babel/helper-annotate-as-pure" "^7.8.3"
+    "@babel/helper-wrap-function" "^7.8.3"
+    "@babel/template" "^7.8.3"
+    "@babel/traverse" "^7.8.3"
+    "@babel/types" "^7.8.3"
+
+"@babel/helper-replace-supers@^7.8.3":
+  version "7.8.3"
+  resolved "https://registry.yarnpkg.com/@babel/helper-replace-supers/-/helper-replace-supers-7.8.3.tgz#91192d25f6abbcd41da8a989d4492574fb1530bc"
+  integrity sha512-xOUssL6ho41U81etpLoT2RTdvdus4VfHamCuAm4AHxGr+0it5fnwoVdwUJ7GFEqCsQYzJUhcbsN9wB9apcYKFA==
+  dependencies:
+    "@babel/helper-member-expression-to-functions" "^7.8.3"
+    "@babel/helper-optimise-call-expression" "^7.8.3"
+    "@babel/traverse" "^7.8.3"
+    "@babel/types" "^7.8.3"
+
+"@babel/helper-simple-access@^7.8.3":
+  version "7.8.3"
+  resolved "https://registry.yarnpkg.com/@babel/helper-simple-access/-/helper-simple-access-7.8.3.tgz#7f8109928b4dab4654076986af575231deb639ae"
+  integrity sha512-VNGUDjx5cCWg4vvCTR8qQ7YJYZ+HBjxOgXEl7ounz+4Sn7+LMD3CFrCTEU6/qXKbA2nKg21CwhhBzO0RpRbdCw==
+  dependencies:
+    "@babel/template" "^7.8.3"
+    "@babel/types" "^7.8.3"
+
+"@babel/helper-split-export-declaration@^7.8.3":
+  version "7.8.3"
+  resolved "https://registry.yarnpkg.com/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.8.3.tgz#31a9f30070f91368a7182cf05f831781065fc7a9"
+  integrity sha512-3x3yOeyBhW851hroze7ElzdkeRXQYQbFIb7gLK1WQYsw2GWDay5gAJNw1sWJ0VFP6z5J1whqeXH/WCdCjZv6dA==
+  dependencies:
+    "@babel/types" "^7.8.3"
+
+"@babel/helper-wrap-function@^7.8.3":
+  version "7.8.3"
+  resolved "https://registry.yarnpkg.com/@babel/helper-wrap-function/-/helper-wrap-function-7.8.3.tgz#9dbdb2bb55ef14aaa01fe8c99b629bd5352d8610"
+  integrity sha512-LACJrbUET9cQDzb6kG7EeD7+7doC3JNvUgTEQOx2qaO1fKlzE/Bf05qs9w1oXQMmXlPO65lC3Tq9S6gZpTErEQ==
+  dependencies:
+    "@babel/helper-function-name" "^7.8.3"
+    "@babel/template" "^7.8.3"
+    "@babel/traverse" "^7.8.3"
+    "@babel/types" "^7.8.3"
+
+"@babel/helpers@^7.8.3":
+  version "7.8.3"
+  resolved "https://registry.yarnpkg.com/@babel/helpers/-/helpers-7.8.3.tgz#382fbb0382ce7c4ce905945ab9641d688336ce85"
+  integrity sha512-LmU3q9Pah/XyZU89QvBgGt+BCsTPoQa+73RxAQh8fb8qkDyIfeQnmgs+hvzhTCKTzqOyk7JTkS3MS1S8Mq5yrQ==
+  dependencies:
+    "@babel/template" "^7.8.3"
+    "@babel/traverse" "^7.8.3"
+    "@babel/types" "^7.8.3"
+
+"@babel/highlight@^7.8.3":
+  version "7.8.3"
+  resolved "https://registry.yarnpkg.com/@babel/highlight/-/highlight-7.8.3.tgz#28f173d04223eaaa59bc1d439a3836e6d1265797"
+  integrity sha512-PX4y5xQUvy0fnEVHrYOarRPXVWafSjTW9T0Hab8gVIawpl2Sj0ORyrygANq+KjcNlSSTw0YCLSNA8OyZ1I4yEg==
   dependencies:
-    "@babel/helper-member-expression-to-functions" "^7.5.5"
-    "@babel/helper-optimise-call-expression" "^7.0.0"
-    "@babel/traverse" "^7.5.5"
-    "@babel/types" "^7.5.5"
+    chalk "^2.0.0"
+    esutils "^2.0.2"
+    js-tokens "^4.0.0"
 
-"@babel/helper-simple-access@^7.1.0":
-  version "7.1.0"
-  resolved "https://registry.yarnpkg.com/@babel/helper-simple-access/-/helper-simple-access-7.1.0.tgz#65eeb954c8c245beaa4e859da6188f39d71e585c"
-  integrity sha512-Vk+78hNjRbsiu49zAPALxTb+JUQCz1aolpd8osOF16BGnLtseD21nbHgLPGUwrXEurZgiCOUmvs3ExTu4F5x6w==
-  dependencies:
-    "@babel/template" "^7.1.0"
-    "@babel/types" "^7.0.0"
+"@babel/parser@^7.0.0", "@babel/parser@^7.1.0", "@babel/parser@^7.8.3":
+  version "7.8.3"
+  resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.8.3.tgz#790874091d2001c9be6ec426c2eed47bc7679081"
+  integrity sha512-/V72F4Yp/qmHaTALizEm9Gf2eQHV3QyTL3K0cNfijwnMnb1L+LDlAubb/ZnSdGAVzVSWakujHYs1I26x66sMeQ==
 
-"@babel/helper-split-export-declaration@^7.4.4":
-  version "7.4.4"
-  resolved "https://registry.yarnpkg.com/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.4.4.tgz#ff94894a340be78f53f06af038b205c49d993677"
-  integrity sha512-Ro/XkzLf3JFITkW6b+hNxzZ1n5OQ80NvIUdmHspih1XAhtN3vPTuUFT4eQnela+2MaZ5ulH+iyP513KJrxbN7Q==
+"@babel/plugin-proposal-async-generator-functions@^7.8.3":
+  version "7.8.3"
+  resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-async-generator-functions/-/plugin-proposal-async-generator-functions-7.8.3.tgz#bad329c670b382589721b27540c7d288601c6e6f"
+  integrity sha512-NZ9zLv848JsV3hs8ryEh7Uaz/0KsmPLqv0+PdkDJL1cJy0K4kOCFa8zc1E3mp+RHPQcpdfb/6GovEsW4VDrOMw==
   dependencies:
-    "@babel/types" "^7.4.4"
+    "@babel/helper-plugin-utils" "^7.8.3"
+    "@babel/helper-remap-async-to-generator" "^7.8.3"
+    "@babel/plugin-syntax-async-generators" "^7.8.0"
 
-"@babel/helper-wrap-function@^7.1.0":
-  version "7.2.0"
-  resolved "https://registry.yarnpkg.com/@babel/helper-wrap-function/-/helper-wrap-function-7.2.0.tgz#c4e0012445769e2815b55296ead43a958549f6fa"
-  integrity sha512-o9fP1BZLLSrYlxYEYyl2aS+Flun5gtjTIG8iln+XuEzQTs0PLagAGSXUcqruJwD5fM48jzIEggCKpIfWTcR7pQ==
+"@babel/plugin-proposal-class-properties@^7.8.3":
+  version "7.8.3"
+  resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-class-properties/-/plugin-proposal-class-properties-7.8.3.tgz#5e06654af5cd04b608915aada9b2a6788004464e"
+  integrity sha512-EqFhbo7IosdgPgZggHaNObkmO1kNUe3slaKu54d5OWvy+p9QIKOzK1GAEpAIsZtWVtPXUHSMcT4smvDrCfY4AA==
   dependencies:
-    "@babel/helper-function-name" "^7.1.0"
-    "@babel/template" "^7.1.0"
-    "@babel/traverse" "^7.1.0"
-    "@babel/types" "^7.2.0"
+    "@babel/helper-create-class-features-plugin" "^7.8.3"
+    "@babel/helper-plugin-utils" "^7.8.3"
 
-"@babel/helpers@^7.2.0":
-  version "7.2.0"
-  resolved "https://registry.yarnpkg.com/@babel/helpers/-/helpers-7.2.0.tgz#8335f3140f3144270dc63c4732a4f8b0a50b7a21"
-  integrity sha512-Fr07N+ea0dMcMN8nFpuK6dUIT7/ivt9yKQdEEnjVS83tG2pHwPi03gYmk/tyuwONnZ+sY+GFFPlWGgCtW1hF9A==
+"@babel/plugin-proposal-decorators@^7.8.3":
+  version "7.8.3"
+  resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-decorators/-/plugin-proposal-decorators-7.8.3.tgz#2156860ab65c5abf068c3f67042184041066543e"
+  integrity sha512-e3RvdvS4qPJVTe288DlXjwKflpfy1hr0j5dz5WpIYYeP7vQZg2WfAEIp8k5/Lwis/m5REXEteIz6rrcDtXXG7w==
   dependencies:
-    "@babel/template" "^7.1.2"
-    "@babel/traverse" "^7.1.5"
-    "@babel/types" "^7.2.0"
+    "@babel/helper-create-class-features-plugin" "^7.8.3"
+    "@babel/helper-plugin-utils" "^7.8.3"
+    "@babel/plugin-syntax-decorators" "^7.8.3"
 
-"@babel/helpers@^7.4.4":
-  version "7.4.4"
-  resolved "https://registry.yarnpkg.com/@babel/helpers/-/helpers-7.4.4.tgz#868b0ef59c1dd4e78744562d5ce1b59c89f2f2a5"
-  integrity sha512-igczbR/0SeuPR8RFfC7tGrbdTbFL3QTvH6D+Z6zNxnTe//GyqmtHmDkzrqDmyZ3eSwPqB/LhyKoU5DXsp+Vp2A==
+"@babel/plugin-proposal-dynamic-import@^7.8.3":
+  version "7.8.3"
+  resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-dynamic-import/-/plugin-proposal-dynamic-import-7.8.3.tgz#38c4fe555744826e97e2ae930b0fb4cc07e66054"
+  integrity sha512-NyaBbyLFXFLT9FP+zk0kYlUlA8XtCUbehs67F0nnEg7KICgMc2mNkIeu9TYhKzyXMkrapZFwAhXLdnt4IYHy1w==
   dependencies:
-    "@babel/template" "^7.4.4"
-    "@babel/traverse" "^7.4.4"
-    "@babel/types" "^7.4.4"
+    "@babel/helper-plugin-utils" "^7.8.3"
+    "@babel/plugin-syntax-dynamic-import" "^7.8.0"
 
-"@babel/highlight@^7.0.0":
-  version "7.0.0"
-  resolved "https://registry.yarnpkg.com/@babel/highlight/-/highlight-7.0.0.tgz#f710c38c8d458e6dd9a201afb637fcb781ce99e4"
-  integrity sha512-UFMC4ZeFC48Tpvj7C8UgLvtkaUuovQX+5xNWrsIoMG8o2z+XFKjKaN9iVmS84dPwVN00W4wPmqvYoZF3EGAsfw==
+"@babel/plugin-proposal-json-strings@^7.8.3":
+  version "7.8.3"
+  resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-json-strings/-/plugin-proposal-json-strings-7.8.3.tgz#da5216b238a98b58a1e05d6852104b10f9a70d6b"
+  integrity sha512-KGhQNZ3TVCQG/MjRbAUwuH+14y9q0tpxs1nWWs3pbSleRdDro9SAMMDyye8HhY1gqZ7/NqIc8SKhya0wRDgP1Q==
   dependencies:
-    chalk "^2.0.0"
-    esutils "^2.0.2"
-    js-tokens "^4.0.0"
-
-"@babel/parser@^7.0.0", "@babel/parser@^7.1.0", "@babel/parser@^7.2.2", "@babel/parser@^7.3.4", "@babel/parser@^7.4.4", "@babel/parser@^7.4.5", "@babel/parser@^7.5.5":
-  version "7.5.5"
-  resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.5.5.tgz#02f077ac8817d3df4a832ef59de67565e71cca4b"
-  integrity sha512-E5BN68cqR7dhKan1SfqgPGhQ178bkVKpXTPEXnFJBrEt8/DKRZlybmy+IgYLTeN7tp1R5Ccmbm2rBk17sHYU3g==
+    "@babel/helper-plugin-utils" "^7.8.3"
+    "@babel/plugin-syntax-json-strings" "^7.8.0"
 
-"@babel/plugin-proposal-async-generator-functions@^7.2.0":
-  version "7.2.0"
-  resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-async-generator-functions/-/plugin-proposal-async-generator-functions-7.2.0.tgz#b289b306669dce4ad20b0252889a15768c9d417e"
-  integrity sha512-+Dfo/SCQqrwx48ptLVGLdE39YtWRuKc/Y9I5Fy0P1DDBB9lsAHpjcEJQt+4IifuSOSTLBKJObJqMvaO1pIE8LQ==
+"@babel/plugin-proposal-nullish-coalescing-operator@^7.8.3":
+  version "7.8.3"
+  resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-nullish-coalescing-operator/-/plugin-proposal-nullish-coalescing-operator-7.8.3.tgz#e4572253fdeed65cddeecfdab3f928afeb2fd5d2"
+  integrity sha512-TS9MlfzXpXKt6YYomudb/KU7nQI6/xnapG6in1uZxoxDghuSMZsPb6D2fyUwNYSAp4l1iR7QtFOjkqcRYcUsfw==
   dependencies:
-    "@babel/helper-plugin-utils" "^7.0.0"
-    "@babel/helper-remap-async-to-generator" "^7.1.0"
-    "@babel/plugin-syntax-async-generators" "^7.2.0"
+    "@babel/helper-plugin-utils" "^7.8.3"
+    "@babel/plugin-syntax-nullish-coalescing-operator" "^7.8.0"
 
-"@babel/plugin-proposal-class-properties@^7.5.5":
-  version "7.5.5"
-  resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-class-properties/-/plugin-proposal-class-properties-7.5.5.tgz#a974cfae1e37c3110e71f3c6a2e48b8e71958cd4"
-  integrity sha512-AF79FsnWFxjlaosgdi421vmYG6/jg79bVD0dpD44QdgobzHKuLZ6S3vl8la9qIeSwGi8i1fS0O1mfuDAAdo1/A==
+"@babel/plugin-proposal-object-rest-spread@^7.8.3":
+  version "7.8.3"
+  resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.8.3.tgz#eb5ae366118ddca67bed583b53d7554cad9951bb"
+  integrity sha512-8qvuPwU/xxUCt78HocNlv0mXXo0wdh9VT1R04WU8HGOfaOob26pF+9P5/lYjN/q7DHOX1bvX60hnhOvuQUJdbA==
   dependencies:
-    "@babel/helper-create-class-features-plugin" "^7.5.5"
-    "@babel/helper-plugin-utils" "^7.0.0"
+    "@babel/helper-plugin-utils" "^7.8.3"
+    "@babel/plugin-syntax-object-rest-spread" "^7.8.0"
 
-"@babel/plugin-proposal-decorators@^7.4.4":
-  version "7.4.4"
-  resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-decorators/-/plugin-proposal-decorators-7.4.4.tgz#de9b2a1a8ab0196f378e2a82f10b6e2a36f21cc0"
-  integrity sha512-z7MpQz3XC/iQJWXH9y+MaWcLPNSMY9RQSthrLzak8R8hCj0fuyNk+Dzi9kfNe/JxxlWQ2g7wkABbgWjW36MTcw==
+"@babel/plugin-proposal-optional-catch-binding@^7.8.3":
+  version "7.8.3"
+  resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-optional-catch-binding/-/plugin-proposal-optional-catch-binding-7.8.3.tgz#9dee96ab1650eed88646ae9734ca167ac4a9c5c9"
+  integrity sha512-0gkX7J7E+AtAw9fcwlVQj8peP61qhdg/89D5swOkjYbkboA2CVckn3kiyum1DE0wskGb7KJJxBdyEBApDLLVdw==
   dependencies:
-    "@babel/helper-create-class-features-plugin" "^7.4.4"
-    "@babel/helper-plugin-utils" "^7.0.0"
-    "@babel/plugin-syntax-decorators" "^7.2.0"
+    "@babel/helper-plugin-utils" "^7.8.3"
+    "@babel/plugin-syntax-optional-catch-binding" "^7.8.0"
 
-"@babel/plugin-proposal-dynamic-import@^7.5.0":
-  version "7.5.0"
-  resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-dynamic-import/-/plugin-proposal-dynamic-import-7.5.0.tgz#e532202db4838723691b10a67b8ce509e397c506"
-  integrity sha512-x/iMjggsKTFHYC6g11PL7Qy58IK8H5zqfm9e6hu4z1iH2IRyAp9u9dL80zA6R76yFovETFLKz2VJIC2iIPBuFw==
+"@babel/plugin-proposal-optional-chaining@^7.8.3":
+  version "7.8.3"
+  resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-optional-chaining/-/plugin-proposal-optional-chaining-7.8.3.tgz#ae10b3214cb25f7adb1f3bc87ba42ca10b7e2543"
+  integrity sha512-QIoIR9abkVn+seDE3OjA08jWcs3eZ9+wJCKSRgo3WdEU2csFYgdScb+8qHB3+WXsGJD55u+5hWCISI7ejXS+kg==
   dependencies:
-    "@babel/helper-plugin-utils" "^7.0.0"
-    "@babel/plugin-syntax-dynamic-import" "^7.2.0"
+    "@babel/helper-plugin-utils" "^7.8.3"
+    "@babel/plugin-syntax-optional-chaining" "^7.8.0"
 
-"@babel/plugin-proposal-json-strings@^7.2.0":
-  version "7.2.0"
-  resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-json-strings/-/plugin-proposal-json-strings-7.2.0.tgz#568ecc446c6148ae6b267f02551130891e29f317"
-  integrity sha512-MAFV1CA/YVmYwZG0fBQyXhmj0BHCB5egZHCKWIFVv/XCxAeVGIHfos3SwDck4LvCllENIAg7xMKOG5kH0dzyUg==
+"@babel/plugin-proposal-unicode-property-regex@^7.8.3":
+  version "7.8.3"
+  resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-unicode-property-regex/-/plugin-proposal-unicode-property-regex-7.8.3.tgz#b646c3adea5f98800c9ab45105ac34d06cd4a47f"
+  integrity sha512-1/1/rEZv2XGweRwwSkLpY+s60za9OZ1hJs4YDqFHCw0kYWYwL5IFljVY1MYBL+weT1l9pokDO2uhSTLVxzoHkQ==
   dependencies:
-    "@babel/helper-plugin-utils" "^7.0.0"
-    "@babel/plugin-syntax-json-strings" "^7.2.0"
+    "@babel/helper-create-regexp-features-plugin" "^7.8.3"
+    "@babel/helper-plugin-utils" "^7.8.3"
 
-"@babel/plugin-proposal-object-rest-spread@^7.4.4", "@babel/plugin-proposal-object-rest-spread@^7.5.5":
-  version "7.5.5"
-  resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.5.5.tgz#61939744f71ba76a3ae46b5eea18a54c16d22e58"
-  integrity sha512-F2DxJJSQ7f64FyTVl5cw/9MWn6naXGdk3Q3UhDbFEEHv+EilCPoeRD3Zh/Utx1CJz4uyKlQ4uH+bJPbEhMV7Zw==
+"@babel/plugin-syntax-async-generators@^7.8.0":
+  version "7.8.4"
+  resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-async-generators/-/plugin-syntax-async-generators-7.8.4.tgz#a983fb1aeb2ec3f6ed042a210f640e90e786fe0d"
+  integrity sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==
   dependencies:
-    "@babel/helper-plugin-utils" "^7.0.0"
-    "@babel/plugin-syntax-object-rest-spread" "^7.2.0"
+    "@babel/helper-plugin-utils" "^7.8.0"
 
-"@babel/plugin-proposal-optional-catch-binding@^7.2.0":
-  version "7.2.0"
-  resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-optional-catch-binding/-/plugin-proposal-optional-catch-binding-7.2.0.tgz#135d81edb68a081e55e56ec48541ece8065c38f5"
-  integrity sha512-mgYj3jCcxug6KUcX4OBoOJz3CMrwRfQELPQ5560F70YQUBZB7uac9fqaWamKR1iWUzGiK2t0ygzjTScZnVz75g==
+"@babel/plugin-syntax-decorators@^7.8.3":
+  version "7.8.3"
+  resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-decorators/-/plugin-syntax-decorators-7.8.3.tgz#8d2c15a9f1af624b0025f961682a9d53d3001bda"
+  integrity sha512-8Hg4dNNT9/LcA1zQlfwuKR8BUc/if7Q7NkTam9sGTcJphLwpf2g4S42uhspQrIrR+dpzE0dtTqBVFoHl8GtnnQ==
   dependencies:
-    "@babel/helper-plugin-utils" "^7.0.0"
-    "@babel/plugin-syntax-optional-catch-binding" "^7.2.0"
+    "@babel/helper-plugin-utils" "^7.8.3"
 
-"@babel/plugin-proposal-unicode-property-regex@^7.4.4":
-  version "7.4.4"
-  resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-unicode-property-regex/-/plugin-proposal-unicode-property-regex-7.4.4.tgz#501ffd9826c0b91da22690720722ac7cb1ca9c78"
-  integrity sha512-j1NwnOqMG9mFUOH58JTFsA/+ZYzQLUZ/drqWUqxCYLGeu2JFZL8YrNC9hBxKmWtAuOCHPcRpgv7fhap09Fb4kA==
+"@babel/plugin-syntax-dynamic-import@^7.8.0":
+  version "7.8.3"
+  resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-dynamic-import/-/plugin-syntax-dynamic-import-7.8.3.tgz#62bf98b2da3cd21d626154fc96ee5b3cb68eacb3"
+  integrity sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ==
   dependencies:
-    "@babel/helper-plugin-utils" "^7.0.0"
-    "@babel/helper-regex" "^7.4.4"
-    regexpu-core "^4.5.4"
+    "@babel/helper-plugin-utils" "^7.8.0"
 
-"@babel/plugin-syntax-async-generators@^7.2.0":
-  version "7.2.0"
-  resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-async-generators/-/plugin-syntax-async-generators-7.2.0.tgz#69e1f0db34c6f5a0cf7e2b3323bf159a76c8cb7f"
-  integrity sha512-1ZrIRBv2t0GSlcwVoQ6VgSLpLgiN/FVQUzt9znxo7v2Ov4jJrs8RY8tv0wvDmFN3qIdMKWrmMMW6yZ0G19MfGg==
+"@babel/plugin-syntax-json-strings@^7.8.0":
+  version "7.8.3"
+  resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-json-strings/-/plugin-syntax-json-strings-7.8.3.tgz#01ca21b668cd8218c9e640cb6dd88c5412b2c96a"
+  integrity sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==
   dependencies:
-    "@babel/helper-plugin-utils" "^7.0.0"
+    "@babel/helper-plugin-utils" "^7.8.0"
 
-"@babel/plugin-syntax-decorators@^7.2.0":
-  version "7.2.0"
-  resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-decorators/-/plugin-syntax-decorators-7.2.0.tgz#c50b1b957dcc69e4b1127b65e1c33eef61570c1b"
-  integrity sha512-38QdqVoXdHUQfTpZo3rQwqQdWtCn5tMv4uV6r2RMfTqNBuv4ZBhz79SfaQWKTVmxHjeFv/DnXVC/+agHCklYWA==
+"@babel/plugin-syntax-jsx@^7.8.3":
+  version "7.8.3"
+  resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.8.3.tgz#521b06c83c40480f1e58b4fd33b92eceb1d6ea94"
+  integrity sha512-WxdW9xyLgBdefoo0Ynn3MRSkhe5tFVxxKNVdnZSh318WrG2e2jH+E9wd/++JsqcLJZPfz87njQJ8j2Upjm0M0A==
   dependencies:
-    "@babel/helper-plugin-utils" "^7.0.0"
+    "@babel/helper-plugin-utils" "^7.8.3"
 
-"@babel/plugin-syntax-dynamic-import@^7.2.0":
-  version "7.2.0"
-  resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-dynamic-import/-/plugin-syntax-dynamic-import-7.2.0.tgz#69c159ffaf4998122161ad8ebc5e6d1f55df8612"
-  integrity sha512-mVxuJ0YroI/h/tbFTPGZR8cv6ai+STMKNBq0f8hFxsxWjl94qqhsb+wXbpNMDPU3cfR1TIsVFzU3nXyZMqyK4w==
+"@babel/plugin-syntax-nullish-coalescing-operator@^7.8.0":
+  version "7.8.3"
+  resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-nullish-coalescing-operator/-/plugin-syntax-nullish-coalescing-operator-7.8.3.tgz#167ed70368886081f74b5c36c65a88c03b66d1a9"
+  integrity sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==
   dependencies:
-    "@babel/helper-plugin-utils" "^7.0.0"
+    "@babel/helper-plugin-utils" "^7.8.0"
 
-"@babel/plugin-syntax-json-strings@^7.2.0":
-  version "7.2.0"
-  resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-json-strings/-/plugin-syntax-json-strings-7.2.0.tgz#72bd13f6ffe1d25938129d2a186b11fd62951470"
-  integrity sha512-5UGYnMSLRE1dqqZwug+1LISpA403HzlSfsg6P9VXU6TBjcSHeNlw4DxDx7LgpF+iKZoOG/+uzqoRHTdcUpiZNg==
+"@babel/plugin-syntax-object-rest-spread@^7.0.0", "@babel/plugin-syntax-object-rest-spread@^7.8.0":
+  version "7.8.3"
+  resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-object-rest-spread/-/plugin-syntax-object-rest-spread-7.8.3.tgz#60e225edcbd98a640332a2e72dd3e66f1af55871"
+  integrity sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==
   dependencies:
-    "@babel/helper-plugin-utils" "^7.0.0"
+    "@babel/helper-plugin-utils" "^7.8.0"
 
-"@babel/plugin-syntax-jsx@^7.2.0":
-  version "7.2.0"
-  resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.2.0.tgz#0b85a3b4bc7cdf4cc4b8bf236335b907ca22e7c7"
-  integrity sha512-VyN4QANJkRW6lDBmENzRszvZf3/4AXaj9YR7GwrWeeN9tEBPuXbmDYVU9bYBN0D70zCWVwUy0HWq2553VCb6Hw==
+"@babel/plugin-syntax-optional-catch-binding@^7.8.0":
+  version "7.8.3"
+  resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-optional-catch-binding/-/plugin-syntax-optional-catch-binding-7.8.3.tgz#6111a265bcfb020eb9efd0fdfd7d26402b9ed6c1"
+  integrity sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==
   dependencies:
-    "@babel/helper-plugin-utils" "^7.0.0"
+    "@babel/helper-plugin-utils" "^7.8.0"
 
-"@babel/plugin-syntax-object-rest-spread@^7.0.0", "@babel/plugin-syntax-object-rest-spread@^7.2.0":
-  version "7.2.0"
-  resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-object-rest-spread/-/plugin-syntax-object-rest-spread-7.2.0.tgz#3b7a3e733510c57e820b9142a6579ac8b0dfad2e"
-  integrity sha512-t0JKGgqk2We+9may3t0xDdmneaXmyxq0xieYcKHxIsrJO64n1OiMWNUtc5gQK1PA0NpdCRrtZp4z+IUaKugrSA==
+"@babel/plugin-syntax-optional-chaining@^7.8.0":
+  version "7.8.3"
+  resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-optional-chaining/-/plugin-syntax-optional-chaining-7.8.3.tgz#4f69c2ab95167e0180cd5336613f8c5788f7d48a"
+  integrity sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==
   dependencies:
-    "@babel/helper-plugin-utils" "^7.0.0"
+    "@babel/helper-plugin-utils" "^7.8.0"
 
-"@babel/plugin-syntax-optional-catch-binding@^7.2.0":
-  version "7.2.0"
-  resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-optional-catch-binding/-/plugin-syntax-optional-catch-binding-7.2.0.tgz#a94013d6eda8908dfe6a477e7f9eda85656ecf5c"
-  integrity sha512-bDe4xKNhb0LI7IvZHiA13kff0KEfaGX/Hv4lMA9+7TEc63hMNvfKo6ZFpXhKuEp+II/q35Gc4NoMeDZyaUbj9w==
+"@babel/plugin-syntax-top-level-await@^7.8.3":
+  version "7.8.3"
+  resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-top-level-await/-/plugin-syntax-top-level-await-7.8.3.tgz#3acdece695e6b13aaf57fc291d1a800950c71391"
+  integrity sha512-kwj1j9lL/6Wd0hROD3b/OZZ7MSrZLqqn9RAZ5+cYYsflQ9HZBIKCUkr3+uL1MEJ1NePiUbf98jjiMQSv0NMR9g==
   dependencies:
-    "@babel/helper-plugin-utils" "^7.0.0"
+    "@babel/helper-plugin-utils" "^7.8.3"
 
-"@babel/plugin-transform-arrow-functions@^7.2.0":
-  version "7.2.0"
-  resolved "https://registry.yarnpkg.com/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.2.0.tgz#9aeafbe4d6ffc6563bf8f8372091628f00779550"
-  integrity sha512-ER77Cax1+8/8jCB9fo4Ud161OZzWN5qawi4GusDuRLcDbDG+bIGYY20zb2dfAFdTRGzrfq2xZPvF0R64EHnimg==
+"@babel/plugin-transform-arrow-functions@^7.8.3":
+  version "7.8.3"
+  resolved "https://registry.yarnpkg.com/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.8.3.tgz#82776c2ed0cd9e1a49956daeb896024c9473b8b6"
+  integrity sha512-0MRF+KC8EqH4dbuITCWwPSzsyO3HIWWlm30v8BbbpOrS1B++isGxPnnuq/IZvOX5J2D/p7DQalQm+/2PnlKGxg==
   dependencies:
-    "@babel/helper-plugin-utils" "^7.0.0"
+    "@babel/helper-plugin-utils" "^7.8.3"
 
-"@babel/plugin-transform-async-to-generator@^7.5.0":
-  version "7.5.0"
-  resolved "https://registry.yarnpkg.com/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.5.0.tgz#89a3848a0166623b5bc481164b5936ab947e887e"
-  integrity sha512-mqvkzwIGkq0bEF1zLRRiTdjfomZJDV33AH3oQzHVGkI2VzEmXLpKKOBvEVaFZBJdN0XTyH38s9j/Kiqr68dggg==
+"@babel/plugin-transform-async-to-generator@^7.8.3":
+  version "7.8.3"
+  resolved "https://registry.yarnpkg.com/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.8.3.tgz#4308fad0d9409d71eafb9b1a6ee35f9d64b64086"
+  integrity sha512-imt9tFLD9ogt56Dd5CI/6XgpukMwd/fLGSrix2httihVe7LOGVPhyhMh1BU5kDM7iHD08i8uUtmV2sWaBFlHVQ==
   dependencies:
-    "@babel/helper-module-imports" "^7.0.0"
-    "@babel/helper-plugin-utils" "^7.0.0"
-    "@babel/helper-remap-async-to-generator" "^7.1.0"
+    "@babel/helper-module-imports" "^7.8.3"
+    "@babel/helper-plugin-utils" "^7.8.3"
+    "@babel/helper-remap-async-to-generator" "^7.8.3"
 
-"@babel/plugin-transform-block-scoped-functions@^7.2.0":
-  version "7.2.0"
-  resolved "https://registry.yarnpkg.com/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.2.0.tgz#5d3cc11e8d5ddd752aa64c9148d0db6cb79fd190"
-  integrity sha512-ntQPR6q1/NKuphly49+QiQiTN0O63uOwjdD6dhIjSWBI5xlrbUFh720TIpzBhpnrLfv2tNH/BXvLIab1+BAI0w==
+"@babel/plugin-transform-block-scoped-functions@^7.8.3":
+  version "7.8.3"
+  resolved "https://registry.yarnpkg.com/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.8.3.tgz#437eec5b799b5852072084b3ae5ef66e8349e8a3"
+  integrity sha512-vo4F2OewqjbB1+yaJ7k2EJFHlTP3jR634Z9Cj9itpqNjuLXvhlVxgnjsHsdRgASR8xYDrx6onw4vW5H6We0Jmg==
   dependencies:
-    "@babel/helper-plugin-utils" "^7.0.0"
+    "@babel/helper-plugin-utils" "^7.8.3"
 
-"@babel/plugin-transform-block-scoping@^7.6.0":
-  version "7.6.0"
-  resolved "https://registry.yarnpkg.com/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.6.0.tgz#c49e21228c4bbd4068a35667e6d951c75439b1dc"
-  integrity sha512-tIt4E23+kw6TgL/edACZwP1OUKrjOTyMrFMLoT5IOFrfMRabCgekjqFd5o6PaAMildBu46oFkekIdMuGkkPEpA==
+"@babel/plugin-transform-block-scoping@^7.8.3":
+  version "7.8.3"
+  resolved "https://registry.yarnpkg.com/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.8.3.tgz#97d35dab66857a437c166358b91d09050c868f3a"
+  integrity sha512-pGnYfm7RNRgYRi7bids5bHluENHqJhrV4bCZRwc5GamaWIIs07N4rZECcmJL6ZClwjDz1GbdMZFtPs27hTB06w==
   dependencies:
-    "@babel/helper-plugin-utils" "^7.0.0"
+    "@babel/helper-plugin-utils" "^7.8.3"
     lodash "^4.17.13"
 
-"@babel/plugin-transform-classes@^7.5.5":
-  version "7.5.5"
-  resolved "https://registry.yarnpkg.com/@babel/plugin-transform-classes/-/plugin-transform-classes-7.5.5.tgz#d094299d9bd680a14a2a0edae38305ad60fb4de9"
-  integrity sha512-U2htCNK/6e9K7jGyJ++1p5XRU+LJjrwtoiVn9SzRlDT2KubcZ11OOwy3s24TjHxPgxNwonCYP7U2K51uVYCMDg==
-  dependencies:
-    "@babel/helper-annotate-as-pure" "^7.0.0"
-    "@babel/helper-define-map" "^7.5.5"
-    "@babel/helper-function-name" "^7.1.0"
-    "@babel/helper-optimise-call-expression" "^7.0.0"
-    "@babel/helper-plugin-utils" "^7.0.0"
-    "@babel/helper-replace-supers" "^7.5.5"
-    "@babel/helper-split-export-declaration" "^7.4.4"
+"@babel/plugin-transform-classes@^7.8.3":
+  version "7.8.3"
+  resolved "https://registry.yarnpkg.com/@babel/plugin-transform-classes/-/plugin-transform-classes-7.8.3.tgz#46fd7a9d2bb9ea89ce88720477979fe0d71b21b8"
+  integrity sha512-SjT0cwFJ+7Rbr1vQsvphAHwUHvSUPmMjMU/0P59G8U2HLFqSa082JO7zkbDNWs9kH/IUqpHI6xWNesGf8haF1w==
+  dependencies:
+    "@babel/helper-annotate-as-pure" "^7.8.3"
+    "@babel/helper-define-map" "^7.8.3"
+    "@babel/helper-function-name" "^7.8.3"
+    "@babel/helper-optimise-call-expression" "^7.8.3"
+    "@babel/helper-plugin-utils" "^7.8.3"
+    "@babel/helper-replace-supers" "^7.8.3"
+    "@babel/helper-split-export-declaration" "^7.8.3"
     globals "^11.1.0"
 
-"@babel/plugin-transform-computed-properties@^7.2.0":
-  version "7.2.0"
-  resolved "https://registry.yarnpkg.com/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.2.0.tgz#83a7df6a658865b1c8f641d510c6f3af220216da"
-  integrity sha512-kP/drqTxY6Xt3NNpKiMomfgkNn4o7+vKxK2DDKcBG9sHj51vHqMBGy8wbDS/J4lMxnqs153/T3+DmCEAkC5cpA==
+"@babel/plugin-transform-computed-properties@^7.8.3":
+  version "7.8.3"
+  resolved "https://registry.yarnpkg.com/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.8.3.tgz#96d0d28b7f7ce4eb5b120bb2e0e943343c86f81b"
+  integrity sha512-O5hiIpSyOGdrQZRQ2ccwtTVkgUDBBiCuK//4RJ6UfePllUTCENOzKxfh6ulckXKc0DixTFLCfb2HVkNA7aDpzA==
   dependencies:
-    "@babel/helper-plugin-utils" "^7.0.0"
+    "@babel/helper-plugin-utils" "^7.8.3"
 
-"@babel/plugin-transform-destructuring@^7.6.0":
-  version "7.6.0"
-  resolved "https://registry.yarnpkg.com/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.6.0.tgz#44bbe08b57f4480094d57d9ffbcd96d309075ba6"
-  integrity sha512-2bGIS5P1v4+sWTCnKNDZDxbGvEqi0ijeqM/YqHtVGrvG2y0ySgnEEhXErvE9dA0bnIzY9bIzdFK0jFA46ASIIQ==
+"@babel/plugin-transform-destructuring@^7.8.3":
+  version "7.8.3"
+  resolved "https://registry.yarnpkg.com/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.8.3.tgz#20ddfbd9e4676906b1056ee60af88590cc7aaa0b"
+  integrity sha512-H4X646nCkiEcHZUZaRkhE2XVsoz0J/1x3VVujnn96pSoGCtKPA99ZZA+va+gK+92Zycd6OBKCD8tDb/731bhgQ==
   dependencies:
-    "@babel/helper-plugin-utils" "^7.0.0"
+    "@babel/helper-plugin-utils" "^7.8.3"
 
-"@babel/plugin-transform-dotall-regex@^7.4.4":
-  version "7.4.4"
-  resolved "https://registry.yarnpkg.com/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.4.4.tgz#361a148bc951444312c69446d76ed1ea8e4450c3"
-  integrity sha512-P05YEhRc2h53lZDjRPk/OektxCVevFzZs2Gfjd545Wde3k+yFDbXORgl2e0xpbq8mLcKJ7Idss4fAg0zORN/zg==
+"@babel/plugin-transform-dotall-regex@^7.8.3":
+  version "7.8.3"
+  resolved "https://registry.yarnpkg.com/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.8.3.tgz#c3c6ec5ee6125c6993c5cbca20dc8621a9ea7a6e"
+  integrity sha512-kLs1j9Nn4MQoBYdRXH6AeaXMbEJFaFu/v1nQkvib6QzTj8MZI5OQzqmD83/2jEM1z0DLilra5aWO5YpyC0ALIw==
   dependencies:
-    "@babel/helper-plugin-utils" "^7.0.0"
-    "@babel/helper-regex" "^7.4.4"
-    regexpu-core "^4.5.4"
+    "@babel/helper-create-regexp-features-plugin" "^7.8.3"
+    "@babel/helper-plugin-utils" "^7.8.3"
 
-"@babel/plugin-transform-duplicate-keys@^7.5.0":
-  version "7.5.0"
-  resolved "https://registry.yarnpkg.com/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.5.0.tgz#c5dbf5106bf84cdf691222c0974c12b1df931853"
-  integrity sha512-igcziksHizyQPlX9gfSjHkE2wmoCH3evvD2qR5w29/Dk0SMKE/eOI7f1HhBdNhR/zxJDqrgpoDTq5YSLH/XMsQ==
+"@babel/plugin-transform-duplicate-keys@^7.8.3":
+  version "7.8.3"
+  resolved "https://registry.yarnpkg.com/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.8.3.tgz#8d12df309aa537f272899c565ea1768e286e21f1"
+  integrity sha512-s8dHiBUbcbSgipS4SMFuWGqCvyge5V2ZeAWzR6INTVC3Ltjig/Vw1G2Gztv0vU/hRG9X8IvKvYdoksnUfgXOEQ==
   dependencies:
-    "@babel/helper-plugin-utils" "^7.0.0"
+    "@babel/helper-plugin-utils" "^7.8.3"
 
-"@babel/plugin-transform-exponentiation-operator@^7.2.0":
-  version "7.2.0"
-  resolved "https://registry.yarnpkg.com/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.2.0.tgz#a63868289e5b4007f7054d46491af51435766008"
-  integrity sha512-umh4hR6N7mu4Elq9GG8TOu9M0bakvlsREEC+ialrQN6ABS4oDQ69qJv1VtR3uxlKMCQMCvzk7vr17RHKcjx68A==
+"@babel/plugin-transform-exponentiation-operator@^7.8.3":
+  version "7.8.3"
+  resolved "https://registry.yarnpkg.com/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.8.3.tgz#581a6d7f56970e06bf51560cd64f5e947b70d7b7"
+  integrity sha512-zwIpuIymb3ACcInbksHaNcR12S++0MDLKkiqXHl3AzpgdKlFNhog+z/K0+TGW+b0w5pgTq4H6IwV/WhxbGYSjQ==
   dependencies:
-    "@babel/helper-builder-binary-assignment-operator-visitor" "^7.1.0"
-    "@babel/helper-plugin-utils" "^7.0.0"
+    "@babel/helper-builder-binary-assignment-operator-visitor" "^7.8.3"
+    "@babel/helper-plugin-utils" "^7.8.3"
 
-"@babel/plugin-transform-for-of@^7.4.4":
-  version "7.4.4"
-  resolved "https://registry.yarnpkg.com/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.4.4.tgz#0267fc735e24c808ba173866c6c4d1440fc3c556"
-  integrity sha512-9T/5Dlr14Z9TIEXLXkt8T1DU7F24cbhwhMNUziN3hB1AXoZcdzPcTiKGRn/6iOymDqtTKWnr/BtRKN9JwbKtdQ==
+"@babel/plugin-transform-for-of@^7.8.3":
+  version "7.8.3"
+  resolved "https://registry.yarnpkg.com/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.8.3.tgz#15f17bce2fc95c7d59a24b299e83e81cedc22e18"
+  integrity sha512-ZjXznLNTxhpf4Q5q3x1NsngzGA38t9naWH8Gt+0qYZEJAcvPI9waSStSh56u19Ofjr7QmD0wUsQ8hw8s/p1VnA==
   dependencies:
-    "@babel/helper-plugin-utils" "^7.0.0"
+    "@babel/helper-plugin-utils" "^7.8.3"
 
-"@babel/plugin-transform-function-name@^7.4.4":
-  version "7.4.4"
-  resolved "https://registry.yarnpkg.com/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.4.4.tgz#e1436116abb0610c2259094848754ac5230922ad"
-  integrity sha512-iU9pv7U+2jC9ANQkKeNF6DrPy4GBa4NWQtl6dHB4Pb3izX2JOEvDTFarlNsBj/63ZEzNNIAMs3Qw4fNCcSOXJA==
+"@babel/plugin-transform-function-name@^7.8.3":
+  version "7.8.3"
+  resolved "https://registry.yarnpkg.com/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.8.3.tgz#279373cb27322aaad67c2683e776dfc47196ed8b"
+  integrity sha512-rO/OnDS78Eifbjn5Py9v8y0aR+aSYhDhqAwVfsTl0ERuMZyr05L1aFSCJnbv2mmsLkit/4ReeQ9N2BgLnOcPCQ==
   dependencies:
-    "@babel/helper-function-name" "^7.1.0"
-    "@babel/helper-plugin-utils" "^7.0.0"
+    "@babel/helper-function-name" "^7.8.3"
+    "@babel/helper-plugin-utils" "^7.8.3"
 
-"@babel/plugin-transform-literals@^7.2.0":
-  version "7.2.0"
-  resolved "https://registry.yarnpkg.com/@babel/plugin-transform-literals/-/plugin-transform-literals-7.2.0.tgz#690353e81f9267dad4fd8cfd77eafa86aba53ea1"
-  integrity sha512-2ThDhm4lI4oV7fVQ6pNNK+sx+c/GM5/SaML0w/r4ZB7sAneD/piDJtwdKlNckXeyGK7wlwg2E2w33C/Hh+VFCg==
+"@babel/plugin-transform-literals@^7.8.3":
+  version "7.8.3"
+  resolved "https://registry.yarnpkg.com/@babel/plugin-transform-literals/-/plugin-transform-literals-7.8.3.tgz#aef239823d91994ec7b68e55193525d76dbd5dc1"
+  integrity sha512-3Tqf8JJ/qB7TeldGl+TT55+uQei9JfYaregDcEAyBZ7akutriFrt6C/wLYIer6OYhleVQvH/ntEhjE/xMmy10A==
   dependencies:
-    "@babel/helper-plugin-utils" "^7.0.0"
+    "@babel/helper-plugin-utils" "^7.8.3"
 
-"@babel/plugin-transform-member-expression-literals@^7.2.0":
-  version "7.2.0"
-  resolved "https://registry.yarnpkg.com/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.2.0.tgz#fa10aa5c58a2cb6afcf2c9ffa8cb4d8b3d489a2d"
-  integrity sha512-HiU3zKkSU6scTidmnFJ0bMX8hz5ixC93b4MHMiYebmk2lUVNGOboPsqQvx5LzooihijUoLR/v7Nc1rbBtnc7FA==
+"@babel/plugin-transform-member-expression-literals@^7.8.3":
+  version "7.8.3"
+  resolved "https://registry.yarnpkg.com/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.8.3.tgz#963fed4b620ac7cbf6029c755424029fa3a40410"
+  integrity sha512-3Wk2EXhnw+rP+IDkK6BdtPKsUE5IeZ6QOGrPYvw52NwBStw9V1ZVzxgK6fSKSxqUvH9eQPR3tm3cOq79HlsKYA==
   dependencies:
-    "@babel/helper-plugin-utils" "^7.0.0"
+    "@babel/helper-plugin-utils" "^7.8.3"
 
-"@babel/plugin-transform-modules-amd@^7.5.0":
-  version "7.5.0"
-  resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.5.0.tgz#ef00435d46da0a5961aa728a1d2ecff063e4fb91"
-  integrity sha512-n20UsQMKnWrltocZZm24cRURxQnWIvsABPJlw/fvoy9c6AgHZzoelAIzajDHAQrDpuKFFPPcFGd7ChsYuIUMpg==
+"@babel/plugin-transform-modules-amd@^7.8.3":
+  version "7.8.3"
+  resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.8.3.tgz#65606d44616b50225e76f5578f33c568a0b876a5"
+  integrity sha512-MadJiU3rLKclzT5kBH4yxdry96odTUwuqrZM+GllFI/VhxfPz+k9MshJM+MwhfkCdxxclSbSBbUGciBngR+kEQ==
   dependencies:
-    "@babel/helper-module-transforms" "^7.1.0"
-    "@babel/helper-plugin-utils" "^7.0.0"
+    "@babel/helper-module-transforms" "^7.8.3"
+    "@babel/helper-plugin-utils" "^7.8.3"
     babel-plugin-dynamic-import-node "^2.3.0"
 
-"@babel/plugin-transform-modules-commonjs@^7.6.0":
-  version "7.6.0"
-  resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.6.0.tgz#39dfe957de4420445f1fcf88b68a2e4aa4515486"
-  integrity sha512-Ma93Ix95PNSEngqomy5LSBMAQvYKVe3dy+JlVJSHEXZR5ASL9lQBedMiCyVtmTLraIDVRE3ZjTZvmXXD2Ozw3g==
+"@babel/plugin-transform-modules-commonjs@^7.8.3":
+  version "7.8.3"
+  resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.8.3.tgz#df251706ec331bd058a34bdd72613915f82928a5"
+  integrity sha512-JpdMEfA15HZ/1gNuB9XEDlZM1h/gF/YOH7zaZzQu2xCFRfwc01NXBMHHSTT6hRjlXJJs5x/bfODM3LiCk94Sxg==
   dependencies:
-    "@babel/helper-module-transforms" "^7.4.4"
-    "@babel/helper-plugin-utils" "^7.0.0"
-    "@babel/helper-simple-access" "^7.1.0"
+    "@babel/helper-module-transforms" "^7.8.3"
+    "@babel/helper-plugin-utils" "^7.8.3"
+    "@babel/helper-simple-access" "^7.8.3"
     babel-plugin-dynamic-import-node "^2.3.0"
 
-"@babel/plugin-transform-modules-systemjs@^7.5.0":
-  version "7.5.0"
-  resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.5.0.tgz#e75266a13ef94202db2a0620977756f51d52d249"
-  integrity sha512-Q2m56tyoQWmuNGxEtUyeEkm6qJYFqs4c+XyXH5RAuYxObRNz9Zgj/1g2GMnjYp2EUyEy7YTrxliGCXzecl/vJg==
+"@babel/plugin-transform-modules-systemjs@^7.8.3":
+  version "7.8.3"
+  resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.8.3.tgz#d8bbf222c1dbe3661f440f2f00c16e9bb7d0d420"
+  integrity sha512-8cESMCJjmArMYqa9AO5YuMEkE4ds28tMpZcGZB/jl3n0ZzlsxOAi3mC+SKypTfT8gjMupCnd3YiXCkMjj2jfOg==
   dependencies:
-    "@babel/helper-hoist-variables" "^7.4.4"
-    "@babel/helper-plugin-utils" "^7.0.0"
+    "@babel/helper-hoist-variables" "^7.8.3"
+    "@babel/helper-module-transforms" "^7.8.3"
+    "@babel/helper-plugin-utils" "^7.8.3"
     babel-plugin-dynamic-import-node "^2.3.0"
 
-"@babel/plugin-transform-modules-umd@^7.2.0":
-  version "7.2.0"
-  resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.2.0.tgz#7678ce75169f0877b8eb2235538c074268dd01ae"
-  integrity sha512-BV3bw6MyUH1iIsGhXlOK6sXhmSarZjtJ/vMiD9dNmpY8QXFFQTj+6v92pcfy1iqa8DeAfJFwoxcrS/TUZda6sw==
+"@babel/plugin-transform-modules-umd@^7.8.3":
+  version "7.8.3"
+  resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.8.3.tgz#592d578ce06c52f5b98b02f913d653ffe972661a"
+  integrity sha512-evhTyWhbwbI3/U6dZAnx/ePoV7H6OUG+OjiJFHmhr9FPn0VShjwC2kdxqIuQ/+1P50TMrneGzMeyMTFOjKSnAw==
   dependencies:
-    "@babel/helper-module-transforms" "^7.1.0"
-    "@babel/helper-plugin-utils" "^7.0.0"
+    "@babel/helper-module-transforms" "^7.8.3"
+    "@babel/helper-plugin-utils" "^7.8.3"
 
-"@babel/plugin-transform-named-capturing-groups-regex@^7.6.0":
-  version "7.6.0"
-  resolved "https://registry.yarnpkg.com/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.6.0.tgz#1e6e663097813bb4f53d42df0750cf28ad3bb3f1"
-  integrity sha512-jem7uytlmrRl3iCAuQyw8BpB4c4LWvSpvIeXKpMb+7j84lkx4m4mYr5ErAcmN5KM7B6BqrAvRGjBIbbzqCczew==
+"@babel/plugin-transform-named-capturing-groups-regex@^7.8.3":
+  version "7.8.3"
+  resolved "https://registry.yarnpkg.com/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.8.3.tgz#a2a72bffa202ac0e2d0506afd0939c5ecbc48c6c"
+  integrity sha512-f+tF/8UVPU86TrCb06JoPWIdDpTNSGGcAtaD9mLP0aYGA0OS0j7j7DHJR0GTFrUZPUU6loZhbsVZgTh0N+Qdnw==
   dependencies:
-    regexp-tree "^0.1.13"
+    "@babel/helper-create-regexp-features-plugin" "^7.8.3"
 
-"@babel/plugin-transform-new-target@^7.4.4":
-  version "7.4.4"
-  resolved "https://registry.yarnpkg.com/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.4.4.tgz#18d120438b0cc9ee95a47f2c72bc9768fbed60a5"
-  integrity sha512-r1z3T2DNGQwwe2vPGZMBNjioT2scgWzK9BCnDEh+46z8EEwXBq24uRzd65I7pjtugzPSj921aM15RpESgzsSuA==
+"@babel/plugin-transform-new-target@^7.8.3":
+  version "7.8.3"
+  resolved "https://registry.yarnpkg.com/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.8.3.tgz#60cc2ae66d85c95ab540eb34babb6434d4c70c43"
+  integrity sha512-QuSGysibQpyxexRyui2vca+Cmbljo8bcRckgzYV4kRIsHpVeyeC3JDO63pY+xFZ6bWOBn7pfKZTqV4o/ix9sFw==
   dependencies:
-    "@babel/helper-plugin-utils" "^7.0.0"
+    "@babel/helper-plugin-utils" "^7.8.3"
 
-"@babel/plugin-transform-object-super@^7.5.5":
-  version "7.5.5"
-  resolved "https://registry.yarnpkg.com/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.5.5.tgz#c70021df834073c65eb613b8679cc4a381d1a9f9"
-  integrity sha512-un1zJQAhSosGFBduPgN/YFNvWVpRuHKU7IHBglLoLZsGmruJPOo6pbInneflUdmq7YvSVqhpPs5zdBvLnteltQ==
+"@babel/plugin-transform-object-super@^7.8.3":
+  version "7.8.3"
+  resolved "https://registry.yarnpkg.com/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.8.3.tgz#ebb6a1e7a86ffa96858bd6ac0102d65944261725"
+  integrity sha512-57FXk+gItG/GejofIyLIgBKTas4+pEU47IXKDBWFTxdPd7F80H8zybyAY7UoblVfBhBGs2EKM+bJUu2+iUYPDQ==
   dependencies:
-    "@babel/helper-plugin-utils" "^7.0.0"
-    "@babel/helper-replace-supers" "^7.5.5"
+    "@babel/helper-plugin-utils" "^7.8.3"
+    "@babel/helper-replace-supers" "^7.8.3"
 
-"@babel/plugin-transform-parameters@^7.4.4":
-  version "7.4.4"
-  resolved "https://registry.yarnpkg.com/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.4.4.tgz#7556cf03f318bd2719fe4c922d2d808be5571e16"
-  integrity sha512-oMh5DUO1V63nZcu/ZVLQFqiihBGo4OpxJxR1otF50GMeCLiRx5nUdtokd+u9SuVJrvvuIh9OosRFPP4pIPnwmw==
+"@babel/plugin-transform-parameters@^7.8.3":
+  version "7.8.3"
+  resolved "https://registry.yarnpkg.com/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.8.3.tgz#7890576a13b17325d8b7d44cb37f21dc3bbdda59"
+  integrity sha512-/pqngtGb54JwMBZ6S/D3XYylQDFtGjWrnoCF4gXZOUpFV/ujbxnoNGNvDGu6doFWRPBveE72qTx/RRU44j5I/Q==
   dependencies:
-    "@babel/helper-call-delegate" "^7.4.4"
-    "@babel/helper-get-function-arity" "^7.0.0"
-    "@babel/helper-plugin-utils" "^7.0.0"
+    "@babel/helper-call-delegate" "^7.8.3"
+    "@babel/helper-get-function-arity" "^7.8.3"
+    "@babel/helper-plugin-utils" "^7.8.3"
 
-"@babel/plugin-transform-property-literals@^7.2.0":
-  version "7.2.0"
-  resolved "https://registry.yarnpkg.com/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.2.0.tgz#03e33f653f5b25c4eb572c98b9485055b389e905"
-  integrity sha512-9q7Dbk4RhgcLp8ebduOpCbtjh7C0itoLYHXd9ueASKAG/is5PQtMR5VJGka9NKqGhYEGn5ITahd4h9QeBMylWQ==
+"@babel/plugin-transform-property-literals@^7.8.3":
+  version "7.8.3"
+  resolved "https://registry.yarnpkg.com/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.8.3.tgz#33194300d8539c1ed28c62ad5087ba3807b98263"
+  integrity sha512-uGiiXAZMqEoQhRWMK17VospMZh5sXWg+dlh2soffpkAl96KAm+WZuJfa6lcELotSRmooLqg0MWdH6UUq85nmmg==
   dependencies:
-    "@babel/helper-plugin-utils" "^7.0.0"
+    "@babel/helper-plugin-utils" "^7.8.3"
 
-"@babel/plugin-transform-react-display-name@^7.0.0":
-  version "7.2.0"
-  resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-display-name/-/plugin-transform-react-display-name-7.2.0.tgz#ebfaed87834ce8dc4279609a4f0c324c156e3eb0"
-  integrity sha512-Htf/tPa5haZvRMiNSQSFifK12gtr/8vwfr+A9y69uF0QcU77AVu4K7MiHEkTxF7lQoHOL0F9ErqgfNEAKgXj7A==
+"@babel/plugin-transform-react-display-name@^7.8.3":
+  version "7.8.3"
+  resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-display-name/-/plugin-transform-react-display-name-7.8.3.tgz#70ded987c91609f78353dd76d2fb2a0bb991e8e5"
+  integrity sha512-3Jy/PCw8Fe6uBKtEgz3M82ljt+lTg+xJaM4og+eyu83qLT87ZUSckn0wy7r31jflURWLO83TW6Ylf7lyXj3m5A==
   dependencies:
-    "@babel/helper-plugin-utils" "^7.0.0"
+    "@babel/helper-plugin-utils" "^7.8.3"
 
-"@babel/plugin-transform-react-inline-elements@^7.2.0":
-  version "7.2.0"
-  resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-inline-elements/-/plugin-transform-react-inline-elements-7.2.0.tgz#3e36e7c47f1c21f52b2b0090d5cd83ceb19a4770"
-  integrity sha512-OAflI+josEl8xoAzZYpFnN+C4e9wvxDecExTtvDsteAcChIZtsH/D2kMNcJnrrzbFzCroGajCTr9tAB7K0KsiQ==
+"@babel/plugin-transform-react-inline-elements@^7.8.0":
+  version "7.8.0"
+  resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-inline-elements/-/plugin-transform-react-inline-elements-7.8.0.tgz#851799e0f66708563b9ada01b175affa1085f0d5"
+  integrity sha512-LZCsQfeoF8qqc6IaxJfAe4iSgWlbsdKeEkdxDtb8uzvcDbtXxUYjgUcSsqWgbpC88PIEv65SNzlQZo9/mymgQw==
   dependencies:
-    "@babel/helper-builder-react-jsx" "^7.0.0"
-    "@babel/helper-plugin-utils" "^7.0.0"
+    "@babel/helper-builder-react-jsx" "^7.8.0"
+    "@babel/helper-plugin-utils" "^7.8.0"
 
-"@babel/plugin-transform-react-jsx-self@^7.0.0", "@babel/plugin-transform-react-jsx-self@^7.2.0":
-  version "7.2.0"
-  resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-jsx-self/-/plugin-transform-react-jsx-self-7.2.0.tgz#461e21ad9478f1031dd5e276108d027f1b5240ba"
-  integrity sha512-v6S5L/myicZEy+jr6ielB0OR8h+EH/1QFx/YJ7c7Ua+7lqsjj/vW6fD5FR9hB/6y7mGbfT4vAURn3xqBxsUcdg==
+"@babel/plugin-transform-react-jsx-self@^7.8.3":
+  version "7.8.3"
+  resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-jsx-self/-/plugin-transform-react-jsx-self-7.8.3.tgz#c4f178b2aa588ecfa8d077ea80d4194ee77ed702"
+  integrity sha512-01OT7s5oa0XTLf2I8XGsL8+KqV9lx3EZV+jxn/L2LQ97CGKila2YMroTkCEIE0HV/FF7CMSRsIAybopdN9NTdg==
   dependencies:
-    "@babel/helper-plugin-utils" "^7.0.0"
-    "@babel/plugin-syntax-jsx" "^7.2.0"
+    "@babel/helper-plugin-utils" "^7.8.3"
+    "@babel/plugin-syntax-jsx" "^7.8.3"
 
-"@babel/plugin-transform-react-jsx-source@^7.0.0", "@babel/plugin-transform-react-jsx-source@^7.5.0":
-  version "7.5.0"
-  resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-jsx-source/-/plugin-transform-react-jsx-source-7.5.0.tgz#583b10c49cf057e237085bcbd8cc960bd83bd96b"
-  integrity sha512-58Q+Jsy4IDCZx7kqEZuSDdam/1oW8OdDX8f+Loo6xyxdfg1yF0GE2XNJQSTZCaMol93+FBzpWiPEwtbMloAcPg==
+"@babel/plugin-transform-react-jsx-source@^7.8.3":
+  version "7.8.3"
+  resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-jsx-source/-/plugin-transform-react-jsx-source-7.8.3.tgz#951e75a8af47f9f120db731be095d2b2c34920e0"
+  integrity sha512-PLMgdMGuVDtRS/SzjNEQYUT8f4z1xb2BAT54vM1X5efkVuYBf5WyGUMbpmARcfq3NaglIwz08UVQK4HHHbC6ag==
   dependencies:
-    "@babel/helper-plugin-utils" "^7.0.0"
-    "@babel/plugin-syntax-jsx" "^7.2.0"
+    "@babel/helper-plugin-utils" "^7.8.3"
+    "@babel/plugin-syntax-jsx" "^7.8.3"
 
-"@babel/plugin-transform-react-jsx@^7.0.0":
-  version "7.2.0"
-  resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-jsx/-/plugin-transform-react-jsx-7.2.0.tgz#ca36b6561c4d3b45524f8efb6f0fbc9a0d1d622f"
-  integrity sha512-h/fZRel5wAfCqcKgq3OhbmYaReo7KkoJBpt8XnvpS7wqaNMqtw5xhxutzcm35iMUWucfAdT/nvGTsWln0JTg2Q==
+"@babel/plugin-transform-react-jsx@^7.8.3":
+  version "7.8.3"
+  resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-jsx/-/plugin-transform-react-jsx-7.8.3.tgz#4220349c0390fdefa505365f68c103562ab2fc4a"
+  integrity sha512-r0h+mUiyL595ikykci+fbwm9YzmuOrUBi0b+FDIKmi3fPQyFokWVEMJnRWHJPPQEjyFJyna9WZC6Viv6UHSv1g==
   dependencies:
-    "@babel/helper-builder-react-jsx" "^7.0.0"
-    "@babel/helper-plugin-utils" "^7.0.0"
-    "@babel/plugin-syntax-jsx" "^7.2.0"
+    "@babel/helper-builder-react-jsx" "^7.8.3"
+    "@babel/helper-plugin-utils" "^7.8.3"
+    "@babel/plugin-syntax-jsx" "^7.8.3"
 
-"@babel/plugin-transform-regenerator@^7.4.5":
-  version "7.4.5"
-  resolved "https://registry.yarnpkg.com/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.4.5.tgz#629dc82512c55cee01341fb27bdfcb210354680f"
-  integrity sha512-gBKRh5qAaCWntnd09S8QC7r3auLCqq5DI6O0DlfoyDjslSBVqBibrMdsqO+Uhmx3+BlOmE/Kw1HFxmGbv0N9dA==
+"@babel/plugin-transform-regenerator@^7.8.3":
+  version "7.8.3"
+  resolved "https://registry.yarnpkg.com/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.8.3.tgz#b31031e8059c07495bf23614c97f3d9698bc6ec8"
+  integrity sha512-qt/kcur/FxrQrzFR432FGZznkVAjiyFtCOANjkAKwCbt465L6ZCiUQh2oMYGU3Wo8LRFJxNDFwWn106S5wVUNA==
   dependencies:
     regenerator-transform "^0.14.0"
 
-"@babel/plugin-transform-reserved-words@^7.2.0":
-  version "7.2.0"
-  resolved "https://registry.yarnpkg.com/@babel/plugin-transform-reserved-words/-/plugin-transform-reserved-words-7.2.0.tgz#4792af87c998a49367597d07fedf02636d2e1634"
-  integrity sha512-fz43fqW8E1tAB3DKF19/vxbpib1fuyCwSPE418ge5ZxILnBhWyhtPgz8eh1RCGGJlwvksHkyxMxh0eenFi+kFw==
+"@babel/plugin-transform-reserved-words@^7.8.3":
+  version "7.8.3"
+  resolved "https://registry.yarnpkg.com/@babel/plugin-transform-reserved-words/-/plugin-transform-reserved-words-7.8.3.tgz#9a0635ac4e665d29b162837dd3cc50745dfdf1f5"
+  integrity sha512-mwMxcycN3omKFDjDQUl+8zyMsBfjRFr0Zn/64I41pmjv4NJuqcYlEtezwYtw9TFd9WR1vN5kiM+O0gMZzO6L0A==
   dependencies:
-    "@babel/helper-plugin-utils" "^7.0.0"
+    "@babel/helper-plugin-utils" "^7.8.3"
 
-"@babel/plugin-transform-runtime@^7.5.5":
-  version "7.5.5"
-  resolved "https://registry.yarnpkg.com/@babel/plugin-transform-runtime/-/plugin-transform-runtime-7.5.5.tgz#a6331afbfc59189d2135b2e09474457a8e3d28bc"
-  integrity sha512-6Xmeidsun5rkwnGfMOp6/z9nSzWpHFNVr2Jx7kwoq4mVatQfQx5S56drBgEHF+XQbKOdIaOiMIINvp/kAwMN+w==
+"@babel/plugin-transform-runtime@^7.7.6":
+  version "7.7.6"
+  resolved "https://registry.yarnpkg.com/@babel/plugin-transform-runtime/-/plugin-transform-runtime-7.7.6.tgz#4f2b548c88922fb98ec1c242afd4733ee3e12f61"
+  integrity sha512-tajQY+YmXR7JjTwRvwL4HePqoL3DYxpYXIHKVvrOIvJmeHe2y1w4tz5qz9ObUDC9m76rCzIMPyn4eERuwA4a4A==
   dependencies:
-    "@babel/helper-module-imports" "^7.0.0"
+    "@babel/helper-module-imports" "^7.7.4"
     "@babel/helper-plugin-utils" "^7.0.0"
     resolve "^1.8.1"
     semver "^5.5.1"
 
-"@babel/plugin-transform-shorthand-properties@^7.2.0":
-  version "7.2.0"
-  resolved "https://registry.yarnpkg.com/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.2.0.tgz#6333aee2f8d6ee7e28615457298934a3b46198f0"
-  integrity sha512-QP4eUM83ha9zmYtpbnyjTLAGKQritA5XW/iG9cjtuOI8s1RuL/3V6a3DeSHfKutJQ+ayUfeZJPcnCYEQzaPQqg==
-  dependencies:
-    "@babel/helper-plugin-utils" "^7.0.0"
-
-"@babel/plugin-transform-spread@^7.2.0":
-  version "7.2.2"
-  resolved "https://registry.yarnpkg.com/@babel/plugin-transform-spread/-/plugin-transform-spread-7.2.2.tgz#3103a9abe22f742b6d406ecd3cd49b774919b406"
-  integrity sha512-KWfky/58vubwtS0hLqEnrWJjsMGaOeSBn90Ezn5Jeg9Z8KKHmELbP1yGylMlm5N6TPKeY9A2+UaSYLdxahg01w==
-  dependencies:
-    "@babel/helper-plugin-utils" "^7.0.0"
-
-"@babel/plugin-transform-sticky-regex@^7.2.0":
-  version "7.2.0"
-  resolved "https://registry.yarnpkg.com/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.2.0.tgz#a1e454b5995560a9c1e0d537dfc15061fd2687e1"
-  integrity sha512-KKYCoGaRAf+ckH8gEL3JHUaFVyNHKe3ASNsZ+AlktgHevvxGigoIttrEJb8iKN03Q7Eazlv1s6cx2B2cQ3Jabw==
-  dependencies:
-    "@babel/helper-plugin-utils" "^7.0.0"
-    "@babel/helper-regex" "^7.0.0"
-
-"@babel/plugin-transform-template-literals@^7.4.4":
-  version "7.4.4"
-  resolved "https://registry.yarnpkg.com/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.4.4.tgz#9d28fea7bbce637fb7612a0750989d8321d4bcb0"
-  integrity sha512-mQrEC4TWkhLN0z8ygIvEL9ZEToPhG5K7KDW3pzGqOfIGZ28Jb0POUkeWcoz8HnHvhFy6dwAT1j8OzqN8s804+g==
-  dependencies:
-    "@babel/helper-annotate-as-pure" "^7.0.0"
-    "@babel/helper-plugin-utils" "^7.0.0"
-
-"@babel/plugin-transform-typeof-symbol@^7.2.0":
-  version "7.2.0"
-  resolved "https://registry.yarnpkg.com/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.2.0.tgz#117d2bcec2fbf64b4b59d1f9819894682d29f2b2"
-  integrity sha512-2LNhETWYxiYysBtrBTqL8+La0jIoQQnIScUJc74OYvUGRmkskNY4EzLCnjHBzdmb38wqtTaixpo1NctEcvMDZw==
-  dependencies:
-    "@babel/helper-plugin-utils" "^7.0.0"
-
-"@babel/plugin-transform-unicode-regex@^7.4.4":
-  version "7.4.4"
-  resolved "https://registry.yarnpkg.com/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.4.4.tgz#ab4634bb4f14d36728bf5978322b35587787970f"
-  integrity sha512-il+/XdNw01i93+M9J9u4T7/e/Ue/vWfNZE4IRUQjplu2Mqb/AFTDimkw2tdEdSH50wuQXZAbXSql0UphQke+vA==
-  dependencies:
-    "@babel/helper-plugin-utils" "^7.0.0"
-    "@babel/helper-regex" "^7.4.4"
-    regexpu-core "^4.5.4"
-
-"@babel/preset-env@^7.6.0":
-  version "7.6.0"
-  resolved "https://registry.yarnpkg.com/@babel/preset-env/-/preset-env-7.6.0.tgz#aae4141c506100bb2bfaa4ac2a5c12b395619e50"
-  integrity sha512-1efzxFv/TcPsNXlRhMzRnkBFMeIqBBgzwmZwlFDw5Ubj0AGLeufxugirwZmkkX/ayi3owsSqoQ4fw8LkfK9SYg==
-  dependencies:
-    "@babel/helper-module-imports" "^7.0.0"
-    "@babel/helper-plugin-utils" "^7.0.0"
-    "@babel/plugin-proposal-async-generator-functions" "^7.2.0"
-    "@babel/plugin-proposal-dynamic-import" "^7.5.0"
-    "@babel/plugin-proposal-json-strings" "^7.2.0"
-    "@babel/plugin-proposal-object-rest-spread" "^7.5.5"
-    "@babel/plugin-proposal-optional-catch-binding" "^7.2.0"
-    "@babel/plugin-proposal-unicode-property-regex" "^7.4.4"
-    "@babel/plugin-syntax-async-generators" "^7.2.0"
-    "@babel/plugin-syntax-dynamic-import" "^7.2.0"
-    "@babel/plugin-syntax-json-strings" "^7.2.0"
-    "@babel/plugin-syntax-object-rest-spread" "^7.2.0"
-    "@babel/plugin-syntax-optional-catch-binding" "^7.2.0"
-    "@babel/plugin-transform-arrow-functions" "^7.2.0"
-    "@babel/plugin-transform-async-to-generator" "^7.5.0"
-    "@babel/plugin-transform-block-scoped-functions" "^7.2.0"
-    "@babel/plugin-transform-block-scoping" "^7.6.0"
-    "@babel/plugin-transform-classes" "^7.5.5"
-    "@babel/plugin-transform-computed-properties" "^7.2.0"
-    "@babel/plugin-transform-destructuring" "^7.6.0"
-    "@babel/plugin-transform-dotall-regex" "^7.4.4"
-    "@babel/plugin-transform-duplicate-keys" "^7.5.0"
-    "@babel/plugin-transform-exponentiation-operator" "^7.2.0"
-    "@babel/plugin-transform-for-of" "^7.4.4"
-    "@babel/plugin-transform-function-name" "^7.4.4"
-    "@babel/plugin-transform-literals" "^7.2.0"
-    "@babel/plugin-transform-member-expression-literals" "^7.2.0"
-    "@babel/plugin-transform-modules-amd" "^7.5.0"
-    "@babel/plugin-transform-modules-commonjs" "^7.6.0"
-    "@babel/plugin-transform-modules-systemjs" "^7.5.0"
-    "@babel/plugin-transform-modules-umd" "^7.2.0"
-    "@babel/plugin-transform-named-capturing-groups-regex" "^7.6.0"
-    "@babel/plugin-transform-new-target" "^7.4.4"
-    "@babel/plugin-transform-object-super" "^7.5.5"
-    "@babel/plugin-transform-parameters" "^7.4.4"
-    "@babel/plugin-transform-property-literals" "^7.2.0"
-    "@babel/plugin-transform-regenerator" "^7.4.5"
-    "@babel/plugin-transform-reserved-words" "^7.2.0"
-    "@babel/plugin-transform-shorthand-properties" "^7.2.0"
-    "@babel/plugin-transform-spread" "^7.2.0"
-    "@babel/plugin-transform-sticky-regex" "^7.2.0"
-    "@babel/plugin-transform-template-literals" "^7.4.4"
-    "@babel/plugin-transform-typeof-symbol" "^7.2.0"
-    "@babel/plugin-transform-unicode-regex" "^7.4.4"
-    "@babel/types" "^7.6.0"
-    browserslist "^4.6.0"
-    core-js-compat "^3.1.1"
+"@babel/plugin-transform-shorthand-properties@^7.8.3":
+  version "7.8.3"
+  resolved "https://registry.yarnpkg.com/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.8.3.tgz#28545216e023a832d4d3a1185ed492bcfeac08c8"
+  integrity sha512-I9DI6Odg0JJwxCHzbzW08ggMdCezoWcuQRz3ptdudgwaHxTjxw5HgdFJmZIkIMlRymL6YiZcped4TTCB0JcC8w==
+  dependencies:
+    "@babel/helper-plugin-utils" "^7.8.3"
+
+"@babel/plugin-transform-spread@^7.8.3":
+  version "7.8.3"
+  resolved "https://registry.yarnpkg.com/@babel/plugin-transform-spread/-/plugin-transform-spread-7.8.3.tgz#9c8ffe8170fdfb88b114ecb920b82fb6e95fe5e8"
+  integrity sha512-CkuTU9mbmAoFOI1tklFWYYbzX5qCIZVXPVy0jpXgGwkplCndQAa58s2jr66fTeQnA64bDox0HL4U56CFYoyC7g==
+  dependencies:
+    "@babel/helper-plugin-utils" "^7.8.3"
+
+"@babel/plugin-transform-sticky-regex@^7.8.3":
+  version "7.8.3"
+  resolved "https://registry.yarnpkg.com/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.8.3.tgz#be7a1290f81dae767475452199e1f76d6175b100"
+  integrity sha512-9Spq0vGCD5Bb4Z/ZXXSK5wbbLFMG085qd2vhL1JYu1WcQ5bXqZBAYRzU1d+p79GcHs2szYv5pVQCX13QgldaWw==
+  dependencies:
+    "@babel/helper-plugin-utils" "^7.8.3"
+    "@babel/helper-regex" "^7.8.3"
+
+"@babel/plugin-transform-template-literals@^7.8.3":
+  version "7.8.3"
+  resolved "https://registry.yarnpkg.com/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.8.3.tgz#7bfa4732b455ea6a43130adc0ba767ec0e402a80"
+  integrity sha512-820QBtykIQOLFT8NZOcTRJ1UNuztIELe4p9DCgvj4NK+PwluSJ49we7s9FB1HIGNIYT7wFUJ0ar2QpCDj0escQ==
+  dependencies:
+    "@babel/helper-annotate-as-pure" "^7.8.3"
+    "@babel/helper-plugin-utils" "^7.8.3"
+
+"@babel/plugin-transform-typeof-symbol@^7.8.3":
+  version "7.8.3"
+  resolved "https://registry.yarnpkg.com/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.8.3.tgz#5cffb216fb25c8c64ba6bf5f76ce49d3ab079f4d"
+  integrity sha512-3TrkKd4LPqm4jHs6nPtSDI/SV9Cm5PRJkHLUgTcqRQQTMAZ44ZaAdDZJtvWFSaRcvT0a1rTmJ5ZA5tDKjleF3g==
+  dependencies:
+    "@babel/helper-plugin-utils" "^7.8.3"
+
+"@babel/plugin-transform-unicode-regex@^7.8.3":
+  version "7.8.3"
+  resolved "https://registry.yarnpkg.com/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.8.3.tgz#0cef36e3ba73e5c57273effb182f46b91a1ecaad"
+  integrity sha512-+ufgJjYdmWfSQ+6NS9VGUR2ns8cjJjYbrbi11mZBTaWm+Fui/ncTLFF28Ei1okavY+xkojGr1eJxNsWYeA5aZw==
+  dependencies:
+    "@babel/helper-create-regexp-features-plugin" "^7.8.3"
+    "@babel/helper-plugin-utils" "^7.8.3"
+
+"@babel/preset-env@^7.8.3":
+  version "7.8.3"
+  resolved "https://registry.yarnpkg.com/@babel/preset-env/-/preset-env-7.8.3.tgz#dc0fb2938f52bbddd79b3c861a4b3427dd3a6c54"
+  integrity sha512-Rs4RPL2KjSLSE2mWAx5/iCH+GC1ikKdxPrhnRS6PfFVaiZeom22VFKN4X8ZthyN61kAaR05tfXTbCvatl9WIQg==
+  dependencies:
+    "@babel/compat-data" "^7.8.0"
+    "@babel/helper-compilation-targets" "^7.8.3"
+    "@babel/helper-module-imports" "^7.8.3"
+    "@babel/helper-plugin-utils" "^7.8.3"
+    "@babel/plugin-proposal-async-generator-functions" "^7.8.3"
+    "@babel/plugin-proposal-dynamic-import" "^7.8.3"
+    "@babel/plugin-proposal-json-strings" "^7.8.3"
+    "@babel/plugin-proposal-nullish-coalescing-operator" "^7.8.3"
+    "@babel/plugin-proposal-object-rest-spread" "^7.8.3"
+    "@babel/plugin-proposal-optional-catch-binding" "^7.8.3"
+    "@babel/plugin-proposal-optional-chaining" "^7.8.3"
+    "@babel/plugin-proposal-unicode-property-regex" "^7.8.3"
+    "@babel/plugin-syntax-async-generators" "^7.8.0"
+    "@babel/plugin-syntax-dynamic-import" "^7.8.0"
+    "@babel/plugin-syntax-json-strings" "^7.8.0"
+    "@babel/plugin-syntax-nullish-coalescing-operator" "^7.8.0"
+    "@babel/plugin-syntax-object-rest-spread" "^7.8.0"
+    "@babel/plugin-syntax-optional-catch-binding" "^7.8.0"
+    "@babel/plugin-syntax-optional-chaining" "^7.8.0"
+    "@babel/plugin-syntax-top-level-await" "^7.8.3"
+    "@babel/plugin-transform-arrow-functions" "^7.8.3"
+    "@babel/plugin-transform-async-to-generator" "^7.8.3"
+    "@babel/plugin-transform-block-scoped-functions" "^7.8.3"
+    "@babel/plugin-transform-block-scoping" "^7.8.3"
+    "@babel/plugin-transform-classes" "^7.8.3"
+    "@babel/plugin-transform-computed-properties" "^7.8.3"
+    "@babel/plugin-transform-destructuring" "^7.8.3"
+    "@babel/plugin-transform-dotall-regex" "^7.8.3"
+    "@babel/plugin-transform-duplicate-keys" "^7.8.3"
+    "@babel/plugin-transform-exponentiation-operator" "^7.8.3"
+    "@babel/plugin-transform-for-of" "^7.8.3"
+    "@babel/plugin-transform-function-name" "^7.8.3"
+    "@babel/plugin-transform-literals" "^7.8.3"
+    "@babel/plugin-transform-member-expression-literals" "^7.8.3"
+    "@babel/plugin-transform-modules-amd" "^7.8.3"
+    "@babel/plugin-transform-modules-commonjs" "^7.8.3"
+    "@babel/plugin-transform-modules-systemjs" "^7.8.3"
+    "@babel/plugin-transform-modules-umd" "^7.8.3"
+    "@babel/plugin-transform-named-capturing-groups-regex" "^7.8.3"
+    "@babel/plugin-transform-new-target" "^7.8.3"
+    "@babel/plugin-transform-object-super" "^7.8.3"
+    "@babel/plugin-transform-parameters" "^7.8.3"
+    "@babel/plugin-transform-property-literals" "^7.8.3"
+    "@babel/plugin-transform-regenerator" "^7.8.3"
+    "@babel/plugin-transform-reserved-words" "^7.8.3"
+    "@babel/plugin-transform-shorthand-properties" "^7.8.3"
+    "@babel/plugin-transform-spread" "^7.8.3"
+    "@babel/plugin-transform-sticky-regex" "^7.8.3"
+    "@babel/plugin-transform-template-literals" "^7.8.3"
+    "@babel/plugin-transform-typeof-symbol" "^7.8.3"
+    "@babel/plugin-transform-unicode-regex" "^7.8.3"
+    "@babel/types" "^7.8.3"
+    browserslist "^4.8.2"
+    core-js-compat "^3.6.2"
     invariant "^2.2.2"
-    js-levenshtein "^1.1.3"
+    levenary "^1.1.0"
     semver "^5.5.0"
 
-"@babel/preset-react@^7.0.0":
-  version "7.0.0"
-  resolved "https://registry.yarnpkg.com/@babel/preset-react/-/preset-react-7.0.0.tgz#e86b4b3d99433c7b3e9e91747e2653958bc6b3c0"
-  integrity sha512-oayxyPS4Zj+hF6Et11BwuBkmpgT/zMxyuZgFrMeZID6Hdh3dGlk4sHCAhdBCpuCKW2ppBfl2uCCetlrUIJRY3w==
+"@babel/preset-react@^7.8.3":
+  version "7.8.3"
+  resolved "https://registry.yarnpkg.com/@babel/preset-react/-/preset-react-7.8.3.tgz#23dc63f1b5b0751283e04252e78cf1d6589273d2"
+  integrity sha512-9hx0CwZg92jGb7iHYQVgi0tOEHP/kM60CtWJQnmbATSPIQQ2xYzfoCI3EdqAhFBeeJwYMdWQuDUHMsuDbH9hyQ==
   dependencies:
-    "@babel/helper-plugin-utils" "^7.0.0"
-    "@babel/plugin-transform-react-display-name" "^7.0.0"
-    "@babel/plugin-transform-react-jsx" "^7.0.0"
-    "@babel/plugin-transform-react-jsx-self" "^7.0.0"
-    "@babel/plugin-transform-react-jsx-source" "^7.0.0"
+    "@babel/helper-plugin-utils" "^7.8.3"
+    "@babel/plugin-transform-react-display-name" "^7.8.3"
+    "@babel/plugin-transform-react-jsx" "^7.8.3"
+    "@babel/plugin-transform-react-jsx-self" "^7.8.3"
+    "@babel/plugin-transform-react-jsx-source" "^7.8.3"
 
 "@babel/runtime@7.0.0":
   version "7.0.0"
@@ -782,59 +809,50 @@
   dependencies:
     regenerator-runtime "^0.12.0"
 
-"@babel/runtime@^7.1.2", "@babel/runtime@^7.4.2", "@babel/runtime@^7.4.5", "@babel/runtime@^7.5.4", "@babel/runtime@^7.5.5":
-  version "7.5.5"
-  resolved "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.5.5.tgz#74fba56d35efbeca444091c7850ccd494fd2f132"
-  integrity sha512-28QvEGyQyNkB0/m2B4FU7IEZGK2NUrcMtT6BZEFALTguLk+AUT6ofsHtPk5QyjAdUkpMJ+/Em+quwz4HOt30AQ==
+"@babel/runtime@^7.1.2", "@babel/runtime@^7.4.4", "@babel/runtime@^7.4.5", "@babel/runtime@^7.5.5", "@babel/runtime@^7.6.3", "@babel/runtime@^7.7.2", "@babel/runtime@^7.8.3":
+  version "7.8.3"
+  resolved "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.8.3.tgz#0811944f73a6c926bb2ad35e918dcc1bfab279f1"
+  integrity sha512-fVHx1rzEmwB130VTkLnxR+HmxcTjGzH12LYQcFFoBwakMd3aOMD4OsRN7tGG/UOYE2ektgFrS8uACAoRk1CY0w==
   dependencies:
     regenerator-runtime "^0.13.2"
 
-"@babel/template@^7.0.0", "@babel/template@^7.1.2":
-  version "7.2.2"
-  resolved "https://registry.yarnpkg.com/@babel/template/-/template-7.2.2.tgz#005b3fdf0ed96e88041330379e0da9a708eb2907"
-  integrity sha512-zRL0IMM02AUDwghf5LMSSDEz7sBCO2YnNmpg3uWTZj/v1rcG2BmQUvaGU8GhU8BvfMh1k2KIAYZ7Ji9KXPUg7g==
-  dependencies:
-    "@babel/code-frame" "^7.0.0"
-    "@babel/parser" "^7.2.2"
-    "@babel/types" "^7.2.2"
-
-"@babel/template@^7.1.0", "@babel/template@^7.2.2", "@babel/template@^7.4.4":
-  version "7.4.4"
-  resolved "https://registry.yarnpkg.com/@babel/template/-/template-7.4.4.tgz#f4b88d1225689a08f5bc3a17483545be9e4ed237"
-  integrity sha512-CiGzLN9KgAvgZsnivND7rkA+AeJ9JB0ciPOD4U59GKbQP2iQl+olF1l76kJOupqidozfZ32ghwBEJDhnk9MEcw==
-  dependencies:
-    "@babel/code-frame" "^7.0.0"
-    "@babel/parser" "^7.4.4"
-    "@babel/types" "^7.4.4"
-
-"@babel/traverse@^7.0.0", "@babel/traverse@^7.1.0", "@babel/traverse@^7.1.5", "@babel/traverse@^7.3.4", "@babel/traverse@^7.4.4", "@babel/traverse@^7.4.5", "@babel/traverse@^7.5.5":
-  version "7.5.5"
-  resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.5.5.tgz#f664f8f368ed32988cd648da9f72d5ca70f165bb"
-  integrity sha512-MqB0782whsfffYfSjH4TM+LMjrJnhCNEDMDIjeTpl+ASaUvxcjoiVCo/sM1GhS1pHOXYfWVCYneLjMckuUxDaQ==
-  dependencies:
-    "@babel/code-frame" "^7.5.5"
-    "@babel/generator" "^7.5.5"
-    "@babel/helper-function-name" "^7.1.0"
-    "@babel/helper-split-export-declaration" "^7.4.4"
-    "@babel/parser" "^7.5.5"
-    "@babel/types" "^7.5.5"
+"@babel/template@^7.0.0", "@babel/template@^7.8.3":
+  version "7.8.3"
+  resolved "https://registry.yarnpkg.com/@babel/template/-/template-7.8.3.tgz#e02ad04fe262a657809327f578056ca15fd4d1b8"
+  integrity sha512-04m87AcQgAFdvuoyiQ2kgELr2tV8B4fP/xJAVUL3Yb3bkNdMedD3d0rlSQr3PegP0cms3eHjl1F7PWlvWbU8FQ==
+  dependencies:
+    "@babel/code-frame" "^7.8.3"
+    "@babel/parser" "^7.8.3"
+    "@babel/types" "^7.8.3"
+
+"@babel/traverse@^7.0.0", "@babel/traverse@^7.1.0", "@babel/traverse@^7.8.3":
+  version "7.8.3"
+  resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.8.3.tgz#a826215b011c9b4f73f3a893afbc05151358bf9a"
+  integrity sha512-we+a2lti+eEImHmEXp7bM9cTxGzxPmBiVJlLVD+FuuQMeeO7RaDbutbgeheDkw+Xe3mCfJHnGOWLswT74m2IPg==
+  dependencies:
+    "@babel/code-frame" "^7.8.3"
+    "@babel/generator" "^7.8.3"
+    "@babel/helper-function-name" "^7.8.3"
+    "@babel/helper-split-export-declaration" "^7.8.3"
+    "@babel/parser" "^7.8.3"
+    "@babel/types" "^7.8.3"
     debug "^4.1.0"
     globals "^11.1.0"
     lodash "^4.17.13"
 
-"@babel/types@^7.0.0", "@babel/types@^7.0.0-beta.49", "@babel/types@^7.2.0", "@babel/types@^7.2.2", "@babel/types@^7.3.0", "@babel/types@^7.3.4", "@babel/types@^7.4.4", "@babel/types@^7.5.5", "@babel/types@^7.6.0":
-  version "7.6.1"
-  resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.6.1.tgz#53abf3308add3ac2a2884d539151c57c4b3ac648"
-  integrity sha512-X7gdiuaCmA0uRjCmRtYJNAVCc/q+5xSgsfKJHqMN4iNLILX39677fJE1O40arPMh0TTtS9ItH67yre6c7k6t0g==
+"@babel/types@^7.0.0", "@babel/types@^7.0.0-beta.49", "@babel/types@^7.3.0", "@babel/types@^7.8.0", "@babel/types@^7.8.3":
+  version "7.8.3"
+  resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.8.3.tgz#5a383dffa5416db1b73dedffd311ffd0788fb31c"
+  integrity sha512-jBD+G8+LWpMBBWvVcdr4QysjUE4mU/syrhN17o1u3gx0/WzJB1kwiVZAXRtWbsIPOwW8pF/YJV5+nmetPzepXg==
   dependencies:
     esutils "^2.0.2"
     lodash "^4.17.13"
     to-fast-properties "^2.0.0"
 
-"@clusterws/cws@^0.15.0":
-  version "0.15.0"
-  resolved "https://registry.yarnpkg.com/@clusterws/cws/-/cws-0.15.0.tgz#1d585927252d1cd92e676c952fa6d69df14a0d07"
-  integrity sha512-41QpCngw86n41hIdU5Nx2QJmmxZuA9FPtDkjONrYpk27L7HjL1kj6J5oWEjbr14yXLfigZit3VY+oACDCGbiHw==
+"@clusterws/cws@^0.17.3":
+  version "0.17.3"
+  resolved "https://registry.yarnpkg.com/@clusterws/cws/-/cws-0.17.3.tgz#64ce6a34b2bd357c29bdc0675f27b37279e8661f"
+  integrity sha512-5WSpxwD8yIIWPTyMspS/IDBp1d4yHnK4A0pjIzYGS1EmJHKylc4jgMiG66qbirjxZ9/IlzuvmYCgaXA+TQbe+A==
 
 "@cnakazawa/watch@^1.0.3":
   version "1.0.3"
@@ -844,52 +862,87 @@
     exec-sh "^0.3.2"
     minimist "^1.2.0"
 
-"@emotion/babel-utils@^0.6.4":
-  version "0.6.10"
-  resolved "https://registry.yarnpkg.com/@emotion/babel-utils/-/babel-utils-0.6.10.tgz#83dbf3dfa933fae9fc566e54fbb45f14674c6ccc"
-  integrity sha512-/fnkM/LTEp3jKe++T0KyTszVGWNKPNOUJfjNKLO17BzQ6QPxgbg3whayom1Qr2oLFH3V92tDymU+dT5q676uow==
+"@emotion/cache@^10.0.17", "@emotion/cache@^10.0.9":
+  version "10.0.19"
+  resolved "https://registry.yarnpkg.com/@emotion/cache/-/cache-10.0.19.tgz#d258d94d9c707dcadaf1558def968b86bb87ad71"
+  integrity sha512-BoiLlk4vEsGBg2dAqGSJu0vJl/PgVtCYLBFJaEO8RmQzPugXewQCXZJNXTDFaRlfCs0W+quesayav4fvaif5WQ==
   dependencies:
-    "@emotion/hash" "^0.6.6"
-    "@emotion/memoize" "^0.6.6"
-    "@emotion/serialize" "^0.9.1"
-    convert-source-map "^1.5.1"
-    find-root "^1.1.0"
-    source-map "^0.7.2"
-
-"@emotion/hash@^0.6.2", "@emotion/hash@^0.6.6":
-  version "0.6.6"
-  resolved "https://registry.yarnpkg.com/@emotion/hash/-/hash-0.6.6.tgz#62266c5f0eac6941fece302abad69f2ee7e25e44"
-  integrity sha512-ojhgxzUHZ7am3D2jHkMzPpsBAiB005GF5YU4ea+8DNPybMk01JJUM9V9YRlF/GE95tcOm8DxQvWA2jq19bGalQ==
-
-"@emotion/memoize@^0.6.1", "@emotion/memoize@^0.6.6":
-  version "0.6.6"
-  resolved "https://registry.yarnpkg.com/@emotion/memoize/-/memoize-0.6.6.tgz#004b98298d04c7ca3b4f50ca2035d4f60d2eed1b"
-  integrity sha512-h4t4jFjtm1YV7UirAFuSuFGyLa+NNxjdkq6DpFLANNQY5rHueFZHVY+8Cu1HYVP6DrheB0kv4m5xPjo7eKT7yQ==
+    "@emotion/sheet" "0.9.3"
+    "@emotion/stylis" "0.8.4"
+    "@emotion/utils" "0.11.2"
+    "@emotion/weak-memoize" "0.2.4"
 
-"@emotion/serialize@^0.9.1":
-  version "0.9.1"
-  resolved "https://registry.yarnpkg.com/@emotion/serialize/-/serialize-0.9.1.tgz#a494982a6920730dba6303eb018220a2b629c145"
-  integrity sha512-zTuAFtyPvCctHBEL8KZ5lJuwBanGSutFEncqLn/m9T1a6a93smBStK+bZzcNPgj4QS8Rkw9VTwJGhRIUVO8zsQ==
+"@emotion/core@^10.0.9":
+  version "10.0.17"
+  resolved "https://registry.yarnpkg.com/@emotion/core/-/core-10.0.17.tgz#3367376709721f4ee2068cff54ba581d362789d8"
+  integrity sha512-gykyjjr0sxzVuZBVTVK4dUmYsorc2qLhdYgSiOVK+m7WXgcYTKZevGWZ7TLAgTZvMelCTvhNq8xnf8FR1IdTbg==
   dependencies:
-    "@emotion/hash" "^0.6.6"
-    "@emotion/memoize" "^0.6.6"
-    "@emotion/unitless" "^0.6.7"
-    "@emotion/utils" "^0.8.2"
+    "@babel/runtime" "^7.5.5"
+    "@emotion/cache" "^10.0.17"
+    "@emotion/css" "^10.0.14"
+    "@emotion/serialize" "^0.11.10"
+    "@emotion/sheet" "0.9.3"
+    "@emotion/utils" "0.11.2"
+
+"@emotion/css@^10.0.14", "@emotion/css@^10.0.9":
+  version "10.0.14"
+  resolved "https://registry.yarnpkg.com/@emotion/css/-/css-10.0.14.tgz#95dacabdd0e22845d1a1b0b5968d9afa34011139"
+  integrity sha512-MozgPkBEWvorcdpqHZE5x1D/PLEHUitALQCQYt2wayf4UNhpgQs2tN0UwHYS4FMy5ROBH+0ALyCFVYJ/ywmwlg==
+  dependencies:
+    "@emotion/serialize" "^0.11.8"
+    "@emotion/utils" "0.11.2"
+    babel-plugin-emotion "^10.0.14"
+
+"@emotion/hash@0.7.3":
+  version "0.7.3"
+  resolved "https://registry.yarnpkg.com/@emotion/hash/-/hash-0.7.3.tgz#a166882c81c0c6040975dd30df24fae8549bd96f"
+  integrity sha512-14ZVlsB9akwvydAdaEnVnvqu6J2P6ySv39hYyl/aoB6w/V+bXX0tay8cF6paqbgZsN2n5Xh15uF4pE+GvE+itw==
 
-"@emotion/stylis@^0.7.0":
-  version "0.7.1"
-  resolved "https://registry.yarnpkg.com/@emotion/stylis/-/stylis-0.7.1.tgz#50f63225e712d99e2b2b39c19c70fff023793ca5"
-  integrity sha512-/SLmSIkN13M//53TtNxgxo57mcJk/UJIDFRKwOiLIBEyBHEcipgR6hNMQ/59Sl4VjCJ0Z/3zeAZyvnSLPG/1HQ==
+"@emotion/memoize@0.7.3":
+  version "0.7.3"
+  resolved "https://registry.yarnpkg.com/@emotion/memoize/-/memoize-0.7.3.tgz#5b6b1c11d6a6dddf1f2fc996f74cf3b219644d78"
+  integrity sha512-2Md9mH6mvo+ygq1trTeVp2uzAKwE2P7In0cRpD/M9Q70aH8L+rxMLbb3JCN2JoSWsV2O+DdFjfbbXoMoLBczow==
+
+"@emotion/serialize@^0.11.10", "@emotion/serialize@^0.11.11", "@emotion/serialize@^0.11.8":
+  version "0.11.11"
+  resolved "https://registry.yarnpkg.com/@emotion/serialize/-/serialize-0.11.11.tgz#c92a5e5b358070a7242d10508143306524e842a4"
+  integrity sha512-YG8wdCqoWtuoMxhHZCTA+egL0RSGdHEc+YCsmiSBPBEDNuVeMWtjEWtGrhUterSChxzwnWBXvzSxIFQI/3sHLw==
+  dependencies:
+    "@emotion/hash" "0.7.3"
+    "@emotion/memoize" "0.7.3"
+    "@emotion/unitless" "0.7.4"
+    "@emotion/utils" "0.11.2"
+    csstype "^2.5.7"
+
+"@emotion/sheet@0.9.3":
+  version "0.9.3"
+  resolved "https://registry.yarnpkg.com/@emotion/sheet/-/sheet-0.9.3.tgz#689f135ecf87d3c650ed0c4f5ddcbe579883564a"
+  integrity sha512-c3Q6V7Df7jfwSq5AzQWbXHa5soeE4F5cbqi40xn0CzXxWW9/6Mxq48WJEtqfWzbZtW9odZdnRAkwCQwN12ob4A==
+
+"@emotion/stylis@0.8.4":
+  version "0.8.4"
+  resolved "https://registry.yarnpkg.com/@emotion/stylis/-/stylis-0.8.4.tgz#6c51afdf1dd0d73666ba09d2eb6c25c220d6fe4c"
+  integrity sha512-TLmkCVm8f8gH0oLv+HWKiu7e8xmBIaokhxcEKPh1m8pXiV/akCiq50FvYgOwY42rjejck8nsdQxZlXZ7pmyBUQ==
+
+"@emotion/unitless@0.7.4":
+  version "0.7.4"
+  resolved "https://registry.yarnpkg.com/@emotion/unitless/-/unitless-0.7.4.tgz#a87b4b04e5ae14a88d48ebef15015f6b7d1f5677"
+  integrity sha512-kBa+cDHOR9jpRJ+kcGMsysrls0leukrm68DmFQoMIWQcXdr2cZvyvypWuGYT7U+9kAExUE7+T7r6G3C3A6L8MQ==
+
+"@emotion/utils@0.11.2":
+  version "0.11.2"
+  resolved "https://registry.yarnpkg.com/@emotion/utils/-/utils-0.11.2.tgz#713056bfdffb396b0a14f1c8f18e7b4d0d200183"
+  integrity sha512-UHX2XklLl3sIaP6oiMmlVzT0J+2ATTVpf0dHQVyPJHTkOITvXfaSqnRk6mdDhV9pR8T/tHc3cex78IKXssmzrA==
 
-"@emotion/unitless@^0.6.2", "@emotion/unitless@^0.6.7":
-  version "0.6.7"
-  resolved "https://registry.yarnpkg.com/@emotion/unitless/-/unitless-0.6.7.tgz#53e9f1892f725b194d5e6a1684a7b394df592397"
-  integrity sha512-Arj1hncvEVqQ2p7Ega08uHLr1JuRYBuO5cIvcA+WWEQ5+VmkOE3ZXzl04NbQxeQpWX78G7u6MqxKuNX3wvYZxg==
+"@emotion/weak-memoize@0.2.4":
+  version "0.2.4"
+  resolved "https://registry.yarnpkg.com/@emotion/weak-memoize/-/weak-memoize-0.2.4.tgz#622a72bebd1e3f48d921563b4b60a762295a81fc"
+  integrity sha512-6PYY5DVdAY1ifaQW6XYTnOMihmBVT27elqSjEoodchsGjzYlEsTQMcEhSud99kVawatyTZRTiVkJ/c6lwbQ7nA==
 
-"@emotion/utils@^0.8.2":
-  version "0.8.2"
-  resolved "https://registry.yarnpkg.com/@emotion/utils/-/utils-0.8.2.tgz#576ff7fb1230185b619a75d258cbc98f0867a8dc"
-  integrity sha512-rLu3wcBWH4P5q1CGoSSH/i9hrXs7SlbRLkoq9IGuoPYNGQvDJ3pt/wmOM+XgYjIDRMVIdkUWt0RsfzF50JfnCw==
+"@gamestdio/websocket@^0.3.2":
+  version "0.3.2"
+  resolved "https://registry.yarnpkg.com/@gamestdio/websocket/-/websocket-0.3.2.tgz#321ba0976ee30fd14e51dbf8faa85ce7b325f76a"
+  integrity sha512-J3n5SKim+ZoLbe44hRGI/VYAwSMCeIJuBy+FfP6EZaujEpNchPRFcIsVQLWAwpU1bP2Ji63rC+rEUOd1vjUB6Q==
 
 "@jest/console@^24.7.1":
   version "24.7.1"
@@ -1057,10 +1110,10 @@
     "@types/istanbul-reports" "^1.1.1"
     "@types/yargs" "^13.0.0"
 
-"@types/babel__core@^7.1.0":
-  version "7.1.0"
-  resolved "https://registry.yarnpkg.com/@types/babel__core/-/babel__core-7.1.0.tgz#710f2487dda4dcfd010ca6abb2b4dc7394365c51"
-  integrity sha512-wJTeJRt7BToFx3USrCDs2BhEi4ijBInTQjOIukj6a/5tEkwpFMVZ+1ppgmE+Q/FQyc5P/VWUbx7I9NELrKruHA==
+"@types/babel__core@^7.1.0", "@types/babel__core@^7.1.2":
+  version "7.1.3"
+  resolved "https://registry.yarnpkg.com/@types/babel__core/-/babel__core-7.1.3.tgz#e441ea7df63cd080dfcd02ab199e6d16a735fc30"
+  integrity sha512-8fBo0UR2CcwWxeX7WIIgJ7lXjasFxoYgRnFHUj+hRvKkpiBJbxhdAPTCY6/ZKM0uxANFVzt4yObSLuTiTnazDA==
   dependencies:
     "@babel/parser" "^7.1.0"
     "@babel/types" "^7.0.0"
@@ -1090,6 +1143,11 @@
   dependencies:
     "@babel/types" "^7.3.0"
 
+"@types/color-name@^1.1.1":
+  version "1.1.1"
+  resolved "https://registry.yarnpkg.com/@types/color-name/-/color-name-1.1.1.tgz#1c1261bbeaa10a8055bbc5d8ab84b7b2afc846a0"
+  integrity sha512-rr+OQyAjxze7GgWrSaJwydHStIhHq2lvY3BOC2Mj7KnzI7XK0Uw1TOOdI9lDoajEbSWLiYgoo4f1R51erQfhPQ==
+
 "@types/events@*":
   version "3.0.0"
   resolved "https://registry.yarnpkg.com/@types/events/-/events-3.0.0.tgz#2862f3f58a9a7f7c3e78d79f130dd4d71c25c2a7"
@@ -1134,6 +1192,11 @@
   resolved "https://registry.yarnpkg.com/@types/node/-/node-12.7.8.tgz#cb1bf6800238898bc2ff6ffa5702c3cadd350708"
   integrity sha512-FMdVn84tJJdV+xe+53sYiZS4R5yn1mAIxfj+DVoNiQjTYz1+OYmjwEZr1ev9nU0axXwda0QDbYl06QHanRVH3A==
 
+"@types/parse-json@^4.0.0":
+  version "4.0.0"
+  resolved "https://registry.yarnpkg.com/@types/parse-json/-/parse-json-4.0.0.tgz#2f8bb441434d163b35fb8ffdccd7138927ffb8c0"
+  integrity sha512-//oorEZjL6sbPcKUaCdIGlIUeH26mgzimjBB77G6XRgnDl/L5wOnpyBGRe/Mmf5CVW3PwEBE1NjiMZ/ssFh4wA==
+
 "@types/q@^1.5.1":
   version "1.5.1"
   resolved "https://registry.yarnpkg.com/@types/q/-/q-1.5.1.tgz#48fd98c1561fe718b61733daed46ff115b496e18"
@@ -1352,17 +1415,12 @@ acorn-jsx@^3.0.0:
   dependencies:
     acorn "^3.0.4"
 
-acorn-jsx@^5.0.2:
-  version "5.0.2"
-  resolved "https://registry.yarnpkg.com/acorn-jsx/-/acorn-jsx-5.0.2.tgz#84b68ea44b373c4f8686023a551f61a21b7c4a4f"
-  integrity sha512-tiNTrP1MP0QrChmD2DdupCr6HWSFeKVw5d/dHTu4Y7rkAkRhU/Dt7dphAfIUyxtHpl/eBVip5uTNSpQJHylpAw==
-
-acorn-walk@^6.0.1:
-  version "6.1.1"
-  resolved "https://registry.yarnpkg.com/acorn-walk/-/acorn-walk-6.1.1.tgz#d363b66f5fac5f018ff9c3a1e7b6f8e310cc3913"
-  integrity sha512-OtUw6JUTgxA2QoqqmrmQ7F2NYqiBPi/L2jqHyFtllhOUvXYQXf0Z1CYUinIfyT4bTCGmrA7gX9FvHA81uzCoVw==
+acorn-jsx@^5.1.0:
+  version "5.1.0"
+  resolved "https://registry.yarnpkg.com/acorn-jsx/-/acorn-jsx-5.1.0.tgz#294adb71b57398b0680015f0a38c563ee1db5384"
+  integrity sha512-tMUqwBWfLFbJbizRmEcWSLw6HnFzfdJs2sOJEOwwtVPMoH/0Ay+E703oZz78VSXZiiDcZrQ5XKjPIUQixhmgVw==
 
-acorn-walk@^6.1.1:
+acorn-walk@^6.0.1, acorn-walk@^6.1.1:
   version "6.2.0"
   resolved "https://registry.yarnpkg.com/acorn-walk/-/acorn-walk-6.2.0.tgz#123cb8f3b84c2171f1f7fb252615b1c78a6b1a8c"
   integrity sha512-7evsyfH1cLOCdAzZAd43Cic04yKydNx0cF+7tiA19p1XnLLPU4dpCQOqpjqwokFe//vS0QqfqqjCS2JkiIs0cA==
@@ -1377,28 +1435,31 @@ acorn@^5.5.0, acorn@^5.5.3:
   resolved "https://registry.yarnpkg.com/acorn/-/acorn-5.7.3.tgz#67aa231bf8812974b85235a96771eb6bd07ea279"
   integrity sha512-T/zvzYRfbVojPWahDsE5evJdHb3oJoQfFbsrKM7w5Zcs++Tr257tia3BmMP8XYVjp1S9RZXQMh7gao96BlqZOw==
 
-acorn@^6.0.1:
-  version "6.2.0"
-  resolved "https://registry.yarnpkg.com/acorn/-/acorn-6.2.0.tgz#67f0da2fc339d6cfb5d6fb244fd449f33cd8bbe3"
-  integrity sha512-8oe72N3WPMjA+2zVG71Ia0nXZ8DpQH+QyyHO+p06jT8eg8FGG3FbcUIi8KziHlAfheJQZeoqbvq1mQSQHXKYLw==
-
-acorn@^6.0.7, acorn@^6.2.1:
+acorn@^6.0.1, acorn@^6.0.7, acorn@^6.2.1:
   version "6.3.0"
   resolved "https://registry.yarnpkg.com/acorn/-/acorn-6.3.0.tgz#0087509119ffa4fc0a0041d1e93a417e68cb856e"
   integrity sha512-/czfa8BwS88b9gWQVhc8eknunSA2DoJpJyTQkhheIf5E48u1N0R4q/YxxsAeqRrmK9TQ/uYfgLDfZo91UlANIA==
 
-acorn@^7.0.0:
-  version "7.0.0"
-  resolved "https://registry.yarnpkg.com/acorn/-/acorn-7.0.0.tgz#26b8d1cd9a9b700350b71c0905546f64d1284e7a"
-  integrity sha512-PaF/MduxijYYt7unVGRuds1vBC9bFxbNf+VWqhOClfdgy7RlVkQqt610ig1/yxTgsDIfW1cWDel5EBbOy3jdtQ==
+acorn@^7.1.0:
+  version "7.1.0"
+  resolved "https://registry.yarnpkg.com/acorn/-/acorn-7.1.0.tgz#949d36f2c292535da602283586c2477c57eb2d6c"
+  integrity sha512-kL5CuoXA/dgxlBbVrflsflzQ3PAas7RYZB52NOm/6839iVYJgKMJ3cQJD+t2i5+qFa8h3MDpEOJiS64E8JLnSQ==
+
+aggregate-error@^3.0.0:
+  version "3.0.1"
+  resolved "https://registry.yarnpkg.com/aggregate-error/-/aggregate-error-3.0.1.tgz#db2fe7246e536f40d9b5442a39e117d7dd6a24e0"
+  integrity sha512-quoaXsZ9/BLNae5yiNoUz+Nhkwz83GhWwtYFglcjEQB2NDHCIpApbqXxIFnm4Pq/Nvhrsq5sYJFyohrrxnTGAA==
+  dependencies:
+    clean-stack "^2.0.0"
+    indent-string "^4.0.0"
 
-airbnb-prop-types@^2.13.2:
-  version "2.13.2"
-  resolved "https://registry.yarnpkg.com/airbnb-prop-types/-/airbnb-prop-types-2.13.2.tgz#43147a5062dd2a4a5600e748a47b64004cc5f7fc"
-  integrity sha512-2FN6DlHr6JCSxPPi25EnqGaXC4OC3/B3k1lCd6MMYrZ51/Gf/1qDfaR+JElzWa+Tl7cY2aYOlsYJGFeQyVHIeQ==
+airbnb-prop-types@^2.15.0:
+  version "2.15.0"
+  resolved "https://registry.yarnpkg.com/airbnb-prop-types/-/airbnb-prop-types-2.15.0.tgz#5287820043af1eb469f5b0af0d6f70da6c52aaef"
+  integrity sha512-jUh2/hfKsRjNFC4XONQrxo/n/3GG4Tn6Hl0WlFQN5PY9OMC9loSCoAYKnZsWaP8wEfd5xcrPloK0Zg6iS1xwVA==
   dependencies:
-    array.prototype.find "^2.0.4"
-    function.prototype.name "^1.1.0"
+    array.prototype.find "^2.1.0"
+    function.prototype.name "^1.1.1"
     has "^1.0.3"
     is-regex "^1.0.4"
     object-is "^1.0.1"
@@ -1406,7 +1467,7 @@ airbnb-prop-types@^2.13.2:
     object.entries "^1.1.0"
     prop-types "^15.7.2"
     prop-types-exact "^1.2.0"
-    react-is "^16.8.6"
+    react-is "^16.9.0"
 
 ajv-errors@^1.0.0:
   version "1.0.1"
@@ -1461,10 +1522,12 @@ ansi-escapes@^3.0.0:
   resolved "https://registry.yarnpkg.com/ansi-escapes/-/ansi-escapes-3.1.0.tgz#f73207bb81207d75fd6c83f125af26eea378ca30"
   integrity sha512-UgAb8H9D41AQnu/PbWlCofQVcnV4Gs2bBJi9eZPxfU/hgglFh3SMDMENRIqdr7H6XFnXdoknctFByVsCOotTVw==
 
-ansi-escapes@^3.2.0:
-  version "3.2.0"
-  resolved "https://registry.yarnpkg.com/ansi-escapes/-/ansi-escapes-3.2.0.tgz#8780b98ff9dbf5638152d1f1fe5c1d7b4442976b"
-  integrity sha512-cBhpre4ma+U0T1oM5fXg7Dy1Jw7zzwv7lt/GoCpr+hDQJoYnKVPLL4dCvSEFMmQurOQvSrwT7SL/DAlhBI97RQ==
+ansi-escapes@^4.2.1:
+  version "4.3.0"
+  resolved "https://registry.yarnpkg.com/ansi-escapes/-/ansi-escapes-4.3.0.tgz#a4ce2b33d6b214b7950d8595c212f12ac9cc569d"
+  integrity sha512-EiYhwo0v255HUL6eDyuLrXEkTi7WwVCLAw+SeOQ7M7qdun1z1pum4DEm/nuqIVbPvi9RPPc9k9LbyBv6H0DwVg==
+  dependencies:
+    type-fest "^0.8.1"
 
 ansi-html@0.0.7:
   version "0.0.7"
@@ -1491,6 +1554,11 @@ ansi-regex@^4.1.0:
   resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-4.1.0.tgz#8b9f8f08cf1acb843756a839ca8c7e3168c51997"
   integrity sha512-1apePfXM1UOSqw0o9IiFAovVz9M5S1Dg+4TrDwfMewQ6p/rmMueb7tWZjQ1rx4Loy1ArBggoqGpfqqdI4rondg==
 
+ansi-regex@^5.0.0:
+  version "5.0.0"
+  resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-5.0.0.tgz#388539f55179bf39339c81af30a654d69f87cb75"
+  integrity sha512-bY6fj56OUQ0hU1KjFNDQuJFezqKdrAyFdIevADiqrWHwSlbmBNMHp5ak2f40Pm8JTFyM2mqxkG6ngkHO11f/lg==
+
 ansi-styles@^2.2.1:
   version "2.2.1"
   resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-2.2.1.tgz#b432dd3358b634cf75e1e4664368240533c1ddbe"
@@ -1503,6 +1571,14 @@ ansi-styles@^3.2.0, ansi-styles@^3.2.1:
   dependencies:
     color-convert "^1.9.0"
 
+ansi-styles@^4.0.0:
+  version "4.2.0"
+  resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-4.2.0.tgz#5681f0dcf7ae5880a7841d8831c4724ed9cc0172"
+  integrity sha512-7kFQgnEaMdRtwf6uSfUnVr9gSGC7faurn+J/Mv90/W+iTtN0405/nLdopfMWwchyxhbGYl6TC4Sccn9TUkGAgg==
+  dependencies:
+    "@types/color-name" "^1.1.1"
+    color-convert "^2.0.1"
+
 anymatch@^2.0.0:
   version "2.0.0"
   resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-2.0.0.tgz#bcb24b4f37934d9aa7ac17b4adaf89e7c76ef2eb"
@@ -1582,13 +1658,14 @@ array-flatten@^2.1.0:
   resolved "https://registry.yarnpkg.com/array-flatten/-/array-flatten-2.1.2.tgz#24ef80a28c1a893617e2149b0c6d0d788293b099"
   integrity sha512-hNfzcOV8W4NdualtqBFPyVO+54DSJuZGY9qT4pRroB6S9e3iiido2ISIC5h9R2sPJ8H3FHCIiEnsv1lPXO3KtQ==
 
-array-includes@^3.0.3:
-  version "3.0.3"
-  resolved "https://registry.yarnpkg.com/array-includes/-/array-includes-3.0.3.tgz#184b48f62d92d7452bb31b323165c7f8bd02266d"
-  integrity sha1-GEtI9i2S10UrsxsyMWXH+L0CJm0=
+array-includes@^3.0.3, array-includes@^3.1.1:
+  version "3.1.1"
+  resolved "https://registry.yarnpkg.com/array-includes/-/array-includes-3.1.1.tgz#cdd67e6852bdf9c1215460786732255ed2459348"
+  integrity sha512-c2VXaCHl7zPsvpkFsw4nxvFie4fh1ur9bpcgsVkIjqn0H/Xwdg+7fv3n2r/isyS8EBj5b06M9kHyZuIr4El6WQ==
   dependencies:
-    define-properties "^1.1.2"
-    es-abstract "^1.7.0"
+    define-properties "^1.1.3"
+    es-abstract "^1.17.0"
+    is-string "^1.0.5"
 
 array-union@^1.0.1:
   version "1.0.2"
@@ -1607,7 +1684,7 @@ array-unique@^0.3.2:
   resolved "https://registry.yarnpkg.com/array-unique/-/array-unique-0.3.2.tgz#a894b75d4bc4f6cd679ef3244a9fd8f46ae2d428"
   integrity sha1-qJS3XUvE9s1nnvMkSp/Y9Gri1Cg=
 
-array.prototype.find@^2.0.4:
+array.prototype.find@^2.1.0:
   version "2.1.0"
   resolved "https://registry.yarnpkg.com/array.prototype.find/-/array.prototype.find-2.1.0.tgz#630f2eaf70a39e608ac3573e45cf8ccd0ede9ad7"
   integrity sha512-Wn41+K1yuO5p7wRZDl7890c3xvv5UBrfVXTVIe28rSQb6LS0fZMDrQB6PAcxQFRFy6vJTLDc3A2+3CjQdzVKRg==
@@ -1615,20 +1692,24 @@ array.prototype.find@^2.0.4:
     define-properties "^1.1.3"
     es-abstract "^1.13.0"
 
-array.prototype.flat@^1.2.1:
-  version "1.2.1"
-  resolved "https://registry.yarnpkg.com/array.prototype.flat/-/array.prototype.flat-1.2.1.tgz#812db8f02cad24d3fab65dd67eabe3b8903494a4"
-  integrity sha512-rVqIs330nLJvfC7JqYvEWwqVr5QjYF1ib02i3YJtR/fICO6527Tjpc/e4Mvmxh3GIePPreRXMdaGyC99YphWEw==
+array.prototype.flat@^1.2.1, array.prototype.flat@^1.2.3:
+  version "1.2.3"
+  resolved "https://registry.yarnpkg.com/array.prototype.flat/-/array.prototype.flat-1.2.3.tgz#0de82b426b0318dbfdb940089e38b043d37f6c7b"
+  integrity sha512-gBlRZV0VSmfPIeWfuuy56XZMvbVfbEUnOXUvt3F/eUUUSyzlgLxhEX4YAEpxNAogRGehPSnfXyPtYyKAhkzQhQ==
   dependencies:
-    define-properties "^1.1.2"
-    es-abstract "^1.10.0"
-    function-bind "^1.1.1"
+    define-properties "^1.1.3"
+    es-abstract "^1.17.0-next.1"
 
 arrify@^1.0.1:
   version "1.0.1"
   resolved "https://registry.yarnpkg.com/arrify/-/arrify-1.0.1.tgz#898508da2226f380df904728456849c1501a4b0d"
   integrity sha1-iYUI2iIm84DfkEcoRWhJwVAaSw0=
 
+arrow-key-navigation@^1.1.0:
+  version "1.1.0"
+  resolved "https://registry.yarnpkg.com/arrow-key-navigation/-/arrow-key-navigation-1.1.0.tgz#c0f7021d006593e2e34e79aa1f032714877d3a76"
+  integrity sha512-u73yfJRmKye5eZiMNrAUKaBIRt47/1NM8WEtVAPjjMDab/PVn0sKIuapvCxl7C+tI9nH0QOl1Tc2YL2aO9n9Zw==
+
 asap@~2.0.3:
   version "2.0.6"
   resolved "https://registry.yarnpkg.com/asap/-/asap-2.0.6.tgz#e50347611d7e690943208bbdafebcbc2fb866d46"
@@ -1688,10 +1769,12 @@ async-limiter@~1.0.0:
   resolved "https://registry.yarnpkg.com/async-limiter/-/async-limiter-1.0.1.tgz#dd379e94f0db8310b08291f9d64c3209766617fd"
   integrity sha512-csOlWGAcRFJaI6m+F2WKdnMKr4HhdhFVBk0H/QbJFMCr+uO2kwohwXQPxw/9OCxp05r5ghVBFSyioixx3gfkNQ==
 
-async@^1.5.2:
-  version "1.5.2"
-  resolved "https://registry.yarnpkg.com/async/-/async-1.5.2.tgz#ec6a61ae56480c0c3cb241c95618e20892f9672a"
-  integrity sha1-7GphrlZIDAw8skHJVhjiCJL5Zyo=
+async@^2.6.2:
+  version "2.6.3"
+  resolved "https://registry.yarnpkg.com/async/-/async-2.6.3.tgz#d72625e2344a3656e3a3ad4fa749fa83299d82ff"
+  integrity sha512-zflvls11DCy+dQWzTW2dzuilv8Z5X/pjfmZOWba6TNIVDm+2UDaJmXSOXlasHKfNBs8oo3M0aT50fDEWfKZjXg==
+  dependencies:
+    lodash "^4.17.14"
 
 asynckit@^0.4.0:
   version "0.4.0"
@@ -1703,18 +1786,18 @@ atob@^2.1.1:
   resolved "https://registry.yarnpkg.com/atob/-/atob-2.1.2.tgz#6d9517eb9e030d2436666651e86bd9f6f13533c9"
   integrity sha512-Wm6ukoaOGJi/73p/cl2GvLjTI5JM1k/O14isD73YML8StrH/7/lRFgmg8nICZgD3bZZvjwCGxtMOD3wWNAu8cg==
 
-autoprefixer@^9.6.1:
-  version "9.6.1"
-  resolved "https://registry.yarnpkg.com/autoprefixer/-/autoprefixer-9.6.1.tgz#51967a02d2d2300bb01866c1611ec8348d355a47"
-  integrity sha512-aVo5WxR3VyvyJxcJC3h4FKfwCQvQWb1tSI5VHNibddCVWrcD1NvlxEweg3TSgiPztMnWfjpy2FURKA2kvDE+Tw==
+autoprefixer@^9.7.4:
+  version "9.7.4"
+  resolved "https://registry.yarnpkg.com/autoprefixer/-/autoprefixer-9.7.4.tgz#f8bf3e06707d047f0641d87aee8cfb174b2a5378"
+  integrity sha512-g0Ya30YrMBAEZk60lp+qfX5YQllG+S5W3GYCFvyHTvhOki0AEQJLPEcIuGRsqVwLi8FvXPVtwTGhfr38hVpm0g==
   dependencies:
-    browserslist "^4.6.3"
-    caniuse-lite "^1.0.30000980"
+    browserslist "^4.8.3"
+    caniuse-lite "^1.0.30001020"
     chalk "^2.4.2"
     normalize-range "^0.1.2"
     num2fraction "^1.2.2"
-    postcss "^7.0.17"
-    postcss-value-parser "^4.0.0"
+    postcss "^7.0.26"
+    postcss-value-parser "^4.0.2"
 
 aws-sign2@~0.7.0:
   version "0.7.0"
@@ -1734,13 +1817,12 @@ axios@^0.18.0:
     follow-redirects "1.5.10"
     is-buffer "^2.0.2"
 
-axios@^0.19.0:
-  version "0.19.0"
-  resolved "https://registry.yarnpkg.com/axios/-/axios-0.19.0.tgz#8e09bff3d9122e133f7b8101c8fbdd00ed3d2ab8"
-  integrity sha512-1uvKqKQta3KBxIz14F2v06AEHZ/dIoeKfbTRkK1E5oqjDnuEerLmYTgJB5AiQZHJcljpg1TuRzdjDR06qNk0DQ==
+axios@^0.19.1:
+  version "0.19.1"
+  resolved "https://registry.yarnpkg.com/axios/-/axios-0.19.1.tgz#8a6a04eed23dfe72747e1dd43c604b8f1677b5aa"
+  integrity sha512-Yl+7nfreYKaLRvAvjNPkvfjnQHJM1yLBY3zhqAwcJSwR/6ETkanUgylgtIvkvz0xJ+p/vZuNw8X7Hnb7Whsbpw==
   dependencies:
     follow-redirects "1.5.10"
-    is-buffer "^2.0.2"
 
 axobject-query@^2.0.2:
   version "2.0.2"
@@ -1791,23 +1873,21 @@ babel-plugin-dynamic-import-node@^2.3.0:
   dependencies:
     object.assign "^4.1.0"
 
-babel-plugin-emotion@^9.2.11:
-  version "9.2.11"
-  resolved "https://registry.yarnpkg.com/babel-plugin-emotion/-/babel-plugin-emotion-9.2.11.tgz#319c005a9ee1d15bb447f59fe504c35fd5807728"
-  integrity sha512-dgCImifnOPPSeXod2znAmgc64NhaaOjGEHROR/M+lmStb3841yK1sgaDYAYMnlvWNz8GnpwIPN0VmNpbWYZ+VQ==
+babel-plugin-emotion@^10.0.14:
+  version "10.0.19"
+  resolved "https://registry.yarnpkg.com/babel-plugin-emotion/-/babel-plugin-emotion-10.0.19.tgz#67b9b213f7505c015f163a387a005c12c502b1de"
+  integrity sha512-1pJb5uKN/gx6bi3gGr588Krj49sxARI9KmxhtMUa+NRJb6lR3OfC51mh3NlWRsOqdjWlT4cSjnZpnFq5K3T5ZA==
   dependencies:
     "@babel/helper-module-imports" "^7.0.0"
-    "@emotion/babel-utils" "^0.6.4"
-    "@emotion/hash" "^0.6.2"
-    "@emotion/memoize" "^0.6.1"
-    "@emotion/stylis" "^0.7.0"
+    "@emotion/hash" "0.7.3"
+    "@emotion/memoize" "0.7.3"
+    "@emotion/serialize" "^0.11.11"
     babel-plugin-macros "^2.0.0"
     babel-plugin-syntax-jsx "^6.18.0"
     convert-source-map "^1.5.0"
+    escape-string-regexp "^1.0.5"
     find-root "^1.1.0"
-    mkdirp "^0.5.1"
     source-map "^0.5.7"
-    touch "^2.0.1"
 
 babel-plugin-istanbul@^5.1.0:
   version "5.1.1"
@@ -1836,38 +1916,34 @@ babel-plugin-lodash@^3.3.4:
     lodash "^4.17.10"
     require-package-name "^2.0.1"
 
-babel-plugin-macros@^2.0.0:
-  version "2.5.1"
-  resolved "https://registry.yarnpkg.com/babel-plugin-macros/-/babel-plugin-macros-2.5.1.tgz#4a119ac2c2e19b458c259b9accd7ee34fd57ec6f"
-  integrity sha512-xN3KhAxPzsJ6OQTktCanNpIFnnMsCV+t8OloKxIL72D6+SUZYFn9qfklPgef5HyyDtzYZqqb+fs1S12+gQY82Q==
-  dependencies:
-    "@babel/runtime" "^7.4.2"
-    cosmiconfig "^5.2.0"
-    resolve "^1.10.0"
-
-babel-plugin-macros@^2.2.2:
-  version "2.4.3"
-  resolved "https://registry.yarnpkg.com/babel-plugin-macros/-/babel-plugin-macros-2.4.3.tgz#870345aa538d85f04b4614fea5922b55c45dd551"
-  integrity sha512-M8cE1Rx0zgfKYBWAS+T6ZVCLGuTKdBI5Rn3fu9q6iVdH0UjaXdmF501/VEYn7kLHCgguhGNk5JBzOn64e2xDEA==
+babel-plugin-macros@^2.0.0, babel-plugin-macros@^2.6.1:
+  version "2.6.2"
+  resolved "https://registry.yarnpkg.com/babel-plugin-macros/-/babel-plugin-macros-2.6.2.tgz#98ae30a02645dfa8033628fe613854ec9541bbc8"
+  integrity sha512-Ntviq8paRTkXIxvrJBauib+2KqQbZQuh4593CEZFF8qz3IVP8VituTZmkGe6N7rsuiOIbejxXj6kx3LMlEq0UA==
   dependencies:
-    cosmiconfig "^5.0.5"
-    resolve "^1.8.1"
+    "@babel/runtime" "^7.7.2"
+    cosmiconfig "^6.0.0"
+    resolve "^1.12.0"
 
-babel-plugin-preval@^3.0.1:
-  version "3.0.1"
-  resolved "https://registry.yarnpkg.com/babel-plugin-preval/-/babel-plugin-preval-3.0.1.tgz#a26f9690114a864a54a5cbdf865496ebf541a9c3"
-  integrity sha512-s8hmTlRSmzcL7cHSIi0s6WxmpOAxfIlWqSVQwBIt7V5bNBaac+8JMZ6kJXLOazMJ8gCIcb5AJgQUgPHvbSYUzw==
+babel-plugin-preval@^4.0.0:
+  version "4.0.0"
+  resolved "https://registry.yarnpkg.com/babel-plugin-preval/-/babel-plugin-preval-4.0.0.tgz#edb8501167985752aafcc31086791e1314052e9d"
+  integrity sha512-fZI/4cYneinlj2k/FsXw0/lTWSC5KKoepUueS1g25Gb5vx3GrRyaVwxWCshYqx11GEU4mZnbbFhee8vpquFS2w==
   dependencies:
-    babel-plugin-macros "^2.2.2"
+    "@babel/runtime" "^7.7.2"
+    babel-plugin-macros "^2.6.1"
     require-from-string "^2.0.2"
 
-babel-plugin-react-intl@^3.1.3:
-  version "3.1.3"
-  resolved "https://registry.yarnpkg.com/babel-plugin-react-intl/-/babel-plugin-react-intl-3.1.3.tgz#2a28cd43cbba1ed092c7e3376bf8f02b0f72acb8"
-  integrity sha512-Fq2u6HqYt+pggUXe8DSqZaRA2W9LfOet1dQv1tD+KYcRjL9JW/DXNEn3GPjSw3bCHJiSuGyWPYO7MdbYRVsGDw==
+babel-plugin-react-intl@^3.4.1:
+  version "3.4.1"
+  resolved "https://registry.yarnpkg.com/babel-plugin-react-intl/-/babel-plugin-react-intl-3.4.1.tgz#b107b0756599c2fccb09f601454a7b805e8df659"
+  integrity sha512-1Dp+b5E71ot3YjxPkX1u4l5pJkiLDmU4V6m6gatgrFRxGL8NQlQ67WrPA7GTNJhOhs75PYGmR3+l1PT7It4eyQ==
   dependencies:
+    "@babel/core" "^7.4.5"
+    "@babel/helper-plugin-utils" "^7.0.0"
+    "@types/babel__core" "^7.1.2"
     fs-extra "^8.0.1"
-    intl-messageformat-parser "^1.6.5"
+    intl-messageformat-parser "^1.7.1"
 
 babel-plugin-syntax-jsx@^6.18.0:
   version "6.18.0"
@@ -1895,13 +1971,6 @@ babel-runtime@^6.26.0:
     core-js "^2.4.0"
     regenerator-runtime "^0.11.0"
 
-backoff@^2.4.1:
-  version "2.5.0"
-  resolved "https://registry.yarnpkg.com/backoff/-/backoff-2.5.0.tgz#f616eda9d3e4b66b8ca7fca79f695722c5f8e26f"
-  integrity sha1-9hbtqdPktmuMp/ynn2lXIsX44m8=
-  dependencies:
-    precond "0.2"
-
 balanced-match@^1.0.0:
   version "1.0.0"
   resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.0.tgz#89b4d199ab2bee49de164ea02b89ce462d71b767"
@@ -1967,20 +2036,15 @@ binary-extensions@^2.0.0:
   resolved "https://registry.yarnpkg.com/binary-extensions/-/binary-extensions-2.0.0.tgz#23c0df14f6a88077f5f986c0d167ec03c3d5537c"
   integrity sha512-Phlt0plgpIIBOGTT/ehfFnbNlfsDEiqmzE2KRXoX1bLIlir4X/MR+zSyBEkL05ffWgnRSf/DXv+WrUAVr93/ow==
 
-bluebird@^3.5.3:
-  version "3.5.3"
-  resolved "https://registry.yarnpkg.com/bluebird/-/bluebird-3.5.3.tgz#7d01c6f9616c9a51ab0f8c549a79dfe6ec33efa7"
-  integrity sha512-/qKPUQlaW1OyR51WeCPBvRnAlnZFUJkCSG5HzGnuIqhgyJtF+T94lFnn33eiazjRm2LAHVy2guNnaq48X9SJuw==
-
 bluebird@^3.5.5:
   version "3.5.5"
   resolved "https://registry.yarnpkg.com/bluebird/-/bluebird-3.5.5.tgz#a8d0afd73251effbbd5fe384a77d73003c17a71f"
   integrity sha512-5am6HnnfN+urzt4yfg7IgTbotDjIT/u8AJpEt0sIU9FtXfVeezXAPKswrG+xKUCOYAINpSdgZVDU6QFh+cuH3w==
 
-blurhash@^1.0.0:
-  version "1.0.0"
-  resolved "https://registry.yarnpkg.com/blurhash/-/blurhash-1.0.0.tgz#9087bc5cc4d482f1305059d7410df4133adcab2e"
-  integrity sha512-x6fpZnd6AWde4U9m7xhUB44qIvGV4W6OdTAXGabYm4oZUOOGh5K1HAEoGAQn3iG4gbbPn9RSGce3VfNgGsX/Vw==
+blurhash@^1.1.3:
+  version "1.1.3"
+  resolved "https://registry.yarnpkg.com/blurhash/-/blurhash-1.1.3.tgz#dc325af7da836d07a0861d830bdd63694382483e"
+  integrity sha512-yUhPJvXexbqbyijCIE/T2NCXcj9iNPhWmOKbPTuR/cm7Q5snXYIfnVnz6m7MWOXxODMz/Cr3UcVkRdHiuDVRDw==
 
 bmp-js@^0.1.0:
   version "0.1.0"
@@ -2139,14 +2203,14 @@ browserify-zlib@^0.2.0:
   dependencies:
     pako "~1.0.5"
 
-browserslist@^4.0.0, browserslist@^4.6.0, browserslist@^4.6.3:
-  version "4.6.6"
-  resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-4.6.6.tgz#6e4bf467cde520bc9dbdf3747dafa03531cec453"
-  integrity sha512-D2Nk3W9JL9Fp/gIcWei8LrERCS+eXu9AM5cfXA8WEZ84lFks+ARnZ0q/R69m2SV3Wjma83QDDPxsNKXUwdIsyA==
+browserslist@^4.0.0, browserslist@^4.8.2, browserslist@^4.8.3:
+  version "4.8.3"
+  resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-4.8.3.tgz#65802fcd77177c878e015f0e3189f2c4f627ba44"
+  integrity sha512-iU43cMMknxG1ClEZ2MDKeonKE1CCrFVkQK2AqO2YWFmvIrx4JWrvQ4w4hQez6EpVI8rHTtqh/ruHHDHSOKxvUg==
   dependencies:
-    caniuse-lite "^1.0.30000984"
-    electron-to-chromium "^1.3.191"
-    node-releases "^1.1.25"
+    caniuse-lite "^1.0.30001017"
+    electron-to-chromium "^1.3.322"
+    node-releases "^1.1.44"
 
 bser@^2.0.0:
   version "2.0.0"
@@ -2204,36 +2268,17 @@ bytes@3.1.0:
   resolved "https://registry.yarnpkg.com/bytes/-/bytes-3.1.0.tgz#f6cf7933a360e0588fa9fde85651cdc7f805d1f6"
   integrity sha512-zauLjrfCG+xvoyaqLoV8bLVXXNGC4JqlxFCutSDWA6fJrTo2ZuvLYTqZ7aHBLZSMOopbzwv8f+wZcVzfVTI2Dg==
 
-cacache@^11.2.0:
-  version "11.3.2"
-  resolved "https://registry.yarnpkg.com/cacache/-/cacache-11.3.2.tgz#2d81e308e3d258ca38125b676b98b2ac9ce69bfa"
-  integrity sha512-E0zP4EPGDOaT2chM08Als91eYnf8Z+eH1awwwVsngUmgppfM5jjJ8l3z5vO5p5w/I3LsiXawb1sW0VY65pQABg==
-  dependencies:
-    bluebird "^3.5.3"
-    chownr "^1.1.1"
-    figgy-pudding "^3.5.1"
-    glob "^7.1.3"
-    graceful-fs "^4.1.15"
-    lru-cache "^5.1.1"
-    mississippi "^3.0.0"
-    mkdirp "^0.5.1"
-    move-concurrently "^1.0.1"
-    promise-inflight "^1.0.1"
-    rimraf "^2.6.2"
-    ssri "^6.0.1"
-    unique-filename "^1.1.1"
-    y18n "^4.0.0"
-
-cacache@^11.3.3:
-  version "11.3.3"
-  resolved "https://registry.yarnpkg.com/cacache/-/cacache-11.3.3.tgz#8bd29df8c6a718a6ebd2d010da4d7972ae3bbadc"
-  integrity sha512-p8WcneCytvzPxhDvYp31PD039vi77I12W+/KfR9S8AZbaiARFBCpsPJS+9uhWfeBfeAtW7o/4vt3MUqLkbY6nA==
+cacache@^12.0.2, cacache@^12.0.3:
+  version "12.0.3"
+  resolved "https://registry.yarnpkg.com/cacache/-/cacache-12.0.3.tgz#be99abba4e1bf5df461cd5a2c1071fc432573390"
+  integrity sha512-kqdmfXEGFepesTuROHMs3MpFLWrPkSSpRqOw80RCflZXy/khxaArvFrQ7uJxSUduzAufc6G0g1VUCOZXxWavPw==
   dependencies:
     bluebird "^3.5.5"
     chownr "^1.1.1"
     figgy-pudding "^3.5.1"
     glob "^7.1.4"
     graceful-fs "^4.1.15"
+    infer-owner "^1.0.3"
     lru-cache "^5.1.1"
     mississippi "^3.0.0"
     mkdirp "^0.5.1"
@@ -2244,26 +2289,29 @@ cacache@^11.3.3:
     unique-filename "^1.1.1"
     y18n "^4.0.0"
 
-cacache@^12.0.2:
-  version "12.0.3"
-  resolved "https://registry.yarnpkg.com/cacache/-/cacache-12.0.3.tgz#be99abba4e1bf5df461cd5a2c1071fc432573390"
-  integrity sha512-kqdmfXEGFepesTuROHMs3MpFLWrPkSSpRqOw80RCflZXy/khxaArvFrQ7uJxSUduzAufc6G0g1VUCOZXxWavPw==
+cacache@^13.0.1:
+  version "13.0.1"
+  resolved "https://registry.yarnpkg.com/cacache/-/cacache-13.0.1.tgz#a8000c21697089082f85287a1aec6e382024a71c"
+  integrity sha512-5ZvAxd05HDDU+y9BVvcqYu2LLXmPnQ0hW62h32g4xBTgL/MppR4/04NHfj/ycM2y6lmTnbw6HVi+1eN0Psba6w==
   dependencies:
-    bluebird "^3.5.5"
-    chownr "^1.1.1"
+    chownr "^1.1.2"
     figgy-pudding "^3.5.1"
+    fs-minipass "^2.0.0"
     glob "^7.1.4"
-    graceful-fs "^4.1.15"
-    infer-owner "^1.0.3"
+    graceful-fs "^4.2.2"
+    infer-owner "^1.0.4"
     lru-cache "^5.1.1"
-    mississippi "^3.0.0"
+    minipass "^3.0.0"
+    minipass-collect "^1.0.2"
+    minipass-flush "^1.0.5"
+    minipass-pipeline "^1.2.2"
     mkdirp "^0.5.1"
     move-concurrently "^1.0.1"
+    p-map "^3.0.0"
     promise-inflight "^1.0.1"
-    rimraf "^2.6.3"
-    ssri "^6.0.1"
+    rimraf "^2.7.1"
+    ssri "^7.0.0"
     unique-filename "^1.1.1"
-    y18n "^4.0.0"
 
 cache-base@^1.0.1:
   version "1.0.1"
@@ -2331,10 +2379,10 @@ caniuse-api@^3.0.0:
     lodash.memoize "^4.1.2"
     lodash.uniq "^4.5.0"
 
-caniuse-lite@^1.0.0, caniuse-lite@^1.0.30000980, caniuse-lite@^1.0.30000984:
-  version "1.0.30000986"
-  resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30000986.tgz#f34350e367cc900509511574817ac092112bf7ab"
-  integrity sha512-pM+LnkoAX0+QnIH3tpW5EnkmfpEoqOD8FAcoBvsl3Xh6DXkgctiCxeCbXphP/k3XJtJzm+zOAJbi6U6IVkpWZQ==
+caniuse-lite@^1.0.0, caniuse-lite@^1.0.30001017, caniuse-lite@^1.0.30001020:
+  version "1.0.30001021"
+  resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001021.tgz#e75ed1ef6dbadd580ac7e7720bb16f07b083f254"
+  integrity sha512-wuMhT7/hwkgd8gldgp2jcrUjOU9RXJ4XxGumQeOsUr91l3WwmM68Cpa/ymCnWEDqakwFXhuDQbaKNHXBPgeE9g==
 
 capture-exit@^1.2.0:
   version "1.2.0"
@@ -2383,13 +2431,13 @@ check-types@^8.0.3:
   resolved "https://registry.yarnpkg.com/check-types/-/check-types-8.0.3.tgz#3356cca19c889544f2d7a95ed49ce508a0ecf552"
   integrity sha512-YpeKZngUmG65rLudJ4taU7VLkOCTMhNl/u4ctNC56LQS/zJTyNH0Lrtwm1tfTsbLlwvlfsA2d1c8vCf/Kh2KwQ==
 
-cheerio@^1.0.0-rc.2:
-  version "1.0.0-rc.2"
-  resolved "https://registry.yarnpkg.com/cheerio/-/cheerio-1.0.0-rc.2.tgz#4b9f53a81b27e4d5dac31c0ffd0cfa03cc6830db"
-  integrity sha1-S59TqBsn5NXawxwP/Qz6A8xoMNs=
+cheerio@^1.0.0-rc.3:
+  version "1.0.0-rc.3"
+  resolved "https://registry.yarnpkg.com/cheerio/-/cheerio-1.0.0-rc.3.tgz#094636d425b2e9c0f4eb91a46c05630c9a1a8bf6"
+  integrity sha512-0td5ijfUPuubwLUu0OBoe98gZj8C/AA+RW3v67GPlGOrvxWjZmBXiBCRU+I8VEiNyJzjth40POfHiz2RB3gImA==
   dependencies:
     css-select "~1.2.0"
-    dom-serializer "~0.1.0"
+    dom-serializer "~0.1.1"
     entities "~1.1.1"
     htmlparser2 "^3.9.1"
     lodash "^4.15.0"
@@ -2429,7 +2477,7 @@ chokidar@^2.0.2, chokidar@^2.1.8:
   optionalDependencies:
     fsevents "^1.2.7"
 
-chownr@^1.1.1:
+chownr@^1.1.1, chownr@^1.1.2:
   version "1.1.3"
   resolved "https://registry.yarnpkg.com/chownr/-/chownr-1.1.3.tgz#42d837d5239688d55f303003a508230fa6727142"
   integrity sha512-i70fVHhmV3DtTl6nqvZOnIjbY0Pe4kAUjwHj8z0zAdgBtYrJyYwLKCCuRBQ5ppkyL0AkN7HKRnETdmdp1zqNXw==
@@ -2474,6 +2522,11 @@ classnames@^2.2.5:
   resolved "https://registry.yarnpkg.com/classnames/-/classnames-2.2.6.tgz#43935bffdd291f326dad0a205309b38d00f650ce"
   integrity sha512-JR/iSQOSt+LQIWwrwEzJ9uk0xfN3mTVYMwt1Ir5mUcSN6pU+V4zQFFaJsclJbPuAUQH+yfWef6tm7l1quW3C8Q==
 
+clean-stack@^2.0.0:
+  version "2.2.0"
+  resolved "https://registry.yarnpkg.com/clean-stack/-/clean-stack-2.2.0.tgz#ee8472dbb129e727b31e8a10a427dee9dfe4008b"
+  integrity sha512-4diC9HaTE+KRAMWhDhrGOECgWZxoevMc5TlkObMqNSsVU62PYzXZ/SMTjzyGAFF1YusgxGcSWTEXBhp0CPwQ1A==
+
 cli-cursor@^1.0.1:
   version "1.0.2"
   resolved "https://registry.yarnpkg.com/cli-cursor/-/cli-cursor-1.0.2.tgz#64da3f7d56a54412e59794bd62dc35295e8f2987"
@@ -2481,12 +2534,12 @@ cli-cursor@^1.0.1:
   dependencies:
     restore-cursor "^1.0.1"
 
-cli-cursor@^2.1.0:
-  version "2.1.0"
-  resolved "https://registry.yarnpkg.com/cli-cursor/-/cli-cursor-2.1.0.tgz#b35dac376479facc3e94747d41d0d0f5238ffcb5"
-  integrity sha1-s12sN2R5+sw+lHR9QdDQ9SOP/LU=
+cli-cursor@^3.1.0:
+  version "3.1.0"
+  resolved "https://registry.yarnpkg.com/cli-cursor/-/cli-cursor-3.1.0.tgz#264305a7ae490d1d03bf0c9ba7c925d1753af307"
+  integrity sha512-I/zHAwsKf9FqGoXM4WWRACob9+SNukZTd94DWF57E4toouRulbCxcUh6RKUEOQlYTHJnzkPMySvPNaaSLNfLZw==
   dependencies:
-    restore-cursor "^2.0.0"
+    restore-cursor "^3.1.0"
 
 cli-width@^2.0.0:
   version "2.2.0"
@@ -2511,15 +2564,23 @@ cliui@^5.0.0:
     strip-ansi "^5.2.0"
     wrap-ansi "^5.1.0"
 
-clone-deep@^2.0.1:
-  version "2.0.2"
-  resolved "https://registry.yarnpkg.com/clone-deep/-/clone-deep-2.0.2.tgz#00db3a1e173656730d1188c3d6aced6d7ea97713"
-  integrity sha512-SZegPTKjCgpQH63E+eN6mVEEPdQBOUzjyJm5Pora4lrwWRFS8I0QAxV/KD6vV/i0WuijHZWQC1fMsPEdxfdVCQ==
+cliui@^6.0.0:
+  version "6.0.0"
+  resolved "https://registry.yarnpkg.com/cliui/-/cliui-6.0.0.tgz#511d702c0c4e41ca156d7d0e96021f23e13225b1"
+  integrity sha512-t6wbgtoCXvAzst7QgXxJYqPt0usEfbgQdftEPbLL/cvv6HPE5VgvqCuAIDR0NgU52ds6rFwqrgakNLrHEjCbrQ==
+  dependencies:
+    string-width "^4.2.0"
+    strip-ansi "^6.0.0"
+    wrap-ansi "^6.2.0"
+
+clone-deep@^4.0.1:
+  version "4.0.1"
+  resolved "https://registry.yarnpkg.com/clone-deep/-/clone-deep-4.0.1.tgz#c19fd9bdbbf85942b4fd979c84dcf7d5f07c2387"
+  integrity sha512-neHB9xuzh/wk0dIHweyAXv2aPGZIVk3pLMe+/RNzINf17fe0OG96QroktYAUm7SM1PBnzTabaLboqqxDyMU+SQ==
   dependencies:
-    for-own "^1.0.0"
     is-plain-object "^2.0.4"
-    kind-of "^6.0.0"
-    shallow-clone "^1.0.0"
+    kind-of "^6.0.2"
+    shallow-clone "^3.0.0"
 
 co@^4.6.0:
   version "4.6.0"
@@ -2555,12 +2616,19 @@ color-convert@^1.9.0, color-convert@^1.9.1:
   dependencies:
     color-name "1.1.3"
 
+color-convert@^2.0.1:
+  version "2.0.1"
+  resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-2.0.1.tgz#72d3a68d598c9bdb3af2ad1e84f21d896abd4de3"
+  integrity sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==
+  dependencies:
+    color-name "~1.1.4"
+
 color-name@1.1.3:
   version "1.1.3"
   resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.3.tgz#a7d0558bd89c42f795dd42328f740831ca53bc25"
   integrity sha1-p9BVi9icQveV3UIyj3QIMcpTvCU=
 
-color-name@^1.0.0:
+color-name@^1.0.0, color-name@~1.1.4:
   version "1.1.4"
   resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.4.tgz#c2a09a87acbde69543de6f63fa3995c826c536a2"
   integrity sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==
@@ -2593,16 +2661,16 @@ combined-stream@^1.0.6, combined-stream@~1.0.6:
   dependencies:
     delayed-stream "~1.0.0"
 
-commander@^2.11.0, commander@^2.19.0, commander@^2.8.1, commander@~2.20.0:
-  version "2.20.0"
-  resolved "https://registry.yarnpkg.com/commander/-/commander-2.20.0.tgz#d58bb2b5c1ee8f87b0d340027e9e94e222c5a422"
-  integrity sha512-7j2y+40w61zy6YC2iRNpUe/NwhNyoXrYpHMrSunaMG64nRnaf96zO/KMQR4OyN/UnE5KLyEBnKHd4aG3rskjpQ==
-
-commander@^2.18.0, commander@^2.20.0:
+commander@^2.11.0, commander@^2.18.0, commander@^2.19.0, commander@^2.20.0, commander@^2.8.1:
   version "2.20.1"
   resolved "https://registry.yarnpkg.com/commander/-/commander-2.20.1.tgz#3863ce3ca92d0831dcf2a102f5fb4b5926afd0f9"
   integrity sha512-cCuLsMhJeWQ/ZpsFTbE765kvVfoeSddc4nU3up4fV+fDBcfUXnbITJ+JzhkdjzOqhURjZgujxaioam4RM9yGUg==
 
+commander@~2.20.3:
+  version "2.20.3"
+  resolved "https://registry.yarnpkg.com/commander/-/commander-2.20.3.tgz#fd485e84c03eb4881c20722ba48035e8531aeb33"
+  integrity sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==
+
 commondir@^1.0.1:
   version "1.0.1"
   resolved "https://registry.yarnpkg.com/commondir/-/commondir-1.0.1.tgz#ddd800da0c66127393cca5950ea968a3aaf1253b"
@@ -2620,16 +2688,16 @@ compressible@~2.0.16:
   dependencies:
     mime-db ">= 1.40.0 < 2"
 
-compression-webpack-plugin@^3.0.0:
-  version "3.0.0"
-  resolved "https://registry.yarnpkg.com/compression-webpack-plugin/-/compression-webpack-plugin-3.0.0.tgz#097d2e4d95c3a14cb5c8ed20899009ab5b9bbca0"
-  integrity sha512-ls+oKw4eRbvaSv/hj9NmctihhBcR26j76JxV0bLRLcWhrUBdQFgd06z/Kgg7exyQvtWWP484wZxs0gIUX3NO0Q==
+compression-webpack-plugin@^3.1.0:
+  version "3.1.0"
+  resolved "https://registry.yarnpkg.com/compression-webpack-plugin/-/compression-webpack-plugin-3.1.0.tgz#9f510172a7b5fae5aad3b670652e8bd7997aeeca"
+  integrity sha512-iqTHj3rADN4yHwXMBrQa/xrncex/uEQy8QHlaTKxGchT/hC0SdlJlmL/5eRqffmWq2ep0/Romw6Ld39JjTR/ug==
   dependencies:
-    cacache "^11.2.0"
+    cacache "^13.0.1"
     find-cache-dir "^3.0.0"
     neo-async "^2.5.0"
-    schema-utils "^1.0.0"
-    serialize-javascript "^1.4.0"
+    schema-utils "^2.6.1"
+    serialize-javascript "^2.1.2"
     webpack-sources "^1.0.1"
 
 compression@^1.7.4:
@@ -2699,10 +2767,10 @@ content-type@~1.0.4:
   resolved "https://registry.yarnpkg.com/content-type/-/content-type-1.0.4.tgz#e138cc75e040c727b1966fe5e5f8c9aee256fe3b"
   integrity sha512-hIP3EEPs8tB9AT1L+NUqtwOAps4mk2Zob89MWXMHjHWg9milF/j4osnnQLXBCBFBk/tvIG/tUc9mOUJiPBhPXA==
 
-convert-source-map@^1.1.0, convert-source-map@^1.4.0, convert-source-map@^1.5.0, convert-source-map@^1.5.1:
-  version "1.6.0"
-  resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-1.6.0.tgz#51b537a8c43e0f04dec1993bffcdd504e758ac20"
-  integrity sha512-eFu7XigvxdZ1ETfbgPBohgyQ/Z++C0eEhTor0qRwBw9unw+L0/6V8wkSuGgzdThkiS5lSpdptOQPD8Ak40a+7A==
+convert-source-map@^1.4.0, convert-source-map@^1.5.0, convert-source-map@^1.7.0:
+  version "1.7.0"
+  resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-1.7.0.tgz#17a2cb882d7f77d3490585e2ce6c524424a3a442"
+  integrity sha512-4FJkXzKXEDB1snCFZlLP4gpC3JILicCpGbzG9f9G7tGqGCzETQ2hWPrcinA9oU4wtf2biUaEH5065UnMeR33oA==
   dependencies:
     safe-buffer "~5.1.1"
 
@@ -2733,12 +2801,12 @@ copy-descriptor@^0.1.0:
   resolved "https://registry.yarnpkg.com/copy-descriptor/-/copy-descriptor-0.1.1.tgz#676f6eb3c39997c2ee1ac3a924fd6124748f578d"
   integrity sha1-Z29us8OZl8LuGsOpJP1hJHSPV40=
 
-copy-webpack-plugin@^5.0.4:
-  version "5.0.4"
-  resolved "https://registry.yarnpkg.com/copy-webpack-plugin/-/copy-webpack-plugin-5.0.4.tgz#c78126f604e24f194c6ec2f43a64e232b5d43655"
-  integrity sha512-YBuYGpSzoCHSSDGyHy6VJ7SHojKp6WHT4D7ItcQFNAYx2hrwkMe56e97xfVR0/ovDuMTrMffXUiltvQljtAGeg==
+copy-webpack-plugin@^5.1.1:
+  version "5.1.1"
+  resolved "https://registry.yarnpkg.com/copy-webpack-plugin/-/copy-webpack-plugin-5.1.1.tgz#5481a03dea1123d88a988c6ff8b78247214f0b88"
+  integrity sha512-P15M5ZC8dyCjQHWwd4Ia/dm0SgVvZJMYeykVIVYXbGyqO4dWB5oyPHp9i7wjwo5LhtlhKbiBCdS2NvM07Wlybg==
   dependencies:
-    cacache "^11.3.3"
+    cacache "^12.0.3"
     find-cache-dir "^2.1.0"
     glob-parent "^3.1.0"
     globby "^7.1.1"
@@ -2746,24 +2814,18 @@ copy-webpack-plugin@^5.0.4:
     loader-utils "^1.2.3"
     minimatch "^3.0.4"
     normalize-path "^3.0.0"
-    p-limit "^2.2.0"
+    p-limit "^2.2.1"
     schema-utils "^1.0.0"
-    serialize-javascript "^1.7.0"
+    serialize-javascript "^2.1.2"
     webpack-log "^2.0.0"
 
-core-js-compat@^3.1.1:
-  version "3.1.3"
-  resolved "https://registry.yarnpkg.com/core-js-compat/-/core-js-compat-3.1.3.tgz#0cc3ba4c7f62928c2837e1cffbe8dc78b4f1ae14"
-  integrity sha512-EP018pVhgwsKHz3YoN1hTq49aRe+h017Kjz0NQz3nXV0cCRMvH3fLQl+vEPGr4r4J5sk4sU3tUC7U1aqTCeJeA==
+core-js-compat@^3.6.2:
+  version "3.6.4"
+  resolved "https://registry.yarnpkg.com/core-js-compat/-/core-js-compat-3.6.4.tgz#938476569ebb6cda80d339bcf199fae4f16fff17"
+  integrity sha512-zAa3IZPvsJ0slViBQ2z+vgyyTuhd3MFn1rBQjZSKVEgB0UMYhUkCj9jJUVPgGTGqWvsBVmfnruXgTcNyTlEiSA==
   dependencies:
-    browserslist "^4.6.0"
-    core-js-pure "3.1.3"
-    semver "^6.1.0"
-
-core-js-pure@3.1.3:
-  version "3.1.3"
-  resolved "https://registry.yarnpkg.com/core-js-pure/-/core-js-pure-3.1.3.tgz#4c90752d5b9471f641514f3728f51c1e0783d0b5"
-  integrity sha512-k3JWTrcQBKqjkjI0bkfXS0lbpWPxYuHWfMMjC1VDmzU4Q58IwSbuXSo99YO/hUHlw/EB4AlfA2PVxOGkrIq6dA==
+    browserslist "^4.8.3"
+    semver "7.0.0"
 
 core-js@^1.0.0:
   version "1.2.7"
@@ -2790,7 +2852,7 @@ cosmiconfig@^4.0.0:
     parse-json "^4.0.0"
     require-from-string "^2.0.1"
 
-cosmiconfig@^5.0.0, cosmiconfig@^5.0.5:
+cosmiconfig@^5.0.0:
   version "5.0.7"
   resolved "https://registry.yarnpkg.com/cosmiconfig/-/cosmiconfig-5.0.7.tgz#39826b292ee0d78eda137dfa3173bd1c21a43b04"
   integrity sha512-PcLqxTKiDmNT6pSpy4N6KtuPwb53W+2tzNvwOZw0WH9N6O0vLIBq0x8aj8Oj75ere4YcGi48bDFCL+3fRJdlNA==
@@ -2800,15 +2862,16 @@ cosmiconfig@^5.0.0, cosmiconfig@^5.0.5:
     js-yaml "^3.9.0"
     parse-json "^4.0.0"
 
-cosmiconfig@^5.2.0:
-  version "5.2.1"
-  resolved "https://registry.yarnpkg.com/cosmiconfig/-/cosmiconfig-5.2.1.tgz#040f726809c591e77a17c0a3626ca45b4f168b1a"
-  integrity sha512-H65gsXo1SKjf8zmrJ67eJk8aIRKV5ff2D4uKZIBZShbhGSpEmsQOPW/SKMKYhSTrqR7ufy6RP69rPogdaPh/kA==
+cosmiconfig@^6.0.0:
+  version "6.0.0"
+  resolved "https://registry.yarnpkg.com/cosmiconfig/-/cosmiconfig-6.0.0.tgz#da4fee853c52f6b1e6935f41c1a2fc50bd4a9982"
+  integrity sha512-xb3ZL6+L8b9JLLCx3ZdoZy4+2ECphCMo2PwqgP1tlfVq6M6YReyzBJtvWWtbDSpNr9hn96pkCiZqUcFEc+54Qg==
   dependencies:
-    import-fresh "^2.0.0"
-    is-directory "^0.3.1"
-    js-yaml "^3.13.1"
-    parse-json "^4.0.0"
+    "@types/parse-json" "^4.0.0"
+    import-fresh "^3.1.0"
+    parse-json "^5.0.0"
+    path-type "^4.0.0"
+    yaml "^1.7.2"
 
 create-ecdh@^4.0.0:
   version "4.0.3"
@@ -2818,19 +2881,6 @@ create-ecdh@^4.0.0:
     bn.js "^4.1.0"
     elliptic "^6.0.0"
 
-create-emotion@^9.2.12:
-  version "9.2.12"
-  resolved "https://registry.yarnpkg.com/create-emotion/-/create-emotion-9.2.12.tgz#0fc8e7f92c4f8bb924b0fef6781f66b1d07cb26f"
-  integrity sha512-P57uOF9NL2y98Xrbl2OuiDQUZ30GVmASsv5fbsjF4Hlraip2kyAvMm+2PoYUvFFw03Fhgtxk3RqZSm2/qHL9hA==
-  dependencies:
-    "@emotion/hash" "^0.6.2"
-    "@emotion/memoize" "^0.6.1"
-    "@emotion/stylis" "^0.7.0"
-    "@emotion/unitless" "^0.6.2"
-    csstype "^2.5.2"
-    stylis "^3.5.0"
-    stylis-rule-sheet "^0.0.10"
-
 create-hash@^1.1.0, create-hash@^1.1.2:
   version "1.2.0"
   resolved "https://registry.yarnpkg.com/create-hash/-/create-hash-1.2.0.tgz#889078af11a63756bcfb59bd221996be3a9ef196"
@@ -2854,13 +2904,12 @@ create-hmac@^1.1.0, create-hmac@^1.1.2, create-hmac@^1.1.4:
     safe-buffer "^5.0.1"
     sha.js "^2.4.8"
 
-cross-env@^5.1.4:
-  version "5.2.0"
-  resolved "https://registry.yarnpkg.com/cross-env/-/cross-env-5.2.0.tgz#6ecd4c015d5773e614039ee529076669b9d126f2"
-  integrity sha512-jtdNFfFW1hB7sMhr/H6rW1Z45LFqyI431m3qU6bFXcQ3Eh7LtBuG3h74o7ohHZ3crrRkkqHlo4jYHFPcjroANg==
+cross-env@^6.0.3:
+  version "6.0.3"
+  resolved "https://registry.yarnpkg.com/cross-env/-/cross-env-6.0.3.tgz#4256b71e49b3a40637a0ce70768a6ef5c72ae941"
+  integrity sha512-+KqxF6LCvfhWvADcDPqo64yVIB31gv/jQulX2NGzKS/g3GEVz6/pt4wjHFtFWsHMddebWD/sDthJemzM4MaAag==
   dependencies:
-    cross-spawn "^6.0.5"
-    is-windows "^1.0.0"
+    cross-spawn "^7.0.0"
 
 cross-spawn@6.0.5, cross-spawn@^6.0.0, cross-spawn@^6.0.5:
   version "6.0.5"
@@ -2873,6 +2922,15 @@ cross-spawn@6.0.5, cross-spawn@^6.0.0, cross-spawn@^6.0.5:
     shebang-command "^1.2.0"
     which "^1.2.9"
 
+cross-spawn@^7.0.0:
+  version "7.0.1"
+  resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-7.0.1.tgz#0ab56286e0f7c24e153d04cc2aa027e43a9a5d14"
+  integrity sha512-u7v4o84SwFpD32Z8IIcPZ6z1/ie24O6RU3RbtL5Y316l3KuHVPx9ItBgWQ6VlfAFnRnTtMUrsQ9MUUTuEZjogg==
+  dependencies:
+    path-key "^3.1.0"
+    shebang-command "^2.0.0"
+    which "^2.0.1"
+
 crypto-browserify@^3.11.0:
   version "3.12.0"
   resolved "https://registry.yarnpkg.com/crypto-browserify/-/crypto-browserify-3.12.0.tgz#396cf9f3137f03e4b8e532c58f698254e00f80ec"
@@ -2935,23 +2993,23 @@ css-list-helpers@^1.0.1:
   dependencies:
     tcomb "^2.5.0"
 
-css-loader@^3.2.0:
-  version "3.2.0"
-  resolved "https://registry.yarnpkg.com/css-loader/-/css-loader-3.2.0.tgz#bb570d89c194f763627fcf1f80059c6832d009b2"
-  integrity sha512-QTF3Ud5H7DaZotgdcJjGMvyDj5F3Pn1j/sC6VBEOVp94cbwqyIBdcs/quzj4MC1BKQSrTpQznegH/5giYbhnCQ==
+css-loader@^3.4.2:
+  version "3.4.2"
+  resolved "https://registry.yarnpkg.com/css-loader/-/css-loader-3.4.2.tgz#d3fdb3358b43f233b78501c5ed7b1c6da6133202"
+  integrity sha512-jYq4zdZT0oS0Iykt+fqnzVLRIeiPWhka+7BqPn+oSIpWJAHak5tmB/WZrJ2a21JhCeFyNnnlroSl8c+MtVndzA==
   dependencies:
     camelcase "^5.3.1"
     cssesc "^3.0.0"
     icss-utils "^4.1.1"
     loader-utils "^1.2.3"
     normalize-path "^3.0.0"
-    postcss "^7.0.17"
+    postcss "^7.0.23"
     postcss-modules-extract-imports "^2.0.0"
     postcss-modules-local-by-default "^3.0.2"
-    postcss-modules-scope "^2.1.0"
+    postcss-modules-scope "^2.1.1"
     postcss-modules-values "^3.0.0"
-    postcss-value-parser "^4.0.0"
-    schema-utils "^2.0.0"
+    postcss-value-parser "^4.0.2"
+    schema-utils "^2.6.0"
 
 css-select-base-adapter@~0.1.0:
   version "0.1.1"
@@ -3116,10 +3174,15 @@ csstype@^2.2.0:
   resolved "https://registry.yarnpkg.com/csstype/-/csstype-2.6.0.tgz#6cf7b2fa7fc32aab3d746802c244d4eda71371a2"
   integrity sha512-by8hi8BlLbowQq0qtkx54d9aN73R9oUW20HISpka5kmgsR9F7nnxgfsemuR2sdCKZh+CDNf5egW9UZMm4mgJRg==
 
-csstype@^2.5.2:
-  version "2.6.5"
-  resolved "https://registry.yarnpkg.com/csstype/-/csstype-2.6.5.tgz#1cd1dff742ebf4d7c991470ae71e12bb6751e034"
-  integrity sha512-JsTaiksRsel5n7XwqPAfB0l3TFKdpjW/kgAELf9vrb5adGA7UCPLajKK5s3nFrcFm3Rkyp/Qkgl73ENc1UY3cA==
+csstype@^2.5.7:
+  version "2.6.6"
+  resolved "https://registry.yarnpkg.com/csstype/-/csstype-2.6.6.tgz#c34f8226a94bbb10c32cc0d714afdf942291fc41"
+  integrity sha512-RpFbQGUE74iyPgvr46U9t1xoQBM8T4BL8SxrN66Le2xYAPSaDJJKeztV3awugusb3g3G9iL8StmkBBXhcbbXhg==
+
+csstype@^2.6.7:
+  version "2.6.8"
+  resolved "https://registry.yarnpkg.com/csstype/-/csstype-2.6.8.tgz#0fb6fc2417ffd2816a418c9336da74d7f07db431"
+  integrity sha512-msVS9qTuMT5zwAGCVm4mxfrZ18BNc6Csd0oJAtiFMZ1FAx1CCvy2+5MDmYoix63LM/6NDbNtodCiGYGmFgO0dA==
 
 cyclist@^1.0.1:
   version "1.0.1"
@@ -3160,7 +3223,7 @@ date-now@^0.1.4:
   resolved "https://registry.yarnpkg.com/date-now/-/date-now-0.1.4.tgz#eaf439fd4d4848ad74e5cc7dbef200672b9e345b"
   integrity sha1-6vQ5/U1ISK105cx9vvIAZyueNFs=
 
-debug@2.6.9, debug@^2.1.1, debug@^2.2.0, debug@^2.3.3, debug@^2.6.8, debug@^2.6.9:
+debug@2.6.9, debug@^2.1.1, debug@^2.2.0, debug@^2.3.3, debug@^2.6.9:
   version "2.6.9"
   resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.9.tgz#5d128515df134ff327e90a4c93f4e077a536341f"
   integrity sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==
@@ -3174,7 +3237,7 @@ debug@=3.1.0:
   dependencies:
     ms "2.0.0"
 
-debug@^3.0.0, debug@^3.2.5, debug@^3.2.6:
+debug@^3.0.0, debug@^3.1.1, debug@^3.2.5, debug@^3.2.6:
   version "3.2.6"
   resolved "https://registry.yarnpkg.com/debug/-/debug-3.2.6.tgz#e83d17de16d8a7efb7717edbe5fb10135eee629b"
   integrity sha512-mel+jf7nrtEl5Pn1Qx46zARXKDpBbvzezse7p7LqINmdoIk8PYP5SySaxEmYv6TZ0JyEKA1hsCId6DIhgITtWQ==
@@ -3233,7 +3296,7 @@ default-gateway@^4.2.0:
     execa "^1.0.0"
     ip-regex "^2.1.0"
 
-define-properties@^1.1.1, define-properties@^1.1.2, define-properties@^1.1.3:
+define-properties@^1.1.2, define-properties@^1.1.3:
   version "1.1.3"
   resolved "https://registry.yarnpkg.com/define-properties/-/define-properties-1.1.3.tgz#cf88da6cbee26fe6db7094f61d870cbd84cee9f1"
   integrity sha512-3MqfYKj2lLzdMSf8ZIZE/V+Zuy+BgD6f164e8K2w7dgnpKArBDerGYpM46IYYcjnkdPNMjPk9A6VFB8+3SKlXQ==
@@ -3403,7 +3466,15 @@ dom-helpers@^3.2.1, dom-helpers@^3.3.1:
   dependencies:
     "@babel/runtime" "^7.1.2"
 
-dom-serializer@0, dom-serializer@~0.1.0:
+dom-helpers@^5.1.3:
+  version "5.1.3"
+  resolved "https://registry.yarnpkg.com/dom-helpers/-/dom-helpers-5.1.3.tgz#7233248eb3a2d1f74aafca31e52c5299cc8ce821"
+  integrity sha512-nZD1OtwfWGRBWlpANxacBEZrEuLa16o1nh7YopFWeoF68Zt8GGEmzHu6Xv4F3XaFIC+YXtTLrzgqKxFgLEe4jw==
+  dependencies:
+    "@babel/runtime" "^7.6.3"
+    csstype "^2.6.7"
+
+dom-serializer@0:
   version "0.1.0"
   resolved "https://registry.yarnpkg.com/dom-serializer/-/dom-serializer-0.1.0.tgz#073c697546ce0780ce23be4a28e293e40bc30c82"
   integrity sha1-BzxpdUbOB4DOI75KKOKT5AvDDII=
@@ -3411,6 +3482,14 @@ dom-serializer@0, dom-serializer@~0.1.0:
     domelementtype "~1.1.1"
     entities "~1.1.1"
 
+dom-serializer@~0.1.1:
+  version "0.1.1"
+  resolved "https://registry.yarnpkg.com/dom-serializer/-/dom-serializer-0.1.1.tgz#1ec4059e284babed36eec2941d4a970a189ce7c0"
+  integrity sha512-l0IU0pPzLWSHBcieZbpOKgkIn3ts3vAh7ZuFyXNwJxJXk/c4Gwj9xaTJwIDVQCXawWD0qb3IzMGH5rglQaO0XA==
+  dependencies:
+    domelementtype "^1.3.0"
+    entities "^1.1.1"
+
 domain-browser@^1.1.1:
   version "1.2.0"
   resolved "https://registry.yarnpkg.com/domain-browser/-/domain-browser-1.2.0.tgz#3d31f50191a6749dd1375a7f522e823d42e54eda"
@@ -3463,10 +3542,10 @@ dot-prop@^4.1.1:
   dependencies:
     is-obj "^1.0.0"
 
-dotenv@^8.0.0:
-  version "8.0.0"
-  resolved "https://registry.yarnpkg.com/dotenv/-/dotenv-8.0.0.tgz#ed310c165b4e8a97bb745b0a9d99c31bda566440"
-  integrity sha512-30xVGqjLjiUOArT4+M5q9sYdvuR4riM6yK9wMcas9Vbp6zZa+ocC9dp6QoftuhTPhFAiLK/0C5Ni2nou/Bk8lg==
+dotenv@^8.2.0:
+  version "8.2.0"
+  resolved "https://registry.yarnpkg.com/dotenv/-/dotenv-8.2.0.tgz#97e619259ada750eea3e4ea3e26bceea5424b16a"
+  integrity sha512-8sJ78ElpbDJBHNeBzUbUVLsqKdccaa/BXF1uPTw3GrvQTBgrQrtObr2mUrE38vzYd8cEv+m/JBfDLioYcfXoaw==
 
 double-ended-queue@^2.1.0-0:
   version "2.1.0-0"
@@ -3501,20 +3580,15 @@ ee-first@1.1.1:
   resolved "https://registry.yarnpkg.com/ee-first/-/ee-first-1.1.1.tgz#590c61156b0ae2f4f0255732a158b266bc56b21d"
   integrity sha1-WQxhFWsK4vTwJVcyoViyZrxWsh0=
 
-ejs@^2.3.4:
-  version "2.6.1"
-  resolved "https://registry.yarnpkg.com/ejs/-/ejs-2.6.1.tgz#498ec0d495655abc6f23cd61868d926464071aa0"
-  integrity sha512-0xy4A/twfrRCnkhfk8ErDi5DqdAsAqeGxht4xkCUrsvhhbQNs7E+4jV0CN7+NKIY0aHE72+XvqtBIXzD31ZbXQ==
-
-ejs@^2.6.1:
+ejs@^2.3.4, ejs@^2.6.1:
   version "2.7.1"
   resolved "https://registry.yarnpkg.com/ejs/-/ejs-2.7.1.tgz#5b5ab57f718b79d4aca9254457afecd36fa80228"
   integrity sha512-kS/gEPzZs3Y1rRsbGX4UOSjtP/CeJP0CxSNZHYxGfVM/VgLcv0ZqM7C45YyTj2DI2g7+P9Dd24C+IMIg6D0nYQ==
 
-electron-to-chromium@^1.3.191:
-  version "1.3.203"
-  resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.3.203.tgz#76de1b76eaaf7208e587a26b8e45407535a00abd"
-  integrity sha512-Z1FjJKEBhYrCNmnususVk8khiBabVI/bSJB/295V4ghVt4MFmtbP+mXgRZLQZinEBI469U6FtiGgpXnlLs6qiQ==
+electron-to-chromium@^1.3.322:
+  version "1.3.322"
+  resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.3.322.tgz#a6f7e1c79025c2b05838e8e344f6e89eb83213a8"
+  integrity sha512-Tc8JQEfGQ1MzfSzI/bTlSr7btJv/FFO7Yh6tanqVmIWOuNCu6/D1MilIEgLtmWqIrsv+o4IjpLAhgMBr/ncNAA==
 
 elliptic@^6.0.0:
   version "6.5.1"
@@ -3538,19 +3612,16 @@ emoji-regex@^7.0.1, emoji-regex@^7.0.2:
   resolved "https://registry.yarnpkg.com/emoji-regex/-/emoji-regex-7.0.3.tgz#933a04052860c85e83c122479c4748a8e4c72156"
   integrity sha512-CwBLREIQ7LvYFB0WyRvwhq5N5qPhc6PMjD6bYggFlI5YyDgl+0vxq5VHbMOFqLg7hfWzmu8T5Z1QofhmTIhItA==
 
+emoji-regex@^8.0.0:
+  version "8.0.0"
+  resolved "https://registry.yarnpkg.com/emoji-regex/-/emoji-regex-8.0.0.tgz#e818fd69ce5ccfcb404594f842963bf53164cc37"
+  integrity sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==
+
 emojis-list@^2.0.0:
   version "2.1.0"
   resolved "https://registry.yarnpkg.com/emojis-list/-/emojis-list-2.1.0.tgz#4daa4d9db00f9819880c79fa457ae5b09a1fd389"
   integrity sha1-TapNnbAPmBmIDHn6RXrlsJof04k=
 
-emotion@^9.1.2:
-  version "9.2.12"
-  resolved "https://registry.yarnpkg.com/emotion/-/emotion-9.2.12.tgz#53925aaa005614e65c6e43db8243c843574d1ea9"
-  integrity sha512-hcx7jppaI8VoXxIWEhxpDW7I+B4kq9RNzQLmsrF6LY8BGKqe2N+gFAQr0EfuFucFlPs2A9HM4+xNj4NeqEWIOQ==
-  dependencies:
-    babel-plugin-emotion "^9.2.11"
-    create-emotion "^9.2.12"
-
 encodeurl@~1.0.2:
   version "1.0.2"
   resolved "https://registry.yarnpkg.com/encodeurl/-/encodeurl-1.0.2.tgz#ad3ff4c86ec2d029322f5a02c3a9a606c95b3f59"
@@ -3584,58 +3655,68 @@ entities@^1.1.1, entities@~1.1.1:
   resolved "https://registry.yarnpkg.com/entities/-/entities-1.1.2.tgz#bdfa735299664dfafd34529ed4f8522a275fea56"
   integrity sha512-f2LZMYl1Fzu7YSBKg+RoROelpOaNrcGmE9AZubeDfrCEia483oW4MI4VyFd5VNHIgQ/7qm1I0wUHK1eJnn2y2w==
 
-enzyme-adapter-react-16@^1.14.0:
-  version "1.14.0"
-  resolved "https://registry.yarnpkg.com/enzyme-adapter-react-16/-/enzyme-adapter-react-16-1.14.0.tgz#204722b769172bcf096cb250d33e6795c1f1858f"
-  integrity sha512-7PcOF7pb4hJUvjY7oAuPGpq3BmlCig3kxXGi2kFx0YzJHppqX1K8IIV9skT1IirxXlu8W7bneKi+oQ10QRnhcA==
+enzyme-adapter-react-16@^1.15.2:
+  version "1.15.2"
+  resolved "https://registry.yarnpkg.com/enzyme-adapter-react-16/-/enzyme-adapter-react-16-1.15.2.tgz#b16db2f0ea424d58a808f9df86ab6212895a4501"
+  integrity sha512-SkvDrb8xU3lSxID8Qic9rB8pvevDbLybxPK6D/vW7PrT0s2Cl/zJYuXvsd1EBTz0q4o3iqG3FJhpYz3nUNpM2Q==
   dependencies:
-    enzyme-adapter-utils "^1.12.0"
+    enzyme-adapter-utils "^1.13.0"
+    enzyme-shallow-equal "^1.0.1"
     has "^1.0.3"
     object.assign "^4.1.0"
-    object.values "^1.1.0"
+    object.values "^1.1.1"
     prop-types "^15.7.2"
-    react-is "^16.8.6"
+    react-is "^16.12.0"
     react-test-renderer "^16.0.0-0"
     semver "^5.7.0"
 
-enzyme-adapter-utils@^1.12.0:
-  version "1.12.0"
-  resolved "https://registry.yarnpkg.com/enzyme-adapter-utils/-/enzyme-adapter-utils-1.12.0.tgz#96e3730d76b872f593e54ce1c51fa3a451422d93"
-  integrity sha512-wkZvE0VxcFx/8ZsBw0iAbk3gR1d9hK447ebnSYBf95+r32ezBq+XDSAvRErkc4LZosgH8J7et7H7/7CtUuQfBA==
+enzyme-adapter-utils@^1.13.0:
+  version "1.13.0"
+  resolved "https://registry.yarnpkg.com/enzyme-adapter-utils/-/enzyme-adapter-utils-1.13.0.tgz#01c885dde2114b4690bf741f8dc94cee3060eb78"
+  integrity sha512-YuEtfQp76Lj5TG1NvtP2eGJnFKogk/zT70fyYHXK2j3v6CtuHqc8YmgH/vaiBfL8K1SgVVbQXtTcgQZFwzTVyQ==
   dependencies:
-    airbnb-prop-types "^2.13.2"
-    function.prototype.name "^1.1.0"
+    airbnb-prop-types "^2.15.0"
+    function.prototype.name "^1.1.2"
     object.assign "^4.1.0"
-    object.fromentries "^2.0.0"
+    object.fromentries "^2.0.2"
     prop-types "^15.7.2"
-    semver "^5.6.0"
+    semver "^5.7.1"
 
-enzyme@^3.10.0:
-  version "3.10.0"
-  resolved "https://registry.yarnpkg.com/enzyme/-/enzyme-3.10.0.tgz#7218e347c4a7746e133f8e964aada4a3523452f6"
-  integrity sha512-p2yy9Y7t/PFbPoTvrWde7JIYB2ZyGC+NgTNbVEGvZ5/EyoYSr9aG/2rSbVvyNvMHEhw9/dmGUJHWtfQIEiX9pg==
+enzyme-shallow-equal@^1.0.1:
+  version "1.0.1"
+  resolved "https://registry.yarnpkg.com/enzyme-shallow-equal/-/enzyme-shallow-equal-1.0.1.tgz#7afe03db3801c9b76de8440694096412a8d9d49e"
+  integrity sha512-hGA3i1so8OrYOZSM9whlkNmVHOicJpsjgTzC+wn2JMJXhq1oO4kA4bJ5MsfzSIcC71aLDKzJ6gZpIxrqt3QTAQ==
   dependencies:
-    array.prototype.flat "^1.2.1"
-    cheerio "^1.0.0-rc.2"
-    function.prototype.name "^1.1.0"
     has "^1.0.3"
-    html-element-map "^1.0.0"
-    is-boolean-object "^1.0.0"
-    is-callable "^1.1.4"
-    is-number-object "^1.0.3"
-    is-regex "^1.0.4"
-    is-string "^1.0.4"
+    object-is "^1.0.2"
+
+enzyme@^3.11.0:
+  version "3.11.0"
+  resolved "https://registry.yarnpkg.com/enzyme/-/enzyme-3.11.0.tgz#71d680c580fe9349f6f5ac6c775bc3e6b7a79c28"
+  integrity sha512-Dw8/Gs4vRjxY6/6i9wU0V+utmQO9kvh9XLnz3LIudviOnVYDEe2ec+0k+NQoMamn1VrjKgCUOWj5jG/5M5M0Qw==
+  dependencies:
+    array.prototype.flat "^1.2.3"
+    cheerio "^1.0.0-rc.3"
+    enzyme-shallow-equal "^1.0.1"
+    function.prototype.name "^1.1.2"
+    has "^1.0.3"
+    html-element-map "^1.2.0"
+    is-boolean-object "^1.0.1"
+    is-callable "^1.1.5"
+    is-number-object "^1.0.4"
+    is-regex "^1.0.5"
+    is-string "^1.0.5"
     is-subset "^0.1.1"
     lodash.escape "^4.0.1"
     lodash.isequal "^4.5.0"
-    object-inspect "^1.6.0"
-    object-is "^1.0.1"
+    object-inspect "^1.7.0"
+    object-is "^1.0.2"
     object.assign "^4.1.0"
-    object.entries "^1.0.4"
-    object.values "^1.0.4"
-    raf "^3.4.0"
+    object.entries "^1.1.1"
+    object.values "^1.1.1"
+    raf "^3.4.1"
     rst-selector-parser "^2.2.3"
-    string.prototype.trim "^1.1.2"
+    string.prototype.trim "^1.2.1"
 
 errno@^0.1.3, errno@~0.1.7:
   version "0.1.7"
@@ -3651,39 +3732,33 @@ error-ex@^1.2.0, error-ex@^1.3.1:
   dependencies:
     is-arrayish "^0.2.1"
 
-es-abstract@^1.10.0, es-abstract@^1.11.0, es-abstract@^1.12.0, es-abstract@^1.5.0, es-abstract@^1.5.1, es-abstract@^1.7.0:
-  version "1.12.0"
-  resolved "https://registry.yarnpkg.com/es-abstract/-/es-abstract-1.12.0.tgz#9dbbdd27c6856f0001421ca18782d786bf8a6165"
-  integrity sha512-C8Fx/0jFmV5IPoMOFPA9P9G5NtqW+4cOPit3MIuvR2t7Ag2K15EJTpxnHAYTzL+aYQJIESYeXZmDBfOBE1HcpA==
+es-abstract@^1.13.0, es-abstract@^1.15.0, es-abstract@^1.17.0, es-abstract@^1.17.0-next.1, es-abstract@^1.5.1:
+  version "1.17.0"
+  resolved "https://registry.yarnpkg.com/es-abstract/-/es-abstract-1.17.0.tgz#f42a517d0036a5591dbb2c463591dc8bb50309b1"
+  integrity sha512-yYkE07YF+6SIBmg1MsJ9dlub5L48Ek7X0qz+c/CPCHS9EBXfESorzng4cJQjJW5/pB6vDF41u7F8vUhLVDqIug==
   dependencies:
-    es-to-primitive "^1.1.1"
-    function-bind "^1.1.1"
-    has "^1.0.1"
-    is-callable "^1.1.3"
-    is-regex "^1.0.4"
-
-es-abstract@^1.13.0:
-  version "1.13.0"
-  resolved "https://registry.yarnpkg.com/es-abstract/-/es-abstract-1.13.0.tgz#ac86145fdd5099d8dd49558ccba2eaf9b88e24e9"
-  integrity sha512-vDZfg/ykNxQVwup/8E1BZhVzFfBxs9NqMzGcvIJrqg5k2/5Za2bWo40dK2J1pgLngZ7c+Shh8lwYtLGyrwPutg==
-  dependencies:
-    es-to-primitive "^1.2.0"
+    es-to-primitive "^1.2.1"
     function-bind "^1.1.1"
     has "^1.0.3"
-    is-callable "^1.1.4"
-    is-regex "^1.0.4"
-    object-keys "^1.0.12"
+    has-symbols "^1.0.1"
+    is-callable "^1.1.5"
+    is-regex "^1.0.5"
+    object-inspect "^1.7.0"
+    object-keys "^1.1.1"
+    object.assign "^4.1.0"
+    string.prototype.trimleft "^2.1.1"
+    string.prototype.trimright "^2.1.1"
 
-es-to-primitive@^1.1.1, es-to-primitive@^1.2.0:
-  version "1.2.0"
-  resolved "https://registry.yarnpkg.com/es-to-primitive/-/es-to-primitive-1.2.0.tgz#edf72478033456e8dda8ef09e00ad9650707f377"
-  integrity sha512-qZryBOJjV//LaxLTV6UC//WewneB3LcXOL9NP++ozKVXsIIIpm/2c13UDiD9Jp2eThsecw9m3jPqDwTyobcdbg==
+es-to-primitive@^1.2.1:
+  version "1.2.1"
+  resolved "https://registry.yarnpkg.com/es-to-primitive/-/es-to-primitive-1.2.1.tgz#e55cd4c9cdc188bcefb03b366c736323fc5c898a"
+  integrity sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==
   dependencies:
     is-callable "^1.1.4"
     is-date-object "^1.0.1"
     is-symbol "^1.0.2"
 
-es5-ext@^0.10.14, es5-ext@^0.10.35, es5-ext@^0.10.50, es5-ext@^0.10.51, es5-ext@~0.10.14:
+es5-ext@^0.10.14, es5-ext@^0.10.35, es5-ext@^0.10.50, es5-ext@~0.10.14:
   version "0.10.51"
   resolved "https://registry.yarnpkg.com/es5-ext/-/es5-ext-0.10.51.tgz#ed2d7d9d48a12df86e0299287e93a09ff478842f"
   integrity sha512-oRpWzM2WcLHVKpnrcyB7OW8j/s67Ba04JCm0WnNv3RiABSvs7mrQlutB8DBv793gKcp0XENR8Il8WxGTlZ73gQ==
@@ -3732,13 +3807,13 @@ es6-symbol@3.1.1:
     d "1"
     es5-ext "~0.10.14"
 
-es6-symbol@^3.1.1, es6-symbol@^3.1.2, es6-symbol@~3.1.1:
-  version "3.1.2"
-  resolved "https://registry.yarnpkg.com/es6-symbol/-/es6-symbol-3.1.2.tgz#859fdd34f32e905ff06d752e7171ddd4444a7ed1"
-  integrity sha512-/ZypxQsArlv+KHpGvng52/Iz8by3EQPxhmbuz8yFG89N/caTFBSbcXONDw0aMjy827gQg26XAjP4uXFvnfINmQ==
+es6-symbol@^3.1.1, es6-symbol@^3.1.3, es6-symbol@~3.1.1:
+  version "3.1.3"
+  resolved "https://registry.yarnpkg.com/es6-symbol/-/es6-symbol-3.1.3.tgz#bad5d3c1bcdac28269f4cb331e431c78ac705d18"
+  integrity sha512-NJ6Yn3FuDinBaBRWl/q5X/s4koRHBrgKAu+yGI6JCBeiu3qrcbJhwT2GeR/EXVfylRk8dpQVJoLEFhK+Mu31NA==
   dependencies:
     d "^1.0.1"
-    es5-ext "^0.10.51"
+    ext "^1.1.2"
 
 es6-weak-map@^2.0.1:
   version "2.0.2"
@@ -3790,30 +3865,36 @@ eslint-import-resolver-node@^0.3.2:
     debug "^2.6.9"
     resolve "^1.5.0"
 
-eslint-module-utils@^2.4.0:
-  version "2.4.0"
-  resolved "https://registry.yarnpkg.com/eslint-module-utils/-/eslint-module-utils-2.4.0.tgz#8b93499e9b00eab80ccb6614e69f03678e84e09a"
-  integrity sha512-14tltLm38Eu3zS+mt0KvILC3q8jyIAH518MlG+HO0p+yK885Lb1UHTY/UgR91eOyGdmxAPb+OLoW4znqIT6Ndw==
+eslint-module-utils@^2.4.1:
+  version "2.5.0"
+  resolved "https://registry.yarnpkg.com/eslint-module-utils/-/eslint-module-utils-2.5.0.tgz#cdf0b40d623032274ccd2abd7e64c4e524d6e19c"
+  integrity sha512-kCo8pZaNz2dsAW7nCUjuVoI11EBXXpIzfNxmaoLhXoRDOnqXLC4iSGVRdZPhOitfbdEfMEfKOiENaK6wDPZEGw==
   dependencies:
-    debug "^2.6.8"
+    debug "^2.6.9"
     pkg-dir "^2.0.0"
 
-eslint-plugin-import@~2.18.2:
-  version "2.18.2"
-  resolved "https://registry.yarnpkg.com/eslint-plugin-import/-/eslint-plugin-import-2.18.2.tgz#02f1180b90b077b33d447a17a2326ceb400aceb6"
-  integrity sha512-5ohpsHAiUBRNaBWAF08izwUGlbrJoJJ+W9/TBwsGoR1MnlgfwMIKrFeSjWbt6moabiXW9xNvtFz+97KHRfI4HQ==
+eslint-plugin-eslint-plugin@^2.1.0:
+  version "2.1.0"
+  resolved "https://registry.yarnpkg.com/eslint-plugin-eslint-plugin/-/eslint-plugin-eslint-plugin-2.1.0.tgz#a7a00f15a886957d855feacaafee264f039e62d5"
+  integrity sha512-kT3A/ZJftt28gbl/Cv04qezb/NQ1dwYIbi8lyf806XMxkus7DvOVCLIfTXMrorp322Pnoez7+zabXH29tADIDg==
+
+eslint-plugin-import@~2.20.0:
+  version "2.20.0"
+  resolved "https://registry.yarnpkg.com/eslint-plugin-import/-/eslint-plugin-import-2.20.0.tgz#d749a7263fb6c29980def8e960d380a6aa6aecaa"
+  integrity sha512-NK42oA0mUc8Ngn4kONOPsPB1XhbUvNHqF+g307dPV28aknPoiNnKLFd9em4nkswwepdF5ouieqv5Th/63U7YJQ==
   dependencies:
     array-includes "^3.0.3"
+    array.prototype.flat "^1.2.1"
     contains-path "^0.1.0"
     debug "^2.6.9"
     doctrine "1.5.0"
     eslint-import-resolver-node "^0.3.2"
-    eslint-module-utils "^2.4.0"
+    eslint-module-utils "^2.4.1"
     has "^1.0.3"
     minimatch "^3.0.4"
     object.values "^1.1.0"
     read-pkg-up "^2.0.0"
-    resolve "^1.11.0"
+    resolve "^1.12.0"
 
 eslint-plugin-jsx-a11y@~6.2.3:
   version "6.2.3"
@@ -3835,20 +3916,21 @@ eslint-plugin-promise@~4.2.1:
   resolved "https://registry.yarnpkg.com/eslint-plugin-promise/-/eslint-plugin-promise-4.2.1.tgz#845fd8b2260ad8f82564c1222fce44ad71d9418a"
   integrity sha512-VoM09vT7bfA7D+upt+FjeBO5eHIJQBUWki1aPvB+vbNiHS3+oGIJGIeyBtKQTME6UPXXy3vV07OL1tHd3ANuDw==
 
-eslint-plugin-react@~7.14.3:
-  version "7.14.3"
-  resolved "https://registry.yarnpkg.com/eslint-plugin-react/-/eslint-plugin-react-7.14.3.tgz#911030dd7e98ba49e1b2208599571846a66bdf13"
-  integrity sha512-EzdyyBWC4Uz2hPYBiEJrKCUi2Fn+BJ9B/pJQcjw5X+x/H2Nm59S4MJIvL4O5NEE0+WbnQwEBxWY03oUk+Bc3FA==
+eslint-plugin-react@~7.17.0:
+  version "7.17.0"
+  resolved "https://registry.yarnpkg.com/eslint-plugin-react/-/eslint-plugin-react-7.17.0.tgz#a31b3e134b76046abe3cd278e7482bd35a1d12d7"
+  integrity sha512-ODB7yg6lxhBVMeiH1c7E95FLD4E/TwmFjltiU+ethv7KPdCwgiFuOZg9zNRHyufStTDLl/dEFqI2Q1VPmCd78A==
   dependencies:
     array-includes "^3.0.3"
     doctrine "^2.1.0"
+    eslint-plugin-eslint-plugin "^2.1.0"
     has "^1.0.3"
-    jsx-ast-utils "^2.1.0"
+    jsx-ast-utils "^2.2.3"
     object.entries "^1.1.0"
-    object.fromentries "^2.0.0"
+    object.fromentries "^2.0.1"
     object.values "^1.1.0"
     prop-types "^15.7.2"
-    resolve "^1.10.1"
+    resolve "^1.13.1"
 
 eslint-scope@^4.0.3:
   version "4.0.3"
@@ -3866,12 +3948,12 @@ eslint-scope@^5.0.0:
     esrecurse "^4.1.0"
     estraverse "^4.1.1"
 
-eslint-utils@^1.4.2:
-  version "1.4.2"
-  resolved "https://registry.yarnpkg.com/eslint-utils/-/eslint-utils-1.4.2.tgz#166a5180ef6ab7eb462f162fd0e6f2463d7309ab"
-  integrity sha512-eAZS2sEUMlIeCjBeubdj45dmBHQwPHWyBcT1VSYB7o9x9WRRqKxyUoiXlRjyAwzN7YEzHJlYg0NmzDRWx6GP4Q==
+eslint-utils@^1.4.3:
+  version "1.4.3"
+  resolved "https://registry.yarnpkg.com/eslint-utils/-/eslint-utils-1.4.3.tgz#74fec7c54d0776b6f67e0251040b5806564e981f"
+  integrity sha512-fbBN5W2xdY45KulGXmLHZ3c3FHfVYmKg0IrAKGOkT/464PQsx2UeIzfz1RmEci+KLm1bBaAzZAh8+/E+XAeZ8Q==
   dependencies:
-    eslint-visitor-keys "^1.0.0"
+    eslint-visitor-keys "^1.1.0"
 
 eslint-visitor-keys@^1.0.0, eslint-visitor-keys@^1.1.0:
   version "1.1.0"
@@ -3917,10 +3999,10 @@ eslint@^2.7.0:
     text-table "~0.2.0"
     user-home "^2.0.0"
 
-eslint@^6.5.0:
-  version "6.5.0"
-  resolved "https://registry.yarnpkg.com/eslint/-/eslint-6.5.0.tgz#304623eec903969dd5c9f2d61c6ce3d6ecec8750"
-  integrity sha512-IIbSW+vKOqMatPmS9ayyku4tvWxHY2iricSRtOz6+ZA5IPRlgXzEL0u/j6dr4eha0ugmhMwDTqxtmNu3kj9O4w==
+eslint@^6.8.0:
+  version "6.8.0"
+  resolved "https://registry.yarnpkg.com/eslint/-/eslint-6.8.0.tgz#62262d6729739f9275723824302fb227c8c93ffb"
+  integrity sha512-K+Iayyo2LtyYhDSYwz5D5QdWw0hCacNzyq1Y821Xna2xSJj7cijoLLYmLxTQgcgZ9mC61nryMy9S7GRbYpI5Ig==
   dependencies:
     "@babel/code-frame" "^7.0.0"
     ajv "^6.10.0"
@@ -3929,19 +4011,19 @@ eslint@^6.5.0:
     debug "^4.0.1"
     doctrine "^3.0.0"
     eslint-scope "^5.0.0"
-    eslint-utils "^1.4.2"
+    eslint-utils "^1.4.3"
     eslint-visitor-keys "^1.1.0"
-    espree "^6.1.1"
+    espree "^6.1.2"
     esquery "^1.0.1"
     esutils "^2.0.2"
     file-entry-cache "^5.0.1"
     functional-red-black-tree "^1.0.1"
     glob-parent "^5.0.0"
-    globals "^11.7.0"
+    globals "^12.1.0"
     ignore "^4.0.6"
     import-fresh "^3.0.0"
     imurmurhash "^0.1.4"
-    inquirer "^6.4.1"
+    inquirer "^7.0.0"
     is-glob "^4.0.0"
     js-yaml "^3.13.1"
     json-stable-stringify-without-jsonify "^1.0.1"
@@ -3950,7 +4032,7 @@ eslint@^6.5.0:
     minimatch "^3.0.4"
     mkdirp "^0.5.1"
     natural-compare "^1.4.0"
-    optionator "^0.8.2"
+    optionator "^0.8.3"
     progress "^2.0.0"
     regexpp "^2.0.1"
     semver "^6.1.2"
@@ -3968,13 +4050,13 @@ espree@^3.1.6:
     acorn "^5.5.0"
     acorn-jsx "^3.0.0"
 
-espree@^6.1.1:
-  version "6.1.1"
-  resolved "https://registry.yarnpkg.com/espree/-/espree-6.1.1.tgz#7f80e5f7257fc47db450022d723e356daeb1e5de"
-  integrity sha512-EYbr8XZUhWbYCqQRW0duU5LxzL5bETN6AjKBGy1302qqzPaCH10QbRg3Wvco79Z8x9WbiE8HYB4e75xl6qUYvQ==
+espree@^6.1.2:
+  version "6.1.2"
+  resolved "https://registry.yarnpkg.com/espree/-/espree-6.1.2.tgz#6c272650932b4f91c3714e5e7b5f5e2ecf47262d"
+  integrity sha512-2iUPuuPP+yW1PZaMSDM9eyVf8D5P0Hi8h83YtZ5bPc/zHYjII5khoixIUTMO794NOY8F/ThF1Bo8ncZILarUTA==
   dependencies:
-    acorn "^7.0.0"
-    acorn-jsx "^5.0.2"
+    acorn "^7.1.0"
+    acorn-jsx "^5.1.0"
     eslint-visitor-keys "^1.1.0"
 
 esprima@^3.1.3:
@@ -4007,9 +4089,9 @@ estraverse@^4.0.0, estraverse@^4.1.0, estraverse@^4.1.1, estraverse@^4.2.0:
   integrity sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==
 
 esutils@^2.0.0, esutils@^2.0.2:
-  version "2.0.2"
-  resolved "https://registry.yarnpkg.com/esutils/-/esutils-2.0.2.tgz#0abf4f1caa5bcb1f7a9d8acc6dea4faaa04bac9b"
-  integrity sha1-Cr9PHKpbyx96nYrMbepPqqBLrJs=
+  version "2.0.3"
+  resolved "https://registry.yarnpkg.com/esutils/-/esutils-2.0.3.tgz#74d2eb4de0b8da1293711910d50775b9b710ef64"
+  integrity sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==
 
 etag@~1.8.1:
   version "1.8.1"
@@ -4150,6 +4232,13 @@ express@^4.16.3, express@^4.17.1:
     utils-merge "1.0.1"
     vary "~1.1.2"
 
+ext@^1.1.2:
+  version "1.4.0"
+  resolved "https://registry.yarnpkg.com/ext/-/ext-1.4.0.tgz#89ae7a07158f79d35517882904324077e4379244"
+  integrity sha512-Key5NIsUxdqKg3vIsdw9dSuXpPCQ297y6wBjL30edxwPgt2E44WcWBZey/ZvUc6sERLTxKdyCu4gZFmUbk1Q7A==
+  dependencies:
+    type "^2.0.0"
+
 extend-shallow@^2.0.1:
   version "2.0.1"
   resolved "https://registry.yarnpkg.com/extend-shallow/-/extend-shallow-2.0.1.tgz#51af7d614ad9a9f610ea1bafbb989d6b1c56890f"
@@ -4213,7 +4302,7 @@ fast-json-stable-stringify@^2.0.0:
   resolved "https://registry.yarnpkg.com/fast-json-stable-stringify/-/fast-json-stable-stringify-2.0.0.tgz#d5142c0caee6b1189f87d3a76111064f86c8bbf2"
   integrity sha1-1RQsDK7msRifh9OnYREGT4bIu/I=
 
-fast-levenshtein@~2.0.4:
+fast-levenshtein@~2.0.6:
   version "2.0.6"
   resolved "https://registry.yarnpkg.com/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz#3d8a5c66883a16a30ca8643e851f19baa7797917"
   integrity sha1-PYpcZog6FqMMqGQ+hR8Zuqd5eRc=
@@ -4265,10 +4354,10 @@ figures@^1.3.5:
     escape-string-regexp "^1.0.5"
     object-assign "^4.1.0"
 
-figures@^2.0.0:
-  version "2.0.0"
-  resolved "https://registry.yarnpkg.com/figures/-/figures-2.0.0.tgz#3ab1a2d2a62c8bfb431a0c94cb797a2fce27c962"
-  integrity sha1-OrGi0qYsi/tDGgyUy3l6L84nyWI=
+figures@^3.0.0:
+  version "3.1.0"
+  resolved "https://registry.yarnpkg.com/figures/-/figures-3.1.0.tgz#4b198dd07d8d71530642864af2d45dd9e459c4ec"
+  integrity sha512-ravh8VRXqHuMvZt/d8GblBeqDMkdJMBdv/2KntFH+ra5MXkO7nxNKpzQ3n6QD/2da1kH0aWmNISdvhM7gl2gVg==
   dependencies:
     escape-string-regexp "^1.0.5"
 
@@ -4287,13 +4376,13 @@ file-entry-cache@^5.0.1:
   dependencies:
     flat-cache "^2.0.1"
 
-file-loader@^4.2.0:
-  version "4.2.0"
-  resolved "https://registry.yarnpkg.com/file-loader/-/file-loader-4.2.0.tgz#5fb124d2369d7075d70a9a5abecd12e60a95215e"
-  integrity sha512-+xZnaK5R8kBJrHK0/6HRlrKNamvVS5rjyuju+rnyxRGuwUJwpAMsVzUl5dz6rK8brkzjV6JpcFNjp6NqV0g1OQ==
+file-loader@^5.0.2:
+  version "5.0.2"
+  resolved "https://registry.yarnpkg.com/file-loader/-/file-loader-5.0.2.tgz#7f3d8b4ac85a5e8df61338cfec95d7405f971caa"
+  integrity sha512-QMiQ+WBkGLejKe81HU8SZ9PovsU/5uaLo0JdTCEXOYv7i7jfAjHZi1tcwp9tSASJPOmmHZtbdCervFmXMH/Dcg==
   dependencies:
     loader-utils "^1.2.3"
-    schema-utils "^2.0.0"
+    schema-utils "^2.5.0"
 
 file-type@^10.5.0:
   version "10.11.0"
@@ -4344,10 +4433,10 @@ find-cache-dir@^2.0.0, find-cache-dir@^2.1.0:
     make-dir "^2.0.0"
     pkg-dir "^3.0.0"
 
-find-cache-dir@^3.0.0:
-  version "3.0.0"
-  resolved "https://registry.yarnpkg.com/find-cache-dir/-/find-cache-dir-3.0.0.tgz#cd4b7dd97b7185b7e17dbfe2d6e4115ee3eeb8fc"
-  integrity sha512-t7ulV1fmbxh5G9l/492O1p5+EBbr3uwpt6odhFTMc+nWyhmbloe+ja9BZ8pIBtqFWhOmCWVjx+pTW4zDkFoclw==
+find-cache-dir@^3.0.0, find-cache-dir@^3.2.0:
+  version "3.2.0"
+  resolved "https://registry.yarnpkg.com/find-cache-dir/-/find-cache-dir-3.2.0.tgz#e7fe44c1abc1299f516146e563108fd1006c1874"
+  integrity sha512-1JKclkYYsf1q9WIJKLZa9S9muC+08RIjzAlLrK4QcYLJMS6mk9yombQ9qf+zJ7H9LS800k0s44L4sDq9VYzqyg==
   dependencies:
     commondir "^1.0.1"
     make-dir "^3.0.0"
@@ -4372,7 +4461,7 @@ find-up@^3.0.0:
   dependencies:
     locate-path "^3.0.0"
 
-find-up@^4.0.0:
+find-up@^4.0.0, find-up@^4.1.0:
   version "4.1.0"
   resolved "https://registry.yarnpkg.com/find-up/-/find-up-4.1.0.tgz#97afe7d6cdc0bc5928584b7c8d7b16e8a9aa5d19"
   integrity sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==
@@ -4441,23 +4530,11 @@ font-awesome@^4.7.0:
   resolved "https://registry.yarnpkg.com/font-awesome/-/font-awesome-4.7.0.tgz#8fa8cf0411a1a31afd07b06d2902bb9fc815a133"
   integrity sha1-j6jPBBGhoxr9B7BtKQK7n8gVoTM=
 
-for-in@^0.1.3:
-  version "0.1.8"
-  resolved "https://registry.yarnpkg.com/for-in/-/for-in-0.1.8.tgz#d8773908e31256109952b1fdb9b3fa867d2775e1"
-  integrity sha1-2Hc5COMSVhCZUrH9ubP6hn0ndeE=
-
-for-in@^1.0.1, for-in@^1.0.2:
+for-in@^1.0.2:
   version "1.0.2"
   resolved "https://registry.yarnpkg.com/for-in/-/for-in-1.0.2.tgz#81068d295a8142ec0ac726c6e2200c30fb6d5e80"
   integrity sha1-gQaNKVqBQuwKxybG4iAMMPttXoA=
 
-for-own@^1.0.0:
-  version "1.0.0"
-  resolved "https://registry.yarnpkg.com/for-own/-/for-own-1.0.0.tgz#c63332f415cedc4b04dbfe70cf836494c53cb44b"
-  integrity sha1-xjMy9BXO3EsE2/5wz4NklMU8tEs=
-  dependencies:
-    for-in "^1.0.1"
-
 forever-agent@~0.6.1:
   version "0.6.1"
   resolved "https://registry.yarnpkg.com/forever-agent/-/forever-agent-0.6.1.tgz#fbc71f0c41adeb37f96c577ad1ed42d8fdacca91"
@@ -4529,6 +4606,13 @@ fs-minipass@^1.2.5:
   dependencies:
     minipass "^2.6.0"
 
+fs-minipass@^2.0.0:
+  version "2.0.0"
+  resolved "https://registry.yarnpkg.com/fs-minipass/-/fs-minipass-2.0.0.tgz#a6415edab02fae4b9e9230bc87ee2e4472003cd1"
+  integrity sha512-40Qz+LFXmd9tzYVnnBmZvFfvAADfUA14TXPK1s7IfElJTIZ97rA8w4Kin7Wt5JBrC3ShnnFJO/5vPjPEeJIq9A==
+  dependencies:
+    minipass "^3.0.0"
+
 fs-write-stream-atomic@^1.0.8:
   version "1.0.10"
   resolved "https://registry.yarnpkg.com/fs-write-stream-atomic/-/fs-write-stream-atomic-1.0.10.tgz#b47df53493ef911df75731e70a9ded0189db40c9"
@@ -4557,25 +4641,30 @@ fsevents@^2.0.6:
   resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-2.0.7.tgz#382c9b443c6cbac4c57187cdda23aa3bf1ccfc2a"
   integrity sha512-a7YT0SV3RB+DjYcppwVDLtn13UQnmg0SWZS7ezZD0UjnLwXmy8Zm21GMVGLaFGimIqcvyMQaOJBrop8MyOp1kQ==
 
-function-bind@^1.0.2, function-bind@^1.1.1:
+function-bind@^1.1.1:
   version "1.1.1"
   resolved "https://registry.yarnpkg.com/function-bind/-/function-bind-1.1.1.tgz#a56899d3ea3c9bab874bb9773b7c5ede92f4895d"
   integrity sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==
 
-function.prototype.name@^1.1.0:
-  version "1.1.0"
-  resolved "https://registry.yarnpkg.com/function.prototype.name/-/function.prototype.name-1.1.0.tgz#8bd763cc0af860a859cc5d49384d74b932cd2327"
-  integrity sha512-Bs0VRrTz4ghD8pTmbJQD1mZ8A/mN0ur/jGz+A6FBxPDUPkm1tNfF6bhTYPA7i7aF4lZJVr+OXTNNrnnIl58Wfg==
+function.prototype.name@^1.1.1, function.prototype.name@^1.1.2:
+  version "1.1.2"
+  resolved "https://registry.yarnpkg.com/function.prototype.name/-/function.prototype.name-1.1.2.tgz#5cdf79d7c05db401591dfde83e3b70c5123e9a45"
+  integrity sha512-C8A+LlHBJjB2AdcRPorc5JvJ5VUoWlXdEHLOJdCI7kjHEtGTpHQUiqMvCIKUwIsGwZX2jZJy761AXsn356bJQg==
   dependencies:
-    define-properties "^1.1.2"
-    function-bind "^1.1.1"
-    is-callable "^1.1.3"
+    define-properties "^1.1.3"
+    es-abstract "^1.17.0-next.1"
+    functions-have-names "^1.2.0"
 
 functional-red-black-tree@^1.0.1:
   version "1.0.1"
   resolved "https://registry.yarnpkg.com/functional-red-black-tree/-/functional-red-black-tree-1.0.1.tgz#1b0ab3bd553b2a0d6399d29c0e3ea0b252078327"
   integrity sha1-GwqzvVU7Kg1jmdKcDj6gslIHgyc=
 
+functions-have-names@^1.2.0:
+  version "1.2.0"
+  resolved "https://registry.yarnpkg.com/functions-have-names/-/functions-have-names-1.2.0.tgz#83da7583e4ea0c9ac5ff530f73394b033e0bf77d"
+  integrity sha512-zKXyzksTeaCSw5wIX79iCA40YAa6CJMJgNg9wdkU/ERBrIdPSimPICYiLp65lRbSBqtiHql/HZfS2DyI/AH6tQ==
+
 gauge@~2.7.3:
   version "2.7.4"
   resolved "https://registry.yarnpkg.com/gauge/-/gauge-2.7.4.tgz#2c03405c7538c39d7eb37b317022e325fb018bf7"
@@ -4609,6 +4698,11 @@ generic-pool@2.4.3:
   resolved "https://registry.yarnpkg.com/generic-pool/-/generic-pool-2.4.3.tgz#780c36f69dfad05a5a045dd37be7adca11a4f6ff"
   integrity sha1-eAw29p360FpaBF3Te+etyhGk9v8=
 
+gensync@^1.0.0-beta.1:
+  version "1.0.0-beta.1"
+  resolved "https://registry.yarnpkg.com/gensync/-/gensync-1.0.0-beta.1.tgz#58f4361ff987e5ff6e1e7a210827aa371eaac269"
+  integrity sha512-r8EC6NO1sngH/zdD9fiRDLdcgnbayXah+mLgManTaIZJqEC1MZstmnox8KpnI2/fxQwrp5OpCOYWLp4rBl4Jcg==
+
 get-caller-file@^1.0.1:
   version "1.0.3"
   resolved "https://registry.yarnpkg.com/get-caller-file/-/get-caller-file-1.0.3.tgz#f978fa4c90d1dfe7ff2d6beda2a515e713bdcf4a"
@@ -4653,10 +4747,10 @@ glob-parent@^5.0.0:
   dependencies:
     is-glob "^4.0.1"
 
-glob@^7.0.0, glob@^7.0.3, glob@^7.1.1, glob@^7.1.2, glob@^7.1.3, glob@^7.1.4, glob@~7.1.1:
-  version "7.1.4"
-  resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.4.tgz#aa608a2f6c577ad357e1ae5a5c26d9a8d1969255"
-  integrity sha512-hkLPepehmnKk41pUGm3sYxoFs/umurYfYJCerbXEyFIWcAzvpipAgVkBqqT9RBKMGjnq6kMuyYwha6csxbiM1A==
+glob@^7.0.0, glob@^7.0.3, glob@^7.1.1, glob@^7.1.2, glob@^7.1.3, glob@^7.1.4, glob@^7.1.6, glob@~7.1.1:
+  version "7.1.6"
+  resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.6.tgz#141f33b81a7c2492e125594307480c46679278a6"
+  integrity sha512-LwaxwyZ72Lk7vZINtNNrywX0ZuLyStrdDtabefZKAY5ZGJhVtgdznluResxNmPitE0SAO+O26sWTHeKSI2wMBA==
   dependencies:
     fs.realpath "^1.0.0"
     inflight "^1.0.4"
@@ -4701,11 +4795,18 @@ global-prefix@^3.0.0:
     kind-of "^6.0.2"
     which "^1.3.1"
 
-globals@^11.1.0, globals@^11.7.0:
+globals@^11.1.0:
   version "11.12.0"
   resolved "https://registry.yarnpkg.com/globals/-/globals-11.12.0.tgz#ab8795338868a0babd8525758018c2a7eb95c42e"
   integrity sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==
 
+globals@^12.1.0:
+  version "12.3.0"
+  resolved "https://registry.yarnpkg.com/globals/-/globals-12.3.0.tgz#1e564ee5c4dded2ab098b0f88f24702a3c56be13"
+  integrity sha512-wAfjdLgFsPZsklLJvOBUBmzYE8/CwhEqSBEMRXA3qxIiNtyqvjYurAtIfDh6chlEPUfmTY3MnZh5Hfh4q0UlIw==
+  dependencies:
+    type-fest "^0.8.1"
+
 globals@^9.2.0:
   version "9.18.0"
   resolved "https://registry.yarnpkg.com/globals/-/globals-9.18.0.tgz#aa3896b3e69b487f17e31ed2143d69a8e30c2d8a"
@@ -4760,6 +4861,11 @@ graceful-fs@^4.1.6:
   resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.1.15.tgz#ffb703e1066e8a0eeaa4c8b80ba9253eeefbfb00"
   integrity sha512-6uHUhOPEBgQ24HM+r6b/QwWfZq+yiFcipKFrOFiBEnWdy5sdzYoi+pJeQaPI5qOLRFqWmAXUPQNsielzdLoecA==
 
+graceful-fs@^4.2.2:
+  version "4.2.3"
+  resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.2.3.tgz#4a12ff1b60376ef09862c2093edd908328be8423"
+  integrity sha512-a30VEBm4PEdx1dRB7MFK7BejejvCvBronbLjht+sHuGYj8PHs7M/5Z+rt5lw551vZ7yfTCj4Vuyy3mSJytDWRQ==
+
 growly@^1.3.0:
   version "1.3.0"
   resolved "https://registry.yarnpkg.com/growly/-/growly-1.3.0.tgz#f10748cbe76af964b7c96c93c6bcc28af120c081"
@@ -4779,9 +4885,9 @@ handle-thing@^2.0.0:
   integrity sha512-d4sze1JNC454Wdo2fkuyzCr6aHcbL6PGGuFAz0Li/NcOm1tCHGnWDRmJP85dh9IhQErTc2svWFEX5xHIOo//kQ==
 
 handlebars@^4.1.2:
-  version "4.2.0"
-  resolved "https://registry.yarnpkg.com/handlebars/-/handlebars-4.2.0.tgz#57ce8d2175b9bbb3d8b3cf3e4217b1aec8ddcb2e"
-  integrity sha512-Kb4xn5Qh1cxAKvQnzNWZ512DhABzyFNmsaJf3OAkWNa4NkaqWcNI8Tao8Tasi0/F4JD9oyG0YxuFyvyR57d+Gw==
+  version "4.5.3"
+  resolved "https://registry.yarnpkg.com/handlebars/-/handlebars-4.5.3.tgz#5cf75bd8714f7605713511a56be7c349becb0482"
+  integrity sha512-3yPecJoJHK/4c6aZhSvxOyG4vJKDshV36VHp0iVCDVh7o9w2vwi3NSnL2MMPj3YdduqaBcu7cGbggJQM0br9xA==
   dependencies:
     neo-async "^2.6.0"
     optimist "^0.6.1"
@@ -4819,10 +4925,10 @@ has-flag@^3.0.0:
   resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-3.0.0.tgz#b5d454dc2199ae225699f3467e5a07f3b955bafd"
   integrity sha1-tdRU3CGZriJWmfNGfloH87lVuv0=
 
-has-symbols@^1.0.0:
-  version "1.0.0"
-  resolved "https://registry.yarnpkg.com/has-symbols/-/has-symbols-1.0.0.tgz#ba1a8f1af2a0fc39650f5c850367704122063b44"
-  integrity sha1-uhqPGvKg/DllD1yFA2dwQSIGO0Q=
+has-symbols@^1.0.0, has-symbols@^1.0.1:
+  version "1.0.1"
+  resolved "https://registry.yarnpkg.com/has-symbols/-/has-symbols-1.0.1.tgz#9f5214758a44196c406d9bd76cebf81ec2dd31e8"
+  integrity sha512-PLcsoqu++dmEIZB+6totNFKq/7Do+Z0u4oT0zKOJNl3lYK6vGwwu2hjHs+68OEZbTjiUE9bgOABXbP/GvrS0Kg==
 
 has-unicode@^2.0.0:
   version "2.0.1"
@@ -4860,7 +4966,7 @@ has-values@^1.0.0:
     is-number "^3.0.0"
     kind-of "^4.0.0"
 
-has@^1.0.0, has@^1.0.1, has@^1.0.3:
+has@^1.0.0, has@^1.0.3:
   version "1.0.3"
   resolved "https://registry.yarnpkg.com/has/-/has-1.0.3.tgz#722d7cbfc1f6aa8241f16dd814e011e1f41e8796"
   integrity sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==
@@ -4974,10 +5080,10 @@ html-comment-regex@^1.1.0:
   resolved "https://registry.yarnpkg.com/html-comment-regex/-/html-comment-regex-1.1.2.tgz#97d4688aeb5c81886a364faa0cad1dda14d433a7"
   integrity sha512-P+M65QY2JQ5Y0G9KKdlDpo0zK+/OHptU5AaBwUfAIDJZk1MYf32Frm84EcOytfJE0t5JvkAnKlmjsXDnWzCJmQ==
 
-html-element-map@^1.0.0:
-  version "1.0.1"
-  resolved "https://registry.yarnpkg.com/html-element-map/-/html-element-map-1.0.1.tgz#3c4fcb4874ebddfe4283b51c8994e7713782b592"
-  integrity sha512-BZSfdEm6n706/lBfXKWa4frZRZcT5k1cOusw95ijZsHlI+GdgY0v95h6IzO3iIDf2ROwq570YTwqNPqHcNMozw==
+html-element-map@^1.2.0:
+  version "1.2.0"
+  resolved "https://registry.yarnpkg.com/html-element-map/-/html-element-map-1.2.0.tgz#dfbb09efe882806af63d990cf6db37993f099f22"
+  integrity sha512-0uXq8HsuG1v2TmQ8QkIhzbrqeskE4kn52Q18QJ9iAA/SnHoEKXWiUxHQtclRsCFWEUD2So34X+0+pZZu862nnw==
   dependencies:
     array-filter "^1.0.0"
 
@@ -5052,7 +5158,7 @@ http-link-header@^1.0.2:
   resolved "https://registry.yarnpkg.com/http-parser-js/-/http-parser-js-0.4.10.tgz#92c9c1374c35085f75db359ec56cc257cbb93fa4"
   integrity sha1-ksnBN0w1CF912zWexWzCV8u5P6Q=
 
-http-proxy-middleware@^0.19.1:
+http-proxy-middleware@0.19.1:
   version "0.19.1"
   resolved "https://registry.yarnpkg.com/http-proxy-middleware/-/http-proxy-middleware-0.19.1.tgz#183c7dc4aa1479150306498c210cdaf96080a43a"
   integrity sha512-yHYTgWMQO8VvwNS22eLLloAkvungsKdKTLO8AJlftYIKNfJr3GK3zK0ZCfzDDGUBttdGc8xFy1mCitvNKQtC3Q==
@@ -5151,10 +5257,10 @@ import-fresh@^2.0.0:
     caller-path "^2.0.0"
     resolve-from "^3.0.0"
 
-import-fresh@^3.0.0:
-  version "3.0.0"
-  resolved "https://registry.yarnpkg.com/import-fresh/-/import-fresh-3.0.0.tgz#a3d897f420cab0e671236897f75bc14b4885c390"
-  integrity sha512-pOnA9tfM3Uwics+SaBLCNyZZZbK+4PTu0OPZtLlMIrv17EdBoC15S9Kn8ckJ9TZTyKb3ywNE5y1yeDxxGA7nTQ==
+import-fresh@^3.0.0, import-fresh@^3.1.0:
+  version "3.2.1"
+  resolved "https://registry.yarnpkg.com/import-fresh/-/import-fresh-3.2.1.tgz#633ff618506e793af5ac91bf48b72677e15cbe66"
+  integrity sha512-6e1q1cnWP2RXD9/keSkxHScg508CdXqXWgWBaETNhyuBFz+kUZlKboh+ISK+bU++DmbHimVBrOz/zzPe0sZ3sQ==
   dependencies:
     parent-module "^1.0.0"
     resolve-from "^4.0.0"
@@ -5187,12 +5293,17 @@ imurmurhash@^0.1.4:
   resolved "https://registry.yarnpkg.com/imurmurhash/-/imurmurhash-0.1.4.tgz#9218b9b2b928a238b13dc4fb6b6d576f231453ea"
   integrity sha1-khi5srkoojixPcT7a21XbyMUU+o=
 
+indent-string@^4.0.0:
+  version "4.0.0"
+  resolved "https://registry.yarnpkg.com/indent-string/-/indent-string-4.0.0.tgz#624f8f4497d619b2d9768531d58f4122854d7251"
+  integrity sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg==
+
 indexes-of@^1.0.1:
   version "1.0.1"
   resolved "https://registry.yarnpkg.com/indexes-of/-/indexes-of-1.0.1.tgz#f30f716c8e2bd346c7b67d3df3915566a7c05607"
   integrity sha1-8w9xbI4r00bHtn0985FVZqfAVgc=
 
-infer-owner@^1.0.3:
+infer-owner@^1.0.3, infer-owner@^1.0.4:
   version "1.0.4"
   resolved "https://registry.yarnpkg.com/infer-owner/-/infer-owner-1.0.4.tgz#c4cefcaa8e51051c2a40ba2ce8a3d27295af9467"
   integrity sha512-IClj+Xz94+d7irH5qRyfJonOdfTzuDaifE6ZPWfx0N0+/ATZCbuTPq2prFl526urkQd90WyUKIh1DfBQ2hMz9A==
@@ -5244,22 +5355,22 @@ inquirer@^0.12.0:
     strip-ansi "^3.0.0"
     through "^2.3.6"
 
-inquirer@^6.4.1:
-  version "6.5.0"
-  resolved "https://registry.yarnpkg.com/inquirer/-/inquirer-6.5.0.tgz#2303317efc9a4ea7ec2e2df6f86569b734accf42"
-  integrity sha512-scfHejeG/lVZSpvCXpsB4j/wQNPM5JC8kiElOI0OUTwmc1RTpXr4H32/HOlQHcZiYl2z2VElwuCVDRG8vFmbnA==
+inquirer@^7.0.0:
+  version "7.0.0"
+  resolved "https://registry.yarnpkg.com/inquirer/-/inquirer-7.0.0.tgz#9e2b032dde77da1db5db804758b8fea3a970519a"
+  integrity sha512-rSdC7zelHdRQFkWnhsMu2+2SO41mpv2oF2zy4tMhmiLWkcKbOAs87fWAJhVXttKVwhdZvymvnuM95EyEXg2/tQ==
   dependencies:
-    ansi-escapes "^3.2.0"
+    ansi-escapes "^4.2.1"
     chalk "^2.4.2"
-    cli-cursor "^2.1.0"
+    cli-cursor "^3.1.0"
     cli-width "^2.0.0"
     external-editor "^3.0.3"
-    figures "^2.0.0"
-    lodash "^4.17.12"
-    mute-stream "0.0.7"
+    figures "^3.0.0"
+    lodash "^4.17.15"
+    mute-stream "0.0.8"
     run-async "^2.2.0"
     rxjs "^6.4.0"
-    string-width "^2.1.0"
+    string-width "^4.1.0"
     strip-ansi "^5.1.0"
     through "^2.3.6"
 
@@ -5291,10 +5402,10 @@ intl-messageformat-parser@1.4.0:
   resolved "https://registry.yarnpkg.com/intl-messageformat-parser/-/intl-messageformat-parser-1.4.0.tgz#b43d45a97468cadbe44331d74bb1e8dea44fc075"
   integrity sha1-tD1FqXRoytvkQzHXS7Ho3qRPwHU=
 
-intl-messageformat-parser@^1.6.5:
-  version "1.6.5"
-  resolved "https://registry.yarnpkg.com/intl-messageformat-parser/-/intl-messageformat-parser-1.6.5.tgz#40f5fc19855f203389a3fc926cc3c88d7a573496"
-  integrity sha512-hngOkdq6FZxT6iEpEqOzGO/8rshM/v+sShGBl6yv8SQmU6lCc4vtfBHNqpSC0Dxuq4tedMkYFQGnKy5b1Tx5GA==
+intl-messageformat-parser@^1.7.1:
+  version "1.8.1"
+  resolved "https://registry.yarnpkg.com/intl-messageformat-parser/-/intl-messageformat-parser-1.8.1.tgz#0eb14c5618333be4c95c409457b66c8c33ddcc01"
+  integrity sha512-IMSCKVf0USrM/959vj3xac7s8f87sc+80Y/ipBzdKy4ifBv5Gsj2tZ41EAaURVg01QU71fYr77uA8Meh6kELbg==
 
 intl-messageformat@^2.0.0, intl-messageformat@^2.1.0, intl-messageformat@^2.2.0:
   version "2.2.0"
@@ -5357,7 +5468,7 @@ is-absolute-url@^2.0.0:
   resolved "https://registry.yarnpkg.com/is-absolute-url/-/is-absolute-url-2.1.0.tgz#50530dfb84fcc9aa7dbe7852e83a37b93b9f2aa6"
   integrity sha1-UFMN+4T8yap9vnhS6Do3uTufKqY=
 
-is-absolute-url@^3.0.2:
+is-absolute-url@^3.0.3:
   version "3.0.3"
   resolved "https://registry.yarnpkg.com/is-absolute-url/-/is-absolute-url-3.0.3.tgz#96c6a22b6a23929b11ea0afb1836c36ad4a5d698"
   integrity sha512-opmNIX7uFnS96NtPmhWQgQx6/NYFgsUXYMllcfzwWKUMwfo8kku1TvE6hkNcH+Q1ts5cMVrsY7j0bxXQDciu9Q==
@@ -5405,10 +5516,10 @@ is-binary-path@^2.1.0:
   dependencies:
     binary-extensions "^2.0.0"
 
-is-boolean-object@^1.0.0:
-  version "1.0.0"
-  resolved "https://registry.yarnpkg.com/is-boolean-object/-/is-boolean-object-1.0.0.tgz#98f8b28030684219a95f375cfbd88ce3405dff93"
-  integrity sha1-mPiygDBoQhmpXzdc+9iM40Bd/5M=
+is-boolean-object@^1.0.1:
+  version "1.0.1"
+  resolved "https://registry.yarnpkg.com/is-boolean-object/-/is-boolean-object-1.0.1.tgz#10edc0900dd127697a92f6f9807c7617d68ac48e"
+  integrity sha512-TqZuVwa/sppcrhUCAYkGBk7w0yxfQQnxq28fjkO53tnK9FQXmdwz2JS5+GjsWQ6RByES1K40nI+yDic5c9/aAQ==
 
 is-buffer@^1.1.5:
   version "1.1.6"
@@ -5427,10 +5538,10 @@ is-builtin-module@^1.0.0:
   dependencies:
     builtin-modules "^1.0.0"
 
-is-callable@^1.1.3, is-callable@^1.1.4:
-  version "1.1.4"
-  resolved "https://registry.yarnpkg.com/is-callable/-/is-callable-1.1.4.tgz#1e1adf219e1eeb684d691f9d6a05ff0d30a24d75"
-  integrity sha512-r5p9sxJjYnArLjObpjA4xu5EKI3CuKHkJXMhT7kwbpUyIFD1n5PMAsoPvWnvtZiNz7LjkYDRZhd7FlI0eMijEA==
+is-callable@^1.1.4, is-callable@^1.1.5:
+  version "1.1.5"
+  resolved "https://registry.yarnpkg.com/is-callable/-/is-callable-1.1.5.tgz#f7e46b596890456db74e7f6e976cb3273d06faab"
+  integrity sha512-ESKv5sMCJB2jnHTWZ3O5itG+O128Hsus4K4Qh1h2/cgn2vbgnLSVqfV46AeJA9D5EeeLa9w81KUXMtn34zhX+Q==
 
 is-ci@^2.0.0:
   version "2.0.0"
@@ -5522,6 +5633,11 @@ is-fullwidth-code-point@^2.0.0:
   resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz#a3b30a5c4f199183167aaab93beefae3ddfb654f"
   integrity sha1-o7MKXE8ZkYMWeqq5O+764937ZU8=
 
+is-fullwidth-code-point@^3.0.0:
+  version "3.0.0"
+  resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz#f116f8064fe90b3f7844a38997c0b75051269f1d"
+  integrity sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==
+
 is-generator-fn@^2.0.0:
   version "2.0.0"
   resolved "https://registry.yarnpkg.com/is-generator-fn/-/is-generator-fn-2.0.0.tgz#038c31b774709641bda678b1f06a4e3227c10b3e"
@@ -5557,17 +5673,17 @@ is-my-json-valid@^2.10.0:
     jsonpointer "^4.0.0"
     xtend "^4.0.0"
 
-is-nan@^1.2.1:
-  version "1.2.1"
-  resolved "https://registry.yarnpkg.com/is-nan/-/is-nan-1.2.1.tgz#9faf65b6fb6db24b7f5c0628475ea71f988401e2"
-  integrity sha1-n69ltvttskt/XAYoR16nH5iEAeI=
+is-nan@^1.3.0:
+  version "1.3.0"
+  resolved "https://registry.yarnpkg.com/is-nan/-/is-nan-1.3.0.tgz#85d1f5482f7051c2019f5673ccebdb06f3b0db03"
+  integrity sha512-z7bbREymOqt2CCaZVly8aC4ML3Xhfi0ekuOnjO2L8vKdl+CttdVoGZQhd4adMFAsxQ5VeRVwORs4tU8RH+HFtQ==
   dependencies:
-    define-properties "^1.1.1"
+    define-properties "^1.1.3"
 
-is-number-object@^1.0.3:
-  version "1.0.3"
-  resolved "https://registry.yarnpkg.com/is-number-object/-/is-number-object-1.0.3.tgz#f265ab89a9f445034ef6aff15a8f00b00f551799"
-  integrity sha1-8mWrian0RQNO9q/xWo8AsA9VF5k=
+is-number-object@^1.0.4:
+  version "1.0.4"
+  resolved "https://registry.yarnpkg.com/is-number-object/-/is-number-object-1.0.4.tgz#36ac95e741cf18b283fc1ddf5e83da798e3ec197"
+  integrity sha512-zohwelOAur+5uXtk8O3GPQ1eAcu4ZX3UwxQhUlfFFMNpUd83gXgjbhJh6HmB6LUNV/ieOLQuDwJO3dWJosUeMw==
 
 is-number@^3.0.0:
   version "3.0.0"
@@ -5627,12 +5743,12 @@ is-property@^1.0.0, is-property@^1.0.2:
   resolved "https://registry.yarnpkg.com/is-property/-/is-property-1.0.2.tgz#57fe1c4e48474edd65b09911f26b1cd4095dda84"
   integrity sha1-V/4cTkhHTt1lsJkR8msc1Ald2oQ=
 
-is-regex@^1.0.4:
-  version "1.0.4"
-  resolved "https://registry.yarnpkg.com/is-regex/-/is-regex-1.0.4.tgz#5517489b547091b0930e095654ced25ee97e9491"
-  integrity sha1-VRdIm1RwkbCTDglWVM7SXul+lJE=
+is-regex@^1.0.4, is-regex@^1.0.5:
+  version "1.0.5"
+  resolved "https://registry.yarnpkg.com/is-regex/-/is-regex-1.0.5.tgz#39d589a358bf18967f726967120b8fc1aed74eae"
+  integrity sha512-vlKW17SNq44owv5AQR3Cq0bQPEb8+kF3UKZ2fiZNOWtztYE5i0CzCZxFDwO58qAOWtxdBRVO/V5Qin1wjCqFYQ==
   dependencies:
-    has "^1.0.1"
+    has "^1.0.3"
 
 is-resolvable@^1.0.0:
   version "1.1.0"
@@ -5644,10 +5760,10 @@ is-stream@^1.0.1, is-stream@^1.1.0:
   resolved "https://registry.yarnpkg.com/is-stream/-/is-stream-1.1.0.tgz#12d4a3dd4e68e0b79ceb8dbc84173ae80d91ca44"
   integrity sha1-EtSj3U5o4Lec6428hBc66A2RykQ=
 
-is-string@^1.0.4:
-  version "1.0.4"
-  resolved "https://registry.yarnpkg.com/is-string/-/is-string-1.0.4.tgz#cc3a9b69857d621e963725a24caeec873b826e64"
-  integrity sha1-zDqbaYV9Yh6WNyWiTK7shzuCbmQ=
+is-string@^1.0.5:
+  version "1.0.5"
+  resolved "https://registry.yarnpkg.com/is-string/-/is-string-1.0.5.tgz#40493ed198ef3ff477b8c7f92f644ec82a5cd3a6"
+  integrity sha512-buY6VNRjhQMiF1qWDouloZlQbRhDPCebwxSjxMjxgemYT46YMd2NR0/H+fBhEfWX4A/w9TBJ+ol+okqJKFE6vQ==
 
 is-subset@^0.1.1:
   version "0.1.1"
@@ -5662,11 +5778,11 @@ is-svg@^3.0.0:
     html-comment-regex "^1.1.0"
 
 is-symbol@^1.0.2:
-  version "1.0.2"
-  resolved "https://registry.yarnpkg.com/is-symbol/-/is-symbol-1.0.2.tgz#a055f6ae57192caee329e7a860118b497a950f38"
-  integrity sha512-HS8bZ9ox60yCJLH9snBpIwv9pYUAkcuLhSA1oero1UB5y9aiQpRA8y2ex945AOtCZL1lJDeIk3G5LthswI46Lw==
+  version "1.0.3"
+  resolved "https://registry.yarnpkg.com/is-symbol/-/is-symbol-1.0.3.tgz#38e1014b9e6329be0de9d24a414fd7441ec61937"
+  integrity sha512-OwijhaRSgqvhm/0ZdAcXNZt9lYdKFpcRDT5ULUuYXPoT794UNOdU+gpT6Rzo7b4V2HUl/op6GqY894AZwv9faQ==
   dependencies:
-    has-symbols "^1.0.0"
+    has-symbols "^1.0.1"
 
 is-typedarray@~1.0.0:
   version "1.0.0"
@@ -5683,7 +5799,7 @@ is-url@^1.2.4:
   resolved "https://registry.yarnpkg.com/is-url/-/is-url-1.2.4.tgz#04a4df46d28c4cff3d73d01ff06abeb318a1aa52"
   integrity sha512-ITvGim8FhRiYe4IQ5uHSkj7pVaPDrCTkNd3yq3cV7iZAcJdHTUMPMEHcqSOy9xZ9qFenQCvi+2wjH9a1nXqHww==
 
-is-windows@^1.0.0, is-windows@^1.0.1, is-windows@^1.0.2:
+is-windows@^1.0.1, is-windows@^1.0.2:
   version "1.0.2"
   resolved "https://registry.yarnpkg.com/is-windows/-/is-windows-1.0.2.tgz#d1850eb9791ecd18e6182ce12a30f396634bb19d"
   integrity sha512-eXK1UInq2bPmjyX6e3VHIzMLobc4J94i4AWn+Hpq3OU5KkrRC96OAcR3PRJ/pGu6m8TRnBHP9dkXQVsT/COVIA==
@@ -6121,15 +6237,7 @@ jest-watcher@^24.9.0:
     jest-util "^24.9.0"
     string-length "^2.0.0"
 
-jest-worker@^24.6.0:
-  version "24.6.0"
-  resolved "https://registry.yarnpkg.com/jest-worker/-/jest-worker-24.6.0.tgz#7f81ceae34b7cde0c9827a6980c35b7cdc0161b3"
-  integrity sha512-jDwgW5W9qGNvpI1tNnvajh0a5IE/PuGLFmHk6aR/BZFz8tSgGw17GsDPXAJ6p91IvYDjOw8GpFbvvZGAK+DPQQ==
-  dependencies:
-    merge-stream "^1.0.1"
-    supports-color "^6.1.0"
-
-jest-worker@^24.9.0:
+jest-worker@^24.6.0, jest-worker@^24.9.0:
   version "24.9.0"
   resolved "https://registry.yarnpkg.com/jest-worker/-/jest-worker-24.9.0.tgz#5dbfdb5b2d322e98567898238a9697bcce67b3e5"
   integrity sha512-51PE4haMSXcHohnSMdM42anbvZANYTqMrr52tVKPqqsPJMzoP6FYYDVqahX/HrAoKEKz3uUPzSvKs9A3qR4iVw==
@@ -6150,11 +6258,6 @@ js-base64@^2.1.9:
   resolved "https://registry.yarnpkg.com/js-base64/-/js-base64-2.5.0.tgz#42255ba183ab67ce59a0dee640afdc00ab5ae93e"
   integrity sha512-wlEBIZ5LP8usDylWbDNhKPEFVFdI5hCHpnVoT/Ysvoi/PRhJENm/Rlh9TvjYB38HFfKZN7OzEbRjmjvLkFw11g==
 
-js-levenshtein@^1.1.3:
-  version "1.1.6"
-  resolved "https://registry.yarnpkg.com/js-levenshtein/-/js-levenshtein-1.1.6.tgz#c6cee58eb3550372df8deb85fad5ce66ce01d59d"
-  integrity sha512-X2BB11YZtrRqY4EnQcLX5Rh373zbK4alC1FW7D7MBhL2gtcC17cTnr6DmfHZeS0s2rTHjUTMMHfG7gO8SSdw+g==
-
 js-string-escape@1.0.1:
   version "1.0.1"
   resolved "https://registry.yarnpkg.com/js-string-escape/-/js-string-escape-1.0.1.tgz#e2625badbc0d67c7533e9edc1068c587ae4137ef"
@@ -6310,10 +6413,10 @@ jsprim@^1.2.2:
     json-schema "0.2.3"
     verror "1.10.0"
 
-jsx-ast-utils@^2.1.0, jsx-ast-utils@^2.2.1:
-  version "2.2.1"
-  resolved "https://registry.yarnpkg.com/jsx-ast-utils/-/jsx-ast-utils-2.2.1.tgz#4d4973ebf8b9d2837ee91a8208cc66f3a2776cfb"
-  integrity sha512-v3FxCcAf20DayI+uxnCuw795+oOIkVu6EnJ1+kSzhqqTZHNkTZ7B66ZgLp4oLJ/gbA64cI0B7WRoHZMSRdyVRQ==
+jsx-ast-utils@^2.2.1, jsx-ast-utils@^2.2.3:
+  version "2.2.3"
+  resolved "https://registry.yarnpkg.com/jsx-ast-utils/-/jsx-ast-utils-2.2.3.tgz#8a9364e402448a3ce7f14d357738310d9248054f"
+  integrity sha512-EdIHFMm+1BPynpKOpdPqiOsvnIrInRGJD7bzPZdPkjitQEqpdpUuFpq4T0npZFKTiB3RhWFdGN+oqOJIdhDhQA==
   dependencies:
     array-includes "^3.0.3"
     object.assign "^4.1.0"
@@ -6384,6 +6487,13 @@ leven@^3.1.0:
   resolved "https://registry.yarnpkg.com/leven/-/leven-3.1.0.tgz#77891de834064cccba82ae7842bb6b14a13ed7f2"
   integrity sha512-qsda+H8jTaUaN/x5vzW2rzc+8Rw4TAQ/4KjB46IwK5VH+IlVeeeje/EoZRpiXvIqjFgK84QffqPztGI3VBLG1A==
 
+levenary@^1.1.0:
+  version "1.1.0"
+  resolved "https://registry.yarnpkg.com/levenary/-/levenary-1.1.0.tgz#fc146fe75f32dc483a0a2c64aef720f602cd6210"
+  integrity sha512-VHcwhO0UTpUW7rLPN2/OiWJdgA1e9BqEDALhrgCe/F+uUJnep6CoUsTzMeP8Rh0NGr9uKquXxqe7lwLZo509nQ==
+  dependencies:
+    leven "^3.1.0"
+
 levn@^0.3.0, levn@~0.3.0:
   version "0.3.0"
   resolved "https://registry.yarnpkg.com/levn/-/levn-0.3.0.tgz#3b09924edf9f083c0490fdd4c0bc4421e04764ee"
@@ -6392,6 +6502,11 @@ levn@^0.3.0, levn@~0.3.0:
     prelude-ls "~1.1.2"
     type-check "~0.3.2"
 
+lines-and-columns@^1.1.6:
+  version "1.1.6"
+  resolved "https://registry.yarnpkg.com/lines-and-columns/-/lines-and-columns-1.1.6.tgz#1c00c743b433cd0a4e80758f7b64a57440d9ff00"
+  integrity sha1-HADHQ7QzzQpOgHWPe2SldEDZ/wA=
+
 load-json-file@^2.0.0:
   version "2.0.0"
   resolved "https://registry.yarnpkg.com/load-json-file/-/load-json-file-2.0.0.tgz#7947e42149af80d696cbf797bcaabcfe1fe29ca8"
@@ -6427,7 +6542,7 @@ loader-utils@0.2.x:
     json5 "^0.5.0"
     object-assign "^4.0.1"
 
-loader-utils@1.2.3, loader-utils@^1.0.1, loader-utils@^1.0.2, loader-utils@^1.1.0, loader-utils@^1.2.3:
+loader-utils@1.2.3, loader-utils@^1.0.2, loader-utils@^1.1.0, loader-utils@^1.2.3:
   version "1.2.3"
   resolved "https://registry.yarnpkg.com/loader-utils/-/loader-utils-1.2.3.tgz#1ff5dc6911c9f0a062531a4c04b609406108c2c7"
   integrity sha512-fkpz8ejdnEMG3s37wGL07iSBDg99O9D5yflE9RGNH3hRdx9SOwYfnGYdZOUIZitN8E+E2vkq3MUMYMvPYl5ZZA==
@@ -6519,25 +6634,20 @@ lodash.sortby@^4.7.0:
   resolved "https://registry.yarnpkg.com/lodash.sortby/-/lodash.sortby-4.7.0.tgz#edd14c824e2cc9c1e0b0a1b42bb5210516a42438"
   integrity sha1-7dFMgk4sycHgsKG0K7UhBRakJDg=
 
-lodash.tail@^4.1.1:
-  version "4.1.1"
-  resolved "https://registry.yarnpkg.com/lodash.tail/-/lodash.tail-4.1.1.tgz#d2333a36d9e7717c8ad2f7cacafec7c32b444664"
-  integrity sha1-0jM6NtnncXyK0vfKyv7HwytERmQ=
-
 lodash.uniq@^4.5.0:
   version "4.5.0"
   resolved "https://registry.yarnpkg.com/lodash.uniq/-/lodash.uniq-4.5.0.tgz#d0225373aeb652adc1bc82e4945339a842754773"
   integrity sha1-0CJTc662Uq3BvILklFM5qEJ1R3M=
 
-lodash@^4.0.0, lodash@^4.13.1, lodash@^4.15.0, lodash@^4.17.10, lodash@^4.17.11, lodash@^4.17.12, lodash@^4.17.13, lodash@^4.17.14, lodash@^4.17.15, lodash@^4.3.0, lodash@~4.17.10:
+lodash@^4.0.0, lodash@^4.13.1, lodash@^4.15.0, lodash@^4.17.10, lodash@^4.17.11, lodash@^4.17.13, lodash@^4.17.14, lodash@^4.17.15, lodash@^4.3.0, lodash@~4.17.10:
   version "4.17.15"
   resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.15.tgz#b447f6670a0455bbfeedd11392eff330ea097548"
   integrity sha512-8xOcRHvCjnocdS5cpwXQXVzmmh5e5+saE2QGoeQmbKmRS6J3VQppPOIt0MnmE+4xlZoumy0GPG0D0MVIQbNA1A==
 
-loglevel@^1.6.4:
-  version "1.6.4"
-  resolved "https://registry.yarnpkg.com/loglevel/-/loglevel-1.6.4.tgz#f408f4f006db8354d0577dcf6d33485b3cb90d56"
-  integrity sha512-p0b6mOGKcGa+7nnmKbpzR6qloPbrgLcnio++E+14Vo/XffOGwZtRpUhr8dTH/x2oCMmEoIU0Zwm3ZauhvYD17g==
+loglevel@^1.6.6:
+  version "1.6.6"
+  resolved "https://registry.yarnpkg.com/loglevel/-/loglevel-1.6.6.tgz#0ee6300cc058db6b3551fa1c4bf73b83bb771312"
+  integrity sha512-Sgr5lbboAUBo3eXCSPL4/KoVz3ROKquOjcctxmHIt+vol2DrqTQe3SwkKKuYhEiWB5kYa13YyopJ69deJ1irzQ==
 
 loose-envify@^1.0.0, loose-envify@^1.1.0, loose-envify@^1.2.0, loose-envify@^1.3.1, loose-envify@^1.4.0:
   version "1.4.0"
@@ -6662,13 +6772,6 @@ merge-descriptors@1.0.1:
   resolved "https://registry.yarnpkg.com/merge-descriptors/-/merge-descriptors-1.0.1.tgz#b00aaa556dd8b44568150ec9d1b953f3f90cbb61"
   integrity sha1-sAqqVW3YtEVoFQ7J0blT8/kMu2E=
 
-merge-stream@^1.0.1:
-  version "1.0.1"
-  resolved "https://registry.yarnpkg.com/merge-stream/-/merge-stream-1.0.1.tgz#4041202d508a342ba00174008df0c251b8c135e1"
-  integrity sha1-QEEgLVCKNCugAXQAjfDCUbjBNeE=
-  dependencies:
-    readable-stream "^2.0.1"
-
 merge-stream@^2.0.0:
   version "2.0.0"
   resolved "https://registry.yarnpkg.com/merge-stream/-/merge-stream-2.0.0.tgz#52823629a14dd00c9770fb6ad47dc6310f2c1f60"
@@ -6750,20 +6853,15 @@ mime@^2.4.4:
   resolved "https://registry.yarnpkg.com/mime/-/mime-2.4.4.tgz#bd7b91135fc6b01cde3e9bae33d659b63d8857e5"
   integrity sha512-LRxmNwziLPT828z+4YkNzloCFC2YM4wrB99k+AV5ZbEyfGNWfG8SO1FUXLmLDBSo89NrJZ4DIWeLjy1CHGhMGA==
 
-mimic-fn@^1.0.0:
-  version "1.2.0"
-  resolved "https://registry.yarnpkg.com/mimic-fn/-/mimic-fn-1.2.0.tgz#820c86a39334640e99516928bd03fca88057d022"
-  integrity sha512-jf84uxzwiuiIVKiOLpfYk7N46TSy8ubTonmneY9vrpHNAnp0QBt2BxWV9dO3/j+BoVAb+a5G6YDPW3M5HOdMWQ==
-
-mimic-fn@^2.0.0:
+mimic-fn@^2.0.0, mimic-fn@^2.1.0:
   version "2.1.0"
   resolved "https://registry.yarnpkg.com/mimic-fn/-/mimic-fn-2.1.0.tgz#7ed2c2ccccaf84d3ffcb7a69b57711fc2083401b"
   integrity sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==
 
-mini-css-extract-plugin@^0.8.0:
-  version "0.8.0"
-  resolved "https://registry.yarnpkg.com/mini-css-extract-plugin/-/mini-css-extract-plugin-0.8.0.tgz#81d41ec4fe58c713a96ad7c723cdb2d0bd4d70e1"
-  integrity sha512-MNpRGbNA52q6U92i0qbVpQNsgk7LExy41MdAlG84FeytfDOtRIf/mCHdEgG8rpTKOaNKiqUnZdlptF469hxqOw==
+mini-css-extract-plugin@^0.9.0:
+  version "0.9.0"
+  resolved "https://registry.yarnpkg.com/mini-css-extract-plugin/-/mini-css-extract-plugin-0.9.0.tgz#47f2cf07aa165ab35733b1fc97d4c46c0564339e"
+  integrity sha512-lp3GeY7ygcgAmVIcRPBVhIkf8Us7FZjA+ILpal44qLdSu11wmjKQ3d9k15lfD7pO4esu9eUIAW7qiYIBppv40A==
   dependencies:
     loader-utils "^1.1.0"
     normalize-url "1.9.1"
@@ -6807,6 +6905,27 @@ minimist@~0.0.1:
   resolved "https://registry.yarnpkg.com/minimist/-/minimist-0.0.10.tgz#de3f98543dbf96082be48ad1a0c7cda836301dcf"
   integrity sha1-3j+YVD2/lggr5IrRoMfNqDYwHc8=
 
+minipass-collect@^1.0.2:
+  version "1.0.2"
+  resolved "https://registry.yarnpkg.com/minipass-collect/-/minipass-collect-1.0.2.tgz#22b813bf745dc6edba2576b940022ad6edc8c617"
+  integrity sha512-6T6lH0H8OG9kITm/Jm6tdooIbogG9e0tLgpY6mphXSm/A9u8Nq1ryBG+Qspiub9LjWlBPsPS3tWQ/Botq4FdxA==
+  dependencies:
+    minipass "^3.0.0"
+
+minipass-flush@^1.0.5:
+  version "1.0.5"
+  resolved "https://registry.yarnpkg.com/minipass-flush/-/minipass-flush-1.0.5.tgz#82e7135d7e89a50ffe64610a787953c4c4cbb373"
+  integrity sha512-JmQSYYpPUqX5Jyn1mXaRwOda1uQ8HP5KAT/oDSLCzt1BYRhQU0/hDtsB1ufZfEEzMZ9aAVmsBw8+FWsIXlClWw==
+  dependencies:
+    minipass "^3.0.0"
+
+minipass-pipeline@^1.2.2:
+  version "1.2.2"
+  resolved "https://registry.yarnpkg.com/minipass-pipeline/-/minipass-pipeline-1.2.2.tgz#3dcb6bb4a546e32969c7ad710f2c79a86abba93a"
+  integrity sha512-3JS5A2DKhD2g0Gg8x3yamO0pj7YeKGwVlDS90pF++kxptwx/F+B//roxf9SqYil5tQo65bijy+dAuAFZmYOouA==
+  dependencies:
+    minipass "^3.0.0"
+
 minipass@^2.6.0, minipass@^2.8.6, minipass@^2.9.0:
   version "2.9.0"
   resolved "https://registry.yarnpkg.com/minipass/-/minipass-2.9.0.tgz#e713762e7d3e32fed803115cf93e04bca9fcc9a6"
@@ -6815,6 +6934,13 @@ minipass@^2.6.0, minipass@^2.8.6, minipass@^2.9.0:
     safe-buffer "^5.1.2"
     yallist "^3.0.0"
 
+minipass@^3.0.0, minipass@^3.1.1:
+  version "3.1.1"
+  resolved "https://registry.yarnpkg.com/minipass/-/minipass-3.1.1.tgz#7607ce778472a185ad6d89082aa2070f79cedcd5"
+  integrity sha512-UFqVihv6PQgwj8/yTGvl9kPz7xIAY+R5z6XYjRInD3Gk3qx6QGSD6zEcpeG4Dy/lQnv1J6zv8ejV90hyYIKf3w==
+  dependencies:
+    yallist "^4.0.0"
+
 minizlib@^1.2.1:
   version "1.3.3"
   resolved "https://registry.yarnpkg.com/minizlib/-/minizlib-1.3.3.tgz#2290de96818a34c29551c8a8d301216bd65a861d"
@@ -6846,15 +6972,7 @@ mixin-deep@^1.2.0:
     for-in "^1.0.2"
     is-extendable "^1.0.1"
 
-mixin-object@^2.0.1:
-  version "2.0.1"
-  resolved "https://registry.yarnpkg.com/mixin-object/-/mixin-object-2.0.1.tgz#4fb949441dab182540f1fe035ba60e1947a5e57e"
-  integrity sha1-T7lJRB2rGCVA8f4DW6YOGUel5X4=
-  dependencies:
-    for-in "^0.1.3"
-    is-extendable "^0.1.1"
-
-mkdirp@0.5.x, mkdirp@^0.5, mkdirp@^0.5.0, mkdirp@^0.5.1, mkdirp@~0.5.1:
+mkdirp@^0.5, mkdirp@^0.5.0, mkdirp@^0.5.1, mkdirp@~0.5.1:
   version "0.5.1"
   resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.1.tgz#30057438eac6cf7f8c4767f38648d6697d75c903"
   integrity sha1-MAV0OOrGz3+MR2fzhkjWaX11yQM=
@@ -6916,10 +7034,10 @@ mute-stream@0.0.5:
   resolved "https://registry.yarnpkg.com/mute-stream/-/mute-stream-0.0.5.tgz#8fbfabb0a98a253d3184331f9e8deb7372fac6c0"
   integrity sha1-j7+rsKmKJT0xhDMfno3rc3L6xsA=
 
-mute-stream@0.0.7:
-  version "0.0.7"
-  resolved "https://registry.yarnpkg.com/mute-stream/-/mute-stream-0.0.7.tgz#3075ce93bc21b8fab43e1bc4da7e8115ed1e7bab"
-  integrity sha1-MHXOk7whuPq0PhvE2n6BFe0ee6s=
+mute-stream@0.0.8:
+  version "0.0.8"
+  resolved "https://registry.yarnpkg.com/mute-stream/-/mute-stream-0.0.8.tgz#1630c42b2251ff81e2a283de96a5497ea92e5e0d"
+  integrity sha512-nnbWWOkoWyUsTjKrhgD0dcz22mdkSnpYqbEjIm2nhwhuxlSkpywJmBo8h0ZqJdkp73mb90SssHkN4rsRaBAfAA==
 
 nan@^2.12.1:
   version "2.14.0"
@@ -6996,10 +7114,10 @@ node-fetch@^1.0.1:
     encoding "^0.1.11"
     is-stream "^1.0.1"
 
-node-forge@0.8.2:
-  version "0.8.2"
-  resolved "https://registry.yarnpkg.com/node-forge/-/node-forge-0.8.2.tgz#b4bcc59fb12ce77a8825fc6a783dfe3182499c5a"
-  integrity sha512-mXQ9GBq1N3uDCyV1pdSzgIguwgtVpM7f5/5J4ipz12PKWElmPpVWLDuWl8iXmhysr21+WmX/OJ5UKx82wjomgg==
+node-forge@0.9.0:
+  version "0.9.0"
+  resolved "https://registry.yarnpkg.com/node-forge/-/node-forge-0.9.0.tgz#d624050edbb44874adca12bb9a52ec63cb782579"
+  integrity sha512-7ASaDa3pD+lJ3WvXFsxekJQelBKRpne+GOVbLbtHYdd7pFspyeuJHnWfLplGf3SwKGbfs/aYl5V/JCIaHVUKKQ==
 
 node-int64@^0.4.0:
   version "0.4.0"
@@ -7067,12 +7185,12 @@ node-pre-gyp@^0.12.0:
     semver "^5.3.0"
     tar "^4"
 
-node-releases@^1.1.25:
-  version "1.1.26"
-  resolved "https://registry.yarnpkg.com/node-releases/-/node-releases-1.1.26.tgz#f30563edc5c7dc20cf524cc8652ffa7be0762937"
-  integrity sha512-fZPsuhhUHMTlfkhDLGtfY80DSJTjOcx+qD1j5pqPkuhUHVS7xHZIg9EE4DHK8O3f0zTxXHX5VIkDG8pu98/wfQ==
+node-releases@^1.1.44:
+  version "1.1.45"
+  resolved "https://registry.yarnpkg.com/node-releases/-/node-releases-1.1.45.tgz#4cf7e9175d71b1317f15ffd68ce63bce1d53e9f2"
+  integrity sha512-cXvGSfhITKI8qsV116u2FTzH5EWZJfgG7d4cpqwF8I8+1tWpD6AsvvGRKq2onR0DNj1jfqsjkXZsm14JMS7Cyg==
   dependencies:
-    semver "^5.3.0"
+    semver "^6.3.0"
 
 nopt@^4.0.1:
   version "4.0.1"
@@ -7082,13 +7200,6 @@ nopt@^4.0.1:
     abbrev "1"
     osenv "^0.1.4"
 
-nopt@~1.0.10:
-  version "1.0.10"
-  resolved "https://registry.yarnpkg.com/nopt/-/nopt-1.0.10.tgz#6ddd21bd2a31417b92727dd585f8a6f37608ebee"
-  integrity sha1-bd0hvSoxQXuScn3Vhfim83YI6+4=
-  dependencies:
-    abbrev "1"
-
 normalize-package-data@^2.3.2:
   version "2.4.0"
   resolved "https://registry.yarnpkg.com/normalize-package-data/-/normalize-package-data-2.4.0.tgz#12f95a307d58352075a04907b84ac8be98ac012f"
@@ -7212,22 +7323,17 @@ object-fit-images@^3.2.3:
   resolved "https://registry.yarnpkg.com/object-fit-images/-/object-fit-images-3.2.4.tgz#6c299d38fdf207746e5d2d46c2877f6f25d15b52"
   integrity sha512-G+7LzpYfTfqUyrZlfrou/PLLLAPNC52FTy5y1CBywX+1/FkxIloOyQXBmZ3Zxa2AWO+lMF0JTuvqbr7G5e5CWg==
 
-object-inspect@^1.6.0:
-  version "1.6.0"
-  resolved "https://registry.yarnpkg.com/object-inspect/-/object-inspect-1.6.0.tgz#c70b6cbf72f274aab4c34c0c82f5167bf82cf15b"
-  integrity sha512-GJzfBZ6DgDAmnuaM3104jR4s1Myxr3Y3zfIyN4z3UdqN69oSRacNK8UhnobDdC+7J2AHCjGwxQubNJfE70SXXQ==
-
-object-is@^1.0.1:
-  version "1.0.1"
-  resolved "https://registry.yarnpkg.com/object-is/-/object-is-1.0.1.tgz#0aa60ec9989a0b3ed795cf4d06f62cf1ad6539b6"
-  integrity sha1-CqYOyZiaCz7Xlc9NBvYs8a1lObY=
+object-inspect@^1.7.0:
+  version "1.7.0"
+  resolved "https://registry.yarnpkg.com/object-inspect/-/object-inspect-1.7.0.tgz#f4f6bd181ad77f006b5ece60bd0b6f398ff74a67"
+  integrity sha512-a7pEHdh1xKIAgTySUGgLMx/xwDZskN1Ud6egYYN3EdRW4ZMPNEDUTF+hwy2LUC+Bl+SyLXANnwz/jyh/qutKUw==
 
-object-keys@^1.0.11, object-keys@^1.0.12:
-  version "1.0.12"
-  resolved "https://registry.yarnpkg.com/object-keys/-/object-keys-1.0.12.tgz#09c53855377575310cca62f55bb334abff7b3ed2"
-  integrity sha512-FTMyFUm2wBcGHnH2eXmz7tC6IwlqQZ6mVZ+6dm6vZ4IQIHjs6FdNsQBuKGPuUUUY6NfJw2PshC08Tn6LzLDOag==
+object-is@^1.0.1, object-is@^1.0.2:
+  version "1.0.2"
+  resolved "https://registry.yarnpkg.com/object-is/-/object-is-1.0.2.tgz#6b80eb84fe451498f65007982f035a5b445edec4"
+  integrity sha512-Epah+btZd5wrrfjkJZq1AOB9O6OxUQto45hzFd7lXGrpHPGE0W1k+426yrZV+k6NJOzLNNW/nVsmZdIWsAqoOQ==
 
-object-keys@^1.1.1:
+object-keys@^1.0.11, object-keys@^1.0.12, object-keys@^1.1.1:
   version "1.1.1"
   resolved "https://registry.yarnpkg.com/object-keys/-/object-keys-1.1.1.tgz#1c47f272df277f3b1daf061677d9c82e2322c60e"
   integrity sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==
@@ -7249,25 +7355,35 @@ object.assign@^4.1.0:
     has-symbols "^1.0.0"
     object-keys "^1.0.11"
 
-object.entries@^1.0.4, object.entries@^1.1.0:
-  version "1.1.0"
-  resolved "https://registry.yarnpkg.com/object.entries/-/object.entries-1.1.0.tgz#2024fc6d6ba246aee38bdb0ffd5cfbcf371b7519"
-  integrity sha512-l+H6EQ8qzGRxbkHOd5I/aHRhHDKoQXQ8g0BYt4uSweQU1/J6dZUOyWh9a2Vky35YCKjzmgxOzta2hH6kf9HuXA==
+object.entries@^1.1.0, object.entries@^1.1.1:
+  version "1.1.1"
+  resolved "https://registry.yarnpkg.com/object.entries/-/object.entries-1.1.1.tgz#ee1cf04153de02bb093fec33683900f57ce5399b"
+  integrity sha512-ilqR7BgdyZetJutmDPfXCDffGa0/Yzl2ivVNpbx/g4UeWrCdRnFDUBrKJGLhGieRHDATnyZXWBeCb29k9CJysQ==
   dependencies:
     define-properties "^1.1.3"
-    es-abstract "^1.12.0"
+    es-abstract "^1.17.0-next.1"
     function-bind "^1.1.1"
     has "^1.0.3"
 
-object.fromentries@^2.0.0:
-  version "2.0.0"
-  resolved "https://registry.yarnpkg.com/object.fromentries/-/object.fromentries-2.0.0.tgz#49a543d92151f8277b3ac9600f1e930b189d30ab"
-  integrity sha512-9iLiI6H083uiqUuvzyY6qrlmc/Gz8hLQFOcb/Ri/0xXFkSNS3ctV+CbE6yM2+AnkYfOB3dGjdzC0wrMLIhQICA==
+object.fromentries@^2.0.1:
+  version "2.0.1"
+  resolved "https://registry.yarnpkg.com/object.fromentries/-/object.fromentries-2.0.1.tgz#050f077855c7af8ae6649f45c80b16ee2d31e704"
+  integrity sha512-PUQv8Hbg3j2QX0IQYv3iAGCbGcu4yY4KQ92/dhA4sFSixBmSmp13UpDLs6jGK8rBtbmhNNIK99LD2k293jpiGA==
   dependencies:
-    define-properties "^1.1.2"
-    es-abstract "^1.11.0"
+    define-properties "^1.1.3"
+    es-abstract "^1.15.0"
+    function-bind "^1.1.1"
+    has "^1.0.3"
+
+object.fromentries@^2.0.2:
+  version "2.0.2"
+  resolved "https://registry.yarnpkg.com/object.fromentries/-/object.fromentries-2.0.2.tgz#4a09c9b9bb3843dd0f89acdb517a794d4f355ac9"
+  integrity sha512-r3ZiBH7MQppDJVLx6fhD618GKNG40CZYH9wgwdhKxBDDbQgjeWGGd4AtkZad84d291YxvWe7bJGuE65Anh0dxQ==
+  dependencies:
+    define-properties "^1.1.3"
+    es-abstract "^1.17.0-next.1"
     function-bind "^1.1.1"
-    has "^1.0.1"
+    has "^1.0.3"
 
 object.getownpropertydescriptors@^2.0.3:
   version "2.0.3"
@@ -7284,13 +7400,13 @@ object.pick@^1.3.0:
   dependencies:
     isobject "^3.0.1"
 
-object.values@^1.0.4, object.values@^1.1.0:
-  version "1.1.0"
-  resolved "https://registry.yarnpkg.com/object.values/-/object.values-1.1.0.tgz#bf6810ef5da3e5325790eaaa2be213ea84624da9"
-  integrity sha512-8mf0nKLAoFX6VlNVdhGj31SVYpaNFtUnuoOXWyFEstsWRgU837AK+JYM0iAxwkSzGRbwn8cbFmgbyxj1j4VbXg==
+object.values@^1.0.4, object.values@^1.1.0, object.values@^1.1.1:
+  version "1.1.1"
+  resolved "https://registry.yarnpkg.com/object.values/-/object.values-1.1.1.tgz#68a99ecde356b7e9295a3c5e0ce31dc8c953de5e"
+  integrity sha512-WTa54g2K8iu0kmS/us18jEmdv1a4Wi//BZ/DTVYEcH0XhLM5NYdpDHja3gt57VrZLcNAO2WGA+KpWsDBaHt6eA==
   dependencies:
     define-properties "^1.1.3"
-    es-abstract "^1.12.0"
+    es-abstract "^1.17.0-next.1"
     function-bind "^1.1.1"
     has "^1.0.3"
 
@@ -7334,12 +7450,12 @@ onetime@^1.0.0:
   resolved "https://registry.yarnpkg.com/onetime/-/onetime-1.1.0.tgz#a1f7838f8314c516f05ecefcbc4ccfe04b4ed789"
   integrity sha1-ofeDj4MUxRbwXs78vEzP4EtO14k=
 
-onetime@^2.0.0:
-  version "2.0.1"
-  resolved "https://registry.yarnpkg.com/onetime/-/onetime-2.0.1.tgz#067428230fd67443b2794b22bba528b6867962d4"
-  integrity sha1-BnQoIw/WdEOyeUsiu6UotoZ5YtQ=
+onetime@^5.1.0:
+  version "5.1.0"
+  resolved "https://registry.yarnpkg.com/onetime/-/onetime-5.1.0.tgz#fff0f3c91617fe62bb50189636e99ac8a6df7be5"
+  integrity sha512-5NcSkPHhwTVFIQN+TUqXoS5+dlElHXdpAWu9I0HP20YOtIi+aZ0Ct82jdlILDxjLEAWwvm+qj1m6aEtsDVmm6Q==
   dependencies:
-    mimic-fn "^1.0.0"
+    mimic-fn "^2.1.0"
 
 opencollective-postinstall@^2.0.2:
   version "2.0.2"
@@ -7366,17 +7482,17 @@ optimist@^0.6.1:
     minimist "~0.0.1"
     wordwrap "~0.0.2"
 
-optionator@^0.8.1, optionator@^0.8.2:
-  version "0.8.2"
-  resolved "https://registry.yarnpkg.com/optionator/-/optionator-0.8.2.tgz#364c5e409d3f4d6301d6c0b4c05bba50180aeb64"
-  integrity sha1-NkxeQJ0/TWMB1sC0wFu6UBgK62Q=
+optionator@^0.8.1, optionator@^0.8.3:
+  version "0.8.3"
+  resolved "https://registry.yarnpkg.com/optionator/-/optionator-0.8.3.tgz#84fa1d036fe9d3c7e21d99884b601167ec8fb495"
+  integrity sha512-+IW9pACdk3XWmmTXG8m3upGUJst5XRGzxMRjXzAuJ1XnIFNvfhjjIuYkDvysnPQ7qzqVzLt78BCruntqRhWQbA==
   dependencies:
     deep-is "~0.1.3"
-    fast-levenshtein "~2.0.4"
+    fast-levenshtein "~2.0.6"
     levn "~0.3.0"
     prelude-ls "~1.1.2"
     type-check "~0.3.2"
-    wordwrap "~1.0.0"
+    word-wrap "~1.2.3"
 
 original@^1.0.0:
   version "1.0.2"
@@ -7446,20 +7562,13 @@ p-limit@^1.1.0:
   dependencies:
     p-try "^1.0.0"
 
-p-limit@^2.0.0:
+p-limit@^2.0.0, p-limit@^2.2.0, p-limit@^2.2.1:
   version "2.2.1"
   resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-2.2.1.tgz#aa07a788cc3151c939b5131f63570f0dd2009537"
   integrity sha512-85Tk+90UCVWvbDavCLKPOLC9vvY8OwEX/RtKF+/1OADJMVlFfEHOiMTPVyxg7mk/dKa+ipdHm0OUkTvCpMTuwg==
   dependencies:
     p-try "^2.0.0"
 
-p-limit@^2.2.0:
-  version "2.2.0"
-  resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-2.2.0.tgz#417c9941e6027a9abcba5092dd2904e255b5fbc2"
-  integrity sha512-pZbTJpoUsCzV48Mc9Nh51VbwO0X9cuPFE8gYwx9BTCt9SF8/b7Zljd2fVgOxhIF/HDTKgpVzs+GPhyKfjLLFRQ==
-  dependencies:
-    p-try "^2.0.0"
-
 p-locate@^2.0.0:
   version "2.0.0"
   resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-2.0.0.tgz#20a0103b222a70c8fd39cc2e580680f3dde5ec43"
@@ -7486,6 +7595,13 @@ p-map@^2.0.0:
   resolved "https://registry.yarnpkg.com/p-map/-/p-map-2.1.0.tgz#310928feef9c9ecc65b68b17693018a665cea175"
   integrity sha512-y3b8Kpd8OAN444hxfBbFfj1FY/RjtTd8tzYwhUqNYXx0fXx2iX4maP4Qr6qhIKbQXI02wTLAda4fYUbDagTUFw==
 
+p-map@^3.0.0:
+  version "3.0.0"
+  resolved "https://registry.yarnpkg.com/p-map/-/p-map-3.0.0.tgz#d704d9af8a2ba684e2600d9a215983d4141a979d"
+  integrity sha512-d3qXVTF/s+W+CdJ5A29wywV2n8CQQYahlgz2bFiA+4eVNJbHJodPZ+/gXwPGh0bOqA+j8S+6+ckmvLGPk1QpxQ==
+  dependencies:
+    aggregate-error "^3.0.0"
+
 p-reduce@^1.0.0:
   version "1.0.0"
   resolved "https://registry.yarnpkg.com/p-reduce/-/p-reduce-1.0.0.tgz#18c2b0dd936a4690a529f8231f58a0fdb6a47dfa"
@@ -7576,6 +7692,16 @@ parse-json@^4.0.0:
     error-ex "^1.3.1"
     json-parse-better-errors "^1.0.1"
 
+parse-json@^5.0.0:
+  version "5.0.0"
+  resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-5.0.0.tgz#73e5114c986d143efa3712d4ea24db9a4266f60f"
+  integrity sha512-OOY5b7PAEFV0E2Fir1KOkxchnZNCdowAJgQ5NuxjpBKTRP3pQhwkrkxqQjeoKJ+fO7bCpmIZaogI4eZGDMEGOw==
+  dependencies:
+    "@babel/code-frame" "^7.0.0"
+    error-ex "^1.3.1"
+    json-parse-better-errors "^1.0.1"
+    lines-and-columns "^1.1.6"
+
 parse-passwd@^1.0.0:
   version "1.0.0"
   resolved "https://registry.yarnpkg.com/parse-passwd/-/parse-passwd-1.0.0.tgz#6d5b934a456993b23d37f40a382d6f1666a8e5c6"
@@ -7643,6 +7769,11 @@ path-key@^2.0.0, path-key@^2.0.1:
   resolved "https://registry.yarnpkg.com/path-key/-/path-key-2.0.1.tgz#411cadb574c5a140d3a4b1910d40d80cc9f40b40"
   integrity sha1-QRyttXTFoUDTpLGRDUDYDMn0C0A=
 
+path-key@^3.1.0:
+  version "3.1.0"
+  resolved "https://registry.yarnpkg.com/path-key/-/path-key-3.1.0.tgz#99a10d870a803bdd5ee6f0470e58dfcd2f9a54d3"
+  integrity sha512-8cChqz0RP6SHJkMt48FW0A7+qUOn+OsnOsVtzI59tZ8m+5bCSk7hzwET0pulwOM2YMn9J1efb07KB9l9f30SGg==
+
 path-parse@^1.0.6:
   version "1.0.6"
   resolved "https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.6.tgz#d62dbb5679405d72c4737ec58600e9ddcf06d24c"
@@ -7674,6 +7805,11 @@ path-type@^3.0.0:
   dependencies:
     pify "^3.0.0"
 
+path-type@^4.0.0:
+  version "4.0.0"
+  resolved "https://registry.yarnpkg.com/path-type/-/path-type-4.0.0.tgz#84ed01c0a7ba380afe09d90a8c180dcd9d03043b"
+  integrity sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==
+
 pbkdf2@^3.0.3:
   version "3.0.17"
   resolved "https://registry.yarnpkg.com/pbkdf2/-/pbkdf2-3.0.17.tgz#976c206530617b14ebb32114239f7b09336e93a6"
@@ -7815,14 +7951,14 @@ pn@^1.1.0:
   resolved "https://registry.yarnpkg.com/pn/-/pn-1.1.0.tgz#e2f4cef0e219f463c179ab37463e4e1ecdccbafb"
   integrity sha512-2qHaIQr2VLRFoxe2nASzsV6ef4yOOH+Fi9FBOVH6cqeSgUnoyySPZkxzLuzd+RYOQTRpROA0ztTMqxROKSb/nA==
 
-portfinder@^1.0.24:
-  version "1.0.24"
-  resolved "https://registry.yarnpkg.com/portfinder/-/portfinder-1.0.24.tgz#11efbc6865f12f37624b6531ead1d809ed965cfa"
-  integrity sha512-ekRl7zD2qxYndYflwiryJwMioBI7LI7rVXg3EnLK3sjkouT5eOuhS3gS255XxBksa30VG8UPZYZCdgfGOfkSUg==
+portfinder@^1.0.25:
+  version "1.0.25"
+  resolved "https://registry.yarnpkg.com/portfinder/-/portfinder-1.0.25.tgz#254fd337ffba869f4b9d37edc298059cb4d35eca"
+  integrity sha512-6ElJnHBbxVA1XSLgBp7G1FiCkQdlqGzuF7DswL5tcea+E8UpuvPU7beVAjjRwCioTS9ZluNbu+ZyRvgTsmqEBg==
   dependencies:
-    async "^1.5.2"
-    debug "^2.2.0"
-    mkdirp "0.5.x"
+    async "^2.6.2"
+    debug "^3.1.1"
+    mkdirp "^0.5.1"
 
 posix-character-classes@^0.1.0:
   version "0.1.1"
@@ -7983,10 +8119,10 @@ postcss-modules-local-by-default@^3.0.2:
     postcss-selector-parser "^6.0.2"
     postcss-value-parser "^4.0.0"
 
-postcss-modules-scope@^2.1.0:
-  version "2.1.0"
-  resolved "https://registry.yarnpkg.com/postcss-modules-scope/-/postcss-modules-scope-2.1.0.tgz#ad3f5bf7856114f6fcab901b0502e2a2bc39d4eb"
-  integrity sha512-91Rjps0JnmtUB0cujlc8KIKCsJXWjzuxGeT/+Q2i2HXKZ7nBUeF9YQTZZTNvHVoNYj1AthsjnGLtqDUE0Op79A==
+postcss-modules-scope@^2.1.1:
+  version "2.1.1"
+  resolved "https://registry.yarnpkg.com/postcss-modules-scope/-/postcss-modules-scope-2.1.1.tgz#33d4fc946602eb5e9355c4165d68a10727689dba"
+  integrity sha512-OXRUPecnHCg8b9xWvldG/jUpRIGPNRka0r4D4j0ESUU2/5IOnpsjfPPmDprM3Ih8CgZ8FXjWqaniK5v4rWt3oQ==
   dependencies:
     postcss "^7.0.6"
     postcss-selector-parser "^6.0.0"
@@ -8169,10 +8305,10 @@ postcss-value-parser@^3.0.0, postcss-value-parser@^3.3.1:
   resolved "https://registry.yarnpkg.com/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz#9ff822547e2893213cf1c30efa51ac5fd1ba8281"
   integrity sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==
 
-postcss-value-parser@^4.0.0:
-  version "4.0.0"
-  resolved "https://registry.yarnpkg.com/postcss-value-parser/-/postcss-value-parser-4.0.0.tgz#99a983d365f7b2ad8d0f9b8c3094926eab4b936d"
-  integrity sha512-ESPktioptiSUchCKgggAkzdmkgzKfmp0EU8jXH+5kbIUB+unr0Y4CY9SRMvibuvYUBjNh1ACLbxqYNpdTQOteQ==
+postcss-value-parser@^4.0.0, postcss-value-parser@^4.0.2:
+  version "4.0.2"
+  resolved "https://registry.yarnpkg.com/postcss-value-parser/-/postcss-value-parser-4.0.2.tgz#482282c09a42706d1fc9a069b73f44ec08391dc9"
+  integrity sha512-LmeoohTpp/K4UiyQCwuGWlONxXamGzCMtFxLq4W1nZVGIQLYvMCJx3yAF9qyyuFpflABI9yVdtJAqbihOsCsJQ==
 
 postcss@^5.0.16:
   version "5.2.18"
@@ -8184,10 +8320,10 @@ postcss@^5.0.16:
     source-map "^0.5.6"
     supports-color "^3.2.3"
 
-postcss@^7.0.0, postcss@^7.0.1, postcss@^7.0.14, postcss@^7.0.16, postcss@^7.0.17, postcss@^7.0.5, postcss@^7.0.6:
-  version "7.0.17"
-  resolved "https://registry.yarnpkg.com/postcss/-/postcss-7.0.17.tgz#4da1bdff5322d4a0acaab4d87f3e782436bad31f"
-  integrity sha512-546ZowA+KZ3OasvQZHsbuEpysvwTZNGJv9EfyCQdsIDltPSWHAeTQ5fQy/Npi2ZDtLI3zs7Ps/p6wThErhm9fQ==
+postcss@^7.0.0, postcss@^7.0.1, postcss@^7.0.14, postcss@^7.0.16, postcss@^7.0.23, postcss@^7.0.26, postcss@^7.0.5, postcss@^7.0.6:
+  version "7.0.26"
+  resolved "https://registry.yarnpkg.com/postcss/-/postcss-7.0.26.tgz#5ed615cfcab35ba9bbb82414a4fa88ea10429587"
+  integrity sha512-IY4oRjpXWYshuTDFxMVkJDtWIk2LhsTlu8bZnbEJA4+bYT16Lvpo8Qv6EvDumhYRgzjZl489pmsY3qVgJQ08nA==
   dependencies:
     chalk "^2.4.2"
     source-map "^0.6.1"
@@ -8215,11 +8351,6 @@ postgres-interval@^1.1.0:
   dependencies:
     xtend "^4.0.0"
 
-precond@0.2:
-  version "0.2.3"
-  resolved "https://registry.yarnpkg.com/precond/-/precond-0.2.3.tgz#aa9591bcaa24923f1e0f4849d240f47efc1075ac"
-  integrity sha1-qpWRvKokkj8eD0hJ0kD0fvwQdaw=
-
 prelude-ls@~1.1.2:
   version "1.1.2"
   resolved "https://registry.yarnpkg.com/prelude-ls/-/prelude-ls-1.1.2.tgz#21932a549f5e52ffd9a827f570e04be62a97da54"
@@ -8424,7 +8555,7 @@ quote@^0.4.0:
   resolved "https://registry.yarnpkg.com/quote/-/quote-0.4.0.tgz#10839217f6c1362b89194044d29b233fd7f32f01"
   integrity sha1-EIOSF/bBNiuJGUBE0psjP9fzLwE=
 
-raf@^3.1.0, raf@^3.4.0, raf@^3.4.1:
+raf@^3.1.0, raf@^3.4.1:
   version "3.4.1"
   resolved "https://registry.yarnpkg.com/raf/-/raf-3.4.1.tgz#0742e99a4a6552f445d73e3ee0328af0ff1ede39"
   integrity sha512-Sq4CW4QhwOHE8ucn6J34MqtZCeWFP2aQSmrlroYgqAV1PjStIhJXxYuTgUIfkEk7zTLjmIjLmU5q+fbD1NnOJA==
@@ -8436,10 +8567,10 @@ railroad-diagrams@^1.0.0:
   resolved "https://registry.yarnpkg.com/railroad-diagrams/-/railroad-diagrams-1.0.0.tgz#eb7e6267548ddedfb899c1b90e57374559cddb7e"
   integrity sha1-635iZ1SN3t+4mcG5Dlc3RVnN234=
 
-rails-ujs@^5.2.3:
-  version "5.2.3"
-  resolved "https://registry.yarnpkg.com/rails-ujs/-/rails-ujs-5.2.3.tgz#4b65ea781a6befe62e96da6362165286a1fe4099"
-  integrity sha512-rYgj185MowWFBJI1wdac2FkX4yFYe4+3jJPlB+CTY7a4rmIyg0TqE4vYZmSBBesp7blPUa57oqKzwQjN7eVbEQ==
+rails-ujs@^5.2.4:
+  version "5.2.4"
+  resolved "https://registry.yarnpkg.com/rails-ujs/-/rails-ujs-5.2.4.tgz#31056ccd62d868f7d044395f31d77a4440550ceb"
+  integrity sha512-Mzu6bnTBKn4IuJvP7BDJRy4lzvR1zMWVDeTdPwDubXBfxpFEKqwOi5Nb6tfE2SYtTd+bb3PRETf40I94jgKw3w==
 
 randexp@0.4.6:
   version "0.4.6"
@@ -8489,15 +8620,15 @@ rc@^1.2.7:
     minimist "^1.2.0"
     strip-json-comments "~2.0.1"
 
-react-dom@^16.8.6:
-  version "16.8.6"
-  resolved "https://registry.yarnpkg.com/react-dom/-/react-dom-16.8.6.tgz#71d6303f631e8b0097f56165ef608f051ff6e10f"
-  integrity sha512-1nL7PIq9LTL3fthPqwkvr2zY7phIPjYrT0jp4HjyEQrEROnw4dG41VVwi/wfoCneoleqrNX7iAD+pXebJZwrwA==
+react-dom@^16.12.0:
+  version "16.12.0"
+  resolved "https://registry.yarnpkg.com/react-dom/-/react-dom-16.12.0.tgz#0da4b714b8d13c2038c9396b54a92baea633fe11"
+  integrity sha512-LMxFfAGrcS3kETtQaCkTKjMiifahaMySFDn71fZUNpPHZQEzmk/GiAeIT8JSOrHB23fnuCOMruL2a8NYlw+8Gw==
   dependencies:
     loose-envify "^1.1.0"
     object-assign "^4.1.1"
     prop-types "^15.6.2"
-    scheduler "^0.13.6"
+    scheduler "^0.18.0"
 
 react-event-listener@^0.6.0:
   version "0.6.5"
@@ -8538,10 +8669,10 @@ react-infinite-scroller@^1.0.12:
   dependencies:
     prop-types "^15.5.8"
 
-react-input-autosize@^2.2.1:
-  version "2.2.1"
-  resolved "https://registry.yarnpkg.com/react-input-autosize/-/react-input-autosize-2.2.1.tgz#ec428fa15b1592994fb5f9aa15bb1eb6baf420f8"
-  integrity sha512-3+K4CD13iE4lQQ2WlF8PuV5htfmTRLH6MDnfndHM6LuBRszuXnuyIfE7nhSKt8AzRBZ50bu0sAhkNMeS5pxQQA==
+react-input-autosize@^2.2.2:
+  version "2.2.2"
+  resolved "https://registry.yarnpkg.com/react-input-autosize/-/react-input-autosize-2.2.2.tgz#fcaa7020568ec206bc04be36f4eb68e647c4d8c2"
+  integrity sha512-jQJgYCA3S0j+cuOwzuCd1OjmBmnZLdqQdiLKRYrsMMzbjUrVDS5RvJUDwJqA7sKuksDuzFtm6hZGKFu7Mjk5aw==
   dependencies:
     prop-types "^15.5.8"
 
@@ -8566,10 +8697,10 @@ react-intl@^2.9.0:
     intl-relativeformat "^2.1.0"
     invariant "^2.1.1"
 
-react-is@^16.3.2, react-is@^16.7.0, react-is@^16.8.1, react-is@^16.8.4, react-is@^16.8.6, react-is@^16.9.0:
-  version "16.9.0"
-  resolved "https://registry.yarnpkg.com/react-is/-/react-is-16.9.0.tgz#21ca9561399aad0ff1a7701c01683e8ca981edcb"
-  integrity sha512-tJBzzzIgnnRfEm046qRcURvwQnZVXmuCbscxUO5RWrGTXpon2d4c8mI0D8WE6ydVIm29JiLB6+RslkIvym9Rjw==
+react-is@^16.12.0, react-is@^16.3.2, react-is@^16.7.0, react-is@^16.8.1, react-is@^16.8.4, react-is@^16.8.6, react-is@^16.9.0:
+  version "16.12.0"
+  resolved "https://registry.yarnpkg.com/react-is/-/react-is-16.12.0.tgz#2cc0fe0fba742d97fd527c42a13bec4eeb06241c"
+  integrity sha512-rPCkf/mWBtKc97aLL9/txD8DZdemK0vkA3JMLShjlJB3Pj3s+lpf1KaBzMfQrAmhMQB0n1cU/SUGgKKBCe837Q==
 
 react-lifecycles-compat@^3.0.2, react-lifecycles-compat@^3.0.4:
   version "3.0.4"
@@ -8594,23 +8725,23 @@ react-motion@^0.5.2:
     prop-types "^15.5.8"
     raf "^3.1.0"
 
-react-notification@^6.8.4:
-  version "6.8.4"
-  resolved "https://registry.yarnpkg.com/react-notification/-/react-notification-6.8.4.tgz#c189d23f47b0e1b240932f4cfab2f4082cd420bf"
-  integrity sha512-El4aaIYeXNpL2M96t4+qg3ODgvAhvpORRCXhseukYlR0X8Efiak9ixGmxgm/Bm5Z43kRdFzpgHlh0uM242IFxA==
+react-notification@^6.8.5:
+  version "6.8.5"
+  resolved "https://registry.yarnpkg.com/react-notification/-/react-notification-6.8.5.tgz#7ea90a633bb2a280d899e30c93cf372265cce4f0"
+  integrity sha512-3pJPhSsWNYizpyeMeWuC+jVthqE9WKqQ6rHq2naiiP4fLGN4irwL2Xp2Q8Qn7agW/e4BIDxarab6fJOUp1cKUw==
   dependencies:
     prop-types "^15.6.2"
 
-react-overlays@^0.8.3:
-  version "0.8.3"
-  resolved "https://registry.yarnpkg.com/react-overlays/-/react-overlays-0.8.3.tgz#fad65eea5b24301cca192a169f5dddb0b20d3ac5"
-  integrity sha512-h6GT3jgy90PgctleP39Yu3eK1v9vaJAW73GOA/UbN9dJ7aAN4BTZD6793eI1D5U+ukMk17qiqN/wl3diK1Z5LA==
+react-overlays@^0.9.1:
+  version "0.9.1"
+  resolved "https://registry.yarnpkg.com/react-overlays/-/react-overlays-0.9.1.tgz#d4702bfe5b5e9335b676ff5a940253771fdeed12"
+  integrity sha512-b0asy/zHtRd0i2+2/uNxe3YVprF3bRT1guyr791DORjCzE/HSBMog+ul83CdtKQ1kZ+pLnxWCu5W3BMysFhHdQ==
   dependencies:
     classnames "^2.2.5"
     dom-helpers "^3.2.1"
     prop-types "^15.5.10"
     prop-types-extra "^1.0.1"
-    react-transition-group "^2.2.0"
+    react-transition-group "^2.2.1"
     warning "^3.0.0"
 
 react-redux-loading-bar@^4.0.8:
@@ -8621,10 +8752,10 @@ react-redux-loading-bar@^4.0.8:
     prop-types "^15.6.2"
     react-lifecycles-compat "^3.0.2"
 
-react-redux@^7.1.1:
-  version "7.1.1"
-  resolved "https://registry.yarnpkg.com/react-redux/-/react-redux-7.1.1.tgz#ce6eee1b734a7a76e0788b3309bf78ff6b34fa0a"
-  integrity sha512-QsW0vcmVVdNQzEkrgzh2W3Ksvr8cqpAv5FhEk7tNEft+5pp7rXxAudTz3VOPawRkLIepItpkEIyLcN/VVXzjTg==
+react-redux@^7.1.3:
+  version "7.1.3"
+  resolved "https://registry.yarnpkg.com/react-redux/-/react-redux-7.1.3.tgz#717a3d7bbe3a1b2d535c94885ce04cdc5a33fc79"
+  integrity sha512-uI1wca+ECG9RoVkWQFF4jDMqmaw0/qnvaSvOoL/GA4dNxf6LoV8sUAcNDvE5NWKs4hFpn0t6wswNQnY3f7HT3w==
   dependencies:
     "@babel/runtime" "^7.5.5"
     hoist-non-react-statics "^3.3.0"
@@ -8666,17 +8797,18 @@ react-router@^4.3.1:
     prop-types "^15.6.1"
     warning "^4.0.1"
 
-react-select@^2.4.4:
-  version "2.4.4"
-  resolved "https://registry.yarnpkg.com/react-select/-/react-select-2.4.4.tgz#ba72468ef1060c7d46fbb862b0748f96491f1f73"
-  integrity sha512-C4QPLgy9h42J/KkdrpVxNmkY6p4lb49fsrbDk/hRcZpX7JvZPNb6mGj+c5SzyEtBv1DmQ9oPH4NmhAFvCrg8Jw==
+react-select@^3.0.8:
+  version "3.0.8"
+  resolved "https://registry.yarnpkg.com/react-select/-/react-select-3.0.8.tgz#06ff764e29db843bcec439ef13e196865242e0c1"
+  integrity sha512-v9LpOhckLlRmXN5A6/mGGEft4FMrfaBFTGAnuPHcUgVId7Je42kTq9y0Z+Ye5z8/j0XDT3zUqza8gaRaI1PZIg==
   dependencies:
-    classnames "^2.2.5"
-    emotion "^9.1.2"
+    "@babel/runtime" "^7.4.4"
+    "@emotion/cache" "^10.0.9"
+    "@emotion/core" "^10.0.9"
+    "@emotion/css" "^10.0.9"
     memoize-one "^5.0.0"
     prop-types "^15.6.0"
-    raf "^3.4.0"
-    react-input-autosize "^2.2.1"
+    react-input-autosize "^2.2.2"
     react-transition-group "^2.2.1"
 
 react-sparklines@^1.7.0:
@@ -8694,10 +8826,10 @@ react-swipeable-views-core@^0.13.1:
     "@babel/runtime" "7.0.0"
     warning "^4.0.1"
 
-react-swipeable-views-utils@^0.13.3:
-  version "0.13.3"
-  resolved "https://registry.yarnpkg.com/react-swipeable-views-utils/-/react-swipeable-views-utils-0.13.3.tgz#c234d8d836bb085803631a9fef0adb2f9597221f"
-  integrity sha512-CZkJwiNQPISkyTsPMUPiJgwJBrUVd7NC3WSUvx30uwvPb0Sy2w2+tpU51qeYc6YwIhex0s5Eu5YPjK3PDBh+gA==
+react-swipeable-views-utils@^0.13.4:
+  version "0.13.4"
+  resolved "https://registry.yarnpkg.com/react-swipeable-views-utils/-/react-swipeable-views-utils-0.13.4.tgz#809fe408e55ed80f84eea508074387c23febf0ab"
+  integrity sha512-C6Ppq7Z5JIn4l8gKuRzzoGcm5Yiu57HBribjZ0T8DIeLisvIvk8A+Wysb1JhP0hsnJ9hIozlEZ8oJi4eBUTRXg==
   dependencies:
     "@babel/runtime" "7.0.0"
     fbjs "^0.8.4"
@@ -8706,44 +8838,44 @@ react-swipeable-views-utils@^0.13.3:
     react-event-listener "^0.6.0"
     react-swipeable-views-core "^0.13.1"
 
-react-swipeable-views@^0.13.3:
-  version "0.13.3"
-  resolved "https://registry.yarnpkg.com/react-swipeable-views/-/react-swipeable-views-0.13.3.tgz#2ad886767c6b2de88000606a14bedde12156e6d0"
-  integrity sha512-LBHRA5ZouipmoLLwi0cqB8qc7NHLskbXmT1I+ZztC9JfmgKrfichw5R+7q4igQ+5VbaP6jL1vn8BtHW96WYNFQ==
+react-swipeable-views@^0.13.4:
+  version "0.13.4"
+  resolved "https://registry.yarnpkg.com/react-swipeable-views/-/react-swipeable-views-0.13.4.tgz#ebbe50a8592b185dbedf9e0060eaee09cf6b2c67"
+  integrity sha512-Qwmaj8LASEgxp3i4FBEgs1LM/Yqk7mFRp0fRgXH515NIEePUcjrrkuwvvmvwNQLDbN6PNv4QAuosEaTRyjEOUA==
   dependencies:
     "@babel/runtime" "7.0.0"
-    dom-helpers "^3.2.1"
+    dom-helpers "^5.1.3"
     prop-types "^15.5.4"
     react-swipeable-views-core "^0.13.1"
-    react-swipeable-views-utils "^0.13.3"
+    react-swipeable-views-utils "^0.13.4"
     warning "^4.0.1"
 
-react-test-renderer@^16.0.0-0, react-test-renderer@^16.8.6:
-  version "16.8.6"
-  resolved "https://registry.yarnpkg.com/react-test-renderer/-/react-test-renderer-16.8.6.tgz#188d8029b8c39c786f998aa3efd3ffe7642d5ba1"
-  integrity sha512-H2srzU5IWYT6cZXof6AhUcx/wEyJddQ8l7cLM/F7gDXYyPr4oq+vCIxJYXVGhId1J706sqziAjuOEjyNkfgoEw==
+react-test-renderer@^16.0.0-0, react-test-renderer@^16.12.0:
+  version "16.12.0"
+  resolved "https://registry.yarnpkg.com/react-test-renderer/-/react-test-renderer-16.12.0.tgz#11417ffda579306d4e841a794d32140f3da1b43f"
+  integrity sha512-Vj/teSqt2oayaWxkbhQ6gKis+t5JrknXfPVo+aIJ8QwYAqMPH77uptOdrlphyxl8eQI/rtkOYg86i/UWkpFu0w==
   dependencies:
     object-assign "^4.1.1"
     prop-types "^15.6.2"
     react-is "^16.8.6"
-    scheduler "^0.13.6"
+    scheduler "^0.18.0"
 
-react-textarea-autosize@^7.1.0:
-  version "7.1.0"
-  resolved "https://registry.yarnpkg.com/react-textarea-autosize/-/react-textarea-autosize-7.1.0.tgz#3132cb77e65d94417558d37c0bfe415a5afd3445"
-  integrity sha512-c2FlR/fP0qbxmlrW96SdrbgP/v0XZMTupqB90zybvmDVDutytUgPl7beU35klwcTeMepUIQEpQUn3P3bdshGPg==
+react-textarea-autosize@^7.1.2:
+  version "7.1.2"
+  resolved "https://registry.yarnpkg.com/react-textarea-autosize/-/react-textarea-autosize-7.1.2.tgz#70fdb333ef86bcca72717e25e623e90c336e2cda"
+  integrity sha512-uH3ORCsCa3C6LHxExExhF4jHoXYCQwE5oECmrRsunlspaDAbS4mGKNlWZqjLfInWtFQcf0o1n1jC/NGXFdUBCg==
   dependencies:
     "@babel/runtime" "^7.1.2"
     prop-types "^15.6.0"
 
-react-toggle@^4.0.1:
-  version "4.0.2"
-  resolved "https://registry.yarnpkg.com/react-toggle/-/react-toggle-4.0.2.tgz#77f487860efb87fafd197672a2db8c885be1440f"
-  integrity sha512-EPTWnN7gQHgEAUEmjheanZXNzY5TPnQeyyHfEs3YshaiWZf5WNjfYDrglO5F1Hl/dNveX18i4l0grTEsYH2Ccw==
+react-toggle@^4.1.1:
+  version "4.1.1"
+  resolved "https://registry.yarnpkg.com/react-toggle/-/react-toggle-4.1.1.tgz#2317f67bf918ea3508a96b09dd383efd9da572af"
+  integrity sha512-+wXlMcSpg8SmnIXauMaZiKpR+r2wp2gMUteroejp2UTSqGTVvZLN+m9EhMzFARBKEw7KpQOwzCyfzeHeAndQGw==
   dependencies:
     classnames "^2.2.5"
 
-react-transition-group@^2.2.0, react-transition-group@^2.2.1:
+react-transition-group@^2.2.1:
   version "2.5.2"
   resolved "https://registry.yarnpkg.com/react-transition-group/-/react-transition-group-2.5.2.tgz#9457166a9ba6ce697a3e1b076b3c049b9fb2c408"
   integrity sha512-vwHP++S+f6KL7rg8V1mfs62+MBKtbMeZDR8KiNmD7v98Gs3UPGsDZDahPJH2PVprFW5YHJfh6cbNim3zPndaSQ==
@@ -8753,15 +8885,14 @@ react-transition-group@^2.2.0, react-transition-group@^2.2.1:
     prop-types "^15.6.2"
     react-lifecycles-compat "^3.0.4"
 
-react@^16.8.6:
-  version "16.8.6"
-  resolved "https://registry.yarnpkg.com/react/-/react-16.8.6.tgz#ad6c3a9614fd3a4e9ef51117f54d888da01f2bbe"
-  integrity sha512-pC0uMkhLaHm11ZSJULfOBqV4tIZkx87ZLvbbQYunNixAAvjnC+snJCg0XQXn9VIsttVsbZP/H/ewzgsd5fxKXw==
+react@^16.12.0:
+  version "16.12.0"
+  resolved "https://registry.yarnpkg.com/react/-/react-16.12.0.tgz#0c0a9c6a142429e3614834d5a778e18aa78a0b83"
+  integrity sha512-fglqy3k5E+81pA8s+7K0/T3DBCF0ZDOher1elBFzF7O6arXJgzyu/FW+COxFvAWXJoJN9KIZbT2LXlukwphYTA==
   dependencies:
     loose-envify "^1.1.0"
     object-assign "^4.1.1"
     prop-types "^15.6.2"
-    scheduler "^0.13.6"
 
 read-pkg-up@^2.0.0:
   version "2.0.0"
@@ -8880,10 +9011,10 @@ redux-thunk@^2.2.0:
   resolved "https://registry.yarnpkg.com/redux-thunk/-/redux-thunk-2.3.0.tgz#51c2c19a185ed5187aaa9a2d08b666d0d6467622"
   integrity sha512-km6dclyFnmcvxhAcrQV2AkZmPQjzPDjgVlQtR0EQjxZPyJ0BnMf3in1ryuR8A2qU0HldVRfxYXbFSKlI3N7Slw==
 
-redux@^4.0.4:
-  version "4.0.4"
-  resolved "https://registry.yarnpkg.com/redux/-/redux-4.0.4.tgz#4ee1aeb164b63d6a1bcc57ae4aa0b6e6fa7a3796"
-  integrity sha512-vKv4WdiJxOWKxK0yRoaK3Y4pxxB0ilzVx6dszU2W8wLxlb2yikRph4iV/ymtdJ6ZxpBLFbyrxklnT5yBbQSl3Q==
+redux@^4.0.5:
+  version "4.0.5"
+  resolved "https://registry.yarnpkg.com/redux/-/redux-4.0.5.tgz#4db5de5816e17891de8a80c424232d06f051d93f"
+  integrity sha512-VSz1uMAH24DM6MF72vcojpYPtrTUu3ByVWfPL1nPfVRb5mZVTve5GnNCUV53QM/BZ66xfWrm0CTWoM+Xlz8V1w==
   dependencies:
     loose-envify "^1.4.0"
     symbol-observable "^1.2.0"
@@ -8893,7 +9024,7 @@ reflect.ownkeys@^0.2.0:
   resolved "https://registry.yarnpkg.com/reflect.ownkeys/-/reflect.ownkeys-0.2.0.tgz#749aceec7f3fdf8b63f927a04809e90c5c0b3460"
   integrity sha1-dJrO7H8/34tj+SegSAnpDFwLNGA=
 
-regenerate-unicode-properties@^8.0.2:
+regenerate-unicode-properties@^8.1.0:
   version "8.1.0"
   resolved "https://registry.yarnpkg.com/regenerate-unicode-properties/-/regenerate-unicode-properties-8.1.0.tgz#ef51e0f0ea4ad424b77bf7cb41f3e015c70a3f0e"
   integrity sha512-LGZzkgtLY79GeXLm8Dp0BVLdQlWICzBnJz/ipWUgo59qBaZ+BHtq51P2q1uVZlppMuUAT37SDk39qUbjTWB7bA==
@@ -8935,11 +9066,6 @@ regex-not@^1.0.0, regex-not@^1.0.2:
     extend-shallow "^3.0.2"
     safe-regex "^1.1.0"
 
-regexp-tree@^0.1.13:
-  version "0.1.13"
-  resolved "https://registry.yarnpkg.com/regexp-tree/-/regexp-tree-0.1.13.tgz#5b19ab9377edc68bc3679256840bb29afc158d7f"
-  integrity sha512-hwdV/GQY5F8ReLZWO+W1SRoN5YfpOKY6852+tBFcma72DKBIcHjPRIlIvQN35bCOljuAfP2G2iB0FC/w236mUw==
-
 regexp.prototype.flags@^1.2.0:
   version "1.2.0"
   resolved "https://registry.yarnpkg.com/regexp.prototype.flags/-/regexp.prototype.flags-1.2.0.tgz#6b30724e306a27833eeb171b66ac8890ba37e41c"
@@ -8952,13 +9078,13 @@ regexpp@^2.0.1:
   resolved "https://registry.yarnpkg.com/regexpp/-/regexpp-2.0.1.tgz#8d19d31cf632482b589049f8281f93dbcba4d07f"
   integrity sha512-lv0M6+TkDVniA3aD1Eg0DVpfU/booSu7Eev3TDO/mZKHBfVjgCGTV4t4buppESEYDtkArYFOxTJWv6S5C+iaNw==
 
-regexpu-core@^4.5.4:
-  version "4.5.4"
-  resolved "https://registry.yarnpkg.com/regexpu-core/-/regexpu-core-4.5.4.tgz#080d9d02289aa87fe1667a4f5136bc98a6aebaae"
-  integrity sha512-BtizvGtFQKGPUcTy56o3nk1bGRp4SZOTYrDtGNlqCQufptV5IkkLN6Emw+yunAJjzf+C9FQFtvq7IoA3+oMYHQ==
+regexpu-core@^4.6.0:
+  version "4.6.0"
+  resolved "https://registry.yarnpkg.com/regexpu-core/-/regexpu-core-4.6.0.tgz#2037c18b327cfce8a6fea2a4ec441f2432afb8b6"
+  integrity sha512-YlVaefl8P5BnFYOITTNzDvan1ulLOiXJzCNZxduTIosN17b87h3bvG9yHMoHaRuo88H4mQ06Aodj5VtYGGGiTg==
   dependencies:
     regenerate "^1.4.0"
-    regenerate-unicode-properties "^8.0.2"
+    regenerate-unicode-properties "^8.1.0"
     regjsgen "^0.5.0"
     regjsparser "^0.6.0"
     unicode-match-property-ecmascript "^1.0.4"
@@ -9136,10 +9262,10 @@ resolve@1.1.7:
   resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.1.7.tgz#203114d82ad2c5ed9e8e0411b3932875e889e97b"
   integrity sha1-IDEU2CrSxe2ejgQRs5ModeiJ6Xs=
 
-resolve@^1.10.0, resolve@^1.10.1, resolve@^1.11.0, resolve@^1.12.0, resolve@^1.3.2, resolve@^1.5.0, resolve@^1.8.1:
-  version "1.12.0"
-  resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.12.0.tgz#3fc644a35c84a48554609ff26ec52b66fa577df6"
-  integrity sha512-B/dOmuoAik5bKcD6s6nXDCjzUKnaDvdkRyAk6rsmsKLipWj4797iothd7jmmUhWTfinVMU+wc56rYKsit2Qy4w==
+resolve@^1.12.0, resolve@^1.13.1, resolve@^1.3.2, resolve@^1.5.0, resolve@^1.8.1:
+  version "1.13.1"
+  resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.13.1.tgz#be0aa4c06acd53083505abb35f4d66932ab35d16"
+  integrity sha512-CxqObCX8K8YtAhOBRg+lrcdn+LK+WYOS8tSjqSFbjtrI5PnS63QPhZl4+yKfrU9tdsbMu9Anr/amegT87M9Z6w==
   dependencies:
     path-parse "^1.0.6"
 
@@ -9151,12 +9277,12 @@ restore-cursor@^1.0.1:
     exit-hook "^1.0.0"
     onetime "^1.0.0"
 
-restore-cursor@^2.0.0:
-  version "2.0.0"
-  resolved "https://registry.yarnpkg.com/restore-cursor/-/restore-cursor-2.0.0.tgz#9f7ee287f82fd326d4fd162923d62129eee0dfaf"
-  integrity sha1-n37ih/gv0ybU/RYpI9YhKe7g368=
+restore-cursor@^3.1.0:
+  version "3.1.0"
+  resolved "https://registry.yarnpkg.com/restore-cursor/-/restore-cursor-3.1.0.tgz#39f67c54b3a7a58cea5236d95cf0034239631f7e"
+  integrity sha512-l+sSefzHpj5qimhFSE5a8nufZYAM3sBSVMAPtYkmC+4EH2anSGaEMXSD0izRQbu9nfyQ9y5JrVmp7E8oZrUjvA==
   dependencies:
-    onetime "^2.0.0"
+    onetime "^5.1.0"
     signal-exit "^3.0.2"
 
 ret@~0.1.10:
@@ -9186,7 +9312,7 @@ rimraf@2.6.3, rimraf@^2.6.2, rimraf@~2.6.2:
   dependencies:
     glob "^7.1.3"
 
-rimraf@^2.5.4, rimraf@^2.6.1, rimraf@^2.6.3:
+rimraf@^2.5.4, rimraf@^2.6.1, rimraf@^2.6.3, rimraf@^2.7.1:
   version "2.7.1"
   resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.7.1.tgz#35797f13a7fdadc566142c29d4f07ccad483e3ec"
   integrity sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w==
@@ -9311,22 +9437,21 @@ sass-lint@^1.13.1:
     path-is-absolute "^1.0.0"
     util "^0.10.3"
 
-sass-loader@^7.0.3:
-  version "7.1.0"
-  resolved "https://registry.yarnpkg.com/sass-loader/-/sass-loader-7.1.0.tgz#16fd5138cb8b424bf8a759528a1972d72aad069d"
-  integrity sha512-+G+BKGglmZM2GUSfT9TLuEp6tzehHPjAMoRRItOojWIqIGPloVCMhNIQuG639eJ+y033PaGTSjLaTHts8Kw79w==
+sass-loader@^8.0.2:
+  version "8.0.2"
+  resolved "https://registry.yarnpkg.com/sass-loader/-/sass-loader-8.0.2.tgz#debecd8c3ce243c76454f2e8290482150380090d"
+  integrity sha512-7o4dbSK8/Ol2KflEmSco4jTjQoV988bM82P9CZdmo9hR3RLnvNc0ufMNdMrB0caq38JQ/FgF4/7RcbcfKzxoFQ==
   dependencies:
-    clone-deep "^2.0.1"
-    loader-utils "^1.0.1"
-    lodash.tail "^4.1.1"
-    neo-async "^2.5.0"
-    pify "^3.0.0"
-    semver "^5.5.0"
+    clone-deep "^4.0.1"
+    loader-utils "^1.2.3"
+    neo-async "^2.6.1"
+    schema-utils "^2.6.1"
+    semver "^6.3.0"
 
-sass@^1.22.12:
-  version "1.22.12"
-  resolved "https://registry.yarnpkg.com/sass/-/sass-1.22.12.tgz#5cbdd38720ffd1857da695331faee9f634bcb5d7"
-  integrity sha512-u5Rxn+dKTPCW5/11kMNxtmqKsxCjcpnqj9CaJoru1NqeJ0DOa9rOM00e0HqmseTAatGkKoLY+jaNecMYevu1gg==
+sass@^1.24.2:
+  version "1.24.2"
+  resolved "https://registry.yarnpkg.com/sass/-/sass-1.24.2.tgz#0a0e0f00368be6808b2e94470172266ac45498fe"
+  integrity sha512-0JxdMMRd0fOmGFQFRI91vh4n0Ed766ib9JwPUa+1C37zn3VaqlHxbknUn/6LqP/MSfvNPxRYoCrYf5g8vu4OHw==
   dependencies:
     chokidar ">=2.0.0 <4.0.0"
 
@@ -9335,10 +9460,10 @@ sax@^1.2.4, sax@~1.2.4:
   resolved "https://registry.yarnpkg.com/sax/-/sax-1.2.4.tgz#2816234e2378bddc4e5354fab5caa895df7100d9"
   integrity sha512-NqVDv9TpANUjFm0N8uM5GxL36UgKi9/atZw+x7YFnQ8ckwFGKrl4xX4yWtrey3UJm5nP1kUbnYgLopqWNSRhWw==
 
-scheduler@^0.13.6:
-  version "0.13.6"
-  resolved "https://registry.yarnpkg.com/scheduler/-/scheduler-0.13.6.tgz#466a4ec332467b31a91b9bf74e5347072e4cd889"
-  integrity sha512-IWnObHt413ucAYKsD9J1QShUKkbKLQQHdxRyw73sw4FN26iWr3DY/H34xGPe4nmL1DwXyWmSWmMrA9TfQbE/XQ==
+scheduler@^0.18.0:
+  version "0.18.0"
+  resolved "https://registry.yarnpkg.com/scheduler/-/scheduler-0.18.0.tgz#5901ad6659bc1d8f3fdaf36eb7a67b0d6746b1c4"
+  integrity sha512-agTSHR1Nbfi6ulI0kYNK0203joW2Y5W4po4l+v03tOoiJKpTBbxpNhWDvqc/4IcOw+KLmSiQLTasZ4cab2/UWQ==
   dependencies:
     loose-envify "^1.1.0"
     object-assign "^4.1.1"
@@ -9352,13 +9477,13 @@ schema-utils@^1.0.0:
     ajv-errors "^1.0.0"
     ajv-keywords "^3.1.0"
 
-schema-utils@^2.0.0:
-  version "2.0.1"
-  resolved "https://registry.yarnpkg.com/schema-utils/-/schema-utils-2.0.1.tgz#1eec2e059556af841b7f3a83b61af13d7a3f9196"
-  integrity sha512-HJFKJ4JixDpRur06QHwi8uu2kZbng318ahWEKgBjc0ZklcE4FDvmm2wghb448q0IRaABxIESt8vqPFvwgMB80A==
+schema-utils@^2.5.0, schema-utils@^2.6.0, schema-utils@^2.6.1:
+  version "2.6.1"
+  resolved "https://registry.yarnpkg.com/schema-utils/-/schema-utils-2.6.1.tgz#eb78f0b945c7bcfa2082b3565e8db3548011dc4f"
+  integrity sha512-0WXHDs1VDJyo+Zqs9TKLKyD/h7yDpHUhEFsM2CzkICFdoX1av+GBq/J2xRTFfsQO5kBfhZzANf2VcIm84jqDbg==
   dependencies:
-    ajv "^6.1.0"
-    ajv-keywords "^3.1.0"
+    ajv "^6.10.2"
+    ajv-keywords "^3.4.1"
 
 scroll-behavior@^0.9.1:
   version "0.9.9"
@@ -9373,14 +9498,14 @@ select-hose@^2.0.0:
   resolved "https://registry.yarnpkg.com/select-hose/-/select-hose-2.0.0.tgz#625d8658f865af43ec962bfc376a37359a4994ca"
   integrity sha1-Yl2GWPhlr0Psliv8N2o3NZpJlMo=
 
-selfsigned@^1.10.6:
-  version "1.10.6"
-  resolved "https://registry.yarnpkg.com/selfsigned/-/selfsigned-1.10.6.tgz#7b3cd37ed9c2034261a173af1a1aae27d8169b67"
-  integrity sha512-i3+CeqxL7DpAazgVpAGdKMwHuL63B5nhJMh9NQ7xmChGkA3jNFflq6Jyo1LLJYcr3idWiNOPWHCrm4zMayLG4w==
+selfsigned@^1.10.7:
+  version "1.10.7"
+  resolved "https://registry.yarnpkg.com/selfsigned/-/selfsigned-1.10.7.tgz#da5819fd049d5574f28e88a9bcc6dbc6e6f3906b"
+  integrity sha512-8M3wBCzeWIJnQfl43IKwOmC4H/RAp50S8DF60znzjW5GVqTcSe2vWclt7hmYVPkKPlHWOu5EaWOMZ2Y6W8ZXTA==
   dependencies:
-    node-forge "0.8.2"
+    node-forge "0.9.0"
 
-"semver@2 || 3 || 4 || 5", semver@^5.3.0, semver@^5.4.1, semver@^5.5.0, semver@^5.5.1, semver@^5.6.0, semver@^5.7.0:
+"semver@2 || 3 || 4 || 5", semver@^5.3.0, semver@^5.4.1, semver@^5.5.0, semver@^5.5.1, semver@^5.6.0, semver@^5.7.0, semver@^5.7.1:
   version "5.7.1"
   resolved "https://registry.yarnpkg.com/semver/-/semver-5.7.1.tgz#a954f931aeba508d307bbf069eff0c01c96116f7"
   integrity sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==
@@ -9390,7 +9515,12 @@ semver@4.3.2:
   resolved "https://registry.yarnpkg.com/semver/-/semver-4.3.2.tgz#c7a07158a80bedd052355b770d82d6640f803be7"
   integrity sha1-x6BxWKgL7dBSNVt3DYLWZA+AO+c=
 
-semver@^6.0.0, semver@^6.1.0, semver@^6.1.2, semver@^6.2.0, semver@^6.3.0:
+semver@7.0.0:
+  version "7.0.0"
+  resolved "https://registry.yarnpkg.com/semver/-/semver-7.0.0.tgz#5f3ca35761e47e05b206c6daff2cf814f0316b8e"
+  integrity sha512-+GB6zVA9LWh6zovYQLALHwv5rb2PHGlJi3lfiqIHxR0uuwCgefcOJc59v9fv1w8GbStwxuuqqAjI9NMAOOgq1A==
+
+semver@^6.0.0, semver@^6.1.2, semver@^6.2.0, semver@^6.3.0:
   version "6.3.0"
   resolved "https://registry.yarnpkg.com/semver/-/semver-6.3.0.tgz#ee0a64c8af5e8ceea67687b133761e1becbd1d3d"
   integrity sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==
@@ -9414,15 +9544,10 @@ send@0.17.1:
     range-parser "~1.2.1"
     statuses "~1.5.0"
 
-serialize-javascript@^1.4.0:
-  version "1.7.0"
-  resolved "https://registry.yarnpkg.com/serialize-javascript/-/serialize-javascript-1.7.0.tgz#d6e0dfb2a3832a8c94468e6eb1db97e55a192a65"
-  integrity sha512-ke8UG8ulpFOxO8f8gRYabHQe/ZntKlcig2Mp+8+URDP1D8vJZ0KUt7LYo07q25Z/+JVSgpr/cui9PIp5H6/+nA==
-
-serialize-javascript@^1.7.0:
-  version "1.9.1"
-  resolved "https://registry.yarnpkg.com/serialize-javascript/-/serialize-javascript-1.9.1.tgz#cfc200aef77b600c47da9bb8149c943e798c2fdb"
-  integrity sha512-0Vb/54WJ6k5v8sSWN09S0ora+Hnr+cX40r9F170nT+mSkaxltoE/7R3OrIdBSUv1OoiobH1QoWQbCnAO+e8J1A==
+serialize-javascript@^2.1.2:
+  version "2.1.2"
+  resolved "https://registry.yarnpkg.com/serialize-javascript/-/serialize-javascript-2.1.2.tgz#ecec53b0e0317bdc95ef76ab7074b7384785fa61"
+  integrity sha512-rs9OggEUF0V4jUSecXazOYsLfu7OGK2qIn3c7IPBiffz32XniEp/TX9Xmc9LQfK2nQ2QKHvZ2oygKUGU0lG4jQ==
 
 serve-index@^1.9.1:
   version "1.9.1"
@@ -9485,14 +9610,12 @@ sha.js@^2.4.0, sha.js@^2.4.8:
     inherits "^2.0.1"
     safe-buffer "^5.0.1"
 
-shallow-clone@^1.0.0:
-  version "1.0.0"
-  resolved "https://registry.yarnpkg.com/shallow-clone/-/shallow-clone-1.0.0.tgz#4480cd06e882ef68b2ad88a3ea54832e2c48b571"
-  integrity sha512-oeXreoKR/SyNJtRJMAKPDSvd28OqEwG4eR/xc856cRGBII7gX9lvAqDxusPm0846z/w/hWYjI1NpKwJ00NHzRA==
+shallow-clone@^3.0.0:
+  version "3.0.1"
+  resolved "https://registry.yarnpkg.com/shallow-clone/-/shallow-clone-3.0.1.tgz#8f2981ad92531f55035b01fb230769a40e02efa3"
+  integrity sha512-/6KqX+GVUdqPuPPd2LxDDxzX6CAbjJehAAOKlNpqqUpAqPM6HeL8f+o3a+JsyGjn2lv0WY8UsTgUJjU9Ok55NA==
   dependencies:
-    is-extendable "^0.1.1"
-    kind-of "^5.0.0"
-    mixin-object "^2.0.1"
+    kind-of "^6.0.2"
 
 shebang-command@^1.2.0:
   version "1.2.0"
@@ -9501,11 +9624,23 @@ shebang-command@^1.2.0:
   dependencies:
     shebang-regex "^1.0.0"
 
+shebang-command@^2.0.0:
+  version "2.0.0"
+  resolved "https://registry.yarnpkg.com/shebang-command/-/shebang-command-2.0.0.tgz#ccd0af4f8835fbdc265b82461aaf0c36663f34ea"
+  integrity sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==
+  dependencies:
+    shebang-regex "^3.0.0"
+
 shebang-regex@^1.0.0:
   version "1.0.0"
   resolved "https://registry.yarnpkg.com/shebang-regex/-/shebang-regex-1.0.0.tgz#da42f49740c0b42db2ca9728571cb190c98efea3"
   integrity sha1-2kL0l0DAtC2yypcoVxyxkMmO/qM=
 
+shebang-regex@^3.0.0:
+  version "3.0.0"
+  resolved "https://registry.yarnpkg.com/shebang-regex/-/shebang-regex-3.0.0.tgz#ae16f1644d873ecad843b0307b143362d4c42172"
+  integrity sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==
+
 shelljs@^0.6.0:
   version "0.6.1"
   resolved "https://registry.yarnpkg.com/shelljs/-/shelljs-0.6.1.tgz#ec6211bed1920442088fe0f70b2837232ed2c8a8"
@@ -9661,11 +9796,6 @@ source-map@^0.6.0, source-map@^0.6.1, source-map@~0.6.1:
   resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.6.1.tgz#74722af32e9614e9c287a8d0bbde48b5e2f1a263"
   integrity sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==
 
-source-map@^0.7.2:
-  version "0.7.3"
-  resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.7.3.tgz#5302f8169031735226544092e64981f751750383"
-  integrity sha512-CkCj6giN3S+n9qrYiBTX5gystlENnRW5jZeNLHpe6aue+SrHcG5VYwujhW9s4dY31mEGsxBDrHR6oI69fTXsaQ==
-
 spdx-correct@^3.0.0:
   version "3.1.0"
   resolved "https://registry.yarnpkg.com/spdx-correct/-/spdx-correct-3.1.0.tgz#fb83e504445268f154b074e218c87c003cd31df4"
@@ -9756,6 +9886,14 @@ ssri@^6.0.1:
   dependencies:
     figgy-pudding "^3.5.1"
 
+ssri@^7.0.0:
+  version "7.1.0"
+  resolved "https://registry.yarnpkg.com/ssri/-/ssri-7.1.0.tgz#92c241bf6de82365b5c7fb4bd76e975522e1294d"
+  integrity sha512-77/WrDZUWocK0mvA5NTRQyveUf+wsrIc6vyrxpS8tVvYBcX215QbafrJR3KtkpskIzoFLqqNuuYQvxaMjXJ/0g==
+  dependencies:
+    figgy-pudding "^3.5.1"
+    minipass "^3.1.1"
+
 stable@~0.1.6:
   version "0.1.8"
   resolved "https://registry.yarnpkg.com/stable/-/stable-0.1.8.tgz#836eb3c8382fe2936feaf544631017ce7d47a3cf"
@@ -9838,7 +9976,7 @@ string-width@^1.0.1:
     is-fullwidth-code-point "^1.0.0"
     strip-ansi "^3.0.0"
 
-"string-width@^1.0.2 || 2", string-width@^2.0.0, string-width@^2.1.0, string-width@^2.1.1:
+"string-width@^1.0.2 || 2", string-width@^2.0.0, string-width@^2.1.1:
   version "2.1.1"
   resolved "https://registry.yarnpkg.com/string-width/-/string-width-2.1.1.tgz#ab93f27a8dc13d28cac815c462143a6d9012ae9e"
   integrity sha512-nOqH59deCq9SRHlxq1Aw85Jnt4w6KvLKqWVik6oA9ZklXLNIOlqg4F2yrT1MVaTjAqvVwdfeZ7w7aCvJD7ugkw==
@@ -9855,14 +9993,39 @@ string-width@^3.0.0, string-width@^3.1.0:
     is-fullwidth-code-point "^2.0.0"
     strip-ansi "^5.1.0"
 
-string.prototype.trim@^1.1.2:
-  version "1.1.2"
-  resolved "https://registry.yarnpkg.com/string.prototype.trim/-/string.prototype.trim-1.1.2.tgz#d04de2c89e137f4d7d206f086b5ed2fae6be8cea"
-  integrity sha1-0E3iyJ4Tf019IG8Ia17S+ua+jOo=
+string-width@^4.1.0, string-width@^4.2.0:
+  version "4.2.0"
+  resolved "https://registry.yarnpkg.com/string-width/-/string-width-4.2.0.tgz#952182c46cc7b2c313d1596e623992bd163b72b5"
+  integrity sha512-zUz5JD+tgqtuDjMhwIg5uFVV3dtqZ9yQJlZVfq4I01/K5Paj5UHj7VyrQOJvzawSVlKpObApbfD0Ed6yJc+1eg==
   dependencies:
-    define-properties "^1.1.2"
-    es-abstract "^1.5.0"
-    function-bind "^1.0.2"
+    emoji-regex "^8.0.0"
+    is-fullwidth-code-point "^3.0.0"
+    strip-ansi "^6.0.0"
+
+string.prototype.trim@^1.2.1:
+  version "1.2.1"
+  resolved "https://registry.yarnpkg.com/string.prototype.trim/-/string.prototype.trim-1.2.1.tgz#141233dff32c82bfad80684d7e5f0869ee0fb782"
+  integrity sha512-MjGFEeqixw47dAMFMtgUro/I0+wNqZB5GKXGt1fFr24u3TzDXCPu7J9Buppzoe3r/LqkSDLDDJzE15RGWDGAVw==
+  dependencies:
+    define-properties "^1.1.3"
+    es-abstract "^1.17.0-next.1"
+    function-bind "^1.1.1"
+
+string.prototype.trimleft@^2.1.1:
+  version "2.1.1"
+  resolved "https://registry.yarnpkg.com/string.prototype.trimleft/-/string.prototype.trimleft-2.1.1.tgz#9bdb8ac6abd6d602b17a4ed321870d2f8dcefc74"
+  integrity sha512-iu2AGd3PuP5Rp7x2kEZCrB2Nf41ehzh+goo8TV7z8/XDBbsvc6HQIlUl9RjkZ4oyrW1XM5UwlGl1oVEaDjg6Ag==
+  dependencies:
+    define-properties "^1.1.3"
+    function-bind "^1.1.1"
+
+string.prototype.trimright@^2.1.1:
+  version "2.1.1"
+  resolved "https://registry.yarnpkg.com/string.prototype.trimright/-/string.prototype.trimright-2.1.1.tgz#440314b15996c866ce8a0341894d45186200c5d9"
+  integrity sha512-qFvWL3/+QIgZXVmJBfpHmxLB7xsUXz6HsUmP8+5dRaC3Q7oKUv9Vo6aMCRZC1smrtyECFsIT30PqBJ1gTjAs+g==
+  dependencies:
+    define-properties "^1.1.3"
+    function-bind "^1.1.1"
 
 string_decoder@^1.0.0, string_decoder@^1.1.1:
   version "1.3.0"
@@ -9906,6 +10069,13 @@ strip-ansi@^5.0.0, strip-ansi@^5.1.0, strip-ansi@^5.2.0:
   dependencies:
     ansi-regex "^4.1.0"
 
+strip-ansi@^6.0.0:
+  version "6.0.0"
+  resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-6.0.0.tgz#0b1571dd7669ccd4f3e06e14ef1eed26225ae532"
+  integrity sha512-AuvKTrTfQNYNIctbR1K/YGTR1756GycPsg7b9bdV9Duqur4gv6aKqHXah67Z8ImS7WEz5QVcOtlfW2rZEugt6w==
+  dependencies:
+    ansi-regex "^5.0.0"
+
 strip-bom@^3.0.0:
   version "3.0.0"
   resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-3.0.0.tgz#2334c18e9c759f7bdd56fdef7e9ae3d588e68ed3"
@@ -9940,16 +10110,6 @@ stylehacks@^4.0.0:
     postcss "^7.0.0"
     postcss-selector-parser "^3.0.0"
 
-stylis-rule-sheet@^0.0.10:
-  version "0.0.10"
-  resolved "https://registry.yarnpkg.com/stylis-rule-sheet/-/stylis-rule-sheet-0.0.10.tgz#44e64a2b076643f4b52e5ff71efc04d8c3c4a430"
-  integrity sha512-nTbZoaqoBnmK+ptANthb10ZRZOGC+EmTLLUxeYIuHNkEKcmKgXX1XWKkUBT2Ac4es3NybooPe0SmvKdhKJZAuw==
-
-stylis@^3.5.0:
-  version "3.5.4"
-  resolved "https://registry.yarnpkg.com/stylis/-/stylis-3.5.4.tgz#f665f25f5e299cf3d64654ab949a57c768b73fbe"
-  integrity sha512-8/3pSmthWM7lsPBKv7NXkzn2Uc9W7NotcwGNpJaa3k7WMM1XDCA4MgT5k/8BIexd5ydZdboXtU90XH9Ec4Bv/Q==
-
 substring-trie@^1.0.2:
   version "1.0.2"
   resolved "https://registry.yarnpkg.com/substring-trie/-/substring-trie-1.0.2.tgz#7b42592391628b4f2cb17365c6cce4257c7b7af5"
@@ -10056,25 +10216,39 @@ tcomb@^2.5.0:
   resolved "https://registry.yarnpkg.com/tcomb/-/tcomb-2.7.0.tgz#10d62958041669a5d53567b9a4ee8cde22b1c2b0"
   integrity sha1-ENYpWAQWaaXVNWe5pO6M3iKxwrA=
 
-terser-webpack-plugin@^1.4.1:
-  version "1.4.1"
-  resolved "https://registry.yarnpkg.com/terser-webpack-plugin/-/terser-webpack-plugin-1.4.1.tgz#61b18e40eaee5be97e771cdbb10ed1280888c2b4"
-  integrity sha512-ZXmmfiwtCLfz8WKZyYUuuHf3dMYEjg8NrjHMb0JqHVHVOSkzp3cW2/XG1fP3tRhqEqSzMwzzRQGtAPbs4Cncxg==
+terser-webpack-plugin@^1.4.3:
+  version "1.4.3"
+  resolved "https://registry.yarnpkg.com/terser-webpack-plugin/-/terser-webpack-plugin-1.4.3.tgz#5ecaf2dbdc5fb99745fd06791f46fc9ddb1c9a7c"
+  integrity sha512-QMxecFz/gHQwteWwSo5nTc6UaICqN1bMedC5sMtUc7y3Ha3Q8y6ZO0iCR8pq4RJC8Hjf0FEPEHZqcMB/+DFCrA==
   dependencies:
     cacache "^12.0.2"
     find-cache-dir "^2.1.0"
     is-wsl "^1.1.0"
     schema-utils "^1.0.0"
-    serialize-javascript "^1.7.0"
+    serialize-javascript "^2.1.2"
     source-map "^0.6.1"
     terser "^4.1.2"
     webpack-sources "^1.4.0"
     worker-farm "^1.7.0"
 
-terser@^4.1.2:
-  version "4.3.4"
-  resolved "https://registry.yarnpkg.com/terser/-/terser-4.3.4.tgz#ad91bade95619e3434685d69efa621a5af5f877d"
-  integrity sha512-Kcrn3RiW8NtHBP0ssOAzwa2MsIRQ8lJWiBG/K7JgqPlomA3mtb2DEmp4/hrUA+Jujx+WZ02zqd7GYD+QRBB/2Q==
+terser-webpack-plugin@^2.3.2:
+  version "2.3.2"
+  resolved "https://registry.yarnpkg.com/terser-webpack-plugin/-/terser-webpack-plugin-2.3.2.tgz#6d3d1b0590c8f729bfbaeb7fb2528b8b62db4c74"
+  integrity sha512-SmvB/6gtEPv+CJ88MH5zDOsZdKXPS/Uzv2//e90+wM1IHFUhsguPKEILgzqrM1nQ4acRXN/SV4Obr55SXC+0oA==
+  dependencies:
+    cacache "^13.0.1"
+    find-cache-dir "^3.2.0"
+    jest-worker "^24.9.0"
+    schema-utils "^2.6.1"
+    serialize-javascript "^2.1.2"
+    source-map "^0.6.1"
+    terser "^4.4.3"
+    webpack-sources "^1.4.3"
+
+terser@^4.1.2, terser@^4.4.3:
+  version "4.4.3"
+  resolved "https://registry.yarnpkg.com/terser/-/terser-4.4.3.tgz#401abc52b88869cf904412503b1eb7da093ae2f0"
+  integrity sha512-0ikKraVtRDKGzHrzkCv5rUNDzqlhmhowOBqC0XqUHFpW+vJ45+20/IFBcebwKfiS2Z9fJin6Eo+F1zLZsxi8RA==
   dependencies:
     commander "^2.20.0"
     source-map "~0.6.1"
@@ -10241,13 +10415,6 @@ toidentifier@1.0.0:
   resolved "https://registry.yarnpkg.com/toidentifier/-/toidentifier-1.0.0.tgz#7e1be3470f1e77948bc43d94a3c8f4d7752ba553"
   integrity sha512-yaOH/Pk/VEhBWWTlhI+qXxDFXlejDGcQipMlyxda9nthulaxLZUNcUqFxokp0vcYnvteJln5FNQDRrxj3YcbVw==
 
-touch@^2.0.1:
-  version "2.0.2"
-  resolved "https://registry.yarnpkg.com/touch/-/touch-2.0.2.tgz#ca0b2a3ae3211246a61b16ba9e6cbf1596287164"
-  integrity sha512-qjNtvsFXTRq7IuMLweVgFxmEuQ6gLbRs2jQxL80TtZ31dEKWYIxRXquij6w6VimyDek5hD3PytljHmEtAs2u0A==
-  dependencies:
-    nopt "~1.0.10"
-
 tough-cookie@>=2.3.3, tough-cookie@^2.3.4:
   version "2.5.0"
   resolved "https://registry.yarnpkg.com/tough-cookie/-/tough-cookie-2.5.0.tgz#cd9fb2a0aa1d5a12b473bd9fb96fa3dcff65ade2"
@@ -10271,11 +10438,6 @@ tr46@^1.0.1:
   dependencies:
     punycode "^2.1.0"
 
-trim-right@^1.0.1:
-  version "1.0.1"
-  resolved "https://registry.yarnpkg.com/trim-right/-/trim-right-1.0.1.tgz#cb2e1203067e0c8de1f614094b9fe45704ea6003"
-  integrity sha1-yy4SAwZ+DI3h9hQJS5/kVwTqYAM=
-
 tryer@^1.0.1:
   version "1.0.1"
   resolved "https://registry.yarnpkg.com/tryer/-/tryer-1.0.1.tgz#f2c85406800b9b0f74c9f7465b81eaad241252f8"
@@ -10310,6 +10472,11 @@ type-check@~0.3.2:
   dependencies:
     prelude-ls "~1.1.2"
 
+type-fest@^0.8.1:
+  version "0.8.1"
+  resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.8.1.tgz#09e249ebde851d3b1e48d27c105444667f17b83d"
+  integrity sha512-4dbzIzqvjtgiM5rw1k5rEHtBANKmdudhGyBEajN01fEyhaAIhsoKNy6y7+IN93IfpFtwY9iqi7kD+xwKhQsNJA==
+
 type-is@~1.6.17, type-is@~1.6.18:
   version "1.6.18"
   resolved "https://registry.yarnpkg.com/type-is/-/type-is-1.6.18.tgz#4e552cd05df09467dcbc4ef739de89f2cf37c131"
@@ -10323,6 +10490,11 @@ type@^1.0.1:
   resolved "https://registry.yarnpkg.com/type/-/type-1.0.3.tgz#16f5d39f27a2d28d86e48f8981859e9d3296c179"
   integrity sha512-51IMtNfVcee8+9GJvj0spSuFcZHe9vSib6Xtgsny1Km9ugyz2mbS08I3rsUIRYgJohFRFU1160sgRodYz378Hg==
 
+type@^2.0.0:
+  version "2.0.0"
+  resolved "https://registry.yarnpkg.com/type/-/type-2.0.0.tgz#5f16ff6ef2eb44f260494dae271033b29c09a9c3"
+  integrity sha512-KBt58xCHry4Cejnc2ISQAF7QY+ORngsWfxezO68+12hKV6lQY8P/psIkcbjeHWn7MqcgciWJyCCevFMJdIXpow==
+
 typedarray@^0.0.6:
   version "0.0.6"
   resolved "https://registry.yarnpkg.com/typedarray/-/typedarray-0.0.6.tgz#867ac74e3864187b1d3d47d996a78ec5c8830777"
@@ -10334,11 +10506,11 @@ ua-parser-js@^0.7.18:
   integrity sha512-T3PVJ6uz8i0HzPxOF9SWzWAlfN/DavlpQqepn22xgve/5QecC+XMCAtmUNnY7C9StehaV6exjUCI801lOI7QlQ==
 
 uglify-js@^3.1.4:
-  version "3.6.0"
-  resolved "https://registry.yarnpkg.com/uglify-js/-/uglify-js-3.6.0.tgz#704681345c53a8b2079fb6cec294b05ead242ff5"
-  integrity sha512-W+jrUHJr3DXKhrsS7NUVxn3zqMOFn0hL/Ei6v0anCIMoKC93TjcflTagwIHLW7SfMFfiQuktQyFVCFHGUE0+yg==
+  version "3.7.2"
+  resolved "https://registry.yarnpkg.com/uglify-js/-/uglify-js-3.7.2.tgz#cb1a601e67536e9ed094a92dd1e333459643d3f9"
+  integrity sha512-uhRwZcANNWVLrxLfNFEdltoPNhECUR3lc+UdJoG9CBpMcSnKyWA94tc3eAujB1GcMY5Uwq8ZMp4qWpxWYDQmaA==
   dependencies:
-    commander "~2.20.0"
+    commander "~2.20.3"
     source-map "~0.6.1"
 
 unicode-astral-regex@^1.0.1:
@@ -10510,16 +10682,11 @@ utils-merge@1.0.1:
   resolved "https://registry.yarnpkg.com/utils-merge/-/utils-merge-1.0.1.tgz#9f95710f50a267947b2ccc124741c1028427e713"
   integrity sha1-n5VxD1CiZ5R7LMwSR0HBAoQn5xM=
 
-uuid@^3.0.1, uuid@^3.3.2:
+uuid@^3.0.1, uuid@^3.3.2, uuid@^3.3.3:
   version "3.3.3"
   resolved "https://registry.yarnpkg.com/uuid/-/uuid-3.3.3.tgz#4568f0216e78760ee1dbf3a4d2cf53e224112866"
   integrity sha512-pW0No1RGHgzlpHJO1nsVrHKpOEIxkGg1xB+v0ZmdNH5OAeAwzAVrCnI2/6Mtx+Uys6iaylxa+D3g4j63IKKjSQ==
 
-uuid@^3.1.0:
-  version "3.3.2"
-  resolved "https://registry.yarnpkg.com/uuid/-/uuid-3.3.2.tgz#1b4af4955eb3077c501c23872fc6513811587131"
-  integrity sha512-yXJmeNaw3DnnKAOKJE51sL/ZaYfWJRl1pK9dr19YFCu0ObS231AB1/LbqTKRAQ5kw8A90rA6fr4riOUpTZvQZA==
-
 v8-compile-cache@2.0.3, v8-compile-cache@^2.0.3:
   version "2.0.3"
   resolved "https://registry.yarnpkg.com/v8-compile-cache/-/v8-compile-cache-2.0.3.tgz#00f7494d2ae2b688cfe2899df6ed2c54bef91dbe"
@@ -10604,10 +10771,10 @@ watchpack@^1.6.0:
     graceful-fs "^4.1.2"
     neo-async "^2.5.0"
 
-wavesurfer.js@^3.0.0:
-  version "3.0.0"
-  resolved "https://registry.yarnpkg.com/wavesurfer.js/-/wavesurfer.js-3.0.0.tgz#35f36d76d59c749dca453cf4e10ee0ec49f454f8"
-  integrity sha512-DANu206c6gb9pSUbYFevsSiXMy8+Ri+CNtqm0UsouUdsn9fVQRtYs8uxzBtXK+rUPlIc6FlO54DU8uWeW3lDzw==
+wavesurfer.js@^3.3.1:
+  version "3.3.1"
+  resolved "https://registry.yarnpkg.com/wavesurfer.js/-/wavesurfer.js-3.3.1.tgz#af6e4fb260c7d4fe1b14e7eb51df2dea802ad5c6"
+  integrity sha512-5w+Daa4EIoFcErXX4hZSkNdfdnCSTiaoTJMF5r7O7O6Kiv+oCrIlLwA73Ms9ULs+IZqOM9XhC33sfINgYdC4rw==
 
 wbuf@^1.1.0, wbuf@^1.7.3:
   version "1.7.3"
@@ -10634,10 +10801,10 @@ webpack-assets-manifest@^3.1.1:
     tapable "^1.0.0"
     webpack-sources "^1.0.0"
 
-webpack-bundle-analyzer@^3.3.2:
-  version "3.5.2"
-  resolved "https://registry.yarnpkg.com/webpack-bundle-analyzer/-/webpack-bundle-analyzer-3.5.2.tgz#ac02834f4b31de8e27d71e6c7a612301ebddb79f"
-  integrity sha512-g9spCNe25QYUVqHRDkwG414GTok2m7pTTP0wr6l0J50Z3YLS04+BGodTqqoVBL7QfU/U/9p/oiI5XFOyfZ7S/A==
+webpack-bundle-analyzer@^3.6.0:
+  version "3.6.0"
+  resolved "https://registry.yarnpkg.com/webpack-bundle-analyzer/-/webpack-bundle-analyzer-3.6.0.tgz#39b3a8f829ca044682bc6f9e011c95deb554aefd"
+  integrity sha512-orUfvVYEfBMDXgEKAKVvab5iQ2wXneIEorGNsyuOyVYpjYrI7CUOhhXNDd3huMwQ3vNNWWlGP+hzflMFYNzi2g==
   dependencies:
     acorn "^6.0.7"
     acorn-walk "^6.1.1"
@@ -10653,10 +10820,10 @@ webpack-bundle-analyzer@^3.3.2:
     opener "^1.5.1"
     ws "^6.0.0"
 
-webpack-cli@^3.3.7:
-  version "3.3.9"
-  resolved "https://registry.yarnpkg.com/webpack-cli/-/webpack-cli-3.3.9.tgz#79c27e71f94b7fe324d594ab64a8e396b9daa91a"
-  integrity sha512-xwnSxWl8nZtBl/AFJCOn9pG7s5CYUYdZxmmukv+fAHLcBIHM36dImfpQg3WfShZXeArkWlf6QRw24Klcsv8a5A==
+webpack-cli@^3.3.10:
+  version "3.3.10"
+  resolved "https://registry.yarnpkg.com/webpack-cli/-/webpack-cli-3.3.10.tgz#17b279267e9b4fb549023fae170da8e6e766da13"
+  integrity sha512-u1dgND9+MXaEt74sJR4PR7qkPxXUSQ0RXYq8x1L6Jg1MYVEmGPrH6Ah6C4arD4r0J1P5HKjRqpab36k0eIzPqg==
   dependencies:
     chalk "2.4.2"
     cross-spawn "6.0.5"
@@ -10670,7 +10837,7 @@ webpack-cli@^3.3.7:
     v8-compile-cache "2.0.3"
     yargs "13.2.4"
 
-webpack-dev-middleware@^3.7.1:
+webpack-dev-middleware@^3.7.2:
   version "3.7.2"
   resolved "https://registry.yarnpkg.com/webpack-dev-middleware/-/webpack-dev-middleware-3.7.2.tgz#0019c3db716e3fa5cecbf64f2ab88a74bab331f3"
   integrity sha512-1xC42LxbYoqLNAhV6YzTYacicgMZQTqRd27Sim9wn5hJrX3I5nxYy1SxSd4+gjUFsz1dQFj+yEe6zEVmSkeJjw==
@@ -10681,10 +10848,10 @@ webpack-dev-middleware@^3.7.1:
     range-parser "^1.2.1"
     webpack-log "^2.0.0"
 
-webpack-dev-server@^3.8.0:
-  version "3.8.1"
-  resolved "https://registry.yarnpkg.com/webpack-dev-server/-/webpack-dev-server-3.8.1.tgz#485b64c4aadc23f601e72114b40c1b1fea31d9f1"
-  integrity sha512-9F5DnfFA9bsrhpUCAfQic/AXBVHvq+3gQS+x6Zj0yc1fVVE0erKh2MV4IV12TBewuTrYeeTIRwCH9qLMvdNvTw==
+webpack-dev-server@^3.10.1:
+  version "3.10.1"
+  resolved "https://registry.yarnpkg.com/webpack-dev-server/-/webpack-dev-server-3.10.1.tgz#1ff3e5cccf8e0897aa3f5909c654e623f69b1c0e"
+  integrity sha512-AGG4+XrrXn4rbZUueyNrQgO4KGnol+0wm3MPdqGLmmA+NofZl3blZQKxZ9BND6RDNuvAK9OMYClhjOSnxpWRoA==
   dependencies:
     ansi-html "0.0.7"
     bonjour "^3.5.0"
@@ -10695,18 +10862,18 @@ webpack-dev-server@^3.8.0:
     del "^4.1.1"
     express "^4.17.1"
     html-entities "^1.2.1"
-    http-proxy-middleware "^0.19.1"
+    http-proxy-middleware "0.19.1"
     import-local "^2.0.0"
     internal-ip "^4.3.0"
     ip "^1.1.5"
-    is-absolute-url "^3.0.2"
+    is-absolute-url "^3.0.3"
     killable "^1.0.1"
-    loglevel "^1.6.4"
+    loglevel "^1.6.6"
     opn "^5.5.0"
     p-retry "^3.0.1"
-    portfinder "^1.0.24"
+    portfinder "^1.0.25"
     schema-utils "^1.0.0"
-    selfsigned "^1.10.6"
+    selfsigned "^1.10.7"
     semver "^6.3.0"
     serve-index "^1.9.1"
     sockjs "0.3.19"
@@ -10715,7 +10882,7 @@ webpack-dev-server@^3.8.0:
     strip-ansi "^3.0.1"
     supports-color "^6.1.0"
     url "^0.11.0"
-    webpack-dev-middleware "^3.7.1"
+    webpack-dev-middleware "^3.7.2"
     webpack-log "^2.0.0"
     ws "^6.2.1"
     yargs "12.0.5"
@@ -10735,7 +10902,7 @@ webpack-merge@^4.2.1:
   dependencies:
     lodash "^4.17.15"
 
-webpack-sources@^1.0.0, webpack-sources@^1.0.1, webpack-sources@^1.1.0, webpack-sources@^1.4.0, webpack-sources@^1.4.1:
+webpack-sources@^1.0.0, webpack-sources@^1.0.1, webpack-sources@^1.1.0, webpack-sources@^1.4.0, webpack-sources@^1.4.1, webpack-sources@^1.4.3:
   version "1.4.3"
   resolved "https://registry.yarnpkg.com/webpack-sources/-/webpack-sources-1.4.3.tgz#eedd8ec0b928fbf1cbfe994e22d2d890f330a933"
   integrity sha512-lgTS3Xhv1lCOKo7SA5TjKXMjpSM4sBjNV5+q2bqesbSPs5FjGmU6jjtBSkX9b4qW87vDIsCIlUPOEhbZrMdjeQ==
@@ -10743,10 +10910,10 @@ webpack-sources@^1.0.0, webpack-sources@^1.0.1, webpack-sources@^1.1.0, webpack-
     source-list-map "^2.0.0"
     source-map "~0.6.1"
 
-webpack@^4.35.3:
-  version "4.41.0"
-  resolved "https://registry.yarnpkg.com/webpack/-/webpack-4.41.0.tgz#db6a254bde671769f7c14e90a1a55e73602fc70b"
-  integrity sha512-yNV98U4r7wX1VJAj5kyMsu36T8RPPQntcb5fJLOsMz/pt/WrKC0Vp1bAlqPLkA1LegSwQwf6P+kAbyhRKVQ72g==
+webpack@^4.41.5:
+  version "4.41.5"
+  resolved "https://registry.yarnpkg.com/webpack/-/webpack-4.41.5.tgz#3210f1886bce5310e62bb97204d18c263341b77c"
+  integrity sha512-wp0Co4vpyumnp3KlkmpM5LWuzvZYayDwM2n17EHFr4qxBBbRokC7DJawPJC7TfSFZ9HZ6GsdH40EBj4UV0nmpw==
   dependencies:
     "@webassemblyjs/ast" "1.8.5"
     "@webassemblyjs/helper-module-context" "1.8.5"
@@ -10768,7 +10935,7 @@ webpack@^4.35.3:
     node-libs-browser "^2.2.1"
     schema-utils "^1.0.0"
     tapable "^1.1.3"
-    terser-webpack-plugin "^1.4.1"
+    terser-webpack-plugin "^1.4.3"
     watchpack "^1.6.0"
     webpack-sources "^1.4.1"
 
@@ -10786,13 +10953,6 @@ websocket-extensions@>=0.1.1:
   resolved "https://registry.yarnpkg.com/websocket-extensions/-/websocket-extensions-0.1.3.tgz#5d2ff22977003ec687a4b87073dfbbac146ccf29"
   integrity sha512-nqHUnMXmBzT0w570r2JpJxfiSD1IzoI+HGVdd3aZ0yNi3ngvQ4jv1dtHt5VGxfI2yj5yqImPhOK4vmIh2xMbGg==
 
-websocket.js@^0.1.12:
-  version "0.1.12"
-  resolved "https://registry.yarnpkg.com/websocket.js/-/websocket.js-0.1.12.tgz#46c980787c57ebc8edcf44a0263e5d639367b85b"
-  integrity sha1-RsmAeHxX68jtz0SgJj5dY5NnuFs=
-  dependencies:
-    backoff "^2.4.1"
-
 whatwg-encoding@^1.0.1, whatwg-encoding@^1.0.3:
   version "1.0.5"
   resolved "https://registry.yarnpkg.com/whatwg-encoding/-/whatwg-encoding-1.0.5.tgz#5abacf777c32166a51d085d6b4f3e7d27113ddb0"
@@ -10840,6 +11000,18 @@ which@^1.2.14, which@^1.2.9, which@^1.3.0, which@^1.3.1:
   dependencies:
     isexe "^2.0.0"
 
+which@^2.0.1:
+  version "2.0.1"
+  resolved "https://registry.yarnpkg.com/which/-/which-2.0.1.tgz#f1cf94d07a8e571b6ff006aeb91d0300c47ef0a4"
+  integrity sha512-N7GBZOTswtB9lkQBZA4+zAXrjEIWAUOB93AvzUiudRzRxhUdLURQ7D/gAIMY1gatT/LTbmbcv8SiYazy3eYB7w==
+  dependencies:
+    isexe "^2.0.0"
+
+wicg-inert@^3.0.0:
+  version "3.0.0"
+  resolved "https://registry.yarnpkg.com/wicg-inert/-/wicg-inert-3.0.0.tgz#4f5797172fbf7ff01effd3839b52872e35d3cba2"
+  integrity sha512-sZsYZ8pk8y6CgDLkTxivfhLDBvZuDWTWBawU8OuDdO0Id6AOd1Gqjkvt9g9Ni7rgHIS7UbRvbLSv1z7MSJDYCA==
+
 wide-align@^1.1.0:
   version "1.1.3"
   resolved "https://registry.yarnpkg.com/wide-align/-/wide-align-1.1.3.tgz#ae074e6bdc0c14a431e804e624549c633b000457"
@@ -10847,16 +11019,16 @@ wide-align@^1.1.0:
   dependencies:
     string-width "^1.0.2 || 2"
 
+word-wrap@~1.2.3:
+  version "1.2.3"
+  resolved "https://registry.yarnpkg.com/word-wrap/-/word-wrap-1.2.3.tgz#610636f6b1f703891bd34771ccb17fb93b47079c"
+  integrity sha512-Hz/mrNwitNRh/HUAtM/VT/5VH+ygD6DV7mYKZAtHOrbs8U7lvPS6xf7EJKMF0uW1KJCl0H701g3ZGus+muE5vQ==
+
 wordwrap@~0.0.2:
   version "0.0.3"
   resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-0.0.3.tgz#a3d5da6cd5c0bc0008d37234bbaf1bed63059107"
   integrity sha1-o9XabNXAvAAI03I0u68b7WMFkQc=
 
-wordwrap@~1.0.0:
-  version "1.0.0"
-  resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-1.0.0.tgz#27584810891456a4171c8d0226441ade90cbcaeb"
-  integrity sha1-J1hIEIkUVqQXHI0CJkQa3pDLyus=
-
 worker-farm@^1.7.0:
   version "1.7.0"
   resolved "https://registry.yarnpkg.com/worker-farm/-/worker-farm-1.7.0.tgz#26a94c5391bbca926152002f69b84a4bf772e5a8"
@@ -10881,6 +11053,15 @@ wrap-ansi@^5.1.0:
     string-width "^3.0.0"
     strip-ansi "^5.0.0"
 
+wrap-ansi@^6.2.0:
+  version "6.2.0"
+  resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-6.2.0.tgz#e9393ba07102e6c91a3b221478f0257cd2856e53"
+  integrity sha512-r6lPcBGxZXlIcymEu7InxDMhdW0KDxpLgoFLcguasxCaJ/SOIZwINatK9KY/tf+ZrlywOKU0UDj3ATXUBfxJXA==
+  dependencies:
+    ansi-styles "^4.0.0"
+    string-width "^4.1.0"
+    strip-ansi "^6.0.0"
+
 wrappy@1:
   version "1.0.2"
   resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f"
@@ -10943,6 +11124,18 @@ yallist@^3.0.0, yallist@^3.0.2, yallist@^3.0.3:
   resolved "https://registry.yarnpkg.com/yallist/-/yallist-3.1.1.tgz#dbb7daf9bfd8bac9ab45ebf602b8cbad0d5d08fd"
   integrity sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==
 
+yallist@^4.0.0:
+  version "4.0.0"
+  resolved "https://registry.yarnpkg.com/yallist/-/yallist-4.0.0.tgz#9bb92790d9c0effec63be73519e11a35019a3a72"
+  integrity sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==
+
+yaml@^1.7.2:
+  version "1.7.2"
+  resolved "https://registry.yarnpkg.com/yaml/-/yaml-1.7.2.tgz#f26aabf738590ab61efaca502358e48dc9f348b2"
+  integrity sha512-qXROVp90sb83XtAoqE8bP9RwAkTTZbugRUTm5YeFCBfNRPEp2YzTeqWiz7m5OORHzEvrA/qcGS8hp/E+MMROYw==
+  dependencies:
+    "@babel/runtime" "^7.6.3"
+
 yargs-parser@^11.1.1:
   version "11.1.1"
   resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-11.1.1.tgz#879a0865973bca9f6bab5cbdf3b1c67ec7d3bcf4"
@@ -10959,6 +11152,14 @@ yargs-parser@^13.1.0, yargs-parser@^13.1.1:
     camelcase "^5.0.0"
     decamelize "^1.2.0"
 
+yargs-parser@^16.1.0:
+  version "16.1.0"
+  resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-16.1.0.tgz#73747d53ae187e7b8dbe333f95714c76ea00ecf1"
+  integrity sha512-H/V41UNZQPkUMIT5h5hiwg4QKIY1RPvoBV4XcjUbRM8Bk2oKqqyZ0DIEbTFZB0XjbtSPG8SAa/0DxCQmiRgzKg==
+  dependencies:
+    camelcase "^5.0.0"
+    decamelize "^1.2.0"
+
 yargs@12.0.5:
   version "12.0.5"
   resolved "https://registry.yarnpkg.com/yargs/-/yargs-12.0.5.tgz#05f5997b609647b64f66b81e3b4b10a368e7ad13"
@@ -11010,6 +11211,23 @@ yargs@^13.3.0:
     y18n "^4.0.0"
     yargs-parser "^13.1.1"
 
+yargs@^15.1.0:
+  version "15.1.0"
+  resolved "https://registry.yarnpkg.com/yargs/-/yargs-15.1.0.tgz#e111381f5830e863a89550bd4b136bb6a5f37219"
+  integrity sha512-T39FNN1b6hCW4SOIk1XyTOWxtXdcen0t+XYrysQmChzSipvhBO8Bj0nK1ozAasdk24dNWuMZvr4k24nz+8HHLg==
+  dependencies:
+    cliui "^6.0.0"
+    decamelize "^1.2.0"
+    find-up "^4.1.0"
+    get-caller-file "^2.0.1"
+    require-directory "^2.1.1"
+    require-main-filename "^2.0.0"
+    set-blocking "^2.0.0"
+    string-width "^4.2.0"
+    which-module "^2.0.0"
+    y18n "^4.0.0"
+    yargs-parser "^16.1.0"
+
 zlibjs@^0.3.1:
   version "0.3.1"
   resolved "https://registry.yarnpkg.com/zlibjs/-/zlibjs-0.3.1.tgz#50197edb28a1c42ca659cc8b4e6a9ddd6d444554"