about summary refs log tree commit diff
diff options
context:
space:
mode:
authorThibaut Girka <thib@sitedethib.com>2019-11-20 15:36:09 +0100
committerThibaut Girka <thib@sitedethib.com>2019-11-20 15:36:09 +0100
commitff67385cfbfd6f5403b2f8b58407dc730dc7e694 (patch)
treea8a0df2129a863a739dda6399352d64af811110e
parent707c4918b21d19dd53b64120dbc7263f45fc5ecd (diff)
parent8dfc45f757ed8995be0d16e88a1f1d6514dae677 (diff)
Merge branch 'master' into glitch-soc/merge-upstream
Conflicts:
- README.md
  discarded upstream changes
- app/controllers/api/v1/bookmarks_controller.rb
  finally merged upstream, some code style fixes
  and slightly changed pagination code
- app/controllers/application_controller.rb
  changed upstream to always return HTML error pages
  slight conflict caused by theming code
- app/models/bookmark.rb
  finally merged upstream, no real conflict
- spec/controllers/api/v1/bookmarks_controller_spec.rb
  finally merged upstream, slightly changed pagination code
-rw-r--r--.cache/.gitkeep0
-rw-r--r--.github/ISSUE_TEMPLATE/config.yml5
-rw-r--r--CONTRIBUTING.md2
-rw-r--r--Gemfile16
-rw-r--r--Gemfile.lock63
-rw-r--r--app/controllers/api/v1/accounts/credentials_controller.rb2
-rw-r--r--app/controllers/api/v1/bookmarks_controller.rb13
-rw-r--r--app/controllers/application_controller.rb10
-rw-r--r--app/helpers/admin/action_logs_helper.rb6
-rw-r--r--app/helpers/settings_helper.rb3
-rw-r--r--app/javascript/mastodon/actions/bookmarks.js90
-rw-r--r--app/javascript/mastodon/actions/interactions.js80
-rw-r--r--app/javascript/mastodon/components/status_action_bar.js96
-rw-r--r--app/javascript/mastodon/containers/dropdown_menu_container.js6
-rw-r--r--app/javascript/mastodon/containers/status_container.js42
-rw-r--r--app/javascript/mastodon/features/bookmarked_statuses/index.js104
-rw-r--r--app/javascript/mastodon/features/community_timeline/index.js7
-rw-r--r--app/javascript/mastodon/features/getting_started/index.js4
-rw-r--r--app/javascript/mastodon/features/public_timeline/index.js8
-rw-r--r--app/javascript/mastodon/features/status/components/action_bar.js97
-rw-r--r--app/javascript/mastodon/features/status/index.js47
-rw-r--r--app/javascript/mastodon/features/ui/components/columns_area.js2
-rw-r--r--app/javascript/mastodon/features/ui/components/navigation_panel.js1
-rw-r--r--app/javascript/mastodon/features/ui/index.js2
-rw-r--r--app/javascript/mastodon/features/ui/util/async-components.js4
-rw-r--r--app/javascript/mastodon/locales/ar.json18
-rw-r--r--app/javascript/mastodon/locales/bg.json10
-rw-r--r--app/javascript/mastodon/locales/bn.json148
-rw-r--r--app/javascript/mastodon/locales/cy.json16
-rw-r--r--app/javascript/mastodon/locales/da.json18
-rw-r--r--app/javascript/mastodon/locales/de.json2
-rw-r--r--app/javascript/mastodon/locales/es-AR.json6
-rw-r--r--app/javascript/mastodon/locales/et.json72
-rw-r--r--app/javascript/mastodon/locales/eu.json14
-rw-r--r--app/javascript/mastodon/locales/fi.json22
-rw-r--r--app/javascript/mastodon/locales/fr.json74
-rw-r--r--app/javascript/mastodon/locales/hi.json508
-rw-r--r--app/javascript/mastodon/locales/hu.json98
-rw-r--r--app/javascript/mastodon/locales/hy.json4
-rw-r--r--app/javascript/mastodon/locales/id.json156
-rw-r--r--app/javascript/mastodon/locales/it.json20
-rw-r--r--app/javascript/mastodon/locales/kk.json92
-rw-r--r--app/javascript/mastodon/locales/kn.json423
-rw-r--r--app/javascript/mastodon/locales/ko.json8
-rw-r--r--app/javascript/mastodon/locales/mk.json350
-rw-r--r--app/javascript/mastodon/locales/ml.json423
-rw-r--r--app/javascript/mastodon/locales/mr.json423
-rw-r--r--app/javascript/mastodon/locales/nl.json12
-rw-r--r--app/javascript/mastodon/locales/nn.json354
-rw-r--r--app/javascript/mastodon/locales/no.json74
-rw-r--r--app/javascript/mastodon/locales/oc.json10
-rw-r--r--app/javascript/mastodon/locales/pl.json4
-rw-r--r--app/javascript/mastodon/locales/pt-PT.json72
-rw-r--r--app/javascript/mastodon/locales/ru.json52
-rw-r--r--app/javascript/mastodon/locales/sk.json26
-rw-r--r--app/javascript/mastodon/locales/sl.json2
-rw-r--r--app/javascript/mastodon/locales/sv.json124
-rw-r--r--app/javascript/mastodon/locales/ta.json204
-rw-r--r--app/javascript/mastodon/locales/th.json42
-rw-r--r--app/javascript/mastodon/locales/tr.json42
-rw-r--r--app/javascript/mastodon/locales/uk.json26
-rw-r--r--app/javascript/mastodon/locales/ur.json423
-rw-r--r--app/javascript/mastodon/locales/whitelist_kn.json2
-rw-r--r--app/javascript/mastodon/locales/whitelist_ml.json2
-rw-r--r--app/javascript/mastodon/locales/whitelist_mr.json2
-rw-r--r--app/javascript/mastodon/locales/whitelist_ur.json2
-rw-r--r--app/javascript/mastodon/locales/zh-CN.json76
-rw-r--r--app/javascript/mastodon/reducers/status_lists.js29
-rw-r--r--app/javascript/mastodon/reducers/statuses.js6
-rw-r--r--app/javascript/styles/mastodon/components.scss4
-rw-r--r--app/javascript/styles/mastodon/variables.scss2
-rw-r--r--app/lib/feed_manager.rb2
-rw-r--r--app/models/bookmark.rb6
-rw-r--r--app/services/fetch_link_card_service.rb23
-rw-r--r--app/services/fetch_oembed_service.rb31
-rw-r--r--app/services/resolve_url_service.rb6
-rw-r--r--config/application.rb4
-rw-r--r--config/i18n-tasks.yml3
-rw-r--r--config/locales/activerecord.fi.yml2
-rw-r--r--config/locales/activerecord.hi.yml1
-rw-r--r--config/locales/activerecord.kn.yml1
-rw-r--r--config/locales/activerecord.ml.yml1
-rw-r--r--config/locales/activerecord.mr.yml13
-rw-r--r--config/locales/activerecord.ta.yml16
-rw-r--r--config/locales/activerecord.ur.yml1
-rw-r--r--config/locales/ar.yml19
-rw-r--r--config/locales/bn.yml64
-rw-r--r--config/locales/ca.yml7
-rw-r--r--config/locales/co.yml11
-rw-r--r--config/locales/cs.yml7
-rw-r--r--config/locales/cy.yml99
-rw-r--r--config/locales/da.yml20
-rw-r--r--config/locales/de.yml3
-rw-r--r--config/locales/devise.bn.yml58
-rw-r--r--config/locales/devise.da.yml4
-rw-r--r--config/locales/devise.et.yml12
-rw-r--r--config/locales/devise.eu.yml8
-rw-r--r--config/locales/devise.fi.yml39
-rw-r--r--config/locales/devise.fr.yml12
-rw-r--r--config/locales/devise.hi.yml1
-rw-r--r--config/locales/devise.it.yml1
-rw-r--r--config/locales/devise.ja.yml8
-rw-r--r--config/locales/devise.kk.yml15
-rw-r--r--config/locales/devise.kn.yml1
-rw-r--r--config/locales/devise.ko.yml2
-rw-r--r--config/locales/devise.ml.yml8
-rw-r--r--config/locales/devise.mr.yml1
-rw-r--r--config/locales/devise.no.yml12
-rw-r--r--config/locales/devise.pt-BR.yml12
-rw-r--r--config/locales/devise.ru.yml12
-rw-r--r--config/locales/devise.sk.yml10
-rw-r--r--config/locales/devise.ta.yml37
-rw-r--r--config/locales/devise.th.yml49
-rw-r--r--config/locales/devise.uk.yml8
-rw-r--r--config/locales/devise.ur.yml1
-rw-r--r--config/locales/devise.zh-CN.yml14
-rw-r--r--config/locales/doorkeeper.es-AR.yml147
-rw-r--r--config/locales/doorkeeper.fi.yml12
-rw-r--r--config/locales/doorkeeper.fr.yml2
-rw-r--r--config/locales/doorkeeper.hi.yml1
-rw-r--r--config/locales/doorkeeper.kk.yml7
-rw-r--r--config/locales/doorkeeper.kn.yml1
-rw-r--r--config/locales/doorkeeper.ml.yml1
-rw-r--r--config/locales/doorkeeper.mr.yml34
-rw-r--r--config/locales/doorkeeper.ru.yml20
-rw-r--r--config/locales/doorkeeper.sk.yml4
-rw-r--r--config/locales/doorkeeper.ta.yml26
-rw-r--r--config/locales/doorkeeper.th.yml5
-rw-r--r--config/locales/doorkeeper.uk.yml1
-rw-r--r--config/locales/doorkeeper.ur.yml1
-rw-r--r--config/locales/doorkeeper.zh-CN.yml4
-rw-r--r--config/locales/el.yml18
-rw-r--r--config/locales/en.yml2
-rw-r--r--config/locales/eo.yml22
-rw-r--r--config/locales/es-AR.yml844
-rw-r--r--config/locales/es.yml7
-rw-r--r--config/locales/et.yml153
-rw-r--r--config/locales/eu.yml30
-rw-r--r--config/locales/fa.yml5
-rw-r--r--config/locales/fi.yml30
-rw-r--r--config/locales/fr.yml189
-rw-r--r--config/locales/gl.yml43
-rw-r--r--config/locales/hi.yml33
-rw-r--r--config/locales/hu.yml14
-rw-r--r--config/locales/id.yml433
-rw-r--r--config/locales/it.yml75
-rw-r--r--config/locales/ja.yml13
-rw-r--r--config/locales/kk.yml280
-rw-r--r--config/locales/kn.yml20
-rw-r--r--config/locales/ko.yml13
-rw-r--r--config/locales/ml.yml22
-rw-r--r--config/locales/mr.yml20
-rw-r--r--config/locales/nl.yml8
-rw-r--r--config/locales/oc.yml2
-rw-r--r--config/locales/pl.yml38
-rw-r--r--config/locales/pt-BR.yml8
-rw-r--r--config/locales/pt-PT.yml49
-rw-r--r--config/locales/ru.yml265
-rw-r--r--config/locales/simple_form.ar.yml1
-rw-r--r--config/locales/simple_form.bn.yml12
-rw-r--r--config/locales/simple_form.ca.yml1
-rw-r--r--config/locales/simple_form.co.yml1
-rw-r--r--config/locales/simple_form.cs.yml1
-rw-r--r--config/locales/simple_form.cy.yml1
-rw-r--r--config/locales/simple_form.da.yml5
-rw-r--r--config/locales/simple_form.de.yml1
-rw-r--r--config/locales/simple_form.el.yml1
-rw-r--r--config/locales/simple_form.eo.yml4
-rw-r--r--config/locales/simple_form.es-AR.yml170
-rw-r--r--config/locales/simple_form.es.yml1
-rw-r--r--config/locales/simple_form.et.yml19
-rw-r--r--config/locales/simple_form.eu.yml10
-rw-r--r--config/locales/simple_form.fa.yml1
-rw-r--r--config/locales/simple_form.fi.yml7
-rw-r--r--config/locales/simple_form.fr.yml3
-rw-r--r--config/locales/simple_form.gl.yml7
-rw-r--r--config/locales/simple_form.hi.yml1
-rw-r--r--config/locales/simple_form.hu.yml1
-rw-r--r--config/locales/simple_form.it.yml14
-rw-r--r--config/locales/simple_form.ja.yml1
-rw-r--r--config/locales/simple_form.kk.yml170
-rw-r--r--config/locales/simple_form.kn.yml1
-rw-r--r--config/locales/simple_form.ko.yml3
-rw-r--r--config/locales/simple_form.ml.yml8
-rw-r--r--config/locales/simple_form.mr.yml1
-rw-r--r--config/locales/simple_form.nl.yml3
-rw-r--r--config/locales/simple_form.oc.yml1
-rw-r--r--config/locales/simple_form.pt-BR.yml10
-rw-r--r--config/locales/simple_form.ru.yml19
-rw-r--r--config/locales/simple_form.sk.yml18
-rw-r--r--config/locales/simple_form.sv.yml17
-rw-r--r--config/locales/simple_form.ta.yml52
-rw-r--r--config/locales/simple_form.th.yml2
-rw-r--r--config/locales/simple_form.tr.yml27
-rw-r--r--config/locales/simple_form.uk.yml18
-rw-r--r--config/locales/simple_form.ur.yml1
-rw-r--r--config/locales/simple_form.zh-CN.yml10
-rw-r--r--config/locales/sk.yml48
-rw-r--r--config/locales/sv.yml82
-rw-r--r--config/locales/ta.yml39
-rw-r--r--config/locales/th.yml59
-rw-r--r--config/locales/tr.yml147
-rw-r--r--config/locales/uk.yml36
-rw-r--r--config/locales/ur.yml20
-rw-r--r--config/locales/zh-CN.yml95
-rw-r--r--config/locales/zh-TW.yml22
-rw-r--r--db/migrate/20180831171112_create_bookmarks.rb17
-rw-r--r--package.json32
-rw-r--r--public/emoji/1f1e8-1f1f3.svg2
-rw-r--r--public/emoji/1f1ed-1f1f7.svg2
-rw-r--r--public/emoji/1f301.svg2
-rw-r--r--public/emoji/1f312.svg2
-rw-r--r--public/emoji/1f313.svg2
-rw-r--r--public/emoji/1f314.svg2
-rw-r--r--public/emoji/1f315.svg2
-rw-r--r--public/emoji/1f316.svg2
-rw-r--r--public/emoji/1f317.svg2
-rw-r--r--public/emoji/1f318.svg2
-rw-r--r--public/emoji/1f319.svg2
-rw-r--r--public/emoji/1f31b.svg2
-rw-r--r--public/emoji/1f31c.svg2
-rw-r--r--public/emoji/1f31d.svg2
-rw-r--r--public/emoji/1f32b.svg2
-rw-r--r--public/emoji/1f391.svg2
-rw-r--r--public/emoji/1f393.svg2
-rw-r--r--public/emoji/1f396.svg2
-rw-r--r--public/emoji/1f397.svg2
-rw-r--r--public/emoji/1f39b.svg2
-rw-r--r--public/emoji/1f3a4.svg2
-rw-r--r--public/emoji/1f3a5.svg2
-rw-r--r--public/emoji/1f3a7.svg2
-rw-r--r--public/emoji/1f3a9.svg2
-rw-r--r--public/emoji/1f3ae.svg2
-rw-r--r--public/emoji/1f3b0.svg2
-rw-r--r--public/emoji/1f3b1.svg2
-rw-r--r--public/emoji/1f3b3.svg2
-rw-r--r--public/emoji/1f3b8.svg2
-rw-r--r--public/emoji/1f3b9.svg2
-rw-r--r--public/emoji/1f3bb.svg2
-rw-r--r--public/emoji/1f3bc.svg2
-rw-r--r--public/emoji/1f3c1.svg2
-rw-r--r--public/emoji/1f3c2-1f3fb.svg2
-rw-r--r--public/emoji/1f3c2-1f3fc.svg2
-rw-r--r--public/emoji/1f3c2-1f3fd.svg2
-rw-r--r--public/emoji/1f3c2-1f3fe.svg2
-rw-r--r--public/emoji/1f3c2-1f3ff.svg2
-rw-r--r--public/emoji/1f3c2.svg2
-rw-r--r--public/emoji/1f3c3-1f3fb-200d-2640-fe0f.svg2
-rw-r--r--public/emoji/1f3c3-1f3fb-200d-2642-fe0f.svg2
-rw-r--r--public/emoji/1f3c3-1f3fb.svg2
-rw-r--r--public/emoji/1f3c3-1f3fc-200d-2640-fe0f.svg2
-rw-r--r--public/emoji/1f3c3-1f3fc-200d-2642-fe0f.svg2
-rw-r--r--public/emoji/1f3c3-1f3fc.svg2
-rw-r--r--public/emoji/1f3c3-1f3fd-200d-2640-fe0f.svg2
-rw-r--r--public/emoji/1f3c3-1f3fd-200d-2642-fe0f.svg2
-rw-r--r--public/emoji/1f3c3-1f3fd.svg2
-rw-r--r--public/emoji/1f3c3-1f3fe-200d-2640-fe0f.svg2
-rw-r--r--public/emoji/1f3c3-1f3fe-200d-2642-fe0f.svg2
-rw-r--r--public/emoji/1f3c3-1f3fe.svg2
-rw-r--r--public/emoji/1f3c3-1f3ff-200d-2640-fe0f.svg2
-rw-r--r--public/emoji/1f3c3-1f3ff-200d-2642-fe0f.svg2
-rw-r--r--public/emoji/1f3c3-1f3ff.svg2
-rw-r--r--public/emoji/1f3c3-200d-2640-fe0f.svg2
-rw-r--r--public/emoji/1f3c3-200d-2642-fe0f.svg2
-rw-r--r--public/emoji/1f3c3.svg2
-rw-r--r--public/emoji/1f3c4-1f3fb-200d-2640-fe0f.svg2
-rw-r--r--public/emoji/1f3c4-1f3fb-200d-2642-fe0f.svg2
-rw-r--r--public/emoji/1f3c4-1f3fb.svg2
-rw-r--r--public/emoji/1f3c4-1f3fc-200d-2640-fe0f.svg2
-rw-r--r--public/emoji/1f3c4-1f3fc-200d-2642-fe0f.svg2
-rw-r--r--public/emoji/1f3c4-1f3fc.svg2
-rw-r--r--public/emoji/1f3c4-1f3fd-200d-2640-fe0f.svg2
-rw-r--r--public/emoji/1f3c4-1f3fd-200d-2642-fe0f.svg2
-rw-r--r--public/emoji/1f3c4-1f3fd.svg2
-rw-r--r--public/emoji/1f3c4-1f3fe-200d-2640-fe0f.svg2
-rw-r--r--public/emoji/1f3c4-1f3fe-200d-2642-fe0f.svg2
-rw-r--r--public/emoji/1f3c4-1f3fe.svg2
-rw-r--r--public/emoji/1f3c4-1f3ff-200d-2640-fe0f.svg2
-rw-r--r--public/emoji/1f3c4-1f3ff-200d-2642-fe0f.svg2
-rw-r--r--public/emoji/1f3c4-1f3ff.svg2
-rw-r--r--public/emoji/1f3c4-200d-2640-fe0f.svg2
-rw-r--r--public/emoji/1f3c4-200d-2642-fe0f.svg2
-rw-r--r--public/emoji/1f3c4.svg2
-rw-r--r--public/emoji/1f3c5.svg2
-rw-r--r--public/emoji/1f3cb-1f3fb-200d-2640-fe0f.svg2
-rw-r--r--public/emoji/1f3cb-1f3fb-200d-2642-fe0f.svg2
-rw-r--r--public/emoji/1f3cb-1f3fb.svg2
-rw-r--r--public/emoji/1f3cb-1f3fc-200d-2640-fe0f.svg2
-rw-r--r--public/emoji/1f3cb-1f3fc-200d-2642-fe0f.svg2
-rw-r--r--public/emoji/1f3cb-1f3fc.svg2
-rw-r--r--public/emoji/1f3cb-1f3fd-200d-2640-fe0f.svg2
-rw-r--r--public/emoji/1f3cb-1f3fd-200d-2642-fe0f.svg2
-rw-r--r--public/emoji/1f3cb-1f3fd.svg2
-rw-r--r--public/emoji/1f3cb-1f3fe-200d-2640-fe0f.svg2
-rw-r--r--public/emoji/1f3cb-1f3fe-200d-2642-fe0f.svg2
-rw-r--r--public/emoji/1f3cb-1f3fe.svg2
-rw-r--r--public/emoji/1f3cb-1f3ff-200d-2640-fe0f.svg2
-rw-r--r--public/emoji/1f3cb-1f3ff-200d-2642-fe0f.svg2
-rw-r--r--public/emoji/1f3cb-1f3ff.svg2
-rw-r--r--public/emoji/1f3cb-fe0f-200d-2640-fe0f.svg2
-rw-r--r--public/emoji/1f3cb-fe0f-200d-2642-fe0f.svg2
-rw-r--r--public/emoji/1f3cb.svg2
-rw-r--r--public/emoji/1f3d2.svg2
-rw-r--r--public/emoji/1f3f3-fe0f-200d-26a7-fe0f.svg1
-rw-r--r--public/emoji/1f3f4-200d-2620-fe0f.svg2
-rw-r--r--public/emoji/1f3f4.svg2
-rw-r--r--public/emoji/1f3f5.svg2
-rw-r--r--public/emoji/1f403.svg2
-rw-r--r--public/emoji/1f404.svg2
-rw-r--r--public/emoji/1f408.svg2
-rw-r--r--public/emoji/1f415-200d-1f9ba.svg1
-rw-r--r--public/emoji/1f415.svg2
-rw-r--r--public/emoji/1f41c.svg2
-rw-r--r--public/emoji/1f41d.svg2
-rw-r--r--public/emoji/1f41e.svg2
-rw-r--r--public/emoji/1f42c.svg2
-rw-r--r--public/emoji/1f431.svg2
-rw-r--r--public/emoji/1f433.svg2
-rw-r--r--public/emoji/1f436.svg2
-rw-r--r--public/emoji/1f43a.svg2
-rw-r--r--public/emoji/1f441-200d-1f5e8.svg2
-rw-r--r--public/emoji/1f44b-1f3fb.svg2
-rw-r--r--public/emoji/1f44b-1f3fc.svg2
-rw-r--r--public/emoji/1f44b-1f3fd.svg2
-rw-r--r--public/emoji/1f44b-1f3fe.svg2
-rw-r--r--public/emoji/1f44b-1f3ff.svg2
-rw-r--r--public/emoji/1f44b.svg2
-rw-r--r--public/emoji/1f44c-1f3fb.svg2
-rw-r--r--public/emoji/1f44c-1f3fc.svg2
-rw-r--r--public/emoji/1f44c-1f3fd.svg2
-rw-r--r--public/emoji/1f44c-1f3fe.svg2
-rw-r--r--public/emoji/1f44c-1f3ff.svg2
-rw-r--r--public/emoji/1f44c.svg2
-rw-r--r--public/emoji/1f453.svg2
-rw-r--r--public/emoji/1f464.svg2
-rw-r--r--public/emoji/1f465.svg2
-rw-r--r--public/emoji/1f468-1f3fb-200d-1f9af.svg1
-rw-r--r--public/emoji/1f468-1f3fb-200d-1f9bc.svg1
-rw-r--r--public/emoji/1f468-1f3fb-200d-1f9bd.svg1
-rw-r--r--public/emoji/1f468-1f3fc-200d-1f91d-200d-1f468-1f3fb.svg1
-rw-r--r--public/emoji/1f468-1f3fc-200d-1f9af.svg1
-rw-r--r--public/emoji/1f468-1f3fc-200d-1f9bc.svg1
-rw-r--r--public/emoji/1f468-1f3fc-200d-1f9bd.svg1
-rw-r--r--public/emoji/1f468-1f3fd-200d-1f91d-200d-1f468-1f3fb.svg1
-rw-r--r--public/emoji/1f468-1f3fd-200d-1f91d-200d-1f468-1f3fc.svg1
-rw-r--r--public/emoji/1f468-1f3fd-200d-1f9af.svg1
-rw-r--r--public/emoji/1f468-1f3fd-200d-1f9bc.svg1
-rw-r--r--public/emoji/1f468-1f3fd-200d-1f9bd.svg1
-rw-r--r--public/emoji/1f468-1f3fe-200d-1f91d-200d-1f468-1f3fb.svg1
-rw-r--r--public/emoji/1f468-1f3fe-200d-1f91d-200d-1f468-1f3fc.svg1
-rw-r--r--public/emoji/1f468-1f3fe-200d-1f91d-200d-1f468-1f3fd.svg1
-rw-r--r--public/emoji/1f468-1f3fe-200d-1f9af.svg1
-rw-r--r--public/emoji/1f468-1f3fe-200d-1f9bc.svg1
-rw-r--r--public/emoji/1f468-1f3fe-200d-1f9bd.svg1
-rw-r--r--public/emoji/1f468-1f3ff-200d-1f91d-200d-1f468-1f3fb.svg1
-rw-r--r--public/emoji/1f468-1f3ff-200d-1f91d-200d-1f468-1f3fc.svg1
-rw-r--r--public/emoji/1f468-1f3ff-200d-1f91d-200d-1f468-1f3fd.svg1
-rw-r--r--public/emoji/1f468-1f3ff-200d-1f91d-200d-1f468-1f3fe.svg1
-rw-r--r--public/emoji/1f468-1f3ff-200d-1f9af.svg1
-rw-r--r--public/emoji/1f468-1f3ff-200d-1f9bc.svg1
-rw-r--r--public/emoji/1f468-1f3ff-200d-1f9bd.svg1
-rw-r--r--public/emoji/1f468-200d-1f9af.svg1
-rw-r--r--public/emoji/1f468-200d-1f9bc.svg1
-rw-r--r--public/emoji/1f468-200d-1f9bd.svg1
-rw-r--r--public/emoji/1f468-200d-2764-fe0f-200d-1f468.svg2
-rw-r--r--public/emoji/1f468-200d-2764-fe0f-200d-1f48b-200d-1f468.svg2
-rw-r--r--public/emoji/1f469-1f3fb-200d-1f91d-200d-1f468-1f3fc.svg1
-rw-r--r--public/emoji/1f469-1f3fb-200d-1f91d-200d-1f468-1f3fd.svg1
-rw-r--r--public/emoji/1f469-1f3fb-200d-1f91d-200d-1f468-1f3fe.svg1
-rw-r--r--public/emoji/1f469-1f3fb-200d-1f91d-200d-1f468-1f3ff.svg1
-rw-r--r--public/emoji/1f469-1f3fb-200d-1f9af.svg1
-rw-r--r--public/emoji/1f469-1f3fb-200d-1f9bc.svg1
-rw-r--r--public/emoji/1f469-1f3fb-200d-1f9bd.svg1
-rw-r--r--public/emoji/1f469-1f3fc-200d-1f91d-200d-1f468-1f3fb.svg1
-rw-r--r--public/emoji/1f469-1f3fc-200d-1f91d-200d-1f468-1f3fd.svg1
-rw-r--r--public/emoji/1f469-1f3fc-200d-1f91d-200d-1f468-1f3fe.svg1
-rw-r--r--public/emoji/1f469-1f3fc-200d-1f91d-200d-1f468-1f3ff.svg1
-rw-r--r--public/emoji/1f469-1f3fc-200d-1f91d-200d-1f469-1f3fb.svg1
-rw-r--r--public/emoji/1f469-1f3fc-200d-1f9af.svg1
-rw-r--r--public/emoji/1f469-1f3fc-200d-1f9bc.svg1
-rw-r--r--public/emoji/1f469-1f3fc-200d-1f9bd.svg1
-rw-r--r--public/emoji/1f469-1f3fd-200d-1f91d-200d-1f468-1f3fb.svg1
-rw-r--r--public/emoji/1f469-1f3fd-200d-1f91d-200d-1f468-1f3fc.svg1
-rw-r--r--public/emoji/1f469-1f3fd-200d-1f91d-200d-1f468-1f3fe.svg1
-rw-r--r--public/emoji/1f469-1f3fd-200d-1f91d-200d-1f468-1f3ff.svg1
-rw-r--r--public/emoji/1f469-1f3fd-200d-1f91d-200d-1f469-1f3fb.svg1
-rw-r--r--public/emoji/1f469-1f3fd-200d-1f91d-200d-1f469-1f3fc.svg1
-rw-r--r--public/emoji/1f469-1f3fd-200d-1f9af.svg1
-rw-r--r--public/emoji/1f469-1f3fd-200d-1f9bc.svg1
-rw-r--r--public/emoji/1f469-1f3fd-200d-1f9bd.svg1
-rw-r--r--public/emoji/1f469-1f3fe-200d-1f91d-200d-1f468-1f3fb.svg1
-rw-r--r--public/emoji/1f469-1f3fe-200d-1f91d-200d-1f468-1f3fc.svg1
-rw-r--r--public/emoji/1f469-1f3fe-200d-1f91d-200d-1f468-1f3fd.svg1
-rw-r--r--public/emoji/1f469-1f3fe-200d-1f91d-200d-1f468-1f3ff.svg1
-rw-r--r--public/emoji/1f469-1f3fe-200d-1f91d-200d-1f469-1f3fb.svg1
-rw-r--r--public/emoji/1f469-1f3fe-200d-1f91d-200d-1f469-1f3fc.svg1
-rw-r--r--public/emoji/1f469-1f3fe-200d-1f91d-200d-1f469-1f3fd.svg1
-rw-r--r--public/emoji/1f469-1f3fe-200d-1f9af.svg1
-rw-r--r--public/emoji/1f469-1f3fe-200d-1f9bc.svg1
-rw-r--r--public/emoji/1f469-1f3fe-200d-1f9bd.svg1
-rw-r--r--public/emoji/1f469-1f3ff-200d-1f91d-200d-1f468-1f3fb.svg1
-rw-r--r--public/emoji/1f469-1f3ff-200d-1f91d-200d-1f468-1f3fc.svg1
-rw-r--r--public/emoji/1f469-1f3ff-200d-1f91d-200d-1f468-1f3fd.svg1
-rw-r--r--public/emoji/1f469-1f3ff-200d-1f91d-200d-1f468-1f3fe.svg1
-rw-r--r--public/emoji/1f469-1f3ff-200d-1f91d-200d-1f469-1f3fb.svg1
-rw-r--r--public/emoji/1f469-1f3ff-200d-1f91d-200d-1f469-1f3fc.svg1
-rw-r--r--public/emoji/1f469-1f3ff-200d-1f91d-200d-1f469-1f3fd.svg1
-rw-r--r--public/emoji/1f469-1f3ff-200d-1f91d-200d-1f469-1f3fe.svg1
-rw-r--r--public/emoji/1f469-1f3ff-200d-1f9af.svg1
-rw-r--r--public/emoji/1f469-1f3ff-200d-1f9bc.svg1
-rw-r--r--public/emoji/1f469-1f3ff-200d-1f9bd.svg1
-rw-r--r--public/emoji/1f469-200d-1f9af.svg1
-rw-r--r--public/emoji/1f469-200d-1f9bc.svg1
-rw-r--r--public/emoji/1f469-200d-1f9bd.svg1
-rw-r--r--public/emoji/1f469-200d-2764-fe0f-200d-1f468.svg2
-rw-r--r--public/emoji/1f469-200d-2764-fe0f-200d-1f469.svg2
-rw-r--r--public/emoji/1f469-200d-2764-fe0f-200d-1f48b-200d-1f468.svg2
-rw-r--r--public/emoji/1f469-200d-2764-fe0f-200d-1f48b-200d-1f469.svg2
-rw-r--r--public/emoji/1f46b-1f3fb.svg1
-rw-r--r--public/emoji/1f46b-1f3fc.svg1
-rw-r--r--public/emoji/1f46b-1f3fd.svg1
-rw-r--r--public/emoji/1f46b-1f3fe.svg1
-rw-r--r--public/emoji/1f46b-1f3ff.svg1
-rw-r--r--public/emoji/1f46b.svg2
-rw-r--r--public/emoji/1f46c-1f3fb.svg1
-rw-r--r--public/emoji/1f46c-1f3fc.svg1
-rw-r--r--public/emoji/1f46c-1f3fd.svg1
-rw-r--r--public/emoji/1f46c-1f3fe.svg1
-rw-r--r--public/emoji/1f46c-1f3ff.svg1
-rw-r--r--public/emoji/1f46c.svg2
-rw-r--r--public/emoji/1f46d-1f3fb.svg1
-rw-r--r--public/emoji/1f46d-1f3fc.svg1
-rw-r--r--public/emoji/1f46d-1f3fd.svg1
-rw-r--r--public/emoji/1f46d-1f3fe.svg1
-rw-r--r--public/emoji/1f46d-1f3ff.svg1
-rw-r--r--public/emoji/1f46d.svg2
-rw-r--r--public/emoji/1f46f-200d-2640-fe0f.svg2
-rw-r--r--public/emoji/1f46f-200d-2642-fe0f.svg2
-rw-r--r--public/emoji/1f46f.svg2
-rw-r--r--public/emoji/1f483-1f3fb.svg2
-rw-r--r--public/emoji/1f483-1f3fc.svg2
-rw-r--r--public/emoji/1f483-1f3fd.svg2
-rw-r--r--public/emoji/1f483-1f3fe.svg2
-rw-r--r--public/emoji/1f483-1f3ff.svg2
-rw-r--r--public/emoji/1f483.svg2
-rw-r--r--public/emoji/1f48b.svg2
-rw-r--r--public/emoji/1f48c.svg2
-rw-r--r--public/emoji/1f48f.svg2
-rw-r--r--public/emoji/1f491.svg2
-rw-r--r--public/emoji/1f492.svg2
-rw-r--r--public/emoji/1f493.svg2
-rw-r--r--public/emoji/1f494.svg2
-rw-r--r--public/emoji/1f495.svg2
-rw-r--r--public/emoji/1f496.svg2
-rw-r--r--public/emoji/1f497.svg2
-rw-r--r--public/emoji/1f498.svg2
-rw-r--r--public/emoji/1f49d.svg2
-rw-r--r--public/emoji/1f49e.svg2
-rw-r--r--public/emoji/1f49f.svg2
-rw-r--r--public/emoji/1f4a3.svg2
-rw-r--r--public/emoji/1f4be.svg2
-rw-r--r--public/emoji/1f4de.svg2
-rw-r--r--public/emoji/1f4df.svg2
-rw-r--r--public/emoji/1f4f1.svg2
-rw-r--r--public/emoji/1f4f2.svg2
-rw-r--r--public/emoji/1f4f7.svg2
-rw-r--r--public/emoji/1f4f8.svg2
-rw-r--r--public/emoji/1f4f9.svg2
-rw-r--r--public/emoji/1f4fa.svg2
-rw-r--r--public/emoji/1f4fc.svg2
-rw-r--r--public/emoji/1f4fd.svg2
-rw-r--r--public/emoji/1f50c.svg2
-rw-r--r--public/emoji/1f519.svg2
-rw-r--r--public/emoji/1f51a.svg2
-rw-r--r--public/emoji/1f51b.svg2
-rw-r--r--public/emoji/1f51c.svg2
-rw-r--r--public/emoji/1f51d.svg2
-rw-r--r--public/emoji/1f52a.svg2
-rw-r--r--public/emoji/1f532.svg2
-rw-r--r--public/emoji/1f533.svg2
-rw-r--r--public/emoji/1f573.svg2
-rw-r--r--public/emoji/1f574-1f3fb-200d-2642-fe0f.svg2
-rw-r--r--public/emoji/1f574-1f3fb.svg2
-rw-r--r--public/emoji/1f574-1f3fc-200d-2642-fe0f.svg2
-rw-r--r--public/emoji/1f574-1f3fc.svg2
-rw-r--r--public/emoji/1f574-1f3fd-200d-2642-fe0f.svg2
-rw-r--r--public/emoji/1f574-1f3fd.svg2
-rw-r--r--public/emoji/1f574-1f3fe-200d-2642-fe0f.svg2
-rw-r--r--public/emoji/1f574-1f3fe.svg2
-rw-r--r--public/emoji/1f574-1f3ff-200d-2642-fe0f.svg2
-rw-r--r--public/emoji/1f574-1f3ff.svg2
-rw-r--r--public/emoji/1f574-fe0f-200d-2642-fe0f.svg2
-rw-r--r--public/emoji/1f574.svg2
-rw-r--r--public/emoji/1f576.svg2
-rw-r--r--public/emoji/1f577.svg2
-rw-r--r--public/emoji/1f579.svg2
-rw-r--r--public/emoji/1f57a-1f3fb.svg2
-rw-r--r--public/emoji/1f57a-1f3fc.svg2
-rw-r--r--public/emoji/1f57a-1f3fd.svg2
-rw-r--r--public/emoji/1f57a-1f3fe.svg2
-rw-r--r--public/emoji/1f57a-1f3ff.svg2
-rw-r--r--public/emoji/1f57a.svg2
-rw-r--r--public/emoji/1f58a.svg2
-rw-r--r--public/emoji/1f58b.svg2
-rw-r--r--public/emoji/1f590-1f3fb.svg2
-rw-r--r--public/emoji/1f590-1f3fc.svg2
-rw-r--r--public/emoji/1f590-1f3fd.svg2
-rw-r--r--public/emoji/1f590-1f3fe.svg2
-rw-r--r--public/emoji/1f590-1f3ff.svg2
-rw-r--r--public/emoji/1f590.svg2
-rw-r--r--public/emoji/1f5a4.svg2
-rw-r--r--public/emoji/1f5dd.svg2
-rw-r--r--public/emoji/1f5e1.svg2
-rw-r--r--public/emoji/1f5e3.svg2
-rw-r--r--public/emoji/1f5f3.svg2
-rw-r--r--public/emoji/1f60d.svg2
-rw-r--r--public/emoji/1f618.svg2
-rw-r--r--public/emoji/1f61e.svg2
-rw-r--r--public/emoji/1f638.svg2
-rw-r--r--public/emoji/1f639.svg2
-rw-r--r--public/emoji/1f63a.svg2
-rw-r--r--public/emoji/1f63b.svg2
-rw-r--r--public/emoji/1f63c.svg2
-rw-r--r--public/emoji/1f63d.svg2
-rw-r--r--public/emoji/1f63e.svg2
-rw-r--r--public/emoji/1f63f.svg2
-rw-r--r--public/emoji/1f640.svg2
-rw-r--r--public/emoji/1f645-1f3fb-200d-2640-fe0f.svg2
-rw-r--r--public/emoji/1f645-1f3fb-200d-2642-fe0f.svg2
-rw-r--r--public/emoji/1f645-1f3fb.svg2
-rw-r--r--public/emoji/1f645-1f3fc-200d-2640-fe0f.svg2
-rw-r--r--public/emoji/1f645-1f3fc-200d-2642-fe0f.svg2
-rw-r--r--public/emoji/1f645-1f3fc.svg2
-rw-r--r--public/emoji/1f645-1f3fd-200d-2640-fe0f.svg2
-rw-r--r--public/emoji/1f645-1f3fd-200d-2642-fe0f.svg2
-rw-r--r--public/emoji/1f645-1f3fd.svg2
-rw-r--r--public/emoji/1f645-1f3fe-200d-2640-fe0f.svg2
-rw-r--r--public/emoji/1f645-1f3fe-200d-2642-fe0f.svg2
-rw-r--r--public/emoji/1f645-1f3fe.svg2
-rw-r--r--public/emoji/1f645-1f3ff-200d-2640-fe0f.svg2
-rw-r--r--public/emoji/1f645-1f3ff-200d-2642-fe0f.svg2
-rw-r--r--public/emoji/1f645-1f3ff.svg2
-rw-r--r--public/emoji/1f645-200d-2640-fe0f.svg2
-rw-r--r--public/emoji/1f645-200d-2642-fe0f.svg2
-rw-r--r--public/emoji/1f645.svg2
-rw-r--r--public/emoji/1f6a3-1f3fb-200d-2640-fe0f.svg2
-rw-r--r--public/emoji/1f6a3-1f3fb-200d-2642-fe0f.svg2
-rw-r--r--public/emoji/1f6a3-1f3fb.svg2
-rw-r--r--public/emoji/1f6a3-1f3fc-200d-2640-fe0f.svg2
-rw-r--r--public/emoji/1f6a3-1f3fc-200d-2642-fe0f.svg2
-rw-r--r--public/emoji/1f6a3-1f3fc.svg2
-rw-r--r--public/emoji/1f6a3-1f3fd-200d-2640-fe0f.svg2
-rw-r--r--public/emoji/1f6a3-1f3fd-200d-2642-fe0f.svg2
-rw-r--r--public/emoji/1f6a3-1f3fd.svg2
-rw-r--r--public/emoji/1f6a3-1f3fe-200d-2640-fe0f.svg2
-rw-r--r--public/emoji/1f6a3-1f3fe-200d-2642-fe0f.svg2
-rw-r--r--public/emoji/1f6a3-1f3fe.svg2
-rw-r--r--public/emoji/1f6a3-1f3ff-200d-2640-fe0f.svg2
-rw-r--r--public/emoji/1f6a3-1f3ff-200d-2642-fe0f.svg2
-rw-r--r--public/emoji/1f6a3-1f3ff.svg2
-rw-r--r--public/emoji/1f6a3-200d-2640-fe0f.svg2
-rw-r--r--public/emoji/1f6a3-200d-2642-fe0f.svg2
-rw-r--r--public/emoji/1f6a3.svg2
-rw-r--r--public/emoji/1f6a5.svg2
-rw-r--r--public/emoji/1f6a6.svg2
-rw-r--r--public/emoji/1f6b6-1f3fb-200d-2640-fe0f.svg2
-rw-r--r--public/emoji/1f6b6-1f3fb-200d-2642-fe0f.svg2
-rw-r--r--public/emoji/1f6b6-1f3fb.svg2
-rw-r--r--public/emoji/1f6b6-1f3fc-200d-2640-fe0f.svg2
-rw-r--r--public/emoji/1f6b6-1f3fc-200d-2642-fe0f.svg2
-rw-r--r--public/emoji/1f6b6-1f3fc.svg2
-rw-r--r--public/emoji/1f6b6-1f3fd-200d-2640-fe0f.svg2
-rw-r--r--public/emoji/1f6b6-1f3fd-200d-2642-fe0f.svg2
-rw-r--r--public/emoji/1f6b6-1f3fd.svg2
-rw-r--r--public/emoji/1f6b6-1f3fe-200d-2640-fe0f.svg2
-rw-r--r--public/emoji/1f6b6-1f3fe-200d-2642-fe0f.svg2
-rw-r--r--public/emoji/1f6b6-1f3fe.svg2
-rw-r--r--public/emoji/1f6b6-1f3ff-200d-2640-fe0f.svg2
-rw-r--r--public/emoji/1f6b6-1f3ff-200d-2642-fe0f.svg2
-rw-r--r--public/emoji/1f6b6-1f3ff.svg2
-rw-r--r--public/emoji/1f6b6-200d-2640-fe0f.svg2
-rw-r--r--public/emoji/1f6b6-200d-2642-fe0f.svg2
-rw-r--r--public/emoji/1f6b6.svg2
-rw-r--r--public/emoji/1f6d5.svg1
-rw-r--r--public/emoji/1f6fa.svg1
-rw-r--r--public/emoji/1f7e0.svg1
-rw-r--r--public/emoji/1f7e1.svg1
-rw-r--r--public/emoji/1f7e2.svg1
-rw-r--r--public/emoji/1f7e3.svg1
-rw-r--r--public/emoji/1f7e4.svg1
-rw-r--r--public/emoji/1f7e5.svg1
-rw-r--r--public/emoji/1f7e6.svg1
-rw-r--r--public/emoji/1f7e7.svg1
-rw-r--r--public/emoji/1f7e8.svg1
-rw-r--r--public/emoji/1f7e9.svg1
-rw-r--r--public/emoji/1f7ea.svg1
-rw-r--r--public/emoji/1f7eb.svg1
-rw-r--r--public/emoji/1f90d.svg1
-rw-r--r--public/emoji/1f90e.svg1
-rw-r--r--public/emoji/1f90f-1f3fb.svg1
-rw-r--r--public/emoji/1f90f-1f3fc.svg1
-rw-r--r--public/emoji/1f90f-1f3fd.svg1
-rw-r--r--public/emoji/1f90f-1f3fe.svg1
-rw-r--r--public/emoji/1f90f-1f3ff.svg1
-rw-r--r--public/emoji/1f90f.svg1
-rw-r--r--public/emoji/1f916.svg2
-rw-r--r--public/emoji/1f918-1f3fb.svg2
-rw-r--r--public/emoji/1f918-1f3fc.svg2
-rw-r--r--public/emoji/1f918-1f3fd.svg2
-rw-r--r--public/emoji/1f918-1f3fe.svg2
-rw-r--r--public/emoji/1f918-1f3ff.svg2
-rw-r--r--public/emoji/1f918.svg2
-rw-r--r--public/emoji/1f91a-1f3fb.svg2
-rw-r--r--public/emoji/1f91a-1f3fc.svg2
-rw-r--r--public/emoji/1f91a-1f3fd.svg2
-rw-r--r--public/emoji/1f91a-1f3fe.svg2
-rw-r--r--public/emoji/1f91a-1f3ff.svg2
-rw-r--r--public/emoji/1f91a.svg2
-rw-r--r--public/emoji/1f91e-1f3fb.svg2
-rw-r--r--public/emoji/1f91e-1f3fc.svg2
-rw-r--r--public/emoji/1f91e-1f3fd.svg2
-rw-r--r--public/emoji/1f91e-1f3fe.svg2
-rw-r--r--public/emoji/1f91e-1f3ff.svg2
-rw-r--r--public/emoji/1f91e.svg2
-rw-r--r--public/emoji/1f934-1f3fb.svg2
-rw-r--r--public/emoji/1f934-1f3fc.svg2
-rw-r--r--public/emoji/1f934-1f3fd.svg2
-rw-r--r--public/emoji/1f934-1f3fe.svg2
-rw-r--r--public/emoji/1f934-1f3ff.svg2
-rw-r--r--public/emoji/1f934.svg2
-rw-r--r--public/emoji/1f935-1f3fb-200d-2640-fe0f.svg2
-rw-r--r--public/emoji/1f935-1f3fb-200d-2642-fe0f.svg2
-rw-r--r--public/emoji/1f935-1f3fb.svg2
-rw-r--r--public/emoji/1f935-1f3fc-200d-2640-fe0f.svg2
-rw-r--r--public/emoji/1f935-1f3fc-200d-2642-fe0f.svg2
-rw-r--r--public/emoji/1f935-1f3fc.svg2
-rw-r--r--public/emoji/1f935-1f3fd-200d-2640-fe0f.svg2
-rw-r--r--public/emoji/1f935-1f3fd-200d-2642-fe0f.svg2
-rw-r--r--public/emoji/1f935-1f3fd.svg2
-rw-r--r--public/emoji/1f935-1f3fe-200d-2640-fe0f.svg2
-rw-r--r--public/emoji/1f935-1f3fe-200d-2642-fe0f.svg2
-rw-r--r--public/emoji/1f935-1f3fe.svg2
-rw-r--r--public/emoji/1f935-1f3ff-200d-2640-fe0f.svg2
-rw-r--r--public/emoji/1f935-1f3ff-200d-2642-fe0f.svg2
-rw-r--r--public/emoji/1f935-1f3ff.svg2
-rw-r--r--public/emoji/1f935-200d-2640-fe0f.svg2
-rw-r--r--public/emoji/1f935-200d-2642-fe0f.svg2
-rw-r--r--public/emoji/1f935.svg2
-rw-r--r--public/emoji/1f938-1f3fb-200d-2640-fe0f.svg2
-rw-r--r--public/emoji/1f938-1f3fb-200d-2642-fe0f.svg2
-rw-r--r--public/emoji/1f938-1f3fb.svg2
-rw-r--r--public/emoji/1f938-1f3fc-200d-2640-fe0f.svg2
-rw-r--r--public/emoji/1f938-1f3fc-200d-2642-fe0f.svg2
-rw-r--r--public/emoji/1f938-1f3fc.svg2
-rw-r--r--public/emoji/1f938-1f3fd-200d-2640-fe0f.svg2
-rw-r--r--public/emoji/1f938-1f3fd-200d-2642-fe0f.svg2
-rw-r--r--public/emoji/1f938-1f3fd.svg2
-rw-r--r--public/emoji/1f938-1f3fe-200d-2640-fe0f.svg2
-rw-r--r--public/emoji/1f938-1f3fe-200d-2642-fe0f.svg2
-rw-r--r--public/emoji/1f938-1f3fe.svg2
-rw-r--r--public/emoji/1f938-1f3ff-200d-2640-fe0f.svg2
-rw-r--r--public/emoji/1f938-1f3ff-200d-2642-fe0f.svg2
-rw-r--r--public/emoji/1f938-1f3ff.svg2
-rw-r--r--public/emoji/1f938-200d-2640-fe0f.svg2
-rw-r--r--public/emoji/1f938-200d-2642-fe0f.svg2
-rw-r--r--public/emoji/1f938.svg2
-rw-r--r--public/emoji/1f93e-1f3fb-200d-2640-fe0f.svg2
-rw-r--r--public/emoji/1f93e-1f3fb-200d-2642-fe0f.svg2
-rw-r--r--public/emoji/1f93e-1f3fb.svg2
-rw-r--r--public/emoji/1f93e-1f3fc-200d-2640-fe0f.svg2
-rw-r--r--public/emoji/1f93e-1f3fc-200d-2642-fe0f.svg2
-rw-r--r--public/emoji/1f93e-1f3fc.svg2
-rw-r--r--public/emoji/1f93e-1f3fd-200d-2640-fe0f.svg2
-rw-r--r--public/emoji/1f93e-1f3fd-200d-2642-fe0f.svg2
-rw-r--r--public/emoji/1f93e-1f3fd.svg2
-rw-r--r--public/emoji/1f93e-1f3fe-200d-2640-fe0f.svg2
-rw-r--r--public/emoji/1f93e-1f3fe-200d-2642-fe0f.svg2
-rw-r--r--public/emoji/1f93e-1f3fe.svg2
-rw-r--r--public/emoji/1f93e-1f3ff-200d-2640-fe0f.svg2
-rw-r--r--public/emoji/1f93e-1f3ff-200d-2642-fe0f.svg2
-rw-r--r--public/emoji/1f93e-1f3ff.svg2
-rw-r--r--public/emoji/1f93e-200d-2640-fe0f.svg2
-rw-r--r--public/emoji/1f93e-200d-2642-fe0f.svg2
-rw-r--r--public/emoji/1f93e.svg2
-rw-r--r--public/emoji/1f93f.svg1
-rw-r--r--public/emoji/1f947.svg2
-rw-r--r--public/emoji/1f948.svg2
-rw-r--r--public/emoji/1f949.svg2
-rw-r--r--public/emoji/1f970.svg2
-rw-r--r--public/emoji/1f971.svg1
-rw-r--r--public/emoji/1f97b.svg1
-rw-r--r--public/emoji/1f983.svg2
-rw-r--r--public/emoji/1f984.svg2
-rw-r--r--public/emoji/1f98d.svg2
-rw-r--r--public/emoji/1f992.svg2
-rw-r--r--public/emoji/1f99d.svg2
-rw-r--r--public/emoji/1f99e.svg2
-rw-r--r--public/emoji/1f99f.svg2
-rw-r--r--public/emoji/1f9a1.svg2
-rw-r--r--public/emoji/1f9a5.svg1
-rw-r--r--public/emoji/1f9a6.svg1
-rw-r--r--public/emoji/1f9a7.svg1
-rw-r--r--public/emoji/1f9a8.svg1
-rw-r--r--public/emoji/1f9a9.svg1
-rw-r--r--public/emoji/1f9aa.svg1
-rw-r--r--public/emoji/1f9ae.svg1
-rw-r--r--public/emoji/1f9af.svg1
-rw-r--r--public/emoji/1f9b0.svg1
-rw-r--r--public/emoji/1f9b1.svg1
-rw-r--r--public/emoji/1f9b2.svg1
-rw-r--r--public/emoji/1f9b3.svg1
-rw-r--r--public/emoji/1f9ba.svg1
-rw-r--r--public/emoji/1f9bb-1f3fb.svg1
-rw-r--r--public/emoji/1f9bb-1f3fc.svg1
-rw-r--r--public/emoji/1f9bb-1f3fd.svg1
-rw-r--r--public/emoji/1f9bb-1f3fe.svg1
-rw-r--r--public/emoji/1f9bb-1f3ff.svg1
-rw-r--r--public/emoji/1f9bb.svg1
-rw-r--r--public/emoji/1f9bc.svg1
-rw-r--r--public/emoji/1f9bd.svg1
-rw-r--r--public/emoji/1f9be.svg1
-rw-r--r--public/emoji/1f9bf.svg1
-rw-r--r--public/emoji/1f9c3.svg1
-rw-r--r--public/emoji/1f9c4.svg1
-rw-r--r--public/emoji/1f9c5.svg1
-rw-r--r--public/emoji/1f9c6.svg1
-rw-r--r--public/emoji/1f9c7.svg1
-rw-r--r--public/emoji/1f9c8.svg1
-rw-r--r--public/emoji/1f9c9.svg1
-rw-r--r--public/emoji/1f9ca.svg1
-rw-r--r--public/emoji/1f9cd-1f3fb-200d-2640-fe0f.svg1
-rw-r--r--public/emoji/1f9cd-1f3fb-200d-2642-fe0f.svg1
-rw-r--r--public/emoji/1f9cd-1f3fb.svg1
-rw-r--r--public/emoji/1f9cd-1f3fc-200d-2640-fe0f.svg1
-rw-r--r--public/emoji/1f9cd-1f3fc-200d-2642-fe0f.svg1
-rw-r--r--public/emoji/1f9cd-1f3fc.svg1
-rw-r--r--public/emoji/1f9cd-1f3fd-200d-2640-fe0f.svg1
-rw-r--r--public/emoji/1f9cd-1f3fd-200d-2642-fe0f.svg1
-rw-r--r--public/emoji/1f9cd-1f3fd.svg1
-rw-r--r--public/emoji/1f9cd-1f3fe-200d-2640-fe0f.svg1
-rw-r--r--public/emoji/1f9cd-1f3fe-200d-2642-fe0f.svg1
-rw-r--r--public/emoji/1f9cd-1f3fe.svg1
-rw-r--r--public/emoji/1f9cd-1f3ff-200d-2640-fe0f.svg1
-rw-r--r--public/emoji/1f9cd-1f3ff-200d-2642-fe0f.svg1
-rw-r--r--public/emoji/1f9cd-1f3ff.svg1
-rw-r--r--public/emoji/1f9cd-200d-2640-fe0f.svg1
-rw-r--r--public/emoji/1f9cd-200d-2642-fe0f.svg1
-rw-r--r--public/emoji/1f9cd.svg1
-rw-r--r--public/emoji/1f9ce-1f3fb-200d-2640-fe0f.svg1
-rw-r--r--public/emoji/1f9ce-1f3fb-200d-2642-fe0f.svg1
-rw-r--r--public/emoji/1f9ce-1f3fb.svg1
-rw-r--r--public/emoji/1f9ce-1f3fc-200d-2640-fe0f.svg1
-rw-r--r--public/emoji/1f9ce-1f3fc-200d-2642-fe0f.svg1
-rw-r--r--public/emoji/1f9ce-1f3fc.svg1
-rw-r--r--public/emoji/1f9ce-1f3fd-200d-2640-fe0f.svg1
-rw-r--r--public/emoji/1f9ce-1f3fd-200d-2642-fe0f.svg1
-rw-r--r--public/emoji/1f9ce-1f3fd.svg1
-rw-r--r--public/emoji/1f9ce-1f3fe-200d-2640-fe0f.svg1
-rw-r--r--public/emoji/1f9ce-1f3fe-200d-2642-fe0f.svg1
-rw-r--r--public/emoji/1f9ce-1f3fe.svg1
-rw-r--r--public/emoji/1f9ce-1f3ff-200d-2640-fe0f.svg1
-rw-r--r--public/emoji/1f9ce-1f3ff-200d-2642-fe0f.svg1
-rw-r--r--public/emoji/1f9ce-1f3ff.svg1
-rw-r--r--public/emoji/1f9ce-200d-2640-fe0f.svg1
-rw-r--r--public/emoji/1f9ce-200d-2642-fe0f.svg1
-rw-r--r--public/emoji/1f9ce.svg1
-rw-r--r--public/emoji/1f9cf-1f3fb-200d-2640-fe0f.svg1
-rw-r--r--public/emoji/1f9cf-1f3fb-200d-2642-fe0f.svg1
-rw-r--r--public/emoji/1f9cf-1f3fb.svg1
-rw-r--r--public/emoji/1f9cf-1f3fc-200d-2640-fe0f.svg1
-rw-r--r--public/emoji/1f9cf-1f3fc-200d-2642-fe0f.svg1
-rw-r--r--public/emoji/1f9cf-1f3fc.svg1
-rw-r--r--public/emoji/1f9cf-1f3fd-200d-2640-fe0f.svg1
-rw-r--r--public/emoji/1f9cf-1f3fd-200d-2642-fe0f.svg1
-rw-r--r--public/emoji/1f9cf-1f3fd.svg1
-rw-r--r--public/emoji/1f9cf-1f3fe-200d-2640-fe0f.svg1
-rw-r--r--public/emoji/1f9cf-1f3fe-200d-2642-fe0f.svg1
-rw-r--r--public/emoji/1f9cf-1f3fe.svg1
-rw-r--r--public/emoji/1f9cf-1f3ff-200d-2640-fe0f.svg1
-rw-r--r--public/emoji/1f9cf-1f3ff-200d-2642-fe0f.svg1
-rw-r--r--public/emoji/1f9cf-1f3ff.svg1
-rw-r--r--public/emoji/1f9cf-200d-2640-fe0f.svg1
-rw-r--r--public/emoji/1f9cf-200d-2642-fe0f.svg1
-rw-r--r--public/emoji/1f9cf.svg1
-rw-r--r--public/emoji/1f9d1-1f3fb-200d-1f91d-200d-1f9d1-1f3fb.svg1
-rw-r--r--public/emoji/1f9d1-1f3fc-200d-1f91d-200d-1f9d1-1f3fb.svg1
-rw-r--r--public/emoji/1f9d1-1f3fc-200d-1f91d-200d-1f9d1-1f3fc.svg1
-rw-r--r--public/emoji/1f9d1-1f3fd-200d-1f91d-200d-1f9d1-1f3fb.svg1
-rw-r--r--public/emoji/1f9d1-1f3fd-200d-1f91d-200d-1f9d1-1f3fc.svg1
-rw-r--r--public/emoji/1f9d1-1f3fd-200d-1f91d-200d-1f9d1-1f3fd.svg1
-rw-r--r--public/emoji/1f9d1-1f3fe-200d-1f91d-200d-1f9d1-1f3fb.svg1
-rw-r--r--public/emoji/1f9d1-1f3fe-200d-1f91d-200d-1f9d1-1f3fc.svg1
-rw-r--r--public/emoji/1f9d1-1f3fe-200d-1f91d-200d-1f9d1-1f3fd.svg1
-rw-r--r--public/emoji/1f9d1-1f3fe-200d-1f91d-200d-1f9d1-1f3fe.svg1
-rw-r--r--public/emoji/1f9d1-1f3ff-200d-1f91d-200d-1f9d1-1f3fb.svg1
-rw-r--r--public/emoji/1f9d1-1f3ff-200d-1f91d-200d-1f9d1-1f3fc.svg1
-rw-r--r--public/emoji/1f9d1-1f3ff-200d-1f91d-200d-1f9d1-1f3fd.svg1
-rw-r--r--public/emoji/1f9d1-1f3ff-200d-1f91d-200d-1f9d1-1f3fe.svg1
-rw-r--r--public/emoji/1f9d1-1f3ff-200d-1f91d-200d-1f9d1-1f3ff.svg1
-rw-r--r--public/emoji/1f9d1-200d-1f91d-200d-1f9d1.svg1
-rw-r--r--public/emoji/1f9d6-1f3fb-200d-2640-fe0f.svg2
-rw-r--r--public/emoji/1f9d6-1f3fb-200d-2642-fe0f.svg2
-rw-r--r--public/emoji/1f9d6-1f3fb.svg2
-rw-r--r--public/emoji/1f9d6-1f3fc-200d-2640-fe0f.svg2
-rw-r--r--public/emoji/1f9d6-1f3fc-200d-2642-fe0f.svg2
-rw-r--r--public/emoji/1f9d6-1f3fc.svg2
-rw-r--r--public/emoji/1f9d6-1f3fd-200d-2640-fe0f.svg2
-rw-r--r--public/emoji/1f9d6-1f3fd-200d-2642-fe0f.svg2
-rw-r--r--public/emoji/1f9d6-1f3fd.svg2
-rw-r--r--public/emoji/1f9d6-1f3fe-200d-2640-fe0f.svg2
-rw-r--r--public/emoji/1f9d6-1f3fe-200d-2642-fe0f.svg2
-rw-r--r--public/emoji/1f9d6-1f3fe.svg2
-rw-r--r--public/emoji/1f9d6-1f3ff-200d-2640-fe0f.svg2
-rw-r--r--public/emoji/1f9d6-1f3ff-200d-2642-fe0f.svg2
-rw-r--r--public/emoji/1f9d6-1f3ff.svg2
-rw-r--r--public/emoji/1f9d6-200d-2640-fe0f.svg2
-rw-r--r--public/emoji/1f9d6-200d-2642-fe0f.svg2
-rw-r--r--public/emoji/1f9d6.svg2
-rw-r--r--public/emoji/1f9d8-1f3fb-200d-2640-fe0f.svg2
-rw-r--r--public/emoji/1f9d8-1f3fb-200d-2642-fe0f.svg2
-rw-r--r--public/emoji/1f9d8-1f3fb.svg2
-rw-r--r--public/emoji/1f9d8-1f3fc-200d-2640-fe0f.svg2
-rw-r--r--public/emoji/1f9d8-1f3fc-200d-2642-fe0f.svg2
-rw-r--r--public/emoji/1f9d8-1f3fc.svg2
-rw-r--r--public/emoji/1f9d8-1f3fd-200d-2640-fe0f.svg2
-rw-r--r--public/emoji/1f9d8-1f3fd-200d-2642-fe0f.svg2
-rw-r--r--public/emoji/1f9d8-1f3fd.svg2
-rw-r--r--public/emoji/1f9d8-1f3fe-200d-2640-fe0f.svg2
-rw-r--r--public/emoji/1f9d8-1f3fe-200d-2642-fe0f.svg2
-rw-r--r--public/emoji/1f9d8-1f3fe.svg2
-rw-r--r--public/emoji/1f9d8-1f3ff-200d-2640-fe0f.svg2
-rw-r--r--public/emoji/1f9d8-1f3ff-200d-2642-fe0f.svg2
-rw-r--r--public/emoji/1f9d8-1f3ff.svg2
-rw-r--r--public/emoji/1f9d8-200d-2640-fe0f.svg2
-rw-r--r--public/emoji/1f9d8-200d-2642-fe0f.svg2
-rw-r--r--public/emoji/1f9d8.svg2
-rw-r--r--public/emoji/1f9dc-1f3fb-200d-2640-fe0f.svg2
-rw-r--r--public/emoji/1f9dc-1f3fb-200d-2642-fe0f.svg2
-rw-r--r--public/emoji/1f9dc-1f3fb.svg2
-rw-r--r--public/emoji/1f9dc-1f3fc-200d-2640-fe0f.svg2
-rw-r--r--public/emoji/1f9dc-1f3fc-200d-2642-fe0f.svg2
-rw-r--r--public/emoji/1f9dc-1f3fc.svg2
-rw-r--r--public/emoji/1f9dc-1f3fd-200d-2640-fe0f.svg2
-rw-r--r--public/emoji/1f9dc-1f3fd-200d-2642-fe0f.svg2
-rw-r--r--public/emoji/1f9dc-1f3fd.svg2
-rw-r--r--public/emoji/1f9dc-1f3fe-200d-2640-fe0f.svg2
-rw-r--r--public/emoji/1f9dc-1f3fe-200d-2642-fe0f.svg2
-rw-r--r--public/emoji/1f9dc-1f3fe.svg2
-rw-r--r--public/emoji/1f9dc-1f3ff-200d-2640-fe0f.svg2
-rw-r--r--public/emoji/1f9dc-1f3ff-200d-2642-fe0f.svg2
-rw-r--r--public/emoji/1f9dc-1f3ff.svg2
-rw-r--r--public/emoji/1f9dc-200d-2640-fe0f.svg2
-rw-r--r--public/emoji/1f9dc-200d-2642-fe0f.svg2
-rw-r--r--public/emoji/1f9dc.svg2
-rw-r--r--public/emoji/1f9e9.svg2
-rw-r--r--public/emoji/1f9eb.svg2
-rw-r--r--public/emoji/1fa70.svg1
-rw-r--r--public/emoji/1fa71.svg1
-rw-r--r--public/emoji/1fa72.svg1
-rw-r--r--public/emoji/1fa73.svg1
-rw-r--r--public/emoji/1fa78.svg1
-rw-r--r--public/emoji/1fa79.svg1
-rw-r--r--public/emoji/1fa7a.svg1
-rw-r--r--public/emoji/1fa80.svg1
-rw-r--r--public/emoji/1fa81.svg1
-rw-r--r--public/emoji/1fa82.svg1
-rw-r--r--public/emoji/1fa90.svg1
-rw-r--r--public/emoji/1fa91.svg1
-rw-r--r--public/emoji/1fa92.svg1
-rw-r--r--public/emoji/1fa93.svg1
-rw-r--r--public/emoji/1fa94.svg1
-rw-r--r--public/emoji/1fa95.svg1
-rw-r--r--public/emoji/2122.svg2
-rw-r--r--public/emoji/231a.svg2
-rw-r--r--public/emoji/25aa.svg2
-rw-r--r--public/emoji/25fc.svg2
-rw-r--r--public/emoji/25fe.svg2
-rw-r--r--public/emoji/261d-1f3fb.svg2
-rw-r--r--public/emoji/261d-1f3fc.svg2
-rw-r--r--public/emoji/261d-1f3fd.svg2
-rw-r--r--public/emoji/261d-1f3fe.svg2
-rw-r--r--public/emoji/261d-1f3ff.svg2
-rw-r--r--public/emoji/261d.svg2
-rw-r--r--public/emoji/265f.svg2
-rw-r--r--public/emoji/2660.svg2
-rw-r--r--public/emoji/2663.svg2
-rw-r--r--public/emoji/2665.svg2
-rw-r--r--public/emoji/2666.svg2
-rw-r--r--public/emoji/26a7.svg1
-rw-r--r--public/emoji/26ab.svg2
-rw-r--r--public/emoji/26bd.svg2
-rw-r--r--public/emoji/26f7-1f3fb.svg2
-rw-r--r--public/emoji/26f7-1f3fc.svg2
-rw-r--r--public/emoji/26f7-1f3fd.svg2
-rw-r--r--public/emoji/26f7-1f3fe.svg2
-rw-r--r--public/emoji/26f7-1f3ff.svg2
-rw-r--r--public/emoji/26f7.svg2
-rw-r--r--public/emoji/26f9-1f3fb-200d-2640-fe0f.svg2
-rw-r--r--public/emoji/26f9-1f3fb-200d-2642-fe0f.svg2
-rw-r--r--public/emoji/26f9-1f3fb.svg2
-rw-r--r--public/emoji/26f9-1f3fc-200d-2640-fe0f.svg2
-rw-r--r--public/emoji/26f9-1f3fc-200d-2642-fe0f.svg2
-rw-r--r--public/emoji/26f9-1f3fc.svg2
-rw-r--r--public/emoji/26f9-1f3fd-200d-2640-fe0f.svg2
-rw-r--r--public/emoji/26f9-1f3fd-200d-2642-fe0f.svg2
-rw-r--r--public/emoji/26f9-1f3fd.svg2
-rw-r--r--public/emoji/26f9-1f3fe-200d-2640-fe0f.svg2
-rw-r--r--public/emoji/26f9-1f3fe-200d-2642-fe0f.svg2
-rw-r--r--public/emoji/26f9-1f3fe.svg2
-rw-r--r--public/emoji/26f9-1f3ff-200d-2640-fe0f.svg2
-rw-r--r--public/emoji/26f9-1f3ff-200d-2642-fe0f.svg2
-rw-r--r--public/emoji/26f9-1f3ff.svg2
-rw-r--r--public/emoji/26f9-fe0f-200d-2640-fe0f.svg2
-rw-r--r--public/emoji/26f9-fe0f-200d-2642-fe0f.svg2
-rw-r--r--public/emoji/26f9.svg2
-rw-r--r--public/emoji/270a-1f3fb.svg2
-rw-r--r--public/emoji/270a-1f3fc.svg2
-rw-r--r--public/emoji/270a-1f3fd.svg2
-rw-r--r--public/emoji/270a-1f3fe.svg2
-rw-r--r--public/emoji/270a-1f3ff.svg2
-rw-r--r--public/emoji/270a.svg2
-rw-r--r--public/emoji/270b-1f3fb.svg2
-rw-r--r--public/emoji/270b-1f3fc.svg2
-rw-r--r--public/emoji/270b-1f3fd.svg2
-rw-r--r--public/emoji/270b-1f3fe.svg2
-rw-r--r--public/emoji/270b-1f3ff.svg2
-rw-r--r--public/emoji/270b.svg2
-rw-r--r--public/emoji/270c-1f3fb.svg2
-rw-r--r--public/emoji/270c-1f3fc.svg2
-rw-r--r--public/emoji/270c-1f3fd.svg2
-rw-r--r--public/emoji/270c-1f3fe.svg2
-rw-r--r--public/emoji/270c-1f3ff.svg2
-rw-r--r--public/emoji/270c.svg2
-rw-r--r--public/emoji/2712.svg2
-rw-r--r--public/emoji/2714.svg2
-rw-r--r--public/emoji/2716.svg2
-rw-r--r--public/emoji/2734.svg2
-rw-r--r--public/emoji/2763.svg2
-rw-r--r--public/emoji/2764.svg2
-rw-r--r--public/emoji/2795.svg2
-rw-r--r--public/emoji/2796.svg2
-rw-r--r--public/emoji/2797.svg2
-rw-r--r--public/emoji/27b0.svg2
-rw-r--r--public/emoji/2b1b.svg2
-rw-r--r--public/emoji/a9.svg2
-rw-r--r--public/emoji/ae.svg2
-rw-r--r--spec/controllers/api/v1/accounts/credentials_controller_spec.rb13
-rw-r--r--spec/controllers/api/v1/bookmarks_controller_spec.rb2
-rw-r--r--spec/controllers/application_controller_spec.rb5
-rw-r--r--spec/requests/localization_spec.rb1
-rw-r--r--spec/services/fetch_oembed_service_spec.rb18
-rw-r--r--spec/spec_helper.rb1
-rw-r--r--yarn.lock623
953 files changed, 9200 insertions, 2698 deletions
diff --git a/.cache/.gitkeep b/.cache/.gitkeep
new file mode 100644
index 000000000..e69de29bb
--- /dev/null
+++ b/.cache/.gitkeep
diff --git a/.github/ISSUE_TEMPLATE/config.yml b/.github/ISSUE_TEMPLATE/config.yml
new file mode 100644
index 000000000..768868516
--- /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/CONTRIBUTING.md b/CONTRIBUTING.md
index 522cc28ce..a5b80c7e2 100644
--- a/CONTRIBUTING.md
+++ b/CONTRIBUTING.md
@@ -48,7 +48,7 @@ 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
 
diff --git a/Gemfile b/Gemfile
index d904f5176..015a4d577 100644
--- a/Gemfile
+++ b/Gemfile
@@ -15,7 +15,7 @@ gem 'makara', '~> 0.4'
 gem 'pghero', '~> 2.3'
 gem 'dotenv-rails', '~> 2.7'
 
-gem 'aws-sdk-s3', '~> 1.52', require: false
+gem 'aws-sdk-s3', '~> 1.55', require: false
 gem 'fog-core', '<= 2.1.0'
 gem 'fog-openstack', '~> 0.3', require: false
 gem 'paperclip', '~> 6.0'
@@ -68,11 +68,11 @@ gem 'oj', '~> 3.9'
 gem 'ostatus2', '~> 2.0'
 gem 'ox', '~> 2.11'
 gem 'parslet'
-gem 'parallel', '~> 1.17'
+gem 'parallel', '~> 1.18'
 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-attack', '~> 6.2'
 gem 'rack-cors', '~> 1.0', require: 'rack/cors'
 gem 'rails-i18n', '~> 5.1'
 gem 'rails-settings-cached', '~> 0.6'
@@ -88,7 +88,7 @@ gem 'sidekiq-bulk', '~>0.2.0'
 gem 'simple-navigation', '~> 4.1'
 gem 'simple_form', '~> 5.0'
 gem 'sprockets-rails', '~> 3.2', require: 'sprockets/railtie'
-gem 'stoplight', '~> 2.1.3'
+gem 'stoplight', '~> 2.2.0'
 gem 'strong_migrations', '~> 0.4'
 gem 'tty-command', '~> 0.9', require: false
 gem 'tty-prompt', '~> 0.19', require: false
@@ -105,7 +105,7 @@ gem 'redcarpet', '~> 3.4'
 
 group :development, :test do
   gem 'fabrication', '~> 2.20'
-  gem 'fuubar', '~> 2.4'
+  gem 'fuubar', '~> 2.5'
   gem 'i18n-tasks', '~> 0.9', require: false
   gem 'pry-byebug', '~> 3.7'
   gem 'pry-rails', '~> 0.3'
@@ -119,7 +119,7 @@ end
 group :test do
   gem 'capybara', '~> 3.29'
   gem 'climate_control', '~> 0.2'
-  gem 'faker', '~> 2.6'
+  gem 'faker', '~> 2.7'
   gem 'microformats', '~> 4.1'
   gem 'rails-controller-testing', '~> 1.0'
   gem 'rspec-sidekiq', '~> 3.0'
@@ -137,9 +137,9 @@ group :development do
   gem 'letter_opener', '~> 1.7'
   gem 'letter_opener_web', '~> 1.3'
   gem 'memory_profiler'
-  gem 'rubocop', '~> 0.75', require: false
+  gem 'rubocop', '~> 0.76', require: false
   gem 'rubocop-rails', '~> 2.3', require: false
-  gem 'brakeman', '~> 4.6', require: false
+  gem 'brakeman', '~> 4.7', require: false
   gem 'bundler-audit', '~> 0.6', require: false
 
   gem 'capistrano', '~> 3.11'
diff --git a/Gemfile.lock b/Gemfile.lock
index a1abb7cc6..bc84b7dee 100644
--- a/Gemfile.lock
+++ b/Gemfile.lock
@@ -95,9 +95,9 @@ GEM
       public_suffix (>= 2.0.2, < 5.0)
     airbrussh (1.3.4)
       sshkit (>= 1.6.1, != 1.7.0)
-    annotate (3.0.2)
+    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,17 +105,17 @@ GEM
     av (0.9.0)
       cocaine (~> 0.5.3)
     aws-eventstream (1.0.3)
-    aws-partitions (1.230.0)
-    aws-sdk-core (3.72.0)
+    aws-partitions (1.240.0)
+    aws-sdk-core (3.78.0)
       aws-eventstream (~> 1.0, >= 1.0.2)
-      aws-partitions (~> 1, >= 1.228.0)
+      aws-partitions (~> 1, >= 1.239.0)
       aws-sigv4 (~> 1.1)
       jmespath (~> 1.0)
     aws-sdk-kms (1.25.0)
       aws-sdk-core (~> 3, >= 3.71.0)
       aws-sigv4 (~> 1.1)
-    aws-sdk-s3 (1.52.0)
-      aws-sdk-core (~> 3, >= 3.71.0)
+    aws-sdk-s3 (1.55.0)
+      aws-sdk-core (~> 3, >= 3.77.0)
       aws-sdk-kms (~> 1)
       aws-sigv4 (~> 1.1)
     aws-sigv4 (1.1.0)
@@ -132,7 +132,7 @@ GEM
       ffi (~> 1.10.0)
     bootsnap (1.4.5)
       msgpack (~> 1.0)
-    brakeman (4.6.1)
+    brakeman (4.7.1)
     browser (2.6.1)
     builder (3.2.3)
     bullet (6.0.2)
@@ -188,7 +188,7 @@ GEM
     css_parser (1.7.0)
       addressable
     debug_inspector (0.0.3)
-    derailed_benchmarks (1.4.1)
+    derailed_benchmarks (1.4.2)
       benchmark-ips (~> 2)
       get_process_mem (~> 0)
       heapy (~> 0)
@@ -218,7 +218,7 @@ GEM
     docile (1.3.2)
     domain_name (0.5.20180417)
       unf (>= 0.0.5, < 1.0.0)
-    doorkeeper (5.2.1)
+    doorkeeper (5.2.2)
       railties (>= 5)
     dotenv (2.7.5)
     dotenv-rails (2.7.5)
@@ -240,7 +240,7 @@ GEM
       tzinfo
     excon (0.62.0)
     fabrication (2.20.2)
-    faker (2.6.0)
+    faker (2.7.0)
       i18n (>= 1.6, < 1.8)
     faraday (0.15.4)
       multipart-post (>= 1.2, < 3)
@@ -263,10 +263,10 @@ 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)
+    get_process_mem (0.2.5)
       ffi (~> 1.0)
     globalid (0.4.2)
       activesupport (>= 4.2.0)
@@ -304,7 +304,7 @@ GEM
       domain_name (~> 0.5)
     http-form_data (2.1.1)
     http_accept_language (2.1.1)
-    httplog (1.3.2)
+    httplog (1.3.3)
       rack (>= 1.0)
       rainbow (>= 2.0.0)
     i18n (1.7.0)
@@ -322,7 +322,7 @@ 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)
@@ -380,7 +380,7 @@ GEM
     mimemagic (0.3.3)
     mini_mime (1.0.2)
     mini_portile2 (2.4.0)
-    minitest (5.12.2)
+    minitest (5.13.0)
     msgpack (1.3.1)
     multi_json (1.13.1)
     multipart-post (2.1.1)
@@ -390,7 +390,7 @@ GEM
       net-ssh (>= 2.6.5, < 6.0.0)
     net-ssh (5.2.0)
     nio4r (2.5.1)
-    nokogiri (1.10.4)
+    nokogiri (1.10.5)
       mini_portile2 (~> 2.4.0)
     nokogumbo (2.0.1)
       nokogiri (~> 1.8, >= 1.8.4)
@@ -425,7 +425,7 @@ GEM
     paperclip-av-transcoder (0.6.4)
       av (~> 0.9.0)
       paperclip (>= 2.5.2)
-    parallel (1.17.0)
+    parallel (1.18.0)
     parallel_tests (2.29.2)
       parallel
     parser (2.6.5.0)
@@ -461,9 +461,10 @@ GEM
       activesupport (>= 3.0.0)
     raabro (1.1.6)
     rack (2.0.7)
-    rack-attack (6.1.0)
+    rack-attack (6.2.1)
       rack (>= 1.0, < 3)
-    rack-cors (1.0.3)
+    rack-cors (1.0.6)
+      rack (>= 1.6.0)
     rack-protection (2.0.7)
       rack
     rack-proxy (0.6.5)
@@ -504,7 +505,7 @@ GEM
       rake (>= 0.8.7)
       thor (>= 0.19.0, < 2.0)
     rainbow (3.0.0)
-    rake (12.3.3)
+    rake (13.0.1)
     rdf (3.0.12)
       hamster (~> 3.0)
       link_header (~> 0.0, >= 0.0.8)
@@ -560,7 +561,7 @@ GEM
       rspec-core (~> 3.0, >= 3.0.0)
       sidekiq (>= 2.4.0)
     rspec-support (3.9.0)
-    rubocop (0.75.1)
+    rubocop (0.76.0)
       jaro_winkler (~> 1.5.1)
       parallel (~> 1.10)
       parser (>= 2.6)
@@ -619,7 +620,7 @@ GEM
       net-ssh (>= 2.8.0)
     stackprof (0.2.13)
     statsd-ruby (1.4.0)
-    stoplight (2.1.3)
+    stoplight (2.2.0)
     streamio-ffmpeg (3.0.2)
       multi_json (~> 1.8)
     strong_migrations (0.4.2)
@@ -684,12 +685,12 @@ DEPENDENCIES
   active_record_query_trace (~> 1.7)
   addressable (~> 2.7)
   annotate (~> 3.0)
-  aws-sdk-s3 (~> 1.52)
+  aws-sdk-s3 (~> 1.55)
   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)
   bundler-audit (~> 0.6)
@@ -712,12 +713,12 @@ DEPENDENCIES
   doorkeeper (~> 5.2)
   dotenv-rails (~> 2.7)
   fabrication (~> 2.20)
-  faker (~> 2.6)
+  faker (~> 2.7)
   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!
@@ -755,7 +756,7 @@ DEPENDENCIES
   ox (~> 2.11)
   paperclip (~> 6.0)
   paperclip-av-transcoder (~> 0.6)
-  parallel (~> 1.17)
+  parallel (~> 1.18)
   parallel_tests (~> 2.29)
   parslet
   pg (~> 1.1)
@@ -768,7 +769,7 @@ DEPENDENCIES
   pry-rails (~> 0.3)
   puma (~> 4.2)
   pundit (~> 2.1)
-  rack-attack (~> 6.1)
+  rack-attack (~> 6.2)
   rack-cors (~> 1.0)
   rails (~> 5.2.3)
   rails-controller-testing (~> 1.0)
@@ -782,7 +783,7 @@ DEPENDENCIES
   rqrcode (~> 0.10)
   rspec-rails (~> 3.9)
   rspec-sidekiq (~> 3.0)
-  rubocop (~> 0.75)
+  rubocop (~> 0.76)
   rubocop-rails (~> 2.3)
   ruby-progressbar (~> 1.10)
   sanitize (~> 5.1)
@@ -795,7 +796,7 @@ DEPENDENCIES
   simplecov (~> 0.17)
   sprockets-rails (~> 3.2)
   stackprof
-  stoplight (~> 2.1.3)
+  stoplight (~> 2.2.0)
   streamio-ffmpeg (~> 3.0)
   strong_migrations (~> 0.4)
   thor (~> 0.20)
diff --git a/app/controllers/api/v1/accounts/credentials_controller.rb b/app/controllers/api/v1/accounts/credentials_controller.rb
index e77f57910..64b5cb747 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/bookmarks_controller.rb b/app/controllers/api/v1/bookmarks_controller.rb
index 1cab3c372..e1b244e76 100644
--- a/app/controllers/api/v1/bookmarks_controller.rb
+++ b/app/controllers/api/v1/bookmarks_controller.rb
@@ -26,10 +26,9 @@ class Api::V1::BookmarksController < Api::BaseController
   end
 
   def results
-    @_results ||= account_bookmarks.paginate_by_max_id(
+    @_results ||= account_bookmarks.paginate_by_id(
       limit_param(DEFAULT_STATUSES_LIMIT),
-      params[:max_id],
-      params[:since_id]
+      params_slice(:max_id, :since_id, :min_id)
     )
   end
 
@@ -42,15 +41,11 @@ class Api::V1::BookmarksController < Api::BaseController
   end
 
   def next_path
-    if records_continue?
-      api_v1_bookmarks_url pagination_params(max_id: pagination_max_id)
-    end
+    api_v1_bookmarks_url pagination_params(max_id: pagination_max_id) if records_continue?
   end
 
   def prev_path
-    unless results.empty?
-      api_v1_bookmarks_url pagination_params(since_id: pagination_since_id)
-    end
+    api_v1_bookmarks_url pagination_params(min_id: pagination_since_id) unless results.empty?
   end
 
   def pagination_max_id
diff --git a/app/controllers/application_controller.rb b/app/controllers/application_controller.rb
index 92339ce2f..599c64062 100644
--- a/app/controllers/application_controller.rb
+++ b/app/controllers/application_controller.rb
@@ -211,13 +211,7 @@ class ApplicationController < ActionController::Base
   end
 
   def respond_with_error(code)
-    respond_to do |format|
-      format.any  { head code }
-
-      format.html do
-        use_pack 'error'
-        render "errors/#{code}", layout: 'error', status: code
-      end
-    end
+    use_pack 'error'
+    render "errors/#{code}", layout: 'error', status: code
   end
 end
diff --git a/app/helpers/admin/action_logs_helper.rb b/app/helpers/admin/action_logs_helper.rb
index 1daa60774..608a99dd5 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/settings_helper.rb b/app/helpers/settings_helper.rb
index aa0a4d467..39eb4180e 100644
--- a/app/helpers/settings_helper.rb
+++ b/app/helpers/settings_helper.rb
@@ -36,11 +36,13 @@ module SettingsHelper
     ja: '日本語',
     ka: 'ქართული',
     kk: 'Қазақша',
+    kn: 'ಕನ್ನಡ',
     ko: '한국어',
     lt: 'Lietuvių',
     lv: 'Latviešu',
     mk: 'Македонски',
     ml: 'മലയാളം',
+    mr: 'मराठी',
     ms: 'Bahasa Melayu',
     nl: 'Nederlands',
     nn: 'Nynorsk',
@@ -63,6 +65,7 @@ module SettingsHelper
     th: 'ไทย',
     tr: 'Türkçe',
     uk: 'Українська',
+    ur: 'اُردُو',
     'zh-CN': '简体中文',
     'zh-HK': '繁體中文(香港)',
     'zh-TW': '繁體中文(臺灣)',
diff --git a/app/javascript/mastodon/actions/bookmarks.js b/app/javascript/mastodon/actions/bookmarks.js
new file mode 100644
index 000000000..544ed2ff2
--- /dev/null
+++ b/app/javascript/mastodon/actions/bookmarks.js
@@ -0,0 +1,90 @@
+import api, { getLinks } from '../api';
+import { importFetchedStatuses } from './importer';
+
+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(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(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/interactions.js b/app/javascript/mastodon/actions/interactions.js
index 2dc4c574c..28c6b1a62 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/components/status_action_bar.js b/app/javascript/mastodon/components/status_action_bar.js
index 0bfbd8879..bd3bb16bb 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,6 +24,8 @@ 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' },
   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' },
@@ -33,6 +36,10 @@ 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}' },
+  unmute: { id: 'account.unmute', defaultMessage: 'Unmute @{name}' },
+  unblock: { id: 'account.unblock', defaultMessage: 'Unblock @{name}' },
 });
 
 const obfuscatedCount = count => {
@@ -45,7 +52,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 = {
@@ -54,6 +66,7 @@ class StatusActionBar extends ImmutablePureComponent {
 
   static propTypes = {
     status: ImmutablePropTypes.map.isRequired,
+    relationship: ImmutablePropTypes.map,
     onReply: PropTypes.func,
     onFavourite: PropTypes.func,
     onReblog: PropTypes.func,
@@ -61,11 +74,16 @@ class StatusActionBar extends ImmutablePureComponent {
     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,
   };
@@ -74,6 +92,7 @@ class StatusActionBar extends ImmutablePureComponent {
   // evaluate to false. See react-immutable-pure-component for usage.
   updateOnProps = [
     'status',
+    'relationship',
     'withDismiss',
   ]
 
@@ -114,6 +133,10 @@ 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);
+  }
+
   handleDeleteClick = () => {
     this.props.onDelete(this.props.status, this.context.router.history);
   }
@@ -135,11 +158,39 @@ 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')) {
+      onBlock(status);
+    } else {
+      onUnblock(account);
+    }
+  }
+
+  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]);
   }
 
   handleOpen = () => {
@@ -178,11 +229,12 @@ 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 account            = status.get('account');
 
     let menu = [];
     let reblogIcon = 'retweet';
@@ -196,6 +248,7 @@ class StatusActionBar extends ImmutablePureComponent {
       menu.push({ text: intl.formatMessage(messages.embed), action: this.handleEmbed });
     }
 
+    menu.push({ text: intl.formatMessage(status.get('bookmarked') ? messages.removeBookmark : messages.bookmark), action: this.handleBookmarkClick });
     menu.push(null);
 
     if (status.getIn(['account', 'id']) === me || withDismiss) {
@@ -215,16 +268,39 @@ 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 });
+        }
+      }
 
       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')}` });
       }
     }
diff --git a/app/javascript/mastodon/containers/dropdown_menu_container.js b/app/javascript/mastodon/containers/dropdown_menu_container.js
index f79b19202..ab1823194 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 fb22676e0..35c16a20c 100644
--- a/app/javascript/mastodon/containers/status_container.js
+++ b/app/javascript/mastodon/containers/status_container.js
@@ -1,3 +1,4 @@
+import React from 'react';
 import { connect } from 'react-redux';
 import Status from '../components/status';
 import { makeGetStatus } from '../selectors';
@@ -9,8 +10,10 @@ import {
 import {
   reblog,
   favourite,
+  bookmark,
   unreblog,
   unfavourite,
+  unbookmark,
   pin,
   unpin,
 } from '../actions/interactions';
@@ -21,11 +24,19 @@ import {
   hideStatus,
   revealStatus,
 } from '../actions/statuses';
+import {
+  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 { defineMessages, injectIntl, FormattedMessage } from 'react-intl';
 import { boostModal, deleteModal } from '../initial_state';
 import { showAlertForError } from '../actions/alerts';
 
@@ -36,6 +47,7 @@ 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' },
 });
 
 const makeMapStateToProps = () => {
@@ -90,6 +102,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 +158,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 +170,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 +190,18 @@ const mapDispatchToProps = (dispatch, { intl }) => ({
     }
   },
 
+  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));
+  },
+
 });
 
 export default injectIntl(connect(makeMapStateToProps, mapDispatchToProps)(Status));
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 000000000..c37cb9176
--- /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 30153cc15..b3cd39685 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/getting_started/index.js b/app/javascript/mastodon/features/getting_started/index.js
index 67ec7665b..adbc147d1 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' },
@@ -126,11 +127,12 @@ class GettingStarted extends ImmutablePureComponent {
 
     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/public_timeline/index.js b/app/javascript/mastodon/features/public_timeline/index.js
index e7825e236..7aabd7f6e 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 3e511b7a6..76334de69 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';
@@ -17,6 +18,7 @@ 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' },
   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 +31,18 @@ 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}' },
+  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 +51,21 @@ class ActionBar extends React.PureComponent {
 
   static propTypes = {
     status: ImmutablePropTypes.map.isRequired,
+    relationship: ImmutablePropTypes.map,
     onReply: PropTypes.func.isRequired,
     onReblog: 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,
@@ -67,6 +84,10 @@ class ActionBar extends React.PureComponent {
     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 +105,43 @@ 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')) {
+      onBlock(status);
+    } else {
+      onUnblock(account);
+    }
+  }
+
+  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]);
+  }
+
+  handleConversationMuteClick = () => {
+    this.props.onMuteConversation(this.props.status);
   }
 
   handleReport = () => {
@@ -134,10 +183,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 +215,33 @@ 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 });
+        }
+      }
+
       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'])}` });
@@ -198,9 +272,10 @@ class ActionBar extends React.PureComponent {
         <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>
         {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/index.js b/app/javascript/mastodon/features/status/index.js
index 029057d40..55bd99886 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,
@@ -30,6 +32,14 @@ import {
   hideStatus,
   revealStatus,
 } 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 +49,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 +67,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 +243,14 @@ class Status extends ImmutablePureComponent {
     }
   }
 
+  handleBookmarkClick = (status) => {
+    if (status.get('bookmarked')) {
+      this.props.dispatch(unbookmark(status));
+    } else {
+      this.props.dispatch(bookmark(status));
+    }
+  }
+
   handleDeleteClick = (status, history, withRedraft = false) => {
     const { dispatch, intl } = this.props;
 
@@ -307,6 +326,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'));
   }
@@ -499,12 +539,17 @@ class Status extends ImmutablePureComponent {
                   onReply={this.handleReplyClick}
                   onFavourite={this.handleFavouriteClick}
                   onReblog={this.handleReblogClick}
+                  onBookmark={this.handleBookmarkClick}
                   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/ui/components/columns_area.js b/app/javascript/mastodon/features/ui/components/columns_area.js
index f31425c70..8bc4bfc0e 100644
--- a/app/javascript/mastodon/features/ui/components/columns_area.js
+++ b/app/javascript/mastodon/features/ui/components/columns_area.js
@@ -21,6 +21,7 @@ import {
   HashtagTimeline,
   DirectTimeline,
   FavouritedStatuses,
+  BookmarkedStatuses,
   ListTimeline,
   Directory,
 } from '../../ui/util/async-components';
@@ -40,6 +41,7 @@ const componentMap = {
   'HASHTAG': HashtagTimeline,
   'DIRECT': DirectTimeline,
   'FAVOURITES': FavouritedStatuses,
+  'BOOKMARKS': BookmarkedStatuses,
   'LIST': ListTimeline,
   'DIRECTORY': Directory,
 };
diff --git a/app/javascript/mastodon/features/ui/components/navigation_panel.js b/app/javascript/mastodon/features/ui/components/navigation_panel.js
index 51e3ec037..0c12852f5 100644
--- a/app/javascript/mastodon/features/ui/components/navigation_panel.js
+++ b/app/javascript/mastodon/features/ui/components/navigation_panel.js
@@ -17,6 +17,7 @@ const NavigationPanel = () => (
     <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='/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>}
 
diff --git a/app/javascript/mastodon/features/ui/index.js b/app/javascript/mastodon/features/ui/index.js
index a45ba91eb..b0e38c5cb 100644
--- a/app/javascript/mastodon/features/ui/index.js
+++ b/app/javascript/mastodon/features/ui/index.js
@@ -41,6 +41,7 @@ import {
   FollowRequests,
   GenericNotFound,
   FavouritedStatuses,
+  BookmarkedStatuses,
   ListTimeline,
   Blocks,
   DomainBlocks,
@@ -190,6 +191,7 @@ class SwitchingColumnsArea extends React.PureComponent {
 
           <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} />
diff --git a/app/javascript/mastodon/features/ui/util/async-components.js b/app/javascript/mastodon/features/ui/util/async-components.js
index bb0fcb859..986efda1e 100644
--- a/app/javascript/mastodon/features/ui/util/async-components.js
+++ b/app/javascript/mastodon/features/ui/util/async-components.js
@@ -90,6 +90,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/locales/ar.json b/app/javascript/mastodon/locales/ar.json
index 1b560b964..e65c81e64 100644
--- a/app/javascript/mastodon/locales/ar.json
+++ b/app/javascript/mastodon/locales/ar.json
@@ -10,7 +10,7 @@
   "account.edit_profile": "تعديل الملف التعريفي",
   "account.endorse": "أوصِ به على صفحتك",
   "account.follow": "تابِع",
-  "account.followers": "متابعون",
+  "account.followers": "مُتابِعون",
   "account.followers.empty": "لا أحد يتبع هذا الحساب بعد.",
   "account.follows": "يتبع",
   "account.follows.empty": "هذا الحساب لا يتبع أحدًا بعد.",
@@ -27,7 +27,7 @@
   "account.muted": "مكتوم",
   "account.never_active": "أبدا",
   "account.posts": "تبويقات",
-  "account.posts_with_replies": "التبويقات و الردود",
+  "account.posts_with_replies": "التبويقات والردود",
   "account.report": "ابلِغ عن @{name}",
   "account.requested": "في انتظار الموافقة. اضْغَطْ/ي لإلغاء طلب المتابعة",
   "account.share": "شارك ملف تعريف @{name}",
@@ -53,7 +53,7 @@
   "column.blocks": "الحسابات المحجوبة",
   "column.community": "الخيط العام المحلي",
   "column.direct": "الرسائل المباشرة",
-  "column.directory": "استعرض الملفات التعريفية",
+  "column.directory": "استعراض الملفات التعريفية",
   "column.domain_blocks": "النطاقات المخفية",
   "column.favourites": "المفضلة",
   "column.follow_requests": "طلبات المتابعة",
@@ -106,7 +106,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": "إلغاء المتابعة",
@@ -176,7 +176,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 {# ساعات}}",
@@ -282,7 +282,7 @@
   "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.mention": "الإشارات:",
   "notifications.column_settings.poll": "نتائج استطلاع الرأي:",
@@ -299,7 +299,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": "لقد صوّتت على هذه الإجابة",
@@ -340,7 +340,7 @@
   "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}",
@@ -393,7 +393,7 @@
   "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": "اسحب ثم أفلت للرفع",
diff --git a/app/javascript/mastodon/locales/bg.json b/app/javascript/mastodon/locales/bg.json
index a4afe2adb..2ec155362 100644
--- a/app/javascript/mastodon/locales/bg.json
+++ b/app/javascript/mastodon/locales/bg.json
@@ -4,19 +4,19 @@
   "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",
diff --git a/app/javascript/mastodon/locales/bn.json b/app/javascript/mastodon/locales/bn.json
index 6c4f0def6..5cf5f7a76 100644
--- a/app/javascript/mastodon/locales/bn.json
+++ b/app/javascript/mastodon/locales/bn.json
@@ -1,31 +1,31 @@
 {
-  "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.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": "Last active",
+  "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.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} কে রিপোর্ট করতে",
@@ -33,16 +33,16 @@
   "account.share": "@{name}র পাতা অন্যদের দেখান",
   "account.show_reblogs": "@{name}র সমর্থনগুলো দেখুন",
   "account.unblock": "@{name}র কার্যকলাপ আবার দেখুন",
-  "account.unblock_domain": "{domain}থেকে আবার দেখুন",
+  "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.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": "আবার চেষ্টা করুন",
@@ -50,11 +50,11 @@
   "bundle_modal_error.close": "বন্ধ করুন",
   "bundle_modal_error.message": "এই অংশটি দেখাতে যেয়ে কোনো সমস্যা হয়েছে।",
   "bundle_modal_error.retry": "আবার চেষ্টা করুন",
-  "column.blocks": "যাদের বন্ধ করে রাখা হয়েছে",
+  "column.blocks": "যাদের ব্লক করে রাখা হয়েছে",
   "column.community": "স্থানীয় সময়সারি",
   "column.direct": "সরাসরি লেখা",
-  "column.directory": "Browse profiles",
-  "column.domain_blocks": "সরিয়ে ফেলা ওয়েবসাইট",
+  "column.directory": "প্রোফাইল ব্রাউজ করুন",
+  "column.domain_blocks": "লুকোনো ডোমেনগুলি",
   "column.favourites": "পছন্দের গুলো",
   "column.follow_requests": "অনুসরণের অনুমতি চেয়েছে যারা",
   "column.home": "বাড়ি",
@@ -87,23 +87,23 @@
   "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 +111,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 +137,25 @@
   "emoji_button.travel": "ভ্রমণ এবং স্থান",
   "empty_column.account_timeline": "এখানে কোনো টুট নেই!",
   "empty_column.account_unavailable": "নিজস্ব পাতা নেই",
-  "empty_column.blocks": "আপনি কোনো ব্যবহারকারীদের বন্ধ করেন নি।",
+  "empty_column.blocks": "আপনি কোনো ব্যবহারকারীদের ব্লক করেন নি।",
   "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": "সমস্যার প্রতিবেদন করুন",
   "follow_request.authorize": "অনুমতি দিন",
   "follow_request.reject": "প্রত্যাখ্যান করুন",
   "getting_started.developers": "তৈরিকারকদের জন্য",
@@ -180,7 +180,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": "অন্যান্য যুক্তবিশ্বের সার্ভারের লেখাগুলি যুক্তবিশ্বের সময়রেখাতে আসবে ।",
@@ -199,7 +199,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": "লেখা সম্পদনার জায়গায় ফোকাস করতে",
@@ -243,7 +243,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": "খুঁজে পাওয়া যায়নি",
@@ -255,17 +255,17 @@
   "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": "পছন্দসমূহ",
@@ -299,10 +299,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": "লেখার গোপনীয়তা অবস্থা ঠিক করতে",
@@ -314,13 +314,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} তে",
@@ -329,7 +329,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": "হ্যাশট্যাগ",
@@ -339,11 +339,11 @@
   "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.cancel_reblog_private": "সমর্থন বাতিল করতে",
   "status.cannot_reblog": "এটিতে সমর্থন দেওয়া যাবেনা",
   "status.copy": "লেখাটির লিংক কপি করতে",
@@ -354,7 +354,7 @@
   "status.favourite": "পছন্দের করতে",
   "status.filtered": "ছাঁকনিদিত",
   "status.load_more": "আরো দেখুন",
-  "status.media_hidden": "ছবি বা ভিডিও পেছনে",
+  "status.media_hidden": "মিডিয়া লুকানো আছে",
   "status.mention": "@{name}কে উল্লেখ করতে",
   "status.more": "আরো",
   "status.mute": "@{name}র কার্যক্রম সরিয়ে ফেলতে",
@@ -378,7 +378,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": "সাহায্যের পরামর্শগুলো সরাতে",
@@ -387,29 +387,29 @@
   "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.description": "যারা দেখতে পায়না তাদের জন্য এটা বর্ণনা করতে",
-  "upload_form.edit": "Edit",
+  "upload_form.edit": "সম্পাদন",
   "upload_form.undo": "মুছে ফেলতে",
-  "upload_modal.analyzing_picture": "Analyzing picture…",
-  "upload_modal.apply": "Apply",
+  "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.exit_fullscreen": "পূর্ণ পর্দা থেকে বাইরে বের হতে",
diff --git a/app/javascript/mastodon/locales/cy.json b/app/javascript/mastodon/locales/cy.json
index 8c2e08bb3..a8a952798 100644
--- a/app/javascript/mastodon/locales/cy.json
+++ b/app/javascript/mastodon/locales/cy.json
@@ -103,7 +103,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.",
@@ -152,10 +152,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",
   "follow_request.authorize": "Caniatau",
   "follow_request.reject": "Gwrthod",
   "getting_started.developers": "Datblygwyr",
@@ -299,10 +299,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",
@@ -314,7 +314,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",
diff --git a/app/javascript/mastodon/locales/da.json b/app/javascript/mastodon/locales/da.json
index 95e4fe503..4719d5ca5 100644
--- a/app/javascript/mastodon/locales/da.json
+++ b/app/javascript/mastodon/locales/da.json
@@ -39,7 +39,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",
@@ -103,7 +103,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.",
@@ -152,10 +152,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",
   "follow_request.authorize": "Godkend",
   "follow_request.reject": "Afvis",
   "getting_started.developers": "Udviklere",
@@ -299,10 +299,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",
@@ -314,7 +314,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",
diff --git a/app/javascript/mastodon/locales/de.json b/app/javascript/mastodon/locales/de.json
index 401e3fc15..c916028be 100644
--- a/app/javascript/mastodon/locales/de.json
+++ b/app/javascript/mastodon/locales/de.json
@@ -405,7 +405,7 @@
   "upload_form.undo": "Löschen",
   "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.",
diff --git a/app/javascript/mastodon/locales/es-AR.json b/app/javascript/mastodon/locales/es-AR.json
index d46063b18..56f8781a1 100644
--- a/app/javascript/mastodon/locales/es-AR.json
+++ b/app/javascript/mastodon/locales/es-AR.json
@@ -40,7 +40,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",
@@ -103,7 +103,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.",
@@ -365,7 +365,7 @@
   "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.reply": "Responder",
diff --git a/app/javascript/mastodon/locales/et.json b/app/javascript/mastodon/locales/et.json
index db60dab54..6b97393d2 100644
--- a/app/javascript/mastodon/locales/et.json
+++ b/app/javascript/mastodon/locales/et.json
@@ -4,7 +4,7 @@
   "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",
@@ -16,16 +16,16 @@
   "account.follows.empty": "See kasutaja ei jälgi veel kedagi.",
   "account.follows_you": "Jälgib sind",
   "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,11 +38,11 @@
   "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",
+  "autosuggest_hashtag.per_week": "{count} nädalas",
   "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.",
   "bundle_column_error.retry": "Proovi uuesti",
@@ -53,7 +53,7 @@
   "column.blocks": "Blokeeritud kasutajad",
   "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",
@@ -100,10 +100,10 @@
   "confirmations.delete_list.message": "Oled kindel, et soovid 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.logout.confirm": "Välju",
+  "confirmations.logout.message": "Kas oled kindel, et soovid 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.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": "Oled kindel, et soovid {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.",
@@ -111,14 +111,14 @@
   "confirmations.reply.message": "Kohene vastamine kirjutab üle sõnumi, mida hetkel koostad. Oled kindel, et soovid 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",
+  "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",
@@ -152,10 +152,10 @@
   "empty_column.mutes": "Sa pole veel ühtegi kasutajat vaigistanud.",
   "empty_column.notifications": "Sul ei ole veel teateid. Suhtle 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",
@@ -299,10 +299,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,7 +314,7 @@
   "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!",
   "relative_time.days": "{number}p",
@@ -378,7 +378,7 @@
   "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",
@@ -394,22 +394,22 @@
   "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",
+  "trends.trending_now": "Praegu populaarne",
   "ui.beforeunload": "Sinu mustand läheb kaotsi, kui lahkud 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.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_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.exit_fullscreen": "Välju täisekraanist",
diff --git a/app/javascript/mastodon/locales/eu.json b/app/javascript/mastodon/locales/eu.json
index f89901ab0..9e383e85a 100644
--- a/app/javascript/mastodon/locales/eu.json
+++ b/app/javascript/mastodon/locales/eu.json
@@ -1,5 +1,5 @@
 {
-  "account.add_or_remove_from_list": "Gehitu edo kendu zerrendetatik",
+  "account.add_or_remove_from_list": "Gehitu edo Kendu zerrendetatik",
   "account.badges.bot": "Bot-a",
   "account.block": "Blokeatu @{name}",
   "account.block_domain": "Ezkutatu {domain} domeinuko guztia",
@@ -39,7 +39,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",
@@ -154,7 +154,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",
   "follow_request.authorize": "Baimendu",
   "follow_request.reject": "Ukatu",
@@ -405,11 +405,11 @@
   "upload_form.undo": "Ezabatu",
   "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": "Azeri marroi azkar batek txakur alferraren gainetik salto egiten du",
+  "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.exit_fullscreen": "Irten pantaila osotik",
diff --git a/app/javascript/mastodon/locales/fi.json b/app/javascript/mastodon/locales/fi.json
index 2e71e6e18..60fa0c296 100644
--- a/app/javascript/mastodon/locales/fi.json
+++ b/app/javascript/mastodon/locales/fi.json
@@ -7,7 +7,7 @@
   "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 +39,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",
@@ -103,7 +103,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.",
@@ -197,7 +197,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",
@@ -238,7 +238,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ä",
@@ -249,7 +249,7 @@
   "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.community_timeline": "Paikallinen aikajana",
   "navigation_bar.compose": "Kirjoita uusi tuuttaus",
@@ -381,7 +381,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,10 +406,10 @@
   "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.exit_fullscreen": "Poistu koko näytön tilasta",
diff --git a/app/javascript/mastodon/locales/fr.json b/app/javascript/mastodon/locales/fr.json
index 38f20b619..a92f23415 100644
--- a/app/javascript/mastodon/locales/fr.json
+++ b/app/javascript/mastodon/locales/fr.json
@@ -3,7 +3,7 @@
   "account.badges.bot": "Robot",
   "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 +24,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",
@@ -56,7 +56,7 @@
   "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 +73,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 ?",
@@ -101,28 +101,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",
@@ -149,13 +149,13 @@
   "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",
+  "errors.unexpected_crash.copy_stacktrace": "Copier la trace d'appels dans le presse-papier",
+  "errors.unexpected_crash.report_issue": "Signaler le problème",
   "follow_request.authorize": "Accepter",
   "follow_request.reject": "Rejeter",
   "getting_started.developers": "Développeur·euse·s",
@@ -163,14 +163,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",
@@ -190,7 +190,7 @@
   "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",
@@ -199,16 +199,16 @@
   "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.",
   "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",
@@ -216,7 +216,7 @@
   "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.pinned": "pour ouvrir une liste des pouets épinglés",
@@ -224,7 +224,7 @@
   "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",
@@ -236,9 +236,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",
@@ -252,7 +252,7 @@
   "navigation_bar.apps": "Applications mobiles",
   "navigation_bar.blocks": "Comptes bloqués",
   "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",
@@ -273,7 +273,7 @@
   "navigation_bar.security": "Sécurité",
   "notification.favourite": "{name} a ajouté à ses favoris :",
   "notification.follow": "{name} vous suit",
-  "notification.mention": "{name} vous a mentionné :",
+  "notification.mention": "{name} vous a mentionné·e :",
   "notification.poll": "Un sondage auquel vous avez participé vient de se terminer",
   "notification.reblog": "{name} a partagé votre statut :",
   "notifications.clear": "Nettoyer les notifications",
@@ -285,8 +285,8 @@
   "notifications.column_settings.filter_bar.show": "Afficher",
   "notifications.column_settings.follow": "Nouveaux⋅elles abonné⋅e·s :",
   "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",
@@ -316,7 +316,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",
@@ -324,14 +324,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": "Les textes simples retournent les pouets que vous avez écris, mis en favori, épinglé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",
@@ -345,7 +345,7 @@
   "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.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",
@@ -382,7 +382,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",
diff --git a/app/javascript/mastodon/locales/hi.json b/app/javascript/mastodon/locales/hi.json
index 4fb924a5f..c50567aac 100644
--- a/app/javascript/mastodon/locales/hi.json
+++ b/app/javascript/mastodon/locales/hi.json
@@ -1,153 +1,153 @@
 {
-  "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.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.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.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.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,75 +155,75 @@
   "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",
+  "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} पर इस सॉफ्टवेयर में योगदान या किसी भी समस्या को सूचित कर सकते है.",
+  "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.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",
@@ -244,15 +244,15 @@
   "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.community_timeline": "लोकल टाइम्लाइन",
+  "navigation_bar.compose": "नया टूट् लिखें",
   "navigation_bar.direct": "Direct messages",
   "navigation_bar.discover": "Discover",
   "navigation_bar.domain_blocks": "Hidden domains",
@@ -280,56 +280,56 @@
   "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.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",
@@ -363,31 +363,31 @@
   "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.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",
@@ -397,20 +397,20 @@
   "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.description": "Describe for the visually impaired",
-  "upload_form.edit": "Edit",
-  "upload_form.undo": "Delete",
+  "upload_form.edit": "संशोधन करें",
+  "upload_form.undo": "मिटाए",
   "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.exit_fullscreen": "Exit full screen",
   "video.expand": "Expand video",
diff --git a/app/javascript/mastodon/locales/hu.json b/app/javascript/mastodon/locales/hu.json
index c35c943e6..72dd6b986 100644
--- a/app/javascript/mastodon/locales/hu.json
+++ b/app/javascript/mastodon/locales/hu.json
@@ -1,5 +1,5 @@
 {
-  "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.block": "@{name} letiltása",
   "account.block_domain": "Minden elrejtése innen: {domain}",
@@ -12,13 +12,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 +27,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 +38,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á!",
@@ -73,38 +73,38 @@
   "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.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 +116,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 +127,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,7 +136,7 @@
   "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.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.",
@@ -145,8 +145,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.",
@@ -154,28 +154,28 @@
   "empty_column.public": "Jelenleg itt nincs semmi! Írj valamit nyilvánosan vagy kövess más szervereken levő felhasználókat, hogy megtöltsd",
   "error.unexpected_crash.explanation": "Egy hiba vagy böngésző inkompatibilitás miatt ez az oldal nem jeleníthető meg rendesen.",
   "error.unexpected_crash.next_steps": "Próbáld frissíteni az oldalt. Ha ez nem segít, egy másik böngészőn vagy appon keresztül még mindig használhatod a Mastodont.",
-  "errors.unexpected_crash.copy_stacktrace": "Stacktrace vágólapra másolása",
-  "errors.unexpected_crash.report_issue": "Probléma bejelentése",
+  "errors.unexpected_crash.copy_stacktrace": "Veremkiíratás vágólapra másolása",
+  "errors.unexpected_crash.report_issue": "Probléma jelentése",
   "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}}",
@@ -184,10 +184,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.",
@@ -261,7 +261,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",
@@ -284,7 +284,7 @@
   "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.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:",
@@ -317,23 +317,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",
@@ -371,20 +371,20 @@
   "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",
@@ -394,17 +394,17 @@
   "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.description": "Leírás látáskorlátozottak számára",
   "upload_form.edit": "Szerkesztés",
   "upload_form.undo": "Mégsem",
   "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",
@@ -416,8 +416,8 @@
   "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 69af86bf2..a4c155dfe 100644
--- a/app/javascript/mastodon/locales/hy.json
+++ b/app/javascript/mastodon/locales/hy.json
@@ -73,7 +73,7 @@
   "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": "փակ",
@@ -100,7 +100,7 @@
   "confirmations.delete_list.message": "Վստա՞հ ես, որ ուզում ես մշտապես ջնջել այս ցանկը։",
   "confirmations.domain_block.confirm": "Թաքցնել ամբողջ տիրույթը",
   "confirmations.domain_block.message": "Հաստատ֊հաստա՞տ վստահ ես, որ ուզում ես արգելափակել ամբողջ {domain} տիրույթը։ Սովորաբար մի երկու թիրախավորված արգելափակում կամ լռեցում բավական է ու նախընտրելի։",
-  "confirmations.logout.confirm": "Log out",
+  "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.",
diff --git a/app/javascript/mastodon/locales/id.json b/app/javascript/mastodon/locales/id.json
index 371922a4d..167c2a766 100644
--- a/app/javascript/mastodon/locales/id.json
+++ b/app/javascript/mastodon/locales/id.json
@@ -228,8 +228,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",
@@ -243,7 +243,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",
@@ -260,7 +260,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",
@@ -299,12 +299,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",
@@ -314,110 +314,110 @@
   "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.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.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.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_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_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.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_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.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/it.json b/app/javascript/mastodon/locales/it.json
index 8d4b8f66e..757882523 100644
--- a/app/javascript/mastodon/locales/it.json
+++ b/app/javascript/mastodon/locales/it.json
@@ -38,7 +38,7 @@
   "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.message": "Riprova dopo {retry_time, time, medium}.",
   "alert.rate_limited.title": "Rate limited",
   "alert.unexpected.message": "Si è verificato un errore inatteso.",
   "alert.unexpected.title": "Oops!",
@@ -103,7 +103,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.",
@@ -152,10 +152,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",
   "follow_request.authorize": "Autorizza",
   "follow_request.reject": "Rifiuta",
   "getting_started.developers": "Sviluppatori",
@@ -299,10 +299,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",
@@ -314,7 +314,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",
@@ -404,7 +404,7 @@
   "upload_form.edit": "Modifica",
   "upload_form.undo": "Cancella",
   "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",
diff --git a/app/javascript/mastodon/locales/kk.json b/app/javascript/mastodon/locales/kk.json
index ba0f5378e..ba13c7ddf 100644
--- a/app/javascript/mastodon/locales/kk.json
+++ b/app/javascript/mastodon/locales/kk.json
@@ -4,7 +4,7 @@
   "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 +16,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 +25,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 +38,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": "Қайтадан көріңіз",
@@ -53,7 +53,7 @@
   "column.blocks": "Бұғатталғандар",
   "column.community": "Жергілікті желі",
   "column.direct": "Жеке хаттар",
-  "column.directory": "Browse profiles",
+  "column.directory": "Профильдерді аралау",
   "column.domain_blocks": "Жасырылған домендер",
   "column.favourites": "Таңдаулылар",
   "column.follow_requests": "Жазылу сұранымдары",
@@ -84,14 +84,14 @@
   "compose_form.poll.remove_option": "Бұл жауапты өшір",
   "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 +100,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 +111,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,7 +136,7 @@
   "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.community": "Жергілікті желі бос. Сіз бастап жазыңыз!",
   "empty_column.direct": "Әзірше дым хат жоқ. Өзіңіз жазып көріңіз алдымен.",
@@ -152,10 +152,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": "Мәселені хабарла",
   "follow_request.authorize": "Авторизация",
   "follow_request.reject": "Қабылдамау",
   "getting_started.developers": "Жасаушылар тобы",
@@ -180,7 +180,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": "Жаһандық желідегі жазбалар осында көрінетін болады.",
@@ -226,14 +226,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": "Тізімді өшіру",
@@ -243,7 +243,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": "Табылмады",
@@ -260,7 +260,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": "Тізімдер",
@@ -299,10 +299,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": "Құпиялылықты реттеу",
@@ -314,14 +314,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": "Бұл аккаунт басқа серверден. Аноним шағым жібересіз бе?",
@@ -339,8 +339,8 @@
   "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}",
@@ -378,7 +378,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": "Өткізіп жіберу",
@@ -394,22 +394,22 @@
   "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.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_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.exit_fullscreen": "Толық экраннан шық",
diff --git a/app/javascript/mastodon/locales/kn.json b/app/javascript/mastodon/locales/kn.json
new file mode 100644
index 000000000..39ca86a0c
--- /dev/null
+++ b/app/javascript/mastodon/locales/kn.json
@@ -0,0 +1,423 @@
+{
+  "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",
+  "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",
+  "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.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.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.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.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.mention": "{name} mentioned you",
+  "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",
+  "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.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",
+  "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 ea70c7055..e7c59d68f 100644
--- a/app/javascript/mastodon/locales/ko.json
+++ b/app/javascript/mastodon/locales/ko.json
@@ -99,7 +99,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": "뮤트",
@@ -159,7 +159,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": "초대",
@@ -248,7 +248,7 @@
   "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.community_timeline": "로컬 타임라인",
@@ -258,7 +258,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": "이 서버에 대해서",
diff --git a/app/javascript/mastodon/locales/mk.json b/app/javascript/mastodon/locales/mk.json
index 9a4a417af..5189e8ea8 100644
--- a/app/javascript/mastodon/locales/mk.json
+++ b/app/javascript/mastodon/locales/mk.json
@@ -34,7 +34,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 +51,102 @@
   "bundle_modal_error.message": "Настана грешка при прикажувањето на оваа веб-страница.",
   "bundle_modal_error.retry": "Обидете се повторно",
   "column.blocks": "Блокирани корисници",
-  "column.community": "Local timeline",
+  "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.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.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 +155,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",
@@ -221,7 +221,7 @@
   "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.reply": "одговори",
   "keyboard_shortcuts.requests": "to open follow requests list",
   "keyboard_shortcuts.search": "to focus search",
   "keyboard_shortcuts.start": "to open \"get started\" column",
@@ -256,21 +256,21 @@
   "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.mention": "{name} mentioned you",
@@ -285,56 +285,56 @@
   "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",
-  "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",
@@ -384,15 +384,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.",
diff --git a/app/javascript/mastodon/locales/ml.json b/app/javascript/mastodon/locales/ml.json
new file mode 100644
index 000000000..f331590de
--- /dev/null
+++ b/app/javascript/mastodon/locales/ml.json
@@ -0,0 +1,423 @@
+{
+  "account.add_or_remove_from_list": "Add or Remove from lists",
+  "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": "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": "ഈ ലിങ്കിന്റെ ഉടമസ്തത {date} ഇൽ ഉറപ്പാക്കിയതാണ്",
+  "account.locked_info": "This account privacy status is set to locked. The owner manually reviews who can follow them.",
+  "account.media": "മീഡിയ",
+  "account.mention": "Mention @{name}",
+  "account.moved_to": "{name} has moved to:",
+  "account.mute": "നിശ്ശബ്ദമാക്കുക @{name}",
+  "account.mute_notifications": "Mute notifications from @{name}",
+  "account.muted": "നിശ്ശബ്ദമാക്കിയിരിക്കുന്നു",
+  "account.never_active": "ഒരിക്കലും വേണ്ട",
+  "account.posts": "ടൂട്ടുകൾ",
+  "account.posts_with_replies": "ടൂട്ടുകളും മറുപടികളും",
+  "account.report": "റിപ്പോർട്ട് ചെയ്യുക @{name}",
+  "account.requested": "Awaiting approval",
+  "account.share": "Share @{name}'s profile",
+  "account.show_reblogs": "Show boosts from @{name}",
+  "account.unblock": "ബ്ലോക്ക് മാറ്റുക @{name}",
+  "account.unblock_domain": "Unhide {domain}",
+  "account.unendorse": "Don't feature on profile",
+  "account.unfollow": "പിന്തുടരുന്നത് നിര്‍ത്തുക",
+  "account.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": "അപ്രതീക്ഷിതമായി എന്തോ സംഭവിച്ചു.",
+  "alert.unexpected.title": "ശ്ശോ!",
+  "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": "വീണ്ടും ശ്രമിക്കുക",
+  "bundle_column_error.title": "Network error",
+  "bundle_modal_error.close": "അടയ്ക്കുക",
+  "bundle_modal_error.message": "ഈ വെബ്പേജ് പ്രദർശിപ്പിക്കുമ്പോൾ എന്തോ കുഴപ്പം സംഭവിച്ചു.",
+  "bundle_modal_error.retry": "വീണ്ടും ശ്രമിക്കുക",
+  "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",
+  "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.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.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.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.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.mention": "{name} mentioned you",
+  "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",
+  "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.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",
+  "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 000000000..8af8e3493
--- /dev/null
+++ b/app/javascript/mastodon/locales/mr.json
@@ -0,0 +1,423 @@
+{
+  "account.add_or_remove_from_list": "यादीत घाला किंवा यादीतून काढून टाका",
+  "account.badges.bot": "स्वयंचलित खाते",
+  "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.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.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.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.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.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.mention": "{name} mentioned you",
+  "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",
+  "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.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",
+  "video.pause": "Pause",
+  "video.play": "Play",
+  "video.unmute": "Unmute sound"
+}
diff --git a/app/javascript/mastodon/locales/nl.json b/app/javascript/mastodon/locales/nl.json
index 68b8f4cbd..74aaad970 100644
--- a/app/javascript/mastodon/locales/nl.json
+++ b/app/javascript/mastodon/locales/nl.json
@@ -103,7 +103,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.",
@@ -152,8 +152,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",
   "follow_request.authorize": "Goedkeuren",
@@ -164,7 +164,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}",
@@ -206,7 +206,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",
@@ -359,7 +359,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",
diff --git a/app/javascript/mastodon/locales/nn.json b/app/javascript/mastodon/locales/nn.json
index 73a319179..039381cf0 100644
--- a/app/javascript/mastodon/locales/nn.json
+++ b/app/javascript/mastodon/locales/nn.json
@@ -150,11 +150,11 @@
   "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",
+  "empty_column.notifications": "Der er ikkje nokon varsler her enno. Kommuniser med andre for å starte samtalen.",
+  "empty_column.public": "Det er ikkje noko her! Skriv noko offentleg, eller manuelt følje brukare fra andre tenarmaskiner for å fylle det 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",
+  "error.unexpected_crash.next_steps": "Prøv å laste på nytt. Om det ikkje hjelper så kan du fortsatt bruke mastodon gjennom ein anna nettlesar eller ein applikasjon.",
+  "errors.unexpected_crash.copy_stacktrace": "Kopiér stacktrace til klippebord",
   "errors.unexpected_crash.report_issue": "Rapportér problem",
   "follow_request.authorize": "Autoriser",
   "follow_request.reject": "Reject",
@@ -169,13 +169,13 @@
   "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_settings.select.no_options_message": "Ingen forslag funnet",
+  "hashtag.column_settings.select.placeholder": "Legg til emneknagger…",
   "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",
+  "hashtag.column_settings.tag_mode.any": "Kvem som helst av disse",
+  "hashtag.column_settings.tag_mode.none": "Ikkje nokon av disse",
+  "hashtag.column_settings.tag_toggle": "Inkludér ekstra emneknagger til denne kolonnen",
+  "home.column_settings.basic": "Enkel",
   "home.column_settings.show_reblogs": "Vis fremhevingar",
   "home.column_settings.show_replies": "Vis svar",
   "intervals.full.days": "{number, plural, one {# day} other {# days}}",
@@ -183,53 +183,53 @@
   "intervals.full.minutes": "{number, plural, one {# minute} other {# minutes}}",
   "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.text": "Offentlege poster fra tenarmaskiner i fediverset kjem fram i den federerte tidslinja.",
   "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": "Poster frå folk du kjenner kjem i heime tidslinja. Du kan følje kvem som helst ifrå alle tenarmaskiner!",
   "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 poster frå folk på samme tenarmaskin som deg vill du finne i den lokale tidslinja.",
   "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.favourite.text": "Du kan lagre ein tut til seinere, og la forfatteren vite at ut likte den ved å trykke likar på tuten.",
   "introduction.interactions.reblog.headline": "Fremhev",
-  "introduction.interactions.reblog.text": "You can share other people's toots with your followers by boosting them.",
+  "introduction.interactions.reblog.text": "Du kan dela folks tutar ved å \"booste\" døm.",
   "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.interactions.reply.text": "Du kan svare på andre folk sine tuter, om så vill tutane lenkes i hop i ein samtale.",
+  "introduction.welcome.action": "Ta åt!",
   "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",
+  "introduction.welcome.text": "Velkommen til fediverset! Om ein kort tid vill det være mogleg å skrive til verden og venner gjennom ein stor variasjon av tenarmaskiner. Men denne tenarmaskinen, {domain}, er spesiell - den holder din profil, så ikkje gløym namnet dens.",
+  "keyboard_shortcuts.back": "for å navigere tilbake",
+  "keyboard_shortcuts.blocked": "for å åpne lista for blokka brukare",
+  "keyboard_shortcuts.boost": "for å dele",
+  "keyboard_shortcuts.column": "for å fokusere på ein status i ein av kollonene",
+  "keyboard_shortcuts.compose": "for å fokusera på status-skrivaren",
+  "keyboard_shortcuts.description": "Beskrivelse",
+  "keyboard_shortcuts.direct": "forå åpne direkte meldingar i ein kollone",
+  "keyboard_shortcuts.down": "for å bevege seg opp og ned",
+  "keyboard_shortcuts.enter": "for å åpne status",
+  "keyboard_shortcuts.favourite": "for å favorisere",
+  "keyboard_shortcuts.favourites": "for å åpne favoriserings lista",
+  "keyboard_shortcuts.federated": "for å åpne den fødererte tidslinja",
+  "keyboard_shortcuts.heading": "Tastatur hurtigtaster",
+  "keyboard_shortcuts.home": "for åpne heime tidslinja",
+  "keyboard_shortcuts.hotkey": "Hurtigtast",
   "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.local": "for å åpne den lokale tidslinja",
+  "keyboard_shortcuts.mention": "for å nemne forfatteren",
+  "keyboard_shortcuts.muted": "for å åpne lista over dempa brukare",
+  "keyboard_shortcuts.my_profile": "for å åpne profilen din",
+  "keyboard_shortcuts.notifications": "for å åpne notifikasjons kolonnen",
+  "keyboard_shortcuts.pinned": "forå åpne lista for festa statuser",
+  "keyboard_shortcuts.profile": "for å åpne forfatteren's profil",
+  "keyboard_shortcuts.reply": "for å svare",
+  "keyboard_shortcuts.requests": "for å åpne lista for føljar førespurnader",
+  "keyboard_shortcuts.search": "for å fokus søkje",
+  "keyboard_shortcuts.start": "for å åpne \"kjem i gong\" kolonna",
+  "keyboard_shortcuts.toggle_hidden": "for å vise/gøyme tekst bak innholds varsel",
+  "keyboard_shortcuts.toggle_sensitivity": "for å vise/gøyme 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",
+  "keyboard_shortcuts.up": "for å bevege seg oppover i lista",
   "lightbox.close": "Lukk",
   "lightbox.next": "Neste",
   "lightbox.previous": "Forrige",
@@ -248,21 +248,21 @@
   "media_gallery.toggle_visible": "Toggle visibility",
   "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",
+  "mute_modal.hide_notifications": "Gøyme notifikasjoner frå denne brukaren?",
+  "navigation_bar.apps": "Mobil apper",
+  "navigation_bar.blocks": "Blokka brukare",
+  "navigation_bar.community_timeline": "Lokal tidslinje",
+  "navigation_bar.compose": "Lag ein ny status",
+  "navigation_bar.direct": "Direkte meldingar",
+  "navigation_bar.discover": "Oppdag",
+  "navigation_bar.domain_blocks": "Gøymte domener",
+  "navigation_bar.edit_profile": "Rediger profil",
+  "navigation_bar.favourites": "Favoritter",
+  "navigation_bar.filters": "Demp ord",
+  "navigation_bar.follow_requests": "Føljar førespurnader",
+  "navigation_bar.follows_and_followers": "Føljer og føljare",
+  "navigation_bar.info": "Om denne tenarmaskinen",
+  "navigation_bar.keyboard_shortcuts": "Hurtigtaster",
   "navigation_bar.lists": "Lister",
   "navigation_bar.logout": "Logg ut",
   "navigation_bar.mutes": "Dempa brukare",
@@ -274,71 +274,71 @@
   "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",
+  "notification.poll": "Ein avstemming du har votert i har endt",
+  "notification.reblog": "{name} delte statusen din",
   "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.clear_confirmation": "Er du sikker på at du vill permanent klarere alle notifikasjonene dine?",
+  "notifications.column_settings.alert": "Desktop notifikasjoner",
+  "notifications.column_settings.favourite": "Favoritter:",
+  "notifications.column_settings.filter_bar.advanced": "Vis alle kategorier",
+  "notifications.column_settings.filter_bar.category": "Rask filter bar",
+  "notifications.column_settings.filter_bar.show": "Vis",
   "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.mention": "Nemningar:",
+  "notifications.column_settings.poll": "Avstemming resultater:",
+  "notifications.column_settings.push": "Push varsler",
   "notifications.column_settings.reblog": "Framhevinger:",
-  "notifications.column_settings.show": "Show in column",
-  "notifications.column_settings.sound": "Play sound",
-  "notifications.filter.all": "All",
+  "notifications.column_settings.show": "Vis i kolonne",
+  "notifications.column_settings.sound": "Køyr lyd",
+  "notifications.filter.all": "Alle",
   "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",
+  "notifications.filter.mentions": "Nemningar",
+  "notifications.filter.polls": "Avstemmings resultater",
+  "notifications.group": "{count} notifikasjoner",
+  "poll.closed": "Lukka",
+  "poll.refresh": "Forfriske",
   "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",
+  "poll.vote": "Voter",
+  "poll.voted": "Du voterte for dette svaret",
+  "poll_button.add_poll": "Start ein avstemming",
+  "poll_button.remove_poll": "Slett avstemming",
+  "privacy.change": "Juster status synligheit",
+  "privacy.direct.long": "Post berre direkte til nemnte brukare",
+  "privacy.direct.short": "Direkte",
+  "privacy.private.long": "Post til berre føljare",
+  "privacy.private.short": "Berre-føljare",
+  "privacy.public.long": "Post til offentlege tidslinjar",
+  "privacy.public.short": "Offentleg",
   "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!",
+  "privacy.unlisted.short": "Uoppført",
+  "refresh": "Forfrisk",
+  "regeneration_indicator.label": "Lastar…",
+  "regeneration_indicator.sublabel": "Din startside driver å blir forberedt!",
   "relative_time.days": "{number}d",
   "relative_time.hours": "{number}h",
-  "relative_time.just_now": "now",
+  "relative_time.just_now": "no",
   "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",
+  "reply_indicator.cancel": "Avbrot",
+  "report.forward": "Send videre til {target}",
+  "report.forward_hint": "Denne brukaren er frå ein anna tenarmaskin. Send ein anonymisert versjon av rapporten til døm også?",
+  "report.hint": "Denne rapporten vill bli sendt til din tenarmaskin moderator. Du kan gi ein forklaring til kvifor du rapportérer denne brukaren under:",
+  "report.placeholder": "Tilleggskommentarer",
+  "report.submit": "Send inn",
+  "report.target": "Rapportér {target}",
+  "search.placeholder": "Søk",
+  "search_popout.search_format": "Avansert søke 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.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_popout.tips.user": "brukar",
+  "search_results.accounts": "Folk",
+  "search_results.hashtags": "Emneknagger",
+  "search_results.statuses": "Tutar",
   "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}",
@@ -347,77 +347,77 @@
   "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",
+  "status.delete": "Slett",
+  "status.detailed_status": "Detaljert samtale syn",
+  "status.direct": "Direkte meld @{name}",
+  "status.embed": "Bygge inn",
+  "status.favourite": "Lik",
+  "status.filtered": "Filter",
+  "status.load_more": "Last inn meir",
+  "status.media_hidden": "Media gøymt",
+  "status.mention": "Nemn @{name}",
+  "status.more": "Meir",
+  "status.mute": "Demp @{name}",
+  "status.mute_conversation": "Demp samtale",
+  "status.open": "Utvid statusen",
+  "status.pin": "Fest på profil",
+  "status.pinned": "Fasta tut",
+  "status.read_more": "Les meir",
+  "status.reblog": "Fremhev",
+  "status.reblog_private": "Fremhev til orginale sjåare",
+  "status.reblogged_by": "{name} fremheivd",
+  "status.reblogs.empty": "Ikkje nokon har fremhevd tuten enno. Om nokon gjør det kjem det opp her.",
+  "status.redraft": "Slett & gjer om",
+  "status.reply": "Svar",
+  "status.replyAll": "Svar til tråd",
+  "status.report": "Rapportér @{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": "Ikke demp samtale",
+  "status.unpin": "Angre festing på profil",
+  "suggestions.dismiss": "Avbrot forslag",
+  "suggestions.header": "Du e kanskje interessert i…",
+  "tabs_bar.federated_timeline": "Føderert",
+  "tabs_bar.home": "Heim",
+  "tabs_bar.local_timeline": "Lokal",
+  "tabs_bar.notifications": "Notifikasjoner",
+  "tabs_bar.search": "Søk",
   "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.moments": "Kort tid gjennstår",
   "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",
+  "trends.trending_now": "Kva som trender no",
+  "ui.beforeunload": "Din kladd vil bli forkastet om du forlater Mastodon.",
+  "upload_area.title": "Dra & slipp for å laste opp",
+  "upload_button.label": "Legg til media ({formats})",
+  "upload_error.limit": "Fil størrelsen er for stor.",
+  "upload_error.poll": "Fil opplasting ikkje lov i hop med avstemming.",
+  "upload_form.description": "Beskriv for synshemmede",
+  "upload_form.edit": "Redigér",
+  "upload_form.undo": "Slett",
+  "upload_modal.analyzing_picture": "Analyserer bilde…",
+  "upload_modal.apply": "Bruk",
+  "upload_modal.description_placeholder": "Ein rask brun rev hoppar over den late hunden",
+  "upload_modal.detect_text": "Finn tekst i bildet",
+  "upload_modal.edit_media": "Redigér media",
+  "upload_modal.hint": "Klikk og dra sirkelen på forsyneren for å fokusere synspunktet slik det ska synes i alle minityrbildene.",
+  "upload_modal.preview_label": "Framsyn ({ratio})",
+  "upload_progress.label": "Lastar opp...",
+  "video.close": "Lukk video",
+  "video.exit_fullscreen": "Lukk fullskjerm",
   "video.expand": "Expand video",
-  "video.fullscreen": "Full screen",
-  "video.hide": "Hide video",
-  "video.mute": "Mute sound",
+  "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",
+  "video.unmute": "Av-dempe lyd"
 }
diff --git a/app/javascript/mastodon/locales/no.json b/app/javascript/mastodon/locales/no.json
index 37b893938..5c84c08fe 100644
--- a/app/javascript/mastodon/locales/no.json
+++ b/app/javascript/mastodon/locales/no.json
@@ -1,31 +1,31 @@
 {
-  "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.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.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.never_active": "Aldri",
   "account.posts": "Innlegg",
   "account.posts_with_replies": "Toots with replies",
   "account.report": "Rapportér @{name}",
@@ -40,20 +40,20 @@
   "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.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.community": "Lokal tidslinje",
-  "column.direct": "Direct messages",
-  "column.directory": "Browse profiles",
+  "column.direct": "Direktemeldinger",
+  "column.directory": "Bla gjennom profiler",
   "column.domain_blocks": "Hidden domains",
   "column.favourites": "Likt",
   "column.follow_requests": "Følgeforespørsler",
@@ -73,18 +73,18 @@
   "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.publish": "Tut",
   "compose_form.publish_loud": "{publish}!",
-  "compose_form.sensitive.hide": "Mark media as sensitive",
+  "compose_form.sensitive.hide": "Merk media som sensitivt",
   "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",
@@ -96,25 +96,25 @@
   "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.message": "Er du sikker på at du vil dempe {name}?",
   "confirmations.redraft.confirm": "Delete & redraft",
   "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.confirm": "Svar",
   "confirmations.reply.message": "Replying now will overwrite the message you are currently composing. Are you sure you want to proceed?",
   "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}",
+  "conversation.with": "Med {names}",
   "directory.federated": "From known fediverse",
   "directory.local": "From {domain} only",
   "directory.new_arrivals": "New arrivals",
@@ -193,7 +193,7 @@
   "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.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": "First steps",
@@ -203,7 +203,7 @@
   "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.description": "Beskrivelse",
   "keyboard_shortcuts.direct": "to open direct messages column",
   "keyboard_shortcuts.down": "for å flytte ned i listen",
   "keyboard_shortcuts.enter": "to open status",
@@ -270,7 +270,7 @@
   "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.mention": "{name} nevnte deg",
@@ -290,15 +290,15 @@
   "notifications.column_settings.reblog": "Fremhevet:",
   "notifications.column_settings.show": "Vis i kolonne",
   "notifications.column_settings.sound": "Spill lyd",
-  "notifications.filter.all": "All",
+  "notifications.filter.all": "Alle",
   "notifications.filter.boosts": "Boosts",
-  "notifications.filter.favourites": "Favourites",
+  "notifications.filter.favourites": "Favoritter",
   "notifications.filter.follows": "Follows",
   "notifications.filter.mentions": "Mentions",
   "notifications.filter.polls": "Poll results",
   "notifications.group": "{count} notifications",
   "poll.closed": "Closed",
-  "poll.refresh": "Refresh",
+  "poll.refresh": "Oppdater",
   "poll.total_people": "{count, plural, one {# person} other {# people}}",
   "poll.total_votes": "{count, plural, one {# vote} other {# votes}}",
   "poll.vote": "Vote",
@@ -362,7 +362,7 @@
   "status.open": "Utvid denne statusen",
   "status.pin": "Fest på profilen",
   "status.pinned": "Pinned toot",
-  "status.read_more": "Read more",
+  "status.read_more": "Les mer",
   "status.reblog": "Fremhev",
   "status.reblog_private": "Boost to original audience",
   "status.reblogged_by": "Fremhevd av {name}",
@@ -378,7 +378,7 @@
   "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.uncached_media_warning": "Ikke tilgjengelig",
   "status.unmute_conversation": "Ikke demp samtale",
   "status.unpin": "Angre festing på profilen",
   "suggestions.dismiss": "Dismiss suggestion",
@@ -387,7 +387,7 @@
   "tabs_bar.home": "Hjem",
   "tabs_bar.local_timeline": "Lokal",
   "tabs_bar.notifications": "Varslinger",
-  "tabs_bar.search": "Search",
+  "tabs_bar.search": "Søk",
   "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",
@@ -404,7 +404,7 @@
   "upload_form.edit": "Edit",
   "upload_form.undo": "Angre",
   "upload_modal.analyzing_picture": "Analyzing picture…",
-  "upload_modal.apply": "Apply",
+  "upload_modal.apply": "Bruk",
   "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",
@@ -414,7 +414,7 @@
   "video.close": "Lukk video",
   "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 b52d58970..1ca5f42ed 100644
--- a/app/javascript/mastodon/locales/oc.json
+++ b/app/javascript/mastodon/locales/oc.json
@@ -103,7 +103,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.",
@@ -152,9 +152,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",
   "follow_request.authorize": "Acceptar",
   "follow_request.reject": "Regetar",
@@ -302,7 +302,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",
diff --git a/app/javascript/mastodon/locales/pl.json b/app/javascript/mastodon/locales/pl.json
index 29b448cb6..b3513ea46 100644
--- a/app/javascript/mastodon/locales/pl.json
+++ b/app/javascript/mastodon/locales/pl.json
@@ -39,7 +39,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ń",
@@ -307,7 +307,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",
diff --git a/app/javascript/mastodon/locales/pt-PT.json b/app/javascript/mastodon/locales/pt-PT.json
index 859dc1991..bb8a94516 100644
--- a/app/javascript/mastodon/locales/pt-PT.json
+++ b/app/javascript/mastodon/locales/pt-PT.json
@@ -4,7 +4,7 @@
   "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 +16,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 +25,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 +38,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.message": "Volte a tentar depois das {retry_time, time, medium}.",
   "alert.rate_limited.title": "Rate limited",
   "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",
@@ -53,7 +53,7 @@
   "column.blocks": "Utilizadores Bloqueados",
   "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",
@@ -100,10 +100,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 +111,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",
@@ -152,10 +152,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",
   "follow_request.authorize": "Autorizar",
   "follow_request.reject": "Rejeitar",
   "getting_started.developers": "Responsáveis pelo desenvolvimento",
@@ -243,7 +243,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",
@@ -299,10 +299,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",
@@ -314,7 +314,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",
@@ -339,7 +339,7 @@
   "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",
@@ -378,7 +378,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",
@@ -394,22 +394,22 @@
   "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": "Tendencias actuais",
   "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.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_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.exit_fullscreen": "Sair de full screen",
diff --git a/app/javascript/mastodon/locales/ru.json b/app/javascript/mastodon/locales/ru.json
index 4ace1649a..c8767e535 100644
--- a/app/javascript/mastodon/locales/ru.json
+++ b/app/javascript/mastodon/locales/ru.json
@@ -11,9 +11,9 @@
   "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": "Последняя активность",
@@ -22,9 +22,9 @@
   "account.media": "Медиа",
   "account.mention": "Упомянуть",
   "account.moved_to": "Ищите {name} здесь:",
-  "account.mute": "Скрыть @{name}",
+  "account.mute": "Заглушить",
   "account.mute_notifications": "Скрыть уведомления от @{name}",
-  "account.muted": "Скрыт",
+  "account.muted": "Приглушён",
   "account.never_active": "Никогда",
   "account.posts": "Посты",
   "account.posts_with_replies": "Посты с ответами",
@@ -32,11 +32,11 @@
   "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": "Скорость ограничена",
@@ -75,11 +75,11 @@
   "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": "Ваша учётная запись не {locked}. Любой пользователь может подписаться на вас и просматривать посты для подписчиков.",
   "compose_form.lock_disclaimer.lock": "закрыт",
   "compose_form.placeholder": "О чем вы думаете?",
-  "compose_form.poll.add_option": "Добавить",
-  "compose_form.poll.duration": "Длительность опроса",
+  "compose_form.poll.add_option": "Добавить вариант",
+  "compose_form.poll.duration": "Продолжительность опроса",
   "compose_form.poll.option_placeholder": "Вариант {number}",
   "compose_form.poll.remove_option": "Удалить этот вариант",
   "compose_form.publish": "Запостить",
@@ -103,7 +103,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": "Вы уверены, что хотите удалить этот статус и превратить в черновик? Вы потеряете все ответы, продвижения и отметки 'нравится' к нему.",
@@ -119,10 +119,10 @@
   "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,7 +134,7 @@
   "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": "Вы ещё никого не заблокировали.",
@@ -144,14 +144,14 @@
   "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.notifications": "У вас пока нет уведомлений. Взаимодействуйте с другими, чтобы завести разговор.",
-  "empty_column.public": "Здесь ничего нет! Опубликуйте что-нибудь или подпишитесь на пользователей с других узлов, чтобы заполнить ленту.",
+  "empty_column.public": "Здесь ничего нет! Опубликуйте что-нибудь или подпишитесь на пользователей с других узлов, чтобы заполнить ленту",
   "error.unexpected_crash.explanation": "Из-за несовместимого браузера или ошибки в нашем коде, эта страница не может быть корректно отображена.",
   "error.unexpected_crash.next_steps": "Попробуйте обновить страницу. Если проблема не исчезает, используйте Mastodon из-под другого браузера или приложения.",
   "errors.unexpected_crash.copy_stacktrace": "Копировать стектрейс в буфер обмена",
@@ -174,7 +174,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": "Показывать ответы",
@@ -185,19 +185,19 @@
   "introduction.federation.federated.headline": "Глобальная лента",
   "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.interactions.action": "Завершить обучение",
   "introduction.interactions.favourite.headline": "Отметки «нравится»",
   "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": "продвинуть пост",
@@ -241,7 +241,7 @@
   "lists.edit.submit": "Изменить название",
   "lists.new.create": "Новый список",
   "lists.new.title_placeholder": "Заголовок списка",
-  "lists.search": "Искать из ваших подписок",
+  "lists.search": "Искать среди подписок",
   "lists.subheading": "Ваши списки",
   "load_pending": "{count, plural, one {# новый элемент} few {# новых элемента} other {# новых элементов}}",
   "loading_indicator.label": "Загрузка...",
@@ -271,11 +271,11 @@
   "navigation_bar.preferences": "Настройки",
   "navigation_bar.public_timeline": "Глобальная лента",
   "navigation_bar.security": "Безопасность",
-  "notification.favourite": "{name} понравился Ваш статус",
+  "notification.favourite": "{name} добавил(а) ваш статус в избранное",
   "notification.follow": "{name} подписался (-лась) на вас",
   "notification.mention": "{name} упомянул(а) вас",
   "notification.poll": "Опрос, в котором вы приняли участие, завершился",
-  "notification.reblog": "{name} продвинул(а) Ваш статус",
+  "notification.reblog": "{name} продвинул(а) ваш статус",
   "notifications.clear": "Очистить уведомления",
   "notifications.clear_confirmation": "Вы уверены, что хотите очистить все уведомления?",
   "notifications.column_settings.alert": "Десктопные уведомления",
@@ -316,7 +316,7 @@
   "privacy.unlisted.short": "Скрытый",
   "refresh": "Обновить",
   "regeneration_indicator.label": "Загрузка…",
-  "regeneration_indicator.sublabel": "Ваша домашняя лента готовится!",
+  "regeneration_indicator.sublabel": "Один момент, мы подготавливаем вашу ленту!",
   "relative_time.days": "{number}д",
   "relative_time.hours": "{number}ч",
   "relative_time.just_now": "только что",
@@ -324,14 +324,14 @@
   "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.text": "Простой ввод текста покажет совпадающие имена пользователей, отображаемые имена и хэштеги",
diff --git a/app/javascript/mastodon/locales/sk.json b/app/javascript/mastodon/locales/sk.json
index 5d2726309..0766e703f 100644
--- a/app/javascript/mastodon/locales/sk.json
+++ b/app/javascript/mastodon/locales/sk.json
@@ -5,7 +5,7 @@
   "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.direct": "Priama správa pre @{name}",
   "account.domain_blocked": "Doména ukrytá",
   "account.edit_profile": "Uprav profil",
   "account.endorse": "Zobrazuj na profile",
@@ -52,7 +52,7 @@
   "bundle_modal_error.retry": "Skúsiť znova",
   "column.blocks": "Blokovaní užívatelia",
   "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 +69,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ý",
@@ -103,7 +103,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é.",
@@ -139,7 +139,7 @@
   "empty_column.account_unavailable": "Profil nedostupný",
   "empty_column.blocks": "Ešte si nikoho nezablokoval/a.",
   "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 +152,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",
   "follow_request.authorize": "Povoľ prístup",
@@ -204,7 +204,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",
@@ -253,14 +253,14 @@
   "navigation_bar.blocks": "Blokovaní užívatelia",
   "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",
@@ -349,7 +349,7 @@
   "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é",
diff --git a/app/javascript/mastodon/locales/sl.json b/app/javascript/mastodon/locales/sl.json
index 65e275102..ecac0d9c7 100644
--- a/app/javascript/mastodon/locales/sl.json
+++ b/app/javascript/mastodon/locales/sl.json
@@ -365,7 +365,7 @@
   "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.reply": "Odgovori",
diff --git a/app/javascript/mastodon/locales/sv.json b/app/javascript/mastodon/locales/sv.json
index e8c1c40c2..9b12f337b 100644
--- a/app/javascript/mastodon/locales/sv.json
+++ b/app/javascript/mastodon/locales/sv.json
@@ -1,24 +1,24 @@
 {
-  "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.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,25 +26,25 @@
   "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 notifieringar 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",
@@ -56,70 +56,70 @@
   "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.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 notifieringar. 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 +136,14 @@
   "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.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",
@@ -366,7 +366,7 @@
   "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.reply": "Svara",
   "status.replyAll": "Svara på tråden",
@@ -381,8 +381,8 @@
   "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",
@@ -391,25 +391,25 @@
   "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.description": "Beskriv för synskadade",
   "upload_form.edit": "Redigera",
   "upload_form.undo": "Ta bort",
-  "upload_modal.analyzing_picture": "Analyzing picture…",
+  "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.exit_fullscreen": "Stäng helskärm",
@@ -417,7 +417,7 @@
   "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 82b5fff9e..9be141523 100644
--- a/app/javascript/mastodon/locales/ta.json
+++ b/app/javascript/mastodon/locales/ta.json
@@ -1,36 +1,36 @@
 {
   "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.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.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.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.posts": "Toots",
+  "account.never_active": "எப்போதுமில்லை",
+  "account.posts": "டூட்டுகள்",
   "account.posts_with_replies": "Toots மற்றும் பதில்கள்",
-  "account.report": "Report @{name}",
+  "account.report": "@{name} -ஐப் புகாரளி",
   "account.requested": "ஒப்புதலுக்காக காத்திருக்கிறது. கோரிக்கையை ரத்துசெய்ய கிளிக் செய்க",
-  "account.share": "பங்கிடு @{name}'s மனித முகத்தின்",
+  "account.share": "@{name} உடைய விவரத்தை பகிர்",
   "account.show_reblogs": "காட்டு boosts இருந்து @{name}",
   "account.unblock": "விடுவி @{name}",
   "account.unblock_domain": "காண்பி {domain}",
@@ -38,32 +38,32 @@
   "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": "எதிர் பாராத பிழை ஏற்பட்டு விட்டது.",
+  "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": "Network error",
+  "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.directory": "சுயவிவரங்களை உலாவு",
   "column.domain_blocks": "மறைந்த களங்கள்",
   "column.favourites": "விருப்பத்துக்குகந்த",
   "column.follow_requests": "கோரிக்கைகளை பின்பற்றவும்",
-  "column.home": "Home",
+  "column.home": "முதற்பக்கம்",
   "column.lists": "குதிரை வீர்ர்கள்",
   "column.mutes": "முடக்கப்பட்ட பயனர்கள்",
-  "column.notifications": "Notifications",
+  "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": "நெடுவரிசை வலது புறமாக நகர்த்து",
@@ -82,28 +82,28 @@
   "compose_form.poll.duration": "வாக்கெடுப்பு காலம்",
   "compose_form.poll.option_placeholder": "தேர்ந்தெடுப்ப {number}",
   "compose_form.poll.remove_option": "இந்த விருப்பத்தை அகற்றவும்",
-  "compose_form.publish": "Toot",
+  "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,29 +111,29 @@
   "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": "சுயவிவரம் கிடைக்கவில்லை",
@@ -152,15 +152,15 @@
   "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": "புகாரளி",
   "follow_request.authorize": "அதிகாரமளி",
   "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}.",
@@ -182,11 +182,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": "விருப்பத்துக்குகந்த",
@@ -198,15 +198,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": "ஒருங்கிணைந்த நேரத்தை திறக்க",
@@ -226,24 +226,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": "கிடைக்கவில்லை",
@@ -260,19 +260,19 @@
   "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.mention": "{name} நீங்கள் குறிப்பிட்டுள்ளீர்கள்",
   "notification.poll": "நீங்கள் வாக்களித்த வாக்கெடுப்பு முடிவடைந்தது",
   "notification.reblog": "{name} உங்கள் நிலை அதிகரித்தது",
@@ -286,7 +286,7 @@
   "notifications.column_settings.follow": "புதிய பின்பற்றுபவர்கள்:",
   "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": "ஒலி விளையாட",
@@ -296,13 +296,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": "நிலை தனியுரிமை",
@@ -311,43 +311,43 @@
   "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.cancel_reblog_private": "இல்லை பூஸ்ட்",
   "status.cannot_reblog": "இந்த இடுகை அதிகரிக்க முடியாது",
   "status.copy": "நிலைக்கு இணைப்பை நகலெடு",
-  "status.delete": "Delete",
+  "status.delete": "நீக்கு",
   "status.detailed_status": "விரிவான உரையாடல் காட்சி",
   "status.direct": "நேரடி செய்தி @{name}",
   "status.embed": "கிடத்து",
@@ -370,7 +370,7 @@
   "status.redraft": "நீக்கு மற்றும் மீண்டும் வரைவு",
   "status.reply": "பதில்",
   "status.replyAll": "நூலுக்கு பதிலளிக்கவும்",
-  "status.report": "Report @{name}",
+  "status.report": "@{name} மீது புகாரளி",
   "status.sensitive_warning": "உணர்திறன் உள்ளடக்கம்",
   "status.share": "பங்கிடு",
   "status.show_less": "குறைவாகக் காண்பி",
@@ -378,15 +378,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",
@@ -394,30 +394,30 @@
   "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.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_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.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/th.json b/app/javascript/mastodon/locales/th.json
index a9278fdd0..7db168338 100644
--- a/app/javascript/mastodon/locales/th.json
+++ b/app/javascript/mastodon/locales/th.json
@@ -1,9 +1,9 @@
 {
   "account.add_or_remove_from_list": "เพิ่มหรือเอาออกจากรายการ",
   "account.badges.bot": "บอต",
-  "account.block": "ปิดกั้น @{name}",
+  "account.block": "บล็อค @{name}",
   "account.block_domain": "ซ่อนทุกอย่างจาก {domain}",
-  "account.blocked": "ปิดกั้นอยู่",
+  "account.blocked": "ถูกบล็อค",
   "account.cancel_follow_request": "ยกเลิกคำขอติดตาม",
   "account.direct": "ส่งข้อความโดยตรงถึง @{name}",
   "account.domain_blocked": "ซ่อนโดเมนอยู่",
@@ -38,8 +38,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} ต่อสัปดาห์",
@@ -103,7 +103,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": "คุณแน่ใจหรือไม่ว่าต้องการลบสถานะนี้แล้วร่างใหม่? รายการโปรดและการดันจะหายไป และการตอบกลับโพสต์ดั้งเดิมจะไม่มีความเกี่ยวพัน",
@@ -117,8 +117,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": "กิจกรรม",
@@ -152,9 +152,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": "รายงานปัญหา",
   "follow_request.authorize": "อนุญาต",
   "follow_request.reject": "ปฏิเสธ",
@@ -190,14 +190,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": "เพื่อดัน",
@@ -249,7 +249,7 @@
   "missing_indicator.label": "ไม่พบ",
   "missing_indicator.sublabel": "ไม่พบทรัพยากรนี้",
   "mute_modal.hide_notifications": "ซ่อนการแจ้งเตือนจากผู้ใช้นี้?",
-  "navigation_bar.apps": "แอปสำหรับมือถือ",
+  "navigation_bar.apps": "แอปมือถือ",
   "navigation_bar.blocks": "ผู้ใช้ที่ปิดกั้นอยู่",
   "navigation_bar.community_timeline": "เส้นเวลาในเว็บ",
   "navigation_bar.compose": "เขียนโพสต์ใหม่",
@@ -299,10 +299,10 @@
   "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.voted": "คุณได้ลงคะแนนให้กับคำตอบนี้",
   "poll_button.add_poll": "เพิ่มโพล",
   "poll_button.remove_poll": "เอาโพลออก",
   "privacy.change": "ปรับเปลี่ยนความเป็นส่วนตัวของสถานะ",
@@ -339,7 +339,7 @@
   "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": "เปิดสถานะนี้ในส่วนติดต่อการควบคุม",
@@ -378,7 +378,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 +406,9 @@
   "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.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": "ปิดวิดีโอ",
diff --git a/app/javascript/mastodon/locales/tr.json b/app/javascript/mastodon/locales/tr.json
index 5ceefa182..89efafd1d 100644
--- a/app/javascript/mastodon/locales/tr.json
+++ b/app/javascript/mastodon/locales/tr.json
@@ -1,5 +1,5 @@
 {
-  "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.block": "@{name} adlı kişiyi engelle",
   "account.block_domain": "{domain} alanından her şeyi gizle",
@@ -26,8 +26,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ş",
@@ -61,7 +61,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 +72,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 +82,7 @@
   "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.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 +135,14 @@
   "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.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.",
@@ -190,11 +190,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).",
@@ -219,7 +219,7 @@
   "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.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",
@@ -227,7 +227,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",
@@ -252,7 +252,7 @@
   "navigation_bar.apps": "Mobil uygulamalar",
   "navigation_bar.blocks": "Engellenen kullanıcılar",
   "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ı",
@@ -267,7 +267,7 @@
   "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",
@@ -338,8 +338,8 @@
   "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",
@@ -361,12 +361,12 @@
   "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.reply": "Cevapla",
   "status.replyAll": "Konuşmayı cevapla",
diff --git a/app/javascript/mastodon/locales/uk.json b/app/javascript/mastodon/locales/uk.json
index 6501c0283..c3b3e45b9 100644
--- a/app/javascript/mastodon/locales/uk.json
+++ b/app/javascript/mastodon/locales/uk.json
@@ -8,7 +8,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 +34,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}",
@@ -103,7 +103,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 +114,7 @@
   "conversation.delete": "Видалити цю бесіду",
   "conversation.mark_as_read": "Позначити як прочитане",
   "conversation.open": "Переглянути бесіду",
-  "conversation.with": "With {names}",
+  "conversation.with": "З {names}",
   "directory.federated": "З відомого федесвіту",
   "directory.local": "Тільки з домену {domain}",
   "directory.new_arrivals": "Нові надходження",
@@ -152,10 +152,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": "Повідомити про проблему",
   "follow_request.authorize": "Авторизувати",
   "follow_request.reject": "Відмовити",
   "getting_started.developers": "Розробникам",
@@ -299,10 +299,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": "Змінити видимість допису",
@@ -374,9 +374,9 @@
   "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": "Зняти глушення з діалогу",
@@ -391,7 +391,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": "Актуальні",
diff --git a/app/javascript/mastodon/locales/ur.json b/app/javascript/mastodon/locales/ur.json
new file mode 100644
index 000000000..39ca86a0c
--- /dev/null
+++ b/app/javascript/mastodon/locales/ur.json
@@ -0,0 +1,423 @@
+{
+  "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",
+  "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",
+  "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.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.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.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.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.mention": "{name} mentioned you",
+  "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",
+  "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.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",
+  "video.pause": "Pause",
+  "video.play": "Play",
+  "video.unmute": "Unmute sound"
+}
diff --git a/app/javascript/mastodon/locales/whitelist_kn.json b/app/javascript/mastodon/locales/whitelist_kn.json
new file mode 100644
index 000000000..0d4f101c7
--- /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 000000000..0d4f101c7
--- /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 000000000..0d4f101c7
--- /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 000000000..0d4f101c7
--- /dev/null
+++ b/app/javascript/mastodon/locales/whitelist_ur.json
@@ -0,0 +1,2 @@
+[
+]
diff --git a/app/javascript/mastodon/locales/zh-CN.json b/app/javascript/mastodon/locales/zh-CN.json
index 2804b2724..550810680 100644
--- a/app/javascript/mastodon/locales/zh-CN.json
+++ b/app/javascript/mastodon/locales/zh-CN.json
@@ -16,7 +16,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 +25,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 +38,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} 条",
@@ -53,9 +53,9 @@
   "column.blocks": "已屏蔽的用户",
   "column.community": "本站时间轴",
   "column.direct": "私信",
-  "column.directory": "Browse profiles",
+  "column.directory": "浏览用户资料",
   "column.domain_blocks": "已屏蔽的网站",
-  "column.favourites": "收藏",
+  "column.favourites": "喜欢",
   "column.follow_requests": "关注请求",
   "column.home": "主页",
   "column.lists": "列表",
@@ -100,25 +100,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": "活动",
@@ -141,8 +141,8 @@
   "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 +152,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": "报告问题",
   "follow_request.authorize": "同意",
   "follow_request.reject": "拒绝",
   "getting_started.developers": "开发",
@@ -189,8 +189,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": "回复",
@@ -207,8 +207,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": "打开主页时间轴",
@@ -257,7 +257,7 @@
   "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": "关注管理",
@@ -271,7 +271,7 @@
   "navigation_bar.preferences": "首选项",
   "navigation_bar.public_timeline": "跨站公共时间轴",
   "navigation_bar.security": "安全",
-  "notification.favourite": "{name} 收藏了你的嘟文",
+  "notification.favourite": "{name} 喜欢了你的嘟文",
   "notification.follow": "{name} 开始关注你",
   "notification.mention": "{name} 提及了你",
   "notification.poll": "你参与的一个投票已经结束",
@@ -279,7 +279,7 @@
   "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": "显示",
@@ -292,17 +292,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, plural, one {# 人} other {# 人}}",
   "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": "设置嘟文可见范围",
@@ -314,7 +314,7 @@
   "privacy.public.short": "公开",
   "privacy.unlisted.long": "所有人可见,但不会出现在公共时间轴上",
   "privacy.unlisted.short": "不公开",
-  "refresh": "Refresh",
+  "refresh": "刷新",
   "regeneration_indicator.label": "加载中……",
   "regeneration_indicator.sublabel": "你的主页时间轴正在准备中!",
   "relative_time.days": "{number}天",
@@ -331,7 +331,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": "输入关键词检索昵称、用户名和话题标签",
@@ -351,7 +351,7 @@
   "status.detailed_status": "对话详情",
   "status.direct": "发送私信给 @{name}",
   "status.embed": "嵌入",
-  "status.favourite": "收藏",
+  "status.favourite": "喜欢",
   "status.filtered": "已过滤",
   "status.load_more": "加载更多",
   "status.media_hidden": "隐藏媒体内容",
@@ -378,7 +378,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": "关闭建议",
diff --git a/app/javascript/mastodon/reducers/status_lists.js b/app/javascript/mastodon/reducers/status_lists.js
index 6c5f33557..9f8f28dee 100644
--- a/app/javascript/mastodon/reducers/status_lists.js
+++ b/app/javascript/mastodon/reducers/status_lists.js
@@ -7,12 +7,22 @@ import {
   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';
 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 372673bc0..772f98bcb 100644
--- a/app/javascript/mastodon/reducers/statuses.js
+++ b/app/javascript/mastodon/reducers/statuses.js
@@ -4,6 +4,8 @@ import {
   FAVOURITE_REQUEST,
   FAVOURITE_FAIL,
   UNFAVOURITE_SUCCESS,
+  BOOKMARK_REQUEST,
+  BOOKMARK_FAIL,
 } from '../actions/interactions';
 import {
   STATUS_MUTE_SUCCESS,
@@ -43,6 +45,10 @@ export default function statuses(state = initialState, action) {
     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:
diff --git a/app/javascript/styles/mastodon/components.scss b/app/javascript/styles/mastodon/components.scss
index 732e42a45..3ba53f406 100644
--- a/app/javascript/styles/mastodon/components.scss
+++ b/app/javascript/styles/mastodon/components.scss
@@ -1592,6 +1592,10 @@ a.account__display-name {
   color: $gold-star;
 }
 
+.bookmark-icon.active {
+  color: $red-bookmark;
+}
+
 .no-reduce-motion .icon-button.star-icon {
   &.activate {
     & > .fa-star {
diff --git a/app/javascript/styles/mastodon/variables.scss b/app/javascript/styles/mastodon/variables.scss
index a82c44229..8602c3dde 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/lib/feed_manager.rb b/app/lib/feed_manager.rb
index d109d991c..cdb8383df 100644
--- a/app/lib/feed_manager.rb
+++ b/app/lib/feed_manager.rb
@@ -168,7 +168,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
diff --git a/app/models/bookmark.rb b/app/models/bookmark.rb
index 916261a17..01dc48ee7 100644
--- a/app/models/bookmark.rb
+++ b/app/models/bookmark.rb
@@ -3,11 +3,11 @@
 #
 # Table name: bookmarks
 #
-#  id         :bigint(8)        not null, primary key
-#  account_id :bigint(8)        not null
-#  status_id  :bigint(8)        not null
+#  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
diff --git a/app/services/fetch_link_card_service.rb b/app/services/fetch_link_card_service.rb
index 640c60fd4..29880e8d8 100644
--- a/app/services/fetch_link_card_service.rb
+++ b/app/services/fetch_link_card_service.rb
@@ -39,6 +39,12 @@ class FetchLinkCardService < BaseService
   def process_url
     @card ||= PreviewCard.new(url: @url)
 
+    attempt_oembed || attempt_opengraph
+  end
+
+  def html
+    return @html if defined?(@html)
+
     Request.new(:get, @url).perform do |res|
       if res.code == 200 && res.mime_type == 'text/html'
         @html = res.body_with_limit
@@ -48,10 +54,6 @@ class FetchLinkCardService < BaseService
         @html_charset = nil
       end
     end
-
-    return if @html.nil?
-
-    attempt_oembed || attempt_opengraph
   end
 
   def attach_card
@@ -88,12 +90,17 @@ class FetchLinkCardService < BaseService
   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 10176cfb9..4f8498c62 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(URI.encode_www_form_component(@url), '{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?
 
diff --git a/app/services/resolve_url_service.rb b/app/services/resolve_url_service.rb
index aa883597a..4e971a4b8 100644
--- a/app/services/resolve_url_service.rb
+++ b/app/services/resolve_url_service.rb
@@ -24,6 +24,12 @@ class ResolveURLService < BaseService
       status = FetchRemoteStatusService.new.call(resource_url, body, protocol)
       authorize_with @on_behalf_of, status, :show? unless status.nil?
       status
+    elsif fetched_resource.nil? && @on_behalf_of.present?
+      # 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
     end
   end
 
diff --git a/config/application.rb b/config/application.rb
index 9be41b1a7..e1f7ae707 100644
--- a/config/application.rb
+++ b/config/application.rb
@@ -73,10 +73,13 @@ module Mastodon
       :ja,
       :ka,
       :kk,
+      :kn,
       :ko,
       :lt,
       :lv,
       :mk,
+      :ml,
+      :mr,
       :ms,
       :nl,
       :nn,
@@ -98,6 +101,7 @@ module Mastodon
       :th,
       :tr,
       :uk,
+      :ur,
       :'zh-CN',
       :'zh-HK',
       :'zh-TW',
diff --git a/config/i18n-tasks.yml b/config/i18n-tasks.yml
index e3bede60d..1e223fbde 100644
--- a/config/i18n-tasks.yml
+++ b/config/i18n-tasks.yml
@@ -61,3 +61,6 @@ ignore_unused:
   - 'admin.action_logs.actions.*'
   - 'themes.*'
   - 'statuses.attached.*'
+
+ignore_inconsistent_interpolations:
+  - '*.one'
diff --git a/config/locales/activerecord.fi.yml b/config/locales/activerecord.fi.yml
index 2b2ffd121..305042c42 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 000000000..d758a5b53
--- /dev/null
+++ b/config/locales/activerecord.hi.yml
@@ -0,0 +1 @@
+hi:
diff --git a/config/locales/activerecord.kn.yml b/config/locales/activerecord.kn.yml
new file mode 100644
index 000000000..d094088d8
--- /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 000000000..6931a683d
--- /dev/null
+++ b/config/locales/activerecord.ml.yml
@@ -0,0 +1 @@
+ml:
diff --git a/config/locales/activerecord.mr.yml b/config/locales/activerecord.mr.yml
new file mode 100644
index 000000000..6e4ffece9
--- /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.ta.yml b/config/locales/activerecord.ta.yml
index 4320953ce..b89c564f2 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 000000000..2cace5883
--- /dev/null
+++ b/config/locales/activerecord.ur.yml
@@ -0,0 +1 @@
+ur:
diff --git a/config/locales/ar.yml b/config/locales/ar.yml
index 2bf6789be..13f509836 100644
--- a/config/locales/ar.yml
+++ b/config/locales/ar.yml
@@ -326,9 +326,9 @@ ar:
         affected_accounts:
           few: "%{count} حسابات معنية في قاعدة البيانات"
           many: "%{count} حسابات معنية في قاعدة البيانات"
-          one: حساب واحد معني في قاعدة البيانات
+          one: حساب واحد %{count} معني في قاعدة البيانات
           other: "%{count} حسابات معنية في قاعدة البيانات"
-          two: "%{count} حسابات معنية في قاعدة البيانات"
+          two: حسابين %{count} معنيين في قاعدة البيانات
           zero: "%{count} حسابات معنية في قاعدة البيانات"
         retroactive:
           silence: إلغاء الكتم عن كافة الحسابات المتواجدة على هذا النطاق
@@ -517,6 +517,8 @@ ar:
       title: منشورات الحساب
       with_media: تحتوي على وسائط
     tags:
+      accounts_today: استخدامات هذا اليوم
+      accounts_week: استخدامات هذا الأسبوع
       context: السياق
       directory: في دليل حسابات المستخدمين
       in_directory: "%{count} في سجل حسابات المستخدمين"
@@ -551,10 +553,12 @@ ar:
     confirmation_dialogs: نوافذ التأكيد
     discovery: استكشاف
     sensitive_content: محتوى حساس
+    toot_layout: تصميم التبويق
   application_mailer:
     notification_preferences: تعديل خيارات البريد الإلكتروني
     salutation: "%{name}،"
     settings: 'تغيير تفضيلات البريد الإلكتروني: %{link}'
+    view: 'اعرض:'
     view_profile: اعرض الصفحة التعريفية
     view_status: عرض المنشور
   applications:
@@ -670,8 +674,8 @@ ar:
       date: التاريخ
       download: تنزيل نسخة لحسابك
       hint_html: بإمكانك طلب نسخة كاملة لـ <strong>كافة تبويقاتك و الوسائط التي قمت بنشرها</strong>. البيانات المُصدَّرة ستكون محفوظة على شكل نسق ActivityPub و باستطاعتك قراءتها بأي برنامج يدعم هذا النسق. يُمكنك طلب نسخة كل 7 أيام.
-      in_progress: عملية جمع نسخة لبيانات حسابك جارية...
-      request: طلب نسخة لحسابك
+      in_progress: جارٍ انشاء نسخة لبيانات حسابك…
+      request: اطلب نسخة مِن حسابك
       size: الحجم
     blocks: قمت بحظر
     csv: CSV
@@ -993,6 +997,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} أصوات"
diff --git a/config/locales/bn.yml b/config/locales/bn.yml
index 9fdc3ed29..24f0a654a 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} কে অনুসরণ করে
@@ -130,11 +145,60 @@ bn:
       moderation_notes: প্রশাসনের কিছু লেখা
       most_recent_activity: সর্বশেষ কার্যক্রম
       most_recent_ip: সর্বশেষ আইপি(IP)
+      no_account_selected: কোনও অ্যাকাউন্টই নির্বাচন করা হয়নি বলে কোনও অ্যাকাউন্ট পরিবর্তন করা হয়নি
       no_limits_imposed: কোন সীমা আরোপ করা নেই
       not_subscribed: সাবস্ক্রাইব নেই
       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: নিশ্চিতকরণ ইমেল পুনরায় পাঠান
+        success: নিশ্চিতকরণের ইমেল সফলভাবে পাঠানো হয়েছে!
+      reset: পুনরায় সেট করুন
+      reset_password: পাসওয়ার্ড পুনঃস্থাপন করুন
+      resubscribe: পুনরায় সদস্যতা নিন
+      role: অনুমতিসমূহ
+      roles:
+        admin: পরিচালক
+        moderator: নিয়ামক
+        staff: কর্মী
+        user: ব্যবহারকারী
+      salmon_url: সালমন URL
+      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/ca.yml b/config/locales/ca.yml
index 1d815adcf..b8436efd2 100644
--- a/config/locales/ca.yml
+++ b/config/locales/ca.yml
@@ -11,6 +11,7 @@ ca:
     apps: Apps mòbils
     apps_platforms: Utilitza Mastodon des de iOS, Android i altres plataformes
     browse_directory: Navega per el directori de perfils i filtra segons interessos
+    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 Mastodon
     contact: Contacte
     contact_missing: No configurat
@@ -175,6 +176,7 @@ ca:
         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 +203,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}"
@@ -575,6 +579,7 @@ ca:
     confirmation_dialogs: Diàlegs de confirmació
     discovery: Descobriment
     sensitive_content: Contingut sensible
+    toot_layout: Disseny del tut
   application_mailer:
     notification_preferences: Canvia les preferències de correu
     salutation: "%{name},"
@@ -1007,6 +1012,8 @@ ca:
     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}'
diff --git a/config/locales/co.yml b/config/locales/co.yml
index 41e2ccfbb..f14f4e9ea 100644
--- a/config/locales/co.yml
+++ b/config/locales/co.yml
@@ -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
@@ -175,6 +176,7 @@ co:
         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 +203,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}"
@@ -575,6 +579,7 @@ co:
     confirmation_dialogs: Pop-up di cunfirmazione
     discovery: Scuperta
     sensitive_content: Cuntinutu sensibile
+    toot_layout: Urganizazione
   application_mailer:
     notification_preferences: Cambià e priferenze e-mail
     salutation: "%{name},"
@@ -1007,6 +1012,8 @@ co:
     profile: Prufile
     relationships: Abbunamenti è abbunati
     two_factor_authentication: Identificazione à dui fattori
+  spam_check:
+    spam_detected: Quessu ghjè un rapportu automaticu. Un spam hè statu ditettatu.
   statuses:
     attached:
       description: 'Aghjuntu: %{attached}'
diff --git a/config/locales/cs.yml b/config/locales/cs.yml
index 8a3669a6c..478169d70 100644
--- a/config/locales/cs.yml
+++ b/config/locales/cs.yml
@@ -11,6 +11,7 @@ cs:
     apps: Mobilní aplikace
     apps_platforms: Používejte Mastodon z iOS, Androidu a jiných platforem
     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
@@ -151,7 +152,7 @@ cs:
         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á
@@ -183,6 +184,7 @@ cs:
         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í
@@ -209,10 +211,12 @@ cs:
         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_allow: "%{name} přidal/a doménu %{target} na bílou listinu"
         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_allow: "%{name} odebral/a doménu %{target} z bílé listiny"
         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}"
@@ -587,6 +591,7 @@ cs:
     confirmation_dialogs: Potvrzovací dialogy
     discovery: Objevování
     sensitive_content: Citlivý obsah
+    toot_layout: Rozložení tootů
   application_mailer:
     notification_preferences: Změnit volby e-mailu
     salutation: "%{name},"
diff --git a/config/locales/cy.yml b/config/locales/cy.yml
index 202e5de6c..aa0974a1a 100644
--- a/config/locales/cy.yml
+++ b/config/locales/cy.yml
@@ -40,6 +40,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.
@@ -190,6 +191,7 @@ cy:
         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
@@ -254,11 +256,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 +272,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 +327,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 +412,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:
@@ -452,8 +461,16 @@ 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
       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 +521,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 +531,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 +552,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 +584,23 @@ 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
     sensitive_content: Cynnwys sensitif
+    toot_layout: Gosodiad tŵt
   application_mailer:
     notification_preferences: Newid gosodiadau e-bost
     salutation: "%{name},"
@@ -573,8 +620,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 +645,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 +693,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 +709,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 +721,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
@@ -685,6 +745,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 +771,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 +852,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:
@@ -967,6 +1051,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 +1088,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 5e291154a..982c712a8 100644
--- a/config/locales/da.yml
+++ b/config/locales/da.yml
@@ -149,6 +149,7 @@ da:
         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
@@ -173,9 +174,11 @@ 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_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}"
@@ -209,9 +212,11 @@ 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
       listed: Listet
@@ -440,6 +445,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
@@ -501,6 +509,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"
@@ -628,6 +640,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 +693,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 +701,14 @@ da:
     other: Andet
     public_timelines: Offentlige tidslinjer
   relationships:
+    activity: Aktivitet for konto
     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
diff --git a/config/locales/de.yml b/config/locales/de.yml
index 77c66fb71..490ee947e 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
@@ -175,6 +176,7 @@ de:
         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
@@ -575,6 +577,7 @@ de:
     confirmation_dialogs: Bestätigungsfenster
     discovery: Entdecken
     sensitive_content: Heikle Inhalte
+    toot_layout: Beitragslayout
   application_mailer:
     notification_preferences: Ändere E-Mail-Einstellungen
     salutation: "%{name},"
diff --git a/config/locales/devise.bn.yml b/config/locales/devise.bn.yml
index cb7179da6..e0d83613e 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.da.yml b/config/locales/devise.da.yml
index 1b05d77c1..5b21dbc61 100644
--- a/config/locales/devise.da.yml
+++ b/config/locales/devise.da.yml
@@ -46,6 +46,10 @@ 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:
+        title: 2FA deaktiveret
+      two_factor_enabled:
+        title: 2FA aktiveret
       unlock_instructions:
         subject: 'Mastodon: Instruktioner for oplåsning'
     omniauth_callbacks:
diff --git a/config/locales/devise.et.yml b/config/locales/devise.et.yml
index 3c1b75f6c..cc5ef3867 100644
--- a/config/locales/devise.et.yml
+++ b/config/locales/devise.et.yml
@@ -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 2160f2243..473246d8a 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 12ab0f3ab..84a471459 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 37ebdaa07..71c647f2b 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.hi.yml b/config/locales/devise.hi.yml
new file mode 100644
index 000000000..d758a5b53
--- /dev/null
+++ b/config/locales/devise.hi.yml
@@ -0,0 +1 @@
+hi:
diff --git a/config/locales/devise.it.yml b/config/locales/devise.it.yml
index dca5e3caa..85c010495 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 5f32b2381..e697e290d 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.kk.yml b/config/locales/devise.kk.yml
index d99116c7f..7ddeb8604 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 000000000..d094088d8
--- /dev/null
+++ b/config/locales/devise.kn.yml
@@ -0,0 +1 @@
+kn:
diff --git a/config/locales/devise.ko.yml b/config/locales/devise.ko.yml
index 89dd12f1d..fbe036875 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 000000000..3d4cea716
--- /dev/null
+++ b/config/locales/devise.ml.yml
@@ -0,0 +1,8 @@
+---
+ml:
+  devise:
+    mailer:
+      password_change:
+        title: പാസ് വേഡ് മാറ്റി
+      reset_password_instructions:
+        action: പാസ്‌വേഡ് മാറ്റുക
diff --git a/config/locales/devise.mr.yml b/config/locales/devise.mr.yml
new file mode 100644
index 000000000..fe1639c6a
--- /dev/null
+++ b/config/locales/devise.mr.yml
@@ -0,0 +1 @@
+mr:
diff --git a/config/locales/devise.no.yml b/config/locales/devise.no.yml
index 222a91aa3..e4fc33f01 100644
--- a/config/locales/devise.no.yml
+++ b/config/locales/devise.no.yml
@@ -12,12 +12,14 @@
       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.
         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}'
@@ -43,6 +45,15 @@
         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:
+        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:
@@ -59,6 +70,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 0b6d36187..92ac2948e 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.ru.yml b/config/locales/devise.ru.yml
index 65441f24b..950c9630e 100644
--- a/config/locales/devise.ru.yml
+++ b/config/locales/devise.ru.yml
@@ -46,6 +46,18 @@ ru:
         extra: Если это сделали не вы, пожалуйста, игнорируйте письмо. Ваш пароль не будет изменён, пока вы не перейдёте по ссылке выше и не создадите новый пароль.
         subject: 'Mastodon: инструкция по смене пароля'
         title: Сброс пароля
+      two_factor_disabled:
+        explanation: Двуфакторная авторизация вашего аккаунта отключена. Войти теперь можно используя только e-mail и пароль.
+        subject: 'Mastodon: двуфакторная авторизация убрана'
+        title: 2ФА отключена
+      two_factor_enabled:
+        explanation: Двуфакторная авторизация включена для вашего аккаунта. Отныне для входа потребуется также временный код из привязанного приложения.
+        subject: 'Mastodon: двуфакторная авторизация установлена'
+        title: 2ФА включена
+      two_factor_recovery_codes_changed:
+        explanation: Предыдущие резервные коды были аннулированы и созданы новые.
+        subject: 'Mastodon: резервные коды двуфакторной авторизации обновлены'
+        title: Резервные коды 2ФА изменены
       unlock_instructions:
         subject: 'Mastodon: Инструкция по разблокировке'
     omniauth_callbacks:
diff --git a/config/locales/devise.sk.yml b/config/locales/devise.sk.yml
index 759d4874b..b61eca54e 100644
--- a/config/locales/devise.sk.yml
+++ b/config/locales/devise.sk.yml
@@ -45,6 +45,16 @@ 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:
+        subject: 'Mastodon: Dvojfázové overovanie vypnuté'
+        title: 2FA vypnuté
+      two_factor_enabled:
+        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.ta.yml b/config/locales/devise.ta.yml
index 4320953ce..9c1edfe43 100644
--- a/config/locales/devise.ta.yml
+++ b/config/locales/devise.ta.yml
@@ -1 +1,38 @@
+---
 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:
+        title: புதிய மின்னஞ்சல் முகவரி
+      password_change:
+        title: கடவுச்சொல் மாற்றப்பட்டது
+      reconfirmation_instructions:
+        explanation: உங்கள் மின்னஞ்சல் முகவரியை மாற்ற மீண்டும் ஒரு முறை உறுதி செய்யவும்.
+        title: மின்னஞ்சல் முகவரியை உறுதிபடுத்தவும்
+      reset_password_instructions:
+        action: கடவுச்சொல்லை மாற்றவும்
+    unlocks:
+      send_instructions: இன்னும் சற்று நேரத்தில் மின்னஞ்சல் முகவரியை உறுதி செய்வதற்கான விளக்கம், உங்கள் மின்னஞ்சலை வந்தடையும். வரவில்லை எனில், தயவு செய்து உங்கள் Spam பெட்டியைப் பார்க்கவும்.
+  errors:
+    messages:
+      not_found: காணப்படவில்லை
diff --git a/config/locales/devise.th.yml b/config/locales/devise.th.yml
index 383c51513..e24fc187f 100644
--- a/config/locales/devise.th.yml
+++ b/config/locales/devise.th.yml
@@ -3,42 +3,69 @@ 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: บัญชีของคุณถูกล็อก
+      locked: มีการล็อคบัญชีของคุณอยู่
       not_found_in_database: "%{authentication_keys} หรือรหัสผ่านไม่ถูกต้อง"
-      pending: บัญชีของคุณกำลังถูกตรวจสอบ
+      pending: บัญชีของคุณยังอยู่ระหว่างการตรวจทาน
       timeout: เซสชันของคุณหมดอายุแล้ว โปรดลงชื่อเข้าอีกครั้งเพื่อดำเนินการต่อ
+      unauthenticated: คุณต้องลงชื่อเข้าหรือลงทะเบียนก่อนดำเนินการต่อ
+      unconfirmed: คุณต้องยืนยันที่อยู่อีเมลของคุณก่อนดำเนินการต่อ
     mailer:
+      confirmation_instructions:
+        action: ยืนยันที่อยู่อีเมล
+        action_with_app: ยืนยันแล้วกลับไปยัง %{app}
+        explanation: คุณได้สร้างบัญชีใหม่บน %{host} ด้วยที่อยู่อีเมลนี้ เหลืออีกเพียงคลิกเดียวก็สามารถเปิดใช้งานบัญชีได้แล้ว หากไม่ใช่คุณ กรุณาปฏิเสธอีเมลนี้
+        extra_html: นอกจากนี้ กรุณาอ่าน<a href="%{terms_path}">กฎของเซิร์ฟเวอร์</a>และ<a href="%{policy_path}">เงื่อนไขการให้บริการ</a>
+        subject: 'Mastodon: คำแนะนำการยืนยันสำหรับ %{instance}'
+        title: ยืนยันที่อยู่อีเมล
       email_changed:
+        explanation: 'กำลังเปลี่ยนที่อยู่อีเมลสำหรับบัญชีของคุณเป็น:'
+        subject: 'Mastodon: เปลี่ยนอีเมลแล้ว'
         title: ที่อยู่อีเมลใหม่
       password_change:
+        explanation: เปลี่ยนรหัสผ่านสำหรับบัญชีของคุณแล้ว
         subject: 'Mastodon: เปลี่ยนรหัสผ่านแล้ว'
         title: เปลี่ยนรหัสผ่านแล้ว
+      reconfirmation_instructions:
+        explanation: ยืนยันที่อยู่ใหม่เพื่อเปลี่ยนอีเมลของคุณ
+        subject: 'Mastodon: ยืนยันอีเมลสำหรับ %{instance}'
+        title: ยืนยันที่อยู่อีเมล
       reset_password_instructions:
         action: เปลี่ยนรหัสผ่าน
+        explanation: คุณได้ขอรหัสผ่านใหม่สำหรับบัญชีของคุณ
+        subject: 'Mastodon: คำแนะนำการตั้งรหัสผ่านใหม่'
+        title: ตั้งรหัสผ่านใหม่
       two_factor_disabled:
+        subject: 'Mastodon: ปิดการยืนยันสองขั้นตอนแล้ว'
         title: ปิดใช้งาน 2FA แล้ว
       two_factor_enabled:
+        subject: 'Mastodon: เปิดการยืนยันสองขั้นตอนแล้ว'
         title: เปิดใช้งาน 2FA แล้ว
+      two_factor_recovery_codes_changed:
+        title: เปลี่ยนรหัสกู้คืน 2FA แล้ว
     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.
+      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: ส่งข้อความพร้อมลิงก์ยืนยันไปยังที่อยู่อีเมลของคุณแล้ว โปรดไปตามลิงก์เพื่อเปิดใช้งานบัญชีของคุณ โปรดตรวจสอบโฟลเดอร์สแปมของคุณหากคุณไม่ได้รับอีเมลนี้
+      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: คุณจะได้รับอีเมลพร้อมวิธีการปลดล็อคบัญชีของคุณในไม่กี่นาที หากคุณไม่ได้รับอีเมล กรุณาตรวจสอบโฟลเดอร์สแปมของคุณ
+      unlocked: ปลดล็อคบัญชีของคุณสำเร็จ โปรดลงชื่อเข้าเพื่อดำเนินการต่อ
   errors:
     messages:
       not_found: ไม่พบ
diff --git a/config/locales/devise.uk.yml b/config/locales/devise.uk.yml
index e1eb2d1ae..85b3d14cd 100644
--- a/config/locales/devise.uk.yml
+++ b/config/locales/devise.uk.yml
@@ -46,9 +46,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 000000000..2cace5883
--- /dev/null
+++ b/config/locales/devise.ur.yml
@@ -0,0 +1 @@
+ur:
diff --git a/config/locales/devise.zh-CN.yml b/config/locales/devise.zh-CN.yml
index f9943238e..65c0a5c9d 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:
@@ -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/doorkeeper.es-AR.yml b/config/locales/doorkeeper.es-AR.yml
index 515d5c1ed..14ac59521 100644
--- a/config/locales/doorkeeper.es-AR.yml
+++ b/config/locales/doorkeeper.es-AR.yml
@@ -1 +1,148 @@
+---
 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: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: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.fi.yml b/config/locales/doorkeeper.fi.yml
index 10613d435..abe1a96b2 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 09908b89a..5dc13af87 100644
--- a/config/locales/doorkeeper.fr.yml
+++ b/config/locales/doorkeeper.fr.yml
@@ -121,7 +121,7 @@ fr:
       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
+      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
diff --git a/config/locales/doorkeeper.hi.yml b/config/locales/doorkeeper.hi.yml
new file mode 100644
index 000000000..d758a5b53
--- /dev/null
+++ b/config/locales/doorkeeper.hi.yml
@@ -0,0 +1 @@
+hi:
diff --git a/config/locales/doorkeeper.kk.yml b/config/locales/doorkeeper.kk.yml
index 97897cdcb..cdbc89636 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,6 +114,12 @@ 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
diff --git a/config/locales/doorkeeper.kn.yml b/config/locales/doorkeeper.kn.yml
new file mode 100644
index 000000000..d094088d8
--- /dev/null
+++ b/config/locales/doorkeeper.kn.yml
@@ -0,0 +1 @@
+kn:
diff --git a/config/locales/doorkeeper.ml.yml b/config/locales/doorkeeper.ml.yml
new file mode 100644
index 000000000..6931a683d
--- /dev/null
+++ b/config/locales/doorkeeper.ml.yml
@@ -0,0 +1 @@
+ml:
diff --git a/config/locales/doorkeeper.mr.yml b/config/locales/doorkeeper.mr.yml
new file mode 100644
index 000000000..a6f59fbd4
--- /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.ru.yml b/config/locales/doorkeeper.ru.yml
index bd493f793..1682205a5 100644
--- a/config/locales/doorkeeper.ru.yml
+++ b/config/locales/doorkeeper.ru.yml
@@ -60,7 +60,7 @@ ru:
         title: Произошла ошибка
       new:
         able_to: Оно сможет
-        prompt: Приложение %{client_name} запрашивает доступ к Вашему аккаунту
+        prompt: Приложение %{client_name} запрашивает доступ к Вашей учётной записи
         title: Требуется авторизация
       show:
         title: Скопируйте этот код авторизации и вставьте его в приложении.
@@ -115,15 +115,15 @@ 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: видеть информацию об аккаунтах
+      follow: управлять подписками и списком блокировок
+      push: получать push-уведомления
+      read: читать данные Вашей учётной записи
+      read:accounts: видеть информацию об учётных записях
       read:blocks: видеть ваших заблокированных
       read:favourites: видеть ваше избранное
       read:filters: видеть ваши фильтры
@@ -134,9 +134,9 @@ ru:
       read:reports: видеть ваши жалобы
       read:search: использовать поиск
       read:statuses: видеть все статусы
-      write: изменять все данные вашего аккаунта
+      write: изменять все данные вашей учётной записи
       write:accounts: редактировать ваш профиль
-      write:blocks: блокировать аккаунты и домены
+      write:blocks: блокировать учётные записи и домены
       write:favourites: отмечать статусы как избранные
       write:filters: создавать фильтры
       write:follows: подписываться на людей
diff --git a/config/locales/doorkeeper.sk.yml b/config/locales/doorkeeper.sk.yml
index a08a386f2..be52a3db2 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:
diff --git a/config/locales/doorkeeper.ta.yml b/config/locales/doorkeeper.ta.yml
index 4320953ce..879b6ab21 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 5866baa43..2b4f08385 100644
--- a/config/locales/doorkeeper.th.yml
+++ b/config/locales/doorkeeper.th.yml
@@ -70,11 +70,14 @@ th:
       index:
         application: แอปพลิเคชัน
         created_at: อนุญาตเมื่อ
+        date_format: "%Y-%m-%d %H:%M:%S"
         scopes: ขอบเขต
         title: แอปพลิเคชันที่ได้รับอนุญาตของคุณ
     errors:
       messages:
         access_denied: เจ้าของทรัพยากรหรือเซิร์ฟเวอร์การอนุญาตปฏิเสธคำขอ
+        invalid_token:
+          unknown: โทเคนการเข้าถึงไม่ถูกต้อง
     flash:
       applications:
         create:
@@ -94,6 +97,8 @@ th:
       application:
         title: ต้องมีการอนุญาต OAuth
     scopes:
+      admin:read: อ่านข้อมูลทั้งหมดในเซิร์ฟเวอร์
+      admin:write: แก้ไขข้อมูลทั้งหมดในเซิร์ฟเวอร์
       follow: ปรับเปลี่ยนความสัมพันธ์ของบัญชี
       push: รับการแจ้งเตือนแบบผลักของคุณ
       read: อ่านข้อมูลบัญชีทั้งหมดของคุณ
diff --git a/config/locales/doorkeeper.uk.yml b/config/locales/doorkeeper.uk.yml
index 6e5dc1e42..274784b58 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 000000000..2cace5883
--- /dev/null
+++ b/config/locales/doorkeeper.ur.yml
@@ -0,0 +1 @@
+ur:
diff --git a/config/locales/doorkeeper.zh-CN.yml b/config/locales/doorkeeper.zh-CN.yml
index 015d2c0ce..0d3c6d57e 100644
--- a/config/locales/doorkeeper.zh-CN.yml
+++ b/config/locales/doorkeeper.zh-CN.yml
@@ -125,7 +125,7 @@ zh-CN:
       read: 读取你的帐户数据
       read:accounts: 查看账户信息
       read:blocks: 查看你的屏蔽列表
-      read:favourites: 查看你的收藏
+      read:favourites: 查看喜欢的嘟文
       read:filters: 查看你的过滤器
       read:follows: 查看你的关注
       read:lists: 查看你的列表
@@ -137,7 +137,7 @@ zh-CN:
       write: 修改你的账户数据
       write:accounts: 修改你的个人资料
       write:blocks: 屏蔽账户和域名
-      write:favourites: 收藏嘟文
+      write:favourites: 喜欢的嘟文
       write:filters: 创建过滤器
       write:follows: 关注其他人
       write:lists: 创建列表
diff --git a/config/locales/el.yml b/config/locales/el.yml
index caaab41f8..9f4a8969d 100644
--- a/config/locales/el.yml
+++ b/config/locales/el.yml
@@ -11,6 +11,7 @@ el:
     apps: Εφαρμογές κινητών
     apps_platforms: Χρησιμοποίησε το Mastodon από το iOS, το Android και αλλού
     browse_directory: Ξεφύλλισε τον κατάλογο χρηστών και ψάξε ανά ενδιαφέροντα
+    browse_local_posts: Ξεφύλλισε τη ζωντανή ροή αυτού του διακομιστή
     browse_public_posts: Ξεφύλλισε τη ζωντανή ροή του Mastodon
     contact: Επικοινωνία
     contact_missing: Δεν έχει οριστεί
@@ -175,6 +176,7 @@ el:
         user: Χρήστης
       salmon_url: URL Salmon
       search: Αναζήτηση
+      search_same_ip: Υπόλοιποι χρήστες με την ίδια διεύθυνση IP
       shared_inbox_url: URL κοινόχρηστων εισερχομένων
       show:
         created_reports: Αναφορές από αυτόν το λογαριασμό
@@ -201,10 +203,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}
@@ -566,6 +570,7 @@ el:
     add_new: Δημιουργία ψευδώνυμου
     created_msg: Δημιουργήθηκε νέο ψευδώνυμο. Τώρα μπορείς να ξεκινήσεις τη μεταφορά από τον παλιό λογαριασμό.
     deleted_msg: Αφαιρέθηκε το ψευδώνυμο. Η μεταφορά από εκείνον τον λογαριασμό σε αυτόν εδώ δε θα είναι πλέον δυνατή.
+    hint_html: Αν θέλεις να μετακομίσεις από έναν άλλο λογαριασμό σε αυτόν εδώ, μπορείς εδώ να δημιουργήσεις ένα ψευδώνυμο, πράγμα που απαιτείται πριν προχωρήσεις για να μεταφέρεις τους ακολούθους σου από τον παλιό λογαριασμό σε αυτόν εδώ. Η ενέργεια αυτή είναι <strong>ακίνδυνη και αναστρέψιμη</strong>.<strong>Η μετακόμιση του λογαριασμού ξεκινάει από τον παλιό λογαριασμό</strong>.
     remove: Αφαίρεση ψευδώνυμου
   appearance:
     advanced_web_interface: Προηγμένη λειτουργία χρήσης
@@ -574,6 +579,7 @@ el:
     confirmation_dialogs: Ερωτήσεις επιβεβαίωσης
     discovery: Εξερεύνηση
     sensitive_content: Ευαίσθητο περιεχόμενο
+    toot_layout: Διαρρύθμιση τουτ
   application_mailer:
     notification_preferences: Αλλαγή προτιμήσεων email
     salutation: "%{name},"
@@ -626,6 +632,7 @@ el:
       confirming: Αναμονή για ολοκλήρωση επιβεβαίωσης του email.
       functional: Ο λογαριασμός σου είναι πανέτοιμος.
       pending: Η εφαρμογή σας εκκρεμεί έγκρισης, πιθανόν θα διαρκέσει κάποιο χρόνο. Θα λάβετε email αν εγκριθεί.
+      redirecting_to: Ο λογαριασμός σου είναι ανενεργός γιατί επί του παρόντος ανακατευθύνει στον %{acct}.
     trouble_logging_in: Πρόβλημα σύνδεσης;
   authorize_follow:
     already_following: Ήδη ακολουθείς αυτό το λογαριασμό
@@ -640,6 +647,7 @@ el:
     title: Ακολούθησε %{acct}
   challenge:
     confirm: Συνέχεια
+    hint_html: "<strong>Συμβουλή:</strong> Δεν θα σου ζητήσουμε τον κωδικό ασφαλείας σου ξανά για την επόμενη ώρα."
     invalid_password: Μη έγκυρο συνθηματικό
     prompt: Επιβεβαίωση συνθηματικού για συνέχεια
   datetime:
@@ -815,12 +823,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}.
@@ -996,6 +1012,8 @@ el:
     profile: Προφίλ
     relationships: Ακολουθεί και ακολουθείται
     two_factor_authentication: Πιστοποίηση 2 παραγόντων (2FA)
+  spam_check:
+    spam_detected: Αυτή είναι μια αυτόματη αναφορά. Εντοπίστηκε ανεπιθύμητο υλικό (spam).
   statuses:
     attached:
       description: 'Συνημμένα: %{attached}'
diff --git a/config/locales/en.yml b/config/locales/en.yml
index 8a12cd56a..f672590bf 100644
--- a/config/locales/en.yml
+++ b/config/locales/en.yml
@@ -203,10 +203,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}"
diff --git a/config/locales/eo.yml b/config/locales/eo.yml
index dd3ca1079..347873214 100644
--- a/config/locales/eo.yml
+++ b/config/locales/eo.yml
@@ -252,6 +252,7 @@ eo:
       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
@@ -506,7 +507,7 @@ eo:
       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
@@ -547,6 +548,7 @@ eo:
     confirmation_dialogs: Konfirmaj fenestroj
     discovery: Eltrovo
     sensitive_content: Tikla enhavo
+    toot_layout: Mesaĝo aranĝo
   application_mailer:
     notification_preferences: Ŝanĝi retmesaĝajn preferojn
     salutation: "%{name},"
@@ -771,7 +773,16 @@ eo:
       too_many: Aldoni pli ol 4 dosierojn ne eblas
   migrations:
     acct: uzantnomo@domajno de la nova konto
+    cancel: Nuligi alidirekton
+    errors:
+      already_moved: estas la saman konton vi jam translokiĝis al
+      not_found: ne povis trovi
+      on_cooldown: Vi estas ĉe malvarmiĝi
+    followers_count: Sekvantoj en la momento de moviĝo
+    incoming_migrations: Movi el alian konton
+    past_migrations: Pasintaj translokaj
     proceed_with_move: Translokigi sekvantoj
+    set_redirect: Agordi alidirekton
   moderation:
     title: Kontrolado
   notification_mailer:
@@ -839,9 +850,9 @@ eo:
     posting_defaults: Afiŝadoj defaŭltoj
     public_timelines: Publikaj templinioj
   relationships:
-    activity: Konto aktiveco
+    activity: Konta aktiveco
     dormant: Dormanta
-    last_active: Lasta aktiva
+    last_active: Laste aktiva
     most_recent: Plej lasta
     moved: Moviĝita
     mutual: Reciproka
@@ -849,7 +860,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 +968,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"
diff --git a/config/locales/es-AR.yml b/config/locales/es-AR.yml
index d70007d27..0af0c04bd 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}:"
@@ -120,6 +121,7 @@ es-AR:
       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
@@ -173,6 +175,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
@@ -198,10 +201,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}"
@@ -382,21 +387,826 @@ 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:
+        note: nota
+        report: denuncia
+      action_taken_by: Acción tomada por
+      are_you_sure: "¿Estás seguro?"
+      assign_to_self: Asignármela a mí
+      assigned: Moderador asignado
+      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
+      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
+    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
+    follows: Quienes seguís
+    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
+      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
+  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ó
+      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
+    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_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_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 8a194fdc1..920a0ccdf 100644
--- a/config/locales/es.yml
+++ b/config/locales/es.yml
@@ -11,6 +11,7 @@ es:
     apps: Aplicaciones móviles
     apps_platforms: Utiliza Mastodon 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
@@ -175,6 +176,7 @@ es:
         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
@@ -201,10 +203,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}"
@@ -575,6 +579,7 @@ es:
     confirmation_dialogs: Diálogos de confirmación
     discovery: Descubrir
     sensitive_content: Contenido sensible
+    toot_layout: Diseño de los toots
   application_mailer:
     notification_preferences: Cambiar preferencias de correo electrónico
     salutation: "%{name},"
@@ -1008,7 +1013,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}'
diff --git a/config/locales/et.yml b/config/locales/et.yml
index 6b814a23c..aa58138f7 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
@@ -164,6 +176,7 @@ et:
         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 +203,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 +233,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 +258,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 +291,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 +302,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 +316,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,6 +339,7 @@ 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
@@ -334,6 +363,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
@@ -363,6 +394,7 @@ et:
       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:
@@ -411,6 +443,16 @@ 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
       hero:
         desc_html: Kuvatud kodulehel. Vähemalt 600x100px soovitatud. Kui pole seadistatud, kuvatakse serveri pisililt
         title: Maskotipilt
@@ -471,12 +513,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 +534,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 +566,23 @@ 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
     sensitive_content: Tundlik sisu
+    toot_layout: Tuututuse kujundus
   application_mailer:
     notification_preferences: Muuda e-kirjade eelistusi
     salutation: "%{name},"
@@ -529,6 +605,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 +633,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 +648,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 +668,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 +703,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
@@ -625,6 +727,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
@@ -645,10 +748,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,6 +825,34 @@ 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:
@@ -866,6 +999,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 +1017,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 +1042,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 +1063,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 +1101,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}
diff --git a/config/locales/eu.yml b/config/locales/eu.yml
index 1f2ac6644..ab8a68746 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
@@ -175,6 +176,7 @@ eu:
         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 +203,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 +272,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
@@ -375,7 +379,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 +391,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:
@@ -435,6 +440,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
@@ -502,6 +510,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 +533,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 +564,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
@@ -566,6 +579,7 @@ eu:
     confirmation_dialogs: Berrespen dialogoak
     discovery: Aurkitzea
     sensitive_content: Eduki hunkigarria
+    toot_layout: Toot disposizioa
   application_mailer:
     notification_preferences: Aldatu e-mail hobespenak
     salutation: "%{name},"
@@ -660,6 +674,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 +700,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
@@ -706,6 +724,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
@@ -731,6 +750,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 +845,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
@@ -991,6 +1012,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 +1177,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 ebac705d8..ea901423d 100644
--- a/config/locales/fa.yml
+++ b/config/locales/fa.yml
@@ -11,6 +11,7 @@ fa:
     apps: اپ‌های موبایل
     apps_platforms: ماستدون را در iOS، اندروید، و سایر سیستم‌ها داشته باشید
     browse_directory: کاربران این سرور را بر اساس علاقه‌مندی‌هایشان پیدا کنید
+    browse_local_posts: فهرست لحظه‌ای نوشته‌های عمومی در ماستدون را ببینید
     browse_public_posts: فهرست لحظه‌ای نوشته‌های عمومی در ماستدون را ببینید
     contact: تماس
     contact_missing: تعیین نشده
@@ -175,6 +176,7 @@ fa:
         user: کاربر
       salmon_url: نشانی Salmon
       search: جستجو
+      search_same_ip: دیگر کاربران با همان IP
       shared_inbox_url: نشانی صندوق ورودی مشترک
       show:
         created_reports: گزارش‌های ثبت کرده
@@ -575,6 +577,7 @@ fa:
     confirmation_dialogs: پیغام‌های تأیید
     discovery: کاوش
     sensitive_content: محتوای حساس
+    toot_layout: آرایش بوق
   application_mailer:
     notification_preferences: تغییر ترجیحات ایمیل
     salutation: "%{name}،"
@@ -997,7 +1000,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 500c2408f..dfe71c098 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ä
@@ -83,6 +101,8 @@ fi:
       followers_url: Seuraajien osoite
       follows: Seuraa
       inbox_url: Saapuvan postilaatikon osoite
+      ip: IP
+      joined: Liittynyt
       location:
         all: Kaikki
         local: Paikalliset
@@ -92,7 +112,9 @@ fi:
       media_attachments: Medialiitteet
       memorialize: Muuta muistosivuksi
       moderation:
+        active: Aktiivinen
         all: Kaikki
+        pending: Odottavat
         silenced: Hiljennetty
         suspended: Jäähyllä
         title: Moderointi
@@ -108,6 +130,8 @@ fi:
       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
@@ -129,14 +153,18 @@ fi:
         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 +219,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
diff --git a/config/locales/fr.yml b/config/locales/fr.yml
index f44a0893f..52dd032dd 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_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,7 +73,7 @@ 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
@@ -114,7 +115,7 @@ 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
@@ -135,7 +136,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
@@ -175,6 +176,7 @@ fr:
         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 +188,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 +201,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 +250,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 +316,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 +331,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
@@ -380,10 +384,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
@@ -396,7 +400,7 @@ fr:
     reports:
       account:
         note: note
-        report: signaler
+        report: signalement(s)
       action_taken_by: Intervention de
       are_you_sure: Êtes vous certain⋅e ?
       assign_to_self: Me l’assigner
@@ -425,7 +429,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 +449,7 @@ 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
       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 +463,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 +482,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 +497,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 +528,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 +547,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 +568,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
@@ -575,6 +579,7 @@ fr:
     confirmation_dialogs: Dialogues de confirmation
     discovery: Découverte
     sensitive_content: Contenu sensible
+    toot_layout: Agencement du pouet
   application_mailer:
     notification_preferences: Modifier les préférences de courriel
     salutation: "%{name},"
@@ -586,8 +591,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 +624,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 +666,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
@@ -749,12 +754,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 +771,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 +802,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,26 +821,26 @@ 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
       before: 'Avant de procéder, veuillez lire attentivement ces notes :'
@@ -850,7 +855,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 +866,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 +875,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
@@ -906,7 +911,7 @@ fr:
       expired: Ce sondage est déjà terminé
       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
@@ -923,14 +928,14 @@ 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
@@ -993,7 +998,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 +1013,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}'
@@ -1025,7 +1030,7 @@ fr:
       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 +1038,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"
diff --git a/config/locales/gl.yml b/config/locales/gl.yml
index f32575752..64f479ec7 100644
--- a/config/locales/gl.yml
+++ b/config/locales/gl.yml
@@ -4,35 +4,36 @@ gl:
     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_this: Acerca de
-    active_count_after: activo
+    active_count_after: activas
     active_footnote: Usuarias Activas no Mes (UAM)
     administered_by: 'Administrada 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
+    apps_platforms: Utiliza Mastodon desde iOS, Android e outras plataformas
+    browse_directory: Olla o directorio de perfís e filtra por intereses
+    browse_local_posts: Ler en directo o fluxo das publicacións públicas deste servidor
     browse_public_posts: Vexa o fluxo de comentarios públicos en Mastodon
     contact: Contacto
     contact_missing: Non establecido
     contact_unavailable: N/A
-    discover_users: Descubra usuarias
+    discover_users: Descubre usuarias
     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
+    federation_hint_html: Con unha conta en %{instance} poderás seguir a outras persoas en calquera dos servidores Mastodon e incluso máis.
+    get_apps: Proba 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.
 
 '
-    learn_more: Coñeza máis
+    learn_more: Saber máis
     privacy_policy: Política de intimidade
-    see_whats_happening: Mire o que acontece
+    see_whats_happening: Mira o que acontece
     server_stats: 'Estatísticas:'
     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
+    tagline: Conecta coas amizades e fai outras novas
     terms: Termos do servizo
     unavailable_content: Contido non dispoñible
     unavailable_content_description:
@@ -175,6 +176,7 @@ gl:
         user: Usuaria
       salmon_url: URL Salmon
       search: Busca
+      search_same_ip: Outros usuarios co mesmo IP
       shared_inbox_url: URL da caixa de entrada compartida
       show:
         created_reports: Informes creados
@@ -553,7 +555,7 @@ 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}"
@@ -565,8 +567,8 @@ gl:
   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
@@ -575,6 +577,7 @@ gl:
     confirmation_dialogs: Diálogos de confirmación
     discovery: Descubrir
     sensitive_content: Contido sensible
+    toot_layout: Disposición do toot
   application_mailer:
     notification_preferences: Cambiar os axustes de correo-e
     salutation: "%{name},"
@@ -626,7 +629,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:
@@ -678,7 +681,7 @@ gl:
       username_unavailable: O nome de usuario 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
@@ -762,7 +765,7 @@ 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.
+      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í 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.
     i_am_html: Eu son %{username} en %{service}.
     identity: Identidade
@@ -828,7 +831,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.
@@ -983,8 +986,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 +1010,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}'
@@ -1195,7 +1200,7 @@ gl:
       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_following: Por omisión segues a Admin 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
diff --git a/config/locales/hi.yml b/config/locales/hi.yml
index 0967ef424..401d07cf6 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/hu.yml b/config/locales/hu.yml
index af7048ebb..7f519c820 100644
--- a/config/locales/hu.yml
+++ b/config/locales/hu.yml
@@ -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
@@ -145,7 +148,7 @@ 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
@@ -175,6 +178,7 @@ hu:
         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 +205,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}"
@@ -506,6 +512,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
@@ -572,6 +581,7 @@ hu:
     confirmation_dialogs: Megerősítő párbeszédablakok
     discovery: Felfedezés
     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}!"
@@ -1004,6 +1014,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/id.yml b/config/locales/id.yml
index 572769a5a..97e87460a 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
@@ -171,6 +172,7 @@ id:
         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 +199,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 +225,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 +310,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
@@ -339,6 +347,8 @@ id:
     instances:
       by_domain: Domain
       delivery_available: Pengiriman tersedia
+      known_accounts:
+        other: "%{count} akun yang dikenal"
       moderation:
         all: Semua
         limited: Terbatas
@@ -349,6 +359,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 +374,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
@@ -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,80 @@ 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
+      hero:
+        desc_html: Ditampilkan di halaman depan. Direkomendasikan minimal 600x100px. Jika tidak diatur, kembali ke server gambar kecil
+      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 +551,92 @@ 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
+    sensitive_content: Konten sensitif
   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,88 +651,349 @@ 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
+    csv: CSV
+    domain_blocks: Blokir domain
     follows: Anda ikuti
+    lists: Daftar
     mutes: Anda bisukan
     storage: Penyimpanan media
+  featured_tags:
+    add_new: Tambah baru
+  filters:
+    contexts:
+      home: Beranda
+      notifications: Notifikasi
+      public: Linimasa publik
+      thread: Percakapan
+    edit:
+      title: Ubah saringan
+    index:
+      delete: Hapus
+      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
+  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
+  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
+      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
+    public_timelines: Linimasa publik
+  relationships:
+    activity: Aktivitas akun
+    dormant: Terbengkalai
+    last_active: Terakhir aktif
+    most_recent: Terkini
+    moved: Dipindah
+    primary: Utama
+    relationship: Hubungan
+    remove_selected_domains: Hapus semua pengikut dari domain yang dipilih
+    remove_selected_followers: Hampus pengikut yang dipilih
+    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
     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
     show_more: Tampilkan selengkapnya
     visibilities:
       private: Khusus pengikut
@@ -624,6 +1021,22 @@ id:
     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:
+    warning:
+      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
   users:
     invalid_email: Alamat email tidak cocok
     invalid_otp_token: Kode dua faktor tidak cocok
diff --git a/config/locales/it.yml b/config/locales/it.yml
index f35c717a6..3b5743f4d 100644
--- a/config/locales/it.yml
+++ b/config/locales/it.yml
@@ -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:
@@ -170,6 +176,7 @@ it:
         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
@@ -234,6 +241,7 @@ 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
@@ -379,6 +387,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:
@@ -427,6 +436,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
@@ -494,6 +506,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
@@ -525,6 +540,7 @@ it:
       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 +563,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: |-
@@ -555,6 +575,7 @@ it:
     animations_and_accessibility: Animazioni e accessibiiltà
     confirmation_dialogs: Dialoghi di conferma
     sensitive_content: Contenuto sensibile
+    toot_layout: Layout dei toot
   application_mailer:
     notification_preferences: Cambia preferenze email
     salutation: "%{name},"
@@ -577,6 +598,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.
@@ -602,6 +627,7 @@ it:
       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 +667,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 +683,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 +695,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
@@ -710,6 +745,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 +817,33 @@ 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_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:
@@ -925,6 +988,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 +1006,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 +1031,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 f7d66b2ce..8bf225bee 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: 未設定
@@ -171,6 +172,7 @@ ja:
         user: ユーザー
       salmon_url: Salmon URL
       search: 検索
+      search_same_ip: 同じ IP のユーザーを検索
       shared_inbox_url: Shared inbox URL
       show:
         created_reports: このアカウントで作られた通報
@@ -197,10 +199,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} さんの投稿を削除しました"
@@ -569,6 +573,7 @@ ja:
     confirmation_dialogs: 確認ダイアログ
     discovery: 見つける
     sensitive_content: 閲覧注意コンテンツ
+    toot_layout: トゥートレイアウト
   application_mailer:
     notification_preferences: メール設定の変更
     salutation: "%{name} さん"
@@ -1136,7 +1141,7 @@ ja:
   two_factor_authentication:
     code_hint: 続行するには認証アプリで表示されたコードを入力してください
     description_html: "<strong>二段階認証</strong>を有効にするとログイン時、認証アプリからコードを入力する必要があります。"
-    disable: 無効
+    disable: 無効化
     enable: 有効
     enabled: 二段階認証は有効になっています
     enabled_success: 二段階認証が有効になりました
@@ -1163,10 +1168,10 @@ ja:
       review_server_policies: サーバーのポリシーを確認
       statuses: '特に次のトゥート:'
       subject:
-        disable: あなたのアカウント %{acct} は凍結されています
+        disable: あなたのアカウント %{acct} は凍結されました
         none: "%{acct} に対する警告"
-        silence: あなたのアカウント %{acct} はサイレンスにされています
-        suspend: あなたのアカウント %{acct} は停止されています
+        silence: あなたのアカウント %{acct} はサイレンスにされました
+        suspend: あなたのアカウント %{acct} は停止されました
       title:
         disable: アカウントが凍結されました
         none: 警告
diff --git a/config/locales/kk.yml b/config/locales/kk.yml
index 49cc18a4c..2b3f24e02 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} атты қолданушының оқырмандары"
@@ -52,6 +79,7 @@ kk:
       admin: Админ
       bot: Бот
       moderator: Мод
+    unavailable: Профиль қолжетімді емес
     unfollow: Оқымау
   admin:
     account_actions:
@@ -63,6 +91,8 @@ kk:
       delete: Өшіру
       destroyed_msg: Модерация жазбасы өшірілді!
     accounts:
+      approve: Құптау
+      approve_all: Бәрін құптау
       are_you_sure: Шынымен бе?
       avatar: Аватар
       by_domain: Домен
@@ -84,6 +114,7 @@ kk:
       display_name: Атын көрсет
       domain: Домен
       edit: Түзету
+      email: Пошта
       email_status: Email статусы
       enable: Қосу
       enabled: Қосылды
@@ -94,6 +125,7 @@ kk:
       header: Басы
       inbox_url: Келген хаттар URL
       invited_by: Шақырған
+      ip: ІР
       joined: Қосылды
       location:
         all: Барлығы
@@ -106,15 +138,18 @@ 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: Жарнамалау
@@ -122,6 +157,8 @@ kk:
       public: Ашық
       push_subscription_expires: PuSH жазылу мерзімі аяқталады
       redownload: Профиль жаңарт
+      reject: Қабылдамау
+      reject_all: Бәрін қабылдамау
       remove_avatar: Аватар өшіру
       remove_header: Мұқаба суретін өшір
       resend_confirmation:
@@ -131,7 +168,7 @@ kk:
       reset: Қалпына келтіру
       reset_password: Құпиясөзді қалпына келтіру
       resubscribe: Resubscribе
-      role: Қайта жазылу
+      role: Рұқсаттар
       roles:
         admin: Админ
         moderator: Модератор
@@ -139,6 +176,7 @@ kk:
         user: Қолданушы
       salmon_url: Ақсерке URL
       search: Іздеу
+      search_same_ip: Осы ІРмен кірген басқа қолданушылар
       shared_inbox_url: Бөлісілген инбокс URL
       show:
         created_reports: Шағымдар жинағы
@@ -148,6 +186,7 @@ kk:
       statuses: Статустар
       subscribe: Жазылу
       suspended: Тоқтатылды
+      time_in_queue: "%{time} күту"
       title: Аккаунттар
       unconfirmed_email: Құпталмаған email
       undo_silenced: Үнсіздікті қайтып алу
@@ -156,6 +195,7 @@ kk:
       username: Логин
       warn: Ескерту
       web: Веб
+      whitelisted: Рұқсат тізімі
     action_logs:
       actions:
         assigned_to_self_report: "%{name} шағым тастады %{target} өздері үшін"
@@ -163,10 +203,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 +233,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 +258,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 +273,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 +291,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 +313,10 @@ kk:
           silence: Үнсіз
           suspend: Тоқтатылған
         title: Жаңа домен блокы
+      private_comment: Құпия пікір
+      private_comment_hint: Модераторлардың ішкі қолдануы үшін осы доменнің шектеулілігі туралы түсініктеме.
+      public_comment: Ашық пікір
+      public_comment_hint: Егер доменде шектеулер тізімін жарнамалау мүмкіндігі болса, көпшілікке бұл доменнің шектеулілігі туралы түсініктеме беріңіз.
       reject_media: Медиа файлдарды қабылдамау
       reject_media_hint: Жергілікті сақталған мультимедиалық файлдарды жояды және болашақта кез келген жүктеуден бас тартады. Суспензияға байланысты емес
       reject_reports: Шағым қабылдамау
@@ -270,6 +336,7 @@ kk:
         title: "%{domain} доменіндегі блокты алып таста"
         undo: Қайтару
       undo: Домен блокын қайтып алу
+      view: Домен блокын көрсету
     email_domain_blocks:
       add_new: Жаңасын қосу
       created_msg: Қаратізімге email домені қосылды
@@ -293,6 +360,8 @@ kk:
         all: Барлығы
         limited: Лимит
         title: Модерация
+      private_comment: Құпия пікір
+      public_comment: Ашық пікір
       title: Федерация
       total_blocked_by_us: Біз бұғаттағандар
       total_followed_by_them: Олар жазылғандар
@@ -307,6 +376,8 @@ kk:
         expired: Уақыты өткен
         title: Фильтр
       title: Шақырулар
+    pending_accounts:
+      title: Күтілген аккаунттар (%{count})
     relays:
       add_new: Жаңа арна қосу
       delete: Өшіру
@@ -320,6 +391,7 @@ kk:
       pending: Жаңа арна құпталуын күту
       save_and_enable: Сақта да қос
       setup: Арна байланысын баптау
+      signatures_not_enabled: Қорғаныс режимі немесе ақ тізім қосылған кезде реле дұрыс жұмыс істемейді
       status: Статус
       title: Арналар
     report_notes:
@@ -368,6 +440,16 @@ kk:
       custom_css:
         desc_html: Әр беттегі өзгерістерді CSS жаңаруымен қарау
         title: Жеке CSS
+      default_noindex:
+        desc_html: Бұл параметрді өзгертпеген барлық пайдаланушыларға әсер етеді
+        title: Әдепкі бойынша іздеу жүйелерін индекстеуден бас тарту
+      domain_blocks:
+        all: Бәріне
+        disabled: Ешкімге
+        title: Домен блоктарын көрсету
+        users: Жергілікті қолданушыларға
+      domain_blocks_rationale:
+        title: Дәлелді көрсету
       hero:
         desc_html: Бастапқы бетінде көрсетіледі. Кем дегенде 600x100px ұсынылады. Орнатылмаған кезде, сервердің нобайына оралады
         title: Қаһарман суреті
@@ -393,6 +475,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 +500,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 +510,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 +531,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 +556,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 +596,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 +618,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 +645,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 +665,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 +700,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: Уақыты
@@ -547,6 +724,7 @@ kk:
     add_new: Жаңасын қосу
     errors:
       limit: Хэштег лимитинен асып кеттіңіз
+    hint_html: "<strong> Ерекшеліктері бар хэштегтер дегеніміз не? </strong> Олар жалпыға қол жетімді профильде көрсетіледі және адамдарға сіздің жалпы хабарламаларыңызды сол хэштегтердің астына қарауға мүмкіндік береді. Олар шығармашылық жұмыстарды немесе ұзақ мерзімді жобаларды бақылаудың тамаша құралы."
   filters:
     contexts:
       home: Ішкі желі
@@ -567,13 +745,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 +822,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:
@@ -659,9 +889,11 @@ kk:
   number:
     human:
       decimal_units:
+        format: "%n%u"
         units:
           billion: В
           million: М
+          quadrillion: Q
           thousand: К
           trillion: Т
   pagination:
@@ -669,6 +901,7 @@ kk:
     next: Келесі
     older: Ерте
     prev: Алдыңғы
+    truncate: "&hellip;"
   polls:
     errors:
       already_voted: Бұл сауалнамаға қатысқансыз
@@ -681,6 +914,21 @@ kk:
       too_many_options: "%{max} жауаптан көп болмайды"
   preferences:
     other: Басқа
+    posting_defaults: Пост жазу негіздері
+    public_timelines: Ашық таймлайндар
+  relationships:
+    activity: Аккаунт белсенділігі
+    dormant: Ұйқысыз
+    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 +992,10 @@ kk:
     revoke_success: Сессиялар сәтті жабылды
     title: Сессиялар
   settings:
+    account: Аккаунт
+    account_settings: Аккаунт баптаулары
+    aliases: Аккаунт алиастары
+    appearance: Сыртқы түрі
     authorized_apps: Authorizеd apps
     back: Желіге оралу
     delete: Аккаунт өшіру
@@ -751,11 +1003,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 +1037,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 +1058,8 @@ kk:
     pinned: Жабыстырылған жазба
     reblogged: бөлісті
     sensitive_content: Нәзік мазмұн
+  tags:
+    does_not_match_previous_name: алдыңғы атқа сәйкес келмейді
   terms:
     body_html: |
       <h2>Құпиялылық шарттары</h2>
@@ -883,6 +1147,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 +1177,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 000000000..d6c1d98eb
--- /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 bae3d69bc..ceeadfb36 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: 미설정
@@ -171,6 +172,7 @@ ko:
         user: 사용자
       salmon_url: Salmon URL
       search: 검색
+      search_same_ip: 같은 IP의 다른 사용자들
       shared_inbox_url: 공유된 inbox URL
       show:
         created_reports: 이 계정에서 제출된 신고
@@ -215,10 +217,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}의 상태를 업데이트 했습니다"
@@ -503,7 +505,7 @@ ko:
         title: 타임라인 프리뷰
       title: 사이트 설정
       trendable_by_default:
-        desc_html: 이전에 비허용 되지 않은 해시태그들에 영향을 미칩니다
+        desc_html: 이전에 거부되지 않은 해시태그들에 영향을 미칩니다
         title: 해시태그가 사전 리뷰 없이 트렌드에 올라갈 수 있도록 허용
       trends:
         desc_html: 리뷰를 거친 해시태그를 유행하는 해시태그에 공개적으로 보여줍니다
@@ -571,6 +573,7 @@ ko:
     confirmation_dialogs: 확인 대화상자
     discovery: 발견하기
     sensitive_content: 민감한 내용
+    toot_layout: 툿 레이아웃
   application_mailer:
     notification_preferences: 메일 설정 변경
     salutation: "%{name} 님,"
@@ -999,6 +1002,8 @@ ko:
     profile: 프로필
     relationships: 팔로잉과 팔로워
     two_factor_authentication: 2단계 인증
+  spam_check:
+    spam_detected: 이것은 자동화 된 신고입니다. 스팸이 감지되었습니다.
   statuses:
     attached:
       description: '첨부: %{attached}'
diff --git a/config/locales/ml.yml b/config/locales/ml.yml
new file mode 100644
index 000000000..45218b8be
--- /dev/null
+++ b/config/locales/ml.yml
@@ -0,0 +1,22 @@
+---
+ml:
+  about:
+    contact_missing: സജ്ജമാക്കിയിട്ടില്ല
+  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 000000000..3f83ed785
--- /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/nl.yml b/config/locales/nl.yml
index 2c9e42b33..bfa4122ed 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
@@ -175,6 +176,7 @@ nl:
         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
@@ -506,6 +508,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 +577,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},"
@@ -1004,6 +1010,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/oc.yml b/config/locales/oc.yml
index bd19401ed..851db0491 100644
--- a/config/locales/oc.yml
+++ b/config/locales/oc.yml
@@ -33,6 +33,7 @@ oc:
     terms: Condicions d’utilizacion
     unavailable_content: Contengut pas disponible
     unavailable_content_description:
+      domain: Servidor
       reason: 'Motiu :'
     user_count_after:
       one: utilizaire
@@ -936,6 +937,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
diff --git a/config/locales/pl.yml b/config/locales/pl.yml
index 40a8bd993..5cf346dc7 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}
@@ -187,6 +201,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 +237,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 +252,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 +260,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 +275,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 +293,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 +315,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 +339,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 +365,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,6 +396,7 @@ 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:
diff --git a/config/locales/pt-BR.yml b/config/locales/pt-BR.yml
index bafbcaab3..7391ff06c 100644
--- a/config/locales/pt-BR.yml
+++ b/config/locales/pt-BR.yml
@@ -519,10 +519,13 @@ pt-BR:
       body_remote: Alguém da instância %{domain} reportou %{target}
       subject: Nova denúncia sobre %{instance} (#%{id})
   appearance:
+    advanced_web_interface: Interface web avançada
+    advanced_web_interface_hint: 'Se você deseja usar toda a sua largura de tela, a interface web avançada permite que você configure muitas colunas diferentes para ver tantas informações ao mesmo tempo quanto você deseja: Início, notificações, linha do tempo federada, qualquer número de listas e hashtags.'
     animations_and_accessibility: Animações e acessibilidade
     confirmation_dialogs: Popups de confirmação
     discovery: Descobrir
     sensitive_content: Conteúdo sensível
+    toot_layout: Layout do Toot
   application_mailer:
     notification_preferences: Mudar preferências de e-mail
     salutation: "%{name},"
@@ -566,6 +569,11 @@ pt-BR:
     reset_password: Redefinir senha
     security: Segurança
     set_new_password: Definir uma nova senha
+    setup:
+      email_below_hint_html: Se o endereço de e-mail abaixo estiver incorreto, 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.
+    status:
+      redirecting_to: Sua conta está inativa porque atualmente está redirecionando para %{acct}.
     trouble_logging_in: Problemas para se conectar?
   authorize_follow:
     already_following: Você já está seguindo esta conta
diff --git a/config/locales/pt-PT.yml b/config/locales/pt-PT.yml
index fe23160a2..bb1de517e 100644
--- a/config/locales/pt-PT.yml
+++ b/config/locales/pt-PT.yml
@@ -4,21 +4,41 @@ 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
     user_count_after:
       one: utilizador
       other: utilizadores
@@ -288,6 +308,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 +324,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 +339,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 whitelist estiver activado
       status: Estado
       title: Retransmissores
     report_notes:
@@ -363,6 +388,16 @@ 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
       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 +423,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 +448,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,6 +458,9 @@ 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
     statuses:
       back_to_account: Voltar para página da conta
       batch:
@@ -711,6 +758,8 @@ pt-PT:
     notifications: Notificações
     preferences: Preferências
     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}'
diff --git a/config/locales/ru.yml b/config/locales/ru.yml
index df4a04048..4c1035627 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)
@@ -11,6 +11,7 @@ ru:
     apps: Приложения
     apps_platforms: Используйте Mastodon на iOS, Android и других платформах
     browse_directory: Изучайте каталог профилей и ищите по интересам
+    browse_local_posts: Просматривайте в реальном времени новые статусы с этого сервера
     browse_public_posts: Просматривайте в реальном времени новые статусы в Mastodon
     contact: Связаться
     contact_missing: не указан
@@ -20,17 +21,20 @@ ru:
     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:
-      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: Мастодон обычно позволяет просматривать контент с любого другого сервера и взаимодействовать с ними. Это исключения, сделанные на этом сервере.
     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: подписчика
@@ -83,7 +92,7 @@ ru:
   admin:
     account_actions:
       action: Выполнить действие
-      title: Произвести модерацию аккаунта %{acct}
+      title: Произвести модерацию учётной записи %{acct}
     account_moderation_notes:
       create: Создать
       created_msg: Заметка модератора успешно создана!
@@ -96,7 +105,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
@@ -131,7 +140,7 @@ ru:
         local: Локальные
         remote: Удаленные
         title: Размещение
-      login_status: Статус аккаунта
+      login_status: Статус учётной записи
       media_attachments: Мультимедийные вложения
       memorialize: Превратить в Памятник
       moderation:
@@ -144,7 +153,7 @@ ru:
       moderation_notes: Заметки модератора
       most_recent_activity: Последняя активность
       most_recent_ip: Последний IP
-      no_account_selected: Ничего не выбрано, никакие аккаунты не изменены
+      no_account_selected: Ничего не выбрано, никакие учётные записи не изменены
       no_limits_imposed: Без ограничений
       not_subscribed: Не подписаны
       outbox_url: URL исходящих
@@ -175,17 +184,18 @@ ru:
         user: Пользователь
       salmon_url: Страница Salmon
       search: Поиск
+      search_same_ip: Другие пользователи с таким же IP
       shared_inbox_url: URL общих входящих
       show:
-        created_reports: Жалобы, отправленные этим аккаунтом
-        targeted_reports: Жалобы на этот аккаунт
+        created_reports: Жалобы, отправленные с этой учётной записи
+        targeted_reports: Жалобы на эту учётную запись
       silence: Заглушить
       silenced: Заглушен
       statuses: Статусы
       subscribe: Подписаться
       suspended: Заморожен
       time_in_queue: Ожидание в очереди %{time}
-      title: Аккаунты
+      title: Учётные записи
       unconfirmed_email: Неподтверждённый e-mail
       undo_silenced: Снять глушение
       undo_suspension: Снять блокировку
@@ -201,10 +211,12 @@ ru:
         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}"
@@ -213,17 +225,17 @@ ru:
         disable_user: "%{name} запретил(а) вход пользователя %{target}"
         enable_custom_emoji: "%{name} включил(а) эмодзи %{target}"
         enable_user: "%{name} включил(а) вход пользователя %{target}"
-        memorialize_account: "%{name} перевел(а) аккаунт пользователя %{target} в режим памятника"
+        memorialize_account: "%{name} перевел(а) учётную запись пользователя %{target} в режим памятника"
         promote_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: "(удалённый статус)"
@@ -253,8 +265,9 @@ ru:
       overwrite: Заменить
       shortcode: Шорткод
       shortcode_hint: Как минимум 2 символа, только алфавитно-цифровые символы и подчеркивания
-      title: Собственные эмодзи
+      title: Особенные эмодзи
       uncategorized: Вне категорий
+      unlist: Убрать
       unlisted: Не в списке
       update_failed_msg: Невозможно обновить этот эмодзи
       updated_msg: Эмодзи обновлён!
@@ -263,7 +276,7 @@ ru:
       authorized_fetch_mode: Защищённый режим
       backlog: задачи
       config: Конфигурация
-      feature_deletions: Удаление аккаунтов
+      feature_deletions: Удаление учётных записей
       feature_invites: Пригласительные ссылки
       feature_profile_directory: Каталог профилей
       feature_registrations: Регистрация
@@ -298,17 +311,20 @@ 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> сделает статусы учётной записи невидимыми для всех, кроме их подписчиков. <strong>Блокировка</strong> удалит весь контент учётной записи, включая мультимедийные вложения и данные профиля. Используйте <strong>Ничего</strong>, если хотите только запретить медиаконтент."
           noop: Ничего
           silence: Глушение
           suspend: Блокировка
         title: Новая доменная блокировка
       private_comment: Приватный комментарий
+      private_comment_hint: Комментарий к доменной блокировке для внутреннего использования модераторами.
       public_comment: Публичный комментарий
+      public_comment_hint: Комментарий к этой доменной блокировке для широкой публики, если включена публикация списка блокировок.
       reject_media: Запретить медиаконтент
       reject_media_hint: Удаляет локально хранимый медиаконтент и запрещает его загрузку в будущем. Не имеет значения в случае блокировки.
       reject_reports: Отклонять жалобы
@@ -320,16 +336,17 @@ ru:
         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 успешно создана
@@ -341,16 +358,16 @@ ru:
         title: Новая доменная блокировка еmail
       title: Доменная блокировка email
     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: Ограниченные
@@ -372,7 +389,7 @@ ru:
         title: Фильтр
       title: Приглашения
     pending_accounts:
-      title: Ожидающие аккаунты (%{count})
+      title: Ожидающие учетные записи (%{count})
     relays:
       add_new: Добавить ретранслятор
       delete: Удалить
@@ -386,6 +403,7 @@ ru:
       pending: Ожидание подтверждения ретранслятора
       save_and_enable: Сохранить и включить
       setup: Настроить соединение с ретранслятором
+      signatures_not_enabled: Ретрансляторы не будут работать правильно, пока включен безопасный режим или режим белого списка
       status: Состояние
       title: Ретрансляторы
     report_notes:
@@ -412,7 +430,7 @@ ru:
         placeholder: Опишите, какие действия были приняты, или любые другие подробности…
       reopen: Переоткрыть жалобу
       report: 'Жалоба #%{id}'
-      reported_account: Аккаунт нарушителя
+      reported_account: Учётная запись нарушителя
       reported_by: Отправитель жалобы
       resolved: Разрешенные
       resolved_msg: Жалоба успешно обработана!
@@ -426,7 +444,7 @@ ru:
         desc_html: Подсчёт количества локальных статусов, активных пользователей и новых регистраций на еженедельной основе
         title: Публикация агрегированной статистики активности пользователей
       bootstrap_timeline_accounts:
-        desc_html: Разделяйте имена пользователей запятыми. Сработает только для локальных незакрытых аккаунтов. По умолчанию включены все локальные администраторы.
+        desc_html: Разделяйте имена пользователей запятыми. Сработает только для локальных незакрытых учётных записей. По умолчанию включены все локальные администраторы.
         title: Подписки по умолчанию для новых пользователей
       contact_information:
         email: Введите публичный e-mail
@@ -435,12 +453,15 @@ ru:
         desc_html: Измените внешний вид с CSS, загружаемым на каждой странице
         title: Особый CSS
       default_noindex:
+        desc_html: Влияет на всех пользователей, которые не изменили эти настройки сами
         title: Исключить пользователей из индексации поисковиками по умолчанию
       domain_blocks:
         all: Всем
         disabled: Никому
         title: Доменные блокировки
         users: Залогиненным локальным пользователям
+      domain_blocks_rationale:
+        title: Показать обоснование
       hero:
         desc_html: Отображается на главной странице. Рекомендуется разрешение не менее 600х100px. Если не установлено, используется изображение узла
         title: Баннер узла
@@ -461,8 +482,8 @@ ru:
           desc_html: Отображается на титульной странице, когда закрыта регистрация<br>Можно использовать HTML-теги
           title: Сообщение о закрытой регистрации
         deletion:
-          desc_html: Позволяет всем удалять собственные аккаунты
-          title: Разрешить удаление аккаунтов
+          desc_html: Позволяет всем удалять собственные учётные записи
+          title: Разрешить удаление учётных записей
         min_invite_role:
           disabled: Никого
           title: Разрешать приглашения от
@@ -492,6 +513,7 @@ ru:
         title: Условия использования
       site_title: Название сайта
       spam_check_enabled:
+        desc_html: Мастодон может автоматически сообщать об учётных записях, отправляющих повторяющиеся нежелательные сообщения. Возможны ложные срабатывания.
         title: Анти-спам
       thumbnail:
         desc_html: Используется для предпросмотра с помощью OpenGraph и API. Рекомендуется разрешение 1200x630px
@@ -500,10 +522,14 @@ 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
@@ -514,15 +540,26 @@ ru:
         title: Медиаконтент
       no_media: Без медиаконтента
       no_status_selected: Не выбран ни один статус, ничего не изменено
-      title: Статусы аккаунта
+      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,17 +569,29 @@ 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})
+    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: Чувствительное содержимое
+    toot_layout: Структура постов
   application_mailer:
     notification_preferences: Изменить настройки e-mail
     salutation: "%{name},"
@@ -562,15 +611,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,13 +635,20 @@ 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: 'Ура! Теперь Вы подписаны на:'
@@ -597,6 +658,8 @@ ru:
       web: Перейти к WWW
     title: Подписаться на %{acct}
   challenge:
+    confirm: Продолжить
+    hint_html: "<strong>Подсказка</strong>: мы не будем спрашивать пароль повторно в течение часа."
     invalid_password: Неверный пароль
     prompt: Введите пароль для продолжения
   datetime:
@@ -617,14 +680,17 @@ ru:
     challenge_not_passed: Введённая вами информация некорректна
     confirm_password: Введите текущий пароль для подтверждения Вашей личности
     confirm_username: Введите свой юзернейм для подтверждения
-    proceed: Удалить аккаунт
-    success_msg: Ваш аккаунт был успешно удален
+    proceed: Удалить учётную запись
+    success_msg: Ваша учётная запись была успешно удалена
     warning:
       before: 'Внимательно прочитайте следующую информацию перед началом:'
       caches: Содержимое, которое было закэшировано другими серверами, может сохраниться
       data_removal: Ваши записи и прочие данные будут безвозвратно удалены
-      email_change_html: <a href="%{path}">Поменять свой e-mail</a> можно не удаляя аккаунт
-      irreversible: Вы не сможете восстановить или повторно активировать свой аккаунт
+      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:
@@ -637,7 +703,7 @@ ru:
     '400': Ваш запрос был недействительным или неправильным.
     '403': У Вас нет доступа к просмотру этой страницы.
     '404': Страница, которую Вы искали, не существует.
-    '406': This page is not available in the requested format.
+    '406': Эта страница недоступна в запрошенном формате.
     '410': Страница, которую Вы искали, больше не существует.
     '422':
       content: Проверка безопасности не удалась. Возможно, Вы блокируете cookies?
@@ -670,6 +736,7 @@ ru:
     add_new: Добавить
     errors:
       limit: Вы уже добавили максимальное число хэштегов
+    hint_html: "<strong>Что такое хэштеги?</strong> Они видны в вашем публичном профиле и позволяют людям просматривать публичные записи под этими хэштегами. Они являются отличным инструментом для отслеживания творчества или долгосрочных проектов."
   filters:
     contexts:
       home: Домашняя лента
@@ -695,6 +762,7 @@ ru:
     all: Все
     changes_saved_msg: Изменения успешно сохранены!
     copy: Копировать
+    no_batch_actions_available: На этой странице нет запланированных действий
     order_by: Сортировать по
     save_changes: Сохранить изменения
     validation_errors:
@@ -728,7 +796,7 @@ ru:
       merge_long: Сохранить имеющиеся данные и добавить новые
       overwrite: Перезаписать
       overwrite_long: Перезаписать имеющиеся данные новыми
-    preface: Вы можете загрузить некоторые данные, например, списки людей, на которых Вы подписаны или которых блокируете, в Ваш аккаунт на этом узле из файлов, экспортированных с другого узла.
+    preface: Вы можете загрузить некоторые данные, например, списки людей, на которых Вы подписаны или которых блокируете, в Вашу учётную запись на этом узле из файлов, экспортированных с другого узла.
     success: Ваши данные были успешно загружены и будут обработаны с должной скоростью
     types:
       blocking: Список блокировки
@@ -769,28 +837,35 @@ ru:
       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}.
     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:
@@ -806,7 +881,7 @@ ru:
       subject:
         few: "%{count} новых уведомления с вашего последнего захода \U0001F418"
         many: "%{count} новых уведомлений с вашего последнего захода \U0001F418"
-        one: "1 новое уведомление с вашего последнего захода \U0001F418"
+        one: "%{count} новое уведомление с вашего последнего захода \U0001F418"
         other: "%{count} новых уведомлений с вашего последнего захода \U0001F418"
       title: В ваше отсутствие…
     favourite:
@@ -862,7 +937,7 @@ ru:
     posting_defaults: Настройки отправки по умолчанию
     public_timelines: Публичные ленты
   relationships:
-    activity: Активность аккаунта
+    activity: Активность учётной записи
     dormant: Заброшенные
     last_active: Недавно активные
     most_recent: Новые
@@ -873,14 +948,14 @@ ru:
     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: Отметить как "нравится"
@@ -918,7 +993,7 @@ ru:
       weibo: Weibo
     current_session: Текущая сессия
     description: "%{browser} на %{platform}"
-    explanation: Это веб-браузеры, в которых на данный момент выполнен вход в Ваш аккаунт Mastodon.
+    explanation: Это веб-браузеры, в которых на данный момент выполнен вход в Вашу учётную запись Mastodon.
     ip: IP
     platforms:
       adobe_air: Adobe Air
@@ -939,11 +1014,11 @@ ru:
   settings:
     account: Учётная запись
     account_settings: Настройки учётной записи
-    aliases: Псевдонимы аккаунта
+    aliases: Псевдонимы учётной записи
     appearance: Внешний вид
     authorized_apps: Авторизованные приложения
     back: Назад в Mastodon
-    delete: Удаление аккаунта
+    delete: Удаление учётной записи
     development: Разработка
     edit_profile: Изменить профиль
     export: Экспорт данных
@@ -951,12 +1026,14 @@ ru:
     identity_proofs: Подтверждения личности
     import: Импорт
     import_and_export: Импорт и экспорт
-    migrate: Перенос аккаунта
+    migrate: Миграция учётной записи
     notifications: Уведомления
     preferences: Настройки
     profile: Профиль
     relationships: Подписки и подписчики
     two_factor_authentication: Двухфакторная аутентификация
+  spam_check:
+    spam_detected: Это автоматический отчет. Обнаружен спам.
   statuses:
     attached:
       description: 'Вложение: %{attached}'
@@ -986,6 +1063,11 @@ ru:
       private: Нельзя закрепить непубличный статус
       reblog: Нельзя закрепить продвинутый статус
     poll:
+      total_people:
+        few: "%{count} человек"
+        many: "%{count} человек"
+        one: "%{count} человек"
+        other: "%{count} человек"
       total_votes:
         few: "%{count} голоса"
         many: "%{count} голосов"
@@ -1006,6 +1088,8 @@ ru:
     pinned: Закреплённый статус
     reblogged: продвинул(а)
     sensitive_content: Чувствительный контент
+  tags:
+    does_not_match_previous_name: не совпадает с предыдущим именем
   terms:
     body_html: |
       <h2>Privacy Policy</h2>
@@ -1102,38 +1186,39 @@ ru:
     enabled_success: Двухфакторная аутентификация успешно включена
     generate_recovery_codes: Сгенерировать коды восстановления
     instructions_html: "<strong>Отсканируйте этот QR-код с помощью Google Authenticator или другого подобного приложения на Вашем телефоне</strong>. С этого момента приложение будет генерировать токены, которые будет необходимо ввести для входа."
-    lost_recovery_codes: Коды восстановления позволяют вернуть доступ к аккаунту в случае утери телефона. Если Вы потеряли Ваши коды восстановления, вы можете заново сгенерировать их здесь. Ваши старые коды восстановления будут аннулированы.
+    lost_recovery_codes: Коды восстановления позволяют вернуть доступ к учётной записи в случае утери телефона. Если Вы потеряли Ваши коды восстановления, вы можете заново сгенерировать их здесь. Ваши старые коды восстановления будут аннулированы.
     manual_instructions: 'Если Вы не можете отсканировать QR-код и хотите ввести его вручную, секрет представлен здесь открытым текстом:'
     recovery_codes: Коды восстановления
     recovery_codes_regenerated: Коды восстановления успешно сгенерированы
-    recovery_instructions_html: В случае утери доступа к Вашему телефону Вы можете использовать один из кодов восстановления, указанных ниже, чтобы вернуть доступ к аккаунту. Держите коды восстановления в безопасности, например, распечатав их и храня с другими важными документами.
+    recovery_instructions_html: В случае утери доступа к Вашему телефону Вы можете использовать один из кодов восстановления, указанных ниже, чтобы вернуть доступ к учётной записи. Держите коды восстановления в безопасности, например, распечатав их и храня с другими важными документами.
     setup: Настроить
     wrong_code: Введенный код неверен! Правильно ли установлены серверное время и время устройства?
   user_mailer:
     backup_ready:
-      explanation: Вы запросили полный архив вашего аккаунта Mastodon. Он готов к загрузке!
+      explanation: Вы запросили полный архив вашей учётной записи Mastodon. Он готов к загрузке!
       subject: Ваш архив готов к загрузке
       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: 'Начните постить! Ваши публичные посты могут видеть другие, например, в локальной ленте или по хэштегам, даже если у вас нет подписчиков. Вы также можете поздороваться с остальными и представиться, используя хэштег #приветствие.'
diff --git a/config/locales/simple_form.ar.yml b/config/locales/simple_form.ar.yml
index d1b85d921..65e6a8590 100644
--- a/config/locales/simple_form.ar.yml
+++ b/config/locales/simple_form.ar.yml
@@ -59,6 +59,7 @@ ar:
       account_warning_preset:
         text: نموذج نصي
       admin_account_action:
+        include_statuses: أدرج التبويقات التي تم الإبلاغ عنها ضمن الرسالة الإلكترونية
         send_email_notification: إشعار المستخدِم عبر البريد الإلكتروني
         text: تحذير مخصص
         type: الإجراء
diff --git a/config/locales/simple_form.bn.yml b/config/locales/simple_form.bn.yml
index 152c69829..607e6bd8e 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 517c7e3b0..80703950b 100644
--- a/config/locales/simple_form.ca.yml
+++ b/config/locales/simple_form.ca.yml
@@ -113,6 +113,7 @@ 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
diff --git a/config/locales/simple_form.co.yml b/config/locales/simple_form.co.yml
index 245bcea08..7ffc8fe3d 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 047d59c69..7a14a78b0 100644
--- a/config/locales/simple_form.cs.yml
+++ b/config/locales/simple_form.cs.yml
@@ -113,6 +113,7 @@ cs:
         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_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á
diff --git a/config/locales/simple_form.cy.yml b/config/locales/simple_form.cy.yml
index 9b06bf473..6a3e74d59 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 48a0a6883..738d4070b 100644
--- a/config/locales/simple_form.da.yml
+++ b/config/locales/simple_form.da.yml
@@ -53,6 +53,7 @@ da:
         confirm_password: Bekræft adgangskode
         context: Filtrer sammenhænge
         current_password: Nuværende adgangskode
+        data: Data
         display_name: Visningsnavn
         email: E-mail adresse
         expires_in: Udløber efter
@@ -84,6 +85,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,6 +93,8 @@ 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
@@ -107,6 +111,7 @@ da:
         report: Send email når en ny anmeldelse bliver indsendt
       tag:
         name: Hashtag
+        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 1b7667c84..ed30b32d3 100644
--- a/config/locales/simple_form.de.yml
+++ b/config/locales/simple_form.de.yml
@@ -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 cbce97171..32bb1530c 100644
--- a/config/locales/simple_form.el.yml
+++ b/config/locales/simple_form.el.yml
@@ -113,6 +113,7 @@ el:
         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.eo.yml b/config/locales/simple_form.eo.yml
index 8c2a087c5..c8239b230 100644
--- a/config/locales/simple_form.eo.yml
+++ b/config/locales/simple_form.eo.yml
@@ -50,6 +50,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:
diff --git a/config/locales/simple_form.es-AR.yml b/config/locales/simple_form.es-AR.yml
index 515d5c1ed..c62ded28b 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 2fb33dbc3..837ca8101 100644
--- a/config/locales/simple_form.es.yml
+++ b/config/locales/simple_form.es.yml
@@ -113,6 +113,7 @@ es:
         setting_aggregate_reblogs: Agrupar retoots en las líneas de tiempo
         setting_auto_play_gif: Reproducir automáticamente los GIFs animados
         setting_boost_modal: Mostrar ventana de confirmación antes de un Retoot
+        setting_crop_images: Recortar a 16x9 las imágenes de los toots no expandidos
         setting_default_language: Idioma de publicación
         setting_default_privacy: Privacidad de publicaciones
         setting_default_sensitive: Marcar siempre imágenes como sensibles
diff --git a/config/locales/simple_form.et.yml b/config/locales/simple_form.et.yml
index c52818a35..0b8c2c22b 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 471577d79..1f34adb05 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 70ad0c66a..2cfbad182 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 2bb56b40e..3cc3e7344 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 cff0db719..6beee0076 100644
--- a/config/locales/simple_form.fr.yml
+++ b/config/locales/simple_form.fr.yml
@@ -113,6 +113,7 @@ fr:
         setting_aggregate_reblogs: Repartagés en groupe dans la ligne de temps
         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
@@ -161,7 +162,7 @@ fr:
         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 61308bf48..19c0c7002 100644
--- a/config/locales/simple_form.gl.yml
+++ b/config/locales/simple_form.gl.yml
@@ -26,7 +26,7 @@ gl:
         email: Enviaráselle un correo-e 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
@@ -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:
@@ -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
@@ -146,7 +147,7 @@ gl:
       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 000000000..d758a5b53
--- /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 de1830f5d..91ecd8746 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.it.yml b/config/locales/simple_form.it.yml
index 21c86da9e..3a0e1d265 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 eeb1eee51..fea6e04d7 100644
--- a/config/locales/simple_form.ja.yml
+++ b/config/locales/simple_form.ja.yml
@@ -113,6 +113,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: メディアを常に閲覧注意としてマークする
diff --git a/config/locales/simple_form.kk.yml b/config/locales/simple_form.kk.yml
index 1dcc9b127..544c684a6 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 000000000..d094088d8
--- /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 28af44cbb..aadec0cac 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 000000000..0439b2053
--- /dev/null
+++ b/config/locales/simple_form.ml.yml
@@ -0,0 +1,8 @@
+---
+ml:
+  simple_form:
+    hints:
+      admin_account_action:
+        type_html: "<strong>%{acct}</strong> നെ എന്ത് ചെയ്യണമെന്ന് തീരുമാനിക്കുക"
+      defaults:
+        password: 8 അക്ഷരങ്ങൾ എങ്കിലും ഉപയോഗിക്കുക
diff --git a/config/locales/simple_form.mr.yml b/config/locales/simple_form.mr.yml
new file mode 100644
index 000000000..fe1639c6a
--- /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 77445b0cb..5c417c84e 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
diff --git a/config/locales/simple_form.oc.yml b/config/locales/simple_form.oc.yml
index 59651d9de..e692d2d64 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 3f3f78180..9b96e1b94 100644
--- a/config/locales/simple_form.pt-BR.yml
+++ b/config/locales/simple_form.pt-BR.yml
@@ -22,6 +22,7 @@ pt-BR:
         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
+        discoverable: O diretório de perfis é outra maneira de sua conta alcançar um público mais vasto
         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
@@ -44,6 +45,8 @@ pt-BR:
         setting_use_pending_items: Ocultar atualizações de linha de tempo atrás de um clique ao invés de rolar automaticamente o feed
         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
+      domain_allow:
+        domain: Este domínio será capaz de 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:
@@ -54,6 +57,8 @@ pt-BR:
         text: Isso vai nos ajudar a revisar sua aplicação
       sessions:
         otp: 'Insira o código de autenticação gerado pelo app 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
     labels:
@@ -100,9 +105,11 @@ pt-BR:
         otp_attempt: Código de autenticação em dois passos
         password: Senha
         phrase: Palavra-chave ou frase
+        setting_advanced_layout: Ativar interface web avançada
         setting_aggregate_reblogs: Agrupar compartilhamentos nas timelines
         setting_auto_play_gif: Reproduzir GIFs automaticamente
         setting_boost_modal: Mostrar diálogo de confirmação antes de compartilhar postagem
+        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
@@ -118,7 +125,10 @@ pt-BR:
         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_theme: Tema do site
+        setting_trends: Mostrar tendências de hoje
         setting_unfollow_modal: Mostrar diálogo de 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 usuário
diff --git a/config/locales/simple_form.ru.yml b/config/locales/simple_form.ru.yml
index ab5eb855e..b4951dc74 100644
--- a/config/locales/simple_form.ru.yml
+++ b/config/locales/simple_form.ru.yml
@@ -2,9 +2,14 @@
 ru:
   simple_form:
     hints:
+      account_alias:
+        acct: Укажите имя пользователя@домен учетной записи, с которой вы хотите мигрировать
+      account_migration:
+        acct: Укажите имя пользователя@домен учетной записи, на которую вы хотите мигрировать
       account_warning_preset:
         text: Вы можете использовать всё, что в обычных постах — ссылки, хэштеги, упоминания и т.д.
       admin_account_action:
+        include_statuses: Пользователь будет видеть к каким постами применялись модераторские действия и выносились предупреждения
         send_email_notification: Пользователь получит сообщение о том, что случилось с его/её аккаунтом
         text_html: (Необязательно) Можно использовать обычный синтаксис. Для экономии времени <a href="%{path}">добавьте шаблоны предупреждений</a>
         type_html: Выберите, что делать с аккаунтом <strong>%{acct}</strong>
@@ -14,7 +19,10 @@ ru:
         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
@@ -41,6 +49,8 @@ ru:
         domain: Этот домен сможет получать данные с этого сервера и его входящие данные будут обрабатываться и сохранены
       featured_tag:
         name: 'Возможно, вы захотите выбрать из них:'
+      form_challenge:
+        current_password: Вы входите в зону безопасности
       imports:
         data: Файл CSV, экспортированный с другого узла Mastodon
       invite_request:
@@ -56,9 +66,14 @@ ru:
         fields:
           name: Пункт
           value: Значение
+      account_alias:
+        acct: Обработчик старой учётной записи
+      account_migration:
+        acct: Обработчик новой учётной записи
       account_warning_preset:
         text: Текст шаблона
       admin_account_action:
+        include_statuses: Включать в письмо жалобы на посты
         send_email_notification: Уведомить юзера по e-mail
         text: Свой текст предупреждения
         type: Действие
@@ -98,6 +113,7 @@ ru:
         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: Всегда отмечать медиаконтент как чувствительный
@@ -128,6 +144,8 @@ ru:
         must_be_follower: Заблокировать уведомления не от подписчиков
         must_be_following: Заблокировать уведомления от людей, на которых вы не подписаны
         must_be_following_dm: Заблокировать личные сообщения от людей, на которых вы не подписаны
+      invite:
+        comment: Комментарий
       invite_request:
         text: Почему вы хотите присоединиться к нам?
       notification_emails:
@@ -142,6 +160,7 @@ ru:
         trending_tag: Отправлять e-mail при непроверенных хэштегах в трендах
       tag:
         listable: Разрешить показ хэштега в поиске или в каталоге профилей
+        name: Хэштег
         trendable: Разрешить показ хэштега в трендах
         usable: Разрешить использовать этот хэштег в постах
     'no': Нет
diff --git a/config/locales/simple_form.sk.yml b/config/locales/simple_form.sk.yml
index b908c0196..3d5402b88 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,6 +19,8 @@ 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č
         email: Bude ti odoslaný potvrdzujúci email
         fields: Až štyri položky môžeš mať na svojom profile zobrazené vo forme tabuľky
@@ -34,6 +40,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,6 +48,8 @@ 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:
@@ -54,6 +63,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 +110,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 +140,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 56bdcf768..d310bab34 100644
--- a/config/locales/simple_form.sv.yml
+++ b/config/locales/simple_form.sv.yml
@@ -26,8 +26,14 @@ sv:
         locale: Användargränssnittets språk, e-post 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:
@@ -58,17 +64,22 @@ sv:
         note: Biografi
         otp_attempt: Tvåstegslösenord
         password: Lösenord
+        phrase: Nyckelord eller fras
         setting_auto_play_gif: Auto-play animerade GIF-filer
         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
@@ -78,6 +89,10 @@ sv:
         must_be_follower: Blockera meddelanden från icke-följare
         must_be_following: Blockera meddelanden 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 +101,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 4320953ce..edf731690 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 500ff7f76..ba353c713 100644
--- a/config/locales/simple_form.th.yml
+++ b/config/locales/simple_form.th.yml
@@ -35,7 +35,7 @@ th:
         setting_show_application: จะแสดงแอปพลิเคชันที่คุณใช้เพื่อโพสต์ในมุมมองโดยละเอียดของโพสต์ของคุณ
         setting_use_blurhash: การไล่ระดับสีอิงตามสีของภาพที่ซ่อนอยู่แต่ทำให้รายละเอียดใด ๆ คลุมเครือ
         setting_use_pending_items: ซ่อนการอัปเดตเส้นเวลาไว้หลังการคลิกแทนที่จะเลื่อนฟีดโดยอัตโนมัติ
-        username: ชื่อผู้ใช้ของคุณจะไม่ซ้ำกันบน %{domain}
+        username: ชื่อผู้ใช้ของคุณจะไม่ซ้ำกันใน %{domain}
         whole_word: เมื่อคำสำคัญหรือวลีมีแค่ตัวอักษรและตัวเลข จะถูกใช้หากตรงกันทั้งคำเท่านั้น
       featured_tag:
         name: 'คุณอาจต้องการใช้หนึ่งในนี้:'
diff --git a/config/locales/simple_form.tr.yml b/config/locales/simple_form.tr.yml
index 663fce5e0..4d022368a 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 a6ae14f6d..272d2fe43 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 000000000..2cace5883
--- /dev/null
+++ b/config/locales/simple_form.ur.yml
@@ -0,0 +1 @@
+ur:
diff --git a/config/locales/simple_form.zh-CN.yml b/config/locales/simple_form.zh-CN.yml
index 9bff15d1d..ec5486257 100644
--- a/config/locales/simple_form.zh-CN.yml
+++ b/config/locales/simple_form.zh-CN.yml
@@ -93,6 +93,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,6 +109,7 @@ zh-CN:
         setting_show_application: 展示你用来发嘟的应用
         setting_system_font_ui: 使用系统默认字体
         setting_theme: 站点主题
+        setting_trends: 显示今日热门
         setting_unfollow_modal: 在取消关注前询问我
         setting_use_blurhash: 将隐藏媒体显示为彩色渐变
         severity: 级别
@@ -121,19 +123,25 @@ 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: 在有账户需要审核时,发送电子邮件提醒我
         reblog: 当有用户转嘟了我的嘟文时,发送电子邮件提醒我
         report: 在提交新举报时,发送电子邮件提醒我
+        trending_tag: 当未经审核的话题当前热门时邮件提醒
       tag:
         listable: 允许这个话题标签在用户目录中显示
+        name: 话题标签
+        trendable: 允许在热门下显示此话题
+        usable: 允许嘟文使用此话题
     'no': 否
     recommended: 推荐
     required:
diff --git a/config/locales/sk.yml b/config/locales/sk.yml
index 4975035fe..5dc2113fd 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ý
@@ -179,6 +180,7 @@ sk:
         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
@@ -212,7 +214,7 @@ sk:
         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}"
@@ -314,6 +316,7 @@ sk:
           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:
@@ -511,6 +515,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 +572,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
@@ -573,6 +582,7 @@ sk:
     confirmation_dialogs: Potvrdzovacie dialógy
     discovery: Nájdenie
     sensitive_content: Chúlostivý obsah
+    toot_layout: Rozloženie príspevkov
   application_mailer:
     notification_preferences: Zmeň emailové voľby
     salutation: "%{name},"
@@ -637,6 +647,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 +665,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 +674,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á
@@ -812,15 +828,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 +849,11 @@ 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:'
+      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:
@@ -952,6 +977,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 +993,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 +1026,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 +1090,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 +1114,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/sv.yml b/config/locales/sv.yml
index c980b7d05..0068f59f4 100644
--- a/config/locales/sv.yml
+++ b/config/locales/sv.yml
@@ -4,22 +4,53 @@ 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
+    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
     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,6 +58,8 @@ 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
@@ -77,7 +110,11 @@ sv:
       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,15 +124,20 @@ 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
@@ -103,7 +145,10 @@ sv:
       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,33 +159,44 @@ 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}"
@@ -162,20 +218,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,10 +246,29 @@ 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
     domain_blocks:
       add_new: Lägg till ny
       created_msg: Domänblocket behandlas nu
diff --git a/config/locales/ta.yml b/config/locales/ta.yml
index 75bb81fad..48252a5bb 100644
--- a/config/locales/ta.yml
+++ b/config/locales/ta.yml
@@ -1,5 +1,44 @@
 ---
 ta:
+  about:
+    about_this: தகவல்
+    administered_by: 'நிர்வாகம்:'
+    api: செயலிக்கான மென்பொருள் இடைமுகம் API
+    apps: கைப்பேசி செயலிகள்
+    contact: தொடர்புக்கு
+    get_apps: கைப்பேசி செயலியை முயற்சி செய்யவும்
+    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}-இன் தேர்வுகள்:"
+    follow: பின்தொடர்
+    followers:
+      one: பின்தொடர்பவர்
+      other: பின்தொடர்பவர்கள்
+    following: பின்தொடரும்
+    joined: "%{date} அன்று இனைந்தார்"
+    last_active: கடைசியாக பார்த்தது
+    media: படங்கள்
+    never_active: எப்போதுமில்லை
+    nothing_here: இங்கு எதுவும் இல்லை!
   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/th.yml b/config/locales/th.yml
index 5a56bcd35..a63bbe917 100644
--- a/config/locales/th.yml
+++ b/config/locales/th.yml
@@ -2,13 +2,13 @@
 th:
   about:
     about_hashtag_html: มีการแท็กโพสต์สาธารณะเหล่านี้ด้วย <strong>#%{hashtag}</strong> คุณสามารถโต้ตอบกับโพสต์หากคุณมีบัญชีที่ใดก็ตามในเฟดิเวิร์ส
-    about_mastodon_html: Mastodon เป็นเครือข่ายสังคมที่ทำงานบนโปรโตคอลเว็บแบบเปิดและซอฟต์แวร์เสรีที่เปิดต้นฉบับ กระจายศูนย์เหมือนอีเมล
+    about_mastodon_html: 'เครือข่ายสังคมแห่งอนาคต: ไม่มีโฆษณา, ไม่มีการสอดแนมโดยองค์กร, การออกแบบตามหลักจริยธรรม และการกระจายศูนย์! เป็นเจ้าของข้อมูลของคุณด้วย Mastodon!'
     about_this: เกี่ยวกับ
     active_count_after: ที่ใช้งาน
     active_footnote: ผู้ใช้งานรายเดือน (MAU)
     administered_by: 'ดูแลโดย:'
     api: API
-    apps: แอปสำหรับมือถือ
+    apps: แอปมือถือ
     apps_platforms: ใช้ Mastodon จาก iOS, Android และแพลตฟอร์มอื่น ๆ
     browse_directory: เรียกดูไดเรกทอรีโปรไฟล์และกรองตามความสนใจ
     browse_public_posts: เรียกดูสตรีมสดของโพสต์สาธารณะใน Mastodon
@@ -18,7 +18,7 @@ th:
     discover_users: ค้นพบผู้ใช้
     documentation: เอกสารประกอบ
     federation_hint_html: ด้วยบัญชีที่ %{instance} คุณจะสามารถติดตามผู้คนในเซิร์ฟเวอร์ Mastodon และอื่น ๆ
-    get_apps: ลองแอปสำหรับมือถือ
+    get_apps: ลองแอปมือถือ
     hosted_on: Mastodon ที่โฮสต์ที่ %{domain}
     learn_more: เรียนรู้เพิ่มเติม
     privacy_policy: นโยบายความเป็นส่วนตัว
@@ -56,6 +56,7 @@ th:
       other: โพสต์
     posts_tab_heading: โพสต์
     posts_with_replies: โพสต์และการตอบกลับ
+    reserved_username: ชื่อผู้ใช้นี้ถูกสงวนไว้
     roles:
       admin: ผู้ดูแล
       bot: บอต
@@ -64,6 +65,7 @@ th:
     unfollow: เลิกติดตาม
   admin:
     account_moderation_notes:
+      create: เขียนข้อความอธิบาย
       created_msg: สร้างหมายเหตุการควบคุมสำเร็จ!
       delete: ลบ
       destroyed_msg: ทำลายหมายเหตุการควบคุมสำเร็จ!
@@ -112,7 +114,9 @@ th:
       login_status: สถานะการเข้าสู่ระบบ
       media_attachments: ไฟล์แนบสื่อ
       moderation:
+        active: ใช้งานอยู่
         all: ทั้งหมด
+        pending: รอการยืนยัน
         silenced: เงียบอยู่
         suspended: ระงับอยู่
         title: การควบคุม
@@ -123,6 +127,7 @@ th:
       outbox_url: URL กล่องขาออก
       perform_full_suspension: ระงับ
       profile_url: URL โปรไฟล์
+      promote: เลื่อนตำแหน่ง
       protocol: โปรโตคอล
       public: สาธารณะ
       push_subscription_expires: การบอกรับ PuSH หมดอายุเมื่อ
@@ -153,6 +158,7 @@ th:
       subscribe: บอกรับ
       suspended: ระงับอยู่
       title: บัญชี
+      unconfirmed_email: ยังไม่ได้ยืนยันอีเมล
       undo_silenced: เลิกทำการเงียบ
       undo_suspension: เลิกทำการระงับ
       unsubscribe: เลิกบอกรับ
@@ -169,12 +175,19 @@ th:
         destroy_domain_block: "%{name} ได้เลิกปิดกั้นโดเมน %{target}"
         destroy_status: "%{name} ได้เอาสถานะโดย %{target} ออก"
         disable_custom_emoji: "%{name} ได้ปิดใช้งานอีโมจิ %{target}"
+        disable_user: "%{name} ได้ปิดใช้งานการเข้าสู่ระบบสำหรับผู้ใช้ %{target}"
         enable_custom_emoji: "%{name} ได้เปิดใช้งานอีโมจิ %{target}"
+        enable_user: "%{name} ได้เปิดใช้งานการเข้าสู่ระบบสำหรับผู้ใช้ %{target}"
+        remove_avatar_user: "%{name} ได้เอาภาพประจำตัวของ %{target} ออก"
+        reopen_report: "%{name} ได้เปิดรายงาน %{target} ใหม่"
+        suspend_account: "%{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,21 +202,26 @@ 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: โหมดปลอดภัย
       config: การกำหนดค่า
       feature_deletions: การลบบัญชี
       feature_invites: ลิงก์เชิญ
       feature_profile_directory: ไดเรกทอรีโปรไฟล์
       feature_registrations: การลงทะเบียน
+      feature_spam_check: การป้องกันสแปม
       feature_timeline_preview: ตัวอย่างเส้นเวลา
       features: คุณลักษณะ
       open_reports: รายงานที่เปิด
@@ -262,6 +280,8 @@ th:
       title: ผู้ติดตามของ %{acct}
     instances:
       by_domain: โดเมน
+      known_accounts:
+        other: "%{count} บัญชีที่รู้จัก"
       moderation:
         all: ทั้งหมด
         limited: จำกัดอยู่
@@ -273,6 +293,8 @@ th:
     invites:
       deactivate_all: ปิดใช้งานทั้งหมด
       title: คำเชิญ
+    pending_accounts:
+      title: บัญชีที่รอดำเนินการ (%{count})
     relays:
       add_new: เพิ่มรีเลย์ใหม่
       delete: ลบ
@@ -293,6 +315,7 @@ th:
         report: รายงาน
       are_you_sure: คุณแน่ใจหรือไม่?
       assign_to_self: มอบหมายให้ฉัน
+      assigned: ผู้ควบคุมที่ได้รับมอบหมาย
       comment:
         none: ไม่มี
       created_at: รายงานเมื่อ
@@ -300,7 +323,10 @@ th:
       mark_as_unresolved: ทำเครื่องหมายว่ายังไม่ได้แก้ปัญหา
       notes:
         create: เพิ่มหมายเหตุ
+        create_and_resolve: แก้ปัญหาโดยมีหมายเหตุ
+        create_and_unresolve: เปิดใหม่โดยมีหมายเหตุ
         delete: ลบ
+      reopen: เปิดรายงานใหม่
       report: 'รายงาน #%{id}'
       reported_account: บัญชีที่ได้รับการรายงาน
       reported_by: รายงานโดย
@@ -322,6 +348,7 @@ th:
       domain_blocks:
         title: แสดงการปิดกั้นโดเมน
       profile_directory:
+        desc_html: อนุญาตให้ผู้ใช้สามารถค้นพบได้
         title: เปิดใช้งานไดเรกทอรีโปรไฟล์
       registrations:
         closed_message:
@@ -373,6 +400,9 @@ th:
       context: บริบท
       directory: ในไดเรกทอรี
       in_directory: "%{count} ในไดเรกทอรี"
+      last_active: ใช้งานล่าสุด
+      most_popular: ยอดนิยม
+      most_recent: ล่าสุด
       name: แฮชแท็ก
       title: แฮชแท็ก
       trending_right_now: กำลังนิยม
@@ -383,12 +413,16 @@ th:
       edit: แก้ไข
       edit_preset: แก้ไขคำเตือนที่ตั้งไว้ล่วงหน้า
       title: จัดการคำเตือนที่ตั้งไว้ล่วงหน้า
+  aliases:
+    add_new: สร้างนามแฝง
+    remove: เลิกเชื่อมโยงนามแฝง
   appearance:
     advanced_web_interface: ส่วนติดต่อเว็บขั้นสูง
     animations_and_accessibility: ภาพเคลื่อนไหวและการช่วยการเข้าถึง
     confirmation_dialogs: กล่องโต้ตอบการยืนยัน
     discovery: ค้นพบ
     sensitive_content: เนื้อหาที่ละเอียดอ่อน
+    toot_layout: เค้าโครงโพสต์
   application_mailer:
     notification_preferences: เปลี่ยนการกำหนดลักษณะอีเมล
     settings: 'เปลี่ยนการกำหนดลักษณะอีเมล: %{link}'
@@ -399,12 +433,14 @@ 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: ลบบัญชี
+    didnt_get_confirmation: ไม่ได้รับคำแนะนำการยืนยัน?
     forgot_password: ลืมรหัสผ่านของคุณ?
     login: เข้าสู่ระบบ
     logout: ออกจากระบบ
@@ -414,7 +450,7 @@ th:
       cas: CAS
       saml: SAML
     register: ลงทะเบียน
-    resend_confirmation: ส่งขั้นตอนวิธีการยืนยันใหม่อีกครั้ง
+    resend_confirmation: ส่งคำแนะนำการยืนยันใหม่
     reset_password: ตั้งรหัสผ่านใหม่
     security: ความปลอดภัย
     set_new_password: ตั้งรหัสผ่านใหม่
@@ -507,6 +543,7 @@ th:
     all: ทั้งหมด
     changes_saved_msg: บันทึกการเปลี่ยนแปลงสำเร็จ!
     copy: คัดลอก
+    order_by: เรียงลำดับตาม
     save_changes: บันทึกการเปลี่ยนแปลง
   identity_proofs:
     authorize: ใช่ อนุญาต
@@ -517,6 +554,7 @@ th:
     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: อัปโหลด
@@ -545,6 +583,9 @@ th:
   migrations:
     acct: username@domain ของบัญชีใหม่
     cancel: ยกเลิกการเปลี่ยนเส้นทาง
+    errors:
+      move_to_self: ไม่สามารถเป็นบัญชีปัจจุบัน
+      not_found: ไม่พบ
     proceed_with_move: ย้ายผู้ติดตาม
     redirecting_to: บัญชีของคุณกำลังเปลี่ยนเส้นทางไปยัง %{acct}
     set_redirect: ตั้งการเปลี่ยนเส้นทาง
@@ -587,6 +628,7 @@ th:
     truncate: "&hellip;"
   polls:
     errors:
+      already_voted: คุณได้ลงคะแนนในโพลนี้อยู่แล้ว
       duplicate_options: มีรายการที่ซ้ำกัน
   preferences:
     other: อื่น ๆ
@@ -595,6 +637,10 @@ th:
   relationships:
     activity: กิจกรรมบัญชี
     last_active: ใช้งานล่าสุด
+    most_recent: ล่าสุด
+    moved: ย้ายแล้ว
+    mutual: ร่วมกัน
+    primary: หลัก
     relationship: ความสัมพันธ์
     remove_selected_domains: เอาผู้ติดตามทั้งหมดออกจากโดเมนที่เลือก
     remove_selected_followers: เอาผู้ติดตามที่เลือกออก
@@ -625,6 +671,7 @@ th:
       edge: Microsoft Edge
       electron: Electron
       firefox: Firefox
+      generic: เบราว์เซอร์ที่ไม่รู้จัก
       ie: Internet Explorer
       micro_messenger: MicroMessenger
       nokia: Nokia S40 Ovi Browser
@@ -646,6 +693,7 @@ th:
       ios: iOS
       linux: Linux
       mac: Mac
+      other: แพลตฟอร์มที่ไม่รู้จัก
       windows: Windows
       windows_mobile: Windows Mobile
       windows_phone: Windows Phone
@@ -665,6 +713,7 @@ th:
     featured_tags: แฮชแท็กที่แนะนำ
     import: การนำเข้า
     import_and_export: การนำเข้าและการส่งออก
+    migrate: การโยกย้ายบัญชี
     notifications: การแจ้งเตือน
     preferences: การกำหนดลักษณะ
     profile: โปรไฟล์
@@ -683,6 +732,8 @@ th:
     pin_errors:
       reblog: ไม่สามารถปักหมุดการดัน
     poll:
+      total_people:
+        other: "%{count} คน"
       total_votes:
         other: "%{count} การลงคะแนน"
       vote: ลงคะแนน
diff --git a/config/locales/tr.yml b/config/locales/tr.yml
index 7e53e7f2c..b2b1dd078 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ı
@@ -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
@@ -175,6 +176,7 @@ tr:
         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 +203,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ı"
@@ -377,11 +381,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
@@ -575,6 +579,7 @@ tr:
     confirmation_dialogs: Onay iletişim kutuları
     discovery: Keşfet
     sensitive_content: Hassas içerik
+    toot_layout: Toot yerleşimi
   application_mailer:
     notification_preferences: E-posta tercihlerini değiştir
     salutation: "%{name},"
@@ -704,7 +709,7 @@ 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
@@ -767,7 +772,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
@@ -934,16 +939,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 +1032,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 +1055,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 +1175,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 +1188,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 1d3459a0f..7d8d83e2d 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: Не зазначено
@@ -231,10 +232,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 +263,7 @@ uk:
       updated_msg: Емодзі успішно оновлене!
       upload: Вивантажити
     dashboard:
+      authorized_fetch_mode: Безпечний режим
       backlog: відкладені завдання
       config: Налаштування
       feature_deletions: Видалення облікових записів
@@ -530,6 +534,9 @@ uk:
       context: Контекст
       directory: У каталозі
       in_directory: "%{count} у каталозі"
+      last_active: За активністю
+      most_popular: За популярністю
+      most_recent: За часом створення
       name: Хештеґ
       review: Переглянути статус
       reviewed: Переглянуто
@@ -618,6 +625,7 @@ uk:
       confirming: Очікуємо на завершення підтвердження за допомогою електронної пошти.
       functional: Ваш обліковий запис повністю робочій.
       pending: Ваша заява очікує на розгляд нашим персоналом. Це може зайняти деякий час. Ви отримаєте електронний лист, якщо ваша заява буде схвалена.
+      redirecting_to: Ваш обліковий запис наразі неактивний, тому що він перенаправлений до %{acct}.
     trouble_logging_in: Проблема під час входу?
   authorize_follow:
     already_following: Ви вже слідкуєте за цим обліковим записом
@@ -630,6 +638,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 +658,9 @@ uk:
       x_months: "%{count}міс"
       x_seconds: "%{count}сек"
   deletes:
+    challenge_not_passed: Невірна інформація
     confirm_password: Введіть актуальний пароль, щоб перевірити що ви це ви
+    confirm_username: Введіть ваше ім'я користувача, щоб підтвердити процедуру
     proceed: Видалити обліковий запис
     success_msg: Ваш обліковий запис було успішно видалено
     warning:
@@ -799,6 +814,19 @@ uk:
   migrations:
     acct: username@domain нового облікового запису
     cancel: Скасувати перенаправлення
+    errors:
+      not_found: не знайдено
+    followers_count: Підписників на час міграції
+    incoming_migrations: Переїзд з іншого облікового запису
+    incoming_migrations_html: Щоб переїхати з іншого облікового запису на цей, ви маєте <a href="%{path}">створити псевдонім облікового запису</a>.
+    not_redirecting: Наразі ваш обліковий запис не перенаправлений до іншого облікового запису.
+    proceed_with_move: Перемістити підписників
+    redirecting_to: Ваш обліковий запис перенаправляється до %{acct}.
+    set_redirect: Встановити перенаправлення
+    warning:
+      backreference_required: Спочатку має бути налаштовано зворотне посилання поточного облікового запису на новий обліковий запис
+      before: 'Перш ніж продовжити, уважно прочитайте ці нотатки:'
+      cooldown: Після переїзду ви деякий час не можете переїжджати знову
   moderation:
     title: Модерація
   notification_mailer:
@@ -947,6 +975,7 @@ uk:
   settings:
     account: Обліковий запис
     account_settings: Налаштування облікового запису
+    aliases: Псевдоніми облікового запису
     appearance: Вигляд
     authorized_apps: Авторизовані застосунки
     back: Назад до Mastodon
@@ -964,6 +993,8 @@ uk:
     profile: Профіль
     relationships: Підписки та підписники
     two_factor_authentication: Двофакторна авторизація
+  spam_check:
+    spam_detected: Це автоматична скарга. Було виявлено спам.
   statuses:
     attached:
       description: 'Прикріплено: %{attached}'
@@ -993,6 +1024,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 000000000..114261859
--- /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/zh-CN.yml b/config/locales/zh-CN.yml
index 55685c82e..3af145c66 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,6 +11,7 @@ zh-CN:
     apps: 移动应用
     apps_platforms: 在 iOS、Android 和其他平台上使用 Mastodon
     browse_directory: 浏览用户目录并按兴趣筛选
+    browse_local_posts: 浏览此服务器上实时公开嘟文
     browse_public_posts: 浏览 Mastodon 上公共嘟文的实时信息流
     contact: 联系方式
     contact_missing: 未设定
@@ -30,12 +31,18 @@ zh-CN:
     status_count_before: 他们共嘟出了
     tagline: 关注并发现新朋友
     terms: 使用条款
+    unavailable_content: 不可用的内容
+    unavailable_content_description:
+      domain: 服务器
+      reason: 原因
+      rejecting_media: 来自这些服务器的媒体文件将不会被处理或存储,缩略图也不会显示,需要手动点击打开原始文件。
     user_count_after:
       other: 位用户
     user_count_before: 这里共注册有
     what_is_mastodon: Mastodon 是什么?
   accounts:
     choices_html: "%{name} 的推荐:"
+    featured_tags_hint: 您可以精选一些话题标签展示在这里。
     follow: 关注
     followers:
       other: 关注者
@@ -46,6 +53,7 @@ zh-CN:
     media: 媒体
     moved_html: "%{name} 已经迁移到 %{new_profile_link}:"
     network_hidden: 此信息不可用
+    never_active: 从未活跃
     nothing_here: 这里神马都没有!
     people_followed_by: "%{name} 关注的人"
     people_who_follow: 关注 %{name} 的人
@@ -157,6 +165,7 @@ zh-CN:
         user: 普通用户
       salmon_url: 三文鱼协议网址(Salmon URL)
       search: 搜索
+      search_same_ip: 具有相同IP的其他用户
       shared_inbox_url: 公用收件箱(Shared Inbox)URL
       show:
         created_reports: 这个帐户提交的举报
@@ -183,10 +192,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 +222,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 +247,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,6 +303,7 @@ zh-CN:
           suspend: 自动封禁
         title: 添加域名屏蔽
       private_comment: 私密评论
+      private_comment_hint: 版主只允许内部用户评论此域名
       public_comment: 公开评论
       reject_media: 拒绝接收媒体文件
       reject_media_hint: 删除本地已缓存的媒体文件,并且不再接收来自该域名的任何媒体文件。此选项不影响封禁
@@ -357,6 +377,7 @@ zh-CN:
       pending: 等待中继确认
       save_and_enable: 保存并启用
       setup: 设置中继连接
+      signatures_not_enabled: 安全模式或白名单模式启用时中继将不会正常工作
       status: 状态
       title: 中继
     report_notes:
@@ -405,6 +426,16 @@ zh-CN:
       custom_css:
         desc_html: 通过 CSS 代码调整所有页面的显示效果
         title: 自定义 CSS
+      default_noindex:
+        desc_html: 影响所有尚未更改此设置的用户
+        title: 默认将不会对用户建立索引
+      domain_blocks:
+        all: 对所有人
+        disabled: 不对任何人
+        title: 查看域名屏蔽
+        users: 本地已登录用户
+      domain_blocks_rationale:
+        title: 显示原理
       hero:
         desc_html: 用于在首页展示。推荐分辨率 600×100px 以上。未指定的情况下将默认使用本站缩略图
         title: 主题图片
@@ -465,7 +496,11 @@ zh-CN:
         desc_html: 在主页显示公共时间轴
         title: 时间轴预览
       title: 网站设置
+      trendable_by_default:
+        desc_html: 影响以前未禁止的话题标签
+        title: 允许在未审查的情况下将话题置为热门
       trends:
+        desc_html: 公开显示先前已审查的但当前热门的话题
         title: 热门标签
     statuses:
       back_to_account: 返回帐户信息页
@@ -484,12 +519,20 @@ zh-CN:
     tags:
       accounts_today: 今日活跃用户
       accounts_week: 本周活跃用户
+      breakdown: 按来源分类今天的使用情况
       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: 添加新条目
@@ -505,6 +548,12 @@ zh-CN:
       body: "%{reporter} 举报了用户 %{target}"
       body_remote: 来自 %{domain} 的用户举报了用户 %{target}
       subject: 来自 %{instance} 的用户举报(#%{id})
+    new_trending_tag:
+      body: '今日的热门话题 #%{name} 之前未审核。直到你允许之前这个话题将不会公开显示,或保持原样让它石沉大海。'
+      subject: 在 %{instance} 有话题 (#%{name}) 待审核
+  aliases:
+    add_new: 创建别名
+    remove: 取消关联别名
   appearance:
     advanced_web_interface: 高级 web 界面
     advanced_web_interface_hint: 如果你想使用整个屏幕宽度,高级 web 界面允许您配置多个不同的栏目,可以同时看到更多的信息:主页、通知、跨站时间轴、任意数量的列表和话题标签。
@@ -512,6 +561,7 @@ zh-CN:
     confirmation_dialogs: 确认对话框
     discovery: 发现
     sensitive_content: 敏感内容
+    toot_layout: 嘟文布局
   application_mailer:
     notification_preferences: 更改电子邮件首选项
     salutation: "%{name}:"
@@ -531,8 +581,12 @@ 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!
     didnt_get_confirmation: 没有收到确认邮件?
     forgot_password: 忘记密码?
     invalid_reset_password_token: 密码重置令牌无效或已过期。请重新发起重置密码请求。
@@ -567,6 +621,9 @@ zh-CN:
       return: 查看用户个人资料
       web: 返回本站
     title: 关注 %{acct}
+  challenge:
+    invalid_password: 无效密码
+    prompt: 确认密码以继续
   datetime:
     distance_in_words:
       about_x_hours: "%{count}时"
@@ -585,6 +642,10 @@ zh-CN:
     confirm_password: 输入你当前的密码来验证身份
     proceed: 删除帐户
     success_msg: 你的帐户已经成功删除
+    warning:
+      irreversible: 您将无法恢复或重新激活您的帐户
+      username_available: 您的用户名现在又可以使用了
+      username_unavailable: 您的用户名仍将无法使用
   directories:
     directory: 用户目录
     explanation: 根据兴趣发现用户
@@ -628,6 +689,7 @@ zh-CN:
     add_new: 添加新条目
     errors:
       limit: 你所推荐的话题标签数已达上限
+    hint_html: "<strong>什么是精选话题标签?</strong> 它们被显示在您的公开个人资料中的突出位置,人们可以在这些标签下浏览您的公共嘟文。 它们是跟踪创作或长期项目的进度的重要工具。"
   filters:
     contexts:
       home: 主页时间轴
@@ -722,6 +784,22 @@ zh-CN:
       too_many: 最多只能添加 4 张图片
   migrations:
     acct: 新帐户的 用户名@域名
+    cancel: 取消跳转
+    cancelled_msg: 成功取消跳转
+    errors:
+      move_to_self: 不能是当前帐户
+      not_found: 找不到
+      on_cooldown: 您正处于冷却状态
+    past_migrations: 迁移记录
+    proceed_with_move: 移动关注者
+    redirecting_to: 您的帐户被跳转到了 %{acct}。
+    set_redirect: 设置跳转
+    warning:
+      backreference_required: 新账号必须先引用现在这个账号
+      before: 在继续前,请仔细阅读下列说明:
+      cooldown: 移动后会有一个冷却期,在此期间您将无法再次移动
+      disabled_account: 此后,您的当前帐户将无法使用。但是,您仍然有权导出数据或者重新激活。
+      followers: 这步操作将把所有关注者从当前账户移动到新账户
   moderation:
     title: 运营
   notification_mailer:
@@ -735,9 +813,9 @@ zh-CN:
         other: "自从上次访问后,有 %{count} 条新通知 \U0001F418"
       title: 在你不在的这段时间……
     favourite:
-      body: 你的嘟文被 %{name} 收藏了:
-      subject: "%{name} 收藏了你的嘟文"
-      title: 新的收藏
+      body: 你的嘟文被 %{name} 喜欢了:
+      subject: "%{name} 喜欢了你的嘟文"
+      title: 新的喜欢
     follow:
       body: "%{name} 关注了你!"
       subject: "%{name} 关注了你"
@@ -808,8 +886,8 @@ zh-CN:
     reason_html: "<strong>为什么需要这个步骤?</strong> <code>%{instance}</code> 可能不是您所注册的服务器,所以我们需要先重定向到您所在的服务器。"
   remote_interaction:
     favourite:
-      proceed: 确认收藏
-      prompt: 您想要收藏此嘟文:
+      proceed: 确认标记为喜欢
+      prompt: 您想要标记此嘟文为喜欢:
     reblog:
       proceed: 确认转嘟
       prompt: 您想要转嘟此条:
@@ -864,6 +942,7 @@ zh-CN:
   settings:
     account: 账户
     account_settings: 帐户设置
+    aliases: 账户别名
     appearance: 外观
     authorized_apps: 已授权的应用
     back: 返回 Mastodon
@@ -871,7 +950,7 @@ zh-CN:
     development: 开发
     edit_profile: 更改个人资料
     export: 导出
-    featured_tags: 推荐的话题标签
+    featured_tags: 精选的话题标签
     identity_proofs: 身份证明
     import: 导入
     import_and_export: 导入和导出
@@ -881,6 +960,8 @@ zh-CN:
     profile: 个人资料
     relationships: 关注管理
     two_factor_authentication: 双重认证
+  spam_check:
+    spam_detected: 这是一个自动报告。已检测到垃圾信息。
   statuses:
     attached:
       description: 附加媒体:%{attached}
diff --git a/config/locales/zh-TW.yml b/config/locales/zh-TW.yml
index bb6e761c7..b7116e02e 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: 站點
@@ -132,6 +138,7 @@ zh-TW:
       push_subscription_expires: PuSH 訂閱過期
       redownload: 重新整理個人資料
       reject: 拒絕
+      reject_all: 全部拒絕
       remove_avatar: 取消頭像
       remove_header: 移除開頭
       resend_confirmation:
@@ -209,11 +216,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 +303,10 @@ zh-TW:
       back_to_account: 返回帳戶
       title: "%{acct} 的關注者"
     instances:
+      moderation:
+        all: 全部
+        limited: 限制
+        title: 版主
       title: 聯邦
     invites:
       filter:
@@ -303,6 +317,8 @@ zh-TW:
       title: 邀請使用者
     relays:
       description_html: "<strong>聯邦中繼站</strong> 是種中繼伺服器,會在訂閱並推送至此中繼站的伺服器之間交換大量的公開嘟文。<strong>中繼站也能協助小型或中型伺服器從聯邦中探索內容</strong>,而無須本地使用者手動關注遠端伺服器的其他使用者。"
+      disabled: 停用
+      enable: 啟用
     report_notes:
       created_msg: 檢舉記錄建立成功!
       destroyed_msg: 檢舉記錄刪除成功!
@@ -397,7 +413,13 @@ zh-TW:
       no_media: 不含媒體檔案
       title: 帳戶嘟文
       with_media: 含有媒體檔案
+    tags:
+      name: Hashtag
     title: 管理介面
+    warning_presets:
+      add_new: 新增
+      delete: 刪除
+      edit: 編輯
   admin_mailer:
     new_report:
       body: "%{reporter} 檢舉了使用者 %{target}"
diff --git a/db/migrate/20180831171112_create_bookmarks.rb b/db/migrate/20180831171112_create_bookmarks.rb
new file mode 100644
index 000000000..27c7339c9
--- /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/package.json b/package.json
index 70b58a950..545c5f731 100644
--- a/package.json
+++ b/package.json
@@ -60,9 +60,9 @@
   },
   "private": true,
   "dependencies": {
-    "@babel/core": "^7.4.5",
-    "@babel/plugin-proposal-class-properties": "^7.5.5",
-    "@babel/plugin-proposal-decorators": "^7.6.0",
+    "@babel/core": "^7.7.2",
+    "@babel/plugin-proposal-class-properties": "^7.7.0",
+    "@babel/plugin-proposal-decorators": "^7.7.0",
     "@babel/plugin-proposal-object-rest-spread": "^7.6.2",
     "@babel/plugin-syntax-dynamic-import": "^7.2.0",
     "@babel/plugin-transform-react-inline-elements": "^7.2.0",
@@ -70,9 +70,9 @@
     "@babel/plugin-transform-react-jsx-source": "^7.5.0",
     "@babel/plugin-transform-runtime": "^7.5.5",
     "@babel/preset-env": "^7.7.1",
-    "@babel/preset-react": "^7.6.3",
-    "@babel/runtime": "^7.7.1",
-    "@clusterws/cws": "^0.15.2",
+    "@babel/preset-react": "^7.7.0",
+    "@babel/runtime": "^7.7.2",
+    "@clusterws/cws": "^0.16.0",
     "array-includes": "^3.0.3",
     "atrament": "^0.2.3",
     "arrow-key-navigation": "^1.0.2",
@@ -80,14 +80,14 @@
     "axios": "^0.19.0",
     "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",
     "classnames": "^2.2.5",
     "compression-webpack-plugin": "^3.0.0",
-    "copy-webpack-plugin": "^5.0.4",
+    "copy-webpack-plugin": "^5.0.5",
     "cross-env": "^6.0.3",
     "css-loader": "^3.2.0",
     "cssnano": "^4.1.10",
@@ -101,7 +101,7 @@
     "file-loader": "^4.2.0",
     "favico.js": "^0.3.10",
     "font-awesome": "^4.7.0",
-    "glob": "^7.1.5",
+    "glob": "^7.1.6",
     "history": "^4.10.1",
     "http-link-header": "^1.0.2",
     "immutable": "^3.8.2",
@@ -130,23 +130,23 @@
     "punycode": "^2.1.0",
     "rails-ujs": "^5.2.3",
     "react": "^16.10.2",
-    "react-dom": "^16.11.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-notification": "^6.8.5",
     "react-overlays": "^0.9.1",
     "react-redux": "^7.1.1",
     "react-redux-loading-bar": "^4.0.8",
     "react-router-dom": "^4.1.1",
     "react-router-scroll-4": "^1.0.0-beta.1",
-    "react-select": "^3.0.5",
+    "react-select": "^3.0.8",
     "react-sparklines": "^1.7.0",
     "react-swipeable-views": "^0.13.3",
-    "react-textarea-autosize": "^7.1.0",
+    "react-textarea-autosize": "^7.1.2",
     "react-toggle": "^4.1.1",
     "redis": "^2.7.1",
     "redux": "^4.0.4",
@@ -164,7 +164,7 @@
     "tesseract.js": "^2.0.0-beta.2",
     "throng": "^4.0.0",
     "tiny-queue": "^0.2.1",
-    "uuid": "^3.1.0",
+    "uuid": "^3.3.3",
     "wavesurfer.js": "^3.2.0",
     "webpack": "^4.41.2",
     "webpack-assets-manifest": "^3.1.1",
@@ -178,7 +178,7 @@
     "babel-eslint": "^10.0.3",
     "babel-jest": "^24.9.0",
     "enzyme": "^3.10.0",
-    "enzyme-adapter-react-16": "^1.14.0",
+    "enzyme-adapter-react-16": "^1.15.1",
     "eslint": "^6.5.1",
     "eslint-plugin-import": "~2.18.2",
     "eslint-plugin-jsx-a11y": "~6.2.3",
diff --git a/public/emoji/1f1e8-1f1f3.svg b/public/emoji/1f1e8-1f1f3.svg
index c6fe22390..c10116d0a 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 707976330..7b8740c95 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 0f6781098..d6298de42 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 03f0ad3a9..d3bb1a754 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 117a34650..f668b7585 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 c26fc3517..90488ede9 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 34dfe03ea..9a7042715 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 4a782a33e..9cbc981ea 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 403d02e25..a5813f0f1 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 490baa9ed..bad95d5ec 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 aba4295ff..d98dc2f9f 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 8cf1eed2a..3fffcdd50 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 b41a17c2d..07501e928 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 7204904b5..4c9896919 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 08281c9ae..fe6e480b6 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 2d2a4cfa1..37c3a7e1a 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 6994aad09..dcf38931c 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 2357b36c0..b5c22696e 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 3f4a798bd..1f419d451 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 f239d02c5..9d355c4a9 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 d3c6697c9..e26133475 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 cc3458749..d6c68e0d7 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 a99203a60..3a9df15ae 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 503078ad3..1017cef3a 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 774d68177..4ec08ae49 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 af46ef62e..789fd08d1 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 029f1fdcc..28abf33e1 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 1e8ef3d27..9227f288c 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 abd8f3afb..22074a11f 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 1901adbbd..6ce8afd98 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 4555b5e97..efb7d5da7 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 4b187e0a4..5628fcacf 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 4a299f7b8..695f0ef33 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 82483f70a..627fa068d 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 18e751d4c..c0090e160 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 f2ae88241..e71263c97 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 972c7348b..aa7ab8fab 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 e17d87f83..9f66b45fe 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 b5aab7537..bff2c0841 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 33261c1fc..9c559abd5 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 b7160fb8c..604a0024c 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 b7160fb8c..604a0024c 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 be91355ad..2639daf5c 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 95c90c3d9..f93e9dbfc 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 95c90c3d9..f93e9dbfc 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 3c9898305..f2677ee96 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 20799e947..847b7f6e0 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 20799e947..847b7f6e0 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 2ec1034b2..175349d18 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 92b76eca5..51db6d67a 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 92b76eca5..51db6d67a 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 9326a89be..b19ab8811 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 8eb95e256..818897772 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 8eb95e256..818897772 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 07fcfb931..9acdb7a73 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 3c090f378..42bc60109 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 3c090f378..42bc60109 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 755e4ab57..c5f308193 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 75d69eec7..e396618ff 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 75d69eec7..e396618ff 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 dccab63e6..2fcf3c603 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 2545d2cc6..228af26f8 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 2545d2cc6..228af26f8 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 c975aab73..0d5755549 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 4beaea0fa..521b554b6 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 4beaea0fa..521b554b6 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 c05e212cf..6372f70a1 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 dda836ca5..147c45aea 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 dda836ca5..147c45aea 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 4bf28b003..8cb8ad8f9 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 292c60956..0e0ef2e9a 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 292c60956..0e0ef2e9a 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 cfa17057a..c33ecc72f 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 a69ddc50e..6da42a5c0 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 a69ddc50e..6da42a5c0 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 1cb697433..a576ba8b9 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 3c1bb3b5b..de38be185 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 edfb41c93..1caeeb8f2 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 edfb41c93..1caeeb8f2 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 a6c248961..03f293579 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 dd8a66390..44953ab18 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 dd8a66390..44953ab18 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 598c89bb0..00f68eeda 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 74a18a754..5401c2f65 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 74a18a754..5401c2f65 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 a82a2e501..34e859a13 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 b80c958d9..b5f19bf25 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 b80c958d9..b5f19bf25 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 bced90f1e..117b92a7f 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 be0f83b9e..2cf83c479 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 be0f83b9e..2cf83c479 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 33614a1dd..1e2ac7f89 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 9940b781b..f9bbcc92c 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 9940b781b..f9bbcc92c 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 9b0cd11e1..382c62915 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 000000000..f9fc064c0
--- /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 fb892e27d..ae0d531a1 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 a5cc70d4a..819ff64af 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 6e7f443f8..dfaa71867 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 2ffc9005c..33d0009fe 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 283184c14..4c791dcc6 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 7997e6ee2..edb55b1f6 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 000000000..0ba7fb30e
--- /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 903aabe0f..c959deb9d 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 cd644d968..385b616e8 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 3a7f3b5b9..31e788280 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 20159b5b9..f314ca9a2 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 35a3aea22..ee782f2f2 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 117343239..cc75dcc68 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 c3c6668b0..f00ea1033 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 05edf0229..8b2e68580 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 55b43c70c..af402057e 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 02790ef94..ebe9061da 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 8578b7f79..de8871dc2 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 16d7bf504..beec31c99 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 1e0252114..975f489fd 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 1e4f886a7..13c59cf1b 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 407acda59..1ce9ef377 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 0d9ade5f8..8942c68b0 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 e9e71aea8..e54788da9 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 dddad5809..e96a25802 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 c80dbb3bc..6e52b17f5 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 b3baf8e7b..91cb40e4a 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 95b011c69..ffa03f7a0 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 bf82d1aaf..c36d77485 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 d6e8759b5..18d99981e 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 143f12ad5..51d02dd25 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 571a3f344..076c6e7df 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 000000000..06f7b2cfc
--- /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 000000000..012784566
--- /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 000000000..7d0c06d0d
--- /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 000000000..447fd47bf
--- /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 000000000..77eb17286
--- /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 000000000..08bc53e6d
--- /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 000000000..6fbe0659c
--- /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 000000000..bb34ac855
--- /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 000000000..4d6b0dd69
--- /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 000000000..f28f13f25
--- /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 000000000..be45b6793
--- /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 000000000..64bf6233d
--- /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 000000000..7c7ecbf2c
--- /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 000000000..bbe83212d
--- /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 000000000..99a2b33d3
--- /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 000000000..56845736e
--- /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 000000000..0e2b8bed4
--- /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 000000000..655037085
--- /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 000000000..b2383477f
--- /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 000000000..a7f8308d1
--- /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 000000000..e9fc548f6
--- /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 000000000..f55ff86f9
--- /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 000000000..513caf1b3
--- /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 000000000..99ad94b9f
--- /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 000000000..4f6eba077
--- /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 000000000..321bc0d99
--- /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 000000000..7d37c87f6
--- /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 000000000..b8d2858f9
--- /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 c683290ee..cace24fc3 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 1c9a76ab8..41dbd9681 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 000000000..c0a072e2f
--- /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 000000000..fa124a7f9
--- /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 000000000..97533c42d
--- /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 000000000..8d03f30f0
--- /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 000000000..3c5812183
--- /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 000000000..2f240ea5f
--- /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 000000000..68f49e076
--- /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 000000000..53e58734c
--- /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 000000000..16f795307
--- /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 000000000..47dd9158e
--- /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 000000000..2cdda31da
--- /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 000000000..0939b16d8
--- /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 000000000..ad8806b3f
--- /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 000000000..ffea3a289
--- /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 000000000..39843afd3
--- /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 000000000..adf04f14e
--- /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 000000000..724aede5b
--- /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 000000000..6ab1b4275
--- /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 000000000..edfadd095
--- /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 000000000..6a909b143
--- /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 000000000..9ec331669
--- /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 000000000..c17b0ed28
--- /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 000000000..798345314
--- /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 000000000..c128386d5
--- /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 000000000..c14a8e794
--- /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 000000000..dff165ed5
--- /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 000000000..19a8dab4c
--- /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 000000000..6040c7be6
--- /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 000000000..77a4bce68
--- /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 000000000..c30ccdf21
--- /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 000000000..aa913dc93
--- /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 000000000..3b4b53958
--- /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 000000000..ba5ca0543
--- /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 000000000..f481961b1
--- /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 000000000..cbcfecadc
--- /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 000000000..fce4c9184
--- /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 000000000..84e2b2bd8
--- /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 000000000..d0ba4cd18
--- /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 000000000..bfbb93bbf
--- /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 000000000..36dec9257
--- /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 000000000..f18bc69bc
--- /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 000000000..ac2fe9944
--- /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 000000000..aafa3bce6
--- /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 000000000..39f0c6a75
--- /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 000000000..4eea4dc72
--- /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 000000000..fe5558732
--- /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 000000000..6706ec815
--- /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 000000000..1d6b02cfa
--- /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 b01d6565e..ece280dc0 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 70fc6b7c2..62abb03e7 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 e3fe65293..8248ed607 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 93a147cdb..e46dfcaeb 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 000000000..5fedd969b
--- /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 000000000..d5be6fe59
--- /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 000000000..15c9bdfed
--- /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 000000000..54c46de87
--- /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 000000000..e0cb1e2bb
--- /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 3877f5cd9..f7e46f210 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 000000000..18c40167f
--- /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 000000000..c7665eaf9
--- /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 000000000..adf95058f
--- /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 000000000..484683659
--- /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 000000000..f6fc11202
--- /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 f61d4c434..0aa9dcb33 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 000000000..8bc44aae2
--- /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 000000000..555fcbb5b
--- /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 000000000..5db65de5a
--- /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 000000000..d122ab64f
--- /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 000000000..5f292d55d
--- /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 29d2b8597..8f8ea9cfb 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 4d00a954a..6559253b8 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 db3d12a26..04254cd99 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 4d00a954a..6559253b8 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 f0fcf19fb..72c8f2cef 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 8f68656c5..972ac6a54 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 518d5fee5..50377b687 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 2b7025cc3..e4dde292f 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 edafd473f..ac5350687 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 33e8827de..abc19e5f7 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 8a1454a50..f71fc97fc 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 966105d33..0734ecf23 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 e3fe65293..8248ed607 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 b01d6565e..ece280dc0 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 723eba8a2..974ddac8f 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 79d69c61f..404a6e769 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 697ecc6a9..d50c77047 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 724469b8e..b4b3216f3 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 d5da4b4f6..aa3abbca7 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 1808f480b..295f9d48e 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 8fdd3155a..32d819fe4 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 72f8e7afa..5db2632ff 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 f61f1276c..b9459b7d5 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 66fa36112..71adb414f 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 d18d8a2e2..feb2c9d29 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 addfae6f4..7c9762695 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 5ace10d4a..cfaf7ca8f 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 f4f240fdb..d7d4b5fa5 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 a96e40b8c..81c4e99cb 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 a73e8a6cb..82f5293e7 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 a5c1fdf6a..aa2d9c503 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 f8e1dd092..9bf3cf70b 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 c6c0477b4..f1abb5901 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 795f6cdee..5f864dee5 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 a5f770d48..31024baf1 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 d5744ba83..b12b42ce9 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 9f9b7ee29..8f432f0de 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 08e031266..ddf8fbd3e 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 3d45f5d61..d964c524e 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 eeed72c1f..a885bab4f 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 c9aaa2d26..690428101 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 e5d0ca5c0..54ab898eb 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 fa23e9e71..d2ba9e7f0 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 262a671fc..a2e37de7f 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 e82e1e853..13f35b71a 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 983d21de3..213a6ab69 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 d9b230be1..97bc7b5a5 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 d9b230be1..97bc7b5a5 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 4f27f75c7..27c10f151 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 4f27f75c7..27c10f151 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 047933f9b..4e980b002 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 047933f9b..4e980b002 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 43ac9ee41..88a306164 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 43ac9ee41..88a306164 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 28fd4074e..57aec606d 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 28fd4074e..57aec606d 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 a9bd641c9..a834fd4b9 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 a9bd641c9..a834fd4b9 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 2244dcdd8..5d5c04fb8 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 f98a440fe..a15686510 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 a7467e3cb..33479b504 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 215ffcb0d..1eb5928c8 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 b8ff07cda..37bfbee9c 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 14e536b4f..586b6c5e9 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 6697af06f..02824e9cb 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 e8e68b6cb..f43787a0f 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 6597b5ce1..e63c1ec84 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 ae22c0984..4e791e6ac 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 dbc179197..8a7f77359 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 b366d3afb..f106ae7dd 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 c9b02942b..9944090ec 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 7a924e462..296a8f795 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 74ed3da4f..9ec61de59 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 acb4dcd9d..0a4d174be 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 2c9d033cf..1c8dd6849 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 4b3ff616c..51ec883f8 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 74e28dc46..9e97cea6e 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 74bbf3c43..2741fb89d 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 5607d68c0..4e613c046 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 edd19d416..9c643d363 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 a745838c6..18b1867c1 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 da48c23a9..5e00b8e4d 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 b55a69c01..7ae60a58d 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 98a25a5a9..4e125ab97 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 b468daa67..92f9022d9 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 97dfc19ab..88057ceb0 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 0255ef366..a4dd7e46b 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 5235cbc62..198ad47a5 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 5e7e3e86b..e982de7a3 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 f93d26cbf..19a41d75b 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 4cc6054c2..cdd84393f 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 c071e39ff..65ea8a5a2 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 5070955e0..d3d6161f2 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 159d67c9f..47b17497d 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 5070955e0..d3d6161f2 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 1db0387cd..061e83da3 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 5e2c41248..47109a9c2 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 1db0387cd..061e83da3 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 1378f80d2..3ba6194b5 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 50a2cecdc..5e7487e79 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 1378f80d2..3ba6194b5 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 8a775425a..5eacdc63d 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 58749e06d..da7e78935 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 8a775425a..5eacdc63d 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 a43091f99..e38dfd1cd 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 773a01625..1fb2443b6 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 a43091f99..e38dfd1cd 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 bdb511b33..2e47b6710 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 99f4d9724..ba0fc8e83 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 bdb511b33..2e47b6710 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 de89bf2ef..e5c19c946 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 85a692145..a9651dca4 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 85a692145..a9651dca4 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 82a0128c9..a0c9e1cef 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 1207116a1..d5d8a1b1a 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 1207116a1..d5d8a1b1a 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 ec8948666..16b7ac0bb 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 6c4dd1097..350a363a0 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 6c4dd1097..350a363a0 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 48e297207..08ab1cce5 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 5a94398df..58d8d4e8a 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 5a94398df..58d8d4e8a 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 8cf74481c..05a2304c9 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 43ecec5d8..d461a4103 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 43ecec5d8..d461a4103 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 06d1b2f05..8e0c5adc3 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 c426a2ea5..d62822936 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 c426a2ea5..d62822936 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 22c18e973..6cb382717 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 927d3b4fd..252e85cc5 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 bad4c3fc5..396c56b4e 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 1f483bba8..8f5f4ce23 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 1f483bba8..8f5f4ce23 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 6eec07db7..571d8f0f4 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 dbfd6a6a2..cba51a41c 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 dbfd6a6a2..cba51a41c 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 aa1476383..65a6df4d7 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 64c97ad32..84169ed7a 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 64c97ad32..84169ed7a 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 3f10e2f6a..352e7af5d 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 8c7e5b671..591c56223 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 8c7e5b671..591c56223 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 7516079f8..ae7e41430 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 46989f638..198a8377e 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 46989f638..198a8377e 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 8b722c778..8e187bfab 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 c82bdf756..9217939d2 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 c82bdf756..9217939d2 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 000000000..4a2e9be2d
--- /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 000000000..aae4e94ac
--- /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 000000000..2db43d5b2
--- /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 000000000..5c05d4385
--- /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 000000000..3e68a3fb1
--- /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 000000000..8a034cab4
--- /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 000000000..ebbc3a730
--- /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 000000000..5326d657d
--- /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 000000000..082422601
--- /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 000000000..3cbdde4d9
--- /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 000000000..64795b1f2
--- /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 000000000..73ed4fa49
--- /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 000000000..c331b1f71
--- /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 000000000..24ee98278
--- /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 000000000..7deb0cd70
--- /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 000000000..275f3c98f
--- /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 000000000..a14c90745
--- /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 000000000..8f109cde2
--- /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 000000000..0e9b3e620
--- /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 000000000..07ccb2b69
--- /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 000000000..78893d0e9
--- /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 000000000..626e3b5f0
--- /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 181a4901c..1dbe6d68d 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 d86181b90..56fa28a56 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 025715f9f..bae1401c4 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 984098179..98ebab088 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 74adc3caf..873cef08c 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 94bf9a18f..052adbb63 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 71646855c..c3a10630e 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 d1a7ef589..646618e6e 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 ccc982e57..4b5f98392 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 50698f1cf..6d85626e0 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 13e2bd5c0..cc36a2487 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 a47052cd0..1345e9719 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 48811d085..a3d2b1c9d 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 6e6cb494a..30a387d36 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 c3b5182b4..ec2fa5086 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 f7f0b9ba4..b17f2690b 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 c1f22530b..28cbb7885 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 82a18b3c9..86e91b2a9 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 6bcd3a2e7..f85ba6525 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 f8768989f..eaa8fb273 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 afd0d5036..5feff0ac7 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 cc0c79762..04db0c91e 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 c7e8eee83..a26398fa9 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 0cb9a1b7e..ad40c9d54 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 11775b66e..666ac38c2 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 9f30726ca..d0e7ba4e3 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 1febe152c..abd68b8f6 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 1febe152c..abd68b8f6 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 40b403069..5b10171c3 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 da0f7e5f4..f7093beb7 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 da0f7e5f4..f7093beb7 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 1e4f6197b..35d0ab5d3 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 2268bf01d..5ed3aa32a 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 2268bf01d..5ed3aa32a 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 682d58b0a..5b0623609 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 427e42d60..6ed7fb365 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 427e42d60..6ed7fb365 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 cb824ae81..70f6517f0 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 c38b49041..3af34ef2c 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 c38b49041..3af34ef2c 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 8adcb6b0b..63ef4c95e 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 c5668af1b..5c87be483 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 c5668af1b..5c87be483 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 b6fa84e75..c5a0d1e42 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 30d80301b..245766556 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 b6fa84e75..c5a0d1e42 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 70941c652..15b2df731 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 334889aeb..32a693857 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 70941c652..15b2df731 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 79301f54b..58447e654 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 0f45265fe..bb9f50ce8 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 79301f54b..58447e654 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 ea7c23d24..b17fdb449 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 c4624bd4d..cce9c90ed 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 ea7c23d24..b17fdb449 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 48e6a08da..076b69d98 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 4bdd418f2..4f61ec9e6 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 48e6a08da..076b69d98 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 8e21aecde..9cec3f994 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 0895523c3..7aa23feb9 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 8e21aecde..9cec3f994 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 a5921b505..46d9bdcab 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 af8a0563d..029896345 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 a5921b505..46d9bdcab 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 c20722f95..2a6191fd9 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 f0d16c6cd..ac5a4bb89 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 c20722f95..2a6191fd9 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 41c4eae0f..ca6f6c27c 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 1c03769e9..63fe0d4c0 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 41c4eae0f..ca6f6c27c 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 9cec4cdc3..692ed9d36 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 ec690db9d..5639542ce 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 9cec4cdc3..692ed9d36 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 70e6b8a7d..ec3b45f83 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 b88ab08eb..1d547f9be 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 70e6b8a7d..ec3b45f83 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 f1a18f046..28e86b3ef 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 823171390..3efb4668b 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 f1a18f046..28e86b3ef 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 000000000..01239db87
--- /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 94215a2d7..c67af77c6 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 da0690fd9..685db6d15 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 3e56363e7..6bb5f773c 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 46c9627b9..6b063dfc8 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 000000000..26444c6a2
--- /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 000000000..d69d53d17
--- /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 550b5bbf7..e9de7de9e 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 81f0633e5..19d9ff161 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 fcfe2cf7f..aa5992325 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 594e4e5ba..233e3c989 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 7f8676d6b..30c88720f 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 2b29844a7..8df2a7467 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 80258274f..588815125 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 4e1a21fa1..92f42fd8b 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 000000000..7371a8ed1
--- /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 000000000..5ea0173a5
--- /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 000000000..038284558
--- /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 000000000..47478ffe3
--- /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 000000000..aaa5cfa26
--- /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 000000000..f0f477867
--- /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 000000000..fc635872c
--- /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 000000000..aba8a9807
--- /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 000000000..5cb487ef0
--- /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 000000000..414422b83
--- /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 000000000..035b6919f
--- /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 000000000..ea3072c4d
--- /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 000000000..50bf8e37b
--- /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 000000000..b94d484ae
--- /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 000000000..d187bad0a
--- /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 000000000..51ed272c8
--- /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 000000000..af889ade4
--- /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 000000000..818e532d3
--- /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 000000000..05bc02011
--- /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 000000000..153f55312
--- /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 000000000..c371d4bf8
--- /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 000000000..c3d2db4f0
--- /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 000000000..db17a633b
--- /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 000000000..51a3f26d4
--- /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 000000000..37a9f36e8
--- /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 000000000..ab68cb1d6
--- /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 000000000..c360564eb
--- /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 000000000..cc92a9d18
--- /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 000000000..d7a5674c6
--- /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 000000000..16b0db823
--- /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 000000000..569fe039b
--- /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 000000000..d5981e340
--- /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 000000000..8fbd6c034
--- /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 000000000..8fbd6c034
--- /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 000000000..7f81ff85b
--- /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 000000000..0ea6dafdc
--- /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 000000000..0ea6dafdc
--- /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 000000000..48329af5f
--- /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 000000000..3197184b7
--- /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 000000000..3197184b7
--- /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 000000000..696243dc0
--- /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 000000000..8b05543d0
--- /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 000000000..8b05543d0
--- /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 000000000..c96659cea
--- /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 000000000..59fb6a930
--- /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 000000000..59fb6a930
--- /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 000000000..1b8bfc388
--- /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 000000000..450561e2a
--- /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 000000000..450561e2a
--- /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 000000000..77c8b9ba1
--- /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 000000000..09e6f4d9b
--- /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 000000000..09e6f4d9b
--- /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 000000000..cf2ca0cc9
--- /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 000000000..9bd2fc01d
--- /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 000000000..9bd2fc01d
--- /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 000000000..ed058b9d9
--- /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 000000000..10df60c9b
--- /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 000000000..10df60c9b
--- /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 000000000..83206f8d2
--- /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 000000000..fb24b6dfb
--- /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 000000000..fb24b6dfb
--- /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 000000000..442cb9c49
--- /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 000000000..aba0cb467
--- /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 000000000..aba0cb467
--- /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 000000000..89c9ff428
--- /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 000000000..403d73eb3
--- /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 000000000..403d73eb3
--- /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 000000000..9605fac0a
--- /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 000000000..be0cd9005
--- /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 000000000..be0cd9005
--- /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 000000000..a463bd6ef
--- /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 000000000..312364641
--- /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 000000000..312364641
--- /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 000000000..623b34451
--- /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 000000000..d41a0fa60
--- /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 000000000..d41a0fa60
--- /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 000000000..d63eee453
--- /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 000000000..dd4392664
--- /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 000000000..dd4392664
--- /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 000000000..6064882a7
--- /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 000000000..748ab421b
--- /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 000000000..748ab421b
--- /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 000000000..7d8f058a8
--- /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 000000000..8c119c990
--- /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 000000000..8c119c990
--- /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 000000000..5fedd969b
--- /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 000000000..53e58734c
--- /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 000000000..d5be6fe59
--- /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 000000000..adf04f14e
--- /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 000000000..724aede5b
--- /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 000000000..15c9bdfed
--- /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 000000000..c14a8e794
--- /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 000000000..dff165ed5
--- /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 000000000..19a8dab4c
--- /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 000000000..54c46de87
--- /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 000000000..cbcfecadc
--- /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 000000000..fce4c9184
--- /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 000000000..84e2b2bd8
--- /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 000000000..d0ba4cd18
--- /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 000000000..e0cb1e2bb
--- /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 000000000..f7e46f210
--- /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 fee0d3eda..98c29804f 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 759ae189a..d3aff3dc1 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 fee0d3eda..98c29804f 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 880e61dc3..976146def 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 d64529775..35f7e555f 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 880e61dc3..976146def 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 25da28dbd..b29750071 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 1825b641a..42772b46e 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 25da28dbd..b29750071 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 6fb5efd1a..935ff3290 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 767cf703d..4846f7336 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 6fb5efd1a..935ff3290 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 963f6cabd..1c0862f7a 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 d0a9f4d71..7512a609d 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 963f6cabd..1c0862f7a 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 c587685a6..f1d0343e3 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 d161c4917..3ecdeee76 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 c587685a6..f1d0343e3 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 b40f1d8b6..e51d2e439 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 15bbacb55..ce17dc94b 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 b40f1d8b6..e51d2e439 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 fb0b3cb98..079727076 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 5c4a81ada..9e4c8d068 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 fb0b3cb98..079727076 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 6e5be98c9..010541a1e 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 586840250..6c3b34f59 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 6e5be98c9..010541a1e 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 220b92fe2..71bc5ad76 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 63897507f..c3629c6c7 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 220b92fe2..71bc5ad76 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 ab672b006..5cc0fb7d4 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 b49b1a5a4..33acb8085 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 ab672b006..5cc0fb7d4 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 241b3d23a..8fcb70fb6 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 bf60483af..e0c1f483a 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 241b3d23a..8fcb70fb6 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 3e624eb93..e211b06a1 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 d2167b4ae..4263e6a86 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 3e624eb93..e211b06a1 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 c0c2c6212..de8fa7329 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 7a7ea8b2a..18637d961 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 c0c2c6212..de8fa7329 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 04bda3d0b..0ad162b31 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 8f5f00424..727971080 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 04bda3d0b..0ad162b31 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 eb04d4715..5f71af9d0 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 bc61ced36..faeb2fa9e 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 eb04d4715..5f71af9d0 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 2fc30a85c..f2932edee 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 d671d743e..2d28d8d39 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 2fc30a85c..f2932edee 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 2a7eba55a..750f24335 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 b003edae9..07111b5dd 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 2a7eba55a..750f24335 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 5f1e0d05c..1505f6846 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 6bcdc55e4..8fdeaf9e0 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 000000000..a8df4c67d
--- /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 000000000..df3ecebac
--- /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 000000000..7486e6afe
--- /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 000000000..03e70ca89
--- /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 000000000..2dc83a56d
--- /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 000000000..41d5722af
--- /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 000000000..848c72e6e
--- /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 000000000..fc9af9be9
--- /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 000000000..fd8605e46
--- /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 000000000..acb16e264
--- /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 000000000..46a0c53ce
--- /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 000000000..8db580193
--- /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 000000000..3b261c90f
--- /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 000000000..f886dfaee
--- /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 000000000..34c5f381d
--- /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 000000000..da6e25d06
--- /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 00d477250..1706c28b1 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 e36b3f5b3..53e6f6efc 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 aa9542245..cb4f63bc7 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 9a19ab578..b91ca8056 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 4185a7297..9c0abf0f9 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 ac7d39521..854b494b3 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 5ac3bbcfb..76dac4ee6 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 0b4289659..e03f60e18 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 026dd7182..a83945629 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 a9aacf2b0..858849554 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 a0666143a..95d8ddd17 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 e1ff6bb0c..10c880c2f 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 96c1139a8..5f7b10914 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 29e2ff937..a9dce6f24 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 f05d460cd..67f49c3d3 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 c2706b607..02f93aadd 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 000000000..0d0b230b5
--- /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 8f1a63a0d..169b72cc9 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 b7ab49521..f24749cb5 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 fc070edb9..e62b3406b 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 e3f08e7cc..38dac4b19 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 f0acc1ae5..88013381f 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 658c3dba6..cb4c3011a 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 115102215..4184e4a47 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 641d07275..ade6f21bd 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 9f29fcee8..8a00ebc80 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 b74897812..78a8b5d49 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 b74897812..78a8b5d49 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 a40339c42..8bcada01a 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 102413c1d..fb2b1e1b5 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 102413c1d..fb2b1e1b5 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 eecd25bce..edb6001b4 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 c7a24c37b..9282cee90 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 c7a24c37b..9282cee90 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 282ac545a..5eee28138 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 7a5b647c0..d618e5a45 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 7a5b647c0..d618e5a45 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 bbc1e9fe7..52dcb9bec 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 601b85c1b..c174ef8bc 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 601b85c1b..c174ef8bc 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 90080c21e..f25f03dbe 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 4ddcf7f8e..ee014e406 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 4ddcf7f8e..ee014e406 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 953d5211a..1929efb8b 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 7e4f57598..09dc7d3b5 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 68f4030fa..329832daf 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 a6d1fe8b5..b4bcfc5c0 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 74f881096..e7dd06eb6 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 2e25dd39c..99910432f 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 df49e0727..5b64565d2 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 948e1cbd1..3f69cc709 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 fc45ac6de..02f74174c 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 012bcd2c5..ed89dbac5 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 7676af18c..74072202c 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 9bd7879da..31576f16e 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 b675ead64..a95327abb 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 4dcf98164..d748f2094 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 b00e6af96..f93272ac3 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 2572d7264..aca5302c7 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 82b6bdb6a..3fa974296 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 552410bef..730545f57 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 478ac14c6..8eaec690e 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 c50efc0bb..17972389e 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 57b136e3a..d10237301 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 0b92b0987..17ed81987 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 ba8ab02d2..b78e87834 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 d8577c65e..7eb5c5913 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 9f4535385..5d55ec2d5 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 a1f2581a0..589c0127c 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 cc7982d39..6b8a7c173 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 8fafa684d..33abaa91f 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 9c4b877cc..42b60e341 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 1cdc43a0a..afe4fedd6 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 a41b2a210..bd51781e2 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/v1/accounts/credentials_controller_spec.rb b/spec/controllers/api/v1/accounts/credentials_controller_spec.rb
index e9466e4ed..4fa6fbcf4 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
           note = 'This is too long. '
diff --git a/spec/controllers/api/v1/bookmarks_controller_spec.rb b/spec/controllers/api/v1/bookmarks_controller_spec.rb
index 79601b6e6..d7c5847b0 100644
--- a/spec/controllers/api/v1/bookmarks_controller_spec.rb
+++ b/spec/controllers/api/v1/bookmarks_controller_spec.rb
@@ -64,7 +64,7 @@ RSpec.describe Api::V1::BookmarksController, type: :controller do
           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&since_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
diff --git a/spec/controllers/application_controller_spec.rb b/spec/controllers/application_controller_spec.rb
index 4ac69b719..686ae70fb 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/requests/localization_spec.rb b/spec/requests/localization_spec.rb
index 496a885e8..175f02ae9 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/fetch_oembed_service_spec.rb b/spec/services/fetch_oembed_service_spec.rb
index 5789fb53b..a4262b040 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/spec_helper.rb b/spec/spec_helper.rb
index 45ba1bbd9..e57349cc8 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 = ".cache/rspec"
   config.expect_with :rspec do |expectations|
     expectations.include_chain_clauses_in_custom_matcher_descriptions = true
   end
diff --git a/yarn.lock b/yarn.lock
index cc763fb60..edea62aed 100644
--- a/yarn.lock
+++ b/yarn.lock
@@ -9,85 +9,32 @@
   dependencies:
     "@babel/highlight" "^7.0.0"
 
-"@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/core@^7.1.0", "@babel/core@^7.4.5", "@babel/core@^7.7.2":
+  version "7.7.2"
+  resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.7.2.tgz#ea5b99693bcfc058116f42fa1dd54da412b29d91"
+  integrity sha512-eeD7VEZKfhK1KUXGiyPFettgF3m513f8FoBSWiQ1xTvl1RAopLs42Wp9+Ze911I6H0N9lNqJMDgoZT7gHsipeQ==
   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"
-
-"@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/code-frame" "^7.5.5"
+    "@babel/generator" "^7.7.2"
+    "@babel/helpers" "^7.7.0"
+    "@babel/parser" "^7.7.2"
+    "@babel/template" "^7.7.0"
+    "@babel/traverse" "^7.7.2"
+    "@babel/types" "^7.7.2"
+    convert-source-map "^1.7.0"
     debug "^4.1.0"
     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==
-  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"
-    jsesc "^2.5.1"
-    lodash "^4.17.13"
-    source-map "^0.5.0"
-    trim-right "^1.0.1"
-
-"@babel/generator@^7.7.0":
-  version "7.7.0"
-  resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.7.0.tgz#c6d4d1f7a0d6e139cbd01aca73170b0bff5425b4"
-  integrity sha512-1wdJ6UxHyL1XoJQ119JmvuRX27LRih7iYStMPZOWAjQqeAabFg3dYXKMpgihma+to+0ADsTVVt6oRyUxWZw6Mw==
+"@babel/generator@^7.0.0", "@babel/generator@^7.7.2":
+  version "7.7.2"
+  resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.7.2.tgz#2f4852d04131a5e17ea4f6645488b5da66ebf3af"
+  integrity sha512-WthSArvAjYLz4TcbKOi88me+KmDJdKSlfwwN8CnUYn9jBkzhq0ZEPuBfkAWIvjJ3AdEV1Cf/+eSQTnp3IDJKlQ==
   dependencies:
-    "@babel/types" "^7.7.0"
+    "@babel/types" "^7.7.2"
     jsesc "^2.5.1"
     lodash "^4.17.13"
     source-map "^0.5.0"
@@ -122,6 +69,14 @@
     "@babel/types" "^7.0.0"
     esutils "^2.0.0"
 
+"@babel/helper-builder-react-jsx@^7.7.0":
+  version "7.7.0"
+  resolved "https://registry.yarnpkg.com/@babel/helper-builder-react-jsx/-/helper-builder-react-jsx-7.7.0.tgz#c6b8254d305bacd62beb648e4dea7d3ed79f352d"
+  integrity sha512-LSln3cexwInTMYYoFeVLKnYPPMfWNJ8PubTBs3hkh7wCu9iBaqq1OOyW+xGmEdLxT1nhsl+9SJ+h2oUDYz0l2A==
+  dependencies:
+    "@babel/types" "^7.7.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"
@@ -131,17 +86,17 @@
     "@babel/traverse" "^7.4.4"
     "@babel/types" "^7.4.4"
 
-"@babel/helper-create-class-features-plugin@^7.5.5", "@babel/helper-create-class-features-plugin@^7.6.0":
-  version "7.6.0"
-  resolved "https://registry.yarnpkg.com/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.6.0.tgz#769711acca889be371e9bc2eb68641d55218021f"
-  integrity sha512-O1QWBko4fzGju6VoVvrZg0RROCVifcLxiApnGP3OWfWzvxRZFCoBD81K5ur5e3bVY2Vf/5rIJm8cqPKn8HUJng==
+"@babel/helper-create-class-features-plugin@^7.7.0":
+  version "7.7.0"
+  resolved "https://registry.yarnpkg.com/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.7.0.tgz#bcdc223abbfdd386f94196ae2544987f8df775e8"
+  integrity sha512-MZiB5qvTWoyiFOgootmRSDV1udjIqJW/8lmxgzKq6oDqxdmHUjeP2ZUOmgHdYjmUVNABqRrHjYAYRvj8Eox/UA==
   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-function-name" "^7.7.0"
+    "@babel/helper-member-expression-to-functions" "^7.7.0"
+    "@babel/helper-optimise-call-expression" "^7.7.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-replace-supers" "^7.7.0"
+    "@babel/helper-split-export-declaration" "^7.7.0"
 
 "@babel/helper-create-regexp-features-plugin@^7.7.0":
   version "7.7.0"
@@ -168,15 +123,6 @@
     "@babel/traverse" "^7.1.0"
     "@babel/types" "^7.0.0"
 
-"@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==
-  dependencies:
-    "@babel/helper-get-function-arity" "^7.0.0"
-    "@babel/template" "^7.1.0"
-    "@babel/types" "^7.0.0"
-
 "@babel/helper-function-name@^7.7.0":
   version "7.7.0"
   resolved "https://registry.yarnpkg.com/@babel/helper-function-name/-/helper-function-name-7.7.0.tgz#44a5ad151cfff8ed2599c91682dda2ec2c8430a3"
@@ -356,23 +302,14 @@
     "@babel/traverse" "^7.7.0"
     "@babel/types" "^7.7.0"
 
-"@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==
-  dependencies:
-    "@babel/template" "^7.1.2"
-    "@babel/traverse" "^7.1.5"
-    "@babel/types" "^7.2.0"
-
-"@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/helpers@^7.7.0":
+  version "7.7.0"
+  resolved "https://registry.yarnpkg.com/@babel/helpers/-/helpers-7.7.0.tgz#359bb5ac3b4726f7c1fde0ec75f64b3f4275d60b"
+  integrity sha512-VnNwL4YOhbejHb7x/b5F39Zdg5vIQpUUNzJwx0ww1EcVRt41bbGRZWhAURrfY32T5zTT3qwNOQFWpn+P0i0a2g==
   dependencies:
-    "@babel/template" "^7.4.4"
-    "@babel/traverse" "^7.4.4"
-    "@babel/types" "^7.4.4"
+    "@babel/template" "^7.7.0"
+    "@babel/traverse" "^7.7.0"
+    "@babel/types" "^7.7.0"
 
 "@babel/highlight@^7.0.0":
   version "7.0.0"
@@ -383,15 +320,10 @@
     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/parser@^7.7.0":
-  version "7.7.0"
-  resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.7.0.tgz#232618f6e8947bc54b407fa1f1c91a22758e7159"
-  integrity sha512-GqL+Z0d7B7ADlQBMXlJgvXEbtt5qlqd1YQ5fr12hTSfh7O/vgrEIvJxU2e7aSVrEUn75zTZ6Nd0s8tthrlZnrQ==
+"@babel/parser@^7.0.0", "@babel/parser@^7.1.0", "@babel/parser@^7.7.0", "@babel/parser@^7.7.2":
+  version "7.7.3"
+  resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.7.3.tgz#5fad457c2529de476a248f75b0f090b3060af043"
+  integrity sha512-bqv+iCo9i+uLVbI0ILzKkvMorqxouI+GbV13ivcARXn9NNEabi2IEz912IgNpT/60BNXac5dgcfjb94NjsF33A==
 
 "@babel/plugin-proposal-async-generator-functions@^7.7.0":
   version "7.7.0"
@@ -402,20 +334,20 @@
     "@babel/helper-remap-async-to-generator" "^7.7.0"
     "@babel/plugin-syntax-async-generators" "^7.2.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-class-properties@^7.7.0":
+  version "7.7.0"
+  resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-class-properties/-/plugin-proposal-class-properties-7.7.0.tgz#ac54e728ecf81d90e8f4d2a9c05a890457107917"
+  integrity sha512-tufDcFA1Vj+eWvwHN+jvMN6QsV5o+vUlytNKrbMiCeDL0F2j92RURzUsUMWE5EJkLyWxjdUslCsMQa9FWth16A==
   dependencies:
-    "@babel/helper-create-class-features-plugin" "^7.5.5"
+    "@babel/helper-create-class-features-plugin" "^7.7.0"
     "@babel/helper-plugin-utils" "^7.0.0"
 
-"@babel/plugin-proposal-decorators@^7.6.0":
-  version "7.6.0"
-  resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-decorators/-/plugin-proposal-decorators-7.6.0.tgz#6659d2572a17d70abd68123e89a12a43d90aa30c"
-  integrity sha512-ZSyYw9trQI50sES6YxREXKu+4b7MAg6Qx2cvyDDYjP2Hpzd3FleOUwC9cqn1+za8d0A2ZU8SHujxFao956efUg==
+"@babel/plugin-proposal-decorators@^7.7.0":
+  version "7.7.0"
+  resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-decorators/-/plugin-proposal-decorators-7.7.0.tgz#d386a45730a4eb8c03e23a80b6d3dbefd761c9c9"
+  integrity sha512-dMCDKmbYFQQTn1+VJjl5hbqlweuHl5oDeMU9B1Q7oAWi0mHxjQQDHdJIK6iW76NE1KJT3zA6dDU3weR1WT5D4A==
   dependencies:
-    "@babel/helper-create-class-features-plugin" "^7.6.0"
+    "@babel/helper-create-class-features-plugin" "^7.7.0"
     "@babel/helper-plugin-utils" "^7.0.0"
     "@babel/plugin-syntax-decorators" "^7.2.0"
 
@@ -731,12 +663,12 @@
     "@babel/helper-plugin-utils" "^7.0.0"
     "@babel/plugin-syntax-jsx" "^7.2.0"
 
-"@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.7.0":
+  version "7.7.0"
+  resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-jsx/-/plugin-transform-react-jsx-7.7.0.tgz#834b0723ba78cd4d24d7d629300c2270f516d0b7"
+  integrity sha512-mXhBtyVB1Ujfy+0L6934jeJcSXj/VCg6whZzEcgiiZHNS0PGC7vUCsZDQCxxztkpIdF+dY1fUMcjAgEOC3ZOMQ==
   dependencies:
-    "@babel/helper-builder-react-jsx" "^7.0.0"
+    "@babel/helper-builder-react-jsx" "^7.7.0"
     "@babel/helper-plugin-utils" "^7.0.0"
     "@babel/plugin-syntax-jsx" "^7.2.0"
 
@@ -866,14 +798,14 @@
     js-levenshtein "^1.1.3"
     semver "^5.5.0"
 
-"@babel/preset-react@^7.6.3":
-  version "7.6.3"
-  resolved "https://registry.yarnpkg.com/@babel/preset-react/-/preset-react-7.6.3.tgz#d5242c828322520205ae4eda5d4f4f618964e2f6"
-  integrity sha512-07yQhmkZmRAfwREYIQgW0HEwMY9GBJVuPY4Q12UC72AbfaawuupVWa8zQs2tlL+yun45Nv/1KreII/0PLfEsgA==
+"@babel/preset-react@^7.7.0":
+  version "7.7.0"
+  resolved "https://registry.yarnpkg.com/@babel/preset-react/-/preset-react-7.7.0.tgz#8ab0c4787d98cf1f5f22dabf115552bf9e4e406c"
+  integrity sha512-IXXgSUYBPHUGhUkH+89TR6faMcBtuMW0h5OHbMuVbL3/5wK2g6a2M2BBpkLa+Kw0sAHiZ9dNVgqJMDP/O4GRBA==
   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" "^7.7.0"
     "@babel/plugin-transform-react-jsx-self" "^7.0.0"
     "@babel/plugin-transform-react-jsx-source" "^7.0.0"
 
@@ -891,32 +823,14 @@
   dependencies:
     regenerator-runtime "^0.12.0"
 
-"@babel/runtime@^7.1.2", "@babel/runtime@^7.4.2", "@babel/runtime@^7.4.4", "@babel/runtime@^7.4.5", "@babel/runtime@^7.5.5", "@babel/runtime@^7.7.1":
-  version "7.7.1"
-  resolved "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.7.1.tgz#b223497bbfbcbbb38116673904debc71470ca528"
-  integrity sha512-SQ0sS7KUJDvgCI2cpZG0nJygO6002oTbhgSuw4WcocsnbxLwL5Q8I3fqbJdyBAc3uFrWZiR2JomseuxSuci3SQ==
+"@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":
+  version "7.7.2"
+  resolved "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.7.2.tgz#111a78002a5c25fc8e3361bedc9529c696b85a6a"
+  integrity sha512-JONRbXbTXc9WQE2mAZd1p0Z3DZ/6vaQIkgYMSTP3KjRCyd7rCZCcfhCyX+YjwcKxcZ82UrxbRD358bpExNgrjw==
   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/template@^7.7.0":
+"@babel/template@^7.0.0", "@babel/template@^7.1.0", "@babel/template@^7.4.4", "@babel/template@^7.7.0":
   version "7.7.0"
   resolved "https://registry.yarnpkg.com/@babel/template/-/template-7.7.0.tgz#4fadc1b8e734d97f56de39c77de76f2562e597d0"
   integrity sha512-OKcwSYOW1mhWbnTBgQY5lvg1Fxg+VyfQGjcBduZFljfc044J5iDlnDSfhQ867O17XHiSCxYHUxHg2b7ryitbUQ==
@@ -925,49 +839,34 @@
     "@babel/parser" "^7.7.0"
     "@babel/types" "^7.7.0"
 
-"@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==
+"@babel/traverse@^7.0.0", "@babel/traverse@^7.1.0", "@babel/traverse@^7.4.4", "@babel/traverse@^7.5.5", "@babel/traverse@^7.7.0", "@babel/traverse@^7.7.2":
+  version "7.7.2"
+  resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.7.2.tgz#ef0a65e07a2f3c550967366b3d9b62a2dcbeae09"
+  integrity sha512-TM01cXib2+rgIZrGJOLaHV/iZUAxf4A0dt5auY6KNZ+cm6aschuJGqKJM3ROTt3raPUdIDk9siAufIFEleRwtw==
   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"
-    debug "^4.1.0"
-    globals "^11.1.0"
-    lodash "^4.17.13"
-
-"@babel/traverse@^7.7.0":
-  version "7.7.0"
-  resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.7.0.tgz#9f5744346b8d10097fd2ec2eeffcaf19813cbfaf"
-  integrity sha512-ea/3wRZc//e/uwCpuBX2itrhI0U9l7+FsrKWyKGNyvWbuMcCG7ATKY2VI4wlg2b2TA39HHwIxnvmXvtiKsyn7w==
-  dependencies:
-    "@babel/code-frame" "^7.5.5"
-    "@babel/generator" "^7.7.0"
+    "@babel/generator" "^7.7.2"
     "@babel/helper-function-name" "^7.7.0"
     "@babel/helper-split-export-declaration" "^7.7.0"
-    "@babel/parser" "^7.7.0"
-    "@babel/types" "^7.7.0"
+    "@babel/parser" "^7.7.2"
+    "@babel/types" "^7.7.2"
     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.7.0", "@babel/types@^7.7.1":
-  version "7.7.1"
-  resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.7.1.tgz#8b08ea368f2baff236613512cf67109e76285827"
-  integrity sha512-kN/XdANDab9x1z5gcjDc9ePpxexkt+1EQ2MQUiM4XnMvQfvp87/+6kY4Ko2maLXH+tei/DgJ/ybFITeqqRwDiA==
+"@babel/types@^7.0.0", "@babel/types@^7.0.0-beta.49", "@babel/types@^7.3.0", "@babel/types@^7.4.4", "@babel/types@^7.5.5", "@babel/types@^7.7.0", "@babel/types@^7.7.1", "@babel/types@^7.7.2":
+  version "7.7.2"
+  resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.7.2.tgz#550b82e5571dcd174af576e23f0adba7ffc683f7"
+  integrity sha512-YTf6PXoh3+eZgRCBzzP25Bugd2ngmpQVrk7kXX0i5N9BO7TFBtIgZYs7WtxtOGs8e6A4ZI7ECkbBCEHeXocvOA==
   dependencies:
     esutils "^2.0.2"
     lodash "^4.17.13"
     to-fast-properties "^2.0.0"
 
-"@clusterws/cws@^0.15.2":
-  version "0.15.2"
-  resolved "https://registry.yarnpkg.com/@clusterws/cws/-/cws-0.15.2.tgz#b4cc9d224992d939cf996fca24c655e34a1f5c94"
-  integrity sha512-nTXrmbv8IK38VBvfhdhigrxC7GvN4fsDrImCGx/b8jb3AP34e5B23cfXQCxZ2H3M3rywWbkeNdX9bGc01nX2rw==
+"@clusterws/cws@^0.16.0":
+  version "0.16.0"
+  resolved "https://registry.yarnpkg.com/@clusterws/cws/-/cws-0.16.0.tgz#f6116cbf3a8b7ad0657916616ce5f8248746b797"
+  integrity sha512-YeGpAPIdkBsOnAkmFKVMWEjCKDH900U2if0B+nc1imfv+64AIb2JX2xiTA6BLDLppEgWV5c6bpWESjbHCNblHw==
 
 "@cnakazawa/watch@^1.0.3":
   version "1.0.3"
@@ -1220,10 +1119,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"
@@ -1297,6 +1196,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"
@@ -1553,13 +1457,13 @@ aggregate-error@^3.0.0:
     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"
@@ -1567,7 +1471,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"
@@ -1768,7 +1672,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==
@@ -2006,38 +1910,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==
+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:
-    "@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==
-  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"
@@ -2369,7 +2269,7 @@ 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, cacache@^11.3.3:
+cacache@^11.2.0:
   version "11.3.3"
   resolved "https://registry.yarnpkg.com/cacache/-/cacache-11.3.3.tgz#8bd29df8c6a718a6ebd2d010da4d7972ae3bbadc"
   integrity sha512-p8WcneCytvzPxhDvYp31PD039vi77I12W+/KfR9S8AZbaiARFBCpsPJS+9uhWfeBfeAtW7o/4vt3MUqLkbY6nA==
@@ -2389,7 +2289,7 @@ cacache@^11.2.0, cacache@^11.3.3:
     unique-filename "^1.1.1"
     y18n "^4.0.0"
 
-cacache@^12.0.2:
+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==
@@ -2862,10 +2762,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:
-  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"
 
@@ -2896,12 +2796,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.0.5:
+  version "5.0.5"
+  resolved "https://registry.yarnpkg.com/copy-webpack-plugin/-/copy-webpack-plugin-5.0.5.tgz#731df6a837a2ef0f8f8e2345bdfe9b7c62a2da68"
+  integrity sha512-7N68eIoQTyudAuxkfPT7HzGoQ+TsmArN/I3HFwG+lVE3FNzqvZKIiaxtYh4o3BIznioxUvx9j26+Rtsc9htQUQ==
   dependencies:
-    cacache "^11.3.3"
+    cacache "^12.0.3"
     find-cache-dir "^2.1.0"
     glob-parent "^3.1.0"
     globby "^7.1.1"
@@ -2909,9 +2809,9 @@ 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.0"
     webpack-log "^2.0.0"
 
 core-js-compat@^3.1.1:
@@ -2953,7 +2853,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==
@@ -2963,15 +2863,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"
@@ -3729,31 +3630,40 @@ 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.1:
+  version "1.15.1"
+  resolved "https://registry.yarnpkg.com/enzyme-adapter-react-16/-/enzyme-adapter-react-16-1.15.1.tgz#8ad55332be7091dc53a25d7d38b3485fc2ba50d5"
+  integrity sha512-yMPxrP3vjJP+4wL/qqfkT6JAIctcwKF+zXO6utlGPgUJT2l4tzrdjMDWGd/Pp1BjHBcljhN24OzNEGRteibJhA==
   dependencies:
-    enzyme-adapter-utils "^1.12.0"
+    enzyme-adapter-utils "^1.12.1"
+    enzyme-shallow-equal "^1.0.0"
     has "^1.0.3"
     object.assign "^4.1.0"
     object.values "^1.1.0"
     prop-types "^15.7.2"
-    react-is "^16.8.6"
+    react-is "^16.10.2"
     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.12.1:
+  version "1.12.1"
+  resolved "https://registry.yarnpkg.com/enzyme-adapter-utils/-/enzyme-adapter-utils-1.12.1.tgz#e828e0d038e2b1efa4b9619ce896226f85c9dd88"
+  integrity sha512-KWiHzSjZaLEoDCOxY8Z1RAbUResbqKN5bZvenPbfKtWorJFVETUw754ebkuCQ3JKm0adx1kF8JaiR+PHPiP47g==
   dependencies:
-    airbnb-prop-types "^2.13.2"
-    function.prototype.name "^1.1.0"
+    airbnb-prop-types "^2.15.0"
+    function.prototype.name "^1.1.1"
     object.assign "^4.1.0"
-    object.fromentries "^2.0.0"
+    object.fromentries "^2.0.1"
     prop-types "^15.7.2"
-    semver "^5.6.0"
+    semver "^5.7.0"
+
+enzyme-shallow-equal@^1.0.0:
+  version "1.0.0"
+  resolved "https://registry.yarnpkg.com/enzyme-shallow-equal/-/enzyme-shallow-equal-1.0.0.tgz#d8e4603495e6ea279038eef05a4bf4887b55dc69"
+  integrity sha512-VUf+q5o1EIv2ZaloNQQtWCJM9gpeux6vudGVH6vLmfPXFLRuxl5+Aq3U260wof9nn0b0i+P5OEUXm1vnxkRpXQ==
+  dependencies:
+    has "^1.0.3"
+    object-is "^1.0.1"
 
 enzyme@^3.10.0:
   version "3.10.0"
@@ -3819,6 +3729,22 @@ es-abstract@^1.13.0:
     is-regex "^1.0.4"
     object-keys "^1.0.12"
 
+es-abstract@^1.15.0:
+  version "1.16.0"
+  resolved "https://registry.yarnpkg.com/es-abstract/-/es-abstract-1.16.0.tgz#d3a26dc9c3283ac9750dca569586e976d9dcc06d"
+  integrity sha512-xdQnfykZ9JMEiasTAJZJdMWCQ1Vm00NBw79/AWi7ELfZuuPCSOMDZbT9mkOfSctVtfhb+sAAzrm+j//GjjLHLg==
+  dependencies:
+    es-to-primitive "^1.2.0"
+    function-bind "^1.1.1"
+    has "^1.0.3"
+    has-symbols "^1.0.0"
+    is-callable "^1.1.4"
+    is-regex "^1.0.4"
+    object-inspect "^1.6.0"
+    object-keys "^1.1.1"
+    string.prototype.trimleft "^2.1.0"
+    string.prototype.trimright "^2.1.0"
+
 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"
@@ -4715,11 +4641,26 @@ function.prototype.name@^1.1.0:
     function-bind "^1.1.1"
     is-callable "^1.1.3"
 
+function.prototype.name@^1.1.1:
+  version "1.1.1"
+  resolved "https://registry.yarnpkg.com/function.prototype.name/-/function.prototype.name-1.1.1.tgz#6d252350803085abc2ad423d4fe3be2f9cbda392"
+  integrity sha512-e1NzkiJuw6xqVH7YSdiW/qDHebcmMhPNe6w+4ZYYEg0VA+LaLzx37RimbPLuonHhYGFGPx1ME2nSi74JiaCr/Q==
+  dependencies:
+    define-properties "^1.1.3"
+    function-bind "^1.1.1"
+    functions-have-names "^1.1.1"
+    is-callable "^1.1.4"
+
 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.1.1:
+  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"
@@ -4797,10 +4738,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.5, glob@~7.1.1:
-  version "7.1.5"
-  resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.5.tgz#6714c69bee20f3c3e64c4dd905553e532b40cdc0"
-  integrity sha512-J9dlskqUXK1OeTOYBEn5s8aMukWMwWfs+rPTn/jn50Ux4MNXVhubL1wu/j2t+H4NVI+cXEcCaYellqaPVGXNqQ==
+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"
@@ -5308,6 +5249,14 @@ import-fresh@^3.0.0:
     parent-module "^1.0.0"
     resolve-from "^4.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"
+
 import-from@^2.1.0:
   version "2.1.0"
   resolved "https://registry.yarnpkg.com/import-from/-/import-from-2.1.0.tgz#335db7f2a7affd53aaa471d4b8021dee36b7f3b1"
@@ -5445,10 +5394,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"
@@ -6533,6 +6482,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"
@@ -7411,6 +7365,16 @@ object.fromentries@^2.0.0:
     function-bind "^1.1.1"
     has "^1.0.1"
 
+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.3"
+    es-abstract "^1.15.0"
+    function-bind "^1.1.1"
+    has "^1.0.3"
+
 object.getownpropertydescriptors@^2.0.3:
   version "2.0.3"
   resolved "https://registry.yarnpkg.com/object.getownpropertydescriptors/-/object.getownpropertydescriptors-2.0.3.tgz#8758c846f5b407adab0f236e0986f14b051caa16"
@@ -7588,20 +7552,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"
@@ -7725,6 +7682,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"
@@ -7828,6 +7795,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"
@@ -8643,15 +8615,15 @@ rc@^1.2.7:
     minimist "^1.2.0"
     strip-json-comments "~2.0.1"
 
-react-dom@^16.11.0:
-  version "16.11.0"
-  resolved "https://registry.yarnpkg.com/react-dom/-/react-dom-16.11.0.tgz#7e7c4a5a85a569d565c2462f5d345da2dd849af5"
-  integrity sha512-nrRyIUE1e7j8PaXSPtyRKtz+2y9ubW/ghNgqKFHHAHaeP0fpF5uXR+sq8IMRHC+ZUxw7W9NyCDTBtwWxvkb0iA==
+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.17.0"
+    scheduler "^0.18.0"
 
 react-event-listener@^0.6.0:
   version "0.6.5"
@@ -8692,10 +8664,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"
 
@@ -8720,10 +8692,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.10.2"
-  resolved "https://registry.yarnpkg.com/react-is/-/react-is-16.10.2.tgz#984120fd4d16800e9a738208ab1fba422d23b5ab"
-  integrity sha512-INBT1QEgtcCCgvccr5/86CfD71fw9EPmDxgiJX4I2Ddr6ZsV6iFXsuby+qWJPtmNuMY0zByTsG4468P7nHuNWA==
+react-is@^16.10.2, 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.11.0"
+  resolved "https://registry.yarnpkg.com/react-is/-/react-is-16.11.0.tgz#b85dfecd48ad1ce469ff558a882ca8e8313928fa"
+  integrity sha512-gbBVYR2p8mnriqAwWx9LbuUrShnAuSCNnuPGyc7GJrMVQtPDAh8iLpv7FRuMPFb56KkaVZIYSz1PrjI9q0QPCw==
 
 react-lifecycles-compat@^3.0.2, react-lifecycles-compat@^3.0.4:
   version "3.0.4"
@@ -8748,10 +8720,10 @@ 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"
 
@@ -8820,20 +8792,18 @@ react-router@^4.3.1:
     prop-types "^15.6.1"
     warning "^4.0.1"
 
-react-select@^3.0.5:
-  version "3.0.5"
-  resolved "https://registry.yarnpkg.com/react-select/-/react-select-3.0.5.tgz#f2810e63fa8a6be375b3fa6f390284e9e33c9573"
-  integrity sha512-2tBXZ1XSqbk2boMUzSmKXwGl/6W46VkSMSLMy+ShccOVyD1kDTLPwLX7lugISkRMmL0v5BcLtriXOLfYwO0otw==
+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:
     "@babel/runtime" "^7.4.4"
     "@emotion/cache" "^10.0.9"
     "@emotion/core" "^10.0.9"
     "@emotion/css" "^10.0.9"
-    classnames "^2.2.5"
     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:
@@ -8885,10 +8855,10 @@ react-test-renderer@^16.0.0-0, react-test-renderer@^16.11.0:
     react-is "^16.8.6"
     scheduler "^0.17.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"
@@ -9287,7 +9257,7 @@ 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.11.0, resolve@^1.12.0, resolve@^1.3.2, resolve@^1.5.0, resolve@^1.8.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==
@@ -9493,6 +9463,14 @@ scheduler@^0.17.0:
     loose-envify "^1.1.0"
     object-assign "^4.1.1"
 
+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"
+
 schema-utils@^1.0.0:
   version "1.0.0"
   resolved "https://registry.yarnpkg.com/schema-utils/-/schema-utils-1.0.0.tgz#0b79a93204d7b600d4b2850d1f66c2a34951c770"
@@ -10027,6 +10005,22 @@ string.prototype.trim@^1.1.2:
     es-abstract "^1.5.0"
     function-bind "^1.0.2"
 
+string.prototype.trimleft@^2.1.0:
+  version "2.1.0"
+  resolved "https://registry.yarnpkg.com/string.prototype.trimleft/-/string.prototype.trimleft-2.1.0.tgz#6cc47f0d7eb8d62b0f3701611715a3954591d634"
+  integrity sha512-FJ6b7EgdKxxbDxc79cOlok6Afd++TTs5szo+zJTUyow3ycrRfJVE2pq3vcN53XexvKZu/DJMDfeI/qMiZTrjTw==
+  dependencies:
+    define-properties "^1.1.3"
+    function-bind "^1.1.1"
+
+string.prototype.trimright@^2.1.0:
+  version "2.1.0"
+  resolved "https://registry.yarnpkg.com/string.prototype.trimright/-/string.prototype.trimright-2.1.0.tgz#669d164be9df9b6f7559fa8e89945b168a5a6c58"
+  integrity sha512-fXZTSV55dNBwv16uw+hh5jkghxSnc5oHq+5K/gXgizHwAvMetdAJlHqqoFC1FSDVPYWLkAKl2cxpUT41sV7nSg==
+  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"
   resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.3.0.tgz#42f114594a46cf1a8e30b0a84f56c78c3edac21e"
@@ -10422,11 +10416,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"
@@ -10661,16 +10650,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"
@@ -11111,6 +11095,13 @@ yallist@^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"